diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml new file mode 100644 index 0000000000..8e0d7410c7 --- /dev/null +++ b/.github/release-drafter.yml @@ -0,0 +1,19 @@ +name-template: 'v$NEXT_PATCH_VERSION 🌈' +tag-template: 'v$NEXT_PATCH_VERSION' +categories: + - title: '🚀 Features' + labels: + - 'feature' + - 'enhancement' + - title: '🐛 Bug Fixes' + labels: + - 'fix' + - 'bugfix' + - 'bug' + - title: '🧰 Maintenance' + label: 'chore' +change-template: '- $TITLE @$AUTHOR (#$NUMBER)' +template: | + ## Changes + + $CHANGES diff --git a/.github/workflows/maven-build.yml b/.github/workflows/maven-build.yml new file mode 100644 index 0000000000..f009de37cb --- /dev/null +++ b/.github/workflows/maven-build.yml @@ -0,0 +1,22 @@ +name: Java CI Build and Test + +on: [push, pull_request] + + +jobs: + build: + + runs-on: ubuntu-latest + strategy: + matrix: + java: [ '1.8.0', '11.0.x', '13.0.x' ] + steps: + - uses: actions/checkout@v1 + - name: Set up JDK + uses: actions/setup-java@v1 + with: + java-version: ${{ matrix.java }} + - name: Maven Download all dependencies + run: mvn -B org.apache.maven.plugins:maven-dependency-plugin:3.1.1:go-offline + - name: Maven Build + run: mvn -B install site --file pom.xml diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md new file mode 100644 index 0000000000..ff50d0a6cc --- /dev/null +++ b/CODE_OF_CONDUCT.md @@ -0,0 +1,76 @@ +# Contributor Covenant Code of Conduct + +## Our Pledge + +In the interest of fostering an open and welcoming environment, we as +contributors and maintainers pledge to making participation in our project and +our community a harassment-free experience for everyone, regardless of age, body +size, disability, ethnicity, sex characteristics, gender identity and expression, +level of experience, education, socio-economic status, nationality, personal +appearance, race, religion, or sexual identity and orientation. + +## Our Standards + +Examples of behavior that contributes to creating a positive environment +include: + +* Using welcoming and inclusive language +* Being respectful of differing viewpoints and experiences +* Gracefully accepting constructive criticism +* Focusing on what is best for the community +* Showing empathy towards other community members + +Examples of unacceptable behavior by participants include: + +* The use of sexualized language or imagery and unwelcome sexual attention or + advances +* Trolling, insulting/derogatory comments, and personal or political attacks +* Public or private harassment +* Publishing others' private information, such as a physical or electronic + address, without explicit permission +* Other conduct which could reasonably be considered inappropriate in a + professional setting + +## Our Responsibilities + +Project maintainers are responsible for clarifying the standards of acceptable +behavior and are expected to take appropriate and fair corrective action in +response to any instances of unacceptable behavior. + +Project maintainers have the right and responsibility to remove, edit, or +reject comments, commits, code, wiki edits, issues, and other contributions +that are not aligned to this Code of Conduct, or to ban temporarily or +permanently any contributor for other behaviors that they deem inappropriate, +threatening, offensive, or harmful. + +## Scope + +This Code of Conduct applies both within project spaces and in public spaces +when an individual is representing the project or its community. Examples of +representing a project or community include using an official project e-mail +address, posting via an official social media account, or acting as an appointed +representative at an online or offline event. Representation of a project may be +further defined and clarified by project maintainers. + +## Enforcement + +Instances of abusive, harassing, or otherwise unacceptable behavior may be +reported by contacting the project team at bitwiseman@gmail.com. All +complaints will be reviewed and investigated and will result in a response that +is deemed necessary and appropriate to the circumstances. The project team is +obligated to maintain confidentiality with regard to the reporter of an incident. +Further details of specific enforcement policies may be posted separately. + +Project maintainers who do not follow or enforce the Code of Conduct in good +faith may face temporary or permanent repercussions as determined by other +members of the project's leadership. + +## Attribution + +This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, +available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html + +[homepage]: https://www.contributor-covenant.org + +For answers to common questions about this code of conduct, see +https://www.contributor-covenant.org/faq diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000000..0de9d96e70 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,62 @@ +# Contributing + +## Using WireMock and Snapshots + +This project has started converting to using WireMock to stub out http responses instead of use live data. +This change will allow tests to run in a CI environment without needing to touch github.com. +The tests will instead serve previously recorded responses from local data files. + +### Running WireMock tests + +Example: + +`mvn install -Dtest=WireMockStatusReporterTest` + +This the default behavior. + + +### Setting up credential + +1. Create an OAuth token on github.com +2. Set the GITHUB_OAUTH environment variable to the value of that token +3. Set the system property `test.github.useProxy` (usually like "-Dtest.github.useProxy" as a Java VM option) + + `mvn install -Dtest.github.useProxy -Dtest=WireMockStatusReporterTest` + +4. The above should report no test failures and include the following console output: + + `WireMockStatusReporterTest: GitHub proxying and user auth correctly configured for user login: ` + +Whenever you run tests with `-Dtest.github.useProxy`, they will try to get data from local files but will fallback to proxying to github if not found. + + +### Writing a new test + +Once you have credentials setup, you add new test classes and test methods as you would normally. +Keep `useProxy` enabled and iterate on your tests as needed. Remember, while proxying your tests are interacting with GitHub - you will need to clean up your state between runs. + +When you are ready to create a snapshot of your test data, +run your test with `test.github.takeSnapshot` ("-Dtest.github.takeSnapshot" as a Java VM option). For example: + + `mvn install -Dtest.github.takeSnapshot -Dtest=YourTestClassName` + +The above command would create snapshot WireMock data files under the path `src/test/resources/org/kohsuhke/github/YourTestClassName/wiremock`. +Each method would get a separate director that would hold the data files for that test method. + +Add all files including the generated data to your commit and submit a PR. + +### Modifying existing tests + +When modifying existing tests, you can change the stubbed WireMock data files by hand or you can try generating a new snapshot. + +#### Manual editing of data (minor changes only) + +If you know what data will change, it is sometimes simplest to make any required changes to the data files manually. +This can be easier if the changes are minor or when you development environment is not setup to to take updated snapshots. + +#### Generating a new snapshot + +For more most changes, it is recommended to take a new snapshot when updating tests. +Delete the wiremock data files for the test method you will be modifying. +For more significant changes, you can even delete the WireMock files for an entire test class. +Then follow the same as when writing a new test: run with proxy enabled to debug, take a new snapshot when done, commit everything, and submit the PR. diff --git a/README b/README deleted file mode 100644 index 6fb589b09a..0000000000 --- a/README +++ /dev/null @@ -1,3 +0,0 @@ -Java API for GitHub - -See http://github-api.kohsuke.org/ for more details diff --git a/README.md b/README.md new file mode 100644 index 0000000000..e3f7a64105 --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +Java API for GitHub + +See https://github-api.kohsuke.org/ for more details diff --git a/pom.xml b/pom.xml index 9d599f2ade..ff4e21fbfb 100644 --- a/pom.xml +++ b/pom.xml @@ -3,58 +3,148 @@ org.kohsuke pom - 20 + 21 + github-api - 1.95 + 1.99 GitHub API for Java - http://github-api.kohsuke.org/ + https://github-api.kohsuke.org/ GitHub API for Java - scm:git:git@github.com/kohsuke/${project.artifactId}.git - scm:git:ssh://git@github.com/kohsuke/${project.artifactId}.git - http://${project.artifactId}.kohsuke.org/ - github-api-1.95 + scm:git:git@github.com/github-api/${project.artifactId}.git + scm:git:ssh://git@github.com/github-api/${project.artifactId}.git + https://${project.artifactId}.kohsuke.org/ + github-api-1.99 github-pages - gitsite:git@github.com/kohsuke/${project.artifactId}.git + gitsite:git@github.com/github-api/${project.artifactId}.git UTF-8 - 3.0.2 - true + 3.1.12.2 + 3.1.12 + true + 2.2 + 3.12.3 + 2.4.1 + .80 + 0.20 + 0.50 + 0.50 + + false + + + org.apache.maven.scm + maven-scm-provider-gitexe + 1.11.2 + + + org.apache.maven.scm + maven-scm-manager-plexus + 1.11.2 + + + + + src/test/resources + + **/wiremock/** + + + + + + + + org.jacoco + jacoco-maven-plugin + 0.8.5 + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.1.1 + + 8 + + + + - maven-surefire-plugin - 2.22.1 + org.apache.maven.plugins + maven-site-plugin + 3.8.2 + + + org.apache.maven.plugins + maven-release-plugin + 2.5.3 - 2 + true + false + release + deploy + + org.apache.maven.plugins + maven-project-info-reports-plugin + 3.0.0 + + + org.apache.bcel + bcel + 6.4.1 + + + + + maven-compiler-plugin + 3.8.1 + + 1.8 + 1.8 + + + org.jenkins-ci + annotation-indexer + 1.12 + + + + + + + maven-surefire-plugin + 2.22.2 + org.codehaus.mojo animal-sniffer-maven-plugin - 1.15 + 1.18 org.codehaus.mojo.signature - java15 + java18 1.0 - ensure-java-1.5-class-library + ensure-java-1.8-class-library test check @@ -62,32 +152,51 @@ + + com.infradna.tool + bridge-method-injector + 1.18 + + + + process + + + + - com.infradna.tool - bridge-method-injector - 1.18 + com.github.spotbugs + spotbugs-maven-plugin + ${spotbugs-maven-plugin.version} + + true + ${spotbugs-maven-plugin.failOnError} + + run-spotbugs + verify - process + check + + + + com.github.spotbugs + spotbugs + ${spotbugs.version} + + + - org.codehaus.mojo - findbugs-maven-plugin - ${findbugs-maven-plugin.version} - - true - ${findbugs-maven-plugin.failOnError} - + org.codehaus.gmaven + gmaven-plugin - run-findbugs - verify - check @@ -99,12 +208,31 @@ org.apache.commons commons-lang3 - 3.7 + 3.9 commons-codec commons-codec - 1.7 + 1.13 + + + org.hamcrest + hamcrest + ${hamcrest.version} + test + + + + org.hamcrest + hamcrest-core + ${hamcrest.version} + test + + + org.hamcrest + hamcrest-library + ${hamcrest.version} + test junit @@ -112,26 +240,20 @@ 4.12 test - - org.hamcrest - hamcrest-all - 1.3 - test - com.fasterxml.jackson.core jackson-databind - 2.9.2 + 2.10.0 commons-io commons-io - 1.4 + 2.6 com.infradna.tool bridge-method-annotation - 1.17 + 1.18 true @@ -143,19 +265,31 @@ org.eclipse.jgit org.eclipse.jgit - 4.9.0.201710071750-r + 5.5.1.201910021850-r test - com.squareup.okhttp - okhttp-urlconnection - 2.7.5 + com.squareup.okio + okio + ${okio.version} true com.squareup.okhttp3 + okhttp + ${okhttp3.version} + true + + + com.squareup.okhttp3 + okhttp-urlconnection + ${okhttp3.version} + true + + + com.squareup.okhttp okhttp-urlconnection - 3.9.0 + 2.7.5 true @@ -166,43 +300,189 @@ org.mockito - mockito-all - 1.10.19 + mockito-core + 3.1.0 test - com.google.code.findbugs - annotations - 3.0.1 - provided + com.github.spotbugs + spotbugs-annotations + ${spotbugs.version} + true + + + com.github.tomakehurst + wiremock-jre8-standalone + 2.25.1 + test + + + com.google.code.gson + gson + 2.8.6 + test repo.jenkins-ci.org - http://repo.jenkins-ci.org/public/ + https://repo.jenkins-ci.org/public/ repo.jenkins-ci.org - http://repo.jenkins-ci.org/public/ + https://repo.jenkins-ci.org/public/ - + + + jacoco + + + enable-jacoco + + + + + + org.jacoco + jacoco-maven-plugin + 0.8.5 + + + + prepare-agent + + + + + report + test + + report + + + + check + install + + check + + + + + + + + CLASS + + + + + + + + + METHOD + COVEREDRATIO + ${jacoco.coverage.target.method} + + + + + + + + + org.kohsuke.github.extras.okhttp3.ObsoleteUrlFactory.** + org.kohsuke.github.extras.okhttp3.ObsoleteUrlFactory + org.kohsuke.github.extras.OkHttp3Connector + + + + + + + + + + + + + release + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.6 + + + sign-artifacts + verify + + sign + + + + --pinentry-mode + loopback + + + + + + + org.apache.maven.plugins + maven-source-plugin + 3.2.0 + + + + + org.apache.maven.plugins maven-javadoc-plugin + + org.apache.maven.plugins + maven-project-info-reports-plugin + The MIT license - http://www.opensource.org/licenses/mit-license.php + https://www.opensource.org/licenses/mit-license.php repo diff --git a/src/main/java/org/kohsuke/github/AbuseLimitHandler.java b/src/main/java/org/kohsuke/github/AbuseLimitHandler.java index 4cb6bfe6c5..2c21cdaf9c 100644 --- a/src/main/java/org/kohsuke/github/AbuseLimitHandler.java +++ b/src/main/java/org/kohsuke/github/AbuseLimitHandler.java @@ -24,9 +24,10 @@ public abstract class AbuseLimitHandler { * @see API documentation from GitHub * @param e * Exception from Java I/O layer. If you decide to fail the processing, you can throw - * this exception (or wrap this exception into another exception and throw it.) + * this exception (or wrap this exception into another exception and throw it). * @param uc * Connection that resulted in an error. Useful for accessing other response headers. + * @throws IOException */ public abstract void onError(IOException e, HttpURLConnection uc) throws IOException; @@ -38,7 +39,7 @@ public abstract class AbuseLimitHandler { public void onError(IOException e, HttpURLConnection uc) throws IOException { try { Thread.sleep(parseWaitTime(uc)); - } catch (InterruptedException _) { + } catch (InterruptedException ex) { throw (InterruptedIOException)new InterruptedIOException().initCause(e); } } @@ -57,7 +58,7 @@ private long parseWaitTime(HttpURLConnection uc) { public static final AbuseLimitHandler FAIL = new AbuseLimitHandler() { @Override public void onError(IOException e, HttpURLConnection uc) throws IOException { - throw (IOException)new IOException("Abust limit reached").initCause(e); + throw (IOException)new IOException("Abuse limit reached").initCause(e); } }; } diff --git a/src/main/java/org/kohsuke/github/GHApp.java b/src/main/java/org/kohsuke/github/GHApp.java new file mode 100644 index 0000000000..d3a73354b2 --- /dev/null +++ b/src/main/java/org/kohsuke/github/GHApp.java @@ -0,0 +1,172 @@ +package org.kohsuke.github; + +import com.fasterxml.jackson.annotation.JsonProperty; + +import java.io.IOException; +import java.net.URL; +import java.util.List; +import java.util.Map; + +import static org.kohsuke.github.Previews.MACHINE_MAN; + +/** + * A Github App. + * + * @author Paulo Miguel Almeida + * + * @see GitHub#getApp() + */ + +public class GHApp extends GHObject { + + private GitHub root; + private GHUser owner; + private String name; + private String description; + @JsonProperty("external_url") + private String externalUrl; + private Map permissions; + private List events; + @JsonProperty("installations_count") + private long installationsCount; + @JsonProperty("html_url") + private String htmlUrl; + + + public GHUser getOwner() { + return owner; + } + + public void setOwner(GHUser owner) { + this.owner = owner; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public String getDescription() { + return description; + } + + public void setDescription(String description) { + this.description = description; + } + + public String getExternalUrl() { + return externalUrl; + } + + public void setExternalUrl(String externalUrl) { + this.externalUrl = externalUrl; + } + + public List getEvents() { + return events; + } + + public void setEvents(List events) { + this.events = events; + } + + public long getInstallationsCount() { + return installationsCount; + } + + public void setInstallationsCount(long installationsCount) { + this.installationsCount = installationsCount; + } + + public URL getHtmlUrl() { + return GitHub.parseURL(htmlUrl); + } + + public Map getPermissions() { + return permissions; + } + + public void setPermissions(Map permissions) { + this.permissions = permissions; + } + + /*package*/ GHApp wrapUp(GitHub root) { + this.root = root; + return this; + } + + /** + * Obtains all the installations associated with this app. + * + * You must use a JWT to access this endpoint. + * + * @see List installations + * @return a list of App installations + */ + @Preview @Deprecated + public PagedIterable listInstallations() { + return root.retrieve().withPreview(MACHINE_MAN) + .asPagedIterable( + "/app/installations", + GHAppInstallation[].class, + item -> item.wrapUp(root) ); + } + + /** + * Obtain an installation associated with this app + * @param id - Installation Id + * + * You must use a JWT to access this endpoint. + * + * @see Get an installation + */ + @Preview @Deprecated + public GHAppInstallation getInstallationById(long id) throws IOException { + return root.retrieve().withPreview(MACHINE_MAN).to(String.format("/app/installations/%d", id), GHAppInstallation.class).wrapUp(root); + } + + /** + * Obtain an organization installation associated with this app + * @param name - Organization name + * + * You must use a JWT to access this endpoint. + * + * @see Get an organization installation + */ + @Preview @Deprecated + public GHAppInstallation getInstallationByOrganization(String name) throws IOException { + return root.retrieve().withPreview(MACHINE_MAN).to(String.format("/orgs/%s/installation", name), GHAppInstallation.class).wrapUp(root); + } + + /** + * Obtain an repository installation associated with this app + * @param ownerName - Organization or user name + * @param repositoryName - Repository name + * + * You must use a JWT to access this endpoint. + * + * @see Get a repository installation + */ + @Preview @Deprecated + public GHAppInstallation getInstallationByRepository(String ownerName, String repositoryName) throws IOException { + return root.retrieve().withPreview(MACHINE_MAN).to(String.format("/repos/%s/%s/installation", ownerName, repositoryName), GHAppInstallation.class).wrapUp(root); + } + + /** + * Obtain a user installation associated with this app + * @param name - user name + * + * You must use a JWT to access this endpoint. + * + * @see Get a user installation + */ + @Preview @Deprecated + public GHAppInstallation getInstallationByUser(String name) throws IOException { + return root.retrieve().withPreview(MACHINE_MAN).to(String.format("/users/%s/installation", name), GHAppInstallation.class).wrapUp(root); + } + +} + diff --git a/src/main/java/org/kohsuke/github/GHAppCreateTokenBuilder.java b/src/main/java/org/kohsuke/github/GHAppCreateTokenBuilder.java new file mode 100644 index 0000000000..807ebcf102 --- /dev/null +++ b/src/main/java/org/kohsuke/github/GHAppCreateTokenBuilder.java @@ -0,0 +1,53 @@ +package org.kohsuke.github; + +import java.io.IOException; +import java.util.List; +import java.util.Map; + +import static org.kohsuke.github.Previews.MACHINE_MAN; + +/** + * Creates a access token for a GitHub App Installation + * + * @author Paulo Miguel Almeida + * + * @see GHAppInstallation#createToken(Map) + */ +public class GHAppCreateTokenBuilder { + private final GitHub root; + protected final Requester builder; + private final String apiUrlTail; + + @Preview @Deprecated + /*package*/ GHAppCreateTokenBuilder(GitHub root, String apiUrlTail, Map permissions) { + this.root = root; + this.apiUrlTail = apiUrlTail; + this.builder = new Requester(root); + this.builder.withPermissions("permissions",permissions); + } + + /** + * By default the installation token has access to all repositories that the installation can access. To restrict + * the access to specific repositories, you can provide the repository_ids when creating the token. When you omit + * repository_ids, the response does not contain neither the repositories nor the permissions key. + * + * @param repositoryIds - Array containing the repositories Ids + * + */ + @Preview @Deprecated + public GHAppCreateTokenBuilder repositoryIds(List repositoryIds) { + this.builder.with("repository_ids",repositoryIds); + return this; + } + + /** + * Creates an app token with all the parameters. + * + * You must use a JWT to access this endpoint. + */ + @Preview @Deprecated + public GHAppInstallationToken create() throws IOException { + return builder.method("POST").withPreview(MACHINE_MAN).to(apiUrlTail, GHAppInstallationToken.class).wrapUp(root); + } + +} diff --git a/src/main/java/org/kohsuke/github/GHAppInstallation.java b/src/main/java/org/kohsuke/github/GHAppInstallation.java new file mode 100644 index 0000000000..3925742162 --- /dev/null +++ b/src/main/java/org/kohsuke/github/GHAppInstallation.java @@ -0,0 +1,167 @@ +package org.kohsuke.github; + +import com.fasterxml.jackson.annotation.JsonProperty; + +import java.io.IOException; +import java.net.URL; +import java.util.List; +import java.util.Map; + +import static org.kohsuke.github.Previews.GAMBIT; + +/** + * A Github App Installation. + * + * @author Paulo Miguel Almeida + * + * @see GHApp#listInstallations() + * @see GHApp#getInstallationById(long) + * @see GHApp#getInstallationByOrganization(String) + * @see GHApp#getInstallationByRepository(String, String) + * @see GHApp#getInstallationByUser(String) + */ + +public class GHAppInstallation extends GHObject { + private GitHub root; + private GHUser account; + + @JsonProperty("access_tokens_url") + private String accessTokenUrl; + @JsonProperty("repositories_url") + private String repositoriesUrl; + @JsonProperty("app_id") + private long appId; + @JsonProperty("target_id") + private long targetId; + @JsonProperty("target_type") + private GHTargetType targetType; + private Map permissions; + private List events; + @JsonProperty("single_file_name") + private String singleFileName; + @JsonProperty("repository_selection") + private GHRepositorySelection repositorySelection; + private String htmlUrl; + + public URL getHtmlUrl() { + return GitHub.parseURL(htmlUrl); + } + + public GitHub getRoot() { + return root; + } + + public void setRoot(GitHub root) { + this.root = root; + } + + public GHUser getAccount() { + return account; + } + + public void setAccount(GHUser account) { + this.account = account; + } + + public String getAccessTokenUrl() { + return accessTokenUrl; + } + + public void setAccessTokenUrl(String accessTokenUrl) { + this.accessTokenUrl = accessTokenUrl; + } + + public String getRepositoriesUrl() { + return repositoriesUrl; + } + + public void setRepositoriesUrl(String repositoriesUrl) { + this.repositoriesUrl = repositoriesUrl; + } + + public long getAppId() { + return appId; + } + + public void setAppId(long appId) { + this.appId = appId; + } + + public long getTargetId() { + return targetId; + } + + public void setTargetId(long targetId) { + this.targetId = targetId; + } + + public GHTargetType getTargetType() { + return targetType; + } + + public void setTargetType(GHTargetType targetType) { + this.targetType = targetType; + } + + public Map getPermissions() { + return permissions; + } + + public void setPermissions(Map permissions) { + this.permissions = permissions; + } + + public List getEvents() { + return events; + } + + public void setEvents(List events) { + this.events = events; + } + + public String getSingleFileName() { + return singleFileName; + } + + public void setSingleFileName(String singleFileName) { + this.singleFileName = singleFileName; + } + + public GHRepositorySelection getRepositorySelection() { + return repositorySelection; + } + + public void setRepositorySelection(GHRepositorySelection repositorySelection) { + this.repositorySelection = repositorySelection; + } + + /*package*/ GHAppInstallation wrapUp(GitHub root) { + this.root = root; + return this; + } + + /** + * Delete a Github App installation + * + * You must use a JWT to access this endpoint. + * + * @see Delete an installation + */ + @Preview @Deprecated + public void deleteInstallation() throws IOException { + root.retrieve().method("DELETE").withPreview(GAMBIT).to(String.format("/app/installations/%d", id)); + } + + + /** + * Starts a builder that creates a new App Installation Token. + * + *

+ * You use the returned builder to set various properties, then call {@link GHAppCreateTokenBuilder#create()} + * to finally create an access token. + */ + @Preview @Deprecated + public GHAppCreateTokenBuilder createToken(Map permissions){ + return new GHAppCreateTokenBuilder(root,String.format("/app/installations/%d/access_tokens", id), permissions); + } +} diff --git a/src/main/java/org/kohsuke/github/GHAppInstallationToken.java b/src/main/java/org/kohsuke/github/GHAppInstallationToken.java new file mode 100644 index 0000000000..2b6e78fdee --- /dev/null +++ b/src/main/java/org/kohsuke/github/GHAppInstallationToken.java @@ -0,0 +1,87 @@ +package org.kohsuke.github; + +import com.fasterxml.jackson.annotation.JsonProperty; +import com.infradna.tool.bridge_method_injector.WithBridgeMethods; +import edu.umd.cs.findbugs.annotations.SuppressFBWarnings; + +import java.io.IOException; +import java.util.Date; +import java.util.List; +import java.util.Map; + +/** + * A Github App Installation Token. + * + * @author Paulo Miguel Almeida + * + * @see GHAppInstallation#createToken(Map) + */ + +public class GHAppInstallationToken { + private GitHub root; + + private String token; + protected String expires_at; + private Map permissions; + private List repositories; + @JsonProperty("repository_selection") + private GHRepositorySelection repositorySelection; + + public GitHub getRoot() { + return root; + } + + public void setRoot(GitHub root) { + this.root = root; + } + + public Map getPermissions() { + return permissions; + } + + public void setPermissions(Map permissions) { + this.permissions = permissions; + } + + public String getToken() { + return token; + } + + public void setToken(String token) { + this.token = token; + } + + public List getRepositories() { + return repositories; + } + + public void setRepositories(List repositories) { + this.repositories = repositories; + } + + public GHRepositorySelection getRepositorySelection() { + return repositorySelection; + } + + public void setRepositorySelection(GHRepositorySelection repositorySelection) { + this.repositorySelection = repositorySelection; + } + + /** + * When was this tokens expires? + */ + @WithBridgeMethods(value=String.class, adapterMethod="expiresAtStr") + public Date getExpiresAt() throws IOException { + return GitHub.parseDate(expires_at); + } + + @SuppressFBWarnings(value = "UPM_UNCALLED_PRIVATE_METHOD", justification = "Bridge method of getExpiresAt") + private Object expiresAtStr(Date id, Class type) { + return expires_at; + } + + /*package*/ GHAppInstallationToken wrapUp(GitHub root) { + this.root = root; + return this; + } +} diff --git a/src/main/java/org/kohsuke/github/GHCommit.java b/src/main/java/org/kohsuke/github/GHCommit.java index a817da2fd6..4891065ad5 100644 --- a/src/main/java/org/kohsuke/github/GHCommit.java +++ b/src/main/java/org/kohsuke/github/GHCommit.java @@ -327,17 +327,11 @@ private GHUser resolveUser(User author) throws IOException { * Lists up all the commit comments in this repository. */ public PagedIterable listComments() { - return new PagedIterable() { - public PagedIterator _iterator(int pageSize) { - return new PagedIterator(owner.root.retrieve().asIterator(String.format("/repos/%s/%s/commits/%s/comments", owner.getOwnerName(), owner.getName(), sha), GHCommitComment[].class, pageSize)) { - @Override - protected void wrapUp(GHCommitComment[] page) { - for (GHCommitComment c : page) - c.wrap(owner); - } - }; - } - }; + return owner.root.retrieve() + .asPagedIterable( + String.format("/repos/%s/%s/commits/%s/comments", owner.getOwnerName(), owner.getName(), sha), + GHCommitComment[].class, + item -> item.wrap(owner) ); } /** diff --git a/src/main/java/org/kohsuke/github/GHCommitComment.java b/src/main/java/org/kohsuke/github/GHCommitComment.java index f5ee76e478..a0047c3d15 100644 --- a/src/main/java/org/kohsuke/github/GHCommitComment.java +++ b/src/main/java/org/kohsuke/github/GHCommitComment.java @@ -98,17 +98,11 @@ public GHReaction createReaction(ReactionContent content) throws IOException { @Preview @Deprecated public PagedIterable listReactions() { - return new PagedIterable() { - public PagedIterator _iterator(int pageSize) { - return new PagedIterator(owner.root.retrieve().withPreview(SQUIRREL_GIRL).asIterator(getApiTail()+"/reactions", GHReaction[].class, pageSize)) { - @Override - protected void wrapUp(GHReaction[] page) { - for (GHReaction c : page) - c.wrap(owner.root); - } - }; - } - }; + return owner.root.retrieve().withPreview(SQUIRREL_GIRL) + .asPagedIterable( + getApiTail()+"/reactions", + GHReaction[].class, + item -> item.wrap(owner.root) ); } /** diff --git a/src/main/java/org/kohsuke/github/GHCommitQueryBuilder.java b/src/main/java/org/kohsuke/github/GHCommitQueryBuilder.java index bac8c89ee6..64b3a0e935 100644 --- a/src/main/java/org/kohsuke/github/GHCommitQueryBuilder.java +++ b/src/main/java/org/kohsuke/github/GHCommitQueryBuilder.java @@ -91,15 +91,10 @@ public GHCommitQueryBuilder until(long timestamp) { * Lists up the commits with the criteria built so far. */ public PagedIterable list() { - return new PagedIterable() { - public PagedIterator _iterator(int pageSize) { - return new PagedIterator(req.asIterator(repo.getApiTailUrl("commits"), GHCommit[].class, pageSize)) { - protected void wrapUp(GHCommit[] page) { - for (GHCommit c : page) - c.wrapUp(repo); - } - }; - } - }; + return req + .asPagedIterable( + repo.getApiTailUrl("commits"), + GHCommit[].class, + item -> item.wrapUp(repo) ); } } diff --git a/src/main/java/org/kohsuke/github/GHContent.java b/src/main/java/org/kohsuke/github/GHContent.java index d7a7bd446f..9b9f787a67 100644 --- a/src/main/java/org/kohsuke/github/GHContent.java +++ b/src/main/java/org/kohsuke/github/GHContent.java @@ -2,10 +2,12 @@ import edu.umd.cs.findbugs.annotations.SuppressFBWarnings; import org.apache.commons.codec.binary.Base64; -import org.apache.commons.io.IOUtils; +import org.apache.commons.codec.binary.Base64InputStream; +import java.io.ByteArrayInputStream; import java.io.IOException; import java.io.InputStream; +import java.io.UnsupportedEncodingException; /** * A Content of a repository. @@ -14,7 +16,7 @@ * @see GHRepository#getFileContent(String) */ @SuppressWarnings({"UnusedDeclaration"}) -public class GHContent { +public class GHContent implements Refreshable { /* In normal use of this class, repository field is set via wrap(), but in the code search API, there's a nested 'repository' field that gets populated from JSON. @@ -91,10 +93,8 @@ public String getContent() throws IOException { * Use {@link #read()} */ public String getEncodedContent() throws IOException { - if (content!=null) - return content; - else - return Base64.encodeBase64String(IOUtils.toByteArray(read())); + refresh(content); + return content; } public String getUrl() { @@ -112,16 +112,27 @@ public String getHtmlUrl() { /** * Retrieves the actual content stored here. */ + /** + * Retrieves the actual bytes of the blob. + */ public InputStream read() throws IOException { - // if the download link is encoded with a token on the query string, the default behavior of POST will fail - return new Requester(root).method("GET").asStream(getDownloadUrl()); + refresh(content); + if (encoding.equals("base64")) { + try { + return new Base64InputStream(new ByteArrayInputStream(content.getBytes("US-ASCII")), false); + } catch (UnsupportedEncodingException e) { + throw new AssertionError(e); // US-ASCII is mandatory + } + } + + throw new UnsupportedOperationException("Unrecognized encoding: "+encoding); } /** * URL to retrieve the raw content of the file. Null if this is a directory. */ public String getDownloadUrl() throws IOException { - populate(); + refresh(download_url); return download_url; } @@ -139,7 +150,6 @@ public boolean isDirectory() { * Depending on the original API call where this object is created, it may not contain everything. */ protected synchronized void populate() throws IOException { - if (download_url!=null) return; // already populated root.retrieve().to(url, this); } @@ -150,16 +160,11 @@ public PagedIterable listDirectoryContent() throws IOException { if (!isDirectory()) throw new IllegalStateException(path+" is not a directory"); - return new PagedIterable() { - public PagedIterator _iterator(int pageSize) { - return new PagedIterator(root.retrieve().asIterator(url, GHContent[].class, pageSize)) { - @Override - protected void wrapUp(GHContent[] page) { - GHContent.wrap(page, repository); - } - }; - } - }; + return root.retrieve() + .asPagedIterable( + url, + GHContent[].class, + item -> item.wrap(repository) ); } @SuppressFBWarnings("DM_DEFAULT_ENCODING") @@ -243,4 +248,14 @@ public static GHContent[] wrap(GHContent[] contents, GHRepository repository) { } return contents; } + + /** + * Fully populate the data by retrieving missing data. + * + * Depending on the original API call where this object is created, it may not contain everything. + */ + @Override + public synchronized void refresh() throws IOException { + root.retrieve().to(url, this); + } } diff --git a/src/main/java/org/kohsuke/github/GHContentWithLicense.java b/src/main/java/org/kohsuke/github/GHContentWithLicense.java index bbd115e649..c067d5a037 100644 --- a/src/main/java/org/kohsuke/github/GHContentWithLicense.java +++ b/src/main/java/org/kohsuke/github/GHContentWithLicense.java @@ -7,7 +7,6 @@ * @see documentation * @see GHRepository#getLicense() */ -@Preview @Deprecated class GHContentWithLicense extends GHContent { GHLicense license; diff --git a/src/main/java/org/kohsuke/github/GHDeployKey.java b/src/main/java/org/kohsuke/github/GHDeployKey.java index 04acda8022..f5d0f9de6d 100644 --- a/src/main/java/org/kohsuke/github/GHDeployKey.java +++ b/src/main/java/org/kohsuke/github/GHDeployKey.java @@ -8,10 +8,10 @@ public class GHDeployKey { protected String url, key, title; protected boolean verified; - protected int id; + protected long id; private GHRepository owner; - public int getId() { + public long getId() { return id; } diff --git a/src/main/java/org/kohsuke/github/GHDeployment.java b/src/main/java/org/kohsuke/github/GHDeployment.java index 42118f3329..7a7febf6ce 100644 --- a/src/main/java/org/kohsuke/github/GHDeployment.java +++ b/src/main/java/org/kohsuke/github/GHDeployment.java @@ -71,17 +71,11 @@ public GHDeploymentStatusBuilder createStatus(GHDeploymentState state) { } public PagedIterable listStatuses() { - return new PagedIterable() { - public PagedIterator _iterator(int pageSize) { - return new PagedIterator(root.retrieve().asIterator(statuses_url, GHDeploymentStatus[].class, pageSize)) { - @Override - protected void wrapUp(GHDeploymentStatus[] page) { - for (GHDeploymentStatus c : page) - c.wrap(owner); - } - }; - } - }; + return root.retrieve() + .asPagedIterable( + statuses_url, + GHDeploymentStatus[].class, + item -> item.wrap(owner) ); } } diff --git a/src/main/java/org/kohsuke/github/GHEvent.java b/src/main/java/org/kohsuke/github/GHEvent.java index 970b6afbf7..8ad6368fe5 100644 --- a/src/main/java/org/kohsuke/github/GHEvent.java +++ b/src/main/java/org/kohsuke/github/GHEvent.java @@ -23,6 +23,8 @@ public enum GHEvent { GOLLUM, INSTALLATION, INSTALLATION_REPOSITORIES, + INTEGRATION_INSTALLATION_REPOSITORIES, + CHECK_SUITE, ISSUE_COMMENT, ISSUES, LABEL, diff --git a/src/main/java/org/kohsuke/github/GHEventInfo.java b/src/main/java/org/kohsuke/github/GHEventInfo.java index e875f2df59..ca7e3d4f04 100644 --- a/src/main/java/org/kohsuke/github/GHEventInfo.java +++ b/src/main/java/org/kohsuke/github/GHEventInfo.java @@ -34,7 +34,7 @@ public class GHEventInfo { "UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR" }, justification = "JSON API") public static class GHEventRepository { @SuppressFBWarnings(value = "UUF_UNUSED_FIELD", justification = "We don't provide it in API now") - private int id; + private long id; @SuppressFBWarnings(value = "UUF_UNUSED_FIELD", justification = "We don't provide it in API now") private String url; // repository API URL private String name; // owner/repo diff --git a/src/main/java/org/kohsuke/github/GHGist.java b/src/main/java/org/kohsuke/github/GHGist.java index c4c91737d6..19a2b626f2 100644 --- a/src/main/java/org/kohsuke/github/GHGist.java +++ b/src/main/java/org/kohsuke/github/GHGist.java @@ -1,6 +1,7 @@ package org.kohsuke.github; import com.fasterxml.jackson.annotation.JsonProperty; +import org.apache.commons.lang3.StringUtils; import java.io.IOException; import java.net.URL; @@ -115,8 +116,13 @@ private void wrapUp() { e.getValue().fileName = e.getKey(); } } + String getApiTailUrl(String tail) { - return "/gists/" + id + '/' + tail; + String result = "/gists/" + id; + if (!StringUtils.isBlank(tail)) { + result += StringUtils.prependIfMissing(tail, "/"); + } + return result; } public void star() throws IOException { @@ -139,17 +145,11 @@ public GHGist fork() throws IOException { } public PagedIterable listForks() { - return new PagedIterable() { - public PagedIterator _iterator(int pageSize) { - return new PagedIterator(root.retrieve().asIterator(getApiTailUrl("forks"), GHGist[].class, pageSize)) { - @Override - protected void wrapUp(GHGist[] page) { - for (GHGist c : page) - c.wrapUp(root); - } - }; - } - }; + return root.retrieve() + .asPagedIterable( + getApiTailUrl("forks"), + GHGist[].class, + item -> item.wrapUp(root) ); } /** @@ -159,6 +159,13 @@ public void delete() throws IOException { new Requester(root).method("DELETE").to("/gists/" + id); } + /** + * Updates this gist via a builder. + */ + public GHGistUpdater update() throws IOException { + return new GHGistUpdater(this); + } + @Override public boolean equals(Object o) { if (this == o) return true; @@ -172,4 +179,10 @@ public boolean equals(Object o) { public int hashCode() { return id.hashCode(); } + + GHGist wrap(GHUser owner) { + this.owner = owner; + this.root = owner.root; + return this; + } } diff --git a/src/main/java/org/kohsuke/github/GHGistUpdater.java b/src/main/java/org/kohsuke/github/GHGistUpdater.java new file mode 100644 index 0000000000..71bff34e22 --- /dev/null +++ b/src/main/java/org/kohsuke/github/GHGistUpdater.java @@ -0,0 +1,60 @@ +package org.kohsuke.github; + +import java.io.IOException; +import java.util.Collections; +import java.util.LinkedHashMap; + +/** + * Builder pattern for updating a Gist. + * + * @author Martin van Zijl + */ +public class GHGistUpdater { + private final GHGist base; + private final Requester builder; + LinkedHashMap files; + + GHGistUpdater(GHGist base) { + this.base = base; + this.builder = new Requester(base.root); + + files = new LinkedHashMap<>(); + } + + public GHGistUpdater addFile(String fileName, String content) throws IOException { + updateFile(fileName, content); + return this; + } + +// // This method does not work. +// public GHGistUpdater deleteFile(String fileName) throws IOException { +// files.put(fileName, Collections.singletonMap("filename", null)); +// return this; +// } + + public GHGistUpdater renameFile(String fileName, String newFileName) throws IOException + { + files.put(fileName, Collections.singletonMap("filename", newFileName)); + return this; + } + + public GHGistUpdater updateFile(String fileName, String content) throws IOException { + files.put(fileName, Collections.singletonMap("content", content)); + return this; + } + + public GHGistUpdater description(String desc) { + builder.with("description",desc); + return this; + } + + /** + * Updates the Gist based on the parameters specified thus far. + */ + public GHGist update() throws IOException { + builder._with("files", files); + return builder + .method("PATCH") + .to(base.getApiTailUrl(""), GHGist.class).wrap(base.owner); + } +} diff --git a/src/main/java/org/kohsuke/github/GHIssue.java b/src/main/java/org/kohsuke/github/GHIssue.java index 55cf54b81f..20343266b7 100644 --- a/src/main/java/org/kohsuke/github/GHIssue.java +++ b/src/main/java/org/kohsuke/github/GHIssue.java @@ -292,16 +292,11 @@ public List getComments() throws IOException { * Obtains all the comments associated with this issue. */ public PagedIterable listComments() throws IOException { - return new PagedIterable() { - public PagedIterator _iterator(int pageSize) { - return new PagedIterator(root.retrieve().asIterator(getIssuesApiRoute() + "/comments", GHIssueComment[].class, pageSize)) { - protected void wrapUp(GHIssueComment[] page) { - for (GHIssueComment c : page) - c.wrapUp(GHIssue.this); - } - }; - } - }; + return root.retrieve() + .asPagedIterable( + getIssuesApiRoute() + "/comments", + GHIssueComment[].class, + item -> item.wrapUp(GHIssue.this) ); } @Preview @Deprecated @@ -314,17 +309,11 @@ public GHReaction createReaction(ReactionContent content) throws IOException { @Preview @Deprecated public PagedIterable listReactions() { - return new PagedIterable() { - public PagedIterator _iterator(int pageSize) { - return new PagedIterator(owner.root.retrieve().withPreview(SQUIRREL_GIRL).asIterator(getApiRoute()+"/reactions", GHReaction[].class, pageSize)) { - @Override - protected void wrapUp(GHReaction[] page) { - for (GHReaction c : page) - c.wrap(owner.root); - } - }; - } - }; + return owner.root.retrieve().withPreview(SQUIRREL_GIRL) + .asPagedIterable( + getApiRoute()+"/reactions", + GHReaction[].class, + item -> item.wrap(owner.root) ); } public void addAssignees(GHUser... assignees) throws IOException { @@ -430,4 +419,15 @@ public URL getUrl() { return GitHub.parseURL(html_url); } } + + /** + * Lists events for this issue. + * See https://developer.github.com/v3/issues/events/ + */ + public PagedIterable listEvents() throws IOException { + return root.retrieve().asPagedIterable( + owner.getApiTailUrl(String.format("/issues/%s/events", number)), + GHIssueEvent[].class, + item -> item.wrapUp(GHIssue.this) ); + } } diff --git a/src/main/java/org/kohsuke/github/GHIssueComment.java b/src/main/java/org/kohsuke/github/GHIssueComment.java index 1b7eea5ebc..258718312c 100644 --- a/src/main/java/org/kohsuke/github/GHIssueComment.java +++ b/src/main/java/org/kohsuke/github/GHIssueComment.java @@ -109,17 +109,12 @@ public GHReaction createReaction(ReactionContent content) throws IOException { @Preview @Deprecated public PagedIterable listReactions() { - return new PagedIterable() { - public PagedIterator _iterator(int pageSize) { - return new PagedIterator(owner.root.retrieve().withPreview(SQUIRREL_GIRL).asIterator(getApiRoute()+"/reactions", GHReaction[].class, pageSize)) { - @Override - protected void wrapUp(GHReaction[] page) { - for (GHReaction c : page) - c.wrap(owner.root); - } - }; - } - }; + return owner.root.retrieve() + .withPreview(SQUIRREL_GIRL) + .asPagedIterable( + getApiRoute()+"/reactions", + GHReaction[].class, + item -> item.wrap(owner.root) ); } private String getApiRoute() { diff --git a/src/main/java/org/kohsuke/github/GHIssueEvent.java b/src/main/java/org/kohsuke/github/GHIssueEvent.java new file mode 100644 index 0000000000..089e87a831 --- /dev/null +++ b/src/main/java/org/kohsuke/github/GHIssueEvent.java @@ -0,0 +1,81 @@ +package org.kohsuke.github; + +import java.util.Date; + +/** + * @author Martin van Zijl + */ +public class GHIssueEvent { + private GitHub root; + + private long id; + private String node_id; + private String url; + private GHUser actor; + private String event; + private String commit_id; + private String commit_url; + private String created_at; + + private GHIssue issue; + + public long getId() { + return id; + } + + public String getNodeId() { + return node_id; + } + + public String getUrl() { + return url; + } + + public GHUser getActor() { + return actor; + } + + public String getEvent() { + return event; + } + + public String getCommitId() { + return commit_id; + } + + public String getCommitUrl() { + return commit_url; + } + + public Date getCreatedAt() { + return GitHub.parseDate(created_at); + } + + public GitHub getRoot() { + return root; + } + + public GHIssue getIssue() { + return issue; + } + + GHIssueEvent wrapUp(GitHub root) { + this.root = root; + return this; + } + + GHIssueEvent wrapUp(GHIssue parent) { + this.issue = parent; + this.root = parent.root; + return this; + } + + @Override + public String toString() { + return String.format("Issue %d was %s by %s on %s", + getIssue().getNumber(), + getEvent(), + getActor().getLogin(), + getCreatedAt().toString()); + } +} diff --git a/src/main/java/org/kohsuke/github/GHLabel.java b/src/main/java/org/kohsuke/github/GHLabel.java index 9210bb5f5c..29ab891473 100644 --- a/src/main/java/org/kohsuke/github/GHLabel.java +++ b/src/main/java/org/kohsuke/github/GHLabel.java @@ -4,14 +4,16 @@ import java.util.ArrayList; import java.util.Collection; import java.util.List; +import java.util.Objects; +import static org.kohsuke.github.Previews.SYMMETRA; /** * @author Kohsuke Kawaguchi * @see GHIssue#getLabels() * @see GHRepository#listLabels() */ public class GHLabel { - private String url, name, color; + private String url, name, color, description; private GHRepository repo; public String getUrl() { @@ -29,6 +31,14 @@ public String getColor() { return color; } + /** + * Purpose of Label + */ + @Preview @Deprecated + public String getDescription() { + return description; + } + /*package*/ GHLabel wrapUp(GHRepository repo) { this.repo = repo; return this; @@ -43,7 +53,26 @@ public void delete() throws IOException { * 6-letter hex color code, like "f29513" */ public void setColor(String newColor) throws IOException { - repo.root.retrieve().method("PATCH").with("name", name).with("color", newColor).to(url); + repo.root.retrieve().method("PATCH") + .withPreview(SYMMETRA) + .with("name", name) + .with("color", newColor) + .with("description", description) + .to(url); + } + + /** + * @param newDescription + * Description of label + */ + @Preview @Deprecated + public void setDescription(String newDescription) throws IOException { + repo.root.retrieve().method("PATCH") + .withPreview(SYMMETRA) + .with("name", name) + .with("color", color) + .with("description", newDescription) + .to(url); } /*package*/ static Collection toNames(Collection labels) { @@ -53,4 +82,20 @@ public void setColor(String newColor) throws IOException { } return r; } + + @Override + public boolean equals(final Object o) { + if (this == o) return true; + if (o == null || getClass() != o.getClass()) return false; + final GHLabel ghLabel = (GHLabel) o; + return Objects.equals(url, ghLabel.url) && + Objects.equals(name, ghLabel.name) && + Objects.equals(color, ghLabel.color) && + Objects.equals(repo, ghLabel.repo); + } + + @Override + public int hashCode() { + return Objects.hash(url, name, color, repo); + } } diff --git a/src/main/java/org/kohsuke/github/GHLicense.java b/src/main/java/org/kohsuke/github/GHLicense.java index a7dad4b5ca..b18e7e9338 100644 --- a/src/main/java/org/kohsuke/github/GHLicense.java +++ b/src/main/java/org/kohsuke/github/GHLicense.java @@ -32,19 +32,15 @@ import java.util.ArrayList; import java.util.List; -import static org.kohsuke.github.Previews.*; - /** * The GitHub Preview API's license information *

- * WARNING: This uses a PREVIEW API - subject to change. * * @author Duncan Dickinson * @see GitHub#getLicense(String) * @see GHRepository#getLicense() * @see https://developer.github.com/v3/licenses/ */ -@Preview @Deprecated @SuppressWarnings({"UnusedDeclaration"}) @SuppressFBWarnings(value = {"UWF_UNWRITTEN_PUBLIC_OR_PROTECTED_FIELD", "UWF_UNWRITTEN_FIELD", "NP_UNWRITTEN_FIELD"}, justification = "JSON API") @@ -144,7 +140,7 @@ public String getBody() throws IOException { protected synchronized void populate() throws IOException { if (description!=null) return; // already populated - root.retrieve().withPreview(DRAX).to(url, this); + root.retrieve().to(url, this); } @Override diff --git a/src/main/java/org/kohsuke/github/GHMilestone.java b/src/main/java/org/kohsuke/github/GHMilestone.java index 50ad549e82..3ed54636c7 100644 --- a/src/main/java/org/kohsuke/github/GHMilestone.java +++ b/src/main/java/org/kohsuke/github/GHMilestone.java @@ -85,10 +85,29 @@ public void reopen() throws IOException { edit("state", "open"); } + /** + * Deletes this milestone. + */ + public void delete() throws IOException { + root.retrieve().method("DELETE").to(getApiRoute()); + } + private void edit(String key, Object value) throws IOException { new Requester(root)._with(key, value).method("PATCH").to(getApiRoute()); } + public void setTitle(String title) throws IOException { + edit("title", title); + } + + public void setDescription(String description) throws IOException { + edit("description", description); + } + + public void setDueOn(Date dueOn) throws IOException { + edit("due_on", GitHub.printDate(dueOn)); + } + protected String getApiRoute() { return "/repos/"+owner.getOwnerName()+"/"+owner.getName()+"/milestones/"+number; } diff --git a/src/main/java/org/kohsuke/github/GHMyself.java b/src/main/java/org/kohsuke/github/GHMyself.java index 5ab9b4a270..e059f58226 100644 --- a/src/main/java/org/kohsuke/github/GHMyself.java +++ b/src/main/java/org/kohsuke/github/GHMyself.java @@ -156,17 +156,13 @@ public PagedIterable listRepositories(final int pageSize) { * @param repoType type of repository returned in the listing */ public PagedIterable listRepositories(final int pageSize, final RepositoryListFilter repoType) { - return new PagedIterable() { - public PagedIterator _iterator(int pageSize) { - return new PagedIterator(root.retrieve().with("type",repoType).asIterator("/user/repos", GHRepository[].class, pageSize)) { - @Override - protected void wrapUp(GHRepository[] page) { - for (GHRepository c : page) - c.wrap(root); - } - }; - } - }.withPageSize(pageSize); + return root.retrieve() + .with("type",repoType) + .asPagedIterable( + "/user/repos", + GHRepository[].class, + item -> item.wrap(root) + ).withPageSize(pageSize); } /** @@ -191,16 +187,12 @@ public PagedIterable listOrgMemberships() { * Filter by a specific state */ public PagedIterable listOrgMemberships(final GHMembership.State state) { - return new PagedIterable() { - public PagedIterator _iterator(int pageSize) { - return new PagedIterator(root.retrieve().with("state",state).asIterator("/user/memberships/orgs", GHMembership[].class, pageSize)) { - @Override - protected void wrapUp(GHMembership[] page) { - GHMembership.wrap(page,root); - } - }; - } - }; + return root.retrieve() + .with("state",state) + .asPagedIterable( + "/user/memberships/orgs", + GHMembership[].class, + item -> item.wrap(root) ); } /** diff --git a/src/main/java/org/kohsuke/github/GHOrganization.java b/src/main/java/org/kohsuke/github/GHOrganization.java index e5ce68e26b..2b56d02f07 100644 --- a/src/main/java/org/kohsuke/github/GHOrganization.java +++ b/src/main/java/org/kohsuke/github/GHOrganization.java @@ -9,6 +9,7 @@ import java.util.List; import java.util.Map; import java.util.TreeMap; +import static org.kohsuke.github.Previews.INERTIA; /** * @author Kohsuke Kawaguchi @@ -69,17 +70,11 @@ public Map getTeams() throws IOException { * List up all the teams. */ public PagedIterable listTeams() throws IOException { - return new PagedIterable() { - public PagedIterator _iterator(int pageSize) { - return new PagedIterator(root.retrieve().asIterator(String.format("/orgs/%s/teams", login), GHTeam[].class, pageSize)) { - @Override - protected void wrapUp(GHTeam[] page) { - for (GHTeam c : page) - c.wrapUp(GHOrganization.this); - } - }; - } - }; + return root.retrieve() + .asPagedIterable( + String.format("/orgs/%s/teams", login), + GHTeam[].class, + item -> item.wrapUp(GHOrganization.this) ); } /** @@ -104,6 +99,22 @@ public GHTeam getTeamBySlug(String slug) throws IOException { return null; } + /** Member's role in an organization */ + public enum Role { + ADMIN, /** The user is an owner of the organization. */ + MEMBER /** The user is a non-owner member of the organization. */ + } + + /** + * Adds (invites) a user to the organization. + * @see documentation + */ + public void add(GHUser user, Role role) throws IOException { + root.retrieve().method("PUT") + .with("role", role.name().toLowerCase()) + .to("/orgs/" + login + "/memberships/" + user.getLogin()); + } + /** * Checks if this organization has the specified user as a member. */ @@ -173,17 +184,12 @@ public PagedIterable listMembersWithFilter(String filter) throws IOExcep } private PagedIterable listMembers(final String suffix, final String filter) throws IOException { - return new PagedIterable() { - public PagedIterator _iterator(int pageSize) { - String filterParams = (filter == null) ? "" : ("?filter=" + filter); - return new PagedIterator(root.retrieve().asIterator(String.format("/orgs/%s/%s%s", login, suffix, filterParams), GHUser[].class, pageSize)) { - @Override - protected void wrapUp(GHUser[] users) { - GHUser.wrap(users, root); - } - }; - } - }; + String filterParams = (filter == null) ? "" : ("?filter=" + filter); + return root.retrieve() + .asPagedIterable( + String.format("/orgs/%s/%s%s", login, suffix, filterParams), + GHUser[].class, + item -> item.wrapUp(root) ); } /** @@ -193,6 +199,37 @@ public void conceal(GHUser u) throws IOException { root.retrieve().method("DELETE").to("/orgs/" + login + "/public_members/" + u.getLogin(), null); } + /** + * Returns the projects for this organization. + * @param status The status filter (all, open or closed). + */ + public PagedIterable listProjects(final GHProject.ProjectStateFilter status) throws IOException { + return root.retrieve().withPreview(INERTIA) + .with("state", status) + .asPagedIterable( + String.format("/orgs/%s/projects", login), + GHProject[].class, + item -> item.wrap(root) ); + } + + /** + * Returns all open projects for the organization. + */ + public PagedIterable listProjects() throws IOException { + return listProjects(GHProject.ProjectStateFilter.OPEN); + } + + /** + * Creates a project for the organization. + */ + public GHProject createProject(String name, String body) throws IOException { + return root.retrieve().method("POST") + .withPreview(INERTIA) + .with("name", name) + .with("body", body) + .to(String.format("/orgs/%s/projects", login), GHProject.class).wrap(root); + } + public enum Permission { ADMIN, PUSH, PULL } /** @@ -202,7 +239,7 @@ public GHTeam createTeam(String name, Permission p, Collection rep Requester post = new Requester(root).with("name", name).with("permission", p); List repo_names = new ArrayList(); for (GHRepository r : repositories) { - repo_names.add(r.getName()); + repo_names.add(login + "/" + r.getName()); } post.with("repo_names",repo_names); return post.method("POST").to("/orgs/" + login + "/teams", GHTeam.class).wrapUp(this); @@ -245,17 +282,11 @@ public List getPullRequests() throws IOException { * Lists events performed by a user (this includes private events if the caller is authenticated. */ public PagedIterable listEvents() throws IOException { - return new PagedIterable() { - public PagedIterator _iterator(int pageSize) { - return new PagedIterator(root.retrieve().asIterator(String.format("/orgs/%s/events", login), GHEventInfo[].class, pageSize)) { - @Override - protected void wrapUp(GHEventInfo[] page) { - for (GHEventInfo c : page) - c.wrapUp(root); - } - }; - } - }; + return root.retrieve() + .asPagedIterable( + String.format("/orgs/%s/events", login), + GHEventInfo[].class, + item -> item.wrapUp(root) ); } /** @@ -267,17 +298,12 @@ protected void wrapUp(GHEventInfo[] page) { */ @Override public PagedIterable listRepositories(final int pageSize) { - return new PagedIterable() { - public PagedIterator _iterator(int pageSize) { - return new PagedIterator(root.retrieve().asIterator("/orgs/" + login + "/repos", GHRepository[].class, pageSize)) { - @Override - protected void wrapUp(GHRepository[] page) { - for (GHRepository c : page) - c.wrap(root); - } - }; - } - }.withPageSize(pageSize); + return root.retrieve() + .asPagedIterable( + "/orgs/" + login + "/repos", + GHRepository[].class, + item -> item.wrap(root) + ).withPageSize(pageSize); } /** diff --git a/src/main/java/org/kohsuke/github/GHPerson.java b/src/main/java/org/kohsuke/github/GHPerson.java index b1be225965..137dd5b368 100644 --- a/src/main/java/org/kohsuke/github/GHPerson.java +++ b/src/main/java/org/kohsuke/github/GHPerson.java @@ -79,32 +79,28 @@ public PagedIterable listRepositories() { * Unlike {@link #getRepositories()}, this does not wait until all the repositories are returned. */ public PagedIterable listRepositories(final int pageSize) { - return new PagedIterable() { - public PagedIterator _iterator(int pageSize) { - return new PagedIterator(root.retrieve().asIterator("/users/" + login + "/repos", GHRepository[].class, pageSize)) { - @Override - protected void wrapUp(GHRepository[] page) { - for (GHRepository c : page) - c.wrap(root); - } - }; - } - }.withPageSize(pageSize); + return root.retrieve() + .asPagedIterable( + "/users/" + login + "/repos", + GHRepository[].class, + item -> item.wrap(root) + ).withPageSize(pageSize); } /** * Loads repository list in a paginated fashion. - * + * *

* For a person with a lot of repositories, GitHub returns the list of repositories in a paginated fashion. * Unlike {@link #getRepositories()}, this method allows the caller to start processing data as it arrives. - * + * * Every {@link Iterator#next()} call results in I/O. Exceptions that occur during the processing is wrapped * into {@link Error}. * * @deprecated * Use {@link #listRepositories()} */ + @Deprecated public synchronized Iterable> iterateRepositories(final int pageSize) { return new Iterable>() { public Iterator> iterator() { diff --git a/src/main/java/org/kohsuke/github/GHProject.java b/src/main/java/org/kohsuke/github/GHProject.java new file mode 100644 index 0000000000..66e347cbc3 --- /dev/null +++ b/src/main/java/org/kohsuke/github/GHProject.java @@ -0,0 +1,183 @@ +/* + * The MIT License + * + * Copyright 2018 Martin van Zijl. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + */ +package org.kohsuke.github; + +import java.io.FileNotFoundException; +import java.io.IOException; +import java.net.URL; +import java.util.Locale; + +import static org.kohsuke.github.Previews.INERTIA; + +/** + * A GitHub project. + * @see Projects + * @author Martin van Zijl + */ +public class GHProject extends GHObject { + protected GitHub root; + protected GHObject owner; + + private String owner_url; + private String html_url; + private String node_id; + private String name; + private String body; + private int number; + private String state; + private GHUser creator; + + @Override + public URL getHtmlUrl() throws IOException { + return GitHub.parseURL(html_url); + } + + public GitHub getRoot() { + return root; + } + + public GHObject getOwner() throws IOException { + if(owner == null) { + try { + if(owner_url.contains("/orgs/")) { + owner = root.retrieve().to(getOwnerUrl().getPath(), GHOrganization.class).wrapUp(root); + } else if(owner_url.contains("/users/")) { + owner = root.retrieve().to(getOwnerUrl().getPath(), GHUser.class).wrapUp(root); + } else if(owner_url.contains("/repos/")) { + owner = root.retrieve().to(getOwnerUrl().getPath(), GHRepository.class).wrap(root); + } + } catch (FileNotFoundException e) { + return null; + } + } + return owner; + } + + public URL getOwnerUrl() { + return GitHub.parseURL(owner_url); + } + + public String getNode_id() { + return node_id; + } + + public String getName() { + return name; + } + + public String getBody() { + return body; + } + + public int getNumber() { + return number; + } + + public ProjectState getState() { + return Enum.valueOf(ProjectState.class, state.toUpperCase(Locale.ENGLISH)); + } + + public GHUser getCreator() { + return creator; + } + + public GHProject wrap(GHRepository repo) { + this.owner = repo; + this.root = repo.root; + return this; + } + + public GHProject wrap(GitHub root) { + this.root = root; + return this; + } + + private void edit(String key, Object value) throws IOException { + new Requester(root).withPreview(INERTIA)._with(key, value).method("PATCH").to(getApiRoute()); + } + + protected String getApiRoute() { + return "/projects/" + id; + } + + public void setName(String name) throws IOException { + edit("name", name); + } + + public void setBody(String body) throws IOException { + edit("body", body); + } + + public enum ProjectState { + OPEN, + CLOSED + } + + public void setState(ProjectState state) throws IOException { + edit("state", state.toString().toLowerCase()); + } + + public static enum ProjectStateFilter { + ALL, + OPEN, + CLOSED + } + + /** + * Set the permission level that all members of the project's organization will have on this project. + * Only applicable for organization-owned projects. + */ + public void setOrganizationPermission(GHPermissionType permission) throws IOException { + edit("organization_permission", permission.toString().toLowerCase()); + } + + /** + * Sets visibility of the project within the organization. + * Only applicable for organization-owned projects. + */ + public void setPublic(boolean isPublic) throws IOException { + edit("public", isPublic); + } + + public void delete() throws IOException { + new Requester(root).withPreview(INERTIA).method("DELETE").to(getApiRoute()); + } + + public PagedIterable listColumns() throws IOException { + final GHProject project = this; + return root.retrieve() + .withPreview(INERTIA) + .asPagedIterable( + String.format("/projects/%d/columns", id), + GHProjectColumn[].class, + item -> item.wrap(project) ); + } + + public GHProjectColumn createColumn(String name) throws IOException { + return root.retrieve().method("POST") + .withPreview(INERTIA) + .with("name", name) + .to(String.format("/projects/%d/columns", id), GHProjectColumn.class).wrap(this); + } +} \ No newline at end of file diff --git a/src/main/java/org/kohsuke/github/GHProjectCard.java b/src/main/java/org/kohsuke/github/GHProjectCard.java new file mode 100644 index 0000000000..d6fb97cd87 --- /dev/null +++ b/src/main/java/org/kohsuke/github/GHProjectCard.java @@ -0,0 +1,123 @@ +package org.kohsuke.github; + +import org.apache.commons.lang3.StringUtils; + +import java.io.FileNotFoundException; +import java.io.IOException; +import java.net.URL; + +import static org.kohsuke.github.Previews.INERTIA; + +/** + * @author Gunnar Skjold + */ +public class GHProjectCard extends GHObject { + private GitHub root; + private GHProject project; + private GHProjectColumn column; + + private String note; + private GHUser creator; + private String content_url, project_url, column_url; + private boolean archived; + + public URL getHtmlUrl() throws IOException { + return null; + } + + public GHProjectCard wrap(GitHub root) { + this.root = root; + return this; + } + + public GHProjectCard wrap(GHProjectColumn column) { + this.column = column; + this.project = column.project; + this.root = column.root; + return this; + } + + public GitHub getRoot() { + return root; + } + + public GHProject getProject() throws IOException { + if(project == null) { + try { + project = root.retrieve().to(getProjectUrl().getPath(), GHProject.class).wrap(root); + } catch (FileNotFoundException e) { + return null; + } + } + return project; + } + + public GHProjectColumn getColumn() throws IOException { + if(column == null) { + try { + column = root.retrieve().to(getColumnUrl().getPath(), GHProjectColumn.class).wrap(root); + } catch (FileNotFoundException e) { + return null; + } + } + return column; + } + + public GHIssue getContent() throws IOException { + if(StringUtils.isEmpty(content_url)) + return null; + try { + if(content_url.contains("/pulls")) { + return root.retrieve().to(getContentUrl().getPath(), GHPullRequest.class).wrap(root); + } else { + return root.retrieve().to(getContentUrl().getPath(), GHIssue.class).wrap(root); + } + } catch (FileNotFoundException e) { + return null; + } + } + + public String getNote() { + return note; + } + + public GHUser getCreator() { + return creator; + } + + public URL getContentUrl() { + return GitHub.parseURL(content_url); + } + + public URL getProjectUrl() { + return GitHub.parseURL(project_url); + } + + public URL getColumnUrl() { + return GitHub.parseURL(column_url); + } + + public boolean isArchived() { + return archived; + } + + public void setNote(String note) throws IOException { + edit("note", note); + } + + public void setArchived(boolean archived) throws IOException { + edit("archived", archived); + } + + private void edit(String key, Object value) throws IOException { + new Requester(root).withPreview(INERTIA)._with(key, value).method("PATCH").to(getApiRoute()); + } + + protected String getApiRoute() { + return String.format("/projects/columns/cards/%d", id); + } + + public void delete() throws IOException { + new Requester(root).withPreview(INERTIA).method("DELETE").to(getApiRoute()); + } +} diff --git a/src/main/java/org/kohsuke/github/GHProjectColumn.java b/src/main/java/org/kohsuke/github/GHProjectColumn.java new file mode 100644 index 0000000000..3b853962ff --- /dev/null +++ b/src/main/java/org/kohsuke/github/GHProjectColumn.java @@ -0,0 +1,98 @@ +package org.kohsuke.github; + +import java.io.FileNotFoundException; +import java.io.IOException; +import java.net.URL; + +import static org.kohsuke.github.Previews.INERTIA; + +/** + * @author Gunnar Skjold + */ +public class GHProjectColumn extends GHObject { + protected GitHub root; + protected GHProject project; + + private String name; + private String project_url; + + @Override + public URL getHtmlUrl() throws IOException { + return null; + } + + public GHProjectColumn wrap(GitHub root) { + this.root = root; + return this; + } + + public GHProjectColumn wrap(GHProject project) { + this.project = project; + this.root = project.root; + return this; + } + + public GitHub getRoot() { + return root; + } + + public GHProject getProject() throws IOException { + if(project == null) { + try { + project = root.retrieve().to(getProjectUrl().getPath(), GHProject.class).wrap(root); + } catch (FileNotFoundException e) { + return null; + } + } + return project; + } + + public String getName() { + return name; + } + + public URL getProjectUrl() { + return GitHub.parseURL(project_url); + } + + public void setName(String name) throws IOException { + edit("name", name); + } + + private void edit(String key, Object value) throws IOException { + new Requester(root).withPreview(INERTIA)._with(key, value).method("PATCH").to(getApiRoute()); + } + + protected String getApiRoute() { + return String.format("/projects/columns/%d", id); + } + + public void delete() throws IOException { + new Requester(root).withPreview(INERTIA).method("DELETE").to(getApiRoute()); + } + + public PagedIterable listCards() throws IOException { + final GHProjectColumn column = this; + return root.retrieve() + .withPreview(INERTIA) + .asPagedIterable( + String.format("/projects/columns/%d/cards", id), + GHProjectCard[].class, + item -> item.wrap(column) ); + } + + public GHProjectCard createCard(String note) throws IOException { + return root.retrieve().method("POST") + .withPreview(INERTIA) + .with("note", note) + .to(String.format("/projects/columns/%d/cards", id), GHProjectCard.class).wrap(this); + } + + public GHProjectCard createCard(GHIssue issue) throws IOException { + return root.retrieve().method("POST") + .withPreview(INERTIA) + .with("content_type", issue instanceof GHPullRequest ? "PullRequest" : "Issue") + .with("content_id", issue.getId()) + .to(String.format("/projects/columns/%d/cards", id), GHProjectCard.class).wrap(this); + } +} diff --git a/src/main/java/org/kohsuke/github/GHPullRequest.java b/src/main/java/org/kohsuke/github/GHPullRequest.java index b4098829b9..b4c3ee1645 100644 --- a/src/main/java/org/kohsuke/github/GHPullRequest.java +++ b/src/main/java/org/kohsuke/github/GHPullRequest.java @@ -26,12 +26,15 @@ import javax.annotation.CheckForNull; import java.io.IOException; import java.net.URL; +import java.util.ArrayList; import java.util.Arrays; import java.util.Collection; import java.util.Collections; import java.util.Date; import java.util.List; +import static org.kohsuke.github.Previews.SHADOW_CAT; + /** * A pull request. * @@ -39,7 +42,7 @@ * @see GHRepository#getPullRequest(int) */ @SuppressWarnings({"UnusedDeclaration"}) -public class GHPullRequest extends GHIssue { +public class GHPullRequest extends GHIssue implements Refreshable { private static final String COMMENTS_ACTION = "/comments"; private static final String REQUEST_REVIEWERS = "/requested_reviewers"; @@ -53,6 +56,8 @@ public class GHPullRequest extends GHIssue { private GHUser merged_by; private int review_comments, additions, commits; private boolean merged, maintainer_can_modify; + // making these package private to all for testing + boolean draft; private Boolean mergeable; private int deletions; private String mergeable_state; @@ -61,6 +66,7 @@ public class GHPullRequest extends GHIssue { // pull request reviewers private GHUser[] requested_reviewers; + private GHTeam[] requested_teams; /** * GitHub doesn't return some properties of {@link GHIssue} when requesting the GET on the 'pulls' API @@ -81,6 +87,7 @@ GHPullRequest wrapUp(GitHub root) { if (head != null) head.wrapUp(root); if (merged_by != null) merged_by.wrapUp(root); if (requested_reviewers != null) GHUser.wrap(requested_reviewers, root); + if (requested_teams != null) GHTeam.wrapUp(requested_teams, this); return this; } @@ -187,6 +194,11 @@ public boolean canMaintainerModify() throws IOException { return maintainer_can_modify; } + public boolean isDraft() throws IOException { + populate(); + return draft; + } + /** * Is this PR mergeable? * @@ -196,11 +208,19 @@ public boolean canMaintainerModify() throws IOException { * API call is made to retrieve the latest state. */ public Boolean getMergeable() throws IOException { - if (mergeable==null) - refresh(); + refresh(mergeable); + return mergeable; + } + + /** + * for test purposes only + */ + @Deprecated + Boolean getMergeableNoRefresh() throws IOException { return mergeable; } + public int getDeletions() throws IOException { populate(); return deletions; @@ -225,10 +245,15 @@ public String getMergeCommitSha() throws IOException { } public List getRequestedReviewers() throws IOException { - populate(); + refresh(requested_reviewers); return Collections.unmodifiableList(Arrays.asList(requested_reviewers)); } + public List getRequestedTeams() throws IOException { + refresh(requested_teams); + return Collections.unmodifiableList(Arrays.asList(requested_teams)); + } + /** * Fully populate the data by retrieving missing data. * @@ -246,79 +271,53 @@ public void refresh() throws IOException { if (root.isOffline()) { return; // cannot populate, will have to live with what we have } - root.retrieve().to(url, this).wrapUp(owner); + root.retrieve() + .withPreview(SHADOW_CAT) + .to(url, this).wrapUp(owner); } /** * Retrieves all the files associated to this pull request. */ public PagedIterable listFiles() { - return new PagedIterable() { - public PagedIterator _iterator(int pageSize) { - return new PagedIterator(root.retrieve().asIterator(String.format("%s/files", getApiRoute()), - GHPullRequestFileDetail[].class, pageSize)) { - @Override - protected void wrapUp(GHPullRequestFileDetail[] page) { - } - }; - } - }; + return root.retrieve() + .asPagedIterable( + String.format("%s/files", getApiRoute()), + GHPullRequestFileDetail[].class, + null); } /** * Retrieves all the reviews associated to this pull request. */ public PagedIterable listReviews() { - return new PagedIterable() { - public PagedIterator _iterator(int pageSize) { - return new PagedIterator(root.retrieve() - .asIterator(String.format("%s/reviews", getApiRoute()), - GHPullRequestReview[].class, pageSize)) { - @Override - protected void wrapUp(GHPullRequestReview[] page) { - for (GHPullRequestReview r: page) { - r.wrapUp(GHPullRequest.this); - } - } - }; - } - }; + return root.retrieve() + .asPagedIterable( + String.format("%s/reviews", getApiRoute()), + GHPullRequestReview[].class, + item -> item.wrapUp(GHPullRequest.this)); } /** * Obtains all the review comments associated with this pull request. */ public PagedIterable listReviewComments() throws IOException { - return new PagedIterable() { - public PagedIterator _iterator(int pageSize) { - return new PagedIterator(root.retrieve().asIterator(getApiRoute() + COMMENTS_ACTION, - GHPullRequestReviewComment[].class, pageSize)) { - protected void wrapUp(GHPullRequestReviewComment[] page) { - for (GHPullRequestReviewComment c : page) - c.wrapUp(GHPullRequest.this); - } - }; - } - }; + return root.retrieve() + .asPagedIterable( + getApiRoute() + COMMENTS_ACTION, + GHPullRequestReviewComment[].class, + item -> item.wrapUp(GHPullRequest.this) ); } /** * Retrieves all the commits associated to this pull request. */ public PagedIterable listCommits() { - return new PagedIterable() { - public PagedIterator _iterator(int pageSize) { - return new PagedIterator(root.retrieve().asIterator( + return root.retrieve() + .asPagedIterable( String.format("%s/commits", getApiRoute()), - GHPullRequestCommitDetail[].class, pageSize)) { - @Override - protected void wrapUp(GHPullRequestCommitDetail[] page) { - for (GHPullRequestCommitDetail c : page) - c.wrapUp(GHPullRequest.this); - } - }; - } - }; + GHPullRequestCommitDetail[].class, + item -> item.wrapUp(GHPullRequest.this) ); } /** @@ -361,7 +360,17 @@ public void requestReviewers(List reviewers) throws IOException { .withLogins("reviewers", reviewers) .to(getApiRoute() + REQUEST_REVIEWERS); } - + + public void requestTeamReviewers(List teams) throws IOException { + List teamReviewers = new ArrayList(teams.size()); + for (GHTeam team : teams) { + teamReviewers.add(team.getSlug()); + } + new Requester(root).method("POST") + .with("team_reviewers", teamReviewers) + .to(getApiRoute() + REQUEST_REVIEWERS); + } + /** * Merge this pull request. * diff --git a/src/main/java/org/kohsuke/github/GHPullRequestQueryBuilder.java b/src/main/java/org/kohsuke/github/GHPullRequestQueryBuilder.java index 141cf4d681..50b5cbb3ae 100644 --- a/src/main/java/org/kohsuke/github/GHPullRequestQueryBuilder.java +++ b/src/main/java/org/kohsuke/github/GHPullRequestQueryBuilder.java @@ -1,5 +1,7 @@ package org.kohsuke.github; +import static org.kohsuke.github.Previews.SHADOW_CAT; + /** * Lists up pull requests with some filtering and sorting. * @@ -20,6 +22,9 @@ public GHPullRequestQueryBuilder state(GHIssueState state) { } public GHPullRequestQueryBuilder head(String head) { + if (head != null && !head.contains(":")) { + head = repo.getOwnerName() + ":" + head; + } req.with("head",head); return this; } @@ -43,16 +48,11 @@ public GHPullRequestQueryBuilder direction(GHDirection d) { @Override public PagedIterable list() { - return new PagedIterable() { - public PagedIterator _iterator(int pageSize) { - return new PagedIterator(req.asIterator(repo.getApiTailUrl("pulls"), GHPullRequest[].class, pageSize)) { - @Override - protected void wrapUp(GHPullRequest[] page) { - for (GHPullRequest pr : page) - pr.wrapUp(repo); - } - }; - } - }; + return req + .withPreview(SHADOW_CAT) + .asPagedIterable( + repo.getApiTailUrl("pulls"), + GHPullRequest[].class, + item -> item.wrapUp(repo) ); } } diff --git a/src/main/java/org/kohsuke/github/GHPullRequestReview.java b/src/main/java/org/kohsuke/github/GHPullRequestReview.java index 45b6c044d9..b61a65ca05 100644 --- a/src/main/java/org/kohsuke/github/GHPullRequestReview.java +++ b/src/main/java/org/kohsuke/github/GHPullRequestReview.java @@ -25,6 +25,7 @@ import edu.umd.cs.findbugs.annotations.SuppressFBWarnings; +import java.util.Date; import javax.annotation.CheckForNull; import java.io.IOException; import java.net.URL; @@ -43,6 +44,7 @@ public class GHPullRequestReview extends GHObject { private GHUser user; private String commit_id; private GHPullRequestReviewState state; + private String submitted_at; /*package*/ GHPullRequestReview wrapUp(GHPullRequest owner) { this.owner = owner; @@ -88,6 +90,21 @@ protected String getApiRoute() { return owner.getApiRoute()+"/reviews/"+id; } + /** + * When was this resource created? + */ + public Date getSubmittedAt() throws IOException { + return GitHub.parseDate(submitted_at); + } + + /** + * Since this method does not exist, we forward this value. + */ + @Override + public Date getCreatedAt() throws IOException { + return getSubmittedAt(); + } + /** * @deprecated * Former preview method that changed when it got public. Left here for backward compatibility. @@ -131,18 +148,10 @@ public void dismiss(String message) throws IOException { * Obtains all the review comments associated with this pull request review. */ public PagedIterable listReviewComments() throws IOException { - return new PagedIterable() { - public PagedIterator _iterator(int pageSize) { - return new PagedIterator( - owner.root.retrieve() - .asIterator(getApiRoute() + "/comments", - GHPullRequestReviewComment[].class, pageSize)) { - protected void wrapUp(GHPullRequestReviewComment[] page) { - for (GHPullRequestReviewComment c : page) - c.wrapUp(owner); - } - }; - } - }; + return owner.root.retrieve() + .asPagedIterable( + getApiRoute() + "/comments", + GHPullRequestReviewComment[].class, + item -> item.wrapUp(owner) ); } } diff --git a/src/main/java/org/kohsuke/github/GHPullRequestReviewComment.java b/src/main/java/org/kohsuke/github/GHPullRequestReviewComment.java index 5cda4abb0a..8848c28282 100644 --- a/src/main/java/org/kohsuke/github/GHPullRequestReviewComment.java +++ b/src/main/java/org/kohsuke/github/GHPullRequestReviewComment.java @@ -148,16 +148,11 @@ public GHReaction createReaction(ReactionContent content) throws IOException { @Preview @Deprecated public PagedIterable listReactions() { - return new PagedIterable() { - public PagedIterator _iterator(int pageSize) { - return new PagedIterator(owner.root.retrieve().withPreview(SQUIRREL_GIRL).asIterator(getApiRoute() + "/reactions", GHReaction[].class, pageSize)) { - @Override - protected void wrapUp(GHReaction[] page) { - for (GHReaction c : page) - c.wrap(owner.root); - } - }; - } - }; + return owner.root.retrieve() + .withPreview(SQUIRREL_GIRL) + .asPagedIterable( + getApiRoute() + "/reactions", + GHReaction[].class, + item -> item.wrap(owner.root) ); } } diff --git a/src/main/java/org/kohsuke/github/GHRepository.java b/src/main/java/org/kohsuke/github/GHRepository.java index a937836b27..7a554c8558 100644 --- a/src/main/java/org/kohsuke/github/GHRepository.java +++ b/src/main/java/org/kohsuke/github/GHRepository.java @@ -24,6 +24,9 @@ package org.kohsuke.github; import com.fasterxml.jackson.annotation.JsonProperty; +import com.fasterxml.jackson.core.type.TypeReference; +import com.fasterxml.jackson.databind.ObjectMapper; +import com.fasterxml.jackson.databind.exc.MismatchedInputException; import com.infradna.tool.bridge_method_injector.WithBridgeMethods; import edu.umd.cs.findbugs.annotations.SuppressFBWarnings; import org.apache.commons.lang3.StringUtils; @@ -34,7 +37,9 @@ import java.io.InputStreamReader; import java.io.InterruptedIOException; import java.io.Reader; +import java.io.UnsupportedEncodingException; import java.net.URL; +import java.net.URLEncoder; import java.util.AbstractSet; import java.util.ArrayList; import java.util.Arrays; @@ -49,6 +54,9 @@ import java.util.Set; import java.util.TreeMap; import java.util.WeakHashMap; +import java.util.NoSuchElementException; +import java.util.logging.Level; +import java.util.logging.Logger; import static java.util.Arrays.*; import static org.kohsuke.github.Previews.*; @@ -76,6 +84,11 @@ public class GHRepository extends GHObject { private String git_url, ssh_url, clone_url, svn_url, mirror_url; private GHUser owner; // not fully populated. beware. private boolean has_issues, has_wiki, fork, has_downloads, has_pages, archived; + + private boolean allow_squash_merge; + private boolean allow_merge_commit; + private boolean allow_rebase_merge; + @JsonProperty("private") private boolean _private; private int forks_count, stargazers_count, watchers_count, size, open_issues_count, subscribers_count; @@ -105,24 +118,18 @@ public PagedIterable getDeploymentStatuses(final int id) thr public PagedIterable listDeployments(String sha,String ref,String task,String environment){ List params = Arrays.asList(getParam("sha", sha), getParam("ref", ref), getParam("task", task), getParam("environment", environment)); final String deploymentsUrl = getApiTailUrl("deployments") + "?"+ join(params,"&"); - return new PagedIterable() { - public PagedIterator _iterator(int pageSize) { - return new PagedIterator(root.retrieve().asIterator(deploymentsUrl, GHDeployment[].class, pageSize)) { - @Override - protected void wrapUp(GHDeployment[] page) { - for (GHDeployment c : page) - c.wrap(GHRepository.this); - } - }; - } - }; + return root.retrieve() + .asPagedIterable( + deploymentsUrl, + GHDeployment[].class, + item -> item.wrap(GHRepository.this) ); } /** * Obtains a single {@link GHDeployment} by its ID. */ public GHDeployment getDeployment(long id) throws IOException { - return root.retrieve().to("deployments/" + id, GHDeployment.class).wrap(this); + return root.retrieve().to(getApiTailUrl("deployments/" + id), GHDeployment.class).wrap(this); } private String join(List params, String joinStr) { @@ -271,17 +278,11 @@ public List getIssues(GHIssueState state, GHMilestone milestone) throws * Lists up all the issues in this repository. */ public PagedIterable listIssues(final GHIssueState state) { - return new PagedIterable() { - public PagedIterator _iterator(int pageSize) { - return new PagedIterator(root.retrieve().with("state",state).asIterator(getApiTailUrl("issues"), GHIssue[].class, pageSize)) { - @Override - protected void wrapUp(GHIssue[] page) { - for (GHIssue c : page) - c.wrap(GHRepository.this); - } - }; - } - }; + return root.retrieve().with("state",state) + .asPagedIterable( + getApiTailUrl("issues"), + GHIssue[].class, + item -> item.wrap(GHRepository.this) ); } public GHReleaseBuilder createRelease(String tag) { @@ -335,31 +336,19 @@ public GHRelease getLatestRelease() throws IOException { } public PagedIterable listReleases() throws IOException { - return new PagedIterable() { - public PagedIterator _iterator(int pageSize) { - return new PagedIterator(root.retrieve().asIterator(getApiTailUrl("releases"), GHRelease[].class, pageSize)) { - @Override - protected void wrapUp(GHRelease[] page) { - for (GHRelease c : page) - c.wrap(GHRepository.this); - } - }; - } - }; + return root.retrieve() + .asPagedIterable( + getApiTailUrl("releases"), + GHRelease[].class, + item -> item.wrap(GHRepository.this) ); } public PagedIterable listTags() throws IOException { - return new PagedIterable() { - public PagedIterator _iterator(int pageSize) { - return new PagedIterator(root.retrieve().asIterator(getApiTailUrl("tags"), GHTag[].class, pageSize)) { - @Override - protected void wrapUp(GHTag[] page) { - for (GHTag c : page) - c.wrap(GHRepository.this); - } - }; - } - }; + return root.retrieve() + .asPagedIterable( + getApiTailUrl("tags"), + GHTag[].class, + item -> item.wrap(GHRepository.this) ); } /** @@ -397,6 +386,18 @@ public boolean isFork() { public boolean isArchived() { return archived; } + + public boolean isAllowSquashMerge() { + return allow_squash_merge; + } + + public boolean isAllowMergeCommit() { + return allow_merge_commit; + } + + public boolean isAllowRebaseMerge() { + return allow_rebase_merge; + } /** * Returns the number of all forks of this repository. @@ -620,6 +621,22 @@ public void setDefaultBranch(String value) throws IOException { edit("default_branch", value); } + public void setPrivate(boolean value) throws IOException { + edit("private", Boolean.toString(value)); + } + + public void allowSquashMerge(boolean value) throws IOException { + edit("allow_squash_merge", Boolean.toString(value)); + } + + public void allowMergeCommit(boolean value) throws IOException { + edit("allow_merge_commit", Boolean.toString(value)); + } + + public void allowRebaseMerge(boolean value) throws IOException { + edit("allow_rebase_merge", Boolean.toString(value)); + } + /** * Deletes this repository. */ @@ -631,6 +648,29 @@ public void delete() throws IOException { } } + /** + * Will archive and this repository as read-only. When a repository is archived, any operation + * that can change its state is forbidden. This applies symmetrically if trying to unarchive it. + * + *

When you try to do any operation that modifies a read-only repository, it returns the + * response: + * + *

+     * org.kohsuke.github.HttpException: {
+     *     "message":"Repository was archived so is read-only.",
+     *     "documentation_url":"https://developer.github.com/v3/repos/#edit"
+     * }
+     * 
+ * + * @throws IOException In case of any networking error or error from the server. + */ + public void archive() throws IOException { + edit("archived", "true"); + // Generall would not update this record, + // but do so here since this will result in any other update actions failing + archived = true; + } + /** * Sort orders for listing forks */ @@ -650,18 +690,11 @@ public PagedIterable listForks() { * currently {@link ForkSort#NEWEST ForkSort.NEWEST}. */ public PagedIterable listForks(final ForkSort sort) { - return new PagedIterable() { - public PagedIterator _iterator(int pageSize) { - return new PagedIterator(root.retrieve().with("sort",sort).asIterator(getApiTailUrl("forks"), GHRepository[].class, pageSize)) { - @Override - protected void wrapUp(GHRepository[] page) { - for (GHRepository c : page) { - c.wrap(root); - } - } - }; - } - }; + return root.retrieve().with("sort",sort) + .asPagedIterable( + getApiTailUrl("forks"), + GHRepository[].class, + item -> item.wrap(root) ); } /** @@ -712,7 +745,9 @@ public GHRepository forkTo(GHOrganization org) throws IOException { * Retrieves a specified pull request. */ public GHPullRequest getPullRequest(int i) throws IOException { - return root.retrieve().to(getApiTailUrl("pulls/" + i), GHPullRequest.class).wrapUp(this); + return root.retrieve() + .withPreview(SHADOW_CAT) + .to(getApiTailUrl("pulls/" + i), GHPullRequest.class).wrapUp(this); } /** @@ -758,10 +793,64 @@ public GHPullRequestQueryBuilder queryPullRequests() { * of a pull request. */ public GHPullRequest createPullRequest(String title, String head, String base, String body) throws IOException { - return new Requester(root).with("title",title) + return createPullRequest(title, head, base, body, true); + } + + /** + * Creates a new pull request. Maintainer's permissions aware. + * + * @param title + * Required. The title of the pull request. + * @param head + * Required. The name of the branch where your changes are implemented. + * For cross-repository pull requests in the same network, + * namespace head with a user like this: username:branch. + * @param base + * Required. The name of the branch you want your changes pulled into. + * This should be an existing branch on the current repository. + * @param body + * The contents of the pull request. This is the markdown description + * of a pull request. + * @param maintainerCanModify + * Indicates whether maintainers can modify the pull request. + */ + public GHPullRequest createPullRequest(String title, String head, String base, String body, + boolean maintainerCanModify) throws IOException { + return createPullRequest(title, head, base, body, maintainerCanModify, false); + } + + /** + * Creates a new pull request. Maintainer's permissions and draft aware. + * + * @param title + * Required. The title of the pull request. + * @param head + * Required. The name of the branch where your changes are implemented. + * For cross-repository pull requests in the same network, + * namespace head with a user like this: username:branch. + * @param base + * Required. The name of the branch you want your changes pulled into. + * This should be an existing branch on the current repository. + * @param body + * The contents of the pull request. This is the markdown description + * of a pull request. + * @param maintainerCanModify + * Indicates whether maintainers can modify the pull request. + * @param draft + * Indicates whether to create a draft pull request or not. + */ + public GHPullRequest createPullRequest(String title, String head, String base, String body, + boolean maintainerCanModify, boolean draft) throws IOException { + return new Requester(root) + .withPreview(SHADOW_CAT) + .with("title",title) .with("head",head) .with("base",base) - .with("body",body).to(getApiTailUrl("pulls"),GHPullRequest.class).wrapUp(this); + .with("body",body) + .with("maintainer_can_modify", maintainerCanModify) + .with("draft", draft) + .to(getApiTailUrl("pulls"),GHPullRequest.class) + .wrapUp(this); } /** @@ -777,7 +866,7 @@ public GHHook getHook(int id) throws IOException { /** * Gets a comparison between 2 points in the repository. This would be similar - * to calling git log id1...id2 against a local repository. + * to calling git log id1...id2 against a local repository. * @param id1 an identifier for the first point to compare from, this can be a sha1 ID (for a commit, tag etc) or a direct tag name * @param id2 an identifier for the second point to compare to. Can be the same as the first point. * @return the comparison output @@ -830,22 +919,16 @@ public GHRef[] getRefs() throws IOException { */ public PagedIterable listRefs() throws IOException { final String url = String.format("/repos/%s/%s/git/refs", getOwnerName(), name); - return new PagedIterable() { - public PagedIterator _iterator(int pageSize) { - return new PagedIterator(root.retrieve().asIterator(url, GHRef[].class, pageSize)) { - protected void wrapUp(GHRef[] page) { - for(GHRef p: page) { - p.wrap(root); - } - } - }; - } - }; + return root.retrieve() + .asPagedIterable( + url, + GHRef[].class, + item -> item.wrap(root) ); } /** * Retrieves all refs of the given type for the current GitHub repository. - * @param refType the type of reg to search for e.g. tags or commits + * @param refType the type of reg to search for e.g. tags or commits * @return an array of all refs matching the request type * @throws IOException on failure communicating with GitHub, potentially due to an invalid ref type being requested */ @@ -856,21 +939,17 @@ public GHRef[] getRefs(String refType) throws IOException { /** * Retrieves all refs of the given type for the current GitHub repository. * - * @param refType the type of reg to search for e.g. tags or commits + * @param refType the type of reg to search for e.g. tags or commits * @return paged iterable of all refs of the specified type * @throws IOException on failure communicating with GitHub, potentially due to an invalid ref type being requested */ public PagedIterable listRefs(String refType) throws IOException { final String url = String.format("/repos/%s/%s/git/refs/%s", getOwnerName(), name, refType); - return new PagedIterable() { - public PagedIterator _iterator(int pageSize) { - return new PagedIterator(root.retrieve().asIterator(url, GHRef[].class, pageSize)) { - protected void wrapUp(GHRef[] page) { - // no-op - } - }; - } - }; + return root.retrieve() + .asPagedIterable( + url, + GHRef[].class, + item -> item.wrap(root)); } /** @@ -901,7 +980,7 @@ public GHRef getRef(String refName) throws IOException { public GHTagObject getTagObject(String sha) throws IOException { return root.retrieve().to(getApiTailUrl("git/tags/" + sha), GHTagObject.class).wrap(this); } - + /** * Retrive a tree of the given type for the current GitHub repository. * @@ -984,16 +1063,11 @@ public GHCommitBuilder createCommit() { * Lists all the commits. */ public PagedIterable listCommits() { - return new PagedIterable() { - public PagedIterator _iterator(int pageSize) { - return new PagedIterator(root.retrieve().asIterator(String.format("/repos/%s/%s/commits", getOwnerName(), name), GHCommit[].class, pageSize)) { - protected void wrapUp(GHCommit[] page) { - for (GHCommit c : page) - c.wrapUp(GHRepository.this); - } - }; - } - }; + return root.retrieve() + .asPagedIterable( + String.format("/repos/%s/%s/commits", getOwnerName(), name), + GHCommit[].class, + item -> item.wrapUp(GHRepository.this) ); } /** @@ -1007,28 +1081,20 @@ public GHCommitQueryBuilder queryCommits() { * Lists up all the commit comments in this repository. */ public PagedIterable listCommitComments() { - return new PagedIterable() { - public PagedIterator _iterator(int pageSize) { - return new PagedIterator(root.retrieve().asIterator(String.format("/repos/%s/%s/comments", getOwnerName(), name), GHCommitComment[].class, pageSize)) { - @Override - protected void wrapUp(GHCommitComment[] page) { - for (GHCommitComment c : page) - c.wrap(GHRepository.this); - } - }; - } - }; + return root.retrieve() + .asPagedIterable( + String.format("/repos/%s/%s/comments", getOwnerName(), name), + GHCommitComment[].class, + item -> item.wrap(GHRepository.this) ); } /** * Gets the basic license details for the repository. *

- * This is a preview item and subject to change. * * @throws IOException as usual but also if you don't use the preview connector * @return null if there's no license. */ - @Preview @Deprecated public GHLicense getLicense() throws IOException{ GHContentWithLicense lic = getLicenseContent_(); return lic!=null ? lic.license : null; @@ -1037,21 +1103,17 @@ public GHLicense getLicense() throws IOException{ /** * Retrieves the contents of the repository's license file - makes an additional API call *

- * This is a preview item and subject to change. * * @return details regarding the license contents, or null if there's no license. * @throws IOException as usual but also if you don't use the preview connector */ - @Preview @Deprecated public GHContent getLicenseContent() throws IOException { return getLicenseContent_(); } - @Preview @Deprecated private GHContentWithLicense getLicenseContent_() throws IOException { try { return root.retrieve() - .withPreview(DRAX) .to(getApiTailUrl("license"), GHContentWithLicense.class).wrap(this); } catch (FileNotFoundException e) { return null; @@ -1064,17 +1126,11 @@ private GHContentWithLicense getLicenseContent_() throws IOException { * Lists all the commit statues attached to the given commit, newer ones first. */ public PagedIterable listCommitStatuses(final String sha1) throws IOException { - return new PagedIterable() { - public PagedIterator _iterator(int pageSize) { - return new PagedIterator(root.retrieve().asIterator(String.format("/repos/%s/%s/statuses/%s", getOwnerName(), name, sha1), GHCommitStatus[].class, pageSize)) { - @Override - protected void wrapUp(GHCommitStatus[] page) { - for (GHCommitStatus c : page) - c.wrapUp(root); - } - }; - } - }; + return root.retrieve() + .asPagedIterable( + String.format("/repos/%s/%s/statuses/%s", getOwnerName(), name, sha1), + GHCommitStatus[].class, + item -> item.wrapUp(root) ); } /** @@ -1115,17 +1171,11 @@ public GHCommitStatus createCommitStatus(String sha1, GHCommitState state, Strin * Lists repository events. */ public PagedIterable listEvents() throws IOException { - return new PagedIterable() { - public PagedIterator _iterator(int pageSize) { - return new PagedIterator(root.retrieve().asIterator(String.format("/repos/%s/%s/events", getOwnerName(), name), GHEventInfo[].class, pageSize)) { - @Override - protected void wrapUp(GHEventInfo[] page) { - for (GHEventInfo c : page) - c.wrapUp(root); - } - }; - } - }; + return root.retrieve() + .asPagedIterable( + String.format("/repos/%s/%s/events", getOwnerName(), name), + GHEventInfo[].class, + item -> item.wrapUp(root) ); } /** @@ -1134,27 +1184,40 @@ protected void wrapUp(GHEventInfo[] page) { * https://developer.github.com/v3/issues/labels/#list-all-labels-for-this-repository */ public PagedIterable listLabels() throws IOException { - return new PagedIterable() { - public PagedIterator _iterator(int pageSize) { - return new PagedIterator(root.retrieve().asIterator(getApiTailUrl("labels"), GHLabel[].class, pageSize)) { - @Override - protected void wrapUp(GHLabel[] page) { - for (GHLabel c : page) - c.wrapUp(GHRepository.this); - } - }; - } - }; + return root.retrieve() + .withPreview(SYMMETRA) + .asPagedIterable( + getApiTailUrl("labels"), + GHLabel[].class, + item -> item.wrapUp(GHRepository.this) ); } public GHLabel getLabel(String name) throws IOException { - return root.retrieve().to(getApiTailUrl("labels/"+name), GHLabel.class).wrapUp(this); + return root.retrieve() + .withPreview(SYMMETRA) + .to(getApiTailUrl("labels/"+name), GHLabel.class) + .wrapUp(this); } public GHLabel createLabel(String name, String color) throws IOException { + return createLabel(name, color, ""); + } + + /** + * Description is still in preview. + * @param name + * @param color + * @param description + * @return + * @throws IOException + */ + @Preview @Deprecated + public GHLabel createLabel(String name, String color, String description) throws IOException { return root.retrieve().method("POST") + .withPreview(SYMMETRA) .with("name",name) .with("color", color) + .with("description", description) .to(getApiTailUrl("labels"), GHLabel.class).wrapUp(this); } @@ -1162,16 +1225,11 @@ public GHLabel createLabel(String name, String color) throws IOException { * Lists all the invitations. */ public PagedIterable listInvitations() { - return new PagedIterable() { - public PagedIterator _iterator(int pageSize) { - return new PagedIterator(root.retrieve().asIterator(String.format("/repos/%s/%s/invitations", getOwnerName(), name), GHInvitation[].class, pageSize)) { - protected void wrapUp(GHInvitation[] page) { - for (GHInvitation c : page) - c.wrapUp(root); - } - }; - } - }; + return root.retrieve() + .asPagedIterable( + String.format("/repos/%s/%s/invitations", getOwnerName(), name), + GHInvitation[].class, + item -> item.wrapUp(root) ); } /** @@ -1197,34 +1255,20 @@ public PagedIterable listStargazers() { * see {@link #listStargazers()} */ public PagedIterable listStargazers2() { - return new PagedIterable() { - @Override - public PagedIterator _iterator(int pageSize) { - Requester requester = root.retrieve(); - requester.setHeader("Accept", "application/vnd.github.v3.star+json"); - return new PagedIterator(requester.asIterator(getApiTailUrl("stargazers"), GHStargazer[].class, pageSize)) { - @Override - protected void wrapUp(GHStargazer[] page) { - for (GHStargazer c : page) { - c.wrapUp(GHRepository.this); - } - } - }; - } - }; + return root.retrieve() + .withPreview("application/vnd.github.v3.star+json") + .asPagedIterable( + getApiTailUrl("stargazers"), + GHStargazer[].class, + item -> item.wrapUp(GHRepository.this) ); } private PagedIterable listUsers(final String suffix) { - return new PagedIterable() { - public PagedIterator _iterator(int pageSize) { - return new PagedIterator(root.retrieve().asIterator(getApiTailUrl(suffix), GHUser[].class, pageSize)) { - protected void wrapUp(GHUser[] page) { - for (GHUser c : page) - c.wrapUp(root); - } - }; - } - }; + return root.retrieve() + .asPagedIterable( + getApiTailUrl(suffix), + GHUser[].class, + item -> item.wrapUp(root) ); } /** @@ -1350,8 +1394,25 @@ public Map getBranches() throws IOException { return r; } + /** + * Replace special characters (e.g. #) with standard values (e.g. %23) so + * GitHub understands what is being requested. + * @param value string to be encoded. + * @return The encoded string. + */ + private String UrlEncode(String value) { + try { + return URLEncoder.encode(value, org.apache.commons.codec.CharEncoding.UTF_8); + } catch (UnsupportedEncodingException ex) { + Logger.getLogger(GHRepository.class.getName()).log(Level.SEVERE, null, ex); + } + + // Something went wrong - just return original value as is. + return value; + } + public GHBranch getBranch(String name) throws IOException { - return root.retrieve().to(getApiTailUrl("branches/"+name),GHBranch.class).wrap(this); + return root.retrieve().to(getApiTailUrl("branches/"+UrlEncode(name)),GHBranch.class).wrap(this); } /** @@ -1370,17 +1431,11 @@ public Map getMilestones() throws IOException { * Lists up all the milestones in this repository. */ public PagedIterable listMilestones(final GHIssueState state) { - return new PagedIterable() { - public PagedIterator _iterator(int pageSize) { - return new PagedIterator(root.retrieve().with("state",state).asIterator(getApiTailUrl("milestones"), GHMilestone[].class, pageSize)) { - @Override - protected void wrapUp(GHMilestone[] page) { - for (GHMilestone c : page) - c.wrap(GHRepository.this); - } - }; - } - }; + return root.retrieve().with("state",state) + .asPagedIterable( + getApiTailUrl("milestones"), + GHMilestone[].class, + item -> item.wrap(GHRepository.this) ); } public GHMilestone getMilestone(int number) throws IOException { @@ -1545,17 +1600,11 @@ public GHSubscription getSubscription() throws IOException { } public PagedIterable listContributors() throws IOException { - return new PagedIterable() { - public PagedIterator _iterator(int pageSize) { - return new PagedIterator(root.retrieve().asIterator(getApiTailUrl("contributors"), Contributor[].class, pageSize)) { - @Override - protected void wrapUp(Contributor[] page) { - for (Contributor c : page) - c.wrapUp(root); - } - }; - } - }; + return root.retrieve() + .asPagedIterable( + getApiTailUrl("contributors"), + Contributor[].class, + item -> item.wrapUp(root) ); } public static class Contributor extends GHUser { @@ -1578,6 +1627,46 @@ public boolean equals(Object obj) { } } + /** + * Returns the statistics for this repository. + */ + public GHRepositoryStatistics getStatistics() { + // TODO: Use static object and introduce refresh() method, + // instead of returning new object each time. + return new GHRepositoryStatistics(this); + } + + /** + * Create a project for this repository. + */ + public GHProject createProject(String name, String body) throws IOException { + return root.retrieve().method("POST") + .withPreview(INERTIA) + .with("name", name) + .with("body", body) + .to(getApiTailUrl("projects"), GHProject.class).wrap(this); + } + + /** + * Returns the projects for this repository. + * @param status The status filter (all, open or closed). + */ + public PagedIterable listProjects(final GHProject.ProjectStateFilter status) throws IOException { + return root.retrieve().withPreview(INERTIA) + .with("state", status) + .asPagedIterable( + getApiTailUrl("projects"), + GHProject[].class, + item -> item.wrap(GHRepository.this) ); + } + + /** + * Returns open projects for this repository. + */ + public PagedIterable listProjects() throws IOException { + return listProjects(GHProject.ProjectStateFilter.OPEN); + } + /** * Render a Markdown document. * @@ -1636,4 +1725,48 @@ String getApiTailUrl(String tail) { if (tail.length()>0 && !tail.startsWith("/")) tail='/'+tail; return "/repos/" + getOwnerName() + "/" + name +tail; } + + /** + * Get all issue events for this repository. + * See https://developer.github.com/v3/issues/events/#list-events-for-a-repository + */ + public PagedIterable listIssueEvents() throws IOException { + return root.retrieve().asPagedIterable( + getApiTailUrl("issues/events"), + GHIssueEvent[].class, + item -> item.wrapUp(root) ); + } + + /** + * Get a single issue event. + * See https://developer.github.com/v3/issues/events/#get-a-single-event + */ + public GHIssueEvent getIssueEvent(long id) throws IOException { + return root.retrieve().to(getApiTailUrl("issues/events/" + id), GHIssueEvent.class).wrapUp(root); + } + + // Only used within listTopics(). + private static class Topics { + public List names; + } + + /** + * Return the topics for this repository. + * See https://developer.github.com/v3/repos/#list-all-topics-for-a-repository + */ + public List listTopics() throws IOException { + Topics topics = root.retrieve().withPreview(MERCY).to(getApiTailUrl("topics"), Topics.class); + return topics.names; + } + + /** + * Set the topics for this repository. + * See https://developer.github.com/v3/repos/#replace-all-topics-for-a-repository + */ + // This currently returns a "404" error (as of 30 Oct 2019). +// public void setTopics(List topics) throws IOException { +// Requester requester = new Requester(root); +// requester.with("names", topics); +// requester.method("PUT").withPreview(MERCY).to(getApiTailUrl("topics")); +// } } diff --git a/src/main/java/org/kohsuke/github/GHRepositorySelection.java b/src/main/java/org/kohsuke/github/GHRepositorySelection.java new file mode 100644 index 0000000000..afba38aaa2 --- /dev/null +++ b/src/main/java/org/kohsuke/github/GHRepositorySelection.java @@ -0,0 +1,22 @@ +package org.kohsuke.github; + +import java.util.Locale; + +/** + * App installation repository selection. + * + * @author Paulo Miguel Almeida + * + * @see GHAppInstallation + */ +public enum GHRepositorySelection { + SELECTED, + ALL; + + /** + * Returns GitHub's internal representation of this event. + */ + String symbol() { + return name().toLowerCase(Locale.ENGLISH); + } +} diff --git a/src/main/java/org/kohsuke/github/GHRepositoryStatistics.java b/src/main/java/org/kohsuke/github/GHRepositoryStatistics.java new file mode 100644 index 0000000000..3d8187da20 --- /dev/null +++ b/src/main/java/org/kohsuke/github/GHRepositoryStatistics.java @@ -0,0 +1,433 @@ +package org.kohsuke.github; + +import com.fasterxml.jackson.core.type.TypeReference; +import com.fasterxml.jackson.databind.ObjectMapper; +import com.fasterxml.jackson.databind.exc.MismatchedInputException; +import edu.umd.cs.findbugs.annotations.SuppressFBWarnings; +import java.io.IOException; +import java.io.InputStream; +import java.net.URL; +import java.util.ArrayList; +import java.util.List; +import java.util.NoSuchElementException; + +/** + * Statistics for a GitHub repository. + * + * @author Martin van Zijl + */ +public class GHRepositoryStatistics { + + private final GHRepository repo; + private final GitHub root; + + private static final int MAX_WAIT_ITERATIONS = 3; + private static final int WAIT_SLEEP_INTERVAL = 5000; + + public GHRepositoryStatistics(GHRepository repo) { + this.repo = repo; + this.root = repo.root; + } + + /** + * Get contributors list with additions, deletions, and commit count. See + * https://developer.github.com/v3/repos/statistics/#get-contributors-list-with-additions-deletions-and-commit-counts + */ + public PagedIterable getContributorStats() throws IOException, InterruptedException { + return getContributorStats(true); + } + + /** + * @param waitTillReady Whether to sleep the thread if necessary until the + * statistics are ready. This is true by default. + */ + @Preview + @Deprecated + @SuppressWarnings("SleepWhileInLoop") + @SuppressFBWarnings(value = {"RCN_REDUNDANT_NULLCHECK_OF_NONNULL_VALUE"}, justification = "JSON API") + public PagedIterable getContributorStats(boolean waitTillReady) throws IOException, InterruptedException { + PagedIterable stats = + getContributorStatsImpl(); + + if (stats == null && waitTillReady) { + for (int i = 0; i < MAX_WAIT_ITERATIONS; i += 1) { + // Wait a few seconds and try again. + Thread.sleep(WAIT_SLEEP_INTERVAL); + stats = getContributorStatsImpl(); + if (stats != null) { + break; + } + } + } + + return stats; + } + + /** + * This gets the actual statistics from the server. Returns null if they + * are still being cached. + */ + private PagedIterable getContributorStatsImpl() throws IOException { + return root.retrieve() + .asPagedIterable( + getApiTailUrl("contributors"), + ContributorStats[].class, + item -> item.wrapUp(root) ); + } + + @SuppressFBWarnings(value = {"UWF_UNWRITTEN_PUBLIC_OR_PROTECTED_FIELD", "UWF_UNWRITTEN_FIELD", + "NP_UNWRITTEN_FIELD", "URF_UNREAD_FIELD"}, justification = "JSON API") + public static class ContributorStats extends GHObject { + /*package almost final*/ private GitHub root; + private GHUser author; + private int total; + private List weeks; + + @Override + public URL getHtmlUrl() throws IOException { + throw new UnsupportedOperationException("Not supported yet."); + } + + public GitHub getRoot() { + return root; + } + + /** + * @return The author described by these statistics. + */ + public GHUser getAuthor() { + return author; + } + + /** + * @return The total number of commits authored by the contributor. + */ + public int getTotal() { + return total; + } + + /** + * Convenience method to look up week with particular timestamp. + * + * @param timestamp The timestamp to look for. + * @return The week starting with the given timestamp. Throws an + * exception if it is not found. + * @throws NoSuchElementException + */ + public Week getWeek(long timestamp) throws NoSuchElementException { + // maybe store the weeks in a map to make this more efficient? + for (Week week : weeks) { + if (week.getWeekTimestamp() == timestamp) { + return week; + } + } + + // this is safer than returning null + throw new NoSuchElementException(); + } + + /** + * @return The total number of commits authored by the contributor. + */ + public List getWeeks() { + return weeks; + } + + @Override + public String toString() { + return author.getLogin() + " made " + String.valueOf(total) + + " contributions over " + String.valueOf(weeks.size()) + + " weeks"; + } + + @SuppressFBWarnings(value = {"UWF_UNWRITTEN_PUBLIC_OR_PROTECTED_FIELD", "UWF_UNWRITTEN_FIELD", + "NP_UNWRITTEN_FIELD", "URF_UNREAD_FIELD"}, justification = "JSON API") + public static class Week { + + private long w; + private int a; + private int d; + private int c; + + /** + * @return Start of the week, as a UNIX timestamp. + */ + public long getWeekTimestamp() { + return w; + } + + /** + * @return The number of additions for the week. + */ + public int getNumberOfAdditions() { + return a; + } + + /** + * @return The number of deletions for the week. + */ + public int getNumberOfDeletions() { + return d; + } + + /** + * @return The number of commits for the week. + */ + public int getNumberOfCommits() { + return c; + } + + @Override + public String toString() { + return String.format("Week starting %d - Additions: %d, Deletions: %d, Commits: %d", w, a, d, c); + } + } + + /*package*/ ContributorStats wrapUp(GitHub root) { + this.root = root; + return this; + } + } + + /** + * Get the last year of commit activity data. See + * https://developer.github.com/v3/repos/statistics/#get-the-last-year-of-commit-activity-data + */ + public PagedIterable getCommitActivity() throws IOException { + return root.retrieve() + .asPagedIterable( + getApiTailUrl("commit_activity"), + CommitActivity[].class, + item -> item.wrapUp(root) ); + } + + @SuppressFBWarnings(value = {"UWF_UNWRITTEN_PUBLIC_OR_PROTECTED_FIELD", "UWF_UNWRITTEN_FIELD", + "NP_UNWRITTEN_FIELD"}, justification = "JSON API") + public static class CommitActivity extends GHObject { + /*package almost final*/ private GitHub root; + private List days; + private int total; + private long week; + + /** + * @return The number of commits for each day of the week. 0 = Sunday, 1 + * = Monday, etc. + */ + public List getDays() { + return days; + } + + /** + * @return The total number of commits for the week. + */ + public int getTotal() { + return total; + } + + /** + * @return The start of the week as a UNIX timestamp. + */ + public long getWeek() { + return week; + } + + /*package*/ CommitActivity wrapUp(GitHub root) { + this.root = root; + return this; + } + + public GitHub getRoot() { + return root; + } + + @Override + public URL getHtmlUrl() throws IOException { + throw new UnsupportedOperationException("Not supported yet."); + } + } + + /** + * Get the number of additions and deletions per week. + * See https://developer.github.com/v3/repos/statistics/#get-the-number-of-additions-and-deletions-per-week + */ + public List getCodeFrequency() throws IOException { + // Map to ArrayLists first, since there are no field names in the + // returned JSON. + try { + InputStream stream = root.retrieve().asStream(getApiTailUrl("code_frequency")); + + ObjectMapper mapper = new ObjectMapper(); + TypeReference > > typeRef = + new TypeReference > >() {}; + ArrayList > list = mapper.readValue(stream, typeRef); + + // Convert to proper objects. + ArrayList returnList = new ArrayList(); + for(ArrayList item: list) + { + CodeFrequency cf = new CodeFrequency(item); + returnList.add(cf); + } + + return returnList; + } catch (MismatchedInputException e) { + // This sometimes happens when retrieving code frequency statistics + // for a repository for the first time. It is probably still being + // generated, so return null. + return null; + } + } + + public static class CodeFrequency { + private int week; + private int additions; + private int deletions; + + private CodeFrequency(ArrayList item) { + week = item.get(0); + additions = item.get(1); + deletions = item.get(2); + } + + /** + * @return The start of the week as a UNIX timestamp. + */ + public int getWeekTimestamp() { + return week; + } + + /** + * @return The number of additions for the week. + */ + public long getAdditions() { + return additions; + } + + /** + * @return The number of deletions for the week. + * NOTE: This will be a NEGATIVE number. + */ + public long getDeletions() { + // TODO: Perhaps return Math.abs(deletions), + // since most developers may not expect a negative number. + return deletions; + } + + @Override + public String toString() { + return "Week starting " + getWeekTimestamp() + " has " + getAdditions() + + " additions and " + Math.abs(getDeletions()) + " deletions"; + } + } + + /** + * Get the weekly commit count for the repository owner and everyone else. + * See https://developer.github.com/v3/repos/statistics/#get-the-weekly-commit-count-for-the-repository-owner-and-everyone-else + */ + public Participation getParticipation() throws IOException { + return root.retrieve().to(getApiTailUrl("participation"), Participation.class); + } + + public static class Participation extends GHObject { + /*package almost final*/ private GitHub root; + private List all; + private List owner; + + @Override + public URL getHtmlUrl() throws IOException { + throw new UnsupportedOperationException("Not supported yet."); + } + + public GitHub getRoot() { + return root; + } + + /** + * @return The list of commit counts for everyone combined, for the + * last 52 weeks. + */ + public List getAllCommits() { + return all; + } + + /** + * @return The list of commit counts for the owner, for the + * last 52 weeks. + */ + public List getOwnerCommits() { + return owner; + } + + /*package*/ Participation wrapUp(GitHub root) { + this.root = root; + return this; + } + } + + /** + * Get the number of commits per hour in each day. + * See https://developer.github.com/v3/repos/statistics/#get-the-number-of-commits-per-hour-in-each-day + */ + public List getPunchCard() throws IOException { + // Map to ArrayLists first, since there are no field names in the + // returned JSON. + InputStream stream = root.retrieve().asStream(getApiTailUrl("punch_card")); + + ObjectMapper mapper = new ObjectMapper(); + TypeReference > > typeRef = + new TypeReference > >() {}; + ArrayList > list = mapper.readValue(stream, typeRef); + + // Convert to proper objects. + ArrayList returnList = new ArrayList(); + for(ArrayList item: list) { + PunchCardItem pci = new PunchCardItem(item); + returnList.add(pci); + } + + return returnList; + } + + public static class PunchCardItem { + private int dayOfWeek; + private int hourOfDay; + private int numberOfCommits; + + private PunchCardItem(ArrayList item) { + dayOfWeek = item.get(0); + hourOfDay = item.get(1); + numberOfCommits = item.get(2); + } + + /** + * @return The day of the week. + * 0 = Sunday, 1 = Monday, etc. + */ + public int getDayOfWeek() { + return dayOfWeek; + } + + /** + * @return The hour of the day from 0 to 23. + */ + public long getHourOfDay() { + return hourOfDay; + } + + /** + * @return The number of commits for the day and hour. + */ + public long getNumberOfCommits() { + return numberOfCommits; + } + + public String toString() { + return "Day " + getDayOfWeek() + " Hour " + getHourOfDay() + ": " + + getNumberOfCommits() + " commits"; + } + } + + String getApiTailUrl(String tail) { + return repo.getApiTailUrl("stats/" + tail); + } +} diff --git a/src/main/java/org/kohsuke/github/GHSubscription.java b/src/main/java/org/kohsuke/github/GHSubscription.java index 16acbed45e..40939fa42b 100644 --- a/src/main/java/org/kohsuke/github/GHSubscription.java +++ b/src/main/java/org/kohsuke/github/GHSubscription.java @@ -49,7 +49,7 @@ public GHRepository getRepository() { * Removes this subscription. */ public void delete() throws IOException { - new Requester(root).method("DELETE").to(url); + new Requester(root).method("DELETE").to(repo.getApiTailUrl("subscription")); } GHSubscription wrapUp(GHRepository repo) { diff --git a/src/main/java/org/kohsuke/github/GHTargetType.java b/src/main/java/org/kohsuke/github/GHTargetType.java new file mode 100644 index 0000000000..42a23d8726 --- /dev/null +++ b/src/main/java/org/kohsuke/github/GHTargetType.java @@ -0,0 +1,24 @@ +package org.kohsuke.github; + +import org.apache.commons.lang3.StringUtils; + +import java.util.Locale; + +/** + * App installation target type. + * + * @author Paulo Miguel Almeida + * + * @see GHAppInstallation + */ +public enum GHTargetType { + ORGANIZATION, + USER; + + /** + * Returns GitHub's internal representation of this event. + */ + String symbol() { + return StringUtils.capitalize(name().toLowerCase(Locale.ENGLISH)); + } +} diff --git a/src/main/java/org/kohsuke/github/GHTeam.java b/src/main/java/org/kohsuke/github/GHTeam.java index bccec4b5ed..00f43e194b 100644 --- a/src/main/java/org/kohsuke/github/GHTeam.java +++ b/src/main/java/org/kohsuke/github/GHTeam.java @@ -11,12 +11,12 @@ * * @author Kohsuke Kawaguchi */ -public class GHTeam { - private String name,permission,slug; +public class GHTeam implements Refreshable { + private String name,permission,slug,description; private int id; private GHOrganization organization; // populated by GET /user/teams where Teams+Orgs are returned together - protected /*final*/ GHOrganization org; + protected /*final*/ GitHub root; /** Member's role in a team */ public enum Role { @@ -31,7 +31,8 @@ public enum Role { } /*package*/ GHTeam wrapUp(GHOrganization owner) { - this.org = owner; + this.organization = owner; + this.root = owner.root; return this; } @@ -47,6 +48,13 @@ public enum Role { return teams; } + /*package*/ static GHTeam[] wrapUp(GHTeam[] teams, GHPullRequest owner) { + for (GHTeam t : teams) { + t.root = owner.root; + } + return teams; + } + public String getName() { return name; } @@ -59,6 +67,16 @@ public String getSlug() { return slug; } + public String getDescription() { + return description; + } + + public void setDescription(String description) throws IOException { + root.retrieve().method("PATCH") + .with("description", description) + .to(api("")); + } + public int getId() { return id; } @@ -67,16 +85,11 @@ public int getId() { * Retrieves the current members. */ public PagedIterable listMembers() throws IOException { - return new PagedIterable() { - public PagedIterator _iterator(int pageSize) { - return new PagedIterator(org.root.retrieve().asIterator(api("/members"), GHUser[].class, pageSize)) { - @Override - protected void wrapUp(GHUser[] page) { - GHUser.wrap(page, org.root); - } - }; - } - }; + return root.retrieve() + .asPagedIterable( + api("/members"), + GHUser[].class, + item -> item.wrapUp(root) ); } public Set getMembers() throws IOException { @@ -88,7 +101,7 @@ public Set getMembers() throws IOException { */ public boolean hasMember(GHUser user) { try { - org.root.retrieve().to("/teams/" + id + "/members/" + user.getLogin()); + root.retrieve().to("/teams/" + id + "/members/" + user.getLogin()); return true; } catch (IOException ignore) { return false; @@ -104,17 +117,11 @@ public Map getRepositories() throws IOException { } public PagedIterable listRepositories() { - return new PagedIterable() { - public PagedIterator _iterator(int pageSize) { - return new PagedIterator(org.root.retrieve().asIterator(api("/repos"), GHRepository[].class, pageSize)) { - @Override - protected void wrapUp(GHRepository[] page) { - for (GHRepository r : page) - r.wrap(org.root); - } - }; - } - }; + return root.retrieve() + .asPagedIterable( + api("/repos"), + GHRepository[].class, + item -> item.wrap(root) ); } /** @@ -125,7 +132,7 @@ protected void wrapUp(GHRepository[] page) { * @since 1.59 */ public void add(GHUser u) throws IOException { - org.root.retrieve().method("PUT").to(api("/memberships/" + u.getLogin()), null); + root.retrieve().method("PUT").to(api("/memberships/" + u.getLogin()), null); } /** @@ -139,8 +146,8 @@ public void add(GHUser u) throws IOException { * @throws IOException */ public void add(GHUser user, Role role) throws IOException { - org.root.retrieve().method("PUT") - .with("role", role.name()) + root.retrieve().method("PUT") + .with("role", role) .to(api("/memberships/" + user.getLogin()), null); } @@ -148,7 +155,7 @@ public void add(GHUser user, Role role) throws IOException { * Removes a member to the team. */ public void remove(GHUser u) throws IOException { - org.root.retrieve().method("DELETE").to(api("/members/" + u.getLogin()), null); + root.retrieve().method("DELETE").to(api("/members/" + u.getLogin()), null); } public void add(GHRepository r) throws IOException { @@ -156,27 +163,33 @@ public void add(GHRepository r) throws IOException { } public void add(GHRepository r, GHOrganization.Permission permission) throws IOException { - org.root.retrieve().method("PUT") + root.retrieve().method("PUT") .with("permission", permission) .to(api("/repos/" + r.getOwnerName() + '/' + r.getName()), null); } public void remove(GHRepository r) throws IOException { - org.root.retrieve().method("DELETE").to(api("/repos/" + r.getOwnerName() + '/' + r.getName()), null); + root.retrieve().method("DELETE").to(api("/repos/" + r.getOwnerName() + '/' + r.getName()), null); } /** * Deletes this team. */ public void delete() throws IOException { - org.root.retrieve().method("DELETE").to(api("")); + root.retrieve().method("DELETE").to(api("")); } private String api(String tail) { return "/teams/" + id + tail; } - public GHOrganization getOrganization() { - return org; + public GHOrganization getOrganization() throws IOException { + refresh(organization); + return organization; + } + + @Override + public void refresh() throws IOException { + root.retrieve().to(api(""), this).wrapUp(root); } } diff --git a/src/main/java/org/kohsuke/github/GHUser.java b/src/main/java/org/kohsuke/github/GHUser.java index 77beb11b88..d794a8c74f 100644 --- a/src/main/java/org/kohsuke/github/GHUser.java +++ b/src/main/java/org/kohsuke/github/GHUser.java @@ -26,8 +26,7 @@ import com.infradna.tool.bridge_method_injector.WithBridgeMethods; import java.io.IOException; -import java.util.HashSet; -import java.util.Set; +import java.util.*; /** * Represents an user of GitHub. @@ -36,6 +35,10 @@ */ public class GHUser extends GHPerson { + public List getKeys() throws IOException { + return Collections.unmodifiableList(Arrays.asList(root.retrieve().to(getApiTailUrl("keys"), GHKey[].class))); + } + /** * Follow this user. */ @@ -81,15 +84,11 @@ public PagedIterable listFollowers() { } private PagedIterable listUser(final String suffix) { - return new PagedIterable() { - public PagedIterator _iterator(int pageSize) { - return new PagedIterator(root.retrieve().asIterator(getApiTailUrl(suffix), GHUser[].class, pageSize)) { - protected void wrapUp(GHUser[] page) { - GHUser.wrap(page,root); - } - }; - } - }; + return root.retrieve() + .asPagedIterable( + getApiTailUrl(suffix), + GHUser[].class, + item -> item.wrapUp(root) ); } /** @@ -109,16 +108,11 @@ public PagedIterable listStarredRepositories() { } private PagedIterable listRepositories(final String suffix) { - return new PagedIterable() { - public PagedIterator _iterator(int pageSize) { - return new PagedIterator(root.retrieve().asIterator(getApiTailUrl(suffix), GHRepository[].class, pageSize)) { - protected void wrapUp(GHRepository[] page) { - for (GHRepository c : page) - c.wrap(root); - } - }; - } - }; + return root.retrieve() + .asPagedIterable( + getApiTailUrl(suffix), + GHRepository[].class, + item -> item.wrap(root) ); } /** @@ -166,34 +160,22 @@ public GHPersonSet getOrganizations() throws IOException { * Lists events performed by a user (this includes private events if the caller is authenticated. */ public PagedIterable listEvents() throws IOException { - return new PagedIterable() { - public PagedIterator _iterator(int pageSize) { - return new PagedIterator(root.retrieve().asIterator(String.format("/users/%s/events", login), GHEventInfo[].class, pageSize)) { - @Override - protected void wrapUp(GHEventInfo[] page) { - for (GHEventInfo c : page) - c.wrapUp(root); - } - }; - } - }; + return root.retrieve() + .asPagedIterable( + String.format("/users/%s/events", login), + GHEventInfo[].class, + item -> item.wrapUp(root) ); } /** * Lists Gists created by this user. */ public PagedIterable listGists() throws IOException { - return new PagedIterable() { - public PagedIterator _iterator(int pageSize) { - return new PagedIterator(root.retrieve().asIterator(String.format("/users/%s/gists", login), GHGist[].class, pageSize)) { - @Override - protected void wrapUp(GHGist[] page) { - for (GHGist c : page) - c.wrapUp(GHUser.this); - } - }; - } - }; + return root.retrieve() + .asPagedIterable( + String.format("/users/%s/gists", login), + GHGist[].class, + item -> item.wrapUp(GHUser.this) ); } @Override diff --git a/src/main/java/org/kohsuke/github/GitHub.java b/src/main/java/org/kohsuke/github/GitHub.java index d5d0a2be33..2d90ec0435 100644 --- a/src/main/java/org/kohsuke/github/GitHub.java +++ b/src/main/java/org/kohsuke/github/GitHub.java @@ -34,33 +34,23 @@ import javax.annotation.CheckForNull; import javax.annotation.Nonnull; -import java.io.ByteArrayInputStream; -import java.io.FileNotFoundException; -import java.io.IOException; -import java.io.InputStreamReader; -import java.io.Reader; +import java.io.*; import java.net.HttpURLConnection; import java.net.MalformedURLException; import java.net.URL; import java.text.ParseException; import java.text.SimpleDateFormat; -import java.util.Arrays; -import java.util.Collection; -import java.util.Date; -import java.util.HashMap; -import java.util.HashSet; -import java.util.List; -import java.util.Map; -import java.util.Set; -import java.util.TimeZone; +import java.util.*; import java.util.concurrent.ConcurrentHashMap; import java.util.concurrent.ConcurrentMap; import java.util.logging.Logger; -import static com.fasterxml.jackson.annotation.JsonAutoDetect.Visibility.*; -import static java.net.HttpURLConnection.*; -import static java.util.logging.Level.*; -import static org.kohsuke.github.Previews.*; +import static com.fasterxml.jackson.annotation.JsonAutoDetect.Visibility.ANY; +import static com.fasterxml.jackson.annotation.JsonAutoDetect.Visibility.NONE; +import static java.net.HttpURLConnection.HTTP_UNAUTHORIZED; +import static java.util.logging.Level.FINE; +import static org.kohsuke.github.Previews.INERTIA; +import static org.kohsuke.github.Previews.MACHINE_MAN; /** * Root of the GitHub API. @@ -104,7 +94,7 @@ public class GitHub { * to represent different ways of authentication. * *

- *
Loging anonymously + *
Log in anonymously *
Leave all three parameters null and you will be making HTTP requests without any authentication. * *
Log in with password @@ -115,15 +105,21 @@ public class GitHub { *
Specify oauthAccessToken, and optionally specify the login. Leave password null. * This will send OAuth token to the GitHub API. If the login parameter is null, * The constructor makes an API call to figure out the user name that owns the token. + * + *
Log in with JWT token + *
Specify jwtToken. Leave password null. + * This will send JWT token to the GitHub API via the Authorization HTTP header. + * Please note that only operations in which permissions have been previously configured and accepted during + * the GitHub App will be executed successfully. *
* * @param apiUrl * The URL of GitHub (or GitHub enterprise) API endpoint, such as "https://api.github.com" or - * "http://ghe.acme.com/api/v3". Note that GitHub Enterprise has /api/v3 in the URL. + * "http://ghe.acme.com/api/v3". Note that GitHub Enterprise has /api/v3 in the URL. * For historical reasons, this parameter still accepts the bare domain name, but that's considered deprecated. * Password is also considered deprecated as it is no longer required for api usage. * @param login - * The use ID on GitHub that you are logging in as. Can be omitted if the OAuth token is + * The user ID on GitHub that you are logging in as. Can be omitted if the OAuth token is * provided or if logging in anonymously. Specifying this would save one API call. * @param oauthAccessToken * Secret OAuth token. @@ -132,7 +128,7 @@ public class GitHub { * @param connector * HttpConnector to use. Pass null to use default connector. */ - /* package */ GitHub(String apiUrl, String login, String oauthAccessToken, String password, HttpConnector connector, RateLimitHandler rateLimitHandler, AbuseLimitHandler abuseLimitHandler) throws IOException { + /* package */ GitHub(String apiUrl, String login, String oauthAccessToken, String jwtToken, String password, HttpConnector connector, RateLimitHandler rateLimitHandler, AbuseLimitHandler abuseLimitHandler) throws IOException { if (apiUrl.endsWith("/")) apiUrl = apiUrl.substring(0, apiUrl.length()-1); // normalize this.apiUrl = apiUrl; if (null != connector) this.connector = connector; @@ -140,7 +136,9 @@ public class GitHub { if (oauthAccessToken!=null) { encodedAuthorization = "token "+oauthAccessToken; } else { - if (password!=null) { + if(jwtToken!=null){ + encodedAuthorization = "Bearer "+jwtToken; + }else if (password!=null) { String authorization = (login + ':' + password); String charsetName = Charsets.UTF_8.name(); encodedAuthorization = "Basic "+new String(Base64.encodeBase64(authorization.getBytes(charsetName)), charsetName); @@ -154,7 +152,7 @@ public class GitHub { this.rateLimitHandler = rateLimitHandler; this.abuseLimitHandler = abuseLimitHandler; - if (login==null && encodedAuthorization!=null) + if (login==null && encodedAuthorization!=null && jwtToken == null) login = getMyself().getLogin(); this.login = login; } @@ -172,6 +170,7 @@ public static GitHub connect() throws IOException { * @deprecated * Use {@link #connectToEnterpriseWithOAuth(String, String, String)} */ + @Deprecated public static GitHub connectToEnterprise(String apiUrl, String oauthAccessToken) throws IOException { return connectToEnterpriseWithOAuth(apiUrl,null,oauthAccessToken); } @@ -180,8 +179,8 @@ public static GitHub connectToEnterprise(String apiUrl, String oauthAccessToken) * Version that connects to GitHub Enterprise. * * @param apiUrl - * The URL of GitHub (or GitHub enterprise) API endpoint, such as "https://api.github.com" or - * "http://ghe.acme.com/api/v3". Note that GitHub Enterprise has /api/v3 in the URL. + * The URL of GitHub (or GitHub Enterprise) API endpoint, such as "https://api.github.com" or + * "http://ghe.acme.com/api/v3". Note that GitHub Enterprise has /api/v3 in the URL. * For historical reasons, this parameter still accepts the bare domain name, but that's considered deprecated. */ public static GitHub connectToEnterpriseWithOAuth(String apiUrl, String login, String oauthAccessToken) throws IOException { @@ -194,6 +193,7 @@ public static GitHub connectToEnterpriseWithOAuth(String apiUrl, String login, S * @deprecated * Use with caution. Login with password is not a preferred method. */ + @Deprecated public static GitHub connectToEnterprise(String apiUrl, String login, String password) throws IOException { return new GitHubBuilder().withEndpoint(apiUrl).withPassword(login, password).build(); } @@ -207,6 +207,7 @@ public static GitHub connect(String login, String oauthAccessToken) throws IOExc * Either OAuth token or password is sufficient, so there's no point in passing both. * Use {@link #connectUsingPassword(String, String)} or {@link #connectUsingOAuth(String)}. */ + @Deprecated public static GitHub connect(String login, String oauthAccessToken, String password) throws IOException { return new GitHubBuilder().withOAuthToken(oauthAccessToken, login).withPassword(login, password).build(); } @@ -225,7 +226,7 @@ public static GitHub connectUsingOAuth(String githubServer, String oauthAccessTo /** * Connects to GitHub anonymously. * - * All operations that requires authentication will fail. + * All operations that require authentication will fail. */ public static GitHub connectAnonymously() throws IOException { return new GitHubBuilder().build(); @@ -234,7 +235,7 @@ public static GitHub connectAnonymously() throws IOException { /** * Connects to GitHub Enterprise anonymously. * - * All operations that requires authentication will fail. + * All operations that require authentication will fail. */ public static GitHub connectToEnterpriseAnonymously(String apiUrl) throws IOException { return new GitHubBuilder().withEndpoint(apiUrl).build(); @@ -380,7 +381,7 @@ public GHMyself getMyself() throws IOException { requireCredential(); synchronized (this) { if (this.myself != null) return myself; - + GHMyself u = retrieve().to("/user", GHMyself.class); u.root = this; @@ -402,9 +403,9 @@ public GHUser getUser(String login) throws IOException { return u; } - + /** - * clears all cached data in order for external changes (modifications and del + * clears all cached data in order for external changes (modifications and del) to be reflected */ public void refreshCache() { users.clear(); @@ -449,20 +450,12 @@ public PagedIterable listOrganizations() { * @see List All Orgs - Parameters */ public PagedIterable listOrganizations(final String since) { - return new PagedIterable() { - @Override - public PagedIterator _iterator(int pageSize) { - System.out.println("page size: " + pageSize); - return new PagedIterator(retrieve().with("since",since) - .asIterator("/organizations", GHOrganization[].class, pageSize)) { - @Override - protected void wrapUp(GHOrganization[] page) { - for (GHOrganization c : page) - c.wrapUp(GitHub.this); - } - }; - } - }; + return retrieve() + .with("since",since) + .asPagedIterable( + "/organizations", + GHOrganization[].class, + item -> item.wrapUp(GitHub.this) ); } /** @@ -474,59 +467,49 @@ public GHRepository getRepository(String name) throws IOException { String[] tokens = name.split("/"); return retrieve().to("/repos/" + tokens[0] + '/' + tokens[1], GHRepository.class).wrap(this); } + + /** + * Gets the repository object from its ID + */ + public GHRepository getRepositoryById(String id) throws IOException { + return retrieve().to("/repositories/" + id, GHRepository.class).wrap(this); + } + /** * Returns a list of popular open source licenses * - * WARNING: This uses a PREVIEW API. - * * @see GitHub API - Licenses * * @return a list of popular open source licenses */ - @Preview @Deprecated public PagedIterable listLicenses() throws IOException { - return new PagedIterable() { - public PagedIterator _iterator(int pageSize) { - return new PagedIterator(retrieve().withPreview(DRAX).asIterator("/licenses", GHLicense[].class, pageSize)) { - @Override - protected void wrapUp(GHLicense[] page) { - for (GHLicense c : page) - c.wrap(GitHub.this); - } - }; - } - }; + return retrieve() + .asPagedIterable( + "/licenses", + GHLicense[].class, + item -> item.wrap(GitHub.this) ); } /** * Returns a list of all users. */ public PagedIterable listUsers() throws IOException { - return new PagedIterable() { - public PagedIterator _iterator(int pageSize) { - return new PagedIterator(retrieve().asIterator("/users", GHUser[].class, pageSize)) { - @Override - protected void wrapUp(GHUser[] page) { - for (GHUser u : page) - u.wrapUp(GitHub.this); - } - }; - } - }; + return retrieve() + .asPagedIterable( + "/users", + GHUser[].class, + item -> item.wrapUp(GitHub.this) ); } /** * Returns the full details for a license * - * WARNING: This uses a PREVIEW API. - * * @param key The license key provided from the API * @return The license details * @see GHLicense#getKey() */ - @Preview @Deprecated public GHLicense getLicense(String key) throws IOException { - return retrieve().withPreview(DRAX).to("/licenses/" + key, GHLicense.class); + return retrieve().to("/licenses/" + key, GHLicense.class); } /** @@ -541,7 +524,7 @@ public List getMyInvitations() throws IOException { } /** - * This method returns a shallowly populated organizations. + * This method returns shallowly populated organizations. * * To retrieve full organization details, you need to call {@link #getOrganization(String)} * TODO: make this automatic. @@ -555,6 +538,32 @@ public Map getMyOrganizations() throws IOException { } return r; } + + /** + * Alias for {@link #getUserPublicOrganizations(String)}. + */ + public Map getUserPublicOrganizations(GHUser user) throws IOException { + return getUserPublicOrganizations( user.getLogin() ); + } + + /** + * This method returns a shallowly populated organizations. + * + * To retrieve full organization details, you need to call {@link #getOrganization(String)} + * + * @param login the user to retrieve public Organization membership information for + * + * @return the public Organization memberships for the user + */ + public Map getUserPublicOrganizations(String login) throws IOException { + GHOrganization[] orgs = retrieve().to("/users/" + login + "/orgs", GHOrganization[].class); + Map r = new HashMap(); + for (GHOrganization o : orgs) { + // don't put 'o' into orgs because they are shallow + r.put(o.getLogin(),o.wrapUp(this)); + } + return r; + } /** * Gets complete map of organizations/teams that current user belongs to. @@ -578,6 +587,13 @@ public Map> getMyTeams() throws IOException { return allMyTeams; } + /** + * Gets a sigle team by ID. + */ + public GHTeam getTeam(int id) throws IOException { + return retrieve().to("/teams/" + id, GHTeam.class).wrapUp(this); + } + /** * Public events visible to you. Equivalent of what's displayed on https://github.com/ */ @@ -589,7 +605,7 @@ public List getEvents() throws IOException { } /** - * Gets a sigle gist by ID. + * Gets a single gist by ID. */ public GHGist getGist(String id) throws IOException { return retrieve().to("/gists/"+id,GHGist.class).wrapUp(this); @@ -620,6 +636,7 @@ public T parseEventPayload(Reader r, Class type) t * @deprecated * Use {@link #createRepository(String)} that uses a builder pattern to let you control every aspect. */ + @Deprecated public GHRepository createRepository(String name, String description, String homepage, boolean isPublic) throws IOException { return createRepository(name).description(description).homepage(homepage).private_(!isPublic).create(); } @@ -629,7 +646,7 @@ public GHRepository createRepository(String name, String description, String hom * *

* You use the returned builder to set various properties, then call {@link GHCreateRepositoryBuilder#create()} - * to finally createa repository. + * to finally create a repository. * *

* To create a repository in an organization, see @@ -691,10 +708,34 @@ public GHAuthorization resetAuth(@Nonnull String clientId, @Nonnull String acces return retrieve().method("POST").to("/applications/" + clientId + "/tokens/" + accessToken, GHAuthorization.class); } + /** + * Returns a list of all authorizations. + * @see List your authorizations + */ + public PagedIterable listMyAuthorizations() throws IOException { + return retrieve() + .asPagedIterable( + "/authorizations", + GHAuthorization[].class, + item -> item.wrap(GitHub.this) ); + } + + /** + * Returns the GitHub App associated with the authentication credentials used. + * + * You must use a JWT to access this endpoint. + * + * @see Get the authenticated GitHub App + */ + @Preview @Deprecated + public GHApp getApp() throws IOException { + return retrieve().withPreview(MACHINE_MAN).to("/app", GHApp.class).wrapUp(this); + } + /** * Ensures that the credential is valid. */ - public boolean isCredentialValid() throws IOException { + public boolean isCredentialValid() { try { retrieve().to("/user", GHUser.class); return true; @@ -717,6 +758,18 @@ public boolean isCredentialValid() throws IOException { return user; } + public GHProject getProject(long id) throws IOException { + return retrieve().withPreview(INERTIA).to("/projects/"+id, GHProject.class).wrap(this); + } + + public GHProjectColumn getProjectColumn(long id) throws IOException { + return retrieve().withPreview(INERTIA).to("/projects/columns/"+id, GHProjectColumn.class).wrap(this); + } + + public GHProjectCard getProjectCard(long id) throws IOException { + return retrieve().withPreview(INERTIA).to("/projects/columns/cards/"+id, GHProjectCard.class).wrap(this); + } + private static class GHApiInfo { private String rate_limit_url; @@ -854,17 +907,11 @@ public PagedIterable listAllPublicRepositories() { * @see documentation */ public PagedIterable listAllPublicRepositories(final String since) { - return new PagedIterable() { - public PagedIterator _iterator(int pageSize) { - return new PagedIterator(retrieve().with("since",since).asIterator("/repositories", GHRepository[].class, pageSize)) { - @Override - protected void wrapUp(GHRepository[] page) { - for (GHRepository c : page) - c.wrap(GitHub.this); - } - }; - } - }; + return retrieve().with("since",since) + .asPagedIterable( + "/repositories", + GHRepository[].class, + item -> item.wrap(GitHub.this) ); } /** @@ -909,12 +956,18 @@ public Reader renderMarkdown(String text) throws IOException { } /*package*/ static String printDate(Date dt) { - return new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss'Z'").format(dt); + SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss'Z'"); + df.setTimeZone(TimeZone.getTimeZone("GMT")); + return df.format(dt); } /*package*/ static final ObjectMapper MAPPER = new ObjectMapper(); - private static final String[] TIME_FORMATS = {"yyyy/MM/dd HH:mm:ss ZZZZ","yyyy-MM-dd'T'HH:mm:ss'Z'"}; + private static final String[] TIME_FORMATS = { + "yyyy/MM/dd HH:mm:ss ZZZZ", + "yyyy-MM-dd'T'HH:mm:ss'Z'", + "yyyy-MM-dd'T'HH:mm:ss.S'Z'" // GitHub App endpoints return a different date format + }; static { MAPPER.setVisibilityChecker(new Std(NONE, NONE, NONE, NONE, ANY)); diff --git a/src/main/java/org/kohsuke/github/GitHubBuilder.java b/src/main/java/org/kohsuke/github/GitHubBuilder.java index e54359892c..f0db8e609b 100644 --- a/src/main/java/org/kohsuke/github/GitHubBuilder.java +++ b/src/main/java/org/kohsuke/github/GitHubBuilder.java @@ -19,14 +19,15 @@ * * @since 1.59 */ -public class GitHubBuilder { +public class GitHubBuilder implements Cloneable { // default scoped so unit tests can read them. /* private */ String endpoint = GitHub.GITHUB_URL; /* private */ String user; /* private */ String password; /* private */ String oauthToken; - + /* private */ String jwtToken; + private HttpConnector connector; private RateLimitHandler rateLimitHandler = RateLimitHandler.WAIT; @@ -36,36 +37,36 @@ public GitHubBuilder() { } /** - * First check if the credentials are configured using the ~/.github properties file. - * - * If no user is specified it means there is no configuration present so check the environment instead. + * First check if the credentials are configured in the environment. + * We use environment first because users are not likely to give required (full) permissions to their default key. * + * If no user is specified it means there is no configuration present, so try using the ~/.github properties file. + ** * If there is still no user it means there are no credentials defined and throw an IOException. * - * @return the configured Builder from credentials defined on the system or in the environment. + * @return the configured Builder from credentials defined on the system or in the environment. Otherwise returns null. * * @throws IOException If there are no credentials defined in the ~/.github properties file or the process environment. */ - public static GitHubBuilder fromCredentials() throws IOException { + static GitHubBuilder fromCredentials() throws IOException { Exception cause = null; - GitHubBuilder builder; + GitHubBuilder builder = null; + + builder = fromEnvironment(); + + if (builder.oauthToken != null || builder.user != null || builder.jwtToken != null) + return builder; try { builder = fromPropertyFile(); - if (builder.oauthToken != null || builder.user != null) + if (builder.oauthToken != null || builder.user != null || builder.jwtToken != null) return builder; } catch (FileNotFoundException e) { // fall through cause = e; } - - builder = fromEnvironment(); - - if (builder.oauthToken != null || builder.user != null) - return builder; - else - throw (IOException)new IOException("Failed to resolve credentials from ~/.github or the environment.").initCause(cause); + throw (IOException)new IOException("Failed to resolve credentials from ~/.github or the environment.").initCause(cause); } /** @@ -108,6 +109,7 @@ public static GitHubBuilder fromEnvironment(String loginVariableName, String pas *

  • GITHUB_PASSWORD: raw password *
  • GITHUB_OAUTH: OAuth token to login *
  • GITHUB_ENDPOINT: URL of the API endpoint + *
  • GITHUB_JWT: JWT token to login * * *

    @@ -126,7 +128,7 @@ public static GitHubBuilder fromEnvironment() throws IOException { } return fromProperties(props); } - + public static GitHubBuilder fromPropertyFile() throws IOException { File homeDir = new File(System.getProperty("user.home")); File propertyFile = new File(homeDir, ".github"); @@ -149,6 +151,7 @@ public static GitHubBuilder fromPropertyFile(String propertyFileName) throws IOE public static GitHubBuilder fromProperties(Properties props) { GitHubBuilder self = new GitHubBuilder(); self.withOAuthToken(props.getProperty("oauth"), props.getProperty("login")); + self.withJwtToken(props.getProperty("jwt")); self.withPassword(props.getProperty("login"), props.getProperty("password")); self.withEndpoint(props.getProperty("endpoint", GitHub.GITHUB_URL)); return self; @@ -157,7 +160,7 @@ public static GitHubBuilder fromProperties(Properties props) { /** * @param endpoint * The URL of GitHub (or GitHub enterprise) API endpoint, such as "https://api.github.com" or - * "http://ghe.acme.com/api/v3". Note that GitHub Enterprise has /api/v3 in the URL. + * "http://ghe.acme.com/api/v3". Note that GitHub Enterprise has /api/v3 in the URL. * For historical reasons, this parameter still accepts the bare domain name, but that's considered deprecated. */ public GitHubBuilder withEndpoint(String endpoint) { @@ -177,6 +180,22 @@ public GitHubBuilder withOAuthToken(String oauthToken, String user) { this.user = user; return this; } + + /** + * Configures {@link GitHubBuilder} with Installation Token generated by the GitHub Application + * + * @param appInstallationToken A string containing the GitHub App installation token + * @return the configured Builder from given GitHub App installation token. + * @see GHAppInstallation#createToken(java.util.Map) + */ + public GitHubBuilder withAppInstallationToken(String appInstallationToken){ + return withOAuthToken(appInstallationToken, ""); + } + + public GitHubBuilder withJwtToken(String jwtToken){ + this.jwtToken = jwtToken; + return this; + } public GitHubBuilder withConnector(HttpConnector connector) { this.connector = connector; return this; @@ -204,6 +223,15 @@ public HttpURLConnection connect(URL url) throws IOException { } public GitHub build() throws IOException { - return new GitHub(endpoint, user, oauthToken, password, connector, rateLimitHandler, abuseLimitHandler); + return new GitHub(endpoint, user, oauthToken, jwtToken, password, connector, rateLimitHandler, abuseLimitHandler); + } + + @Override + public GitHubBuilder clone() { + try { + return (GitHubBuilder) super.clone(); + } catch (CloneNotSupportedException e) { + throw new RuntimeException("Clone should be supported", e); + } } } diff --git a/src/main/java/org/kohsuke/github/Previews.java b/src/main/java/org/kohsuke/github/Previews.java index 41ac7e155b..cbdd3cf068 100644 --- a/src/main/java/org/kohsuke/github/Previews.java +++ b/src/main/java/org/kohsuke/github/Previews.java @@ -1,12 +1,81 @@ package org.kohsuke.github; /** + * Provides the media type strings for GitHub API previews + * + * https://developer.github.com/v3/previews/ + * * @author Kohsuke Kawaguchi */ /*package*/ class Previews { + + /** + * Commit Search + * + * @see GitHub API Previews + */ + static final String CLOAK = "application/vnd.github.cloak-preview+json"; + + /** + * Owners of GitHub Apps can now uninstall an app using the Apps API + * + * @see GitHub API Previews + */ + static final String GAMBIT = "application/vnd.github.gambit-preview+json"; + + /** + * Manage projects + * + * @see GitHub API Previews + */ + static final String INERTIA = "application/vnd.github.inertia-preview+json"; + + /** + * Require multiple approving reviews + * + * @see GitHub API Previews + */ static final String LUKE_CAGE = "application/vnd.github.luke-cage-preview+json"; - static final String DRAX = "application/vnd.github.drax-preview+json"; + + /** + * Manage integrations through the API + * + * @see GitHub API Previews + */ + static final String MACHINE_MAN = "application/vnd.github.machine-man-preview+json"; + + /** + * View a list of repository topics in calls that return repository results + * + * @see GitHub API Previews + */ + static final String MERCY = "application/vnd.github.mercy-preview+json"; + + /** + * Draft pull requests + * + * @see GitHub API Previews + */ + static final String SHADOW_CAT = "application/vnd.github.shadow-cat-preview+json"; + + /** + * Reactions + * + * @see GitHub API Previews + */ static final String SQUIRREL_GIRL = "application/vnd.github.squirrel-girl-preview"; - static final String CLOAK = "application/vnd.github.cloak-preview"; + + /** + * Label emoji, search, and descriptions + * + * @see GitHub API Previews + */ + static final String SYMMETRA = "application/vnd.github.symmetra-preview+json"; + + /** + * Require signed commits + * + * @see GitHub API Previews + */ static final String ZZZAX = "application/vnd.github.zzzax-preview+json"; } diff --git a/src/main/java/org/kohsuke/github/Refreshable.java b/src/main/java/org/kohsuke/github/Refreshable.java new file mode 100644 index 0000000000..6c75ad63c6 --- /dev/null +++ b/src/main/java/org/kohsuke/github/Refreshable.java @@ -0,0 +1,30 @@ +package org.kohsuke.github; + +import org.kohsuke.github.extras.ImpatientHttpConnector; + +import java.io.IOException; +import java.net.HttpURLConnection; +import java.net.URL; + +/** + * + * + * + * @author Liam Newman + */ +public interface Refreshable { + /** + * Opens a connection to the given URL. + */ + void refresh() throws IOException; + + + /** + * Calls refresh if the provided value is null + */ + default void refresh(Object value) throws IOException { + if (value == null) { + this.refresh(); + } + } +} diff --git a/src/main/java/org/kohsuke/github/Requester.java b/src/main/java/org/kohsuke/github/Requester.java index 4670e311e5..b2a2a2f9b8 100644 --- a/src/main/java/org/kohsuke/github/Requester.java +++ b/src/main/java/org/kohsuke/github/Requester.java @@ -54,6 +54,7 @@ import java.util.Locale; import java.util.Map; import java.util.NoSuchElementException; +import java.util.function.Consumer; import java.util.logging.Logger; import java.util.regex.Matcher; import java.util.regex.Pattern; @@ -154,18 +155,14 @@ public Requester with(String key, Boolean value) { public Requester with(String key, Enum e) { if (e==null) return _with(key, null); - - // by convention Java constant names are upper cases, but github uses - // lower-case constants. GitHub also uses '-', which in Java we always - // replace by '_' - return with(key, e.toString().toLowerCase(Locale.ENGLISH).replace('_', '-')); + return with(key, transformEnum(e)); } public Requester with(String key, String value) { return _with(key, value); } - public Requester with(String key, Collection value) { + public Requester with(String key, Collection value) { return _with(key, value); } @@ -181,6 +178,14 @@ public Requester with(String key, Map value) { return _with(key, value); } + public Requester withPermissions(String key, Map value) { + Map retMap = new HashMap(); + for (Map.Entry entry : value.entrySet()) { + retMap.put(entry.getKey(), transformEnum(entry.getValue())); + } + return _with(key, retMap); + } + public Requester with(@WillClose/*later*/ InputStream body) { this.body = body; return this; @@ -435,6 +440,40 @@ private boolean isMethodWithBody() { return forceBody || !METHODS_WITHOUT_BODY.contains(method); } + /*package*/ PagedIterable asPagedIterable(String tailApiUrl, Class type, Consumer consumer) { + return new PagedIterableWithConsumer(type, this, tailApiUrl, consumer); + } + + private static class PagedIterableWithConsumer extends PagedIterable { + + private final Class clazz; + private final Requester requester; + private final String tailApiUrl; + private final Consumer consumer; + + public PagedIterableWithConsumer(Class clazz, Requester requester, String tailApiUrl, Consumer consumer) { + this.clazz = clazz; + this.tailApiUrl = tailApiUrl; + this.requester = requester; + this.consumer = consumer; + } + + @Override + public PagedIterator _iterator(int pageSize) { + final Iterator iterator = requester.asIterator(tailApiUrl, clazz, pageSize); + return new PagedIterator(iterator) { + @Override + protected void wrapUp(S[] page) { + if (consumer != null) { + for (S item : page) { + consumer.accept(item); + } + } + } + }; + } + } + /** * Loads paginated resources. * @@ -526,7 +565,7 @@ private void fetch() { } } } catch (IOException e) { - throw new GHException("Failed to retrieve "+url); + throw new GHException("Failed to retrieve " + url, e); } } @@ -554,6 +593,9 @@ private void findNextURL() throws MalformedURLException { private void setupConnection(URL url) throws IOException { + if (LOGGER.isLoggable(FINE)) { + LOGGER.log(FINE, "GitHub API request [" + (root.login == null ? "anonymous" : root.login) + "]: " + method + " " + url.toString()); + } uc = root.getConnector().connect(url); // if the authentication is needed but no credential is given, try it anyway (so that some calls @@ -622,6 +664,14 @@ private T parse(Class type, T instance, int timeouts) throws IOException return type.cast(Array.newInstance(type.getComponentType(),0)); } + // Response code 202 means the statistics are still being cached. + // See https://developer.github.com/v3/repos/statistics/#a-word-about-caching + if (responseCode == 202) { + LOGGER.log(INFO, "The statistics are still being generated. Please try again in 5 seconds."); + // Maybe throw an exception instead? + return null; + } + r = new InputStreamReader(wrapStream(uc.getInputStream()), "UTF-8"); String data = IOUtils.toString(r); if (type!=null) @@ -726,6 +776,18 @@ private InputStream wrapStream(InputStream in) throws IOException { throw e; } + /** + * Transform Java Enum into Github constants given its conventions + * @param en - Enum to be transformed + * @return a String containing the value of a Github constant + */ + private String transformEnum(Enum en){ + // by convention Java constant names are upper cases, but github uses + // lower-case constants. GitHub also uses '-', which in Java we always + // replace by '_' + return en.toString().toLowerCase(Locale.ENGLISH).replace('_', '-'); + } + private static final List METHODS_WITHOUT_BODY = asList("GET", "DELETE"); private static final Logger LOGGER = Logger.getLogger(Requester.class.getName()); } diff --git a/src/main/java/org/kohsuke/github/extras/OkHttp3Connector.java b/src/main/java/org/kohsuke/github/extras/OkHttp3Connector.java index d2fd8c6978..17b93b3318 100644 --- a/src/main/java/org/kohsuke/github/extras/OkHttp3Connector.java +++ b/src/main/java/org/kohsuke/github/extras/OkHttp3Connector.java @@ -16,12 +16,18 @@ * response does not count against the rate limit. * See http://developer.github.com/v3/#conditional-requests * + * @see org.kohsuke.github.extras.okhttp3.OkHttpConnector * @author Roberto Tyley * @author Kohsuke Kawaguchi */ +@Deprecated public class OkHttp3Connector implements HttpConnector { private final OkUrlFactory urlFactory; + /* + * @see org.kohsuke.github.extras.okhttp3.OkHttpConnector + */ + @Deprecated public OkHttp3Connector(OkUrlFactory urlFactory) { this.urlFactory = urlFactory; } diff --git a/src/main/java/org/kohsuke/github/extras/OkHttpConnector.java b/src/main/java/org/kohsuke/github/extras/OkHttpConnector.java index e7802c6bae..60b41e18ea 100644 --- a/src/main/java/org/kohsuke/github/extras/OkHttpConnector.java +++ b/src/main/java/org/kohsuke/github/extras/OkHttpConnector.java @@ -1,5 +1,6 @@ package org.kohsuke.github.extras; +import com.squareup.okhttp.CacheControl; import com.squareup.okhttp.ConnectionSpec; import com.squareup.okhttp.OkHttpClient; import com.squareup.okhttp.OkUrlFactory; @@ -16,6 +17,7 @@ import java.util.Arrays; import java.util.List; +import java.util.concurrent.TimeUnit; import javax.net.ssl.SSLContext; import javax.net.ssl.SSLSocketFactory; @@ -32,16 +34,49 @@ * @author Kohsuke Kawaguchi */ public class OkHttpConnector implements HttpConnector { + private static final String HEADER_NAME = "Cache-Control"; private final OkUrlFactory urlFactory; + private final String maxAgeHeaderValue; + public OkHttpConnector(OkUrlFactory urlFactory) { + this(urlFactory, 0); + } + + /** + * package private for tests to be able to change max-age for cache. + * @param urlFactory + * @param cacheMaxAge + */ + OkHttpConnector(OkUrlFactory urlFactory, int cacheMaxAge) { urlFactory.client().setSslSocketFactory(TlsSocketFactory()); urlFactory.client().setConnectionSpecs(TlsConnectionSpecs()); this.urlFactory = urlFactory; + + if (cacheMaxAge >= 0 && urlFactory.client() != null && urlFactory.client().getCache() != null) { + maxAgeHeaderValue = new CacheControl.Builder() + .maxAge(cacheMaxAge, TimeUnit.SECONDS) + .build() + .toString(); + } else { + maxAgeHeaderValue = null; + } } + public HttpURLConnection connect(URL url) throws IOException { - return urlFactory.open(url); + HttpURLConnection urlConnection = urlFactory.open(url); + if (maxAgeHeaderValue != null) { + // By default OkHttp honors max-age, meaning it will use local cache + // without checking the network within that time frame. + // However, that can result in stale data being returned during that time so + // we force network-based checking no matter how often the query is made. + // OkHttp still automatically does ETag checking and returns cached data when + // GitHub reports 304, but those do not count against rate limit. + urlConnection.setRequestProperty(HEADER_NAME, maxAgeHeaderValue); + } + + return urlConnection; } /** Returns TLSv1.2 only SSL Socket Factory. */ diff --git a/src/main/java/org/kohsuke/github/extras/okhttp3/ObsoleteUrlFactory.java b/src/main/java/org/kohsuke/github/extras/okhttp3/ObsoleteUrlFactory.java new file mode 100644 index 0000000000..7a4b53f11a --- /dev/null +++ b/src/main/java/org/kohsuke/github/extras/okhttp3/ObsoleteUrlFactory.java @@ -0,0 +1,1193 @@ +package org.kohsuke.github.extras.okhttp3; + +/* + * Copyright (C) 2014 Square, Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import java.io.FileNotFoundException; +import java.io.IOException; +import java.io.InputStream; +import java.io.InterruptedIOException; +import java.io.OutputStream; +import java.net.HttpURLConnection; +import java.net.InetSocketAddress; +import java.net.MalformedURLException; +import java.net.ProtocolException; +import java.net.Proxy; +import java.net.SocketPermission; +import java.net.SocketTimeoutException; +import java.net.URL; +import java.net.URLConnection; +import java.net.URLStreamHandler; +import java.net.URLStreamHandlerFactory; +import java.security.AccessControlException; +import java.security.Permission; +import java.security.Principal; +import java.security.cert.Certificate; +import java.text.DateFormat; +import java.text.SimpleDateFormat; +import java.util.*; +import java.util.concurrent.TimeUnit; +import javax.annotation.Nullable; +import javax.net.ssl.HostnameVerifier; +import javax.net.ssl.HttpsURLConnection; +import javax.net.ssl.SSLSocketFactory; + +import edu.umd.cs.findbugs.annotations.SuppressFBWarnings; +import okhttp3.Call; +import okhttp3.Callback; +import okhttp3.Dispatcher; +import okhttp3.Handshake; +import okhttp3.Headers; +import okhttp3.HttpUrl; +import okhttp3.Interceptor; +import okhttp3.MediaType; +import okhttp3.OkHttpClient; +import okhttp3.Protocol; +import okhttp3.Request; +import okhttp3.RequestBody; +import okhttp3.Response; +import okio.Buffer; +import okio.BufferedSink; +import okio.Okio; +import okio.Pipe; +import okio.Timeout; + +import static java.net.HttpURLConnection.HTTP_NOT_MODIFIED; +import static java.net.HttpURLConnection.HTTP_NO_CONTENT; + +/** + * OkHttp 3.14 dropped support for the long-deprecated OkUrlFactory class, which allows you to use + * the HttpURLConnection API with OkHttp's implementation. This class does the same thing using only + * public APIs in OkHttp. It requires OkHttp 3.14 or newer. + * + *

    Rather than pasting this 1100 line gist into your source code, please upgrade to OkHttp's + * request/response API. Your code will be shorter, easier to read, and you'll be able to use + * interceptors. + */ +public final class ObsoleteUrlFactory implements URLStreamHandlerFactory, Cloneable { + static final String SELECTED_PROTOCOL = "ObsoleteUrlFactory-Selected-Protocol"; + + static final String RESPONSE_SOURCE = "ObsoleteUrlFactory-Response-Source"; + + static final Set METHODS = new LinkedHashSet<>( + Arrays.asList("OPTIONS", "GET", "HEAD", "POST", "PUT", "DELETE", "TRACE", "PATCH")); + + static final TimeZone UTC = TimeZone.getTimeZone("GMT"); + + static final int HTTP_CONTINUE = 100; + + static final ThreadLocal STANDARD_DATE_FORMAT = ThreadLocal.withInitial(() -> { + // Date format specified by RFC 7231 section 7.1.1.1. + DateFormat rfc1123 = new SimpleDateFormat("EEE, dd MMM yyyy HH:mm:ss 'GMT'", Locale.US); + rfc1123.setLenient(false); + rfc1123.setTimeZone(UTC); + return rfc1123; + }); + + static final Comparator FIELD_NAME_COMPARATOR = (a, b) -> { + if (Objects.equals(a, b)) { + return 0; + } else if (Objects.isNull(a)) { + return -1; + } else if (Objects.isNull(b)) { + return 1; + } else { + return String.CASE_INSENSITIVE_ORDER.compare(a, b); + } + }; + + private OkHttpClient client; + + public ObsoleteUrlFactory(OkHttpClient client) { + this.client = client; + } + + public OkHttpClient client() { + return client; + } + + public ObsoleteUrlFactory setClient(OkHttpClient client) { + this.client = client; + return this; + } + + /** + * Returns a copy of this stream handler factory that includes a shallow copy of the internal + * {@linkplain OkHttpClient HTTP client}. + */ + @Override public ObsoleteUrlFactory clone() { + return new ObsoleteUrlFactory(client); + } + + public HttpURLConnection open(URL url) { + return open(url, client.proxy()); + } + + HttpURLConnection open(URL url, @Nullable Proxy proxy) { + String protocol = url.getProtocol(); + OkHttpClient copy = client.newBuilder() + .proxy(proxy) + .build(); + + if (protocol.equals("http")) return new OkHttpURLConnection(url, copy); + if (protocol.equals("https")) return new OkHttpsURLConnection(url, copy); + throw new IllegalArgumentException("Unexpected protocol: " + protocol); + } + + /** + * Creates a URLStreamHandler as a {@link java.net.URL#setURLStreamHandlerFactory}. + * + *

    This code configures OkHttp to handle all HTTP and HTTPS connections + * created with {@link java.net.URL#openConnection()}:

       {@code
    +   *
    +   *   OkHttpClient okHttpClient = new OkHttpClient();
    +   *   URL.setURLStreamHandlerFactory(new ObsoleteUrlFactory(okHttpClient));
    +   * }
    + */ + @Override public URLStreamHandler createURLStreamHandler(final String protocol) { + if (!protocol.equals("http") && !protocol.equals("https")) return null; + + return new URLStreamHandler() { + @Override protected URLConnection openConnection(URL url) { + return open(url); + } + + @Override protected URLConnection openConnection(URL url, Proxy proxy) { + return open(url, proxy); + } + + @Override protected int getDefaultPort() { + if (protocol.equals("http")) return 80; + if (protocol.equals("https")) return 443; + throw new AssertionError(); + } + }; + } + + static String format(Date value) { + return STANDARD_DATE_FORMAT.get().format(value); + } + + static boolean permitsRequestBody(String method) { + return !(method.equals("GET") || method.equals("HEAD")); + } + + /** Returns true if the response must have a (possibly 0-length) body. See RFC 7231. */ + static boolean hasBody(Response response) { + // HEAD requests never yield a body regardless of the response headers. + if (response.request().method().equals("HEAD")) { + return false; + } + + int responseCode = response.code(); + if ((responseCode < HTTP_CONTINUE || responseCode >= 200) + && responseCode != HTTP_NO_CONTENT + && responseCode != HTTP_NOT_MODIFIED) { + return true; + } + + // If the Content-Length or Transfer-Encoding headers disagree with the response code, the + // response is malformed. For best compatibility, we honor the headers. + if (contentLength(response.headers()) != -1 + || "chunked".equalsIgnoreCase(response.header("Transfer-Encoding"))) { + return true; + } + + return false; + } + + static long contentLength(Headers headers) { + String s = headers.get("Content-Length"); + if (s == null) return -1; + try { + return Long.parseLong(s); + } catch (NumberFormatException e) { + return -1; + } + } + + static String responseSourceHeader(Response response) { + if (response.networkResponse() == null) { + return response.cacheResponse() == null + ? "NONE" + : "CACHE " + response.code(); + } + return response.cacheResponse() == null + ? "NETWORK " + response.code() + : "CONDITIONAL_CACHE " + response.networkResponse().code(); + } + + static String statusLineToString(Response response) { + return (response.protocol() == Protocol.HTTP_1_0 ? "HTTP/1.0" : "HTTP/1.1") + + ' ' + response.code() + + ' ' + response.message(); + } + + static String toHumanReadableAscii(String s) { + for (int i = 0, length = s.length(), c; i < length; i += Character.charCount(c)) { + c = s.codePointAt(i); + if (c > '\u001f' && c < '\u007f') continue; + + Buffer buffer = new Buffer(); + buffer.writeUtf8(s, 0, i); + buffer.writeUtf8CodePoint('?'); + for (int j = i + Character.charCount(c); j < length; j += Character.charCount(c)) { + c = s.codePointAt(j); + buffer.writeUtf8CodePoint(c > '\u001f' && c < '\u007f' ? c : '?'); + } + return buffer.readUtf8(); + } + return s; + } + + static Map> toMultimap(Headers headers, @Nullable String valueForNullKey) { + Map> result = new TreeMap<>(FIELD_NAME_COMPARATOR); + for (int i = 0, size = headers.size(); i < size; i++) { + String fieldName = headers.name(i); + String value = headers.value(i); + + List allValues = new ArrayList<>(); + List otherValues = result.get(fieldName); + if (otherValues != null) { + allValues.addAll(otherValues); + } + allValues.add(value); + result.put(fieldName, Collections.unmodifiableList(allValues)); + } + if (valueForNullKey != null) { + result.put(null, Collections.unmodifiableList(Collections.singletonList(valueForNullKey))); + } + return Collections.unmodifiableMap(result); + } + + static String getSystemProperty(String key, @Nullable String defaultValue) { + String value; + try { + value = System.getProperty(key); + } catch (AccessControlException ex) { + return defaultValue; + } + return value != null ? value : defaultValue; + } + + static String defaultUserAgent() { + String agent = getSystemProperty("http.agent", null); + return agent != null ? toHumanReadableAscii(agent) : "ObsoleteUrlFactory"; + } + + static IOException propagate(Throwable throwable) throws IOException { + if (throwable instanceof IOException) throw (IOException) throwable; + if (throwable instanceof Error) throw (Error) throwable; + if (throwable instanceof RuntimeException) throw (RuntimeException) throwable; + throw new AssertionError(); + } + + static final class OkHttpURLConnection extends HttpURLConnection implements Callback { + // These fields are confined to the application thread that uses HttpURLConnection. + OkHttpClient client; + final NetworkInterceptor networkInterceptor = new NetworkInterceptor(); + Headers.Builder requestHeaders = new Headers.Builder(); + Headers responseHeaders; + boolean executed; + Call call; + + /** Like the superclass field of the same name, but a long and available on all platforms. */ + long fixedContentLength = -1L; + + // These fields are guarded by lock. + private final Object lock = new Object(); + private Response response; + private Throwable callFailure; + Response networkResponse; + boolean connectPending = true; + Proxy proxy; + Handshake handshake; + + OkHttpURLConnection(URL url, OkHttpClient client) { + super(url); + this.client = client; + } + + @Override public void connect() throws IOException { + if (executed) return; + + Call call = buildCall(); + executed = true; + call.enqueue(this); + + synchronized (lock) { + try { + while (connectPending && response == null && callFailure == null) { + lock.wait(); // Wait 'til the network interceptor is reached or the call fails. + } + if (callFailure != null) { + throw propagate(callFailure); + } + } catch (InterruptedException e) { + Thread.currentThread().interrupt(); // Retain interrupted status. + throw new InterruptedIOException(); + } + } + } + + @Override public void disconnect() { + // Calling disconnect() before a connection exists should have no effect. + if (call == null) return; + + networkInterceptor.proceed(); // Unblock any waiting async thread. + call.cancel(); + } + + @Override public InputStream getErrorStream() { + try { + Response response = getResponse(true); + if (hasBody(response) && response.code() >= HTTP_BAD_REQUEST) { + return response.body().byteStream(); + } + return null; + } catch (IOException e) { + return null; + } + } + + Headers getHeaders() throws IOException { + if (responseHeaders == null) { + Response response = getResponse(true); + Headers headers = response.headers(); + responseHeaders = headers.newBuilder() + .add(SELECTED_PROTOCOL, response.protocol().toString()) + .add(RESPONSE_SOURCE, responseSourceHeader(response)) + .build(); + } + return responseHeaders; + } + + @Override public String getHeaderField(int position) { + try { + Headers headers = getHeaders(); + if (position < 0 || position >= headers.size()) return null; + return headers.value(position); + } catch (IOException e) { + return null; + } + } + + @Override public String getHeaderField(String fieldName) { + try { + return fieldName == null + ? statusLineToString(getResponse(true)) + : getHeaders().get(fieldName); + } catch (IOException e) { + return null; + } + } + + @Override public String getHeaderFieldKey(int position) { + try { + Headers headers = getHeaders(); + if (position < 0 || position >= headers.size()) return null; + return headers.name(position); + } catch (IOException e) { + return null; + } + } + + @Override public Map> getHeaderFields() { + try { + return toMultimap(getHeaders(), statusLineToString(getResponse(true))); + } catch (IOException e) { + return Collections.emptyMap(); + } + } + + @Override public Map> getRequestProperties() { + if (connected) { + throw new IllegalStateException( + "Cannot access request header fields after connection is set"); + } + + return toMultimap(requestHeaders.build(), null); + } + + @Override public InputStream getInputStream() throws IOException { + if (!doInput) { + throw new ProtocolException("This protocol does not support input"); + } + + Response response = getResponse(false); + if (response.code() >= HTTP_BAD_REQUEST) throw new FileNotFoundException(url.toString()); + return response.body().byteStream(); + } + + @Override public OutputStream getOutputStream() throws IOException { + OutputStreamRequestBody requestBody = (OutputStreamRequestBody) buildCall().request().body(); + if (requestBody == null) { + throw new ProtocolException("method does not support a request body: " + method); + } + + if (requestBody instanceof StreamedRequestBody) { + connect(); + networkInterceptor.proceed(); + } + + if (requestBody.closed) { + throw new ProtocolException("cannot write request body after response has been read"); + } + + return requestBody.outputStream; + } + + @Override public Permission getPermission() { + URL url = getURL(); + String hostname = url.getHost(); + int hostPort = url.getPort() != -1 + ? url.getPort() + : HttpUrl.defaultPort(url.getProtocol()); + if (usingProxy()) { + InetSocketAddress proxyAddress = (InetSocketAddress) client.proxy().address(); + hostname = proxyAddress.getHostName(); + hostPort = proxyAddress.getPort(); + } + return new SocketPermission(hostname + ":" + hostPort, "connect, resolve"); + } + + @Override public String getRequestProperty(String field) { + if (field == null) return null; + return requestHeaders.get(field); + } + + @Override public void setConnectTimeout(int timeoutMillis) { + client = client.newBuilder() + .connectTimeout(timeoutMillis, TimeUnit.MILLISECONDS) + .build(); + } + + @Override public void setInstanceFollowRedirects(boolean followRedirects) { + client = client.newBuilder() + .followRedirects(followRedirects) + .build(); + } + + @Override public boolean getInstanceFollowRedirects() { + return client.followRedirects(); + } + + @Override public int getConnectTimeout() { + return client.connectTimeoutMillis(); + } + + @Override public void setReadTimeout(int timeoutMillis) { + client = client.newBuilder() + .readTimeout(timeoutMillis, TimeUnit.MILLISECONDS) + .build(); + } + + @Override public int getReadTimeout() { + return client.readTimeoutMillis(); + } + + @SuppressFBWarnings("RCN_REDUNDANT_NULLCHECK_OF_NONNULL_VALUE") + private Call buildCall() throws IOException { + if (call != null) { + return call; + } + + connected = true; + if (doOutput) { + if (method.equals("GET")) { + method = "POST"; + } else if (!permitsRequestBody(method)) { + throw new ProtocolException(method + " does not support writing"); + } + } + + if (requestHeaders.get("User-Agent") == null) { + requestHeaders.add("User-Agent", defaultUserAgent()); + } + + OutputStreamRequestBody requestBody = null; + if (permitsRequestBody(method)) { + String contentType = requestHeaders.get("Content-Type"); + if (contentType == null) { + contentType = "application/x-www-form-urlencoded"; + requestHeaders.add("Content-Type", contentType); + } + + boolean stream = fixedContentLength != -1L || chunkLength > 0; + + long contentLength = -1L; + String contentLengthString = requestHeaders.get("Content-Length"); + if (fixedContentLength != -1L) { + contentLength = fixedContentLength; + } else if (contentLengthString != null) { + contentLength = Long.parseLong(contentLengthString); + } + + requestBody = stream + ? new StreamedRequestBody(contentLength) + : new BufferedRequestBody(contentLength); + requestBody.timeout.timeout(client.writeTimeoutMillis(), TimeUnit.MILLISECONDS); + } + + HttpUrl url; + try { + url = HttpUrl.get(getURL().toString()); + } catch (IllegalArgumentException e) { + MalformedURLException malformedUrl = new MalformedURLException(); + malformedUrl.initCause(e); + throw malformedUrl; + } + + Request request = new Request.Builder() + .url(url) + .headers(requestHeaders.build()) + .method(method, requestBody) + .build(); + + OkHttpClient.Builder clientBuilder = client.newBuilder(); + clientBuilder.interceptors().clear(); + clientBuilder.interceptors().add(UnexpectedException.INTERCEPTOR); + clientBuilder.networkInterceptors().clear(); + clientBuilder.networkInterceptors().add(networkInterceptor); + + // Use a separate dispatcher so that limits aren't impacted. But use the same executor service! + clientBuilder.dispatcher(new Dispatcher(client.dispatcher().executorService())); + + // If we're currently not using caches, make sure the engine's client doesn't have one. + if (!getUseCaches()) { + clientBuilder.cache(null); + } + + return call = clientBuilder.build().newCall(request); + } + + private Response getResponse(boolean networkResponseOnError) throws IOException { + synchronized (lock) { + if (response != null) return response; + if (callFailure != null) { + if (networkResponseOnError && networkResponse != null) return networkResponse; + throw propagate(callFailure); + } + } + + Call call = buildCall(); + networkInterceptor.proceed(); + + OutputStreamRequestBody requestBody = (OutputStreamRequestBody) call.request().body(); + if (requestBody != null) requestBody.outputStream.close(); + + if (executed) { + synchronized (lock) { + try { + while (response == null && callFailure == null) { + lock.wait(); // Wait until the response is returned or the call fails. + } + } catch (InterruptedException e) { + Thread.currentThread().interrupt(); // Retain interrupted status. + throw new InterruptedIOException(); + } + } + } else { + executed = true; + try { + onResponse(call, call.execute()); + } catch (IOException e) { + onFailure(call, e); + } + } + + synchronized (lock) { + if (callFailure != null) throw propagate(callFailure); + if (response != null) return response; + } + + throw new AssertionError(); + } + + @Override public boolean usingProxy() { + if (proxy != null) return true; + Proxy clientProxy = client.proxy(); + return clientProxy != null && clientProxy.type() != Proxy.Type.DIRECT; + } + + @Override public String getResponseMessage() throws IOException { + return getResponse(true).message(); + } + + @Override public int getResponseCode() throws IOException { + return getResponse(true).code(); + } + + @Override public void setRequestProperty(String field, String newValue) { + if (connected) { + throw new IllegalStateException("Cannot set request property after connection is made"); + } + if (field == null) { + throw new NullPointerException("field == null"); + } + if (newValue == null) { + return; + } + + requestHeaders.set(field, newValue); + } + + @Override public void setIfModifiedSince(long newValue) { + super.setIfModifiedSince(newValue); + if (ifModifiedSince != 0) { + requestHeaders.set("If-Modified-Since", format(new Date(ifModifiedSince))); + } else { + requestHeaders.removeAll("If-Modified-Since"); + } + } + + @Override public void addRequestProperty(String field, String value) { + if (connected) { + throw new IllegalStateException("Cannot add request property after connection is made"); + } + if (field == null) { + throw new NullPointerException("field == null"); + } + if (value == null) { + return; + } + + requestHeaders.add(field, value); + } + + @Override public void setRequestMethod(String method) throws ProtocolException { + if (!METHODS.contains(method)) { + throw new ProtocolException("Expected one of " + METHODS + " but was " + method); + } + this.method = method; + } + + @Override public void setFixedLengthStreamingMode(int contentLength) { + setFixedLengthStreamingMode((long) contentLength); + } + + @Override public void setFixedLengthStreamingMode(long contentLength) { + if (super.connected) throw new IllegalStateException("Already connected"); + if (chunkLength > 0) throw new IllegalStateException("Already in chunked mode"); + if (contentLength < 0) throw new IllegalArgumentException("contentLength < 0"); + this.fixedContentLength = contentLength; + super.fixedContentLength = (int) Math.min(contentLength, Integer.MAX_VALUE); + } + + @Override public void onFailure(Call call, IOException e) { + synchronized (lock) { + this.callFailure = (e instanceof UnexpectedException) ? e.getCause() : e; + lock.notifyAll(); + } + } + + @Override public void onResponse(Call call, Response response) { + synchronized (lock) { + this.response = response; + this.handshake = response.handshake(); + this.url = response.request().url().url(); + lock.notifyAll(); + } + } + + final class NetworkInterceptor implements Interceptor { + // Guarded by HttpUrlConnection.this. + private boolean proceed; + + public void proceed() { + synchronized (lock) { + this.proceed = true; + lock.notifyAll(); + } + } + + @Override public Response intercept(Chain chain) throws IOException { + Request request = chain.request(); + + synchronized (lock) { + connectPending = false; + proxy = chain.connection().route().proxy(); + handshake = chain.connection().handshake(); + lock.notifyAll(); + + try { + while (!proceed) { + lock.wait(); // Wait until proceed() is called. + } + } catch (InterruptedException e) { + Thread.currentThread().interrupt(); // Retain interrupted status. + throw new InterruptedIOException(); + } + } + + // Try to lock in the Content-Length before transmitting the request body. + if (request.body() instanceof OutputStreamRequestBody) { + OutputStreamRequestBody requestBody = (OutputStreamRequestBody) request.body(); + request = requestBody.prepareToSendRequest(request); + } + + Response response = chain.proceed(request); + + synchronized (lock) { + networkResponse = response; + url = response.request().url().url(); + } + + return response; + } + } + } + + abstract static class OutputStreamRequestBody extends RequestBody { + Timeout timeout; + long expectedContentLength; + OutputStream outputStream; + boolean closed; + + void initOutputStream(BufferedSink sink, long expectedContentLength) { + this.timeout = sink.timeout(); + this.expectedContentLength = expectedContentLength; + + // An output stream that writes to sink. If expectedContentLength is not -1, then this expects + // exactly that many bytes to be written. + this.outputStream = new OutputStream() { + private long bytesReceived; + + @Override public void write(int b) throws IOException { + write(new byte[] {(byte) b}, 0, 1); + } + + @Override public void write(byte[] source, int offset, int byteCount) throws IOException { + if (closed) throw new IOException("closed"); // Not IllegalStateException! + + if (expectedContentLength != -1L && bytesReceived + byteCount > expectedContentLength) { + throw new ProtocolException("expected " + expectedContentLength + + " bytes but received " + bytesReceived + byteCount); + } + + bytesReceived += byteCount; + try { + sink.write(source, offset, byteCount); + } catch (InterruptedIOException e) { + throw new SocketTimeoutException(e.getMessage()); + } + } + + @Override public void flush() throws IOException { + if (closed) return; // Weird, but consistent with historical behavior. + sink.flush(); + } + + @Override public void close() throws IOException { + closed = true; + + if (expectedContentLength != -1L && bytesReceived < expectedContentLength) { + throw new ProtocolException("expected " + expectedContentLength + + " bytes but received " + bytesReceived); + } + + sink.close(); + } + }; + } + + @Override public long contentLength() { + return expectedContentLength; + } + + @Override public final @Nullable MediaType contentType() { + return null; // Let the caller provide this in a regular header. + } + + public Request prepareToSendRequest(Request request) throws IOException { + return request; + } + } + + static final class BufferedRequestBody extends OutputStreamRequestBody { + final Buffer buffer = new Buffer(); + long contentLength = -1L; + + BufferedRequestBody(long expectedContentLength) { + initOutputStream(buffer, expectedContentLength); + } + + @Override public long contentLength() { + return contentLength; + } + + @Override public Request prepareToSendRequest(Request request) throws IOException { + if (request.header("Content-Length") != null) return request; + + outputStream.close(); + contentLength = buffer.size(); + return request.newBuilder() + .removeHeader("Transfer-Encoding") + .header("Content-Length", Long.toString(buffer.size())) + .build(); + } + + @Override public void writeTo(BufferedSink sink) { + buffer.copyTo(sink.buffer(), 0, buffer.size()); + } + } + + static final class StreamedRequestBody extends OutputStreamRequestBody { + private final Pipe pipe = new Pipe(8192); + + StreamedRequestBody(long expectedContentLength) { + initOutputStream(Okio.buffer(pipe.sink()), expectedContentLength); + } + + public boolean isOneShot() { + return true; + } + + @Override public void writeTo(BufferedSink sink) throws IOException { + Buffer buffer = new Buffer(); + while (pipe.source().read(buffer, 8192) != -1L) { + sink.write(buffer, buffer.size()); + } + } + } + + abstract static class DelegatingHttpsURLConnection extends HttpsURLConnection { + private final HttpURLConnection delegate; + + DelegatingHttpsURLConnection(HttpURLConnection delegate) { + super(delegate.getURL()); + this.delegate = delegate; + } + + protected abstract Handshake handshake(); + + @Override public abstract void setHostnameVerifier(HostnameVerifier hostnameVerifier); + + @Override public abstract HostnameVerifier getHostnameVerifier(); + + @Override public abstract void setSSLSocketFactory(SSLSocketFactory sslSocketFactory); + + @Override public abstract SSLSocketFactory getSSLSocketFactory(); + + @Override public String getCipherSuite() { + Handshake handshake = handshake(); + return handshake != null ? handshake.cipherSuite().javaName() : null; + } + + @Override public Certificate[] getLocalCertificates() { + Handshake handshake = handshake(); + if (handshake == null) return null; + List result = handshake.localCertificates(); + return !result.isEmpty() ? result.toArray(new Certificate[result.size()]) : null; + } + + @Override public Certificate[] getServerCertificates() { + Handshake handshake = handshake(); + if (handshake == null) return null; + List result = handshake.peerCertificates(); + return !result.isEmpty() ? result.toArray(new Certificate[result.size()]) : null; + } + + @Override public Principal getPeerPrincipal() { + Handshake handshake = handshake(); + return handshake != null ? handshake.peerPrincipal() : null; + } + + @Override public Principal getLocalPrincipal() { + Handshake handshake = handshake(); + return handshake != null ? handshake.localPrincipal() : null; + } + + @Override public void connect() throws IOException { + connected = true; + delegate.connect(); + } + + @Override public void disconnect() { + delegate.disconnect(); + } + + @Override public InputStream getErrorStream() { + return delegate.getErrorStream(); + } + + @Override public String getRequestMethod() { + return delegate.getRequestMethod(); + } + + @Override public int getResponseCode() throws IOException { + return delegate.getResponseCode(); + } + + @Override public String getResponseMessage() throws IOException { + return delegate.getResponseMessage(); + } + + @Override public void setRequestMethod(String method) throws ProtocolException { + delegate.setRequestMethod(method); + } + + @Override public boolean usingProxy() { + return delegate.usingProxy(); + } + + @Override public boolean getInstanceFollowRedirects() { + return delegate.getInstanceFollowRedirects(); + } + + @Override public void setInstanceFollowRedirects(boolean followRedirects) { + delegate.setInstanceFollowRedirects(followRedirects); + } + + @Override public boolean getAllowUserInteraction() { + return delegate.getAllowUserInteraction(); + } + + @Override public Object getContent() throws IOException { + return delegate.getContent(); + } + + @Override public Object getContent(Class[] types) throws IOException { + return delegate.getContent(types); + } + + @Override public String getContentEncoding() { + return delegate.getContentEncoding(); + } + + @Override public int getContentLength() { + return delegate.getContentLength(); + } + + // Should only be invoked on Java 8+ or Android API 24+. + @Override public long getContentLengthLong() { + return delegate.getContentLengthLong(); + } + + @Override public String getContentType() { + return delegate.getContentType(); + } + + @Override public long getDate() { + return delegate.getDate(); + } + + @Override public boolean getDefaultUseCaches() { + return delegate.getDefaultUseCaches(); + } + + @Override public boolean getDoInput() { + return delegate.getDoInput(); + } + + @Override public boolean getDoOutput() { + return delegate.getDoOutput(); + } + + @Override public long getExpiration() { + return delegate.getExpiration(); + } + + @Override public String getHeaderField(int pos) { + return delegate.getHeaderField(pos); + } + + @Override public Map> getHeaderFields() { + return delegate.getHeaderFields(); + } + + @Override public Map> getRequestProperties() { + return delegate.getRequestProperties(); + } + + @Override public void addRequestProperty(String field, String newValue) { + delegate.addRequestProperty(field, newValue); + } + + @Override public String getHeaderField(String key) { + return delegate.getHeaderField(key); + } + + // Should only be invoked on Java 8+ or Android API 24+. + @Override public long getHeaderFieldLong(String field, long defaultValue) { + return delegate.getHeaderFieldLong(field, defaultValue); + } + + @Override public long getHeaderFieldDate(String field, long defaultValue) { + return delegate.getHeaderFieldDate(field, defaultValue); + } + + @Override public int getHeaderFieldInt(String field, int defaultValue) { + return delegate.getHeaderFieldInt(field, defaultValue); + } + + @Override public String getHeaderFieldKey(int position) { + return delegate.getHeaderFieldKey(position); + } + + @Override public long getIfModifiedSince() { + return delegate.getIfModifiedSince(); + } + + @Override public InputStream getInputStream() throws IOException { + return delegate.getInputStream(); + } + + @Override public long getLastModified() { + return delegate.getLastModified(); + } + + @Override public OutputStream getOutputStream() throws IOException { + return delegate.getOutputStream(); + } + + @Override public Permission getPermission() throws IOException { + return delegate.getPermission(); + } + + @Override public String getRequestProperty(String field) { + return delegate.getRequestProperty(field); + } + + @Override public URL getURL() { + return delegate.getURL(); + } + + @Override public boolean getUseCaches() { + return delegate.getUseCaches(); + } + + @Override public void setAllowUserInteraction(boolean newValue) { + delegate.setAllowUserInteraction(newValue); + } + + @Override public void setDefaultUseCaches(boolean newValue) { + delegate.setDefaultUseCaches(newValue); + } + + @Override public void setDoInput(boolean newValue) { + delegate.setDoInput(newValue); + } + + @Override public void setDoOutput(boolean newValue) { + delegate.setDoOutput(newValue); + } + + // Should only be invoked on Java 8+ or Android API 24+. + @Override public void setFixedLengthStreamingMode(long contentLength) { + delegate.setFixedLengthStreamingMode(contentLength); + } + + @Override public void setIfModifiedSince(long newValue) { + delegate.setIfModifiedSince(newValue); + } + + @Override public void setRequestProperty(String field, String newValue) { + delegate.setRequestProperty(field, newValue); + } + + @Override public void setUseCaches(boolean newValue) { + delegate.setUseCaches(newValue); + } + + @Override public void setConnectTimeout(int timeoutMillis) { + delegate.setConnectTimeout(timeoutMillis); + } + + @Override public int getConnectTimeout() { + return delegate.getConnectTimeout(); + } + + @Override public void setReadTimeout(int timeoutMillis) { + delegate.setReadTimeout(timeoutMillis); + } + + @Override public int getReadTimeout() { + return delegate.getReadTimeout(); + } + + @Override public String toString() { + return delegate.toString(); + } + + @Override public void setFixedLengthStreamingMode(int contentLength) { + delegate.setFixedLengthStreamingMode(contentLength); + } + + @Override public void setChunkedStreamingMode(int chunkLength) { + delegate.setChunkedStreamingMode(chunkLength); + } + } + + static final class OkHttpsURLConnection extends DelegatingHttpsURLConnection { + private final OkHttpURLConnection delegate; + + OkHttpsURLConnection(URL url, OkHttpClient client) { + this(new OkHttpURLConnection(url, client)); + } + + OkHttpsURLConnection(OkHttpURLConnection delegate) { + super(delegate); + this.delegate = delegate; + } + + @Override protected Handshake handshake() { + if (delegate.call == null) { + throw new IllegalStateException("Connection has not yet been established"); + } + + return delegate.handshake; + } + + @Override public void setHostnameVerifier(HostnameVerifier hostnameVerifier) { + delegate.client = delegate.client.newBuilder() + .hostnameVerifier(hostnameVerifier) + .build(); + } + + @Override public HostnameVerifier getHostnameVerifier() { + return delegate.client.hostnameVerifier(); + } + + @Override public void setSSLSocketFactory(SSLSocketFactory sslSocketFactory) { + if (sslSocketFactory == null) { + throw new IllegalArgumentException("sslSocketFactory == null"); + } + // This fails in JDK 9 because OkHttp is unable to extract the trust manager. + delegate.client = delegate.client.newBuilder() + .sslSocketFactory(sslSocketFactory) + .build(); + } + + @Override public SSLSocketFactory getSSLSocketFactory() { + return delegate.client.sslSocketFactory(); + } + } + + static final class UnexpectedException extends IOException { + static final Interceptor INTERCEPTOR = chain -> { + try { + return chain.proceed(chain.request()); + } catch (Error | RuntimeException e) { + throw new UnexpectedException(e); + } + }; + + UnexpectedException(Throwable cause) { + super(cause); + } + } +} \ No newline at end of file diff --git a/src/main/java/org/kohsuke/github/extras/okhttp3/OkHttpConnector.java b/src/main/java/org/kohsuke/github/extras/okhttp3/OkHttpConnector.java new file mode 100644 index 0000000000..315ac0c352 --- /dev/null +++ b/src/main/java/org/kohsuke/github/extras/okhttp3/OkHttpConnector.java @@ -0,0 +1,77 @@ +package org.kohsuke.github.extras.okhttp3; + +import com.squareup.okhttp.CacheControl; +import okhttp3.ConnectionSpec; +import okhttp3.OkHttpClient; + +import org.kohsuke.github.HttpConnector; + +import java.io.IOException; +import java.net.HttpURLConnection; +import java.net.URL; + +import java.util.Arrays; +import java.util.List; +import java.util.concurrent.TimeUnit; + + +/** + * {@link HttpConnector} for {@link OkHttpClient}. + * + * Unlike {@link #DEFAULT}, OkHttp does response caching. + * Making a conditional request against GitHubAPI and receiving a 304 + * response does not count against the rate limit. + * See http://developer.github.com/v3/#conditional-requests + * + * @author Liam Newman + * @author Kohsuke Kawaguchi + */ +public class OkHttpConnector implements HttpConnector { + private static final String HEADER_NAME = "Cache-Control"; + private final String maxAgeHeaderValue; + + private final OkHttpClient client; + private final ObsoleteUrlFactory urlFactory; + + + public OkHttpConnector(OkHttpClient client) { + this(client, 0); + } + + public OkHttpConnector(OkHttpClient client, int cacheMaxAge) { + + OkHttpClient.Builder builder = client.newBuilder(); + + builder.connectionSpecs(TlsConnectionSpecs()); + this.client = builder.build(); + if (cacheMaxAge >= 0 && this.client != null && this.client.cache() != null) { + maxAgeHeaderValue = new CacheControl.Builder() + .maxAge(cacheMaxAge, TimeUnit.SECONDS) + .build() + .toString(); + } else { + maxAgeHeaderValue = null; + } + this.urlFactory = new ObsoleteUrlFactory(this.client); + } + + public HttpURLConnection connect(URL url) throws IOException { + HttpURLConnection urlConnection = urlFactory.open(url); + if (maxAgeHeaderValue != null) { + // By default OkHttp honors max-age, meaning it will use local cache + // without checking the network within that timeframe. + // However, that can result in stale data being returned during that time so + // we force network-based checking no matter how often the query is made. + // OkHttp still automatically does ETag checking and returns cached data when + // GitHub reports 304, but those do not count against rate limit. + urlConnection.setRequestProperty(HEADER_NAME, maxAgeHeaderValue); + } + + return urlConnection; + } + + /** Returns connection spec with TLS v1.2 in it */ + private List TlsConnectionSpecs() { + return Arrays.asList(ConnectionSpec.MODERN_TLS, ConnectionSpec.CLEARTEXT); + } +} \ No newline at end of file diff --git a/src/site/apt/githubappappinsttokenauth.apt b/src/site/apt/githubappappinsttokenauth.apt new file mode 100644 index 0000000000..44885ddb73 --- /dev/null +++ b/src/site/apt/githubappappinsttokenauth.apt @@ -0,0 +1,28 @@ +Authenticating as an installation + + In order to authenticate to GitHub as an installation of your GitHub App, you must use the App Installation Token + authentication mechanism. This can be achieved with by creating a <<>> instance like this: + ++-----+ +GitHub githubAuthAsInst = new GitHubBuilder() + .withAppInstallationToken(appInstallationToken.getToken()) + .build(); ++-----+ + +How do I create an App Installation Token? + + Assuming that you followed the {{{/githubappjwtauth.html} GitHub App Authentication via JWT token guide}} then you + can create the App Installation Token like this: + ++-----+ +String jwtToken = createJWT("44435", 600000); //sdk-github-api-app-test +GitHub gitHubApp = new GitHubBuilder().withJwtToken(jwtToken).build(); +GHAppInstallation appInstallation = gitHubApp.getApp().getInstallationById(111111); // Installation Id + +Map permissions = new HashMap<>(); +permissions.put("pull_requests", GHPermissionType.WRITE); + +GHAppInstallationToken appInstallationToken = appInstallation + .createToken(permissions) + .create(); ++-----+ diff --git a/src/site/apt/githubappflow.apt b/src/site/apt/githubappflow.apt new file mode 100644 index 0000000000..fe786eaa62 --- /dev/null +++ b/src/site/apt/githubappflow.apt @@ -0,0 +1,41 @@ +GitHub App Auth Flow + + GitHub Apps are commonly mistaken for OAuth Apps due to their similarities but understanding the differences between + them will help you decide which kind of app you want to create. + + In a nutshell, an OAuth App acts as a GitHub user, whereas a GitHub App uses its own identity when installed on an + organization or on repositories within an organization. For a comprehensive comparision please refer to the official + GitHub {{{https://developer.github.com/apps/differences-between-apps/}documentation}}. + + For this guide, we are going assume that you are using a GitHub App. + +Overview + + Assuming that your GitHub app has already been installed on either a user or an organization, the programmatic flow + the developer must follow in order to be able to authenticate on their behalf is: + +[images/GitHub_App_Auth_Flow.jpg] GitHub_App_Auth_Flow + + Multiple <<>> instances will have to be created and each of them will be using a different authentication + mechanism. Some actions are only accessible if you are authenticated as a GitHub App while others will only be + possible if you are authenticated on behalf of a user or org. + +Prerequisites + + In order to follow this guide, you must have: + + * A GitHub App created as described {{{https://developer.github.com/apps/building-github-apps/creating-a-github-app/}here}} + + * A Private Key must be configured in your GitHub App as described {{{https://developer.github.com/apps/building-github-apps/authenticating-with-github-apps/#generating-a-private-key}here}} + + * A User or an organisation that has already installed your GitHub App as described {{{https://developer.github.com/apps/installing-github-apps/}here}} + + [] + +What next? + + * Authenticating as a GitHub App via the {{{/githubappjwtauth.html}JWT Authentication}} + + * Authenticating as an installation via the {{{/githubappappinsttokenauth.html}App Installation Token}} + + [] diff --git a/src/site/apt/githubappjwtauth.apt b/src/site/apt/githubappjwtauth.apt new file mode 100644 index 0000000000..2a600d4e19 --- /dev/null +++ b/src/site/apt/githubappjwtauth.apt @@ -0,0 +1,135 @@ +GitHub App Authentication via JWT token + + In order to authenticate to GitHub as a GitHub App, you must use the JWT token authentication mechanism. This can be + easily achieved with this library by obtaining a <<>> instance like this: + ++-----+ +GitHub github = new GitHubBuilder().withJwtToken("my_jwt_token").build(); ++-----+ + + Authenticating as a GitHub App lets you do a couple of things: + + * You can retrieve high-level management information about your GitHub App. + + * You can request access tokens for an installation of the app. + + [] + +Where do I get the JWT token from? + + To generate the JWT token required to authenticate as a GitHub app you have to: + + * Sign the JWT token using the private key you configured on your GitHub app as described {{{https://developer.github.com/apps/building-github-apps/authenticating-with-github-apps/#generating-a-private-key}here}} + + * Encode it using the <<>> algorithm. + + [] + + GitHub checks that the request is authenticated by verifying the token with the app's stored public key. + +Converting the private key into a Java friendly format + + <> GitHub let's you download the GitHub App private key in the <<>> format which isn't natively supported + by the JVM unless you leverage a third-party library such as {{{https://www.bouncycastle.org/}BouncyCastle}}. In this + guide we will convert it to <<>> using the <<>> utility. + ++-----+ +openssl pkcs8 -topk8 -inform PEM -outform DER -in ~/github-api-app.private-key.pem -out ~/github-api-app.private-key.der -nocrypt ++-----+ + +How can I generate the JWT token? + + Once you have the private key converted to the <<>> format, you will need 2 more things before you are able to + generate JWT tokens: + + <> + + You can obtain the GitHub App Id from your app settings webpage as shown below: + +[images/Github_App_Id.png] Github_App_Id + + <> + + In order to generate the JWT, you will have to likely use a JWT library. + In this guide we will use {{{https://github.com/jwtk/jjwt}jjwt}} to that matter. + + Having said that, add on your <<>> the following dependencies: + ++-----+ + + io.jsonwebtoken + jjwt-api + 0.10.5 + + + io.jsonwebtoken + jjwt-impl + 0.10.5 + runtime + + + io.jsonwebtoken + jjwt-jackson + 0.10.5 + runtime + ++-----+ + + + Now we have everything we need so let's generate the JWT token: + ++-----+ +static PrivateKey get(String filename) throws Exception { + byte[] keyBytes = Files.toByteArray(new File(filename)); + + PKCS8EncodedKeySpec spec = new PKCS8EncodedKeySpec(keyBytes); + KeyFactory kf = KeyFactory.getInstance("RSA"); + return kf.generatePrivate(spec); +} + +static String createJWT(String githubAppId, long ttlMillis) throws Exception { + //The JWT signature algorithm we will be using to sign the token + SignatureAlgorithm signatureAlgorithm = SignatureAlgorithm.RS256; + + long nowMillis = System.currentTimeMillis(); + Date now = new Date(nowMillis); + + //We will sign our JWT with our private key + Key signingKey = get("github-api-app.private-key.der"); + + //Let's set the JWT Claims + JwtBuilder builder = Jwts.builder() + .setIssuedAt(now) + .setIssuer(githubAppId) + .signWith(signingKey, signatureAlgorithm); + + //if it has been specified, let's add the expiration + if (ttlMillis > 0) { + long expMillis = nowMillis + ttlMillis; + Date exp = new Date(expMillis); + builder.setExpiration(exp); + } + + //Builds the JWT and serializes it to a compact, URL-safe string + return builder.compact(); +} + +public static void main(String[] args) throws Exception { + String jwtToken = createJWT("44435", 600000); //sdk-github-api-app-test + GitHub gitHubApp = new GitHubBuilder().withJwtToken(jwtToken).build(); +} ++-----+ + +How do I get a specific app installation? + ++-----+ +String jwtToken = createJWT("44435", 600000); //sdk-github-api-app-test +GitHub gitHubApp = new GitHubBuilder().withJwtToken(jwtToken).build(); +GHAppInstallation appInstallation = gitHubApp.getApp().getInstallationById(111111); // Installation Id ++-----+ + +What next? + + * Authenticating as an installation via the {{{/githubappappinsttokenauth.html}App Installation Token}} + + [] diff --git a/src/site/apt/index.apt b/src/site/apt/index.apt new file mode 100644 index 0000000000..98073fd56e --- /dev/null +++ b/src/site/apt/index.apt @@ -0,0 +1,154 @@ +What is this? + + This library defines an object oriented representation of the GitHub API. By "object oriented" we mean + there are classes that correspond to the domain model of GitHub (such as <<>> and <<>>), + operations that act on them as defined as methods (such as <<>>), and those object references + are used in favor of using string handle (such as <<>> instead of + <<>>) + + The library supports both github.com and GitHub Enterprise. + + Most of the GitHub APIs are covered, although there are some corners that are still not yet implemented. + +Sample Usage + ++-----+ +GitHub github = GitHub.connect(); + +GHRepository repo = github.createRepository( + "new-repository","this is my new repository", + "http://www.kohsuke.org/",true/*public*/); +repo.addCollaborators(github.getUser("abayer"),github.getUser("rtyler")); +repo.delete(); ++-----+ + +Authentication + + The library allows connecting to GitHub via several different authentication mechanisms. + +* Programmatically + + To connect via Username and Password (not recommended): + ++-----+ +GitHub github = new GitHubBuilder().withPassword("my_user", "my_passwd").build(); ++-----+ + + To connect via Personal access token: + ++-----+ +// If you don't specify the GitHub user id then the sdk will retrieve it via /user endpoint +GitHub github = new GitHubBuilder().withOAuthToken("my_personal_token").build(); + +// If the token has access to an organization, you can specify it here. +GitHub github = new GitHubBuilder().withOAuthToken("my_personal_token","user_id_OR_org_name").build(); ++-----+ + + To connect via JWT token as a GitHub App: + ++-----+ +GitHub github = new GitHubBuilder().withJwtToken("my_jwt_token").build(); ++-----+ + + To connect via GitHub App installation token on behalf of a user or organization: + ++-----+ +GitHub github = new GitHubBuilder().withAppInstallationToken("my_installation_token").build(); ++-----+ + +* Property file + + This library defines a common convention so that applications using this library will look at a consistent location. + In this convention, the library looks at <<<~/.github>>> property file. The content of the files depends on the way + you want this library to authenticate as shown below: + + + To connect via Username and Password (not recommended): + ++-----+ +login=kohsuke +password=012345678 ++-----+ + + To connect via Personal access token: + ++-----+ +oauth=4d98173f7c075527cb64878561d1fe70 ++-----+ + + To connect via Personal access token as a user or organization: + ++-----+ +login=my_org +oauth=4d98173f7c075527cb64878561d1fe70 ++-----+ + + To connect via JWT token as a GitHub App: + ++-----+ +jwt=my_jwt_token ++-----+ + + Once your <<<~/.github>>> property file is properly configured, you can obtain a <<>> instance using: + ++-----+ +// if you are using the default configuration file +GitHub github = GitHubBuilder.fromPropertyFile().build(); + +// if you need to use a separate configuration file +GitHub github = GitHubBuilder.fromPropertyFile("location/my_custom_github.properties").build(); ++-----+ + +* Environmental variables + + This library also allows developers to authenticate GitHub with environmental variables. + + To connect via Username and Password (not recommended): + ++-----+ +export GITHUB_LOGIN=kohsuke +export GITHUB_PASSWORD=012345678 ++-----+ + + To connect via Personal access token: + ++-----+ +export GITHUB_OAUTH=4d98173f7c075527cb64878561d1fe70 ++-----+ + + To connect via Personal access token as a user or organization: + ++-----+ +export GITHUB_LOGIN=my_org +export GITHUB_OAUTH=4d98173f7c075527cb64878561d1fe70 ++-----+ + + To connect via JWT token as a GitHub App: + ++-----+ +export GITHUB_JWT=my_jwt_token ++-----+ + + Once exported, you can obtain a <<>> instance using: + ++-----+ +GitHub github = GitHubBuilder.fromEnvironment().build(); ++-----+ + + +Pluggable HTTP client + + This library comes with a pluggable connector to use different HTTP client implementations + through <<>>. In particular, this means you can use {{{http://square.github.io/okhttp/}OkHttp}}, + so we can make use of it's HTTP response cache. + Making a conditional request against the GitHub API and receiving a 304 response + {{{http://developer.github.com/v3/#conditional-requests}does not count against the rate limit}}. + + The following code shows an example of how to set up persistent cache on the disk: + ++-----+ +Cache cache = new Cache(cacheDirectory, 10 * 1024 * 1024); // 10MB cache +GitHub gitHub = GitHubBuilder.fromEnvironment() + .withConnector(new OkHttpConnector(new OkUrlFactory(new OkHttpClient().setCache(cache)))) + .build(); ++-----+ diff --git a/src/site/markdown/index.md b/src/site/markdown/index.md deleted file mode 100644 index ccd0c9cf38..0000000000 --- a/src/site/markdown/index.md +++ /dev/null @@ -1,51 +0,0 @@ -What is this? -===== - -This library defines an object oriented representation of the GitHub API. By "object oriented" we mean -there are classes that correspond to the domain model of GitHub (such as `GHUser` and `GHRepository`), -operations that act on them as defined as methods (such as `GHUser.follow()`), and those object references -are used in favor of using string handle (such as `GHUser.isMemberOf(GHOrganization)` instead of -`GHUser.isMemberOf(String)`) - -The library supports both github.com and GitHub Enterprise. - -Most of the GitHub APIs are covered, although there are some corners that are still not yet implemented. - -Sample Usage ------ - - GitHub github = GitHub.connect(); - GHRepository repo = github.createRepository( - "new-repository","this is my new repository", - "http://www.kohsuke.org/",true/*public*/); - repo.addCollaborators(github.getUser("abayer"),github.getUser("rtyler")); - repo.delete(); - -Credential ----- - -This library allows the caller to supply the credential as parameters, but it also defines a common convention -so that applications using this library will look at the consistent location. In this convention, the library -looks at `~/.github` property file, which should have the following two values: - - login=kohsuke - password=012345678 - -Alternatively, you can have just the OAuth token in this file: - - oauth=4d98173f7c075527cb64878561d1fe70 - -OkHttp ----- -This library comes with a pluggable connector to use different HTTP client implementations -through `HttpConnector`. In particular, this means you can use [OkHttp](http://square.github.io/okhttp/), -so we can make use of it's HTTP response cache. -Making a conditional request against the GitHub API and receiving a 304 response -[does not count against the rate limit](http://developer.github.com/v3/#conditional-requests). - -The following code shows an example of how to set up persistent cache on the disk: - - Cache cache = new Cache(cacheDirectory, 10 * 1024 * 1024); // 10MB cache - GitHub gitHub = GitHubBuilder.fromCredentials() - .withConnector(new OkHttpConnector(new OkUrlFactory(new OkHttpClient().setCache(cache)))) - .build(); diff --git a/src/site/resources/images/GitHub_App_Auth_Flow.jpg b/src/site/resources/images/GitHub_App_Auth_Flow.jpg new file mode 100644 index 0000000000..a2bb6f3d82 Binary files /dev/null and b/src/site/resources/images/GitHub_App_Auth_Flow.jpg differ diff --git a/src/site/resources/images/Github_App_Id.png b/src/site/resources/images/Github_App_Id.png new file mode 100644 index 0000000000..3e86ee04bb Binary files /dev/null and b/src/site/resources/images/Github_App_Id.png differ diff --git a/src/site/site.xml b/src/site/site.xml index 01eda5ec16..e8907107f1 100644 --- a/src/site/site.xml +++ b/src/site/site.xml @@ -9,15 +9,22 @@ maven-skin 1.2 - + - - - + + + + + + + + + + diff --git a/src/test/java/Foo.java b/src/test/java/Foo.java deleted file mode 100644 index 540f9fd3ca..0000000000 --- a/src/test/java/Foo.java +++ /dev/null @@ -1,22 +0,0 @@ -import org.kohsuke.github.GHRepository.Contributor; -import org.kohsuke.github.GHUser; -import org.kohsuke.github.GitHub; - -/** - * @author Kohsuke Kawaguchi - */ -public class Foo { - public static void main(String[] args) throws Exception { - GitHub gh = GitHub.connect(); - for (Contributor c : gh.getRepository("kohsuke/yo").listContributors()) { - System.out.println(c); - } - } - - private static void testRateLimit() throws Exception { - GitHub g = GitHub.connectAnonymously(); - for (GHUser u : g.getOrganization("jenkinsci").listMembers()) { - u.getFollowersCount(); - } - } -} diff --git a/src/test/java/org/kohsuke/HookApp.java b/src/test/java/org/kohsuke/HookApp.java index aac24ddf84..4f8ced9685 100644 --- a/src/test/java/org/kohsuke/HookApp.java +++ b/src/test/java/org/kohsuke/HookApp.java @@ -25,8 +25,8 @@ public static void main(String[] args) throws Exception { public void doIndex(StaplerRequest req) throws IOException { String str = req.getParameter("payload"); - System.out.println(str); - GHEventPayload.PullRequest o = GitHub.connect().parseEventPayload(new StringReader(str),GHEventPayload.PullRequest.class); - System.out.println(o); + // System.out.println(str); + GHEventPayload.PullRequest o = GitHub.connect().parseEventPayload(new StringReader(str), GHEventPayload.PullRequest.class); + // System.out.println(o); } } diff --git a/src/test/java/org/kohsuke/github/AbstractGitHubApiTestBase.java b/src/test/java/org/kohsuke/github/AbstractGitHubApiTestBase.java index a7afb38fd7..0c5010c32c 100644 --- a/src/test/java/org/kohsuke/github/AbstractGitHubApiTestBase.java +++ b/src/test/java/org/kohsuke/github/AbstractGitHubApiTestBase.java @@ -2,6 +2,7 @@ import java.io.FileInputStream; import java.util.Properties; + import org.apache.commons.io.IOUtils; import org.junit.Assert; import org.junit.Assume; @@ -11,44 +12,21 @@ import java.io.File; import java.io.IOException; +import static org.junit.Assume.assumeTrue; + /** * @author Kohsuke Kawaguchi */ -public abstract class AbstractGitHubApiTestBase extends Assert { - - protected GitHub gitHub; +public abstract class AbstractGitHubApiTestBase extends AbstractGitHubWireMockTest { @Before public void setUp() throws Exception { - File f = new File(System.getProperty("user.home"), ".github.kohsuke2"); - if (f.exists()) { - Properties props = new Properties(); - FileInputStream in = null; - try { - in = new FileInputStream(f); - props.load(in); - } finally { - IOUtils.closeQuietly(in); - } - // use the non-standard credential preferentially, so that developers of this library do not have - // to clutter their event stream. - gitHub = GitHubBuilder.fromProperties(props).withRateLimitHandler(RateLimitHandler.FAIL).build(); - } else { - gitHub = GitHubBuilder.fromCredentials().withRateLimitHandler(RateLimitHandler.FAIL).build(); - } - } - - protected GHUser getUser() { - try { - return gitHub.getMyself(); - } catch (IOException e) { - throw new RuntimeException(e.getMessage(), e); - } + assumeTrue("All tests inheriting from this class are not guaranteed to work without proxy", mockGitHub.isUseProxy()); } protected void kohsuke() { String login = getUser().getLogin(); - Assume.assumeTrue(login.equals("kohsuke") || login.equals("kohsuke2")); + assumeTrue(login.equals("kohsuke") || login.equals("kohsuke2")); } protected static final RandomNameGenerator rnd = new RandomNameGenerator(); diff --git a/src/test/java/org/kohsuke/github/AbstractGitHubWireMockTest.java b/src/test/java/org/kohsuke/github/AbstractGitHubWireMockTest.java new file mode 100644 index 0000000000..7c5892eea9 --- /dev/null +++ b/src/test/java/org/kohsuke/github/AbstractGitHubWireMockTest.java @@ -0,0 +1,222 @@ +package org.kohsuke.github; + +import com.github.tomakehurst.wiremock.core.WireMockConfiguration; +import org.apache.commons.io.IOUtils; +import org.junit.After; +import org.junit.Assert; +import org.junit.Before; +import org.junit.Rule; +import org.kohsuke.github.junit.GitHubWireMockRule; + +import java.io.File; +import java.io.FileInputStream; +import java.io.IOException; +import java.util.*; + +import static org.junit.Assume.assumeFalse; +import static org.junit.Assume.assumeTrue; + +/** + * @author Liam Newman + */ +public abstract class AbstractGitHubWireMockTest extends Assert { + + private final GitHubBuilder githubBuilder = createGitHubBuilder(); + + final static String GITHUB_API_TEST_ORG = "github-api-test-org"; + + final static String STUBBED_USER_LOGIN = "placeholder-user"; + final static String STUBBED_USER_PASSWORD = "placeholder-password"; + + protected boolean useDefaultGitHub = true; + + protected final Set tempGitHubRepositories = new HashSet<>(); + + /** + * {@link GitHub} instance for use during test. + * Traffic will be part of snapshot when taken. + */ + protected GitHub gitHub; + + /** + * {@link GitHub} instance for use before/after test. + * Traffic will not be part of snapshot when taken. + * Should only be used when isUseProxy() or isTakeSnapShot(). + */ + protected GitHub gitHubBeforeAfter; + + protected final String baseFilesClassPath = this.getClass().getName().replace('.', '/'); + protected final String baseRecordPath = "src/test/resources/" + baseFilesClassPath + "/wiremock"; + + @Rule + public final GitHubWireMockRule mockGitHub; + + public AbstractGitHubWireMockTest() { + mockGitHub = new GitHubWireMockRule( + this.getWireMockOptions() + ); + } + + protected WireMockConfiguration getWireMockOptions() { + return WireMockConfiguration.options() + .dynamicPort() + .usingFilesUnderDirectory(baseRecordPath); + } + + private static GitHubBuilder createGitHubBuilder() { + + GitHubBuilder builder = new GitHubBuilder(); + + try { + File f = new File(System.getProperty("user.home"), ".github.kohsuke2"); + if (f.exists()) { + Properties props = new Properties(); + FileInputStream in = null; + try { + in = new FileInputStream(f); + props.load(in); + } finally { + IOUtils.closeQuietly(in); + } + // use the non-standard credential preferentially, so that developers of this library do not have + // to clutter their event stream. + builder = GitHubBuilder.fromProperties(props); + } else { + + builder = GitHubBuilder.fromEnvironment(); + + builder = GitHubBuilder.fromCredentials(); + } + } catch (IOException e) { + } + + return builder.withRateLimitHandler(RateLimitHandler.FAIL); + } + + protected GitHubBuilder getGitHubBuilder() { + GitHubBuilder builder = githubBuilder.clone(); + + if (!mockGitHub.isUseProxy()) { + // This sets the user and password to a placeholder for wiremock testing + // This makes the tests believe they are running with permissions + // The recorded stubs will behave like they running with permissions + builder.oauthToken = null; + builder.withPassword(STUBBED_USER_LOGIN, STUBBED_USER_PASSWORD); + } + + return builder; + } + + @Before + public void wireMockSetup() throws Exception { + GitHubBuilder builder = getGitHubBuilder() + .withEndpoint(mockGitHub.apiServer().baseUrl()); + + if (useDefaultGitHub) { + gitHub = builder + .build(); + } + + if (mockGitHub.isUseProxy()) { + gitHubBeforeAfter = getGitHubBuilder() + .withEndpoint("https://api.github.com/") + .build(); + } else { + gitHubBeforeAfter = null; + } + } + + protected void snapshotNotAllowed() { + assumeFalse("Test contains hand written mappings. Only valid when not taking a snapshot.", mockGitHub.isTakeSnapshot()); + } + + protected void requireProxy(String reason) { + assumeTrue("Test only valid when proxying (-Dtest.github.useProxy to enable): " + reason, mockGitHub.isUseProxy()); + } + + protected GHUser getUser() { + return getUser(gitHub); + } + + protected static GHUser getUser(GitHub gitHub) { + try { + return gitHub.getMyself(); + } catch (IOException e) { + throw new RuntimeException(e.getMessage(), e); + } + } + + /** + * + */ + protected GHRepository getTempRepository() throws IOException{ + return getTempRepository("temp-" + this.mockGitHub.getMethodName()); + } + + /** + * Creates + */ + protected GHRepository getTempRepository(String name) throws IOException { + String fullName = GITHUB_API_TEST_ORG +'/' + name; + if (mockGitHub.isUseProxy()) { + cleanupRepository(fullName); + + GHRepository repository = gitHubBeforeAfter.getOrganization(GITHUB_API_TEST_ORG) + .createRepository(name) + .description("A test repository for testing the github-api project: " + name) + .homepage("http://github-api.kohsuke.org/") + .autoInit(true) + .create(); + try { + Thread.sleep(3000); + } catch (InterruptedException e) { + throw new RuntimeException(e.getMessage(), e); + } + + configureTempRepository(repository); + } + + return gitHub.getRepository(fullName); + } + + protected void configureTempRepository(GHRepository repository) throws IOException { + repository.enableIssueTracker(true); + repository.enableDownloads(true); + repository.enableWiki(true); + } + + @Before + @After + public void cleanupTempRepositories() throws IOException { + if (mockGitHub.isUseProxy()) { + for(String fullName : tempGitHubRepositories) { + cleanupRepository(fullName); + } + } + } + + protected void cleanupRepository(String fullName) throws IOException { + if (mockGitHub.isUseProxy()) { + tempGitHubRepositories.add(fullName); + try { + GHRepository repository = gitHubBeforeAfter.getRepository(fullName); + if (repository != null) { + repository.delete(); + } + } catch (GHFileNotFoundException e) { + // Repo already deleted + } + + } + } + + protected void kohsuke() { + // No-op for now + // Generally this means the test is doing something that requires additional access rights + // Not always clear which ones. + // TODO: Add helpers that assert the expected rights using gitHubBeforeAfter and only when proxy is enabled +// String login = getUserTest().getLogin(); +// assumeTrue(login.equals("kohsuke") || login.equals("kohsuke2")); + } + +} diff --git a/src/test/java/org/kohsuke/github/AppTest.java b/src/test/java/org/kohsuke/github/AppTest.java index 807e8ca7c6..9f4d253ef5 100755 --- a/src/test/java/org/kohsuke/github/AppTest.java +++ b/src/test/java/org/kohsuke/github/AppTest.java @@ -5,6 +5,7 @@ import com.google.common.collect.Lists; import org.apache.commons.io.IOUtils; +import org.junit.Ignore; import org.junit.Test; import org.kohsuke.github.GHCommit.File; import org.kohsuke.github.GHOrganization.Permission; @@ -17,22 +18,25 @@ import java.util.regex.Pattern; import static org.hamcrest.CoreMatchers.*; +import static org.hamcrest.Matchers.contains; +import static org.hamcrest.Matchers.hasProperty; /** * Unit test for simple App. */ -public class AppTest extends AbstractGitHubApiTestBase { - private String getTestRepositoryName() throws IOException { - return getUser().getLogin() + "/github-api-test"; - } +public class AppTest extends AbstractGitHubWireMockTest { + static final String GITHUB_API_TEST_REPO = "github-api-test"; @Test public void testRepoCRUD() throws Exception { String targetName = "github-api-test-rename2"; - deleteRepository("github-api-test-rename"); - deleteRepository(targetName); + cleanupUserRepository("github-api-test-rename"); + cleanupUserRepository(targetName); + GHRepository r = gitHub.createRepository("github-api-test-rename", "a test repository", "http://github-api.kohsuke.org/", true); + assertThat(r.hasIssues(), is(true)); + r.enableIssueTracker(false); r.enableDownloads(false); r.enableWiki(false); @@ -43,23 +47,24 @@ public void testRepoCRUD() throws Exception { @Test public void testRepositoryWithAutoInitializationCRUD() throws Exception { String name = "github-api-test-autoinit"; - deleteRepository(name); + cleanupUserRepository(name); GHRepository r = gitHub.createRepository(name) - .description("a test repository for auto init") - .homepage("http://github-api.kohsuke.org/") - .autoInit(true).create(); + .description("a test repository for auto init") + .homepage("http://github-api.kohsuke.org/") + .autoInit(true).create(); r.enableIssueTracker(false); r.enableDownloads(false); r.enableWiki(false); - Thread.sleep(3000); + if (mockGitHub.isUseProxy()) { + Thread.sleep(3000); + } assertNotNull(r.getReadme()); getUser().getRepository(name).delete(); } - private void deleteRepository(final String name) throws IOException { - GHRepository repository = getUser().getRepository(name); - if(repository != null) { - repository.delete(); + private void cleanupUserRepository(final String name) throws IOException { + if (mockGitHub.isUseProxy()) { + cleanupRepository(getUser(gitHubBeforeAfter).getLogin() + "/" + name); } } @@ -74,11 +79,11 @@ public void testCredentialValid() throws IOException { public void testIssueWithNoComment() throws IOException { GHRepository repository = gitHub.getRepository("kohsuke/test"); List v = repository.getIssue(4).getComments(); - System.out.println(v); + //System.out.println(v); assertTrue(v.isEmpty()); v = repository.getIssue(3).getComments(); - System.out.println(v); + //System.out.println(v); assertTrue(v.size() == 3); } @@ -86,90 +91,65 @@ public void testIssueWithNoComment() throws IOException { public void testCreateIssue() throws IOException { GHUser u = getUser(); GHRepository repository = getTestRepository(); - GHMilestone milestone = repository.createMilestone(System.currentTimeMillis() + "", "Test Milestone"); + GHMilestone milestone = repository.createMilestone("Test Milestone Title3", "Test Milestone"); GHIssue o = repository.createIssue("testing") - .body("this is body") - .assignee(u) - .label("bug") - .label("question") - .milestone(milestone) - .create(); + .body("this is body") + .assignee(u) + .label("bug") + .label("question") + .milestone(milestone) + .create(); assertNotNull(o); o.close(); } @Test - public void testCreateDeployment() throws IOException { + public void testCreateAndListDeployments() throws IOException { GHRepository repository = getTestRepository(); GHDeployment deployment = repository.createDeployment("master") - .payload("{\"user\":\"atmos\",\"room_id\":123456}") - .description("question") - .create(); + .payload("{\"user\":\"atmos\",\"room_id\":123456}") + .description("question") + .environment("unittest") + .create(); assertNotNull(deployment.getCreator()); assertNotNull(deployment.getId()); - } - - @Test - public void testListDeployments() throws IOException { - GHRepository repository = getTestRepository(); - GHDeployment deployment = repository.createDeployment("master") - .payload("{\"user\":\"atmos\",\"room_id\":123456}") - .description("question") - .environment("unittest") - .create(); - assertNotNull(deployment.getCreator()); - assertNotNull(deployment.getId()); - ArrayList deployments = Lists.newArrayList(repository.listDeployments(null, "master", null, "unittest")); + List deployments = repository.listDeployments(null, "master", null, "unittest").asList(); assertNotNull(deployments); assertFalse(Iterables.isEmpty(deployments)); GHDeployment unitTestDeployment = deployments.get(0); - assertEquals("unittest",unitTestDeployment.getEnvironment()); + assertEquals("unittest", unitTestDeployment.getEnvironment()); assertEquals("master", unitTestDeployment.getRef()); } + @Ignore("Needs mocking check") @Test public void testGetDeploymentStatuses() throws IOException { GHRepository repository = getTestRepository(); GHDeployment deployment = repository.createDeployment("master") - .description("question") - .payload("{\"user\":\"atmos\",\"room_id\":123456}") - .create(); + .description("question") + .payload("{\"user\":\"atmos\",\"room_id\":123456}") + .create(); GHDeploymentStatus ghDeploymentStatus = deployment.createStatus(GHDeploymentState.SUCCESS) - .description("success") - .targetUrl("http://www.github.com").create(); + .description("success") + .targetUrl("http://www.github.com").create(); Iterable deploymentStatuses = deployment.listStatuses(); assertNotNull(deploymentStatuses); - assertEquals(1,Iterables.size(deploymentStatuses)); + assertEquals(1, Iterables.size(deploymentStatuses)); assertEquals(ghDeploymentStatus.getId(), Iterables.get(deploymentStatuses, 0).getId()); } @Test public void testGetIssues() throws Exception { - List closedIssues = gitHub.getUser("kohsuke").getRepository("github-api").getIssues(GHIssueState.CLOSED); + List closedIssues = gitHub.getOrganization("github-api").getRepository("github-api").getIssues(GHIssueState.CLOSED); // prior to using PagedIterable GHRepository.getIssues(GHIssueState) would only retrieve 30 issues - assertTrue(closedIssues.size() > 30); + assertTrue(closedIssues.size() > 150); } - private GHRepository getTestRepository() throws IOException { - GHRepository repository; - try { - repository = gitHub.getRepository(getTestRepositoryName()); - } catch (IOException e) { - repository = gitHub.createRepository("github-api-test", "A test repository for testing" + - "the github-api project", "http://github-api.kohsuke.org/", true); - try { - Thread.sleep(2000); - } catch (InterruptedException e1) { - throw new RuntimeException(e.getMessage(), e); - } - repository.enableIssueTracker(true); - repository.enableDownloads(true); - repository.enableWiki(true); - } - return repository; + return getTempRepository(GITHUB_API_TEST_REPO); } + @Ignore("Needs to be rewritten to not create new issues just to check that they can be found.") @Test public void testListIssues() throws IOException { GHUser u = getUser(); @@ -181,17 +161,17 @@ public void testListIssues() throws IOException { GHIssue homed = null; try { unhomed = repository.createIssue("testing").body("this is body") - .assignee(u) - .label("bug") - .label("question") - .create(); + .assignee(u) + .label("bug") + .label("question") + .create(); assertEquals(unhomed.getNumber(), repository.getIssues(GHIssueState.OPEN, null).get(0).getNumber()); homed = repository.createIssue("testing").body("this is body") - .assignee(u) - .label("bug") - .label("question") - .milestone(milestone) - .create(); + .assignee(u) + .label("bug") + .label("question") + .milestone(milestone) + .create(); assertEquals(homed.getNumber(), repository.getIssues(GHIssueState.OPEN, milestone).get(0).getNumber()); } finally { if (unhomed != null) { @@ -205,14 +185,14 @@ public void testListIssues() throws IOException { @Test public void testRateLimit() throws IOException { - System.out.println(gitHub.getRateLimit()); + assertThat(gitHub.getRateLimit(), notNullValue()); } @Test public void testMyOrganizations() throws IOException { Map org = gitHub.getMyOrganizations(); assertFalse(org.keySet().contains(null)); - System.out.println(org); + //System.out.println(org); } @Test @@ -223,7 +203,7 @@ public void testMyOrganizationsContainMyTeams() throws IOException { //https://help.github.com/articles/about-improved-organization-permissions/ assertTrue(myOrganizations.keySet().containsAll(teams.keySet())); } - + @Test public void testMyTeamsShouldIncludeMyself() throws IOException { Map> teams = gitHub.getMyTeams(); @@ -232,11 +212,31 @@ public void testMyTeamsShouldIncludeMyself() throws IOException { for (GHTeam team : teamsPerOrg.getValue()) { String teamName = team.getName(); assertTrue("Team " + teamName + " in organization " + organizationName - + " does not contain myself", - shouldBelongToTeam(organizationName, teamName)); + + " does not contain myself", + shouldBelongToTeam(organizationName, teamName)); } } } + + @Test + public void testUserPublicOrganizationsWhenThereAreSome() throws IOException { + // kohsuke had some public org memberships at the time Wiremock recorded the GitHub API responses + GHUser user = new GHUser(); + user.login = "kohsuke"; + + Map orgs = gitHub.getUserPublicOrganizations( user ); + assertFalse(orgs.isEmpty()); + } + + @Test + public void testUserPublicOrganizationsWhenThereAreNone() throws IOException { + // bitwiseman had no public org memberships at the time Wiremock recorded the GitHub API responses + GHUser user = new GHUser(); + user.login = "bitwiseman"; + + Map orgs = gitHub.getUserPublicOrganizations( user ); + assertTrue(orgs.isEmpty()); + } private boolean shouldBelongToTeam(String organizationName, String teamName) throws IOException { GHOrganization org = gitHub.getOrganization(organizationName); @@ -246,17 +246,31 @@ private boolean shouldBelongToTeam(String organizationName, String teamName) thr return team.hasMember(gitHub.getMyself()); } + @Ignore("Needs mocking check") + @Test + public void testShouldFetchTeam() throws Exception { + GHOrganization j = gitHub.getOrganization(GITHUB_API_TEST_ORG); + GHTeam teamByName = j.getTeams().get("Core Developers"); + + GHTeam teamById = gitHub.getTeam(teamByName.getId()); + assertNotNull(teamById); + + assertEquals(teamByName, teamById); + } + + @Ignore("Needs mocking check") @Test public void testFetchPullRequest() throws Exception { GHRepository r = gitHub.getOrganization("jenkinsci").getRepository("jenkins"); - assertEquals("master",r.getMasterBranch()); + assertEquals("master", r.getMasterBranch()); r.getPullRequest(1); r.getPullRequests(GHIssueState.OPEN); } + @Ignore("Needs mocking check") @Test public void testFetchPullRequestAsList() throws Exception { - GHRepository r = gitHub.getRepository("kohsuke/github-api"); + GHRepository r = gitHub.getRepository("github-api/github-api"); assertEquals("master", r.getMasterBranch()); PagedIterable i = r.listPullRequests(GHIssueState.CLOSED); List prs = i.asList(); @@ -264,61 +278,66 @@ public void testFetchPullRequestAsList() throws Exception { assertTrue(prs.size() > 0); } + @Ignore("Needs mocking check") @Test public void testRepoPermissions() throws Exception { kohsuke(); - GHRepository r = gitHub.getOrganization("jenkinsci").getRepository("jenkins"); + + GHRepository r = gitHub.getOrganization(GITHUB_API_TEST_ORG).getRepository("github-api"); assertTrue(r.hasPullAccess()); r = gitHub.getOrganization("github").getRepository("hub"); assertFalse(r.hasAdminAccess()); } - + @Test public void testGetMyself() throws Exception { GHMyself me = gitHub.getMyself(); assertNotNull(me); - assertNotNull(gitHub.getUser("kohsuke2")); + assertNotNull(gitHub.getUser("bitwiseman")); PagedIterable ghRepositories = me.listRepositories(); assertTrue(ghRepositories.iterator().hasNext()); } + @Ignore("Needs mocking check") @Test public void testPublicKeys() throws Exception { List keys = gitHub.getMyself().getPublicKeys(); assertFalse(keys.isEmpty()); } + @Ignore("Needs mocking check") @Test public void testOrgFork() throws Exception { kohsuke(); - gitHub.getRepository("kohsuke/rubywm").forkTo(gitHub.getOrganization("github-api-test-org")); + + gitHub.getRepository("kohsuke/rubywm").forkTo(gitHub.getOrganization(GITHUB_API_TEST_ORG)); } @Test public void testGetTeamsForRepo() throws Exception { kohsuke(); // 'Core Developers' and 'Owners' - assertEquals(2, gitHub.getOrganization("github-api-test-org").getRepository("testGetTeamsForRepo").getTeams().size()); + assertEquals(2, gitHub.getOrganization(GITHUB_API_TEST_ORG).getRepository("testGetTeamsForRepo").getTeams().size()); } @Test public void testMembership() throws Exception { - Set members = gitHub.getOrganization("github-api-test-org").getRepository("jenkins").getCollaboratorNames(); - System.out.println(members.contains("kohsuke")); + Set members = gitHub.getOrganization(GITHUB_API_TEST_ORG).getRepository("jenkins").getCollaboratorNames(); + // System.out.println(members.contains("kohsuke")); } @Test public void testMemberOrgs() throws Exception { - Set o = gitHub.getUser("kohsuke").getOrganizations(); - System.out.println(o); + HashSet o = gitHub.getUser("kohsuke").getOrganizations(); + assertThat(o, hasItem(hasProperty("name", equalTo("CloudBees")))); } @Test public void testOrgTeams() throws Exception { kohsuke(); - int sz=0; - for (GHTeam t : gitHub.getOrganization("github-api-test-org").listTeams()) { + int sz = 0; + for (GHTeam t : gitHub.getOrganization(GITHUB_API_TEST_ORG).listTeams()) { assertNotNull(t.getName()); sz++; } @@ -328,29 +347,28 @@ public void testOrgTeams() throws Exception { @Test public void testOrgTeamByName() throws Exception { kohsuke(); - GHTeam e = gitHub.getOrganization("github-api-test-org").getTeamByName("Core Developers"); + GHTeam e = gitHub.getOrganization(GITHUB_API_TEST_ORG).getTeamByName("Core Developers"); assertNotNull(e); } @Test public void testOrgTeamBySlug() throws Exception { kohsuke(); - GHTeam e = gitHub.getOrganization("github-api-test-org").getTeamBySlug("core-developers"); + GHTeam e = gitHub.getOrganization(GITHUB_API_TEST_ORG).getTeamBySlug("core-developers"); assertNotNull(e); } @Test public void testCommit() throws Exception { GHCommit commit = gitHub.getUser("jenkinsci").getRepository("jenkins").getCommit("08c1c9970af4d609ae754fbe803e06186e3206f7"); - System.out.println(commit); assertEquals(1, commit.getParents().size()); - assertEquals(1,commit.getFiles().size()); + assertEquals(1, commit.getFiles().size()); assertEquals("https://github.com/jenkinsci/jenkins/commit/08c1c9970af4d609ae754fbe803e06186e3206f7", - commit.getHtmlUrl().toString()); + commit.getHtmlUrl().toString()); File f = commit.getFiles().get(0); - assertEquals(48,f.getLinesChanged()); - assertEquals("modified",f.getStatus()); + assertEquals(48, f.getLinesChanged()); + assertEquals("modified", f.getStatus()); assertEquals("changelog.html", f.getFileName()); // walk the tree @@ -363,7 +381,6 @@ public void testCommit() throws Exception { public void testListCommits() throws Exception { List sha1 = new ArrayList(); for (GHCommit c : gitHub.getUser("kohsuke").getRepository("empty-commit").listCommits()) { - System.out.println(c.getSHA1()); sha1.add(c.getSHA1()); } assertEquals("fdfad6be4db6f96faea1f153fb447b479a7a9cb7", sha1.get(0)); @@ -373,19 +390,20 @@ public void testListCommits() throws Exception { public void testQueryCommits() throws Exception { List sha1 = new ArrayList(); for (GHCommit c : gitHub.getUser("jenkinsci").getRepository("jenkins").queryCommits() - .since(new Date(1199174400000L)).until(1201852800000L).path("pom.xml").list()) { - System.out.println(c.getSHA1()); + .since(new Date(1199174400000L)).until(1201852800000L).path("pom.xml").list()) { + // System.out.println(c.getSHA1()); sha1.add(c.getSHA1()); } - assertEquals("1cccddb22e305397151b2b7b87b4b47d74ca337b",sha1.get(0)); + assertEquals("1cccddb22e305397151b2b7b87b4b47d74ca337b", sha1.get(0)); assertEquals(29, sha1.size()); } + @Ignore("Needs mocking check") @Test public void testBranches() throws Exception { - Map b = - gitHub.getUser("jenkinsci").getRepository("jenkins").getBranches(); - System.out.println(b); + Map b = + gitHub.getUser("jenkinsci").getRepository("jenkins").getBranches(); + // System.out.println(b); } @Test @@ -394,7 +412,7 @@ public void testCommitComment() throws Exception { PagedIterable comments = r.listCommitComments(); List batch = comments.iterator().nextPage(); for (GHCommitComment comment : batch) { - System.out.println(comment.getBody()); + // System.out.println(comment.getBody()); assertSame(comment.getOwner(), r); } } @@ -403,38 +421,41 @@ public void testCommitComment() throws Exception { public void testCreateCommitComment() throws Exception { GHCommit commit = gitHub.getUser("kohsuke").getRepository("sandbox-ant").getCommit("8ae38db0ea5837313ab5f39d43a6f73de3bd9000"); GHCommitComment c = commit.createComment("[testing](http://kohsuse.org/)"); - System.out.println(c); + // System.out.println(c); c.update("updated text"); - System.out.println(c); + // System.out.println(c); c.delete(); } @Test public void tryHook() throws Exception { kohsuke(); - GHRepository r = gitHub.getMyself().getRepository("test2"); + GHRepository r = gitHub.getOrganization(GITHUB_API_TEST_ORG).getRepository("github-api"); GHHook hook = r.createWebHook(new URL("http://www.google.com/")); - System.out.println(hook); + // System.out.println(hook); - for (GHHook h : r.getHooks()) - h.delete(); + if (mockGitHub.isUseProxy()) { + r = gitHubBeforeAfter.getOrganization(GITHUB_API_TEST_ORG).getRepository("github-api"); + for (GHHook h : r.getHooks()) { + h.delete(); + } + } } - + @Test public void testEventApi() throws Exception { for (GHEventInfo ev : gitHub.getEvents()) { - System.out.println(ev); - if (ev.getType()==GHEvent.PULL_REQUEST) { + if (ev.getType() == GHEvent.PULL_REQUEST) { GHEventPayload.PullRequest pr = ev.getPayload(GHEventPayload.PullRequest.class); - System.out.println(pr.getNumber()); - System.out.println(pr.getPullRequest()); + assertThat(pr.getNumber(), is(pr.getPullRequest().getNumber())); } } } + @Ignore("Needs mocking check") @Test public void testApp() throws IOException { - System.out.println(gitHub.getMyself().getEmails()); + // System.out.println(gitHub.getMyself().getEmails()); // GHRepository r = gitHub.getOrganization("jenkinsci").createRepository("kktest4", "Kohsuke's test", "http://kohsuke.org/", "Everyone", true); // r.fork(); @@ -445,8 +466,8 @@ public void testApp() throws IOException { // GHPullRequest i = gitHub.getOrganization("jenkinsci").getRepository("sandbox").getPullRequest(1); // for (GHIssueComment c : i.getComments()) -// System.out.println(c); -// System.out.println(i); +// // System.out.println(c); +// // System.out.println(i); // gitHub.getMyself().getRepository("perforce-plugin").setEmailServiceHook("kk@kohsuke.org"); @@ -459,28 +480,28 @@ public void testApp() throws IOException { // tryTeamCreation(gitHub); // t.add(gitHub.getMyself()); -// System.out.println(t.getMembers()); +// // System.out.println(t.getMembers()); // t.remove(gitHub.getMyself()); -// System.out.println(t.getMembers()); +// // System.out.println(t.getMembers()); // GHRepository r = gitHub.getOrganization("HudsonLabs").createRepository("auto-test", "some description", "http://kohsuke.org/", "Plugin Developers", true); // r. // GitHub hub = GitHub.connectAnonymously(); //// hub.createRepository("test","test repository",null,true); -//// hub.getUser("kohsuke").getRepository("test").delete(); +//// hub.getUserTest("kohsuke").getRepository("test").delete(); // -// System.out.println(hub.getUser("kohsuke").getRepository("hudson").getCollaborators()); +// // System.out.println(hub.getUserTest("kohsuke").getRepository("hudson").getCollaborators()); } private void tryDisablingIssueTrackers(GitHub gitHub) throws IOException { for (GHRepository r : gitHub.getOrganization("jenkinsci").getRepositories().values()) { if (r.hasIssues()) { - if (r.getOpenIssueCount()==0) { - System.out.println("DISABLED "+r.getName()); + if (r.getOpenIssueCount() == 0) { + // System.out.println("DISABLED " + r.getName()); r.enableIssueTracker(false); } else { - System.out.println("UNTOUCHED "+r.getName()); + // System.out.println("UNTOUCHED " + r.getName()); } } } @@ -489,7 +510,7 @@ private void tryDisablingIssueTrackers(GitHub gitHub) throws IOException { private void tryDisablingWiki(GitHub gitHub) throws IOException { for (GHRepository r : gitHub.getOrganization("jenkinsci").getRepositories().values()) { if (r.hasWiki()) { - System.out.println("DISABLED "+r.getName()); + // System.out.println("DISABLED " + r.getName()); r.enableWiki(false); } } @@ -497,8 +518,8 @@ private void tryDisablingWiki(GitHub gitHub) throws IOException { private void tryUpdatingIssueTracker(GitHub gitHub) throws IOException { GHRepository r = gitHub.getOrganization("jenkinsci").getRepository("lib-task-reactor"); - System.out.println(r.hasIssues()); - System.out.println(r.getOpenIssueCount()); + // System.out.println(r.hasIssues()); + // System.out.println(r.getOpenIssueCount()); r.enableIssueTracker(false); } @@ -516,9 +537,9 @@ private void testPostCommitHook(GitHub gitHub) throws IOException { GHRepository r = gitHub.getMyself().getRepository("foo"); Set hooks = r.getPostCommitHooks(); hooks.add(new URL("http://kohsuke.org/test")); - System.out.println(hooks); + // System.out.println(hooks); hooks.remove(new URL("http://kohsuke.org/test")); - System.out.println(hooks); + // System.out.println(hooks); } @Test @@ -528,13 +549,13 @@ public void testOrgRepositories() throws IOException { long start = System.currentTimeMillis(); Map repos = j.getRepositories(); long end = System.currentTimeMillis(); - System.out.printf("%d repositories in %dms\n", repos.size(), end - start); + // System.out.printf("%d repositories in %dms\n", repos.size(), end - start); } - + @Test public void testOrganization() throws IOException { kohsuke(); - GHOrganization j = gitHub.getOrganization("github-api-test-org"); + GHOrganization j = gitHub.getOrganization(GITHUB_API_TEST_ORG); GHTeam t = j.getTeams().get("Core Developers"); assertNotNull(j.getRepository("jenkins")); @@ -544,7 +565,7 @@ public void testOrganization() throws IOException { @Test public void testCommitStatus() throws Exception { - GHRepository r = gitHub.getRepository("kohsuke/github-api"); + GHRepository r = gitHub.getRepository("github-api/github-api"); GHCommitStatus state; @@ -552,19 +573,20 @@ public void testCommitStatus() throws Exception { List lst = r.listCommitStatuses("ecbfdd7315ef2cf04b2be7f11a072ce0bd00c396").asList(); state = lst.get(0); - System.out.println(state); - assertEquals("testing!",state.getDescription()); + // System.out.println(state); + assertEquals("testing!", state.getDescription()); assertEquals("http://kohsuke.org/", state.getTargetUrl()); } - + @Test public void testCommitShortInfo() throws Exception { - GHRepository r = gitHub.getRepository("kohsuke/github-api"); + GHRepository r = gitHub.getRepository("github-api/github-api"); GHCommit commit = r.getCommit("86a2e245aa6d71d54923655066049d9e21a15f23"); assertEquals(commit.getCommitShortInfo().getAuthor().getName(), "Kohsuke Kawaguchi"); assertEquals(commit.getCommitShortInfo().getMessage(), "doc"); } + @Ignore("Needs mocking check") @Test public void testPullRequestPopulate() throws Exception { GHRepository r = gitHub.getUser("kohsuke").getRepository("github-api"); @@ -587,6 +609,7 @@ public void testCheckMembership() throws Exception { assertFalse(j.hasPublicMember(b)); } + @Ignore("Needs mocking check") @Test public void testCreateRelease() throws Exception { kohsuke(); @@ -597,9 +620,9 @@ public void testCreateRelease() throws Exception { String releaseName = "release-" + tagName; GHRelease rel = r.createRelease(tagName) - .name(releaseName) - .prerelease(false) - .create(); + .name(releaseName) + .prerelease(false) + .create(); Thread.sleep(3000); @@ -608,11 +631,11 @@ public void testCreateRelease() throws Exception { for (GHTag tag : r.listTags()) { if (tagName.equals(tag.getName())) { String ash = tag.getCommit().getSHA1(); - GHRef ref = r.createRef("refs/heads/"+releaseName, ash); - assertEquals(ref.getRef(),"refs/heads/"+releaseName); + GHRef ref = r.createRef("refs/heads/" + releaseName, ash); + assertEquals(ref.getRef(), "refs/heads/" + releaseName); for (Map.Entry entry : r.getBranches().entrySet()) { - System.out.println(entry.getKey() + "/" + entry.getValue()); + // System.out.println(entry.getKey() + "/" + entry.getValue()); if (releaseName.equals(entry.getValue().getName())) { return; } @@ -629,22 +652,23 @@ public void testCreateRelease() throws Exception { @Test public void testRef() throws IOException { GHRef masterRef = gitHub.getRepository("jenkinsci/jenkins").getRef("heads/master"); - assertEquals("https://api.github.com/repos/jenkinsci/jenkins/git/refs/heads/master", masterRef.getUrl().toString()); + assertEquals(mockGitHub.apiServer().baseUrl() + "/repos/jenkinsci/jenkins/git/refs/heads/master", masterRef.getUrl().toString()); } @Test public void directoryListing() throws IOException { List children = gitHub.getRepository("jenkinsci/jenkins").getDirectoryContent("core"); for (GHContent c : children) { - System.out.println(c.getName()); + // System.out.println(c.getName()); if (c.isDirectory()) { for (GHContent d : c.listDirectoryContent()) { - System.out.println(" "+d.getName()); + // System.out.println(" " + d.getName()); } } } } - + + @Ignore("Needs mocking check") @Test public void testAddDeployKey() throws IOException { GHRepository myRepository = getTestRepository(); @@ -662,70 +686,76 @@ public boolean apply(GHDeployKey deployKey) { newDeployKey.delete(); } } - + + @Ignore("Needs mocking check") @Test public void testCommitStatusContext() throws IOException { GHRepository myRepository = getTestRepository(); GHRef masterRef = myRepository.getRef("heads/master"); GHCommitStatus commitStatus = myRepository.createCommitStatus(masterRef.getObject().getSha(), GHCommitState.SUCCESS, "http://www.example.com", "test", "test/context"); assertEquals("test/context", commitStatus.getContext()); - + } + @Ignore("Needs mocking check") @Test public void testMemberPagenation() throws IOException { Set all = new HashSet(); - for (GHUser u : gitHub.getOrganization("github-api-test-org").getTeamByName("Core Developers").listMembers()) { - System.out.println(u.getLogin()); + for (GHUser u : gitHub.getOrganization(GITHUB_API_TEST_ORG).getTeamByName("Core Developers").listMembers()) { + // System.out.println(u.getLogin()); all.add(u); } assertFalse(all.isEmpty()); } + @Ignore("Needs mocking check") @Test public void testCommitSearch() throws IOException { PagedSearchIterable r = gitHub.searchCommits().author("kohsuke").list(); assertTrue(r.getTotalCount() > 0); - + GHCommit firstCommit = r.iterator().next(); assertTrue(firstCommit.getFiles().size() > 0); } + @Ignore("Needs mocking check") @Test public void testIssueSearch() throws IOException { PagedSearchIterable r = gitHub.searchIssues().mentions("kohsuke").isOpen().list(); for (GHIssue i : r) { - System.out.println(i.getTitle()); + // System.out.println(i.getTitle()); } } + @Ignore("Needs mocking check") @Test // issue #99 public void testReadme() throws IOException { GHContent readme = gitHub.getRepository("github-api-test-org/test-readme").getReadme(); - assertEquals(readme.getName(),"README.md"); - assertEquals(readme.getContent(),"This is a markdown readme.\n"); + assertEquals(readme.getName(), "README.md"); + assertEquals(readme.getContent(), "This is a markdown readme.\n"); } - - + + + @Ignore("Needs mocking check") @Test public void testTrees() throws IOException { - GHTree masterTree = gitHub.getRepository("kohsuke/github-api").getTree("master"); + GHTree masterTree = gitHub.getRepository("github-api/github-api").getTree("master"); boolean foundReadme = false; - for(GHTreeEntry e : masterTree.getTree()){ - if("readme".equalsIgnoreCase(e.getPath().replaceAll("\\.md", ""))){ + for (GHTreeEntry e : masterTree.getTree()) { + if ("readme".equalsIgnoreCase(e.getPath().replaceAll("\\.md", ""))) { foundReadme = true; break; } } assertTrue(foundReadme); } - + @Test public void testTreesRecursive() throws IOException { - GHTree masterTree = gitHub.getRepository("kohsuke/github-api").getTreeRecursive("master", 1); + GHTree masterTree = gitHub.getRepository("github-api/github-api").getTreeRecursive("master", 1); boolean foundThisFile = false; - for(GHTreeEntry e : masterTree.getTree()){ - if(e.getPath().endsWith(AppTest.class.getSimpleName() + ".java")){ + for (GHTreeEntry e : masterTree.getTree()) { + if (e.getPath().endsWith(AppTest.class.getSimpleName() + ".java")) { foundThisFile = true; break; } @@ -735,135 +765,97 @@ public void testTreesRecursive() throws IOException { @Test public void testRepoLabel() throws IOException { + cleanupLabel("test"); + cleanupLabel("test2"); + GHRepository r = gitHub.getRepository("github-api-test-org/test-labels"); List lst = r.listLabels().asList(); for (GHLabel l : lst) { - System.out.println(l.getName()); + // System.out.println(l.getName()); } assertTrue(lst.size() > 5); GHLabel e = r.getLabel("enhancement"); - assertEquals("enhancement",e.getName()); + assertEquals("enhancement", e.getName()); assertNotNull(e.getUrl()); - assertTrue(Pattern.matches("[0-9a-fA-F]{6}",e.getColor())); + assertTrue(Pattern.matches("[0-9a-fA-F]{6}", e.getColor())); - {// CRUD - GHLabel t = r.createLabel("test", "123456"); - GHLabel t2 = r.getLabel("test"); + GHLabel t = null; + GHLabel t2 = null; + try {// CRUD + t = r.createLabel("test", "123456"); + t2 = r.getLabel("test"); assertEquals(t.getName(), t2.getName()); assertEquals(t.getColor(), "123456"); assertEquals(t.getColor(), t2.getColor()); + assertEquals(t.getDescription(), ""); + assertEquals(t.getDescription(), t2.getDescription()); assertEquals(t.getUrl(), t2.getUrl()); t.setColor("000000"); + + // This is annoying behavior, but it is by design at this time. + // Verifying so we can know when it is fixed. + assertEquals(t.getColor(), "123456"); + + t = r.getLabel("test"); + t.setDescription("this is also a test"); + GHLabel t3 = r.getLabel("test"); assertEquals(t3.getColor(), "000000"); + assertEquals(t3.getDescription(), "this is also a test"); t.delete(); - } - } - - @Test - public void testSubscribers() throws IOException { - boolean kohsuke = false; - GHRepository mr = gitHub.getRepository("kohsuke/github-api"); - for (GHUser u : mr.listSubscribers()) { - System.out.println(u.getLogin()); - kohsuke |= u.getLogin().equals("kohsuke"); - } - assertTrue(kohsuke); - System.out.println("---"); - boolean githubApi = false; - for (GHRepository r : gitHub.getUser("kohsuke").listRepositories()) { - System.out.println(r.getName()); - githubApi |= r.equals(mr); + t = r.createLabel("test2", "123457", "this is a different test"); + t2 = r.getLabel("test2"); + assertEquals(t.getName(), t2.getName()); + assertEquals(t.getColor(), "123457"); + assertEquals(t.getColor(), t2.getColor()); + assertEquals(t.getDescription(), "this is a different test"); + assertEquals(t.getDescription(), t2.getDescription()); + assertEquals(t.getUrl(), t2.getUrl()); + } finally { + cleanupLabel("test"); + cleanupLabel("test2"); } - assertTrue(githubApi); } - @Test - public void testListAllRepositories() throws Exception { - Iterator itr = gitHub.listAllPublicRepositories().iterator(); - for (int i=0; i<30; i++) { - assertTrue(itr.hasNext()); - GHRepository r = itr.next(); - System.out.println(r.getFullName()); - assertNotNull(r.getUrl()); - assertNotEquals(0L,r.getId()); - } - } + void cleanupLabel(String name) { + if (mockGitHub.isUseProxy()) { + try { + GHLabel t = gitHubBeforeAfter.getRepository("github-api-test-org/test-labels").getLabel("test"); + t.delete(); + } catch (IOException e) { - @Test // issue #162 - public void testIssue162() throws Exception { - GHRepository r = gitHub.getRepository("kohsuke/github-api"); - List contents = r.getDirectoryContent("", "gh-pages"); - for (GHContent content : contents) { - if (content.isFile()) { - String content1 = content.getContent(); - String content2 = r.getFileContent(content.getPath(), "gh-pages").getContent(); - System.out.println(content.getPath()); - assertEquals(content1, content2); } } } @Test - public void markDown() throws Exception { - assertEquals("

    Test日本語

    ", IOUtils.toString(gitHub.renderMarkdown("**Test日本語**")).trim()); - - String actual = IOUtils.toString(gitHub.getRepository("kohsuke/github-api").renderMarkdown("@kohsuke to fix issue #1", MarkdownMode.GFM)); - System.out.println(actual); - assertTrue(actual.contains("href=\"https://github.com/kohsuke\"")); - assertTrue(actual.contains("href=\"https://github.com/kohsuke/github-api/pull/1\"")); - assertTrue(actual.contains("class=\"user-mention\"")); - assertTrue(actual.contains("class=\"issue-link ")); - assertTrue(actual.contains("to fix issue")); - } - - @Test - public void searchUsers() throws Exception { - PagedSearchIterable r = gitHub.searchUsers().q("tom").repos(">42").followers(">1000").list(); - GHUser u = r.iterator().next(); - System.out.println(u.getName()); - assertNotNull(u.getId()); - assertTrue(r.getTotalCount() > 0); - } - - @Test - public void searchRepositories() throws Exception { - PagedSearchIterable r = gitHub.searchRepositories().q("tetris").language("assembly").sort(GHRepositorySearchBuilder.Sort.STARS).list(); - GHRepository u = r.iterator().next(); - System.out.println(u.getName()); - assertNotNull(u.getId()); - assertEquals("Assembly", u.getLanguage()); - assertTrue(r.getTotalCount() > 0); - } + public void testSubscribers() throws IOException { + boolean bitwiseman = false; + GHRepository mr = gitHub.getRepository("bitwiseman/github-api"); + for (GHUser u : mr.listSubscribers()) { + bitwiseman |= u.getLogin().equals("bitwiseman"); + } + assertTrue(bitwiseman); - @Test - public void searchContent() throws Exception { - PagedSearchIterable r = gitHub.searchContent().q("addClass").in("file").language("js").repo("jquery/jquery").list(); - GHContent c = r.iterator().next(); - System.out.println(c.getName()); - assertNotNull(c.getDownloadUrl()); - assertNotNull(c.getOwner()); - assertEquals("jquery/jquery",c.getOwner().getFullName()); - assertTrue(r.getTotalCount() > 0); + boolean githubApiFound = false; + for (GHRepository r : gitHub.getUser("bitwiseman").listRepositories()) { + githubApiFound |= r.equals(mr); + } + assertTrue(githubApiFound); } @Test public void notifications() throws Exception { - boolean found=false; + boolean found = false; for (GHThread t : gitHub.listNotifications().nonBlocking(true).read(true)) { if (!found) { found = true; - t.markAsRead(); // test this by calling it once on old nofication + t.markAsRead(); // test this by calling it once on old notfication } assertNotNull(t.getTitle()); assertNotNull(t.getReason()); - - System.out.println(t.getTitle()); - System.out.println(t.getLastReadAt()); - System.out.println(t.getType()); - System.out.println(); } assertTrue(found); gitHub.listNotifications().markAsRead(); @@ -872,27 +864,28 @@ public void notifications() throws Exception { /** * Just basic code coverage to make sure toString() doesn't blow up */ + @Ignore("Needs mocking check") @Test public void checkToString() throws Exception { GHUser u = gitHub.getUser("rails"); - System.out.println(u); + // System.out.println(u); GHRepository r = u.getRepository("rails"); - System.out.println(r); - System.out.println(r.getIssue(1)); + // System.out.println(r); + // System.out.println(r.getIssue(1)); } @Test public void reactions() throws Exception { - GHIssue i = gitHub.getRepository("kohsuke/github-api").getIssue(311); + GHIssue i = gitHub.getRepository("github-api/github-api").getIssue(311); // retrieval GHReaction r = i.listReactions().iterator().next(); assertThat(r.getUser().getLogin(), is("kohsuke")); - assertThat(r.getContent(),is(ReactionContent.HEART)); + assertThat(r.getContent(), is(ReactionContent.HEART)); // CRUD GHReaction a = i.createReaction(ReactionContent.HOORAY); - assertThat(a.getUser().getLogin(),is(gitHub.getMyself().getLogin())); + assertThat(a.getUser().getLogin(), is(gitHub.getMyself().getLogin())); a.delete(); } @@ -900,34 +893,29 @@ public void reactions() throws Exception { public void listOrgMemberships() throws Exception { GHMyself me = gitHub.getMyself(); for (GHMembership m : me.listOrgMemberships()) { - assertThat(m.getUser(), is((GHUser)me)); + assertThat(m.getUser(), is((GHUser) me)); assertNotNull(m.getState()); assertNotNull(m.getRole()); - - System.out.printf("%s %s %s\n", - m.getOrganization().getLogin(), - m.getState(), - m.getRole()); } } @Test public void blob() throws Exception { - GHRepository r = gitHub.getRepository("kohsuke/github-api"); + GHRepository r = gitHub.getRepository("github-api/github-api"); String sha1 = "a12243f2fc5b8c2ba47dd677d0b0c7583539584d"; assertBlobContent(r.readBlob(sha1)); GHBlob blob = r.getBlob(sha1); assertBlobContent(blob.read()); - assertThat(blob.getSha(),is("a12243f2fc5b8c2ba47dd677d0b0c7583539584d")); - assertThat(blob.getSize(),is(1104L)); + assertThat(blob.getSha(), is("a12243f2fc5b8c2ba47dd677d0b0c7583539584d")); + assertThat(blob.getSize(), is(1104L)); } private void assertBlobContent(InputStream is) throws Exception { - String content = new String(IOUtils.toByteArray(is),"UTF-8"); - assertThat(content,containsString("Copyright (c) 2011- Kohsuke Kawaguchi and other contributors")); - assertThat(content,containsString("FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR")); - assertThat(content.length(),is(1104)); + String content = new String(IOUtils.toByteArray(is), "UTF-8"); + assertThat(content, containsString("Copyright (c) 2011- Kohsuke Kawaguchi and other contributors")); + assertThat(content, containsString("FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR")); + assertThat(content.length(), is(1104)); } } diff --git a/src/test/java/org/kohsuke/github/BridgeMethodTest.java b/src/test/java/org/kohsuke/github/BridgeMethodTest.java new file mode 100644 index 0000000000..9e840f5fbf --- /dev/null +++ b/src/test/java/org/kohsuke/github/BridgeMethodTest.java @@ -0,0 +1,43 @@ +package org.kohsuke.github; + +import org.junit.Assert; +import org.junit.Test; + +import java.io.IOException; +import java.lang.reflect.Method; +import java.util.ArrayList; +import java.util.Date; +import java.util.List; + +import static org.hamcrest.CoreMatchers.is; +import static org.hamcrest.Matchers.equalTo; + +/** + * @author Kohsuke Kawaguchi + */ +public class BridgeMethodTest extends Assert { + + @Test + public void lastStatus() throws IOException { + GHObject obj = new GHIssue(); + + List createdAtMethods = new ArrayList<>(); + for (Method method : obj.getClass().getMethods()) { + if (method.getName().equalsIgnoreCase("getCreatedAt")) { + if(method.getReturnType() == Date.class) { + createdAtMethods.add(0, method); + } else { + createdAtMethods.add(method); + } + } + } + + assertThat(createdAtMethods.size(), equalTo(2)); + + assertThat(createdAtMethods.get(0).getParameterCount(), equalTo(0)); + assertThat(createdAtMethods.get(1).getParameterCount(), equalTo(0)); + + assertThat(createdAtMethods.get(0).getReturnType(), is(Date.class)); + assertThat(createdAtMethods.get(1).getReturnType(), is(String.class)); + } +} diff --git a/src/test/java/org/kohsuke/github/CommitTest.java b/src/test/java/org/kohsuke/github/CommitTest.java index 8e4edb1fed..0e6e2e5ff4 100644 --- a/src/test/java/org/kohsuke/github/CommitTest.java +++ b/src/test/java/org/kohsuke/github/CommitTest.java @@ -8,11 +8,11 @@ /** * @author Kohsuke Kawaguchi */ -public class CommitTest extends AbstractGitHubApiTestBase { +public class CommitTest extends AbstractGitHubWireMockTest { @Test // issue 152 public void lastStatus() throws IOException { GHTag t = gitHub.getRepository("stapler/stapler").listTags().iterator().next(); - t.getCommit().getLastStatus(); + assertNotNull(t.getCommit().getLastStatus()); } @Test // issue 230 @@ -20,7 +20,7 @@ public void listFiles() throws Exception { GHRepository repo = gitHub.getRepository("stapler/stapler"); PagedIterable commits = repo.queryCommits().path("pom.xml").list(); for (GHCommit commit : Iterables.limit(commits, 10)) { - GHCommit expected = repo.getCommit( commit.getSHA1() ); + GHCommit expected = repo.getCommit(commit.getSHA1()); assertEquals(expected.getFiles().size(), commit.getFiles().size()); } } diff --git a/src/test/java/org/kohsuke/github/GHAppTest.java b/src/test/java/org/kohsuke/github/GHAppTest.java new file mode 100644 index 0000000000..3c9bd0ff0f --- /dev/null +++ b/src/test/java/org/kohsuke/github/GHAppTest.java @@ -0,0 +1,148 @@ +package org.kohsuke.github; + +import org.junit.Test; + +import java.io.IOException; +import java.util.Arrays; +import java.util.HashMap; +import java.util.List; +import java.util.Map; + +import static org.hamcrest.Matchers.*; + +/** + * Tests for the GitHub App API methods + * + * @author Paulo Miguel Almeida + */ +public class GHAppTest extends AbstractGitHubWireMockTest { + + protected GitHubBuilder getGitHubBuilder() { + return super.getGitHubBuilder() + // ensure that only JWT will be used against the tests below + .withPassword(null, null) + .withJwtToken("bogus"); + } + + @Test + public void getGitHubApp() throws IOException { + GHApp app = gitHub.getApp(); + assertThat(app.id, is((long) 11111)); + assertThat(app.getOwner().id, is((long) 111111111)); + assertThat(app.getOwner().login, is("bogus")); + assertThat(app.getName(), is("Bogus-Development")); + assertThat(app.getDescription(), is("")); + assertThat(app.getExternalUrl(), is("https://bogus.domain.com")); + assertThat(app.getHtmlUrl().toString(), is("https://github.com/apps/bogus-development")); + assertThat(app.getCreatedAt(), is(GitHub.parseDate("2019-06-10T04:21:41Z"))); + assertThat(app.getUpdatedAt(), is(GitHub.parseDate("2019-06-10T04:21:41Z"))); + assertThat(app.getPermissions().size(), is(4)); + assertThat(app.getEvents().size(), is(2)); + assertThat(app.getInstallationsCount(), is((long) 1)); + } + + + @Test + public void listInstallations() throws IOException { + GHApp app = gitHub.getApp(); + List installations = app.listInstallations().asList(); + assertThat(installations.size(), is(1)); + + GHAppInstallation appInstallation = installations.get(0); + testAppInstallation(appInstallation); + } + + @Test + public void getInstallationById() throws IOException { + GHApp app = gitHub.getApp(); + GHAppInstallation installation = app.getInstallationById(1111111); + testAppInstallation(installation); + } + + @Test + public void getInstallationByOrganization() throws IOException { + GHApp app = gitHub.getApp(); + GHAppInstallation installation = app.getInstallationByOrganization("bogus"); + testAppInstallation(installation); + } + + @Test + public void getInstallationByRepository() throws IOException { + GHApp app = gitHub.getApp(); + GHAppInstallation installation = app.getInstallationByRepository("bogus", "bogus"); + testAppInstallation(installation); + } + + @Test + public void getInstallationByUser() throws IOException { + GHApp app = gitHub.getApp(); + GHAppInstallation installation = app.getInstallationByUser("bogus"); + testAppInstallation(installation); + } + + @Test + public void deleteInstallation() throws IOException { + GHApp app = gitHub.getApp(); + GHAppInstallation installation = app.getInstallationByUser("bogus"); + try { + installation.deleteInstallation(); + } catch (IOException e) { + fail("deleteInstallation wasn't suppose to fail in this test"); + } + } + + @Test + public void createToken() throws IOException { + GHApp app = gitHub.getApp(); + GHAppInstallation installation = app.getInstallationByUser("bogus"); + + Map permissions = new HashMap(); + permissions.put("checks", GHPermissionType.WRITE); + permissions.put("pull_requests", GHPermissionType.WRITE); + permissions.put("contents", GHPermissionType.READ); + permissions.put("metadata", GHPermissionType.READ); + + GHAppInstallationToken installationToken = installation.createToken(permissions) + .repositoryIds(Arrays.asList((long)111111111)) + .create(); + + assertThat(installationToken.getToken(), is("bogus")); + assertThat(installation.getPermissions(), is(permissions)); + assertThat(installationToken.getRepositorySelection(),is(GHRepositorySelection.SELECTED)); + assertThat(installationToken.getExpiresAt(), is(GitHub.parseDate("2019-08-10T05:54:58Z"))); + + GHRepository repository = installationToken.getRepositories().get(0); + assertThat(installationToken.getRepositories().size(), is(1)); + assertThat(repository.getId(), is((long) 111111111)); + assertThat(repository.getName(), is("bogus")); + } + + private void testAppInstallation(GHAppInstallation appInstallation) throws IOException { + Map appPermissions = appInstallation.getPermissions(); + GHUser appAccount = appInstallation.getAccount(); + + assertThat(appInstallation.id, is((long) 11111111)); + assertThat(appAccount.id, is((long) 111111111)); + assertThat(appAccount.login, is("bogus")); + assertThat(appInstallation.getRepositorySelection(), is(GHRepositorySelection.SELECTED)); + assertThat(appInstallation.getAccessTokenUrl(), endsWith("/app/installations/11111111/access_tokens")); + assertThat(appInstallation.getRepositoriesUrl(), endsWith("/installation/repositories")); + assertThat(appInstallation.getAppId(), is((long) 11111)); + assertThat(appInstallation.getTargetId(), is((long) 111111111)); + assertThat(appInstallation.getTargetType(), is(GHTargetType.ORGANIZATION)); + + Map permissionsMap = new HashMap(); + permissionsMap.put("checks", GHPermissionType.WRITE); + permissionsMap.put("pull_requests", GHPermissionType.WRITE); + permissionsMap.put("contents", GHPermissionType.READ); + permissionsMap.put("metadata", GHPermissionType.READ); + assertThat(appPermissions, is(permissionsMap)); + + List events = Arrays.asList(GHEvent.PULL_REQUEST, GHEvent.PUSH); + assertThat(appInstallation.getEvents(), containsInAnyOrder(events.toArray(new GHEvent[0]))); + assertThat(appInstallation.getCreatedAt(), is(GitHub.parseDate("2019-07-04T01:19:36.000Z"))); + assertThat(appInstallation.getUpdatedAt(), is(GitHub.parseDate("2019-07-30T22:48:09.000Z"))); + assertNull(appInstallation.getSingleFileName()); + } + +} diff --git a/src/test/java/org/kohsuke/github/GHBranchProtectionTest.java b/src/test/java/org/kohsuke/github/GHBranchProtectionTest.java index 19e42c51ba..63f142a3fd 100644 --- a/src/test/java/org/kohsuke/github/GHBranchProtectionTest.java +++ b/src/test/java/org/kohsuke/github/GHBranchProtectionTest.java @@ -49,25 +49,25 @@ public void setUp() throws Exception { public void testEnableBranchProtections() throws Exception { // team/user restrictions require an organization repo to test against GHBranchProtection protection = branch.enableProtection() - .addRequiredChecks("test-status-check") - .requireBranchIsUpToDate() - .requireCodeOwnReviews() - .dismissStaleReviews() - .requiredReviewers(2) - .includeAdmins() - .enable(); + .addRequiredChecks("test-status-check") + .requireBranchIsUpToDate() + .requireCodeOwnReviews() + .dismissStaleReviews() + .requiredReviewers(2) + .includeAdmins() + .enable(); RequiredStatusChecks statusChecks = protection.getRequiredStatusChecks(); assertNotNull(statusChecks); assertTrue(statusChecks.isRequiresBranchUpToDate()); assertTrue(statusChecks.getContexts().contains("test-status-check")); - + RequiredReviews requiredReviews = protection.getRequiredReviews(); assertNotNull(requiredReviews); assertTrue(requiredReviews.isDismissStaleReviews()); assertTrue(requiredReviews.isRequireCodeOwnerReviews()); assertEquals(2, requiredReviews.getRequiredReviewers()); - + EnforceAdmins enforceAdmins = protection.getEnforceAdmins(); assertNotNull(enforceAdmins); assertTrue(enforceAdmins.isEnabled()); @@ -82,10 +82,10 @@ public void testEnableProtectionOnly() throws Exception { @Test public void testEnableRequireReviewsOnly() throws Exception { GHBranchProtection protection = branch.enableProtection() - .requireReviews() - .enable(); - - assertNotNull(protection.getRequiredReviews()); + .requireReviews() + .enable(); + + assertNotNull(protection.getRequiredReviews()); } @Test diff --git a/src/test/java/org/kohsuke/github/GHContentIntegrationTest.java b/src/test/java/org/kohsuke/github/GHContentIntegrationTest.java index 4b8bf72d63..e3a37f80d0 100644 --- a/src/test/java/org/kohsuke/github/GHContentIntegrationTest.java +++ b/src/test/java/org/kohsuke/github/GHContentIntegrationTest.java @@ -1,27 +1,46 @@ package org.kohsuke.github; +import org.apache.commons.io.IOUtils; +import org.junit.After; import org.junit.Before; import org.junit.Test; +import java.io.BufferedReader; +import java.io.IOException; +import java.io.InputStreamReader; import java.util.List; /** * Integration test for {@link GHContent}. */ -public class GHContentIntegrationTest extends AbstractGitHubApiTestBase { +public class GHContentIntegrationTest extends AbstractGitHubWireMockTest { private GHRepository repo; - private String createdFilename = rnd.next(); + private String createdFilename = "test-file-to-create.txt"; + + @Before + @After + public void cleanup() throws Exception { + if(mockGitHub.isUseProxy()) { + repo = gitHubBeforeAfter.getRepository("github-api-test-org/GHContentIntegrationTest"); + try { + GHContent content = repo.getFileContent(createdFilename); + if (content != null) { + content.delete("Cleanup"); + } + } catch (IOException e) {} + } + } @Before - @Override public void setUp() throws Exception { - super.setUp(); - repo = gitHub.getRepository("github-api-test-org/GHContentIntegrationTest").fork(); + repo = gitHub.getRepository("github-api-test-org/GHContentIntegrationTest"); } + @Test public void testGetFileContent() throws Exception { + repo = gitHub.getRepository("github-api-test-org/GHContentIntegrationTest"); GHContent content = repo.getFileContent("ghcontent-ro/a-file-with-content"); assertTrue(content.isFile()); @@ -54,7 +73,7 @@ public void testGetDirectoryContentTrailingSlash() throws Exception { @Test public void testCRUDContent() throws Exception { GHContentUpdateResponse created = - repo.createContent("this is an awesome file I created\n", "Creating a file for integration tests.", createdFilename); + repo.createContent("this is an awesome file I created\n", "Creating a file for integration tests.", createdFilename); GHContent createdContent = created.getContent(); assertNotNull(created.getCommit()); @@ -68,7 +87,8 @@ public void testCRUDContent() throws Exception { assertNotNull(updatedContentResponse.getCommit()); assertNotNull(updatedContentResponse.getContent()); // due to what appears to be a cache propagation delay, this test is too flaky - // assertEquals("this is some new content\n", updatedContent.getContent()); + assertEquals("this is some new content", new BufferedReader(new InputStreamReader(updatedContent.read())).readLine()); + assertEquals("this is some new content\n", updatedContent.getContent()); GHContentUpdateResponse deleteResponse = updatedContent.delete("Enough of this foolishness!"); diff --git a/src/test/java/org/kohsuke/github/GHDeploymentTest.java b/src/test/java/org/kohsuke/github/GHDeploymentTest.java new file mode 100644 index 0000000000..1c228c7aad --- /dev/null +++ b/src/test/java/org/kohsuke/github/GHDeploymentTest.java @@ -0,0 +1,27 @@ +package org.kohsuke.github; + +import org.junit.Test; + +import java.io.IOException; +import static org.junit.Assert.assertNotNull; + +/** + * @author Martin van Zijl + */ +public class GHDeploymentTest extends AbstractGitHubWireMockTest { + + @Test + public void testGetDeploymentById() throws IOException { + GHRepository repo = getRepository(); + GHDeployment deployment = repo.getDeployment(178653229); + assertNotNull(deployment); + } + + protected GHRepository getRepository() throws IOException { + return getRepository(gitHub); + } + + private GHRepository getRepository(GitHub gitHub) throws IOException { + return gitHub.getOrganization("github-api-test-org").getRepository("github-api"); + } +} diff --git a/src/test/java/org/kohsuke/github/GHEventPayloadTest.java b/src/test/java/org/kohsuke/github/GHEventPayloadTest.java index b0c2a05408..5287f4dab1 100644 --- a/src/test/java/org/kohsuke/github/GHEventPayloadTest.java +++ b/src/test/java/org/kohsuke/github/GHEventPayloadTest.java @@ -15,7 +15,7 @@ public class GHEventPayloadTest { @Test public void commit_comment() throws Exception { GHEventPayload.CommitComment event = - GitHub.offline().parseEventPayload(payload.asReader(), GHEventPayload.CommitComment.class); + GitHub.offline().parseEventPayload(payload.asReader(), GHEventPayload.CommitComment.class); assertThat(event.getAction(), is("created")); assertThat(event.getComment().getSHA1(), is("9049f1265b7d61be4a8904a9a27120d2064dab3b")); assertThat(event.getComment().getUser().getLogin(), is("baxterthehacker")); @@ -27,7 +27,7 @@ public void commit_comment() throws Exception { @Test public void create() throws Exception { GHEventPayload.Create event = - GitHub.offline().parseEventPayload(payload.asReader(), GHEventPayload.Create.class); + GitHub.offline().parseEventPayload(payload.asReader(), GHEventPayload.Create.class); assertThat(event.getRef(), is("0.0.1")); assertThat(event.getRefType(), is("tag")); assertThat(event.getMasterBranch(), is("master")); @@ -40,7 +40,7 @@ public void create() throws Exception { @Test public void delete() throws Exception { GHEventPayload.Delete event = - GitHub.offline().parseEventPayload(payload.asReader(), GHEventPayload.Delete.class); + GitHub.offline().parseEventPayload(payload.asReader(), GHEventPayload.Delete.class); assertThat(event.getRef(), is("simple-tag")); assertThat(event.getRefType(), is("tag")); assertThat(event.getRepository().getName(), is("public-repo")); @@ -51,7 +51,7 @@ public void delete() throws Exception { @Test public void deployment() throws Exception { GHEventPayload.Deployment event = - GitHub.offline().parseEventPayload(payload.asReader(), GHEventPayload.Deployment.class); + GitHub.offline().parseEventPayload(payload.asReader(), GHEventPayload.Deployment.class); assertThat(event.getDeployment().getSha(), is("9049f1265b7d61be4a8904a9a27120d2064dab3b")); assertThat(event.getDeployment().getEnvironment(), is("production")); assertThat(event.getDeployment().getCreator().getLogin(), is("baxterthehacker")); @@ -63,7 +63,7 @@ public void deployment() throws Exception { @Test public void deployment_status() throws Exception { GHEventPayload.DeploymentStatus event = - GitHub.offline().parseEventPayload(payload.asReader(), GHEventPayload.DeploymentStatus.class); + GitHub.offline().parseEventPayload(payload.asReader(), GHEventPayload.DeploymentStatus.class); assertThat(event.getDeploymentStatus().getState(), is(GHDeploymentState.SUCCESS)); assertThat(event.getDeploymentStatus().getTargetUrl(), nullValue()); assertThat(event.getDeployment().getSha(), is("9049f1265b7d61be4a8904a9a27120d2064dab3b")); @@ -77,7 +77,7 @@ public void deployment_status() throws Exception { @Test public void fork() throws Exception { GHEventPayload.Fork event = - GitHub.offline().parseEventPayload(payload.asReader(), GHEventPayload.Fork.class); + GitHub.offline().parseEventPayload(payload.asReader(), GHEventPayload.Fork.class); assertThat(event.getForkee().getName(), is("public-repo")); assertThat(event.getForkee().getOwner().getLogin(), is("baxterandthehackers")); assertThat(event.getRepository().getName(), is("public-repo")); @@ -106,7 +106,7 @@ public void fork() throws Exception { @Test public void issue_comment() throws Exception { GHEventPayload.IssueComment event = - GitHub.offline().parseEventPayload(payload.asReader(), GHEventPayload.IssueComment.class); + GitHub.offline().parseEventPayload(payload.asReader(), GHEventPayload.IssueComment.class); assertThat(event.getAction(), is("created")); assertThat(event.getIssue().getNumber(), is(2)); assertThat(event.getIssue().getTitle(), is("Spelling error in the README file")); @@ -122,8 +122,8 @@ public void issue_comment() throws Exception { @Test public void issues() throws Exception { - GHEventPayload.Issue event = GitHub.offline().parseEventPayload(payload.asReader(),GHEventPayload.Issue.class); - assertThat(event.getAction(),is("opened")); + GHEventPayload.Issue event = GitHub.offline().parseEventPayload(payload.asReader(), GHEventPayload.Issue.class); + assertThat(event.getAction(), is("opened")); assertThat(event.getIssue().getNumber(), is(2)); assertThat(event.getIssue().getTitle(), is("Spelling error in the README file")); assertThat(event.getIssue().getState(), is(GHIssueState.OPEN)); @@ -158,7 +158,7 @@ public void issues() throws Exception { @Payload("public") public void public_() throws Exception { GHEventPayload.Public event = - GitHub.offline().parseEventPayload(payload.asReader(), GHEventPayload.Public.class); + GitHub.offline().parseEventPayload(payload.asReader(), GHEventPayload.Public.class); assertThat(event.getRepository().getName(), is("public-repo")); assertThat(event.getRepository().getOwner().getLogin(), is("baxterthehacker")); assertThat(event.getSender().getLogin(), is("baxterthehacker")); @@ -167,13 +167,13 @@ public void public_() throws Exception { @Test public void pull_request() throws Exception { GHEventPayload.PullRequest event = - GitHub.offline().parseEventPayload(payload.asReader(), GHEventPayload.PullRequest.class); + GitHub.offline().parseEventPayload(payload.asReader(), GHEventPayload.PullRequest.class); assertThat(event.getAction(), is("opened")); assertThat(event.getNumber(), is(1)); assertThat(event.getPullRequest().getNumber(), is(1)); assertThat(event.getPullRequest().getTitle(), is("Update the README with new information")); assertThat(event.getPullRequest().getBody(), is("This is a pretty simple change that we need to pull into " - + "master.")); + + "master.")); assertThat(event.getPullRequest().getUser().getLogin(), is("baxterthehacker")); assertThat(event.getPullRequest().getHead().getUser().getLogin(), is("baxterthehacker")); assertThat(event.getPullRequest().getHead().getRef(), is("changes")); @@ -200,13 +200,13 @@ public void pull_request() throws Exception { @Test public void pull_request_review() throws Exception { GHEventPayload.PullRequestReview event = - GitHub.offline().parseEventPayload(payload.asReader(), GHEventPayload.PullRequestReview.class); + GitHub.offline().parseEventPayload(payload.asReader(), GHEventPayload.PullRequestReview.class); assertThat(event.getAction(), is("submitted")); - + assertThat(event.getReview().getId(), is(2626884L)); assertThat(event.getReview().getBody(), is("Looks great!\n")); assertThat(event.getReview().getState(), is(GHPullRequestReviewState.APPROVED)); - + assertThat(event.getPullRequest().getNumber(), is(8)); assertThat(event.getPullRequest().getTitle(), is("Add a README description")); assertThat(event.getPullRequest().getBody(), is("Just a few more details")); @@ -219,21 +219,21 @@ public void pull_request_review() throws Exception { assertThat(event.getPullRequest().getBase().getRef(), is("master")); assertThat(event.getPullRequest().getBase().getLabel(), is("baxterthehacker:master")); assertThat(event.getPullRequest().getBase().getSha(), is("9049f1265b7d61be4a8904a9a27120d2064dab3b")); - + assertThat(event.getRepository().getName(), is("public-repo")); assertThat(event.getRepository().getOwner().getLogin(), is("baxterthehacker")); - + assertThat(event.getSender().getLogin(), is("baxterthehacker")); } @Test public void pull_request_review_comment() throws Exception { GHEventPayload.PullRequestReviewComment event = - GitHub.offline().parseEventPayload(payload.asReader(), GHEventPayload.PullRequestReviewComment.class); + GitHub.offline().parseEventPayload(payload.asReader(), GHEventPayload.PullRequestReviewComment.class); assertThat(event.getAction(), is("created")); - + assertThat(event.getComment().getBody(), is("Maybe you should use more emojji on this line.")); - + assertThat(event.getPullRequest().getNumber(), is(1)); assertThat(event.getPullRequest().getTitle(), is("Update the README with new information")); assertThat(event.getPullRequest().getBody(), is("This is a pretty simple change that we need to pull into master.")); @@ -246,17 +246,17 @@ public void pull_request_review_comment() throws Exception { assertThat(event.getPullRequest().getBase().getRef(), is("master")); assertThat(event.getPullRequest().getBase().getLabel(), is("baxterthehacker:master")); assertThat(event.getPullRequest().getBase().getSha(), is("9049f1265b7d61be4a8904a9a27120d2064dab3b")); - + assertThat(event.getRepository().getName(), is("public-repo")); assertThat(event.getRepository().getOwner().getLogin(), is("baxterthehacker")); - + assertThat(event.getSender().getLogin(), is("baxterthehacker")); } @Test public void push() throws Exception { GHEventPayload.Push event = - GitHub.offline().parseEventPayload(payload.asReader(), GHEventPayload.Push.class); + GitHub.offline().parseEventPayload(payload.asReader(), GHEventPayload.Push.class); assertThat(event.getRef(), is("refs/heads/changes")); assertThat(event.getBefore(), is("9049f1265b7d61be4a8904a9a27120d2064dab3b")); assertThat(event.getHead(), is("0d1a26e67d8f5eaf1f6ba5c57fc3c7d91ac0fd1c")); @@ -286,7 +286,7 @@ public void push() throws Exception { @Test public void repository() throws Exception { GHEventPayload.Repository event = - GitHub.offline().parseEventPayload(payload.asReader(), GHEventPayload.Repository.class); + GitHub.offline().parseEventPayload(payload.asReader(), GHEventPayload.Repository.class); assertThat(event.getAction(), is("created")); assertThat(event.getRepository().getName(), is("new-repository")); assertThat(event.getRepository().getOwner().getLogin(), is("baxterandthehackers")); diff --git a/src/test/java/org/kohsuke/github/GHGistUpdaterTest.java b/src/test/java/org/kohsuke/github/GHGistUpdaterTest.java new file mode 100644 index 0000000000..23bd4622f3 --- /dev/null +++ b/src/test/java/org/kohsuke/github/GHGistUpdaterTest.java @@ -0,0 +1,73 @@ +package org.kohsuke.github; + +import org.junit.After; +import org.junit.Before; +import org.junit.Test; + +import java.io.IOException; +import java.util.Map; + +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertFalse; +import static org.junit.Assert.assertTrue; + +/** + * @author Martin van Zijl + */ +public class GHGistUpdaterTest extends AbstractGitHubWireMockTest { + + private GHGist gist; + + @Before + public void setUp() throws IOException { + GHGistBuilder builder = new GHGistBuilder(gitHub); + gist = builder.description("Test for the API") + .file("unmodified.txt", "Should be unmodified") + //.file("delete-me.txt", "To be deleted") + .file("rename-me.py", "print 'hello'") + .file("update-me.txt", "To be updated") + .public_(true) + .create(); + } + + @After + public void cleanUp() throws Exception { + // Cleanup is only needed when proxying + if (!mockGitHub.isUseProxy()) { + return; + } + + gist.delete(); + } + + @Test + public void testGitUpdater() throws Exception { + GHGistUpdater updater = gist.update(); + GHGist updatedGist = updater.description("Description updated by API") + .addFile("new-file.txt", "Added by updater") + //.deleteFile("delete-me.txt") + .renameFile("rename-me.py", "renamed.py") + .updateFile("update-me.txt", "Content updated by API") + .update(); + + assertEquals("Description updated by API", updatedGist.getDescription()); + + Map files = updatedGist.getFiles(); + + // Check that the unmodified file stays intact. + assertTrue(files.containsKey("unmodified.txt")); + assertEquals("Should be unmodified", files.get("unmodified.txt").getContent()); + + // Check that the files are updated as expected. + //assertFalse("File was not deleted.", files.containsKey("delete-me.txt")); + + assertTrue(files.containsKey("new-file.txt")); + assertEquals("Added by updater", files.get("new-file.txt").getContent()); + + assertFalse(files.containsKey("rename-me.py")); + assertTrue(files.containsKey("renamed.py")); + assertEquals("print 'hello'", files.get("renamed.py").getContent()); + + assertEquals("Content updated by API", files.get("update-me.txt").getContent()); + } +} diff --git a/src/test/java/org/kohsuke/github/GHIssueEventTest.java b/src/test/java/org/kohsuke/github/GHIssueEventTest.java new file mode 100644 index 0000000000..bee82f0928 --- /dev/null +++ b/src/test/java/org/kohsuke/github/GHIssueEventTest.java @@ -0,0 +1,59 @@ +package org.kohsuke.github; + +import java.io.IOException; +import java.util.List; +import org.junit.Test; + +/** + * @author Martin van Zijl + */ +public class GHIssueEventTest extends AbstractGitHubApiTestBase { + + @Test + public void testEventsForSingleIssue() throws Exception { + // Create the issue. + GHRepository repo = getRepository(); + GHIssueBuilder builder = repo.createIssue("Test from the API"); + GHIssue issue = builder.create(); + + // Generate some events. + issue.addLabels("test-label"); + + // Test that the events are present. + List list = issue.listEvents().asList(); + assertEquals(1, list.size()); + + GHIssueEvent event = list.get(0); + assertEquals(issue.getNumber(), event.getIssue().getNumber()); + assertEquals("labeled", event.getEvent()); + + // Test that we can get a single event directly. + GHIssueEvent eventFromRepo = repo.getIssueEvent(event.getId()); + assertEquals(event.getId(), eventFromRepo.getId()); + assertEquals(event.getCreatedAt(), eventFromRepo.getCreatedAt()); + + // Close the issue. + issue.close(); + } + + @Test + public void testRepositoryEvents() throws Exception { + GHRepository repo = getRepository(); + List list = repo.listIssueEvents().asList(); + assertTrue(list.size() > 0); + + int i = 0; + for (GHIssueEvent event : list) { + assertNotNull(event.getIssue()); + if (i++ > 10) break; + } + } + + protected GHRepository getRepository() throws IOException { + return getRepository(gitHub); + } + + private GHRepository getRepository(GitHub gitHub) throws IOException { + return gitHub.getOrganization("github-api-test-org").getRepository("github-api"); + } +} diff --git a/src/test/java/org/kohsuke/github/GHLicenseTest.java b/src/test/java/org/kohsuke/github/GHLicenseTest.java index b2cc73f928..9a77972c34 100644 --- a/src/test/java/org/kohsuke/github/GHLicenseTest.java +++ b/src/test/java/org/kohsuke/github/GHLicenseTest.java @@ -25,8 +25,6 @@ package org.kohsuke.github; import org.apache.commons.io.IOUtils; -import org.junit.Assert; -import org.junit.Before; import org.junit.Test; import java.io.IOException; @@ -35,15 +33,7 @@ /** * @author Duncan Dickinson */ -public class GHLicenseTest extends Assert { - private GitHub gitHub; - - @Before - public void setUp() throws Exception { - gitHub = new GitHubBuilder() - .fromCredentials() - .build(); - } +public class GHLicenseTest extends AbstractGitHubWireMockTest { /** * Basic test to ensure that the list of licenses from {@link GitHub#listLicenses()} is returned @@ -67,7 +57,7 @@ public void listLicensesCheckIndividualLicense() throws IOException { PagedIterable licenses = gitHub.listLicenses(); for (GHLicense lic : licenses) { if (lic.getKey().equals("mit")) { - assertTrue(lic.getUrl().equals(new URL("https://api.github.com/licenses/mit"))); + assertTrue(lic.getUrl().equals(new URL(mockGitHub.apiServer().baseUrl() + "/licenses/mit"))); return; } } @@ -97,12 +87,12 @@ public void getLicense() throws IOException { */ @Test public void checkRepositoryLicense() throws IOException { - GHRepository repo = gitHub.getRepository("kohsuke/github-api"); + GHRepository repo = gitHub.getRepository("github-api/github-api"); GHLicense license = repo.getLicense(); assertNotNull("The license is populated", license); assertTrue("The key is correct", license.getKey().equals("mit")); assertTrue("The name is correct", license.getName().equals("MIT License")); - assertTrue("The URL is correct", license.getUrl().equals(new URL("https://api.github.com/licenses/mit"))); + assertTrue("The URL is correct", license.getUrl().equals(new URL(mockGitHub.apiServer().baseUrl() + "/licenses/mit"))); } /** @@ -118,7 +108,7 @@ public void checkRepositoryLicenseAtom() throws IOException { assertNotNull("The license is populated", license); assertTrue("The key is correct", license.getKey().equals("mit")); assertTrue("The name is correct", license.getName().equals("MIT License")); - assertTrue("The URL is correct", license.getUrl().equals(new URL("https://api.github.com/licenses/mit"))); + assertTrue("The URL is correct", license.getUrl().equals(new URL(mockGitHub.apiServer().baseUrl() + "/licenses/mit"))); } /** @@ -134,7 +124,7 @@ public void checkRepositoryLicensePomes() throws IOException { assertNotNull("The license is populated", license); assertTrue("The key is correct", license.getKey().equals("apache-2.0")); assertTrue("The name is correct", license.getName().equals("Apache License 2.0")); - assertTrue("The URL is correct", license.getUrl().equals(new URL("https://api.github.com/licenses/apache-2.0"))); + assertTrue("The URL is correct", license.getUrl().equals(new URL(mockGitHub.apiServer().baseUrl() + "/licenses/apache-2.0"))); } /** @@ -145,7 +135,7 @@ public void checkRepositoryLicensePomes() throws IOException { */ @Test public void checkRepositoryWithoutLicense() throws IOException { - GHRepository repo = gitHub.getRepository("dedickinson/test-repo"); + GHRepository repo = gitHub.getRepository(GITHUB_API_TEST_ORG + "/empty"); GHLicense license = repo.getLicense(); assertNull("There is no license", license); } @@ -159,12 +149,12 @@ public void checkRepositoryWithoutLicense() throws IOException { */ @Test public void checkRepositoryFullLicense() throws IOException { - GHRepository repo = gitHub.getRepository("kohsuke/github-api"); + GHRepository repo = gitHub.getRepository("github-api/github-api"); GHLicense license = repo.getLicense(); assertNotNull("The license is populated", license); assertTrue("The key is correct", license.getKey().equals("mit")); assertTrue("The name is correct", license.getName().equals("MIT License")); - assertTrue("The URL is correct", license.getUrl().equals(new URL("https://api.github.com/licenses/mit"))); + assertTrue("The URL is correct", license.getUrl().equals(new URL(mockGitHub.apiServer().baseUrl() + "/licenses/mit"))); assertTrue("The HTML URL is correct", license.getHtmlUrl().equals(new URL("http://choosealicense.com/licenses/mit/"))); } diff --git a/src/test/java/org/kohsuke/github/GHMilestoneTest.java b/src/test/java/org/kohsuke/github/GHMilestoneTest.java new file mode 100644 index 0000000000..c0ab886743 --- /dev/null +++ b/src/test/java/org/kohsuke/github/GHMilestoneTest.java @@ -0,0 +1,64 @@ +package org.kohsuke.github; + +import org.junit.After; +import org.junit.Before; +import org.junit.Test; + +import java.io.IOException; +import java.util.Date; + +/** + * @author Martin van Zijl + */ +public class GHMilestoneTest extends AbstractGitHubWireMockTest { + + @Before + @After + public void cleanUp() throws Exception { + // Cleanup is only needed when proxying + if (!mockGitHub.isUseProxy()) { + return; + } + + for (GHMilestone milestone : getRepository(gitHubBeforeAfter).listMilestones(GHIssueState.ALL)) { + if ("Original Title".equals(milestone.getTitle()) || + "Updated Title".equals(milestone.getTitle())) { + milestone.delete(); + } + } + } + + @Test + public void testUpdateMilestone() throws Exception { + GHRepository repo = getRepository(); + GHMilestone milestone = repo.createMilestone("Original Title", + "To test the update methods"); + + String NEW_TITLE = "Updated Title"; + String NEW_DESCRIPTION = "Updated Description"; + Date NEW_DUE_DATE = GitHub.parseDate("2020-10-05T13:00:00Z"); + Date OUTPUT_DUE_DATE = GitHub.parseDate("2020-10-05T07:00:00Z"); + + milestone.setTitle(NEW_TITLE); + milestone.setDescription(NEW_DESCRIPTION); + milestone.setDueOn(NEW_DUE_DATE); + + // Force reload. + milestone = repo.getMilestone(milestone.getNumber()); + + assertEquals(NEW_TITLE, milestone.getTitle()); + assertEquals(NEW_DESCRIPTION, milestone.getDescription()); + + // The time is truncated when sent to the server, but still part of the returned value + // 07:00 midnight PDT + assertEquals(OUTPUT_DUE_DATE, milestone.getDueOn()); + } + + protected GHRepository getRepository() throws IOException { + return getRepository(gitHub); + } + + private GHRepository getRepository(GitHub gitHub) throws IOException { + return gitHub.getOrganization("github-api-test-org").getRepository("github-api"); + } +} diff --git a/src/test/java/org/kohsuke/github/GHOrganizationTest.java b/src/test/java/org/kohsuke/github/GHOrganizationTest.java index a1c5d3b921..dd9d3335ee 100644 --- a/src/test/java/org/kohsuke/github/GHOrganizationTest.java +++ b/src/test/java/org/kohsuke/github/GHOrganizationTest.java @@ -1,24 +1,39 @@ package org.kohsuke.github; +import com.jcraft.jsch.IO; import org.junit.After; import org.junit.Assert; +import org.junit.Before; import org.junit.Test; import java.io.IOException; -public class GHOrganizationTest extends AbstractGitHubApiTestBase { +public class GHOrganizationTest extends AbstractGitHubWireMockTest { public static final String GITHUB_API_TEST = "github-api-test"; - private GHOrganization org; + public static final String TEAM_NAME_CREATE = "create-team-test"; - @Override - public void setUp() throws Exception { - super.setUp(); - org = gitHub.getOrganization("github-api-test-org"); + + @Before + @After + public void cleanUpTeam() throws IOException { + // Cleanup is only needed when proxying + if (!mockGitHub.isUseProxy()) { + return; + } + + GHTeam team = gitHubBeforeAfter.getOrganization(GITHUB_API_TEST_ORG). + getTeamByName(TEAM_NAME_CREATE); + if (team != null) { + team.delete(); + } } @Test public void testCreateRepository() throws IOException { + cleanupRepository(GITHUB_API_TEST_ORG + '/' + GITHUB_API_TEST); + + GHOrganization org = gitHub.getOrganization(GITHUB_API_TEST_ORG); GHRepository repository = org.createRepository(GITHUB_API_TEST, "a test repository used to test kohsuke's github-api", "http://github-api.kohsuke.org/", "Core Developers", true); Assert.assertNotNull(repository); @@ -26,18 +41,49 @@ public void testCreateRepository() throws IOException { @Test public void testCreateRepositoryWithAutoInitialization() throws IOException { + cleanupRepository(GITHUB_API_TEST_ORG + '/' + GITHUB_API_TEST); + + GHOrganization org = gitHub.getOrganization(GITHUB_API_TEST_ORG); GHRepository repository = org.createRepository(GITHUB_API_TEST) - .description("a test repository used to test kohsuke's github-api") - .homepage("http://github-api.kohsuke.org/") - .team(org.getTeamByName("Core Developers")) - .autoInit(true).create(); + .description("a test repository used to test kohsuke's github-api") + .homepage("http://github-api.kohsuke.org/") + .team(org.getTeamByName("Core Developers")) + .autoInit(true).create(); Assert.assertNotNull(repository); Assert.assertNotNull(repository.getReadme()); } - @After - public void cleanUp() throws Exception { - GHRepository repository = org.getRepository(GITHUB_API_TEST); - repository.delete(); + @Test + public void testInviteUser() throws IOException { + GHOrganization org = gitHub.getOrganization(GITHUB_API_TEST_ORG); + GHUser user = gitHub.getUser("martinvanzijl2"); + + // First remove the user + if (org.hasMember(user)) { + org.remove(user); + } + + // Then invite the user again + org.add(user, GHOrganization.Role.MEMBER); + + // Now the user has to accept the invitation + // Can this be automated? + // user.acceptInvitationTo(org); // ? + + // Check the invitation has worked. + // assertTrue(org.hasMember(user)); + } + + + @Test + public void testCreateTeamWithRepoAccess() throws IOException { + String REPO_NAME = "github-api"; + + GHOrganization org = gitHub.getOrganization(GITHUB_API_TEST_ORG); + GHRepository repo = org.getRepository(REPO_NAME); + + // Create team with access to repository. Check access was granted. + GHTeam team = org.createTeam(TEAM_NAME_CREATE, GHOrganization.Permission.PUSH, repo); + Assert.assertTrue(team.getRepositories().containsKey(REPO_NAME)); } } diff --git a/src/test/java/org/kohsuke/github/GHProjectCardTest.java b/src/test/java/org/kohsuke/github/GHProjectCardTest.java new file mode 100644 index 0000000000..e155f86024 --- /dev/null +++ b/src/test/java/org/kohsuke/github/GHProjectCardTest.java @@ -0,0 +1,107 @@ +package org.kohsuke.github; + +import org.junit.After; +import org.junit.Assert; +import org.junit.Before; +import org.junit.Test; + +import java.io.FileNotFoundException; +import java.io.IOException; + +/** + * @author Gunnar Skjold + */ +public class GHProjectCardTest extends AbstractGitHubWireMockTest { + private GHOrganization org; + private GHProject project; + private GHProjectColumn column; + private GHProjectCard card; + + @Before + public void setUp() throws Exception { + org = gitHub.getOrganization(GITHUB_API_TEST_ORG); + project = org.createProject("test-project", "This is a test project"); + column = project.createColumn("column-one"); + card = column.createCard("This is a card"); + } + + @Test + public void testCreatedCard() { + Assert.assertEquals("This is a card", card.getNote()); + Assert.assertFalse(card.isArchived()); + } + + @Test + public void testEditCardNote() throws IOException { + card.setNote("New note"); + card = gitHub.getProjectCard(card.getId()); + Assert.assertEquals("New note", card.getNote()); + Assert.assertFalse(card.isArchived()); + } + + @Test + public void testArchiveCard() throws IOException { + card.setArchived(true); + card = gitHub.getProjectCard(card.getId()); + Assert.assertEquals("This is a card", card.getNote()); + Assert.assertTrue(card.isArchived()); + } + + @Test + public void testCreateCardFromIssue() throws IOException { + GHRepository repo = org.createRepository("repo-for-project-card").create(); + try { + GHIssue issue = repo.createIssue("new-issue").body("With body").create(); + GHProjectCard card = column.createCard(issue); + Assert.assertEquals(issue.getUrl(), card.getContentUrl()); + } finally { + repo.delete(); + } + } + + @Test + public void testDeleteCard() throws IOException { + card.delete(); + try { + card = gitHub.getProjectCard(card.getId()); + Assert.assertNull(card); + } catch (FileNotFoundException e) { + card = null; + } + } + + @After + public void after() throws IOException { + if(mockGitHub.isUseProxy()) { + if (card != null) { + card = gitHubBeforeAfter.getProjectCard(card.getId()); + try { + card.delete(); + card = null; + } catch (FileNotFoundException e) { + card = null; + } + } + if (column != null) { + column = gitHubBeforeAfter + .getProjectColumn(column.getId()); + try { + column.delete(); + column = null; + } catch (FileNotFoundException e) { + column = null; + } + } + if (project != null) { + project = gitHubBeforeAfter + .getProject(project.getId()); + try { + project.delete(); + project = null; + } catch (FileNotFoundException e) { + project = null; + } + } + } + } +} diff --git a/src/test/java/org/kohsuke/github/GHProjectColumnTest.java b/src/test/java/org/kohsuke/github/GHProjectColumnTest.java new file mode 100644 index 0000000000..db3003da61 --- /dev/null +++ b/src/test/java/org/kohsuke/github/GHProjectColumnTest.java @@ -0,0 +1,74 @@ +package org.kohsuke.github; + +import org.junit.After; +import org.junit.Assert; +import org.junit.Before; +import org.junit.Test; + +import java.io.FileNotFoundException; +import java.io.IOException; + +/** + * @author Gunnar Skjold + */ +public class GHProjectColumnTest extends AbstractGitHubWireMockTest { + private GHProject project; + private GHProjectColumn column; + + @Before + public void setUp() throws Exception { + project = gitHub + .getOrganization(GITHUB_API_TEST_ORG) + .createProject("test-project", "This is a test project"); + column = project.createColumn("column-one"); + } + + @Test + public void testCreatedColumn() { + Assert.assertEquals("column-one", column.getName()); + } + + @Test + public void testEditColumnName() throws IOException { + column.setName("new-name"); + column = gitHub.getProjectColumn(column.getId()); + Assert.assertEquals("new-name", column.getName()); + } + + @Test + public void testDeleteColumn() throws IOException { + column.delete(); + try { + column = gitHub.getProjectColumn(column.getId()); + Assert.assertNull(column); + } catch (FileNotFoundException e) { + column = null; + } + } + + @After + public void after() throws IOException { + if(mockGitHub.isUseProxy()) { + if (column != null) { + column = gitHubBeforeAfter + .getProjectColumn(column.getId()); + try { + column.delete(); + column = null; + } catch (FileNotFoundException e) { + column = null; + } + } + if (project != null) { + project = gitHubBeforeAfter + .getProject(project.getId()); + try { + project.delete(); + project = null; + } catch (FileNotFoundException e) { + project = null; + } + } + } + } +} diff --git a/src/test/java/org/kohsuke/github/GHProjectTest.java b/src/test/java/org/kohsuke/github/GHProjectTest.java new file mode 100644 index 0000000000..fe1722576d --- /dev/null +++ b/src/test/java/org/kohsuke/github/GHProjectTest.java @@ -0,0 +1,85 @@ +package org.kohsuke.github; + +import org.junit.After; +import org.junit.Assert; +import org.junit.Before; +import org.junit.Test; + +import java.io.FileNotFoundException; +import java.io.IOException; + +/** + * @author Gunnar Skjold + */ +public class GHProjectTest extends AbstractGitHubWireMockTest { + private GHProject project; + + @Before + public void setUp() throws Exception { + project = gitHub + .getOrganization(GITHUB_API_TEST_ORG) + .createProject("test-project", "This is a test project"); + } + + @Test + public void testCreatedProject() { + Assert.assertNotNull(project); + Assert.assertEquals("test-project", project.getName()); + Assert.assertEquals("This is a test project", project.getBody()); + Assert.assertEquals(GHProject.ProjectState.OPEN, project.getState()); + } + + @Test + public void testEditProjectName() throws IOException { + project.setName("new-name"); + project = gitHub.getProject(project.getId()); + Assert.assertEquals("new-name", project.getName()); + Assert.assertEquals("This is a test project", project.getBody()); + Assert.assertEquals(GHProject.ProjectState.OPEN, project.getState()); + } + + @Test + public void testEditProjectBody() throws IOException { + project.setBody("New body"); + project = gitHub.getProject(project.getId()); + Assert.assertEquals("test-project", project.getName()); + Assert.assertEquals("New body", project.getBody()); + Assert.assertEquals(GHProject.ProjectState.OPEN, project.getState()); + } + + @Test + public void testEditProjectState() throws IOException { + project.setState(GHProject.ProjectState.CLOSED); + project = gitHub.getProject(project.getId()); + Assert.assertEquals("test-project", project.getName()); + Assert.assertEquals("This is a test project", project.getBody()); + Assert.assertEquals(GHProject.ProjectState.CLOSED, project.getState()); + } + + @Test + public void testDeleteProject() throws IOException { + project.delete(); + try { + project = gitHub.getProject(project.getId()); + Assert.assertNull(project); + } catch (FileNotFoundException e) { + project = null; + } + } + + @After + public void after() throws IOException { + if (mockGitHub.isUseProxy()) { + if (project != null) { + project = gitHubBeforeAfter + .getProject(project.getId()); + try { + project.delete(); + project = null; + } catch (FileNotFoundException e) { + project = null; + } + } + } + } +} diff --git a/src/test/java/org/kohsuke/github/GHPullRequestTest.java b/src/test/java/org/kohsuke/github/GHPullRequestTest.java new file mode 100644 index 0000000000..4c9ebe4130 --- /dev/null +++ b/src/test/java/org/kohsuke/github/GHPullRequestTest.java @@ -0,0 +1,329 @@ +package org.kohsuke.github; + +import org.junit.After; +import org.junit.Before; +import org.junit.Test; + +import java.io.IOException; +import java.util.Collection; +import java.util.Collections; +import java.util.List; + +import static org.hamcrest.CoreMatchers.*; + +/** + * @author Kohsuke Kawaguchi + */ +public class GHPullRequestTest extends AbstractGitHubWireMockTest { + + @Before + @After + public void cleanUp() throws Exception { + // Cleanup is only needed when proxying + if (!mockGitHub.isUseProxy()) { + return; + } + + for (GHPullRequest pr : getRepository(this.gitHubBeforeAfter).getPullRequests(GHIssueState.OPEN)) { + pr.close(); + } + } + + @Test + public void createPullRequest() throws Exception { + String name = "createPullRequest"; + GHRepository repo = getRepository(); + GHPullRequest p = repo.createPullRequest(name, "test/stable", "master", "## test"); + assertEquals(name, p.getTitle()); + assertThat(p.canMaintainerModify(), is(false)); + assertThat(p.isDraft(), is(false)); + } + + @Test + public void createDraftPullRequest() throws Exception { + String name = "createDraftPullRequest"; + GHRepository repo = getRepository(); + GHPullRequest p = repo.createPullRequest(name, "test/stable", "master", "## test", false, true); + assertEquals(name, p.getTitle()); + assertThat(p.canMaintainerModify(), is(false)); + assertThat(p.isDraft(), is(true)); + + // There are multiple paths to get PRs and each needs to read draft correctly + p.draft = false; + p.refresh(); + assertThat(p.isDraft(), is(true)); + + GHPullRequest p2 = repo.getPullRequest(p.getNumber()); + assertThat(p2.getNumber(), is(p.getNumber())); + assertThat(p2.isDraft(), is(true)); + + p = repo.queryPullRequests() + .state(GHIssueState.OPEN) + .head("test/stable") + .list().asList().get(0); + assertThat(p2.getNumber(), is(p.getNumber())); + assertThat(p.isDraft(), is(true)); + + + + + + } + + @Test + public void createPullRequestComment() throws Exception { + String name = "createPullRequestComment"; + GHPullRequest p = getRepository().createPullRequest(name, "test/stable", "master", "## test"); + p.comment("Some comment"); + } + + @Test + public void closePullRequest() throws Exception { + String name = "closePullRequest"; + GHPullRequest p = getRepository().createPullRequest(name, "test/stable", "master", "## test"); + // System.out.println(p.getUrl()); + assertEquals(name, p.getTitle()); + assertEquals(GHIssueState.OPEN, getRepository().getPullRequest(p.getNumber()).getState()); + p.close(); + assertEquals(GHIssueState.CLOSED, getRepository().getPullRequest(p.getNumber()).getState()); + } + + + @Test + public void pullRequestReviews() throws Exception { + String name = "testPullRequestReviews"; + GHPullRequest p = getRepository().createPullRequest(name, "test/stable", "master", "## test"); + GHPullRequestReview draftReview = p.createReview() + .body("Some draft review") + .comment("Some niggle", "README.md", 1) + .create(); + assertThat(draftReview.getState(), is(GHPullRequestReviewState.PENDING)); + assertThat(draftReview.getBody(), is("Some draft review")); + assertThat(draftReview.getCommitId(), notNullValue()); + List reviews = p.listReviews().asList(); + assertThat(reviews.size(), is(1)); + GHPullRequestReview review = reviews.get(0); + assertThat(review.getState(), is(GHPullRequestReviewState.PENDING)); + assertThat(review.getBody(), is("Some draft review")); + assertThat(review.getCommitId(), notNullValue()); + draftReview.submit("Some review comment", GHPullRequestReviewEvent.COMMENT); + List comments = review.listReviewComments().asList(); + assertEquals(1, comments.size()); + GHPullRequestReviewComment comment = comments.get(0); + assertEquals("Some niggle", comment.getBody()); + draftReview = p.createReview() + .body("Some new review") + .comment("Some niggle", "README.md", 1) + .create(); + draftReview.delete(); + } + + @Test + public void pullRequestReviewComments() throws Exception { + String name = "pullRequestReviewComments"; + GHPullRequest p = getRepository().createPullRequest(name, "test/stable", "master", "## test"); + // System.out.println(p.getUrl()); + assertTrue(p.listReviewComments().asList().isEmpty()); + p.createReviewComment("Sample review comment", p.getHead().getSha(), "README.md", 1); + List comments = p.listReviewComments().asList(); + assertEquals(1, comments.size()); + GHPullRequestReviewComment comment = comments.get(0); + assertEquals("Sample review comment", comment.getBody()); + + comment.update("Updated review comment"); + comments = p.listReviewComments().asList(); + assertEquals(1, comments.size()); + comment = comments.get(0); + assertEquals("Updated review comment", comment.getBody()); + + comment.delete(); + comments = p.listReviewComments().asList(); + assertTrue(comments.isEmpty()); + } + + @Test + public void testPullRequestReviewRequests() throws Exception { + String name = "testPullRequestReviewRequests"; + GHPullRequest p = getRepository().createPullRequest(name, "test/stable", "master", "## test"); + // System.out.println(p.getUrl()); + assertTrue(p.getRequestedReviewers().isEmpty()); + + GHUser kohsuke2 = gitHub.getUser("kohsuke2"); + p.requestReviewers(Collections.singletonList(kohsuke2)); + p.refresh(); + assertFalse(p.getRequestedReviewers().isEmpty()); + } + + @Test + public void testPullRequestTeamReviewRequests() throws Exception { + String name = "testPullRequestTeamReviewRequests"; + GHPullRequest p = getRepository().createPullRequest(name, "test/stable", "master", "## test"); + // System.out.println(p.getUrl()); + assertTrue(p.getRequestedReviewers().isEmpty()); + + GHOrganization testOrg = gitHub.getOrganization("github-api-test-org"); + GHTeam testTeam = testOrg.getTeamBySlug("dummy-team"); + + p.requestTeamReviewers(Collections.singletonList(testTeam)); + + int baseRequestCount = mockGitHub.getRequestCount(); + p.refresh(); + assertThat("We should not eagerly load organizations for teams", + mockGitHub.getRequestCount() - baseRequestCount , equalTo(1)); + assertThat(p.getRequestedTeams().size(), equalTo(1)); + assertThat("We should not eagerly load organizations for teams", + mockGitHub.getRequestCount() - baseRequestCount , equalTo(1)); + assertThat("Org should be queried for automatically if asked for", + p.getRequestedTeams().get(0).getOrganization(), notNullValue()); + assertThat("Request count should show lazy load occurred", + mockGitHub.getRequestCount() - baseRequestCount , equalTo(2)); + } + + @Test + public void mergeCommitSHA() throws Exception { + String name = "mergeCommitSHA"; + GHRepository repo = getRepository(); + GHPullRequest p = repo.createPullRequest(name, "test/mergeable_branch", "master", "## test"); + int baseRequestCount = mockGitHub.getRequestCount(); + assertThat(p.getMergeableNoRefresh(), nullValue()); + assertThat("Used existing value", + mockGitHub.getRequestCount() - baseRequestCount , equalTo(0)); + + // mergeability computation takes time, this should still be null immediately after creation + assertThat(p.getMergeable(), nullValue()); + assertThat("Asked for PR information", + mockGitHub.getRequestCount() - baseRequestCount , equalTo(1)); + + for (int i = 2; i <= 10; i++) { + if (Boolean.TRUE.equals(p.getMergeable()) && p.getMergeCommitSha() != null) { + assertThat("Asked for PR information", + mockGitHub.getRequestCount() - baseRequestCount , equalTo(i)); + + // make sure commit exists + GHCommit commit = repo.getCommit(p.getMergeCommitSha()); + assertNotNull(commit); + + assertThat("Asked for PR information", + mockGitHub.getRequestCount() - baseRequestCount , equalTo(i + 1)); + + return; + } + + // mergeability computation takes time. give it more chance + Thread.sleep(1000); + } + // hmm? + fail(); + } + + @Test + public void squashMerge() throws Exception { + String name = "squashMerge"; + String branchName = "test/" + name; + GHRef masterRef = getRepository().getRef("heads/master"); + GHRef branchRef = getRepository().createRef("refs/heads/" + branchName, masterRef.getObject().getSha()); + + getRepository().createContent(name, name, name, branchName); + Thread.sleep(1000); + GHPullRequest p = getRepository().createPullRequest(name, branchName, "master", "## test squash"); + Thread.sleep(1000); + p.merge("squash merge", null, GHPullRequest.MergeMethod.SQUASH); + } + + @Test + public void updateContentSquashMerge() throws Exception { + String name = "updateContentSquashMerge"; + String branchName = "test/" + name; + + GHRef masterRef = getRepository().getRef("heads/master"); + GHRef branchRef = getRepository().createRef("refs/heads/" + branchName, masterRef.getObject().getSha()); + + GHContentUpdateResponse response = getRepository().createContent(name, name, name, branchName); + Thread.sleep(1000); + + getRepository().createContent() + .content(name + name) + .path(name) + .branch(branchName) + .message(name) + .sha(response.getContent().getSha()) + .commit(); + GHPullRequest p = getRepository().createPullRequest(name, branchName, "master", "## test squash"); + Thread.sleep(1000); + p.merge("squash merge", null, GHPullRequest.MergeMethod.SQUASH); + } + + @Test + public void queryPullRequestsQualifiedHead() throws Exception { + GHRepository repo = getRepository(); + // Create PRs from two different branches to master + repo.createPullRequest("queryPullRequestsQualifiedHead_stable", "test/stable", "master", null); + repo.createPullRequest("queryPullRequestsQualifiedHead_rc", "test/rc", "master", null); + + // Query by one of the heads and make sure we only get that branch's PR back. + List prs = repo.queryPullRequests().state(GHIssueState.OPEN).head("github-api-test-org:test/stable").base("master").list().asList(); + assertNotNull(prs); + assertEquals(1, prs.size()); + assertEquals("test/stable", prs.get(0).getHead().getRef()); + } + + @Test + public void queryPullRequestsUnqualifiedHead() throws Exception { + GHRepository repo = getRepository(); + // Create PRs from two different branches to master + repo.createPullRequest("queryPullRequestsUnqualifiedHead_stable", "test/stable", "master", null); + repo.createPullRequest("queryPullRequestsUnqualifiedHead_rc", "test/rc", "master", null); + + // Query by one of the heads and make sure we only get that branch's PR back. + List prs = repo.queryPullRequests().state(GHIssueState.OPEN).head("test/stable").base("master").list().asList(); + assertNotNull(prs); + assertEquals(1, prs.size()); + assertEquals("test/stable", prs.get(0).getHead().getRef()); + } + + @Test + // Requires push access to the test repo to pass + public void setLabels() throws Exception { + GHPullRequest p = getRepository().createPullRequest("setLabels", "test/stable", "master", "## test"); + String label = "setLabels_label_name"; + p.setLabels(label); + + Collection labels = getRepository().getPullRequest(p.getNumber()).getLabels(); + assertEquals(1, labels.size()); + assertEquals(label, labels.iterator().next().getName()); + } + + @Test + // Requires push access to the test repo to pass + public void setAssignee() throws Exception { + GHPullRequest p = getRepository().createPullRequest("setAssignee", "test/stable", "master", "## test"); + GHMyself user = gitHub.getMyself(); + p.assignTo(user); + + assertEquals(user, getRepository().getPullRequest(p.getNumber()).getAssignee()); + } + + @Test + public void getUserTest() throws IOException { + GHPullRequest p = getRepository().createPullRequest("getUserTest", "test/stable", "master", "## test"); + GHPullRequest prSingle = getRepository().getPullRequest(p.getNumber()); + assertNotNull(prSingle.getUser().root); + prSingle.getMergeable(); + assertNotNull(prSingle.getUser().root); + + PagedIterable ghPullRequests = getRepository().listPullRequests(GHIssueState.OPEN); + for (GHPullRequest pr : ghPullRequests) { + assertNotNull(pr.getUser().root); + pr.getMergeable(); + assertNotNull(pr.getUser().root); + } + } + + protected GHRepository getRepository() throws IOException { + return getRepository(gitHub); + } + + private GHRepository getRepository(GitHub gitHub) throws IOException { + return gitHub.getOrganization("github-api-test-org").getRepository("github-api"); + } +} diff --git a/src/test/java/org/kohsuke/github/GHRepositoryStatisticsTest.java b/src/test/java/org/kohsuke/github/GHRepositoryStatisticsTest.java new file mode 100644 index 0000000000..71d14d02dc --- /dev/null +++ b/src/test/java/org/kohsuke/github/GHRepositoryStatisticsTest.java @@ -0,0 +1,220 @@ +package org.kohsuke.github; + +import org.junit.Test; + +import java.io.IOException; +import java.util.List; +import java.util.NoSuchElementException; + +public class GHRepositoryStatisticsTest extends AbstractGitHubWireMockTest { + + public static int MAX_ITERATIONS = 3; + public static int SLEEP_INTERVAL = 5000; + + @Test + public void testContributorStats() throws IOException, InterruptedException { + // get the statistics + PagedIterable stats = + getRepository().getStatistics().getContributorStats(); + + // check that the statistics were eventually retrieved + if (stats == null) { + fail("Statistics took too long to retrieve."); + return; + } + + // check the statistics are accurate + List list = stats.asList(); + assertEquals(99, list.size()); + + // find a particular developer + // TODO: Add an accessor method for this instead of having use a loop. + boolean developerFound = false; + final String authorLogin = "kohsuke"; + for (GHRepositoryStatistics.ContributorStats statsForAuthor: list) { + if (authorLogin.equals(statsForAuthor.getAuthor().getLogin())) { + assertEquals(715, statsForAuthor.getTotal()); + + List weeks = + statsForAuthor.getWeeks(); + assertEquals(494, weeks.size()); + + try { + // check a particular week + // TODO: Maybe add a convenience method to get the week + // containing a certain date (Java.Util.Date). + GHRepositoryStatistics.ContributorStats.Week week = + statsForAuthor.getWeek(1541289600); + assertEquals(63, week.getNumberOfAdditions()); + assertEquals(56, week.getNumberOfDeletions()); + assertEquals(5, week.getNumberOfCommits()); + } + catch(NoSuchElementException e) { + fail("Did not find week 1546128000"); + } + developerFound = true; + break; + } + } + + assertTrue("Did not find author " + authorLogin, developerFound); + } + + @Test + @SuppressWarnings("SleepWhileInLoop") + public void testCommitActivity() throws IOException, InterruptedException { + // get the statistics + PagedIterable stats = null; + + for (int i = 0; i < MAX_ITERATIONS; i += 1) { + stats = getRepository().getStatistics().getCommitActivity(); + if(stats == null) { + Thread.sleep(SLEEP_INTERVAL); + } + else { + break; + } + } + + // check that the statistics were eventually retrieved + if (stats == null) { + fail("Statistics took too long to retrieve."); + return; + } + + // check the statistics are accurate + List list = stats.asList(); + + // TODO: Return this as a map with the timestamp as the key. + // Either that or wrap in an object an accessor method. + Boolean foundWeek = false; + for (GHRepositoryStatistics.CommitActivity item: list) { + if (item.getWeek() == 1566691200) { + assertEquals(6, item.getTotal()); + List days = item.getDays(); + assertEquals(0, (long)days.get(0)); + assertEquals(0, (long)days.get(1)); + assertEquals(1, (long)days.get(2)); + assertEquals(0, (long)days.get(3)); + assertEquals(0, (long)days.get(4)); + assertEquals(1, (long)days.get(5)); + assertEquals(4, (long)days.get(6)); + foundWeek = true; + break; + } + } + assertTrue("Could not find week starting 1546128000", foundWeek); + } + + @Test + @SuppressWarnings("SleepWhileInLoop") + public void testCodeFrequency() throws IOException, InterruptedException { + // get the statistics + List stats = null; + + for (int i = 0; i < MAX_ITERATIONS; i += 1) { + stats = getRepository().getStatistics().getCodeFrequency(); + if(stats == null) { + Thread.sleep(SLEEP_INTERVAL); + } + else { + break; + } + } + + // check that the statistics were eventually retrieved + if (stats == null) { + fail("Statistics took too long to retrieve."); + return; + } + + // check the statistics are accurate + // TODO: Perhaps return this as a map with the timestamp as the key? + // Either that or wrap in an object with accessor methods. + Boolean foundWeek = false; + for (GHRepositoryStatistics.CodeFrequency item: stats) { + if (item.getWeekTimestamp() == 1535241600) { + assertEquals(185, item.getAdditions()); + assertEquals(-243, item.getDeletions()); + foundWeek = true; + break; + } + } + assertTrue("Could not find week starting 1535241600", foundWeek); + } + + @Test + public void testParticipation() throws IOException, InterruptedException { + // get the statistics + GHRepositoryStatistics.Participation stats = null; + + for (int i = 0; i < MAX_ITERATIONS; i += 1) { + stats = getRepository().getStatistics().getParticipation(); + if(stats == null) { + Thread.sleep(SLEEP_INTERVAL); + } + else { + break; + } + } + + // check that the statistics were eventually retrieved + if (stats == null) { + fail("Statistics took too long to retrieve."); + return; + } + + // check the statistics are accurate + List allCommits = stats.getAllCommits(); + assertEquals(52, allCommits.size()); + assertEquals(2, (int)allCommits.get(2)); + + List ownerCommits = stats.getOwnerCommits(); + assertEquals(52, ownerCommits.size()); + // The values depend on who is running the test. + } + + @Test + @SuppressWarnings("SleepWhileInLoop") + public void testPunchCard() throws IOException, InterruptedException { + // get the statistics + List stats = null; + + for (int i = 0; i < MAX_ITERATIONS; i += 1) { + stats = getRepository().getStatistics().getPunchCard(); + if(stats == null) { + Thread.sleep(SLEEP_INTERVAL); + } + else { + break; + } + } + + // check that the statistics were eventually retrieved + if (stats == null) { + fail("Statistics took too long to retrieve."); + return; + } + + // check the statistics are accurate + Boolean hourFound = false; + for (GHRepositoryStatistics.PunchCardItem item: stats) { + if(item.getDayOfWeek() == 2 && item.getHourOfDay() == 10) { + // TODO: Make an easier access method. Perhaps wrap in an + // object and have a method such as GetCommits(1, 16). + assertEquals(16, item.getNumberOfCommits()); + hourFound = true; + break; + } + } + assertTrue("Hour 10 for Day 2 not found.", hourFound); + } + + protected GHRepository getRepository() throws IOException { + return getRepository(gitHub); + } + + private GHRepository getRepository(GitHub gitHub) throws IOException { + return gitHub.getOrganization(GITHUB_API_TEST_ORG).getRepository("github-api"); + } +} diff --git a/src/test/java/org/kohsuke/github/GHRepositoryTest.java b/src/test/java/org/kohsuke/github/GHRepositoryTest.java new file mode 100644 index 0000000000..cb6b52dacc --- /dev/null +++ b/src/test/java/org/kohsuke/github/GHRepositoryTest.java @@ -0,0 +1,277 @@ +package org.kohsuke.github; + +import org.apache.commons.io.IOUtils; +import org.junit.Test; + +import java.io.FileNotFoundException; +import java.io.IOException; +import java.util.List; + +import static org.hamcrest.Matchers.is; +import static org.junit.Assert.*; +import static org.junit.Assume.assumeFalse; + +/** + * @author Liam Newman + */ +public class GHRepositoryTest extends AbstractGitHubWireMockTest { + + protected GHRepository getRepository() throws IOException { + return getRepository(gitHub); + } + + private GHRepository getRepository(GitHub gitHub) throws IOException { + return gitHub.getOrganization("github-api-test-org").getRepository("github-api"); + } + + + @Test + public void archive() throws Exception { + snapshotNotAllowed(); + + // Archive is a one-way action in the API. + // We do thi this one + GHRepository repo = getRepository(); + + assertThat(repo.isArchived(), is(false)); + + repo.archive(); + + assertThat(repo.isArchived(), is(true)); + assertThat(getRepository().isArchived(), is(true)); + } + + @Test + public void getBranch_URLEncoded() throws Exception { + GHRepository repo = getRepository(); + GHBranch branch = repo.getBranch("test/#UrlEncode"); + assertThat(branch.getName(), is("test/#UrlEncode")); + } + + @Test + public void subscription() throws Exception { + GHRepository r = getRepository(); + assertNull(r.getSubscription()); + + GHSubscription s = r.subscribe(true, false); + assertEquals(s.getRepository(), r); + + s.delete(); + + assertNull(r.getSubscription()); + } + + @Test + public void testSetPublic() throws Exception { + kohsuke(); + GHUser myself = gitHub.getMyself(); + String repoName = "test-repo-public"; + GHRepository repo = gitHub.createRepository(repoName).private_(false).create(); + try { + assertFalse(repo.isPrivate()); + repo.setPrivate(true); + assertTrue(myself.getRepository(repoName).isPrivate()); + repo.setPrivate(false); + assertFalse(myself.getRepository(repoName).isPrivate()); + } finally { + repo.delete(); + } + } + + @Test + public void listContributors() throws IOException { + GHRepository r = gitHub.getOrganization("github-api").getRepository("github-api"); + int i = 0; + boolean kohsuke = false; + + for (GHRepository.Contributor c : r.listContributors()) { + if (c.getLogin().equals("kohsuke")) { + assertTrue(c.getContributions() > 0); + kohsuke = true; + } + if (i++ > 5) { + break; + } + } + + assertTrue(kohsuke); + } + + @Test + public void getPermission() throws Exception { + kohsuke(); + GHRepository r = gitHub.getRepository("github-api-test-org/test-permission"); + assertEquals(GHPermissionType.ADMIN, r.getPermission("kohsuke")); + assertEquals(GHPermissionType.READ, r.getPermission("dude")); + r = gitHub.getOrganization("apache").getRepository("groovy"); + try { + r.getPermission("jglick"); + fail(); + } catch (HttpException x) { + //x.printStackTrace(); // good + assertEquals(403, x.getResponseCode()); + } + + if (false) { + // can't easily test this; there's no private repository visible to the test user + r = gitHub.getOrganization("cloudbees").getRepository("private-repo-not-writable-by-me"); + try { + r.getPermission("jglick"); + fail(); + } catch (FileNotFoundException x) { + x.printStackTrace(); // good + } + } + } + + + @Test + public void LatestRepositoryExist() { + try { + // add the repository that have latest release + GHRelease release = gitHub.getRepository("kamontat/CheckIDNumber").getLatestRelease(); + assertEquals("v3.0", release.getTagName()); + } catch (IOException e) { + e.printStackTrace(); + fail(); + } + } + + @Test + public void LatestRepositoryNotExist() { + try { + // add the repository that `NOT` have latest release + GHRelease release = gitHub.getRepository("kamontat/Java8Example").getLatestRelease(); + assertNull(release); + } catch (IOException e) { + e.printStackTrace(); + fail(); + } + } + + @Test + public void listReleases() throws IOException { + PagedIterable releases = gitHub.getOrganization("github").getRepository("hub").listReleases(); + assertTrue(releases.iterator().hasNext()); + } + + @Test + public void getReleaseExists() throws IOException { + GHRelease release = gitHub.getOrganization("github").getRepository("hub").getRelease(6839710); + assertEquals("v2.3.0-pre10", release.getTagName()); + } + + @Test + public void getReleaseDoesNotExist() throws IOException { + GHRelease release = gitHub.getOrganization("github").getRepository("hub").getRelease(Long.MAX_VALUE); + assertNull(release); + } + + @Test + public void getReleaseByTagNameExists() throws IOException { + GHRelease release = gitHub.getOrganization("github").getRepository("hub").getReleaseByTagName("v2.3.0-pre10"); + assertNotNull(release); + assertEquals("v2.3.0-pre10", release.getTagName()); + } + + @Test + public void getReleaseByTagNameDoesNotExist() throws IOException { + GHRelease release = getRepository().getReleaseByTagName("foo-bar-baz"); + assertNull(release); + } + + @Test + public void listLanguages() throws IOException { + GHRepository r = gitHub.getRepository("github-api/github-api"); + String mainLanguage = r.getLanguage(); + assertTrue(r.listLanguages().containsKey(mainLanguage)); + } + + @Test // Issue #261 + public void listEmptyContributors() throws IOException { + for (GHRepository.Contributor c : gitHub.getRepository(GITHUB_API_TEST_ORG + "/empty").listContributors()) { + // System.out.println(c); + fail("This list should be empty, but should return a valid empty iterable."); + } + } + + @Test + public void searchRepositories() throws Exception { + PagedSearchIterable r = gitHub.searchRepositories().q("tetris").language("assembly").sort(GHRepositorySearchBuilder.Sort.STARS).list(); + GHRepository u = r.iterator().next(); + // System.out.println(u.getName()); + assertNotNull(u.getId()); + assertEquals("Assembly", u.getLanguage()); + assertTrue(r.getTotalCount() > 0); + } + + + @Test // issue #162 + public void testIssue162() throws Exception { + GHRepository r = gitHub.getRepository("github-api/github-api"); + List contents = r.getDirectoryContent("", "gh-pages"); + for (GHContent content : contents) { + if (content.isFile()) { + String content1 = content.getContent(); + String content2 = r.getFileContent(content.getPath(), "gh-pages").getContent(); + // System.out.println(content.getPath()); + assertEquals(content1, content2); + } + } + } + + @Test + public void markDown() throws Exception { + assertEquals("

    Test日本語

    ", IOUtils.toString(gitHub.renderMarkdown("**Test日本語**")).trim()); + + String actual = IOUtils.toString(gitHub.getRepository("github-api/github-api").renderMarkdown("@kohsuke to fix issue #1", MarkdownMode.GFM)); + // System.out.println(actual); + assertTrue(actual.contains("href=\"https://github.com/kohsuke\"")); + assertTrue(actual.contains("href=\"https://github.com/github-api/github-api/pull/1\"")); + assertTrue(actual.contains("class=\"user-mention\"")); + assertTrue(actual.contains("class=\"issue-link ")); + assertTrue(actual.contains("to fix issue")); + } + + @Test + public void getMergeOptions() throws IOException { + GHRepository r = getTempRepository(); + assertNotNull(r.isAllowMergeCommit()); + assertNotNull(r.isAllowRebaseMerge()); + assertNotNull(r.isAllowSquashMerge()); + } + + @Test + public void setMergeOptions() throws IOException { + // String repoName = "github-api-test-org/test-mergeoptions"; + GHRepository r = getTempRepository(); + + // at least one merge option must be selected + // flip all the values at least once + r.allowSquashMerge(true); + + r.allowMergeCommit(false); + r.allowRebaseMerge(false); + + r = gitHub.getRepository(r.getFullName()); + assertFalse(r.isAllowMergeCommit()); + assertFalse(r.isAllowRebaseMerge()); + assertTrue(r.isAllowSquashMerge()); + + // flip the last value + r.allowMergeCommit(true); + r.allowRebaseMerge(true); + r.allowSquashMerge(false); + + r = gitHub.getRepository(r.getFullName()); + assertTrue(r.isAllowMergeCommit()); + assertTrue(r.isAllowRebaseMerge()); + assertFalse(r.isAllowSquashMerge()); + } + + @Test + public void testListTopics() throws Exception { + List topics = getRepository(gitHub).listTopics(); + assertTrue(topics.contains("api-test-dummy")); + } +} \ No newline at end of file diff --git a/src/test/java/org/kohsuke/github/GHTeamTest.java b/src/test/java/org/kohsuke/github/GHTeamTest.java new file mode 100644 index 0000000000..208f07f7d1 --- /dev/null +++ b/src/test/java/org/kohsuke/github/GHTeamTest.java @@ -0,0 +1,35 @@ +package org.kohsuke.github; + +import org.junit.Test; + +import java.io.IOException; +import java.util.Random; + +public class GHTeamTest extends AbstractGitHubWireMockTest { + + @Test + public void testSetDescription() throws IOException { + + String description = "Updated by API Test"; + String teamSlug = "dummy-team"; + + // Set the description. + GHTeam team = gitHub.getOrganization(GITHUB_API_TEST_ORG).getTeamBySlug(teamSlug); + team.setDescription(description); + + // Check that it was set correctly. + team = gitHub.getOrganization(GITHUB_API_TEST_ORG).getTeamBySlug(teamSlug); + assertEquals(description, team.getDescription()); + + description += "Modified"; + + // Set the description. + team.setDescription(description); + + // Check that it was set correctly. + team = gitHub.getOrganization(GITHUB_API_TEST_ORG).getTeamBySlug(teamSlug); + assertEquals(description, team.getDescription()); + } + + +} diff --git a/src/test/java/org/kohsuke/github/GHUserTest.java b/src/test/java/org/kohsuke/github/GHUserTest.java new file mode 100644 index 0000000000..bdfa346d2e --- /dev/null +++ b/src/test/java/org/kohsuke/github/GHUserTest.java @@ -0,0 +1,85 @@ +package org.kohsuke.github; + +import org.junit.Test; + +import java.io.IOException; +import java.util.*; + +import static org.hamcrest.CoreMatchers.*; + + +public class GHUserTest extends AbstractGitHubWireMockTest { + @Test + public void listFollowsAndFollowers() throws IOException { + GHUser u = gitHub.getUser("rtyler"); + assertNotEquals( + count30(u.listFollowers()), + count30(u.listFollows())); + } + + private Set count30(PagedIterable l) { + Set users = new HashSet(); + PagedIterator itr = l.iterator(); + for (int i = 0; i < 30 && itr.hasNext(); i++) { + users.add(itr.next()); + } + assertEquals(30, users.size()); + return users; + } + + @Test + public void getKeys() throws IOException { + GHUser u = gitHub.getUser("rtyler"); + List ghKeys = new ArrayList<>(u.getKeys()); + + assertEquals(3, ghKeys.size()); + Collections.sort(ghKeys, new Comparator() { + @Override + public int compare(GHKey ghKey, GHKey t1) { + return ghKey.getId() - t1.getId(); + } + }); + assertEquals(1066173, ghKeys.get(0).getId()); + assertEquals("ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAueiy12T5bvFhsc9YjfLc3aVIxgySd3gDxQWy/bletIoZL8omKmzocBYJ7F58U1asoyfWsy2ToTOY8jJp1eToXmbD6L5+xvHba0A7djYh9aQRrFam7doKQ0zp0ZSUF6+R1v0OM4nnWqK4n2ECIYd+Bdzrp+xA5+XlW3ZSNzlnW2BeWznzmgRMcp6wI+zQ9GMHWviR1cxpml5Z6wrxTZ0aX91btvnNPqoOGva976B6e6403FOEkkIFTk6CC1TFKwc/VjbqxYBg4kU0JhiTP+iEZibcQrYjWdYUgAotYbFVe5/DneHMLNsMPdeihba4PUwt62rXyNegenuCRmCntLcaFQ==", + ghKeys.get(0).getKey()); + assertEquals(28136459, ghKeys.get(1).getId()); + assertEquals("ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDTU0s5OKCC6VpKZGL9NJD4mNLY0AtujkVB1JkkuQ4OkMi2YGUHJtGhTbTwEVhNxpm0x2dM5KSzse6MLDYuGBW0qkE/VVuD9+9I73hbq461KqP0+WlupNh+Qc86kbiLBDv64+vWc+50mp1dbINpoM5xvaPYxgjnemydPv7vu5bhCHBugW7aN8VcLgfFgcp8vZCEanMtd3hIRjRU8v8Skk233ZGu1bXkG8iIOBQPabvEtZ0VDMg9pT3Q1R6lnnKqfCwHXd6zP6uAtejFSxvKRGKpu3OLGQMHwk7NlImVuhkVdaEFBq7pQtpOaGuP2eLKcN1wy5jsTYE+ZB6pvHCi2ecb", + ghKeys.get(1).getKey()); + assertEquals(31452581, ghKeys.get(2).getId()); + assertEquals("ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQC3JhH2FZBDmHLjXTcBoV6tdcYKmsQ7sgu8k1RsUhwxGsXm65+Cuas6GcMVoA1DncKfJGQkulHDFiTxIROIBmedh9/otHWBlZ4HqYZ4MQ1A8W5quULkXwX/kF+UdRBUxFvjigibEbuHB+LARVxRRzFlPnTSE9rAfAv8OOEsb3lNUGT/IGhN8w1vwe8GclB90tgqN1RBDgrVqwLFwn5AfrW9kUIa2f2oT4RjYu1OrhKhVIIzfHADo85aD+s8wEhqwI96BCJG3qTWrypoHwBUoj1O6Ak5CGc1iKz9o8XyTMjudRt2ddCjfOtxsuwSlTbVtQXJGIpgKviX1sgh4pPvGh7BVAFP+mdAK4F+mEugDnuj47GO/K5KGGDRCL56kh9+h28l4q/+fZvp7DhtmSN2EzrVAdQFskF8yY/6Xit/aAvjeKm03DcjbylSXbG26EJefaLHlwYFq2mUFRMak25wuuCZS71GF3RC3Sl/bMoxBKRYkyfYtGafeaYTFNGn8Dbd+hfVUCz31ebI8cvmlQR5b5AbCre3T7HTVgw8FKbAxWRf1Fio56PnqHsj+sT1KVj255Zo1F8iD9GrgERSVAlkh5bY/CKszQ8ZSd01c9Qp2a47/gR7XAAbxhzGHP+cSOlrqDlJ24fbPtcpVsM0llqKUcxpmoOBFNboRmE1QqnSmAf9ww==", + ghKeys.get(2).getKey()); + } + + @Test + public void listPublicRepositories() throws IOException { + GHUser user = gitHub.getUser("kohsuke"); + Iterator itr = user.listRepositories().iterator(); + int i = 0; + for (; i < 115; i++) { + assertTrue(itr.hasNext()); + GHRepository r = itr.next(); + // System.out.println(r.getFullName()); + assertNotNull(r.getUrl()); + assertNotEquals(0L, r.getId()); + } + + assertThat(i, equalTo(115)); + } + + @Test + public void listPublicRepositoriesPageSize62() throws IOException { + GHUser user = gitHub.getUser("kohsuke"); + Iterator itr = user.listRepositories().withPageSize(62).iterator(); + int i = 0; + for (; i < 115; i++) { + assertTrue(itr.hasNext()); + GHRepository r = itr.next(); + // System.out.println(r.getFullName()); + assertNotNull(r.getUrl()); + assertNotEquals(0L, r.getId()); + } + + assertThat(i, equalTo(115)); + } + +} diff --git a/src/test/java/org/kohsuke/github/GistTest.java b/src/test/java/org/kohsuke/github/GistTest.java index df3baf8eeb..5fbb75a400 100644 --- a/src/test/java/org/kohsuke/github/GistTest.java +++ b/src/test/java/org/kohsuke/github/GistTest.java @@ -1,26 +1,32 @@ package org.kohsuke.github; +import com.github.tomakehurst.wiremock.stubbing.Scenario; import org.junit.Test; +import static com.github.tomakehurst.wiremock.client.WireMock.*; +import static org.hamcrest.Matchers.notNullValue; + +import static org.hamcrest.core.Is.is; + /** * @author Kohsuke Kawaguchi */ -public class GistTest extends AbstractGitHubApiTestBase { +public class GistTest extends AbstractGitHubWireMockTest { /** * CRUD operation. */ @Test public void lifecycleTest() throws Exception { GHGist gist = gitHub.createGist() - .public_(false) - .description("Test Gist") - .file("abc.txt","abc") - .file("def.txt","def") - .create(); + .public_(false) + .description("Test Gist") + .file("abc.txt", "abc") + .file("def.txt", "def") + .create(); - assertNotNull(gist.getCreatedAt()); - assertNotNull(gist.getUpdatedAt()); + assertThat(gist.getCreatedAt(), is(notNullValue())); + assertNotNull(gist.getUpdatedAt()); assertNotNull(gist.getCommentsUrl()); assertNotNull(gist.getCommitsUrl()); assertNotNull(gist.getGitPullUrl()); @@ -33,10 +39,12 @@ public void lifecycleTest() throws Exception { @Test public void starTest() throws Exception { GHGist gist = gitHub.getGist("9903708"); - assertEquals("rtyler",gist.getOwner().getLogin()); + assertEquals("rtyler", gist.getOwner().getLogin()); + gist.star(); assertTrue(gist.isStarred()); + gist.unstar(); assertFalse(gist.isStarred()); @@ -62,10 +70,10 @@ public void gistFile() throws Exception { assertTrue(gist.isPublic()); - assertEquals(1,gist.getFiles().size()); + assertEquals(1, gist.getFiles().size()); GHGistFile f = gist.getFile("keybase.md"); - assertEquals("text/plain", f.getType()); + assertEquals("text/markdown", f.getType()); assertEquals("Markdown", f.getLanguage()); assertTrue(f.getContent().contains("### Keybase proof")); assertNotNull(f.getContent()); diff --git a/src/test/java/org/kohsuke/github/GitHubConnectionTest.java b/src/test/java/org/kohsuke/github/GitHubConnectionTest.java new file mode 100644 index 0000000000..5db75f6506 --- /dev/null +++ b/src/test/java/org/kohsuke/github/GitHubConnectionTest.java @@ -0,0 +1,377 @@ +package org.kohsuke.github; + +import org.junit.Test; + +import java.io.IOException; +import java.lang.reflect.Field; +import java.util.*; + +import static org.hamcrest.CoreMatchers.*; + +/** + * Unit test for {@link GitHub}. + */ +public class GitHubConnectionTest extends AbstractGitHubWireMockTest { + + public GitHubConnectionTest() { + useDefaultGitHub = false; + } + + @Test + public void testOffline() throws Exception { + GitHub hub = GitHub.offline(); + assertEquals("https://api.github.invalid/test", hub.getApiURL("/test").toString()); + assertTrue(hub.isAnonymous()); + try { + hub.getRateLimit(); + fail("Offline instance should always fail"); + } catch (IOException e) { + assertEquals("Offline", e.getMessage()); + } + } + + @Test + public void testGitHubServerWithHttp() throws Exception { + GitHub hub = GitHub.connectToEnterprise("http://enterprise.kohsuke.org/api/v3", "bogus", "bogus"); + assertEquals("http://enterprise.kohsuke.org/api/v3/test", hub.getApiURL("/test").toString()); + } + + @Test + public void testGitHubServerWithHttps() throws Exception { + GitHub hub = GitHub.connectToEnterprise("https://enterprise.kohsuke.org/api/v3", "bogus", "bogus"); + assertEquals("https://enterprise.kohsuke.org/api/v3/test", hub.getApiURL("/test").toString()); + } + @Test + public void testGitHubServerWithoutServer() throws Exception { + GitHub hub = GitHub.connectUsingPassword("kohsuke", "bogus"); + assertEquals("https://api.github.com/test", hub.getApiURL("/test").toString()); + } + @Test + public void testGitHubBuilderFromEnvironment() throws IOException { + + Map props = new HashMap(); + + props.put("login", "bogus"); + props.put("oauth", "bogus"); + props.put("password", "bogus"); + props.put("jwt", "bogus"); + + setupEnvironment(props); + + GitHubBuilder builder = GitHubBuilder.fromEnvironment(); + + assertEquals("bogus", builder.user); + assertEquals("bogus", builder.oauthToken); + assertEquals("bogus", builder.password); + assertEquals("bogus", builder.jwtToken); + + } + + @Test + public void testGitHubBuilderFromCustomEnvironment() throws IOException { + Map props = new HashMap(); + + props.put("customLogin", "bogusLogin"); + props.put("customOauth", "bogusOauth"); + props.put("customPassword", "bogusPassword"); + props.put("customEndpoint", "bogusEndpoint"); + + setupEnvironment(props); + + GitHubBuilder builder = GitHubBuilder.fromEnvironment("customLogin", "customPassword", "customOauth", "customEndpoint"); + + assertEquals("bogusLogin", builder.user); + assertEquals("bogusOauth", builder.oauthToken); + assertEquals("bogusPassword", builder.password); + assertEquals("bogusEndpoint", builder.endpoint); + } + @Test + public void testGithubBuilderWithAppInstallationToken() throws Exception{ + GitHubBuilder builder = new GitHubBuilder().withAppInstallationToken("bogus"); + assertEquals("bogus", builder.oauthToken); + assertEquals("", builder.user); + + // test authorization header is set as in the RFC6749 + GitHub github = builder.build(); + assertEquals("token bogus",github.encodedAuthorization); + assertEquals("",github.login); + } + + @Test + public void testGitHubRateLimit() throws Exception { + assertThat(mockGitHub.getRequestCount(), equalTo(0)); + GHRateLimit rateLimit = null; + GitHub hub = null; + Date lastReset = new Date(System.currentTimeMillis() / 1000L); + int lastRemaining = 5000; + + // Give this a moment + Thread.sleep(1000); + + // ------------------------------------------------------------- + // /user gets response with rate limit information + hub = getGitHubBuilder() + .withEndpoint(mockGitHub.apiServer().baseUrl()).build(); + hub.getMyself(); + + assertThat(mockGitHub.getRequestCount(), equalTo(1)); + + // Since we already had rate limit info these don't request again + rateLimit = hub.lastRateLimit(); + assertThat(rateLimit, notNullValue()); + assertThat(rateLimit.limit, equalTo(5000)); + lastRemaining = rateLimit.remaining; + // Because we're gettting this from old mocked info, it will be an older date + //assertThat(rateLimit.getResetDate().compareTo(lastReset), equalTo(-1)); + lastReset = rateLimit.getResetDate(); + + GHRateLimit headerRateLimit = rateLimit; + + // Give this a moment + Thread.sleep(1000); + + // ratelimit() uses headerRateLimit if available + assertThat(hub.rateLimit(), equalTo(headerRateLimit)); + + assertThat(mockGitHub.getRequestCount(), equalTo(1)); + + // Give this a moment + Thread.sleep(1000); + + // Always requests new info + rateLimit = hub.getRateLimit(); + assertThat(mockGitHub.getRequestCount(), equalTo(2)); + + assertThat(rateLimit, notNullValue()); + assertThat(rateLimit.limit, equalTo(5000)); + // rate limit request is free + assertThat(rateLimit.remaining, equalTo(lastRemaining)); + assertThat(rateLimit.getResetDate().compareTo(lastReset), equalTo(0)); + + // Give this a moment + Thread.sleep(1000); + + // Always requests new info + rateLimit = hub.getRateLimit(); + assertThat(mockGitHub.getRequestCount(), equalTo(3)); + + assertThat(rateLimit, notNullValue()); + assertThat(rateLimit.limit, equalTo(5000)); + // rate limit request is free + assertThat(rateLimit.remaining, equalTo(lastRemaining)); + assertThat(rateLimit.getResetDate().compareTo(lastReset), equalTo(0)); + + + hub.getOrganization(GITHUB_API_TEST_ORG); + assertThat(mockGitHub.getRequestCount(), equalTo(4)); + + + assertThat(hub.lastRateLimit(), not(equalTo(headerRateLimit))); + rateLimit = hub.lastRateLimit(); + assertThat(rateLimit, notNullValue()); + assertThat(rateLimit.limit, equalTo(5000)); + // Org costs limit to query + assertThat(rateLimit.remaining, equalTo(lastRemaining - 1)); + assertThat(rateLimit.getResetDate().compareTo(lastReset), equalTo(0)); + lastReset = rateLimit.getResetDate(); + headerRateLimit = rateLimit; + + // ratelimit() should prefer headerRateLimit when it is most recent + assertThat(hub.rateLimit(), equalTo(headerRateLimit)); + + assertThat(mockGitHub.getRequestCount(), equalTo(4)); + + // Always requests new info + rateLimit = hub.getRateLimit(); + assertThat(mockGitHub.getRequestCount(), equalTo(5)); + + assertThat(rateLimit, notNullValue()); + assertThat(rateLimit.limit, equalTo(5000)); + // Org costs limit to query + assertThat(rateLimit.remaining, equalTo(lastRemaining - 1)); + assertThat(rateLimit.getResetDate().compareTo(lastReset), equalTo(0)); + + // ratelimit() should prefer headerRateLimit when getRateLimit() fails + // BUG: When getRateLimit() succeeds, it should reset the ratelimit() to the new value +// assertThat(hub.rateLimit(), equalTo(rateLimit)); +// assertThat(hub.rateLimit(), not(equalTo(headerRateLimit))); + assertThat(hub.rateLimit(), equalTo(headerRateLimit)); + + assertThat(mockGitHub.getRequestCount(), equalTo(5)); + } + + @Test + public void testGitHubEnterpriseDoesNotHaveRateLimit() throws Exception { + // Customized response that results in file not found the same as GitHub Enterprise + snapshotNotAllowed(); + assertThat(mockGitHub.getRequestCount(), equalTo(0)); + GHRateLimit rateLimit = null; + GitHub hub = null; + + + Date lastReset = new Date(System.currentTimeMillis() / 1000L); + + // Give this a moment + Thread.sleep(1000); + + // ------------------------------------------------------------- + // Before any queries, rate limit starts as null but may be requested + hub = GitHub.connectToEnterprise(mockGitHub.apiServer().baseUrl(), "bogus", "bogus"); + assertThat(mockGitHub.getRequestCount(), equalTo(0)); + + assertThat(hub.lastRateLimit(), nullValue()); + + rateLimit = hub.rateLimit(); + assertThat(rateLimit, notNullValue()); + assertThat(rateLimit.limit, equalTo(1000000)); + assertThat(rateLimit.remaining, equalTo(1000000)); + assertThat(rateLimit.getResetDate().compareTo(lastReset), equalTo(1)); + lastReset = rateLimit.getResetDate(); + + assertThat(mockGitHub.getRequestCount(), equalTo(1)); + + // last is still null, because it actually means lastHeaderRateLimit + assertThat(hub.lastRateLimit(), nullValue()); + + assertThat(mockGitHub.getRequestCount(), equalTo(1)); + + // Give this a moment + Thread.sleep(1000); + + // ------------------------------------------------------------- + // First call to /user gets response without rate limit information + hub = GitHub.connectToEnterprise(mockGitHub.apiServer().baseUrl(), "bogus", "bogus"); + hub.getMyself(); + assertThat(mockGitHub.getRequestCount(), equalTo(2)); + + assertThat(hub.lastRateLimit(), nullValue()); + + rateLimit = hub.rateLimit(); + assertThat(rateLimit, notNullValue()); + assertThat(rateLimit.limit, equalTo(1000000)); + assertThat(rateLimit.remaining, equalTo(1000000)); + assertThat(rateLimit.getResetDate().compareTo(lastReset), equalTo(1)); + lastReset = rateLimit.getResetDate(); + + assertThat(mockGitHub.getRequestCount(), equalTo(3)); + + // Give this a moment + Thread.sleep(1000); + + // Always requests new info + rateLimit = hub.getRateLimit(); + assertThat(mockGitHub.getRequestCount(), equalTo(4)); + + assertThat(rateLimit, notNullValue()); + assertThat(rateLimit.limit, equalTo(1000000)); + assertThat(rateLimit.remaining, equalTo(1000000)); + assertThat(rateLimit.getResetDate().compareTo(lastReset), equalTo(1)); + + // Give this a moment + Thread.sleep(1000); + + + // last is still null, because it actually means lastHeaderRateLimit + assertThat(hub.lastRateLimit(), nullValue()); + + // ratelimit() tries not to make additional requests, uses queried rate limit since header not available + Thread.sleep(1000); + assertThat(hub.rateLimit(), equalTo(rateLimit)); + + // ------------------------------------------------------------- + // Second call to /user gets response with rate limit information + hub = GitHub.connectToEnterprise(mockGitHub.apiServer().baseUrl(), "bogus", "bogus"); + hub.getMyself(); + assertThat(mockGitHub.getRequestCount(), equalTo(5)); + + // Since we already had rate limit info these don't request again + rateLimit = hub.lastRateLimit(); + assertThat(rateLimit, notNullValue()); + assertThat(rateLimit.limit, equalTo(5000)); + assertThat(rateLimit.remaining, equalTo(4978)); + // Because we're gettting this from old mocked info, it will be an older date + assertThat(rateLimit.getResetDate().compareTo(lastReset), equalTo(-1)); + lastReset = rateLimit.getResetDate(); + + GHRateLimit headerRateLimit = rateLimit; + + // Give this a moment + Thread.sleep(1000); + + // ratelimit() uses headerRateLimit if available + assertThat(hub.rateLimit(), equalTo(headerRateLimit)); + + assertThat(mockGitHub.getRequestCount(), equalTo(5)); + + // Give this a moment + Thread.sleep(1000); + + // Always requests new info + rateLimit = hub.getRateLimit(); + assertThat(mockGitHub.getRequestCount(), equalTo(6)); + + assertThat(rateLimit, notNullValue()); + assertThat(rateLimit.limit, equalTo(1000000)); + assertThat(rateLimit.remaining, equalTo(1000000)); + assertThat(rateLimit.getResetDate().compareTo(lastReset), equalTo(1)); + + // Give this a moment + Thread.sleep(1000); + + // ratelimit() should prefer headerRateLimit when getRateLimit fails + assertThat(hub.rateLimit(), equalTo(headerRateLimit)); + + assertThat(mockGitHub.getRequestCount(), equalTo(6)); + } + + @Test + public void testGitHubIsApiUrlValid() throws IOException { + GitHub hub = GitHub.connectAnonymously(); + //GitHub github = GitHub.connectToEnterpriseAnonymously("https://github.mycompany.com/api/v3/"); + try { + hub.checkApiUrlValidity(); + } catch (IOException ioe) { + assertTrue(ioe.getMessage().contains("private mode enabled")); + } + } + + /* + * Copied from StackOverflow: http://stackoverflow.com/a/7201825/2336755 + * + * This allows changing the in memory process environment. + * + * Its used to wire in values for the github credentials to test that the GitHubBuilder works properly to resolve them. + */ + private void setupEnvironment(Map newenv) { + try { + Class processEnvironmentClass = Class.forName("java.lang.ProcessEnvironment"); + Field theEnvironmentField = processEnvironmentClass.getDeclaredField("theEnvironment"); + theEnvironmentField.setAccessible(true); + Map env = (Map) theEnvironmentField.get(null); + env.putAll(newenv); + Field theCaseInsensitiveEnvironmentField = processEnvironmentClass.getDeclaredField("theCaseInsensitiveEnvironment"); + theCaseInsensitiveEnvironmentField.setAccessible(true); + Map cienv = (Map) theCaseInsensitiveEnvironmentField.get(null); + cienv.putAll(newenv); + } catch (NoSuchFieldException e) { + try { + Class[] classes = Collections.class.getDeclaredClasses(); + Map env = System.getenv(); + for (Class cl : classes) { + if ("java.util.Collections$UnmodifiableMap".equals(cl.getName())) { + Field field = cl.getDeclaredField("m"); + field.setAccessible(true); + Object obj = field.get(env); + Map map = (Map) obj; + map.clear(); + map.putAll(newenv); + } + } + } catch (Exception e2) { + e2.printStackTrace(); + } + } catch (Exception e1) { + e1.printStackTrace(); + } + } +} diff --git a/src/test/java/org/kohsuke/github/GitHubStaticTest.java b/src/test/java/org/kohsuke/github/GitHubStaticTest.java new file mode 100644 index 0000000000..9c03a3323b --- /dev/null +++ b/src/test/java/org/kohsuke/github/GitHubStaticTest.java @@ -0,0 +1,79 @@ +package org.kohsuke.github; + +import org.junit.Assert; +import org.junit.Test; + +import java.text.SimpleDateFormat; +import java.time.Instant; +import java.time.temporal.ChronoUnit; +import java.util.Date; +import java.util.TimeZone; + +import static org.hamcrest.CoreMatchers.equalTo; +import static org.hamcrest.CoreMatchers.not; + +/** + * Unit test for {@link GitHub} static helpers. + * + * @author Liam Newman + */ +public class GitHubStaticTest extends Assert { + + @Test + public void timeRoundTrip() throws Exception { + Instant instantNow = Instant.now(); + + Date instantSeconds = Date.from(instantNow.truncatedTo(ChronoUnit.SECONDS)); + Date instantMillis = Date.from(instantNow.truncatedTo(ChronoUnit.MILLIS)); + + // if we happen to land exactly on zero milliseconds, add 1 milli + if (instantSeconds.equals(instantMillis)) { + instantMillis = Date.from(instantNow.plusMillis(1).truncatedTo(ChronoUnit.MILLIS)); + } + + // TODO: other formats + String instantFormatSlash = formatDate(instantMillis, "yyyy/MM/dd HH:mm:ss ZZZZ"); + String instantFormatDash = formatDate(instantMillis, "yyyy-MM-dd'T'HH:mm:ss'Z'"); + String instantFormatMillis = formatDate(instantMillis, "yyyy-MM-dd'T'HH:mm:ss.S'Z'"); + String instantSecondsFormatMillis = formatDate(instantSeconds, "yyyy-MM-dd'T'HH:mm:ss.S'Z'"); + String instantBadFormat = formatDate(instantMillis, "yy-MM-dd'T'HH:mm'Z'"); + + + assertThat(GitHub.parseDate(GitHub.printDate(instantSeconds)), + equalTo(GitHub.parseDate(GitHub.printDate(instantMillis)))); + + assertThat(instantSeconds, + equalTo(GitHub.parseDate(GitHub.printDate(instantSeconds)))); + + // printDate will truncate to the nearest second, so it should not be equal + assertThat(instantMillis, + not(equalTo(GitHub.parseDate(GitHub.printDate(instantMillis))))); + + assertThat(instantSeconds, + equalTo(GitHub.parseDate(instantFormatSlash))); + + assertThat(instantSeconds, + equalTo(GitHub.parseDate(instantFormatDash))); + + // This parser does not truncate to the nearest second, so it will be equal + assertThat(instantMillis, + equalTo(GitHub.parseDate(instantFormatMillis))); + + assertThat(instantSeconds, + equalTo(GitHub.parseDate(instantSecondsFormatMillis))); + + try { + GitHub.parseDate(instantBadFormat); + fail("Bad time format should throw."); + } catch (IllegalStateException e) { + assertThat(e.getMessage(), equalTo("Unable to parse the timestamp: " + instantBadFormat)); + } + } + + static String formatDate(Date dt, String format) { + SimpleDateFormat df = new SimpleDateFormat(format); + df.setTimeZone(TimeZone.getTimeZone("GMT")); + return df.format(dt); + } + +} diff --git a/src/test/java/org/kohsuke/github/GitHubTest.java b/src/test/java/org/kohsuke/github/GitHubTest.java index f4b77b8271..bd37714b41 100644 --- a/src/test/java/org/kohsuke/github/GitHubTest.java +++ b/src/test/java/org/kohsuke/github/GitHubTest.java @@ -3,171 +3,80 @@ import java.io.FileNotFoundException; import java.io.IOException; import java.lang.reflect.Field; -import java.util.Collections; -import java.util.HashMap; -import java.util.HashSet; -import java.util.Map; -import java.util.Set; +import java.util.*; import com.google.common.collect.Iterables; +import org.apache.commons.io.IOUtils; +import org.junit.Ignore; import org.junit.Test; -import static org.hamcrest.CoreMatchers.equalTo; -import static org.hamcrest.CoreMatchers.notNullValue; -import static org.hamcrest.MatcherAssert.assertThat; -import static org.junit.Assert.assertEquals; -import static org.junit.Assert.assertTrue; -import static org.junit.Assert.fail; +import static org.hamcrest.CoreMatchers.*; import static org.mockito.Mockito.spy; import static org.mockito.Mockito.when; /** * Unit test for {@link GitHub}. */ -public class GitHubTest { +public class GitHubTest extends AbstractGitHubWireMockTest { + @Test - public void testOffline() throws Exception { - GitHub hub = GitHub.offline(); - assertEquals("https://api.github.invalid/test", hub.getApiURL("/test").toString()); - assertTrue(hub.isAnonymous()); - try { - hub.getRateLimit(); - fail("Offline instance should always fail"); - } catch (IOException e) { - assertEquals("Offline", e.getMessage()); + public void listUsers() throws IOException { + for (GHUser u : Iterables.limit(gitHub.listUsers(), 10)) { + assert u.getName() != null; + // System.out.println(u.getName()); } } @Test - public void testGitHubServerWithHttp() throws Exception { - GitHub hub = GitHub.connectToEnterprise("http://enterprise.kohsuke.org/api/v3", "bogus","bogus"); - assertEquals("http://enterprise.kohsuke.org/api/v3/test", hub.getApiURL("/test").toString()); - } - @Test - public void testGitHubServerWithHttps() throws Exception { - GitHub hub = GitHub.connectToEnterprise("https://enterprise.kohsuke.org/api/v3", "bogus","bogus"); - assertEquals("https://enterprise.kohsuke.org/api/v3/test", hub.getApiURL("/test").toString()); - } - @Test - public void testGitHubServerWithoutServer() throws Exception { - GitHub hub = GitHub.connectUsingPassword("kohsuke", "bogus"); - assertEquals("https://api.github.com/test", hub.getApiURL("/test").toString()); - } - @Test - public void testGitHubBuilderFromEnvironment() throws IOException { - - Mapprops = new HashMap(); - - props.put("login", "bogus"); - props.put("oauth", "bogus"); - props.put("password", "bogus"); - - setupEnvironment(props); - - GitHubBuilder builder = GitHubBuilder.fromEnvironment(); - - assertEquals("bogus", builder.user); - assertEquals("bogus", builder.oauthToken); - assertEquals("bogus", builder.password); - - } - - /* - * Copied from StackOverflow: http://stackoverflow.com/a/7201825/2336755 - * - * This allows changing the in memory process environment. - * - * Its used to wire in values for the github credentials to test that the GitHubBuilder works properly to resolve them. - */ - private void setupEnvironment(Map newenv) { - try { - Class processEnvironmentClass = Class.forName("java.lang.ProcessEnvironment"); - Field theEnvironmentField = processEnvironmentClass.getDeclaredField("theEnvironment"); - theEnvironmentField.setAccessible(true); - Map env = (Map) theEnvironmentField.get(null); - env.putAll(newenv); - Field theCaseInsensitiveEnvironmentField = processEnvironmentClass.getDeclaredField("theCaseInsensitiveEnvironment"); - theCaseInsensitiveEnvironmentField.setAccessible(true); - Map cienv = (Map) theCaseInsensitiveEnvironmentField.get(null); - cienv.putAll(newenv); - } catch (NoSuchFieldException e) { - try { - Class[] classes = Collections.class.getDeclaredClasses(); - Map env = System.getenv(); - for (Class cl : classes) { - if ("java.util.Collections$UnmodifiableMap".equals(cl.getName())) { - Field field = cl.getDeclaredField("m"); - field.setAccessible(true); - Object obj = field.get(env); - Map map = (Map) obj; - map.clear(); - map.putAll(newenv); - } - } - } catch (Exception e2) { - e2.printStackTrace(); - } - } catch (Exception e1) { - e1.printStackTrace(); + public void getOrgs() throws IOException { + int iterations = 10; + Set orgIds = new HashSet(); + for (GHOrganization org : Iterables.limit(gitHub.listOrganizations().withPageSize(2), iterations)) { + orgIds.add(org.getId()); + // System.out.println(org.getName()); } - } - @Test - public void testGitHubBuilderFromCustomEnvironment() throws IOException { - Map props = new HashMap(); - - props.put("customLogin", "bogusLogin"); - props.put("customOauth", "bogusOauth"); - props.put("customPassword", "bogusPassword"); - props.put("customEndpoint", "bogusEndpoint"); - - setupEnvironment(props); - - GitHubBuilder builder = GitHubBuilder.fromEnvironment("customLogin", "customPassword", "customOauth", "customEndpoint"); - - assertEquals("bogusLogin", builder.user); - assertEquals("bogusOauth", builder.oauthToken); - assertEquals("bogusPassword", builder.password); - assertEquals("bogusEndpoint", builder.endpoint); + assertThat(orgIds.size(), equalTo(iterations)); } @Test - public void testGitHubEnterpriseDoesNotHaveRateLimit() throws IOException { - GitHub github = spy(new GitHubBuilder().build()); - when(github.retrieve()).thenThrow(FileNotFoundException.class); - - GHRateLimit rateLimit = github.getRateLimit(); - assertThat(rateLimit.getResetDate(), notNullValue()); + public void searchUsers() throws Exception { + PagedSearchIterable r = gitHub.searchUsers().q("tom").repos(">42").followers(">1000").list(); + GHUser u = r.iterator().next(); + // System.out.println(u.getName()); + assertNotNull(u.getId()); + assertTrue(r.getTotalCount() > 0); } @Test - public void testGitHubIsApiUrlValid() throws IOException { - GitHub github = GitHub.connectAnonymously(); - //GitHub github = GitHub.connectToEnterpriseAnonymously("https://github.mycompany.com/api/v3/"); - try { - github.checkApiUrlValidity(); - } catch (IOException ioe) { - assertTrue(ioe.getMessage().contains("private mode enabled")); + public void testListAllRepositories() throws Exception { + Iterator itr = gitHub.listAllPublicRepositories().iterator(); + for (int i = 0; i < 115; i++) { + assertTrue(itr.hasNext()); + GHRepository r = itr.next(); + // System.out.println(r.getFullName()); + assertNotNull(r.getUrl()); + assertNotEquals(0L, r.getId()); } } - + @Test - public void listUsers() throws IOException { - GitHub hub = GitHub.connect(); - for (GHUser u : Iterables.limit(hub.listUsers(),10)) { - assert u.getName()!=null; - System.out.println(u.getName()); - } + public void searchContent() throws Exception { + PagedSearchIterable r = gitHub.searchContent().q("addClass").in("file").language("js").repo("jquery/jquery").list(); + GHContent c = r.iterator().next(); + // System.out.println(c.getName()); + assertNotNull(c.getDownloadUrl()); + assertNotNull(c.getOwner()); + assertEquals("jquery/jquery", c.getOwner().getFullName()); + assertTrue(r.getTotalCount() > 0); } @Test - public void getOrgs() throws IOException { - GitHub hub = GitHub.connect(); - int iterations = 10; - Set orgIds = new HashSet(); - for (GHOrganization org : Iterables.limit(hub.listOrganizations().withPageSize(2), iterations)) { - orgIds.add(org.getId()); - System.out.println(org.getName()); + public void testListMyAuthorizations() throws IOException + { + PagedIterable list = gitHub.listMyAuthorizations(); + + for (GHAuthorization auth: list) { + assertNotNull(auth.getAppName()); } - assertThat(orgIds.size(), equalTo(iterations)); } } diff --git a/src/test/java/org/kohsuke/github/LifecycleTest.java b/src/test/java/org/kohsuke/github/LifecycleTest.java index c4e1d1e0d9..629ccebc94 100644 --- a/src/test/java/org/kohsuke/github/LifecycleTest.java +++ b/src/test/java/org/kohsuke/github/LifecycleTest.java @@ -26,26 +26,26 @@ public void testCreateRepository() throws IOException, GitAPIException, Interrup Thread.sleep(1000); } repository = org.createRepository("github-api-test", - "a test repository used to test kohsuke's github-api", "http://github-api.kohsuke.org/", "Core Developers", true); + "a test repository used to test kohsuke's github-api", "http://github-api.kohsuke.org/", "Core Developers", true); Thread.sleep(1000); // wait for the repository to become ready assertTrue(repository.getReleases().isEmpty()); try { GHMilestone milestone = repository.createMilestone("Initial Release", "first one"); GHIssue issue = repository.createIssue("Test Issue") - .body("issue body just for grins") - .milestone(milestone) - .assignee(myself) - .label("bug") - .create(); + .body("issue body just for grins") + .milestone(milestone) + .assignee(myself) + .label("bug") + .create(); File repoDir = new File(System.getProperty("java.io.tmpdir"), "github-api-test"); delete(repoDir); Git origin = Git.cloneRepository() - .setBare(false) - .setURI(repository.getSshUrl()) - .setDirectory(repoDir) - .setCredentialsProvider(getCredentialsProvider(myself)) - .call(); + .setBare(false) + .setURI(repository.getSshUrl()) + .setDirectory(repoDir) + .setCredentialsProvider(getCredentialsProvider(myself)) + .call(); commitTestFile(myself, repoDir, origin); @@ -84,9 +84,9 @@ private GHAsset uploadAsset(GHRelease release) throws IOException { private GHRelease createRelease(GHRepository repository) throws IOException { GHRelease builder = repository.createRelease("release_tag") - .name("Test Release") - .body("How exciting! To be able to programmatically create releases is a dream come true!") - .create(); + .name("Test Release") + .body("How exciting! To be able to programmatically create releases is a dream come true!") + .create(); List releases = repository.getReleases(); assertEquals(1, releases.size()); GHRelease release = releases.get(0); diff --git a/src/test/java/org/kohsuke/github/PayloadRule.java b/src/test/java/org/kohsuke/github/PayloadRule.java index 7f9364fdb2..20a6f46acc 100644 --- a/src/test/java/org/kohsuke/github/PayloadRule.java +++ b/src/test/java/org/kohsuke/github/PayloadRule.java @@ -6,6 +6,7 @@ import java.io.InputStreamReader; import java.io.Reader; import java.nio.charset.Charset; + import org.apache.commons.io.IOUtils; import org.junit.rules.TestRule; import org.junit.runner.Description; @@ -44,8 +45,8 @@ public void evaluate() throws Throwable { public InputStream asInputStream() throws FileNotFoundException { String name = resourceName.startsWith("/") - ? resourceName + type - : testClass.getSimpleName() + "/" + resourceName + type; + ? resourceName + type + : testClass.getSimpleName() + "/" + resourceName + type; InputStream stream = testClass.getResourceAsStream(name); if (stream == null) { throw new FileNotFoundException(String.format("Resource %s from class %s", name, testClass)); @@ -81,6 +82,7 @@ public Reader asReader() throws FileNotFoundException { public Reader asReader(String encoding) throws IOException { return new InputStreamReader(asInputStream(), encoding); } + public Reader asReader(Charset encoding) throws FileNotFoundException { return new InputStreamReader(asInputStream(), encoding); } diff --git a/src/test/java/org/kohsuke/github/PullRequestTest.java b/src/test/java/org/kohsuke/github/PullRequestTest.java deleted file mode 100644 index ceb741bd34..0000000000 --- a/src/test/java/org/kohsuke/github/PullRequestTest.java +++ /dev/null @@ -1,186 +0,0 @@ -package org.kohsuke.github; - -import org.junit.After; -import org.junit.Test; - -import java.io.IOException; -import java.util.Collection; -import java.util.List; - -import static org.hamcrest.CoreMatchers.*; - -/** - * @author Kohsuke Kawaguchi - */ -public class PullRequestTest extends AbstractGitHubApiTestBase { - @Test - public void createPullRequest() throws Exception { - String name = rnd.next(); - GHPullRequest p = getRepository().createPullRequest(name, "stable", "master", "## test"); - System.out.println(p.getUrl()); - assertEquals(name, p.getTitle()); - } - - @Test - public void createPullRequestComment() throws Exception { - String name = rnd.next(); - GHPullRequest p = getRepository().createPullRequest(name, "stable", "master", "## test"); - p.comment("Some comment"); - } - - @Test - public void testPullRequestReviews() throws Exception { - String name = rnd.next(); - GHPullRequest p = getRepository().createPullRequest(name, "stable", "master", "## test"); - GHPullRequestReview draftReview = p.createReview() - .body("Some draft review") - .comment("Some niggle", "changelog.html", 1) - .create(); - assertThat(draftReview.getState(), is(GHPullRequestReviewState.PENDING)); - assertThat(draftReview.getBody(), is("Some draft review")); - assertThat(draftReview.getCommitId(), notNullValue()); - List reviews = p.listReviews().asList(); - assertThat(reviews.size(), is(1)); - GHPullRequestReview review = reviews.get(0); - assertThat(review.getState(), is(GHPullRequestReviewState.PENDING)); - assertThat(review.getBody(), is("Some draft review")); - assertThat(review.getCommitId(), notNullValue()); - draftReview.submit("Some review comment", GHPullRequestReviewEvent.COMMENT); - List comments = review.listReviewComments().asList(); - assertEquals(1, comments.size()); - GHPullRequestReviewComment comment = comments.get(0); - assertEquals("Some niggle", comment.getBody()); - draftReview = p.createReview() - .body("Some new review") - .comment("Some niggle", "changelog.html", 1) - .create(); - draftReview.delete(); - } - - @Test - public void testPullRequestReviewComments() throws Exception { - String name = rnd.next(); - GHPullRequest p = getRepository().createPullRequest(name, "stable", "master", "## test"); - System.out.println(p.getUrl()); - assertTrue(p.listReviewComments().asList().isEmpty()); - p.createReviewComment("Sample review comment", p.getHead().getSha(), "cli/pom.xml", 5); - List comments = p.listReviewComments().asList(); - assertEquals(1, comments.size()); - GHPullRequestReviewComment comment = comments.get(0); - assertEquals("Sample review comment", comment.getBody()); - - comment.update("Updated review comment"); - comments = p.listReviewComments().asList(); - assertEquals(1, comments.size()); - comment = comments.get(0); - assertEquals("Updated review comment", comment.getBody()); - - comment.delete(); - comments = p.listReviewComments().asList(); - assertTrue(comments.isEmpty()); - } - - @Test - public void testMergeCommitSHA() throws Exception { - String name = rnd.next(); - GHPullRequest p = getRepository().createPullRequest(name, "mergeable-branch", "master", "## test"); - for (int i=0; i<100; i++) { - GHPullRequest updated = getRepository().getPullRequest(p.getNumber()); - if (updated.getMergeCommitSha()!=null) { - // make sure commit exists - GHCommit commit = getRepository().getCommit(updated.getMergeCommitSha()); - assertNotNull(commit); - return; - } - - // mergeability computation takes time. give it more chance - Thread.sleep(100); - } - // hmm? - fail(); - } - - @Test - public void testSquashMerge() throws Exception { - String name = rnd.next(); - GHRef masterRef = getRepository().getRef("heads/master"); - GHRef branchRef = getRepository().createRef("refs/heads/" + name, masterRef.getObject().getSha()); - - getRepository().createContent(name, name, name, name); - Thread.sleep(1000); - GHPullRequest p = getRepository().createPullRequest(name, name, "master", "## test squash"); - Thread.sleep(1000); - p.merge("squash merge", null, GHPullRequest.MergeMethod.SQUASH); - branchRef.delete(); - } - @Test - public void testUpdateContentSquashMerge() throws Exception { - String name = rnd.next(); - GHRef masterRef = getRepository().getRef("heads/master"); - GHRef branchRef = getRepository().createRef("refs/heads/" + name, masterRef.getObject().getSha()); - - GHContentUpdateResponse response = getRepository().createContent(name, name, name, name); - Thread.sleep(1000); - - getRepository().createContent() - .content(name + name) - .path(name) - .branch(name) - .message(name) - .sha(response.getContent().getSha()) - .commit(); - GHPullRequest p = getRepository().createPullRequest(name, name, "master", "## test squash"); - Thread.sleep(1000); - p.merge("squash merge", null, GHPullRequest.MergeMethod.SQUASH); - branchRef.delete(); - } - - @Test - // Requires push access to the test repo to pass - public void setLabels() throws Exception { - GHPullRequest p = getRepository().createPullRequest(rnd.next(), "stable", "master", "## test"); - String label = rnd.next(); - p.setLabels(label); - - Collection labels = getRepository().getPullRequest(p.getNumber()).getLabels(); - assertEquals(1, labels.size()); - assertEquals(label, labels.iterator().next().getName()); - } - - @Test - // Requires push access to the test repo to pass - public void setAssignee() throws Exception { - GHPullRequest p = getRepository().createPullRequest(rnd.next(), "stable", "master", "## test"); - GHMyself user = gitHub.getMyself(); - p.assignTo(user); - - assertEquals(user, getRepository().getPullRequest(p.getNumber()).getAssignee()); - } - - @Test - public void testGetUser() throws IOException { - GHPullRequest p = getRepository().createPullRequest(rnd.next(), "stable", "master", "## test"); - GHPullRequest prSingle = getRepository().getPullRequest(p.getNumber()); - assertNotNull(prSingle.getUser().root); - prSingle.getMergeable(); - assertNotNull(prSingle.getUser().root); - - PagedIterable ghPullRequests = getRepository().listPullRequests(GHIssueState.OPEN); - for (GHPullRequest pr : ghPullRequests) { - assertNotNull(pr.getUser().root); - pr.getMergeable(); - assertNotNull(pr.getUser().root); - } - } - - @After - public void cleanUp() throws Exception { - for (GHPullRequest pr : getRepository().getPullRequests(GHIssueState.OPEN)) { - pr.close(); - } - } - - private GHRepository getRepository() throws IOException { - return gitHub.getOrganization("github-api-test-org").getRepository("jenkins"); - } -} diff --git a/src/test/java/org/kohsuke/github/RepositoryMockTest.java b/src/test/java/org/kohsuke/github/RepositoryMockTest.java index 2ff984ef2c..c9c65f3c4a 100644 --- a/src/test/java/org/kohsuke/github/RepositoryMockTest.java +++ b/src/test/java/org/kohsuke/github/RepositoryMockTest.java @@ -41,14 +41,14 @@ public void listCollaborators() throws Exception { when(iterator.hasNext()).thenReturn(true, false, true); - when(iterator.next()).thenReturn(new GHUser[]{user1}, new GHUser[]{user2}); + when(iterator.next()).thenReturn(new GHUser[] {user1}, new GHUser[] {user2}); Requester requester = Mockito.mock(Requester.class); when(mockGitHub.retrieve()).thenReturn(requester); when(requester.asIterator("/repos/*/*/collaborators", - GHUser[].class, 0)).thenReturn(iterator, iterator); + GHUser[].class, 0)).thenReturn(iterator, iterator); PagedIterable pagedIterable = Mockito.mock(PagedIterable.class); diff --git a/src/test/java/org/kohsuke/github/RepositoryTest.java b/src/test/java/org/kohsuke/github/RepositoryTest.java deleted file mode 100644 index 66fe689507..0000000000 --- a/src/test/java/org/kohsuke/github/RepositoryTest.java +++ /dev/null @@ -1,145 +0,0 @@ -package org.kohsuke.github; - -import org.junit.Test; -import org.kohsuke.github.GHRepository.Contributor; - -import java.io.FileNotFoundException; -import java.io.IOException; - -/** - * @author Kohsuke Kawaguchi - */ -public class RepositoryTest extends AbstractGitHubApiTestBase { - @Test - public void subscription() throws Exception { - GHRepository r = getRepository(); - assertNull(r.getSubscription()); - - GHSubscription s = r.subscribe(true, false); - assertEquals(s.getRepository(), r); - - s.delete(); - - assertNull(r.getSubscription()); - } - - @Test - public void listContributors() throws IOException { - GHRepository r = gitHub.getOrganization("stapler").getRepository("stapler"); - int i=0; - boolean kohsuke = false; - - for (Contributor c : r.listContributors()) { - System.out.println(c.getName()); - assertTrue(c.getContributions()>0); - if (c.getLogin().equals("kohsuke")) - kohsuke = true; - if (i++ > 5) - break; - } - - assertTrue(kohsuke); - } - - @Test - public void getPermission() throws Exception { - kohsuke(); - GHRepository r = gitHub.getRepository("github-api-test-org/test-permission"); - assertEquals(GHPermissionType.ADMIN, r.getPermission("kohsuke")); - assertEquals(GHPermissionType.READ, r.getPermission("dude")); - r = gitHub.getOrganization("apache").getRepository("groovy"); - try { - r.getPermission("jglick"); - fail(); - } catch (HttpException x) { - x.printStackTrace(); // good - assertEquals(403, x.getResponseCode()); - } - - if (false) { - // can't easily test this; there's no private repository visible to the test user - r = gitHub.getOrganization("cloudbees").getRepository("private-repo-not-writable-by-me"); - try { - r.getPermission("jglick"); - fail(); - } catch (FileNotFoundException x) { - x.printStackTrace(); // good - } - } - } - - - - @Test - public void LatestRepositoryExist() { - try { - // add the repository that have latest release - GHRelease release = gitHub.getRepository("kamontat/CheckIDNumber").getLatestRelease(); - assertEquals("v3.0", release.getTagName()); - } catch (IOException e) { - e.printStackTrace(); - fail(); - } - } - - @Test - public void LatestRepositoryNotExist() { - try { - // add the repository that `NOT` have latest release - GHRelease release = gitHub.getRepository("kamontat/Java8Example").getLatestRelease(); - assertNull(release); - } catch (IOException e) { - e.printStackTrace(); - fail(); - } - } - - @Test public void listReleases() throws IOException { - PagedIterable releases = gitHub.getOrganization("github").getRepository("hub").listReleases(); - assertTrue(releases.iterator().hasNext()); - } - - @Test - public void getReleaseExists() throws IOException { - GHRelease release = gitHub.getOrganization("github").getRepository("hub").getRelease(6839710); - assertEquals("v2.3.0-pre10", release.getTagName()); - } - - @Test - public void getReleaseDoesNotExist() throws IOException { - GHRelease release = gitHub.getOrganization("github").getRepository("hub").getRelease(Long.MAX_VALUE); - assertNull(release); - } - - @Test - public void getReleaseByTagNameExists() throws IOException { - GHRelease release = gitHub.getOrganization("github").getRepository("hub").getReleaseByTagName("v2.3.0-pre10"); - assertNotNull(release); - assertEquals("v2.3.0-pre10", release.getTagName()); - } - - @Test - public void getReleaseByTagNameDoesNotExist() throws IOException { - GHRelease release = getRepository().getReleaseByTagName("foo-bar-baz"); - assertNull(release); - } - - private GHRepository getRepository() throws IOException { - return gitHub.getOrganization("github-api-test-org").getRepository("jenkins"); - } - - @Test - public void listLanguages() throws IOException { - GHRepository r = gitHub.getRepository("kohsuke/github-api"); - String mainLanguage = r.getLanguage(); - assertTrue(r.listLanguages().containsKey(mainLanguage)); - } - - @Test // Issue #261 - public void listEmptyContributors() throws IOException { - GitHub gh = GitHub.connect(); - for (Contributor c : gh.getRepository("github-api-test-org/empty").listContributors()) { - System.out.println(c); - } - } -} diff --git a/src/test/java/org/kohsuke/github/RepositoryTrafficTest.java b/src/test/java/org/kohsuke/github/RepositoryTrafficTest.java index b1f13e6c97..5c8f6d35e3 100644 --- a/src/test/java/org/kohsuke/github/RepositoryTrafficTest.java +++ b/src/test/java/org/kohsuke/github/RepositoryTrafficTest.java @@ -17,11 +17,17 @@ import java.util.List; import java.util.TimeZone; -public class RepositoryTrafficTest { +public class RepositoryTrafficTest extends AbstractGitHubApiTestBase { final private String login = "kohsuke", repositoryName = "github-api"; + @Override + protected GitHubBuilder getGitHubBuilder() { + return new GitHubBuilder() + .withPassword(login, null); + } + @SuppressWarnings("unchecked") - private void checkResponse(T expected, T actual){ + private void checkResponse(T expected, T actual) { Assert.assertEquals(expected.getCount(), actual.getCount()); Assert.assertEquals(expected.getUniques(), actual.getUniques()); @@ -34,7 +40,7 @@ private void checkResponse(T expected, T actual) expectedIt = expectedList.iterator(); actualIt = actualList.iterator(); - while(expectedIt.hasNext() && actualIt.hasNext()) { + while (expectedIt.hasNext() && actualIt.hasNext()) { DailyInfo expectedDailyInfo = expectedIt.next(); DailyInfo actualDailyInfo = actualIt.next(); Assert.assertEquals(expectedDailyInfo.getCount(), actualDailyInfo.getCount()); @@ -43,14 +49,12 @@ private void checkResponse(T expected, T actual) } } - private void testTraffic(T expectedResult) throws IOException{ - SimpleDateFormat dateFormat=new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss'Z'"); + private void testTraffic(T expectedResult) throws IOException { + SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss'Z'"); dateFormat.setTimeZone(TimeZone.getTimeZone("GMT")); ObjectMapper mapper = new ObjectMapper().setDateFormat(dateFormat); String mockedResponse = mapper.writeValueAsString(expectedResult); - - GitHub gitHub = GitHub.connect(login, null); GitHub gitHubSpy = Mockito.spy(gitHub); GHRepository repo = gitHubSpy.getUser(login).getRepository(repositoryName); @@ -71,8 +75,8 @@ private void testTraffic(T expectedResult) throw // this covers calls on "uc" in Requester.setupConnection and Requester.buildRequest - URL trafficURL = new URL( - "https://api.github.com/repos/"+login+"/"+repositoryName+"/traffic/" + + URL trafficURL = gitHub.getApiURL( + "/repos/" + login + "/" + repositoryName + "/traffic/" + ((expectedResult instanceof GHRepositoryViewTraffic) ? "views" : "clones") ); Mockito.doReturn(mockHttpURLConnection).when(connectorSpy).connect(Mockito.eq(trafficURL)); @@ -84,64 +88,63 @@ private void testTraffic(T expectedResult) throw InputStream stubInputStream = IOUtils.toInputStream(mockedResponse, "UTF-8"); Mockito.doReturn(stubInputStream).when(mockHttpURLConnection).getInputStream(); - if(expectedResult instanceof GHRepositoryViewTraffic){ + if (expectedResult instanceof GHRepositoryViewTraffic) { GHRepositoryViewTraffic views = repo.getViewTraffic(); checkResponse(expectedResult, views); - } - else if(expectedResult instanceof GHRepositoryCloneTraffic) { + } else if (expectedResult instanceof GHRepositoryCloneTraffic) { GHRepositoryCloneTraffic clones = repo.getCloneTraffic(); checkResponse(expectedResult, clones); } } @Test - public void testGetViews() throws IOException{ + public void testGetViews() throws IOException { GHRepositoryViewTraffic expectedResult = new GHRepositoryViewTraffic( - 21523359, - 65534, - Arrays.asList( - new GHRepositoryViewTraffic.DailyInfo("2016-10-10T00:00:00Z", 3, 2), - new GHRepositoryViewTraffic.DailyInfo("2016-10-11T00:00:00Z", 9, 4), - new GHRepositoryViewTraffic.DailyInfo("2016-10-12T00:00:00Z", 27, 8), - new GHRepositoryViewTraffic.DailyInfo("2016-10-13T00:00:00Z", 81, 16), - new GHRepositoryViewTraffic.DailyInfo("2016-10-14T00:00:00Z", 243, 32), - new GHRepositoryViewTraffic.DailyInfo("2016-10-15T00:00:00Z", 729, 64), - new GHRepositoryViewTraffic.DailyInfo("2016-10-16T00:00:00Z", 2187, 128), - new GHRepositoryViewTraffic.DailyInfo("2016-10-17T00:00:00Z", 6561, 256), - new GHRepositoryViewTraffic.DailyInfo("2016-10-18T00:00:00Z", 19683, 512), - new GHRepositoryViewTraffic.DailyInfo("2016-10-19T00:00:00Z", 59049, 1024), - new GHRepositoryViewTraffic.DailyInfo("2016-10-20T00:00:00Z", 177147, 2048), - new GHRepositoryViewTraffic.DailyInfo("2016-10-21T00:00:00Z", 531441, 4096), - new GHRepositoryViewTraffic.DailyInfo("2016-10-22T00:00:00Z", 1594323, 8192), - new GHRepositoryViewTraffic.DailyInfo("2016-10-23T00:00:00Z", 4782969, 16384), - new GHRepositoryViewTraffic.DailyInfo("2016-10-24T00:00:00Z", 14348907, 32768) - ) + 21523359, + 65534, + Arrays.asList( + new GHRepositoryViewTraffic.DailyInfo("2016-10-10T00:00:00Z", 3, 2), + new GHRepositoryViewTraffic.DailyInfo("2016-10-11T00:00:00Z", 9, 4), + new GHRepositoryViewTraffic.DailyInfo("2016-10-12T00:00:00Z", 27, 8), + new GHRepositoryViewTraffic.DailyInfo("2016-10-13T00:00:00Z", 81, 16), + new GHRepositoryViewTraffic.DailyInfo("2016-10-14T00:00:00Z", 243, 32), + new GHRepositoryViewTraffic.DailyInfo("2016-10-15T00:00:00Z", 729, 64), + new GHRepositoryViewTraffic.DailyInfo("2016-10-16T00:00:00Z", 2187, 128), + new GHRepositoryViewTraffic.DailyInfo("2016-10-17T00:00:00Z", 6561, 256), + new GHRepositoryViewTraffic.DailyInfo("2016-10-18T00:00:00Z", 19683, 512), + new GHRepositoryViewTraffic.DailyInfo("2016-10-19T00:00:00Z", 59049, 1024), + new GHRepositoryViewTraffic.DailyInfo("2016-10-20T00:00:00Z", 177147, 2048), + new GHRepositoryViewTraffic.DailyInfo("2016-10-21T00:00:00Z", 531441, 4096), + new GHRepositoryViewTraffic.DailyInfo("2016-10-22T00:00:00Z", 1594323, 8192), + new GHRepositoryViewTraffic.DailyInfo("2016-10-23T00:00:00Z", 4782969, 16384), + new GHRepositoryViewTraffic.DailyInfo("2016-10-24T00:00:00Z", 14348907, 32768) + ) ); testTraffic(expectedResult); } @Test - public void testGetClones() throws IOException{ + public void testGetClones() throws IOException { GHRepositoryCloneTraffic expectedResult = new GHRepositoryCloneTraffic( - 1500, - 455, - Arrays.asList( - new GHRepositoryCloneTraffic.DailyInfo("2016-10-10T00:00:00Z", 10,3), - new GHRepositoryCloneTraffic.DailyInfo("2016-10-11T00:00:00Z", 20,6), - new GHRepositoryCloneTraffic.DailyInfo("2016-10-12T00:00:00Z", 30,5), - new GHRepositoryCloneTraffic.DailyInfo("2016-10-13T00:00:00Z", 40,7), - new GHRepositoryCloneTraffic.DailyInfo("2016-10-14T00:00:00Z", 50,11), - new GHRepositoryCloneTraffic.DailyInfo("2016-10-15T00:00:00Z", 60,12), - new GHRepositoryCloneTraffic.DailyInfo("2016-10-16T00:00:00Z", 70,19), - new GHRepositoryCloneTraffic.DailyInfo("2016-10-17T00:00:00Z", 170,111), - new GHRepositoryCloneTraffic.DailyInfo("2016-10-18T00:00:00Z", 180,70), - new GHRepositoryCloneTraffic.DailyInfo("2016-10-19T00:00:00Z", 190,10), - new GHRepositoryCloneTraffic.DailyInfo("2016-10-20T00:00:00Z", 200,18), - new GHRepositoryCloneTraffic.DailyInfo("2016-10-21T00:00:00Z", 210,8), - new GHRepositoryCloneTraffic.DailyInfo("2016-10-22T00:00:00Z", 220,168), - new GHRepositoryCloneTraffic.DailyInfo("2016-10-23T00:00:00Z", 5,2), - new GHRepositoryCloneTraffic.DailyInfo("2016-10-24T00:00:00Z", 45,5) - ) + 1500, + 455, + Arrays.asList( + new GHRepositoryCloneTraffic.DailyInfo("2016-10-10T00:00:00Z", 10, 3), + new GHRepositoryCloneTraffic.DailyInfo("2016-10-11T00:00:00Z", 20, 6), + new GHRepositoryCloneTraffic.DailyInfo("2016-10-12T00:00:00Z", 30, 5), + new GHRepositoryCloneTraffic.DailyInfo("2016-10-13T00:00:00Z", 40, 7), + new GHRepositoryCloneTraffic.DailyInfo("2016-10-14T00:00:00Z", 50, 11), + new GHRepositoryCloneTraffic.DailyInfo("2016-10-15T00:00:00Z", 60, 12), + new GHRepositoryCloneTraffic.DailyInfo("2016-10-16T00:00:00Z", 70, 19), + new GHRepositoryCloneTraffic.DailyInfo("2016-10-17T00:00:00Z", 170, 111), + new GHRepositoryCloneTraffic.DailyInfo("2016-10-18T00:00:00Z", 180, 70), + new GHRepositoryCloneTraffic.DailyInfo("2016-10-19T00:00:00Z", 190, 10), + new GHRepositoryCloneTraffic.DailyInfo("2016-10-20T00:00:00Z", 200, 18), + new GHRepositoryCloneTraffic.DailyInfo("2016-10-21T00:00:00Z", 210, 8), + new GHRepositoryCloneTraffic.DailyInfo("2016-10-22T00:00:00Z", 220, 168), + new GHRepositoryCloneTraffic.DailyInfo("2016-10-23T00:00:00Z", 5, 2), + new GHRepositoryCloneTraffic.DailyInfo("2016-10-24T00:00:00Z", 45, 5) + ) ); testTraffic(expectedResult); } @@ -149,19 +152,17 @@ public void testGetClones() throws IOException{ @Test public void testGetTrafficStatsAccessFailureDueToInsufficientPermissions() throws IOException { String errorMsg = "Exception should be thrown, since we don't have permission to access repo traffic info."; - GitHub gitHub = GitHub.connect(login, null); + GHRepository repo = gitHub.getUser(login).getRepository(repositoryName); try { repo.getViewTraffic(); Assert.fail(errorMsg); - } - catch (HttpException ex){ + } catch (HttpException ex) { } try { repo.getCloneTraffic(); Assert.fail(errorMsg); - } - catch (HttpException ex){ + } catch (HttpException ex) { } } } diff --git a/src/test/java/org/kohsuke/github/UserTest.java b/src/test/java/org/kohsuke/github/UserTest.java deleted file mode 100644 index 9d1cfcbbac..0000000000 --- a/src/test/java/org/kohsuke/github/UserTest.java +++ /dev/null @@ -1,30 +0,0 @@ -package org.kohsuke.github; - -import org.junit.Test; - -import java.io.IOException; -import java.util.HashSet; -import java.util.Set; - -/** - * @author Kohsuke Kawaguchi - */ -public class UserTest extends AbstractGitHubApiTestBase { - @Test - public void listFollowsAndFollowers() throws IOException { - GHUser u = gitHub.getUser("rtyler"); - assertNotEquals( - count30(u.listFollowers()), - count30(u.listFollows())); - } - - private Set count30(PagedIterable l) { - Set users = new HashSet(); - PagedIterator itr = l.iterator(); - for (int i=0; i<30 && itr.hasNext(); i++) { - users.add(itr.next()); - } - assertEquals(30, users.size()); - return users; - } -} diff --git a/src/test/java/org/kohsuke/github/WireMockStatusReporterTest.java b/src/test/java/org/kohsuke/github/WireMockStatusReporterTest.java new file mode 100644 index 0000000000..f8d21dad5a --- /dev/null +++ b/src/test/java/org/kohsuke/github/WireMockStatusReporterTest.java @@ -0,0 +1,140 @@ +package org.kohsuke.github; + +import org.kohsuke.github.junit.WireMockRule; +import org.hamcrest.Matchers; +import org.junit.Ignore; +import org.junit.Test; + +import static org.hamcrest.Matchers.*; +import static org.junit.Assume.assumeFalse; +import static org.junit.Assume.assumeTrue; + + +/** + * Tests in this class are meant to show the behavior of {@link AbstractGitHubWireMockTest} with proxying on or off. + *

    + * The wiremock data for these tests should only be modified by hand - thus most are skipped when snapshotting. + * + * @author Liam Newman + */ +public class WireMockStatusReporterTest extends AbstractGitHubWireMockTest { + + @Test + public void user_whenProxying_AuthCorrectlyConfigured() throws Exception { + snapshotNotAllowed(); + requireProxy("Tests proper configuration when proxying."); + + assertThat( + "GitHub connection believes it is anonymous. Make sure you set GITHUB_OAUTH or both GITHUB_USER and GITHUB_PASSWORD environment variables", + gitHub.isAnonymous(), is(false)); + + assertThat(gitHub.login, not(equalTo(STUBBED_USER_LOGIN))); + + // If this user query fails, either the proxying config has broken (unlikely) + // or your auth settings are not being retrieved from the environemnt. + // Check your settings. + GHUser user = gitHub.getMyself(); + assertThat(user.getLogin(), notNullValue()); + + // System.out.println(); + // System.out.println("WireMockStatusReporterTest: GitHub proxying and user auth correctly configured for user login: " + user.getLogin()); + // System.out.println(); + } + + @Test + public void user_whenNotProxying_Stubbed() throws Exception { + snapshotNotAllowed(); + + assumeFalse("Test only valid when not proxying", mockGitHub.isUseProxy()); + + assertThat(gitHub.isAnonymous(), is(false)); + assertThat(gitHub.login, equalTo(STUBBED_USER_LOGIN)); + + GHUser user = gitHub.getMyself(); + // NOTE: the stubbed user does not have to match the login provided from the github object + // github.login is literally just a placeholder when mocking + assertThat(user.getLogin(), not(equalTo(STUBBED_USER_LOGIN))); + assertThat(user.getLogin(), equalTo("stubbed-user-login")); + + // System.out.println("GitHub proxying and user auth correctly configured for user login: " + user.getLogin()); + } + + @Ignore("Can't run this as WireMock will report failure after the test method completes.") + @Test + public void BasicBehaviors_whenNotProxying() throws Exception { + snapshotNotAllowed(); + assumeFalse("Test only valid when not proxying", mockGitHub.isUseProxy()); + + Exception e = null; + GHRepository repo = null; + + // Valid repository, stubbed + repo = gitHub.getRepository("github-api/github-api"); + assertThat(repo.getDescription(), equalTo("this is a stubbed description")); + + // Invalid repository, without stub - fails 404 when not proxying + try { + gitHub.getRepository("jenkinsci/jenkins"); + fail(); + } catch (Exception ex) { + e = ex; + } + + assertThat(e, Matchers.instanceOf(GHFileNotFoundException.class)); + assertThat(e.getMessage(), containsString("Request was not matched")); + + // Invalid repository, without stub - fails 404 when not proxying + e = null; + try { + gitHub.getRepository("github-api/non-existant-repository"); + fail(); + } catch (Exception ex) { + e = ex; + } + + assertThat(e, Matchers.instanceOf(GHFileNotFoundException.class)); + assertThat(e.getMessage(), containsString("Request was not matched")); + } + + @Test + public void BasicBehaviors_whenProxying() throws Exception { + snapshotNotAllowed(); + requireProxy("Tests basic behaviors when proxying."); + + Exception e = null; + GHRepository repo = null; + + // Valid repository, stubbed + repo = gitHub.getRepository("github-api/github-api"); + assertThat(repo.getDescription(), equalTo("this is a stubbed description")); + + // Valid repository, without stub - succeeds when proxying + repo = gitHub.getRepository("jenkinsci/jenkins"); + assertThat(repo.getDescription(), notNullValue()); + + // Invalid repository, without stub - fails 404 when proxying + e = null; + try { + gitHub.getRepository("github-api/non-existant-repository"); + } catch (Exception ex) { + e = ex; + } + + assertThat(e, Matchers.instanceOf(GHFileNotFoundException.class)); + assertThat(e.getMessage(), equalTo("{\"message\":\"Not Found\",\"documentation_url\":\"https://developer.github.com/v3/repos/#get\"}")); + } + + @Test + public void whenSnapshot_EnsureProxy() throws Exception { + assumeTrue("Test only valid when Snapshotting (-Dtest.github.takeSnapshot to enable)", mockGitHub.isTakeSnapshot()); + + assertTrue("When taking a snapshot, proxy should automatically be enabled", mockGitHub.isUseProxy()); + } + + @Ignore("Not implemented yet") + @Test + public void whenSnapshot_EnsureRecordToExpectedLocation() throws Exception { + assumeTrue("Test only valid when Snapshotting (-Dtest.github.takeSnapshot to enable)", mockGitHub.isTakeSnapshot()); + + } +} diff --git a/src/test/java/org/kohsuke/github/extras/OkHttpConnectorTest.java b/src/test/java/org/kohsuke/github/extras/OkHttpConnectorTest.java new file mode 100644 index 0000000000..381a2c437b --- /dev/null +++ b/src/test/java/org/kohsuke/github/extras/OkHttpConnectorTest.java @@ -0,0 +1,300 @@ +package org.kohsuke.github.extras; + +import com.github.tomakehurst.wiremock.core.WireMockConfiguration; +import com.github.tomakehurst.wiremock.extension.responsetemplating.ResponseTemplateTransformer; +import com.github.tomakehurst.wiremock.matching.RequestPatternBuilder; +import com.squareup.okhttp.OkUrlFactory; +import com.squareup.okhttp.Cache; +import com.squareup.okhttp.OkHttpClient; +import org.apache.commons.io.FileUtils; +import org.junit.Before; +import org.junit.Test; +import org.kohsuke.github.*; + +import java.io.File; +import java.io.IOException; + +import static org.hamcrest.Matchers.*; +import static org.hamcrest.core.Is.is; +import static org.junit.Assume.assumeFalse; +import static org.junit.Assume.assumeTrue; + +/** + * Test showing the behavior of OkHttpConnector with and without cache. + *

    + * Key take aways: + * + *

      + *
    • These tests are artificial and intended to highlight the differences + * in behavior between scenarios. However, the differences they indicate are stark.
    • + *
    • Caching reduces rate limit consumption by at least a factor of two in even the simplest case.
    • + *
    • The OkHttp cache is pretty smart and will often connect read and write requests made + * on the same client and invalidate caches.
    • + *
    • Changes made outside the current client cause the OkHttp cache to return stale data. + * This is expected and correct behavior.
    • + *
    • "max-age=0" addresses the problem of external changes by revalidating caches for each request. + * This produces the same number of requests as OkHttp without caching, but those requests only + * count towards the GitHub rate limit if data has changes.
    • + *
    + * + * @author Liam Newman + */ +public class OkHttpConnectorTest extends AbstractGitHubWireMockTest { + + public OkHttpConnectorTest() { + useDefaultGitHub = false; + } + + private static int defaultRateLimitUsed = 17; + private static int okhttpRateLimitUsed = 17; + private static int maxAgeZeroRateLimitUsed = 7; + private static int maxAgeThreeRateLimitUsed = 7; + private static int maxAgeNoneRateLimitUsed = 4; + + private static int userRequestCount = 0; + + private static int defaultNetworkRequestCount = 16; + private static int okhttpNetworkRequestCount = 16; + private static int maxAgeZeroNetworkRequestCount = 16; + private static int maxAgeThreeNetworkRequestCount = 9; + private static int maxAgeNoneNetworkRequestCount = 5; + + private static int maxAgeZeroHitCount = 10; + private static int maxAgeThreeHitCount = 10; + private static int maxAgeNoneHitCount = 11; + + private GHRateLimit rateLimitBefore; + + @Override + protected WireMockConfiguration getWireMockOptions() { + return super.getWireMockOptions() + .extensions(ResponseTemplateTransformer.builder() + .global(true) + .maxCacheEntries(0L) + .build() + ); + } + + @Before + public void setupRepo() throws Exception { + if (mockGitHub.isUseProxy()) { + GHRepository repo = getRepository(gitHubBeforeAfter); + repo.setDescription("Resetting"); + + // Let things settle a bit between tests when working against the live site + Thread.sleep(5000); + userRequestCount = 1; + } + } + + @Test + public void DefaultConnector() throws Exception { + + this.gitHub = getGitHubBuilder() + .withEndpoint(mockGitHub.apiServer().baseUrl()) + .build(); + + doTestActions(); + + // Testing behavior after change + // Uncached connection gets updated correctly but at cost of rate limit + assertThat(getRepository(gitHub).getDescription(), is("Tricky")); + + checkRequestAndLimit(defaultNetworkRequestCount, defaultRateLimitUsed); + } + + @Test + public void OkHttpConnector_NoCache() throws Exception { + + OkHttpClient client = createClient(false); + OkHttpConnector connector = new OkHttpConnector(new OkUrlFactory(client)); + + this.gitHub = getGitHubBuilder() + .withEndpoint(mockGitHub.apiServer().baseUrl()) + .withConnector(connector) + .build(); + + doTestActions(); + + // Testing behavior after change + // Uncached okhttp connection gets updated correctly but at cost of rate limit + assertThat(getRepository(gitHub).getDescription(), is("Tricky")); + + checkRequestAndLimit(okhttpNetworkRequestCount, okhttpRateLimitUsed); + + Cache cache = client.getCache(); + assertThat("Cache", cache, is(nullValue())); + } + + @Test + public void OkHttpConnector_Cache_MaxAgeNone() throws Exception { + // The responses were recorded from github, but the Date headers + // have been templated to make caching behavior work as expected. + // This is reasonable as long as the number of network requests matches up. + snapshotNotAllowed(); + + OkHttpClient client = createClient(true); + OkHttpConnector connector = new OkHttpConnector(new OkUrlFactory(client), -1); + + this.gitHub = getGitHubBuilder() + .withEndpoint(mockGitHub.apiServer().baseUrl()) + .withConnector(connector) + .build(); + + doTestActions(); + + // Testing behavior after change + // NOTE: this is wrong! The live data changed! + // Due to max-age (default 60 from response) the cache returns the old data. + assertThat(getRepository(gitHub).getDescription(), is(mockGitHub.getMethodName())); + + checkRequestAndLimit(maxAgeNoneNetworkRequestCount, maxAgeNoneRateLimitUsed); + + Cache cache = client.getCache(); + + // NOTE: this is actually bad. + // This elevated hit count is the stale requests returning bad data took longer to detect a change. + assertThat("getHitCount", cache.getHitCount(), is(maxAgeNoneHitCount)); + } + + @Test + public void OkHttpConnector_Cache_MaxAge_Three() throws Exception { + + // NOTE: This test is very timing sensitive. + // It can be run locally to verify behavior but snapshot data is to touchy + assumeFalse("Test only valid when not taking a snapshot", mockGitHub.isTakeSnapshot()); + assumeTrue("Test only valid when proxying (-Dtest.github.useProxy to enable)", mockGitHub.isUseProxy()); + + + OkHttpClient client = createClient(true); + OkHttpConnector connector = new OkHttpConnector(new OkUrlFactory(client), 3); + + this.gitHub = getGitHubBuilder() + .withEndpoint(mockGitHub.apiServer().baseUrl()) + .withConnector(connector) + .build(); + + doTestActions(); + + // Due to max-age=3 this eventually checks the site and gets updated information. Yay? + assertThat(getRepository(gitHub).getDescription(), is("Tricky")); + + checkRequestAndLimit(maxAgeThreeNetworkRequestCount, maxAgeThreeRateLimitUsed); + + Cache cache = client.getCache(); + assertThat("getHitCount", cache.getHitCount(), is(maxAgeThreeHitCount)); + } + + @Test + public void OkHttpConnector_Cache_MaxAgeDefault_Zero() throws Exception { + // The responses were recorded from github, but the Date headers + // have been templated to make caching behavior work as expected. + // This is reasonable as long as the number of network requests matches up. + snapshotNotAllowed(); + + OkHttpClient client = createClient(true); + OkHttpConnector connector = new OkHttpConnector(new OkUrlFactory(client)); + + this.gitHub = getGitHubBuilder() + .withEndpoint(mockGitHub.apiServer().baseUrl()) + .withConnector(connector) + .build(); + + doTestActions(); + + // Testing behavior after change + // NOTE: max-age=0 produces the same result at uncached without added rate-limit use. + assertThat(getRepository(gitHub).getDescription(), is("Tricky")); + + checkRequestAndLimit(maxAgeZeroNetworkRequestCount, maxAgeZeroRateLimitUsed); + + Cache cache = client.getCache(); + assertThat("getHitCount", cache.getHitCount(), is(maxAgeZeroHitCount)); + } + + private void checkRequestAndLimit(int networkRequestCount, int rateLimitUsed) throws IOException { + GHRateLimit rateLimitAfter = gitHub.rateLimit(); + assertThat("Request Count", + mockGitHub.getRequestCount(), + is(networkRequestCount + userRequestCount)); + + // Rate limit must be under this value, but if it wiggles we don't care + assertThat("Rate Limit Change", + rateLimitBefore.remaining - rateLimitAfter.remaining, + is(lessThanOrEqualTo(rateLimitUsed + userRequestCount))); + + } + + private OkHttpClient createClient(boolean useCache) throws IOException { + OkHttpClient client = new OkHttpClient(); + + if (useCache) { + File cacheDir = new File("target/cache/" + baseFilesClassPath + "/" + mockGitHub.getMethodName()); + cacheDir.mkdirs(); + FileUtils.cleanDirectory(cacheDir); + Cache cache = new Cache(cacheDir, 100 * 1024L * 1024L); + + client.setCache(cache); + } + + return client; + } + + + /** + * This is a standard set of actions to be performed with each connector + * + * @throws Exception + */ + private void doTestActions() throws Exception { + rateLimitBefore = gitHub.getRateLimit(); + + String name = mockGitHub.getMethodName(); + + + GHRepository repo = getRepository(gitHub); + + // Testing behavior when nothing has changed. + pollForChange("Resetting"); + assertThat(getRepository(gitHub).getDescription(), is("Resetting")); + + repo.setDescription(name); + + pollForChange(name); + + // Test behavior after change + assertThat(getRepository(gitHub).getDescription(), is(name)); + + + // Get Tricky - make a change via a different client + if (mockGitHub.isUseProxy()) { + GHRepository altRepo = getRepository(gitHubBeforeAfter); + altRepo.setDescription("Tricky"); + } + + // Testing behavior after change + pollForChange("Tricky"); + } + + private void pollForChange(String name) throws IOException, InterruptedException { + getRepository(gitHub).getDescription(); + Thread.sleep(500); + getRepository(gitHub).getDescription(); + //This is only interesting when running the max-age=3 test which currently only runs with proxy + //Disabled to speed up the tests + if (mockGitHub.isUseProxy()) { + Thread.sleep(1000); + } + getRepository(gitHub).getDescription(); + //This is only interesting when running the max-age=3 test which currently only runs with proxy + //Disabled to speed up the tests + if (mockGitHub.isUseProxy()) { + Thread.sleep(4000); + } + } + + private static GHRepository getRepository(GitHub gitHub) throws IOException { + return gitHub.getOrganization("github-api-test-org").getRepository("github-api"); + } + +} diff --git a/src/test/java/org/kohsuke/github/extras/okhttp3/OkHttpConnectorTest.java b/src/test/java/org/kohsuke/github/extras/okhttp3/OkHttpConnectorTest.java new file mode 100644 index 0000000000..a8abb68025 --- /dev/null +++ b/src/test/java/org/kohsuke/github/extras/okhttp3/OkHttpConnectorTest.java @@ -0,0 +1,309 @@ +package org.kohsuke.github.extras.okhttp3; + +import com.github.tomakehurst.wiremock.core.WireMockConfiguration; +import com.github.tomakehurst.wiremock.extension.responsetemplating.ResponseTemplateTransformer; +import com.github.tomakehurst.wiremock.matching.RequestPatternBuilder; +import okhttp3.Cache; +import okhttp3.OkHttpClient; +import org.apache.commons.io.FileUtils; +import org.junit.Before; +import org.junit.Test; +import org.kohsuke.github.AbstractGitHubWireMockTest; +import org.kohsuke.github.GHRateLimit; +import org.kohsuke.github.GHRepository; +import org.kohsuke.github.GitHub; + +import java.io.File; +import java.io.IOException; + +import static org.hamcrest.Matchers.lessThanOrEqualTo; +import static org.hamcrest.Matchers.nullValue; +import static org.hamcrest.core.Is.is; +import static org.junit.Assume.assumeFalse; +import static org.junit.Assume.assumeTrue; + +/** + * Test showing the behavior of OkHttpConnector with and without cache. + *

    + * Key take aways: + * + *

      + *
    • These tests are artificial and intended to highlight the differences + * in behavior between scenarios. However, the differences they indicate are stark.
    • + *
    • Caching reduces rate limit consumption by at least a factor of two in even the simplest case.
    • + *
    • The OkHttp cache is pretty smart and will often connect read and write requests made + * on the same client and invalidate caches.
    • + *
    • Changes made outside the current client cause the OkHttp cache to return stale data. + * This is expected and correct behavior.
    • + *
    • "max-age=0" addresses the problem of external changes by revalidating caches for each request. + * This produces the same number of requests as OkHttp without caching, but those requests only + * count towards the GitHub rate limit if data has changes.
    • + *
    + * + * @author Liam Newman + */ +public class OkHttpConnectorTest extends AbstractGitHubWireMockTest { + + public OkHttpConnectorTest() { + useDefaultGitHub = false; + } + + private static int defaultRateLimitUsed = 17; + private static int okhttpRateLimitUsed = 17; + private static int maxAgeZeroRateLimitUsed = 7; + private static int maxAgeThreeRateLimitUsed = 7; + private static int maxAgeNoneRateLimitUsed = 4; + + private static int userRequestCount = 0; + + private static int defaultNetworkRequestCount = 16; + private static int okhttpNetworkRequestCount = 16; + private static int maxAgeZeroNetworkRequestCount = 16; + private static int maxAgeThreeNetworkRequestCount = 9; + private static int maxAgeNoneNetworkRequestCount = 5; + + private static int maxAgeZeroHitCount = 10; + private static int maxAgeThreeHitCount = 10; + private static int maxAgeNoneHitCount = 11; + + private GHRateLimit rateLimitBefore; + + @Override + protected WireMockConfiguration getWireMockOptions() { + return super.getWireMockOptions() + // Use the same data files as the 2.x test + .usingFilesUnderDirectory(baseRecordPath.replace("/okhttp3/", "/")) + .extensions(ResponseTemplateTransformer.builder() + .global(true) + .maxCacheEntries(0L) + .build() + ); + } + + @Before + public void setupRepo() throws Exception { + if (mockGitHub.isUseProxy()) { + GHRepository repo = getRepository(gitHubBeforeAfter); + repo.setDescription("Resetting"); + + // Let things settle a bit between tests when working against the live site + Thread.sleep(5000); + userRequestCount = 1; + } + } + + @Test + public void DefaultConnector() throws Exception { + + this.gitHub = getGitHubBuilder() + .withEndpoint(mockGitHub.apiServer().baseUrl()) + .build(); + + doTestActions(); + + // Testing behavior after change + // Uncached connection gets updated correctly but at cost of rate limit + assertThat(getRepository(gitHub).getDescription(), is("Tricky")); + + checkRequestAndLimit(defaultNetworkRequestCount, defaultRateLimitUsed); + } + + @Test + public void OkHttpConnector_NoCache() throws Exception { + + OkHttpClient client = createClient(false); + OkHttpConnector connector = new OkHttpConnector(client); + + this.gitHub = getGitHubBuilder() + .withEndpoint(mockGitHub.apiServer().baseUrl()) + .withConnector(connector) + .build(); + + doTestActions(); + + // Testing behavior after change + // Uncached okhttp connection gets updated correctly but at cost of rate limit + assertThat(getRepository(gitHub).getDescription(), is("Tricky")); + + checkRequestAndLimit(okhttpNetworkRequestCount, okhttpRateLimitUsed); + + Cache cache = client.cache(); + assertThat("Cache", cache, is(nullValue())); + } + + @Test + public void OkHttpConnector_Cache_MaxAgeNone() throws Exception { + // The responses were recorded from github, but the Date headers + // have been templated to make caching behavior work as expected. + // This is reasonable as long as the number of network requests matches up. + snapshotNotAllowed(); + + OkHttpClient client = createClient(true); + OkHttpConnector connector = new OkHttpConnector(client, -1); + + this.gitHub = getGitHubBuilder() + .withEndpoint(mockGitHub.apiServer().baseUrl()) + .withConnector(connector) + .build(); + + doTestActions(); + + // Testing behavior after change + // NOTE: this is wrong! The live data changed! + // Due to max-age (default 60 from response) the cache returns the old data. + assertThat(getRepository(gitHub).getDescription(), is(mockGitHub.getMethodName())); + + checkRequestAndLimit(maxAgeNoneNetworkRequestCount, maxAgeNoneRateLimitUsed); + + Cache cache = client.cache(); + + // NOTE: this is actually bad. + // This elevated hit count is the stale requests returning bad data took longer to detect a change. + assertThat("getHitCount", cache.hitCount(), is(maxAgeNoneHitCount)); + } + + @Test + public void OkHttpConnector_Cache_MaxAge_Three() throws Exception { + + // NOTE: This test is very timing sensitive. + // It can be run locally to verify behavior but snapshot data is to touchy + assumeFalse("Test only valid when not taking a snapshot", mockGitHub.isTakeSnapshot()); + assumeTrue("Test only valid when proxying (-Dtest.github.useProxy to enable)", mockGitHub.isUseProxy()); + + + OkHttpClient client = createClient(true); + OkHttpConnector connector = new OkHttpConnector(client, 3); + + this.gitHub = getGitHubBuilder() + .withEndpoint(mockGitHub.apiServer().baseUrl()) + .withConnector(connector) + .build(); + + doTestActions(); + + // Due to max-age=3 this eventually checks the site and gets updated information. Yay? + assertThat(getRepository(gitHub).getDescription(), is("Tricky")); + + checkRequestAndLimit(maxAgeThreeNetworkRequestCount, maxAgeThreeRateLimitUsed); + + Cache cache = client.cache(); + assertThat("getHitCount", cache.hitCount(), is(maxAgeThreeHitCount)); + } + + @Test + public void OkHttpConnector_Cache_MaxAgeDefault_Zero() throws Exception { + // The responses were recorded from github, but the Date headers + // have been templated to make caching behavior work as expected. + // This is reasonable as long as the number of network requests matches up. + snapshotNotAllowed(); + + OkHttpClient client = createClient(true); + OkHttpConnector connector = new OkHttpConnector(client); + + this.gitHub = getGitHubBuilder() + .withEndpoint(mockGitHub.apiServer().baseUrl()) + .withConnector(connector) + .build(); + + doTestActions(); + + // Testing behavior after change + // NOTE: max-age=0 produces the same result at uncached without added rate-limit use. + assertThat(getRepository(gitHub).getDescription(), is("Tricky")); + + checkRequestAndLimit(maxAgeZeroNetworkRequestCount, maxAgeZeroRateLimitUsed); + + Cache cache = client.cache(); + assertThat("getHitCount", cache.hitCount(), is(maxAgeZeroHitCount)); + } + + private void checkRequestAndLimit(int networkRequestCount, int rateLimitUsed) throws IOException { + GHRateLimit rateLimitAfter = gitHub.rateLimit(); + assertThat("Request Count", + getRequestCount(), + is(networkRequestCount + userRequestCount)); + + // Rate limit must be under this value, but if it wiggles we don't care + assertThat("Rate Limit Change", + rateLimitBefore.remaining - rateLimitAfter.remaining, + is(lessThanOrEqualTo(rateLimitUsed + userRequestCount))); + + } + + private int getRequestCount() { + return mockGitHub.apiServer().countRequestsMatching(RequestPatternBuilder.allRequests().build()).getCount(); + } + + private OkHttpClient createClient(boolean useCache) throws IOException { + OkHttpClient.Builder builder = new OkHttpClient().newBuilder(); + + if (useCache) { + File cacheDir = new File("target/cache/" + baseFilesClassPath + "/" + mockGitHub.getMethodName()); + cacheDir.mkdirs(); + FileUtils.cleanDirectory(cacheDir); + Cache cache = new Cache(cacheDir, 100 * 1024L * 1024L); + + builder.cache(cache); + } + + return builder.build(); + } + + + /** + * This is a standard set of actions to be performed with each connector + * + * @throws Exception + */ + private void doTestActions() throws Exception { + rateLimitBefore = gitHub.getRateLimit(); + + String name = mockGitHub.getMethodName(); + + + GHRepository repo = getRepository(gitHub); + + // Testing behavior when nothing has changed. + pollForChange("Resetting"); + assertThat(getRepository(gitHub).getDescription(), is("Resetting")); + + repo.setDescription(name); + + pollForChange(name); + + // Test behavior after change + assertThat(getRepository(gitHub).getDescription(), is(name)); + + + // Get Tricky - make a change via a different client + if (mockGitHub.isUseProxy()) { + GHRepository altRepo = getRepository(gitHubBeforeAfter); + altRepo.setDescription("Tricky"); + } + + // Testing behavior after change + pollForChange("Tricky"); + } + + private void pollForChange(String name) throws IOException, InterruptedException { + getRepository(gitHub).getDescription(); + Thread.sleep(500); + getRepository(gitHub).getDescription(); + //This is only interesting when running the max-age=3 test which currently only runs with proxy + //Disabled to speed up the tests + if (mockGitHub.isUseProxy()) { + Thread.sleep(1000); + } + getRepository(gitHub).getDescription(); + //This is only interesting when running the max-age=3 test which currently only runs with proxy + //Disabled to speed up the tests + if (mockGitHub.isUseProxy()) { + Thread.sleep(4000); + } + } + + private static GHRepository getRepository(GitHub gitHub) throws IOException { + return gitHub.getOrganization("github-api-test-org").getRepository("github-api"); + } + +} diff --git a/src/test/java/org/kohsuke/github/junit/GitHubWireMockRule.java b/src/test/java/org/kohsuke/github/junit/GitHubWireMockRule.java new file mode 100644 index 0000000000..7d008fdfff --- /dev/null +++ b/src/test/java/org/kohsuke/github/junit/GitHubWireMockRule.java @@ -0,0 +1,255 @@ +package org.kohsuke.github.junit; + +import com.github.tomakehurst.wiremock.WireMockServer; +import com.github.tomakehurst.wiremock.client.VerificationException; +import com.github.tomakehurst.wiremock.client.WireMock; +import com.github.tomakehurst.wiremock.common.FileSource; +import com.github.tomakehurst.wiremock.core.Options; +import com.github.tomakehurst.wiremock.core.WireMockConfiguration; +import com.github.tomakehurst.wiremock.extension.Parameters; +import com.github.tomakehurst.wiremock.extension.ResponseTransformer; +import com.github.tomakehurst.wiremock.http.*; +import com.github.tomakehurst.wiremock.matching.RequestPatternBuilder; +import com.github.tomakehurst.wiremock.verification.*; +import com.google.gson.*; +import org.junit.rules.MethodRule; +import org.junit.rules.TestRule; +import org.junit.runner.Description; +import org.junit.runners.model.FrameworkMethod; +import org.junit.runners.model.Statement; + +import java.io.File; +import java.io.IOException; +import java.lang.reflect.Type; +import java.nio.file.Files; +import java.nio.file.Path; +import java.util.Collection; +import java.util.List; +import java.util.Map; + +import static com.github.tomakehurst.wiremock.client.WireMock.*; +import static com.github.tomakehurst.wiremock.common.Gzip.unGzipToString; + +/** + * The standard WireMockRule eagerly initializes a WireMockServer. + * This version suptakes a laze approach allowing us to automatically isolate snapshots + * for each method. + * + * @author Liam Newman + */ +public class GitHubWireMockRule extends WireMockMultiServerRule { + + // By default the wiremock tests will run without proxy or taking a snapshot. + // The tests will use only the stubbed data and will fail if requests are made for missing data. + // You can use the proxy without taking a snapshot while writing and debugging tests. + // You cannot take a snapshot without proxying. + private final static boolean takeSnapshot = System.getProperty("test.github.takeSnapshot", "false") != "false"; + private final static boolean useProxy = takeSnapshot || System.getProperty("test.github.useProxy", "false") != "false"; + + + public GitHubWireMockRule() { + this(WireMockConfiguration.options()); + } + + public GitHubWireMockRule(WireMockConfiguration options) { + this(options, true); + } + + public GitHubWireMockRule(WireMockConfiguration options, boolean failOnUnmatchedRequests) { + super(options, failOnUnmatchedRequests); + } + + public WireMockServer apiServer() { + return servers.get("default"); + } + + public WireMockServer rawServer() { + return servers.get("raw"); + } + + public boolean isUseProxy() { + return GitHubWireMockRule.useProxy; + } + + public boolean isTakeSnapshot() { + return GitHubWireMockRule.takeSnapshot; + } + + @Override + protected void initializeServers() { + super.initializeServers(); + initializeServer("raw"); + initializeServer("default", new GitHubApiResponseTransformer(this)); + } + + @Override + protected void before() { + super.before(); + if (isUseProxy()) { + this.apiServer().stubFor( + proxyAllTo("https://api.github.com") + .atPriority(100) + ); + this.rawServer().stubFor( + proxyAllTo("https://raw.githubusercontent.com") + .atPriority(100) + ); + } + } + + @Override + protected void after() { + super.after(); + if (isTakeSnapshot()) { + this.apiServer().snapshotRecord(recordSpec() + .forTarget("https://api.github.com") + .captureHeader("If-None-Match") + .extractTextBodiesOver(255)); + + this.rawServer().snapshotRecord(recordSpec() + .forTarget("https://raw.githubusercontent.com") + .captureHeader("If-None-Match") + .extractTextBodiesOver(255)); + + // After taking the snapshot, format the output + formatJsonFiles(new File(this.apiServer().getOptions().filesRoot().getPath()).toPath()); + + // For raw server, only fix up mapping files + formatJsonFiles(new File(this.rawServer().getOptions().filesRoot().child("mappings").getPath()).toPath()); + } + } + + public int getRequestCount() { + return getRequestCount(apiServer()); + } + + public static int getRequestCount(WireMockServer server) { + return server.countRequestsMatching(RequestPatternBuilder.allRequests().build()).getCount(); + } + + + private void formatJsonFiles(Path path) { + // The more consistent we can make the json output the more meaningful it will be. + Gson g = new Gson().newBuilder().serializeNulls().disableHtmlEscaping().setPrettyPrinting() + .registerTypeAdapter(Double.class, new JsonSerializer() { + @Override + public JsonElement serialize(Double src, Type typeOfSrc, JsonSerializationContext context) { + // Gson by default output numbers as doubles - 0.0 + // Remove the tailing .0, as most most numbers are integer value + if(src == src.longValue()) + return new JsonPrimitive(src.longValue()); + return new JsonPrimitive(src); + } + }) + .create(); + + try { + Files.walk(path) + .forEach(filePath -> { + try { + if (filePath.toString().endsWith(".json")) { + String fileText = new String(Files.readAllBytes(filePath)); + // while recording responses we replaced all github calls localhost + // now we reverse that for storage. + fileText = fileText + .replace(this.apiServer().baseUrl(), "https://api.github.com") + .replace(this.rawServer().baseUrl(), "https://raw.githubusercontent.com"); + // Can be Array or Map + Object parsedObject = g.fromJson(fileText, Object.class); + if (parsedObject instanceof Map && filePath.toString().contains("mappings")) { + filePath = renameMappingFile(filePath, (Map) parsedObject); + } + fileText = g.toJson(parsedObject); + Files.write(filePath, fileText.getBytes()); + } + } catch (Exception e) { + throw new RuntimeException("Files could not be written", e); + } + }); + } catch (IOException e) { + throw new RuntimeException("Files could not be written"); + } + } + + private Path renameMappingFile(Path filePath, Map parsedObject) throws IOException { + // Shorten the file names + // For understandability, rename the files to include the response order + Path targetPath = filePath; + String id = (String)parsedObject.getOrDefault("id", null); + Long insertionIndex = ((Double)parsedObject.getOrDefault("insertionIndex", 0.0)).longValue(); + if (id != null && insertionIndex > 0) { + String filePathString = filePath.toString(); + if (filePathString.contains(id)) { + targetPath = new File(filePathString.replace(id, insertionIndex.toString() + "-" + id.substring(0, 6))).toPath(); + Files.move(filePath, targetPath); + } + } + + return targetPath; + } + + + /** + * A number of modifications are needed as runtime to make responses + * target the WireMock server and not accidentally switch to using the live + * github servers. + */ + private static class GitHubApiResponseTransformer extends ResponseTransformer { + private final GitHubWireMockRule rule; + + public GitHubApiResponseTransformer(GitHubWireMockRule rule) { + this.rule = rule; + } + + @Override + public Response transform(Request request, Response response, FileSource files, + Parameters parameters) { + Response.Builder builder = Response.Builder.like(response); + Collection headers = response.getHeaders().all(); + + fixListTraversalHeader(response, headers); + + if ("application/json" + .equals(response.getHeaders().getContentTypeHeader().mimeTypePart())) { + + String body; + body = getBodyAsString(response, headers); + + builder.body(body + .replace("https://api.github.com", rule.apiServer().baseUrl()) + .replace("https://raw.githubusercontent.com", rule.rawServer().baseUrl())); + + } + builder.headers(new HttpHeaders(headers)); + + return builder.build(); + } + + private String getBodyAsString(Response response, Collection headers) { + String body; + if (response.getHeaders().getHeader("Content-Encoding").containsValue("gzip")) { + headers.removeIf(item -> item.keyEquals("Content-Encoding")); + body = unGzipToString(response.getBody()); + } else { + body = response.getBodyAsString(); + } + return body; + } + + private void fixListTraversalHeader(Response response, Collection headers) { + HttpHeader linkHeader = response.getHeaders().getHeader("Link"); + if (linkHeader.isPresent()) { + headers.removeIf(item -> item.keyEquals("Link")); + headers.add(HttpHeader.httpHeader("Link", linkHeader.firstValue() + .replace("https://api.github.com", + rule.apiServer().baseUrl()))); + } + } + + @Override + public String getName() { + return "github-api-url-rewrite"; + } + } + +} diff --git a/src/test/java/org/kohsuke/github/junit/WireMockMultiServerRule.java b/src/test/java/org/kohsuke/github/junit/WireMockMultiServerRule.java new file mode 100644 index 0000000000..660782272f --- /dev/null +++ b/src/test/java/org/kohsuke/github/junit/WireMockMultiServerRule.java @@ -0,0 +1,165 @@ +package org.kohsuke.github.junit; + +import com.github.tomakehurst.wiremock.WireMockServer; +import com.github.tomakehurst.wiremock.client.VerificationException; +import com.github.tomakehurst.wiremock.client.WireMock; +import com.github.tomakehurst.wiremock.core.Options; +import com.github.tomakehurst.wiremock.extension.Extension; +import com.github.tomakehurst.wiremock.verification.LoggedRequest; +import com.github.tomakehurst.wiremock.verification.NearMiss; +import org.junit.rules.MethodRule; +import org.junit.rules.TestRule; +import org.junit.runner.Description; +import org.junit.runners.model.FrameworkMethod; +import org.junit.runners.model.Statement; + +import java.io.File; +import java.util.HashMap; +import java.util.List; +import java.util.Map; + +/** + * The standard WireMockRule eagerly initializes a WireMockServer. + * This version supports multiple servers in one rule and + * takes a lazy approach to intitialization allowing us to + * isolate files snapshots for each method. + * + * @author Liam Newman + */ +public class WireMockMultiServerRule implements MethodRule, TestRule { + + protected final Map servers = new HashMap<>(); + private boolean failOnUnmatchedRequests; + private final Options options; + + public String getMethodName() { + return methodName; + } + + private String methodName = null; + + + public WireMockMultiServerRule(Options options) { + this(options, true); + } + + public WireMockMultiServerRule(Options options, boolean failOnUnmatchedRequests) { + this.options = options; + this.failOnUnmatchedRequests = failOnUnmatchedRequests; + } + + public WireMockMultiServerRule() { + this(WireMockRuleConfiguration.wireMockConfig()); + } + + public Statement apply(Statement base, Description description) { + return this.apply(base, description.getMethodName()); + } + + public Statement apply(final Statement base, FrameworkMethod method, Object target) { + return this.apply(base, method.getName()); + } + + private Statement apply(final Statement base, final String methodName) { + return new Statement() { + public void evaluate() throws Throwable { + WireMockMultiServerRule.this.methodName = methodName; + initializeServers(); + WireMock.configureFor("localhost", + WireMockMultiServerRule.this.servers.get("default").port()); + + try { + WireMockMultiServerRule.this.before(); + base.evaluate(); + WireMockMultiServerRule.this.checkForUnmatchedRequests(); + } finally { + WireMockMultiServerRule.this.after(); + WireMockMultiServerRule.this.stop(); + WireMockMultiServerRule.this.methodName = null; + WireMockMultiServerRule.this.servers.clear(); + } + + } + }; + } + + protected void initializeServers() { + } + + protected final void initializeServer(String serverId, Extension... extensions) { + String directoryName = methodName; + if (!serverId.equals("default")) { + directoryName += "_" + serverId; + } + + final Options localOptions = new WireMockRuleConfiguration( + WireMockMultiServerRule.this.options, + directoryName, extensions); + + new File(localOptions.filesRoot().getPath(), "mappings").mkdirs(); + new File(localOptions.filesRoot().getPath(), "__files").mkdirs(); + + WireMockServer server = new WireMockServer(localOptions); + this.servers.put(serverId, server); + server.start(); + + if (!serverId.equals("default")) { + WireMock.configureFor("localhost", server.port()); + } + } + + protected void before() { + } + + protected void after() { + } + + private void checkForUnmatchedRequests() { + servers.values().forEach(server -> checkForUnmatchedRequests(server)); + } + + private void checkForUnmatchedRequests(WireMockServer server) { + if (this.failOnUnmatchedRequests) { + List unmatchedRequests = server.findAllUnmatchedRequests(); + if (!unmatchedRequests.isEmpty()) { + List nearMisses = server.findNearMissesForAllUnmatchedRequests(); + if (nearMisses.isEmpty()) { + throw VerificationException.forUnmatchedRequests(unmatchedRequests); + } + + throw VerificationException.forUnmatchedNearMisses(nearMisses); + } + } + + } + + private boolean deleteEmptyFolders(File path) { + boolean deleteable = path.isDirectory(); + if (deleteable) { + for (File file : path.listFiles()) { + // if at any point in tree we find something we can't delete + // we don't need to keep + if (!deleteEmptyFolders(file)) { + deleteable = false; + } + } + + if (deleteable) { + deleteable = deleteable && path.delete(); + } + } + return deleteable; + + } + + private void stop() { + servers.values().forEach(server -> { + server.stop(); + // server left behinds empty folders delete them + deleteEmptyFolders(new File(server.getOptions().filesRoot().getPath())); + }); + } + + + +} diff --git a/src/test/java/org/kohsuke/github/junit/WireMockRule.java b/src/test/java/org/kohsuke/github/junit/WireMockRule.java new file mode 100644 index 0000000000..aa60691379 --- /dev/null +++ b/src/test/java/org/kohsuke/github/junit/WireMockRule.java @@ -0,0 +1,413 @@ +package org.kohsuke.github.junit; + +import com.github.tomakehurst.wiremock.WireMockServer; +import com.github.tomakehurst.wiremock.admin.model.*; +import com.github.tomakehurst.wiremock.client.MappingBuilder; +import com.github.tomakehurst.wiremock.client.VerificationException; +import com.github.tomakehurst.wiremock.client.WireMock; +import com.github.tomakehurst.wiremock.common.*; +import com.github.tomakehurst.wiremock.core.*; +import com.github.tomakehurst.wiremock.extension.Extension; +import com.github.tomakehurst.wiremock.global.GlobalSettings; +import com.github.tomakehurst.wiremock.global.GlobalSettingsHolder; +import com.github.tomakehurst.wiremock.http.CaseInsensitiveKey; +import com.github.tomakehurst.wiremock.http.HttpServerFactory; +import com.github.tomakehurst.wiremock.http.RequestListener; +import com.github.tomakehurst.wiremock.http.ThreadPoolFactory; +import com.github.tomakehurst.wiremock.http.trafficlistener.WiremockNetworkTrafficListener; +import com.github.tomakehurst.wiremock.junit.Stubbing; +import com.github.tomakehurst.wiremock.matching.RequestPattern; +import com.github.tomakehurst.wiremock.matching.RequestPatternBuilder; +import com.github.tomakehurst.wiremock.matching.StringValuePattern; +import com.github.tomakehurst.wiremock.recording.RecordSpec; +import com.github.tomakehurst.wiremock.recording.RecordSpecBuilder; +import com.github.tomakehurst.wiremock.recording.RecordingStatusResult; +import com.github.tomakehurst.wiremock.recording.SnapshotRecordResult; +import com.github.tomakehurst.wiremock.security.Authenticator; +import com.github.tomakehurst.wiremock.standalone.JsonFileMappingsSource; +import com.github.tomakehurst.wiremock.standalone.MappingsLoader; +import com.github.tomakehurst.wiremock.standalone.MappingsSource; +import com.github.tomakehurst.wiremock.stubbing.ServeEvent; +import com.github.tomakehurst.wiremock.stubbing.StubImport; +import com.github.tomakehurst.wiremock.stubbing.StubMapping; +import com.github.tomakehurst.wiremock.verification.*; + +import java.io.File; +import java.util.List; +import java.util.Map; +import java.util.UUID; + +import com.github.tomakehurst.wiremock.verification.notmatched.NotMatchedRenderer; +import org.junit.rules.MethodRule; +import org.junit.rules.TestRule; +import org.junit.runner.Description; +import org.junit.runners.model.FrameworkMethod; +import org.junit.runners.model.Statement; +import wiremock.com.google.common.base.Optional; + +/** + * @author Liam Newman + */ +public class WireMockRule implements MethodRule, TestRule, Container, Stubbing, Admin { + + private WireMockServer wireMockServer; + private boolean failOnUnmatchedRequests; + private final Options options; + + public String getMethodName() { + return methodName; + } + + private String methodName = null; + + public WireMockRule(Options options) { + this(options, true); + } + + public WireMockRule(Options options, boolean failOnUnmatchedRequests) { + this.options = options; + this.failOnUnmatchedRequests = failOnUnmatchedRequests; + } + + public WireMockRule(int port) { + this(WireMockConfiguration.wireMockConfig().port(port)); + } + + public WireMockRule(int port, Integer httpsPort) { + this(WireMockConfiguration.wireMockConfig().port(port).httpsPort(httpsPort)); + } + + public WireMockRule() { + this(WireMockRuleConfiguration.wireMockConfig()); + } + + public Statement apply(Statement base, Description description) { + return this.apply(base, description.getMethodName()); + } + + public Statement apply(final Statement base, FrameworkMethod method, Object target) { + return this.apply(base, method.getName()); + } + + private Statement apply(final Statement base, final String methodName) { + return new Statement() { + public void evaluate() throws Throwable { + WireMockRule.this.methodName = methodName; + final Options localOptions = new WireMockRuleConfiguration( + WireMockRule.this.options, + methodName); + + new File(localOptions.filesRoot().getPath(), "mappings").mkdirs(); + new File(localOptions.filesRoot().getPath(), "__files").mkdirs(); + + WireMockRule.this.wireMockServer = new WireMockServer(localOptions); + WireMockRule.this.start(); + WireMock.configureFor("localhost", WireMockRule.this.port()); + + try { + WireMockRule.this.before(); + base.evaluate(); + WireMockRule.this.checkForUnmatchedRequests(); + } finally { + WireMockRule.this.after(); + WireMockRule.this.stop(); + WireMockRule.this.methodName = null; + } + + } + }; + } + + private void checkForUnmatchedRequests() { + if (this.failOnUnmatchedRequests) { + List unmatchedRequests = this.findAllUnmatchedRequests(); + if (!unmatchedRequests.isEmpty()) { + List nearMisses = this.findNearMissesForAllUnmatchedRequests(); + if (nearMisses.isEmpty()) { + throw VerificationException.forUnmatchedRequests(unmatchedRequests); + } + + throw VerificationException.forUnmatchedNearMisses(nearMisses); + } + } + + } + + protected void before() { + } + + protected void after() { + } + + public void loadMappingsUsing(MappingsLoader mappingsLoader) { + wireMockServer.loadMappingsUsing(mappingsLoader); + } + + public GlobalSettingsHolder getGlobalSettingsHolder() { + return wireMockServer.getGlobalSettingsHolder(); + } + + public void addMockServiceRequestListener(RequestListener listener) { + wireMockServer.addMockServiceRequestListener(listener); + } + + public void enableRecordMappings(FileSource mappingsFileSource, FileSource filesFileSource) { + wireMockServer.enableRecordMappings(mappingsFileSource, filesFileSource); + } + + public void stop() { + wireMockServer.stop(); + } + + public void start() { + wireMockServer.start(); + } + + public void shutdown() { + wireMockServer.shutdown(); + } + + public int port() { + return wireMockServer.port(); + } + + public int httpsPort() { + return wireMockServer.httpsPort(); + } + + public String url(String path) { + return wireMockServer.url(path); + } + + public String baseUrl() { + return wireMockServer.baseUrl(); + } + + public boolean isRunning() { + return wireMockServer.isRunning(); + } + + public StubMapping givenThat(MappingBuilder mappingBuilder) { + return wireMockServer.givenThat(mappingBuilder); + } + + public StubMapping stubFor(MappingBuilder mappingBuilder) { + return wireMockServer.stubFor(mappingBuilder); + } + + public void editStub(MappingBuilder mappingBuilder) { + wireMockServer.editStub(mappingBuilder); + } + + public void removeStub(MappingBuilder mappingBuilder) { + wireMockServer.removeStub(mappingBuilder); + } + + public void removeStub(StubMapping stubMapping) { + wireMockServer.removeStub(stubMapping); + } + + public List getStubMappings() { + return wireMockServer.getStubMappings(); + } + + public StubMapping getSingleStubMapping(UUID id) { + return wireMockServer.getSingleStubMapping(id); + } + + public List findStubMappingsByMetadata(StringValuePattern pattern) { + return wireMockServer.findStubMappingsByMetadata(pattern); + } + + public void removeStubMappingsByMetadata(StringValuePattern pattern) { + wireMockServer.removeStubMappingsByMetadata(pattern); + } + + public void removeStubMapping(StubMapping stubMapping) { + wireMockServer.removeStubMapping(stubMapping); + } + + public void verify(RequestPatternBuilder requestPatternBuilder) { + wireMockServer.verify(requestPatternBuilder); + } + + public void verify(int count, RequestPatternBuilder requestPatternBuilder) { + wireMockServer.verify(count, requestPatternBuilder); + } + + public List findAll(RequestPatternBuilder requestPatternBuilder) { + return wireMockServer.findAll(requestPatternBuilder); + } + + public List getAllServeEvents() { + return wireMockServer.getAllServeEvents(); + } + + public void setGlobalFixedDelay(int milliseconds) { + wireMockServer.setGlobalFixedDelay(milliseconds); + } + + public List findAllUnmatchedRequests() { + return wireMockServer.findAllUnmatchedRequests(); + } + + public List findNearMissesForAllUnmatchedRequests() { + return wireMockServer.findNearMissesForAllUnmatchedRequests(); + } + + public List findAllNearMissesFor(RequestPatternBuilder requestPatternBuilder) { + return wireMockServer.findAllNearMissesFor(requestPatternBuilder); + } + + public List findNearMissesFor(LoggedRequest loggedRequest) { + return wireMockServer.findNearMissesFor(loggedRequest); + } + + public void addStubMapping(StubMapping stubMapping) { + wireMockServer.addStubMapping(stubMapping); + } + + public void editStubMapping(StubMapping stubMapping) { + wireMockServer.editStubMapping(stubMapping); + } + + public ListStubMappingsResult listAllStubMappings() { + return wireMockServer.listAllStubMappings(); + } + + public SingleStubMappingResult getStubMapping(UUID id) { + return wireMockServer.getStubMapping(id); + } + + public void saveMappings() { + wireMockServer.saveMappings(); + } + + public void resetAll() { + wireMockServer.resetAll(); + } + + public void resetRequests() { + wireMockServer.resetRequests(); + } + + public void resetToDefaultMappings() { + wireMockServer.resetToDefaultMappings(); + } + + public GetServeEventsResult getServeEvents() { + return wireMockServer.getServeEvents(); + } + + public SingleServedStubResult getServedStub(UUID id) { + return wireMockServer.getServedStub(id); + } + + public void resetScenarios() { + wireMockServer.resetScenarios(); + } + + public void resetMappings() { + wireMockServer.resetMappings(); + } + + public VerificationResult countRequestsMatching(RequestPattern requestPattern) { + return wireMockServer.countRequestsMatching(requestPattern); + } + + public FindRequestsResult findRequestsMatching(RequestPattern requestPattern) { + return wireMockServer.findRequestsMatching(requestPattern); + } + + public FindRequestsResult findUnmatchedRequests() { + return wireMockServer.findUnmatchedRequests(); + } + + public void removeServeEvent(UUID uuid) { + wireMockServer.removeServeEvent(uuid); + } + + public FindServeEventsResult removeServeEventsMatching(RequestPattern requestPattern) { + return wireMockServer.removeServeEventsMatching(requestPattern); + } + + public FindServeEventsResult removeServeEventsForStubsMatchingMetadata(StringValuePattern stringValuePattern) { + return wireMockServer.removeServeEventsForStubsMatchingMetadata(stringValuePattern); + } + + public void updateGlobalSettings(GlobalSettings newSettings) { + wireMockServer.updateGlobalSettings(newSettings); + } + + public FindNearMissesResult findNearMissesForUnmatchedRequests() { + return wireMockServer.findNearMissesForUnmatchedRequests(); + } + + public GetScenariosResult getAllScenarios() { + return wireMockServer.getAllScenarios(); + } + + public FindNearMissesResult findTopNearMissesFor(LoggedRequest loggedRequest) { + return wireMockServer.findTopNearMissesFor(loggedRequest); + } + + public FindNearMissesResult findTopNearMissesFor(RequestPattern requestPattern) { + return wireMockServer.findTopNearMissesFor(requestPattern); + } + + public void startRecording(String targetBaseUrl) { + wireMockServer.startRecording(targetBaseUrl); + } + + public void startRecording(RecordSpec spec) { + wireMockServer.startRecording(spec); + } + + public void startRecording(RecordSpecBuilder recordSpec) { + wireMockServer.startRecording(recordSpec); + } + + public SnapshotRecordResult stopRecording() { + return wireMockServer.stopRecording(); + } + + public RecordingStatusResult getRecordingStatus() { + return wireMockServer.getRecordingStatus(); + } + + public SnapshotRecordResult snapshotRecord() { + return wireMockServer.snapshotRecord(); + } + + public SnapshotRecordResult snapshotRecord(RecordSpecBuilder spec) { + return wireMockServer.snapshotRecord(spec); + } + + public SnapshotRecordResult snapshotRecord(RecordSpec spec) { + return wireMockServer.snapshotRecord(spec); + } + + public Options getOptions() { + return wireMockServer.getOptions(); + } + + public void shutdownServer() { + wireMockServer.shutdownServer(); + } + + public ListStubMappingsResult findAllStubsByMetadata(StringValuePattern pattern) { + return wireMockServer.findAllStubsByMetadata(pattern); + } + + public void removeStubsByMetadata(StringValuePattern pattern) { + wireMockServer.removeStubsByMetadata(pattern); + } + + public void importStubs(StubImport stubImport) { + wireMockServer.importStubs(stubImport); + } + + public GetGlobalSettingsResult getGlobalSettings() { + return wireMockServer.getGlobalSettings(); + } +} diff --git a/src/test/java/org/kohsuke/github/junit/WireMockRuleConfiguration.java b/src/test/java/org/kohsuke/github/junit/WireMockRuleConfiguration.java new file mode 100644 index 0000000000..330afc2aaf --- /dev/null +++ b/src/test/java/org/kohsuke/github/junit/WireMockRuleConfiguration.java @@ -0,0 +1,176 @@ +package org.kohsuke.github.junit; + +import com.github.tomakehurst.wiremock.common.*; +import com.github.tomakehurst.wiremock.core.MappingsSaver; +import com.github.tomakehurst.wiremock.core.Options; +import com.github.tomakehurst.wiremock.core.WireMockConfiguration; +import com.github.tomakehurst.wiremock.extension.Extension; +import com.github.tomakehurst.wiremock.extension.ExtensionLoader; +import com.github.tomakehurst.wiremock.http.CaseInsensitiveKey; +import com.github.tomakehurst.wiremock.http.HttpServerFactory; +import com.github.tomakehurst.wiremock.http.ThreadPoolFactory; +import com.github.tomakehurst.wiremock.http.trafficlistener.WiremockNetworkTrafficListener; +import com.github.tomakehurst.wiremock.security.Authenticator; +import com.github.tomakehurst.wiremock.standalone.JsonFileMappingsSource; +import com.github.tomakehurst.wiremock.standalone.MappingsLoader; +import com.github.tomakehurst.wiremock.standalone.MappingsSource; +import com.github.tomakehurst.wiremock.verification.notmatched.NotMatchedRenderer; +import wiremock.com.google.common.base.Optional; +import wiremock.com.google.common.collect.Maps; + +import java.util.Arrays; +import java.util.List; +import java.util.Map; + +public class WireMockRuleConfiguration implements Options { + + private final Options parent; + private final String childDirectory; + private MappingsSource mappingsSource; + private Map extensions = Maps.newLinkedHashMap(); + + WireMockRuleConfiguration() { + this(WireMockConfiguration.options(), null); + } + + WireMockRuleConfiguration(Options parent, String childDirectory, Extension... extensionInstances) { + this.parent = parent; + this.childDirectory = childDirectory; + this.extensions.putAll(ExtensionLoader.asMap(Arrays.asList(extensionInstances))); + } + + public static WireMockRuleConfiguration wireMockConfig() { + return new WireMockRuleConfiguration(); + } + + public static WireMockRuleConfiguration options() { + return wireMockConfig(); + } + + public WireMockRuleConfiguration forChildPath(String childPath) { + return new WireMockRuleConfiguration(this, childPath); + } + + private MappingsSource getMappingsSource() { + if (this.mappingsSource == null) { + this.mappingsSource = new JsonFileMappingsSource(this.filesRoot().child("mappings")); + } + + return this.mappingsSource; + } + + public FileSource filesRoot() { + return childDirectory != null ? parent.filesRoot().child(childDirectory) : parent.filesRoot(); + } + + public MappingsLoader mappingsLoader() { + return this.getMappingsSource(); + } + + public MappingsSaver mappingsSaver() { + return this.getMappingsSource(); + } + + public WireMockRuleConfiguration mappingSource(MappingsSource mappingsSource) { + this.mappingsSource = mappingsSource; + return this; + } + + public Map extensionsOfType(Class extensionType) { + Map result = Maps.newLinkedHashMap(this.parent.extensionsOfType(extensionType)); + result.putAll((Map)Maps.filterEntries(this.extensions, ExtensionLoader.valueAssignableFrom(extensionType))); + return result; + } + + + // Simple wrappers + + + public int portNumber() { + return parent.portNumber(); + } + + public int containerThreads() { + return parent.containerThreads(); + } + + public HttpsSettings httpsSettings() { + return parent.httpsSettings(); + } + + public JettySettings jettySettings() { + return parent.jettySettings(); + } + + public boolean browserProxyingEnabled() { + return parent.browserProxyingEnabled(); + } + + public ProxySettings proxyVia() { + return parent.proxyVia(); + } + + public Notifier notifier() { + return parent.notifier(); + } + + public boolean requestJournalDisabled() { + return parent.requestJournalDisabled(); + } + + public Optional maxRequestJournalEntries() { + return parent.maxRequestJournalEntries(); + } + + public String bindAddress() { + return parent.bindAddress(); + } + + public List matchingHeaders() { + return parent.matchingHeaders(); + } + + public HttpServerFactory httpServerFactory() { + return parent.httpServerFactory(); + } + + public ThreadPoolFactory threadPoolFactory() { + return parent.threadPoolFactory(); + } + + public boolean shouldPreserveHostHeader() { + return parent.shouldPreserveHostHeader(); + } + + public String proxyHostHeader() { + return parent.proxyHostHeader(); + } + + public WiremockNetworkTrafficListener networkTrafficListener() { + return parent.networkTrafficListener(); + } + + public Authenticator getAdminAuthenticator() { + return parent.getAdminAuthenticator(); + } + + public boolean getHttpsRequiredForAdminApi() { + return parent.getHttpsRequiredForAdminApi(); + } + + public NotMatchedRenderer getNotMatchedRenderer() { + return parent.getNotMatchedRenderer(); + } + + public AsynchronousResponseSettings getAsynchronousResponseSettings() { + return parent.getAsynchronousResponseSettings(); + } + + public ChunkedEncodingPolicy getChunkedEncodingPolicy() { + return parent.getChunkedEncodingPolicy(); + } + + public boolean getGzipDisabled() { + return parent.getGzipDisabled(); + } +} diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/blob/__files/repos_github-api_github-api-db8eacb0-947c-4677-9780-1c1d1b8383eb.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/blob/__files/repos_github-api_github-api-db8eacb0-947c-4677-9780-1c1d1b8383eb.json new file mode 100644 index 0000000000..29eeabe7c9 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/blob/__files/repos_github-api_github-api-db8eacb0-947c-4677-9780-1c1d1b8383eb.json @@ -0,0 +1,130 @@ +{ + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-10-25T01:32:16Z", + "pushed_at": "2019-10-25T16:41:09Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 13494, + "stargazers_count": 565, + "watchers_count": 565, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 433, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 64, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 433, + "open_issues": 64, + "watchers": 565, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "network_count": 433, + "subscribers_count": 48 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/blob/__files/repos_github-api_github-api_git_blobs_a12243f2fc5b8c2ba47dd677d0b0c7583539584d-6408bcc8-3cd2-4e1a-a25b-a9fdc81972e8.txt b/src/test/resources/org/kohsuke/github/AppTest/wiremock/blob/__files/repos_github-api_github-api_git_blobs_a12243f2fc5b8c2ba47dd677d0b0c7583539584d-6408bcc8-3cd2-4e1a-a25b-a9fdc81972e8.txt new file mode 100644 index 0000000000..a12243f2fc --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/blob/__files/repos_github-api_github-api_git_blobs_a12243f2fc5b8c2ba47dd677d0b0c7583539584d-6408bcc8-3cd2-4e1a-a25b-a9fdc81972e8.txt @@ -0,0 +1,22 @@ + Copyright (c) 2011- Kohsuke Kawaguchi and other contributors + + Permission is hereby granted, free of charge, to any person + obtaining a copy of this software and associated documentation + files (the "Software"), to deal in the Software without + restriction, including without limitation the rights to use, + copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the + Software is furnished to do so, subject to the following + conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES + OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT + HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, + WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR + OTHER DEALINGS IN THE SOFTWARE. diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/blob/__files/repos_github-api_github-api_git_blobs_a12243f2fc5b8c2ba47dd677d0b0c7583539584d-72e1ca23-1f03-45b5-90a2-e6dd6467b2f9.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/blob/__files/repos_github-api_github-api_git_blobs_a12243f2fc5b8c2ba47dd677d0b0c7583539584d-72e1ca23-1f03-45b5-90a2-e6dd6467b2f9.json new file mode 100644 index 0000000000..240659bce2 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/blob/__files/repos_github-api_github-api_git_blobs_a12243f2fc5b8c2ba47dd677d0b0c7583539584d-72e1ca23-1f03-45b5-90a2-e6dd6467b2f9.json @@ -0,0 +1,8 @@ +{ + "sha": "a12243f2fc5b8c2ba47dd677d0b0c7583539584d", + "node_id": "MDQ6QmxvYjYxNzIxMDphMTIyNDNmMmZjNWI4YzJiYTQ3ZGQ2NzdkMGIwYzc1ODM1Mzk1ODRk", + "size": 1104, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a12243f2fc5b8c2ba47dd677d0b0c7583539584d", + "content": "IENvcHlyaWdodCAoYykgMjAxMS0gS29oc3VrZSBLYXdhZ3VjaGkgYW5kIG90\naGVyIGNvbnRyaWJ1dG9ycwoKIFBlcm1pc3Npb24gaXMgaGVyZWJ5IGdyYW50\nZWQsIGZyZWUgb2YgY2hhcmdlLCB0byBhbnkgcGVyc29uCiBvYnRhaW5pbmcg\nYSBjb3B5IG9mIHRoaXMgc29mdHdhcmUgYW5kIGFzc29jaWF0ZWQgZG9jdW1l\nbnRhdGlvbgogZmlsZXMgKHRoZSAiU29mdHdhcmUiKSwgdG8gZGVhbCBpbiB0\naGUgU29mdHdhcmUgd2l0aG91dAogcmVzdHJpY3Rpb24sIGluY2x1ZGluZyB3\naXRob3V0IGxpbWl0YXRpb24gdGhlIHJpZ2h0cyB0byB1c2UsCiBjb3B5LCBt\nb2RpZnksIG1lcmdlLCBwdWJsaXNoLCBkaXN0cmlidXRlLCBzdWJsaWNlbnNl\nLCBhbmQvb3Igc2VsbAogY29waWVzIG9mIHRoZSBTb2Z0d2FyZSwgYW5kIHRv\nIHBlcm1pdCBwZXJzb25zIHRvIHdob20gdGhlCiBTb2Z0d2FyZSBpcyBmdXJu\naXNoZWQgdG8gZG8gc28sIHN1YmplY3QgdG8gdGhlIGZvbGxvd2luZwogY29u\nZGl0aW9uczoKCiBUaGUgYWJvdmUgY29weXJpZ2h0IG5vdGljZSBhbmQgdGhp\ncyBwZXJtaXNzaW9uIG5vdGljZSBzaGFsbCBiZQogaW5jbHVkZWQgaW4gYWxs\nIGNvcGllcyBvciBzdWJzdGFudGlhbCBwb3J0aW9ucyBvZiB0aGUgU29mdHdh\ncmUuCgogVEhFIFNPRlRXQVJFIElTIFBST1ZJREVEICJBUyBJUyIsIFdJVEhP\nVVQgV0FSUkFOVFkgT0YgQU5ZIEtJTkQsCiBFWFBSRVNTIE9SIElNUExJRUQs\nIElOQ0xVRElORyBCVVQgTk9UIExJTUlURUQgVE8gVEhFIFdBUlJBTlRJRVMK\nIE9GIE1FUkNIQU5UQUJJTElUWSwgRklUTkVTUyBGT1IgQSBQQVJUSUNVTEFS\nIFBVUlBPU0UgQU5ECiBOT05JTkZSSU5HRU1FTlQuIElOIE5PIEVWRU5UIFNI\nQUxMIFRIRSBBVVRIT1JTIE9SIENPUFlSSUdIVAogSE9MREVSUyBCRSBMSUFC\nTEUgRk9SIEFOWSBDTEFJTSwgREFNQUdFUyBPUiBPVEhFUiBMSUFCSUxJVFks\nCiBXSEVUSEVSIElOIEFOIEFDVElPTiBPRiBDT05UUkFDVCwgVE9SVCBPUiBP\nVEhFUldJU0UsIEFSSVNJTkcKIEZST00sIE9VVCBPRiBPUiBJTiBDT05ORUNU\nSU9OIFdJVEggVEhFIFNPRlRXQVJFIE9SIFRIRSBVU0UgT1IKIE9USEVSIERF\nQUxJTkdTIElOIFRIRSBTT0ZUV0FSRS4K\n", + "encoding": "base64" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/blob/__files/user-8996d059-e95f-4604-a534-b734e99d9e15.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/blob/__files/user-8996d059-e95f-4604-a534-b734e99d9e15.json new file mode 100644 index 0000000000..a4b576e8a7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/blob/__files/user-8996d059-e95f-4604-a534-b734e99d9e15.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 169, + "public_gists": 7, + "followers": 139, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/blob/mappings/repos_github-api_github-api-2-db8eac.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/blob/mappings/repos_github-api_github-api-2-db8eac.json new file mode 100644 index 0000000000..36e9fe2fb0 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/blob/mappings/repos_github-api_github-api-2-db8eac.json @@ -0,0 +1,43 @@ +{ + "id": "db8eacb0-947c-4677-9780-1c1d1b8383eb", + "name": "repos_github-api_github-api", + "request": { + "url": "/repos/github-api/github-api", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api_github-api-db8eacb0-947c-4677-9780-1c1d1b8383eb.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:28 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4352", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"c1a01d01a6354d93b3cc6098e0b2d047\"", + "Last-Modified": "Fri, 25 Oct 2019 01:32:16 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAD0:98FF:9ED63E:BB8EED:5DB3A13B" + } + }, + "uuid": "db8eacb0-947c-4677-9780-1c1d1b8383eb", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/blob/mappings/repos_github-api_github-api_git_blobs_a12243f2fc5b8c2ba47dd677d0b0c7583539584d-3-6408bc.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/blob/mappings/repos_github-api_github-api_git_blobs_a12243f2fc5b8c2ba47dd677d0b0c7583539584d-3-6408bc.json new file mode 100644 index 0000000000..a6a3883ff1 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/blob/mappings/repos_github-api_github-api_git_blobs_a12243f2fc5b8c2ba47dd677d0b0c7583539584d-3-6408bc.json @@ -0,0 +1,45 @@ +{ + "id": "6408bcc8-3cd2-4e1a-a25b-a9fdc81972e8", + "name": "repos_github-api_github-api_git_blobs_a12243f2fc5b8c2ba47dd677d0b0c7583539584d", + "request": { + "url": "/repos/github-api/github-api/git/blobs/a12243f2fc5b8c2ba47dd677d0b0c7583539584d", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api_github-api_git_blobs_a12243f2fc5b8c2ba47dd677d0b0c7583539584d-6408bcc8-3cd2-4e1a-a25b-a9fdc81972e8.txt", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:28 GMT", + "Content-Type": "text/plain; charset=iso-8859-1", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4351", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"ffa971e80b5300a0fc0164a3114acb0f\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAD0:98FF:9ED64E:BB8F10:5DB3A13C" + } + }, + "uuid": "6408bcc8-3cd2-4e1a-a25b-a9fdc81972e8", + "persistent": true, + "scenarioName": "scenario-1-repos-github-api-github-api-git-blobs-a12243f2fc5b8c2ba47dd677d0b0c7583539584d", + "requiredScenarioState": "Started", + "newScenarioState": "scenario-1-repos-github-api-github-api-git-blobs-a12243f2fc5b8c2ba47dd677d0b0c7583539584d-2", + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/blob/mappings/repos_github-api_github-api_git_blobs_a12243f2fc5b8c2ba47dd677d0b0c7583539584d-4-72e1ca.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/blob/mappings/repos_github-api_github-api_git_blobs_a12243f2fc5b8c2ba47dd677d0b0c7583539584d-4-72e1ca.json new file mode 100644 index 0000000000..2b63644a63 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/blob/mappings/repos_github-api_github-api_git_blobs_a12243f2fc5b8c2ba47dd677d0b0c7583539584d-4-72e1ca.json @@ -0,0 +1,44 @@ +{ + "id": "72e1ca23-1f03-45b5-90a2-e6dd6467b2f9", + "name": "repos_github-api_github-api_git_blobs_a12243f2fc5b8c2ba47dd677d0b0c7583539584d", + "request": { + "url": "/repos/github-api/github-api/git/blobs/a12243f2fc5b8c2ba47dd677d0b0c7583539584d", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api_github-api_git_blobs_a12243f2fc5b8c2ba47dd677d0b0c7583539584d-72e1ca23-1f03-45b5-90a2-e6dd6467b2f9.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:28 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4350", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"89459bc4c8c6c982a48ccd6cb6060fff\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAD0:98FF:9ED65A:BB8F1C:5DB3A13C" + } + }, + "uuid": "72e1ca23-1f03-45b5-90a2-e6dd6467b2f9", + "persistent": true, + "scenarioName": "scenario-1-repos-github-api-github-api-git-blobs-a12243f2fc5b8c2ba47dd677d0b0c7583539584d", + "requiredScenarioState": "scenario-1-repos-github-api-github-api-git-blobs-a12243f2fc5b8c2ba47dd677d0b0c7583539584d-2", + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/blob/mappings/user-1-8996d0.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/blob/mappings/user-1-8996d0.json new file mode 100644 index 0000000000..7855e2131e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/blob/mappings/user-1-8996d0.json @@ -0,0 +1,43 @@ +{ + "id": "8996d059-e95f-4604-a534-b734e99d9e15", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-8996d059-e95f-4604-a534-b734e99d9e15.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:27 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4354", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"8c3d3dcf6fc5f9edaf26c902295396e5\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAD0:98FF:9ED62C:BB8EE6:5DB3A13B" + } + }, + "uuid": "8996d059-e95f-4604-a534-b734e99d9e15", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/directoryListing/__files/repos_jenkinsci_jenkins-448d3f92-8488-4c5c-a81b-ca22a6039b39.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/directoryListing/__files/repos_jenkinsci_jenkins-448d3f92-8488-4c5c-a81b-ca22a6039b39.json new file mode 100644 index 0000000000..5f1a035df0 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/directoryListing/__files/repos_jenkinsci_jenkins-448d3f92-8488-4c5c-a81b-ca22a6039b39.json @@ -0,0 +1,127 @@ +{ + "id": 1103607, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTAzNjA3", + "name": "jenkins", + "full_name": "jenkinsci/jenkins", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jenkins", + "description": "Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jenkins", + "forks_url": "https://api.github.com/repos/jenkinsci/jenkins/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jenkins/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jenkins/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jenkins/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jenkins/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jenkins/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jenkins/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jenkins/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jenkins/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jenkins/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jenkins/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jenkins/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jenkins/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jenkins/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jenkins/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jenkins/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jenkins/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jenkins/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jenkins/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jenkins/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jenkins/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jenkins/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jenkins/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jenkins/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jenkins/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jenkins/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jenkins/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jenkins/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jenkins/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jenkins/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jenkins/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jenkins/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jenkins/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jenkins/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jenkins/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jenkins/deployments", + "created_at": "2010-11-22T21:21:23Z", + "updated_at": "2019-10-26T01:07:22Z", + "pushed_at": "2019-10-25T16:17:56Z", + "git_url": "git://github.com/jenkinsci/jenkins.git", + "ssh_url": "git@github.com:jenkinsci/jenkins.git", + "clone_url": "https://github.com/jenkinsci/jenkins.git", + "svn_url": "https://github.com/jenkinsci/jenkins", + "homepage": "https://jenkins.io/", + "size": 113287, + "stargazers_count": 14167, + "watchers_count": 14167, + "language": "Java", + "has_issues": false, + "has_projects": false, + "has_downloads": false, + "has_wiki": false, + "has_pages": false, + "forks_count": 5807, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 74, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 5807, + "open_issues": 74, + "watchers": 14167, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + }, + "organization": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "network_count": 5807, + "subscribers_count": 902 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/directoryListing/__files/repos_jenkinsci_jenkins_contents_core-7e1b6c60-f829-4e6a-a1e5-089cebc4e1c7.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/directoryListing/__files/repos_jenkinsci_jenkins_contents_core-7e1b6c60-f829-4e6a-a1e5-089cebc4e1c7.json new file mode 100644 index 0000000000..58fb4ae952 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/directoryListing/__files/repos_jenkinsci_jenkins_contents_core-7e1b6c60-f829-4e6a-a1e5-089cebc4e1c7.json @@ -0,0 +1,66 @@ +[ + { + "name": "move-l10n.groovy", + "path": "core/move-l10n.groovy", + "sha": "8d002348827a6c76ec3b4832278384c74a91d692", + "size": 1560, + "url": "https://api.github.com/repos/jenkinsci/jenkins/contents/core/move-l10n.groovy?ref=master", + "html_url": "https://github.com/jenkinsci/jenkins/blob/master/core/move-l10n.groovy", + "git_url": "https://api.github.com/repos/jenkinsci/jenkins/git/blobs/8d002348827a6c76ec3b4832278384c74a91d692", + "download_url": "https://raw.githubusercontent.com/jenkinsci/jenkins/master/core/move-l10n.groovy", + "type": "file", + "_links": { + "self": "https://api.github.com/repos/jenkinsci/jenkins/contents/core/move-l10n.groovy?ref=master", + "git": "https://api.github.com/repos/jenkinsci/jenkins/git/blobs/8d002348827a6c76ec3b4832278384c74a91d692", + "html": "https://github.com/jenkinsci/jenkins/blob/master/core/move-l10n.groovy" + } + }, + { + "name": "pom.xml", + "path": "core/pom.xml", + "sha": "0402553742ec270b65e5ea4c0851088659987183", + "size": 28950, + "url": "https://api.github.com/repos/jenkinsci/jenkins/contents/core/pom.xml?ref=master", + "html_url": "https://github.com/jenkinsci/jenkins/blob/master/core/pom.xml", + "git_url": "https://api.github.com/repos/jenkinsci/jenkins/git/blobs/0402553742ec270b65e5ea4c0851088659987183", + "download_url": "https://raw.githubusercontent.com/jenkinsci/jenkins/master/core/pom.xml", + "type": "file", + "_links": { + "self": "https://api.github.com/repos/jenkinsci/jenkins/contents/core/pom.xml?ref=master", + "git": "https://api.github.com/repos/jenkinsci/jenkins/git/blobs/0402553742ec270b65e5ea4c0851088659987183", + "html": "https://github.com/jenkinsci/jenkins/blob/master/core/pom.xml" + } + }, + { + "name": "report-l10n.rb", + "path": "core/report-l10n.rb", + "sha": "d48bf4d2f9ed5de92f6d4a9864ecc168d15e3420", + "size": 17290, + "url": "https://api.github.com/repos/jenkinsci/jenkins/contents/core/report-l10n.rb?ref=master", + "html_url": "https://github.com/jenkinsci/jenkins/blob/master/core/report-l10n.rb", + "git_url": "https://api.github.com/repos/jenkinsci/jenkins/git/blobs/d48bf4d2f9ed5de92f6d4a9864ecc168d15e3420", + "download_url": "https://raw.githubusercontent.com/jenkinsci/jenkins/master/core/report-l10n.rb", + "type": "file", + "_links": { + "self": "https://api.github.com/repos/jenkinsci/jenkins/contents/core/report-l10n.rb?ref=master", + "git": "https://api.github.com/repos/jenkinsci/jenkins/git/blobs/d48bf4d2f9ed5de92f6d4a9864ecc168d15e3420", + "html": "https://github.com/jenkinsci/jenkins/blob/master/core/report-l10n.rb" + } + }, + { + "name": "src", + "path": "core/src", + "sha": "11d50acb5fba7764e8ef1c230aac16aa9aa0ef31", + "size": 0, + "url": "https://api.github.com/repos/jenkinsci/jenkins/contents/core/src?ref=master", + "html_url": "https://github.com/jenkinsci/jenkins/tree/master/core/src", + "git_url": "https://api.github.com/repos/jenkinsci/jenkins/git/trees/11d50acb5fba7764e8ef1c230aac16aa9aa0ef31", + "download_url": null, + "type": "dir", + "_links": { + "self": "https://api.github.com/repos/jenkinsci/jenkins/contents/core/src?ref=master", + "git": "https://api.github.com/repos/jenkinsci/jenkins/git/trees/11d50acb5fba7764e8ef1c230aac16aa9aa0ef31", + "html": "https://github.com/jenkinsci/jenkins/tree/master/core/src" + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/directoryListing/__files/repos_jenkinsci_jenkins_contents_core_src-0566ab8b-d260-47cb-a6e6-fafa6fc2836c.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/directoryListing/__files/repos_jenkinsci_jenkins_contents_core_src-0566ab8b-d260-47cb-a6e6-fafa6fc2836c.json new file mode 100644 index 0000000000..d3dcb30c4a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/directoryListing/__files/repos_jenkinsci_jenkins_contents_core_src-0566ab8b-d260-47cb-a6e6-fafa6fc2836c.json @@ -0,0 +1,66 @@ +[ + { + "name": "filter", + "path": "core/src/filter", + "sha": "5f087f4c3dd2690948371b4f867087d36fdbb19d", + "size": 0, + "url": "https://api.github.com/repos/jenkinsci/jenkins/contents/core/src/filter?ref=master", + "html_url": "https://github.com/jenkinsci/jenkins/tree/master/core/src/filter", + "git_url": "https://api.github.com/repos/jenkinsci/jenkins/git/trees/5f087f4c3dd2690948371b4f867087d36fdbb19d", + "download_url": null, + "type": "dir", + "_links": { + "self": "https://api.github.com/repos/jenkinsci/jenkins/contents/core/src/filter?ref=master", + "git": "https://api.github.com/repos/jenkinsci/jenkins/git/trees/5f087f4c3dd2690948371b4f867087d36fdbb19d", + "html": "https://github.com/jenkinsci/jenkins/tree/master/core/src/filter" + } + }, + { + "name": "main", + "path": "core/src/main", + "sha": "7334485bc5155447be2692f1d4acf9c717335d7b", + "size": 0, + "url": "https://api.github.com/repos/jenkinsci/jenkins/contents/core/src/main?ref=master", + "html_url": "https://github.com/jenkinsci/jenkins/tree/master/core/src/main", + "git_url": "https://api.github.com/repos/jenkinsci/jenkins/git/trees/7334485bc5155447be2692f1d4acf9c717335d7b", + "download_url": null, + "type": "dir", + "_links": { + "self": "https://api.github.com/repos/jenkinsci/jenkins/contents/core/src/main?ref=master", + "git": "https://api.github.com/repos/jenkinsci/jenkins/git/trees/7334485bc5155447be2692f1d4acf9c717335d7b", + "html": "https://github.com/jenkinsci/jenkins/tree/master/core/src/main" + } + }, + { + "name": "site", + "path": "core/src/site", + "sha": "59d5107eeacdac5a50a2e2eb3592d79c9a8f8743", + "size": 0, + "url": "https://api.github.com/repos/jenkinsci/jenkins/contents/core/src/site?ref=master", + "html_url": "https://github.com/jenkinsci/jenkins/tree/master/core/src/site", + "git_url": "https://api.github.com/repos/jenkinsci/jenkins/git/trees/59d5107eeacdac5a50a2e2eb3592d79c9a8f8743", + "download_url": null, + "type": "dir", + "_links": { + "self": "https://api.github.com/repos/jenkinsci/jenkins/contents/core/src/site?ref=master", + "git": "https://api.github.com/repos/jenkinsci/jenkins/git/trees/59d5107eeacdac5a50a2e2eb3592d79c9a8f8743", + "html": "https://github.com/jenkinsci/jenkins/tree/master/core/src/site" + } + }, + { + "name": "test", + "path": "core/src/test", + "sha": "d600ddfd8eebaf8b605d9f99d3a9f117fac2eb2b", + "size": 0, + "url": "https://api.github.com/repos/jenkinsci/jenkins/contents/core/src/test?ref=master", + "html_url": "https://github.com/jenkinsci/jenkins/tree/master/core/src/test", + "git_url": "https://api.github.com/repos/jenkinsci/jenkins/git/trees/d600ddfd8eebaf8b605d9f99d3a9f117fac2eb2b", + "download_url": null, + "type": "dir", + "_links": { + "self": "https://api.github.com/repos/jenkinsci/jenkins/contents/core/src/test?ref=master", + "git": "https://api.github.com/repos/jenkinsci/jenkins/git/trees/d600ddfd8eebaf8b605d9f99d3a9f117fac2eb2b", + "html": "https://github.com/jenkinsci/jenkins/tree/master/core/src/test" + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/directoryListing/__files/user-0cdbd9dc-1c6f-42f5-a4b5-9d5472b2a56b.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/directoryListing/__files/user-0cdbd9dc-1c6f-42f5-a4b5-9d5472b2a56b.json new file mode 100644 index 0000000000..a4b576e8a7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/directoryListing/__files/user-0cdbd9dc-1c6f-42f5-a4b5-9d5472b2a56b.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 169, + "public_gists": 7, + "followers": 139, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/directoryListing/mappings/repos_jenkinsci_jenkins-2-448d3f.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/directoryListing/mappings/repos_jenkinsci_jenkins-2-448d3f.json new file mode 100644 index 0000000000..9e441f126d --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/directoryListing/mappings/repos_jenkinsci_jenkins-2-448d3f.json @@ -0,0 +1,43 @@ +{ + "id": "448d3f92-8488-4c5c-a81b-ca22a6039b39", + "name": "repos_jenkinsci_jenkins", + "request": { + "url": "/repos/jenkinsci/jenkins", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_jenkinsci_jenkins-448d3f92-8488-4c5c-a81b-ca22a6039b39.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:27:32 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4434", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"bc93de689b79708d9501fd02bc1f7696\"", + "Last-Modified": "Sat, 26 Oct 2019 01:07:22 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CA8F:3649:E327A7:1091CF2:5DB3A103" + } + }, + "uuid": "448d3f92-8488-4c5c-a81b-ca22a6039b39", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/directoryListing/mappings/repos_jenkinsci_jenkins_contents_core-3-7e1b6c.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/directoryListing/mappings/repos_jenkinsci_jenkins_contents_core-3-7e1b6c.json new file mode 100644 index 0000000000..15f8a66655 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/directoryListing/mappings/repos_jenkinsci_jenkins_contents_core-3-7e1b6c.json @@ -0,0 +1,43 @@ +{ + "id": "7e1b6c60-f829-4e6a-a1e5-089cebc4e1c7", + "name": "repos_jenkinsci_jenkins_contents_core", + "request": { + "url": "/repos/jenkinsci/jenkins/contents/core", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_jenkinsci_jenkins_contents_core-7e1b6c60-f829-4e6a-a1e5-089cebc4e1c7.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:27:32 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4433", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"64e666d1755b0fc334c6c5d6a7ddeb2948f8313b\"", + "Last-Modified": "Sat, 26 Oct 2019 01:07:22 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CA8F:3649:E327B9:1091D1B:5DB3A104" + } + }, + "uuid": "7e1b6c60-f829-4e6a-a1e5-089cebc4e1c7", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/directoryListing/mappings/repos_jenkinsci_jenkins_contents_core_src-4-0566ab.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/directoryListing/mappings/repos_jenkinsci_jenkins_contents_core_src-4-0566ab.json new file mode 100644 index 0000000000..5c112e9241 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/directoryListing/mappings/repos_jenkinsci_jenkins_contents_core_src-4-0566ab.json @@ -0,0 +1,43 @@ +{ + "id": "0566ab8b-d260-47cb-a6e6-fafa6fc2836c", + "name": "repos_jenkinsci_jenkins_contents_core_src", + "request": { + "url": "/repos/jenkinsci/jenkins/contents/core/src?ref=master", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_jenkinsci_jenkins_contents_core_src-0566ab8b-d260-47cb-a6e6-fafa6fc2836c.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:27:32 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4432", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"64e666d1755b0fc334c6c5d6a7ddeb2948f8313b\"", + "Last-Modified": "Sat, 26 Oct 2019 01:07:22 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CA8F:3649:E327C7:1091D2B:5DB3A104" + } + }, + "uuid": "0566ab8b-d260-47cb-a6e6-fafa6fc2836c", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/directoryListing/mappings/user-1-0cdbd9.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/directoryListing/mappings/user-1-0cdbd9.json new file mode 100644 index 0000000000..0aea81642c --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/directoryListing/mappings/user-1-0cdbd9.json @@ -0,0 +1,43 @@ +{ + "id": "0cdbd9dc-1c6f-42f5-a4b5-9d5472b2a56b", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-0cdbd9dc-1c6f-42f5-a4b5-9d5472b2a56b.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:27:31 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4436", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"8c3d3dcf6fc5f9edaf26c902295396e5\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CA8F:3649:E32786:1091CE0:5DB3A103" + } + }, + "uuid": "0cdbd9dc-1c6f-42f5-a4b5-9d5472b2a56b", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/listOrgMemberships/__files/user-8636c5bc-5f1d-45cf-8182-9e7926d5231e.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/listOrgMemberships/__files/user-8636c5bc-5f1d-45cf-8182-9e7926d5231e.json new file mode 100644 index 0000000000..a4b576e8a7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/listOrgMemberships/__files/user-8636c5bc-5f1d-45cf-8182-9e7926d5231e.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 169, + "public_gists": 7, + "followers": 139, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/listOrgMemberships/__files/user_memberships_orgs-29d7ac4b-573b-4044-a2b8-470ac1bf6335.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/listOrgMemberships/__files/user_memberships_orgs-29d7ac4b-573b-4044-a2b8-470ac1bf6335.json new file mode 100644 index 0000000000..fc45631cf5 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/listOrgMemberships/__files/user_memberships_orgs-29d7ac4b-573b-4044-a2b8-470ac1bf6335.json @@ -0,0 +1,402 @@ +[ + { + "url": "https://api.github.com/orgs/jenkinsci/memberships/bitwiseman", + "state": "active", + "role": "member", + "organization_url": "https://api.github.com/orgs/jenkinsci", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "organization": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "url": "https://api.github.com/orgs/jenkinsci", + "repos_url": "https://api.github.com/orgs/jenkinsci/repos", + "events_url": "https://api.github.com/orgs/jenkinsci/events", + "hooks_url": "https://api.github.com/orgs/jenkinsci/hooks", + "issues_url": "https://api.github.com/orgs/jenkinsci/issues", + "members_url": "https://api.github.com/orgs/jenkinsci/members{/member}", + "public_members_url": "https://api.github.com/orgs/jenkinsci/public_members{/member}", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "description": "Jenkins is an open source automation server with an unparalleled plugin ecosystem to support practically every tool as part of your delivery pipelines" + } + }, + { + "url": "https://api.github.com/orgs/cloudbees/memberships/bitwiseman", + "state": "active", + "role": "member", + "organization_url": "https://api.github.com/orgs/cloudbees", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "organization": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "url": "https://api.github.com/orgs/cloudbees", + "repos_url": "https://api.github.com/orgs/cloudbees/repos", + "events_url": "https://api.github.com/orgs/cloudbees/events", + "hooks_url": "https://api.github.com/orgs/cloudbees/hooks", + "issues_url": "https://api.github.com/orgs/cloudbees/issues", + "members_url": "https://api.github.com/orgs/cloudbees/members{/member}", + "public_members_url": "https://api.github.com/orgs/cloudbees/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "description": "" + } + }, + { + "url": "https://api.github.com/orgs/beautify-web/memberships/bitwiseman", + "state": "active", + "role": "admin", + "organization_url": "https://api.github.com/orgs/beautify-web", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "organization": { + "login": "beautify-web", + "id": 6538164, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjY1MzgxNjQ=", + "url": "https://api.github.com/orgs/beautify-web", + "repos_url": "https://api.github.com/orgs/beautify-web/repos", + "events_url": "https://api.github.com/orgs/beautify-web/events", + "hooks_url": "https://api.github.com/orgs/beautify-web/hooks", + "issues_url": "https://api.github.com/orgs/beautify-web/issues", + "members_url": "https://api.github.com/orgs/beautify-web/members{/member}", + "public_members_url": "https://api.github.com/orgs/beautify-web/public_members{/member}", + "avatar_url": "https://avatars1.githubusercontent.com/u/6538164?v=4", + "description": null + } + }, + { + "url": "https://api.github.com/orgs/jenkins-infra/memberships/bitwiseman", + "state": "active", + "role": "member", + "organization_url": "https://api.github.com/orgs/jenkins-infra", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "organization": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "url": "https://api.github.com/orgs/jenkins-infra", + "repos_url": "https://api.github.com/orgs/jenkins-infra/repos", + "events_url": "https://api.github.com/orgs/jenkins-infra/events", + "hooks_url": "https://api.github.com/orgs/jenkins-infra/hooks", + "issues_url": "https://api.github.com/orgs/jenkins-infra/issues", + "members_url": "https://api.github.com/orgs/jenkins-infra/members{/member}", + "public_members_url": "https://api.github.com/orgs/jenkins-infra/public_members{/member}", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "description": "Repositories owned by the Jenkins project infrastructure team" + } + }, + { + "url": "https://api.github.com/orgs/github-api-test-org/memberships/bitwiseman", + "state": "active", + "role": "admin", + "organization_url": "https://api.github.com/orgs/github-api-test-org", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "url": "https://api.github.com/orgs/github-api-test-org", + "repos_url": "https://api.github.com/orgs/github-api-test-org/repos", + "events_url": "https://api.github.com/orgs/github-api-test-org/events", + "hooks_url": "https://api.github.com/orgs/github-api-test-org/hooks", + "issues_url": "https://api.github.com/orgs/github-api-test-org/issues", + "members_url": "https://api.github.com/orgs/github-api-test-org/members{/member}", + "public_members_url": "https://api.github.com/orgs/github-api-test-org/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "description": null + } + }, + { + "url": "https://api.github.com/orgs/jenkins-inc/memberships/bitwiseman", + "state": "active", + "role": "admin", + "organization_url": "https://api.github.com/orgs/jenkins-inc", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "organization": { + "login": "jenkins-inc", + "id": 17552794, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE3NTUyNzk0", + "url": "https://api.github.com/orgs/jenkins-inc", + "repos_url": "https://api.github.com/orgs/jenkins-inc/repos", + "events_url": "https://api.github.com/orgs/jenkins-inc/events", + "hooks_url": "https://api.github.com/orgs/jenkins-inc/hooks", + "issues_url": "https://api.github.com/orgs/jenkins-inc/issues", + "members_url": "https://api.github.com/orgs/jenkins-inc/members{/member}", + "public_members_url": "https://api.github.com/orgs/jenkins-inc/public_members{/member}", + "avatar_url": "https://avatars0.githubusercontent.com/u/17552794?v=4", + "description": "A fictional company to demonstrate Jenkins capabilities" + } + }, + { + "url": "https://api.github.com/orgs/beautifier/memberships/bitwiseman", + "state": "active", + "role": "admin", + "organization_url": "https://api.github.com/orgs/beautifier", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "organization": { + "login": "beautifier", + "id": 22065016, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIyMDY1MDE2", + "url": "https://api.github.com/orgs/beautifier", + "repos_url": "https://api.github.com/orgs/beautifier/repos", + "events_url": "https://api.github.com/orgs/beautifier/events", + "hooks_url": "https://api.github.com/orgs/beautifier/hooks", + "issues_url": "https://api.github.com/orgs/beautifier/issues", + "members_url": "https://api.github.com/orgs/beautifier/members{/member}", + "public_members_url": "https://api.github.com/orgs/beautifier/public_members{/member}", + "avatar_url": "https://avatars1.githubusercontent.com/u/22065016?v=4", + "description": null + } + }, + { + "url": "https://api.github.com/orgs/jenkins-docs/memberships/bitwiseman", + "state": "active", + "role": "admin", + "organization_url": "https://api.github.com/orgs/jenkins-docs", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "organization": { + "login": "jenkins-docs", + "id": 24830755, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjI0ODMwNzU1", + "url": "https://api.github.com/orgs/jenkins-docs", + "repos_url": "https://api.github.com/orgs/jenkins-docs/repos", + "events_url": "https://api.github.com/orgs/jenkins-docs/events", + "hooks_url": "https://api.github.com/orgs/jenkins-docs/hooks", + "issues_url": "https://api.github.com/orgs/jenkins-docs/issues", + "members_url": "https://api.github.com/orgs/jenkins-docs/members{/member}", + "public_members_url": "https://api.github.com/orgs/jenkins-docs/public_members{/member}", + "avatar_url": "https://avatars1.githubusercontent.com/u/24830755?v=4", + "description": "Collection of docs, tutorials and relevant repositories" + } + }, + { + "url": "https://api.github.com/orgs/bitwise-jenkins/memberships/bitwiseman", + "state": "active", + "role": "admin", + "organization_url": "https://api.github.com/orgs/bitwise-jenkins", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "organization": { + "login": "bitwise-jenkins", + "id": 24939347, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjI0OTM5MzQ3", + "url": "https://api.github.com/orgs/bitwise-jenkins", + "repos_url": "https://api.github.com/orgs/bitwise-jenkins/repos", + "events_url": "https://api.github.com/orgs/bitwise-jenkins/events", + "hooks_url": "https://api.github.com/orgs/bitwise-jenkins/hooks", + "issues_url": "https://api.github.com/orgs/bitwise-jenkins/issues", + "members_url": "https://api.github.com/orgs/bitwise-jenkins/members{/member}", + "public_members_url": "https://api.github.com/orgs/bitwise-jenkins/public_members{/member}", + "avatar_url": "https://avatars2.githubusercontent.com/u/24939347?v=4", + "description": null + } + }, + { + "url": "https://api.github.com/orgs/github-api/memberships/bitwiseman", + "state": "active", + "role": "admin", + "organization_url": "https://api.github.com/orgs/github-api", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "organization": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "url": "https://api.github.com/orgs/github-api", + "repos_url": "https://api.github.com/orgs/github-api/repos", + "events_url": "https://api.github.com/orgs/github-api/events", + "hooks_url": "https://api.github.com/orgs/github-api/hooks", + "issues_url": "https://api.github.com/orgs/github-api/issues", + "members_url": "https://api.github.com/orgs/github-api/members{/member}", + "public_members_url": "https://api.github.com/orgs/github-api/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "description": null + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/listOrgMemberships/mappings/user-1-8636c5.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/listOrgMemberships/mappings/user-1-8636c5.json new file mode 100644 index 0000000000..2808b1c19a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/listOrgMemberships/mappings/user-1-8636c5.json @@ -0,0 +1,43 @@ +{ + "id": "8636c5bc-5f1d-45cf-8182-9e7926d5231e", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-8636c5bc-5f1d-45cf-8182-9e7926d5231e.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:27:46 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4398", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"8c3d3dcf6fc5f9edaf26c902295396e5\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAB4:5F2B:EE3A33:1187E2D:5DB3A112" + } + }, + "uuid": "8636c5bc-5f1d-45cf-8182-9e7926d5231e", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/listOrgMemberships/mappings/user_memberships_orgs-2-29d7ac.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/listOrgMemberships/mappings/user_memberships_orgs-2-29d7ac.json new file mode 100644 index 0000000000..097dcbec9a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/listOrgMemberships/mappings/user_memberships_orgs-2-29d7ac.json @@ -0,0 +1,42 @@ +{ + "id": "29d7ac4b-573b-4044-a2b8-470ac1bf6335", + "name": "user_memberships_orgs", + "request": { + "url": "/user/memberships/orgs", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user_memberships_orgs-29d7ac4b-573b-4044-a2b8-470ac1bf6335.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:27:46 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4396", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"421157c0a61f3834ed23839360e0441a\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAB4:5F2B:EE3A4F:1187E42:5DB3A112" + } + }, + "uuid": "29d7ac4b-573b-4044-a2b8-470ac1bf6335", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/__files/notifications-045c369a-0818-455a-afe1-3ae9ec919af2.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/__files/notifications-045c369a-0818-455a-afe1-3ae9ec919af2.json new file mode 100644 index 0000000000..4c448a26d3 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/__files/notifications-045c369a-0818-455a-afe1-3ae9ec919af2.json @@ -0,0 +1,4102 @@ +[ + { + "id": "555358026", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-02T03:50:24Z", + "last_read_at": "2019-08-08T00:39:49Z", + "subject": { + "title": "CSDOCS-71", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/22", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/22", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/555358026", + "subscription_url": "https://api.github.com/notifications/threads/555358026/subscription" + }, + { + "id": "554534537", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-02T03:52:40Z", + "last_read_at": "2019-08-08T00:39:49Z", + "subject": { + "title": "Add TS to server and img optimizer", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/21", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/21", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/554534537", + "subscription_url": "https://api.github.com/notifications/threads/554534537/subscription" + }, + { + "id": "554734975", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-01T21:33:39Z", + "last_read_at": "2019-08-08T04:03:35Z", + "subject": { + "title": "Update snapshots, fix busted tests and busted build step requirements", + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/pulls/4", + "latest_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/pulls/4", + "type": "PullRequest" + }, + "repository": { + "id": 193577985, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTM1Nzc5ODU=", + "name": "cloudbees-pipeline-rules-interception-plugin", + "full_name": "cloudbees/cloudbees-pipeline-rules-interception-plugin", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/cloudbees-pipeline-rules-interception-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin", + "forks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/forks", + "keys_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/events", + "assignees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/merges", + "archive_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/554734975", + "subscription_url": "https://api.github.com/notifications/threads/554734975/subscription" + }, + { + "id": "554990263", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-06T18:59:23Z", + "last_read_at": "2019-08-02T18:14:16Z", + "subject": { + "title": "Please update CodeMirror Addon", + "url": "https://api.github.com/repos/beautify-web/js-beautify/issues/1695", + "latest_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/comments/518800029", + "type": "Issue" + }, + "repository": { + "id": 84822, + "node_id": "MDEwOlJlcG9zaXRvcnk4NDgyMg==", + "name": "js-beautify", + "full_name": "beautify-web/js-beautify", + "private": false, + "owner": { + "login": "beautify-web", + "id": 6538164, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjY1MzgxNjQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/6538164?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/beautify-web", + "html_url": "https://github.com/beautify-web", + "followers_url": "https://api.github.com/users/beautify-web/followers", + "following_url": "https://api.github.com/users/beautify-web/following{/other_user}", + "gists_url": "https://api.github.com/users/beautify-web/gists{/gist_id}", + "starred_url": "https://api.github.com/users/beautify-web/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/beautify-web/subscriptions", + "organizations_url": "https://api.github.com/users/beautify-web/orgs", + "repos_url": "https://api.github.com/users/beautify-web/repos", + "events_url": "https://api.github.com/users/beautify-web/events{/privacy}", + "received_events_url": "https://api.github.com/users/beautify-web/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/beautify-web/js-beautify", + "description": "Beautifier for javascript ", + "fork": false, + "url": "https://api.github.com/repos/beautify-web/js-beautify", + "forks_url": "https://api.github.com/repos/beautify-web/js-beautify/forks", + "keys_url": "https://api.github.com/repos/beautify-web/js-beautify/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/beautify-web/js-beautify/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/beautify-web/js-beautify/teams", + "hooks_url": "https://api.github.com/repos/beautify-web/js-beautify/hooks", + "issue_events_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/events{/number}", + "events_url": "https://api.github.com/repos/beautify-web/js-beautify/events", + "assignees_url": "https://api.github.com/repos/beautify-web/js-beautify/assignees{/user}", + "branches_url": "https://api.github.com/repos/beautify-web/js-beautify/branches{/branch}", + "tags_url": "https://api.github.com/repos/beautify-web/js-beautify/tags", + "blobs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/beautify-web/js-beautify/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/beautify-web/js-beautify/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/beautify-web/js-beautify/statuses/{sha}", + "languages_url": "https://api.github.com/repos/beautify-web/js-beautify/languages", + "stargazers_url": "https://api.github.com/repos/beautify-web/js-beautify/stargazers", + "contributors_url": "https://api.github.com/repos/beautify-web/js-beautify/contributors", + "subscribers_url": "https://api.github.com/repos/beautify-web/js-beautify/subscribers", + "subscription_url": "https://api.github.com/repos/beautify-web/js-beautify/subscription", + "commits_url": "https://api.github.com/repos/beautify-web/js-beautify/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/beautify-web/js-beautify/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/beautify-web/js-beautify/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/beautify-web/js-beautify/contents/{+path}", + "compare_url": "https://api.github.com/repos/beautify-web/js-beautify/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/beautify-web/js-beautify/merges", + "archive_url": "https://api.github.com/repos/beautify-web/js-beautify/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/beautify-web/js-beautify/downloads", + "issues_url": "https://api.github.com/repos/beautify-web/js-beautify/issues{/number}", + "pulls_url": "https://api.github.com/repos/beautify-web/js-beautify/pulls{/number}", + "milestones_url": "https://api.github.com/repos/beautify-web/js-beautify/milestones{/number}", + "notifications_url": "https://api.github.com/repos/beautify-web/js-beautify/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/beautify-web/js-beautify/labels{/name}", + "releases_url": "https://api.github.com/repos/beautify-web/js-beautify/releases{/id}", + "deployments_url": "https://api.github.com/repos/beautify-web/js-beautify/deployments" + }, + "url": "https://api.github.com/notifications/threads/554990263", + "subscription_url": "https://api.github.com/notifications/threads/554990263/subscription" + }, + { + "id": "528477312", + "unread": false, + "reason": "comment", + "updated_at": "2019-08-06T17:44:16Z", + "last_read_at": "2019-08-06T17:43:35Z", + "subject": { + "title": "Add CHANGE_BRANCH and CHANGE_FORK descriptions", + "url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/pulls/162", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/pulls/162", + "type": "PullRequest" + }, + "repository": { + "id": 12878218, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjg3ODIxOA==", + "name": "branch-api-plugin", + "full_name": "jenkinsci/branch-api-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/branch-api-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/branch-api-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/528477312", + "subscription_url": "https://api.github.com/notifications/threads/528477312/subscription" + }, + { + "id": "527554705", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-01T18:53:20Z", + "last_read_at": "2019-09-11T05:50:31Z", + "subject": { + "title": "[JENKINS-58084] Call StepListeners before executing steps", + "url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls/299", + "latest_comment_url": null, + "type": "PullRequest" + }, + "repository": { + "id": 55543225, + "node_id": "MDEwOlJlcG9zaXRvcnk1NTU0MzIyNQ==", + "name": "workflow-cps-plugin", + "full_name": "jenkinsci/workflow-cps-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/workflow-cps-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/527554705", + "subscription_url": "https://api.github.com/notifications/threads/527554705/subscription" + }, + { + "id": "554283713", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-01T15:30:46Z", + "last_read_at": "2019-09-11T05:50:31Z", + "subject": { + "title": "[JENKINS-58501] Update to groovy-cps 1.30", + "url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls/311", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls/311", + "type": "PullRequest" + }, + "repository": { + "id": 55543225, + "node_id": "MDEwOlJlcG9zaXRvcnk1NTU0MzIyNQ==", + "name": "workflow-cps-plugin", + "full_name": "jenkinsci/workflow-cps-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/workflow-cps-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/554283713", + "subscription_url": "https://api.github.com/notifications/threads/554283713/subscription" + }, + { + "id": "552925472", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-01T17:55:27Z", + "last_read_at": "2019-08-12T22:35:51Z", + "subject": { + "title": "Use \"Role Strategy\" to describe the OSS plugin", + "url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/pulls/112", + "latest_comment_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/pulls/112", + "type": "PullRequest" + }, + "repository": { + "id": 133071339, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzMwNzEzMzk=", + "name": "training-admin-fundamentals", + "full_name": "cloudbees/training-admin-fundamentals", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/training-admin-fundamentals", + "description": "Admin Fundamentals Course", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals", + "forks_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/forks", + "keys_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/events", + "assignees_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/merges", + "archive_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/deployments" + }, + "url": "https://api.github.com/notifications/threads/552925472", + "subscription_url": "https://api.github.com/notifications/threads/552925472/subscription" + }, + { + "id": "554776722", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-01T15:24:33Z", + "last_read_at": "2019-09-11T05:50:31Z", + "subject": { + "title": "Use ACI agents to avoid disk space issues in CI builds", + "url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls/312", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls/312", + "type": "PullRequest" + }, + "repository": { + "id": 55543225, + "node_id": "MDEwOlJlcG9zaXRvcnk1NTU0MzIyNQ==", + "name": "workflow-cps-plugin", + "full_name": "jenkinsci/workflow-cps-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/workflow-cps-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/554776722", + "subscription_url": "https://api.github.com/notifications/threads/554776722/subscription" + }, + { + "id": "554517343", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-01T07:13:58Z", + "last_read_at": "2019-08-08T00:39:49Z", + "subject": { + "title": "CSDOCS-54 - Split builds", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/20", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments/517144421", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/554517343", + "subscription_url": "https://api.github.com/notifications/threads/554517343/subscription" + }, + { + "id": "552067556", + "unread": false, + "reason": "team_mention", + "updated_at": "2019-08-01T00:55:35Z", + "last_read_at": "2019-08-05T20:37:31Z", + "subject": { + "title": "[JENKINS-58478] Plugin Installation Manager phase 2 blog post", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2392", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2392", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/552067556", + "subscription_url": "https://api.github.com/notifications/threads/552067556/subscription" + }, + { + "id": "264712513", + "unread": false, + "reason": "comment", + "updated_at": "2019-07-31T22:08:34Z", + "last_read_at": "2019-08-02T18:14:19Z", + "subject": { + "title": "Is it possible to convert a long 1-line array into a multiline array?", + "url": "https://api.github.com/repos/beautify-web/js-beautify/issues/1267", + "latest_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/comments/517040824", + "type": "Issue" + }, + "repository": { + "id": 84822, + "node_id": "MDEwOlJlcG9zaXRvcnk4NDgyMg==", + "name": "js-beautify", + "full_name": "beautify-web/js-beautify", + "private": false, + "owner": { + "login": "beautify-web", + "id": 6538164, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjY1MzgxNjQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/6538164?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/beautify-web", + "html_url": "https://github.com/beautify-web", + "followers_url": "https://api.github.com/users/beautify-web/followers", + "following_url": "https://api.github.com/users/beautify-web/following{/other_user}", + "gists_url": "https://api.github.com/users/beautify-web/gists{/gist_id}", + "starred_url": "https://api.github.com/users/beautify-web/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/beautify-web/subscriptions", + "organizations_url": "https://api.github.com/users/beautify-web/orgs", + "repos_url": "https://api.github.com/users/beautify-web/repos", + "events_url": "https://api.github.com/users/beautify-web/events{/privacy}", + "received_events_url": "https://api.github.com/users/beautify-web/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/beautify-web/js-beautify", + "description": "Beautifier for javascript ", + "fork": false, + "url": "https://api.github.com/repos/beautify-web/js-beautify", + "forks_url": "https://api.github.com/repos/beautify-web/js-beautify/forks", + "keys_url": "https://api.github.com/repos/beautify-web/js-beautify/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/beautify-web/js-beautify/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/beautify-web/js-beautify/teams", + "hooks_url": "https://api.github.com/repos/beautify-web/js-beautify/hooks", + "issue_events_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/events{/number}", + "events_url": "https://api.github.com/repos/beautify-web/js-beautify/events", + "assignees_url": "https://api.github.com/repos/beautify-web/js-beautify/assignees{/user}", + "branches_url": "https://api.github.com/repos/beautify-web/js-beautify/branches{/branch}", + "tags_url": "https://api.github.com/repos/beautify-web/js-beautify/tags", + "blobs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/beautify-web/js-beautify/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/beautify-web/js-beautify/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/beautify-web/js-beautify/statuses/{sha}", + "languages_url": "https://api.github.com/repos/beautify-web/js-beautify/languages", + "stargazers_url": "https://api.github.com/repos/beautify-web/js-beautify/stargazers", + "contributors_url": "https://api.github.com/repos/beautify-web/js-beautify/contributors", + "subscribers_url": "https://api.github.com/repos/beautify-web/js-beautify/subscribers", + "subscription_url": "https://api.github.com/repos/beautify-web/js-beautify/subscription", + "commits_url": "https://api.github.com/repos/beautify-web/js-beautify/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/beautify-web/js-beautify/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/beautify-web/js-beautify/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/beautify-web/js-beautify/contents/{+path}", + "compare_url": "https://api.github.com/repos/beautify-web/js-beautify/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/beautify-web/js-beautify/merges", + "archive_url": "https://api.github.com/repos/beautify-web/js-beautify/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/beautify-web/js-beautify/downloads", + "issues_url": "https://api.github.com/repos/beautify-web/js-beautify/issues{/number}", + "pulls_url": "https://api.github.com/repos/beautify-web/js-beautify/pulls{/number}", + "milestones_url": "https://api.github.com/repos/beautify-web/js-beautify/milestones{/number}", + "notifications_url": "https://api.github.com/repos/beautify-web/js-beautify/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/beautify-web/js-beautify/labels{/name}", + "releases_url": "https://api.github.com/repos/beautify-web/js-beautify/releases{/id}", + "deployments_url": "https://api.github.com/repos/beautify-web/js-beautify/deployments" + }, + "url": "https://api.github.com/notifications/threads/264712513", + "subscription_url": "https://api.github.com/notifications/threads/264712513/subscription" + }, + { + "id": "547286026", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-07-31T16:49:57Z", + "last_read_at": "2019-09-11T05:50:31Z", + "subject": { + "title": "[JENKINS-33217] Pass TaskListener to DescribableModel", + "url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls/307", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls/307", + "type": "PullRequest" + }, + "repository": { + "id": 55543225, + "node_id": "MDEwOlJlcG9zaXRvcnk1NTU0MzIyNQ==", + "name": "workflow-cps-plugin", + "full_name": "jenkinsci/workflow-cps-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/workflow-cps-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/547286026", + "subscription_url": "https://api.github.com/notifications/threads/547286026/subscription" + }, + { + "id": "467437575", + "unread": false, + "reason": "comment", + "updated_at": "2019-07-31T19:30:28Z", + "last_read_at": "2019-08-08T04:03:19Z", + "subject": { + "title": "[CE-1936] Added User count", + "url": "https://api.github.com/repos/cloudbees/cloudbees-support-plugin/pulls/53", + "latest_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-support-plugin/pulls/53", + "type": "PullRequest" + }, + "repository": { + "id": 24073917, + "node_id": "MDEwOlJlcG9zaXRvcnkyNDA3MzkxNw==", + "name": "cloudbees-support-plugin", + "full_name": "cloudbees/cloudbees-support-plugin", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/cloudbees-support-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/cloudbees-support-plugin", + "forks_url": "https://api.github.com/repos/cloudbees/cloudbees-support-plugin/forks", + "keys_url": "https://api.github.com/repos/cloudbees/cloudbees-support-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/cloudbees-support-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/cloudbees-support-plugin/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/cloudbees-support-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/cloudbees-support-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/cloudbees-support-plugin/events", + "assignees_url": "https://api.github.com/repos/cloudbees/cloudbees-support-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/cloudbees-support-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/cloudbees-support-plugin/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/cloudbees-support-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/cloudbees-support-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/cloudbees-support-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/cloudbees-support-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/cloudbees-support-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/cloudbees-support-plugin/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/cloudbees-support-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/cloudbees-support-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/cloudbees-support-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/cloudbees-support-plugin/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/cloudbees-support-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/cloudbees-support-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/cloudbees-support-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-support-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/cloudbees-support-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/cloudbees-support-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/cloudbees-support-plugin/merges", + "archive_url": "https://api.github.com/repos/cloudbees/cloudbees-support-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/cloudbees-support-plugin/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/cloudbees-support-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/cloudbees-support-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/cloudbees-support-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/cloudbees-support-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/cloudbees-support-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/cloudbees-support-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/cloudbees-support-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/467437575", + "subscription_url": "https://api.github.com/notifications/threads/467437575/subscription" + }, + { + "id": "553686968", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-07-31T18:25:06Z", + "last_read_at": "2019-09-11T05:50:31Z", + "subject": { + "title": "Add more tests for CPS mismatch warning false positives", + "url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls/309", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/comments/516965223", + "type": "PullRequest" + }, + "repository": { + "id": 55543225, + "node_id": "MDEwOlJlcG9zaXRvcnk1NTU0MzIyNQ==", + "name": "workflow-cps-plugin", + "full_name": "jenkinsci/workflow-cps-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/workflow-cps-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/553686968", + "subscription_url": "https://api.github.com/notifications/threads/553686968/subscription" + }, + { + "id": "547220076", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-07-30T14:23:11Z", + "last_read_at": "2019-08-08T04:03:18Z", + "subject": { + "title": "[JENKINS-58501] add exceptions for metaprogramming to CPS mismatches", + "url": "https://api.github.com/repos/cloudbees/groovy-cps/pulls/99", + "latest_comment_url": "https://api.github.com/repos/cloudbees/groovy-cps/issues/comments/516441645", + "type": "PullRequest" + }, + "repository": { + "id": 16677474, + "node_id": "MDEwOlJlcG9zaXRvcnkxNjY3NzQ3NA==", + "name": "groovy-cps", + "full_name": "cloudbees/groovy-cps", + "private": false, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/groovy-cps", + "description": "Groovy execution in the continuation passing style", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/groovy-cps", + "forks_url": "https://api.github.com/repos/cloudbees/groovy-cps/forks", + "keys_url": "https://api.github.com/repos/cloudbees/groovy-cps/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/groovy-cps/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/groovy-cps/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/groovy-cps/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/groovy-cps/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/groovy-cps/events", + "assignees_url": "https://api.github.com/repos/cloudbees/groovy-cps/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/groovy-cps/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/groovy-cps/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/groovy-cps/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/groovy-cps/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/groovy-cps/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/groovy-cps/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/groovy-cps/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/groovy-cps/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/groovy-cps/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/groovy-cps/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/groovy-cps/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/groovy-cps/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/groovy-cps/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/groovy-cps/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/groovy-cps/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/groovy-cps/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/groovy-cps/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/groovy-cps/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/groovy-cps/merges", + "archive_url": "https://api.github.com/repos/cloudbees/groovy-cps/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/groovy-cps/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/groovy-cps/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/groovy-cps/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/groovy-cps/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/groovy-cps/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/groovy-cps/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/groovy-cps/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/groovy-cps/deployments" + }, + "url": "https://api.github.com/notifications/threads/547220076", + "subscription_url": "https://api.github.com/notifications/threads/547220076/subscription" + }, + { + "id": "549750173", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-07-31T14:44:45Z", + "last_read_at": "2019-09-11T05:50:31Z", + "subject": { + "title": "Speed up ArgumentsActionImplTest using @ClassRule", + "url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls/308", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls/308", + "type": "PullRequest" + }, + "repository": { + "id": 55543225, + "node_id": "MDEwOlJlcG9zaXRvcnk1NTU0MzIyNQ==", + "name": "workflow-cps-plugin", + "full_name": "jenkinsci/workflow-cps-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/workflow-cps-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/549750173", + "subscription_url": "https://api.github.com/notifications/threads/549750173/subscription" + }, + { + "id": "547813262", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-07-24T11:58:50Z", + "last_read_at": "2019-08-08T04:03:09Z", + "subject": { + "title": "[NGPIPELINE-523] Change out remote for serverUrl for Bitbucket MBPs", + "url": "https://api.github.com/repos/cloudbees/cloudbees-examples/pulls/11", + "latest_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-examples/pulls/11", + "type": "PullRequest" + }, + "repository": { + "id": 168466951, + "node_id": "MDEwOlJlcG9zaXRvcnkxNjg0NjY5NTE=", + "name": "cloudbees-examples", + "full_name": "cloudbees/cloudbees-examples", + "private": false, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/cloudbees-examples", + "description": "Public repository - Examples for documentation", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/cloudbees-examples", + "forks_url": "https://api.github.com/repos/cloudbees/cloudbees-examples/forks", + "keys_url": "https://api.github.com/repos/cloudbees/cloudbees-examples/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/cloudbees-examples/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/cloudbees-examples/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/cloudbees-examples/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/cloudbees-examples/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/cloudbees-examples/events", + "assignees_url": "https://api.github.com/repos/cloudbees/cloudbees-examples/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/cloudbees-examples/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/cloudbees-examples/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/cloudbees-examples/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/cloudbees-examples/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/cloudbees-examples/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/cloudbees-examples/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/cloudbees-examples/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/cloudbees-examples/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/cloudbees-examples/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/cloudbees-examples/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/cloudbees-examples/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/cloudbees-examples/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/cloudbees-examples/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/cloudbees-examples/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/cloudbees-examples/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-examples/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/cloudbees-examples/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/cloudbees-examples/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/cloudbees-examples/merges", + "archive_url": "https://api.github.com/repos/cloudbees/cloudbees-examples/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/cloudbees-examples/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/cloudbees-examples/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/cloudbees-examples/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/cloudbees-examples/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/cloudbees-examples/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/cloudbees-examples/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/cloudbees-examples/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/cloudbees-examples/deployments" + }, + "url": "https://api.github.com/notifications/threads/547813262", + "subscription_url": "https://api.github.com/notifications/threads/547813262/subscription" + }, + { + "id": "554117692", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-07-31T14:50:24Z", + "last_read_at": "2019-08-05T19:27:42Z", + "subject": { + "title": "Added credit affiliation", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2397", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2397", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/554117692", + "subscription_url": "https://api.github.com/notifications/threads/554117692/subscription" + }, + { + "id": "554075397", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-07-31T13:39:56Z", + "last_read_at": "2019-08-05T19:27:42Z", + "subject": { + "title": "Add attribution for SECURITY-1290", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2396", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2396", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/554075397", + "subscription_url": "https://api.github.com/notifications/threads/554075397/subscription" + }, + { + "id": "554049261", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-07-31T12:52:08Z", + "last_read_at": "2019-08-05T19:27:42Z", + "subject": { + "title": "update Jenkins X logo", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2395", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2395", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/554049261", + "subscription_url": "https://api.github.com/notifications/threads/554049261/subscription" + }, + { + "id": "553287182", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-07-30T21:44:09Z", + "last_read_at": "2019-08-08T00:39:49Z", + "subject": { + "title": "CSDOCS-54 - Refactor infra - add nodejs app etc ", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/19", + "latest_comment_url": null, + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/553287182", + "subscription_url": "https://api.github.com/notifications/threads/553287182/subscription" + }, + { + "id": "553751011", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-07-31T01:25:11Z", + "last_read_at": "2019-08-12T22:35:51Z", + "subject": { + "title": "Lab Fixes", + "url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/pulls/113", + "latest_comment_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/pulls/113", + "type": "PullRequest" + }, + "repository": { + "id": 133071339, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzMwNzEzMzk=", + "name": "training-admin-fundamentals", + "full_name": "cloudbees/training-admin-fundamentals", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/training-admin-fundamentals", + "description": "Admin Fundamentals Course", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals", + "forks_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/forks", + "keys_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/events", + "assignees_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/merges", + "archive_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/deployments" + }, + "url": "https://api.github.com/notifications/threads/553751011", + "subscription_url": "https://api.github.com/notifications/threads/553751011/subscription" + }, + { + "id": "41677509", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-11T00:15:47Z", + "last_read_at": "2019-09-11T00:13:58Z", + "subject": { + "title": "github-api does in not correctly distinguish between user and organisation ownership", + "url": "https://api.github.com/repos/github-api/github-api/issues/126", + "latest_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments/530167634", + "type": "Issue" + }, + "repository": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments" + }, + "url": "https://api.github.com/notifications/threads/41677509", + "subscription_url": "https://api.github.com/notifications/threads/41677509/subscription" + }, + { + "id": "553490932", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-07-30T15:30:26Z", + "last_read_at": "2019-08-08T04:03:35Z", + "subject": { + "title": "[FIXED NGPIPELINE-597] Rules should actually be enforced.", + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/pulls/3", + "latest_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/pulls/3", + "type": "PullRequest" + }, + "repository": { + "id": 193577985, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTM1Nzc5ODU=", + "name": "cloudbees-pipeline-rules-interception-plugin", + "full_name": "cloudbees/cloudbees-pipeline-rules-interception-plugin", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/cloudbees-pipeline-rules-interception-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin", + "forks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/forks", + "keys_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/events", + "assignees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/merges", + "archive_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/553490932", + "subscription_url": "https://api.github.com/notifications/threads/553490932/subscription" + }, + { + "id": "546624235", + "unread": false, + "reason": "mention", + "updated_at": "2019-08-06T20:59:30Z", + "last_read_at": "2019-08-06T20:08:19Z", + "subject": { + "title": "Draft: Dispatchable Views and View Fragments in Stapler", + "url": "https://api.github.com/repos/jenkinsci/jep/pulls/246", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/jep/issues/comments/518841803", + "type": "PullRequest" + }, + "repository": { + "id": 103302223, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDMzMDIyMjM=", + "name": "jep", + "full_name": "jenkinsci/jep", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jep", + "description": "Jenkins Enhancement Proposals", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jep", + "forks_url": "https://api.github.com/repos/jenkinsci/jep/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jep/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jep/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jep/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jep/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jep/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jep/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jep/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jep/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jep/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jep/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jep/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jep/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jep/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jep/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jep/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jep/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jep/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jep/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jep/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jep/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jep/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jep/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jep/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jep/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jep/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jep/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jep/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jep/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jep/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jep/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jep/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jep/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jep/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jep/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jep/deployments" + }, + "url": "https://api.github.com/notifications/threads/546624235", + "subscription_url": "https://api.github.com/notifications/threads/546624235/subscription" + }, + { + "id": "552520876", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-07-29T10:20:45Z", + "last_read_at": "2019-08-07T22:27:14Z", + "subject": { + "title": "Search changes", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/18", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/18", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/552520876", + "subscription_url": "https://api.github.com/notifications/threads/552520876/subscription" + }, + { + "id": "553082754", + "unread": false, + "reason": "mention", + "updated_at": "2019-07-31T14:12:36Z", + "last_read_at": "2019-07-30T17:50:29Z", + "subject": { + "title": "[Jenkins-54403] Added Tests", + "url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/pulls/2", + "latest_comment_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/pulls/2", + "type": "PullRequest" + }, + "repository": { + "id": 170782009, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzA3ODIwMDk=", + "name": "github-branch-source-plugin", + "full_name": "bitwiseman/github-branch-source-plugin", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/github-branch-source-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin", + "forks_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/553082754", + "subscription_url": "https://api.github.com/notifications/threads/553082754/subscription" + }, + { + "id": "552991939", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-07-29T20:43:16Z", + "last_read_at": "2019-08-05T19:27:42Z", + "subject": { + "title": "Fix typo in 2019-03-25 advisory", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2394", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2394", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/552991939", + "subscription_url": "https://api.github.com/notifications/threads/552991939/subscription" + }, + { + "id": "551978394", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-07-29T18:30:02Z", + "last_read_at": "2019-08-12T22:36:22Z", + "subject": { + "title": "Create Check-Item-Permission-perUser.groovy", + "url": "https://api.github.com/repos/cloudbees/jenkins-scripts/pulls/106", + "latest_comment_url": null, + "type": "PullRequest" + }, + "repository": { + "id": 49162083, + "node_id": "MDEwOlJlcG9zaXRvcnk0OTE2MjA4Mw==", + "name": "jenkins-scripts", + "full_name": "cloudbees/jenkins-scripts", + "private": false, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jenkins-scripts", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jenkins-scripts", + "forks_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/deployments" + }, + "url": "https://api.github.com/notifications/threads/551978394", + "subscription_url": "https://api.github.com/notifications/threads/551978394/subscription" + }, + { + "id": "552552401", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-07-29T18:11:02Z", + "last_read_at": "2019-08-05T19:27:42Z", + "subject": { + "title": "Bump @cloudbees/honeyui from 1.0.0 to 1.1.1", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/35", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/35", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/552552401", + "subscription_url": "https://api.github.com/notifications/threads/552552401/subscription" + }, + { + "id": "552480716", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-07-29T03:04:59Z", + "last_read_at": "2019-08-07T22:27:14Z", + "subject": { + "title": "Make lerna use yarn instead of npm", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/17", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/17", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/552480716", + "subscription_url": "https://api.github.com/notifications/threads/552480716/subscription" + }, + { + "id": "552404744", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-07-28T19:27:00Z", + "last_read_at": "2019-08-12T22:35:51Z", + "subject": { + "title": "Minor Fixes", + "url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/pulls/111", + "latest_comment_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/pulls/111", + "type": "PullRequest" + }, + "repository": { + "id": 133071339, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzMwNzEzMzk=", + "name": "training-admin-fundamentals", + "full_name": "cloudbees/training-admin-fundamentals", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/training-admin-fundamentals", + "description": "Admin Fundamentals Course", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals", + "forks_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/forks", + "keys_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/events", + "assignees_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/merges", + "archive_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/deployments" + }, + "url": "https://api.github.com/notifications/threads/552404744", + "subscription_url": "https://api.github.com/notifications/threads/552404744/subscription" + }, + { + "id": "552398201", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-07-29T17:21:18Z", + "last_read_at": "2019-07-29T17:19:12Z", + "subject": { + "title": "[JS] Wrong formatting: invalid syntax", + "url": "https://api.github.com/repos/beautify-web/js-beautify/issues/1694", + "latest_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/comments/516083099", + "type": "Issue" + }, + "repository": { + "id": 84822, + "node_id": "MDEwOlJlcG9zaXRvcnk4NDgyMg==", + "name": "js-beautify", + "full_name": "beautify-web/js-beautify", + "private": false, + "owner": { + "login": "beautify-web", + "id": 6538164, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjY1MzgxNjQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/6538164?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/beautify-web", + "html_url": "https://github.com/beautify-web", + "followers_url": "https://api.github.com/users/beautify-web/followers", + "following_url": "https://api.github.com/users/beautify-web/following{/other_user}", + "gists_url": "https://api.github.com/users/beautify-web/gists{/gist_id}", + "starred_url": "https://api.github.com/users/beautify-web/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/beautify-web/subscriptions", + "organizations_url": "https://api.github.com/users/beautify-web/orgs", + "repos_url": "https://api.github.com/users/beautify-web/repos", + "events_url": "https://api.github.com/users/beautify-web/events{/privacy}", + "received_events_url": "https://api.github.com/users/beautify-web/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/beautify-web/js-beautify", + "description": "Beautifier for javascript ", + "fork": false, + "url": "https://api.github.com/repos/beautify-web/js-beautify", + "forks_url": "https://api.github.com/repos/beautify-web/js-beautify/forks", + "keys_url": "https://api.github.com/repos/beautify-web/js-beautify/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/beautify-web/js-beautify/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/beautify-web/js-beautify/teams", + "hooks_url": "https://api.github.com/repos/beautify-web/js-beautify/hooks", + "issue_events_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/events{/number}", + "events_url": "https://api.github.com/repos/beautify-web/js-beautify/events", + "assignees_url": "https://api.github.com/repos/beautify-web/js-beautify/assignees{/user}", + "branches_url": "https://api.github.com/repos/beautify-web/js-beautify/branches{/branch}", + "tags_url": "https://api.github.com/repos/beautify-web/js-beautify/tags", + "blobs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/beautify-web/js-beautify/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/beautify-web/js-beautify/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/beautify-web/js-beautify/statuses/{sha}", + "languages_url": "https://api.github.com/repos/beautify-web/js-beautify/languages", + "stargazers_url": "https://api.github.com/repos/beautify-web/js-beautify/stargazers", + "contributors_url": "https://api.github.com/repos/beautify-web/js-beautify/contributors", + "subscribers_url": "https://api.github.com/repos/beautify-web/js-beautify/subscribers", + "subscription_url": "https://api.github.com/repos/beautify-web/js-beautify/subscription", + "commits_url": "https://api.github.com/repos/beautify-web/js-beautify/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/beautify-web/js-beautify/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/beautify-web/js-beautify/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/beautify-web/js-beautify/contents/{+path}", + "compare_url": "https://api.github.com/repos/beautify-web/js-beautify/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/beautify-web/js-beautify/merges", + "archive_url": "https://api.github.com/repos/beautify-web/js-beautify/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/beautify-web/js-beautify/downloads", + "issues_url": "https://api.github.com/repos/beautify-web/js-beautify/issues{/number}", + "pulls_url": "https://api.github.com/repos/beautify-web/js-beautify/pulls{/number}", + "milestones_url": "https://api.github.com/repos/beautify-web/js-beautify/milestones{/number}", + "notifications_url": "https://api.github.com/repos/beautify-web/js-beautify/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/beautify-web/js-beautify/labels{/name}", + "releases_url": "https://api.github.com/repos/beautify-web/js-beautify/releases{/id}", + "deployments_url": "https://api.github.com/repos/beautify-web/js-beautify/deployments" + }, + "url": "https://api.github.com/notifications/threads/552398201", + "subscription_url": "https://api.github.com/notifications/threads/552398201/subscription" + }, + { + "id": "189792824", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-07-27T15:48:16Z", + "last_read_at": "2019-08-12T22:36:22Z", + "subject": { + "title": "How to deploy updated docker container without stopping old container", + "url": "https://api.github.com/repos/cloudbees/jenkins-scripts/issues/40", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/issues/comments/515693864", + "type": "Issue" + }, + "repository": { + "id": 49162083, + "node_id": "MDEwOlJlcG9zaXRvcnk0OTE2MjA4Mw==", + "name": "jenkins-scripts", + "full_name": "cloudbees/jenkins-scripts", + "private": false, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jenkins-scripts", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jenkins-scripts", + "forks_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/deployments" + }, + "url": "https://api.github.com/notifications/threads/189792824", + "subscription_url": "https://api.github.com/notifications/threads/189792824/subscription" + }, + { + "id": "550879702", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-11T00:13:33Z", + "last_read_at": "2019-09-11T00:12:00Z", + "subject": { + "title": "Querry commit does not work for me", + "url": "https://api.github.com/repos/github-api/github-api/issues/531", + "latest_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments/530167214", + "type": "Issue" + }, + "repository": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments" + }, + "url": "https://api.github.com/notifications/threads/550879702", + "subscription_url": "https://api.github.com/notifications/threads/550879702/subscription" + }, + { + "id": "546398401", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-07-24T14:56:05Z", + "last_read_at": "2019-09-11T05:50:31Z", + "subject": { + "title": "[JENKINS-58501] Add whitelist for exotic cases throwing CPS mismatch warning logs ", + "url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls/305", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/comments/514667427", + "type": "PullRequest" + }, + "repository": { + "id": 55543225, + "node_id": "MDEwOlJlcG9zaXRvcnk1NTU0MzIyNQ==", + "name": "workflow-cps-plugin", + "full_name": "jenkinsci/workflow-cps-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/workflow-cps-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/546398401", + "subscription_url": "https://api.github.com/notifications/threads/546398401/subscription" + }, + { + "id": "176621953", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-07-24T14:32:36Z", + "last_read_at": "2019-09-11T14:14:03Z", + "subject": { + "title": "[JENKINS-26635] Groovy step", + "url": "https://api.github.com/repos/jenkinsci/groovy-plugin/pulls/22", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/groovy-plugin/issues/comments/514657537", + "type": "PullRequest" + }, + "repository": { + "id": 1163594, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNTk0", + "name": "groovy-plugin", + "full_name": "jenkinsci/groovy-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/groovy-plugin", + "description": "Jenkins groovy plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/groovy-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/groovy-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/groovy-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/groovy-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/groovy-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/groovy-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/groovy-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/groovy-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/groovy-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/groovy-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/groovy-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/groovy-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/groovy-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/groovy-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/groovy-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/groovy-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/groovy-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/groovy-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/groovy-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/groovy-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/groovy-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/groovy-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/groovy-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/groovy-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/groovy-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/groovy-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/groovy-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/groovy-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/groovy-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/groovy-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/groovy-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/groovy-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/groovy-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/groovy-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/groovy-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/groovy-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/groovy-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/176621953", + "subscription_url": "https://api.github.com/notifications/threads/176621953/subscription" + }, + { + "id": "544886687", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-07-24T08:46:48Z", + "last_read_at": "2019-08-30T14:58:46Z", + "subject": { + "title": "CE-2987 - Script to clean up agent workspaces for disabled jobs", + "url": "https://api.github.com/repos/cloudbees/jenkins-scripts/pulls/101", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/issues/comments/514540026", + "type": "PullRequest" + }, + "repository": { + "id": 49162083, + "node_id": "MDEwOlJlcG9zaXRvcnk0OTE2MjA4Mw==", + "name": "jenkins-scripts", + "full_name": "cloudbees/jenkins-scripts", + "private": false, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jenkins-scripts", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jenkins-scripts", + "forks_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/deployments" + }, + "url": "https://api.github.com/notifications/threads/544886687", + "subscription_url": "https://api.github.com/notifications/threads/544886687/subscription" + }, + { + "id": "550002502", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-07-23T19:52:05Z", + "last_read_at": "2019-09-11T14:15:11Z", + "subject": { + "title": "Import upstream changes into sdm branch on knylander fork", + "url": "https://api.github.com/repos/knylander/cbn-site/pulls/10", + "latest_comment_url": "https://api.github.com/repos/knylander/cbn-site/pulls/10", + "type": "PullRequest" + }, + "repository": { + "id": 165090881, + "node_id": "MDEwOlJlcG9zaXRvcnkxNjUwOTA4ODE=", + "name": "cbn-site", + "full_name": "knylander/cbn-site", + "private": true, + "owner": { + "login": "knylander", + "id": 35577321, + "node_id": "MDQ6VXNlcjM1NTc3MzIx", + "avatar_url": "https://avatars0.githubusercontent.com/u/35577321?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/knylander", + "html_url": "https://github.com/knylander", + "followers_url": "https://api.github.com/users/knylander/followers", + "following_url": "https://api.github.com/users/knylander/following{/other_user}", + "gists_url": "https://api.github.com/users/knylander/gists{/gist_id}", + "starred_url": "https://api.github.com/users/knylander/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/knylander/subscriptions", + "organizations_url": "https://api.github.com/users/knylander/orgs", + "repos_url": "https://api.github.com/users/knylander/repos", + "events_url": "https://api.github.com/users/knylander/events{/privacy}", + "received_events_url": "https://api.github.com/users/knylander/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/knylander/cbn-site", + "description": "CloudBees Network - production & staging", + "fork": true, + "url": "https://api.github.com/repos/knylander/cbn-site", + "forks_url": "https://api.github.com/repos/knylander/cbn-site/forks", + "keys_url": "https://api.github.com/repos/knylander/cbn-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/knylander/cbn-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/knylander/cbn-site/teams", + "hooks_url": "https://api.github.com/repos/knylander/cbn-site/hooks", + "issue_events_url": "https://api.github.com/repos/knylander/cbn-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/knylander/cbn-site/events", + "assignees_url": "https://api.github.com/repos/knylander/cbn-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/knylander/cbn-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/knylander/cbn-site/tags", + "blobs_url": "https://api.github.com/repos/knylander/cbn-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/knylander/cbn-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/knylander/cbn-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/knylander/cbn-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/knylander/cbn-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/knylander/cbn-site/languages", + "stargazers_url": "https://api.github.com/repos/knylander/cbn-site/stargazers", + "contributors_url": "https://api.github.com/repos/knylander/cbn-site/contributors", + "subscribers_url": "https://api.github.com/repos/knylander/cbn-site/subscribers", + "subscription_url": "https://api.github.com/repos/knylander/cbn-site/subscription", + "commits_url": "https://api.github.com/repos/knylander/cbn-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/knylander/cbn-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/knylander/cbn-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/knylander/cbn-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/knylander/cbn-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/knylander/cbn-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/knylander/cbn-site/merges", + "archive_url": "https://api.github.com/repos/knylander/cbn-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/knylander/cbn-site/downloads", + "issues_url": "https://api.github.com/repos/knylander/cbn-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/knylander/cbn-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/knylander/cbn-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/knylander/cbn-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/knylander/cbn-site/labels{/name}", + "releases_url": "https://api.github.com/repos/knylander/cbn-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/knylander/cbn-site/deployments" + }, + "url": "https://api.github.com/notifications/threads/550002502", + "subscription_url": "https://api.github.com/notifications/threads/550002502/subscription" + }, + { + "id": "549561420", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-07-23T08:47:57Z", + "last_read_at": "2019-08-30T14:58:46Z", + "subject": { + "title": "Demo cs", + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/pulls/1", + "latest_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/pulls/1", + "type": "PullRequest" + }, + "repository": { + "id": 193577985, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTM1Nzc5ODU=", + "name": "cloudbees-pipeline-rules-interception-plugin", + "full_name": "cloudbees/cloudbees-pipeline-rules-interception-plugin", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/cloudbees-pipeline-rules-interception-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin", + "forks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/forks", + "keys_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/events", + "assignees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/merges", + "archive_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/549561420", + "subscription_url": "https://api.github.com/notifications/threads/549561420/subscription" + }, + { + "id": "548639937", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-07-22T05:18:14Z", + "last_read_at": "2019-08-30T14:58:46Z", + "subject": { + "title": "Script to disable Build periodically trigger", + "url": "https://api.github.com/repos/cloudbees/jenkins-scripts/pulls/103", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/pulls/103", + "type": "PullRequest" + }, + "repository": { + "id": 49162083, + "node_id": "MDEwOlJlcG9zaXRvcnk0OTE2MjA4Mw==", + "name": "jenkins-scripts", + "full_name": "cloudbees/jenkins-scripts", + "private": false, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jenkins-scripts", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jenkins-scripts", + "forks_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/deployments" + }, + "url": "https://api.github.com/notifications/threads/548639937", + "subscription_url": "https://api.github.com/notifications/threads/548639937/subscription" + }, + { + "id": "547181618", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-07-18T17:24:01Z", + "last_read_at": "2019-09-11T05:50:31Z", + "subject": { + "title": "[JENKINS-58501] add ignored tests for metaprogramming CPS mismatch logs", + "url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls/306", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/comments/512910199", + "type": "PullRequest" + }, + "repository": { + "id": 55543225, + "node_id": "MDEwOlJlcG9zaXRvcnk1NTU0MzIyNQ==", + "name": "workflow-cps-plugin", + "full_name": "jenkinsci/workflow-cps-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/workflow-cps-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/547181618", + "subscription_url": "https://api.github.com/notifications/threads/547181618/subscription" + }, + { + "id": "544734496", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-07-18T15:30:30Z", + "last_read_at": "2019-09-11T05:50:31Z", + "subject": { + "title": "[JENKINS-30572] Support ParallelStep in gdsl.groovy and fix parameter types for some steps", + "url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls/303", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls/303", + "type": "PullRequest" + }, + "repository": { + "id": 55543225, + "node_id": "MDEwOlJlcG9zaXRvcnk1NTU0MzIyNQ==", + "name": "workflow-cps-plugin", + "full_name": "jenkinsci/workflow-cps-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/workflow-cps-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/544734496", + "subscription_url": "https://api.github.com/notifications/threads/544734496/subscription" + }, + { + "id": "544738225", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-07-16T17:58:31Z", + "last_read_at": "2019-09-11T05:50:31Z", + "subject": { + "title": "Remove tests for BuildTriggerStep", + "url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls/304", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls/comments/304044368", + "type": "PullRequest" + }, + "repository": { + "id": 55543225, + "node_id": "MDEwOlJlcG9zaXRvcnk1NTU0MzIyNQ==", + "name": "workflow-cps-plugin", + "full_name": "jenkinsci/workflow-cps-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/workflow-cps-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/544738225", + "subscription_url": "https://api.github.com/notifications/threads/544738225/subscription" + }, + { + "id": "544954760", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-07-15T22:35:58Z", + "last_read_at": "2019-08-29T07:26:31Z", + "subject": { + "title": "Unable to get deployment by id", + "url": "https://api.github.com/repos/github-api/github-api/issues/529", + "latest_comment_url": "https://api.github.com/repos/github-api/github-api/issues/529", + "type": "Issue" + }, + "repository": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments" + }, + "url": "https://api.github.com/notifications/threads/544954760", + "subscription_url": "https://api.github.com/notifications/threads/544954760/subscription" + }, + { + "id": "544726060", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-11T00:11:54Z", + "last_read_at": "2019-09-11T00:04:36Z", + "subject": { + "title": "assets on GHRelease", + "url": "https://api.github.com/repos/github-api/github-api/issues/528", + "latest_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments/530166926", + "type": "Issue" + }, + "repository": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments" + }, + "url": "https://api.github.com/notifications/threads/544726060", + "subscription_url": "https://api.github.com/notifications/threads/544726060/subscription" + }, + { + "id": "541484467", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-07-12T10:53:47Z", + "last_read_at": "2019-09-11T00:04:13Z", + "subject": { + "title": "Malformed URL exception while accessing Enterprise Repository and fetching data", + "url": "https://api.github.com/repos/github-api/github-api/issues/526", + "latest_comment_url": "https://api.github.com/repos/github-api/github-api/issues/526", + "type": "Issue" + }, + "repository": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments" + }, + "url": "https://api.github.com/notifications/threads/541484467", + "subscription_url": "https://api.github.com/notifications/threads/541484467/subscription" + }, + { + "id": "534840480", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-07-09T13:25:02Z", + "last_read_at": "2019-09-11T05:50:31Z", + "subject": { + "title": "SnippetizerTest.generateSnippetAdvancedDeprecated failed in PCT", + "url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls/302", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls/302", + "type": "PullRequest" + }, + "repository": { + "id": 55543225, + "node_id": "MDEwOlJlcG9zaXRvcnk1NTU0MzIyNQ==", + "name": "workflow-cps-plugin", + "full_name": "jenkinsci/workflow-cps-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/workflow-cps-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/534840480", + "subscription_url": "https://api.github.com/notifications/threads/534840480/subscription" + }, + { + "id": "533631798", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-07-09T13:27:32Z", + "last_read_at": "2019-09-11T05:50:31Z", + "subject": { + "title": "[FIXED JENKINS-52395] Upgrade groovy-cps to 1.29", + "url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls/301", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls/301", + "type": "PullRequest" + }, + "repository": { + "id": 55543225, + "node_id": "MDEwOlJlcG9zaXRvcnk1NTU0MzIyNQ==", + "name": "workflow-cps-plugin", + "full_name": "jenkinsci/workflow-cps-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/workflow-cps-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/533631798", + "subscription_url": "https://api.github.com/notifications/threads/533631798/subscription" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/__files/notifications-1b694852-8043-418c-a76e-39370f22db96.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/__files/notifications-1b694852-8043-418c-a76e-39370f22db96.json new file mode 100644 index 0000000000..8334e24aed --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/__files/notifications-1b694852-8043-418c-a76e-39370f22db96.json @@ -0,0 +1,4102 @@ +[ + { + "id": "537365912", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-26T15:07:19Z", + "last_read_at": "2019-08-27T21:21:32Z", + "subject": { + "title": "Add Audit Log Viewer UI", + "url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/pulls/53", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/pulls/53", + "type": "PullRequest" + }, + "repository": { + "id": 159685662, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTk2ODU2NjI=", + "name": "audit-log-plugin", + "full_name": "jenkinsci/audit-log-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/audit-log-plugin", + "description": "Audit logging plugin for Jenkins based on Apache Log4j Audit", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/audit-log-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/537365912", + "subscription_url": "https://api.github.com/notifications/threads/537365912/subscription" + }, + { + "id": "520673680", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-26T15:06:26Z", + "last_read_at": "2019-08-27T21:21:32Z", + "subject": { + "title": "Log credentials usage", + "url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/pulls/50", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/pulls/50", + "type": "PullRequest" + }, + "repository": { + "id": 159685662, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTk2ODU2NjI=", + "name": "audit-log-plugin", + "full_name": "jenkinsci/audit-log-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/audit-log-plugin", + "description": "Audit logging plugin for Jenkins based on Apache Log4j Audit", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/audit-log-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/520673680", + "subscription_url": "https://api.github.com/notifications/threads/520673680/subscription" + }, + { + "id": "520663416", + "unread": false, + "reason": "mention", + "updated_at": "2019-08-30T15:26:49Z", + "last_read_at": "2019-08-30T15:26:05Z", + "subject": { + "title": "[JENKINS-39682] trigger after-save hooks and recalculate", + "url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/pulls/158", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/pulls/158", + "type": "PullRequest" + }, + "repository": { + "id": 12878218, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjg3ODIxOA==", + "name": "branch-api-plugin", + "full_name": "jenkinsci/branch-api-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/branch-api-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/branch-api-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/520663416", + "subscription_url": "https://api.github.com/notifications/threads/520663416/subscription" + }, + { + "id": "567590376", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-26T09:23:18Z", + "last_read_at": "2019-08-29T07:24:57Z", + "subject": { + "title": "Add changelog and upgrade guide for 2.176.3", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2436", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments/524789082", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/567590376", + "subscription_url": "https://api.github.com/notifications/threads/567590376/subscription" + }, + { + "id": "569328162", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-26T12:55:33Z", + "last_read_at": "2019-08-29T07:24:57Z", + "subject": { + "title": "Add changelog for 2.191, 2.192", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2447", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2447", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/569328162", + "subscription_url": "https://api.github.com/notifications/threads/569328162/subscription" + }, + { + "id": "569311254", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-26T12:28:10Z", + "last_read_at": "2019-08-29T07:24:57Z", + "subject": { + "title": "GSoC: Update project for Role Strategy", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2446", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2446", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/569311254", + "subscription_url": "https://api.github.com/notifications/threads/569311254/subscription" + }, + { + "id": "568907871", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-26T11:10:07Z", + "last_read_at": "2019-08-29T07:24:57Z", + "subject": { + "title": "GSoC: Add blog on Role Strategy Plugin Performance improvements", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2444", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments/524819381", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/568907871", + "subscription_url": "https://api.github.com/notifications/threads/568907871/subscription" + }, + { + "id": "569276096", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-26T11:02:54Z", + "last_read_at": "2019-08-27T21:21:47Z", + "subject": { + "title": "chore(deps): bump https://github.com/cloudbees/jxui-frontend.git from 0.0.816 to 0.0.819", + "url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/12", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/12", + "type": "PullRequest" + }, + "repository": { + "id": 183067295, + "node_id": "MDEwOlJlcG9zaXRvcnkxODMwNjcyOTU=", + "name": "jx-app-ui", + "full_name": "cloudbees/jx-app-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jx-app-ui", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jx-app-ui", + "forks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jx-app-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jx-app-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jx-app-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jx-app-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jx-app-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jx-app-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jx-app-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jx-app-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jx-app-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jx-app-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jx-app-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jx-app-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jx-app-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jx-app-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/569276096", + "subscription_url": "https://api.github.com/notifications/threads/569276096/subscription" + }, + { + "id": "569260550", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-26T10:31:42Z", + "last_read_at": "2019-08-29T07:24:57Z", + "subject": { + "title": "Update blog thumbnail", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2445", + "latest_comment_url": null, + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/569260550", + "subscription_url": "https://api.github.com/notifications/threads/569260550/subscription" + }, + { + "id": "569240401", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-26T10:13:36Z", + "last_read_at": "2019-08-27T21:21:47Z", + "subject": { + "title": "chore(deps): bump https://github.com/cloudbees/jxui-frontend from 0.0.815 to 0.0.816", + "url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/11", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/11", + "type": "PullRequest" + }, + "repository": { + "id": 183067295, + "node_id": "MDEwOlJlcG9zaXRvcnkxODMwNjcyOTU=", + "name": "jx-app-ui", + "full_name": "cloudbees/jx-app-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jx-app-ui", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jx-app-ui", + "forks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jx-app-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jx-app-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jx-app-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jx-app-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jx-app-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jx-app-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jx-app-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jx-app-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jx-app-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jx-app-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jx-app-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jx-app-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jx-app-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jx-app-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/569240401", + "subscription_url": "https://api.github.com/notifications/threads/569240401/subscription" + }, + { + "id": "569238185", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-26T09:49:56Z", + "last_read_at": "2019-08-27T21:21:47Z", + "subject": { + "title": "chore(deps): bump https://github.com/cloudbees/jxui-frontend from 0.0.815 to 0.0.816", + "url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/10", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/10", + "type": "PullRequest" + }, + "repository": { + "id": 183067295, + "node_id": "MDEwOlJlcG9zaXRvcnkxODMwNjcyOTU=", + "name": "jx-app-ui", + "full_name": "cloudbees/jx-app-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jx-app-ui", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jx-app-ui", + "forks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jx-app-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jx-app-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jx-app-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jx-app-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jx-app-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jx-app-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jx-app-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jx-app-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jx-app-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jx-app-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jx-app-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jx-app-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jx-app-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jx-app-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/569238185", + "subscription_url": "https://api.github.com/notifications/threads/569238185/subscription" + }, + { + "id": "569236281", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-26T09:45:54Z", + "last_read_at": "2019-08-27T21:21:47Z", + "subject": { + "title": "feat: migrate to values schema json for values and update to last UI …", + "url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/9", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/9", + "type": "PullRequest" + }, + "repository": { + "id": 183067295, + "node_id": "MDEwOlJlcG9zaXRvcnkxODMwNjcyOTU=", + "name": "jx-app-ui", + "full_name": "cloudbees/jx-app-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jx-app-ui", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jx-app-ui", + "forks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jx-app-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jx-app-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jx-app-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jx-app-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jx-app-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jx-app-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jx-app-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jx-app-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jx-app-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jx-app-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jx-app-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jx-app-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jx-app-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jx-app-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/569236281", + "subscription_url": "https://api.github.com/notifications/threads/569236281/subscription" + }, + { + "id": "569118409", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-26T06:16:51Z", + "last_read_at": "2019-08-27T21:21:28Z", + "subject": { + "title": "CSDOCS-93 - database model", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/46", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/46", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/569118409", + "subscription_url": "https://api.github.com/notifications/threads/569118409/subscription" + }, + { + "id": "559756125", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-26T03:35:42Z", + "last_read_at": "2019-08-29T07:24:57Z", + "subject": { + "title": "add GitHub Actions CI/CD ci.yml", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2409", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2409", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/559756125", + "subscription_url": "https://api.github.com/notifications/threads/559756125/subscription" + }, + { + "id": "568825073", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-25T22:18:02Z", + "last_read_at": "2019-08-29T07:24:57Z", + "subject": { + "title": "Failing build due to illegal filename", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2443", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2443", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/568825073", + "subscription_url": "https://api.github.com/notifications/threads/568825073/subscription" + }, + { + "id": "568826363", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-25T00:44:14Z", + "last_read_at": "2019-08-29T07:24:57Z", + "subject": { + "title": "Failing build due to illegal filename", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits/0493348fff8f46d1371d084dbc30a67c14391c21", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments/34820413", + "type": "Commit" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/568826363", + "subscription_url": "https://api.github.com/notifications/threads/568826363/subscription" + }, + { + "id": "568815011", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-25T00:36:58Z", + "last_read_at": "2019-08-29T07:24:57Z", + "subject": { + "title": "Gitlab<3jenkins ❤️ ", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2442", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments/524590688", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/568815011", + "subscription_url": "https://api.github.com/notifications/threads/568815011/subscription" + }, + { + "id": "568264321", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-24T23:16:18Z", + "last_read_at": "2019-08-29T07:24:57Z", + "subject": { + "title": "Final GSoC Evaluations updates", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2440", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments/524587480", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/568264321", + "subscription_url": "https://api.github.com/notifications/threads/568264321/subscription" + }, + { + "id": "563431906", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-24T21:09:16Z", + "last_read_at": "2019-08-29T07:24:57Z", + "subject": { + "title": "Add example to environment docs", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2420", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2420", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/563431906", + "subscription_url": "https://api.github.com/notifications/threads/563431906/subscription" + }, + { + "id": "383986943", + "unread": false, + "reason": "state_change", + "updated_at": "2019-08-24T22:57:38Z", + "last_read_at": "2019-08-24T22:50:24Z", + "subject": { + "title": "[JENKINS-53752] Add ability to exclude builds of untrusted PRs", + "url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/pulls/188", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues/comments/524586549", + "type": "PullRequest" + }, + "repository": { + "id": 43903637, + "node_id": "MDEwOlJlcG9zaXRvcnk0MzkwMzYzNw==", + "name": "github-branch-source-plugin", + "full_name": "jenkinsci/github-branch-source-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/github-branch-source-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/383986943", + "subscription_url": "https://api.github.com/notifications/threads/383986943/subscription" + }, + { + "id": "549136479", + "unread": false, + "reason": "mention", + "updated_at": "2019-08-23T23:32:57Z", + "last_read_at": "2019-08-23T23:30:02Z", + "subject": { + "title": "Remove usages of deprecated APIs", + "url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/pulls/345", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/issues/comments/524492533", + "type": "PullRequest" + }, + "repository": { + "id": 66677338, + "node_id": "MDEwOlJlcG9zaXRvcnk2NjY3NzMzOA==", + "name": "pipeline-model-definition-plugin", + "full_name": "jenkinsci/pipeline-model-definition-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pipeline-model-definition-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/549136479", + "subscription_url": "https://api.github.com/notifications/threads/549136479/subscription" + }, + { + "id": "568107299", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-23T21:31:05Z", + "last_read_at": "2019-08-27T21:21:59Z", + "subject": { + "title": "Bump eslint-plugin-react-hooks from 1.7.0 to 2.0.1", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/68", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/68", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/568107299", + "subscription_url": "https://api.github.com/notifications/threads/568107299/subscription" + }, + { + "id": "566422229", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-23T21:30:44Z", + "last_read_at": "2019-08-27T21:21:59Z", + "subject": { + "title": "Bump @types/react-dom from 16.8.5 to 16.9.0", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/67", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/67", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/566422229", + "subscription_url": "https://api.github.com/notifications/threads/566422229/subscription" + }, + { + "id": "568484677", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-23T19:37:47Z", + "last_read_at": "2019-08-29T07:24:57Z", + "subject": { + "title": "[JENKINS-59038] Add final eval presentation slides", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2441", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2441", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/568484677", + "subscription_url": "https://api.github.com/notifications/threads/568484677/subscription" + }, + { + "id": "551990109", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-23T19:08:47Z", + "last_read_at": "2019-08-29T07:24:57Z", + "subject": { + "title": "Some discussion of requireUpperBoundDeps failures and the role of the BOM", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2390", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2390", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/551990109", + "subscription_url": "https://api.github.com/notifications/threads/551990109/subscription" + }, + { + "id": "555078021", + "unread": false, + "reason": "mention", + "updated_at": "2019-08-23T19:02:37Z", + "last_read_at": "2019-08-24T22:59:42Z", + "subject": { + "title": "Add more plugins to the managed set", + "url": "https://api.github.com/repos/jenkinsci/bom/pulls/53", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/bom/pulls/comments/317264868", + "type": "PullRequest" + }, + "repository": { + "id": 196048675, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTYwNDg2NzU=", + "name": "bom", + "full_name": "jenkinsci/bom", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/bom", + "description": "JENKINS-47498: allow plugin dependencies to be specified via BOM", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/bom", + "forks_url": "https://api.github.com/repos/jenkinsci/bom/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/bom/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/bom/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/bom/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/bom/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/bom/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/bom/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/bom/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/bom/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/bom/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/bom/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/bom/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/bom/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/bom/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/bom/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/bom/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/bom/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/bom/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/bom/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/bom/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/bom/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/bom/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/bom/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/bom/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/bom/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/bom/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/bom/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/bom/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/bom/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/bom/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/bom/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/bom/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/bom/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/bom/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/bom/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/bom/deployments" + }, + "url": "https://api.github.com/notifications/threads/555078021", + "subscription_url": "https://api.github.com/notifications/threads/555078021/subscription" + }, + { + "id": "560468129", + "unread": false, + "reason": "comment", + "updated_at": "2019-08-23T17:42:54Z", + "last_read_at": "2019-08-28T18:20:29Z", + "subject": { + "title": "Add readlines to string methods whitelist", + "url": "https://api.github.com/repos/jenkinsci/script-security-plugin/pulls/263", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/pulls/263", + "type": "PullRequest" + }, + "repository": { + "id": 17301604, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzMwMTYwNA==", + "name": "script-security-plugin", + "full_name": "jenkinsci/script-security-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/script-security-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/script-security-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/560468129", + "subscription_url": "https://api.github.com/notifications/threads/560468129/subscription" + }, + { + "id": "568229354", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-23T13:23:06Z", + "last_read_at": "2019-08-29T07:24:57Z", + "subject": { + "title": "Add gsoc page", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2439", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2439", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/568229354", + "subscription_url": "https://api.github.com/notifications/threads/568229354/subscription" + }, + { + "id": "568227306", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-23T13:06:45Z", + "last_read_at": "2019-08-29T07:24:57Z", + "subject": { + "title": "Add blog post Introduce React Plugin Template", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2438", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2438", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/568227306", + "subscription_url": "https://api.github.com/notifications/threads/568227306/subscription" + }, + { + "id": "568022175", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-23T08:34:50Z", + "last_read_at": "2019-08-29T07:24:57Z", + "subject": { + "title": "[JENKINS-59038] Fix image and broken link", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2437", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2437", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/568022175", + "subscription_url": "https://api.github.com/notifications/threads/568022175/subscription" + }, + { + "id": "567700011", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-23T07:22:09Z", + "last_read_at": "2019-09-11T00:03:42Z", + "subject": { + "title": "Mention Pipeline team alias instead of individual members", + "url": "https://api.github.com/repos/cloudbees/urap/pulls/4", + "latest_comment_url": "https://api.github.com/repos/cloudbees/urap/issues/comments/524203922", + "type": "PullRequest" + }, + "repository": { + "id": 202161566, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDIxNjE1NjY=", + "name": "urap", + "full_name": "cloudbees/urap", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/urap", + "description": "Unified Release Automatic Plugin updater. https://en.wikipedia.org/wiki/Urap", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/urap", + "forks_url": "https://api.github.com/repos/cloudbees/urap/forks", + "keys_url": "https://api.github.com/repos/cloudbees/urap/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/urap/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/urap/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/urap/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/urap/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/urap/events", + "assignees_url": "https://api.github.com/repos/cloudbees/urap/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/urap/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/urap/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/urap/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/urap/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/urap/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/urap/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/urap/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/urap/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/urap/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/urap/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/urap/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/urap/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/urap/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/urap/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/urap/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/urap/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/urap/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/urap/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/urap/merges", + "archive_url": "https://api.github.com/repos/cloudbees/urap/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/urap/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/urap/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/urap/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/urap/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/urap/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/urap/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/urap/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/urap/deployments" + }, + "url": "https://api.github.com/notifications/threads/567700011", + "subscription_url": "https://api.github.com/notifications/threads/567700011/subscription" + }, + { + "id": "568038279", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-23T04:57:51Z", + "last_read_at": "2019-08-27T21:16:10Z", + "subject": { + "title": "CSDOCS-87 - All the security", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/45", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/45", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/568038279", + "subscription_url": "https://api.github.com/notifications/threads/568038279/subscription" + }, + { + "id": "544718897", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-22T20:54:19Z", + "last_read_at": "2019-08-27T21:16:10Z", + "subject": { + "title": "Try spot bugs issue on PR 50", + "url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/pulls/55", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/pulls/55", + "type": "PullRequest" + }, + "repository": { + "id": 159685662, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTk2ODU2NjI=", + "name": "audit-log-plugin", + "full_name": "jenkinsci/audit-log-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/audit-log-plugin", + "description": "Audit logging plugin for Jenkins based on Apache Log4j Audit", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/audit-log-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/544718897", + "subscription_url": "https://api.github.com/notifications/threads/544718897/subscription" + }, + { + "id": "561450700", + "unread": false, + "reason": "comment", + "updated_at": "2019-08-22T20:29:00Z", + "last_read_at": "2019-08-22T20:55:32Z", + "subject": { + "title": "[JENKINS-58939] - Support filtering out pull requests by label", + "url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/pulls/239", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues/comments/524064804", + "type": "PullRequest" + }, + "repository": { + "id": 43903637, + "node_id": "MDEwOlJlcG9zaXRvcnk0MzkwMzYzNw==", + "name": "github-branch-source-plugin", + "full_name": "jenkinsci/github-branch-source-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/github-branch-source-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/561450700", + "subscription_url": "https://api.github.com/notifications/threads/561450700/subscription" + }, + { + "id": "554106610", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-22T19:36:22Z", + "last_read_at": "2019-08-28T20:26:33Z", + "subject": { + "title": "Report returns monthly, not weekly", + "url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/pulls/3", + "latest_comment_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/pulls/3", + "type": "PullRequest" + }, + "repository": { + "id": 183626073, + "node_id": "MDEwOlJlcG9zaXRvcnkxODM2MjYwNzM=", + "name": "user-activity-monitoring-scripts", + "full_name": "cloudbees/user-activity-monitoring-scripts", + "private": false, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/user-activity-monitoring-scripts", + "description": "Scripts for the User Activity Monitoring plugin", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts", + "forks_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/forks", + "keys_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/events", + "assignees_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/merges", + "archive_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/deployments" + }, + "url": "https://api.github.com/notifications/threads/554106610", + "subscription_url": "https://api.github.com/notifications/threads/554106610/subscription" + }, + { + "id": "567014983", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-22T14:39:21Z", + "last_read_at": "2019-08-29T07:24:57Z", + "subject": { + "title": "Update project page for Remoting over Apache Kafka with Kubernetes features", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2432", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2432", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/567014983", + "subscription_url": "https://api.github.com/notifications/threads/567014983/subscription" + }, + { + "id": "566769688", + "unread": false, + "reason": "mention", + "updated_at": "2019-08-22T13:49:16Z", + "last_read_at": "2019-08-29T07:25:01Z", + "subject": { + "title": "[WiP] Autogenerated OSS plugin updates Aug 21, 2019", + "url": "https://api.github.com/repos/cloudbees/unified-release/pulls/1413", + "latest_comment_url": "https://api.github.com/repos/cloudbees/unified-release/pulls/1413", + "type": "PullRequest" + }, + "repository": { + "id": 78131017, + "node_id": "MDEwOlJlcG9zaXRvcnk3ODEzMTAxNw==", + "name": "unified-release", + "full_name": "cloudbees/unified-release", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/unified-release", + "description": "Unified Release Repository", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/unified-release", + "forks_url": "https://api.github.com/repos/cloudbees/unified-release/forks", + "keys_url": "https://api.github.com/repos/cloudbees/unified-release/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/unified-release/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/unified-release/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/unified-release/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/unified-release/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/unified-release/events", + "assignees_url": "https://api.github.com/repos/cloudbees/unified-release/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/unified-release/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/unified-release/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/unified-release/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/unified-release/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/unified-release/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/unified-release/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/unified-release/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/unified-release/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/unified-release/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/unified-release/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/unified-release/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/unified-release/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/unified-release/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/unified-release/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/unified-release/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/unified-release/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/unified-release/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/unified-release/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/unified-release/merges", + "archive_url": "https://api.github.com/repos/cloudbees/unified-release/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/unified-release/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/unified-release/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/unified-release/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/unified-release/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/unified-release/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/unified-release/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/unified-release/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/unified-release/deployments" + }, + "url": "https://api.github.com/notifications/threads/566769688", + "subscription_url": "https://api.github.com/notifications/threads/566769688/subscription" + }, + { + "id": "562954850", + "unread": false, + "reason": "mention", + "updated_at": "2019-08-22T13:48:46Z", + "last_read_at": "2019-08-29T07:25:01Z", + "subject": { + "title": "[WiP] Autogenerated OSS plugin updates Aug 17, 2019", + "url": "https://api.github.com/repos/cloudbees/unified-release/pulls/1408", + "latest_comment_url": "https://api.github.com/repos/cloudbees/unified-release/pulls/1408", + "type": "PullRequest" + }, + "repository": { + "id": 78131017, + "node_id": "MDEwOlJlcG9zaXRvcnk3ODEzMTAxNw==", + "name": "unified-release", + "full_name": "cloudbees/unified-release", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/unified-release", + "description": "Unified Release Repository", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/unified-release", + "forks_url": "https://api.github.com/repos/cloudbees/unified-release/forks", + "keys_url": "https://api.github.com/repos/cloudbees/unified-release/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/unified-release/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/unified-release/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/unified-release/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/unified-release/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/unified-release/events", + "assignees_url": "https://api.github.com/repos/cloudbees/unified-release/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/unified-release/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/unified-release/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/unified-release/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/unified-release/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/unified-release/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/unified-release/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/unified-release/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/unified-release/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/unified-release/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/unified-release/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/unified-release/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/unified-release/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/unified-release/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/unified-release/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/unified-release/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/unified-release/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/unified-release/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/unified-release/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/unified-release/merges", + "archive_url": "https://api.github.com/repos/cloudbees/unified-release/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/unified-release/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/unified-release/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/unified-release/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/unified-release/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/unified-release/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/unified-release/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/unified-release/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/unified-release/deployments" + }, + "url": "https://api.github.com/notifications/threads/562954850", + "subscription_url": "https://api.github.com/notifications/threads/562954850/subscription" + }, + { + "id": "563436160", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-22T11:13:32Z", + "last_read_at": "2019-08-29T07:24:57Z", + "subject": { + "title": "Doc ref to localhost assumes a local server", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2421", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2421", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/563436160", + "subscription_url": "https://api.github.com/notifications/threads/563436160/subscription" + }, + { + "id": "567477732", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-22T09:59:08Z", + "last_read_at": "2019-09-11T00:03:42Z", + "subject": { + "title": "Wiki links in PR description", + "url": "https://api.github.com/repos/cloudbees/urap/pulls/2", + "latest_comment_url": "https://api.github.com/repos/cloudbees/urap/issues/comments/523836803", + "type": "PullRequest" + }, + "repository": { + "id": 202161566, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDIxNjE1NjY=", + "name": "urap", + "full_name": "cloudbees/urap", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/urap", + "description": "Unified Release Automatic Plugin updater. https://en.wikipedia.org/wiki/Urap", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/urap", + "forks_url": "https://api.github.com/repos/cloudbees/urap/forks", + "keys_url": "https://api.github.com/repos/cloudbees/urap/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/urap/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/urap/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/urap/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/urap/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/urap/events", + "assignees_url": "https://api.github.com/repos/cloudbees/urap/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/urap/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/urap/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/urap/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/urap/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/urap/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/urap/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/urap/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/urap/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/urap/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/urap/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/urap/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/urap/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/urap/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/urap/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/urap/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/urap/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/urap/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/urap/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/urap/merges", + "archive_url": "https://api.github.com/repos/cloudbees/urap/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/urap/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/urap/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/urap/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/urap/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/urap/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/urap/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/urap/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/urap/deployments" + }, + "url": "https://api.github.com/notifications/threads/567477732", + "subscription_url": "https://api.github.com/notifications/threads/567477732/subscription" + }, + { + "id": "567092427", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-22T09:36:48Z", + "last_read_at": "2019-08-29T07:24:57Z", + "subject": { + "title": "Update styles for new navbar class", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2433", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments/523829592", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/567092427", + "subscription_url": "https://api.github.com/notifications/threads/567092427/subscription" + }, + { + "id": "567344559", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-22T06:06:41Z", + "last_read_at": "2019-08-27T21:16:10Z", + "subject": { + "title": "CSDOCS-75 - Database backed sessions", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/44", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/44", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/567344559", + "subscription_url": "https://api.github.com/notifications/threads/567344559/subscription" + }, + { + "id": "566964486", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-22T04:43:29Z", + "last_read_at": "2019-08-29T07:24:57Z", + "subject": { + "title": "Require docker&&linux", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2431", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2431", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/566964486", + "subscription_url": "https://api.github.com/notifications/threads/566964486/subscription" + }, + { + "id": "566625568", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-22T00:35:19Z", + "last_read_at": "2019-08-27T21:16:10Z", + "subject": { + "title": "[CSDOCS-55] Add current go.cloudbees.com plugins page", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/43", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/43", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/566625568", + "subscription_url": "https://api.github.com/notifications/threads/566625568/subscription" + }, + { + "id": "566997852", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-21T18:17:31Z", + "last_read_at": "2019-08-29T07:19:34Z", + "subject": { + "title": "Require docker&&linux", + "url": "https://api.github.com/repos/jenkins-infra/community-functions/pulls/21", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/community-functions/issues/comments/523587792", + "type": "PullRequest" + }, + "repository": { + "id": 110898753, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTA4OTg3NTM=", + "name": "community-functions", + "full_name": "jenkins-infra/community-functions", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/community-functions", + "description": "Azure Functions to implement community automation for the Jenkins project", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/community-functions", + "forks_url": "https://api.github.com/repos/jenkins-infra/community-functions/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/community-functions/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/community-functions/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/community-functions/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/community-functions/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/community-functions/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/community-functions/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/community-functions/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/community-functions/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/community-functions/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/community-functions/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/community-functions/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/community-functions/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/community-functions/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/community-functions/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/community-functions/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/community-functions/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/community-functions/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/community-functions/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/community-functions/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/community-functions/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/community-functions/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/community-functions/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/community-functions/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/community-functions/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/community-functions/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/community-functions/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/community-functions/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/community-functions/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/community-functions/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/community-functions/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/community-functions/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/community-functions/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/community-functions/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/community-functions/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/community-functions/deployments" + }, + "url": "https://api.github.com/notifications/threads/566997852", + "subscription_url": "https://api.github.com/notifications/threads/566997852/subscription" + }, + { + "id": "53118026", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-21T17:32:04Z", + "last_read_at": "2019-08-21T21:04:51Z", + "subject": { + "title": "Difference between brace styles? (collapse vs end-expand)", + "url": "https://api.github.com/repos/beautify-web/js-beautify/issues/596", + "latest_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/comments/523566956", + "type": "Issue" + }, + "repository": { + "id": 84822, + "node_id": "MDEwOlJlcG9zaXRvcnk4NDgyMg==", + "name": "js-beautify", + "full_name": "beautify-web/js-beautify", + "private": false, + "owner": { + "login": "beautify-web", + "id": 6538164, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjY1MzgxNjQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/6538164?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/beautify-web", + "html_url": "https://github.com/beautify-web", + "followers_url": "https://api.github.com/users/beautify-web/followers", + "following_url": "https://api.github.com/users/beautify-web/following{/other_user}", + "gists_url": "https://api.github.com/users/beautify-web/gists{/gist_id}", + "starred_url": "https://api.github.com/users/beautify-web/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/beautify-web/subscriptions", + "organizations_url": "https://api.github.com/users/beautify-web/orgs", + "repos_url": "https://api.github.com/users/beautify-web/repos", + "events_url": "https://api.github.com/users/beautify-web/events{/privacy}", + "received_events_url": "https://api.github.com/users/beautify-web/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/beautify-web/js-beautify", + "description": "Beautifier for javascript ", + "fork": false, + "url": "https://api.github.com/repos/beautify-web/js-beautify", + "forks_url": "https://api.github.com/repos/beautify-web/js-beautify/forks", + "keys_url": "https://api.github.com/repos/beautify-web/js-beautify/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/beautify-web/js-beautify/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/beautify-web/js-beautify/teams", + "hooks_url": "https://api.github.com/repos/beautify-web/js-beautify/hooks", + "issue_events_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/events{/number}", + "events_url": "https://api.github.com/repos/beautify-web/js-beautify/events", + "assignees_url": "https://api.github.com/repos/beautify-web/js-beautify/assignees{/user}", + "branches_url": "https://api.github.com/repos/beautify-web/js-beautify/branches{/branch}", + "tags_url": "https://api.github.com/repos/beautify-web/js-beautify/tags", + "blobs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/beautify-web/js-beautify/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/beautify-web/js-beautify/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/beautify-web/js-beautify/statuses/{sha}", + "languages_url": "https://api.github.com/repos/beautify-web/js-beautify/languages", + "stargazers_url": "https://api.github.com/repos/beautify-web/js-beautify/stargazers", + "contributors_url": "https://api.github.com/repos/beautify-web/js-beautify/contributors", + "subscribers_url": "https://api.github.com/repos/beautify-web/js-beautify/subscribers", + "subscription_url": "https://api.github.com/repos/beautify-web/js-beautify/subscription", + "commits_url": "https://api.github.com/repos/beautify-web/js-beautify/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/beautify-web/js-beautify/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/beautify-web/js-beautify/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/beautify-web/js-beautify/contents/{+path}", + "compare_url": "https://api.github.com/repos/beautify-web/js-beautify/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/beautify-web/js-beautify/merges", + "archive_url": "https://api.github.com/repos/beautify-web/js-beautify/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/beautify-web/js-beautify/downloads", + "issues_url": "https://api.github.com/repos/beautify-web/js-beautify/issues{/number}", + "pulls_url": "https://api.github.com/repos/beautify-web/js-beautify/pulls{/number}", + "milestones_url": "https://api.github.com/repos/beautify-web/js-beautify/milestones{/number}", + "notifications_url": "https://api.github.com/repos/beautify-web/js-beautify/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/beautify-web/js-beautify/labels{/name}", + "releases_url": "https://api.github.com/repos/beautify-web/js-beautify/releases{/id}", + "deployments_url": "https://api.github.com/repos/beautify-web/js-beautify/deployments" + }, + "url": "https://api.github.com/notifications/threads/53118026", + "subscription_url": "https://api.github.com/notifications/threads/53118026/subscription" + }, + { + "id": "566905786", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-21T17:11:51Z", + "last_read_at": "2019-08-27T21:16:10Z", + "subject": { + "title": "Delete values.schema.json", + "url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/8", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/8", + "type": "PullRequest" + }, + "repository": { + "id": 183067295, + "node_id": "MDEwOlJlcG9zaXRvcnkxODMwNjcyOTU=", + "name": "jx-app-ui", + "full_name": "cloudbees/jx-app-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jx-app-ui", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jx-app-ui", + "forks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jx-app-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jx-app-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jx-app-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jx-app-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jx-app-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jx-app-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jx-app-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jx-app-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jx-app-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jx-app-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jx-app-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jx-app-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jx-app-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jx-app-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/566905786", + "subscription_url": "https://api.github.com/notifications/threads/566905786/subscription" + }, + { + "id": "566677481", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-08-21T17:03:23Z", + "last_read_at": "2019-08-29T07:24:57Z", + "subject": { + "title": "Add information about Community Bridge to Advocacy & Outreach resources", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2429", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2429", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/566677481", + "subscription_url": "https://api.github.com/notifications/threads/566677481/subscription" + }, + { + "id": "566820706", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-21T16:07:58Z", + "last_read_at": "2019-08-27T21:16:10Z", + "subject": { + "title": "Use right secret", + "url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/6", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/comments/523528054", + "type": "PullRequest" + }, + "repository": { + "id": 183067295, + "node_id": "MDEwOlJlcG9zaXRvcnkxODMwNjcyOTU=", + "name": "jx-app-ui", + "full_name": "cloudbees/jx-app-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jx-app-ui", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jx-app-ui", + "forks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jx-app-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jx-app-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jx-app-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jx-app-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jx-app-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jx-app-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jx-app-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jx-app-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jx-app-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jx-app-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jx-app-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jx-app-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jx-app-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jx-app-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/566820706", + "subscription_url": "https://api.github.com/notifications/threads/566820706/subscription" + }, + { + "id": "566820584", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-21T16:07:52Z", + "last_read_at": "2019-08-27T21:16:10Z", + "subject": { + "title": "Update jenkins-x.yml", + "url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/5", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/5", + "type": "PullRequest" + }, + "repository": { + "id": 183067295, + "node_id": "MDEwOlJlcG9zaXRvcnkxODMwNjcyOTU=", + "name": "jx-app-ui", + "full_name": "cloudbees/jx-app-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jx-app-ui", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jx-app-ui", + "forks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jx-app-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jx-app-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jx-app-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jx-app-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jx-app-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jx-app-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jx-app-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jx-app-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jx-app-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jx-app-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jx-app-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jx-app-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jx-app-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jx-app-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/566820584", + "subscription_url": "https://api.github.com/notifications/threads/566820584/subscription" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/__files/notifications-1de52522-e900-4b19-90cd-758573c2349a.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/__files/notifications-1de52522-e900-4b19-90cd-758573c2349a.json new file mode 100644 index 0000000000..01a7f072fa --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/__files/notifications-1de52522-e900-4b19-90cd-758573c2349a.json @@ -0,0 +1,4102 @@ +[ + { + "id": "600871963", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-10-08T15:10:07Z", + "last_read_at": "2019-10-08T19:35:32Z", + "subject": { + "title": "Move Adding a Logo guideline in Artwork page to contributing guidelines", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2550", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2550", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/600871963", + "subscription_url": "https://api.github.com/notifications/threads/600871963/subscription" + }, + { + "id": "568626802", + "unread": true, + "reason": "mention", + "updated_at": "2019-10-08T14:45:10Z", + "last_read_at": "2019-09-10T15:15:18Z", + "subject": { + "title": "Bump hamcrest-library from 1.3 to 2.1", + "url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/pulls/161", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/pulls/161", + "type": "PullRequest" + }, + "repository": { + "id": 49739417, + "node_id": "MDEwOlJlcG9zaXRvcnk0OTczOTQxNw==", + "name": "jenkins-test-harness", + "full_name": "jenkinsci/jenkins-test-harness", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jenkins-test-harness", + "description": "Unit test framework for Jenkins core and its plugins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness", + "forks_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/deployments" + }, + "url": "https://api.github.com/notifications/threads/568626802", + "subscription_url": "https://api.github.com/notifications/threads/568626802/subscription" + }, + { + "id": "599549469", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-10-08T12:14:00Z", + "last_read_at": "2019-10-08T15:04:09Z", + "subject": { + "title": "2019 GSoC Blog post from Marky Jackson", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2546", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2546", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/599549469", + "subscription_url": "https://api.github.com/notifications/threads/599549469/subscription" + }, + { + "id": "530375391", + "unread": true, + "reason": "comment", + "updated_at": "2019-10-08T10:55:23Z", + "last_read_at": "2019-08-30T15:23:21Z", + "subject": { + "title": "JENKINS-58313 Expose source commit", + "url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/pulls/71", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/pulls/comments/332449934", + "type": "PullRequest" + }, + "repository": { + "id": 12713417, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjcxMzQxNw==", + "name": "scm-api-plugin", + "full_name": "jenkinsci/scm-api-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/scm-api-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/scm-api-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/530375391", + "subscription_url": "https://api.github.com/notifications/threads/530375391/subscription" + }, + { + "id": "564151625", + "unread": false, + "reason": "mention", + "updated_at": "2019-10-08T10:24:38Z", + "last_read_at": "2019-10-11T17:10:03Z", + "subject": { + "title": "Why not to expose commit hash from SCM as an environment variable?", + "url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/pulls/166", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/issues/comments/539451196", + "type": "PullRequest" + }, + "repository": { + "id": 12878218, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjg3ODIxOA==", + "name": "branch-api-plugin", + "full_name": "jenkinsci/branch-api-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/branch-api-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/branch-api-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/564151625", + "subscription_url": "https://api.github.com/notifications/threads/564151625/subscription" + }, + { + "id": "600392859", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-08T10:20:34Z", + "last_read_at": null, + "subject": { + "title": "[NGPIPELINE-752] Code coverage redux", + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/pulls/21", + "latest_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/pulls/21", + "type": "PullRequest" + }, + "repository": { + "id": 193577985, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTM1Nzc5ODU=", + "name": "cloudbees-pipeline-rules-interception-plugin", + "full_name": "cloudbees/cloudbees-pipeline-rules-interception-plugin", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/cloudbees-pipeline-rules-interception-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin", + "forks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/forks", + "keys_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/events", + "assignees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/merges", + "archive_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/600392859", + "subscription_url": "https://api.github.com/notifications/threads/600392859/subscription" + }, + { + "id": "597436928", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-08T09:18:51Z", + "last_read_at": "2019-10-05T07:24:45Z", + "subject": { + "title": "Removed confusing docker directory", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2536", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2536", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/597436928", + "subscription_url": "https://api.github.com/notifications/threads/597436928/subscription" + }, + { + "id": "600730241", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-08T08:13:37Z", + "last_read_at": "2019-10-13T01:04:03Z", + "subject": { + "title": "html.format.wrapAttributes: auto-force aligned?", + "url": "https://api.github.com/repos/beautify-web/js-beautify/issues/1714", + "latest_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/1714", + "type": "Issue" + }, + "repository": { + "id": 84822, + "node_id": "MDEwOlJlcG9zaXRvcnk4NDgyMg==", + "name": "js-beautify", + "full_name": "beautify-web/js-beautify", + "private": false, + "owner": { + "login": "beautify-web", + "id": 6538164, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjY1MzgxNjQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/6538164?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/beautify-web", + "html_url": "https://github.com/beautify-web", + "followers_url": "https://api.github.com/users/beautify-web/followers", + "following_url": "https://api.github.com/users/beautify-web/following{/other_user}", + "gists_url": "https://api.github.com/users/beautify-web/gists{/gist_id}", + "starred_url": "https://api.github.com/users/beautify-web/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/beautify-web/subscriptions", + "organizations_url": "https://api.github.com/users/beautify-web/orgs", + "repos_url": "https://api.github.com/users/beautify-web/repos", + "events_url": "https://api.github.com/users/beautify-web/events{/privacy}", + "received_events_url": "https://api.github.com/users/beautify-web/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/beautify-web/js-beautify", + "description": "Beautifier for javascript ", + "fork": false, + "url": "https://api.github.com/repos/beautify-web/js-beautify", + "forks_url": "https://api.github.com/repos/beautify-web/js-beautify/forks", + "keys_url": "https://api.github.com/repos/beautify-web/js-beautify/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/beautify-web/js-beautify/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/beautify-web/js-beautify/teams", + "hooks_url": "https://api.github.com/repos/beautify-web/js-beautify/hooks", + "issue_events_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/events{/number}", + "events_url": "https://api.github.com/repos/beautify-web/js-beautify/events", + "assignees_url": "https://api.github.com/repos/beautify-web/js-beautify/assignees{/user}", + "branches_url": "https://api.github.com/repos/beautify-web/js-beautify/branches{/branch}", + "tags_url": "https://api.github.com/repos/beautify-web/js-beautify/tags", + "blobs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/beautify-web/js-beautify/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/beautify-web/js-beautify/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/beautify-web/js-beautify/statuses/{sha}", + "languages_url": "https://api.github.com/repos/beautify-web/js-beautify/languages", + "stargazers_url": "https://api.github.com/repos/beautify-web/js-beautify/stargazers", + "contributors_url": "https://api.github.com/repos/beautify-web/js-beautify/contributors", + "subscribers_url": "https://api.github.com/repos/beautify-web/js-beautify/subscribers", + "subscription_url": "https://api.github.com/repos/beautify-web/js-beautify/subscription", + "commits_url": "https://api.github.com/repos/beautify-web/js-beautify/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/beautify-web/js-beautify/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/beautify-web/js-beautify/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/beautify-web/js-beautify/contents/{+path}", + "compare_url": "https://api.github.com/repos/beautify-web/js-beautify/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/beautify-web/js-beautify/merges", + "archive_url": "https://api.github.com/repos/beautify-web/js-beautify/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/beautify-web/js-beautify/downloads", + "issues_url": "https://api.github.com/repos/beautify-web/js-beautify/issues{/number}", + "pulls_url": "https://api.github.com/repos/beautify-web/js-beautify/pulls{/number}", + "milestones_url": "https://api.github.com/repos/beautify-web/js-beautify/milestones{/number}", + "notifications_url": "https://api.github.com/repos/beautify-web/js-beautify/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/beautify-web/js-beautify/labels{/name}", + "releases_url": "https://api.github.com/repos/beautify-web/js-beautify/releases{/id}", + "deployments_url": "https://api.github.com/repos/beautify-web/js-beautify/deployments" + }, + "url": "https://api.github.com/notifications/threads/600730241", + "subscription_url": "https://api.github.com/notifications/threads/600730241/subscription" + }, + { + "id": "594989310", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-08T06:44:47Z", + "last_read_at": "2019-10-16T02:10:52Z", + "subject": { + "title": "Bump @types/lodash from 4.14.138 to 4.14.141", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/125", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/125", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/594989310", + "subscription_url": "https://api.github.com/notifications/threads/594989310/subscription" + }, + { + "id": "600642506", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-08T06:33:02Z", + "last_read_at": "2019-10-09T01:35:19Z", + "subject": { + "title": "Bulk upload client API and example", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/104", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/104", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/600642506", + "subscription_url": "https://api.github.com/notifications/threads/600642506/subscription" + }, + { + "id": "595079984", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-09T01:39:41Z", + "last_read_at": "2019-10-09T01:38:16Z", + "subject": { + "title": "Fix for python 2.7 and cli parameters", + "url": "https://api.github.com/repos/beautify-web/js-beautify/pulls/1712", + "latest_comment_url": null, + "type": "PullRequest" + }, + "repository": { + "id": 84822, + "node_id": "MDEwOlJlcG9zaXRvcnk4NDgyMg==", + "name": "js-beautify", + "full_name": "beautify-web/js-beautify", + "private": false, + "owner": { + "login": "beautify-web", + "id": 6538164, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjY1MzgxNjQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/6538164?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/beautify-web", + "html_url": "https://github.com/beautify-web", + "followers_url": "https://api.github.com/users/beautify-web/followers", + "following_url": "https://api.github.com/users/beautify-web/following{/other_user}", + "gists_url": "https://api.github.com/users/beautify-web/gists{/gist_id}", + "starred_url": "https://api.github.com/users/beautify-web/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/beautify-web/subscriptions", + "organizations_url": "https://api.github.com/users/beautify-web/orgs", + "repos_url": "https://api.github.com/users/beautify-web/repos", + "events_url": "https://api.github.com/users/beautify-web/events{/privacy}", + "received_events_url": "https://api.github.com/users/beautify-web/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/beautify-web/js-beautify", + "description": "Beautifier for javascript ", + "fork": false, + "url": "https://api.github.com/repos/beautify-web/js-beautify", + "forks_url": "https://api.github.com/repos/beautify-web/js-beautify/forks", + "keys_url": "https://api.github.com/repos/beautify-web/js-beautify/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/beautify-web/js-beautify/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/beautify-web/js-beautify/teams", + "hooks_url": "https://api.github.com/repos/beautify-web/js-beautify/hooks", + "issue_events_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/events{/number}", + "events_url": "https://api.github.com/repos/beautify-web/js-beautify/events", + "assignees_url": "https://api.github.com/repos/beautify-web/js-beautify/assignees{/user}", + "branches_url": "https://api.github.com/repos/beautify-web/js-beautify/branches{/branch}", + "tags_url": "https://api.github.com/repos/beautify-web/js-beautify/tags", + "blobs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/beautify-web/js-beautify/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/beautify-web/js-beautify/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/beautify-web/js-beautify/statuses/{sha}", + "languages_url": "https://api.github.com/repos/beautify-web/js-beautify/languages", + "stargazers_url": "https://api.github.com/repos/beautify-web/js-beautify/stargazers", + "contributors_url": "https://api.github.com/repos/beautify-web/js-beautify/contributors", + "subscribers_url": "https://api.github.com/repos/beautify-web/js-beautify/subscribers", + "subscription_url": "https://api.github.com/repos/beautify-web/js-beautify/subscription", + "commits_url": "https://api.github.com/repos/beautify-web/js-beautify/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/beautify-web/js-beautify/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/beautify-web/js-beautify/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/beautify-web/js-beautify/contents/{+path}", + "compare_url": "https://api.github.com/repos/beautify-web/js-beautify/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/beautify-web/js-beautify/merges", + "archive_url": "https://api.github.com/repos/beautify-web/js-beautify/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/beautify-web/js-beautify/downloads", + "issues_url": "https://api.github.com/repos/beautify-web/js-beautify/issues{/number}", + "pulls_url": "https://api.github.com/repos/beautify-web/js-beautify/pulls{/number}", + "milestones_url": "https://api.github.com/repos/beautify-web/js-beautify/milestones{/number}", + "notifications_url": "https://api.github.com/repos/beautify-web/js-beautify/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/beautify-web/js-beautify/labels{/name}", + "releases_url": "https://api.github.com/repos/beautify-web/js-beautify/releases{/id}", + "deployments_url": "https://api.github.com/repos/beautify-web/js-beautify/deployments" + }, + "url": "https://api.github.com/notifications/threads/595079984", + "subscription_url": "https://api.github.com/notifications/threads/595079984/subscription" + }, + { + "id": "599750334", + "unread": false, + "reason": "comment", + "updated_at": "2019-10-08T17:51:38Z", + "last_read_at": "2019-10-08T15:07:46Z", + "subject": { + "title": "GitHub workflow: enable Java matrix [ '1.8.0', '11.0.x' ]", + "url": "https://api.github.com/repos/github-api/github-api/pulls/562", + "latest_comment_url": "https://api.github.com/repos/github-api/github-api/pulls/562", + "type": "PullRequest" + }, + "repository": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments" + }, + "url": "https://api.github.com/notifications/threads/599750334", + "subscription_url": "https://api.github.com/notifications/threads/599750334/subscription" + }, + { + "id": "599067680", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-08T02:51:20Z", + "last_read_at": "2019-10-16T02:10:52Z", + "subject": { + "title": "chore(deps-dev): bump eslint-plugin-react from 7.15.0 to 7.16.0", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/138", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/138", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/599067680", + "subscription_url": "https://api.github.com/notifications/threads/599067680/subscription" + }, + { + "id": "594987853", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-08T02:39:26Z", + "last_read_at": "2019-10-16T02:10:52Z", + "subject": { + "title": "Bump eslint-loader from 2.2.1 to 3.0.2", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/122", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/122", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/594987853", + "subscription_url": "https://api.github.com/notifications/threads/594987853/subscription" + }, + { + "id": "600431588", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-08T01:34:11Z", + "last_read_at": "2019-10-09T01:35:19Z", + "subject": { + "title": "CSDOCS-190 - Bump versions and handle a loader issue when the filename has spaces", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/103", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/103", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/600431588", + "subscription_url": "https://api.github.com/notifications/threads/600431588/subscription" + }, + { + "id": "422649303", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-10-08T02:04:01Z", + "last_read_at": "2019-10-08T01:34:06Z", + "subject": { + "title": "Added method to list authorizations", + "url": "https://api.github.com/repos/github-api/github-api/pulls/481", + "latest_comment_url": "https://api.github.com/repos/github-api/github-api/pulls/481", + "type": "PullRequest" + }, + "repository": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments" + }, + "url": "https://api.github.com/notifications/threads/422649303", + "subscription_url": "https://api.github.com/notifications/threads/422649303/subscription" + }, + { + "id": "599857449", + "unread": false, + "reason": "state_change", + "updated_at": "2019-10-07T21:09:26Z", + "last_read_at": "2019-10-08T02:32:34Z", + "subject": { + "title": "Bump okhttp3.version from 3.12.3 to 4.2.2", + "url": "https://api.github.com/repos/github-api/github-api/pulls/566", + "latest_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments/539205442", + "type": "PullRequest" + }, + "repository": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments" + }, + "url": "https://api.github.com/notifications/threads/599857449", + "subscription_url": "https://api.github.com/notifications/threads/599857449/subscription" + }, + { + "id": "330881759", + "unread": false, + "reason": "comment", + "updated_at": "2019-10-07T18:22:44Z", + "last_read_at": "2019-10-08T02:32:53Z", + "subject": { + "title": "Allow selected scripts to be removed from approvals", + "url": "https://api.github.com/repos/jenkinsci/script-security-plugin/pulls/202", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/issues/comments/539141611", + "type": "PullRequest" + }, + "repository": { + "id": 17301604, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzMwMTYwNA==", + "name": "script-security-plugin", + "full_name": "jenkinsci/script-security-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/script-security-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/script-security-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/330881759", + "subscription_url": "https://api.github.com/notifications/threads/330881759/subscription" + }, + { + "id": "507667123", + "unread": true, + "reason": "comment", + "updated_at": "2019-10-07T18:17:00Z", + "last_read_at": "2019-09-04T18:01:22Z", + "subject": { + "title": "update jenkins.version to LTS, from 2.60.3 to 2.121.3", + "url": "https://api.github.com/repos/jenkinsci/script-security-plugin/pulls/257", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/issues/comments/539139336", + "type": "PullRequest" + }, + "repository": { + "id": 17301604, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzMwMTYwNA==", + "name": "script-security-plugin", + "full_name": "jenkinsci/script-security-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/script-security-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/script-security-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/507667123", + "subscription_url": "https://api.github.com/notifications/threads/507667123/subscription" + }, + { + "id": "596889933", + "unread": true, + "reason": "team_mention", + "updated_at": "2019-10-07T18:09:36Z", + "last_read_at": "2019-10-05T07:24:04Z", + "subject": { + "title": "Autogenerated OSS plugin updates Oct 2, 2019", + "url": "https://api.github.com/repos/cloudbees/unified-release/pulls/1535", + "latest_comment_url": "https://api.github.com/repos/cloudbees/unified-release/pulls/1535", + "type": "PullRequest" + }, + "repository": { + "id": 78131017, + "node_id": "MDEwOlJlcG9zaXRvcnk3ODEzMTAxNw==", + "name": "unified-release", + "full_name": "cloudbees/unified-release", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/unified-release", + "description": "Unified Release Repository", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/unified-release", + "forks_url": "https://api.github.com/repos/cloudbees/unified-release/forks", + "keys_url": "https://api.github.com/repos/cloudbees/unified-release/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/unified-release/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/unified-release/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/unified-release/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/unified-release/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/unified-release/events", + "assignees_url": "https://api.github.com/repos/cloudbees/unified-release/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/unified-release/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/unified-release/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/unified-release/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/unified-release/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/unified-release/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/unified-release/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/unified-release/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/unified-release/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/unified-release/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/unified-release/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/unified-release/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/unified-release/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/unified-release/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/unified-release/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/unified-release/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/unified-release/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/unified-release/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/unified-release/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/unified-release/merges", + "archive_url": "https://api.github.com/repos/cloudbees/unified-release/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/unified-release/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/unified-release/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/unified-release/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/unified-release/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/unified-release/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/unified-release/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/unified-release/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/unified-release/deployments" + }, + "url": "https://api.github.com/notifications/threads/596889933", + "subscription_url": "https://api.github.com/notifications/threads/596889933/subscription" + }, + { + "id": "596548751", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-01T20:45:47Z", + "last_read_at": "2019-10-01T21:21:04Z", + "subject": { + "title": "Whitelist entry for Object[].getAt(IntRange)", + "url": "https://api.github.com/repos/jenkinsci/script-security-plugin/pulls/269", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/pulls/269", + "type": "PullRequest" + }, + "repository": { + "id": 17301604, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzMwMTYwNA==", + "name": "script-security-plugin", + "full_name": "jenkinsci/script-security-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/script-security-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/script-security-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/596548751", + "subscription_url": "https://api.github.com/notifications/threads/596548751/subscription" + }, + { + "id": "594091335", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-07T18:05:28Z", + "last_read_at": "2019-10-05T07:24:49Z", + "subject": { + "title": "More whitelisted methods (dates)", + "url": "https://api.github.com/repos/jenkinsci/script-security-plugin/pulls/267", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/pulls/267", + "type": "PullRequest" + }, + "repository": { + "id": 17301604, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzMwMTYwNA==", + "name": "script-security-plugin", + "full_name": "jenkinsci/script-security-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/script-security-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/script-security-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/594091335", + "subscription_url": "https://api.github.com/notifications/threads/594091335/subscription" + }, + { + "id": "600277658", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-07T17:30:20Z", + "last_read_at": "2019-10-09T01:35:21Z", + "subject": { + "title": "chore(deps): bump https://github.com/cloudbees/jxui-frontend.git from 0.0.885 to 0.0.886", + "url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/50", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/50", + "type": "PullRequest" + }, + "repository": { + "id": 183067295, + "node_id": "MDEwOlJlcG9zaXRvcnkxODMwNjcyOTU=", + "name": "jx-app-ui", + "full_name": "cloudbees/jx-app-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jx-app-ui", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jx-app-ui", + "forks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jx-app-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jx-app-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jx-app-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jx-app-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jx-app-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jx-app-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jx-app-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jx-app-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jx-app-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jx-app-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jx-app-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jx-app-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jx-app-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jx-app-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/600277658", + "subscription_url": "https://api.github.com/notifications/threads/600277658/subscription" + }, + { + "id": "600115709", + "unread": true, + "reason": "review_requested", + "updated_at": "2019-10-07T15:33:56Z", + "last_read_at": null, + "subject": { + "title": "Merge help and discuss sections", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2549", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2549", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/600115709", + "subscription_url": "https://api.github.com/notifications/threads/600115709/subscription" + }, + { + "id": "595744465", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-07T15:05:18Z", + "last_read_at": "2019-10-05T07:25:27Z", + "subject": { + "title": "Split contributing out of readme", + "url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/pulls/66", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/pulls/66", + "type": "PullRequest" + }, + "repository": { + "id": 159685662, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTk2ODU2NjI=", + "name": "audit-log-plugin", + "full_name": "jenkinsci/audit-log-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/audit-log-plugin", + "description": "Audit logging plugin for Jenkins based on Apache Log4j Audit", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/audit-log-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/595744465", + "subscription_url": "https://api.github.com/notifications/threads/595744465/subscription" + }, + { + "id": "600162256", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-07T15:00:23Z", + "last_read_at": "2019-10-09T01:35:21Z", + "subject": { + "title": "chore(deps): bump https://github.com/cloudbees/jxui-frontend.git from 0.0.883 to 0.0.885", + "url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/49", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/49", + "type": "PullRequest" + }, + "repository": { + "id": 183067295, + "node_id": "MDEwOlJlcG9zaXRvcnkxODMwNjcyOTU=", + "name": "jx-app-ui", + "full_name": "cloudbees/jx-app-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jx-app-ui", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jx-app-ui", + "forks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jx-app-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jx-app-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jx-app-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jx-app-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jx-app-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jx-app-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jx-app-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jx-app-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jx-app-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jx-app-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jx-app-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jx-app-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jx-app-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jx-app-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/600162256", + "subscription_url": "https://api.github.com/notifications/threads/600162256/subscription" + }, + { + "id": "599023443", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-07T14:28:02Z", + "last_read_at": "2019-10-05T07:24:42Z", + "subject": { + "title": "[NGPIPELINE-751] Code coverage settings to fail build if not met", + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/pulls/18", + "latest_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/pulls/18", + "type": "PullRequest" + }, + "repository": { + "id": 193577985, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTM1Nzc5ODU=", + "name": "cloudbees-pipeline-rules-interception-plugin", + "full_name": "cloudbees/cloudbees-pipeline-rules-interception-plugin", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/cloudbees-pipeline-rules-interception-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin", + "forks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/forks", + "keys_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/events", + "assignees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/merges", + "archive_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/599023443", + "subscription_url": "https://api.github.com/notifications/threads/599023443/subscription" + }, + { + "id": "599951880", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-07T14:27:22Z", + "last_read_at": null, + "subject": { + "title": "refactor to remove old rules and increase coverage", + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/pulls/19", + "latest_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/issues/comments/539038501", + "type": "PullRequest" + }, + "repository": { + "id": 193577985, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTM1Nzc5ODU=", + "name": "cloudbees-pipeline-rules-interception-plugin", + "full_name": "cloudbees/cloudbees-pipeline-rules-interception-plugin", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/cloudbees-pipeline-rules-interception-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin", + "forks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/forks", + "keys_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/events", + "assignees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/merges", + "archive_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/599951880", + "subscription_url": "https://api.github.com/notifications/threads/599951880/subscription" + }, + { + "id": "599937461", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-10-07T14:24:58Z", + "last_read_at": "2019-10-07T15:33:32Z", + "subject": { + "title": "Hacktoberfest 2019 - Add FAQ for maintainers and event organizers", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2548", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2548", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/599937461", + "subscription_url": "https://api.github.com/notifications/threads/599937461/subscription" + }, + { + "id": "600125234", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-07T14:20:20Z", + "last_read_at": "2019-10-09T00:42:07Z", + "subject": { + "title": "chore(deps): bump https://github.com/cloudbees/jxui-frontend.git from 0.0.882 to 0.0.883", + "url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/48", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/48", + "type": "PullRequest" + }, + "repository": { + "id": 183067295, + "node_id": "MDEwOlJlcG9zaXRvcnkxODMwNjcyOTU=", + "name": "jx-app-ui", + "full_name": "cloudbees/jx-app-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jx-app-ui", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jx-app-ui", + "forks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jx-app-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jx-app-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jx-app-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jx-app-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jx-app-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jx-app-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jx-app-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jx-app-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jx-app-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jx-app-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jx-app-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jx-app-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jx-app-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jx-app-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/600125234", + "subscription_url": "https://api.github.com/notifications/threads/600125234/subscription" + }, + { + "id": "599887443", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-07T13:40:16Z", + "last_read_at": null, + "subject": { + "title": "Update changelog", + "url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/pulls/13", + "latest_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/pulls/13", + "type": "PullRequest" + }, + "repository": { + "id": 205587249, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDU1ODcyNDk=", + "name": "cloudbees-analytics-plugin", + "full_name": "cloudbees/cloudbees-analytics-plugin", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/cloudbees-analytics-plugin", + "description": "The analytics plugin to gather and send information to an endpoint using a standard analytics API", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin", + "forks_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/forks", + "keys_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/events", + "assignees_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/merges", + "archive_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/599887443", + "subscription_url": "https://api.github.com/notifications/threads/599887443/subscription" + }, + { + "id": "593599115", + "unread": false, + "reason": "mention", + "updated_at": "2019-10-07T13:18:11Z", + "last_read_at": "2019-10-07T15:33:29Z", + "subject": { + "title": "Fix pom.xml indentation & update parent pom", + "url": "https://api.github.com/repos/jenkinsci/script-security-plugin/pulls/266", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/issues/comments/538561437", + "type": "PullRequest" + }, + "repository": { + "id": 17301604, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzMwMTYwNA==", + "name": "script-security-plugin", + "full_name": "jenkinsci/script-security-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/script-security-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/script-security-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/593599115", + "subscription_url": "https://api.github.com/notifications/threads/593599115/subscription" + }, + { + "id": "599857318", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-07T21:09:12Z", + "last_read_at": "2019-10-07T21:09:03Z", + "subject": { + "title": "Bump gson from 2.8.5 to 2.8.6", + "url": "https://api.github.com/repos/github-api/github-api/pulls/565", + "latest_comment_url": "https://api.github.com/repos/github-api/github-api/pulls/565", + "type": "PullRequest" + }, + "repository": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments" + }, + "url": "https://api.github.com/notifications/threads/599857318", + "subscription_url": "https://api.github.com/notifications/threads/599857318/subscription" + }, + { + "id": "599857126", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-07T21:09:43Z", + "last_read_at": "2019-10-07T21:09:34Z", + "subject": { + "title": "Bump okio from 2.4.0 to 2.4.1", + "url": "https://api.github.com/repos/github-api/github-api/pulls/564", + "latest_comment_url": "https://api.github.com/repos/github-api/github-api/pulls/564", + "type": "PullRequest" + }, + "repository": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments" + }, + "url": "https://api.github.com/notifications/threads/599857126", + "subscription_url": "https://api.github.com/notifications/threads/599857126/subscription" + }, + { + "id": "598815478", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-07T07:51:49Z", + "last_read_at": "2019-10-05T07:24:29Z", + "subject": { + "title": "Fix test so PCT succeeds in java 8 and 11", + "url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/pulls/12", + "latest_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/pulls/12", + "type": "PullRequest" + }, + "repository": { + "id": 205587249, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDU1ODcyNDk=", + "name": "cloudbees-analytics-plugin", + "full_name": "cloudbees/cloudbees-analytics-plugin", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/cloudbees-analytics-plugin", + "description": "The analytics plugin to gather and send information to an endpoint using a standard analytics API", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin", + "forks_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/forks", + "keys_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/events", + "assignees_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/merges", + "archive_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/598815478", + "subscription_url": "https://api.github.com/notifications/threads/598815478/subscription" + }, + { + "id": "599387618", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-07T06:52:37Z", + "last_read_at": null, + "subject": { + "title": "Contributing: Document how to move documentation from Wiki using Pandoc", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2545", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2545", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/599387618", + "subscription_url": "https://api.github.com/notifications/threads/599387618/subscription" + }, + { + "id": "424193165", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-10-08T18:04:02Z", + "last_read_at": "2019-10-08T02:33:52Z", + "subject": { + "title": "Add method to invite user to organization", + "url": "https://api.github.com/repos/github-api/github-api/pulls/482", + "latest_comment_url": "https://api.github.com/repos/github-api/github-api/pulls/482", + "type": "PullRequest" + }, + "repository": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments" + }, + "url": "https://api.github.com/notifications/threads/424193165", + "subscription_url": "https://api.github.com/notifications/threads/424193165/subscription" + }, + { + "id": "599161747", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-07T02:34:46Z", + "last_read_at": "2019-10-09T00:42:07Z", + "subject": { + "title": "CSDOCS-189 - docsite CLI implementation - behold my bash skills", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/102", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/102", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/599161747", + "subscription_url": "https://api.github.com/notifications/threads/599161747/subscription" + }, + { + "id": "598398248", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-07T01:45:33Z", + "last_read_at": "2019-10-09T00:42:07Z", + "subject": { + "title": "Migration scripts", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/99", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/99", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/598398248", + "subscription_url": "https://api.github.com/notifications/threads/598398248/subscription" + }, + { + "id": "599287788", + "unread": true, + "reason": "review_requested", + "updated_at": "2019-10-06T22:15:17Z", + "last_read_at": null, + "subject": { + "title": "Add changelog for 2.199", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2543", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2543", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/599287788", + "subscription_url": "https://api.github.com/notifications/threads/599287788/subscription" + }, + { + "id": "559590351", + "unread": false, + "reason": "mention", + "updated_at": "2019-10-06T02:39:56Z", + "last_read_at": "2019-10-05T18:17:16Z", + "subject": { + "title": "Add support for team pr review requests", + "url": "https://api.github.com/repos/github-api/github-api/pulls/532", + "latest_comment_url": "https://api.github.com/repos/github-api/github-api/pulls/532", + "type": "PullRequest" + }, + "repository": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments" + }, + "url": "https://api.github.com/notifications/threads/559590351", + "subscription_url": "https://api.github.com/notifications/threads/559590351/subscription" + }, + { + "id": "599240709", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-10-05T13:12:39Z", + "last_read_at": "2019-10-06T03:35:47Z", + "subject": { + "title": "testPullRequestTeamReviewRequests", + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/304", + "latest_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/304", + "type": "PullRequest" + }, + "repository": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Tricky", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments" + }, + "url": "https://api.github.com/notifications/threads/599240709", + "subscription_url": "https://api.github.com/notifications/threads/599240709/subscription" + }, + { + "id": "599235253", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-10-05T13:02:19Z", + "last_read_at": "2019-10-06T07:45:46Z", + "subject": { + "title": "testPullRequestTeamReviewRequests", + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/303", + "latest_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/303", + "type": "PullRequest" + }, + "repository": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Tricky", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments" + }, + "url": "https://api.github.com/notifications/threads/599235253", + "subscription_url": "https://api.github.com/notifications/threads/599235253/subscription" + }, + { + "id": "598645942", + "unread": true, + "reason": "security_alert", + "updated_at": "2019-10-05T11:53:41Z", + "last_read_at": "2019-10-05T07:24:45Z", + "subject": { + "title": "Bump rubyzip from 1.2.3 to 1.3.0", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2540", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2540", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/598645942", + "subscription_url": "https://api.github.com/notifications/threads/598645942/subscription" + }, + { + "id": "599157415", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-05T05:34:11Z", + "last_read_at": "2019-10-05T07:23:35Z", + "subject": { + "title": "2.9.3 - js-beautify 1.10.2", + "url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/releases/20489379", + "latest_comment_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/releases/20489379", + "type": "Release" + }, + "repository": { + "id": 7192181, + "node_id": "MDEwOlJlcG9zaXRvcnk3MTkyMTgx", + "name": "brackets-beautify", + "full_name": "brackets-beautify/brackets-beautify", + "private": false, + "owner": { + "login": "brackets-beautify", + "id": 15680026, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjgwMDI2", + "avatar_url": "https://avatars1.githubusercontent.com/u/15680026?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/brackets-beautify", + "html_url": "https://github.com/brackets-beautify", + "followers_url": "https://api.github.com/users/brackets-beautify/followers", + "following_url": "https://api.github.com/users/brackets-beautify/following{/other_user}", + "gists_url": "https://api.github.com/users/brackets-beautify/gists{/gist_id}", + "starred_url": "https://api.github.com/users/brackets-beautify/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/brackets-beautify/subscriptions", + "organizations_url": "https://api.github.com/users/brackets-beautify/orgs", + "repos_url": "https://api.github.com/users/brackets-beautify/repos", + "events_url": "https://api.github.com/users/brackets-beautify/events{/privacy}", + "received_events_url": "https://api.github.com/users/brackets-beautify/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/brackets-beautify/brackets-beautify", + "description": "Beautify HTML, CSS, and Javascript in Adobe Brackets", + "fork": false, + "url": "https://api.github.com/repos/brackets-beautify/brackets-beautify", + "forks_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/forks", + "keys_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/teams", + "hooks_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/hooks", + "issue_events_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/issues/events{/number}", + "events_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/events", + "assignees_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/assignees{/user}", + "branches_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/branches{/branch}", + "tags_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/tags", + "blobs_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/statuses/{sha}", + "languages_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/languages", + "stargazers_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/stargazers", + "contributors_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/contributors", + "subscribers_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/subscribers", + "subscription_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/subscription", + "commits_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/contents/{+path}", + "compare_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/merges", + "archive_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/downloads", + "issues_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/issues{/number}", + "pulls_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/pulls{/number}", + "milestones_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/milestones{/number}", + "notifications_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/labels{/name}", + "releases_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/releases{/id}", + "deployments_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/deployments" + }, + "url": "https://api.github.com/notifications/threads/599157415", + "subscription_url": "https://api.github.com/notifications/threads/599157415/subscription" + }, + { + "id": "557630209", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-05T05:31:53Z", + "last_read_at": "2019-10-05T07:23:48Z", + "subject": { + "title": "Update js-beautify to the latest version 🚀", + "url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/pulls/288", + "latest_comment_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/pulls/288", + "type": "PullRequest" + }, + "repository": { + "id": 7192181, + "node_id": "MDEwOlJlcG9zaXRvcnk3MTkyMTgx", + "name": "brackets-beautify", + "full_name": "brackets-beautify/brackets-beautify", + "private": false, + "owner": { + "login": "brackets-beautify", + "id": 15680026, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjgwMDI2", + "avatar_url": "https://avatars1.githubusercontent.com/u/15680026?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/brackets-beautify", + "html_url": "https://github.com/brackets-beautify", + "followers_url": "https://api.github.com/users/brackets-beautify/followers", + "following_url": "https://api.github.com/users/brackets-beautify/following{/other_user}", + "gists_url": "https://api.github.com/users/brackets-beautify/gists{/gist_id}", + "starred_url": "https://api.github.com/users/brackets-beautify/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/brackets-beautify/subscriptions", + "organizations_url": "https://api.github.com/users/brackets-beautify/orgs", + "repos_url": "https://api.github.com/users/brackets-beautify/repos", + "events_url": "https://api.github.com/users/brackets-beautify/events{/privacy}", + "received_events_url": "https://api.github.com/users/brackets-beautify/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/brackets-beautify/brackets-beautify", + "description": "Beautify HTML, CSS, and Javascript in Adobe Brackets", + "fork": false, + "url": "https://api.github.com/repos/brackets-beautify/brackets-beautify", + "forks_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/forks", + "keys_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/teams", + "hooks_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/hooks", + "issue_events_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/issues/events{/number}", + "events_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/events", + "assignees_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/assignees{/user}", + "branches_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/branches{/branch}", + "tags_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/tags", + "blobs_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/statuses/{sha}", + "languages_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/languages", + "stargazers_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/stargazers", + "contributors_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/contributors", + "subscribers_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/subscribers", + "subscription_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/subscription", + "commits_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/contents/{+path}", + "compare_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/merges", + "archive_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/downloads", + "issues_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/issues{/number}", + "pulls_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/pulls{/number}", + "milestones_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/milestones{/number}", + "notifications_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/labels{/name}", + "releases_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/releases{/id}", + "deployments_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/deployments" + }, + "url": "https://api.github.com/notifications/threads/557630209", + "subscription_url": "https://api.github.com/notifications/threads/557630209/subscription" + }, + { + "id": "548447768", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-05T05:31:43Z", + "last_read_at": "2019-10-05T07:23:48Z", + "subject": { + "title": "Update eslint to the latest version 🚀", + "url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/pulls/287", + "latest_comment_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/pulls/287", + "type": "PullRequest" + }, + "repository": { + "id": 7192181, + "node_id": "MDEwOlJlcG9zaXRvcnk3MTkyMTgx", + "name": "brackets-beautify", + "full_name": "brackets-beautify/brackets-beautify", + "private": false, + "owner": { + "login": "brackets-beautify", + "id": 15680026, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjgwMDI2", + "avatar_url": "https://avatars1.githubusercontent.com/u/15680026?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/brackets-beautify", + "html_url": "https://github.com/brackets-beautify", + "followers_url": "https://api.github.com/users/brackets-beautify/followers", + "following_url": "https://api.github.com/users/brackets-beautify/following{/other_user}", + "gists_url": "https://api.github.com/users/brackets-beautify/gists{/gist_id}", + "starred_url": "https://api.github.com/users/brackets-beautify/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/brackets-beautify/subscriptions", + "organizations_url": "https://api.github.com/users/brackets-beautify/orgs", + "repos_url": "https://api.github.com/users/brackets-beautify/repos", + "events_url": "https://api.github.com/users/brackets-beautify/events{/privacy}", + "received_events_url": "https://api.github.com/users/brackets-beautify/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/brackets-beautify/brackets-beautify", + "description": "Beautify HTML, CSS, and Javascript in Adobe Brackets", + "fork": false, + "url": "https://api.github.com/repos/brackets-beautify/brackets-beautify", + "forks_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/forks", + "keys_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/teams", + "hooks_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/hooks", + "issue_events_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/issues/events{/number}", + "events_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/events", + "assignees_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/assignees{/user}", + "branches_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/branches{/branch}", + "tags_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/tags", + "blobs_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/statuses/{sha}", + "languages_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/languages", + "stargazers_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/stargazers", + "contributors_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/contributors", + "subscribers_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/subscribers", + "subscription_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/subscription", + "commits_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/contents/{+path}", + "compare_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/merges", + "archive_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/downloads", + "issues_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/issues{/number}", + "pulls_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/pulls{/number}", + "milestones_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/milestones{/number}", + "notifications_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/labels{/name}", + "releases_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/releases{/id}", + "deployments_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/deployments" + }, + "url": "https://api.github.com/notifications/threads/548447768", + "subscription_url": "https://api.github.com/notifications/threads/548447768/subscription" + }, + { + "id": "595546656", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-05T05:31:38Z", + "last_read_at": "2019-10-05T07:23:48Z", + "subject": { + "title": "Greenkeeper/eslint 6.5.0", + "url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/pulls/291", + "latest_comment_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/pulls/291", + "type": "PullRequest" + }, + "repository": { + "id": 7192181, + "node_id": "MDEwOlJlcG9zaXRvcnk3MTkyMTgx", + "name": "brackets-beautify", + "full_name": "brackets-beautify/brackets-beautify", + "private": false, + "owner": { + "login": "brackets-beautify", + "id": 15680026, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjgwMDI2", + "avatar_url": "https://avatars1.githubusercontent.com/u/15680026?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/brackets-beautify", + "html_url": "https://github.com/brackets-beautify", + "followers_url": "https://api.github.com/users/brackets-beautify/followers", + "following_url": "https://api.github.com/users/brackets-beautify/following{/other_user}", + "gists_url": "https://api.github.com/users/brackets-beautify/gists{/gist_id}", + "starred_url": "https://api.github.com/users/brackets-beautify/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/brackets-beautify/subscriptions", + "organizations_url": "https://api.github.com/users/brackets-beautify/orgs", + "repos_url": "https://api.github.com/users/brackets-beautify/repos", + "events_url": "https://api.github.com/users/brackets-beautify/events{/privacy}", + "received_events_url": "https://api.github.com/users/brackets-beautify/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/brackets-beautify/brackets-beautify", + "description": "Beautify HTML, CSS, and Javascript in Adobe Brackets", + "fork": false, + "url": "https://api.github.com/repos/brackets-beautify/brackets-beautify", + "forks_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/forks", + "keys_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/teams", + "hooks_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/hooks", + "issue_events_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/issues/events{/number}", + "events_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/events", + "assignees_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/assignees{/user}", + "branches_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/branches{/branch}", + "tags_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/tags", + "blobs_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/statuses/{sha}", + "languages_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/languages", + "stargazers_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/stargazers", + "contributors_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/contributors", + "subscribers_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/subscribers", + "subscription_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/subscription", + "commits_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/contents/{+path}", + "compare_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/merges", + "archive_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/downloads", + "issues_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/issues{/number}", + "pulls_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/pulls{/number}", + "milestones_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/milestones{/number}", + "notifications_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/labels{/name}", + "releases_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/releases{/id}", + "deployments_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/deployments" + }, + "url": "https://api.github.com/notifications/threads/595546656", + "subscription_url": "https://api.github.com/notifications/threads/595546656/subscription" + }, + { + "id": "598459097", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-04T23:04:13Z", + "last_read_at": "2019-10-05T07:23:49Z", + "subject": { + "title": "chore(deps-dev): bump react from 16.10.1 to 16.10.2", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/136", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/136", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/598459097", + "subscription_url": "https://api.github.com/notifications/threads/598459097/subscription" + }, + { + "id": "596879855", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-04T22:35:22Z", + "last_read_at": "2019-10-05T07:23:49Z", + "subject": { + "title": "chore(deps-dev): bump eslint-plugin-react from 7.15.0 to 7.15.1", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/132", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/132", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/596879855", + "subscription_url": "https://api.github.com/notifications/threads/596879855/subscription" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/__files/notifications-2658e99a-6619-4b0b-b70f-814a0841839e.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/__files/notifications-2658e99a-6619-4b0b-b70f-814a0841839e.json new file mode 100644 index 0000000000..4055c9a5f0 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/__files/notifications-2658e99a-6619-4b0b-b70f-814a0841839e.json @@ -0,0 +1,4102 @@ +[ + { + "id": "224021191", + "unread": false, + "reason": "comment", + "updated_at": "2019-10-16T14:14:48Z", + "last_read_at": "2019-10-18T10:47:32Z", + "subject": { + "title": "Conditional space before negative assertions", + "url": "https://api.github.com/repos/beautify-web/js-beautify/issues/1189", + "latest_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/comments/542722537", + "type": "Issue" + }, + "repository": { + "id": 84822, + "node_id": "MDEwOlJlcG9zaXRvcnk4NDgyMg==", + "name": "js-beautify", + "full_name": "beautify-web/js-beautify", + "private": false, + "owner": { + "login": "beautify-web", + "id": 6538164, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjY1MzgxNjQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/6538164?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/beautify-web", + "html_url": "https://github.com/beautify-web", + "followers_url": "https://api.github.com/users/beautify-web/followers", + "following_url": "https://api.github.com/users/beautify-web/following{/other_user}", + "gists_url": "https://api.github.com/users/beautify-web/gists{/gist_id}", + "starred_url": "https://api.github.com/users/beautify-web/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/beautify-web/subscriptions", + "organizations_url": "https://api.github.com/users/beautify-web/orgs", + "repos_url": "https://api.github.com/users/beautify-web/repos", + "events_url": "https://api.github.com/users/beautify-web/events{/privacy}", + "received_events_url": "https://api.github.com/users/beautify-web/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/beautify-web/js-beautify", + "description": "Beautifier for javascript ", + "fork": false, + "url": "https://api.github.com/repos/beautify-web/js-beautify", + "forks_url": "https://api.github.com/repos/beautify-web/js-beautify/forks", + "keys_url": "https://api.github.com/repos/beautify-web/js-beautify/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/beautify-web/js-beautify/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/beautify-web/js-beautify/teams", + "hooks_url": "https://api.github.com/repos/beautify-web/js-beautify/hooks", + "issue_events_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/events{/number}", + "events_url": "https://api.github.com/repos/beautify-web/js-beautify/events", + "assignees_url": "https://api.github.com/repos/beautify-web/js-beautify/assignees{/user}", + "branches_url": "https://api.github.com/repos/beautify-web/js-beautify/branches{/branch}", + "tags_url": "https://api.github.com/repos/beautify-web/js-beautify/tags", + "blobs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/beautify-web/js-beautify/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/beautify-web/js-beautify/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/beautify-web/js-beautify/statuses/{sha}", + "languages_url": "https://api.github.com/repos/beautify-web/js-beautify/languages", + "stargazers_url": "https://api.github.com/repos/beautify-web/js-beautify/stargazers", + "contributors_url": "https://api.github.com/repos/beautify-web/js-beautify/contributors", + "subscribers_url": "https://api.github.com/repos/beautify-web/js-beautify/subscribers", + "subscription_url": "https://api.github.com/repos/beautify-web/js-beautify/subscription", + "commits_url": "https://api.github.com/repos/beautify-web/js-beautify/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/beautify-web/js-beautify/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/beautify-web/js-beautify/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/beautify-web/js-beautify/contents/{+path}", + "compare_url": "https://api.github.com/repos/beautify-web/js-beautify/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/beautify-web/js-beautify/merges", + "archive_url": "https://api.github.com/repos/beautify-web/js-beautify/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/beautify-web/js-beautify/downloads", + "issues_url": "https://api.github.com/repos/beautify-web/js-beautify/issues{/number}", + "pulls_url": "https://api.github.com/repos/beautify-web/js-beautify/pulls{/number}", + "milestones_url": "https://api.github.com/repos/beautify-web/js-beautify/milestones{/number}", + "notifications_url": "https://api.github.com/repos/beautify-web/js-beautify/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/beautify-web/js-beautify/labels{/name}", + "releases_url": "https://api.github.com/repos/beautify-web/js-beautify/releases{/id}", + "deployments_url": "https://api.github.com/repos/beautify-web/js-beautify/deployments" + }, + "url": "https://api.github.com/notifications/threads/224021191", + "subscription_url": "https://api.github.com/notifications/threads/224021191/subscription" + }, + { + "id": "606843060", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-16T13:42:27Z", + "last_read_at": "2019-10-18T19:57:05Z", + "subject": { + "title": "chore(deps): bump https://github.com/cloudbees/jxui-frontend.git from 0.0.900 to 0.0.901", + "url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/59", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/59", + "type": "PullRequest" + }, + "repository": { + "id": 183067295, + "node_id": "MDEwOlJlcG9zaXRvcnkxODMwNjcyOTU=", + "name": "jx-app-ui", + "full_name": "cloudbees/jx-app-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jx-app-ui", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jx-app-ui", + "forks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jx-app-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jx-app-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jx-app-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jx-app-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jx-app-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jx-app-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jx-app-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jx-app-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jx-app-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jx-app-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jx-app-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jx-app-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jx-app-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jx-app-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/606843060", + "subscription_url": "https://api.github.com/notifications/threads/606843060/subscription" + }, + { + "id": "217212989", + "unread": false, + "reason": "state_change", + "updated_at": "2019-10-16T13:41:43Z", + "last_read_at": "2019-10-18T10:46:51Z", + "subject": { + "title": "Support yaml config and use new .jsbeautifyrc.json config style", + "url": "https://api.github.com/repos/beautify-web/js-beautify/issues/1181", + "latest_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/comments/542706715", + "type": "Issue" + }, + "repository": { + "id": 84822, + "node_id": "MDEwOlJlcG9zaXRvcnk4NDgyMg==", + "name": "js-beautify", + "full_name": "beautify-web/js-beautify", + "private": false, + "owner": { + "login": "beautify-web", + "id": 6538164, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjY1MzgxNjQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/6538164?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/beautify-web", + "html_url": "https://github.com/beautify-web", + "followers_url": "https://api.github.com/users/beautify-web/followers", + "following_url": "https://api.github.com/users/beautify-web/following{/other_user}", + "gists_url": "https://api.github.com/users/beautify-web/gists{/gist_id}", + "starred_url": "https://api.github.com/users/beautify-web/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/beautify-web/subscriptions", + "organizations_url": "https://api.github.com/users/beautify-web/orgs", + "repos_url": "https://api.github.com/users/beautify-web/repos", + "events_url": "https://api.github.com/users/beautify-web/events{/privacy}", + "received_events_url": "https://api.github.com/users/beautify-web/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/beautify-web/js-beautify", + "description": "Beautifier for javascript ", + "fork": false, + "url": "https://api.github.com/repos/beautify-web/js-beautify", + "forks_url": "https://api.github.com/repos/beautify-web/js-beautify/forks", + "keys_url": "https://api.github.com/repos/beautify-web/js-beautify/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/beautify-web/js-beautify/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/beautify-web/js-beautify/teams", + "hooks_url": "https://api.github.com/repos/beautify-web/js-beautify/hooks", + "issue_events_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/events{/number}", + "events_url": "https://api.github.com/repos/beautify-web/js-beautify/events", + "assignees_url": "https://api.github.com/repos/beautify-web/js-beautify/assignees{/user}", + "branches_url": "https://api.github.com/repos/beautify-web/js-beautify/branches{/branch}", + "tags_url": "https://api.github.com/repos/beautify-web/js-beautify/tags", + "blobs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/beautify-web/js-beautify/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/beautify-web/js-beautify/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/beautify-web/js-beautify/statuses/{sha}", + "languages_url": "https://api.github.com/repos/beautify-web/js-beautify/languages", + "stargazers_url": "https://api.github.com/repos/beautify-web/js-beautify/stargazers", + "contributors_url": "https://api.github.com/repos/beautify-web/js-beautify/contributors", + "subscribers_url": "https://api.github.com/repos/beautify-web/js-beautify/subscribers", + "subscription_url": "https://api.github.com/repos/beautify-web/js-beautify/subscription", + "commits_url": "https://api.github.com/repos/beautify-web/js-beautify/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/beautify-web/js-beautify/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/beautify-web/js-beautify/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/beautify-web/js-beautify/contents/{+path}", + "compare_url": "https://api.github.com/repos/beautify-web/js-beautify/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/beautify-web/js-beautify/merges", + "archive_url": "https://api.github.com/repos/beautify-web/js-beautify/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/beautify-web/js-beautify/downloads", + "issues_url": "https://api.github.com/repos/beautify-web/js-beautify/issues{/number}", + "pulls_url": "https://api.github.com/repos/beautify-web/js-beautify/pulls{/number}", + "milestones_url": "https://api.github.com/repos/beautify-web/js-beautify/milestones{/number}", + "notifications_url": "https://api.github.com/repos/beautify-web/js-beautify/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/beautify-web/js-beautify/labels{/name}", + "releases_url": "https://api.github.com/repos/beautify-web/js-beautify/releases{/id}", + "deployments_url": "https://api.github.com/repos/beautify-web/js-beautify/deployments" + }, + "url": "https://api.github.com/notifications/threads/217212989", + "subscription_url": "https://api.github.com/notifications/threads/217212989/subscription" + }, + { + "id": "606509472", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-16T06:05:33Z", + "last_read_at": "2019-10-18T16:57:41Z", + "subject": { + "title": "CSDOCS-213 - Clear the session when they logout, redirecting to / after that is done", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/135", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/135", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/606509472", + "subscription_url": "https://api.github.com/notifications/threads/606509472/subscription" + }, + { + "id": "606711632", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-16T10:48:30Z", + "last_read_at": "2019-10-18T16:56:49Z", + "subject": { + "title": "Misc Cleanups", + "url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/pulls/251", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/pulls/251", + "type": "PullRequest" + }, + "repository": { + "id": 43903637, + "node_id": "MDEwOlJlcG9zaXRvcnk0MzkwMzYzNw==", + "name": "github-branch-source-plugin", + "full_name": "jenkinsci/github-branch-source-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/github-branch-source-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/606711632", + "subscription_url": "https://api.github.com/notifications/threads/606711632/subscription" + }, + { + "id": "601579041", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-16T09:35:25Z", + "last_read_at": null, + "subject": { + "title": "[FNDJEN-1626] Fix some events don't reach Segment because how javascript is included", + "url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/pulls/14", + "latest_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/pulls/14", + "type": "PullRequest" + }, + "repository": { + "id": 205587249, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDU1ODcyNDk=", + "name": "cloudbees-analytics-plugin", + "full_name": "cloudbees/cloudbees-analytics-plugin", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/cloudbees-analytics-plugin", + "description": "The analytics plugin to gather and send information to an endpoint using a standard analytics API", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin", + "forks_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/forks", + "keys_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/events", + "assignees_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/merges", + "archive_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/601579041", + "subscription_url": "https://api.github.com/notifications/threads/601579041/subscription" + }, + { + "id": "585553263", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-16T06:55:26Z", + "last_read_at": "2019-09-30T16:10:34Z", + "subject": { + "title": "Load documentation from Github instead of confluence", + "url": "https://api.github.com/repos/jenkinsci/script-security-plugin/pulls/264", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/issues/comments/542551284", + "type": "PullRequest" + }, + "repository": { + "id": 17301604, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzMwMTYwNA==", + "name": "script-security-plugin", + "full_name": "jenkinsci/script-security-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/script-security-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/script-security-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/585553263", + "subscription_url": "https://api.github.com/notifications/threads/585553263/subscription" + }, + { + "id": "606465655", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-16T06:14:12Z", + "last_read_at": "2019-10-18T16:57:41Z", + "subject": { + "title": "CSDOCS-201 - Make spelling checker slightly smarter", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/133", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/133", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/606465655", + "subscription_url": "https://api.github.com/notifications/threads/606465655/subscription" + }, + { + "id": "606483301", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-16T05:06:26Z", + "last_read_at": "2019-10-18T16:57:41Z", + "subject": { + "title": "Update github.adoc to add github URL ", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/134", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/134", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/606483301", + "subscription_url": "https://api.github.com/notifications/threads/606483301/subscription" + }, + { + "id": "606444418", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-16T04:37:09Z", + "last_read_at": "2019-10-18T16:57:41Z", + "subject": { + "title": "Replace regex that breaks js and fix the way we send the user email to segment", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/132", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/132", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/606444418", + "subscription_url": "https://api.github.com/notifications/threads/606444418/subscription" + }, + { + "id": "606435010", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-16T03:17:42Z", + "last_read_at": "2019-10-18T16:57:41Z", + "subject": { + "title": "CSDOCS-201 - Make spelling checker slightly smarter", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/131", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/131", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/606435010", + "subscription_url": "https://api.github.com/notifications/threads/606435010/subscription" + }, + { + "id": "606427267", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-16T03:17:25Z", + "last_read_at": "2019-10-18T20:02:08Z", + "subject": { + "title": "CSDOCS-200 - Expose the related_link data in the navigation", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/130", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/130", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/606427267", + "subscription_url": "https://api.github.com/notifications/threads/606427267/subscription" + }, + { + "id": "606416236", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-16T02:10:51Z", + "last_read_at": "2019-10-16T02:37:53Z", + "subject": { + "title": "v0.9.0", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/releases/20729200", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases/20729200", + "type": "Release" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/606416236", + "subscription_url": "https://api.github.com/notifications/threads/606416236/subscription" + }, + { + "id": "606132651", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-16T02:07:51Z", + "last_read_at": "2019-10-16T02:37:53Z", + "subject": { + "title": "Icons colors update", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/168", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/168", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/606132651", + "subscription_url": "https://api.github.com/notifications/threads/606132651/subscription" + }, + { + "id": "605006011", + "unread": true, + "reason": "review_requested", + "updated_at": "2019-10-16T00:25:07Z", + "last_read_at": null, + "subject": { + "title": "add or delete dot & make some words case conversion in lts.yml", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2565", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments/542344611", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/605006011", + "subscription_url": "https://api.github.com/notifications/threads/605006011/subscription" + }, + { + "id": "606324856", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-15T23:16:58Z", + "last_read_at": "2019-10-18T20:02:08Z", + "subject": { + "title": "CSDOCS-200 - Pull the filtered attributes and store in the resource table", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/129", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/129", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/606324856", + "subscription_url": "https://api.github.com/notifications/threads/606324856/subscription" + }, + { + "id": "606345763", + "unread": true, + "reason": "review_requested", + "updated_at": "2019-10-15T23:08:09Z", + "last_read_at": null, + "subject": { + "title": "[JENKINS-51865] Document new beforeOptions in 'when'", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2569", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2569", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/606345763", + "subscription_url": "https://api.github.com/notifications/threads/606345763/subscription" + }, + { + "id": "605857714", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-15T22:37:47Z", + "last_read_at": "2019-10-18T20:02:08Z", + "subject": { + "title": "[CSDOCS-140] Initial segment implementation", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/128", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/128", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/605857714", + "subscription_url": "https://api.github.com/notifications/threads/605857714/subscription" + }, + { + "id": "606197998", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-15T20:05:31Z", + "last_read_at": "2019-10-18T19:57:05Z", + "subject": { + "title": "chore(deps): bump https://github.com/cloudbees/jxui-frontend.git from 0.0.899 to 0.0.900", + "url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/58", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/58", + "type": "PullRequest" + }, + "repository": { + "id": 183067295, + "node_id": "MDEwOlJlcG9zaXRvcnkxODMwNjcyOTU=", + "name": "jx-app-ui", + "full_name": "cloudbees/jx-app-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jx-app-ui", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jx-app-ui", + "forks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jx-app-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jx-app-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jx-app-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jx-app-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jx-app-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jx-app-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jx-app-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jx-app-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jx-app-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jx-app-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jx-app-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jx-app-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jx-app-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jx-app-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/606197998", + "subscription_url": "https://api.github.com/notifications/threads/606197998/subscription" + }, + { + "id": "606113530", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-15T18:49:27Z", + "last_read_at": "2019-10-18T19:57:05Z", + "subject": { + "title": "chore(deps): bump https://github.com/cloudbees/jxui-frontend.git from 0.0.897 to 0.0.899", + "url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/57", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/57", + "type": "PullRequest" + }, + "repository": { + "id": 183067295, + "node_id": "MDEwOlJlcG9zaXRvcnkxODMwNjcyOTU=", + "name": "jx-app-ui", + "full_name": "cloudbees/jx-app-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jx-app-ui", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jx-app-ui", + "forks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jx-app-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jx-app-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jx-app-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jx-app-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jx-app-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jx-app-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jx-app-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jx-app-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jx-app-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jx-app-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jx-app-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jx-app-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jx-app-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jx-app-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/606113530", + "subscription_url": "https://api.github.com/notifications/threads/606113530/subscription" + }, + { + "id": "606053709", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-15T18:39:40Z", + "last_read_at": "2019-10-16T02:37:53Z", + "subject": { + "title": "chore(deps-dev): bump @storybook/react from 5.2.3 to 5.2.4", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/167", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments/542349303", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/606053709", + "subscription_url": "https://api.github.com/notifications/threads/606053709/subscription" + }, + { + "id": "606053003", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-15T18:39:32Z", + "last_read_at": "2019-10-16T02:37:53Z", + "subject": { + "title": "chore(deps-dev): bump webpack from 4.41.1 to 4.41.2", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/166", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments/542349245", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/606053003", + "subscription_url": "https://api.github.com/notifications/threads/606053003/subscription" + }, + { + "id": "606052507", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-15T18:39:17Z", + "last_read_at": "2019-10-16T02:37:53Z", + "subject": { + "title": "chore(deps-dev): bump @storybook/addon-storysource from 5.1.11 to 5.2.4", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/165", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments/542349154", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/606052507", + "subscription_url": "https://api.github.com/notifications/threads/606052507/subscription" + }, + { + "id": "606051858", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-15T18:38:46Z", + "last_read_at": "2019-10-16T02:37:53Z", + "subject": { + "title": "chore(deps-dev): bump @storybook/addon-info from 5.1.11 to 5.2.4", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/164", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments/542348939", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/606051858", + "subscription_url": "https://api.github.com/notifications/threads/606051858/subscription" + }, + { + "id": "604220310", + "unread": true, + "reason": "review_requested", + "updated_at": "2019-10-15T18:27:16Z", + "last_read_at": null, + "subject": { + "title": "Archive old changelog entries from YAML", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2559", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2559", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/604220310", + "subscription_url": "https://api.github.com/notifications/threads/604220310/subscription" + }, + { + "id": "606050968", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-15T18:19:12Z", + "last_read_at": "2019-10-16T02:37:53Z", + "subject": { + "title": "chore(deps-dev): bump @storybook/addons from 5.2.1 to 5.2.4", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/163", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments/542341054", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/606050968", + "subscription_url": "https://api.github.com/notifications/threads/606050968/subscription" + }, + { + "id": "606050491", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-15T18:18:47Z", + "last_read_at": "2019-10-16T02:37:53Z", + "subject": { + "title": "chore(deps-dev): bump @types/react-dom from 16.9.1 to 16.9.2", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/162", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments/542340886", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/606050491", + "subscription_url": "https://api.github.com/notifications/threads/606050491/subscription" + }, + { + "id": "606050070", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-15T18:18:27Z", + "last_read_at": "2019-10-16T02:37:53Z", + "subject": { + "title": "chore(deps-dev): bump @storybook/addon-viewport from 5.2.1 to 5.2.4", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/161", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments/542340765", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/606050070", + "subscription_url": "https://api.github.com/notifications/threads/606050070/subscription" + }, + { + "id": "606049405", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-15T18:18:18Z", + "last_read_at": "2019-10-16T02:37:53Z", + "subject": { + "title": "chore(deps-dev): bump @types/react from 16.9.5 to 16.9.6", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/160", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments/542340690", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/606049405", + "subscription_url": "https://api.github.com/notifications/threads/606049405/subscription" + }, + { + "id": "605889710", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-15T18:18:00Z", + "last_read_at": "2019-10-16T02:37:53Z", + "subject": { + "title": "add Tabs ability to control Select for Tabs", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/159", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/159", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/605889710", + "subscription_url": "https://api.github.com/notifications/threads/605889710/subscription" + }, + { + "id": "605913623", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-15T14:32:26Z", + "last_read_at": "2019-10-18T19:57:05Z", + "subject": { + "title": "chore(deps): bump https://github.com/cloudbees/jxui-frontend.git from 0.0.895 to 0.0.897", + "url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/56", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/56", + "type": "PullRequest" + }, + "repository": { + "id": 183067295, + "node_id": "MDEwOlJlcG9zaXRvcnkxODMwNjcyOTU=", + "name": "jx-app-ui", + "full_name": "cloudbees/jx-app-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jx-app-ui", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jx-app-ui", + "forks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jx-app-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jx-app-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jx-app-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jx-app-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jx-app-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jx-app-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jx-app-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jx-app-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jx-app-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jx-app-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jx-app-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jx-app-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jx-app-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jx-app-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/605913623", + "subscription_url": "https://api.github.com/notifications/threads/605913623/subscription" + }, + { + "id": "605484472", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-15T13:36:37Z", + "last_read_at": null, + "subject": { + "title": "Simplify test asserts", + "url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls/330", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls/330", + "type": "PullRequest" + }, + "repository": { + "id": 55543225, + "node_id": "MDEwOlJlcG9zaXRvcnk1NTU0MzIyNQ==", + "name": "workflow-cps-plugin", + "full_name": "jenkinsci/workflow-cps-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/workflow-cps-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/605484472", + "subscription_url": "https://api.github.com/notifications/threads/605484472/subscription" + }, + { + "id": "598805852", + "unread": true, + "reason": "mention", + "updated_at": "2019-10-15T13:32:46Z", + "last_read_at": "2019-10-08T02:33:14Z", + "subject": { + "title": "Added a new method to be executed before completion of Flow", + "url": "https://api.github.com/repos/jenkinsci/workflow-api-plugin/pulls/106", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/workflow-api-plugin/pulls/106", + "type": "PullRequest" + }, + "repository": { + "id": 55527408, + "node_id": "MDEwOlJlcG9zaXRvcnk1NTUyNzQwOA==", + "name": "workflow-api-plugin", + "full_name": "jenkinsci/workflow-api-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/workflow-api-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/workflow-api-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/workflow-api-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/workflow-api-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/workflow-api-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/workflow-api-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/workflow-api-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/workflow-api-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/workflow-api-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/workflow-api-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/workflow-api-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/workflow-api-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/workflow-api-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/workflow-api-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/workflow-api-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/workflow-api-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/workflow-api-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/workflow-api-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/workflow-api-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/workflow-api-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/workflow-api-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/workflow-api-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/workflow-api-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/workflow-api-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/workflow-api-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/workflow-api-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/workflow-api-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/workflow-api-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/workflow-api-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/workflow-api-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/workflow-api-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/workflow-api-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/workflow-api-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/workflow-api-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/workflow-api-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/workflow-api-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/workflow-api-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/workflow-api-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/598805852", + "subscription_url": "https://api.github.com/notifications/threads/598805852/subscription" + }, + { + "id": "605701486", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-15T13:24:01Z", + "last_read_at": "2019-10-18T20:02:08Z", + "subject": { + "title": "[CSDOCS-179] Add internal-only notification for private pages", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/127", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/127", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/605701486", + "subscription_url": "https://api.github.com/notifications/threads/605701486/subscription" + }, + { + "id": "603922980", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-17T16:05:00Z", + "last_read_at": "2019-10-17T15:59:27Z", + "subject": { + "title": "[JENKINS-59756] Do not duplicate input in NameEncoder.decode", + "url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/pulls/168", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/issues/comments/543246141", + "type": "PullRequest" + }, + "repository": { + "id": 12878218, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjg3ODIxOA==", + "name": "branch-api-plugin", + "full_name": "jenkinsci/branch-api-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/branch-api-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/branch-api-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/603922980", + "subscription_url": "https://api.github.com/notifications/threads/603922980/subscription" + }, + { + "id": "605758794", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-15T11:30:27Z", + "last_read_at": "2019-10-18T19:57:05Z", + "subject": { + "title": "chore(deps): bump https://github.com/cloudbees/jxui-frontend.git from 0.0.893 to 0.0.895", + "url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/55", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/55", + "type": "PullRequest" + }, + "repository": { + "id": 183067295, + "node_id": "MDEwOlJlcG9zaXRvcnkxODMwNjcyOTU=", + "name": "jx-app-ui", + "full_name": "cloudbees/jx-app-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jx-app-ui", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jx-app-ui", + "forks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jx-app-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jx-app-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jx-app-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jx-app-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jx-app-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jx-app-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jx-app-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jx-app-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jx-app-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jx-app-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jx-app-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jx-app-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jx-app-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jx-app-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/605758794", + "subscription_url": "https://api.github.com/notifications/threads/605758794/subscription" + }, + { + "id": "605549998", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-15T10:07:18Z", + "last_read_at": "2019-10-18T20:02:08Z", + "subject": { + "title": "[CSDOCS-192] add the active class on second level nav when third one is active", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/126", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/126", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/605549998", + "subscription_url": "https://api.github.com/notifications/threads/605549998/subscription" + }, + { + "id": "605694698", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-15T10:02:26Z", + "last_read_at": "2019-10-18T19:57:05Z", + "subject": { + "title": "chore(deps): bump https://github.com/cloudbees/jxui-frontend.git from 0.0.892 to 0.0.893", + "url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/54", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/54", + "type": "PullRequest" + }, + "repository": { + "id": 183067295, + "node_id": "MDEwOlJlcG9zaXRvcnkxODMwNjcyOTU=", + "name": "jx-app-ui", + "full_name": "cloudbees/jx-app-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jx-app-ui", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jx-app-ui", + "forks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jx-app-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jx-app-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jx-app-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jx-app-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jx-app-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jx-app-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jx-app-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jx-app-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jx-app-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jx-app-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jx-app-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jx-app-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jx-app-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jx-app-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/605694698", + "subscription_url": "https://api.github.com/notifications/threads/605694698/subscription" + }, + { + "id": "1921578", + "unread": false, + "reason": "mention", + "updated_at": "2019-10-16T02:39:43Z", + "last_read_at": "2019-10-16T02:38:15Z", + "subject": { + "title": "page scrolls after pasting code", + "url": "https://api.github.com/repos/beautify-web/js-beautify/issues/143", + "latest_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/comments/542484715", + "type": "Issue" + }, + "repository": { + "id": 84822, + "node_id": "MDEwOlJlcG9zaXRvcnk4NDgyMg==", + "name": "js-beautify", + "full_name": "beautify-web/js-beautify", + "private": false, + "owner": { + "login": "beautify-web", + "id": 6538164, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjY1MzgxNjQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/6538164?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/beautify-web", + "html_url": "https://github.com/beautify-web", + "followers_url": "https://api.github.com/users/beautify-web/followers", + "following_url": "https://api.github.com/users/beautify-web/following{/other_user}", + "gists_url": "https://api.github.com/users/beautify-web/gists{/gist_id}", + "starred_url": "https://api.github.com/users/beautify-web/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/beautify-web/subscriptions", + "organizations_url": "https://api.github.com/users/beautify-web/orgs", + "repos_url": "https://api.github.com/users/beautify-web/repos", + "events_url": "https://api.github.com/users/beautify-web/events{/privacy}", + "received_events_url": "https://api.github.com/users/beautify-web/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/beautify-web/js-beautify", + "description": "Beautifier for javascript ", + "fork": false, + "url": "https://api.github.com/repos/beautify-web/js-beautify", + "forks_url": "https://api.github.com/repos/beautify-web/js-beautify/forks", + "keys_url": "https://api.github.com/repos/beautify-web/js-beautify/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/beautify-web/js-beautify/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/beautify-web/js-beautify/teams", + "hooks_url": "https://api.github.com/repos/beautify-web/js-beautify/hooks", + "issue_events_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/events{/number}", + "events_url": "https://api.github.com/repos/beautify-web/js-beautify/events", + "assignees_url": "https://api.github.com/repos/beautify-web/js-beautify/assignees{/user}", + "branches_url": "https://api.github.com/repos/beautify-web/js-beautify/branches{/branch}", + "tags_url": "https://api.github.com/repos/beautify-web/js-beautify/tags", + "blobs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/beautify-web/js-beautify/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/beautify-web/js-beautify/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/beautify-web/js-beautify/statuses/{sha}", + "languages_url": "https://api.github.com/repos/beautify-web/js-beautify/languages", + "stargazers_url": "https://api.github.com/repos/beautify-web/js-beautify/stargazers", + "contributors_url": "https://api.github.com/repos/beautify-web/js-beautify/contributors", + "subscribers_url": "https://api.github.com/repos/beautify-web/js-beautify/subscribers", + "subscription_url": "https://api.github.com/repos/beautify-web/js-beautify/subscription", + "commits_url": "https://api.github.com/repos/beautify-web/js-beautify/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/beautify-web/js-beautify/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/beautify-web/js-beautify/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/beautify-web/js-beautify/contents/{+path}", + "compare_url": "https://api.github.com/repos/beautify-web/js-beautify/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/beautify-web/js-beautify/merges", + "archive_url": "https://api.github.com/repos/beautify-web/js-beautify/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/beautify-web/js-beautify/downloads", + "issues_url": "https://api.github.com/repos/beautify-web/js-beautify/issues{/number}", + "pulls_url": "https://api.github.com/repos/beautify-web/js-beautify/pulls{/number}", + "milestones_url": "https://api.github.com/repos/beautify-web/js-beautify/milestones{/number}", + "notifications_url": "https://api.github.com/repos/beautify-web/js-beautify/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/beautify-web/js-beautify/labels{/name}", + "releases_url": "https://api.github.com/repos/beautify-web/js-beautify/releases{/id}", + "deployments_url": "https://api.github.com/repos/beautify-web/js-beautify/deployments" + }, + "url": "https://api.github.com/notifications/threads/1921578", + "subscription_url": "https://api.github.com/notifications/threads/1921578/subscription" + }, + { + "id": "605604501", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-15T08:05:26Z", + "last_read_at": "2019-10-18T19:57:05Z", + "subject": { + "title": "chore(deps): bump https://github.com/cloudbees/jxui-frontend.git from 0.0.891 to 0.0.892", + "url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/53", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/53", + "type": "PullRequest" + }, + "repository": { + "id": 183067295, + "node_id": "MDEwOlJlcG9zaXRvcnkxODMwNjcyOTU=", + "name": "jx-app-ui", + "full_name": "cloudbees/jx-app-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jx-app-ui", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jx-app-ui", + "forks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jx-app-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jx-app-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jx-app-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jx-app-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jx-app-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jx-app-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jx-app-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jx-app-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jx-app-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jx-app-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jx-app-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jx-app-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jx-app-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jx-app-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/605604501", + "subscription_url": "https://api.github.com/notifications/threads/605604501/subscription" + }, + { + "id": "603404853", + "unread": true, + "reason": "team_mention", + "updated_at": "2019-10-15T07:58:24Z", + "last_read_at": null, + "subject": { + "title": "Autogenerated OSS plugin updates Oct 11, 2019", + "url": "https://api.github.com/repos/cloudbees/unified-release/pulls/1561", + "latest_comment_url": "https://api.github.com/repos/cloudbees/unified-release/issues/comments/542088967", + "type": "PullRequest" + }, + "repository": { + "id": 78131017, + "node_id": "MDEwOlJlcG9zaXRvcnk3ODEzMTAxNw==", + "name": "unified-release", + "full_name": "cloudbees/unified-release", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/unified-release", + "description": "Unified Release Repository", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/unified-release", + "forks_url": "https://api.github.com/repos/cloudbees/unified-release/forks", + "keys_url": "https://api.github.com/repos/cloudbees/unified-release/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/unified-release/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/unified-release/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/unified-release/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/unified-release/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/unified-release/events", + "assignees_url": "https://api.github.com/repos/cloudbees/unified-release/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/unified-release/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/unified-release/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/unified-release/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/unified-release/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/unified-release/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/unified-release/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/unified-release/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/unified-release/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/unified-release/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/unified-release/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/unified-release/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/unified-release/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/unified-release/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/unified-release/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/unified-release/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/unified-release/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/unified-release/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/unified-release/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/unified-release/merges", + "archive_url": "https://api.github.com/repos/cloudbees/unified-release/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/unified-release/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/unified-release/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/unified-release/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/unified-release/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/unified-release/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/unified-release/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/unified-release/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/unified-release/deployments" + }, + "url": "https://api.github.com/notifications/threads/603404853", + "subscription_url": "https://api.github.com/notifications/threads/603404853/subscription" + }, + { + "id": "605474083", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-15T04:42:14Z", + "last_read_at": "2019-10-18T20:02:08Z", + "subject": { + "title": "[CSDOCS-193] Fix mobile tablet bugs", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/125", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/125", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/605474083", + "subscription_url": "https://api.github.com/notifications/threads/605474083/subscription" + }, + { + "id": "605445143", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-15T04:41:28Z", + "last_read_at": "2019-10-18T20:02:08Z", + "subject": { + "title": "CSDOCS-199", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/124", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/124", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/605445143", + "subscription_url": "https://api.github.com/notifications/threads/605445143/subscription" + }, + { + "id": "603254078", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-15T02:41:04Z", + "last_read_at": "2019-10-18T20:02:08Z", + "subject": { + "title": "Mostly-complete changes for search upload worker", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/115", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments/542010548", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/603254078", + "subscription_url": "https://api.github.com/notifications/threads/603254078/subscription" + }, + { + "id": "604712154", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-14T23:02:12Z", + "last_read_at": "2019-10-18T20:02:08Z", + "subject": { + "title": "CSDOCS-201 - Link checker that seems to mostly work", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/119", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/119", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/604712154", + "subscription_url": "https://api.github.com/notifications/threads/604712154/subscription" + }, + { + "id": "603555048", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-15T00:47:07Z", + "last_read_at": "2019-10-18T20:02:08Z", + "subject": { + "title": "OPS-8079: Docs production deploy", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/117", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/117", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/603555048", + "subscription_url": "https://api.github.com/notifications/threads/603555048/subscription" + }, + { + "id": "605339923", + "unread": true, + "reason": "review_requested", + "updated_at": "2019-10-15T00:29:28Z", + "last_read_at": null, + "subject": { + "title": "Fix date", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2567", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments/541984820", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/605339923", + "subscription_url": "https://api.github.com/notifications/threads/605339923/subscription" + }, + { + "id": "517938358", + "unread": true, + "reason": "state_change", + "updated_at": "2019-10-15T00:27:22Z", + "last_read_at": null, + "subject": { + "title": "Remove call to System.err.println in ModelInterprer.groovy", + "url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/pulls/334", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/issues/comments/541984456", + "type": "PullRequest" + }, + "repository": { + "id": 66677338, + "node_id": "MDEwOlJlcG9zaXRvcnk2NjY3NzMzOA==", + "name": "pipeline-model-definition-plugin", + "full_name": "jenkinsci/pipeline-model-definition-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pipeline-model-definition-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/517938358", + "subscription_url": "https://api.github.com/notifications/threads/517938358/subscription" + }, + { + "id": "576725377", + "unread": true, + "reason": "team_mention", + "updated_at": "2019-10-14T22:11:04Z", + "last_read_at": "2019-09-05T00:31:40Z", + "subject": { + "title": "[WEBSITE-638] - Add a links pane with GitHub and Javadoc links", + "url": "https://api.github.com/repos/jenkins-infra/plugin-site/pulls/55", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/plugin-site/issues/comments/541952188", + "type": "PullRequest" + }, + "repository": { + "id": 72584190, + "node_id": "MDEwOlJlcG9zaXRvcnk3MjU4NDE5MA==", + "name": "plugin-site", + "full_name": "jenkins-infra/plugin-site", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/plugin-site", + "description": "This is the frontend application driven by data from the Jenkins Plugin Site API.", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/plugin-site", + "forks_url": "https://api.github.com/repos/jenkins-infra/plugin-site/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/plugin-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/plugin-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/plugin-site/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/plugin-site/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/plugin-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/plugin-site/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/plugin-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/plugin-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/plugin-site/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/plugin-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/plugin-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/plugin-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/plugin-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/plugin-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/plugin-site/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/plugin-site/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/plugin-site/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/plugin-site/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/plugin-site/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/plugin-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/plugin-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/plugin-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/plugin-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/plugin-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/plugin-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/plugin-site/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/plugin-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/plugin-site/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/plugin-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/plugin-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/plugin-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/plugin-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/plugin-site/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/plugin-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/plugin-site/deployments" + }, + "url": "https://api.github.com/notifications/threads/576725377", + "subscription_url": "https://api.github.com/notifications/threads/576725377/subscription" + }, + { + "id": "604796717", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-14T21:06:40Z", + "last_read_at": "2019-10-18T20:02:08Z", + "subject": { + "title": "CSDOCS-206 - Adjust Jenkinsfile to only deploy master commits", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/121", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments/541921810", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/604796717", + "subscription_url": "https://api.github.com/notifications/threads/604796717/subscription" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/__files/notifications-2b718339-36d3-4c6b-9484-79cdd79a79e4.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/__files/notifications-2b718339-36d3-4c6b-9484-79cdd79a79e4.json new file mode 100644 index 0000000000..4c046d43c8 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/__files/notifications-2b718339-36d3-4c6b-9484-79cdd79a79e4.json @@ -0,0 +1,4102 @@ +[ + { + "id": "591084364", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-29T17:59:57Z", + "last_read_at": "2019-09-29T23:02:05Z", + "subject": { + "title": "Bump @babel/core from 7.6.0 to 7.6.2", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/111", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/111", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/591084364", + "subscription_url": "https://api.github.com/notifications/threads/591084364/subscription" + }, + { + "id": "594432880", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-09-28T15:10:39Z", + "last_read_at": "2019-09-30T16:05:46Z", + "subject": { + "title": "[Docs SIG] - Add plugin docs and plugin site as SIG projects + Hacktoberfest featured project", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2514", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2514", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/594432880", + "subscription_url": "https://api.github.com/notifications/threads/594432880/subscription" + }, + { + "id": "594431739", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-09-28T14:55:07Z", + "last_read_at": "2019-09-30T16:05:46Z", + "subject": { + "title": "Hacktoberfest 2019 - Copy-edit the featured Project descriptions", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2513", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2513", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/594431739", + "subscription_url": "https://api.github.com/notifications/threads/594431739/subscription" + }, + { + "id": "581022315", + "unread": false, + "reason": "mention", + "updated_at": "2019-09-28T18:09:43Z", + "last_read_at": "2019-09-28T18:08:32Z", + "subject": { + "title": "Add localization support", + "url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/pulls/76", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/pulls/76", + "type": "PullRequest" + }, + "repository": { + "id": 12713417, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjcxMzQxNw==", + "name": "scm-api-plugin", + "full_name": "jenkinsci/scm-api-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/scm-api-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/scm-api-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/581022315", + "subscription_url": "https://api.github.com/notifications/threads/581022315/subscription" + }, + { + "id": "594322327", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-28T05:27:18Z", + "last_read_at": "2019-09-29T01:04:56Z", + "subject": { + "title": "Update build to latest tools", + "url": "https://api.github.com/repos/JayBazuzi/Okra/pulls/64", + "latest_comment_url": "https://api.github.com/repos/JayBazuzi/Okra/pulls/64", + "type": "PullRequest" + }, + "repository": { + "id": 82413747, + "node_id": "MDEwOlJlcG9zaXRvcnk4MjQxMzc0Nw==", + "name": "Okra", + "full_name": "JayBazuzi/Okra", + "private": false, + "owner": { + "login": "JayBazuzi", + "id": 1259628, + "node_id": "MDQ6VXNlcjEyNTk2Mjg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/1259628?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/JayBazuzi", + "html_url": "https://github.com/JayBazuzi", + "followers_url": "https://api.github.com/users/JayBazuzi/followers", + "following_url": "https://api.github.com/users/JayBazuzi/following{/other_user}", + "gists_url": "https://api.github.com/users/JayBazuzi/gists{/gist_id}", + "starred_url": "https://api.github.com/users/JayBazuzi/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/JayBazuzi/subscriptions", + "organizations_url": "https://api.github.com/users/JayBazuzi/orgs", + "repos_url": "https://api.github.com/users/JayBazuzi/repos", + "events_url": "https://api.github.com/users/JayBazuzi/events{/privacy}", + "received_events_url": "https://api.github.com/users/JayBazuzi/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/JayBazuzi/Okra", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/JayBazuzi/Okra", + "forks_url": "https://api.github.com/repos/JayBazuzi/Okra/forks", + "keys_url": "https://api.github.com/repos/JayBazuzi/Okra/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/JayBazuzi/Okra/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/JayBazuzi/Okra/teams", + "hooks_url": "https://api.github.com/repos/JayBazuzi/Okra/hooks", + "issue_events_url": "https://api.github.com/repos/JayBazuzi/Okra/issues/events{/number}", + "events_url": "https://api.github.com/repos/JayBazuzi/Okra/events", + "assignees_url": "https://api.github.com/repos/JayBazuzi/Okra/assignees{/user}", + "branches_url": "https://api.github.com/repos/JayBazuzi/Okra/branches{/branch}", + "tags_url": "https://api.github.com/repos/JayBazuzi/Okra/tags", + "blobs_url": "https://api.github.com/repos/JayBazuzi/Okra/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/JayBazuzi/Okra/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/JayBazuzi/Okra/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/JayBazuzi/Okra/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/JayBazuzi/Okra/statuses/{sha}", + "languages_url": "https://api.github.com/repos/JayBazuzi/Okra/languages", + "stargazers_url": "https://api.github.com/repos/JayBazuzi/Okra/stargazers", + "contributors_url": "https://api.github.com/repos/JayBazuzi/Okra/contributors", + "subscribers_url": "https://api.github.com/repos/JayBazuzi/Okra/subscribers", + "subscription_url": "https://api.github.com/repos/JayBazuzi/Okra/subscription", + "commits_url": "https://api.github.com/repos/JayBazuzi/Okra/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/JayBazuzi/Okra/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/JayBazuzi/Okra/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/JayBazuzi/Okra/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/JayBazuzi/Okra/contents/{+path}", + "compare_url": "https://api.github.com/repos/JayBazuzi/Okra/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/JayBazuzi/Okra/merges", + "archive_url": "https://api.github.com/repos/JayBazuzi/Okra/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/JayBazuzi/Okra/downloads", + "issues_url": "https://api.github.com/repos/JayBazuzi/Okra/issues{/number}", + "pulls_url": "https://api.github.com/repos/JayBazuzi/Okra/pulls{/number}", + "milestones_url": "https://api.github.com/repos/JayBazuzi/Okra/milestones{/number}", + "notifications_url": "https://api.github.com/repos/JayBazuzi/Okra/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/JayBazuzi/Okra/labels{/name}", + "releases_url": "https://api.github.com/repos/JayBazuzi/Okra/releases{/id}", + "deployments_url": "https://api.github.com/repos/JayBazuzi/Okra/deployments" + }, + "url": "https://api.github.com/notifications/threads/594322327", + "subscription_url": "https://api.github.com/notifications/threads/594322327/subscription" + }, + { + "id": "588845063", + "unread": false, + "reason": "mention", + "updated_at": "2019-09-27T18:04:28Z", + "last_read_at": "2019-09-27T17:56:52Z", + "subject": { + "title": "[JENKINS-57557] Add test for JCasC compatibility", + "url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/pulls/247", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/pulls/247", + "type": "PullRequest" + }, + "repository": { + "id": 43903637, + "node_id": "MDEwOlJlcG9zaXRvcnk0MzkwMzYzNw==", + "name": "github-branch-source-plugin", + "full_name": "jenkinsci/github-branch-source-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/github-branch-source-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/588845063", + "subscription_url": "https://api.github.com/notifications/threads/588845063/subscription" + }, + { + "id": "582457173", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-27T14:11:33Z", + "last_read_at": "2019-09-30T16:05:23Z", + "subject": { + "title": "Tiny Jenkinsfile change to trigger a webhook", + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/pulls/12", + "latest_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/pulls/12", + "type": "PullRequest" + }, + "repository": { + "id": 193577985, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTM1Nzc5ODU=", + "name": "cloudbees-pipeline-rules-interception-plugin", + "full_name": "cloudbees/cloudbees-pipeline-rules-interception-plugin", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/cloudbees-pipeline-rules-interception-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin", + "forks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/forks", + "keys_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/events", + "assignees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/merges", + "archive_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/582457173", + "subscription_url": "https://api.github.com/notifications/threads/582457173/subscription" + }, + { + "id": "593937654", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-27T14:01:09Z", + "last_read_at": "2019-09-27T21:55:47Z", + "subject": { + "title": "chore(deps): bump https://github.com/cloudbees/jxui-frontend.git from 0.0.874 to 0.0.876", + "url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/44", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/44", + "type": "PullRequest" + }, + "repository": { + "id": 183067295, + "node_id": "MDEwOlJlcG9zaXRvcnkxODMwNjcyOTU=", + "name": "jx-app-ui", + "full_name": "cloudbees/jx-app-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jx-app-ui", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jx-app-ui", + "forks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jx-app-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jx-app-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jx-app-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jx-app-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jx-app-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jx-app-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jx-app-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jx-app-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jx-app-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jx-app-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jx-app-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jx-app-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jx-app-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jx-app-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/593937654", + "subscription_url": "https://api.github.com/notifications/threads/593937654/subscription" + }, + { + "id": "593899860", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-27T17:07:22Z", + "last_read_at": "2019-09-27T16:59:09Z", + "subject": { + "title": "js beautify break angular compile by puting 'as Type' to a new line.", + "url": "https://api.github.com/repos/beautify-web/js-beautify/issues/1711", + "latest_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/comments/536022176", + "type": "Issue" + }, + "repository": { + "id": 84822, + "node_id": "MDEwOlJlcG9zaXRvcnk4NDgyMg==", + "name": "js-beautify", + "full_name": "beautify-web/js-beautify", + "private": false, + "owner": { + "login": "beautify-web", + "id": 6538164, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjY1MzgxNjQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/6538164?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/beautify-web", + "html_url": "https://github.com/beautify-web", + "followers_url": "https://api.github.com/users/beautify-web/followers", + "following_url": "https://api.github.com/users/beautify-web/following{/other_user}", + "gists_url": "https://api.github.com/users/beautify-web/gists{/gist_id}", + "starred_url": "https://api.github.com/users/beautify-web/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/beautify-web/subscriptions", + "organizations_url": "https://api.github.com/users/beautify-web/orgs", + "repos_url": "https://api.github.com/users/beautify-web/repos", + "events_url": "https://api.github.com/users/beautify-web/events{/privacy}", + "received_events_url": "https://api.github.com/users/beautify-web/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/beautify-web/js-beautify", + "description": "Beautifier for javascript ", + "fork": false, + "url": "https://api.github.com/repos/beautify-web/js-beautify", + "forks_url": "https://api.github.com/repos/beautify-web/js-beautify/forks", + "keys_url": "https://api.github.com/repos/beautify-web/js-beautify/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/beautify-web/js-beautify/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/beautify-web/js-beautify/teams", + "hooks_url": "https://api.github.com/repos/beautify-web/js-beautify/hooks", + "issue_events_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/events{/number}", + "events_url": "https://api.github.com/repos/beautify-web/js-beautify/events", + "assignees_url": "https://api.github.com/repos/beautify-web/js-beautify/assignees{/user}", + "branches_url": "https://api.github.com/repos/beautify-web/js-beautify/branches{/branch}", + "tags_url": "https://api.github.com/repos/beautify-web/js-beautify/tags", + "blobs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/beautify-web/js-beautify/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/beautify-web/js-beautify/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/beautify-web/js-beautify/statuses/{sha}", + "languages_url": "https://api.github.com/repos/beautify-web/js-beautify/languages", + "stargazers_url": "https://api.github.com/repos/beautify-web/js-beautify/stargazers", + "contributors_url": "https://api.github.com/repos/beautify-web/js-beautify/contributors", + "subscribers_url": "https://api.github.com/repos/beautify-web/js-beautify/subscribers", + "subscription_url": "https://api.github.com/repos/beautify-web/js-beautify/subscription", + "commits_url": "https://api.github.com/repos/beautify-web/js-beautify/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/beautify-web/js-beautify/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/beautify-web/js-beautify/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/beautify-web/js-beautify/contents/{+path}", + "compare_url": "https://api.github.com/repos/beautify-web/js-beautify/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/beautify-web/js-beautify/merges", + "archive_url": "https://api.github.com/repos/beautify-web/js-beautify/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/beautify-web/js-beautify/downloads", + "issues_url": "https://api.github.com/repos/beautify-web/js-beautify/issues{/number}", + "pulls_url": "https://api.github.com/repos/beautify-web/js-beautify/pulls{/number}", + "milestones_url": "https://api.github.com/repos/beautify-web/js-beautify/milestones{/number}", + "notifications_url": "https://api.github.com/repos/beautify-web/js-beautify/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/beautify-web/js-beautify/labels{/name}", + "releases_url": "https://api.github.com/repos/beautify-web/js-beautify/releases{/id}", + "deployments_url": "https://api.github.com/repos/beautify-web/js-beautify/deployments" + }, + "url": "https://api.github.com/notifications/threads/593899860", + "subscription_url": "https://api.github.com/notifications/threads/593899860/subscription" + }, + { + "id": "593829166", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-27T11:28:05Z", + "last_read_at": "2019-09-28T18:10:12Z", + "subject": { + "title": "CSDOCS-159 - Setup ordering of components based on arbitrary list of components", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/87", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments/535901171", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/593829166", + "subscription_url": "https://api.github.com/notifications/threads/593829166/subscription" + }, + { + "id": "593732427", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-27T08:53:30Z", + "last_read_at": "2019-09-27T21:55:47Z", + "subject": { + "title": "chore(deps): bump https://github.com/cloudbees/jxui-frontend.git from 0.0.872 to 0.0.874", + "url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/43", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/43", + "type": "PullRequest" + }, + "repository": { + "id": 183067295, + "node_id": "MDEwOlJlcG9zaXRvcnkxODMwNjcyOTU=", + "name": "jx-app-ui", + "full_name": "cloudbees/jx-app-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jx-app-ui", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jx-app-ui", + "forks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jx-app-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jx-app-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jx-app-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jx-app-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jx-app-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jx-app-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jx-app-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jx-app-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jx-app-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jx-app-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jx-app-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jx-app-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jx-app-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jx-app-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/593732427", + "subscription_url": "https://api.github.com/notifications/threads/593732427/subscription" + }, + { + "id": "593703230", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-27T08:09:30Z", + "last_read_at": "2019-09-27T21:55:47Z", + "subject": { + "title": "chore(deps): bump https://github.com/cloudbees/jxui-frontend.git from 0.0.870 to 0.0.872", + "url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/42", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/42", + "type": "PullRequest" + }, + "repository": { + "id": 183067295, + "node_id": "MDEwOlJlcG9zaXRvcnkxODMwNjcyOTU=", + "name": "jx-app-ui", + "full_name": "cloudbees/jx-app-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jx-app-ui", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jx-app-ui", + "forks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jx-app-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jx-app-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jx-app-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jx-app-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jx-app-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jx-app-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jx-app-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jx-app-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jx-app-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jx-app-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jx-app-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jx-app-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jx-app-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jx-app-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/593703230", + "subscription_url": "https://api.github.com/notifications/threads/593703230/subscription" + }, + { + "id": "593692902", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-27T07:53:30Z", + "last_read_at": "2019-09-27T21:55:47Z", + "subject": { + "title": "chore(deps): bump https://github.com/cloudbees/jxui-frontend.git from 0.0.868 to 0.0.870", + "url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/41", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/41", + "type": "PullRequest" + }, + "repository": { + "id": 183067295, + "node_id": "MDEwOlJlcG9zaXRvcnkxODMwNjcyOTU=", + "name": "jx-app-ui", + "full_name": "cloudbees/jx-app-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jx-app-ui", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jx-app-ui", + "forks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jx-app-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jx-app-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jx-app-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jx-app-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jx-app-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jx-app-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jx-app-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jx-app-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jx-app-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jx-app-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jx-app-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jx-app-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jx-app-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jx-app-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/593692902", + "subscription_url": "https://api.github.com/notifications/threads/593692902/subscription" + }, + { + "id": "586119377", + "unread": false, + "reason": "comment", + "updated_at": "2019-09-30T01:33:46Z", + "last_read_at": "2019-09-27T15:34:40Z", + "subject": { + "title": "Adding possiblity to get ssh keys", + "url": "https://api.github.com/repos/github-api/github-api/pulls/544", + "latest_comment_url": "https://api.github.com/repos/github-api/github-api/pulls/544", + "type": "PullRequest" + }, + "repository": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments" + }, + "url": "https://api.github.com/notifications/threads/586119377", + "subscription_url": "https://api.github.com/notifications/threads/586119377/subscription" + }, + { + "id": "593645177", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-27T06:21:13Z", + "last_read_at": "2019-09-27T17:07:48Z", + "subject": { + "title": "Update 2019-09-27-devops-world-jenkins-world-san-francisco-in-living-…", + "url": "https://api.github.com/repos/alyssat/jenkins.io/commits/05381b723db6aa975e32ebd2e03cd83806b28246", + "latest_comment_url": "https://api.github.com/repos/alyssat/jenkins.io/comments/35259972", + "type": "Commit" + }, + "repository": { + "id": 50523518, + "node_id": "MDEwOlJlcG9zaXRvcnk1MDUyMzUxOA==", + "name": "jenkins.io", + "full_name": "alyssat/jenkins.io", + "private": false, + "owner": { + "login": "alyssat", + "id": 15133103, + "node_id": "MDQ6VXNlcjE1MTMzMTAz", + "avatar_url": "https://avatars1.githubusercontent.com/u/15133103?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/alyssat", + "html_url": "https://github.com/alyssat", + "followers_url": "https://api.github.com/users/alyssat/followers", + "following_url": "https://api.github.com/users/alyssat/following{/other_user}", + "gists_url": "https://api.github.com/users/alyssat/gists{/gist_id}", + "starred_url": "https://api.github.com/users/alyssat/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/alyssat/subscriptions", + "organizations_url": "https://api.github.com/users/alyssat/orgs", + "repos_url": "https://api.github.com/users/alyssat/repos", + "events_url": "https://api.github.com/users/alyssat/events{/privacy}", + "received_events_url": "https://api.github.com/users/alyssat/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/alyssat/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": true, + "url": "https://api.github.com/repos/alyssat/jenkins.io", + "forks_url": "https://api.github.com/repos/alyssat/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/alyssat/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/alyssat/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/alyssat/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/alyssat/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/alyssat/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/alyssat/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/alyssat/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/alyssat/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/alyssat/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/alyssat/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/alyssat/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/alyssat/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/alyssat/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/alyssat/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/alyssat/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/alyssat/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/alyssat/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/alyssat/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/alyssat/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/alyssat/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/alyssat/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/alyssat/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/alyssat/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/alyssat/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/alyssat/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/alyssat/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/alyssat/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/alyssat/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/alyssat/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/alyssat/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/alyssat/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/alyssat/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/alyssat/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/alyssat/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/alyssat/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/593645177", + "subscription_url": "https://api.github.com/notifications/threads/593645177/subscription" + }, + { + "id": "591085086", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-27T06:15:46Z", + "last_read_at": "2019-09-27T17:08:04Z", + "subject": { + "title": "Bump @types/lodash from 4.14.138 to 4.14.139", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/113", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/113", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/591085086", + "subscription_url": "https://api.github.com/notifications/threads/591085086/subscription" + }, + { + "id": "593593564", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-27T04:45:59Z", + "last_read_at": "2019-09-28T18:10:12Z", + "subject": { + "title": "Changes to JX import script", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/85", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/85", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/593593564", + "subscription_url": "https://api.github.com/notifications/threads/593593564/subscription" + }, + { + "id": "593564120", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-27T02:51:42Z", + "last_read_at": "2019-09-28T18:10:12Z", + "subject": { + "title": "CSDOCS-158 - Update components, adjust ordering, make awesome", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/84", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/84", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/593564120", + "subscription_url": "https://api.github.com/notifications/threads/593564120/subscription" + }, + { + "id": "593550391", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-27T02:47:41Z", + "last_read_at": "2019-09-28T18:10:12Z", + "subject": { + "title": "CSDOCS-157 - Hide secured components in the navigation menus", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/83", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/83", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/593550391", + "subscription_url": "https://api.github.com/notifications/threads/593550391/subscription" + }, + { + "id": "357511620", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-27T02:45:39Z", + "last_read_at": "2019-09-30T16:05:46Z", + "subject": { + "title": "backing-up.adoc draft", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/1656", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments/535762886", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/357511620", + "subscription_url": "https://api.github.com/notifications/threads/357511620/subscription" + }, + { + "id": "424148608", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-27T02:45:34Z", + "last_read_at": "2019-09-30T16:05:46Z", + "subject": { + "title": "JENKINS-49142 Adding Checkout extensions by general options in pipeline", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/1974", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments/535762861", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/424148608", + "subscription_url": "https://api.github.com/notifications/threads/424148608/subscription" + }, + { + "id": "424592193", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-27T02:45:18Z", + "last_read_at": "2019-09-30T16:05:46Z", + "subject": { + "title": "JENKINS-49950 Allowing to use dockerhub credentials without explicit …", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/1978", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments/535762804", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/424592193", + "subscription_url": "https://api.github.com/notifications/threads/424592193/subscription" + }, + { + "id": "587148433", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-09-27T02:34:32Z", + "last_read_at": "2019-09-30T16:05:46Z", + "subject": { + "title": "Support maven groovy source directory in the shared library", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2488", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments/535760387", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/587148433", + "subscription_url": "https://api.github.com/notifications/threads/587148433/subscription" + }, + { + "id": "502667193", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-27T02:19:25Z", + "last_read_at": "2019-09-30T16:05:46Z", + "subject": { + "title": "Add redirect for CSRF protection help (future JTH InjectedTest)", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2291", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments/535756719", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/502667193", + "subscription_url": "https://api.github.com/notifications/threads/502667193/subscription" + }, + { + "id": "592582830", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-09-26T21:38:58Z", + "last_read_at": "2019-09-28T18:10:29Z", + "subject": { + "title": "Add task for checking broken links", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2509", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2509", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/592582830", + "subscription_url": "https://api.github.com/notifications/threads/592582830/subscription" + }, + { + "id": "415584018", + "unread": false, + "reason": "comment", + "updated_at": "2019-09-26T20:29:40Z", + "last_read_at": "2019-09-29T16:08:18Z", + "subject": { + "title": "class method definition followed by [Symbol.xxx] over-indents", + "url": "https://api.github.com/repos/beautify-web/js-beautify/issues/1594", + "latest_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/comments/535673808", + "type": "Issue" + }, + "repository": { + "id": 84822, + "node_id": "MDEwOlJlcG9zaXRvcnk4NDgyMg==", + "name": "js-beautify", + "full_name": "beautify-web/js-beautify", + "private": false, + "owner": { + "login": "beautify-web", + "id": 6538164, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjY1MzgxNjQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/6538164?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/beautify-web", + "html_url": "https://github.com/beautify-web", + "followers_url": "https://api.github.com/users/beautify-web/followers", + "following_url": "https://api.github.com/users/beautify-web/following{/other_user}", + "gists_url": "https://api.github.com/users/beautify-web/gists{/gist_id}", + "starred_url": "https://api.github.com/users/beautify-web/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/beautify-web/subscriptions", + "organizations_url": "https://api.github.com/users/beautify-web/orgs", + "repos_url": "https://api.github.com/users/beautify-web/repos", + "events_url": "https://api.github.com/users/beautify-web/events{/privacy}", + "received_events_url": "https://api.github.com/users/beautify-web/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/beautify-web/js-beautify", + "description": "Beautifier for javascript ", + "fork": false, + "url": "https://api.github.com/repos/beautify-web/js-beautify", + "forks_url": "https://api.github.com/repos/beautify-web/js-beautify/forks", + "keys_url": "https://api.github.com/repos/beautify-web/js-beautify/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/beautify-web/js-beautify/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/beautify-web/js-beautify/teams", + "hooks_url": "https://api.github.com/repos/beautify-web/js-beautify/hooks", + "issue_events_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/events{/number}", + "events_url": "https://api.github.com/repos/beautify-web/js-beautify/events", + "assignees_url": "https://api.github.com/repos/beautify-web/js-beautify/assignees{/user}", + "branches_url": "https://api.github.com/repos/beautify-web/js-beautify/branches{/branch}", + "tags_url": "https://api.github.com/repos/beautify-web/js-beautify/tags", + "blobs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/beautify-web/js-beautify/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/beautify-web/js-beautify/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/beautify-web/js-beautify/statuses/{sha}", + "languages_url": "https://api.github.com/repos/beautify-web/js-beautify/languages", + "stargazers_url": "https://api.github.com/repos/beautify-web/js-beautify/stargazers", + "contributors_url": "https://api.github.com/repos/beautify-web/js-beautify/contributors", + "subscribers_url": "https://api.github.com/repos/beautify-web/js-beautify/subscribers", + "subscription_url": "https://api.github.com/repos/beautify-web/js-beautify/subscription", + "commits_url": "https://api.github.com/repos/beautify-web/js-beautify/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/beautify-web/js-beautify/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/beautify-web/js-beautify/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/beautify-web/js-beautify/contents/{+path}", + "compare_url": "https://api.github.com/repos/beautify-web/js-beautify/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/beautify-web/js-beautify/merges", + "archive_url": "https://api.github.com/repos/beautify-web/js-beautify/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/beautify-web/js-beautify/downloads", + "issues_url": "https://api.github.com/repos/beautify-web/js-beautify/issues{/number}", + "pulls_url": "https://api.github.com/repos/beautify-web/js-beautify/pulls{/number}", + "milestones_url": "https://api.github.com/repos/beautify-web/js-beautify/milestones{/number}", + "notifications_url": "https://api.github.com/repos/beautify-web/js-beautify/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/beautify-web/js-beautify/labels{/name}", + "releases_url": "https://api.github.com/repos/beautify-web/js-beautify/releases{/id}", + "deployments_url": "https://api.github.com/repos/beautify-web/js-beautify/deployments" + }, + "url": "https://api.github.com/notifications/threads/415584018", + "subscription_url": "https://api.github.com/notifications/threads/415584018/subscription" + }, + { + "id": "593408798", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-29T16:10:32Z", + "last_read_at": "2019-09-29T16:08:07Z", + "subject": { + "title": "class getter and setter + computed property names", + "url": "https://api.github.com/repos/beautify-web/js-beautify/issues/1710", + "latest_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/1710", + "type": "Issue" + }, + "repository": { + "id": 84822, + "node_id": "MDEwOlJlcG9zaXRvcnk4NDgyMg==", + "name": "js-beautify", + "full_name": "beautify-web/js-beautify", + "private": false, + "owner": { + "login": "beautify-web", + "id": 6538164, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjY1MzgxNjQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/6538164?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/beautify-web", + "html_url": "https://github.com/beautify-web", + "followers_url": "https://api.github.com/users/beautify-web/followers", + "following_url": "https://api.github.com/users/beautify-web/following{/other_user}", + "gists_url": "https://api.github.com/users/beautify-web/gists{/gist_id}", + "starred_url": "https://api.github.com/users/beautify-web/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/beautify-web/subscriptions", + "organizations_url": "https://api.github.com/users/beautify-web/orgs", + "repos_url": "https://api.github.com/users/beautify-web/repos", + "events_url": "https://api.github.com/users/beautify-web/events{/privacy}", + "received_events_url": "https://api.github.com/users/beautify-web/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/beautify-web/js-beautify", + "description": "Beautifier for javascript ", + "fork": false, + "url": "https://api.github.com/repos/beautify-web/js-beautify", + "forks_url": "https://api.github.com/repos/beautify-web/js-beautify/forks", + "keys_url": "https://api.github.com/repos/beautify-web/js-beautify/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/beautify-web/js-beautify/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/beautify-web/js-beautify/teams", + "hooks_url": "https://api.github.com/repos/beautify-web/js-beautify/hooks", + "issue_events_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/events{/number}", + "events_url": "https://api.github.com/repos/beautify-web/js-beautify/events", + "assignees_url": "https://api.github.com/repos/beautify-web/js-beautify/assignees{/user}", + "branches_url": "https://api.github.com/repos/beautify-web/js-beautify/branches{/branch}", + "tags_url": "https://api.github.com/repos/beautify-web/js-beautify/tags", + "blobs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/beautify-web/js-beautify/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/beautify-web/js-beautify/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/beautify-web/js-beautify/statuses/{sha}", + "languages_url": "https://api.github.com/repos/beautify-web/js-beautify/languages", + "stargazers_url": "https://api.github.com/repos/beautify-web/js-beautify/stargazers", + "contributors_url": "https://api.github.com/repos/beautify-web/js-beautify/contributors", + "subscribers_url": "https://api.github.com/repos/beautify-web/js-beautify/subscribers", + "subscription_url": "https://api.github.com/repos/beautify-web/js-beautify/subscription", + "commits_url": "https://api.github.com/repos/beautify-web/js-beautify/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/beautify-web/js-beautify/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/beautify-web/js-beautify/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/beautify-web/js-beautify/contents/{+path}", + "compare_url": "https://api.github.com/repos/beautify-web/js-beautify/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/beautify-web/js-beautify/merges", + "archive_url": "https://api.github.com/repos/beautify-web/js-beautify/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/beautify-web/js-beautify/downloads", + "issues_url": "https://api.github.com/repos/beautify-web/js-beautify/issues{/number}", + "pulls_url": "https://api.github.com/repos/beautify-web/js-beautify/pulls{/number}", + "milestones_url": "https://api.github.com/repos/beautify-web/js-beautify/milestones{/number}", + "notifications_url": "https://api.github.com/repos/beautify-web/js-beautify/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/beautify-web/js-beautify/labels{/name}", + "releases_url": "https://api.github.com/repos/beautify-web/js-beautify/releases{/id}", + "deployments_url": "https://api.github.com/repos/beautify-web/js-beautify/deployments" + }, + "url": "https://api.github.com/notifications/threads/593408798", + "subscription_url": "https://api.github.com/notifications/threads/593408798/subscription" + }, + { + "id": "585551743", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-26T18:30:45Z", + "last_read_at": "2019-09-29T16:13:07Z", + "subject": { + "title": "[NGPIPELINE-685] Add step tracking", + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/pulls/17", + "latest_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/issues/comments/535630479", + "type": "PullRequest" + }, + "repository": { + "id": 200867838, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDA4Njc4Mzg=", + "name": "cloudbees-pipeline-analytics-plugin", + "full_name": "cloudbees/cloudbees-pipeline-analytics-plugin", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/cloudbees-pipeline-analytics-plugin", + "description": "PoC Plugin for https://cloudbees.atlassian.net/browse/NGPIPELINE-610", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin", + "forks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/forks", + "keys_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/events", + "assignees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/merges", + "archive_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/585551743", + "subscription_url": "https://api.github.com/notifications/threads/585551743/subscription" + }, + { + "id": "592384253", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-26T16:50:20Z", + "last_read_at": "2019-09-29T16:13:14Z", + "subject": { + "title": "[FNDJEN-1570] Add the instance creation date of the instance to the CheckIn event", + "url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/pulls/7", + "latest_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/pulls/7", + "type": "PullRequest" + }, + "repository": { + "id": 205587249, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDU1ODcyNDk=", + "name": "cloudbees-analytics-plugin", + "full_name": "cloudbees/cloudbees-analytics-plugin", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/cloudbees-analytics-plugin", + "description": "The analytics plugin to gather and send information to an endpoint using a standard analytics API", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin", + "forks_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/forks", + "keys_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/events", + "assignees_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/merges", + "archive_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/592384253", + "subscription_url": "https://api.github.com/notifications/threads/592384253/subscription" + }, + { + "id": "419167994", + "unread": false, + "reason": "team_mention", + "updated_at": "2019-09-26T16:23:40Z", + "last_read_at": "2019-09-29T16:12:59Z", + "subject": { + "title": "[CPLT2-5299 DOCS-234] WIP glusterFS documentation", + "url": "https://api.github.com/repos/cloudbees/cbn-site/pulls/1091", + "latest_comment_url": "https://api.github.com/repos/cloudbees/cbn-site/pulls/1091", + "type": "PullRequest" + }, + "repository": { + "id": 50137212, + "node_id": "MDEwOlJlcG9zaXRvcnk1MDEzNzIxMg==", + "name": "cbn-site", + "full_name": "cloudbees/cbn-site", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/cbn-site", + "description": "CloudBees Documentation - production & staging", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/cbn-site", + "forks_url": "https://api.github.com/repos/cloudbees/cbn-site/forks", + "keys_url": "https://api.github.com/repos/cloudbees/cbn-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/cbn-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/cbn-site/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/cbn-site/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/cbn-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/cbn-site/events", + "assignees_url": "https://api.github.com/repos/cloudbees/cbn-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/cbn-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/cbn-site/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/cbn-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/cbn-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/cbn-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/cbn-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/cbn-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/cbn-site/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/cbn-site/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/cbn-site/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/cbn-site/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/cbn-site/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/cbn-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/cbn-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/cbn-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/cbn-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/cbn-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/cbn-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/cbn-site/merges", + "archive_url": "https://api.github.com/repos/cloudbees/cbn-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/cbn-site/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/cbn-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/cbn-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/cbn-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/cbn-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/cbn-site/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/cbn-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/cbn-site/deployments" + }, + "url": "https://api.github.com/notifications/threads/419167994", + "subscription_url": "https://api.github.com/notifications/threads/419167994/subscription" + }, + { + "id": "592848196", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-09-26T16:21:19Z", + "last_read_at": "2019-09-27T00:06:57Z", + "subject": { + "title": "Create 2019-10-02-eskilstuna.adoc", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2510", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2510", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/592848196", + "subscription_url": "https://api.github.com/notifications/threads/592848196/subscription" + }, + { + "id": "583103358", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-26T15:43:02Z", + "last_read_at": "2019-09-29T16:12:58Z", + "subject": { + "title": "feat: archive tests even when the build failed", + "url": "https://api.github.com/repos/jenkins-infra/pipeline-library/pulls/113", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/issues/comments/535564363", + "type": "PullRequest" + }, + "repository": { + "id": 65505983, + "node_id": "MDEwOlJlcG9zaXRvcnk2NTUwNTk4Mw==", + "name": "pipeline-library", + "full_name": "jenkins-infra/pipeline-library", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/pipeline-library", + "description": "Collection of custom steps and variables for our Jenkins instance(s)", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/pipeline-library", + "forks_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/deployments" + }, + "url": "https://api.github.com/notifications/threads/583103358", + "subscription_url": "https://api.github.com/notifications/threads/583103358/subscription" + }, + { + "id": "578766862", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-26T15:25:34Z", + "last_read_at": "2019-09-29T16:13:07Z", + "subject": { + "title": "Add AnalyticsEventProperty extension point to allow properties to be supplied dynamically via extensions", + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/pulls/14", + "latest_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/pulls/14", + "type": "PullRequest" + }, + "repository": { + "id": 200867838, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDA4Njc4Mzg=", + "name": "cloudbees-pipeline-analytics-plugin", + "full_name": "cloudbees/cloudbees-pipeline-analytics-plugin", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/cloudbees-pipeline-analytics-plugin", + "description": "PoC Plugin for https://cloudbees.atlassian.net/browse/NGPIPELINE-610", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin", + "forks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/forks", + "keys_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/events", + "assignees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/merges", + "archive_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/578766862", + "subscription_url": "https://api.github.com/notifications/threads/578766862/subscription" + }, + { + "id": "592556278", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-09-26T15:10:49Z", + "last_read_at": "2019-09-30T16:05:46Z", + "subject": { + "title": "Hacktoberfest 2019 - Add Jenkins Online Meetups to the event list", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2508", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2508", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/592556278", + "subscription_url": "https://api.github.com/notifications/threads/592556278/subscription" + }, + { + "id": "593160692", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-26T14:38:30Z", + "last_read_at": "2019-09-27T21:55:47Z", + "subject": { + "title": "chore(deps): bump https://github.com/cloudbees/jxui-frontend.git from 0.0.864 to 0.0.868", + "url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/40", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/40", + "type": "PullRequest" + }, + "repository": { + "id": 183067295, + "node_id": "MDEwOlJlcG9zaXRvcnkxODMwNjcyOTU=", + "name": "jx-app-ui", + "full_name": "cloudbees/jx-app-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jx-app-ui", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jx-app-ui", + "forks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jx-app-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jx-app-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jx-app-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jx-app-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jx-app-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jx-app-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jx-app-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jx-app-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jx-app-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jx-app-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jx-app-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jx-app-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jx-app-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jx-app-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/593160692", + "subscription_url": "https://api.github.com/notifications/threads/593160692/subscription" + }, + { + "id": "592470351", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-26T14:33:10Z", + "last_read_at": "2019-09-30T16:05:23Z", + "subject": { + "title": "[NGPIPELINE-731] Add JaCoCo code coverage reporting and archive it on Scopuli", + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/pulls/15", + "latest_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/pulls/15", + "type": "PullRequest" + }, + "repository": { + "id": 193577985, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTM1Nzc5ODU=", + "name": "cloudbees-pipeline-rules-interception-plugin", + "full_name": "cloudbees/cloudbees-pipeline-rules-interception-plugin", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/cloudbees-pipeline-rules-interception-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin", + "forks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/forks", + "keys_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/events", + "assignees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/merges", + "archive_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/592470351", + "subscription_url": "https://api.github.com/notifications/threads/592470351/subscription" + }, + { + "id": "593066727", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-26T13:52:27Z", + "last_read_at": "2019-09-29T16:13:07Z", + "subject": { + "title": "[NGPIPELINE-734] Add JaCoCo coverage, Jenkinsfile", + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/pulls/20", + "latest_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/pulls/20", + "type": "PullRequest" + }, + "repository": { + "id": 200867838, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDA4Njc4Mzg=", + "name": "cloudbees-pipeline-analytics-plugin", + "full_name": "cloudbees/cloudbees-pipeline-analytics-plugin", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/cloudbees-pipeline-analytics-plugin", + "description": "PoC Plugin for https://cloudbees.atlassian.net/browse/NGPIPELINE-610", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin", + "forks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/forks", + "keys_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/events", + "assignees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/merges", + "archive_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/593066727", + "subscription_url": "https://api.github.com/notifications/threads/593066727/subscription" + }, + { + "id": "592366322", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-26T13:18:58Z", + "last_read_at": "2019-09-29T16:13:14Z", + "subject": { + "title": "[FNDJEN-1572] Read number of granted users from License", + "url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/pulls/6", + "latest_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/pulls/6", + "type": "PullRequest" + }, + "repository": { + "id": 205587249, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDU1ODcyNDk=", + "name": "cloudbees-analytics-plugin", + "full_name": "cloudbees/cloudbees-analytics-plugin", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/cloudbees-analytics-plugin", + "description": "The analytics plugin to gather and send information to an endpoint using a standard analytics API", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin", + "forks_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/forks", + "keys_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/events", + "assignees_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/merges", + "archive_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/592366322", + "subscription_url": "https://api.github.com/notifications/threads/592366322/subscription" + }, + { + "id": "592907365", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-26T09:01:41Z", + "last_read_at": "2019-09-28T18:10:12Z", + "subject": { + "title": "[CSDOCS-145] Add prev/next links and fix other bugs", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/82", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/82", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/592907365", + "subscription_url": "https://api.github.com/notifications/threads/592907365/subscription" + }, + { + "id": "592350442", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-26T06:58:39Z", + "last_read_at": "2019-09-29T16:13:14Z", + "subject": { + "title": "[FNDJEN-1353] Check-in event always active", + "url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/pulls/5", + "latest_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/pulls/5", + "type": "PullRequest" + }, + "repository": { + "id": 205587249, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDU1ODcyNDk=", + "name": "cloudbees-analytics-plugin", + "full_name": "cloudbees/cloudbees-analytics-plugin", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/cloudbees-analytics-plugin", + "description": "The analytics plugin to gather and send information to an endpoint using a standard analytics API", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin", + "forks_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/forks", + "keys_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/events", + "assignees_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/merges", + "archive_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/592350442", + "subscription_url": "https://api.github.com/notifications/threads/592350442/subscription" + }, + { + "id": "425050482", + "unread": false, + "reason": "state_change", + "updated_at": "2019-09-26T03:07:25Z", + "last_read_at": "2019-09-27T00:33:29Z", + "subject": { + "title": "Add support for projects", + "url": "https://api.github.com/repos/github-api/github-api/pulls/483", + "latest_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments/535312613", + "type": "PullRequest" + }, + "repository": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments" + }, + "url": "https://api.github.com/notifications/threads/425050482", + "subscription_url": "https://api.github.com/notifications/threads/425050482/subscription" + }, + { + "id": "422144061", + "unread": false, + "reason": "state_change", + "updated_at": "2019-09-26T03:02:06Z", + "last_read_at": "2019-09-27T00:33:29Z", + "subject": { + "title": "Escape special characters in branch URLs", + "url": "https://api.github.com/repos/github-api/github-api/pulls/480", + "latest_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments/535311343", + "type": "PullRequest" + }, + "repository": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments" + }, + "url": "https://api.github.com/notifications/threads/422144061", + "subscription_url": "https://api.github.com/notifications/threads/422144061/subscription" + }, + { + "id": "591978916", + "unread": false, + "reason": "state_change", + "updated_at": "2019-09-25T22:50:53Z", + "last_read_at": "2019-09-27T00:33:29Z", + "subject": { + "title": "Bump okhttp-urlconnection from 3.9.0 to 4.2.0", + "url": "https://api.github.com/repos/github-api/github-api/pulls/553", + "latest_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments/535254409", + "type": "PullRequest" + }, + "repository": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments" + }, + "url": "https://api.github.com/notifications/threads/591978916", + "subscription_url": "https://api.github.com/notifications/threads/591978916/subscription" + }, + { + "id": "547648902", + "unread": false, + "reason": "mention", + "updated_at": "2019-09-27T18:08:10Z", + "last_read_at": "2019-09-27T18:06:06Z", + "subject": { + "title": "[JENKINS-59039] Add switch for choose `checkApiRateLimit` implementation", + "url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/pulls/237", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues/comments/536042661", + "type": "PullRequest" + }, + "repository": { + "id": 43903637, + "node_id": "MDEwOlJlcG9zaXRvcnk0MzkwMzYzNw==", + "name": "github-branch-source-plugin", + "full_name": "jenkinsci/github-branch-source-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/github-branch-source-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/547648902", + "subscription_url": "https://api.github.com/notifications/threads/547648902/subscription" + }, + { + "id": "589032982", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-09-25T21:21:12Z", + "last_read_at": "2019-09-30T16:05:46Z", + "subject": { + "title": "Create 2019-12-03-Contributor-Summit.adoc", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2495", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2495", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/589032982", + "subscription_url": "https://api.github.com/notifications/threads/589032982/subscription" + }, + { + "id": "584581679", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-09-25T20:49:21Z", + "last_read_at": "2019-09-28T18:11:37Z", + "subject": { + "title": "Change Link for Project Document", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2480", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments/535214826", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/584581679", + "subscription_url": "https://api.github.com/notifications/threads/584581679/subscription" + }, + { + "id": "592496362", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-25T20:14:36Z", + "last_read_at": "2019-09-27T00:33:35Z", + "subject": { + "title": "Replace TODO in index.jelly", + "url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/pulls/64", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/pulls/64", + "type": "PullRequest" + }, + "repository": { + "id": 159685662, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTk2ODU2NjI=", + "name": "audit-log-plugin", + "full_name": "jenkinsci/audit-log-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/audit-log-plugin", + "description": "Audit logging plugin for Jenkins based on Apache Log4j Audit", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/audit-log-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/592496362", + "subscription_url": "https://api.github.com/notifications/threads/592496362/subscription" + }, + { + "id": "592525940", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-25T19:41:35Z", + "last_read_at": "2019-09-27T00:33:35Z", + "subject": { + "title": "Stacktrace on Jenkins restart", + "url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues/65", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues/65", + "type": "Issue" + }, + "repository": { + "id": 159685662, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTk2ODU2NjI=", + "name": "audit-log-plugin", + "full_name": "jenkinsci/audit-log-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/audit-log-plugin", + "description": "Audit logging plugin for Jenkins based on Apache Log4j Audit", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/audit-log-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/592525940", + "subscription_url": "https://api.github.com/notifications/threads/592525940/subscription" + }, + { + "id": "592515645", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-25T19:26:07Z", + "last_read_at": "2019-09-27T21:55:47Z", + "subject": { + "title": "chore(deps): bump https://github.com/cloudbees/jxui-frontend.git from 0.0.862 to 0.0.864", + "url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/39", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/39", + "type": "PullRequest" + }, + "repository": { + "id": 183067295, + "node_id": "MDEwOlJlcG9zaXRvcnkxODMwNjcyOTU=", + "name": "jx-app-ui", + "full_name": "cloudbees/jx-app-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jx-app-ui", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jx-app-ui", + "forks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jx-app-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jx-app-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jx-app-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jx-app-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jx-app-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jx-app-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jx-app-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jx-app-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jx-app-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jx-app-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jx-app-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jx-app-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jx-app-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jx-app-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/592515645", + "subscription_url": "https://api.github.com/notifications/threads/592515645/subscription" + }, + { + "id": "574537425", + "unread": false, + "reason": "author", + "updated_at": "2019-09-25T20:34:38Z", + "last_read_at": "2019-09-25T18:46:55Z", + "subject": { + "title": "Switch Matrix to be based on stage", + "url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/pulls/352", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/pulls/352", + "type": "PullRequest" + }, + "repository": { + "id": 66677338, + "node_id": "MDEwOlJlcG9zaXRvcnk2NjY3NzMzOA==", + "name": "pipeline-model-definition-plugin", + "full_name": "jenkinsci/pipeline-model-definition-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pipeline-model-definition-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/574537425", + "subscription_url": "https://api.github.com/notifications/threads/574537425/subscription" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/__files/notifications-42be6527-0570-4353-b42f-d0cae80258e3.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/__files/notifications-42be6527-0570-4353-b42f-d0cae80258e3.json new file mode 100644 index 0000000000..e940ee4f28 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/__files/notifications-42be6527-0570-4353-b42f-d0cae80258e3.json @@ -0,0 +1,4102 @@ +[ + { + "id": "561850092", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-16T01:10:46Z", + "last_read_at": "2019-08-21T21:13:51Z", + "subject": { + "title": "[CSDOCS-73] Finish initial setup of next js", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/35", + "latest_comment_url": null, + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/561850092", + "subscription_url": "https://api.github.com/notifications/threads/561850092/subscription" + }, + { + "id": "562110099", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-24T02:06:25Z", + "last_read_at": "2019-08-24T01:05:56Z", + "subject": { + "title": "jackson-databind 2.9.9.3", + "url": "https://api.github.com/repos/github-api/github-api/pulls/533", + "latest_comment_url": "https://api.github.com/repos/github-api/github-api/pulls/533", + "type": "PullRequest" + }, + "repository": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments" + }, + "url": "https://api.github.com/notifications/threads/562110099", + "subscription_url": "https://api.github.com/notifications/threads/562110099/subscription" + }, + { + "id": "561740304", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-15T17:28:39Z", + "last_read_at": "2019-08-21T20:40:32Z", + "subject": { + "title": "Bump webpack from 4.39.1 to 4.39.2", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/55", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments/521726073", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/561740304", + "subscription_url": "https://api.github.com/notifications/threads/561740304/subscription" + }, + { + "id": "561740620", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-15T17:28:26Z", + "last_read_at": "2019-08-21T20:40:32Z", + "subject": { + "title": "Bump @storybook/addon-info from 5.1.10 to 5.1.11", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/57", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/57", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/561740620", + "subscription_url": "https://api.github.com/notifications/threads/561740620/subscription" + }, + { + "id": "561740492", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-15T17:28:06Z", + "last_read_at": "2019-08-21T20:40:32Z", + "subject": { + "title": "Bump @storybook/addons from 5.1.10 to 5.1.11", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/56", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/56", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/561740492", + "subscription_url": "https://api.github.com/notifications/threads/561740492/subscription" + }, + { + "id": "561740106", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-15T17:27:52Z", + "last_read_at": "2019-08-21T20:40:32Z", + "subject": { + "title": "Bump @storybook/addon-storysource from 5.1.10 to 5.1.11", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/54", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/54", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/561740106", + "subscription_url": "https://api.github.com/notifications/threads/561740106/subscription" + }, + { + "id": "560859441", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-08-15T17:20:53Z", + "last_read_at": "2019-08-29T15:21:08Z", + "subject": { + "title": "[JENKINS-58862] MBPs configured via single URL always reference github.com", + "url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/pulls/238", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/pulls/238", + "type": "PullRequest" + }, + "repository": { + "id": 43903637, + "node_id": "MDEwOlJlcG9zaXRvcnk0MzkwMzYzNw==", + "name": "github-branch-source-plugin", + "full_name": "jenkinsci/github-branch-source-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/github-branch-source-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/560859441", + "subscription_url": "https://api.github.com/notifications/threads/560859441/subscription" + }, + { + "id": "561988343", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-15T15:33:16Z", + "last_read_at": "2019-08-21T20:40:32Z", + "subject": { + "title": "Badge component", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/58", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments/521685238", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/561988343", + "subscription_url": "https://api.github.com/notifications/threads/561988343/subscription" + }, + { + "id": "561696294", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-15T03:56:07Z", + "last_read_at": "2019-08-21T21:13:51Z", + "subject": { + "title": "update theme-ing to the latest WIP draft from Mike", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/34", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments/521504417", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/561696294", + "subscription_url": "https://api.github.com/notifications/threads/561696294/subscription" + }, + { + "id": "561552442", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-21T20:58:12Z", + "last_read_at": "2019-08-21T20:56:38Z", + "subject": { + "title": "Objects being indented too far", + "url": "https://api.github.com/repos/beautify-web/js-beautify/issues/1698", + "latest_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/1698", + "type": "Issue" + }, + "repository": { + "id": 84822, + "node_id": "MDEwOlJlcG9zaXRvcnk4NDgyMg==", + "name": "js-beautify", + "full_name": "beautify-web/js-beautify", + "private": false, + "owner": { + "login": "beautify-web", + "id": 6538164, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjY1MzgxNjQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/6538164?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/beautify-web", + "html_url": "https://github.com/beautify-web", + "followers_url": "https://api.github.com/users/beautify-web/followers", + "following_url": "https://api.github.com/users/beautify-web/following{/other_user}", + "gists_url": "https://api.github.com/users/beautify-web/gists{/gist_id}", + "starred_url": "https://api.github.com/users/beautify-web/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/beautify-web/subscriptions", + "organizations_url": "https://api.github.com/users/beautify-web/orgs", + "repos_url": "https://api.github.com/users/beautify-web/repos", + "events_url": "https://api.github.com/users/beautify-web/events{/privacy}", + "received_events_url": "https://api.github.com/users/beautify-web/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/beautify-web/js-beautify", + "description": "Beautifier for javascript ", + "fork": false, + "url": "https://api.github.com/repos/beautify-web/js-beautify", + "forks_url": "https://api.github.com/repos/beautify-web/js-beautify/forks", + "keys_url": "https://api.github.com/repos/beautify-web/js-beautify/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/beautify-web/js-beautify/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/beautify-web/js-beautify/teams", + "hooks_url": "https://api.github.com/repos/beautify-web/js-beautify/hooks", + "issue_events_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/events{/number}", + "events_url": "https://api.github.com/repos/beautify-web/js-beautify/events", + "assignees_url": "https://api.github.com/repos/beautify-web/js-beautify/assignees{/user}", + "branches_url": "https://api.github.com/repos/beautify-web/js-beautify/branches{/branch}", + "tags_url": "https://api.github.com/repos/beautify-web/js-beautify/tags", + "blobs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/beautify-web/js-beautify/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/beautify-web/js-beautify/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/beautify-web/js-beautify/statuses/{sha}", + "languages_url": "https://api.github.com/repos/beautify-web/js-beautify/languages", + "stargazers_url": "https://api.github.com/repos/beautify-web/js-beautify/stargazers", + "contributors_url": "https://api.github.com/repos/beautify-web/js-beautify/contributors", + "subscribers_url": "https://api.github.com/repos/beautify-web/js-beautify/subscribers", + "subscription_url": "https://api.github.com/repos/beautify-web/js-beautify/subscription", + "commits_url": "https://api.github.com/repos/beautify-web/js-beautify/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/beautify-web/js-beautify/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/beautify-web/js-beautify/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/beautify-web/js-beautify/contents/{+path}", + "compare_url": "https://api.github.com/repos/beautify-web/js-beautify/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/beautify-web/js-beautify/merges", + "archive_url": "https://api.github.com/repos/beautify-web/js-beautify/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/beautify-web/js-beautify/downloads", + "issues_url": "https://api.github.com/repos/beautify-web/js-beautify/issues{/number}", + "pulls_url": "https://api.github.com/repos/beautify-web/js-beautify/pulls{/number}", + "milestones_url": "https://api.github.com/repos/beautify-web/js-beautify/milestones{/number}", + "notifications_url": "https://api.github.com/repos/beautify-web/js-beautify/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/beautify-web/js-beautify/labels{/name}", + "releases_url": "https://api.github.com/repos/beautify-web/js-beautify/releases{/id}", + "deployments_url": "https://api.github.com/repos/beautify-web/js-beautify/deployments" + }, + "url": "https://api.github.com/notifications/threads/561552442", + "subscription_url": "https://api.github.com/notifications/threads/561552442/subscription" + }, + { + "id": "561450624", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-14T19:28:52Z", + "last_read_at": "2019-08-30T15:23:15Z", + "subject": { + "title": "CE-3208 Script to get builds running for more than 24hrs", + "url": "https://api.github.com/repos/cloudbees/jenkins-scripts/pulls/108", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/pulls/108", + "type": "PullRequest" + }, + "repository": { + "id": 49162083, + "node_id": "MDEwOlJlcG9zaXRvcnk0OTE2MjA4Mw==", + "name": "jenkins-scripts", + "full_name": "cloudbees/jenkins-scripts", + "private": false, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jenkins-scripts", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jenkins-scripts", + "forks_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/deployments" + }, + "url": "https://api.github.com/notifications/threads/561450624", + "subscription_url": "https://api.github.com/notifications/threads/561450624/subscription" + }, + { + "id": "560439187", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-14T17:17:25Z", + "last_read_at": "2019-08-21T20:40:32Z", + "subject": { + "title": "Bump @storybook/react from 5.1.9 to 5.1.11", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/53", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/53", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/560439187", + "subscription_url": "https://api.github.com/notifications/threads/560439187/subscription" + }, + { + "id": "560438430", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-14T17:17:07Z", + "last_read_at": "2019-08-21T20:40:32Z", + "subject": { + "title": "Bump @storybook/addon-viewport from 5.1.10 to 5.1.11", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/52", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments/521336994", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/560438430", + "subscription_url": "https://api.github.com/notifications/threads/560438430/subscription" + }, + { + "id": "559851230", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-14T17:16:56Z", + "last_read_at": "2019-08-21T20:40:32Z", + "subject": { + "title": "Bump webpack-dev-server from 3.7.2 to 3.8.0", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/51", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/51", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/559851230", + "subscription_url": "https://api.github.com/notifications/threads/559851230/subscription" + }, + { + "id": "559850933", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-14T17:16:44Z", + "last_read_at": "2019-08-21T20:40:32Z", + "subject": { + "title": "Bump react-docgen-typescript-loader from 3.1.0 to 3.1.1", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/50", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/50", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/559850933", + "subscription_url": "https://api.github.com/notifications/threads/559850933/subscription" + }, + { + "id": "559850706", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-14T17:16:27Z", + "last_read_at": "2019-08-21T20:40:32Z", + "subject": { + "title": "Bump @types/react from 16.8.23 to 16.9.1", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/49", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/49", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/559850706", + "subscription_url": "https://api.github.com/notifications/threads/559850706/subscription" + }, + { + "id": "558977872", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-14T17:16:12Z", + "last_read_at": "2019-08-21T20:40:32Z", + "subject": { + "title": "Bump eslint-plugin-react-hooks from 1.6.1 to 1.7.0", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/48", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/48", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/558977872", + "subscription_url": "https://api.github.com/notifications/threads/558977872/subscription" + }, + { + "id": "558976566", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-14T17:15:59Z", + "last_read_at": "2019-08-21T20:40:32Z", + "subject": { + "title": "Bump husky from 3.0.2 to 3.0.3", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/45", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/45", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/558976566", + "subscription_url": "https://api.github.com/notifications/threads/558976566/subscription" + }, + { + "id": "558977037", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-14T17:15:40Z", + "last_read_at": "2019-08-21T20:40:32Z", + "subject": { + "title": "Bump react from 16.8.6 to 16.9.0", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/46", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/46", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/558977037", + "subscription_url": "https://api.github.com/notifications/threads/558977037/subscription" + }, + { + "id": "558976125", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-14T17:15:22Z", + "last_read_at": "2019-08-21T20:40:32Z", + "subject": { + "title": "Bump react-dom from 16.8.6 to 16.9.0", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/44", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/44", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/558976125", + "subscription_url": "https://api.github.com/notifications/threads/558976125/subscription" + }, + { + "id": "556287304", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-14T17:15:02Z", + "last_read_at": "2019-08-21T20:40:32Z", + "subject": { + "title": "Bump webpack from 4.36.1 to 4.39.1", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/40", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/40", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/556287304", + "subscription_url": "https://api.github.com/notifications/threads/556287304/subscription" + }, + { + "id": "560934526", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-13T22:03:49Z", + "last_read_at": "2019-08-21T20:40:32Z", + "subject": { + "title": "v1.2.0 - DWJW 2019 SF", + "url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/releases/19270165", + "latest_comment_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/releases/19270165", + "type": "Release" + }, + "repository": { + "id": 133071339, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzMwNzEzMzk=", + "name": "training-admin-fundamentals", + "full_name": "cloudbees/training-admin-fundamentals", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/training-admin-fundamentals", + "description": "Admin Fundamentals Course", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals", + "forks_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/forks", + "keys_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/events", + "assignees_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/merges", + "archive_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/deployments" + }, + "url": "https://api.github.com/notifications/threads/560934526", + "subscription_url": "https://api.github.com/notifications/threads/560934526/subscription" + }, + { + "id": "558865135", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-13T21:15:52Z", + "last_read_at": "2019-08-21T21:12:15Z", + "subject": { + "title": "Can't beautify php", + "url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/issues/289", + "latest_comment_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/issues/289", + "type": "Issue" + }, + "repository": { + "id": 7192181, + "node_id": "MDEwOlJlcG9zaXRvcnk3MTkyMTgx", + "name": "brackets-beautify", + "full_name": "brackets-beautify/brackets-beautify", + "private": false, + "owner": { + "login": "brackets-beautify", + "id": 15680026, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjgwMDI2", + "avatar_url": "https://avatars1.githubusercontent.com/u/15680026?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/brackets-beautify", + "html_url": "https://github.com/brackets-beautify", + "followers_url": "https://api.github.com/users/brackets-beautify/followers", + "following_url": "https://api.github.com/users/brackets-beautify/following{/other_user}", + "gists_url": "https://api.github.com/users/brackets-beautify/gists{/gist_id}", + "starred_url": "https://api.github.com/users/brackets-beautify/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/brackets-beautify/subscriptions", + "organizations_url": "https://api.github.com/users/brackets-beautify/orgs", + "repos_url": "https://api.github.com/users/brackets-beautify/repos", + "events_url": "https://api.github.com/users/brackets-beautify/events{/privacy}", + "received_events_url": "https://api.github.com/users/brackets-beautify/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/brackets-beautify/brackets-beautify", + "description": "Beautify HTML, CSS, and Javascript in Adobe Brackets", + "fork": false, + "url": "https://api.github.com/repos/brackets-beautify/brackets-beautify", + "forks_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/forks", + "keys_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/teams", + "hooks_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/hooks", + "issue_events_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/issues/events{/number}", + "events_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/events", + "assignees_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/assignees{/user}", + "branches_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/branches{/branch}", + "tags_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/tags", + "blobs_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/statuses/{sha}", + "languages_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/languages", + "stargazers_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/stargazers", + "contributors_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/contributors", + "subscribers_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/subscribers", + "subscription_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/subscription", + "commits_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/contents/{+path}", + "compare_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/merges", + "archive_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/downloads", + "issues_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/issues{/number}", + "pulls_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/pulls{/number}", + "milestones_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/milestones{/number}", + "notifications_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/labels{/name}", + "releases_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/releases{/id}", + "deployments_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/deployments" + }, + "url": "https://api.github.com/notifications/threads/558865135", + "subscription_url": "https://api.github.com/notifications/threads/558865135/subscription" + }, + { + "id": "387465167", + "unread": false, + "reason": "comment", + "updated_at": "2019-08-13T19:58:08Z", + "last_read_at": "2019-08-30T15:21:01Z", + "subject": { + "title": "warn user when deprecated Secret#toString() is being used", + "url": "https://api.github.com/repos/jenkinsci/jenkins/pulls/3668", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/jenkins/issues/comments/520985342", + "type": "PullRequest" + }, + "repository": { + "id": 1103607, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTAzNjA3", + "name": "jenkins", + "full_name": "jenkinsci/jenkins", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jenkins", + "description": "Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jenkins", + "forks_url": "https://api.github.com/repos/jenkinsci/jenkins/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jenkins/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jenkins/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jenkins/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jenkins/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jenkins/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jenkins/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jenkins/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jenkins/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jenkins/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jenkins/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jenkins/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jenkins/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jenkins/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jenkins/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jenkins/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jenkins/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jenkins/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jenkins/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jenkins/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jenkins/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jenkins/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jenkins/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jenkins/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jenkins/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jenkins/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jenkins/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jenkins/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jenkins/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jenkins/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jenkins/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jenkins/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jenkins/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jenkins/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jenkins/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jenkins/deployments" + }, + "url": "https://api.github.com/notifications/threads/387465167", + "subscription_url": "https://api.github.com/notifications/threads/387465167/subscription" + }, + { + "id": "546464644", + "unread": false, + "reason": "mention", + "updated_at": "2019-08-13T19:33:15Z", + "last_read_at": "2019-08-30T15:20:54Z", + "subject": { + "title": "[Jenkins 50999] Adding GitHub single repo", + "url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/pulls/236", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/pulls/comments/313574791", + "type": "PullRequest" + }, + "repository": { + "id": 43903637, + "node_id": "MDEwOlJlcG9zaXRvcnk0MzkwMzYzNw==", + "name": "github-branch-source-plugin", + "full_name": "jenkinsci/github-branch-source-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/github-branch-source-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/546464644", + "subscription_url": "https://api.github.com/notifications/threads/546464644/subscription" + }, + { + "id": "560827583", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-13T18:37:23Z", + "last_read_at": "2019-08-13T19:14:56Z", + "subject": { + "title": "Add MockAnalyticsEventBuilder", + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/pulls/6", + "latest_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/pulls/6", + "type": "PullRequest" + }, + "repository": { + "id": 200867838, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDA4Njc4Mzg=", + "name": "cloudbees-pipeline-analytics-plugin", + "full_name": "cloudbees/cloudbees-pipeline-analytics-plugin", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/cloudbees-pipeline-analytics-plugin", + "description": "PoC Plugin for https://cloudbees.atlassian.net/browse/NGPIPELINE-610", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin", + "forks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/forks", + "keys_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/events", + "assignees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/merges", + "archive_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/560827583", + "subscription_url": "https://api.github.com/notifications/threads/560827583/subscription" + }, + { + "id": "525284408", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-13T16:33:55Z", + "last_read_at": "2019-08-27T21:16:10Z", + "subject": { + "title": "Upgrade log4j from 2.11.1 to 2.11.2", + "url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/pulls/51", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/pulls/51", + "type": "PullRequest" + }, + "repository": { + "id": 159685662, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTk2ODU2NjI=", + "name": "audit-log-plugin", + "full_name": "jenkinsci/audit-log-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/audit-log-plugin", + "description": "Audit logging plugin for Jenkins based on Apache Log4j Audit", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/audit-log-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/525284408", + "subscription_url": "https://api.github.com/notifications/threads/525284408/subscription" + }, + { + "id": "373628381", + "unread": false, + "reason": "mention", + "updated_at": "2019-08-13T14:48:56Z", + "last_read_at": "2019-08-13T15:01:40Z", + "subject": { + "title": "Use lock for manipulation with wrapper too.", + "url": "https://api.github.com/repos/jenkinsci/script-security-plugin/pulls/218", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/pulls/218", + "type": "PullRequest" + }, + "repository": { + "id": 17301604, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzMwMTYwNA==", + "name": "script-security-plugin", + "full_name": "jenkinsci/script-security-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/script-security-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/script-security-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/373628381", + "subscription_url": "https://api.github.com/notifications/threads/373628381/subscription" + }, + { + "id": "560575925", + "unread": false, + "reason": "mention", + "updated_at": "2019-08-13T11:16:08Z", + "last_read_at": "2019-08-13T15:02:24Z", + "subject": { + "title": "[WiP] Autogenerated OSS plugin updates Aug 13, 2019", + "url": "https://api.github.com/repos/cloudbees/unified-release/pulls/1401", + "latest_comment_url": "https://api.github.com/repos/cloudbees/unified-release/pulls/1401", + "type": "PullRequest" + }, + "repository": { + "id": 78131017, + "node_id": "MDEwOlJlcG9zaXRvcnk3ODEzMTAxNw==", + "name": "unified-release", + "full_name": "cloudbees/unified-release", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/unified-release", + "description": "Unified Release Repository", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/unified-release", + "forks_url": "https://api.github.com/repos/cloudbees/unified-release/forks", + "keys_url": "https://api.github.com/repos/cloudbees/unified-release/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/unified-release/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/unified-release/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/unified-release/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/unified-release/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/unified-release/events", + "assignees_url": "https://api.github.com/repos/cloudbees/unified-release/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/unified-release/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/unified-release/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/unified-release/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/unified-release/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/unified-release/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/unified-release/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/unified-release/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/unified-release/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/unified-release/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/unified-release/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/unified-release/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/unified-release/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/unified-release/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/unified-release/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/unified-release/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/unified-release/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/unified-release/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/unified-release/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/unified-release/merges", + "archive_url": "https://api.github.com/repos/cloudbees/unified-release/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/unified-release/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/unified-release/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/unified-release/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/unified-release/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/unified-release/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/unified-release/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/unified-release/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/unified-release/deployments" + }, + "url": "https://api.github.com/notifications/threads/560575925", + "subscription_url": "https://api.github.com/notifications/threads/560575925/subscription" + }, + { + "id": "560140808", + "unread": false, + "reason": "mention", + "updated_at": "2019-08-13T08:28:51Z", + "last_read_at": "2019-08-29T06:44:44Z", + "subject": { + "title": "[WiP] Autogenerated OSS plugin updates Aug 12, 2019", + "url": "https://api.github.com/repos/cloudbees/unified-release/pulls/1396", + "latest_comment_url": "https://api.github.com/repos/cloudbees/unified-release/pulls/1396", + "type": "PullRequest" + }, + "repository": { + "id": 78131017, + "node_id": "MDEwOlJlcG9zaXRvcnk3ODEzMTAxNw==", + "name": "unified-release", + "full_name": "cloudbees/unified-release", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/unified-release", + "description": "Unified Release Repository", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/unified-release", + "forks_url": "https://api.github.com/repos/cloudbees/unified-release/forks", + "keys_url": "https://api.github.com/repos/cloudbees/unified-release/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/unified-release/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/unified-release/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/unified-release/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/unified-release/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/unified-release/events", + "assignees_url": "https://api.github.com/repos/cloudbees/unified-release/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/unified-release/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/unified-release/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/unified-release/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/unified-release/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/unified-release/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/unified-release/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/unified-release/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/unified-release/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/unified-release/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/unified-release/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/unified-release/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/unified-release/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/unified-release/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/unified-release/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/unified-release/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/unified-release/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/unified-release/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/unified-release/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/unified-release/merges", + "archive_url": "https://api.github.com/repos/cloudbees/unified-release/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/unified-release/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/unified-release/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/unified-release/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/unified-release/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/unified-release/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/unified-release/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/unified-release/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/unified-release/deployments" + }, + "url": "https://api.github.com/notifications/threads/560140808", + "subscription_url": "https://api.github.com/notifications/threads/560140808/subscription" + }, + { + "id": "556984078", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-13T06:49:43Z", + "last_read_at": "2019-08-21T20:40:32Z", + "subject": { + "title": "Bump @storybook/react from 5.1.9 to 5.1.10", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/41", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/41", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/556984078", + "subscription_url": "https://api.github.com/notifications/threads/556984078/subscription" + }, + { + "id": "558692282", + "unread": false, + "reason": "comment", + "updated_at": "2019-08-12T23:48:48Z", + "last_read_at": "2019-08-13T00:02:26Z", + "subject": { + "title": "Search (ctrl+f) works only in view field in CodeMirror", + "url": "https://api.github.com/repos/beautify-web/js-beautify/issues/1696", + "latest_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/comments/520635531", + "type": "Issue" + }, + "repository": { + "id": 84822, + "node_id": "MDEwOlJlcG9zaXRvcnk4NDgyMg==", + "name": "js-beautify", + "full_name": "beautify-web/js-beautify", + "private": false, + "owner": { + "login": "beautify-web", + "id": 6538164, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjY1MzgxNjQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/6538164?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/beautify-web", + "html_url": "https://github.com/beautify-web", + "followers_url": "https://api.github.com/users/beautify-web/followers", + "following_url": "https://api.github.com/users/beautify-web/following{/other_user}", + "gists_url": "https://api.github.com/users/beautify-web/gists{/gist_id}", + "starred_url": "https://api.github.com/users/beautify-web/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/beautify-web/subscriptions", + "organizations_url": "https://api.github.com/users/beautify-web/orgs", + "repos_url": "https://api.github.com/users/beautify-web/repos", + "events_url": "https://api.github.com/users/beautify-web/events{/privacy}", + "received_events_url": "https://api.github.com/users/beautify-web/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/beautify-web/js-beautify", + "description": "Beautifier for javascript ", + "fork": false, + "url": "https://api.github.com/repos/beautify-web/js-beautify", + "forks_url": "https://api.github.com/repos/beautify-web/js-beautify/forks", + "keys_url": "https://api.github.com/repos/beautify-web/js-beautify/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/beautify-web/js-beautify/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/beautify-web/js-beautify/teams", + "hooks_url": "https://api.github.com/repos/beautify-web/js-beautify/hooks", + "issue_events_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/events{/number}", + "events_url": "https://api.github.com/repos/beautify-web/js-beautify/events", + "assignees_url": "https://api.github.com/repos/beautify-web/js-beautify/assignees{/user}", + "branches_url": "https://api.github.com/repos/beautify-web/js-beautify/branches{/branch}", + "tags_url": "https://api.github.com/repos/beautify-web/js-beautify/tags", + "blobs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/beautify-web/js-beautify/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/beautify-web/js-beautify/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/beautify-web/js-beautify/statuses/{sha}", + "languages_url": "https://api.github.com/repos/beautify-web/js-beautify/languages", + "stargazers_url": "https://api.github.com/repos/beautify-web/js-beautify/stargazers", + "contributors_url": "https://api.github.com/repos/beautify-web/js-beautify/contributors", + "subscribers_url": "https://api.github.com/repos/beautify-web/js-beautify/subscribers", + "subscription_url": "https://api.github.com/repos/beautify-web/js-beautify/subscription", + "commits_url": "https://api.github.com/repos/beautify-web/js-beautify/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/beautify-web/js-beautify/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/beautify-web/js-beautify/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/beautify-web/js-beautify/contents/{+path}", + "compare_url": "https://api.github.com/repos/beautify-web/js-beautify/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/beautify-web/js-beautify/merges", + "archive_url": "https://api.github.com/repos/beautify-web/js-beautify/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/beautify-web/js-beautify/downloads", + "issues_url": "https://api.github.com/repos/beautify-web/js-beautify/issues{/number}", + "pulls_url": "https://api.github.com/repos/beautify-web/js-beautify/pulls{/number}", + "milestones_url": "https://api.github.com/repos/beautify-web/js-beautify/milestones{/number}", + "notifications_url": "https://api.github.com/repos/beautify-web/js-beautify/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/beautify-web/js-beautify/labels{/name}", + "releases_url": "https://api.github.com/repos/beautify-web/js-beautify/releases{/id}", + "deployments_url": "https://api.github.com/repos/beautify-web/js-beautify/deployments" + }, + "url": "https://api.github.com/notifications/threads/558692282", + "subscription_url": "https://api.github.com/notifications/threads/558692282/subscription" + }, + { + "id": "557412106", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-12T19:18:16Z", + "last_read_at": "2019-08-12T22:23:38Z", + "subject": { + "title": "Bump slf4j-api from 1.7.5 to 1.7.27", + "url": "https://api.github.com/repos/bwalding/jenkins-license-generator/pulls/14", + "latest_comment_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/pulls/14", + "type": "PullRequest" + }, + "repository": { + "id": 83546845, + "node_id": "MDEwOlJlcG9zaXRvcnk4MzU0Njg0NQ==", + "name": "jenkins-license-generator", + "full_name": "bwalding/jenkins-license-generator", + "private": true, + "owner": { + "login": "bwalding", + "id": 47446, + "node_id": "MDQ6VXNlcjQ3NDQ2", + "avatar_url": "https://avatars2.githubusercontent.com/u/47446?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bwalding", + "html_url": "https://github.com/bwalding", + "followers_url": "https://api.github.com/users/bwalding/followers", + "following_url": "https://api.github.com/users/bwalding/following{/other_user}", + "gists_url": "https://api.github.com/users/bwalding/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bwalding/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bwalding/subscriptions", + "organizations_url": "https://api.github.com/users/bwalding/orgs", + "repos_url": "https://api.github.com/users/bwalding/repos", + "events_url": "https://api.github.com/users/bwalding/events{/privacy}", + "received_events_url": "https://api.github.com/users/bwalding/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bwalding/jenkins-license-generator", + "description": "Webapp to manage/generates the licenses and trials for JEbC and JOC", + "fork": true, + "url": "https://api.github.com/repos/bwalding/jenkins-license-generator", + "forks_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/forks", + "keys_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/teams", + "hooks_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/hooks", + "issue_events_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/issues/events{/number}", + "events_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/events", + "assignees_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/assignees{/user}", + "branches_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/branches{/branch}", + "tags_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/tags", + "blobs_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/languages", + "stargazers_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/stargazers", + "contributors_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/contributors", + "subscribers_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/subscribers", + "subscription_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/subscription", + "commits_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/contents/{+path}", + "compare_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/merges", + "archive_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/downloads", + "issues_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/issues{/number}", + "pulls_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/labels{/name}", + "releases_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/releases{/id}", + "deployments_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/deployments" + }, + "url": "https://api.github.com/notifications/threads/557412106", + "subscription_url": "https://api.github.com/notifications/threads/557412106/subscription" + }, + { + "id": "560216003", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-12T19:18:13Z", + "last_read_at": "2019-08-12T22:23:38Z", + "subject": { + "title": "Bump slf4j-api from 1.7.5 to 1.7.28", + "url": "https://api.github.com/repos/bwalding/jenkins-license-generator/pulls/15", + "latest_comment_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/pulls/15", + "type": "PullRequest" + }, + "repository": { + "id": 83546845, + "node_id": "MDEwOlJlcG9zaXRvcnk4MzU0Njg0NQ==", + "name": "jenkins-license-generator", + "full_name": "bwalding/jenkins-license-generator", + "private": true, + "owner": { + "login": "bwalding", + "id": 47446, + "node_id": "MDQ6VXNlcjQ3NDQ2", + "avatar_url": "https://avatars2.githubusercontent.com/u/47446?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bwalding", + "html_url": "https://github.com/bwalding", + "followers_url": "https://api.github.com/users/bwalding/followers", + "following_url": "https://api.github.com/users/bwalding/following{/other_user}", + "gists_url": "https://api.github.com/users/bwalding/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bwalding/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bwalding/subscriptions", + "organizations_url": "https://api.github.com/users/bwalding/orgs", + "repos_url": "https://api.github.com/users/bwalding/repos", + "events_url": "https://api.github.com/users/bwalding/events{/privacy}", + "received_events_url": "https://api.github.com/users/bwalding/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bwalding/jenkins-license-generator", + "description": "Webapp to manage/generates the licenses and trials for JEbC and JOC", + "fork": true, + "url": "https://api.github.com/repos/bwalding/jenkins-license-generator", + "forks_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/forks", + "keys_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/teams", + "hooks_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/hooks", + "issue_events_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/issues/events{/number}", + "events_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/events", + "assignees_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/assignees{/user}", + "branches_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/branches{/branch}", + "tags_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/tags", + "blobs_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/languages", + "stargazers_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/stargazers", + "contributors_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/contributors", + "subscribers_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/subscribers", + "subscription_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/subscription", + "commits_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/contents/{+path}", + "compare_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/merges", + "archive_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/downloads", + "issues_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/issues{/number}", + "pulls_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/labels{/name}", + "releases_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/releases{/id}", + "deployments_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/deployments" + }, + "url": "https://api.github.com/notifications/threads/560216003", + "subscription_url": "https://api.github.com/notifications/threads/560216003/subscription" + }, + { + "id": "558977698", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-12T19:02:51Z", + "last_read_at": "2019-08-12T22:37:05Z", + "subject": { + "title": "Add pipeline type detection", + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/pulls/5", + "latest_comment_url": null, + "type": "PullRequest" + }, + "repository": { + "id": 200867838, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDA4Njc4Mzg=", + "name": "cloudbees-pipeline-analytics-plugin", + "full_name": "cloudbees/cloudbees-pipeline-analytics-plugin", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/cloudbees-pipeline-analytics-plugin", + "description": "PoC Plugin for https://cloudbees.atlassian.net/browse/NGPIPELINE-610", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin", + "forks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/forks", + "keys_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/events", + "assignees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/merges", + "archive_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/558977698", + "subscription_url": "https://api.github.com/notifications/threads/558977698/subscription" + }, + { + "id": "558242524", + "unread": false, + "reason": "mention", + "updated_at": "2019-08-12T10:30:05Z", + "last_read_at": "2019-08-12T22:23:47Z", + "subject": { + "title": "Update PULL_REQUEST_TEMPLATE.md", + "url": "https://api.github.com/repos/cloudbees/unified-release/pulls/1389", + "latest_comment_url": null, + "type": "PullRequest" + }, + "repository": { + "id": 78131017, + "node_id": "MDEwOlJlcG9zaXRvcnk3ODEzMTAxNw==", + "name": "unified-release", + "full_name": "cloudbees/unified-release", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/unified-release", + "description": "Unified Release Repository", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/unified-release", + "forks_url": "https://api.github.com/repos/cloudbees/unified-release/forks", + "keys_url": "https://api.github.com/repos/cloudbees/unified-release/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/unified-release/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/unified-release/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/unified-release/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/unified-release/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/unified-release/events", + "assignees_url": "https://api.github.com/repos/cloudbees/unified-release/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/unified-release/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/unified-release/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/unified-release/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/unified-release/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/unified-release/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/unified-release/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/unified-release/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/unified-release/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/unified-release/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/unified-release/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/unified-release/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/unified-release/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/unified-release/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/unified-release/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/unified-release/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/unified-release/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/unified-release/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/unified-release/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/unified-release/merges", + "archive_url": "https://api.github.com/repos/cloudbees/unified-release/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/unified-release/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/unified-release/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/unified-release/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/unified-release/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/unified-release/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/unified-release/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/unified-release/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/unified-release/deployments" + }, + "url": "https://api.github.com/notifications/threads/558242524", + "subscription_url": "https://api.github.com/notifications/threads/558242524/subscription" + }, + { + "id": "558977417", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-12T07:44:51Z", + "last_read_at": "2019-08-12T22:34:22Z", + "subject": { + "title": "Bump @types/react from 16.8.23 to 16.9.0", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/47", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/47", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/558977417", + "subscription_url": "https://api.github.com/notifications/threads/558977417/subscription" + }, + { + "id": "559099338", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-12T02:48:40Z", + "last_read_at": "2019-08-12T22:34:19Z", + "subject": { + "title": "[CSDOCS-73] Add next.js support and a couple of demo pages", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/33", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments/520286311", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/559099338", + "subscription_url": "https://api.github.com/notifications/threads/559099338/subscription" + }, + { + "id": "559522182", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-11T22:58:37Z", + "last_read_at": "2019-08-12T22:34:14Z", + "subject": { + "title": "Add a redirect for outreach programs", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2406", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments/520268328", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/559522182", + "subscription_url": "https://api.github.com/notifications/threads/559522182/subscription" + }, + { + "id": "558937321", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-09T16:52:36Z", + "last_read_at": "2019-08-12T22:34:14Z", + "subject": { + "title": "change top navbar menu to condense to icon at wider browser width", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2405", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments/519989151", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/558937321", + "subscription_url": "https://api.github.com/notifications/threads/558937321/subscription" + }, + { + "id": "559017614", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-21T21:03:54Z", + "last_read_at": "2019-08-12T22:17:51Z", + "subject": { + "title": "Issue with space between number and character(s) && same with lambda expression", + "url": "https://api.github.com/repos/beautify-web/js-beautify/issues/1697", + "latest_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/comments/523648428", + "type": "Issue" + }, + "repository": { + "id": 84822, + "node_id": "MDEwOlJlcG9zaXRvcnk4NDgyMg==", + "name": "js-beautify", + "full_name": "beautify-web/js-beautify", + "private": false, + "owner": { + "login": "beautify-web", + "id": 6538164, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjY1MzgxNjQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/6538164?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/beautify-web", + "html_url": "https://github.com/beautify-web", + "followers_url": "https://api.github.com/users/beautify-web/followers", + "following_url": "https://api.github.com/users/beautify-web/following{/other_user}", + "gists_url": "https://api.github.com/users/beautify-web/gists{/gist_id}", + "starred_url": "https://api.github.com/users/beautify-web/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/beautify-web/subscriptions", + "organizations_url": "https://api.github.com/users/beautify-web/orgs", + "repos_url": "https://api.github.com/users/beautify-web/repos", + "events_url": "https://api.github.com/users/beautify-web/events{/privacy}", + "received_events_url": "https://api.github.com/users/beautify-web/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/beautify-web/js-beautify", + "description": "Beautifier for javascript ", + "fork": false, + "url": "https://api.github.com/repos/beautify-web/js-beautify", + "forks_url": "https://api.github.com/repos/beautify-web/js-beautify/forks", + "keys_url": "https://api.github.com/repos/beautify-web/js-beautify/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/beautify-web/js-beautify/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/beautify-web/js-beautify/teams", + "hooks_url": "https://api.github.com/repos/beautify-web/js-beautify/hooks", + "issue_events_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/events{/number}", + "events_url": "https://api.github.com/repos/beautify-web/js-beautify/events", + "assignees_url": "https://api.github.com/repos/beautify-web/js-beautify/assignees{/user}", + "branches_url": "https://api.github.com/repos/beautify-web/js-beautify/branches{/branch}", + "tags_url": "https://api.github.com/repos/beautify-web/js-beautify/tags", + "blobs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/beautify-web/js-beautify/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/beautify-web/js-beautify/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/beautify-web/js-beautify/statuses/{sha}", + "languages_url": "https://api.github.com/repos/beautify-web/js-beautify/languages", + "stargazers_url": "https://api.github.com/repos/beautify-web/js-beautify/stargazers", + "contributors_url": "https://api.github.com/repos/beautify-web/js-beautify/contributors", + "subscribers_url": "https://api.github.com/repos/beautify-web/js-beautify/subscribers", + "subscription_url": "https://api.github.com/repos/beautify-web/js-beautify/subscription", + "commits_url": "https://api.github.com/repos/beautify-web/js-beautify/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/beautify-web/js-beautify/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/beautify-web/js-beautify/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/beautify-web/js-beautify/contents/{+path}", + "compare_url": "https://api.github.com/repos/beautify-web/js-beautify/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/beautify-web/js-beautify/merges", + "archive_url": "https://api.github.com/repos/beautify-web/js-beautify/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/beautify-web/js-beautify/downloads", + "issues_url": "https://api.github.com/repos/beautify-web/js-beautify/issues{/number}", + "pulls_url": "https://api.github.com/repos/beautify-web/js-beautify/pulls{/number}", + "milestones_url": "https://api.github.com/repos/beautify-web/js-beautify/milestones{/number}", + "notifications_url": "https://api.github.com/repos/beautify-web/js-beautify/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/beautify-web/js-beautify/labels{/name}", + "releases_url": "https://api.github.com/repos/beautify-web/js-beautify/releases{/id}", + "deployments_url": "https://api.github.com/repos/beautify-web/js-beautify/deployments" + }, + "url": "https://api.github.com/notifications/threads/559017614", + "subscription_url": "https://api.github.com/notifications/threads/559017614/subscription" + }, + { + "id": "558292519", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-09T07:28:35Z", + "last_read_at": "2019-08-12T22:34:22Z", + "subject": { + "title": "Bump @types/react from 16.8.23 to 16.8.25", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/43", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/43", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/558292519", + "subscription_url": "https://api.github.com/notifications/threads/558292519/subscription" + }, + { + "id": "558876129", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-09T01:51:08Z", + "last_read_at": "2019-08-12T22:34:19Z", + "subject": { + "title": "Set the pipefail option for all scripts, as it should be", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/32", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/32", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/558876129", + "subscription_url": "https://api.github.com/notifications/threads/558876129/subscription" + }, + { + "id": "556666481", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-09T01:01:40Z", + "last_read_at": "2019-08-12T22:34:14Z", + "subject": { + "title": "Use adoc link markup in contributing file", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2402", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2402", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/556666481", + "subscription_url": "https://api.github.com/notifications/threads/556666481/subscription" + }, + { + "id": "383140724", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-09T00:47:27Z", + "last_read_at": "2019-09-11T00:17:35Z", + "subject": { + "title": "Add support for handling team's privacy", + "url": "https://api.github.com/repos/github-api/github-api/issues/455", + "latest_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments/519737050", + "type": "Issue" + }, + "repository": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments" + }, + "url": "https://api.github.com/notifications/threads/383140724", + "subscription_url": "https://api.github.com/notifications/threads/383140724/subscription" + }, + { + "id": "555880870", + "unread": false, + "reason": "mention", + "updated_at": "2019-08-09T00:02:15Z", + "last_read_at": "2019-08-12T22:34:14Z", + "subject": { + "title": "Outreach programs page", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2400", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2400", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/555880870", + "subscription_url": "https://api.github.com/notifications/threads/555880870/subscription" + }, + { + "id": "558789026", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-08T21:40:18Z", + "last_read_at": "2019-08-12T22:37:05Z", + "subject": { + "title": "Move Extension to class level and don't initialize Segment client until first event received", + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/pulls/3", + "latest_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/pulls/3", + "type": "PullRequest" + }, + "repository": { + "id": 200867838, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDA4Njc4Mzg=", + "name": "cloudbees-pipeline-analytics-plugin", + "full_name": "cloudbees/cloudbees-pipeline-analytics-plugin", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/cloudbees-pipeline-analytics-plugin", + "description": "PoC Plugin for https://cloudbees.atlassian.net/browse/NGPIPELINE-610", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin", + "forks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/forks", + "keys_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/events", + "assignees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/merges", + "archive_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/558789026", + "subscription_url": "https://api.github.com/notifications/threads/558789026/subscription" + }, + { + "id": "558800645", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-08T21:40:07Z", + "last_read_at": "2019-08-12T22:37:05Z", + "subject": { + "title": "Add pipeline-model-definition to pom", + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/pulls/4", + "latest_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/pulls/4", + "type": "PullRequest" + }, + "repository": { + "id": 200867838, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDA4Njc4Mzg=", + "name": "cloudbees-pipeline-analytics-plugin", + "full_name": "cloudbees/cloudbees-pipeline-analytics-plugin", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/cloudbees-pipeline-analytics-plugin", + "description": "PoC Plugin for https://cloudbees.atlassian.net/browse/NGPIPELINE-610", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin", + "forks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/forks", + "keys_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/events", + "assignees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/merges", + "archive_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/558800645", + "subscription_url": "https://api.github.com/notifications/threads/558800645/subscription" + }, + { + "id": "558787416", + "unread": false, + "reason": "author", + "updated_at": "2019-08-13T19:27:50Z", + "last_read_at": "2019-08-12T22:06:44Z", + "subject": { + "title": "incrementals", + "url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/pulls/349", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/pulls/349", + "type": "PullRequest" + }, + "repository": { + "id": 66677338, + "node_id": "MDEwOlJlcG9zaXRvcnk2NjY3NzMzOA==", + "name": "pipeline-model-definition-plugin", + "full_name": "jenkinsci/pipeline-model-definition-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pipeline-model-definition-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/558787416", + "subscription_url": "https://api.github.com/notifications/threads/558787416/subscription" + }, + { + "id": "558762019", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-08T20:36:37Z", + "last_read_at": "2019-08-12T22:37:05Z", + "subject": { + "title": "Make assertions check event properties and don't connect to segment.io at all in tests", + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/pulls/2", + "latest_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/pulls/2", + "type": "PullRequest" + }, + "repository": { + "id": 200867838, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDA4Njc4Mzg=", + "name": "cloudbees-pipeline-analytics-plugin", + "full_name": "cloudbees/cloudbees-pipeline-analytics-plugin", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/cloudbees-pipeline-analytics-plugin", + "description": "PoC Plugin for https://cloudbees.atlassian.net/browse/NGPIPELINE-610", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin", + "forks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/forks", + "keys_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/events", + "assignees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/merges", + "archive_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/558762019", + "subscription_url": "https://api.github.com/notifications/threads/558762019/subscription" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/__files/notifications-48908278-ce2f-4cec-8662-6f4ca3d81226.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/__files/notifications-48908278-ce2f-4cec-8662-6f4ca3d81226.json new file mode 100644 index 0000000000..e9bd4855fa --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/__files/notifications-48908278-ce2f-4cec-8662-6f4ca3d81226.json @@ -0,0 +1,4102 @@ +[ + { + "id": "559236967", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-21T16:00:35Z", + "last_read_at": "2019-08-27T21:16:10Z", + "subject": { + "title": "Added ci to release chart", + "url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/4", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/comments/523525125", + "type": "PullRequest" + }, + "repository": { + "id": 183067295, + "node_id": "MDEwOlJlcG9zaXRvcnkxODMwNjcyOTU=", + "name": "jx-app-ui", + "full_name": "cloudbees/jx-app-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jx-app-ui", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jx-app-ui", + "forks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jx-app-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jx-app-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jx-app-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jx-app-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jx-app-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jx-app-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jx-app-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jx-app-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jx-app-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jx-app-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jx-app-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jx-app-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jx-app-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jx-app-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/559236967", + "subscription_url": "https://api.github.com/notifications/threads/559236967/subscription" + }, + { + "id": "566730244", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-21T15:55:35Z", + "last_read_at": "2019-08-29T07:24:57Z", + "subject": { + "title": "GSoC Role Strategy: Add demo link to blog and project page", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2430", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2430", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/566730244", + "subscription_url": "https://api.github.com/notifications/threads/566730244/subscription" + }, + { + "id": "564569884", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-21T15:53:30Z", + "last_read_at": "2019-08-30T15:23:40Z", + "subject": { + "title": "Fix SpotBugs warnings", + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/pulls/10", + "latest_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/pulls/10", + "type": "PullRequest" + }, + "repository": { + "id": 200867838, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDA4Njc4Mzg=", + "name": "cloudbees-pipeline-analytics-plugin", + "full_name": "cloudbees/cloudbees-pipeline-analytics-plugin", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/cloudbees-pipeline-analytics-plugin", + "description": "PoC Plugin for https://cloudbees.atlassian.net/browse/NGPIPELINE-610", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin", + "forks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/forks", + "keys_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/events", + "assignees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/merges", + "archive_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/564569884", + "subscription_url": "https://api.github.com/notifications/threads/564569884/subscription" + }, + { + "id": "562837696", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-21T15:52:01Z", + "last_read_at": "2019-08-30T15:23:40Z", + "subject": { + "title": "Skip broken events without stopping all events from being processed", + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/pulls/9", + "latest_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/pulls/9", + "type": "PullRequest" + }, + "repository": { + "id": 200867838, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDA4Njc4Mzg=", + "name": "cloudbees-pipeline-analytics-plugin", + "full_name": "cloudbees/cloudbees-pipeline-analytics-plugin", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/cloudbees-pipeline-analytics-plugin", + "description": "PoC Plugin for https://cloudbees.atlassian.net/browse/NGPIPELINE-610", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin", + "forks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/forks", + "keys_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/events", + "assignees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/merges", + "archive_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/562837696", + "subscription_url": "https://api.github.com/notifications/threads/562837696/subscription" + }, + { + "id": "560485771", + "unread": false, + "reason": "mention", + "updated_at": "2019-08-21T15:38:37Z", + "last_read_at": "2019-08-29T06:44:44Z", + "subject": { + "title": "[WiP] Autogenerated OSS plugin updates Aug 13, 2019", + "url": "https://api.github.com/repos/cloudbees/unified-release/pulls/1398", + "latest_comment_url": "https://api.github.com/repos/cloudbees/unified-release/pulls/1398", + "type": "PullRequest" + }, + "repository": { + "id": 78131017, + "node_id": "MDEwOlJlcG9zaXRvcnk3ODEzMTAxNw==", + "name": "unified-release", + "full_name": "cloudbees/unified-release", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/unified-release", + "description": "Unified Release Repository", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/unified-release", + "forks_url": "https://api.github.com/repos/cloudbees/unified-release/forks", + "keys_url": "https://api.github.com/repos/cloudbees/unified-release/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/unified-release/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/unified-release/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/unified-release/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/unified-release/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/unified-release/events", + "assignees_url": "https://api.github.com/repos/cloudbees/unified-release/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/unified-release/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/unified-release/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/unified-release/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/unified-release/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/unified-release/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/unified-release/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/unified-release/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/unified-release/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/unified-release/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/unified-release/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/unified-release/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/unified-release/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/unified-release/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/unified-release/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/unified-release/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/unified-release/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/unified-release/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/unified-release/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/unified-release/merges", + "archive_url": "https://api.github.com/repos/cloudbees/unified-release/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/unified-release/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/unified-release/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/unified-release/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/unified-release/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/unified-release/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/unified-release/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/unified-release/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/unified-release/deployments" + }, + "url": "https://api.github.com/notifications/threads/560485771", + "subscription_url": "https://api.github.com/notifications/threads/560485771/subscription" + }, + { + "id": "566656661", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-21T13:12:58Z", + "last_read_at": "2019-08-29T06:44:44Z", + "subject": { + "title": "GSoC - Remove the 2018 project reference from the Projects page", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2428", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2428", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/566656661", + "subscription_url": "https://api.github.com/notifications/threads/566656661/subscription" + }, + { + "id": "566537434", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-21T11:02:17Z", + "last_read_at": "2019-08-29T06:44:44Z", + "subject": { + "title": "Add Jenkins Online Meetup entries for Summer project demos", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2426", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2426", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/566537434", + "subscription_url": "https://api.github.com/notifications/threads/566537434/subscription" + }, + { + "id": "566330746", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-21T10:44:30Z", + "last_read_at": "2019-08-21T21:13:51Z", + "subject": { + "title": "CSDOCS-91 - Cleanup the ports in use and naming of env settings", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/42", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/42", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/566330746", + "subscription_url": "https://api.github.com/notifications/threads/566330746/subscription" + }, + { + "id": "560745219", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-21T07:11:22Z", + "last_read_at": "2019-09-11T00:03:42Z", + "subject": { + "title": "Initial dump", + "url": "https://api.github.com/repos/cloudbees/urap/pulls/1", + "latest_comment_url": null, + "type": "PullRequest" + }, + "repository": { + "id": 202161566, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDIxNjE1NjY=", + "name": "urap", + "full_name": "cloudbees/urap", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/urap", + "description": "Unified Release Automatic Plugin updater. https://en.wikipedia.org/wiki/Urap", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/urap", + "forks_url": "https://api.github.com/repos/cloudbees/urap/forks", + "keys_url": "https://api.github.com/repos/cloudbees/urap/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/urap/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/urap/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/urap/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/urap/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/urap/events", + "assignees_url": "https://api.github.com/repos/cloudbees/urap/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/urap/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/urap/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/urap/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/urap/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/urap/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/urap/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/urap/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/urap/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/urap/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/urap/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/urap/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/urap/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/urap/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/urap/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/urap/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/urap/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/urap/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/urap/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/urap/merges", + "archive_url": "https://api.github.com/repos/cloudbees/urap/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/urap/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/urap/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/urap/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/urap/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/urap/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/urap/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/urap/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/urap/deployments" + }, + "url": "https://api.github.com/notifications/threads/560745219", + "subscription_url": "https://api.github.com/notifications/threads/560745219/subscription" + }, + { + "id": "566166987", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-21T02:48:44Z", + "last_read_at": "2019-08-21T21:12:49Z", + "subject": { + "title": "Update changelog for tagged release for dwjw-2019-sf", + "url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/pulls/116", + "latest_comment_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/pulls/116", + "type": "PullRequest" + }, + "repository": { + "id": 133071339, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzMwNzEzMzk=", + "name": "training-admin-fundamentals", + "full_name": "cloudbees/training-admin-fundamentals", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/training-admin-fundamentals", + "description": "Admin Fundamentals Course", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals", + "forks_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/forks", + "keys_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/events", + "assignees_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/merges", + "archive_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/deployments" + }, + "url": "https://api.github.com/notifications/threads/566166987", + "subscription_url": "https://api.github.com/notifications/threads/566166987/subscription" + }, + { + "id": "566125925", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-21T00:31:22Z", + "last_read_at": "2019-08-29T06:44:44Z", + "subject": { + "title": "Update link to documentation in older blog post ", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2425", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2425", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/566125925", + "subscription_url": "https://api.github.com/notifications/threads/566125925/subscription" + }, + { + "id": "564850813", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-20T23:01:05Z", + "last_read_at": "2019-08-21T21:13:51Z", + "subject": { + "title": "Import script for core", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/41", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/41", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/564850813", + "subscription_url": "https://api.github.com/notifications/threads/564850813/subscription" + }, + { + "id": "261518993", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-20T22:00:05Z", + "last_read_at": "2019-09-11T00:21:35Z", + "subject": { + "title": "Parse the response Date header and expose in the Rate Limit information", + "url": "https://api.github.com/repos/github-api/github-api/issues/383", + "latest_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments/523211867", + "type": "Issue" + }, + "repository": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments" + }, + "url": "https://api.github.com/notifications/threads/261518993", + "subscription_url": "https://api.github.com/notifications/threads/261518993/subscription" + }, + { + "id": "556509637", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-20T14:41:03Z", + "last_read_at": "2019-08-29T06:44:44Z", + "subject": { + "title": "add cdf dropdown menu", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2401", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments/523046311", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/556509637", + "subscription_url": "https://api.github.com/notifications/threads/556509637/subscription" + }, + { + "id": "564981997", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-20T13:22:12Z", + "last_read_at": "2019-08-29T06:44:44Z", + "subject": { + "title": "Add hackathon event in Beijing", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2424", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2424", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/564981997", + "subscription_url": "https://api.github.com/notifications/threads/564981997/subscription" + }, + { + "id": "564239551", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-20T01:31:59Z", + "last_read_at": "2019-08-21T21:13:51Z", + "subject": { + "title": "Add log in/log out buttons in the header", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/40", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/40", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/564239551", + "subscription_url": "https://api.github.com/notifications/threads/564239551/subscription" + }, + { + "id": "564771969", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-21T21:09:51Z", + "last_read_at": "2019-08-21T21:07:04Z", + "subject": { + "title": "Bring okhttp3 up to date with new UI controls and tests", + "url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/pulls/3", + "latest_comment_url": null, + "type": "PullRequest" + }, + "repository": { + "id": 170782009, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzA3ODIwMDk=", + "name": "github-branch-source-plugin", + "full_name": "bitwiseman/github-branch-source-plugin", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/github-branch-source-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin", + "forks_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/564771969", + "subscription_url": "https://api.github.com/notifications/threads/564771969/subscription" + }, + { + "id": "562331651", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-19T20:54:16Z", + "last_read_at": "2019-08-30T15:23:40Z", + "subject": { + "title": "Data collection", + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/pulls/8", + "latest_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/pulls/8", + "type": "PullRequest" + }, + "repository": { + "id": 200867838, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDA4Njc4Mzg=", + "name": "cloudbees-pipeline-analytics-plugin", + "full_name": "cloudbees/cloudbees-pipeline-analytics-plugin", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/cloudbees-pipeline-analytics-plugin", + "description": "PoC Plugin for https://cloudbees.atlassian.net/browse/NGPIPELINE-610", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin", + "forks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/forks", + "keys_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/events", + "assignees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/merges", + "archive_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/562331651", + "subscription_url": "https://api.github.com/notifications/threads/562331651/subscription" + }, + { + "id": "559703393", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-19T20:37:43Z", + "last_read_at": "2019-08-29T06:44:44Z", + "subject": { + "title": "Blog post for Remoting Kafka plugin release 2.0", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2408", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2408", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/559703393", + "subscription_url": "https://api.github.com/notifications/threads/559703393/subscription" + }, + { + "id": "551580071", + "unread": false, + "reason": "mention", + "updated_at": "2019-08-19T18:10:47Z", + "last_read_at": "2019-08-21T21:04:53Z", + "subject": { + "title": "Add an option to disable whitespace between tokens.", + "url": "https://api.github.com/repos/beautify-web/js-beautify/issues/1693", + "latest_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/comments/522692364", + "type": "Issue" + }, + "repository": { + "id": 84822, + "node_id": "MDEwOlJlcG9zaXRvcnk4NDgyMg==", + "name": "js-beautify", + "full_name": "beautify-web/js-beautify", + "private": false, + "owner": { + "login": "beautify-web", + "id": 6538164, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjY1MzgxNjQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/6538164?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/beautify-web", + "html_url": "https://github.com/beautify-web", + "followers_url": "https://api.github.com/users/beautify-web/followers", + "following_url": "https://api.github.com/users/beautify-web/following{/other_user}", + "gists_url": "https://api.github.com/users/beautify-web/gists{/gist_id}", + "starred_url": "https://api.github.com/users/beautify-web/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/beautify-web/subscriptions", + "organizations_url": "https://api.github.com/users/beautify-web/orgs", + "repos_url": "https://api.github.com/users/beautify-web/repos", + "events_url": "https://api.github.com/users/beautify-web/events{/privacy}", + "received_events_url": "https://api.github.com/users/beautify-web/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/beautify-web/js-beautify", + "description": "Beautifier for javascript ", + "fork": false, + "url": "https://api.github.com/repos/beautify-web/js-beautify", + "forks_url": "https://api.github.com/repos/beautify-web/js-beautify/forks", + "keys_url": "https://api.github.com/repos/beautify-web/js-beautify/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/beautify-web/js-beautify/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/beautify-web/js-beautify/teams", + "hooks_url": "https://api.github.com/repos/beautify-web/js-beautify/hooks", + "issue_events_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/events{/number}", + "events_url": "https://api.github.com/repos/beautify-web/js-beautify/events", + "assignees_url": "https://api.github.com/repos/beautify-web/js-beautify/assignees{/user}", + "branches_url": "https://api.github.com/repos/beautify-web/js-beautify/branches{/branch}", + "tags_url": "https://api.github.com/repos/beautify-web/js-beautify/tags", + "blobs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/beautify-web/js-beautify/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/beautify-web/js-beautify/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/beautify-web/js-beautify/statuses/{sha}", + "languages_url": "https://api.github.com/repos/beautify-web/js-beautify/languages", + "stargazers_url": "https://api.github.com/repos/beautify-web/js-beautify/stargazers", + "contributors_url": "https://api.github.com/repos/beautify-web/js-beautify/contributors", + "subscribers_url": "https://api.github.com/repos/beautify-web/js-beautify/subscribers", + "subscription_url": "https://api.github.com/repos/beautify-web/js-beautify/subscription", + "commits_url": "https://api.github.com/repos/beautify-web/js-beautify/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/beautify-web/js-beautify/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/beautify-web/js-beautify/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/beautify-web/js-beautify/contents/{+path}", + "compare_url": "https://api.github.com/repos/beautify-web/js-beautify/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/beautify-web/js-beautify/merges", + "archive_url": "https://api.github.com/repos/beautify-web/js-beautify/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/beautify-web/js-beautify/downloads", + "issues_url": "https://api.github.com/repos/beautify-web/js-beautify/issues{/number}", + "pulls_url": "https://api.github.com/repos/beautify-web/js-beautify/pulls{/number}", + "milestones_url": "https://api.github.com/repos/beautify-web/js-beautify/milestones{/number}", + "notifications_url": "https://api.github.com/repos/beautify-web/js-beautify/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/beautify-web/js-beautify/labels{/name}", + "releases_url": "https://api.github.com/repos/beautify-web/js-beautify/releases{/id}", + "deployments_url": "https://api.github.com/repos/beautify-web/js-beautify/deployments" + }, + "url": "https://api.github.com/notifications/threads/551580071", + "subscription_url": "https://api.github.com/notifications/threads/551580071/subscription" + }, + { + "id": "562728155", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-19T16:59:49Z", + "last_read_at": "2019-08-21T21:12:53Z", + "subject": { + "title": "Using HoneyUI color palette for Icon component", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/61", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/61", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/562728155", + "subscription_url": "https://api.github.com/notifications/threads/562728155/subscription" + }, + { + "id": "564380741", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-19T16:59:07Z", + "last_read_at": "2019-08-21T21:12:53Z", + "subject": { + "title": "Badge component props issue fix", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/66", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/66", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/564380741", + "subscription_url": "https://api.github.com/notifications/threads/564380741/subscription" + }, + { + "id": "562326296", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-19T16:58:17Z", + "last_read_at": "2019-08-21T21:12:53Z", + "subject": { + "title": "Bump @types/react from 16.9.1 to 16.9.2", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/59", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/59", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/562326296", + "subscription_url": "https://api.github.com/notifications/threads/562326296/subscription" + }, + { + "id": "562326548", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-19T16:57:59Z", + "last_read_at": "2019-08-21T21:12:53Z", + "subject": { + "title": "Bump @cloudbees/honeyui from 1.1.1 to 1.2.0", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/60", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/60", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/562326548", + "subscription_url": "https://api.github.com/notifications/threads/562326548/subscription" + }, + { + "id": "563797928", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-19T16:57:34Z", + "last_read_at": "2019-08-21T20:40:32Z", + "subject": { + "title": "Bump @types/lodash from 4.14.136 to 4.14.137", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/62", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/62", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/563797928", + "subscription_url": "https://api.github.com/notifications/threads/563797928/subscription" + }, + { + "id": "563802040", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-19T16:57:07Z", + "last_read_at": "2019-08-21T20:40:32Z", + "subject": { + "title": "Bump webpack-cli from 3.3.6 to 3.3.7", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/64", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/64", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/563802040", + "subscription_url": "https://api.github.com/notifications/threads/563802040/subscription" + }, + { + "id": "563804799", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-19T16:56:44Z", + "last_read_at": "2019-08-21T20:40:32Z", + "subject": { + "title": "Bump husky from 3.0.3 to 3.0.4", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/65", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/65", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/563804799", + "subscription_url": "https://api.github.com/notifications/threads/563804799/subscription" + }, + { + "id": "563798791", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-19T16:56:21Z", + "last_read_at": "2019-08-21T20:40:32Z", + "subject": { + "title": "Bump lint-staged from 9.2.1 to 9.2.3", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/63", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/63", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/563798791", + "subscription_url": "https://api.github.com/notifications/threads/563798791/subscription" + }, + { + "id": "564313725", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-19T16:08:26Z", + "last_read_at": "2019-08-27T21:16:10Z", + "subject": { + "title": "[Experimental] Add JDBC appender for PostgreSQL", + "url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/pulls/60", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/pulls/comments/315292603", + "type": "PullRequest" + }, + "repository": { + "id": 159685662, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTk2ODU2NjI=", + "name": "audit-log-plugin", + "full_name": "jenkinsci/audit-log-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/audit-log-plugin", + "description": "Audit logging plugin for Jenkins based on Apache Log4j Audit", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/audit-log-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/564313725", + "subscription_url": "https://api.github.com/notifications/threads/564313725/subscription" + }, + { + "id": "563867915", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-19T09:58:09Z", + "last_read_at": "2019-08-29T06:44:44Z", + "subject": { + "title": "Add changelog for 2.190", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2422", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2422", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/563867915", + "subscription_url": "https://api.github.com/notifications/threads/563867915/subscription" + }, + { + "id": "563637742", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-19T06:48:58Z", + "last_read_at": "2019-08-21T21:13:51Z", + "subject": { + "title": "redirect `/documentation` to `index.html`", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/39", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/39", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/563637742", + "subscription_url": "https://api.github.com/notifications/threads/563637742/subscription" + }, + { + "id": "563617281", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-19T06:47:59Z", + "last_read_at": "2019-08-21T21:13:51Z", + "subject": { + "title": "CSDOCS-90 - Reactivate the edit page link", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/38", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/38", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/563617281", + "subscription_url": "https://api.github.com/notifications/threads/563617281/subscription" + }, + { + "id": "563579141", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-19T06:04:07Z", + "last_read_at": "2019-08-21T21:13:51Z", + "subject": { + "title": "CSDOCS-89 - engineering docs", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/37", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/37", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/563579141", + "subscription_url": "https://api.github.com/notifications/threads/563579141/subscription" + }, + { + "id": "563478262", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-19T05:36:24Z", + "last_read_at": "2019-08-21T21:13:51Z", + "subject": { + "title": "fix some tslint warnings and add active state to header", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/36", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/36", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/563478262", + "subscription_url": "https://api.github.com/notifications/threads/563478262/subscription" + }, + { + "id": "563415693", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-19T04:58:14Z", + "last_read_at": "2019-08-29T06:44:44Z", + "subject": { + "title": "Fix spelling error reported thru page feedback", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2419", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2419", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/563415693", + "subscription_url": "https://api.github.com/notifications/threads/563415693/subscription" + }, + { + "id": "563072737", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-19T00:24:05Z", + "last_read_at": "2019-08-29T06:44:44Z", + "subject": { + "title": "Added hardware recommendations to several pages", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2418", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2418", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/563072737", + "subscription_url": "https://api.github.com/notifications/threads/563072737/subscription" + }, + { + "id": "562778029", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-16T23:05:57Z", + "last_read_at": "2019-09-11T05:44:10Z", + "subject": { + "title": "Clean up unused imports and tweak some documentation", + "url": "https://api.github.com/repos/cloudbees/convert-to-declarative/pulls/1", + "latest_comment_url": "https://api.github.com/repos/cloudbees/convert-to-declarative/pulls/1", + "type": "PullRequest" + }, + "repository": { + "id": 180995738, + "node_id": "MDEwOlJlcG9zaXRvcnkxODA5OTU3Mzg=", + "name": "convert-to-declarative", + "full_name": "cloudbees/convert-to-declarative", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/convert-to-declarative", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/convert-to-declarative", + "forks_url": "https://api.github.com/repos/cloudbees/convert-to-declarative/forks", + "keys_url": "https://api.github.com/repos/cloudbees/convert-to-declarative/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/convert-to-declarative/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/convert-to-declarative/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/convert-to-declarative/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/convert-to-declarative/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/convert-to-declarative/events", + "assignees_url": "https://api.github.com/repos/cloudbees/convert-to-declarative/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/convert-to-declarative/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/convert-to-declarative/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/convert-to-declarative/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/convert-to-declarative/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/convert-to-declarative/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/convert-to-declarative/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/convert-to-declarative/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/convert-to-declarative/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/convert-to-declarative/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/convert-to-declarative/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/convert-to-declarative/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/convert-to-declarative/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/convert-to-declarative/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/convert-to-declarative/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/convert-to-declarative/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/convert-to-declarative/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/convert-to-declarative/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/convert-to-declarative/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/convert-to-declarative/merges", + "archive_url": "https://api.github.com/repos/cloudbees/convert-to-declarative/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/convert-to-declarative/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/convert-to-declarative/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/convert-to-declarative/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/convert-to-declarative/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/convert-to-declarative/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/convert-to-declarative/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/convert-to-declarative/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/convert-to-declarative/deployments" + }, + "url": "https://api.github.com/notifications/threads/562778029", + "subscription_url": "https://api.github.com/notifications/threads/562778029/subscription" + }, + { + "id": "561570596", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-16T20:47:07Z", + "last_read_at": "2019-08-29T06:44:44Z", + "subject": { + "title": "Add toulouse and Peru JAMs", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2412", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments/522146244", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/561570596", + "subscription_url": "https://api.github.com/notifications/threads/561570596/subscription" + }, + { + "id": "562726869", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-16T16:09:08Z", + "last_read_at": "2019-08-27T21:16:10Z", + "subject": { + "title": "Update to Log4j 2.12.1", + "url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/pulls/59", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/pulls/59", + "type": "PullRequest" + }, + "repository": { + "id": 159685662, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTk2ODU2NjI=", + "name": "audit-log-plugin", + "full_name": "jenkinsci/audit-log-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/audit-log-plugin", + "description": "Audit logging plugin for Jenkins based on Apache Log4j Audit", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/audit-log-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/562726869", + "subscription_url": "https://api.github.com/notifications/threads/562726869/subscription" + }, + { + "id": "507464743", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-16T15:38:34Z", + "last_read_at": "2019-08-27T21:16:10Z", + "subject": { + "title": "update log4j from 2.11.1 to 2.11.2", + "url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/pulls/43", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/pulls/43", + "type": "PullRequest" + }, + "repository": { + "id": 159685662, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTk2ODU2NjI=", + "name": "audit-log-plugin", + "full_name": "jenkinsci/audit-log-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/audit-log-plugin", + "description": "Audit logging plugin for Jenkins based on Apache Log4j Audit", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/audit-log-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/507464743", + "subscription_url": "https://api.github.com/notifications/threads/507464743/subscription" + }, + { + "id": "561330631", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-16T13:38:16Z", + "last_read_at": "2019-08-29T06:44:44Z", + "subject": { + "title": "Recommend remote repository with Blue Ocean tutorial", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2411", + "latest_comment_url": null, + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/561330631", + "subscription_url": "https://api.github.com/notifications/threads/561330631/subscription" + }, + { + "id": "562704212", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-16T15:19:32Z", + "last_read_at": "2019-08-29T06:44:44Z", + "subject": { + "title": "Folder Auth Blog: Move configuration image", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2417", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2417", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/562704212", + "subscription_url": "https://api.github.com/notifications/threads/562704212/subscription" + }, + { + "id": "560584935", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-16T14:34:47Z", + "last_read_at": "2019-08-29T06:44:44Z", + "subject": { + "title": "GSoC: Blog on Folder Auth Plugin", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2410", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments/522031109", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/560584935", + "subscription_url": "https://api.github.com/notifications/threads/560584935/subscription" + }, + { + "id": "561578963", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-16T13:36:43Z", + "last_read_at": "2019-08-30T15:23:40Z", + "subject": { + "title": "Add real Segment staging write key and allow the plugin to actually run", + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/pulls/7", + "latest_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/pulls/7", + "type": "PullRequest" + }, + "repository": { + "id": 200867838, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDA4Njc4Mzg=", + "name": "cloudbees-pipeline-analytics-plugin", + "full_name": "cloudbees/cloudbees-pipeline-analytics-plugin", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/cloudbees-pipeline-analytics-plugin", + "description": "PoC Plugin for https://cloudbees.atlassian.net/browse/NGPIPELINE-610", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin", + "forks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/forks", + "keys_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/events", + "assignees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/merges", + "archive_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/561578963", + "subscription_url": "https://api.github.com/notifications/threads/561578963/subscription" + }, + { + "id": "562303230", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-16T09:40:10Z", + "last_read_at": "2019-08-29T06:44:44Z", + "subject": { + "title": "[WEBSITE-512] - Corrected index.html.haml for github sponsor url", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2416", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments/521907044", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/562303230", + "subscription_url": "https://api.github.com/notifications/threads/562303230/subscription" + }, + { + "id": "305982811", + "unread": false, + "reason": "comment", + "updated_at": "2019-08-16T11:41:37Z", + "last_read_at": "2019-08-27T16:09:41Z", + "subject": { + "title": "Sorting of HTML attributes", + "url": "https://api.github.com/repos/beautify-web/js-beautify/issues/1349", + "latest_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/comments/521980965", + "type": "Issue" + }, + "repository": { + "id": 84822, + "node_id": "MDEwOlJlcG9zaXRvcnk4NDgyMg==", + "name": "js-beautify", + "full_name": "beautify-web/js-beautify", + "private": false, + "owner": { + "login": "beautify-web", + "id": 6538164, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjY1MzgxNjQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/6538164?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/beautify-web", + "html_url": "https://github.com/beautify-web", + "followers_url": "https://api.github.com/users/beautify-web/followers", + "following_url": "https://api.github.com/users/beautify-web/following{/other_user}", + "gists_url": "https://api.github.com/users/beautify-web/gists{/gist_id}", + "starred_url": "https://api.github.com/users/beautify-web/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/beautify-web/subscriptions", + "organizations_url": "https://api.github.com/users/beautify-web/orgs", + "repos_url": "https://api.github.com/users/beautify-web/repos", + "events_url": "https://api.github.com/users/beautify-web/events{/privacy}", + "received_events_url": "https://api.github.com/users/beautify-web/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/beautify-web/js-beautify", + "description": "Beautifier for javascript ", + "fork": false, + "url": "https://api.github.com/repos/beautify-web/js-beautify", + "forks_url": "https://api.github.com/repos/beautify-web/js-beautify/forks", + "keys_url": "https://api.github.com/repos/beautify-web/js-beautify/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/beautify-web/js-beautify/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/beautify-web/js-beautify/teams", + "hooks_url": "https://api.github.com/repos/beautify-web/js-beautify/hooks", + "issue_events_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/events{/number}", + "events_url": "https://api.github.com/repos/beautify-web/js-beautify/events", + "assignees_url": "https://api.github.com/repos/beautify-web/js-beautify/assignees{/user}", + "branches_url": "https://api.github.com/repos/beautify-web/js-beautify/branches{/branch}", + "tags_url": "https://api.github.com/repos/beautify-web/js-beautify/tags", + "blobs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/beautify-web/js-beautify/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/beautify-web/js-beautify/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/beautify-web/js-beautify/statuses/{sha}", + "languages_url": "https://api.github.com/repos/beautify-web/js-beautify/languages", + "stargazers_url": "https://api.github.com/repos/beautify-web/js-beautify/stargazers", + "contributors_url": "https://api.github.com/repos/beautify-web/js-beautify/contributors", + "subscribers_url": "https://api.github.com/repos/beautify-web/js-beautify/subscribers", + "subscription_url": "https://api.github.com/repos/beautify-web/js-beautify/subscription", + "commits_url": "https://api.github.com/repos/beautify-web/js-beautify/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/beautify-web/js-beautify/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/beautify-web/js-beautify/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/beautify-web/js-beautify/contents/{+path}", + "compare_url": "https://api.github.com/repos/beautify-web/js-beautify/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/beautify-web/js-beautify/merges", + "archive_url": "https://api.github.com/repos/beautify-web/js-beautify/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/beautify-web/js-beautify/downloads", + "issues_url": "https://api.github.com/repos/beautify-web/js-beautify/issues{/number}", + "pulls_url": "https://api.github.com/repos/beautify-web/js-beautify/pulls{/number}", + "milestones_url": "https://api.github.com/repos/beautify-web/js-beautify/milestones{/number}", + "notifications_url": "https://api.github.com/repos/beautify-web/js-beautify/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/beautify-web/js-beautify/labels{/name}", + "releases_url": "https://api.github.com/repos/beautify-web/js-beautify/releases{/id}", + "deployments_url": "https://api.github.com/repos/beautify-web/js-beautify/deployments" + }, + "url": "https://api.github.com/notifications/threads/305982811", + "subscription_url": "https://api.github.com/notifications/threads/305982811/subscription" + }, + { + "id": "549128558", + "unread": false, + "reason": "author", + "updated_at": "2019-08-16T11:02:50Z", + "last_read_at": "2019-08-29T15:21:38Z", + "subject": { + "title": "Backport pr 708", + "url": "https://api.github.com/repos/jenkinsci/git-plugin/pulls/736", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/git-plugin/issues/comments/521972432", + "type": "PullRequest" + }, + "repository": { + "id": 612587, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTI1ODc=", + "name": "git-plugin", + "full_name": "jenkinsci/git-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/git-plugin", + "description": "Jenkins Git plugin ", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/git-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/git-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/git-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/git-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/git-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/git-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/git-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/git-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/git-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/git-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/git-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/git-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/git-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/git-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/git-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/git-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/git-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/git-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/git-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/git-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/git-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/git-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/git-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/git-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/git-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/git-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/git-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/git-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/git-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/git-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/git-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/git-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/git-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/git-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/git-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/git-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/git-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/549128558", + "subscription_url": "https://api.github.com/notifications/threads/549128558/subscription" + }, + { + "id": "561854425", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-16T10:05:27Z", + "last_read_at": "2019-08-29T06:44:44Z", + "subject": { + "title": "GSoC: Update project page for Role Strategy", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2414", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2414", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/561854425", + "subscription_url": "https://api.github.com/notifications/threads/561854425/subscription" + }, + { + "id": "561637476", + "unread": false, + "reason": "mention", + "updated_at": "2019-08-16T10:04:59Z", + "last_read_at": "2019-08-29T06:44:44Z", + "subject": { + "title": "Add plugin cli tool demo", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2413", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2413", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/561637476", + "subscription_url": "https://api.github.com/notifications/threads/561637476/subscription" + }, + { + "id": "562284166", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-16T04:34:00Z", + "last_read_at": "2019-08-29T06:44:44Z", + "subject": { + "title": "Added GitHub Logo to Landing Page", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2415", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/comments/314580165", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/562284166", + "subscription_url": "https://api.github.com/notifications/threads/562284166/subscription" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/__files/notifications-50b907ef-a983-4cc9-bfd2-e2ba76eae729.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/__files/notifications-50b907ef-a983-4cc9-bfd2-e2ba76eae729.json new file mode 100644 index 0000000000..74bf586c9c --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/__files/notifications-50b907ef-a983-4cc9-bfd2-e2ba76eae729.json @@ -0,0 +1,4102 @@ +[ + { + "id": "584985334", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-21T00:30:26Z", + "last_read_at": "2019-09-26T21:38:59Z", + "subject": { + "title": "Bump webpack from 4.39.3 to 4.40.2", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/98", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/98", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/584985334", + "subscription_url": "https://api.github.com/notifications/threads/584985334/subscription" + }, + { + "id": "587651563", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-21T00:18:02Z", + "last_read_at": "2019-09-26T21:38:59Z", + "subject": { + "title": "Bump webpack-cli from 3.3.8 to 3.3.9", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/108", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/108", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/587651563", + "subscription_url": "https://api.github.com/notifications/threads/587651563/subscription" + }, + { + "id": "589035028", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-09-20T23:49:36Z", + "last_read_at": "2019-09-30T16:05:46Z", + "subject": { + "title": "Create 2019-10-10-Hacktoberfest-in-Neuchâtel: Jenkins & Friends.adoc", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2496", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments/533746278", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/589035028", + "subscription_url": "https://api.github.com/notifications/threads/589035028/subscription" + }, + { + "id": "372107213", + "unread": false, + "reason": "mention", + "updated_at": "2019-09-20T21:25:24Z", + "last_read_at": "2019-09-30T16:05:35Z", + "subject": { + "title": "[JENKINS-48050] Declarative Pipeline support for dockerNode", + "url": "https://api.github.com/repos/jenkinsci/docker-plugin/pulls/681", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/docker-plugin/issues/comments/533713826", + "type": "PullRequest" + }, + "repository": { + "id": 15799524, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTc5OTUyNA==", + "name": "docker-plugin", + "full_name": "jenkinsci/docker-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/docker-plugin", + "description": "Jenkins Cloud Plugin for Docker", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/docker-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/docker-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/docker-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/docker-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/docker-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/docker-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/docker-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/docker-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/docker-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/docker-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/docker-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/docker-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/docker-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/docker-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/docker-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/docker-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/docker-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/docker-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/docker-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/docker-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/docker-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/docker-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/docker-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/docker-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/docker-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/docker-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/docker-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/docker-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/docker-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/docker-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/docker-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/docker-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/docker-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/docker-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/docker-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/docker-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/docker-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/372107213", + "subscription_url": "https://api.github.com/notifications/threads/372107213/subscription" + }, + { + "id": "588996035", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-20T21:16:16Z", + "last_read_at": "2019-09-30T16:05:38Z", + "subject": { + "title": "Optimize images for faster download", + "url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/pulls/119", + "latest_comment_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/pulls/119", + "type": "PullRequest" + }, + "repository": { + "id": 133071339, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzMwNzEzMzk=", + "name": "training-admin-fundamentals", + "full_name": "cloudbees/training-admin-fundamentals", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/training-admin-fundamentals", + "description": "Admin Fundamentals Course", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals", + "forks_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/forks", + "keys_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/events", + "assignees_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/merges", + "archive_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/deployments" + }, + "url": "https://api.github.com/notifications/threads/588996035", + "subscription_url": "https://api.github.com/notifications/threads/588996035/subscription" + }, + { + "id": "588985067", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-23T15:55:49Z", + "last_read_at": "2019-09-23T15:55:06Z", + "subject": { + "title": "Use HTTPS URLs in pom.xml", + "url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/pulls/248", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/pulls/248", + "type": "PullRequest" + }, + "repository": { + "id": 43903637, + "node_id": "MDEwOlJlcG9zaXRvcnk0MzkwMzYzNw==", + "name": "github-branch-source-plugin", + "full_name": "jenkinsci/github-branch-source-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/github-branch-source-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/588985067", + "subscription_url": "https://api.github.com/notifications/threads/588985067/subscription" + }, + { + "id": "418783058", + "unread": false, + "reason": "mention", + "updated_at": "2019-10-04T00:37:53Z", + "last_read_at": "2019-09-24T21:30:27Z", + "subject": { + "title": "Added description field to GHTeam class.", + "url": "https://api.github.com/repos/github-api/github-api/pulls/478", + "latest_comment_url": "https://api.github.com/repos/github-api/github-api/pulls/478", + "type": "PullRequest" + }, + "repository": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments" + }, + "url": "https://api.github.com/notifications/threads/418783058", + "subscription_url": "https://api.github.com/notifications/threads/418783058/subscription" + }, + { + "id": "588662584", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-20T16:55:08Z", + "last_read_at": "2019-09-30T16:05:38Z", + "subject": { + "title": "Miscellaneous fixes", + "url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/pulls/118", + "latest_comment_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/pulls/118", + "type": "PullRequest" + }, + "repository": { + "id": 133071339, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzMwNzEzMzk=", + "name": "training-admin-fundamentals", + "full_name": "cloudbees/training-admin-fundamentals", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/training-admin-fundamentals", + "description": "Admin Fundamentals Course", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals", + "forks_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/forks", + "keys_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/events", + "assignees_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/merges", + "archive_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/deployments" + }, + "url": "https://api.github.com/notifications/threads/588662584", + "subscription_url": "https://api.github.com/notifications/threads/588662584/subscription" + }, + { + "id": "586235656", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-20T16:41:13Z", + "last_read_at": "2019-09-30T16:09:48Z", + "subject": { + "title": "[FNDJEN-1539] Add opt out to analytics plugin using Usage Statistics", + "url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/pulls/2", + "latest_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/issues/comments/533627144", + "type": "PullRequest" + }, + "repository": { + "id": 205587249, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDU1ODcyNDk=", + "name": "cloudbees-analytics-plugin", + "full_name": "cloudbees/cloudbees-analytics-plugin", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/cloudbees-analytics-plugin", + "description": "The analytics plugin to gather and send information to an endpoint using a standard analytics API", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin", + "forks_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/forks", + "keys_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/events", + "assignees_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/merges", + "archive_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/586235656", + "subscription_url": "https://api.github.com/notifications/threads/586235656/subscription" + }, + { + "id": "588816833", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-20T15:50:06Z", + "last_read_at": "2019-09-27T21:13:05Z", + "subject": { + "title": "chore(deps): bump https://github.com/cloudbees/jxui-frontend.git from 0.0.850 to 0.0.854", + "url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/34", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/34", + "type": "PullRequest" + }, + "repository": { + "id": 183067295, + "node_id": "MDEwOlJlcG9zaXRvcnkxODMwNjcyOTU=", + "name": "jx-app-ui", + "full_name": "cloudbees/jx-app-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jx-app-ui", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jx-app-ui", + "forks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jx-app-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jx-app-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jx-app-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jx-app-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jx-app-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jx-app-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jx-app-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jx-app-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jx-app-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jx-app-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jx-app-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jx-app-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jx-app-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jx-app-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/588816833", + "subscription_url": "https://api.github.com/notifications/threads/588816833/subscription" + }, + { + "id": "588312167", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-20T07:15:29Z", + "last_read_at": "2019-09-20T14:27:02Z", + "subject": { + "title": "Add Dropdown, Tooltip components and cleanup Icons enum", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/109", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/109", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/588312167", + "subscription_url": "https://api.github.com/notifications/threads/588312167/subscription" + }, + { + "id": "588348326", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-20T05:47:03Z", + "last_read_at": "2019-09-25T00:51:21Z", + "subject": { + "title": "CSDOCS-121 - Generate sitemap", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/72", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/72", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/588348326", + "subscription_url": "https://api.github.com/notifications/threads/588348326/subscription" + }, + { + "id": "588335560", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-20T03:04:42Z", + "last_read_at": "2019-09-25T00:51:21Z", + "subject": { + "title": "[CSDOCS-82] Add login menu, fix other bugs and interactions", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/71", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/71", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/588335560", + "subscription_url": "https://api.github.com/notifications/threads/588335560/subscription" + }, + { + "id": "588288755", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-19T22:13:06Z", + "last_read_at": "2019-09-23T15:56:11Z", + "subject": { + "title": "chore(deps): bump https://github.com/cloudbees/jxui-frontend.git from 0.0.848 to 0.0.850", + "url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/33", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/33", + "type": "PullRequest" + }, + "repository": { + "id": 183067295, + "node_id": "MDEwOlJlcG9zaXRvcnkxODMwNjcyOTU=", + "name": "jx-app-ui", + "full_name": "cloudbees/jx-app-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jx-app-ui", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jx-app-ui", + "forks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jx-app-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jx-app-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jx-app-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jx-app-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jx-app-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jx-app-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jx-app-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jx-app-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jx-app-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jx-app-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jx-app-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jx-app-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jx-app-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jx-app-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/588288755", + "subscription_url": "https://api.github.com/notifications/threads/588288755/subscription" + }, + { + "id": "588275848", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-19T21:47:05Z", + "last_read_at": "2019-09-23T15:56:11Z", + "subject": { + "title": "chore(deps): bump https://github.com/cloudbees/jxui-frontend.git from 0.0.846 to 0.0.848", + "url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/32", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/32", + "type": "PullRequest" + }, + "repository": { + "id": 183067295, + "node_id": "MDEwOlJlcG9zaXRvcnkxODMwNjcyOTU=", + "name": "jx-app-ui", + "full_name": "cloudbees/jx-app-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jx-app-ui", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jx-app-ui", + "forks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jx-app-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jx-app-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jx-app-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jx-app-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jx-app-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jx-app-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jx-app-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jx-app-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jx-app-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jx-app-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jx-app-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jx-app-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jx-app-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jx-app-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/588275848", + "subscription_url": "https://api.github.com/notifications/threads/588275848/subscription" + }, + { + "id": "587889491", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-09-19T21:22:08Z", + "last_read_at": "2019-09-30T16:04:11Z", + "subject": { + "title": "Hacktoberfest 2019 - Move FAQ to a separate page", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2493", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2493", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/587889491", + "subscription_url": "https://api.github.com/notifications/threads/587889491/subscription" + }, + { + "id": "588128297", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-09-19T19:30:48Z", + "last_read_at": "2019-09-30T16:04:11Z", + "subject": { + "title": "Change level of section title (minor markup fix)", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2494", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments/533274986", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/588128297", + "subscription_url": "https://api.github.com/notifications/threads/588128297/subscription" + }, + { + "id": "587532564", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-09-19T14:15:51Z", + "last_read_at": "2019-09-30T16:04:11Z", + "subject": { + "title": "Remove meeting notes from Docs SIG page", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2492", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2492", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/587532564", + "subscription_url": "https://api.github.com/notifications/threads/587532564/subscription" + }, + { + "id": "584068485", + "unread": false, + "reason": "team_mention", + "updated_at": "2019-09-19T09:56:53Z", + "last_read_at": "2019-09-30T16:09:43Z", + "subject": { + "title": "Autogenerated OSS plugin updates Sep 13, 2019", + "url": "https://api.github.com/repos/cloudbees/unified-release/pulls/1468", + "latest_comment_url": "https://api.github.com/repos/cloudbees/unified-release/pulls/1468", + "type": "PullRequest" + }, + "repository": { + "id": 78131017, + "node_id": "MDEwOlJlcG9zaXRvcnk3ODEzMTAxNw==", + "name": "unified-release", + "full_name": "cloudbees/unified-release", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/unified-release", + "description": "Unified Release Repository", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/unified-release", + "forks_url": "https://api.github.com/repos/cloudbees/unified-release/forks", + "keys_url": "https://api.github.com/repos/cloudbees/unified-release/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/unified-release/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/unified-release/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/unified-release/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/unified-release/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/unified-release/events", + "assignees_url": "https://api.github.com/repos/cloudbees/unified-release/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/unified-release/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/unified-release/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/unified-release/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/unified-release/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/unified-release/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/unified-release/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/unified-release/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/unified-release/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/unified-release/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/unified-release/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/unified-release/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/unified-release/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/unified-release/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/unified-release/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/unified-release/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/unified-release/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/unified-release/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/unified-release/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/unified-release/merges", + "archive_url": "https://api.github.com/repos/cloudbees/unified-release/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/unified-release/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/unified-release/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/unified-release/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/unified-release/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/unified-release/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/unified-release/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/unified-release/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/unified-release/deployments" + }, + "url": "https://api.github.com/notifications/threads/584068485", + "subscription_url": "https://api.github.com/notifications/threads/584068485/subscription" + }, + { + "id": "587213778", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-09-19T09:43:37Z", + "last_read_at": "2019-09-23T15:56:24Z", + "subject": { + "title": "Update releaseLines.properties", + "url": "https://api.github.com/repos/cloudbees/urap/pulls/12", + "latest_comment_url": null, + "type": "PullRequest" + }, + "repository": { + "id": 202161566, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDIxNjE1NjY=", + "name": "urap", + "full_name": "cloudbees/urap", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/urap", + "description": "Unified Release Automatic Plugin updater. https://en.wikipedia.org/wiki/Urap", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/urap", + "forks_url": "https://api.github.com/repos/cloudbees/urap/forks", + "keys_url": "https://api.github.com/repos/cloudbees/urap/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/urap/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/urap/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/urap/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/urap/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/urap/events", + "assignees_url": "https://api.github.com/repos/cloudbees/urap/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/urap/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/urap/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/urap/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/urap/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/urap/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/urap/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/urap/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/urap/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/urap/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/urap/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/urap/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/urap/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/urap/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/urap/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/urap/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/urap/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/urap/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/urap/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/urap/merges", + "archive_url": "https://api.github.com/repos/cloudbees/urap/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/urap/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/urap/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/urap/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/urap/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/urap/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/urap/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/urap/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/urap/deployments" + }, + "url": "https://api.github.com/notifications/threads/587213778", + "subscription_url": "https://api.github.com/notifications/threads/587213778/subscription" + }, + { + "id": "587773032", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-19T09:32:05Z", + "last_read_at": "2019-09-23T15:56:11Z", + "subject": { + "title": "chore(deps): bump https://github.com/cloudbees/jxui-frontend.git from 0.0.844 to 0.0.846", + "url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/31", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/31", + "type": "PullRequest" + }, + "repository": { + "id": 183067295, + "node_id": "MDEwOlJlcG9zaXRvcnkxODMwNjcyOTU=", + "name": "jx-app-ui", + "full_name": "cloudbees/jx-app-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jx-app-ui", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jx-app-ui", + "forks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jx-app-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jx-app-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jx-app-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jx-app-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jx-app-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jx-app-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jx-app-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jx-app-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jx-app-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jx-app-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jx-app-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jx-app-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jx-app-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jx-app-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/587773032", + "subscription_url": "https://api.github.com/notifications/threads/587773032/subscription" + }, + { + "id": "587649293", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-05T04:10:52Z", + "last_read_at": "2019-09-24T21:28:28Z", + "subject": { + "title": "Support for projects", + "url": "https://api.github.com/repos/github-api/github-api/pulls/545", + "latest_comment_url": "https://api.github.com/repos/github-api/github-api/pulls/545", + "type": "PullRequest" + }, + "repository": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments" + }, + "url": "https://api.github.com/notifications/threads/587649293", + "subscription_url": "https://api.github.com/notifications/threads/587649293/subscription" + }, + { + "id": "587609539", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-19T05:14:35Z", + "last_read_at": "2019-09-25T00:51:21Z", + "subject": { + "title": "CSDOCS-138 - Move landing page to /", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/70", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/70", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/587609539", + "subscription_url": "https://api.github.com/notifications/threads/587609539/subscription" + }, + { + "id": "587594463", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-19T04:56:32Z", + "last_read_at": "2019-09-25T00:51:21Z", + "subject": { + "title": "Import script improvements", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/69", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/69", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/587594463", + "subscription_url": "https://api.github.com/notifications/threads/587594463/subscription" + }, + { + "id": "586823413", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-19T01:52:42Z", + "last_read_at": "2019-09-25T00:51:21Z", + "subject": { + "title": "Fix header test", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/68", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/68", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/586823413", + "subscription_url": "https://api.github.com/notifications/threads/586823413/subscription" + }, + { + "id": "586800510", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-18T23:45:00Z", + "last_read_at": "2019-09-19T05:33:53Z", + "subject": { + "title": "Bump @storybook/react from 5.1.11 to 5.2.1", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/104", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments/532908018", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/586800510", + "subscription_url": "https://api.github.com/notifications/threads/586800510/subscription" + }, + { + "id": "586800995", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-18T22:16:38Z", + "last_read_at": "2019-09-19T05:33:53Z", + "subject": { + "title": "Bump @cloudbees/honeyui from 1.2.0 to 1.2.1", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/105", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/105", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/586800995", + "subscription_url": "https://api.github.com/notifications/threads/586800995/subscription" + }, + { + "id": "586799787", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-18T22:14:29Z", + "last_read_at": "2019-09-19T05:33:53Z", + "subject": { + "title": "Bump @storybook/addons from 5.1.11 to 5.2.1", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/103", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/103", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/586799787", + "subscription_url": "https://api.github.com/notifications/threads/586799787/subscription" + }, + { + "id": "579520346", + "unread": false, + "reason": "mention", + "updated_at": "2019-10-23T18:16:28Z", + "last_read_at": "2019-09-25T20:14:32Z", + "subject": { + "title": "Add tests for api rate limiter", + "url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/pulls/242", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues/comments/545571523", + "type": "PullRequest" + }, + "repository": { + "id": 43903637, + "node_id": "MDEwOlJlcG9zaXRvcnk0MzkwMzYzNw==", + "name": "github-branch-source-plugin", + "full_name": "jenkinsci/github-branch-source-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/github-branch-source-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/579520346", + "subscription_url": "https://api.github.com/notifications/threads/579520346/subscription" + }, + { + "id": "586799383", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-18T21:14:54Z", + "last_read_at": "2019-09-19T05:33:53Z", + "subject": { + "title": "Bump react-docgen-typescript-loader from 3.2.0 to 3.2.1", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/102", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/102", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/586799383", + "subscription_url": "https://api.github.com/notifications/threads/586799383/subscription" + }, + { + "id": "586799073", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-18T21:14:13Z", + "last_read_at": "2019-09-19T05:33:53Z", + "subject": { + "title": "Bump @storybook/addon-viewport from 5.1.11 to 5.2.1", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/101", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/101", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/586799073", + "subscription_url": "https://api.github.com/notifications/threads/586799073/subscription" + }, + { + "id": "585834218", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-18T21:13:37Z", + "last_read_at": "2019-09-19T05:33:53Z", + "subject": { + "title": "Bump webpack-dev-server from 3.8.0 to 3.8.1", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/100", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/100", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/585834218", + "subscription_url": "https://api.github.com/notifications/threads/585834218/subscription" + }, + { + "id": "581938675", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-18T21:10:46Z", + "last_read_at": "2019-09-19T05:33:53Z", + "subject": { + "title": "Bump typescript from 3.6.2 to 3.6.3", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/92", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/92", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/581938675", + "subscription_url": "https://api.github.com/notifications/threads/581938675/subscription" + }, + { + "id": "533996525", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-18T21:10:22Z", + "last_read_at": "2019-09-19T05:33:53Z", + "subject": { + "title": "[WIP] Tooltip", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/3", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments/532868073", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/533996525", + "subscription_url": "https://api.github.com/notifications/threads/533996525/subscription" + }, + { + "id": "508131069", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-09-18T19:33:01Z", + "last_read_at": "2019-09-30T16:10:42Z", + "subject": { + "title": "[JENKINS-49073] Propagate the downstream result, not just FAILURE", + "url": "https://api.github.com/repos/jenkinsci/pipeline-build-step-plugin/pulls/24", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/pipeline-build-step-plugin/issues/comments/532833036", + "type": "PullRequest" + }, + "repository": { + "id": 55542861, + "node_id": "MDEwOlJlcG9zaXRvcnk1NTU0Mjg2MQ==", + "name": "pipeline-build-step-plugin", + "full_name": "jenkinsci/pipeline-build-step-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pipeline-build-step-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/pipeline-build-step-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pipeline-build-step-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pipeline-build-step-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pipeline-build-step-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pipeline-build-step-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pipeline-build-step-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pipeline-build-step-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pipeline-build-step-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pipeline-build-step-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pipeline-build-step-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pipeline-build-step-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pipeline-build-step-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pipeline-build-step-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pipeline-build-step-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pipeline-build-step-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pipeline-build-step-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pipeline-build-step-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pipeline-build-step-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pipeline-build-step-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pipeline-build-step-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pipeline-build-step-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pipeline-build-step-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pipeline-build-step-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pipeline-build-step-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pipeline-build-step-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pipeline-build-step-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pipeline-build-step-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pipeline-build-step-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pipeline-build-step-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pipeline-build-step-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pipeline-build-step-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pipeline-build-step-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pipeline-build-step-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pipeline-build-step-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pipeline-build-step-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pipeline-build-step-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pipeline-build-step-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/508131069", + "subscription_url": "https://api.github.com/notifications/threads/508131069/subscription" + }, + { + "id": "587226919", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-09-18T15:44:02Z", + "last_read_at": "2019-09-30T16:04:11Z", + "subject": { + "title": "Update credit for David Fiser/ZDI", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2491", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2491", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/587226919", + "subscription_url": "https://api.github.com/notifications/threads/587226919/subscription" + }, + { + "id": "587224124", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-18T15:32:37Z", + "last_read_at": "2019-09-30T16:04:11Z", + "subject": { + "title": "Contributing Guidelines: Reflect the \"location\" field for events", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2490", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2490", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/587224124", + "subscription_url": "https://api.github.com/notifications/threads/587224124/subscription" + }, + { + "id": "587215669", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-09-18T15:18:35Z", + "last_read_at": "2019-09-30T16:04:11Z", + "subject": { + "title": "Hacktorfest 2019: Add listing of events and a Jenkins-specific Event kit", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2489", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2489", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/587215669", + "subscription_url": "https://api.github.com/notifications/threads/587215669/subscription" + }, + { + "id": "578026023", + "unread": false, + "reason": "mention", + "updated_at": "2019-09-18T13:52:39Z", + "last_read_at": "2019-10-05T07:25:40Z", + "subject": { + "title": "Added new when conditions stashed and archived", + "url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/pulls/353", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/issues/comments/532694414", + "type": "PullRequest" + }, + "repository": { + "id": 66677338, + "node_id": "MDEwOlJlcG9zaXRvcnk2NjY3NzMzOA==", + "name": "pipeline-model-definition-plugin", + "full_name": "jenkinsci/pipeline-model-definition-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pipeline-model-definition-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/578026023", + "subscription_url": "https://api.github.com/notifications/threads/578026023/subscription" + }, + { + "id": "586904678", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-18T13:03:23Z", + "last_read_at": "2019-09-30T16:10:01Z", + "subject": { + "title": "[JENKINS-59425] Fail with a sensible error message when the script is missing from scm", + "url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls/324", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls/comments/325553331", + "type": "PullRequest" + }, + "repository": { + "id": 55543225, + "node_id": "MDEwOlJlcG9zaXRvcnk1NTU0MzIyNQ==", + "name": "workflow-cps-plugin", + "full_name": "jenkinsci/workflow-cps-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/workflow-cps-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/586904678", + "subscription_url": "https://api.github.com/notifications/threads/586904678/subscription" + }, + { + "id": "586643178", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-09-18T12:16:04Z", + "last_read_at": "2019-09-30T16:04:11Z", + "subject": { + "title": "Add Jenkins-CLI written which written in go into hackathon project list", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2487", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2487", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/586643178", + "subscription_url": "https://api.github.com/notifications/threads/586643178/subscription" + }, + { + "id": "585563865", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-09-18T11:50:21Z", + "last_read_at": "2019-09-30T16:04:11Z", + "subject": { + "title": "Direct link to plugin removal", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2485", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2485", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/585563865", + "subscription_url": "https://api.github.com/notifications/threads/585563865/subscription" + }, + { + "id": "586924987", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-18T09:06:05Z", + "last_read_at": "2019-09-23T15:56:11Z", + "subject": { + "title": "chore(deps): bump https://github.com/cloudbees/jxui-frontend.git from 0.0.843 to 0.0.844", + "url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/30", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/30", + "type": "PullRequest" + }, + "repository": { + "id": 183067295, + "node_id": "MDEwOlJlcG9zaXRvcnkxODMwNjcyOTU=", + "name": "jx-app-ui", + "full_name": "cloudbees/jx-app-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jx-app-ui", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jx-app-ui", + "forks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jx-app-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jx-app-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jx-app-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jx-app-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jx-app-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jx-app-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jx-app-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jx-app-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jx-app-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jx-app-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jx-app-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jx-app-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jx-app-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jx-app-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/586924987", + "subscription_url": "https://api.github.com/notifications/threads/586924987/subscription" + }, + { + "id": "584984349", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-18T06:15:03Z", + "last_read_at": "2019-09-19T05:33:53Z", + "subject": { + "title": "Bump @storybook/addon-storysource from 5.1.11 to 5.2.0", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/96", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/96", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/584984349", + "subscription_url": "https://api.github.com/notifications/threads/584984349/subscription" + }, + { + "id": "584983517", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-18T06:14:37Z", + "last_read_at": "2019-09-19T05:33:53Z", + "subject": { + "title": "Bump @storybook/addon-info from 5.1.11 to 5.2.0", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/94", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/94", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/584983517", + "subscription_url": "https://api.github.com/notifications/threads/584983517/subscription" + }, + { + "id": "584984000", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-18T06:11:43Z", + "last_read_at": "2019-09-19T05:33:53Z", + "subject": { + "title": "Bump @storybook/react from 5.1.11 to 5.2.0", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/95", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/95", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/584984000", + "subscription_url": "https://api.github.com/notifications/threads/584984000/subscription" + }, + { + "id": "584985850", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-18T06:10:35Z", + "last_read_at": "2019-09-19T05:33:53Z", + "subject": { + "title": "Bump @storybook/addons from 5.1.11 to 5.2.0", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/99", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/99", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/584985850", + "subscription_url": "https://api.github.com/notifications/threads/584985850/subscription" + }, + { + "id": "584984899", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-18T06:09:08Z", + "last_read_at": "2019-09-19T05:33:53Z", + "subject": { + "title": "Bump @storybook/addon-viewport from 5.1.11 to 5.2.0", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/97", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/97", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/584984899", + "subscription_url": "https://api.github.com/notifications/threads/584984899/subscription" + }, + { + "id": "586220976", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-17T21:02:14Z", + "last_read_at": "2019-09-25T00:51:21Z", + "subject": { + "title": "[CSDOCS-95] create documentation landing, add edit page btn, other fixes", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/67", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments/532400771", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/586220976", + "subscription_url": "https://api.github.com/notifications/threads/586220976/subscription" + }, + { + "id": "499691398", + "unread": false, + "reason": "comment", + "updated_at": "2019-09-17T19:26:50Z", + "last_read_at": "2019-09-29T16:11:18Z", + "subject": { + "title": "CSS comments always put on new line.", + "url": "https://api.github.com/repos/beautify-web/js-beautify/issues/1672", + "latest_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/comments/532366102", + "type": "Issue" + }, + "repository": { + "id": 84822, + "node_id": "MDEwOlJlcG9zaXRvcnk4NDgyMg==", + "name": "js-beautify", + "full_name": "beautify-web/js-beautify", + "private": false, + "owner": { + "login": "beautify-web", + "id": 6538164, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjY1MzgxNjQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/6538164?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/beautify-web", + "html_url": "https://github.com/beautify-web", + "followers_url": "https://api.github.com/users/beautify-web/followers", + "following_url": "https://api.github.com/users/beautify-web/following{/other_user}", + "gists_url": "https://api.github.com/users/beautify-web/gists{/gist_id}", + "starred_url": "https://api.github.com/users/beautify-web/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/beautify-web/subscriptions", + "organizations_url": "https://api.github.com/users/beautify-web/orgs", + "repos_url": "https://api.github.com/users/beautify-web/repos", + "events_url": "https://api.github.com/users/beautify-web/events{/privacy}", + "received_events_url": "https://api.github.com/users/beautify-web/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/beautify-web/js-beautify", + "description": "Beautifier for javascript ", + "fork": false, + "url": "https://api.github.com/repos/beautify-web/js-beautify", + "forks_url": "https://api.github.com/repos/beautify-web/js-beautify/forks", + "keys_url": "https://api.github.com/repos/beautify-web/js-beautify/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/beautify-web/js-beautify/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/beautify-web/js-beautify/teams", + "hooks_url": "https://api.github.com/repos/beautify-web/js-beautify/hooks", + "issue_events_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/events{/number}", + "events_url": "https://api.github.com/repos/beautify-web/js-beautify/events", + "assignees_url": "https://api.github.com/repos/beautify-web/js-beautify/assignees{/user}", + "branches_url": "https://api.github.com/repos/beautify-web/js-beautify/branches{/branch}", + "tags_url": "https://api.github.com/repos/beautify-web/js-beautify/tags", + "blobs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/beautify-web/js-beautify/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/beautify-web/js-beautify/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/beautify-web/js-beautify/statuses/{sha}", + "languages_url": "https://api.github.com/repos/beautify-web/js-beautify/languages", + "stargazers_url": "https://api.github.com/repos/beautify-web/js-beautify/stargazers", + "contributors_url": "https://api.github.com/repos/beautify-web/js-beautify/contributors", + "subscribers_url": "https://api.github.com/repos/beautify-web/js-beautify/subscribers", + "subscription_url": "https://api.github.com/repos/beautify-web/js-beautify/subscription", + "commits_url": "https://api.github.com/repos/beautify-web/js-beautify/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/beautify-web/js-beautify/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/beautify-web/js-beautify/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/beautify-web/js-beautify/contents/{+path}", + "compare_url": "https://api.github.com/repos/beautify-web/js-beautify/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/beautify-web/js-beautify/merges", + "archive_url": "https://api.github.com/repos/beautify-web/js-beautify/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/beautify-web/js-beautify/downloads", + "issues_url": "https://api.github.com/repos/beautify-web/js-beautify/issues{/number}", + "pulls_url": "https://api.github.com/repos/beautify-web/js-beautify/pulls{/number}", + "milestones_url": "https://api.github.com/repos/beautify-web/js-beautify/milestones{/number}", + "notifications_url": "https://api.github.com/repos/beautify-web/js-beautify/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/beautify-web/js-beautify/labels{/name}", + "releases_url": "https://api.github.com/repos/beautify-web/js-beautify/releases{/id}", + "deployments_url": "https://api.github.com/repos/beautify-web/js-beautify/deployments" + }, + "url": "https://api.github.com/notifications/threads/499691398", + "subscription_url": "https://api.github.com/notifications/threads/499691398/subscription" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/__files/notifications-5720c49c-c69b-495b-b7e6-b885d88c10b1.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/__files/notifications-5720c49c-c69b-495b-b7e6-b885d88c10b1.json new file mode 100644 index 0000000000..3d06c4481e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/__files/notifications-5720c49c-c69b-495b-b7e6-b885d88c10b1.json @@ -0,0 +1,4102 @@ +[ + { + "id": "558179852", + "unread": false, + "reason": "mention", + "updated_at": "2019-08-08T20:39:15Z", + "last_read_at": "2019-08-08T20:33:53Z", + "subject": { + "title": "Highlight required features", + "url": "https://api.github.com/repos/jenkinsci/jep/pulls/247", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/jep/pulls/247", + "type": "PullRequest" + }, + "repository": { + "id": 103302223, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDMzMDIyMjM=", + "name": "jep", + "full_name": "jenkinsci/jep", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jep", + "description": "Jenkins Enhancement Proposals", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jep", + "forks_url": "https://api.github.com/repos/jenkinsci/jep/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jep/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jep/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jep/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jep/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jep/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jep/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jep/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jep/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jep/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jep/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jep/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jep/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jep/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jep/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jep/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jep/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jep/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jep/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jep/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jep/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jep/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jep/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jep/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jep/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jep/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jep/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jep/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jep/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jep/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jep/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jep/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jep/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jep/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jep/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jep/deployments" + }, + "url": "https://api.github.com/notifications/threads/558179852", + "subscription_url": "https://api.github.com/notifications/threads/558179852/subscription" + }, + { + "id": "558769653", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-08T20:26:24Z", + "last_read_at": "2019-08-08T20:26:03Z", + "subject": { + "title": "Very minor rewording", + "url": "https://api.github.com/repos/bitwiseman/jep/pulls/2", + "latest_comment_url": "https://api.github.com/repos/bitwiseman/jep/pulls/2", + "type": "PullRequest" + }, + "repository": { + "id": 103463062, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDM0NjMwNjI=", + "name": "jep", + "full_name": "bitwiseman/jep", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/jep", + "description": "Jenkins Enhancement Proposals", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/jep", + "forks_url": "https://api.github.com/repos/bitwiseman/jep/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/jep/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/jep/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/jep/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/jep/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/jep/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/jep/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/jep/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/jep/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/jep/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/jep/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/jep/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/jep/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/jep/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/jep/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/jep/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/jep/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/jep/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/jep/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/jep/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/jep/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/jep/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/jep/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/jep/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/jep/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/jep/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/jep/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/jep/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/jep/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/jep/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/jep/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/jep/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/jep/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/jep/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/jep/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/jep/deployments" + }, + "url": "https://api.github.com/notifications/threads/558769653", + "subscription_url": "https://api.github.com/notifications/threads/558769653/subscription" + }, + { + "id": "558060736", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-08T20:03:46Z", + "last_read_at": "2019-08-12T22:37:05Z", + "subject": { + "title": "[NGPIPELINE-610] Adding basic API for Segment integration", + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/pulls/1", + "latest_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/pulls/1", + "type": "PullRequest" + }, + "repository": { + "id": 200867838, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDA4Njc4Mzg=", + "name": "cloudbees-pipeline-analytics-plugin", + "full_name": "cloudbees/cloudbees-pipeline-analytics-plugin", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/cloudbees-pipeline-analytics-plugin", + "description": "PoC Plugin for https://cloudbees.atlassian.net/browse/NGPIPELINE-610", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin", + "forks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/forks", + "keys_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/events", + "assignees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/merges", + "archive_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/558060736", + "subscription_url": "https://api.github.com/notifications/threads/558060736/subscription" + }, + { + "id": "558670106", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-08T17:09:42Z", + "last_read_at": "2019-08-12T22:35:51Z", + "subject": { + "title": "Switching back to previous gitserver image, to avoid transient errors", + "url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/pulls/115", + "latest_comment_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/pulls/115", + "type": "PullRequest" + }, + "repository": { + "id": 133071339, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzMwNzEzMzk=", + "name": "training-admin-fundamentals", + "full_name": "cloudbees/training-admin-fundamentals", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/training-admin-fundamentals", + "description": "Admin Fundamentals Course", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals", + "forks_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/forks", + "keys_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/events", + "assignees_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/merges", + "archive_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/deployments" + }, + "url": "https://api.github.com/notifications/threads/558670106", + "subscription_url": "https://api.github.com/notifications/threads/558670106/subscription" + }, + { + "id": "549600459", + "unread": false, + "reason": "comment", + "updated_at": "2019-08-08T16:38:34Z", + "last_read_at": "2019-08-28T15:40:30Z", + "subject": { + "title": "Update whitelist DefaultGroovyMethods {any, every}", + "url": "https://api.github.com/repos/jenkinsci/script-security-plugin/pulls/260", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/issues/comments/519595552", + "type": "PullRequest" + }, + "repository": { + "id": 17301604, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzMwMTYwNA==", + "name": "script-security-plugin", + "full_name": "jenkinsci/script-security-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/script-security-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/script-security-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/549600459", + "subscription_url": "https://api.github.com/notifications/threads/549600459/subscription" + }, + { + "id": "558477314", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-08T12:38:37Z", + "last_read_at": "2019-08-12T22:34:14Z", + "subject": { + "title": "Fix PLUGIN_NAME in advisories", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2404", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2404", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/558477314", + "subscription_url": "https://api.github.com/notifications/threads/558477314/subscription" + }, + { + "id": "558414503", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-08T12:16:21Z", + "last_read_at": "2019-08-12T22:23:26Z", + "subject": { + "title": "Add changelogs for 2.188 (sort of) and 2.189", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2403", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/comments/312002564", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/558414503", + "subscription_url": "https://api.github.com/notifications/threads/558414503/subscription" + }, + { + "id": "557351045", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-08T08:17:28Z", + "last_read_at": "2019-08-12T22:35:51Z", + "subject": { + "title": "Added newest plugins to CJD 2.176.2.3-rolling - DO NOT MERGE YET", + "url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/pulls/114", + "latest_comment_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/pulls/114", + "type": "PullRequest" + }, + "repository": { + "id": 133071339, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzMwNzEzMzk=", + "name": "training-admin-fundamentals", + "full_name": "cloudbees/training-admin-fundamentals", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/training-admin-fundamentals", + "description": "Admin Fundamentals Course", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals", + "forks_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/forks", + "keys_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/events", + "assignees_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/merges", + "archive_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/deployments" + }, + "url": "https://api.github.com/notifications/threads/557351045", + "subscription_url": "https://api.github.com/notifications/threads/557351045/subscription" + }, + { + "id": "556984329", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-08T06:36:03Z", + "last_read_at": "2019-08-12T22:25:04Z", + "subject": { + "title": "Bump @types/react from 16.8.23 to 16.8.24", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/42", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/42", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/556984329", + "subscription_url": "https://api.github.com/notifications/threads/556984329/subscription" + }, + { + "id": "552574778", + "unread": false, + "reason": "mention", + "updated_at": "2019-08-07T18:43:54Z", + "last_read_at": "2019-08-08T00:37:45Z", + "subject": { + "title": "Bump gmaven-runtime-2.0 from 1.5-jenkins-1 to 1.5-jenkins-3", + "url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/pulls/156", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/pulls/156", + "type": "PullRequest" + }, + "repository": { + "id": 49739417, + "node_id": "MDEwOlJlcG9zaXRvcnk0OTczOTQxNw==", + "name": "jenkins-test-harness", + "full_name": "jenkinsci/jenkins-test-harness", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jenkins-test-harness", + "description": "Unit test framework for Jenkins core and its plugins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness", + "forks_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/deployments" + }, + "url": "https://api.github.com/notifications/threads/552574778", + "subscription_url": "https://api.github.com/notifications/threads/552574778/subscription" + }, + { + "id": "552968147", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-08-07T18:42:35Z", + "last_read_at": "2019-08-08T00:38:09Z", + "subject": { + "title": "Switch from GMaven to GMavenPlus", + "url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/pulls/158", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/pulls/158", + "type": "PullRequest" + }, + "repository": { + "id": 49739417, + "node_id": "MDEwOlJlcG9zaXRvcnk0OTczOTQxNw==", + "name": "jenkins-test-harness", + "full_name": "jenkinsci/jenkins-test-harness", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jenkins-test-harness", + "description": "Unit test framework for Jenkins core and its plugins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness", + "forks_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/deployments" + }, + "url": "https://api.github.com/notifications/threads/552968147", + "subscription_url": "https://api.github.com/notifications/threads/552968147/subscription" + }, + { + "id": "501815725", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-07T17:52:51Z", + "last_read_at": "2019-08-12T22:36:44Z", + "subject": { + "title": "Update to Log4j 2.12.0", + "url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues/42", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues/42", + "type": "Issue" + }, + "repository": { + "id": 159685662, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTk2ODU2NjI=", + "name": "audit-log-plugin", + "full_name": "jenkinsci/audit-log-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/audit-log-plugin", + "description": "Audit logging plugin for Jenkins based on Apache Log4j Audit", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/audit-log-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/501815725", + "subscription_url": "https://api.github.com/notifications/threads/501815725/subscription" + }, + { + "id": "557922825", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-07T17:52:37Z", + "last_read_at": "2019-08-12T22:36:44Z", + "subject": { + "title": "Update to Log4j 2.12.0", + "url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/pulls/58", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/pulls/58", + "type": "PullRequest" + }, + "repository": { + "id": 159685662, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTk2ODU2NjI=", + "name": "audit-log-plugin", + "full_name": "jenkinsci/audit-log-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/audit-log-plugin", + "description": "Audit logging plugin for Jenkins based on Apache Log4j Audit", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/audit-log-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/557922825", + "subscription_url": "https://api.github.com/notifications/threads/557922825/subscription" + }, + { + "id": "557710117", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-07T10:14:37Z", + "last_read_at": "2019-08-08T00:39:48Z", + "subject": { + "title": "Moved jxui app from jxui-frontend repo", + "url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/3", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/3", + "type": "PullRequest" + }, + "repository": { + "id": 183067295, + "node_id": "MDEwOlJlcG9zaXRvcnkxODMwNjcyOTU=", + "name": "jx-app-ui", + "full_name": "cloudbees/jx-app-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jx-app-ui", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jx-app-ui", + "forks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jx-app-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jx-app-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jx-app-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jx-app-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jx-app-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jx-app-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jx-app-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jx-app-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jx-app-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jx-app-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jx-app-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jx-app-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jx-app-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jx-app-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/557710117", + "subscription_url": "https://api.github.com/notifications/threads/557710117/subscription" + }, + { + "id": "557729657", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-07T09:43:24Z", + "last_read_at": "2019-08-08T00:39:49Z", + "subject": { + "title": "[CSDOCS-72] Add Sentry and fix other issues", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/31", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/31", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/557729657", + "subscription_url": "https://api.github.com/notifications/threads/557729657/subscription" + }, + { + "id": "557084200", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-07T05:30:39Z", + "last_read_at": "2019-08-08T00:39:49Z", + "subject": { + "title": "CSDOCS-69 - Use cookie sessions", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/30", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/30", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/557084200", + "subscription_url": "https://api.github.com/notifications/threads/557084200/subscription" + }, + { + "id": "550292253", + "unread": false, + "reason": "state_change", + "updated_at": "2019-08-07T00:44:46Z", + "last_read_at": "2019-08-08T03:36:38Z", + "subject": { + "title": "HTML beautifier breaks when encountering {#", + "url": "https://api.github.com/repos/beautify-web/js-beautify/issues/1692", + "latest_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/comments/518894828", + "type": "Issue" + }, + "repository": { + "id": 84822, + "node_id": "MDEwOlJlcG9zaXRvcnk4NDgyMg==", + "name": "js-beautify", + "full_name": "beautify-web/js-beautify", + "private": false, + "owner": { + "login": "beautify-web", + "id": 6538164, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjY1MzgxNjQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/6538164?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/beautify-web", + "html_url": "https://github.com/beautify-web", + "followers_url": "https://api.github.com/users/beautify-web/followers", + "following_url": "https://api.github.com/users/beautify-web/following{/other_user}", + "gists_url": "https://api.github.com/users/beautify-web/gists{/gist_id}", + "starred_url": "https://api.github.com/users/beautify-web/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/beautify-web/subscriptions", + "organizations_url": "https://api.github.com/users/beautify-web/orgs", + "repos_url": "https://api.github.com/users/beautify-web/repos", + "events_url": "https://api.github.com/users/beautify-web/events{/privacy}", + "received_events_url": "https://api.github.com/users/beautify-web/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/beautify-web/js-beautify", + "description": "Beautifier for javascript ", + "fork": false, + "url": "https://api.github.com/repos/beautify-web/js-beautify", + "forks_url": "https://api.github.com/repos/beautify-web/js-beautify/forks", + "keys_url": "https://api.github.com/repos/beautify-web/js-beautify/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/beautify-web/js-beautify/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/beautify-web/js-beautify/teams", + "hooks_url": "https://api.github.com/repos/beautify-web/js-beautify/hooks", + "issue_events_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/events{/number}", + "events_url": "https://api.github.com/repos/beautify-web/js-beautify/events", + "assignees_url": "https://api.github.com/repos/beautify-web/js-beautify/assignees{/user}", + "branches_url": "https://api.github.com/repos/beautify-web/js-beautify/branches{/branch}", + "tags_url": "https://api.github.com/repos/beautify-web/js-beautify/tags", + "blobs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/beautify-web/js-beautify/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/beautify-web/js-beautify/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/beautify-web/js-beautify/statuses/{sha}", + "languages_url": "https://api.github.com/repos/beautify-web/js-beautify/languages", + "stargazers_url": "https://api.github.com/repos/beautify-web/js-beautify/stargazers", + "contributors_url": "https://api.github.com/repos/beautify-web/js-beautify/contributors", + "subscribers_url": "https://api.github.com/repos/beautify-web/js-beautify/subscribers", + "subscription_url": "https://api.github.com/repos/beautify-web/js-beautify/subscription", + "commits_url": "https://api.github.com/repos/beautify-web/js-beautify/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/beautify-web/js-beautify/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/beautify-web/js-beautify/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/beautify-web/js-beautify/contents/{+path}", + "compare_url": "https://api.github.com/repos/beautify-web/js-beautify/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/beautify-web/js-beautify/merges", + "archive_url": "https://api.github.com/repos/beautify-web/js-beautify/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/beautify-web/js-beautify/downloads", + "issues_url": "https://api.github.com/repos/beautify-web/js-beautify/issues{/number}", + "pulls_url": "https://api.github.com/repos/beautify-web/js-beautify/pulls{/number}", + "milestones_url": "https://api.github.com/repos/beautify-web/js-beautify/milestones{/number}", + "notifications_url": "https://api.github.com/repos/beautify-web/js-beautify/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/beautify-web/js-beautify/labels{/name}", + "releases_url": "https://api.github.com/repos/beautify-web/js-beautify/releases{/id}", + "deployments_url": "https://api.github.com/repos/beautify-web/js-beautify/deployments" + }, + "url": "https://api.github.com/notifications/threads/550292253", + "subscription_url": "https://api.github.com/notifications/threads/550292253/subscription" + }, + { + "id": "557267766", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-06T19:40:35Z", + "last_read_at": "2019-09-11T05:50:31Z", + "subject": { + "title": "[JENKINS-58817]Creating a startup argument", + "url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls/313", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls/comments/311240600", + "type": "PullRequest" + }, + "repository": { + "id": 55543225, + "node_id": "MDEwOlJlcG9zaXRvcnk1NTU0MzIyNQ==", + "name": "workflow-cps-plugin", + "full_name": "jenkinsci/workflow-cps-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/workflow-cps-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/557267766", + "subscription_url": "https://api.github.com/notifications/threads/557267766/subscription" + }, + { + "id": "455119632", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-06T19:15:18Z", + "last_read_at": "2019-08-08T04:02:42Z", + "subject": { + "title": "Bump slf4j-api from 1.7.5 to 1.7.26", + "url": "https://api.github.com/repos/bwalding/jenkins-license-generator/pulls/12", + "latest_comment_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/pulls/12", + "type": "PullRequest" + }, + "repository": { + "id": 83546845, + "node_id": "MDEwOlJlcG9zaXRvcnk4MzU0Njg0NQ==", + "name": "jenkins-license-generator", + "full_name": "bwalding/jenkins-license-generator", + "private": true, + "owner": { + "login": "bwalding", + "id": 47446, + "node_id": "MDQ6VXNlcjQ3NDQ2", + "avatar_url": "https://avatars2.githubusercontent.com/u/47446?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bwalding", + "html_url": "https://github.com/bwalding", + "followers_url": "https://api.github.com/users/bwalding/followers", + "following_url": "https://api.github.com/users/bwalding/following{/other_user}", + "gists_url": "https://api.github.com/users/bwalding/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bwalding/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bwalding/subscriptions", + "organizations_url": "https://api.github.com/users/bwalding/orgs", + "repos_url": "https://api.github.com/users/bwalding/repos", + "events_url": "https://api.github.com/users/bwalding/events{/privacy}", + "received_events_url": "https://api.github.com/users/bwalding/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bwalding/jenkins-license-generator", + "description": "Webapp to manage/generates the licenses and trials for JEbC and JOC", + "fork": true, + "url": "https://api.github.com/repos/bwalding/jenkins-license-generator", + "forks_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/forks", + "keys_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/teams", + "hooks_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/hooks", + "issue_events_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/issues/events{/number}", + "events_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/events", + "assignees_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/assignees{/user}", + "branches_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/branches{/branch}", + "tags_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/tags", + "blobs_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/languages", + "stargazers_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/stargazers", + "contributors_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/contributors", + "subscribers_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/subscribers", + "subscription_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/subscription", + "commits_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/contents/{+path}", + "compare_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/merges", + "archive_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/downloads", + "issues_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/issues{/number}", + "pulls_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/labels{/name}", + "releases_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/releases{/id}", + "deployments_url": "https://api.github.com/repos/bwalding/jenkins-license-generator/deployments" + }, + "url": "https://api.github.com/notifications/threads/455119632", + "subscription_url": "https://api.github.com/notifications/threads/455119632/subscription" + }, + { + "id": "554139444", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-06T18:12:45Z", + "last_read_at": "2019-09-11T05:50:31Z", + "subject": { + "title": "Add regression tests for SECURITY-1465", + "url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls/310", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls/310", + "type": "PullRequest" + }, + "repository": { + "id": 55543225, + "node_id": "MDEwOlJlcG9zaXRvcnk1NTU0MzIyNQ==", + "name": "workflow-cps-plugin", + "full_name": "jenkinsci/workflow-cps-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/workflow-cps-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/554139444", + "subscription_url": "https://api.github.com/notifications/threads/554139444/subscription" + }, + { + "id": "557277024", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-08-06T16:49:03Z", + "last_read_at": "2019-08-06T17:28:53Z", + "subject": { + "title": "Let's merge matrix!", + "url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/pulls/348", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/pulls/348", + "type": "PullRequest" + }, + "repository": { + "id": 66677338, + "node_id": "MDEwOlJlcG9zaXRvcnk2NjY3NzMzOA==", + "name": "pipeline-model-definition-plugin", + "full_name": "jenkinsci/pipeline-model-definition-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pipeline-model-definition-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/557277024", + "subscription_url": "https://api.github.com/notifications/threads/557277024/subscription" + }, + { + "id": "557276236", + "unread": false, + "reason": "mention", + "updated_at": "2019-08-06T15:09:44Z", + "last_read_at": "2019-08-06T16:00:23Z", + "subject": { + "title": "Add Liam Newman to Declarative", + "url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater/pulls/1248", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater/pulls/1248", + "type": "PullRequest" + }, + "repository": { + "id": 65755485, + "node_id": "MDEwOlJlcG9zaXRvcnk2NTc1NTQ4NQ==", + "name": "repository-permissions-updater", + "full_name": "jenkins-infra/repository-permissions-updater", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/repository-permissions-updater", + "description": "Artifactory permissions synchronization tool and data set", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater", + "forks_url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater/deployments" + }, + "url": "https://api.github.com/notifications/threads/557276236", + "subscription_url": "https://api.github.com/notifications/threads/557276236/subscription" + }, + { + "id": "556240496", + "unread": false, + "reason": "state_change", + "updated_at": "2019-08-06T14:57:52Z", + "last_read_at": "2019-08-06T15:48:40Z", + "subject": { + "title": "Adding validation and tests", + "url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/pulls/347", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/pulls/347", + "type": "PullRequest" + }, + "repository": { + "id": 66677338, + "node_id": "MDEwOlJlcG9zaXRvcnk2NjY3NzMzOA==", + "name": "pipeline-model-definition-plugin", + "full_name": "jenkinsci/pipeline-model-definition-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pipeline-model-definition-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/556240496", + "subscription_url": "https://api.github.com/notifications/threads/556240496/subscription" + }, + { + "id": "555051459", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-06T13:48:37Z", + "last_read_at": "2019-08-12T22:36:12Z", + "subject": { + "title": "Updating these scripts to handle the change to monthly based entries", + "url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/pulls/4", + "latest_comment_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/pulls/4", + "type": "PullRequest" + }, + "repository": { + "id": 183626073, + "node_id": "MDEwOlJlcG9zaXRvcnkxODM2MjYwNzM=", + "name": "user-activity-monitoring-scripts", + "full_name": "cloudbees/user-activity-monitoring-scripts", + "private": false, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/user-activity-monitoring-scripts", + "description": "Scripts for the User Activity Monitoring plugin", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts", + "forks_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/forks", + "keys_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/events", + "assignees_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/merges", + "archive_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/deployments" + }, + "url": "https://api.github.com/notifications/threads/555051459", + "subscription_url": "https://api.github.com/notifications/threads/555051459/subscription" + }, + { + "id": "552910490", + "unread": false, + "reason": "author", + "updated_at": "2019-08-06T08:18:19Z", + "last_read_at": "2019-08-06T13:58:05Z", + "subject": { + "title": "[NGPIPELINE-36] Shared library folder-scoped credentials", + "url": "https://api.github.com/repos/cloudbees/unified-release/pulls/1369", + "latest_comment_url": null, + "type": "PullRequest" + }, + "repository": { + "id": 78131017, + "node_id": "MDEwOlJlcG9zaXRvcnk3ODEzMTAxNw==", + "name": "unified-release", + "full_name": "cloudbees/unified-release", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/unified-release", + "description": "Unified Release Repository", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/unified-release", + "forks_url": "https://api.github.com/repos/cloudbees/unified-release/forks", + "keys_url": "https://api.github.com/repos/cloudbees/unified-release/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/unified-release/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/unified-release/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/unified-release/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/unified-release/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/unified-release/events", + "assignees_url": "https://api.github.com/repos/cloudbees/unified-release/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/unified-release/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/unified-release/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/unified-release/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/unified-release/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/unified-release/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/unified-release/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/unified-release/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/unified-release/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/unified-release/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/unified-release/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/unified-release/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/unified-release/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/unified-release/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/unified-release/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/unified-release/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/unified-release/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/unified-release/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/unified-release/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/unified-release/merges", + "archive_url": "https://api.github.com/repos/cloudbees/unified-release/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/unified-release/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/unified-release/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/unified-release/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/unified-release/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/unified-release/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/unified-release/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/unified-release/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/unified-release/deployments" + }, + "url": "https://api.github.com/notifications/threads/552910490", + "subscription_url": "https://api.github.com/notifications/threads/552910490/subscription" + }, + { + "id": "557042427", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-06T08:28:02Z", + "last_read_at": "2019-08-08T00:39:49Z", + "subject": { + "title": "CSDOCS-69 - redirect loop", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/29", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/29", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/557042427", + "subscription_url": "https://api.github.com/notifications/threads/557042427/subscription" + }, + { + "id": "557035077", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-06T08:18:44Z", + "last_read_at": "2019-08-08T00:39:49Z", + "subject": { + "title": "CSDOCS-69 - Setup proxy handling", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/28", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/28", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/557035077", + "subscription_url": "https://api.github.com/notifications/threads/557035077/subscription" + }, + { + "id": "557003371", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-06T08:02:54Z", + "last_read_at": "2019-08-08T00:39:49Z", + "subject": { + "title": "Add user info to the api/info page", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/27", + "latest_comment_url": null, + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/557003371", + "subscription_url": "https://api.github.com/notifications/threads/557003371/subscription" + }, + { + "id": "556800692", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-06T01:37:04Z", + "last_read_at": "2019-08-08T00:39:49Z", + "subject": { + "title": "CSDOCS-69 - Copy in the tsconfig.base.json ", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/26", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments/518461331", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/556800692", + "subscription_url": "https://api.github.com/notifications/threads/556800692/subscription" + }, + { + "id": "556297678", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-06T00:44:59Z", + "last_read_at": "2019-08-08T00:39:49Z", + "subject": { + "title": "Add auth0 secured routes", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/25", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/25", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/556297678", + "subscription_url": "https://api.github.com/notifications/threads/556297678/subscription" + }, + { + "id": "551148783", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-05T19:00:37Z", + "last_read_at": "2019-08-05T20:37:05Z", + "subject": { + "title": "Bump lint-staged from 9.2.0 to 9.2.1", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/33", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/33", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/551148783", + "subscription_url": "https://api.github.com/notifications/threads/551148783/subscription" + }, + { + "id": "553192845", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-05T18:52:46Z", + "last_read_at": "2019-08-05T20:37:05Z", + "subject": { + "title": "Bump husky from 3.0.1 to 3.0.2", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/36", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/36", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/553192845", + "subscription_url": "https://api.github.com/notifications/threads/553192845/subscription" + }, + { + "id": "554517523", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-05T18:52:33Z", + "last_read_at": "2019-08-05T20:37:05Z", + "subject": { + "title": "Bump @storybook/addon-storysource from 5.1.9 to 5.1.10", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/37", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/37", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/554517523", + "subscription_url": "https://api.github.com/notifications/threads/554517523/subscription" + }, + { + "id": "554517735", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-05T18:52:13Z", + "last_read_at": "2019-08-05T20:37:05Z", + "subject": { + "title": "Bump @storybook/addon-info from 5.1.9 to 5.1.10", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/38", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/38", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/554517735", + "subscription_url": "https://api.github.com/notifications/threads/554517735/subscription" + }, + { + "id": "554517895", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-05T18:51:59Z", + "last_read_at": "2019-08-05T20:37:05Z", + "subject": { + "title": "Bump @storybook/addon-viewport from 5.1.9 to 5.1.10", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/39", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/39", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/554517895", + "subscription_url": "https://api.github.com/notifications/threads/554517895/subscription" + }, + { + "id": "550424853", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-05T18:50:44Z", + "last_read_at": "2019-08-05T20:37:05Z", + "subject": { + "title": "Bump @types/react-dom from 16.8.4 to 16.8.5", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/32", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/32", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/550424853", + "subscription_url": "https://api.github.com/notifications/threads/550424853/subscription" + }, + { + "id": "549669462", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-05T18:50:24Z", + "last_read_at": "2019-08-05T20:37:05Z", + "subject": { + "title": "Bump eslint-plugin-react from 7.14.2 to 7.14.3", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/30", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/30", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/549669462", + "subscription_url": "https://api.github.com/notifications/threads/549669462/subscription" + }, + { + "id": "548963962", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-05T18:50:07Z", + "last_read_at": "2019-08-05T20:37:05Z", + "subject": { + "title": "Bump @typescript-eslint/parser from 1.12.0 to 1.13.0", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/29", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/29", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/548963962", + "subscription_url": "https://api.github.com/notifications/threads/548963962/subscription" + }, + { + "id": "548963645", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-05T18:49:45Z", + "last_read_at": "2019-08-05T20:37:05Z", + "subject": { + "title": "Bump @typescript-eslint/eslint-plugin from 1.12.0 to 1.13.0", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/28", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/28", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/548963645", + "subscription_url": "https://api.github.com/notifications/threads/548963645/subscription" + }, + { + "id": "540379763", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-05T18:48:56Z", + "last_read_at": "2019-08-05T20:37:05Z", + "subject": { + "title": "WIP - popovers", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/18", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/18", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/540379763", + "subscription_url": "https://api.github.com/notifications/threads/540379763/subscription" + }, + { + "id": "551806217", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-05T07:30:47Z", + "last_read_at": "2019-08-05T20:37:05Z", + "subject": { + "title": "Bump webpack from 4.36.1 to 4.38.0", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/34", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/34", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/551806217", + "subscription_url": "https://api.github.com/notifications/threads/551806217/subscription" + }, + { + "id": "492874851", + "unread": false, + "reason": "mention", + "updated_at": "2019-08-04T10:17:31Z", + "last_read_at": "2019-08-04T15:39:45Z", + "subject": { + "title": "JENKINS-57344: Whitelist requests for some java.io and other misc calls", + "url": "https://api.github.com/repos/jenkinsci/script-security-plugin/pulls/249", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/issues/comments/517990967", + "type": "PullRequest" + }, + "repository": { + "id": 17301604, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzMwMTYwNA==", + "name": "script-security-plugin", + "full_name": "jenkinsci/script-security-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/script-security-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/script-security-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/492874851", + "subscription_url": "https://api.github.com/notifications/threads/492874851/subscription" + }, + { + "id": "314147988", + "unread": false, + "reason": "author", + "updated_at": "2019-08-03T19:28:15Z", + "last_read_at": "2019-08-04T15:39:46Z", + "subject": { + "title": "Move all user facing instuctions to jenkins-x.io ", + "url": "https://api.github.com/repos/jenkins-x/jx/issues/415", + "latest_comment_url": "https://api.github.com/repos/jenkins-x/jx/issues/comments/517948886", + "type": "Issue" + }, + "repository": { + "id": 116400734, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTY0MDA3MzQ=", + "name": "jx", + "full_name": "jenkins-x/jx", + "private": false, + "owner": { + "login": "jenkins-x", + "id": 34566050, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjM0NTY2MDUw", + "avatar_url": "https://avatars0.githubusercontent.com/u/34566050?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-x", + "html_url": "https://github.com/jenkins-x", + "followers_url": "https://api.github.com/users/jenkins-x/followers", + "following_url": "https://api.github.com/users/jenkins-x/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-x/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-x/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-x/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-x/orgs", + "repos_url": "https://api.github.com/users/jenkins-x/repos", + "events_url": "https://api.github.com/users/jenkins-x/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-x/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-x/jx", + "description": "Jenkins X provides automated CI+CD for Kubernetes with Preview Environments on Pull Requests using Jenkins, Tekton, Knative, Prow, Skaffold and Helm", + "fork": false, + "url": "https://api.github.com/repos/jenkins-x/jx", + "forks_url": "https://api.github.com/repos/jenkins-x/jx/forks", + "keys_url": "https://api.github.com/repos/jenkins-x/jx/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-x/jx/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-x/jx/teams", + "hooks_url": "https://api.github.com/repos/jenkins-x/jx/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-x/jx/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-x/jx/events", + "assignees_url": "https://api.github.com/repos/jenkins-x/jx/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-x/jx/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-x/jx/tags", + "blobs_url": "https://api.github.com/repos/jenkins-x/jx/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-x/jx/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-x/jx/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-x/jx/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-x/jx/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-x/jx/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-x/jx/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-x/jx/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-x/jx/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-x/jx/subscription", + "commits_url": "https://api.github.com/repos/jenkins-x/jx/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-x/jx/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-x/jx/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-x/jx/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-x/jx/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-x/jx/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-x/jx/merges", + "archive_url": "https://api.github.com/repos/jenkins-x/jx/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-x/jx/downloads", + "issues_url": "https://api.github.com/repos/jenkins-x/jx/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-x/jx/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-x/jx/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-x/jx/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-x/jx/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-x/jx/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-x/jx/deployments" + }, + "url": "https://api.github.com/notifications/threads/314147988", + "subscription_url": "https://api.github.com/notifications/threads/314147988/subscription" + }, + { + "id": "551992584", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-03T15:32:12Z", + "last_read_at": "2019-08-05T20:37:31Z", + "subject": { + "title": "Updated pipeline syntax for the lock resource", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2391", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2391", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/551992584", + "subscription_url": "https://api.github.com/notifications/threads/551992584/subscription" + }, + { + "id": "552381466", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-03T15:07:45Z", + "last_read_at": "2019-08-05T20:37:31Z", + "subject": { + "title": "Corrected the description in section Building containers", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2393", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/comments/309340973", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/552381466", + "subscription_url": "https://api.github.com/notifications/threads/552381466/subscription" + }, + { + "id": "555674841", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-03T15:05:55Z", + "last_read_at": "2019-08-05T20:37:31Z", + "subject": { + "title": "Added community bridge JCasc Dev-Tools project page.", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2399", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments/517929946", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/555674841", + "subscription_url": "https://api.github.com/notifications/threads/555674841/subscription" + }, + { + "id": "550373881", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-02T18:13:51Z", + "last_read_at": "2019-08-02T18:13:23Z", + "subject": { + "title": "[JENKINS-54322] enable markStageSkippedForConditional within the scripted", + "url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/pulls/346", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/pulls/346", + "type": "PullRequest" + }, + "repository": { + "id": 66677338, + "node_id": "MDEwOlJlcG9zaXRvcnk2NjY3NzMzOA==", + "name": "pipeline-model-definition-plugin", + "full_name": "jenkinsci/pipeline-model-definition-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pipeline-model-definition-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/550373881", + "subscription_url": "https://api.github.com/notifications/threads/550373881/subscription" + }, + { + "id": "555534535", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-02T13:27:33Z", + "last_read_at": "2019-08-05T20:37:31Z", + "subject": { + "title": "GSoC: Update project page for Role Strategy", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2398", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2398", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/555534535", + "subscription_url": "https://api.github.com/notifications/threads/555534535/subscription" + }, + { + "id": "555450040", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-02T08:24:11Z", + "last_read_at": "2019-08-08T00:39:49Z", + "subject": { + "title": "re-add default antora doc styles", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/24", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/24", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/555450040", + "subscription_url": "https://api.github.com/notifications/threads/555450040/subscription" + }, + { + "id": "555427790", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-02T07:34:58Z", + "last_read_at": "2019-08-08T00:39:49Z", + "subject": { + "title": "Move tsconfig.base.json to the packages dir", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/23", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/23", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/555427790", + "subscription_url": "https://api.github.com/notifications/threads/555427790/subscription" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/__files/notifications-6dea5253-3aa2-4484-b97a-effcad5c6ebd.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/__files/notifications-6dea5253-3aa2-4484-b97a-effcad5c6ebd.json new file mode 100644 index 0000000000..0dea4a772d --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/__files/notifications-6dea5253-3aa2-4484-b97a-effcad5c6ebd.json @@ -0,0 +1,4102 @@ +[ + { + "id": "538724290", + "unread": false, + "reason": "mention", + "updated_at": "2019-10-22T09:35:07Z", + "last_read_at": "2019-10-23T01:19:40Z", + "subject": { + "title": "Add support for draft pull requests", + "url": "https://api.github.com/repos/github-api/github-api/pulls/525", + "latest_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments/544881129", + "type": "PullRequest" + }, + "repository": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments" + }, + "url": "https://api.github.com/notifications/threads/538724290", + "subscription_url": "https://api.github.com/notifications/threads/538724290/subscription" + }, + { + "id": "611019943", + "unread": true, + "reason": "review_requested", + "updated_at": "2019-10-22T08:20:26Z", + "last_read_at": null, + "subject": { + "title": "Fix the Plugin Migration guide link in the blogpost", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2593", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2593", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/611019943", + "subscription_url": "https://api.github.com/notifications/threads/611019943/subscription" + }, + { + "id": "611035916", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-23T01:25:31Z", + "last_read_at": "2019-10-23T01:21:16Z", + "subject": { + "title": "Double indentation when combining fetch with an options argument, violating ESLint's indentation rule", + "url": "https://api.github.com/repos/beautify-web/js-beautify/issues/1724", + "latest_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/comments/545222453", + "type": "Issue" + }, + "repository": { + "id": 84822, + "node_id": "MDEwOlJlcG9zaXRvcnk4NDgyMg==", + "name": "js-beautify", + "full_name": "beautify-web/js-beautify", + "private": false, + "owner": { + "login": "beautify-web", + "id": 6538164, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjY1MzgxNjQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/6538164?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/beautify-web", + "html_url": "https://github.com/beautify-web", + "followers_url": "https://api.github.com/users/beautify-web/followers", + "following_url": "https://api.github.com/users/beautify-web/following{/other_user}", + "gists_url": "https://api.github.com/users/beautify-web/gists{/gist_id}", + "starred_url": "https://api.github.com/users/beautify-web/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/beautify-web/subscriptions", + "organizations_url": "https://api.github.com/users/beautify-web/orgs", + "repos_url": "https://api.github.com/users/beautify-web/repos", + "events_url": "https://api.github.com/users/beautify-web/events{/privacy}", + "received_events_url": "https://api.github.com/users/beautify-web/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/beautify-web/js-beautify", + "description": "Beautifier for javascript ", + "fork": false, + "url": "https://api.github.com/repos/beautify-web/js-beautify", + "forks_url": "https://api.github.com/repos/beautify-web/js-beautify/forks", + "keys_url": "https://api.github.com/repos/beautify-web/js-beautify/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/beautify-web/js-beautify/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/beautify-web/js-beautify/teams", + "hooks_url": "https://api.github.com/repos/beautify-web/js-beautify/hooks", + "issue_events_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/events{/number}", + "events_url": "https://api.github.com/repos/beautify-web/js-beautify/events", + "assignees_url": "https://api.github.com/repos/beautify-web/js-beautify/assignees{/user}", + "branches_url": "https://api.github.com/repos/beautify-web/js-beautify/branches{/branch}", + "tags_url": "https://api.github.com/repos/beautify-web/js-beautify/tags", + "blobs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/beautify-web/js-beautify/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/beautify-web/js-beautify/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/beautify-web/js-beautify/statuses/{sha}", + "languages_url": "https://api.github.com/repos/beautify-web/js-beautify/languages", + "stargazers_url": "https://api.github.com/repos/beautify-web/js-beautify/stargazers", + "contributors_url": "https://api.github.com/repos/beautify-web/js-beautify/contributors", + "subscribers_url": "https://api.github.com/repos/beautify-web/js-beautify/subscribers", + "subscription_url": "https://api.github.com/repos/beautify-web/js-beautify/subscription", + "commits_url": "https://api.github.com/repos/beautify-web/js-beautify/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/beautify-web/js-beautify/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/beautify-web/js-beautify/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/beautify-web/js-beautify/contents/{+path}", + "compare_url": "https://api.github.com/repos/beautify-web/js-beautify/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/beautify-web/js-beautify/merges", + "archive_url": "https://api.github.com/repos/beautify-web/js-beautify/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/beautify-web/js-beautify/downloads", + "issues_url": "https://api.github.com/repos/beautify-web/js-beautify/issues{/number}", + "pulls_url": "https://api.github.com/repos/beautify-web/js-beautify/pulls{/number}", + "milestones_url": "https://api.github.com/repos/beautify-web/js-beautify/milestones{/number}", + "notifications_url": "https://api.github.com/repos/beautify-web/js-beautify/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/beautify-web/js-beautify/labels{/name}", + "releases_url": "https://api.github.com/repos/beautify-web/js-beautify/releases{/id}", + "deployments_url": "https://api.github.com/repos/beautify-web/js-beautify/deployments" + }, + "url": "https://api.github.com/notifications/threads/611035916", + "subscription_url": "https://api.github.com/notifications/threads/611035916/subscription" + }, + { + "id": "610711398", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-22T07:21:16Z", + "last_read_at": "2019-10-25T01:12:20Z", + "subject": { + "title": "[PH-988] As a user I would like to see the GitHub Organization column on linking repository modal", + "url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/17", + "latest_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/17", + "type": "PullRequest" + }, + "repository": { + "id": 215874575, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTU4NzQ1NzU=", + "name": "sdm-ui", + "full_name": "cloudbees/sdm-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/sdm-ui", + "description": "SDM UI repository", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/sdm-ui", + "forks_url": "https://api.github.com/repos/cloudbees/sdm-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/sdm-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/sdm-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/sdm-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/sdm-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/sdm-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/sdm-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/sdm-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/sdm-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/sdm-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/sdm-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/sdm-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/sdm-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/sdm-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/sdm-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/sdm-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/sdm-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/sdm-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/sdm-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/sdm-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/sdm-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/sdm-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/sdm-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/610711398", + "subscription_url": "https://api.github.com/notifications/threads/610711398/subscription" + }, + { + "id": "610915832", + "unread": true, + "reason": "review_requested", + "updated_at": "2019-10-22T03:00:09Z", + "last_read_at": null, + "subject": { + "title": "\"Jenkins Performance\" blog post", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2591", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2591", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/610915832", + "subscription_url": "https://api.github.com/notifications/threads/610915832/subscription" + }, + { + "id": "610917736", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-22T02:55:36Z", + "last_read_at": "2019-10-25T01:12:20Z", + "subject": { + "title": "Circular deps lost commit", + "url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/20", + "latest_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/20", + "type": "PullRequest" + }, + "repository": { + "id": 215874575, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTU4NzQ1NzU=", + "name": "sdm-ui", + "full_name": "cloudbees/sdm-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/sdm-ui", + "description": "SDM UI repository", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/sdm-ui", + "forks_url": "https://api.github.com/repos/cloudbees/sdm-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/sdm-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/sdm-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/sdm-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/sdm-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/sdm-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/sdm-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/sdm-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/sdm-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/sdm-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/sdm-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/sdm-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/sdm-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/sdm-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/sdm-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/sdm-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/sdm-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/sdm-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/sdm-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/sdm-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/sdm-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/sdm-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/sdm-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/610917736", + "subscription_url": "https://api.github.com/notifications/threads/610917736/subscription" + }, + { + "id": "610916177", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-22T02:54:14Z", + "last_read_at": "2019-10-25T01:12:20Z", + "subject": { + "title": "Bug/fix eslint erros r2", + "url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/19", + "latest_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/19", + "type": "PullRequest" + }, + "repository": { + "id": 215874575, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTU4NzQ1NzU=", + "name": "sdm-ui", + "full_name": "cloudbees/sdm-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/sdm-ui", + "description": "SDM UI repository", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/sdm-ui", + "forks_url": "https://api.github.com/repos/cloudbees/sdm-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/sdm-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/sdm-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/sdm-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/sdm-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/sdm-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/sdm-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/sdm-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/sdm-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/sdm-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/sdm-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/sdm-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/sdm-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/sdm-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/sdm-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/sdm-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/sdm-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/sdm-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/sdm-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/sdm-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/sdm-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/sdm-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/sdm-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/610916177", + "subscription_url": "https://api.github.com/notifications/threads/610916177/subscription" + }, + { + "id": "610915537", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-22T02:51:22Z", + "last_read_at": "2019-10-23T01:20:51Z", + "subject": { + "title": "Questions about parenthesis formatting", + "url": "https://api.github.com/repos/beautify-web/js-beautify/issues/1723", + "latest_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/comments/544786049", + "type": "Issue" + }, + "repository": { + "id": 84822, + "node_id": "MDEwOlJlcG9zaXRvcnk4NDgyMg==", + "name": "js-beautify", + "full_name": "beautify-web/js-beautify", + "private": false, + "owner": { + "login": "beautify-web", + "id": 6538164, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjY1MzgxNjQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/6538164?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/beautify-web", + "html_url": "https://github.com/beautify-web", + "followers_url": "https://api.github.com/users/beautify-web/followers", + "following_url": "https://api.github.com/users/beautify-web/following{/other_user}", + "gists_url": "https://api.github.com/users/beautify-web/gists{/gist_id}", + "starred_url": "https://api.github.com/users/beautify-web/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/beautify-web/subscriptions", + "organizations_url": "https://api.github.com/users/beautify-web/orgs", + "repos_url": "https://api.github.com/users/beautify-web/repos", + "events_url": "https://api.github.com/users/beautify-web/events{/privacy}", + "received_events_url": "https://api.github.com/users/beautify-web/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/beautify-web/js-beautify", + "description": "Beautifier for javascript ", + "fork": false, + "url": "https://api.github.com/repos/beautify-web/js-beautify", + "forks_url": "https://api.github.com/repos/beautify-web/js-beautify/forks", + "keys_url": "https://api.github.com/repos/beautify-web/js-beautify/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/beautify-web/js-beautify/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/beautify-web/js-beautify/teams", + "hooks_url": "https://api.github.com/repos/beautify-web/js-beautify/hooks", + "issue_events_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/events{/number}", + "events_url": "https://api.github.com/repos/beautify-web/js-beautify/events", + "assignees_url": "https://api.github.com/repos/beautify-web/js-beautify/assignees{/user}", + "branches_url": "https://api.github.com/repos/beautify-web/js-beautify/branches{/branch}", + "tags_url": "https://api.github.com/repos/beautify-web/js-beautify/tags", + "blobs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/beautify-web/js-beautify/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/beautify-web/js-beautify/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/beautify-web/js-beautify/statuses/{sha}", + "languages_url": "https://api.github.com/repos/beautify-web/js-beautify/languages", + "stargazers_url": "https://api.github.com/repos/beautify-web/js-beautify/stargazers", + "contributors_url": "https://api.github.com/repos/beautify-web/js-beautify/contributors", + "subscribers_url": "https://api.github.com/repos/beautify-web/js-beautify/subscribers", + "subscription_url": "https://api.github.com/repos/beautify-web/js-beautify/subscription", + "commits_url": "https://api.github.com/repos/beautify-web/js-beautify/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/beautify-web/js-beautify/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/beautify-web/js-beautify/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/beautify-web/js-beautify/contents/{+path}", + "compare_url": "https://api.github.com/repos/beautify-web/js-beautify/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/beautify-web/js-beautify/merges", + "archive_url": "https://api.github.com/repos/beautify-web/js-beautify/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/beautify-web/js-beautify/downloads", + "issues_url": "https://api.github.com/repos/beautify-web/js-beautify/issues{/number}", + "pulls_url": "https://api.github.com/repos/beautify-web/js-beautify/pulls{/number}", + "milestones_url": "https://api.github.com/repos/beautify-web/js-beautify/milestones{/number}", + "notifications_url": "https://api.github.com/repos/beautify-web/js-beautify/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/beautify-web/js-beautify/labels{/name}", + "releases_url": "https://api.github.com/repos/beautify-web/js-beautify/releases{/id}", + "deployments_url": "https://api.github.com/repos/beautify-web/js-beautify/deployments" + }, + "url": "https://api.github.com/notifications/threads/610915537", + "subscription_url": "https://api.github.com/notifications/threads/610915537/subscription" + }, + { + "id": "610749231", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-22T02:42:31Z", + "last_read_at": "2019-10-25T01:12:20Z", + "subject": { + "title": "Fix eslint for integrations", + "url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/18", + "latest_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/comments/337313969", + "type": "PullRequest" + }, + "repository": { + "id": 215874575, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTU4NzQ1NzU=", + "name": "sdm-ui", + "full_name": "cloudbees/sdm-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/sdm-ui", + "description": "SDM UI repository", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/sdm-ui", + "forks_url": "https://api.github.com/repos/cloudbees/sdm-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/sdm-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/sdm-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/sdm-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/sdm-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/sdm-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/sdm-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/sdm-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/sdm-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/sdm-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/sdm-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/sdm-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/sdm-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/sdm-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/sdm-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/sdm-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/sdm-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/sdm-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/sdm-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/sdm-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/sdm-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/sdm-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/sdm-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/610749231", + "subscription_url": "https://api.github.com/notifications/threads/610749231/subscription" + }, + { + "id": "599955115", + "unread": true, + "reason": "mention", + "updated_at": "2019-10-22T01:11:30Z", + "last_read_at": "2019-10-08T02:33:36Z", + "subject": { + "title": "New Declarative questions", + "url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/pulls/60", + "latest_comment_url": null, + "type": "PullRequest" + }, + "repository": { + "id": 117846164, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTc4NDYxNjQ=", + "name": "jenkins-certification-exam", + "full_name": "cloudbees/jenkins-certification-exam", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jenkins-certification-exam", + "description": "Jenkins Certification Exam Questions", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam", + "forks_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/deployments" + }, + "url": "https://api.github.com/notifications/threads/599955115", + "subscription_url": "https://api.github.com/notifications/threads/599955115/subscription" + }, + { + "id": "547748404", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-22T00:14:11Z", + "last_read_at": "2019-08-30T14:58:46Z", + "subject": { + "title": "Fix argument for setInterval function", + "url": "https://api.github.com/repos/cloudbees/jenkins-scripts/pulls/102", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/pulls/102", + "type": "PullRequest" + }, + "repository": { + "id": 49162083, + "node_id": "MDEwOlJlcG9zaXRvcnk0OTE2MjA4Mw==", + "name": "jenkins-scripts", + "full_name": "cloudbees/jenkins-scripts", + "private": false, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jenkins-scripts", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jenkins-scripts", + "forks_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/deployments" + }, + "url": "https://api.github.com/notifications/threads/547748404", + "subscription_url": "https://api.github.com/notifications/threads/547748404/subscription" + }, + { + "id": "608993447", + "unread": true, + "reason": "review_requested", + "updated_at": "2019-10-22T00:03:06Z", + "last_read_at": null, + "subject": { + "title": "\"Thinking about Jenkins Security\" blog post", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2576", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2576", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/608993447", + "subscription_url": "https://api.github.com/notifications/threads/608993447/subscription" + }, + { + "id": "610649588", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-21T23:43:44Z", + "last_read_at": "2019-10-25T01:12:20Z", + "subject": { + "title": "fix: Buttonize", + "url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/16", + "latest_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/16", + "type": "PullRequest" + }, + "repository": { + "id": 215874575, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTU4NzQ1NzU=", + "name": "sdm-ui", + "full_name": "cloudbees/sdm-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/sdm-ui", + "description": "SDM UI repository", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/sdm-ui", + "forks_url": "https://api.github.com/repos/cloudbees/sdm-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/sdm-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/sdm-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/sdm-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/sdm-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/sdm-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/sdm-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/sdm-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/sdm-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/sdm-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/sdm-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/sdm-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/sdm-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/sdm-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/sdm-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/sdm-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/sdm-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/sdm-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/sdm-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/sdm-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/sdm-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/sdm-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/sdm-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/610649588", + "subscription_url": "https://api.github.com/notifications/threads/610649588/subscription" + }, + { + "id": "610511905", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-21T21:46:58Z", + "last_read_at": "2019-10-25T01:12:20Z", + "subject": { + "title": "fix: Add buttonize utility", + "url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/14", + "latest_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/comments/337255280", + "type": "PullRequest" + }, + "repository": { + "id": 215874575, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTU4NzQ1NzU=", + "name": "sdm-ui", + "full_name": "cloudbees/sdm-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/sdm-ui", + "description": "SDM UI repository", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/sdm-ui", + "forks_url": "https://api.github.com/repos/cloudbees/sdm-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/sdm-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/sdm-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/sdm-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/sdm-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/sdm-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/sdm-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/sdm-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/sdm-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/sdm-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/sdm-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/sdm-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/sdm-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/sdm-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/sdm-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/sdm-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/sdm-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/sdm-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/sdm-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/sdm-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/sdm-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/sdm-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/sdm-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/610511905", + "subscription_url": "https://api.github.com/notifications/threads/610511905/subscription" + }, + { + "id": "610635063", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-21T21:46:46Z", + "last_read_at": "2019-10-25T01:12:20Z", + "subject": { + "title": "Revert focus", + "url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/15", + "latest_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/15", + "type": "PullRequest" + }, + "repository": { + "id": 215874575, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTU4NzQ1NzU=", + "name": "sdm-ui", + "full_name": "cloudbees/sdm-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/sdm-ui", + "description": "SDM UI repository", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/sdm-ui", + "forks_url": "https://api.github.com/repos/cloudbees/sdm-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/sdm-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/sdm-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/sdm-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/sdm-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/sdm-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/sdm-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/sdm-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/sdm-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/sdm-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/sdm-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/sdm-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/sdm-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/sdm-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/sdm-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/sdm-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/sdm-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/sdm-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/sdm-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/sdm-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/sdm-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/sdm-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/sdm-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/610635063", + "subscription_url": "https://api.github.com/notifications/threads/610635063/subscription" + }, + { + "id": "609174109", + "unread": true, + "reason": "review_requested", + "updated_at": "2019-10-21T21:41:28Z", + "last_read_at": null, + "subject": { + "title": "GitHub Plugin Documentation Blogpost", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2577", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2577", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/609174109", + "subscription_url": "https://api.github.com/notifications/threads/609174109/subscription" + }, + { + "id": "609506420", + "unread": false, + "reason": "state_change", + "updated_at": "2019-10-21T21:32:57Z", + "last_read_at": "2019-10-21T21:31:30Z", + "subject": { + "title": "bump jackson-databind to 2.10.0 to avoid security alert", + "url": "https://api.github.com/repos/github-api/github-api/pulls/575", + "latest_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments/544717216", + "type": "PullRequest" + }, + "repository": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments" + }, + "url": "https://api.github.com/notifications/threads/609506420", + "subscription_url": "https://api.github.com/notifications/threads/609506420/subscription" + }, + { + "id": "610417264", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-21T19:58:04Z", + "last_read_at": "2019-10-25T01:12:20Z", + "subject": { + "title": "[PH-988] As a user I would like to see the GitHub Organization column on linking repository modal", + "url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/13", + "latest_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/13", + "type": "PullRequest" + }, + "repository": { + "id": 215874575, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTU4NzQ1NzU=", + "name": "sdm-ui", + "full_name": "cloudbees/sdm-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/sdm-ui", + "description": "SDM UI repository", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/sdm-ui", + "forks_url": "https://api.github.com/repos/cloudbees/sdm-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/sdm-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/sdm-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/sdm-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/sdm-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/sdm-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/sdm-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/sdm-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/sdm-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/sdm-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/sdm-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/sdm-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/sdm-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/sdm-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/sdm-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/sdm-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/sdm-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/sdm-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/sdm-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/sdm-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/sdm-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/sdm-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/sdm-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/610417264", + "subscription_url": "https://api.github.com/notifications/threads/610417264/subscription" + }, + { + "id": "610456987", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-21T18:21:51Z", + "last_read_at": "2019-10-21T19:53:17Z", + "subject": { + "title": "v0.11.0", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/releases/20860134", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases/20860134", + "type": "Release" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/610456987", + "subscription_url": "https://api.github.com/notifications/threads/610456987/subscription" + }, + { + "id": "606750770", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-21T18:17:31Z", + "last_read_at": "2019-10-21T19:53:17Z", + "subject": { + "title": "Button component", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/169", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/169", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/606750770", + "subscription_url": "https://api.github.com/notifications/threads/606750770/subscription" + }, + { + "id": "607079935", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-21T18:15:41Z", + "last_read_at": "2019-10-21T19:53:17Z", + "subject": { + "title": "chore(deps-dev): bump popper.js from 1.15.0 to 1.16.0", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/171", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments/544640385", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/607079935", + "subscription_url": "https://api.github.com/notifications/threads/607079935/subscription" + }, + { + "id": "607079227", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-21T18:15:25Z", + "last_read_at": "2019-10-21T19:53:17Z", + "subject": { + "title": "chore(deps-dev): bump @types/react from 16.9.5 to 16.9.9", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/170", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments/544640256", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/607079227", + "subscription_url": "https://api.github.com/notifications/threads/607079227/subscription" + }, + { + "id": "610299520", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-21T18:07:39Z", + "last_read_at": "2019-10-25T01:12:20Z", + "subject": { + "title": "[CBDA-289] [FE] Change Feature Details Page Header", + "url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/10", + "latest_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/10", + "type": "PullRequest" + }, + "repository": { + "id": 215874575, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTU4NzQ1NzU=", + "name": "sdm-ui", + "full_name": "cloudbees/sdm-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/sdm-ui", + "description": "SDM UI repository", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/sdm-ui", + "forks_url": "https://api.github.com/repos/cloudbees/sdm-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/sdm-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/sdm-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/sdm-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/sdm-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/sdm-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/sdm-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/sdm-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/sdm-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/sdm-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/sdm-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/sdm-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/sdm-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/sdm-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/sdm-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/sdm-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/sdm-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/sdm-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/sdm-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/sdm-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/sdm-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/sdm-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/sdm-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/610299520", + "subscription_url": "https://api.github.com/notifications/threads/610299520/subscription" + }, + { + "id": "610385438", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-21T17:47:02Z", + "last_read_at": "2019-10-25T01:12:20Z", + "subject": { + "title": "reduce the errors to the ones we need to fix", + "url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/12", + "latest_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/12", + "type": "PullRequest" + }, + "repository": { + "id": 215874575, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTU4NzQ1NzU=", + "name": "sdm-ui", + "full_name": "cloudbees/sdm-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/sdm-ui", + "description": "SDM UI repository", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/sdm-ui", + "forks_url": "https://api.github.com/repos/cloudbees/sdm-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/sdm-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/sdm-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/sdm-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/sdm-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/sdm-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/sdm-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/sdm-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/sdm-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/sdm-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/sdm-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/sdm-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/sdm-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/sdm-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/sdm-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/sdm-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/sdm-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/sdm-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/sdm-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/sdm-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/sdm-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/sdm-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/sdm-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/610385438", + "subscription_url": "https://api.github.com/notifications/threads/610385438/subscription" + }, + { + "id": "610307674", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-21T17:11:24Z", + "last_read_at": "2019-10-25T01:12:20Z", + "subject": { + "title": "feat: Jenkins updates", + "url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/11", + "latest_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/11", + "type": "PullRequest" + }, + "repository": { + "id": 215874575, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTU4NzQ1NzU=", + "name": "sdm-ui", + "full_name": "cloudbees/sdm-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/sdm-ui", + "description": "SDM UI repository", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/sdm-ui", + "forks_url": "https://api.github.com/repos/cloudbees/sdm-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/sdm-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/sdm-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/sdm-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/sdm-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/sdm-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/sdm-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/sdm-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/sdm-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/sdm-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/sdm-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/sdm-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/sdm-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/sdm-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/sdm-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/sdm-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/sdm-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/sdm-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/sdm-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/sdm-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/sdm-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/sdm-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/sdm-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/610307674", + "subscription_url": "https://api.github.com/notifications/threads/610307674/subscription" + }, + { + "id": "609428650", + "unread": true, + "reason": "review_requested", + "updated_at": "2019-10-21T17:03:18Z", + "last_read_at": null, + "subject": { + "title": "Fix windows home path", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2583", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2583", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/609428650", + "subscription_url": "https://api.github.com/notifications/threads/609428650/subscription" + }, + { + "id": "610243790", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-21T15:53:15Z", + "last_read_at": "2019-10-25T01:12:20Z", + "subject": { + "title": "Revert \"Merge pull request #8 from mgagliardo91/jenkins-setup\"", + "url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/9", + "latest_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/9", + "type": "PullRequest" + }, + "repository": { + "id": 215874575, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTU4NzQ1NzU=", + "name": "sdm-ui", + "full_name": "cloudbees/sdm-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/sdm-ui", + "description": "SDM UI repository", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/sdm-ui", + "forks_url": "https://api.github.com/repos/cloudbees/sdm-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/sdm-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/sdm-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/sdm-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/sdm-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/sdm-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/sdm-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/sdm-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/sdm-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/sdm-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/sdm-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/sdm-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/sdm-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/sdm-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/sdm-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/sdm-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/sdm-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/sdm-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/sdm-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/sdm-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/sdm-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/sdm-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/sdm-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/610243790", + "subscription_url": "https://api.github.com/notifications/threads/610243790/subscription" + }, + { + "id": "610216902", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-21T15:49:43Z", + "last_read_at": "2019-10-25T01:12:20Z", + "subject": { + "title": "feat: Add test to pipeline", + "url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/8", + "latest_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/8", + "type": "PullRequest" + }, + "repository": { + "id": 215874575, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTU4NzQ1NzU=", + "name": "sdm-ui", + "full_name": "cloudbees/sdm-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/sdm-ui", + "description": "SDM UI repository", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/sdm-ui", + "forks_url": "https://api.github.com/repos/cloudbees/sdm-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/sdm-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/sdm-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/sdm-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/sdm-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/sdm-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/sdm-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/sdm-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/sdm-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/sdm-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/sdm-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/sdm-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/sdm-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/sdm-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/sdm-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/sdm-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/sdm-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/sdm-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/sdm-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/sdm-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/sdm-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/sdm-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/sdm-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/610216902", + "subscription_url": "https://api.github.com/notifications/threads/610216902/subscription" + }, + { + "id": "609045116", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-21T15:48:30Z", + "last_read_at": "2019-10-25T01:12:20Z", + "subject": { + "title": "Bring Product Hub into repo", + "url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/3", + "latest_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/3", + "type": "PullRequest" + }, + "repository": { + "id": 215874575, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTU4NzQ1NzU=", + "name": "sdm-ui", + "full_name": "cloudbees/sdm-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/sdm-ui", + "description": "SDM UI repository", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/sdm-ui", + "forks_url": "https://api.github.com/repos/cloudbees/sdm-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/sdm-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/sdm-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/sdm-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/sdm-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/sdm-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/sdm-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/sdm-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/sdm-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/sdm-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/sdm-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/sdm-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/sdm-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/sdm-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/sdm-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/sdm-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/sdm-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/sdm-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/sdm-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/sdm-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/sdm-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/sdm-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/sdm-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/609045116", + "subscription_url": "https://api.github.com/notifications/threads/609045116/subscription" + }, + { + "id": "610167101", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-21T14:54:54Z", + "last_read_at": "2019-10-25T01:12:20Z", + "subject": { + "title": "fix: Add missing files", + "url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/7", + "latest_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/7", + "type": "PullRequest" + }, + "repository": { + "id": 215874575, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTU4NzQ1NzU=", + "name": "sdm-ui", + "full_name": "cloudbees/sdm-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/sdm-ui", + "description": "SDM UI repository", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/sdm-ui", + "forks_url": "https://api.github.com/repos/cloudbees/sdm-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/sdm-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/sdm-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/sdm-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/sdm-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/sdm-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/sdm-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/sdm-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/sdm-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/sdm-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/sdm-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/sdm-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/sdm-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/sdm-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/sdm-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/sdm-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/sdm-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/sdm-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/sdm-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/sdm-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/sdm-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/sdm-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/sdm-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/610167101", + "subscription_url": "https://api.github.com/notifications/threads/610167101/subscription" + }, + { + "id": "609995458", + "unread": true, + "reason": "review_requested", + "updated_at": "2019-10-21T14:52:38Z", + "last_read_at": null, + "subject": { + "title": "Document the Jenkins Wiki Exporter service for plugins", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2589", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments/544551813", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/609995458", + "subscription_url": "https://api.github.com/notifications/threads/609995458/subscription" + }, + { + "id": "610164028", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-21T14:50:57Z", + "last_read_at": "2019-10-25T01:12:20Z", + "subject": { + "title": "Fixes ph", + "url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/6", + "latest_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/6", + "type": "PullRequest" + }, + "repository": { + "id": 215874575, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTU4NzQ1NzU=", + "name": "sdm-ui", + "full_name": "cloudbees/sdm-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/sdm-ui", + "description": "SDM UI repository", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/sdm-ui", + "forks_url": "https://api.github.com/repos/cloudbees/sdm-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/sdm-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/sdm-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/sdm-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/sdm-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/sdm-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/sdm-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/sdm-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/sdm-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/sdm-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/sdm-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/sdm-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/sdm-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/sdm-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/sdm-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/sdm-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/sdm-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/sdm-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/sdm-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/sdm-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/sdm-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/sdm-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/sdm-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/610164028", + "subscription_url": "https://api.github.com/notifications/threads/610164028/subscription" + }, + { + "id": "610100826", + "unread": true, + "reason": "review_requested", + "updated_at": "2019-10-21T14:01:20Z", + "last_read_at": null, + "subject": { + "title": "Correct the description of SECURITY-1434", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2590", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2590", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/610100826", + "subscription_url": "https://api.github.com/notifications/threads/610100826/subscription" + }, + { + "id": "610120725", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-21T14:01:12Z", + "last_read_at": "2019-10-25T01:12:20Z", + "subject": { + "title": "Adding missing files", + "url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/5", + "latest_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/5", + "type": "PullRequest" + }, + "repository": { + "id": 215874575, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTU4NzQ1NzU=", + "name": "sdm-ui", + "full_name": "cloudbees/sdm-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/sdm-ui", + "description": "SDM UI repository", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/sdm-ui", + "forks_url": "https://api.github.com/repos/cloudbees/sdm-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/sdm-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/sdm-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/sdm-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/sdm-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/sdm-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/sdm-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/sdm-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/sdm-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/sdm-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/sdm-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/sdm-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/sdm-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/sdm-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/sdm-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/sdm-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/sdm-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/sdm-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/sdm-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/sdm-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/sdm-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/sdm-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/sdm-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/610120725", + "subscription_url": "https://api.github.com/notifications/threads/610120725/subscription" + }, + { + "id": "610107125", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-21T13:56:46Z", + "last_read_at": "2019-10-25T01:12:20Z", + "subject": { + "title": "feat: Add missing files and update Jenkinsfile", + "url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/4", + "latest_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/4", + "type": "PullRequest" + }, + "repository": { + "id": 215874575, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTU4NzQ1NzU=", + "name": "sdm-ui", + "full_name": "cloudbees/sdm-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/sdm-ui", + "description": "SDM UI repository", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/sdm-ui", + "forks_url": "https://api.github.com/repos/cloudbees/sdm-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/sdm-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/sdm-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/sdm-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/sdm-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/sdm-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/sdm-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/sdm-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/sdm-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/sdm-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/sdm-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/sdm-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/sdm-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/sdm-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/sdm-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/sdm-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/sdm-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/sdm-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/sdm-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/sdm-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/sdm-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/sdm-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/sdm-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/610107125", + "subscription_url": "https://api.github.com/notifications/threads/610107125/subscription" + }, + { + "id": "606326560", + "unread": false, + "reason": "mention", + "updated_at": "2019-10-25T20:06:08Z", + "last_read_at": "2019-10-24T00:54:38Z", + "subject": { + "title": "[JENKINS-51865] Introduce beforeOptions in 'when'", + "url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/pulls/356", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/pulls/comments/339216766", + "type": "PullRequest" + }, + "repository": { + "id": 66677338, + "node_id": "MDEwOlJlcG9zaXRvcnk2NjY3NzMzOA==", + "name": "pipeline-model-definition-plugin", + "full_name": "jenkinsci/pipeline-model-definition-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pipeline-model-definition-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/606326560", + "subscription_url": "https://api.github.com/notifications/threads/606326560/subscription" + }, + { + "id": "609244178", + "unread": true, + "reason": "review_requested", + "updated_at": "2019-10-21T10:28:36Z", + "last_read_at": null, + "subject": { + "title": "Migrate plugin-site page from wiki", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2579", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2579", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/609244178", + "subscription_url": "https://api.github.com/notifications/threads/609244178/subscription" + }, + { + "id": "609653930", + "unread": true, + "reason": "review_requested", + "updated_at": "2019-10-21T10:27:55Z", + "last_read_at": null, + "subject": { + "title": "update clown logo yml", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2587", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2587", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/609653930", + "subscription_url": "https://api.github.com/notifications/threads/609653930/subscription" + }, + { + "id": "609897529", + "unread": true, + "reason": "review_requested", + "updated_at": "2019-10-21T10:27:00Z", + "last_read_at": null, + "subject": { + "title": "Add changelog for 2.201", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2588", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2588", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/609897529", + "subscription_url": "https://api.github.com/notifications/threads/609897529/subscription" + }, + { + "id": "604846386", + "unread": true, + "reason": "mention", + "updated_at": "2019-10-21T10:12:47Z", + "last_read_at": "2019-10-14T23:42:33Z", + "subject": { + "title": "[JENKINS-48431] Support both lightweight checkout AND build parameters", + "url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/pulls/78", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/issues/comments/544447571", + "type": "PullRequest" + }, + "repository": { + "id": 12713417, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjcxMzQxNw==", + "name": "scm-api-plugin", + "full_name": "jenkinsci/scm-api-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/scm-api-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/scm-api-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/604846386", + "subscription_url": "https://api.github.com/notifications/threads/604846386/subscription" + }, + { + "id": "609907574", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-21T09:31:50Z", + "last_read_at": null, + "subject": { + "title": "[CSDOCS-253] Eliminate hero flicker", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/161", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/161", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/609907574", + "subscription_url": "https://api.github.com/notifications/threads/609907574/subscription" + }, + { + "id": "609870551", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-21T08:27:30Z", + "last_read_at": null, + "subject": { + "title": "chore(deps): bump https://github.com/cloudbees/jxui-frontend.git from 0.0.906 to 0.0.910", + "url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/62", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/62", + "type": "PullRequest" + }, + "repository": { + "id": 183067295, + "node_id": "MDEwOlJlcG9zaXRvcnkxODMwNjcyOTU=", + "name": "jx-app-ui", + "full_name": "cloudbees/jx-app-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jx-app-ui", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jx-app-ui", + "forks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jx-app-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jx-app-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jx-app-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jx-app-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jx-app-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jx-app-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jx-app-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jx-app-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jx-app-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jx-app-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jx-app-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jx-app-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jx-app-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jx-app-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/609870551", + "subscription_url": "https://api.github.com/notifications/threads/609870551/subscription" + }, + { + "id": "609699082", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-21T05:34:47Z", + "last_read_at": null, + "subject": { + "title": "CSDOCS-247 - Image checking was added on CSDOCS-218, but this let's m…", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/159", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/159", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/609699082", + "subscription_url": "https://api.github.com/notifications/threads/609699082/subscription" + }, + { + "id": "609696754", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-21T04:34:43Z", + "last_read_at": null, + "subject": { + "title": "CSDOCS-254 - Simplify postgres container setup", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/158", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/158", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/609696754", + "subscription_url": "https://api.github.com/notifications/threads/609696754/subscription" + }, + { + "id": "580907509", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-21T03:51:40Z", + "last_read_at": "2019-09-30T16:10:01Z", + "subject": { + "title": "Rewrote CpsVmExecutorServiceTest to use ClassRule", + "url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls/320", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/comments/544338428", + "type": "PullRequest" + }, + "repository": { + "id": 55543225, + "node_id": "MDEwOlJlcG9zaXRvcnk1NTU0MzIyNQ==", + "name": "workflow-cps-plugin", + "full_name": "jenkinsci/workflow-cps-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/workflow-cps-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/580907509", + "subscription_url": "https://api.github.com/notifications/threads/580907509/subscription" + }, + { + "id": "609728163", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-21T03:40:13Z", + "last_read_at": null, + "subject": { + "title": "[CSDOCS-221] try and fix the Safari back navigation bug", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/160", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments/544336710", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/609728163", + "subscription_url": "https://api.github.com/notifications/threads/609728163/subscription" + }, + { + "id": "600558040", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-09T03:33:35Z", + "last_read_at": null, + "subject": { + "title": "CE-3559 - Groovy to set the 'Node Owner Properties' on all agents", + "url": "https://api.github.com/repos/cloudbees/jenkins-scripts/pulls/111", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/pulls/111", + "type": "PullRequest" + }, + "repository": { + "id": 49162083, + "node_id": "MDEwOlJlcG9zaXRvcnk0OTE2MjA4Mw==", + "name": "jenkins-scripts", + "full_name": "cloudbees/jenkins-scripts", + "private": false, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jenkins-scripts", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jenkins-scripts", + "forks_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/deployments" + }, + "url": "https://api.github.com/notifications/threads/600558040", + "subscription_url": "https://api.github.com/notifications/threads/600558040/subscription" + }, + { + "id": "609680555", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-21T02:07:18Z", + "last_read_at": null, + "subject": { + "title": "CSDOCS-219 - Add unresolved class checking", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/157", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/157", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/609680555", + "subscription_url": "https://api.github.com/notifications/threads/609680555/subscription" + }, + { + "id": "609668648", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-21T01:16:47Z", + "last_read_at": null, + "subject": { + "title": "CSDOCS-246 - Fix up searching so that it protects us against someone clicking on the wrong thing", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/156", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/156", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/609668648", + "subscription_url": "https://api.github.com/notifications/threads/609668648/subscription" + }, + { + "id": "609648132", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-21T00:54:16Z", + "last_read_at": null, + "subject": { + "title": "CSDOCS-252 - Adjust branches to use the current checkout", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/155", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/155", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/609648132", + "subscription_url": "https://api.github.com/notifications/threads/609648132/subscription" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/__files/notifications-89714ed3-235b-4914-86a8-44ad66d59f30.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/__files/notifications-89714ed3-235b-4914-86a8-44ad66d59f30.json new file mode 100644 index 0000000000..540679c2d7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/__files/notifications-89714ed3-235b-4914-86a8-44ad66d59f30.json @@ -0,0 +1,4102 @@ +[ + { + "id": "596600257", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-01T22:44:33Z", + "last_read_at": "2019-10-05T07:24:52Z", + "subject": { + "title": "[CSDOCS-146] Add basic search functinality to the search page", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/94", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/94", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/596600257", + "subscription_url": "https://api.github.com/notifications/threads/596600257/subscription" + }, + { + "id": "595957937", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-01T22:21:37Z", + "last_read_at": "2019-10-02T09:09:43Z", + "subject": { + "title": "Bump react-docgen-typescript-loader from 3.2.1 to 3.3.0", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/130", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/130", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/595957937", + "subscription_url": "https://api.github.com/notifications/threads/595957937/subscription" + }, + { + "id": "595957262", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-01T22:21:15Z", + "last_read_at": "2019-10-02T09:09:43Z", + "subject": { + "title": "Bump eslint-plugin-react from 7.14.3 to 7.15.0", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/129", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/129", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/595957262", + "subscription_url": "https://api.github.com/notifications/threads/595957262/subscription" + }, + { + "id": "595956838", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-01T22:21:00Z", + "last_read_at": "2019-10-02T09:09:43Z", + "subject": { + "title": "Bump @types/react from 16.9.3 to 16.9.4", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/128", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/128", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/595956838", + "subscription_url": "https://api.github.com/notifications/threads/595956838/subscription" + }, + { + "id": "595956341", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-01T22:20:42Z", + "last_read_at": "2019-10-02T09:09:43Z", + "subject": { + "title": "Bump lint-staged from 9.4.0 to 9.4.1", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/127", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/127", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/595956341", + "subscription_url": "https://api.github.com/notifications/threads/595956341/subscription" + }, + { + "id": "594988368", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-01T22:20:20Z", + "last_read_at": "2019-10-02T09:09:43Z", + "subject": { + "title": "Bump react-dom from 16.9.0 to 16.10.1", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/123", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/123", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/594988368", + "subscription_url": "https://api.github.com/notifications/threads/594988368/subscription" + }, + { + "id": "594986580", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-01T22:20:02Z", + "last_read_at": "2019-10-02T09:09:43Z", + "subject": { + "title": "Bump react from 16.9.0 to 16.10.1", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/120", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/120", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/594986580", + "subscription_url": "https://api.github.com/notifications/threads/594986580/subscription" + }, + { + "id": "591148826", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-01T17:45:02Z", + "last_read_at": "2019-10-05T07:25:55Z", + "subject": { + "title": "[NGPIPELINE-711] Add FlowDefinition tracking ", + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/pulls/19", + "latest_comment_url": null, + "type": "PullRequest" + }, + "repository": { + "id": 200867838, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDA4Njc4Mzg=", + "name": "cloudbees-pipeline-analytics-plugin", + "full_name": "cloudbees/cloudbees-pipeline-analytics-plugin", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/cloudbees-pipeline-analytics-plugin", + "description": "PoC Plugin for https://cloudbees.atlassian.net/browse/NGPIPELINE-610", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin", + "forks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/forks", + "keys_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/events", + "assignees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/merges", + "archive_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/591148826", + "subscription_url": "https://api.github.com/notifications/threads/591148826/subscription" + }, + { + "id": "593516254", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-01T18:17:07Z", + "last_read_at": "2019-10-05T07:25:55Z", + "subject": { + "title": "add step tracking to README", + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/pulls/21", + "latest_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/pulls/21", + "type": "PullRequest" + }, + "repository": { + "id": 200867838, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDA4Njc4Mzg=", + "name": "cloudbees-pipeline-analytics-plugin", + "full_name": "cloudbees/cloudbees-pipeline-analytics-plugin", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/cloudbees-pipeline-analytics-plugin", + "description": "PoC Plugin for https://cloudbees.atlassian.net/browse/NGPIPELINE-610", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin", + "forks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/forks", + "keys_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/events", + "assignees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/merges", + "archive_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/593516254", + "subscription_url": "https://api.github.com/notifications/threads/593516254/subscription" + }, + { + "id": "591888853", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-01T16:24:31Z", + "last_read_at": "2019-10-05T07:24:42Z", + "subject": { + "title": "NGPIPELINE-669 refactoring to own test classes", + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/pulls/14", + "latest_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/pulls/14", + "type": "PullRequest" + }, + "repository": { + "id": 193577985, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTM1Nzc5ODU=", + "name": "cloudbees-pipeline-rules-interception-plugin", + "full_name": "cloudbees/cloudbees-pipeline-rules-interception-plugin", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/cloudbees-pipeline-rules-interception-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin", + "forks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/forks", + "keys_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/events", + "assignees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/merges", + "archive_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/591888853", + "subscription_url": "https://api.github.com/notifications/threads/591888853/subscription" + }, + { + "id": "591324991", + "unread": false, + "reason": "mention", + "updated_at": "2019-10-01T15:27:05Z", + "last_read_at": "2019-10-05T06:57:25Z", + "subject": { + "title": "Autogenerated OSS plugin updates Sep 24, 2019", + "url": "https://api.github.com/repos/cloudbees/unified-release/pulls/1489", + "latest_comment_url": "https://api.github.com/repos/cloudbees/unified-release/pulls/1489", + "type": "PullRequest" + }, + "repository": { + "id": 78131017, + "node_id": "MDEwOlJlcG9zaXRvcnk3ODEzMTAxNw==", + "name": "unified-release", + "full_name": "cloudbees/unified-release", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/unified-release", + "description": "Unified Release Repository", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/unified-release", + "forks_url": "https://api.github.com/repos/cloudbees/unified-release/forks", + "keys_url": "https://api.github.com/repos/cloudbees/unified-release/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/unified-release/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/unified-release/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/unified-release/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/unified-release/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/unified-release/events", + "assignees_url": "https://api.github.com/repos/cloudbees/unified-release/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/unified-release/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/unified-release/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/unified-release/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/unified-release/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/unified-release/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/unified-release/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/unified-release/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/unified-release/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/unified-release/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/unified-release/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/unified-release/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/unified-release/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/unified-release/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/unified-release/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/unified-release/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/unified-release/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/unified-release/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/unified-release/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/unified-release/merges", + "archive_url": "https://api.github.com/repos/cloudbees/unified-release/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/unified-release/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/unified-release/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/unified-release/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/unified-release/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/unified-release/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/unified-release/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/unified-release/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/unified-release/deployments" + }, + "url": "https://api.github.com/notifications/threads/591324991", + "subscription_url": "https://api.github.com/notifications/threads/591324991/subscription" + }, + { + "id": "596255942", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-01T14:35:29Z", + "last_read_at": "2019-10-05T07:24:29Z", + "subject": { + "title": "Add changelog", + "url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/pulls/11", + "latest_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/pulls/11", + "type": "PullRequest" + }, + "repository": { + "id": 205587249, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDU1ODcyNDk=", + "name": "cloudbees-analytics-plugin", + "full_name": "cloudbees/cloudbees-analytics-plugin", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/cloudbees-analytics-plugin", + "description": "The analytics plugin to gather and send information to an endpoint using a standard analytics API", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin", + "forks_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/forks", + "keys_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/events", + "assignees_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/merges", + "archive_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/596255942", + "subscription_url": "https://api.github.com/notifications/threads/596255942/subscription" + }, + { + "id": "596186141", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-01T15:26:00Z", + "last_read_at": "2019-10-01T15:24:59Z", + "subject": { + "title": "Bump mockito-core from 3.0.0 to 3.1.0", + "url": "https://api.github.com/repos/github-api/github-api/pulls/557", + "latest_comment_url": "https://api.github.com/repos/github-api/github-api/pulls/557", + "type": "PullRequest" + }, + "repository": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments" + }, + "url": "https://api.github.com/notifications/threads/596186141", + "subscription_url": "https://api.github.com/notifications/threads/596186141/subscription" + }, + { + "id": "470903227", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-01T09:50:44Z", + "last_read_at": "2019-10-03T15:46:07Z", + "subject": { + "title": "Always collect test results", + "url": "https://api.github.com/repos/jenkins-infra/pipeline-library/pulls/88", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/issues/comments/536960364", + "type": "PullRequest" + }, + "repository": { + "id": 65505983, + "node_id": "MDEwOlJlcG9zaXRvcnk2NTUwNTk4Mw==", + "name": "pipeline-library", + "full_name": "jenkins-infra/pipeline-library", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/pipeline-library", + "description": "Collection of custom steps and variables for our Jenkins instance(s)", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/pipeline-library", + "forks_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/deployments" + }, + "url": "https://api.github.com/notifications/threads/470903227", + "subscription_url": "https://api.github.com/notifications/threads/470903227/subscription" + }, + { + "id": "586335472", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-01T09:45:34Z", + "last_read_at": "2019-10-01T19:52:03Z", + "subject": { + "title": "Enable ACI for Linux by default", + "url": "https://api.github.com/repos/jenkins-infra/pipeline-library/pulls/114", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/pulls/comments/329967387", + "type": "PullRequest" + }, + "repository": { + "id": 65505983, + "node_id": "MDEwOlJlcG9zaXRvcnk2NTUwNTk4Mw==", + "name": "pipeline-library", + "full_name": "jenkins-infra/pipeline-library", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/pipeline-library", + "description": "Collection of custom steps and variables for our Jenkins instance(s)", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/pipeline-library", + "forks_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/deployments" + }, + "url": "https://api.github.com/notifications/threads/586335472", + "subscription_url": "https://api.github.com/notifications/threads/586335472/subscription" + }, + { + "id": "595958479", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-01T07:39:35Z", + "last_read_at": "2019-10-01T08:39:35Z", + "subject": { + "title": "Fix test dependency", + "url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/pulls/10", + "latest_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/pulls/10", + "type": "PullRequest" + }, + "repository": { + "id": 205587249, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDU1ODcyNDk=", + "name": "cloudbees-analytics-plugin", + "full_name": "cloudbees/cloudbees-analytics-plugin", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/cloudbees-analytics-plugin", + "description": "The analytics plugin to gather and send information to an endpoint using a standard analytics API", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin", + "forks_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/forks", + "keys_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/events", + "assignees_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/merges", + "archive_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/595958479", + "subscription_url": "https://api.github.com/notifications/threads/595958479/subscription" + }, + { + "id": "595901494", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-01T07:36:49Z", + "last_read_at": "2019-10-01T08:39:37Z", + "subject": { + "title": "feature/auto-migrate - CSDOCS-169 - Automatically migrate database on boot. Update docs", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/93", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/93", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/595901494", + "subscription_url": "https://api.github.com/notifications/threads/595901494/subscription" + }, + { + "id": "593850085", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-09-30T20:55:19Z", + "last_read_at": "2019-10-01T08:39:38Z", + "subject": { + "title": "NGPIPELINE-706 CLI", + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/pulls/16", + "latest_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/pulls/comments/329767795", + "type": "PullRequest" + }, + "repository": { + "id": 193577985, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTM1Nzc5ODU=", + "name": "cloudbees-pipeline-rules-interception-plugin", + "full_name": "cloudbees/cloudbees-pipeline-rules-interception-plugin", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/cloudbees-pipeline-rules-interception-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin", + "forks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/forks", + "keys_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/events", + "assignees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/merges", + "archive_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/593850085", + "subscription_url": "https://api.github.com/notifications/threads/593850085/subscription" + }, + { + "id": "595890889", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-01T06:24:29Z", + "last_read_at": "2019-10-01T08:39:37Z", + "subject": { + "title": "Implement fixes for a few bugherd reported bugs", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/92", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/92", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/595890889", + "subscription_url": "https://api.github.com/notifications/threads/595890889/subscription" + }, + { + "id": "595065555", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-01T06:22:51Z", + "last_read_at": "2019-10-01T08:39:40Z", + "subject": { + "title": "CBDA-228 Tooltip from honeyui-react doesn't work correct", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/126", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments/536886277", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/595065555", + "subscription_url": "https://api.github.com/notifications/threads/595065555/subscription" + }, + { + "id": "595871933", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-01T06:10:16Z", + "last_read_at": "2019-10-01T08:39:37Z", + "subject": { + "title": "Initial search API", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/91", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/91", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/595871933", + "subscription_url": "https://api.github.com/notifications/threads/595871933/subscription" + }, + { + "id": "595060497", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-30T23:03:23Z", + "last_read_at": "2019-10-01T08:39:37Z", + "subject": { + "title": "Fix plugins page issues", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/90", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/90", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/595060497", + "subscription_url": "https://api.github.com/notifications/threads/595060497/subscription" + }, + { + "id": "595699069", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-09-30T23:43:42Z", + "last_read_at": "2019-10-02T06:27:34Z", + "subject": { + "title": "#hacktoberfest 2019 - Fix accessing-the-jenkins-blue-ocean-docker-container link", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2523", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2523", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/595699069", + "subscription_url": "https://api.github.com/notifications/threads/595699069/subscription" + }, + { + "id": "595598969", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-09-30T22:38:49Z", + "last_read_at": "2019-10-05T06:57:25Z", + "subject": { + "title": "Hacktoberfest 2019 - Add the announcement blog + apply some copy edits", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2520", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments/536781207", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/595598969", + "subscription_url": "https://api.github.com/notifications/threads/595598969/subscription" + }, + { + "id": "595635743", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-09-30T22:36:16Z", + "last_read_at": "2019-10-05T06:57:25Z", + "subject": { + "title": "update with LF standard copyright notice", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2522", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments/536780554", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/595635743", + "subscription_url": "https://api.github.com/notifications/threads/595635743/subscription" + }, + { + "id": "595392772", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-30T22:27:54Z", + "last_read_at": "2019-10-01T08:39:29Z", + "subject": { + "title": "No-op change", + "url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls/326", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls/326", + "type": "PullRequest" + }, + "repository": { + "id": 55543225, + "node_id": "MDEwOlJlcG9zaXRvcnk1NTU0MzIyNQ==", + "name": "workflow-cps-plugin", + "full_name": "jenkinsci/workflow-cps-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/workflow-cps-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/595392772", + "subscription_url": "https://api.github.com/notifications/threads/595392772/subscription" + }, + { + "id": "595622614", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-09-30T20:48:59Z", + "last_read_at": "2019-10-05T06:57:25Z", + "subject": { + "title": "Hacktoberfest 2019 - Switch the Core CONTRIBUTING page link to Asciidoc", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2521", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2521", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/595622614", + "subscription_url": "https://api.github.com/notifications/threads/595622614/subscription" + }, + { + "id": "593641990", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-30T19:56:52Z", + "last_read_at": "2019-10-01T08:39:40Z", + "subject": { + "title": "Bump lint-staged from 9.3.0 to 9.4.0", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/118", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/118", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/593641990", + "subscription_url": "https://api.github.com/notifications/threads/593641990/subscription" + }, + { + "id": "591932659", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-30T19:56:30Z", + "last_read_at": "2019-10-01T08:39:40Z", + "subject": { + "title": "Bump @types/react-dom from 16.9.0 to 16.9.1", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/116", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/116", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/591932659", + "subscription_url": "https://api.github.com/notifications/threads/591932659/subscription" + }, + { + "id": "561270589", + "unread": false, + "reason": "state_change", + "updated_at": "2019-10-02T16:02:52Z", + "last_read_at": "2019-10-02T15:28:52Z", + "subject": { + "title": "Remove deprecated dockerFingerprintFrom", + "url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/pulls/350", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/issues/comments/537562934", + "type": "PullRequest" + }, + "repository": { + "id": 66677338, + "node_id": "MDEwOlJlcG9zaXRvcnk2NjY3NzMzOA==", + "name": "pipeline-model-definition-plugin", + "full_name": "jenkinsci/pipeline-model-definition-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pipeline-model-definition-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/561270589", + "subscription_url": "https://api.github.com/notifications/threads/561270589/subscription" + }, + { + "id": "591932316", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-30T19:12:16Z", + "last_read_at": "2019-10-01T08:39:40Z", + "subject": { + "title": "Bump @types/react from 16.9.2 to 16.9.3", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/115", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/115", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/591932316", + "subscription_url": "https://api.github.com/notifications/threads/591932316/subscription" + }, + { + "id": "591931858", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-30T19:09:45Z", + "last_read_at": "2019-10-01T08:39:40Z", + "subject": { + "title": "Bump webpack from 4.40.2 to 4.41.0", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/114", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/114", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/591931858", + "subscription_url": "https://api.github.com/notifications/threads/591931858/subscription" + }, + { + "id": "595353157", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-09-30T17:59:37Z", + "last_read_at": "2019-10-05T06:57:25Z", + "subject": { + "title": "Add platformlabeler as a featured Hacktoberfest project", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2519", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2519", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/595353157", + "subscription_url": "https://api.github.com/notifications/threads/595353157/subscription" + }, + { + "id": "595389373", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-30T16:54:05Z", + "last_read_at": "2019-10-01T08:39:35Z", + "subject": { + "title": "Update api and driver version", + "url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/pulls/9", + "latest_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/pulls/9", + "type": "PullRequest" + }, + "repository": { + "id": 205587249, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDU1ODcyNDk=", + "name": "cloudbees-analytics-plugin", + "full_name": "cloudbees/cloudbees-analytics-plugin", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/cloudbees-analytics-plugin", + "description": "The analytics plugin to gather and send information to an endpoint using a standard analytics API", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin", + "forks_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/forks", + "keys_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/events", + "assignees_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/merges", + "archive_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/595389373", + "subscription_url": "https://api.github.com/notifications/threads/595389373/subscription" + }, + { + "id": "595271049", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-09-30T15:33:28Z", + "last_read_at": "2019-09-30T16:05:46Z", + "subject": { + "title": "Hacktoberfest 2019 - Add Gitlab and Prometheus plugins as featured projects, move Jenkins website to the top", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2518", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2518", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/595271049", + "subscription_url": "https://api.github.com/notifications/threads/595271049/subscription" + }, + { + "id": "593250054", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-30T15:17:43Z", + "last_read_at": "2019-09-30T16:09:48Z", + "subject": { + "title": "Ensure the license.xml file is marshalled", + "url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/pulls/8", + "latest_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/pulls/8", + "type": "PullRequest" + }, + "repository": { + "id": 205587249, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDU1ODcyNDk=", + "name": "cloudbees-analytics-plugin", + "full_name": "cloudbees/cloudbees-analytics-plugin", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/cloudbees-analytics-plugin", + "description": "The analytics plugin to gather and send information to an endpoint using a standard analytics API", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin", + "forks_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/forks", + "keys_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/events", + "assignees_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/merges", + "archive_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/593250054", + "subscription_url": "https://api.github.com/notifications/threads/593250054/subscription" + }, + { + "id": "595331287", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-30T14:54:08Z", + "last_read_at": "2019-09-30T16:05:14Z", + "subject": { + "title": "chore(deps): bump https://github.com/cloudbees/jxui-frontend.git from 0.0.876 to 0.0.879", + "url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/45", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/45", + "type": "PullRequest" + }, + "repository": { + "id": 183067295, + "node_id": "MDEwOlJlcG9zaXRvcnkxODMwNjcyOTU=", + "name": "jx-app-ui", + "full_name": "cloudbees/jx-app-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jx-app-ui", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jx-app-ui", + "forks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jx-app-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jx-app-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jx-app-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jx-app-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jx-app-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jx-app-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jx-app-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jx-app-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jx-app-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jx-app-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jx-app-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jx-app-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jx-app-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jx-app-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/595331287", + "subscription_url": "https://api.github.com/notifications/threads/595331287/subscription" + }, + { + "id": "595238661", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-09-30T14:15:19Z", + "last_read_at": "2019-09-30T16:05:46Z", + "subject": { + "title": "Security fixes aren't severe enough to make 'Important'", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2517", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2517", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/595238661", + "subscription_url": "https://api.github.com/notifications/threads/595238661/subscription" + }, + { + "id": "595197142", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-30T13:49:28Z", + "last_read_at": "2019-09-30T16:05:12Z", + "subject": { + "title": "Run only during working days", + "url": "https://api.github.com/repos/cloudbees/urap/pulls/14", + "latest_comment_url": "https://api.github.com/repos/cloudbees/urap/pulls/14", + "type": "PullRequest" + }, + "repository": { + "id": 202161566, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDIxNjE1NjY=", + "name": "urap", + "full_name": "cloudbees/urap", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/urap", + "description": "Unified Release Automatic Plugin updater. https://en.wikipedia.org/wiki/Urap", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/urap", + "forks_url": "https://api.github.com/repos/cloudbees/urap/forks", + "keys_url": "https://api.github.com/repos/cloudbees/urap/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/urap/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/urap/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/urap/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/urap/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/urap/events", + "assignees_url": "https://api.github.com/repos/cloudbees/urap/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/urap/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/urap/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/urap/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/urap/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/urap/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/urap/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/urap/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/urap/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/urap/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/urap/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/urap/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/urap/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/urap/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/urap/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/urap/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/urap/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/urap/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/urap/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/urap/merges", + "archive_url": "https://api.github.com/repos/cloudbees/urap/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/urap/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/urap/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/urap/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/urap/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/urap/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/urap/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/urap/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/urap/deployments" + }, + "url": "https://api.github.com/notifications/threads/595197142", + "subscription_url": "https://api.github.com/notifications/threads/595197142/subscription" + }, + { + "id": "595110859", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-09-30T13:17:28Z", + "last_read_at": "2019-09-30T16:05:46Z", + "subject": { + "title": "Add changelog for 2.198", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2516", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/comments/329570239", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/595110859", + "subscription_url": "https://api.github.com/notifications/threads/595110859/subscription" + }, + { + "id": "570459958", + "unread": false, + "reason": "mention", + "updated_at": "2019-09-30T09:43:38Z", + "last_read_at": "2019-10-02T06:27:42Z", + "subject": { + "title": "[JENKINS-59115] Support comparator for the when branch", + "url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/pulls/351", + "latest_comment_url": null, + "type": "PullRequest" + }, + "repository": { + "id": 66677338, + "node_id": "MDEwOlJlcG9zaXRvcnk2NjY3NzMzOA==", + "name": "pipeline-model-definition-plugin", + "full_name": "jenkinsci/pipeline-model-definition-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pipeline-model-definition-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/570459958", + "subscription_url": "https://api.github.com/notifications/threads/570459958/subscription" + }, + { + "id": "554691456", + "unread": false, + "reason": "comment", + "updated_at": "2019-09-30T15:42:33Z", + "last_read_at": "2019-09-30T15:40:30Z", + "subject": { + "title": "Improve event support impl doc", + "url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/pulls/75", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/pulls/75", + "type": "PullRequest" + }, + "repository": { + "id": 12713417, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjcxMzQxNw==", + "name": "scm-api-plugin", + "full_name": "jenkinsci/scm-api-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/scm-api-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/scm-api-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/554691456", + "subscription_url": "https://api.github.com/notifications/threads/554691456/subscription" + }, + { + "id": "594817861", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-09-30T08:49:01Z", + "last_read_at": "2019-09-30T16:05:46Z", + "subject": { + "title": "Add a Hacktoberfest project section for the warnings plugin", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2515", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments/536466150", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/594817861", + "subscription_url": "https://api.github.com/notifications/threads/594817861/subscription" + }, + { + "id": "595056906", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-30T16:12:55Z", + "last_read_at": "2019-09-30T15:42:51Z", + "subject": { + "title": "Bump wiremock-jre8-standalone from 2.24.1 to 2.25.0", + "url": "https://api.github.com/repos/github-api/github-api/pulls/556", + "latest_comment_url": null, + "type": "PullRequest" + }, + "repository": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments" + }, + "url": "https://api.github.com/notifications/threads/595056906", + "subscription_url": "https://api.github.com/notifications/threads/595056906/subscription" + }, + { + "id": "595007231", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-30T08:28:03Z", + "last_read_at": "2019-09-30T16:05:18Z", + "subject": { + "title": "Add scroll to link to the top of the landing page", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/89", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/89", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/595007231", + "subscription_url": "https://api.github.com/notifications/threads/595007231/subscription" + }, + { + "id": "593642614", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-30T06:53:05Z", + "last_read_at": "2019-09-30T15:40:20Z", + "subject": { + "title": "Bump @types/lodash from 4.14.138 to 4.14.140", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/119", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/119", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/593642614", + "subscription_url": "https://api.github.com/notifications/threads/593642614/subscription" + }, + { + "id": "592801322", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-30T06:50:25Z", + "last_read_at": "2019-09-30T15:40:20Z", + "subject": { + "title": "Bump eslint-loader from 2.2.1 to 3.0.1", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/117", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/117", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/592801322", + "subscription_url": "https://api.github.com/notifications/threads/592801322/subscription" + }, + { + "id": "594211352", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-30T05:10:17Z", + "last_read_at": "2019-09-30T16:05:18Z", + "subject": { + "title": "CSDOCS-161 - Add target to run server with Node debugger enabled", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/88", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments/536403449", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/594211352", + "subscription_url": "https://api.github.com/notifications/threads/594211352/subscription" + }, + { + "id": "593613877", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-30T03:07:19Z", + "last_read_at": "2019-09-30T16:05:18Z", + "subject": { + "title": "[CSDOCS-146] Add search page as a separate page and as a modal", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/86", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/86", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/593613877", + "subscription_url": "https://api.github.com/notifications/threads/593613877/subscription" + }, + { + "id": "591084803", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-29T18:08:50Z", + "last_read_at": "2019-09-29T23:02:05Z", + "subject": { + "title": "Bump @babel/preset-env from 7.5.5 to 7.6.2", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/112", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/112", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/591084803", + "subscription_url": "https://api.github.com/notifications/threads/591084803/subscription" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/__files/notifications-9437189d-2f1b-47de-898d-66fde88ef05b.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/__files/notifications-9437189d-2f1b-47de-898d-66fde88ef05b.json new file mode 100644 index 0000000000..e153442cd3 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/__files/notifications-9437189d-2f1b-47de-898d-66fde88ef05b.json @@ -0,0 +1,4102 @@ +[ + { + "id": "568227170", + "unread": true, + "reason": "mention", + "updated_at": "2019-10-10T17:05:03Z", + "last_read_at": null, + "subject": { + "title": "Features/windows agents with pathing issues fixed", + "url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/pulls/184", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/issues/comments/540680946", + "type": "PullRequest" + }, + "repository": { + "id": 36385785, + "node_id": "MDEwOlJlcG9zaXRvcnkzNjM4NTc4NQ==", + "name": "docker-workflow-plugin", + "full_name": "jenkinsci/docker-workflow-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/docker-workflow-plugin", + "description": "Jenkins plugin which allows building, testing, and using Docker images from Jenkins Pipeline projects.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/568227170", + "subscription_url": "https://api.github.com/notifications/threads/568227170/subscription" + }, + { + "id": "602238556", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-09T22:17:28Z", + "last_read_at": null, + "subject": { + "title": "TSM-107", + "url": "https://api.github.com/repos/cloudbees/jenkins-scripts/pulls/112", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/pulls/112", + "type": "PullRequest" + }, + "repository": { + "id": 49162083, + "node_id": "MDEwOlJlcG9zaXRvcnk0OTE2MjA4Mw==", + "name": "jenkins-scripts", + "full_name": "cloudbees/jenkins-scripts", + "private": false, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jenkins-scripts", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jenkins-scripts", + "forks_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/deployments" + }, + "url": "https://api.github.com/notifications/threads/602238556", + "subscription_url": "https://api.github.com/notifications/threads/602238556/subscription" + }, + { + "id": "602627910", + "unread": true, + "reason": "mention", + "updated_at": "2019-10-10T13:03:22Z", + "last_read_at": null, + "subject": { + "title": "adding joseblas as developer to several pipeline/workflow projects", + "url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater/pulls/1298", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater/pulls/1298", + "type": "PullRequest" + }, + "repository": { + "id": 65755485, + "node_id": "MDEwOlJlcG9zaXRvcnk2NTc1NTQ4NQ==", + "name": "repository-permissions-updater", + "full_name": "jenkins-infra/repository-permissions-updater", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/repository-permissions-updater", + "description": "Artifactory permissions synchronization tool and data set", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater", + "forks_url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/repository-permissions-updater/deployments" + }, + "url": "https://api.github.com/notifications/threads/602627910", + "subscription_url": "https://api.github.com/notifications/threads/602627910/subscription" + }, + { + "id": "602575946", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-10T09:58:55Z", + "last_read_at": null, + "subject": { + "title": "[CSDOCS-202] change code block colour and re-style TOC table", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/113", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/113", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/602575946", + "subscription_url": "https://api.github.com/notifications/threads/602575946/subscription" + }, + { + "id": "602514677", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-10T09:57:20Z", + "last_read_at": null, + "subject": { + "title": "[CSDOCS-203] update search url with query param", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/112", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/112", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/602514677", + "subscription_url": "https://api.github.com/notifications/threads/602514677/subscription" + }, + { + "id": "602557980", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-10T09:53:33Z", + "last_read_at": null, + "subject": { + "title": "Allow empty archive", + "url": "https://api.github.com/repos/cloudbees/urap/pulls/17", + "latest_comment_url": "https://api.github.com/repos/cloudbees/urap/pulls/17", + "type": "PullRequest" + }, + "repository": { + "id": 202161566, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDIxNjE1NjY=", + "name": "urap", + "full_name": "cloudbees/urap", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/urap", + "description": "Unified Release Automatic Plugin updater. https://en.wikipedia.org/wiki/Urap", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/urap", + "forks_url": "https://api.github.com/repos/cloudbees/urap/forks", + "keys_url": "https://api.github.com/repos/cloudbees/urap/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/urap/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/urap/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/urap/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/urap/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/urap/events", + "assignees_url": "https://api.github.com/repos/cloudbees/urap/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/urap/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/urap/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/urap/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/urap/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/urap/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/urap/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/urap/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/urap/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/urap/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/urap/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/urap/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/urap/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/urap/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/urap/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/urap/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/urap/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/urap/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/urap/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/urap/merges", + "archive_url": "https://api.github.com/repos/cloudbees/urap/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/urap/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/urap/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/urap/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/urap/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/urap/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/urap/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/urap/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/urap/deployments" + }, + "url": "https://api.github.com/notifications/threads/602557980", + "subscription_url": "https://api.github.com/notifications/threads/602557980/subscription" + }, + { + "id": "389196744", + "unread": false, + "reason": "mention", + "updated_at": "2019-10-10T09:15:00Z", + "last_read_at": "2019-10-11T18:21:39Z", + "subject": { + "title": "Added topics", + "url": "https://api.github.com/repos/github-api/github-api/pulls/463", + "latest_comment_url": "https://api.github.com/repos/github-api/github-api/pulls/comments/334157976", + "type": "PullRequest" + }, + "repository": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments" + }, + "url": "https://api.github.com/notifications/threads/389196744", + "subscription_url": "https://api.github.com/notifications/threads/389196744/subscription" + }, + { + "id": "601940354", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-10T07:46:50Z", + "last_read_at": null, + "subject": { + "title": "Fix bug when newest compatible version is first.", + "url": "https://api.github.com/repos/cloudbees/urap/pulls/16", + "latest_comment_url": "https://api.github.com/repos/cloudbees/urap/pulls/16", + "type": "PullRequest" + }, + "repository": { + "id": 202161566, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDIxNjE1NjY=", + "name": "urap", + "full_name": "cloudbees/urap", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/urap", + "description": "Unified Release Automatic Plugin updater. https://en.wikipedia.org/wiki/Urap", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/urap", + "forks_url": "https://api.github.com/repos/cloudbees/urap/forks", + "keys_url": "https://api.github.com/repos/cloudbees/urap/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/urap/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/urap/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/urap/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/urap/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/urap/events", + "assignees_url": "https://api.github.com/repos/cloudbees/urap/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/urap/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/urap/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/urap/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/urap/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/urap/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/urap/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/urap/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/urap/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/urap/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/urap/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/urap/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/urap/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/urap/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/urap/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/urap/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/urap/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/urap/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/urap/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/urap/merges", + "archive_url": "https://api.github.com/repos/cloudbees/urap/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/urap/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/urap/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/urap/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/urap/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/urap/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/urap/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/urap/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/urap/deployments" + }, + "url": "https://api.github.com/notifications/threads/601940354", + "subscription_url": "https://api.github.com/notifications/threads/601940354/subscription" + }, + { + "id": "602405577", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-10T05:31:46Z", + "last_read_at": null, + "subject": { + "title": "CSDOCS-148 - Block robots and turn off sitemap in staging", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/111", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/111", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/602405577", + "subscription_url": "https://api.github.com/notifications/threads/602405577/subscription" + }, + { + "id": "602392681", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-10T05:29:41Z", + "last_read_at": null, + "subject": { + "title": "CSDOCS-205 - Add a site activation button", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/110", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/110", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/602392681", + "subscription_url": "https://api.github.com/notifications/threads/602392681/subscription" + }, + { + "id": "601263538", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-10T05:03:58Z", + "last_read_at": null, + "subject": { + "title": "[PoC] Switch from manually loaded to asynchronously loaded inner caches", + "url": "https://api.github.com/repos/jenkinsci/script-security-plugin/pulls/271", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/issues/comments/540364033", + "type": "PullRequest" + }, + "repository": { + "id": 17301604, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzMwMTYwNA==", + "name": "script-security-plugin", + "full_name": "jenkinsci/script-security-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/script-security-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/script-security-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/601263538", + "subscription_url": "https://api.github.com/notifications/threads/601263538/subscription" + }, + { + "id": "602338052", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-10T02:27:39Z", + "last_read_at": null, + "subject": { + "title": "[CSDOCS-163] Add 2-column documentation menu in header and fix some other small bugs", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/109", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/109", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/602338052", + "subscription_url": "https://api.github.com/notifications/threads/602338052/subscription" + }, + { + "id": "601338740", + "unread": true, + "reason": "review_requested", + "updated_at": "2019-10-09T23:30:13Z", + "last_read_at": "2019-10-09T04:07:28Z", + "subject": { + "title": "Added a participate/design page", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2552", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments/540248903", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/601338740", + "subscription_url": "https://api.github.com/notifications/threads/601338740/subscription" + }, + { + "id": "602255798", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-09T22:52:21Z", + "last_read_at": null, + "subject": { + "title": "clarify file creation", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/commits/8c99a5fc3b5b7ce584963d51d9bc5f99210843e7", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments/35434610", + "type": "Commit" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/602255798", + "subscription_url": "https://api.github.com/notifications/threads/602255798/subscription" + }, + { + "id": "599884480", + "unread": true, + "reason": "review_requested", + "updated_at": "2019-10-09T21:33:02Z", + "last_read_at": "2019-10-09T04:07:29Z", + "subject": { + "title": "Add Jenkins BOM usage information to plugin development.", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2547", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2547", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/599884480", + "subscription_url": "https://api.github.com/notifications/threads/599884480/subscription" + }, + { + "id": "426471670", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-10-11T18:48:47Z", + "last_read_at": "2019-10-11T17:24:40Z", + "subject": { + "title": "Add support for editing Gists", + "url": "https://api.github.com/repos/github-api/github-api/pulls/484", + "latest_comment_url": "https://api.github.com/repos/github-api/github-api/pulls/comments/334128857", + "type": "PullRequest" + }, + "repository": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments" + }, + "url": "https://api.github.com/notifications/threads/426471670", + "subscription_url": "https://api.github.com/notifications/threads/426471670/subscription" + }, + { + "id": "601549480", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-09T16:09:18Z", + "last_read_at": "2019-10-16T02:10:52Z", + "subject": { + "title": "chore(deps-dev): bump @babel/preset-env from 7.6.2 to 7.6.3", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/149", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/149", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/601549480", + "subscription_url": "https://api.github.com/notifications/threads/601549480/subscription" + }, + { + "id": "601549159", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-09T16:09:00Z", + "last_read_at": "2019-10-16T02:10:52Z", + "subject": { + "title": "chore(deps-dev): bump @babel/core from 7.6.2 to 7.6.3", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/148", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/148", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/601549159", + "subscription_url": "https://api.github.com/notifications/threads/601549159/subscription" + }, + { + "id": "601548803", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-09T16:08:42Z", + "last_read_at": "2019-10-16T02:10:52Z", + "subject": { + "title": "chore(deps-dev): bump @babel/preset-react from 7.0.0 to 7.6.3", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/147", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/147", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/601548803", + "subscription_url": "https://api.github.com/notifications/threads/601548803/subscription" + }, + { + "id": "601928894", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-09T16:02:04Z", + "last_read_at": "2019-10-16T02:10:52Z", + "subject": { + "title": "feat: [CBDA-139] Radio button and radio button group", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/150", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/150", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/601928894", + "subscription_url": "https://api.github.com/notifications/threads/601928894/subscription" + }, + { + "id": "363957385", + "unread": true, + "reason": "mention", + "updated_at": "2019-10-09T14:35:37Z", + "last_read_at": "2019-08-28T20:26:40Z", + "subject": { + "title": "feat/windows slaves", + "url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/pulls/148", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/pulls/148", + "type": "PullRequest" + }, + "repository": { + "id": 36385785, + "node_id": "MDEwOlJlcG9zaXRvcnkzNjM4NTc4NQ==", + "name": "docker-workflow-plugin", + "full_name": "jenkinsci/docker-workflow-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/docker-workflow-plugin", + "description": "Jenkins plugin which allows building, testing, and using Docker images from Jenkins Pipeline projects.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/363957385", + "subscription_url": "https://api.github.com/notifications/threads/363957385/subscription" + }, + { + "id": "532898366", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-09T14:33:08Z", + "last_read_at": "2019-09-30T16:05:46Z", + "subject": { + "title": "Cloudfeature gsoc cp1", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2366", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments/540028850", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/532898366", + "subscription_url": "https://api.github.com/notifications/threads/532898366/subscription" + }, + { + "id": "532882346", + "unread": true, + "reason": "review_requested", + "updated_at": "2019-10-09T14:30:43Z", + "last_read_at": "2019-10-07T15:33:44Z", + "subject": { + "title": "Use casc for exws", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2365", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments/540027693", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/532882346", + "subscription_url": "https://api.github.com/notifications/threads/532882346/subscription" + }, + { + "id": "601788787", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-09T14:08:58Z", + "last_read_at": null, + "subject": { + "title": "Add Calendar and DateFormat members to generic whitelist", + "url": "https://api.github.com/repos/jenkinsci/script-security-plugin/pulls/272", + "latest_comment_url": null, + "type": "PullRequest" + }, + "repository": { + "id": 17301604, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzMwMTYwNA==", + "name": "script-security-plugin", + "full_name": "jenkinsci/script-security-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/script-security-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/script-security-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/601788787", + "subscription_url": "https://api.github.com/notifications/threads/601788787/subscription" + }, + { + "id": "598647703", + "unread": true, + "reason": "comment", + "updated_at": "2019-10-09T14:00:25Z", + "last_read_at": null, + "subject": { + "title": "FlowExecutionListener fireCompleted before logs are closed", + "url": "https://api.github.com/repos/jenkinsci/workflow-job-plugin/pulls/142", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/workflow-job-plugin/pulls/142", + "type": "PullRequest" + }, + "repository": { + "id": 55543389, + "node_id": "MDEwOlJlcG9zaXRvcnk1NTU0MzM4OQ==", + "name": "workflow-job-plugin", + "full_name": "jenkinsci/workflow-job-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/workflow-job-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/workflow-job-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/workflow-job-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/workflow-job-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/workflow-job-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/workflow-job-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/workflow-job-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/workflow-job-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/workflow-job-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/workflow-job-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/workflow-job-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/workflow-job-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/workflow-job-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/workflow-job-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/workflow-job-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/workflow-job-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/workflow-job-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/workflow-job-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/workflow-job-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/workflow-job-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/workflow-job-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/workflow-job-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/workflow-job-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/workflow-job-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/workflow-job-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/workflow-job-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/workflow-job-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/workflow-job-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/workflow-job-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/workflow-job-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/workflow-job-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/workflow-job-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/workflow-job-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/workflow-job-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/workflow-job-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/workflow-job-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/workflow-job-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/workflow-job-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/598647703", + "subscription_url": "https://api.github.com/notifications/threads/598647703/subscription" + }, + { + "id": "553627603", + "unread": true, + "reason": "comment", + "updated_at": "2019-10-09T13:36:24Z", + "last_read_at": "2019-09-29T16:12:40Z", + "subject": { + "title": "[JENKINS-58071] Add support for new github-branch-source single repo selector", + "url": "https://api.github.com/repos/jenkinsci/acceptance-test-harness/pulls/519", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/acceptance-test-harness/pulls/519", + "type": "PullRequest" + }, + "repository": { + "id": 17294237, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzI5NDIzNw==", + "name": "acceptance-test-harness", + "full_name": "jenkinsci/acceptance-test-harness", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/acceptance-test-harness", + "description": "Acceptance tests cases for Jenkins and its plug-ins based on selenium and docker.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/acceptance-test-harness", + "forks_url": "https://api.github.com/repos/jenkinsci/acceptance-test-harness/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/acceptance-test-harness/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/acceptance-test-harness/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/acceptance-test-harness/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/acceptance-test-harness/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/acceptance-test-harness/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/acceptance-test-harness/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/acceptance-test-harness/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/acceptance-test-harness/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/acceptance-test-harness/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/acceptance-test-harness/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/acceptance-test-harness/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/acceptance-test-harness/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/acceptance-test-harness/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/acceptance-test-harness/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/acceptance-test-harness/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/acceptance-test-harness/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/acceptance-test-harness/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/acceptance-test-harness/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/acceptance-test-harness/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/acceptance-test-harness/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/acceptance-test-harness/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/acceptance-test-harness/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/acceptance-test-harness/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/acceptance-test-harness/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/acceptance-test-harness/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/acceptance-test-harness/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/acceptance-test-harness/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/acceptance-test-harness/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/acceptance-test-harness/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/acceptance-test-harness/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/acceptance-test-harness/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/acceptance-test-harness/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/acceptance-test-harness/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/acceptance-test-harness/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/acceptance-test-harness/deployments" + }, + "url": "https://api.github.com/notifications/threads/553627603", + "subscription_url": "https://api.github.com/notifications/threads/553627603/subscription" + }, + { + "id": "600093578", + "unread": false, + "reason": "mention", + "updated_at": "2019-10-09T18:02:55Z", + "last_read_at": "2019-10-09T17:38:55Z", + "subject": { + "title": "Add merge options to GHRepository", + "url": "https://api.github.com/repos/github-api/github-api/pulls/567", + "latest_comment_url": "https://api.github.com/repos/github-api/github-api/pulls/567", + "type": "PullRequest" + }, + "repository": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments" + }, + "url": "https://api.github.com/notifications/threads/600093578", + "subscription_url": "https://api.github.com/notifications/threads/600093578/subscription" + }, + { + "id": "496790982", + "unread": false, + "reason": "author", + "updated_at": "2019-10-09T12:17:26Z", + "last_read_at": "2019-10-09T15:31:27Z", + "subject": { + "title": "Add new event types ", + "url": "https://api.github.com/repos/github-api/github-api/issues/519", + "latest_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments/539974841", + "type": "Issue" + }, + "repository": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments" + }, + "url": "https://api.github.com/notifications/threads/496790982", + "subscription_url": "https://api.github.com/notifications/threads/496790982/subscription" + }, + { + "id": "598758861", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-09T12:15:46Z", + "last_read_at": "2019-10-05T07:24:49Z", + "subject": { + "title": "Add Calendar and DateFormat members to generic whitelist", + "url": "https://api.github.com/repos/jenkinsci/script-security-plugin/pulls/270", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/pulls/270", + "type": "PullRequest" + }, + "repository": { + "id": 17301604, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzMwMTYwNA==", + "name": "script-security-plugin", + "full_name": "jenkinsci/script-security-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/script-security-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/script-security-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/598758861", + "subscription_url": "https://api.github.com/notifications/threads/598758861/subscription" + }, + { + "id": "601776594", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-09T12:02:23Z", + "last_read_at": "2019-10-18T18:29:29Z", + "subject": { + "title": "chore(deps): bump https://github.com/cloudbees/jxui-frontend.git from 0.0.889 to 0.0.891", + "url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/52", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/52", + "type": "PullRequest" + }, + "repository": { + "id": 183067295, + "node_id": "MDEwOlJlcG9zaXRvcnkxODMwNjcyOTU=", + "name": "jx-app-ui", + "full_name": "cloudbees/jx-app-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jx-app-ui", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jx-app-ui", + "forks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jx-app-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jx-app-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jx-app-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jx-app-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jx-app-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jx-app-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jx-app-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jx-app-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jx-app-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jx-app-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jx-app-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jx-app-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jx-app-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jx-app-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/601776594", + "subscription_url": "https://api.github.com/notifications/threads/601776594/subscription" + }, + { + "id": "560498827", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-09T12:00:33Z", + "last_read_at": "2019-09-30T16:10:01Z", + "subject": { + "title": "[JENKINS-58643] Ignore mismatch warnings when receiver is a plugin", + "url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls/314", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/comments/539969635", + "type": "PullRequest" + }, + "repository": { + "id": 55543225, + "node_id": "MDEwOlJlcG9zaXRvcnk1NTU0MzIyNQ==", + "name": "workflow-cps-plugin", + "full_name": "jenkinsci/workflow-cps-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/workflow-cps-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/560498827", + "subscription_url": "https://api.github.com/notifications/threads/560498827/subscription" + }, + { + "id": "601608107", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-09T09:06:16Z", + "last_read_at": null, + "subject": { + "title": "CSDOCS-197 - Add new fields and load them in the build phase", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/108", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/108", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/601608107", + "subscription_url": "https://api.github.com/notifications/threads/601608107/subscription" + }, + { + "id": "601559509", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-09T08:16:12Z", + "last_read_at": null, + "subject": { + "title": "CSDOCS-189 - Improve docsite CLI around the sharp edges", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/107", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/107", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/601559509", + "subscription_url": "https://api.github.com/notifications/threads/601559509/subscription" + }, + { + "id": "601566244", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-09T07:09:02Z", + "last_read_at": null, + "subject": { + "title": "Blog/blue ocean editor", + "url": "https://api.github.com/repos/bitwise-jenkins/junit-plugin/pulls/11", + "latest_comment_url": "https://api.github.com/repos/bitwise-jenkins/junit-plugin/pulls/11", + "type": "PullRequest" + }, + "repository": { + "id": 86499287, + "node_id": "MDEwOlJlcG9zaXRvcnk4NjQ5OTI4Nw==", + "name": "junit-plugin", + "full_name": "bitwise-jenkins/junit-plugin", + "private": false, + "owner": { + "login": "bitwise-jenkins", + "id": 24939347, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjI0OTM5MzQ3", + "avatar_url": "https://avatars2.githubusercontent.com/u/24939347?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwise-jenkins", + "html_url": "https://github.com/bitwise-jenkins", + "followers_url": "https://api.github.com/users/bitwise-jenkins/followers", + "following_url": "https://api.github.com/users/bitwise-jenkins/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwise-jenkins/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwise-jenkins/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwise-jenkins/subscriptions", + "organizations_url": "https://api.github.com/users/bitwise-jenkins/orgs", + "repos_url": "https://api.github.com/users/bitwise-jenkins/repos", + "events_url": "https://api.github.com/users/bitwise-jenkins/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwise-jenkins/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/bitwise-jenkins/junit-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/bitwise-jenkins/junit-plugin", + "forks_url": "https://api.github.com/repos/bitwise-jenkins/junit-plugin/forks", + "keys_url": "https://api.github.com/repos/bitwise-jenkins/junit-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwise-jenkins/junit-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwise-jenkins/junit-plugin/teams", + "hooks_url": "https://api.github.com/repos/bitwise-jenkins/junit-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/bitwise-jenkins/junit-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwise-jenkins/junit-plugin/events", + "assignees_url": "https://api.github.com/repos/bitwise-jenkins/junit-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwise-jenkins/junit-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwise-jenkins/junit-plugin/tags", + "blobs_url": "https://api.github.com/repos/bitwise-jenkins/junit-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwise-jenkins/junit-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwise-jenkins/junit-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwise-jenkins/junit-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwise-jenkins/junit-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwise-jenkins/junit-plugin/languages", + "stargazers_url": "https://api.github.com/repos/bitwise-jenkins/junit-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/bitwise-jenkins/junit-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/bitwise-jenkins/junit-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/bitwise-jenkins/junit-plugin/subscription", + "commits_url": "https://api.github.com/repos/bitwise-jenkins/junit-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwise-jenkins/junit-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwise-jenkins/junit-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwise-jenkins/junit-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwise-jenkins/junit-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwise-jenkins/junit-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwise-jenkins/junit-plugin/merges", + "archive_url": "https://api.github.com/repos/bitwise-jenkins/junit-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwise-jenkins/junit-plugin/downloads", + "issues_url": "https://api.github.com/repos/bitwise-jenkins/junit-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwise-jenkins/junit-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwise-jenkins/junit-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwise-jenkins/junit-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwise-jenkins/junit-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwise-jenkins/junit-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwise-jenkins/junit-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/601566244", + "subscription_url": "https://api.github.com/notifications/threads/601566244/subscription" + }, + { + "id": "601507592", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-09T05:24:04Z", + "last_read_at": null, + "subject": { + "title": "CSDOCS-195 search extraction improvements", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/106", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/106", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/601507592", + "subscription_url": "https://api.github.com/notifications/threads/601507592/subscription" + }, + { + "id": "599764220", + "unread": false, + "reason": "mention", + "updated_at": "2019-10-11T20:20:18Z", + "last_read_at": "2019-10-09T01:25:03Z", + "subject": { + "title": "Simplify creation of PagedIterables from requests", + "url": "https://api.github.com/repos/github-api/github-api/pulls/563", + "latest_comment_url": "https://api.github.com/repos/github-api/github-api/pulls/563", + "type": "PullRequest" + }, + "repository": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments" + }, + "url": "https://api.github.com/notifications/threads/599764220", + "subscription_url": "https://api.github.com/notifications/threads/599764220/subscription" + }, + { + "id": "600687739", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-09T00:13:41Z", + "last_read_at": "2019-10-09T01:35:19Z", + "subject": { + "title": "CSDOCS-186 - Split the server and worker into two separate engines", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/105", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/105", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/600687739", + "subscription_url": "https://api.github.com/notifications/threads/600687739/subscription" + }, + { + "id": "601386578", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-09T00:02:21Z", + "last_read_at": "2019-10-09T01:35:21Z", + "subject": { + "title": "chore(deps): bump https://github.com/cloudbees/jxui-frontend.git from 0.0.886 to 0.0.889", + "url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/51", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/51", + "type": "PullRequest" + }, + "repository": { + "id": 183067295, + "node_id": "MDEwOlJlcG9zaXRvcnkxODMwNjcyOTU=", + "name": "jx-app-ui", + "full_name": "cloudbees/jx-app-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jx-app-ui", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jx-app-ui", + "forks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jx-app-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jx-app-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jx-app-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jx-app-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jx-app-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jx-app-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jx-app-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jx-app-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jx-app-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jx-app-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jx-app-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jx-app-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jx-app-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jx-app-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/601386578", + "subscription_url": "https://api.github.com/notifications/threads/601386578/subscription" + }, + { + "id": "600679077", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-08T22:30:38Z", + "last_read_at": "2019-10-16T02:10:52Z", + "subject": { + "title": "chore(deps-dev): bump @storybook/addon-viewport from 5.2.1 to 5.2.3", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/143", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments/539731074", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/600679077", + "subscription_url": "https://api.github.com/notifications/threads/600679077/subscription" + }, + { + "id": "600678421", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-08T22:30:30Z", + "last_read_at": "2019-10-16T02:10:52Z", + "subject": { + "title": "chore(deps-dev): bump @storybook/addon-info from 5.1.11 to 5.2.3", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/141", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments/539731027", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/600678421", + "subscription_url": "https://api.github.com/notifications/threads/600678421/subscription" + }, + { + "id": "600677940", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-08T22:30:17Z", + "last_read_at": "2019-10-16T02:10:52Z", + "subject": { + "title": "chore(deps-dev): bump @storybook/addon-storysource from 5.1.11 to 5.2.3", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/140", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/140", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/600677940", + "subscription_url": "https://api.github.com/notifications/threads/600677940/subscription" + }, + { + "id": "600678773", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-08T22:30:05Z", + "last_read_at": "2019-10-16T02:10:52Z", + "subject": { + "title": "chore(deps-dev): bump @storybook/addons from 5.2.1 to 5.2.3", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/142", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments/539730883", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/600678773", + "subscription_url": "https://api.github.com/notifications/threads/600678773/subscription" + }, + { + "id": "601345902", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-08T22:24:33Z", + "last_read_at": "2019-10-16T02:10:52Z", + "subject": { + "title": "v0.6.0", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/releases/20562835", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases/20562835", + "type": "Release" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/601345902", + "subscription_url": "https://api.github.com/notifications/threads/601345902/subscription" + }, + { + "id": "600577416", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-08T22:22:20Z", + "last_read_at": "2019-10-16T02:10:52Z", + "subject": { + "title": "Popover", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/139", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/139", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/600577416", + "subscription_url": "https://api.github.com/notifications/threads/600577416/subscription" + }, + { + "id": "590231419", + "unread": true, + "reason": "review_requested", + "updated_at": "2019-10-08T20:11:06Z", + "last_read_at": "2019-10-05T07:24:49Z", + "subject": { + "title": "[JENKINS-59587] Use weakValues on the inner caches in SandboxResolvingClassLoader.parentClassCache instead of on the outer cache", + "url": "https://api.github.com/repos/jenkinsci/script-security-plugin/pulls/265", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/issues/comments/539682336", + "type": "PullRequest" + }, + "repository": { + "id": 17301604, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzMwMTYwNA==", + "name": "script-security-plugin", + "full_name": "jenkinsci/script-security-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/script-security-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/script-security-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/590231419", + "subscription_url": "https://api.github.com/notifications/threads/590231419/subscription" + }, + { + "id": "600679612", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-08T19:36:44Z", + "last_read_at": "2019-10-16T02:10:52Z", + "subject": { + "title": "chore(deps-dev): bump @storybook/react from 5.1.11 to 5.2.3", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/144", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/144", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/600679612", + "subscription_url": "https://api.github.com/notifications/threads/600679612/subscription" + }, + { + "id": "600679965", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-08T19:36:18Z", + "last_read_at": "2019-10-16T02:10:52Z", + "subject": { + "title": "chore(deps-dev): bump @types/lodash from 4.14.138 to 4.14.142", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/145", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/145", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/600679965", + "subscription_url": "https://api.github.com/notifications/threads/600679965/subscription" + }, + { + "id": "600680287", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-08T19:35:59Z", + "last_read_at": "2019-10-16T02:10:52Z", + "subject": { + "title": "chore(deps-dev): bump lint-staged from 9.4.1 to 9.4.2", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/146", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/146", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/600680287", + "subscription_url": "https://api.github.com/notifications/threads/600680287/subscription" + }, + { + "id": "506136514", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-08T17:57:44Z", + "last_read_at": null, + "subject": { + "title": "[JENKINS-24650] Enable syntax highlighting for groovy scripts.", + "url": "https://api.github.com/repos/jenkinsci/script-security-plugin/pulls/255", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/pulls/255", + "type": "PullRequest" + }, + "repository": { + "id": 17301604, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzMwMTYwNA==", + "name": "script-security-plugin", + "full_name": "jenkinsci/script-security-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/script-security-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/script-security-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/506136514", + "subscription_url": "https://api.github.com/notifications/threads/506136514/subscription" + }, + { + "id": "597900365", + "unread": true, + "reason": "review_requested", + "updated_at": "2019-10-08T15:59:08Z", + "last_read_at": "2019-10-05T07:24:45Z", + "subject": { + "title": "JCasC Community Bridge Dev-Tools Phase 1 Blog", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2539", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2539", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/597900365", + "subscription_url": "https://api.github.com/notifications/threads/597900365/subscription" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/__files/notifications-989db4b3-8dde-4065-b4ef-6a2d90a2753a.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/__files/notifications-989db4b3-8dde-4065-b4ef-6a2d90a2753a.json new file mode 100644 index 0000000000..f78e8f624f --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/__files/notifications-989db4b3-8dde-4065-b4ef-6a2d90a2753a.json @@ -0,0 +1,4102 @@ +[ + { + "id": "516353924", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-25T18:41:05Z", + "last_read_at": "2019-09-27T00:33:35Z", + "subject": { + "title": "Add initial plugin skelton", + "url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/commits/8bc075c997a2519384d1dd0a4ef6562014f826b6", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/comments/35236370", + "type": "Commit" + }, + "repository": { + "id": 159685662, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTk2ODU2NjI=", + "name": "audit-log-plugin", + "full_name": "jenkinsci/audit-log-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/audit-log-plugin", + "description": "Audit logging plugin for Jenkins based on Apache Log4j Audit", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/audit-log-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/516353924", + "subscription_url": "https://api.github.com/notifications/threads/516353924/subscription" + }, + { + "id": "592331673", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-09-25T15:33:52Z", + "last_read_at": "2019-09-28T18:11:42Z", + "subject": { + "title": "Update my biography", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2507", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2507", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/592331673", + "subscription_url": "https://api.github.com/notifications/threads/592331673/subscription" + }, + { + "id": "592310484", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-09-25T15:08:08Z", + "last_read_at": "2019-09-28T18:11:41Z", + "subject": { + "title": "Add banner for 2.176.4", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2505", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2505", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/592310484", + "subscription_url": "https://api.github.com/notifications/threads/592310484/subscription" + }, + { + "id": "592310948", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-09-25T15:07:28Z", + "last_read_at": "2019-09-28T18:11:46Z", + "subject": { + "title": "Use friendly label for CodeScan plugin (no longer published)", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2506", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2506", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/592310948", + "subscription_url": "https://api.github.com/notifications/threads/592310948/subscription" + }, + { + "id": "592210289", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-25T12:56:08Z", + "last_read_at": "2019-09-27T21:13:05Z", + "subject": { + "title": "chore(deps): bump https://github.com/cloudbees/jxui-frontend.git from 0.0.859 to 0.0.862", + "url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/38", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/38", + "type": "PullRequest" + }, + "repository": { + "id": 183067295, + "node_id": "MDEwOlJlcG9zaXRvcnkxODMwNjcyOTU=", + "name": "jx-app-ui", + "full_name": "cloudbees/jx-app-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jx-app-ui", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jx-app-ui", + "forks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jx-app-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jx-app-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jx-app-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jx-app-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jx-app-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jx-app-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jx-app-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jx-app-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jx-app-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jx-app-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jx-app-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jx-app-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jx-app-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jx-app-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/592210289", + "subscription_url": "https://api.github.com/notifications/threads/592210289/subscription" + }, + { + "id": "591227584", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-25T08:50:23Z", + "last_read_at": "2019-09-29T16:13:14Z", + "subject": { + "title": "[FNDJEN-1353] Send periodic event for liveliness of the instance.", + "url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/pulls/4", + "latest_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/pulls/comments/328003341", + "type": "PullRequest" + }, + "repository": { + "id": 205587249, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDU1ODcyNDk=", + "name": "cloudbees-analytics-plugin", + "full_name": "cloudbees/cloudbees-analytics-plugin", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/cloudbees-analytics-plugin", + "description": "The analytics plugin to gather and send information to an endpoint using a standard analytics API", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin", + "forks_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/forks", + "keys_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/events", + "assignees_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/merges", + "archive_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/591227584", + "subscription_url": "https://api.github.com/notifications/threads/591227584/subscription" + }, + { + "id": "591979509", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-25T17:07:45Z", + "last_read_at": "2019-09-25T17:07:07Z", + "subject": { + "title": "Bump commons-io from 1.4 to 2.6", + "url": "https://api.github.com/repos/github-api/github-api/pulls/555", + "latest_comment_url": "https://api.github.com/repos/github-api/github-api/pulls/555", + "type": "PullRequest" + }, + "repository": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments" + }, + "url": "https://api.github.com/notifications/threads/591979509", + "subscription_url": "https://api.github.com/notifications/threads/591979509/subscription" + }, + { + "id": "591979278", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-25T17:10:03Z", + "last_read_at": "2019-09-25T17:09:47Z", + "subject": { + "title": "Bump maven-surefire-plugin from 2.22.1 to 2.22.2", + "url": "https://api.github.com/repos/github-api/github-api/pulls/554", + "latest_comment_url": "https://api.github.com/repos/github-api/github-api/pulls/554", + "type": "PullRequest" + }, + "repository": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments" + }, + "url": "https://api.github.com/notifications/threads/591979278", + "subscription_url": "https://api.github.com/notifications/threads/591979278/subscription" + }, + { + "id": "591978669", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-25T17:09:34Z", + "last_read_at": "2019-09-25T17:08:13Z", + "subject": { + "title": "Bump commons-lang3 from 3.7 to 3.9", + "url": "https://api.github.com/repos/github-api/github-api/pulls/552", + "latest_comment_url": "https://api.github.com/repos/github-api/github-api/pulls/552", + "type": "PullRequest" + }, + "repository": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments" + }, + "url": "https://api.github.com/notifications/threads/591978669", + "subscription_url": "https://api.github.com/notifications/threads/591978669/subscription" + }, + { + "id": "591916542", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-25T06:02:30Z", + "last_read_at": "2019-09-28T18:10:12Z", + "subject": { + "title": "CSDOCS-156 - Added a boot banner, made setup-development pull newer files", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/81", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/81", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/591916542", + "subscription_url": "https://api.github.com/notifications/threads/591916542/subscription" + }, + { + "id": "591796071", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-25T03:57:55Z", + "last_read_at": "2019-09-28T15:10:40Z", + "subject": { + "title": "Fix some of the bugherd reported bugs", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/80", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments/534840511", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/591796071", + "subscription_url": "https://api.github.com/notifications/threads/591796071/subscription" + }, + { + "id": "591859453", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-25T03:06:33Z", + "last_read_at": "2019-09-29T16:07:09Z", + "subject": { + "title": "Should clean build history skip promoted builds?", + "url": "https://api.github.com/repos/cloudbees/jenkins-scripts/issues/110", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/issues/110", + "type": "Issue" + }, + "repository": { + "id": 49162083, + "node_id": "MDEwOlJlcG9zaXRvcnk0OTE2MjA4Mw==", + "name": "jenkins-scripts", + "full_name": "cloudbees/jenkins-scripts", + "private": false, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jenkins-scripts", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jenkins-scripts", + "forks_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/deployments" + }, + "url": "https://api.github.com/notifications/threads/591859453", + "subscription_url": "https://api.github.com/notifications/threads/591859453/subscription" + }, + { + "id": "591702074", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-09-25T00:16:16Z", + "last_read_at": "2019-09-28T18:11:48Z", + "subject": { + "title": "2019 Elections - Add an announcement blogpost and Jumbotron", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2504", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2504", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/591702074", + "subscription_url": "https://api.github.com/notifications/threads/591702074/subscription" + }, + { + "id": "591267188", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-24T23:07:59Z", + "last_read_at": "2019-09-25T01:34:29Z", + "subject": { + "title": "CSDOCS-149 - Generate a sane error for missing pages", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/79", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments/534782086", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/591267188", + "subscription_url": "https://api.github.com/notifications/threads/591267188/subscription" + }, + { + "id": "591662861", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-24T21:26:20Z", + "last_read_at": "2019-09-24T21:28:47Z", + "subject": { + "title": "Bump bridge-method-annotation from 1.17 to 1.18", + "url": "https://api.github.com/repos/github-api/github-api/pulls/549", + "latest_comment_url": null, + "type": "PullRequest" + }, + "repository": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments" + }, + "url": "https://api.github.com/notifications/threads/591662861", + "subscription_url": "https://api.github.com/notifications/threads/591662861/subscription" + }, + { + "id": "591663320", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-24T21:24:59Z", + "last_read_at": "2019-09-24T21:25:16Z", + "subject": { + "title": "Bump commons-codec from 1.7 to 1.13", + "url": "https://api.github.com/repos/github-api/github-api/pulls/551", + "latest_comment_url": "https://api.github.com/repos/github-api/github-api/pulls/551", + "type": "PullRequest" + }, + "repository": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments" + }, + "url": "https://api.github.com/notifications/threads/591663320", + "subscription_url": "https://api.github.com/notifications/threads/591663320/subscription" + }, + { + "id": "591663061", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-24T21:21:44Z", + "last_read_at": "2019-09-24T21:20:33Z", + "subject": { + "title": "Bump spotbugs-maven-plugin from 3.1.11 to 3.1.12.2", + "url": "https://api.github.com/repos/github-api/github-api/pulls/550", + "latest_comment_url": "https://api.github.com/repos/github-api/github-api/pulls/550", + "type": "PullRequest" + }, + "repository": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments" + }, + "url": "https://api.github.com/notifications/threads/591663061", + "subscription_url": "https://api.github.com/notifications/threads/591663061/subscription" + }, + { + "id": "591662617", + "unread": false, + "reason": "state_change", + "updated_at": "2019-09-24T21:18:36Z", + "last_read_at": "2019-09-27T00:33:29Z", + "subject": { + "title": "Bump jackson-databind from 2.9.10 to 2.10.0.pr3", + "url": "https://api.github.com/repos/github-api/github-api/pulls/548", + "latest_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments/534752648", + "type": "PullRequest" + }, + "repository": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments" + }, + "url": "https://api.github.com/notifications/threads/591662617", + "subscription_url": "https://api.github.com/notifications/threads/591662617/subscription" + }, + { + "id": "586810011", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-24T21:05:14Z", + "last_read_at": "2019-09-29T16:13:07Z", + "subject": { + "title": "[NGPIPELINE-685] Send over class name to allow processing over on Interana side", + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/pulls/18", + "latest_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/pulls/18", + "type": "PullRequest" + }, + "repository": { + "id": 200867838, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDA4Njc4Mzg=", + "name": "cloudbees-pipeline-analytics-plugin", + "full_name": "cloudbees/cloudbees-pipeline-analytics-plugin", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/cloudbees-pipeline-analytics-plugin", + "description": "PoC Plugin for https://cloudbees.atlassian.net/browse/NGPIPELINE-610", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin", + "forks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/forks", + "keys_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/events", + "assignees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/merges", + "archive_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/586810011", + "subscription_url": "https://api.github.com/notifications/threads/586810011/subscription" + }, + { + "id": "591662358", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-24T21:17:32Z", + "last_read_at": "2019-09-24T21:09:57Z", + "subject": { + "title": "Bump org.eclipse.jgit from 4.9.0.201710071750-r to 5.5.0.201909110433-r", + "url": "https://api.github.com/repos/github-api/github-api/pulls/547", + "latest_comment_url": "https://api.github.com/repos/github-api/github-api/pulls/547", + "type": "PullRequest" + }, + "repository": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments" + }, + "url": "https://api.github.com/notifications/threads/591662358", + "subscription_url": "https://api.github.com/notifications/threads/591662358/subscription" + }, + { + "id": "560876480", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-24T17:45:06Z", + "last_read_at": "2019-09-30T16:10:01Z", + "subject": { + "title": " JENKINS-58620 Test for the GroovyShell.evaluate mismatch ignore", + "url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls/315", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/comments/534670338", + "type": "PullRequest" + }, + "repository": { + "id": 55543225, + "node_id": "MDEwOlJlcG9zaXRvcnk1NTU0MzIyNQ==", + "name": "workflow-cps-plugin", + "full_name": "jenkinsci/workflow-cps-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/workflow-cps-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/560876480", + "subscription_url": "https://api.github.com/notifications/threads/560876480/subscription" + }, + { + "id": "576536680", + "unread": false, + "reason": "mention", + "updated_at": "2019-09-24T14:51:28Z", + "last_read_at": "2019-09-30T16:05:46Z", + "subject": { + "title": "[JENKINS-59115] Documentation for branch when condition with comparator", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2459", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments/534595530", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/576536680", + "subscription_url": "https://api.github.com/notifications/threads/576536680/subscription" + }, + { + "id": "588092420", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-24T14:45:00Z", + "last_read_at": "2019-09-29T16:13:14Z", + "subject": { + "title": "[FNDJEN-1517] [FNDJEN-1577] Track events of the setup wizard", + "url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/pulls/3", + "latest_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/pulls/3", + "type": "PullRequest" + }, + "repository": { + "id": 205587249, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDU1ODcyNDk=", + "name": "cloudbees-analytics-plugin", + "full_name": "cloudbees/cloudbees-analytics-plugin", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/cloudbees-analytics-plugin", + "description": "The analytics plugin to gather and send information to an endpoint using a standard analytics API", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin", + "forks_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/forks", + "keys_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/events", + "assignees_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/merges", + "archive_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/588092420", + "subscription_url": "https://api.github.com/notifications/threads/588092420/subscription" + }, + { + "id": "585499882", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-09-24T14:10:57Z", + "last_read_at": "2019-09-28T18:11:50Z", + "subject": { + "title": "Add blog post about audit-log 1.0", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2484", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2484", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/585499882", + "subscription_url": "https://api.github.com/notifications/threads/585499882/subscription" + }, + { + "id": "583532143", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-24T14:00:44Z", + "last_read_at": "2019-09-29T16:13:07Z", + "subject": { + "title": "Add basic docs and tweak some property naming", + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/pulls/15", + "latest_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/pulls/15", + "type": "PullRequest" + }, + "repository": { + "id": 200867838, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDA4Njc4Mzg=", + "name": "cloudbees-pipeline-analytics-plugin", + "full_name": "cloudbees/cloudbees-pipeline-analytics-plugin", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/cloudbees-pipeline-analytics-plugin", + "description": "PoC Plugin for https://cloudbees.atlassian.net/browse/NGPIPELINE-610", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin", + "forks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/forks", + "keys_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/events", + "assignees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/merges", + "archive_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/583532143", + "subscription_url": "https://api.github.com/notifications/threads/583532143/subscription" + }, + { + "id": "582348694", + "unread": false, + "reason": "author", + "updated_at": "2019-10-01T20:11:27Z", + "last_read_at": "2019-09-24T21:09:57Z", + "subject": { + "title": "Improved OkHttpConnector caching behavior", + "url": "https://api.github.com/repos/github-api/github-api/pulls/542", + "latest_comment_url": "https://api.github.com/repos/github-api/github-api/pulls/542", + "type": "PullRequest" + }, + "repository": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments" + }, + "url": "https://api.github.com/notifications/threads/582348694", + "subscription_url": "https://api.github.com/notifications/threads/582348694/subscription" + }, + { + "id": "591097710", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-24T08:09:45Z", + "last_read_at": "2019-09-25T01:34:29Z", + "subject": { + "title": "CSDOCS-145 - Previous / next navigation links ", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/77", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/77", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/591097710", + "subscription_url": "https://api.github.com/notifications/threads/591097710/subscription" + }, + { + "id": "591135675", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-24T07:47:48Z", + "last_read_at": "2019-09-25T01:34:29Z", + "subject": { + "title": "CSDOCS-150 - Update to latest k8s plugin volume mount points", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/78", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments/534436389", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/591135675", + "subscription_url": "https://api.github.com/notifications/threads/591135675/subscription" + }, + { + "id": "587794055", + "unread": false, + "reason": "team_mention", + "updated_at": "2019-09-24T07:00:01Z", + "last_read_at": "2019-09-29T16:13:08Z", + "subject": { + "title": "Autogenerated OSS plugin updates Sep 19, 2019", + "url": "https://api.github.com/repos/cloudbees/unified-release/pulls/1477", + "latest_comment_url": "https://api.github.com/repos/cloudbees/unified-release/pulls/1477", + "type": "PullRequest" + }, + "repository": { + "id": 78131017, + "node_id": "MDEwOlJlcG9zaXRvcnk3ODEzMTAxNw==", + "name": "unified-release", + "full_name": "cloudbees/unified-release", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/unified-release", + "description": "Unified Release Repository", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/unified-release", + "forks_url": "https://api.github.com/repos/cloudbees/unified-release/forks", + "keys_url": "https://api.github.com/repos/cloudbees/unified-release/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/unified-release/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/unified-release/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/unified-release/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/unified-release/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/unified-release/events", + "assignees_url": "https://api.github.com/repos/cloudbees/unified-release/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/unified-release/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/unified-release/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/unified-release/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/unified-release/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/unified-release/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/unified-release/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/unified-release/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/unified-release/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/unified-release/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/unified-release/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/unified-release/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/unified-release/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/unified-release/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/unified-release/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/unified-release/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/unified-release/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/unified-release/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/unified-release/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/unified-release/merges", + "archive_url": "https://api.github.com/repos/cloudbees/unified-release/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/unified-release/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/unified-release/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/unified-release/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/unified-release/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/unified-release/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/unified-release/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/unified-release/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/unified-release/deployments" + }, + "url": "https://api.github.com/notifications/threads/587794055", + "subscription_url": "https://api.github.com/notifications/threads/587794055/subscription" + }, + { + "id": "591067047", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-29T02:52:49Z", + "last_read_at": "2019-09-29T02:51:18Z", + "subject": { + "title": "How do I achieve a JSON.stringify({}, null, 2) output style?", + "url": "https://api.github.com/repos/beautify-web/js-beautify/issues/1709", + "latest_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/comments/536242975", + "type": "Issue" + }, + "repository": { + "id": 84822, + "node_id": "MDEwOlJlcG9zaXRvcnk4NDgyMg==", + "name": "js-beautify", + "full_name": "beautify-web/js-beautify", + "private": false, + "owner": { + "login": "beautify-web", + "id": 6538164, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjY1MzgxNjQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/6538164?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/beautify-web", + "html_url": "https://github.com/beautify-web", + "followers_url": "https://api.github.com/users/beautify-web/followers", + "following_url": "https://api.github.com/users/beautify-web/following{/other_user}", + "gists_url": "https://api.github.com/users/beautify-web/gists{/gist_id}", + "starred_url": "https://api.github.com/users/beautify-web/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/beautify-web/subscriptions", + "organizations_url": "https://api.github.com/users/beautify-web/orgs", + "repos_url": "https://api.github.com/users/beautify-web/repos", + "events_url": "https://api.github.com/users/beautify-web/events{/privacy}", + "received_events_url": "https://api.github.com/users/beautify-web/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/beautify-web/js-beautify", + "description": "Beautifier for javascript ", + "fork": false, + "url": "https://api.github.com/repos/beautify-web/js-beautify", + "forks_url": "https://api.github.com/repos/beautify-web/js-beautify/forks", + "keys_url": "https://api.github.com/repos/beautify-web/js-beautify/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/beautify-web/js-beautify/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/beautify-web/js-beautify/teams", + "hooks_url": "https://api.github.com/repos/beautify-web/js-beautify/hooks", + "issue_events_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/events{/number}", + "events_url": "https://api.github.com/repos/beautify-web/js-beautify/events", + "assignees_url": "https://api.github.com/repos/beautify-web/js-beautify/assignees{/user}", + "branches_url": "https://api.github.com/repos/beautify-web/js-beautify/branches{/branch}", + "tags_url": "https://api.github.com/repos/beautify-web/js-beautify/tags", + "blobs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/beautify-web/js-beautify/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/beautify-web/js-beautify/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/beautify-web/js-beautify/statuses/{sha}", + "languages_url": "https://api.github.com/repos/beautify-web/js-beautify/languages", + "stargazers_url": "https://api.github.com/repos/beautify-web/js-beautify/stargazers", + "contributors_url": "https://api.github.com/repos/beautify-web/js-beautify/contributors", + "subscribers_url": "https://api.github.com/repos/beautify-web/js-beautify/subscribers", + "subscription_url": "https://api.github.com/repos/beautify-web/js-beautify/subscription", + "commits_url": "https://api.github.com/repos/beautify-web/js-beautify/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/beautify-web/js-beautify/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/beautify-web/js-beautify/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/beautify-web/js-beautify/contents/{+path}", + "compare_url": "https://api.github.com/repos/beautify-web/js-beautify/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/beautify-web/js-beautify/merges", + "archive_url": "https://api.github.com/repos/beautify-web/js-beautify/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/beautify-web/js-beautify/downloads", + "issues_url": "https://api.github.com/repos/beautify-web/js-beautify/issues{/number}", + "pulls_url": "https://api.github.com/repos/beautify-web/js-beautify/pulls{/number}", + "milestones_url": "https://api.github.com/repos/beautify-web/js-beautify/milestones{/number}", + "notifications_url": "https://api.github.com/repos/beautify-web/js-beautify/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/beautify-web/js-beautify/labels{/name}", + "releases_url": "https://api.github.com/repos/beautify-web/js-beautify/releases{/id}", + "deployments_url": "https://api.github.com/repos/beautify-web/js-beautify/deployments" + }, + "url": "https://api.github.com/notifications/threads/591067047", + "subscription_url": "https://api.github.com/notifications/threads/591067047/subscription" + }, + { + "id": "590888021", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-24T02:28:24Z", + "last_read_at": "2019-09-25T01:34:29Z", + "subject": { + "title": "[CSDOCS-139] Fix style flash", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/76", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/76", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/590888021", + "subscription_url": "https://api.github.com/notifications/threads/590888021/subscription" + }, + { + "id": "590627343", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-23T22:38:07Z", + "last_read_at": "2019-09-27T21:13:05Z", + "subject": { + "title": "chore(deps): bump https://github.com/cloudbees/jxui-frontend.git from 0.0.857 to 0.0.859", + "url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/37", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/37", + "type": "PullRequest" + }, + "repository": { + "id": 183067295, + "node_id": "MDEwOlJlcG9zaXRvcnkxODMwNjcyOTU=", + "name": "jx-app-ui", + "full_name": "cloudbees/jx-app-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jx-app-ui", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jx-app-ui", + "forks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jx-app-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jx-app-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jx-app-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jx-app-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jx-app-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jx-app-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jx-app-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jx-app-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jx-app-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jx-app-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jx-app-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jx-app-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jx-app-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jx-app-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/590627343", + "subscription_url": "https://api.github.com/notifications/threads/590627343/subscription" + }, + { + "id": "590520066", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-23T21:20:50Z", + "last_read_at": "2019-09-24T21:09:57Z", + "subject": { + "title": "Manage repository topics", + "url": "https://api.github.com/repos/github-api/github-api/issues/546", + "latest_comment_url": "https://api.github.com/repos/github-api/github-api/issues/546", + "type": "Issue" + }, + "repository": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments" + }, + "url": "https://api.github.com/notifications/threads/590520066", + "subscription_url": "https://api.github.com/notifications/threads/590520066/subscription" + }, + { + "id": "588973914", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-23T17:43:34Z", + "last_read_at": "2019-09-29T01:05:51Z", + "subject": { + "title": "Feature request: python formatting", + "url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/issues/290", + "latest_comment_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/issues/comments/534207220", + "type": "Issue" + }, + "repository": { + "id": 7192181, + "node_id": "MDEwOlJlcG9zaXRvcnk3MTkyMTgx", + "name": "brackets-beautify", + "full_name": "brackets-beautify/brackets-beautify", + "private": false, + "owner": { + "login": "brackets-beautify", + "id": 15680026, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjgwMDI2", + "avatar_url": "https://avatars1.githubusercontent.com/u/15680026?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/brackets-beautify", + "html_url": "https://github.com/brackets-beautify", + "followers_url": "https://api.github.com/users/brackets-beautify/followers", + "following_url": "https://api.github.com/users/brackets-beautify/following{/other_user}", + "gists_url": "https://api.github.com/users/brackets-beautify/gists{/gist_id}", + "starred_url": "https://api.github.com/users/brackets-beautify/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/brackets-beautify/subscriptions", + "organizations_url": "https://api.github.com/users/brackets-beautify/orgs", + "repos_url": "https://api.github.com/users/brackets-beautify/repos", + "events_url": "https://api.github.com/users/brackets-beautify/events{/privacy}", + "received_events_url": "https://api.github.com/users/brackets-beautify/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/brackets-beautify/brackets-beautify", + "description": "Beautify HTML, CSS, and Javascript in Adobe Brackets", + "fork": false, + "url": "https://api.github.com/repos/brackets-beautify/brackets-beautify", + "forks_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/forks", + "keys_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/teams", + "hooks_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/hooks", + "issue_events_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/issues/events{/number}", + "events_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/events", + "assignees_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/assignees{/user}", + "branches_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/branches{/branch}", + "tags_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/tags", + "blobs_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/statuses/{sha}", + "languages_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/languages", + "stargazers_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/stargazers", + "contributors_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/contributors", + "subscribers_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/subscribers", + "subscription_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/subscription", + "commits_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/contents/{+path}", + "compare_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/merges", + "archive_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/downloads", + "issues_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/issues{/number}", + "pulls_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/pulls{/number}", + "milestones_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/milestones{/number}", + "notifications_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/labels{/name}", + "releases_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/releases{/id}", + "deployments_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/deployments" + }, + "url": "https://api.github.com/notifications/threads/588973914", + "subscription_url": "https://api.github.com/notifications/threads/588973914/subscription" + }, + { + "id": "590173882", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-23T17:00:08Z", + "last_read_at": "2019-09-27T21:13:05Z", + "subject": { + "title": "chore(deps): bump https://github.com/cloudbees/jxui-frontend.git from 0.0.855 to 0.0.857", + "url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/36", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/36", + "type": "PullRequest" + }, + "repository": { + "id": 183067295, + "node_id": "MDEwOlJlcG9zaXRvcnkxODMwNjcyOTU=", + "name": "jx-app-ui", + "full_name": "cloudbees/jx-app-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jx-app-ui", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jx-app-ui", + "forks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jx-app-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jx-app-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jx-app-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jx-app-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jx-app-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jx-app-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jx-app-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jx-app-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jx-app-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jx-app-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jx-app-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jx-app-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jx-app-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jx-app-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/590173882", + "subscription_url": "https://api.github.com/notifications/threads/590173882/subscription" + }, + { + "id": "590113058", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-23T15:35:07Z", + "last_read_at": "2019-09-27T21:13:05Z", + "subject": { + "title": "chore(deps): bump https://github.com/cloudbees/jxui-frontend.git from 0.0.854 to 0.0.855", + "url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/35", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/35", + "type": "PullRequest" + }, + "repository": { + "id": 183067295, + "node_id": "MDEwOlJlcG9zaXRvcnkxODMwNjcyOTU=", + "name": "jx-app-ui", + "full_name": "cloudbees/jx-app-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jx-app-ui", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jx-app-ui", + "forks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jx-app-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jx-app-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jx-app-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jx-app-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jx-app-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jx-app-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jx-app-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jx-app-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jx-app-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jx-app-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jx-app-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jx-app-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jx-app-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jx-app-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/590113058", + "subscription_url": "https://api.github.com/notifications/threads/590113058/subscription" + }, + { + "id": "589939207", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-09-23T12:46:27Z", + "last_read_at": "2019-09-30T16:05:46Z", + "subject": { + "title": "Add changelog for 2.196 and 2.197", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2503", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2503", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/589939207", + "subscription_url": "https://api.github.com/notifications/threads/589939207/subscription" + }, + { + "id": "589825355", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-23T09:49:09Z", + "last_read_at": "2019-09-29T16:06:56Z", + "subject": { + "title": "[FNDJEN-1531] Remove blocker given ATH test is not failing anymore", + "url": "https://api.github.com/repos/cloudbees/urap/pulls/13", + "latest_comment_url": "https://api.github.com/repos/cloudbees/urap/pulls/13", + "type": "PullRequest" + }, + "repository": { + "id": 202161566, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDIxNjE1NjY=", + "name": "urap", + "full_name": "cloudbees/urap", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/urap", + "description": "Unified Release Automatic Plugin updater. https://en.wikipedia.org/wiki/Urap", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/urap", + "forks_url": "https://api.github.com/repos/cloudbees/urap/forks", + "keys_url": "https://api.github.com/repos/cloudbees/urap/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/urap/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/urap/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/urap/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/urap/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/urap/events", + "assignees_url": "https://api.github.com/repos/cloudbees/urap/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/urap/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/urap/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/urap/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/urap/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/urap/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/urap/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/urap/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/urap/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/urap/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/urap/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/urap/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/urap/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/urap/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/urap/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/urap/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/urap/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/urap/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/urap/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/urap/merges", + "archive_url": "https://api.github.com/repos/cloudbees/urap/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/urap/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/urap/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/urap/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/urap/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/urap/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/urap/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/urap/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/urap/deployments" + }, + "url": "https://api.github.com/notifications/threads/589825355", + "subscription_url": "https://api.github.com/notifications/threads/589825355/subscription" + }, + { + "id": "589570137", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-09-23T09:31:05Z", + "last_read_at": "2019-09-30T16:05:46Z", + "subject": { + "title": "Fix broken links in 2019 blog posts", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2501", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2501", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/589570137", + "subscription_url": "https://api.github.com/notifications/threads/589570137/subscription" + }, + { + "id": "589074517", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-23T06:42:50Z", + "last_read_at": "2019-09-25T01:34:29Z", + "subject": { + "title": "CSDOCS-121 - Sitemap.xml reimplementation", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/73", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/73", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/589074517", + "subscription_url": "https://api.github.com/notifications/threads/589074517/subscription" + }, + { + "id": "586802060", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-23T06:39:29Z", + "last_read_at": "2019-09-26T21:38:59Z", + "subject": { + "title": "Bump @storybook/addon-storysource from 5.1.11 to 5.2.1", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/107", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments/533976102", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/586802060", + "subscription_url": "https://api.github.com/notifications/threads/586802060/subscription" + }, + { + "id": "586801851", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-23T06:39:17Z", + "last_read_at": "2019-09-26T21:38:59Z", + "subject": { + "title": "Bump @storybook/addon-info from 5.1.11 to 5.2.1", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/106", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments/533976061", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/586801851", + "subscription_url": "https://api.github.com/notifications/threads/586801851/subscription" + }, + { + "id": "589747810", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-23T06:39:02Z", + "last_read_at": "2019-09-26T21:38:59Z", + "subject": { + "title": "Bump lint-staged from 9.2.5 to 9.3.0", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/110", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/110", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/589747810", + "subscription_url": "https://api.github.com/notifications/threads/589747810/subscription" + }, + { + "id": "589601430", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-23T05:52:08Z", + "last_read_at": "2019-09-30T16:05:46Z", + "subject": { + "title": "Fix Asciidoc syntax in License", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2502", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2502", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/589601430", + "subscription_url": "https://api.github.com/notifications/threads/589601430/subscription" + }, + { + "id": "589373268", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-22T21:38:28Z", + "last_read_at": "2019-09-25T01:34:29Z", + "subject": { + "title": "CSDOCS-147", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/75", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/75", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/589373268", + "subscription_url": "https://api.github.com/notifications/threads/589373268/subscription" + }, + { + "id": "589116189", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-22T03:13:14Z", + "last_read_at": "2019-09-25T01:34:29Z", + "subject": { + "title": "[CSDOCS-147] Add csp exceptions for bugherd but only when we are on the staging site", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/74", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/74", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/589116189", + "subscription_url": "https://api.github.com/notifications/threads/589116189/subscription" + }, + { + "id": "589143517", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-09-21T18:32:08Z", + "last_read_at": "2019-09-30T16:05:46Z", + "subject": { + "title": "Hacktoberfest 2019 - Add a Jumbotron slide", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2500", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2500", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/589143517", + "subscription_url": "https://api.github.com/notifications/threads/589143517/subscription" + }, + { + "id": "589143192", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-09-21T12:46:08Z", + "last_read_at": "2019-09-30T16:05:46Z", + "subject": { + "title": "Update and rename 2019-10-10-Hacktoberfest-in-Neuchâtel", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2499", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2499", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/589143192", + "subscription_url": "https://api.github.com/notifications/threads/589143192/subscription" + }, + { + "id": "589062347", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-09-21T12:45:46Z", + "last_read_at": "2019-09-30T16:05:46Z", + "subject": { + "title": "Hacktoberfest 2019 - Add keywords to the featured projects", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2498", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2498", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/589062347", + "subscription_url": "https://api.github.com/notifications/threads/589062347/subscription" + }, + { + "id": "589051534", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-09-21T12:45:25Z", + "last_read_at": "2019-09-30T16:05:46Z", + "subject": { + "title": "Hacktoberfest 2019: Link the Swiss JAM", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2497", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2497", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/589051534", + "subscription_url": "https://api.github.com/notifications/threads/589051534/subscription" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/__files/notifications-a41aeecf-7097-4ac6-b857-ab14797afe0a.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/__files/notifications-a41aeecf-7097-4ac6-b857-ab14797afe0a.json new file mode 100644 index 0000000000..05ef72cca4 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/__files/notifications-a41aeecf-7097-4ac6-b857-ab14797afe0a.json @@ -0,0 +1,4102 @@ +[ + { + "id": "578993569", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-05T21:37:55Z", + "last_read_at": "2019-09-09T07:02:52Z", + "subject": { + "title": "Scripted syntax -> Scripted Syntax", + "url": "https://api.github.com/repos/darinpope/training-cloudbees-core-fundamentals/pulls/2", + "latest_comment_url": "https://api.github.com/repos/darinpope/training-cloudbees-core-fundamentals/pulls/2", + "type": "PullRequest" + }, + "repository": { + "id": 133823615, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzM4MjM2MTU=", + "name": "training-cloudbees-core-fundamentals", + "full_name": "darinpope/training-cloudbees-core-fundamentals", + "private": true, + "owner": { + "login": "darinpope", + "id": 121270, + "node_id": "MDQ6VXNlcjEyMTI3MA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/121270?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/darinpope", + "html_url": "https://github.com/darinpope", + "followers_url": "https://api.github.com/users/darinpope/followers", + "following_url": "https://api.github.com/users/darinpope/following{/other_user}", + "gists_url": "https://api.github.com/users/darinpope/gists{/gist_id}", + "starred_url": "https://api.github.com/users/darinpope/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/darinpope/subscriptions", + "organizations_url": "https://api.github.com/users/darinpope/orgs", + "repos_url": "https://api.github.com/users/darinpope/repos", + "events_url": "https://api.github.com/users/darinpope/events{/privacy}", + "received_events_url": "https://api.github.com/users/darinpope/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/darinpope/training-cloudbees-core-fundamentals", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/darinpope/training-cloudbees-core-fundamentals", + "forks_url": "https://api.github.com/repos/darinpope/training-cloudbees-core-fundamentals/forks", + "keys_url": "https://api.github.com/repos/darinpope/training-cloudbees-core-fundamentals/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/darinpope/training-cloudbees-core-fundamentals/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/darinpope/training-cloudbees-core-fundamentals/teams", + "hooks_url": "https://api.github.com/repos/darinpope/training-cloudbees-core-fundamentals/hooks", + "issue_events_url": "https://api.github.com/repos/darinpope/training-cloudbees-core-fundamentals/issues/events{/number}", + "events_url": "https://api.github.com/repos/darinpope/training-cloudbees-core-fundamentals/events", + "assignees_url": "https://api.github.com/repos/darinpope/training-cloudbees-core-fundamentals/assignees{/user}", + "branches_url": "https://api.github.com/repos/darinpope/training-cloudbees-core-fundamentals/branches{/branch}", + "tags_url": "https://api.github.com/repos/darinpope/training-cloudbees-core-fundamentals/tags", + "blobs_url": "https://api.github.com/repos/darinpope/training-cloudbees-core-fundamentals/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/darinpope/training-cloudbees-core-fundamentals/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/darinpope/training-cloudbees-core-fundamentals/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/darinpope/training-cloudbees-core-fundamentals/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/darinpope/training-cloudbees-core-fundamentals/statuses/{sha}", + "languages_url": "https://api.github.com/repos/darinpope/training-cloudbees-core-fundamentals/languages", + "stargazers_url": "https://api.github.com/repos/darinpope/training-cloudbees-core-fundamentals/stargazers", + "contributors_url": "https://api.github.com/repos/darinpope/training-cloudbees-core-fundamentals/contributors", + "subscribers_url": "https://api.github.com/repos/darinpope/training-cloudbees-core-fundamentals/subscribers", + "subscription_url": "https://api.github.com/repos/darinpope/training-cloudbees-core-fundamentals/subscription", + "commits_url": "https://api.github.com/repos/darinpope/training-cloudbees-core-fundamentals/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/darinpope/training-cloudbees-core-fundamentals/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/darinpope/training-cloudbees-core-fundamentals/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/darinpope/training-cloudbees-core-fundamentals/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/darinpope/training-cloudbees-core-fundamentals/contents/{+path}", + "compare_url": "https://api.github.com/repos/darinpope/training-cloudbees-core-fundamentals/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/darinpope/training-cloudbees-core-fundamentals/merges", + "archive_url": "https://api.github.com/repos/darinpope/training-cloudbees-core-fundamentals/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/darinpope/training-cloudbees-core-fundamentals/downloads", + "issues_url": "https://api.github.com/repos/darinpope/training-cloudbees-core-fundamentals/issues{/number}", + "pulls_url": "https://api.github.com/repos/darinpope/training-cloudbees-core-fundamentals/pulls{/number}", + "milestones_url": "https://api.github.com/repos/darinpope/training-cloudbees-core-fundamentals/milestones{/number}", + "notifications_url": "https://api.github.com/repos/darinpope/training-cloudbees-core-fundamentals/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/darinpope/training-cloudbees-core-fundamentals/labels{/name}", + "releases_url": "https://api.github.com/repos/darinpope/training-cloudbees-core-fundamentals/releases{/id}", + "deployments_url": "https://api.github.com/repos/darinpope/training-cloudbees-core-fundamentals/deployments" + }, + "url": "https://api.github.com/notifications/threads/578993569", + "subscription_url": "https://api.github.com/notifications/threads/578993569/subscription" + }, + { + "id": "578362213", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-05T20:56:31Z", + "last_read_at": "2019-09-09T07:02:51Z", + "subject": { + "title": "Minor edits", + "url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/pulls/117", + "latest_comment_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/pulls/117", + "type": "PullRequest" + }, + "repository": { + "id": 133071339, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzMwNzEzMzk=", + "name": "training-admin-fundamentals", + "full_name": "cloudbees/training-admin-fundamentals", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/training-admin-fundamentals", + "description": "Admin Fundamentals Course", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals", + "forks_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/forks", + "keys_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/events", + "assignees_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/merges", + "archive_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/training-admin-fundamentals/deployments" + }, + "url": "https://api.github.com/notifications/threads/578362213", + "subscription_url": "https://api.github.com/notifications/threads/578362213/subscription" + }, + { + "id": "578771249", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-05T15:35:24Z", + "last_read_at": "2019-09-09T07:02:49Z", + "subject": { + "title": "Update README to be more appropriate for plugins.jenkins.io", + "url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues/63", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues/63", + "type": "Issue" + }, + "repository": { + "id": 159685662, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTk2ODU2NjI=", + "name": "audit-log-plugin", + "full_name": "jenkinsci/audit-log-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/audit-log-plugin", + "description": "Audit logging plugin for Jenkins based on Apache Log4j Audit", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/audit-log-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/578771249", + "subscription_url": "https://api.github.com/notifications/threads/578771249/subscription" + }, + { + "id": "578770505", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-05T15:34:30Z", + "last_read_at": "2019-09-09T07:02:49Z", + "subject": { + "title": "Add styling to audit log", + "url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues/62", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues/62", + "type": "Issue" + }, + "repository": { + "id": 159685662, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTk2ODU2NjI=", + "name": "audit-log-plugin", + "full_name": "jenkinsci/audit-log-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/audit-log-plugin", + "description": "Audit logging plugin for Jenkins based on Apache Log4j Audit", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/audit-log-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/578770505", + "subscription_url": "https://api.github.com/notifications/threads/578770505/subscription" + }, + { + "id": "578621238", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-05T12:10:46Z", + "last_read_at": "2019-09-06T04:04:05Z", + "subject": { + "title": "Feature request: strip keys with default json values", + "url": "https://api.github.com/repos/beautify-web/js-beautify/issues/1704", + "latest_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/1704", + "type": "Issue" + }, + "repository": { + "id": 84822, + "node_id": "MDEwOlJlcG9zaXRvcnk4NDgyMg==", + "name": "js-beautify", + "full_name": "beautify-web/js-beautify", + "private": false, + "owner": { + "login": "beautify-web", + "id": 6538164, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjY1MzgxNjQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/6538164?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/beautify-web", + "html_url": "https://github.com/beautify-web", + "followers_url": "https://api.github.com/users/beautify-web/followers", + "following_url": "https://api.github.com/users/beautify-web/following{/other_user}", + "gists_url": "https://api.github.com/users/beautify-web/gists{/gist_id}", + "starred_url": "https://api.github.com/users/beautify-web/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/beautify-web/subscriptions", + "organizations_url": "https://api.github.com/users/beautify-web/orgs", + "repos_url": "https://api.github.com/users/beautify-web/repos", + "events_url": "https://api.github.com/users/beautify-web/events{/privacy}", + "received_events_url": "https://api.github.com/users/beautify-web/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/beautify-web/js-beautify", + "description": "Beautifier for javascript ", + "fork": false, + "url": "https://api.github.com/repos/beautify-web/js-beautify", + "forks_url": "https://api.github.com/repos/beautify-web/js-beautify/forks", + "keys_url": "https://api.github.com/repos/beautify-web/js-beautify/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/beautify-web/js-beautify/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/beautify-web/js-beautify/teams", + "hooks_url": "https://api.github.com/repos/beautify-web/js-beautify/hooks", + "issue_events_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/events{/number}", + "events_url": "https://api.github.com/repos/beautify-web/js-beautify/events", + "assignees_url": "https://api.github.com/repos/beautify-web/js-beautify/assignees{/user}", + "branches_url": "https://api.github.com/repos/beautify-web/js-beautify/branches{/branch}", + "tags_url": "https://api.github.com/repos/beautify-web/js-beautify/tags", + "blobs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/beautify-web/js-beautify/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/beautify-web/js-beautify/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/beautify-web/js-beautify/statuses/{sha}", + "languages_url": "https://api.github.com/repos/beautify-web/js-beautify/languages", + "stargazers_url": "https://api.github.com/repos/beautify-web/js-beautify/stargazers", + "contributors_url": "https://api.github.com/repos/beautify-web/js-beautify/contributors", + "subscribers_url": "https://api.github.com/repos/beautify-web/js-beautify/subscribers", + "subscription_url": "https://api.github.com/repos/beautify-web/js-beautify/subscription", + "commits_url": "https://api.github.com/repos/beautify-web/js-beautify/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/beautify-web/js-beautify/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/beautify-web/js-beautify/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/beautify-web/js-beautify/contents/{+path}", + "compare_url": "https://api.github.com/repos/beautify-web/js-beautify/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/beautify-web/js-beautify/merges", + "archive_url": "https://api.github.com/repos/beautify-web/js-beautify/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/beautify-web/js-beautify/downloads", + "issues_url": "https://api.github.com/repos/beautify-web/js-beautify/issues{/number}", + "pulls_url": "https://api.github.com/repos/beautify-web/js-beautify/pulls{/number}", + "milestones_url": "https://api.github.com/repos/beautify-web/js-beautify/milestones{/number}", + "notifications_url": "https://api.github.com/repos/beautify-web/js-beautify/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/beautify-web/js-beautify/labels{/name}", + "releases_url": "https://api.github.com/repos/beautify-web/js-beautify/releases{/id}", + "deployments_url": "https://api.github.com/repos/beautify-web/js-beautify/deployments" + }, + "url": "https://api.github.com/notifications/threads/578621238", + "subscription_url": "https://api.github.com/notifications/threads/578621238/subscription" + }, + { + "id": "578457017", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-05T08:10:09Z", + "last_read_at": "2019-09-11T00:03:29Z", + "subject": { + "title": "Revert \"Initial draft for the blogpost template\"", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2462", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2462", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/578457017", + "subscription_url": "https://api.github.com/notifications/threads/578457017/subscription" + }, + { + "id": "578407339", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-05T06:38:00Z", + "last_read_at": "2019-09-09T07:02:53Z", + "subject": { + "title": "CSDOCS-110 - Pull the navigation processing out of the page and into a better model", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/57", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/57", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/578407339", + "subscription_url": "https://api.github.com/notifications/threads/578407339/subscription" + }, + { + "id": "575330707", + "unread": false, + "reason": "mention", + "updated_at": "2019-09-05T04:05:49Z", + "last_read_at": "2019-09-06T00:57:36Z", + "subject": { + "title": "Lock Triggers", + "url": "https://api.github.com/repos/github-api/github-api/issues/536", + "latest_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments/528187574", + "type": "Issue" + }, + "repository": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments" + }, + "url": "https://api.github.com/notifications/threads/575330707", + "subscription_url": "https://api.github.com/notifications/threads/575330707/subscription" + }, + { + "id": "577219443", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-05T02:23:00Z", + "last_read_at": "2019-09-09T07:02:59Z", + "subject": { + "title": "[CPTL2-5600] - Update to provide OpenShift examples", + "url": "https://api.github.com/repos/cloudbees/cloudbees-examples/pulls/12", + "latest_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-examples/pulls/12", + "type": "PullRequest" + }, + "repository": { + "id": 168466951, + "node_id": "MDEwOlJlcG9zaXRvcnkxNjg0NjY5NTE=", + "name": "cloudbees-examples", + "full_name": "cloudbees/cloudbees-examples", + "private": false, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/cloudbees-examples", + "description": "Public repository - Examples for documentation", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/cloudbees-examples", + "forks_url": "https://api.github.com/repos/cloudbees/cloudbees-examples/forks", + "keys_url": "https://api.github.com/repos/cloudbees/cloudbees-examples/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/cloudbees-examples/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/cloudbees-examples/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/cloudbees-examples/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/cloudbees-examples/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/cloudbees-examples/events", + "assignees_url": "https://api.github.com/repos/cloudbees/cloudbees-examples/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/cloudbees-examples/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/cloudbees-examples/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/cloudbees-examples/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/cloudbees-examples/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/cloudbees-examples/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/cloudbees-examples/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/cloudbees-examples/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/cloudbees-examples/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/cloudbees-examples/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/cloudbees-examples/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/cloudbees-examples/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/cloudbees-examples/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/cloudbees-examples/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/cloudbees-examples/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/cloudbees-examples/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-examples/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/cloudbees-examples/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/cloudbees-examples/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/cloudbees-examples/merges", + "archive_url": "https://api.github.com/repos/cloudbees/cloudbees-examples/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/cloudbees-examples/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/cloudbees-examples/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/cloudbees-examples/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/cloudbees-examples/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/cloudbees-examples/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/cloudbees-examples/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/cloudbees-examples/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/cloudbees-examples/deployments" + }, + "url": "https://api.github.com/notifications/threads/577219443", + "subscription_url": "https://api.github.com/notifications/threads/577219443/subscription" + }, + { + "id": "577705126", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-05T01:45:05Z", + "last_read_at": "2019-09-09T07:02:53Z", + "subject": { + "title": "CSDOCS-100 - Make logout redirects correctly calculate ", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/55", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/55", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/577705126", + "subscription_url": "https://api.github.com/notifications/threads/577705126/subscription" + }, + { + "id": "576901999", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-04T10:11:50Z", + "last_read_at": "2019-09-09T07:03:03Z", + "subject": { + "title": "Fix little typo: wen't => went", + "url": "https://api.github.com/repos/cloudbees/urap/pulls/8", + "latest_comment_url": "https://api.github.com/repos/cloudbees/urap/pulls/8", + "type": "PullRequest" + }, + "repository": { + "id": 202161566, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDIxNjE1NjY=", + "name": "urap", + "full_name": "cloudbees/urap", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/urap", + "description": "Unified Release Automatic Plugin updater. https://en.wikipedia.org/wiki/Urap", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/urap", + "forks_url": "https://api.github.com/repos/cloudbees/urap/forks", + "keys_url": "https://api.github.com/repos/cloudbees/urap/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/urap/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/urap/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/urap/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/urap/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/urap/events", + "assignees_url": "https://api.github.com/repos/cloudbees/urap/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/urap/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/urap/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/urap/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/urap/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/urap/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/urap/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/urap/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/urap/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/urap/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/urap/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/urap/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/urap/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/urap/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/urap/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/urap/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/urap/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/urap/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/urap/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/urap/merges", + "archive_url": "https://api.github.com/repos/cloudbees/urap/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/urap/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/urap/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/urap/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/urap/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/urap/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/urap/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/urap/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/urap/deployments" + }, + "url": "https://api.github.com/notifications/threads/576901999", + "subscription_url": "https://api.github.com/notifications/threads/576901999/subscription" + }, + { + "id": "577356585", + "unread": false, + "reason": "author", + "updated_at": "2019-09-03T19:00:23Z", + "last_read_at": "2019-09-04T17:59:47Z", + "subject": { + "title": "Bitwise autoupdate 20190902 1557", + "url": "https://api.github.com/repos/cb-foundation/unified-release/pulls/1", + "latest_comment_url": "https://api.github.com/repos/cb-foundation/unified-release/pulls/1", + "type": "PullRequest" + }, + "repository": { + "id": 201288915, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDEyODg5MTU=", + "name": "unified-release", + "full_name": "cb-foundation/unified-release", + "private": true, + "owner": { + "login": "cb-foundation", + "id": 52707920, + "node_id": "MDQ6VXNlcjUyNzA3OTIw", + "avatar_url": "https://avatars1.githubusercontent.com/u/52707920?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cb-foundation", + "html_url": "https://github.com/cb-foundation", + "followers_url": "https://api.github.com/users/cb-foundation/followers", + "following_url": "https://api.github.com/users/cb-foundation/following{/other_user}", + "gists_url": "https://api.github.com/users/cb-foundation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cb-foundation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cb-foundation/subscriptions", + "organizations_url": "https://api.github.com/users/cb-foundation/orgs", + "repos_url": "https://api.github.com/users/cb-foundation/repos", + "events_url": "https://api.github.com/users/cb-foundation/events{/privacy}", + "received_events_url": "https://api.github.com/users/cb-foundation/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/cb-foundation/unified-release", + "description": "Unified Release Repository", + "fork": true, + "url": "https://api.github.com/repos/cb-foundation/unified-release", + "forks_url": "https://api.github.com/repos/cb-foundation/unified-release/forks", + "keys_url": "https://api.github.com/repos/cb-foundation/unified-release/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cb-foundation/unified-release/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cb-foundation/unified-release/teams", + "hooks_url": "https://api.github.com/repos/cb-foundation/unified-release/hooks", + "issue_events_url": "https://api.github.com/repos/cb-foundation/unified-release/issues/events{/number}", + "events_url": "https://api.github.com/repos/cb-foundation/unified-release/events", + "assignees_url": "https://api.github.com/repos/cb-foundation/unified-release/assignees{/user}", + "branches_url": "https://api.github.com/repos/cb-foundation/unified-release/branches{/branch}", + "tags_url": "https://api.github.com/repos/cb-foundation/unified-release/tags", + "blobs_url": "https://api.github.com/repos/cb-foundation/unified-release/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cb-foundation/unified-release/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cb-foundation/unified-release/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cb-foundation/unified-release/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cb-foundation/unified-release/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cb-foundation/unified-release/languages", + "stargazers_url": "https://api.github.com/repos/cb-foundation/unified-release/stargazers", + "contributors_url": "https://api.github.com/repos/cb-foundation/unified-release/contributors", + "subscribers_url": "https://api.github.com/repos/cb-foundation/unified-release/subscribers", + "subscription_url": "https://api.github.com/repos/cb-foundation/unified-release/subscription", + "commits_url": "https://api.github.com/repos/cb-foundation/unified-release/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cb-foundation/unified-release/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cb-foundation/unified-release/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cb-foundation/unified-release/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cb-foundation/unified-release/contents/{+path}", + "compare_url": "https://api.github.com/repos/cb-foundation/unified-release/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cb-foundation/unified-release/merges", + "archive_url": "https://api.github.com/repos/cb-foundation/unified-release/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cb-foundation/unified-release/downloads", + "issues_url": "https://api.github.com/repos/cb-foundation/unified-release/issues{/number}", + "pulls_url": "https://api.github.com/repos/cb-foundation/unified-release/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cb-foundation/unified-release/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cb-foundation/unified-release/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cb-foundation/unified-release/labels{/name}", + "releases_url": "https://api.github.com/repos/cb-foundation/unified-release/releases{/id}", + "deployments_url": "https://api.github.com/repos/cb-foundation/unified-release/deployments" + }, + "url": "https://api.github.com/notifications/threads/577356585", + "subscription_url": "https://api.github.com/notifications/threads/577356585/subscription" + }, + { + "id": "576881392", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-04T06:44:02Z", + "last_read_at": "2019-09-04T18:01:23Z", + "subject": { + "title": "CSDOCS-108 - Root landing page", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/53", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/comments/320595123", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/576881392", + "subscription_url": "https://api.github.com/notifications/threads/576881392/subscription" + }, + { + "id": "577387844", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-03T23:09:44Z", + "last_read_at": "2019-09-11T00:03:29Z", + "subject": { + "title": "Add an event page for the third GSoC/Outreachy demos JOM", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2460", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2460", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/577387844", + "subscription_url": "https://api.github.com/notifications/threads/577387844/subscription" + }, + { + "id": "577399734", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-03T23:09:16Z", + "last_read_at": "2019-09-11T00:03:29Z", + "subject": { + "title": "Add incoming Jenkins meetups to the website", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2461", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2461", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/577399734", + "subscription_url": "https://api.github.com/notifications/threads/577399734/subscription" + }, + { + "id": "577177006", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-03T21:31:38Z", + "last_read_at": "2019-09-04T18:01:23Z", + "subject": { + "title": "[CSDOCS-97] implement new nav theming", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/54", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/54", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/577177006", + "subscription_url": "https://api.github.com/notifications/threads/577177006/subscription" + }, + { + "id": "308863361", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-12T22:06:31Z", + "last_read_at": "2019-09-12T20:15:55Z", + "subject": { + "title": "[WiP] When condition checking if the current agent is a windows agent", + "url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/pulls/249", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/pulls/comments/320451507", + "type": "PullRequest" + }, + "repository": { + "id": 66677338, + "node_id": "MDEwOlJlcG9zaXRvcnk2NjY3NzMzOA==", + "name": "pipeline-model-definition-plugin", + "full_name": "jenkinsci/pipeline-model-definition-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pipeline-model-definition-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/308863361", + "subscription_url": "https://api.github.com/notifications/threads/308863361/subscription" + }, + { + "id": "307220847", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-03T19:40:40Z", + "last_read_at": "2019-09-11T05:50:31Z", + "subject": { + "title": "[FIXED JENKINS-42471] Switch to Declarative in samples", + "url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls/207", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls/207", + "type": "PullRequest" + }, + "repository": { + "id": 55543225, + "node_id": "MDEwOlJlcG9zaXRvcnk1NTU0MzIyNQ==", + "name": "workflow-cps-plugin", + "full_name": "jenkinsci/workflow-cps-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/workflow-cps-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/307220847", + "subscription_url": "https://api.github.com/notifications/threads/307220847/subscription" + }, + { + "id": "576035207", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-03T15:03:51Z", + "last_read_at": "2019-09-09T07:02:55Z", + "subject": { + "title": "Enable consumption of incrementals", + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/pulls/11", + "latest_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/pulls/11", + "type": "PullRequest" + }, + "repository": { + "id": 200867838, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDA4Njc4Mzg=", + "name": "cloudbees-pipeline-analytics-plugin", + "full_name": "cloudbees/cloudbees-pipeline-analytics-plugin", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/cloudbees-pipeline-analytics-plugin", + "description": "PoC Plugin for https://cloudbees.atlassian.net/browse/NGPIPELINE-610", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin", + "forks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/forks", + "keys_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/events", + "assignees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/merges", + "archive_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/576035207", + "subscription_url": "https://api.github.com/notifications/threads/576035207/subscription" + }, + { + "id": "561781305", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-03T14:44:23Z", + "last_read_at": "2019-09-03T20:08:16Z", + "subject": { + "title": "[INFRA-2243] - Introduce new buildPluginWithGradle() step and deprecate Gradle Support in buildPlugin()", + "url": "https://api.github.com/repos/jenkins-infra/pipeline-library/pulls/104", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/pulls/comments/320311728", + "type": "PullRequest" + }, + "repository": { + "id": 65505983, + "node_id": "MDEwOlJlcG9zaXRvcnk2NTUwNTk4Mw==", + "name": "pipeline-library", + "full_name": "jenkins-infra/pipeline-library", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/pipeline-library", + "description": "Collection of custom steps and variables for our Jenkins instance(s)", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/pipeline-library", + "forks_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/deployments" + }, + "url": "https://api.github.com/notifications/threads/561781305", + "subscription_url": "https://api.github.com/notifications/threads/561781305/subscription" + }, + { + "id": "574934276", + "unread": false, + "reason": "mention", + "updated_at": "2019-09-03T14:26:23Z", + "last_read_at": "2019-09-03T21:16:41Z", + "subject": { + "title": "Update dependencies to demonstrate CPS mismatch warning false positive", + "url": "https://api.github.com/repos/cloudbees/workflow-cps-checkpoint-plugin/pulls/33", + "latest_comment_url": "https://api.github.com/repos/cloudbees/workflow-cps-checkpoint-plugin/issues/comments/527482780", + "type": "PullRequest" + }, + "repository": { + "id": 58488928, + "node_id": "MDEwOlJlcG9zaXRvcnk1ODQ4ODkyOA==", + "name": "workflow-cps-checkpoint-plugin", + "full_name": "cloudbees/workflow-cps-checkpoint-plugin", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/workflow-cps-checkpoint-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/workflow-cps-checkpoint-plugin", + "forks_url": "https://api.github.com/repos/cloudbees/workflow-cps-checkpoint-plugin/forks", + "keys_url": "https://api.github.com/repos/cloudbees/workflow-cps-checkpoint-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/workflow-cps-checkpoint-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/workflow-cps-checkpoint-plugin/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/workflow-cps-checkpoint-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/workflow-cps-checkpoint-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/workflow-cps-checkpoint-plugin/events", + "assignees_url": "https://api.github.com/repos/cloudbees/workflow-cps-checkpoint-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/workflow-cps-checkpoint-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/workflow-cps-checkpoint-plugin/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/workflow-cps-checkpoint-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/workflow-cps-checkpoint-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/workflow-cps-checkpoint-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/workflow-cps-checkpoint-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/workflow-cps-checkpoint-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/workflow-cps-checkpoint-plugin/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/workflow-cps-checkpoint-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/workflow-cps-checkpoint-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/workflow-cps-checkpoint-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/workflow-cps-checkpoint-plugin/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/workflow-cps-checkpoint-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/workflow-cps-checkpoint-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/workflow-cps-checkpoint-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/workflow-cps-checkpoint-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/workflow-cps-checkpoint-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/workflow-cps-checkpoint-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/workflow-cps-checkpoint-plugin/merges", + "archive_url": "https://api.github.com/repos/cloudbees/workflow-cps-checkpoint-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/workflow-cps-checkpoint-plugin/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/workflow-cps-checkpoint-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/workflow-cps-checkpoint-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/workflow-cps-checkpoint-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/workflow-cps-checkpoint-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/workflow-cps-checkpoint-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/workflow-cps-checkpoint-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/workflow-cps-checkpoint-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/574934276", + "subscription_url": "https://api.github.com/notifications/threads/574934276/subscription" + }, + { + "id": "574909011", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-03T14:23:21Z", + "last_read_at": "2019-09-03T14:22:10Z", + "subject": { + "title": "Suppress mismatch warnings for invocations of Continuable.suspend", + "url": "https://api.github.com/repos/cloudbees/groovy-cps/pulls/103", + "latest_comment_url": "https://api.github.com/repos/cloudbees/groovy-cps/pulls/comments/319182454", + "type": "PullRequest" + }, + "repository": { + "id": 16677474, + "node_id": "MDEwOlJlcG9zaXRvcnkxNjY3NzQ3NA==", + "name": "groovy-cps", + "full_name": "cloudbees/groovy-cps", + "private": false, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/groovy-cps", + "description": "Groovy execution in the continuation passing style", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/groovy-cps", + "forks_url": "https://api.github.com/repos/cloudbees/groovy-cps/forks", + "keys_url": "https://api.github.com/repos/cloudbees/groovy-cps/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/groovy-cps/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/groovy-cps/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/groovy-cps/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/groovy-cps/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/groovy-cps/events", + "assignees_url": "https://api.github.com/repos/cloudbees/groovy-cps/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/groovy-cps/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/groovy-cps/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/groovy-cps/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/groovy-cps/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/groovy-cps/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/groovy-cps/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/groovy-cps/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/groovy-cps/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/groovy-cps/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/groovy-cps/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/groovy-cps/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/groovy-cps/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/groovy-cps/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/groovy-cps/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/groovy-cps/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/groovy-cps/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/groovy-cps/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/groovy-cps/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/groovy-cps/merges", + "archive_url": "https://api.github.com/repos/cloudbees/groovy-cps/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/groovy-cps/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/groovy-cps/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/groovy-cps/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/groovy-cps/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/groovy-cps/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/groovy-cps/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/groovy-cps/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/groovy-cps/deployments" + }, + "url": "https://api.github.com/notifications/threads/574909011", + "subscription_url": "https://api.github.com/notifications/threads/574909011/subscription" + }, + { + "id": "577073932", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-03T13:34:32Z", + "last_read_at": "2019-09-05T00:31:34Z", + "subject": { + "title": "now it doesn't fail, just shows a warning in the logs", + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/pulls/6", + "latest_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/pulls/6", + "type": "PullRequest" + }, + "repository": { + "id": 193577985, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTM1Nzc5ODU=", + "name": "cloudbees-pipeline-rules-interception-plugin", + "full_name": "cloudbees/cloudbees-pipeline-rules-interception-plugin", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/cloudbees-pipeline-rules-interception-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin", + "forks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/forks", + "keys_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/events", + "assignees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/merges", + "archive_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/577073932", + "subscription_url": "https://api.github.com/notifications/threads/577073932/subscription" + }, + { + "id": "576898029", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-03T08:00:35Z", + "last_read_at": "2019-09-09T07:03:03Z", + "subject": { + "title": "Fix grammar issues and improve clarity of language", + "url": "https://api.github.com/repos/cloudbees/urap/pulls/7", + "latest_comment_url": "https://api.github.com/repos/cloudbees/urap/pulls/7", + "type": "PullRequest" + }, + "repository": { + "id": 202161566, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDIxNjE1NjY=", + "name": "urap", + "full_name": "cloudbees/urap", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/urap", + "description": "Unified Release Automatic Plugin updater. https://en.wikipedia.org/wiki/Urap", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/urap", + "forks_url": "https://api.github.com/repos/cloudbees/urap/forks", + "keys_url": "https://api.github.com/repos/cloudbees/urap/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/urap/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/urap/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/urap/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/urap/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/urap/events", + "assignees_url": "https://api.github.com/repos/cloudbees/urap/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/urap/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/urap/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/urap/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/urap/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/urap/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/urap/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/urap/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/urap/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/urap/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/urap/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/urap/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/urap/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/urap/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/urap/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/urap/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/urap/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/urap/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/urap/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/urap/merges", + "archive_url": "https://api.github.com/repos/cloudbees/urap/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/urap/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/urap/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/urap/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/urap/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/urap/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/urap/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/urap/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/urap/deployments" + }, + "url": "https://api.github.com/notifications/threads/576898029", + "subscription_url": "https://api.github.com/notifications/threads/576898029/subscription" + }, + { + "id": "567346838", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-09-03T07:15:52Z", + "last_read_at": "2019-09-11T00:03:29Z", + "subject": { + "title": "[GSOC Working Hours Plugin] Add Introduce React Boilerplate for Jenkins Plugin", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2435", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments/527335949", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/567346838", + "subscription_url": "https://api.github.com/notifications/threads/567346838/subscription" + }, + { + "id": "576838289", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-03T06:23:47Z", + "last_read_at": "2019-09-03T21:16:33Z", + "subject": { + "title": "CSDOCS-65 TypeScript defs for Antora", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/52", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/52", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/576838289", + "subscription_url": "https://api.github.com/notifications/threads/576838289/subscription" + }, + { + "id": "576705585", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-02T19:28:23Z", + "last_read_at": "2019-09-03T07:19:25Z", + "subject": { + "title": "1.4.1", + "url": "https://api.github.com/repos/jenkins-infra/pipeline-library/releases/19701811", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/releases/19701811", + "type": "Release" + }, + "repository": { + "id": 65505983, + "node_id": "MDEwOlJlcG9zaXRvcnk2NTUwNTk4Mw==", + "name": "pipeline-library", + "full_name": "jenkins-infra/pipeline-library", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/pipeline-library", + "description": "Collection of custom steps and variables for our Jenkins instance(s)", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/pipeline-library", + "forks_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/deployments" + }, + "url": "https://api.github.com/notifications/threads/576705585", + "subscription_url": "https://api.github.com/notifications/threads/576705585/subscription" + }, + { + "id": "576703786", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-02T19:26:51Z", + "last_read_at": "2019-09-03T07:19:25Z", + "subject": { + "title": "[INFRA-2243] - JUnit archiver was taking a non-existent property in `buildPluginWithGradle()`", + "url": "https://api.github.com/repos/jenkins-infra/pipeline-library/pulls/112", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/pulls/112", + "type": "PullRequest" + }, + "repository": { + "id": 65505983, + "node_id": "MDEwOlJlcG9zaXRvcnk2NTUwNTk4Mw==", + "name": "pipeline-library", + "full_name": "jenkins-infra/pipeline-library", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/pipeline-library", + "description": "Collection of custom steps and variables for our Jenkins instance(s)", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/pipeline-library", + "forks_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/deployments" + }, + "url": "https://api.github.com/notifications/threads/576703786", + "subscription_url": "https://api.github.com/notifications/threads/576703786/subscription" + }, + { + "id": "567561549", + "unread": false, + "reason": "mention", + "updated_at": "2019-09-02T15:58:48Z", + "last_read_at": "2019-09-05T00:52:20Z", + "subject": { + "title": "[WiP] Autogenerated OSS plugin updates Aug 22, 2019", + "url": "https://api.github.com/repos/cloudbees/unified-release/pulls/1416", + "latest_comment_url": "https://api.github.com/repos/cloudbees/unified-release/pulls/1416", + "type": "PullRequest" + }, + "repository": { + "id": 78131017, + "node_id": "MDEwOlJlcG9zaXRvcnk3ODEzMTAxNw==", + "name": "unified-release", + "full_name": "cloudbees/unified-release", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/unified-release", + "description": "Unified Release Repository", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/unified-release", + "forks_url": "https://api.github.com/repos/cloudbees/unified-release/forks", + "keys_url": "https://api.github.com/repos/cloudbees/unified-release/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/unified-release/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/unified-release/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/unified-release/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/unified-release/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/unified-release/events", + "assignees_url": "https://api.github.com/repos/cloudbees/unified-release/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/unified-release/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/unified-release/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/unified-release/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/unified-release/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/unified-release/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/unified-release/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/unified-release/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/unified-release/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/unified-release/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/unified-release/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/unified-release/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/unified-release/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/unified-release/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/unified-release/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/unified-release/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/unified-release/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/unified-release/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/unified-release/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/unified-release/merges", + "archive_url": "https://api.github.com/repos/cloudbees/unified-release/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/unified-release/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/unified-release/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/unified-release/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/unified-release/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/unified-release/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/unified-release/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/unified-release/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/unified-release/deployments" + }, + "url": "https://api.github.com/notifications/threads/567561549", + "subscription_url": "https://api.github.com/notifications/threads/567561549/subscription" + }, + { + "id": "576588190", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-09-02T15:18:34Z", + "last_read_at": "2019-09-09T07:03:03Z", + "subject": { + "title": "Enable Email", + "url": "https://api.github.com/repos/cloudbees/urap/pulls/6", + "latest_comment_url": "https://api.github.com/repos/cloudbees/urap/pulls/6", + "type": "PullRequest" + }, + "repository": { + "id": 202161566, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDIxNjE1NjY=", + "name": "urap", + "full_name": "cloudbees/urap", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/urap", + "description": "Unified Release Automatic Plugin updater. https://en.wikipedia.org/wiki/Urap", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/urap", + "forks_url": "https://api.github.com/repos/cloudbees/urap/forks", + "keys_url": "https://api.github.com/repos/cloudbees/urap/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/urap/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/urap/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/urap/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/urap/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/urap/events", + "assignees_url": "https://api.github.com/repos/cloudbees/urap/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/urap/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/urap/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/urap/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/urap/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/urap/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/urap/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/urap/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/urap/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/urap/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/urap/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/urap/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/urap/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/urap/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/urap/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/urap/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/urap/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/urap/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/urap/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/urap/merges", + "archive_url": "https://api.github.com/repos/cloudbees/urap/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/urap/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/urap/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/urap/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/urap/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/urap/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/urap/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/urap/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/urap/deployments" + }, + "url": "https://api.github.com/notifications/threads/576588190", + "subscription_url": "https://api.github.com/notifications/threads/576588190/subscription" + }, + { + "id": "576582546", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-02T14:20:43Z", + "last_read_at": "2019-09-05T00:52:21Z", + "subject": { + "title": "chore(deps): bump https://github.com/cloudbees/jxui-frontend.git from 0.0.827 to 0.0.828", + "url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/22", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/comments/527165031", + "type": "PullRequest" + }, + "repository": { + "id": 183067295, + "node_id": "MDEwOlJlcG9zaXRvcnkxODMwNjcyOTU=", + "name": "jx-app-ui", + "full_name": "cloudbees/jx-app-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jx-app-ui", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jx-app-ui", + "forks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jx-app-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jx-app-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jx-app-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jx-app-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jx-app-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jx-app-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jx-app-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jx-app-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jx-app-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jx-app-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jx-app-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jx-app-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jx-app-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jx-app-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/576582546", + "subscription_url": "https://api.github.com/notifications/threads/576582546/subscription" + }, + { + "id": "576516763", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-02T12:50:28Z", + "last_read_at": "2019-09-11T00:03:29Z", + "subject": { + "title": "Revert \"[JENKINS-59115] Documentation for branch when condition with comparator\"", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2458", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2458", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/576516763", + "subscription_url": "https://api.github.com/notifications/threads/576516763/subscription" + }, + { + "id": "570484244", + "unread": false, + "reason": "mention", + "updated_at": "2019-09-02T12:20:13Z", + "last_read_at": "2019-09-11T00:03:29Z", + "subject": { + "title": "[JENKINS-59115] Documentation for branch when condition with comparator", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2450", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments/527127252", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/570484244", + "subscription_url": "https://api.github.com/notifications/threads/570484244/subscription" + }, + { + "id": "571875231", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-02T12:05:54Z", + "last_read_at": "2019-09-11T00:03:29Z", + "subject": { + "title": "[JENKINS-59036] Resize images", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2452", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2452", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/571875231", + "subscription_url": "https://api.github.com/notifications/threads/571875231/subscription" + }, + { + "id": "576425090", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-02T09:47:02Z", + "last_read_at": "2019-09-11T00:03:29Z", + "subject": { + "title": "Add changelog for 2.193", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2457", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2457", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/576425090", + "subscription_url": "https://api.github.com/notifications/threads/576425090/subscription" + }, + { + "id": "562389242", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-02T09:05:00Z", + "last_read_at": "2019-09-05T00:31:34Z", + "subject": { + "title": "Loop detection", + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/pulls/5", + "latest_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/pulls/5", + "type": "PullRequest" + }, + "repository": { + "id": 193577985, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTM1Nzc5ODU=", + "name": "cloudbees-pipeline-rules-interception-plugin", + "full_name": "cloudbees/cloudbees-pipeline-rules-interception-plugin", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/cloudbees-pipeline-rules-interception-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin", + "forks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/forks", + "keys_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/events", + "assignees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/merges", + "archive_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/562389242", + "subscription_url": "https://api.github.com/notifications/threads/562389242/subscription" + }, + { + "id": "576350959", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-02T07:37:24Z", + "last_read_at": "2019-09-03T21:16:33Z", + "subject": { + "title": "CSDOCS-93 - Use the content metadata to generate data for the frontend", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/51", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/51", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/576350959", + "subscription_url": "https://api.github.com/notifications/threads/576350959/subscription" + }, + { + "id": "576349940", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-02T07:25:37Z", + "last_read_at": "2019-09-03T07:19:25Z", + "subject": { + "title": "1.4.0", + "url": "https://api.github.com/repos/jenkins-infra/pipeline-library/releases/19599958", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/releases/19599958", + "type": "Release" + }, + "repository": { + "id": 65505983, + "node_id": "MDEwOlJlcG9zaXRvcnk2NTUwNTk4Mw==", + "name": "pipeline-library", + "full_name": "jenkins-infra/pipeline-library", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/pipeline-library", + "description": "Collection of custom steps and variables for our Jenkins instance(s)", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/pipeline-library", + "forks_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/deployments" + }, + "url": "https://api.github.com/notifications/threads/576349940", + "subscription_url": "https://api.github.com/notifications/threads/576349940/subscription" + }, + { + "id": "575240425", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-01T23:18:41Z", + "last_read_at": "2019-09-03T21:16:33Z", + "subject": { + "title": "CSDOCS-93 Create sidecar metadata", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/49", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments/526961664", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/575240425", + "subscription_url": "https://api.github.com/notifications/threads/575240425/subscription" + }, + { + "id": "567135029", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-01T16:45:58Z", + "last_read_at": "2019-09-11T00:03:29Z", + "subject": { + "title": "[JENKINS-59036] Touch up project page, create DevOps world blog", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2434", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments/526935339", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/567135029", + "subscription_url": "https://api.github.com/notifications/threads/567135029/subscription" + }, + { + "id": "576042618", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-01T21:54:00Z", + "last_read_at": "2019-09-01T21:46:59Z", + "subject": { + "title": "[HTML]: Add option to indent HTML tag text in a newline", + "url": "https://api.github.com/repos/beautify-web/js-beautify/issues/1703", + "latest_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/1703", + "type": "Issue" + }, + "repository": { + "id": 84822, + "node_id": "MDEwOlJlcG9zaXRvcnk4NDgyMg==", + "name": "js-beautify", + "full_name": "beautify-web/js-beautify", + "private": false, + "owner": { + "login": "beautify-web", + "id": 6538164, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjY1MzgxNjQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/6538164?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/beautify-web", + "html_url": "https://github.com/beautify-web", + "followers_url": "https://api.github.com/users/beautify-web/followers", + "following_url": "https://api.github.com/users/beautify-web/following{/other_user}", + "gists_url": "https://api.github.com/users/beautify-web/gists{/gist_id}", + "starred_url": "https://api.github.com/users/beautify-web/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/beautify-web/subscriptions", + "organizations_url": "https://api.github.com/users/beautify-web/orgs", + "repos_url": "https://api.github.com/users/beautify-web/repos", + "events_url": "https://api.github.com/users/beautify-web/events{/privacy}", + "received_events_url": "https://api.github.com/users/beautify-web/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/beautify-web/js-beautify", + "description": "Beautifier for javascript ", + "fork": false, + "url": "https://api.github.com/repos/beautify-web/js-beautify", + "forks_url": "https://api.github.com/repos/beautify-web/js-beautify/forks", + "keys_url": "https://api.github.com/repos/beautify-web/js-beautify/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/beautify-web/js-beautify/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/beautify-web/js-beautify/teams", + "hooks_url": "https://api.github.com/repos/beautify-web/js-beautify/hooks", + "issue_events_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/events{/number}", + "events_url": "https://api.github.com/repos/beautify-web/js-beautify/events", + "assignees_url": "https://api.github.com/repos/beautify-web/js-beautify/assignees{/user}", + "branches_url": "https://api.github.com/repos/beautify-web/js-beautify/branches{/branch}", + "tags_url": "https://api.github.com/repos/beautify-web/js-beautify/tags", + "blobs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/beautify-web/js-beautify/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/beautify-web/js-beautify/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/beautify-web/js-beautify/statuses/{sha}", + "languages_url": "https://api.github.com/repos/beautify-web/js-beautify/languages", + "stargazers_url": "https://api.github.com/repos/beautify-web/js-beautify/stargazers", + "contributors_url": "https://api.github.com/repos/beautify-web/js-beautify/contributors", + "subscribers_url": "https://api.github.com/repos/beautify-web/js-beautify/subscribers", + "subscription_url": "https://api.github.com/repos/beautify-web/js-beautify/subscription", + "commits_url": "https://api.github.com/repos/beautify-web/js-beautify/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/beautify-web/js-beautify/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/beautify-web/js-beautify/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/beautify-web/js-beautify/contents/{+path}", + "compare_url": "https://api.github.com/repos/beautify-web/js-beautify/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/beautify-web/js-beautify/merges", + "archive_url": "https://api.github.com/repos/beautify-web/js-beautify/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/beautify-web/js-beautify/downloads", + "issues_url": "https://api.github.com/repos/beautify-web/js-beautify/issues{/number}", + "pulls_url": "https://api.github.com/repos/beautify-web/js-beautify/pulls{/number}", + "milestones_url": "https://api.github.com/repos/beautify-web/js-beautify/milestones{/number}", + "notifications_url": "https://api.github.com/repos/beautify-web/js-beautify/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/beautify-web/js-beautify/labels{/name}", + "releases_url": "https://api.github.com/repos/beautify-web/js-beautify/releases{/id}", + "deployments_url": "https://api.github.com/repos/beautify-web/js-beautify/deployments" + }, + "url": "https://api.github.com/notifications/threads/576042618", + "subscription_url": "https://api.github.com/notifications/threads/576042618/subscription" + }, + { + "id": "566626550", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-08-31T23:31:49Z", + "last_read_at": "2019-09-11T00:03:29Z", + "subject": { + "title": "Add event locations to website and metadata", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2427", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2427", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/566626550", + "subscription_url": "https://api.github.com/notifications/threads/566626550/subscription" + }, + { + "id": "573453762", + "unread": false, + "reason": "comment", + "updated_at": "2019-08-31T20:46:57Z", + "last_read_at": "2019-09-02T01:18:57Z", + "subject": { + "title": "Add a new `infra.prepareToPublishIncrementals()` method to optimize the resource usage", + "url": "https://api.github.com/repos/jenkins-infra/pipeline-library/pulls/111", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/pulls/111", + "type": "PullRequest" + }, + "repository": { + "id": 65505983, + "node_id": "MDEwOlJlcG9zaXRvcnk2NTUwNTk4Mw==", + "name": "pipeline-library", + "full_name": "jenkins-infra/pipeline-library", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/pipeline-library", + "description": "Collection of custom steps and variables for our Jenkins instance(s)", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/pipeline-library", + "forks_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/deployments" + }, + "url": "https://api.github.com/notifications/threads/573453762", + "subscription_url": "https://api.github.com/notifications/threads/573453762/subscription" + }, + { + "id": "301252979", + "unread": false, + "reason": "state_change", + "updated_at": "2019-08-31T10:13:54Z", + "last_read_at": "2019-09-01T04:55:26Z", + "subject": { + "title": "How may I tell the formatter, not to send my comments to a new line?", + "url": "https://api.github.com/repos/beautify-web/js-beautify/issues/1337", + "latest_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/comments/526818776", + "type": "Issue" + }, + "repository": { + "id": 84822, + "node_id": "MDEwOlJlcG9zaXRvcnk4NDgyMg==", + "name": "js-beautify", + "full_name": "beautify-web/js-beautify", + "private": false, + "owner": { + "login": "beautify-web", + "id": 6538164, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjY1MzgxNjQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/6538164?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/beautify-web", + "html_url": "https://github.com/beautify-web", + "followers_url": "https://api.github.com/users/beautify-web/followers", + "following_url": "https://api.github.com/users/beautify-web/following{/other_user}", + "gists_url": "https://api.github.com/users/beautify-web/gists{/gist_id}", + "starred_url": "https://api.github.com/users/beautify-web/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/beautify-web/subscriptions", + "organizations_url": "https://api.github.com/users/beautify-web/orgs", + "repos_url": "https://api.github.com/users/beautify-web/repos", + "events_url": "https://api.github.com/users/beautify-web/events{/privacy}", + "received_events_url": "https://api.github.com/users/beautify-web/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/beautify-web/js-beautify", + "description": "Beautifier for javascript ", + "fork": false, + "url": "https://api.github.com/repos/beautify-web/js-beautify", + "forks_url": "https://api.github.com/repos/beautify-web/js-beautify/forks", + "keys_url": "https://api.github.com/repos/beautify-web/js-beautify/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/beautify-web/js-beautify/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/beautify-web/js-beautify/teams", + "hooks_url": "https://api.github.com/repos/beautify-web/js-beautify/hooks", + "issue_events_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/events{/number}", + "events_url": "https://api.github.com/repos/beautify-web/js-beautify/events", + "assignees_url": "https://api.github.com/repos/beautify-web/js-beautify/assignees{/user}", + "branches_url": "https://api.github.com/repos/beautify-web/js-beautify/branches{/branch}", + "tags_url": "https://api.github.com/repos/beautify-web/js-beautify/tags", + "blobs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/beautify-web/js-beautify/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/beautify-web/js-beautify/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/beautify-web/js-beautify/statuses/{sha}", + "languages_url": "https://api.github.com/repos/beautify-web/js-beautify/languages", + "stargazers_url": "https://api.github.com/repos/beautify-web/js-beautify/stargazers", + "contributors_url": "https://api.github.com/repos/beautify-web/js-beautify/contributors", + "subscribers_url": "https://api.github.com/repos/beautify-web/js-beautify/subscribers", + "subscription_url": "https://api.github.com/repos/beautify-web/js-beautify/subscription", + "commits_url": "https://api.github.com/repos/beautify-web/js-beautify/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/beautify-web/js-beautify/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/beautify-web/js-beautify/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/beautify-web/js-beautify/contents/{+path}", + "compare_url": "https://api.github.com/repos/beautify-web/js-beautify/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/beautify-web/js-beautify/merges", + "archive_url": "https://api.github.com/repos/beautify-web/js-beautify/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/beautify-web/js-beautify/downloads", + "issues_url": "https://api.github.com/repos/beautify-web/js-beautify/issues{/number}", + "pulls_url": "https://api.github.com/repos/beautify-web/js-beautify/pulls{/number}", + "milestones_url": "https://api.github.com/repos/beautify-web/js-beautify/milestones{/number}", + "notifications_url": "https://api.github.com/repos/beautify-web/js-beautify/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/beautify-web/js-beautify/labels{/name}", + "releases_url": "https://api.github.com/repos/beautify-web/js-beautify/releases{/id}", + "deployments_url": "https://api.github.com/repos/beautify-web/js-beautify/deployments" + }, + "url": "https://api.github.com/notifications/threads/301252979", + "subscription_url": "https://api.github.com/notifications/threads/301252979/subscription" + }, + { + "id": "575647057", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-30T21:00:12Z", + "last_read_at": "2019-09-11T00:03:29Z", + "subject": { + "title": "Credit the reporter of SECURITY-157", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2456", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2456", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/575647057", + "subscription_url": "https://api.github.com/notifications/threads/575647057/subscription" + }, + { + "id": "491184518", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-30T18:12:52Z", + "last_read_at": "2019-09-03T07:19:13Z", + "subject": { + "title": "Make a 1.0 release", + "url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues/34", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues/34", + "type": "Issue" + }, + "repository": { + "id": 159685662, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTk2ODU2NjI=", + "name": "audit-log-plugin", + "full_name": "jenkinsci/audit-log-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/audit-log-plugin", + "description": "Audit logging plugin for Jenkins based on Apache Log4j Audit", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/audit-log-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/491184518", + "subscription_url": "https://api.github.com/notifications/threads/491184518/subscription" + }, + { + "id": "567481998", + "unread": false, + "reason": "mention", + "updated_at": "2019-08-30T14:58:45Z", + "last_read_at": "2019-09-11T00:03:38Z", + "subject": { + "title": "Go production", + "url": "https://api.github.com/repos/cloudbees/urap/pulls/3", + "latest_comment_url": "https://api.github.com/repos/cloudbees/urap/pulls/3", + "type": "PullRequest" + }, + "repository": { + "id": 202161566, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDIxNjE1NjY=", + "name": "urap", + "full_name": "cloudbees/urap", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/urap", + "description": "Unified Release Automatic Plugin updater. https://en.wikipedia.org/wiki/Urap", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/urap", + "forks_url": "https://api.github.com/repos/cloudbees/urap/forks", + "keys_url": "https://api.github.com/repos/cloudbees/urap/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/urap/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/urap/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/urap/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/urap/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/urap/events", + "assignees_url": "https://api.github.com/repos/cloudbees/urap/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/urap/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/urap/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/urap/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/urap/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/urap/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/urap/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/urap/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/urap/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/urap/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/urap/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/urap/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/urap/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/urap/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/urap/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/urap/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/urap/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/urap/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/urap/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/urap/merges", + "archive_url": "https://api.github.com/repos/cloudbees/urap/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/urap/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/urap/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/urap/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/urap/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/urap/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/urap/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/urap/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/urap/deployments" + }, + "url": "https://api.github.com/notifications/threads/567481998", + "subscription_url": "https://api.github.com/notifications/threads/567481998/subscription" + }, + { + "id": "551540872", + "unread": false, + "reason": "team_mention", + "updated_at": "2019-08-30T14:26:58Z", + "last_read_at": "2019-09-11T14:15:09Z", + "subject": { + "title": "A blog post about jenkins cli", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2389", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments/526622307", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/551540872", + "subscription_url": "https://api.github.com/notifications/threads/551540872/subscription" + }, + { + "id": "575376750", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-30T10:20:56Z", + "last_read_at": "2019-08-30T15:17:53Z", + "subject": { + "title": "[CSDOCS-97] New nav theming", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/50", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/50", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/575376750", + "subscription_url": "https://api.github.com/notifications/threads/575376750/subscription" + }, + { + "id": "575119422", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-30T02:59:22Z", + "last_read_at": "2019-09-03T20:07:31Z", + "subject": { + "title": "GHRepository.listReleases() return empty always", + "url": "https://api.github.com/repos/github-api/github-api/issues/535", + "latest_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments/526436859", + "type": "Issue" + }, + "repository": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments" + }, + "url": "https://api.github.com/notifications/threads/575119422", + "subscription_url": "https://api.github.com/notifications/threads/575119422/subscription" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/__files/notifications-a8e9449d-b78c-4e46-801e-59fc459920d3.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/__files/notifications-a8e9449d-b78c-4e46-801e-59fc459920d3.json new file mode 100644 index 0000000000..a5ac352b4c --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/__files/notifications-a8e9449d-b78c-4e46-801e-59fc459920d3.json @@ -0,0 +1,4102 @@ +[ + { + "id": "609627291", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-21T00:22:13Z", + "last_read_at": null, + "subject": { + "title": "CSDOCS-218 - Update the link scanner to cover more edge cases", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/154", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/154", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/609627291", + "subscription_url": "https://api.github.com/notifications/threads/609627291/subscription" + }, + { + "id": "605240790", + "unread": true, + "reason": "review_requested", + "updated_at": "2019-10-20T19:20:46Z", + "last_read_at": null, + "subject": { + "title": "update clown logo file names", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2566", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments/544283188", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/605240790", + "subscription_url": "https://api.github.com/notifications/threads/605240790/subscription" + }, + { + "id": "598737924", + "unread": true, + "reason": "review_requested", + "updated_at": "2019-10-20T17:04:37Z", + "last_read_at": "2019-10-12T18:31:37Z", + "subject": { + "title": "JCasC VSCode Dev Tools Case Study.", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2541", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/comments/336787164", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/598737924", + "subscription_url": "https://api.github.com/notifications/threads/598737924/subscription" + }, + { + "id": "609509414", + "unread": true, + "reason": "review_requested", + "updated_at": "2019-10-20T14:07:13Z", + "last_read_at": null, + "subject": { + "title": "Fix link", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2585", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2585", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/609509414", + "subscription_url": "https://api.github.com/notifications/threads/609509414/subscription" + }, + { + "id": "609235504", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-20T13:08:34Z", + "last_read_at": null, + "subject": { + "title": "Update some references from wiki to plugins.io", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2578", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2578", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/609235504", + "subscription_url": "https://api.github.com/notifications/threads/609235504/subscription" + }, + { + "id": "609311578", + "unread": true, + "reason": "review_requested", + "updated_at": "2019-10-20T11:47:50Z", + "last_read_at": null, + "subject": { + "title": "Stop crash when new files are added", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2582", + "latest_comment_url": null, + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/609311578", + "subscription_url": "https://api.github.com/notifications/threads/609311578/subscription" + }, + { + "id": "609269101", + "unread": true, + "reason": "review_requested", + "updated_at": "2019-10-20T11:13:59Z", + "last_read_at": null, + "subject": { + "title": "Mention both versions released on the day of the advisory", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2581", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2581", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/609269101", + "subscription_url": "https://api.github.com/notifications/threads/609269101/subscription" + }, + { + "id": "609380384", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-20T03:16:18Z", + "last_read_at": null, + "subject": { + "title": "Fix recommender documentation", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/153", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/153", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/609380384", + "subscription_url": "https://api.github.com/notifications/threads/609380384/subscription" + }, + { + "id": "609139939", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-19T20:15:19Z", + "last_read_at": null, + "subject": { + "title": "feature: enable jenkins-pipeline-unit", + "url": "https://api.github.com/repos/jenkins-infra/pipeline-library/commits/802f4f4f38ecd8b403d266429f55495ba012bffb", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/comments/35575858", + "type": "Commit" + }, + "repository": { + "id": 65505983, + "node_id": "MDEwOlJlcG9zaXRvcnk2NTUwNTk4Mw==", + "name": "pipeline-library", + "full_name": "jenkins-infra/pipeline-library", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/pipeline-library", + "description": "Collection of custom steps and variables for our Jenkins instance(s)", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/pipeline-library", + "forks_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/deployments" + }, + "url": "https://api.github.com/notifications/threads/609139939", + "subscription_url": "https://api.github.com/notifications/threads/609139939/subscription" + }, + { + "id": "608136778", + "unread": true, + "reason": "review_requested", + "updated_at": "2019-10-19T14:51:17Z", + "last_read_at": null, + "subject": { + "title": "[Hacktoberfest] Move \"project\" related pages to jenkins.io", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2572", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/comments/336740339", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/608136778", + "subscription_url": "https://api.github.com/notifications/threads/608136778/subscription" + }, + { + "id": "605630632", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-19T10:15:44Z", + "last_read_at": "2019-10-18T14:46:46Z", + "subject": { + "title": "[NGPIPELINE-686] Freestyle Build tracking", + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/pulls/24", + "latest_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/pulls/24", + "type": "PullRequest" + }, + "repository": { + "id": 200867838, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDA4Njc4Mzg=", + "name": "cloudbees-pipeline-analytics-plugin", + "full_name": "cloudbees/cloudbees-pipeline-analytics-plugin", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/cloudbees-pipeline-analytics-plugin", + "description": "PoC Plugin for https://cloudbees.atlassian.net/browse/NGPIPELINE-610", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin", + "forks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/forks", + "keys_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/events", + "assignees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/merges", + "archive_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/605630632", + "subscription_url": "https://api.github.com/notifications/threads/605630632/subscription" + }, + { + "id": "608163899", + "unread": true, + "reason": "review_requested", + "updated_at": "2019-10-19T06:43:24Z", + "last_read_at": null, + "subject": { + "title": "[WEBSITE-670] - Document how to Migrate plugin from Wiki to GitHub", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2573", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2573", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/608163899", + "subscription_url": "https://api.github.com/notifications/threads/608163899/subscription" + }, + { + "id": "608948177", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-18T20:39:39Z", + "last_read_at": "2019-10-25T01:12:20Z", + "subject": { + "title": "feat: merge latest and update pipeline files", + "url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/2", + "latest_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/2", + "type": "PullRequest" + }, + "repository": { + "id": 215874575, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTU4NzQ1NzU=", + "name": "sdm-ui", + "full_name": "cloudbees/sdm-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/sdm-ui", + "description": "SDM UI repository", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/sdm-ui", + "forks_url": "https://api.github.com/repos/cloudbees/sdm-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/sdm-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/sdm-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/sdm-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/sdm-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/sdm-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/sdm-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/sdm-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/sdm-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/sdm-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/sdm-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/sdm-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/sdm-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/sdm-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/sdm-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/sdm-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/sdm-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/sdm-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/sdm-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/sdm-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/sdm-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/sdm-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/sdm-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/608948177", + "subscription_url": "https://api.github.com/notifications/threads/608948177/subscription" + }, + { + "id": "608886228", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-18T18:29:28Z", + "last_read_at": "2019-10-18T19:57:05Z", + "subject": { + "title": "chore(deps): bump https://github.com/cloudbees/jxui-frontend.git from 0.0.905 to 0.0.906", + "url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/61", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/61", + "type": "PullRequest" + }, + "repository": { + "id": 183067295, + "node_id": "MDEwOlJlcG9zaXRvcnkxODMwNjcyOTU=", + "name": "jx-app-ui", + "full_name": "cloudbees/jx-app-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jx-app-ui", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jx-app-ui", + "forks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jx-app-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jx-app-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jx-app-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jx-app-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jx-app-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jx-app-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jx-app-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jx-app-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jx-app-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jx-app-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jx-app-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jx-app-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jx-app-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jx-app-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/608886228", + "subscription_url": "https://api.github.com/notifications/threads/608886228/subscription" + }, + { + "id": "608413620", + "unread": true, + "reason": "review_requested", + "updated_at": "2019-10-18T12:55:18Z", + "last_read_at": null, + "subject": { + "title": "Fix grammar", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2574", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2574", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/608413620", + "subscription_url": "https://api.github.com/notifications/threads/608413620/subscription" + }, + { + "id": "608581214", + "unread": true, + "reason": "review_requested", + "updated_at": "2019-10-18T12:54:25Z", + "last_read_at": null, + "subject": { + "title": "Clarify the pattern for the when-branch condition", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2575", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2575", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/608581214", + "subscription_url": "https://api.github.com/notifications/threads/608581214/subscription" + }, + { + "id": "608318794", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-18T10:38:44Z", + "last_read_at": "2019-10-18T16:57:41Z", + "subject": { + "title": "CSDOCS-226 - Basic run at a user feedback button using Sentry", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/148", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/148", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/608318794", + "subscription_url": "https://api.github.com/notifications/threads/608318794/subscription" + }, + { + "id": "521678690", + "unread": false, + "reason": "mention", + "updated_at": "2019-10-18T10:50:54Z", + "last_read_at": "2019-10-18T10:49:40Z", + "subject": { + "title": "[JENKINS-58028] Add GMavenPlus version", + "url": "https://api.github.com/repos/jenkinsci/pom/pulls/42", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/pom/issues/comments/543670185", + "type": "PullRequest" + }, + "repository": { + "id": 1279996, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjc5OTk2", + "name": "pom", + "full_name": "jenkinsci/pom", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pom", + "description": "Parent POM", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/pom", + "forks_url": "https://api.github.com/repos/jenkinsci/pom/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pom/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pom/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pom/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pom/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pom/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pom/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pom/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pom/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pom/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pom/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pom/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pom/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pom/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pom/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pom/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pom/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pom/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pom/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pom/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pom/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pom/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pom/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pom/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pom/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pom/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pom/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pom/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pom/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pom/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pom/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pom/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pom/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pom/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pom/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pom/deployments" + }, + "url": "https://api.github.com/notifications/threads/521678690", + "subscription_url": "https://api.github.com/notifications/threads/521678690/subscription" + }, + { + "id": "608426752", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-18T08:56:46Z", + "last_read_at": "2019-10-18T16:57:41Z", + "subject": { + "title": "[CSDOCS-209] Add icon to external links in sidebar", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/151", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/comments/336386023", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/608426752", + "subscription_url": "https://api.github.com/notifications/threads/608426752/subscription" + }, + { + "id": "608441949", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-18T08:56:11Z", + "last_read_at": "2019-10-18T16:57:41Z", + "subject": { + "title": "CSDOCS-243 - Add sub-types to the recommendation concept, add docs, count by primary type", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/152", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/152", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/608441949", + "subscription_url": "https://api.github.com/notifications/threads/608441949/subscription" + }, + { + "id": "608403781", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-18T08:01:25Z", + "last_read_at": "2019-10-18T16:57:41Z", + "subject": { + "title": "CSDOCS-243 - Add new check for bad replacements", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/150", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/150", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/608403781", + "subscription_url": "https://api.github.com/notifications/threads/608403781/subscription" + }, + { + "id": "608377975", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-18T08:01:05Z", + "last_read_at": "2019-10-18T16:57:41Z", + "subject": { + "title": "CSDOCS-242 - Tidy up the spelling check", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/149", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/149", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/608377975", + "subscription_url": "https://api.github.com/notifications/threads/608377975/subscription" + }, + { + "id": "608254452", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-18T02:50:38Z", + "last_read_at": "2019-10-18T16:57:41Z", + "subject": { + "title": "CSDOCS-215 - Log builder who requests a site build", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/147", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/147", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/608254452", + "subscription_url": "https://api.github.com/notifications/threads/608254452/subscription" + }, + { + "id": "608234226", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-18T00:24:00Z", + "last_read_at": "2019-10-18T20:01:54Z", + "subject": { + "title": "Lint staged init", + "url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/1", + "latest_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/1", + "type": "PullRequest" + }, + "repository": { + "id": 215874575, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTU4NzQ1NzU=", + "name": "sdm-ui", + "full_name": "cloudbees/sdm-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/sdm-ui", + "description": "SDM UI repository", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/sdm-ui", + "forks_url": "https://api.github.com/repos/cloudbees/sdm-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/sdm-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/sdm-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/sdm-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/sdm-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/sdm-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/sdm-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/sdm-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/sdm-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/sdm-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/sdm-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/sdm-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/sdm-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/sdm-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/sdm-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/sdm-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/sdm-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/sdm-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/sdm-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/sdm-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/sdm-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/sdm-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/sdm-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/608234226", + "subscription_url": "https://api.github.com/notifications/threads/608234226/subscription" + }, + { + "id": "607665329", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-18T00:01:40Z", + "last_read_at": "2019-10-18T16:57:41Z", + "subject": { + "title": "Upgrades all outstanding npm dependencies across all lerna packages", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/145", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/145", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/607665329", + "subscription_url": "https://api.github.com/notifications/threads/607665329/subscription" + }, + { + "id": "607650663", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-18T00:01:09Z", + "last_read_at": "2019-10-18T16:57:41Z", + "subject": { + "title": "CSDOCS-223 - Extract segment api key to environment", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/144", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/144", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/607650663", + "subscription_url": "https://api.github.com/notifications/threads/607650663/subscription" + }, + { + "id": "608185239", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-18T00:00:50Z", + "last_read_at": "2019-10-18T16:57:41Z", + "subject": { + "title": "CSDOCS-241 - Extend external_resources.status_text field", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/146", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/146", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/608185239", + "subscription_url": "https://api.github.com/notifications/threads/608185239/subscription" + }, + { + "id": "607963229", + "unread": true, + "reason": "review_requested", + "updated_at": "2019-10-17T19:51:38Z", + "last_read_at": null, + "subject": { + "title": "escape-by-default XSS is no longer a vulnerability", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2571", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2571", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/607963229", + "subscription_url": "https://api.github.com/notifications/threads/607963229/subscription" + }, + { + "id": "597378126", + "unread": true, + "reason": "review_requested", + "updated_at": "2019-10-17T19:09:28Z", + "last_read_at": "2019-10-09T18:46:25Z", + "subject": { + "title": "[DOCS-1295] Adding a pipeline best practices guide", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2533", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/comments/336178755", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/597378126", + "subscription_url": "https://api.github.com/notifications/threads/597378126/subscription" + }, + { + "id": "607829867", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-17T14:48:28Z", + "last_read_at": "2019-10-18T19:57:05Z", + "subject": { + "title": "chore(deps): bump https://github.com/cloudbees/jxui-frontend.git from 0.0.901 to 0.0.905", + "url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/60", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/60", + "type": "PullRequest" + }, + "repository": { + "id": 183067295, + "node_id": "MDEwOlJlcG9zaXRvcnkxODMwNjcyOTU=", + "name": "jx-app-ui", + "full_name": "cloudbees/jx-app-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jx-app-ui", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jx-app-ui", + "forks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jx-app-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jx-app-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jx-app-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jx-app-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jx-app-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jx-app-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jx-app-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jx-app-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jx-app-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jx-app-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jx-app-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jx-app-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jx-app-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jx-app-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/607829867", + "subscription_url": "https://api.github.com/notifications/threads/607829867/subscription" + }, + { + "id": "603039304", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-17T14:44:14Z", + "last_read_at": null, + "subject": { + "title": "[WEBSITE-434] Show basic step description when detailed check fails", + "url": "https://api.github.com/repos/jenkins-infra/pipeline-steps-doc-generator/pulls/17", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/pipeline-steps-doc-generator/pulls/17", + "type": "PullRequest" + }, + "repository": { + "id": 68403990, + "node_id": "MDEwOlJlcG9zaXRvcnk2ODQwMzk5MA==", + "name": "pipeline-steps-doc-generator", + "full_name": "jenkins-infra/pipeline-steps-doc-generator", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/pipeline-steps-doc-generator", + "description": "Creates the documentation for pipeline job steps", + "fork": true, + "url": "https://api.github.com/repos/jenkins-infra/pipeline-steps-doc-generator", + "forks_url": "https://api.github.com/repos/jenkins-infra/pipeline-steps-doc-generator/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/pipeline-steps-doc-generator/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/pipeline-steps-doc-generator/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/pipeline-steps-doc-generator/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/pipeline-steps-doc-generator/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/pipeline-steps-doc-generator/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/pipeline-steps-doc-generator/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/pipeline-steps-doc-generator/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/pipeline-steps-doc-generator/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/pipeline-steps-doc-generator/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/pipeline-steps-doc-generator/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/pipeline-steps-doc-generator/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/pipeline-steps-doc-generator/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/pipeline-steps-doc-generator/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/pipeline-steps-doc-generator/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/pipeline-steps-doc-generator/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/pipeline-steps-doc-generator/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/pipeline-steps-doc-generator/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/pipeline-steps-doc-generator/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/pipeline-steps-doc-generator/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/pipeline-steps-doc-generator/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/pipeline-steps-doc-generator/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/pipeline-steps-doc-generator/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/pipeline-steps-doc-generator/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/pipeline-steps-doc-generator/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/pipeline-steps-doc-generator/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/pipeline-steps-doc-generator/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/pipeline-steps-doc-generator/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/pipeline-steps-doc-generator/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/pipeline-steps-doc-generator/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/pipeline-steps-doc-generator/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/pipeline-steps-doc-generator/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/pipeline-steps-doc-generator/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/pipeline-steps-doc-generator/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/pipeline-steps-doc-generator/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/pipeline-steps-doc-generator/deployments" + }, + "url": "https://api.github.com/notifications/threads/603039304", + "subscription_url": "https://api.github.com/notifications/threads/603039304/subscription" + }, + { + "id": "607668487", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-17T11:47:22Z", + "last_read_at": "2019-10-18T10:46:07Z", + "subject": { + "title": "0.10.0", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/releases/20771808", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases/20771808", + "type": "Release" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/607668487", + "subscription_url": "https://api.github.com/notifications/threads/607668487/subscription" + }, + { + "id": "607638157", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-17T11:32:05Z", + "last_read_at": "2019-10-18T16:57:41Z", + "subject": { + "title": "[CSDOCS-200] add CTA on bottom of left navigation", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/143", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/143", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/607638157", + "subscription_url": "https://api.github.com/notifications/threads/607638157/subscription" + }, + { + "id": "607605622", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-17T11:31:31Z", + "last_read_at": "2019-10-18T16:57:41Z", + "subject": { + "title": "Improve pageInfoButton component", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/142", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments/543131635", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/607605622", + "subscription_url": "https://api.github.com/notifications/threads/607605622/subscription" + }, + { + "id": "607501657", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-17T11:29:37Z", + "last_read_at": "2019-10-18T10:46:07Z", + "subject": { + "title": "chore: progress bar", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/172", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/172", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/607501657", + "subscription_url": "https://api.github.com/notifications/threads/607501657/subscription" + }, + { + "id": "605656676", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-23T03:35:04Z", + "last_read_at": "2019-10-17T15:58:44Z", + "subject": { + "title": "[FIXED JENKINS-59786] Report all the health reports of the primary branch, not just the worst one", + "url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/pulls/169", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/pulls/comments/337836866", + "type": "PullRequest" + }, + "repository": { + "id": 12878218, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjg3ODIxOA==", + "name": "branch-api-plugin", + "full_name": "jenkinsci/branch-api-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/branch-api-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/branch-api-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/605656676", + "subscription_url": "https://api.github.com/notifications/threads/605656676/subscription" + }, + { + "id": "607447362", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-17T06:57:39Z", + "last_read_at": "2019-10-18T16:57:41Z", + "subject": { + "title": "CSDOCS-173 - Add a clickable resource xref viewer", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/141", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/141", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/607447362", + "subscription_url": "https://api.github.com/notifications/threads/607447362/subscription" + }, + { + "id": "606103252", + "unread": true, + "reason": "review_requested", + "updated_at": "2019-10-17T04:37:56Z", + "last_read_at": null, + "subject": { + "title": "Fix links to Jenkins issue tracker up to 1.300", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2568", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2568", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/606103252", + "subscription_url": "https://api.github.com/notifications/threads/606103252/subscription" + }, + { + "id": "607375099", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-17T03:58:19Z", + "last_read_at": "2019-10-18T16:57:41Z", + "subject": { + "title": "[CSDOCS-223] Add production segment", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/140", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/140", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/607375099", + "subscription_url": "https://api.github.com/notifications/threads/607375099/subscription" + }, + { + "id": "607361501", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-17T03:54:26Z", + "last_read_at": "2019-10-18T16:57:41Z", + "subject": { + "title": "[CSDOCS-166] Upgrade homepage SVG graphics", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/139", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/139", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/607361501", + "subscription_url": "https://api.github.com/notifications/threads/607361501/subscription" + }, + { + "id": "607337857", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-17T03:42:27Z", + "last_read_at": "2019-10-18T16:57:41Z", + "subject": { + "title": "CSDOCS-173 - Set the priority correctly, filter out private resources properly", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/138", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/138", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/607337857", + "subscription_url": "https://api.github.com/notifications/threads/607337857/subscription" + }, + { + "id": "607252894", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-17T03:42:11Z", + "last_read_at": "2019-10-18T16:57:41Z", + "subject": { + "title": "CSDOCS-277 - Update all the versions", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/137", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments/542985394", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/607252894", + "subscription_url": "https://api.github.com/notifications/threads/607252894/subscription" + }, + { + "id": "606805510", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-17T03:40:56Z", + "last_read_at": "2019-10-18T16:57:41Z", + "subject": { + "title": "CSDOCS-199 - Super user level", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/136", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/136", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/606805510", + "subscription_url": "https://api.github.com/notifications/threads/606805510/subscription" + }, + { + "id": "607261415", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-16T23:06:05Z", + "last_read_at": "2019-10-18T19:57:46Z", + "subject": { + "title": "Bump wiremock-jre8-standalone from 2.25.0 to 2.25.1", + "url": "https://api.github.com/repos/github-api/github-api/pulls/574", + "latest_comment_url": "https://api.github.com/repos/github-api/github-api/pulls/574", + "type": "PullRequest" + }, + "repository": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments" + }, + "url": "https://api.github.com/notifications/threads/607261415", + "subscription_url": "https://api.github.com/notifications/threads/607261415/subscription" + }, + { + "id": "607261154", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-18T19:57:36Z", + "last_read_at": "2019-10-18T19:57:13Z", + "subject": { + "title": "Bump hamcrest.version from 2.1 to 2.2", + "url": "https://api.github.com/repos/github-api/github-api/pulls/573", + "latest_comment_url": "https://api.github.com/repos/github-api/github-api/pulls/573", + "type": "PullRequest" + }, + "repository": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments" + }, + "url": "https://api.github.com/notifications/threads/607261154", + "subscription_url": "https://api.github.com/notifications/threads/607261154/subscription" + }, + { + "id": "607190321", + "unread": false, + "reason": "mention", + "updated_at": "2019-10-16T20:58:30Z", + "last_read_at": "2019-10-18T10:47:59Z", + "subject": { + "title": "Default Options (without AMD)", + "url": "https://api.github.com/repos/beautify-web/js-beautify/pulls/1722", + "latest_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/pulls/1722", + "type": "PullRequest" + }, + "repository": { + "id": 84822, + "node_id": "MDEwOlJlcG9zaXRvcnk4NDgyMg==", + "name": "js-beautify", + "full_name": "beautify-web/js-beautify", + "private": false, + "owner": { + "login": "beautify-web", + "id": 6538164, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjY1MzgxNjQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/6538164?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/beautify-web", + "html_url": "https://github.com/beautify-web", + "followers_url": "https://api.github.com/users/beautify-web/followers", + "following_url": "https://api.github.com/users/beautify-web/following{/other_user}", + "gists_url": "https://api.github.com/users/beautify-web/gists{/gist_id}", + "starred_url": "https://api.github.com/users/beautify-web/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/beautify-web/subscriptions", + "organizations_url": "https://api.github.com/users/beautify-web/orgs", + "repos_url": "https://api.github.com/users/beautify-web/repos", + "events_url": "https://api.github.com/users/beautify-web/events{/privacy}", + "received_events_url": "https://api.github.com/users/beautify-web/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/beautify-web/js-beautify", + "description": "Beautifier for javascript ", + "fork": false, + "url": "https://api.github.com/repos/beautify-web/js-beautify", + "forks_url": "https://api.github.com/repos/beautify-web/js-beautify/forks", + "keys_url": "https://api.github.com/repos/beautify-web/js-beautify/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/beautify-web/js-beautify/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/beautify-web/js-beautify/teams", + "hooks_url": "https://api.github.com/repos/beautify-web/js-beautify/hooks", + "issue_events_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/events{/number}", + "events_url": "https://api.github.com/repos/beautify-web/js-beautify/events", + "assignees_url": "https://api.github.com/repos/beautify-web/js-beautify/assignees{/user}", + "branches_url": "https://api.github.com/repos/beautify-web/js-beautify/branches{/branch}", + "tags_url": "https://api.github.com/repos/beautify-web/js-beautify/tags", + "blobs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/beautify-web/js-beautify/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/beautify-web/js-beautify/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/beautify-web/js-beautify/statuses/{sha}", + "languages_url": "https://api.github.com/repos/beautify-web/js-beautify/languages", + "stargazers_url": "https://api.github.com/repos/beautify-web/js-beautify/stargazers", + "contributors_url": "https://api.github.com/repos/beautify-web/js-beautify/contributors", + "subscribers_url": "https://api.github.com/repos/beautify-web/js-beautify/subscribers", + "subscription_url": "https://api.github.com/repos/beautify-web/js-beautify/subscription", + "commits_url": "https://api.github.com/repos/beautify-web/js-beautify/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/beautify-web/js-beautify/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/beautify-web/js-beautify/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/beautify-web/js-beautify/contents/{+path}", + "compare_url": "https://api.github.com/repos/beautify-web/js-beautify/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/beautify-web/js-beautify/merges", + "archive_url": "https://api.github.com/repos/beautify-web/js-beautify/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/beautify-web/js-beautify/downloads", + "issues_url": "https://api.github.com/repos/beautify-web/js-beautify/issues{/number}", + "pulls_url": "https://api.github.com/repos/beautify-web/js-beautify/pulls{/number}", + "milestones_url": "https://api.github.com/repos/beautify-web/js-beautify/milestones{/number}", + "notifications_url": "https://api.github.com/repos/beautify-web/js-beautify/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/beautify-web/js-beautify/labels{/name}", + "releases_url": "https://api.github.com/repos/beautify-web/js-beautify/releases{/id}", + "deployments_url": "https://api.github.com/repos/beautify-web/js-beautify/deployments" + }, + "url": "https://api.github.com/notifications/threads/607190321", + "subscription_url": "https://api.github.com/notifications/threads/607190321/subscription" + }, + { + "id": "599684251", + "unread": false, + "reason": "comment", + "updated_at": "2019-10-16T20:26:50Z", + "last_read_at": "2019-10-18T10:28:49Z", + "subject": { + "title": "Add codemirror search plugin", + "url": "https://api.github.com/repos/beautify-web/js-beautify/pulls/1713", + "latest_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/pulls/comments/335691887", + "type": "PullRequest" + }, + "repository": { + "id": 84822, + "node_id": "MDEwOlJlcG9zaXRvcnk4NDgyMg==", + "name": "js-beautify", + "full_name": "beautify-web/js-beautify", + "private": false, + "owner": { + "login": "beautify-web", + "id": 6538164, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjY1MzgxNjQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/6538164?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/beautify-web", + "html_url": "https://github.com/beautify-web", + "followers_url": "https://api.github.com/users/beautify-web/followers", + "following_url": "https://api.github.com/users/beautify-web/following{/other_user}", + "gists_url": "https://api.github.com/users/beautify-web/gists{/gist_id}", + "starred_url": "https://api.github.com/users/beautify-web/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/beautify-web/subscriptions", + "organizations_url": "https://api.github.com/users/beautify-web/orgs", + "repos_url": "https://api.github.com/users/beautify-web/repos", + "events_url": "https://api.github.com/users/beautify-web/events{/privacy}", + "received_events_url": "https://api.github.com/users/beautify-web/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/beautify-web/js-beautify", + "description": "Beautifier for javascript ", + "fork": false, + "url": "https://api.github.com/repos/beautify-web/js-beautify", + "forks_url": "https://api.github.com/repos/beautify-web/js-beautify/forks", + "keys_url": "https://api.github.com/repos/beautify-web/js-beautify/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/beautify-web/js-beautify/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/beautify-web/js-beautify/teams", + "hooks_url": "https://api.github.com/repos/beautify-web/js-beautify/hooks", + "issue_events_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/events{/number}", + "events_url": "https://api.github.com/repos/beautify-web/js-beautify/events", + "assignees_url": "https://api.github.com/repos/beautify-web/js-beautify/assignees{/user}", + "branches_url": "https://api.github.com/repos/beautify-web/js-beautify/branches{/branch}", + "tags_url": "https://api.github.com/repos/beautify-web/js-beautify/tags", + "blobs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/beautify-web/js-beautify/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/beautify-web/js-beautify/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/beautify-web/js-beautify/statuses/{sha}", + "languages_url": "https://api.github.com/repos/beautify-web/js-beautify/languages", + "stargazers_url": "https://api.github.com/repos/beautify-web/js-beautify/stargazers", + "contributors_url": "https://api.github.com/repos/beautify-web/js-beautify/contributors", + "subscribers_url": "https://api.github.com/repos/beautify-web/js-beautify/subscribers", + "subscription_url": "https://api.github.com/repos/beautify-web/js-beautify/subscription", + "commits_url": "https://api.github.com/repos/beautify-web/js-beautify/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/beautify-web/js-beautify/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/beautify-web/js-beautify/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/beautify-web/js-beautify/contents/{+path}", + "compare_url": "https://api.github.com/repos/beautify-web/js-beautify/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/beautify-web/js-beautify/merges", + "archive_url": "https://api.github.com/repos/beautify-web/js-beautify/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/beautify-web/js-beautify/downloads", + "issues_url": "https://api.github.com/repos/beautify-web/js-beautify/issues{/number}", + "pulls_url": "https://api.github.com/repos/beautify-web/js-beautify/pulls{/number}", + "milestones_url": "https://api.github.com/repos/beautify-web/js-beautify/milestones{/number}", + "notifications_url": "https://api.github.com/repos/beautify-web/js-beautify/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/beautify-web/js-beautify/labels{/name}", + "releases_url": "https://api.github.com/repos/beautify-web/js-beautify/releases{/id}", + "deployments_url": "https://api.github.com/repos/beautify-web/js-beautify/deployments" + }, + "url": "https://api.github.com/notifications/threads/599684251", + "subscription_url": "https://api.github.com/notifications/threads/599684251/subscription" + }, + { + "id": "258634016", + "unread": false, + "reason": "mention", + "updated_at": "2019-10-16T16:54:25Z", + "last_read_at": "2019-10-18T20:02:05Z", + "subject": { + "title": "Atom cannot install atom-beautify", + "url": "https://api.github.com/repos/Glavin001/atom-beautify/issues/1855", + "latest_comment_url": "https://api.github.com/repos/Glavin001/atom-beautify/issues/comments/542794663", + "type": "Issue" + }, + "repository": { + "id": 17356911, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzM1NjkxMQ==", + "name": "atom-beautify", + "full_name": "Glavin001/atom-beautify", + "private": false, + "owner": { + "login": "Glavin001", + "id": 1885333, + "node_id": "MDQ6VXNlcjE4ODUzMzM=", + "avatar_url": "https://avatars0.githubusercontent.com/u/1885333?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Glavin001", + "html_url": "https://github.com/Glavin001", + "followers_url": "https://api.github.com/users/Glavin001/followers", + "following_url": "https://api.github.com/users/Glavin001/following{/other_user}", + "gists_url": "https://api.github.com/users/Glavin001/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Glavin001/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Glavin001/subscriptions", + "organizations_url": "https://api.github.com/users/Glavin001/orgs", + "repos_url": "https://api.github.com/users/Glavin001/repos", + "events_url": "https://api.github.com/users/Glavin001/events{/privacy}", + "received_events_url": "https://api.github.com/users/Glavin001/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/Glavin001/atom-beautify", + "description": ":lipstick: Universal beautification package for Atom editor (:warning: Currently migrating to https://github.com/Unibeautify/ and have very limited bandwidth for Atom-Beautify Issues. Thank you for your patience and understanding :heart: )", + "fork": false, + "url": "https://api.github.com/repos/Glavin001/atom-beautify", + "forks_url": "https://api.github.com/repos/Glavin001/atom-beautify/forks", + "keys_url": "https://api.github.com/repos/Glavin001/atom-beautify/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Glavin001/atom-beautify/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Glavin001/atom-beautify/teams", + "hooks_url": "https://api.github.com/repos/Glavin001/atom-beautify/hooks", + "issue_events_url": "https://api.github.com/repos/Glavin001/atom-beautify/issues/events{/number}", + "events_url": "https://api.github.com/repos/Glavin001/atom-beautify/events", + "assignees_url": "https://api.github.com/repos/Glavin001/atom-beautify/assignees{/user}", + "branches_url": "https://api.github.com/repos/Glavin001/atom-beautify/branches{/branch}", + "tags_url": "https://api.github.com/repos/Glavin001/atom-beautify/tags", + "blobs_url": "https://api.github.com/repos/Glavin001/atom-beautify/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Glavin001/atom-beautify/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Glavin001/atom-beautify/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Glavin001/atom-beautify/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Glavin001/atom-beautify/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Glavin001/atom-beautify/languages", + "stargazers_url": "https://api.github.com/repos/Glavin001/atom-beautify/stargazers", + "contributors_url": "https://api.github.com/repos/Glavin001/atom-beautify/contributors", + "subscribers_url": "https://api.github.com/repos/Glavin001/atom-beautify/subscribers", + "subscription_url": "https://api.github.com/repos/Glavin001/atom-beautify/subscription", + "commits_url": "https://api.github.com/repos/Glavin001/atom-beautify/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Glavin001/atom-beautify/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Glavin001/atom-beautify/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Glavin001/atom-beautify/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Glavin001/atom-beautify/contents/{+path}", + "compare_url": "https://api.github.com/repos/Glavin001/atom-beautify/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Glavin001/atom-beautify/merges", + "archive_url": "https://api.github.com/repos/Glavin001/atom-beautify/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Glavin001/atom-beautify/downloads", + "issues_url": "https://api.github.com/repos/Glavin001/atom-beautify/issues{/number}", + "pulls_url": "https://api.github.com/repos/Glavin001/atom-beautify/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Glavin001/atom-beautify/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Glavin001/atom-beautify/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Glavin001/atom-beautify/labels{/name}", + "releases_url": "https://api.github.com/repos/Glavin001/atom-beautify/releases{/id}", + "deployments_url": "https://api.github.com/repos/Glavin001/atom-beautify/deployments" + }, + "url": "https://api.github.com/notifications/threads/258634016", + "subscription_url": "https://api.github.com/notifications/threads/258634016/subscription" + }, + { + "id": "607002735", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-16T16:45:25Z", + "last_read_at": "2019-10-18T10:47:45Z", + "subject": { + "title": "Keep closing bracket and the last attribute at the same line.", + "url": "https://api.github.com/repos/beautify-web/js-beautify/issues/1721", + "latest_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/1721", + "type": "Issue" + }, + "repository": { + "id": 84822, + "node_id": "MDEwOlJlcG9zaXRvcnk4NDgyMg==", + "name": "js-beautify", + "full_name": "beautify-web/js-beautify", + "private": false, + "owner": { + "login": "beautify-web", + "id": 6538164, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjY1MzgxNjQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/6538164?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/beautify-web", + "html_url": "https://github.com/beautify-web", + "followers_url": "https://api.github.com/users/beautify-web/followers", + "following_url": "https://api.github.com/users/beautify-web/following{/other_user}", + "gists_url": "https://api.github.com/users/beautify-web/gists{/gist_id}", + "starred_url": "https://api.github.com/users/beautify-web/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/beautify-web/subscriptions", + "organizations_url": "https://api.github.com/users/beautify-web/orgs", + "repos_url": "https://api.github.com/users/beautify-web/repos", + "events_url": "https://api.github.com/users/beautify-web/events{/privacy}", + "received_events_url": "https://api.github.com/users/beautify-web/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/beautify-web/js-beautify", + "description": "Beautifier for javascript ", + "fork": false, + "url": "https://api.github.com/repos/beautify-web/js-beautify", + "forks_url": "https://api.github.com/repos/beautify-web/js-beautify/forks", + "keys_url": "https://api.github.com/repos/beautify-web/js-beautify/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/beautify-web/js-beautify/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/beautify-web/js-beautify/teams", + "hooks_url": "https://api.github.com/repos/beautify-web/js-beautify/hooks", + "issue_events_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/events{/number}", + "events_url": "https://api.github.com/repos/beautify-web/js-beautify/events", + "assignees_url": "https://api.github.com/repos/beautify-web/js-beautify/assignees{/user}", + "branches_url": "https://api.github.com/repos/beautify-web/js-beautify/branches{/branch}", + "tags_url": "https://api.github.com/repos/beautify-web/js-beautify/tags", + "blobs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/beautify-web/js-beautify/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/beautify-web/js-beautify/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/beautify-web/js-beautify/statuses/{sha}", + "languages_url": "https://api.github.com/repos/beautify-web/js-beautify/languages", + "stargazers_url": "https://api.github.com/repos/beautify-web/js-beautify/stargazers", + "contributors_url": "https://api.github.com/repos/beautify-web/js-beautify/contributors", + "subscribers_url": "https://api.github.com/repos/beautify-web/js-beautify/subscribers", + "subscription_url": "https://api.github.com/repos/beautify-web/js-beautify/subscription", + "commits_url": "https://api.github.com/repos/beautify-web/js-beautify/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/beautify-web/js-beautify/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/beautify-web/js-beautify/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/beautify-web/js-beautify/contents/{+path}", + "compare_url": "https://api.github.com/repos/beautify-web/js-beautify/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/beautify-web/js-beautify/merges", + "archive_url": "https://api.github.com/repos/beautify-web/js-beautify/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/beautify-web/js-beautify/downloads", + "issues_url": "https://api.github.com/repos/beautify-web/js-beautify/issues{/number}", + "pulls_url": "https://api.github.com/repos/beautify-web/js-beautify/pulls{/number}", + "milestones_url": "https://api.github.com/repos/beautify-web/js-beautify/milestones{/number}", + "notifications_url": "https://api.github.com/repos/beautify-web/js-beautify/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/beautify-web/js-beautify/labels{/name}", + "releases_url": "https://api.github.com/repos/beautify-web/js-beautify/releases{/id}", + "deployments_url": "https://api.github.com/repos/beautify-web/js-beautify/deployments" + }, + "url": "https://api.github.com/notifications/threads/607002735", + "subscription_url": "https://api.github.com/notifications/threads/607002735/subscription" + }, + { + "id": "605485023", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-16T16:38:30Z", + "last_read_at": null, + "subject": { + "title": "Misc code cleanups", + "url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls/331", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls/331", + "type": "PullRequest" + }, + "repository": { + "id": 55543225, + "node_id": "MDEwOlJlcG9zaXRvcnk1NTU0MzIyNQ==", + "name": "workflow-cps-plugin", + "full_name": "jenkinsci/workflow-cps-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/workflow-cps-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/605485023", + "subscription_url": "https://api.github.com/notifications/threads/605485023/subscription" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/__files/notifications-a979348d-c6be-4cb7-8877-7c42a6f013ae.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/__files/notifications-a979348d-c6be-4cb7-8877-7c42a6f013ae.json new file mode 100644 index 0000000000..ba07c768f7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/__files/notifications-a979348d-c6be-4cb7-8877-7c42a6f013ae.json @@ -0,0 +1,4102 @@ +[ + { + "id": "598459735", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-04T22:33:47Z", + "last_read_at": "2019-10-05T07:23:49Z", + "subject": { + "title": "chore(deps-dev): bump @types/react from 16.9.4 to 16.9.5", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/137", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/137", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/598459735", + "subscription_url": "https://api.github.com/notifications/threads/598459735/subscription" + }, + { + "id": "598458741", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-04T22:32:52Z", + "last_read_at": "2019-10-05T07:23:49Z", + "subject": { + "title": "chore(deps-dev): bump react-dom from 16.10.1 to 16.10.2", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/135", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/135", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/598458741", + "subscription_url": "https://api.github.com/notifications/threads/598458741/subscription" + }, + { + "id": "598458361", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-04T22:32:32Z", + "last_read_at": "2019-10-05T07:23:49Z", + "subject": { + "title": "chore(deps-dev): bump eslint-plugin-react-hooks from 2.0.1 to 2.1.2", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/134", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/134", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/598458361", + "subscription_url": "https://api.github.com/notifications/threads/598458361/subscription" + }, + { + "id": "598457945", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-04T22:32:15Z", + "last_read_at": "2019-10-05T07:23:49Z", + "subject": { + "title": "chore(deps-dev): bump webpack-dev-server from 3.8.1 to 3.8.2", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/133", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/133", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/598457945", + "subscription_url": "https://api.github.com/notifications/threads/598457945/subscription" + }, + { + "id": "596879361", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-04T22:31:22Z", + "last_read_at": "2019-10-05T07:23:49Z", + "subject": { + "title": "chore(deps-dev): bump husky from 3.0.5 to 3.0.8", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/131", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/131", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/596879361", + "subscription_url": "https://api.github.com/notifications/threads/596879361/subscription" + }, + { + "id": "599030710", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-10-04T22:00:36Z", + "last_read_at": "2019-10-05T07:24:45Z", + "subject": { + "title": "#hacktoberfest 2019 - Fix choose-your-github-account-organization-and-repository doc links", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2542", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2542", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/599030710", + "subscription_url": "https://api.github.com/notifications/threads/599030710/subscription" + }, + { + "id": "599003897", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-04T20:26:26Z", + "last_read_at": "2019-10-05T07:25:57Z", + "subject": { + "title": "Pick up DynamicContext as nonbeta", + "url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls/327", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls/327", + "type": "PullRequest" + }, + "repository": { + "id": 55543225, + "node_id": "MDEwOlJlcG9zaXRvcnk1NTU0MzIyNQ==", + "name": "workflow-cps-plugin", + "full_name": "jenkinsci/workflow-cps-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/workflow-cps-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/599003897", + "subscription_url": "https://api.github.com/notifications/threads/599003897/subscription" + }, + { + "id": "517649866", + "unread": false, + "reason": "state_change", + "updated_at": "2019-10-04T19:16:38Z", + "last_read_at": "2019-10-05T03:53:59Z", + "subject": { + "title": "Implement GitHub App API methods", + "url": "https://api.github.com/repos/github-api/github-api/pulls/522", + "latest_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments/538527136", + "type": "PullRequest" + }, + "repository": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments" + }, + "url": "https://api.github.com/notifications/threads/517649866", + "subscription_url": "https://api.github.com/notifications/threads/517649866/subscription" + }, + { + "id": "418782580", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-10-05T04:38:09Z", + "last_read_at": "2019-10-05T03:54:27Z", + "subject": { + "title": "Add statistics API.", + "url": "https://api.github.com/repos/github-api/github-api/pulls/477", + "latest_comment_url": "https://api.github.com/repos/github-api/github-api/pulls/477", + "type": "PullRequest" + }, + "repository": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments" + }, + "url": "https://api.github.com/notifications/threads/418782580", + "subscription_url": "https://api.github.com/notifications/threads/418782580/subscription" + }, + { + "id": "598869120", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-04T16:44:19Z", + "last_read_at": "2019-10-05T07:24:27Z", + "subject": { + "title": "chore(deps): bump https://github.com/cloudbees/jxui-frontend.git from 0.0.879 to 0.0.882", + "url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/47", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/47", + "type": "PullRequest" + }, + "repository": { + "id": 183067295, + "node_id": "MDEwOlJlcG9zaXRvcnkxODMwNjcyOTU=", + "name": "jx-app-ui", + "full_name": "cloudbees/jx-app-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jx-app-ui", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jx-app-ui", + "forks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jx-app-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jx-app-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jx-app-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jx-app-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jx-app-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jx-app-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jx-app-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jx-app-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jx-app-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jx-app-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jx-app-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jx-app-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jx-app-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jx-app-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/598869120", + "subscription_url": "https://api.github.com/notifications/threads/598869120/subscription" + }, + { + "id": "382997441", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-04T14:40:52Z", + "last_read_at": "2019-10-05T07:24:32Z", + "subject": { + "title": "[JENKINS-2111] Managed workspace indices", + "url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/pulls/129", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/issues/comments/538425783", + "type": "PullRequest" + }, + "repository": { + "id": 12878218, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjg3ODIxOA==", + "name": "branch-api-plugin", + "full_name": "jenkinsci/branch-api-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/branch-api-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/branch-api-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/382997441", + "subscription_url": "https://api.github.com/notifications/threads/382997441/subscription" + }, + { + "id": "598615590", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-04T13:50:19Z", + "last_read_at": "2019-10-05T07:24:27Z", + "subject": { + "title": "feat: disable checking if TLS is enabled when asking questions and default to single-user mode", + "url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/46", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/46", + "type": "PullRequest" + }, + "repository": { + "id": 183067295, + "node_id": "MDEwOlJlcG9zaXRvcnkxODMwNjcyOTU=", + "name": "jx-app-ui", + "full_name": "cloudbees/jx-app-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jx-app-ui", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jx-app-ui", + "forks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jx-app-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jx-app-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jx-app-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jx-app-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jx-app-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jx-app-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jx-app-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jx-app-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jx-app-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jx-app-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jx-app-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jx-app-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jx-app-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jx-app-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/598615590", + "subscription_url": "https://api.github.com/notifications/threads/598615590/subscription" + }, + { + "id": "566851373", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-04T13:36:31Z", + "last_read_at": "2019-10-05T07:24:27Z", + "subject": { + "title": "Schema should only ask for sso create", + "url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/7", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/7", + "type": "PullRequest" + }, + "repository": { + "id": 183067295, + "node_id": "MDEwOlJlcG9zaXRvcnkxODMwNjcyOTU=", + "name": "jx-app-ui", + "full_name": "cloudbees/jx-app-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jx-app-ui", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jx-app-ui", + "forks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jx-app-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jx-app-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jx-app-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jx-app-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jx-app-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jx-app-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jx-app-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jx-app-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jx-app-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jx-app-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jx-app-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jx-app-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jx-app-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jx-app-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/566851373", + "subscription_url": "https://api.github.com/notifications/threads/566851373/subscription" + }, + { + "id": "597824135", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-10-04T12:29:59Z", + "last_read_at": "2019-10-04T14:52:08Z", + "subject": { + "title": "[WEBSITE-666] - Hacktoberfest: Update the /participate/code page", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2538", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2538", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/597824135", + "subscription_url": "https://api.github.com/notifications/threads/597824135/subscription" + }, + { + "id": "598661721", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-04T11:58:32Z", + "last_read_at": "2019-10-05T07:24:52Z", + "subject": { + "title": "Improve loading speed with bulkCreate.", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/101", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/101", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/598661721", + "subscription_url": "https://api.github.com/notifications/threads/598661721/subscription" + }, + { + "id": "597419438", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-10-04T11:17:28Z", + "last_read_at": "2019-10-05T07:24:45Z", + "subject": { + "title": "Setup favicons according to realfavicongenerator.net", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2534", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments/538310896", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/597419438", + "subscription_url": "https://api.github.com/notifications/threads/597419438/subscription" + }, + { + "id": "519833137", + "unread": false, + "reason": "state_change", + "updated_at": "2019-10-04T10:26:10Z", + "last_read_at": "2019-10-04T14:51:59Z", + "subject": { + "title": "Draft: Opt-In Continuous Delivery of Jenkins Plugin Releases", + "url": "https://api.github.com/repos/jenkinsci/jep/pulls/244", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/jep/pulls/comments/331437212", + "type": "PullRequest" + }, + "repository": { + "id": 103302223, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDMzMDIyMjM=", + "name": "jep", + "full_name": "jenkinsci/jep", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jep", + "description": "Jenkins Enhancement Proposals", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jep", + "forks_url": "https://api.github.com/repos/jenkinsci/jep/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jep/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jep/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jep/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jep/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jep/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jep/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jep/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jep/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jep/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jep/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jep/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jep/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jep/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jep/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jep/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jep/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jep/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jep/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jep/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jep/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jep/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jep/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jep/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jep/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jep/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jep/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jep/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jep/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jep/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jep/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jep/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jep/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jep/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jep/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jep/deployments" + }, + "url": "https://api.github.com/notifications/threads/519833137", + "subscription_url": "https://api.github.com/notifications/threads/519833137/subscription" + }, + { + "id": "598523251", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-04T15:15:49Z", + "last_read_at": "2019-10-04T15:15:21Z", + "subject": { + "title": "Bump org.eclipse.jgit from 5.5.0.201909110433-r to 5.5.1.201910021850-r", + "url": "https://api.github.com/repos/github-api/github-api/pulls/561", + "latest_comment_url": "https://api.github.com/repos/github-api/github-api/pulls/561", + "type": "PullRequest" + }, + "repository": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments" + }, + "url": "https://api.github.com/notifications/threads/598523251", + "subscription_url": "https://api.github.com/notifications/threads/598523251/subscription" + }, + { + "id": "598453953", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-04T06:52:57Z", + "last_read_at": "2019-10-05T07:24:52Z", + "subject": { + "title": "CSDOCS-172 - Security updates for search / internals", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/100", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/100", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/598453953", + "subscription_url": "https://api.github.com/notifications/threads/598453953/subscription" + }, + { + "id": "594987400", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-04T06:27:07Z", + "last_read_at": "2019-10-04T07:35:17Z", + "subject": { + "title": "Bump eslint-plugin-react-hooks from 2.0.1 to 2.1.1", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/121", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/121", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/594987400", + "subscription_url": "https://api.github.com/notifications/threads/594987400/subscription" + }, + { + "id": "598366891", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-04T04:15:43Z", + "last_read_at": "2019-10-05T07:24:52Z", + "subject": { + "title": "[CSDOCS-184] Clean up search code and fix bugs", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/98", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/98", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/598366891", + "subscription_url": "https://api.github.com/notifications/threads/598366891/subscription" + }, + { + "id": "596061664", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-03T16:31:41Z", + "last_read_at": "2019-10-05T07:24:42Z", + "subject": { + "title": "Ngpipeline 727", + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/pulls/17", + "latest_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/pulls/17", + "type": "PullRequest" + }, + "repository": { + "id": 193577985, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTM1Nzc5ODU=", + "name": "cloudbees-pipeline-rules-interception-plugin", + "full_name": "cloudbees/cloudbees-pipeline-rules-interception-plugin", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/cloudbees-pipeline-rules-interception-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin", + "forks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/forks", + "keys_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/events", + "assignees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/merges", + "archive_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/596061664", + "subscription_url": "https://api.github.com/notifications/threads/596061664/subscription" + }, + { + "id": "597891638", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-03T13:34:18Z", + "last_read_at": "2019-10-03T15:33:25Z", + "subject": { + "title": "Import from CBN", + "url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/pulls/2", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/pulls/2", + "type": "PullRequest" + }, + "repository": { + "id": 146052751, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDYwNTI3NTE=", + "name": "docsite-cloudbees-common", + "full_name": "cloudbees/docsite-cloudbees-common", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-cloudbees-common", + "description": "CloudBees common documentation, built by the 'docsite-cloudbees' repository.", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/deployments" + }, + "url": "https://api.github.com/notifications/threads/597891638", + "subscription_url": "https://api.github.com/notifications/threads/597891638/subscription" + }, + { + "id": "597786596", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-03T13:27:05Z", + "last_read_at": "2019-10-05T07:24:45Z", + "subject": { + "title": "Hacktoberfest 2019 - Add links to the introductory slides", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2537", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2537", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/597786596", + "subscription_url": "https://api.github.com/notifications/threads/597786596/subscription" + }, + { + "id": "597785636", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-03T16:59:16Z", + "last_read_at": "2019-10-03T15:33:34Z", + "subject": { + "title": "Login details", + "url": "https://api.github.com/repos/github-api/github-api/issues/560", + "latest_comment_url": "https://api.github.com/repos/github-api/github-api/issues/560", + "type": "Issue" + }, + "repository": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments" + }, + "url": "https://api.github.com/notifications/threads/597785636", + "subscription_url": "https://api.github.com/notifications/threads/597785636/subscription" + }, + { + "id": "597086457", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-10-03T06:36:56Z", + "last_read_at": "2019-10-05T07:24:45Z", + "subject": { + "title": "Hacktoberfest 2019 - Add events in Munich, fix St. Petersburg meetup filename", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2532", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2532", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/597086457", + "subscription_url": "https://api.github.com/notifications/threads/597086457/subscription" + }, + { + "id": "597584632", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-03T05:39:17Z", + "last_read_at": "2019-10-05T07:24:52Z", + "subject": { + "title": "[CSDOCS-117] Refactor left nav behaviour as per CSDOCS-168 and some bugherd stuff", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/97", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/97", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/597584632", + "subscription_url": "https://api.github.com/notifications/threads/597584632/subscription" + }, + { + "id": "597543602", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-03T05:25:14Z", + "last_read_at": "2019-10-05T07:24:52Z", + "subject": { + "title": "Some outstanding search improvements", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/96", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/96", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/597543602", + "subscription_url": "https://api.github.com/notifications/threads/597543602/subscription" + }, + { + "id": "597434529", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-03T02:15:27Z", + "last_read_at": "2019-10-05T07:24:52Z", + "subject": { + "title": "CSDOCS-180 - Secure components that aren't ready for launch", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/95", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments/537756299", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/597434529", + "subscription_url": "https://api.github.com/notifications/threads/597434529/subscription" + }, + { + "id": "597424355", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-02T23:46:53Z", + "last_read_at": "2019-10-05T07:24:45Z", + "subject": { + "title": "fixed link to gitlab", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2535", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2535", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/597424355", + "subscription_url": "https://api.github.com/notifications/threads/597424355/subscription" + }, + { + "id": "593380479", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-10-02T18:45:01Z", + "last_read_at": "2019-10-05T07:24:45Z", + "subject": { + "title": "Update syntax.adoc", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2511", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments/537627761", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/593380479", + "subscription_url": "https://api.github.com/notifications/threads/593380479/subscription" + }, + { + "id": "597086080", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-02T17:01:13Z", + "last_read_at": "2019-10-05T07:24:01Z", + "subject": { + "title": "[FNDJEN-1499] Stop blocking ec2", + "url": "https://api.github.com/repos/cloudbees/urap/pulls/15", + "latest_comment_url": "https://api.github.com/repos/cloudbees/urap/pulls/15", + "type": "PullRequest" + }, + "repository": { + "id": 202161566, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDIxNjE1NjY=", + "name": "urap", + "full_name": "cloudbees/urap", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/urap", + "description": "Unified Release Automatic Plugin updater. https://en.wikipedia.org/wiki/Urap", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/urap", + "forks_url": "https://api.github.com/repos/cloudbees/urap/forks", + "keys_url": "https://api.github.com/repos/cloudbees/urap/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/urap/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/urap/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/urap/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/urap/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/urap/events", + "assignees_url": "https://api.github.com/repos/cloudbees/urap/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/urap/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/urap/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/urap/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/urap/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/urap/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/urap/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/urap/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/urap/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/urap/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/urap/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/urap/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/urap/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/urap/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/urap/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/urap/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/urap/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/urap/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/urap/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/urap/merges", + "archive_url": "https://api.github.com/repos/cloudbees/urap/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/urap/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/urap/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/urap/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/urap/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/urap/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/urap/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/urap/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/urap/deployments" + }, + "url": "https://api.github.com/notifications/threads/597086080", + "subscription_url": "https://api.github.com/notifications/threads/597086080/subscription" + }, + { + "id": "597182041", + "unread": false, + "reason": "state_change", + "updated_at": "2019-10-02T16:10:38Z", + "last_read_at": "2019-10-04T07:34:56Z", + "subject": { + "title": "Bump okhttp3.version from 3.12.3 to 4.2.1", + "url": "https://api.github.com/repos/github-api/github-api/pulls/559", + "latest_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments/537566232", + "type": "PullRequest" + }, + "repository": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments" + }, + "url": "https://api.github.com/notifications/threads/597182041", + "subscription_url": "https://api.github.com/notifications/threads/597182041/subscription" + }, + { + "id": "596604983", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-10-02T16:07:23Z", + "last_read_at": "2019-10-05T07:24:45Z", + "subject": { + "title": "Hacktoberfest - Fixed favicons for main frame", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2525", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2525", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/596604983", + "subscription_url": "https://api.github.com/notifications/threads/596604983/subscription" + }, + { + "id": "597181556", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-02T16:12:46Z", + "last_read_at": "2019-10-02T16:11:18Z", + "subject": { + "title": "Bump okio from 2.2.2 to 2.4.0", + "url": "https://api.github.com/repos/github-api/github-api/pulls/558", + "latest_comment_url": "https://api.github.com/repos/github-api/github-api/pulls/558", + "type": "PullRequest" + }, + "repository": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments" + }, + "url": "https://api.github.com/notifications/threads/597181556", + "subscription_url": "https://api.github.com/notifications/threads/597181556/subscription" + }, + { + "id": "587389958", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-02T15:27:53Z", + "last_read_at": "2019-10-05T07:25:57Z", + "subject": { + "title": "Parallel step should offer the ability to propagate the worst result", + "url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls/325", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/comments/537546899", + "type": "PullRequest" + }, + "repository": { + "id": 55543225, + "node_id": "MDEwOlJlcG9zaXRvcnk1NTU0MzIyNQ==", + "name": "workflow-cps-plugin", + "full_name": "jenkinsci/workflow-cps-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/workflow-cps-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/587389958", + "subscription_url": "https://api.github.com/notifications/threads/587389958/subscription" + }, + { + "id": "596913653", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-10-02T15:26:09Z", + "last_read_at": "2019-10-02T15:47:59Z", + "subject": { + "title": "Automatically request reviews from the Hacktoberfest team for the Hactoberfest page changes", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2528", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2528", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/596913653", + "subscription_url": "https://api.github.com/notifications/threads/596913653/subscription" + }, + { + "id": "568617426", + "unread": false, + "reason": "author", + "updated_at": "2019-10-02T22:28:36Z", + "last_read_at": "2019-10-02T22:28:07Z", + "subject": { + "title": "Update test dependencies", + "url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/pulls/241", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/pulls/241", + "type": "PullRequest" + }, + "repository": { + "id": 43903637, + "node_id": "MDEwOlJlcG9zaXRvcnk0MzkwMzYzNw==", + "name": "github-branch-source-plugin", + "full_name": "jenkinsci/github-branch-source-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/github-branch-source-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/568617426", + "subscription_url": "https://api.github.com/notifications/threads/568617426/subscription" + }, + { + "id": "597052475", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-10-02T13:31:55Z", + "last_read_at": "2019-10-05T07:24:45Z", + "subject": { + "title": "Remove meeting notes from Docs SIG page", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2531", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2531", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/597052475", + "subscription_url": "https://api.github.com/notifications/threads/597052475/subscription" + }, + { + "id": "596417621", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-10-02T13:23:03Z", + "last_read_at": "2019-10-05T07:24:49Z", + "subject": { + "title": "Remove useless whitelist entries and fix typo", + "url": "https://api.github.com/repos/jenkinsci/script-security-plugin/pulls/268", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/issues/comments/537489698", + "type": "PullRequest" + }, + "repository": { + "id": 17301604, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzMwMTYwNA==", + "name": "script-security-plugin", + "full_name": "jenkinsci/script-security-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/script-security-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/script-security-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/596417621", + "subscription_url": "https://api.github.com/notifications/threads/596417621/subscription" + }, + { + "id": "596585596", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-10-02T13:16:46Z", + "last_read_at": "2019-10-05T07:24:45Z", + "subject": { + "title": "Hacktoberfest - Make the event teaser collapsable", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2524", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments/537487208", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/596585596", + "subscription_url": "https://api.github.com/notifications/threads/596585596/subscription" + }, + { + "id": "596909365", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-10-02T13:03:32Z", + "last_read_at": "2019-10-05T07:24:45Z", + "subject": { + "title": "Hacktoberfest 2019 - Add the St. Petersburg JAM on Oct 28", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2527", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2527", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/596909365", + "subscription_url": "https://api.github.com/notifications/threads/596909365/subscription" + }, + { + "id": "596909086", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-10-02T12:50:19Z", + "last_read_at": "2019-10-05T07:24:45Z", + "subject": { + "title": "Hacktoberfest 2019: Add Hacktoberfest issue queries and the experienced developers section", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2526", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2526", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/596909086", + "subscription_url": "https://api.github.com/notifications/threads/596909086/subscription" + }, + { + "id": "596972533", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-10-02T12:01:36Z", + "last_read_at": "2019-10-05T07:24:45Z", + "subject": { + "title": "Link to Hacktoberfest contributing to Jenkins slides", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2530", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2530", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/596972533", + "subscription_url": "https://api.github.com/notifications/threads/596972533/subscription" + }, + { + "id": "596967139", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-10-02T12:01:26Z", + "last_read_at": "2019-10-05T07:24:45Z", + "subject": { + "title": "Replace Hacktoberfest 2018 badge with a scaled 2019 version ", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2529", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2529", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/596967139", + "subscription_url": "https://api.github.com/notifications/threads/596967139/subscription" + }, + { + "id": "556069096", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-02T11:34:29Z", + "last_read_at": "2019-10-05T07:24:49Z", + "subject": { + "title": "JENKINS-58799: Whitelisting a few collection related methods", + "url": "https://api.github.com/repos/jenkinsci/script-security-plugin/pulls/261", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/pulls/comments/330499539", + "type": "PullRequest" + }, + "repository": { + "id": 17301604, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzMwMTYwNA==", + "name": "script-security-plugin", + "full_name": "jenkinsci/script-security-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/script-security-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/script-security-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/556069096", + "subscription_url": "https://api.github.com/notifications/threads/556069096/subscription" + }, + { + "id": "594988816", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-02T08:59:53Z", + "last_read_at": "2019-10-02T09:09:43Z", + "subject": { + "title": "Bump husky from 3.0.5 to 3.0.7", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/124", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/124", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/594988816", + "subscription_url": "https://api.github.com/notifications/threads/594988816/subscription" + }, + { + "id": "523439143", + "unread": false, + "reason": "mention", + "updated_at": "2019-10-02T09:10:43Z", + "last_read_at": "2019-10-02T09:09:51Z", + "subject": { + "title": "[JENKINS-48837] Add BranchProperty support to OrganizationFolder", + "url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/pulls/160", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/issues/comments/537407063", + "type": "PullRequest" + }, + "repository": { + "id": 12878218, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjg3ODIxOA==", + "name": "branch-api-plugin", + "full_name": "jenkinsci/branch-api-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/branch-api-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/branch-api-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/523439143", + "subscription_url": "https://api.github.com/notifications/threads/523439143/subscription" + }, + { + "id": "555407515", + "unread": false, + "reason": "comment", + "updated_at": "2019-10-02T07:52:34Z", + "last_read_at": "2019-10-02T16:08:40Z", + "subject": { + "title": "Support HTML tags in description column", + "url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/pulls/165", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/issues/comments/537379854", + "type": "PullRequest" + }, + "repository": { + "id": 12878218, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjg3ODIxOA==", + "name": "branch-api-plugin", + "full_name": "jenkinsci/branch-api-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/branch-api-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/branch-api-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/555407515", + "subscription_url": "https://api.github.com/notifications/threads/555407515/subscription" + }, + { + "id": "596692529", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-02T01:58:33Z", + "last_read_at": "2019-10-05T07:24:32Z", + "subject": { + "title": "Fix PCT failure on 2.190.x", + "url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/pulls/167", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/pulls/167", + "type": "PullRequest" + }, + "repository": { + "id": 12878218, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjg3ODIxOA==", + "name": "branch-api-plugin", + "full_name": "jenkinsci/branch-api-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/branch-api-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/branch-api-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/596692529", + "subscription_url": "https://api.github.com/notifications/threads/596692529/subscription" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/__files/notifications-ac22e3e2-f0d3-4ff1-af23-23e9c79c725c.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/__files/notifications-ac22e3e2-f0d3-4ff1-af23-23e9c79c725c.json new file mode 100644 index 0000000000..a36d8ac165 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/__files/notifications-ac22e3e2-f0d3-4ff1-af23-23e9c79c725c.json @@ -0,0 +1,4102 @@ +[ + { + "id": "592673320", + "unread": true, + "reason": "comment", + "updated_at": "2019-10-26T00:58:29Z", + "last_read_at": "2019-10-03T15:52:37Z", + "subject": { + "title": "Pipeline concepts questions", + "url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/pulls/54", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/pulls/comments/339279071", + "type": "PullRequest" + }, + "repository": { + "id": 117846164, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTc4NDYxNjQ=", + "name": "jenkins-certification-exam", + "full_name": "cloudbees/jenkins-certification-exam", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jenkins-certification-exam", + "description": "Jenkins Certification Exam Questions", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam", + "forks_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/deployments" + }, + "url": "https://api.github.com/notifications/threads/592673320", + "subscription_url": "https://api.github.com/notifications/threads/592673320/subscription" + }, + { + "id": "593645802", + "unread": true, + "reason": "review_requested", + "updated_at": "2019-10-25T22:13:07Z", + "last_read_at": "2019-09-30T16:05:46Z", + "subject": { + "title": "DevOps World Jenkins World San Francisco in Living Colors", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2512", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments/546530050", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/593645802", + "subscription_url": "https://api.github.com/notifications/threads/593645802/subscription" + }, + { + "id": "615089186", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-25T21:59:32Z", + "last_read_at": null, + "subject": { + "title": "Move CJD license report to CJD component", + "url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/pulls/11", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/pulls/11", + "type": "PullRequest" + }, + "repository": { + "id": 146052751, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDYwNTI3NTE=", + "name": "docsite-cloudbees-common", + "full_name": "cloudbees/docsite-cloudbees-common", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-cloudbees-common", + "description": "CloudBees common documentation, built by the 'docsite-cloudbees' repository.", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/deployments" + }, + "url": "https://api.github.com/notifications/threads/615089186", + "subscription_url": "https://api.github.com/notifications/threads/615089186/subscription" + }, + { + "id": "615084531", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-25T21:48:24Z", + "last_read_at": null, + "subject": { + "title": "move CJD license report to CJD component", + "url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/pulls/10", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/pulls/10", + "type": "PullRequest" + }, + "repository": { + "id": 146052751, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDYwNTI3NTE=", + "name": "docsite-cloudbees-common", + "full_name": "cloudbees/docsite-cloudbees-common", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-cloudbees-common", + "description": "CloudBees common documentation, built by the 'docsite-cloudbees' repository.", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/deployments" + }, + "url": "https://api.github.com/notifications/threads/615084531", + "subscription_url": "https://api.github.com/notifications/threads/615084531/subscription" + }, + { + "id": "615049233", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-25T20:40:41Z", + "last_read_at": null, + "subject": { + "title": "Update eslint to the latest version 🚀", + "url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/pulls/292", + "latest_comment_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/pulls/292", + "type": "PullRequest" + }, + "repository": { + "id": 7192181, + "node_id": "MDEwOlJlcG9zaXRvcnk3MTkyMTgx", + "name": "brackets-beautify", + "full_name": "brackets-beautify/brackets-beautify", + "private": false, + "owner": { + "login": "brackets-beautify", + "id": 15680026, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjgwMDI2", + "avatar_url": "https://avatars1.githubusercontent.com/u/15680026?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/brackets-beautify", + "html_url": "https://github.com/brackets-beautify", + "followers_url": "https://api.github.com/users/brackets-beautify/followers", + "following_url": "https://api.github.com/users/brackets-beautify/following{/other_user}", + "gists_url": "https://api.github.com/users/brackets-beautify/gists{/gist_id}", + "starred_url": "https://api.github.com/users/brackets-beautify/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/brackets-beautify/subscriptions", + "organizations_url": "https://api.github.com/users/brackets-beautify/orgs", + "repos_url": "https://api.github.com/users/brackets-beautify/repos", + "events_url": "https://api.github.com/users/brackets-beautify/events{/privacy}", + "received_events_url": "https://api.github.com/users/brackets-beautify/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/brackets-beautify/brackets-beautify", + "description": "Beautify HTML, CSS, and Javascript in Adobe Brackets", + "fork": false, + "url": "https://api.github.com/repos/brackets-beautify/brackets-beautify", + "forks_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/forks", + "keys_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/teams", + "hooks_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/hooks", + "issue_events_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/issues/events{/number}", + "events_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/events", + "assignees_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/assignees{/user}", + "branches_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/branches{/branch}", + "tags_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/tags", + "blobs_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/statuses/{sha}", + "languages_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/languages", + "stargazers_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/stargazers", + "contributors_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/contributors", + "subscribers_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/subscribers", + "subscription_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/subscription", + "commits_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/contents/{+path}", + "compare_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/merges", + "archive_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/downloads", + "issues_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/issues{/number}", + "pulls_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/pulls{/number}", + "milestones_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/milestones{/number}", + "notifications_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/labels{/name}", + "releases_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/releases{/id}", + "deployments_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/deployments" + }, + "url": "https://api.github.com/notifications/threads/615049233", + "subscription_url": "https://api.github.com/notifications/threads/615049233/subscription" + }, + { + "id": "612162080", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-25T19:58:58Z", + "last_read_at": "2019-10-25T01:21:40Z", + "subject": { + "title": "chore(deps-dev): bump webpack-dev-server from 3.8.2 to 3.9.0", + "url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/33", + "latest_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/comments/546491929", + "type": "PullRequest" + }, + "repository": { + "id": 215874575, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTU4NzQ1NzU=", + "name": "sdm-ui", + "full_name": "cloudbees/sdm-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/sdm-ui", + "description": "SDM UI repository", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/sdm-ui", + "forks_url": "https://api.github.com/repos/cloudbees/sdm-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/sdm-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/sdm-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/sdm-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/sdm-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/sdm-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/sdm-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/sdm-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/sdm-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/sdm-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/sdm-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/sdm-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/sdm-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/sdm-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/sdm-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/sdm-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/sdm-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/sdm-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/sdm-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/sdm-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/sdm-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/sdm-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/sdm-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/612162080", + "subscription_url": "https://api.github.com/notifications/threads/612162080/subscription" + }, + { + "id": "614428678", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-25T19:58:10Z", + "last_read_at": null, + "subject": { + "title": "chore(deps): bump i18next from 17.2.0 to 18.0.0", + "url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/40", + "latest_comment_url": null, + "type": "PullRequest" + }, + "repository": { + "id": 215874575, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTU4NzQ1NzU=", + "name": "sdm-ui", + "full_name": "cloudbees/sdm-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/sdm-ui", + "description": "SDM UI repository", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/sdm-ui", + "forks_url": "https://api.github.com/repos/cloudbees/sdm-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/sdm-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/sdm-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/sdm-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/sdm-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/sdm-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/sdm-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/sdm-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/sdm-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/sdm-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/sdm-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/sdm-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/sdm-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/sdm-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/sdm-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/sdm-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/sdm-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/sdm-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/sdm-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/sdm-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/sdm-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/sdm-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/sdm-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/614428678", + "subscription_url": "https://api.github.com/notifications/threads/614428678/subscription" + }, + { + "id": "613402825", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-25T19:57:26Z", + "last_read_at": "2019-10-25T01:21:40Z", + "subject": { + "title": "chore(deps-dev): bump eslint-config-airbnb-typescript from 4.0.1 to 6.0.0", + "url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/35", + "latest_comment_url": null, + "type": "PullRequest" + }, + "repository": { + "id": 215874575, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTU4NzQ1NzU=", + "name": "sdm-ui", + "full_name": "cloudbees/sdm-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/sdm-ui", + "description": "SDM UI repository", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/sdm-ui", + "forks_url": "https://api.github.com/repos/cloudbees/sdm-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/sdm-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/sdm-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/sdm-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/sdm-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/sdm-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/sdm-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/sdm-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/sdm-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/sdm-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/sdm-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/sdm-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/sdm-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/sdm-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/sdm-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/sdm-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/sdm-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/sdm-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/sdm-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/sdm-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/sdm-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/sdm-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/sdm-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/613402825", + "subscription_url": "https://api.github.com/notifications/threads/613402825/subscription" + }, + { + "id": "614433747", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-25T19:56:16Z", + "last_read_at": null, + "subject": { + "title": "chore(deps-dev): bump @types/node from 12.11.1 to 12.11.7", + "url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/41", + "latest_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/comments/546491093", + "type": "PullRequest" + }, + "repository": { + "id": 215874575, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTU4NzQ1NzU=", + "name": "sdm-ui", + "full_name": "cloudbees/sdm-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/sdm-ui", + "description": "SDM UI repository", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/sdm-ui", + "forks_url": "https://api.github.com/repos/cloudbees/sdm-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/sdm-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/sdm-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/sdm-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/sdm-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/sdm-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/sdm-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/sdm-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/sdm-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/sdm-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/sdm-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/sdm-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/sdm-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/sdm-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/sdm-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/sdm-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/sdm-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/sdm-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/sdm-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/sdm-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/sdm-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/sdm-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/sdm-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/614433747", + "subscription_url": "https://api.github.com/notifications/threads/614433747/subscription" + }, + { + "id": "611969541", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-25T19:55:47Z", + "last_read_at": "2019-10-25T01:12:20Z", + "subject": { + "title": "chore(deps): bump i18next-browser-languagedetector from 3.1.1 to 4.0.0", + "url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/26", + "latest_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/comments/546490963", + "type": "PullRequest" + }, + "repository": { + "id": 215874575, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTU4NzQ1NzU=", + "name": "sdm-ui", + "full_name": "cloudbees/sdm-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/sdm-ui", + "description": "SDM UI repository", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/sdm-ui", + "forks_url": "https://api.github.com/repos/cloudbees/sdm-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/sdm-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/sdm-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/sdm-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/sdm-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/sdm-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/sdm-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/sdm-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/sdm-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/sdm-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/sdm-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/sdm-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/sdm-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/sdm-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/sdm-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/sdm-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/sdm-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/sdm-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/sdm-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/sdm-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/sdm-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/sdm-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/sdm-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/611969541", + "subscription_url": "https://api.github.com/notifications/threads/611969541/subscription" + }, + { + "id": "611969388", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-25T19:55:11Z", + "last_read_at": "2019-10-25T01:12:20Z", + "subject": { + "title": "chore(deps-dev): bump @typescript-eslint/eslint-plugin from 2.4.0 to 2.5.0", + "url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/25", + "latest_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/comments/546490787", + "type": "PullRequest" + }, + "repository": { + "id": 215874575, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTU4NzQ1NzU=", + "name": "sdm-ui", + "full_name": "cloudbees/sdm-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/sdm-ui", + "description": "SDM UI repository", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/sdm-ui", + "forks_url": "https://api.github.com/repos/cloudbees/sdm-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/sdm-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/sdm-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/sdm-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/sdm-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/sdm-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/sdm-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/sdm-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/sdm-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/sdm-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/sdm-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/sdm-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/sdm-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/sdm-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/sdm-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/sdm-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/sdm-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/sdm-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/sdm-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/sdm-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/sdm-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/sdm-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/sdm-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/611969388", + "subscription_url": "https://api.github.com/notifications/threads/611969388/subscription" + }, + { + "id": "614843210", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-25T19:49:00Z", + "last_read_at": null, + "subject": { + "title": "CB Product Switcher", + "url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/42", + "latest_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/comments/546437737", + "type": "PullRequest" + }, + "repository": { + "id": 215874575, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTU4NzQ1NzU=", + "name": "sdm-ui", + "full_name": "cloudbees/sdm-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/sdm-ui", + "description": "SDM UI repository", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/sdm-ui", + "forks_url": "https://api.github.com/repos/cloudbees/sdm-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/sdm-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/sdm-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/sdm-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/sdm-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/sdm-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/sdm-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/sdm-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/sdm-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/sdm-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/sdm-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/sdm-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/sdm-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/sdm-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/sdm-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/sdm-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/sdm-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/sdm-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/sdm-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/sdm-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/sdm-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/sdm-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/sdm-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/614843210", + "subscription_url": "https://api.github.com/notifications/threads/614843210/subscription" + }, + { + "id": "614973301", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-25T19:39:35Z", + "last_read_at": null, + "subject": { + "title": "v0.12.0", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/releases/20989575", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases/20989575", + "type": "Release" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/614973301", + "subscription_url": "https://api.github.com/notifications/threads/614973301/subscription" + }, + { + "id": "614922742", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-25T18:21:42Z", + "last_read_at": null, + "subject": { + "title": "Disable ACI usage", + "url": "https://api.github.com/repos/jenkins-infra/pipeline-library/pulls/118", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/issues/comments/546459925", + "type": "PullRequest" + }, + "repository": { + "id": 65505983, + "node_id": "MDEwOlJlcG9zaXRvcnk2NTUwNTk4Mw==", + "name": "pipeline-library", + "full_name": "jenkins-infra/pipeline-library", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/pipeline-library", + "description": "Collection of custom steps and variables for our Jenkins instance(s)", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/pipeline-library", + "forks_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/deployments" + }, + "url": "https://api.github.com/notifications/threads/614922742", + "subscription_url": "https://api.github.com/notifications/threads/614922742/subscription" + }, + { + "id": "613611861", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-25T17:13:26Z", + "last_read_at": "2019-10-25T01:21:40Z", + "subject": { + "title": "[PH-988] As a user I would like to see the GitHub Organization column on linking repository modal", + "url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/36", + "latest_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/comments/546436621", + "type": "PullRequest" + }, + "repository": { + "id": 215874575, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTU4NzQ1NzU=", + "name": "sdm-ui", + "full_name": "cloudbees/sdm-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/sdm-ui", + "description": "SDM UI repository", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/sdm-ui", + "forks_url": "https://api.github.com/repos/cloudbees/sdm-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/sdm-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/sdm-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/sdm-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/sdm-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/sdm-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/sdm-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/sdm-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/sdm-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/sdm-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/sdm-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/sdm-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/sdm-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/sdm-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/sdm-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/sdm-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/sdm-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/sdm-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/sdm-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/sdm-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/sdm-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/sdm-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/sdm-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/613611861", + "subscription_url": "https://api.github.com/notifications/threads/613611861/subscription" + }, + { + "id": "608706458", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-25T17:04:15Z", + "last_read_at": "2019-10-21T19:53:17Z", + "subject": { + "title": "CBDA-290: Extract component `Card` into HU-react library", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/173", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/173", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/608706458", + "subscription_url": "https://api.github.com/notifications/threads/608706458/subscription" + }, + { + "id": "614754819", + "unread": true, + "reason": "review_requested", + "updated_at": "2019-10-25T15:27:26Z", + "last_read_at": null, + "subject": { + "title": "Make Platform Sig meeting time 12:00 UTC", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2596", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2596", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/614754819", + "subscription_url": "https://api.github.com/notifications/threads/614754819/subscription" + }, + { + "id": "614755385", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-25T14:55:58Z", + "last_read_at": null, + "subject": { + "title": "update links for Flow and Accelerator", + "url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/pulls/9", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/pulls/9", + "type": "PullRequest" + }, + "repository": { + "id": 146052751, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDYwNTI3NTE=", + "name": "docsite-cloudbees-common", + "full_name": "cloudbees/docsite-cloudbees-common", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-cloudbees-common", + "description": "CloudBees common documentation, built by the 'docsite-cloudbees' repository.", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/deployments" + }, + "url": "https://api.github.com/notifications/threads/614755385", + "subscription_url": "https://api.github.com/notifications/threads/614755385/subscription" + }, + { + "id": "614054301", + "unread": true, + "reason": "review_requested", + "updated_at": "2019-10-25T14:30:45Z", + "last_read_at": null, + "subject": { + "title": "[WEBSITE-664] Add testing.adoc in participate content", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2594", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2594", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/614054301", + "subscription_url": "https://api.github.com/notifications/threads/614054301/subscription" + }, + { + "id": "609618108", + "unread": true, + "reason": "review_requested", + "updated_at": "2019-10-25T14:19:32Z", + "last_read_at": null, + "subject": { + "title": "Fill out plugin dev chapter more", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2586", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments/546373579", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/609618108", + "subscription_url": "https://api.github.com/notifications/threads/609618108/subscription" + }, + { + "id": "613826084", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-25T13:59:30Z", + "last_read_at": "2019-10-25T01:21:40Z", + "subject": { + "title": "CBDA-187 As a user I see information about each of my associated Jira issues in Features contribution", + "url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/38", + "latest_comment_url": null, + "type": "PullRequest" + }, + "repository": { + "id": 215874575, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTU4NzQ1NzU=", + "name": "sdm-ui", + "full_name": "cloudbees/sdm-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/sdm-ui", + "description": "SDM UI repository", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/sdm-ui", + "forks_url": "https://api.github.com/repos/cloudbees/sdm-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/sdm-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/sdm-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/sdm-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/sdm-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/sdm-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/sdm-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/sdm-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/sdm-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/sdm-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/sdm-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/sdm-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/sdm-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/sdm-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/sdm-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/sdm-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/sdm-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/sdm-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/sdm-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/sdm-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/sdm-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/sdm-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/sdm-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/613826084", + "subscription_url": "https://api.github.com/notifications/threads/613826084/subscription" + }, + { + "id": "613250472", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-25T13:59:07Z", + "last_read_at": null, + "subject": { + "title": "[CTR-706] New tutorial triggering jobs with a simple webhook and json null issue", + "url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/pulls/6", + "latest_comment_url": null, + "type": "PullRequest" + }, + "repository": { + "id": 146052751, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDYwNTI3NTE=", + "name": "docsite-cloudbees-common", + "full_name": "cloudbees/docsite-cloudbees-common", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-cloudbees-common", + "description": "CloudBees common documentation, built by the 'docsite-cloudbees' repository.", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/deployments" + }, + "url": "https://api.github.com/notifications/threads/613250472", + "subscription_url": "https://api.github.com/notifications/threads/613250472/subscription" + }, + { + "id": "612346246", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-25T13:04:09Z", + "last_read_at": null, + "subject": { + "title": "[FNDJEN-1625] Update event names and property names to match naming convention", + "url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/pulls/15", + "latest_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/pulls/15", + "type": "PullRequest" + }, + "repository": { + "id": 205587249, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDU1ODcyNDk=", + "name": "cloudbees-analytics-plugin", + "full_name": "cloudbees/cloudbees-analytics-plugin", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/cloudbees-analytics-plugin", + "description": "The analytics plugin to gather and send information to an endpoint using a standard analytics API", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin", + "forks_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/forks", + "keys_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/events", + "assignees_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/merges", + "archive_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/612346246", + "subscription_url": "https://api.github.com/notifications/threads/612346246/subscription" + }, + { + "id": "612161835", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-25T07:16:28Z", + "last_read_at": "2019-10-25T01:21:40Z", + "subject": { + "title": "chore(deps-dev): bump @types/node from 12.11.1 to 12.11.5", + "url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/32", + "latest_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/32", + "type": "PullRequest" + }, + "repository": { + "id": 215874575, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTU4NzQ1NzU=", + "name": "sdm-ui", + "full_name": "cloudbees/sdm-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/sdm-ui", + "description": "SDM UI repository", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/sdm-ui", + "forks_url": "https://api.github.com/repos/cloudbees/sdm-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/sdm-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/sdm-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/sdm-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/sdm-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/sdm-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/sdm-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/sdm-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/sdm-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/sdm-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/sdm-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/sdm-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/sdm-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/sdm-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/sdm-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/sdm-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/sdm-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/sdm-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/sdm-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/sdm-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/sdm-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/sdm-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/sdm-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/612161835", + "subscription_url": "https://api.github.com/notifications/threads/612161835/subscription" + }, + { + "id": "612161356", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-25T07:07:15Z", + "last_read_at": "2019-10-25T01:21:40Z", + "subject": { + "title": "chore(deps): bump i18next from 17.2.0 to 17.3.0", + "url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/31", + "latest_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/31", + "type": "PullRequest" + }, + "repository": { + "id": 215874575, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTU4NzQ1NzU=", + "name": "sdm-ui", + "full_name": "cloudbees/sdm-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/sdm-ui", + "description": "SDM UI repository", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/sdm-ui", + "forks_url": "https://api.github.com/repos/cloudbees/sdm-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/sdm-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/sdm-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/sdm-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/sdm-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/sdm-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/sdm-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/sdm-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/sdm-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/sdm-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/sdm-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/sdm-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/sdm-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/sdm-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/sdm-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/sdm-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/sdm-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/sdm-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/sdm-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/sdm-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/sdm-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/sdm-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/sdm-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/612161356", + "subscription_url": "https://api.github.com/notifications/threads/612161356/subscription" + }, + { + "id": "598425894", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-25T06:18:30Z", + "last_read_at": "2019-10-18T16:57:29Z", + "subject": { + "title": "[NGPIPELINE-732] Track timing information for steps", + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/pulls/22", + "latest_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/pulls/comments/338900257", + "type": "PullRequest" + }, + "repository": { + "id": 200867838, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDA4Njc4Mzg=", + "name": "cloudbees-pipeline-analytics-plugin", + "full_name": "cloudbees/cloudbees-pipeline-analytics-plugin", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/cloudbees-pipeline-analytics-plugin", + "description": "PoC Plugin for https://cloudbees.atlassian.net/browse/NGPIPELINE-610", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin", + "forks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/forks", + "keys_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/events", + "assignees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/merges", + "archive_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/598425894", + "subscription_url": "https://api.github.com/notifications/threads/598425894/subscription" + }, + { + "id": "614396131", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-25T06:03:39Z", + "last_read_at": null, + "subject": { + "title": "chore(deps-dev): bump @types/react from 16.9.9 to 16.9.10", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/185", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/185", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/614396131", + "subscription_url": "https://api.github.com/notifications/threads/614396131/subscription" + }, + { + "id": "614395485", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-25T06:02:26Z", + "last_read_at": null, + "subject": { + "title": "chore(deps-dev): bump babel-plugin-react-docgen from 3.1.0 to 3.2.0", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/184", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/184", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/614395485", + "subscription_url": "https://api.github.com/notifications/threads/614395485/subscription" + }, + { + "id": "614316328", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-25T03:22:43Z", + "last_read_at": null, + "subject": { + "title": "CSDOCS-276", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/171", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/171", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/614316328", + "subscription_url": "https://api.github.com/notifications/threads/614316328/subscription" + }, + { + "id": "578780494", + "unread": true, + "reason": "review_requested", + "updated_at": "2019-10-25T00:57:29Z", + "last_read_at": "2019-09-30T16:05:46Z", + "subject": { + "title": "Add Tutorial: Build a LabVIEW app", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2463", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2463", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/578780494", + "subscription_url": "https://api.github.com/notifications/threads/578780494/subscription" + }, + { + "id": "614273392", + "unread": true, + "reason": "review_requested", + "updated_at": "2019-10-25T00:56:21Z", + "last_read_at": null, + "subject": { + "title": "Add Yaroslavl meetup logo", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2595", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2595", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/614273392", + "subscription_url": "https://api.github.com/notifications/threads/614273392/subscription" + }, + { + "id": "609254411", + "unread": true, + "reason": "review_requested", + "updated_at": "2019-10-25T00:56:01Z", + "last_read_at": null, + "subject": { + "title": "Add sections to navigation in developerbook", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2580", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2580", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/609254411", + "subscription_url": "https://api.github.com/notifications/threads/609254411/subscription" + }, + { + "id": "607232889", + "unread": true, + "reason": "review_requested", + "updated_at": "2019-10-25T00:32:47Z", + "last_read_at": null, + "subject": { + "title": "Validate logos and event locations", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2570", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2570", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/607232889", + "subscription_url": "https://api.github.com/notifications/threads/607232889/subscription" + }, + { + "id": "613537483", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-25T00:19:28Z", + "last_read_at": null, + "subject": { + "title": "[CSDOCS-262][CSDOCS-271][CSDOCS-261] Add search page pagination and no results msg", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/170", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/170", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/613537483", + "subscription_url": "https://api.github.com/notifications/threads/613537483/subscription" + }, + { + "id": "612407841", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-24T20:34:41Z", + "last_read_at": null, + "subject": { + "title": "close the dropdown when option is clicked", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/183", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/183", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/612407841", + "subscription_url": "https://api.github.com/notifications/threads/612407841/subscription" + }, + { + "id": "610919968", + "unread": true, + "reason": "review_requested", + "updated_at": "2019-10-24T20:29:56Z", + "last_read_at": null, + "subject": { + "title": "Dwjw2019 Lisbon blog \"Jenkins Performance\"", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2592", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2592", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/610919968", + "subscription_url": "https://api.github.com/notifications/threads/610919968/subscription" + }, + { + "id": "614104640", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-24T20:29:31Z", + "last_read_at": null, + "subject": { + "title": "move to CJXD component", + "url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/pulls/8", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/pulls/8", + "type": "PullRequest" + }, + "repository": { + "id": 146052751, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDYwNTI3NTE=", + "name": "docsite-cloudbees-common", + "full_name": "cloudbees/docsite-cloudbees-common", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-cloudbees-common", + "description": "CloudBees common documentation, built by the 'docsite-cloudbees' repository.", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/deployments" + }, + "url": "https://api.github.com/notifications/threads/614104640", + "subscription_url": "https://api.github.com/notifications/threads/614104640/subscription" + }, + { + "id": "613914443", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-24T17:48:49Z", + "last_read_at": null, + "subject": { + "title": "[CE-3490]Recreating pull request from CBN-Site ", + "url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/pulls/7", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/pulls/7", + "type": "PullRequest" + }, + "repository": { + "id": 146052751, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDYwNTI3NTE=", + "name": "docsite-cloudbees-common", + "full_name": "cloudbees/docsite-cloudbees-common", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-cloudbees-common", + "description": "CloudBees common documentation, built by the 'docsite-cloudbees' repository.", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/deployments" + }, + "url": "https://api.github.com/notifications/threads/613914443", + "subscription_url": "https://api.github.com/notifications/threads/613914443/subscription" + }, + { + "id": "609109387", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-24T16:32:36Z", + "last_read_at": null, + "subject": { + "title": "Create reusable \"technical preview\" partial", + "url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/pulls/3", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/pulls/comments/338674967", + "type": "PullRequest" + }, + "repository": { + "id": 146052751, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDYwNTI3NTE=", + "name": "docsite-cloudbees-common", + "full_name": "cloudbees/docsite-cloudbees-common", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-cloudbees-common", + "description": "CloudBees common documentation, built by the 'docsite-cloudbees' repository.", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/deployments" + }, + "url": "https://api.github.com/notifications/threads/609109387", + "subscription_url": "https://api.github.com/notifications/threads/609109387/subscription" + }, + { + "id": "612123822", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-24T06:44:20Z", + "last_read_at": null, + "subject": { + "title": "chore(deps-dev): bump webpack-dev-server from 3.8.2 to 3.9.0", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/180", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments/545770652", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/612123822", + "subscription_url": "https://api.github.com/notifications/threads/612123822/subscription" + }, + { + "id": "612123422", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-24T06:44:05Z", + "last_read_at": null, + "subject": { + "title": "chore(deps-dev): bump eslint-plugin-react-hooks from 2.1.2 to 2.2.0", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/179", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments/545770567", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/612123422", + "subscription_url": "https://api.github.com/notifications/threads/612123422/subscription" + }, + { + "id": "613342610", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-24T06:31:46Z", + "last_read_at": null, + "subject": { + "title": "CSDOCS-248 - Quick and dirty pull request enumerator", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/169", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/169", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/613342610", + "subscription_url": "https://api.github.com/notifications/threads/613342610/subscription" + }, + { + "id": "598290838", + "unread": true, + "reason": "review_requested", + "updated_at": "2019-10-24T05:20:12Z", + "last_read_at": "2019-10-05T07:25:52Z", + "subject": { + "title": "Declarative new contributed questions", + "url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/pulls/59", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/pulls/59", + "type": "PullRequest" + }, + "repository": { + "id": 117846164, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTc4NDYxNjQ=", + "name": "jenkins-certification-exam", + "full_name": "cloudbees/jenkins-certification-exam", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jenkins-certification-exam", + "description": "Jenkins Certification Exam Questions", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam", + "forks_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/deployments" + }, + "url": "https://api.github.com/notifications/threads/598290838", + "subscription_url": "https://api.github.com/notifications/threads/598290838/subscription" + }, + { + "id": "612122193", + "unread": true, + "reason": "team_mention", + "updated_at": "2019-10-23T17:56:31Z", + "last_read_at": null, + "subject": { + "title": "Add codeowners - fixes #12", + "url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter/pulls/16", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter/pulls/16", + "type": "PullRequest" + }, + "repository": { + "id": 216131113, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTYxMzExMTM=", + "name": "jenkins-wiki-exporter", + "full_name": "jenkins-infra/jenkins-wiki-exporter", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins-wiki-exporter", + "description": "Quick util to convert jenkins plugin wiki format to github markdown", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter/deployments" + }, + "url": "https://api.github.com/notifications/threads/612122193", + "subscription_url": "https://api.github.com/notifications/threads/612122193/subscription" + }, + { + "id": "609457159", + "unread": true, + "reason": "review_requested", + "updated_at": "2019-10-23T17:25:03Z", + "last_read_at": null, + "subject": { + "title": "Port cli wiki to docs", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2584", + "latest_comment_url": null, + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/609457159", + "subscription_url": "https://api.github.com/notifications/threads/609457159/subscription" + }, + { + "id": "612665061", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-23T16:52:25Z", + "last_read_at": null, + "subject": { + "title": "[WIP][FNDJEN-1638] Import foundation Jenkinsfile", + "url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/pulls/16", + "latest_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/pulls/16", + "type": "PullRequest" + }, + "repository": { + "id": 205587249, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDU1ODcyNDk=", + "name": "cloudbees-analytics-plugin", + "full_name": "cloudbees/cloudbees-analytics-plugin", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/cloudbees-analytics-plugin", + "description": "The analytics plugin to gather and send information to an endpoint using a standard analytics API", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin", + "forks_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/forks", + "keys_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/events", + "assignees_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/merges", + "archive_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/612665061", + "subscription_url": "https://api.github.com/notifications/threads/612665061/subscription" + }, + { + "id": "586338905", + "unread": true, + "reason": "review_requested", + "updated_at": "2019-10-23T16:31:41Z", + "last_read_at": "2019-10-05T07:24:53Z", + "subject": { + "title": "[JENKINS-59412] Clarify that build history does not include pipeline stages", + "url": "https://api.github.com/repos/jenkinsci/jenkins/pulls/4207", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/jenkins/issues/comments/545528577", + "type": "PullRequest" + }, + "repository": { + "id": 1103607, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTAzNjA3", + "name": "jenkins", + "full_name": "jenkinsci/jenkins", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jenkins", + "description": "Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jenkins", + "forks_url": "https://api.github.com/repos/jenkinsci/jenkins/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jenkins/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jenkins/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jenkins/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jenkins/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jenkins/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jenkins/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jenkins/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jenkins/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jenkins/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jenkins/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jenkins/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jenkins/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jenkins/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jenkins/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jenkins/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jenkins/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jenkins/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jenkins/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jenkins/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jenkins/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jenkins/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jenkins/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jenkins/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jenkins/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jenkins/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jenkins/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jenkins/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jenkins/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jenkins/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jenkins/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jenkins/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jenkins/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jenkins/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jenkins/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jenkins/deployments" + }, + "url": "https://api.github.com/notifications/threads/586338905", + "subscription_url": "https://api.github.com/notifications/threads/586338905/subscription" + }, + { + "id": "612611711", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-23T15:44:06Z", + "last_read_at": null, + "subject": { + "title": "Find a way to push the app to the public jenkins-x-chartmuseum repository only when we decide or generate an actual release", + "url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/67", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/67", + "type": "Issue" + }, + "repository": { + "id": 183067295, + "node_id": "MDEwOlJlcG9zaXRvcnkxODMwNjcyOTU=", + "name": "jx-app-ui", + "full_name": "cloudbees/jx-app-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jx-app-ui", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jx-app-ui", + "forks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jx-app-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jx-app-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jx-app-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jx-app-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jx-app-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jx-app-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jx-app-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jx-app-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jx-app-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jx-app-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jx-app-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jx-app-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jx-app-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jx-app-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/612611711", + "subscription_url": "https://api.github.com/notifications/threads/612611711/subscription" + }, + { + "id": "612607179", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-23T15:39:14Z", + "last_read_at": null, + "subject": { + "title": "Custom Avatar sources for AvatarCache", + "url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/pulls/79", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/pulls/79", + "type": "PullRequest" + }, + "repository": { + "id": 12713417, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjcxMzQxNw==", + "name": "scm-api-plugin", + "full_name": "jenkinsci/scm-api-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/scm-api-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/scm-api-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/612607179", + "subscription_url": "https://api.github.com/notifications/threads/612607179/subscription" + }, + { + "id": "612589672", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-23T15:20:13Z", + "last_read_at": null, + "subject": { + "title": "update for new Advisor name", + "url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/pulls/5", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/pulls/5", + "type": "PullRequest" + }, + "repository": { + "id": 146052751, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDYwNTI3NTE=", + "name": "docsite-cloudbees-common", + "full_name": "cloudbees/docsite-cloudbees-common", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-cloudbees-common", + "description": "CloudBees common documentation, built by the 'docsite-cloudbees' repository.", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/deployments" + }, + "url": "https://api.github.com/notifications/threads/612589672", + "subscription_url": "https://api.github.com/notifications/threads/612589672/subscription" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/__files/notifications-bfc7733f-6dff-4675-81e9-926103c40b83.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/__files/notifications-bfc7733f-6dff-4675-81e9-926103c40b83.json new file mode 100644 index 0000000000..5f8f24453c --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/__files/notifications-bfc7733f-6dff-4675-81e9-926103c40b83.json @@ -0,0 +1,412 @@ +[ + { + "id": "528402703", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-07-05T21:37:24Z", + "last_read_at": "2019-09-11T05:50:31Z", + "subject": { + "title": "[FIXED JENKINS-52395] Upgrade to groovy-cps 1.29", + "url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls/300", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls/comments/300800491", + "type": "PullRequest" + }, + "repository": { + "id": 55543225, + "node_id": "MDEwOlJlcG9zaXRvcnk1NTU0MzIyNQ==", + "name": "workflow-cps-plugin", + "full_name": "jenkinsci/workflow-cps-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/workflow-cps-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/528402703", + "subscription_url": "https://api.github.com/notifications/threads/528402703/subscription" + }, + { + "id": "523260675", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-07-05T19:00:53Z", + "last_read_at": "2019-09-11T05:50:06Z", + "subject": { + "title": "[FIXED JENKINS-52395] Use the super class of methodType as the invoking class (sender) of the method on the object (receiver)", + "url": "https://api.github.com/repos/cloudbees/groovy-cps/pulls/98", + "latest_comment_url": "https://api.github.com/repos/cloudbees/groovy-cps/issues/comments/508840322", + "type": "PullRequest" + }, + "repository": { + "id": 16677474, + "node_id": "MDEwOlJlcG9zaXRvcnkxNjY3NzQ3NA==", + "name": "groovy-cps", + "full_name": "cloudbees/groovy-cps", + "private": false, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/groovy-cps", + "description": "Groovy execution in the continuation passing style", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/groovy-cps", + "forks_url": "https://api.github.com/repos/cloudbees/groovy-cps/forks", + "keys_url": "https://api.github.com/repos/cloudbees/groovy-cps/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/groovy-cps/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/groovy-cps/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/groovy-cps/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/groovy-cps/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/groovy-cps/events", + "assignees_url": "https://api.github.com/repos/cloudbees/groovy-cps/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/groovy-cps/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/groovy-cps/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/groovy-cps/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/groovy-cps/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/groovy-cps/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/groovy-cps/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/groovy-cps/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/groovy-cps/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/groovy-cps/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/groovy-cps/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/groovy-cps/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/groovy-cps/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/groovy-cps/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/groovy-cps/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/groovy-cps/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/groovy-cps/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/groovy-cps/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/groovy-cps/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/groovy-cps/merges", + "archive_url": "https://api.github.com/repos/cloudbees/groovy-cps/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/groovy-cps/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/groovy-cps/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/groovy-cps/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/groovy-cps/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/groovy-cps/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/groovy-cps/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/groovy-cps/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/groovy-cps/deployments" + }, + "url": "https://api.github.com/notifications/threads/523260675", + "subscription_url": "https://api.github.com/notifications/threads/523260675/subscription" + }, + { + "id": "521736578", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-07-05T17:39:51Z", + "last_read_at": "2019-09-11T05:50:31Z", + "subject": { + "title": "Reproduce and fix JENKINS-56682", + "url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls/297", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls/297", + "type": "PullRequest" + }, + "repository": { + "id": 55543225, + "node_id": "MDEwOlJlcG9zaXRvcnk1NTU0MzIyNQ==", + "name": "workflow-cps-plugin", + "full_name": "jenkinsci/workflow-cps-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/workflow-cps-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/521736578", + "subscription_url": "https://api.github.com/notifications/threads/521736578/subscription" + }, + { + "id": "372186925", + "unread": false, + "reason": "subscribed", + "updated_at": "2018-08-24T20:33:54Z", + "last_read_at": "2019-09-11T05:43:32Z", + "subject": { + "title": "Fix checkstyle warnings", + "url": "https://api.github.com/repos/cloudbees/training-pipeline-sample/pulls/4", + "latest_comment_url": "https://api.github.com/repos/cloudbees/training-pipeline-sample/pulls/4", + "type": "PullRequest" + }, + "repository": { + "id": 105090171, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDUwOTAxNzE=", + "name": "training-pipeline-sample", + "full_name": "cloudbees/training-pipeline-sample", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/training-pipeline-sample", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/training-pipeline-sample", + "forks_url": "https://api.github.com/repos/cloudbees/training-pipeline-sample/forks", + "keys_url": "https://api.github.com/repos/cloudbees/training-pipeline-sample/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/training-pipeline-sample/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/training-pipeline-sample/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/training-pipeline-sample/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/training-pipeline-sample/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/training-pipeline-sample/events", + "assignees_url": "https://api.github.com/repos/cloudbees/training-pipeline-sample/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/training-pipeline-sample/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/training-pipeline-sample/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/training-pipeline-sample/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/training-pipeline-sample/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/training-pipeline-sample/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/training-pipeline-sample/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/training-pipeline-sample/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/training-pipeline-sample/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/training-pipeline-sample/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/training-pipeline-sample/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/training-pipeline-sample/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/training-pipeline-sample/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/training-pipeline-sample/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/training-pipeline-sample/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/training-pipeline-sample/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/training-pipeline-sample/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/training-pipeline-sample/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/training-pipeline-sample/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/training-pipeline-sample/merges", + "archive_url": "https://api.github.com/repos/cloudbees/training-pipeline-sample/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/training-pipeline-sample/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/training-pipeline-sample/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/training-pipeline-sample/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/training-pipeline-sample/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/training-pipeline-sample/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/training-pipeline-sample/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/training-pipeline-sample/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/training-pipeline-sample/deployments" + }, + "url": "https://api.github.com/notifications/threads/372186925", + "subscription_url": "https://api.github.com/notifications/threads/372186925/subscription" + }, + { + "id": "523050578", + "unread": false, + "reason": "mention", + "updated_at": "2019-07-02T11:10:11Z", + "last_read_at": "2019-10-26T01:11:49Z", + "subject": { + "title": "Create a Jenkinsfile for Librecores CI in mor1kx", + "url": "https://api.github.com/repos/openrisc/mor1kx/pulls/84", + "latest_comment_url": "https://api.github.com/repos/openrisc/mor1kx/issues/comments/507629924", + "type": "PullRequest" + }, + "repository": { + "id": 5492471, + "node_id": "MDEwOlJlcG9zaXRvcnk1NDkyNDcx", + "name": "mor1kx", + "full_name": "openrisc/mor1kx", + "private": false, + "owner": { + "login": "openrisc", + "id": 2188783, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIxODg3ODM=", + "avatar_url": "https://avatars2.githubusercontent.com/u/2188783?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/openrisc", + "html_url": "https://github.com/openrisc", + "followers_url": "https://api.github.com/users/openrisc/followers", + "following_url": "https://api.github.com/users/openrisc/following{/other_user}", + "gists_url": "https://api.github.com/users/openrisc/gists{/gist_id}", + "starred_url": "https://api.github.com/users/openrisc/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/openrisc/subscriptions", + "organizations_url": "https://api.github.com/users/openrisc/orgs", + "repos_url": "https://api.github.com/users/openrisc/repos", + "events_url": "https://api.github.com/users/openrisc/events{/privacy}", + "received_events_url": "https://api.github.com/users/openrisc/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/openrisc/mor1kx", + "description": "mor1kx - an OpenRISC 1000 processor IP core", + "fork": false, + "url": "https://api.github.com/repos/openrisc/mor1kx", + "forks_url": "https://api.github.com/repos/openrisc/mor1kx/forks", + "keys_url": "https://api.github.com/repos/openrisc/mor1kx/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/openrisc/mor1kx/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/openrisc/mor1kx/teams", + "hooks_url": "https://api.github.com/repos/openrisc/mor1kx/hooks", + "issue_events_url": "https://api.github.com/repos/openrisc/mor1kx/issues/events{/number}", + "events_url": "https://api.github.com/repos/openrisc/mor1kx/events", + "assignees_url": "https://api.github.com/repos/openrisc/mor1kx/assignees{/user}", + "branches_url": "https://api.github.com/repos/openrisc/mor1kx/branches{/branch}", + "tags_url": "https://api.github.com/repos/openrisc/mor1kx/tags", + "blobs_url": "https://api.github.com/repos/openrisc/mor1kx/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/openrisc/mor1kx/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/openrisc/mor1kx/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/openrisc/mor1kx/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/openrisc/mor1kx/statuses/{sha}", + "languages_url": "https://api.github.com/repos/openrisc/mor1kx/languages", + "stargazers_url": "https://api.github.com/repos/openrisc/mor1kx/stargazers", + "contributors_url": "https://api.github.com/repos/openrisc/mor1kx/contributors", + "subscribers_url": "https://api.github.com/repos/openrisc/mor1kx/subscribers", + "subscription_url": "https://api.github.com/repos/openrisc/mor1kx/subscription", + "commits_url": "https://api.github.com/repos/openrisc/mor1kx/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/openrisc/mor1kx/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/openrisc/mor1kx/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/openrisc/mor1kx/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/openrisc/mor1kx/contents/{+path}", + "compare_url": "https://api.github.com/repos/openrisc/mor1kx/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/openrisc/mor1kx/merges", + "archive_url": "https://api.github.com/repos/openrisc/mor1kx/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/openrisc/mor1kx/downloads", + "issues_url": "https://api.github.com/repos/openrisc/mor1kx/issues{/number}", + "pulls_url": "https://api.github.com/repos/openrisc/mor1kx/pulls{/number}", + "milestones_url": "https://api.github.com/repos/openrisc/mor1kx/milestones{/number}", + "notifications_url": "https://api.github.com/repos/openrisc/mor1kx/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/openrisc/mor1kx/labels{/name}", + "releases_url": "https://api.github.com/repos/openrisc/mor1kx/releases{/id}", + "deployments_url": "https://api.github.com/repos/openrisc/mor1kx/deployments" + }, + "url": "https://api.github.com/notifications/threads/523050578", + "subscription_url": "https://api.github.com/notifications/threads/523050578/subscription" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/__files/notifications-d85867b0-1efe-43f5-bdf4-1b9aef03ef55.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/__files/notifications-d85867b0-1efe-43f5-bdf4-1b9aef03ef55.json new file mode 100644 index 0000000000..072264eaa1 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/__files/notifications-d85867b0-1efe-43f5-bdf4-1b9aef03ef55.json @@ -0,0 +1,4102 @@ +[ + { + "id": "592673320", + "unread": true, + "reason": "comment", + "updated_at": "2019-10-26T00:58:29Z", + "last_read_at": "2019-10-03T15:52:37Z", + "subject": { + "title": "Pipeline concepts questions", + "url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/pulls/54", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/pulls/comments/339279071", + "type": "PullRequest" + }, + "repository": { + "id": 117846164, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTc4NDYxNjQ=", + "name": "jenkins-certification-exam", + "full_name": "cloudbees/jenkins-certification-exam", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jenkins-certification-exam", + "description": "Jenkins Certification Exam Questions", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam", + "forks_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/deployments" + }, + "url": "https://api.github.com/notifications/threads/592673320", + "subscription_url": "https://api.github.com/notifications/threads/592673320/subscription" + }, + { + "id": "593645802", + "unread": true, + "reason": "review_requested", + "updated_at": "2019-10-25T22:13:07Z", + "last_read_at": "2019-09-30T16:05:46Z", + "subject": { + "title": "DevOps World Jenkins World San Francisco in Living Colors", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2512", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments/546530050", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/593645802", + "subscription_url": "https://api.github.com/notifications/threads/593645802/subscription" + }, + { + "id": "615089186", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-25T21:59:32Z", + "last_read_at": null, + "subject": { + "title": "Move CJD license report to CJD component", + "url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/pulls/11", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/pulls/11", + "type": "PullRequest" + }, + "repository": { + "id": 146052751, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDYwNTI3NTE=", + "name": "docsite-cloudbees-common", + "full_name": "cloudbees/docsite-cloudbees-common", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-cloudbees-common", + "description": "CloudBees common documentation, built by the 'docsite-cloudbees' repository.", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/deployments" + }, + "url": "https://api.github.com/notifications/threads/615089186", + "subscription_url": "https://api.github.com/notifications/threads/615089186/subscription" + }, + { + "id": "615084531", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-25T21:48:24Z", + "last_read_at": null, + "subject": { + "title": "move CJD license report to CJD component", + "url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/pulls/10", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/pulls/10", + "type": "PullRequest" + }, + "repository": { + "id": 146052751, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDYwNTI3NTE=", + "name": "docsite-cloudbees-common", + "full_name": "cloudbees/docsite-cloudbees-common", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-cloudbees-common", + "description": "CloudBees common documentation, built by the 'docsite-cloudbees' repository.", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/deployments" + }, + "url": "https://api.github.com/notifications/threads/615084531", + "subscription_url": "https://api.github.com/notifications/threads/615084531/subscription" + }, + { + "id": "615049233", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-25T20:40:41Z", + "last_read_at": null, + "subject": { + "title": "Update eslint to the latest version 🚀", + "url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/pulls/292", + "latest_comment_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/pulls/292", + "type": "PullRequest" + }, + "repository": { + "id": 7192181, + "node_id": "MDEwOlJlcG9zaXRvcnk3MTkyMTgx", + "name": "brackets-beautify", + "full_name": "brackets-beautify/brackets-beautify", + "private": false, + "owner": { + "login": "brackets-beautify", + "id": 15680026, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjgwMDI2", + "avatar_url": "https://avatars1.githubusercontent.com/u/15680026?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/brackets-beautify", + "html_url": "https://github.com/brackets-beautify", + "followers_url": "https://api.github.com/users/brackets-beautify/followers", + "following_url": "https://api.github.com/users/brackets-beautify/following{/other_user}", + "gists_url": "https://api.github.com/users/brackets-beautify/gists{/gist_id}", + "starred_url": "https://api.github.com/users/brackets-beautify/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/brackets-beautify/subscriptions", + "organizations_url": "https://api.github.com/users/brackets-beautify/orgs", + "repos_url": "https://api.github.com/users/brackets-beautify/repos", + "events_url": "https://api.github.com/users/brackets-beautify/events{/privacy}", + "received_events_url": "https://api.github.com/users/brackets-beautify/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/brackets-beautify/brackets-beautify", + "description": "Beautify HTML, CSS, and Javascript in Adobe Brackets", + "fork": false, + "url": "https://api.github.com/repos/brackets-beautify/brackets-beautify", + "forks_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/forks", + "keys_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/teams", + "hooks_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/hooks", + "issue_events_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/issues/events{/number}", + "events_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/events", + "assignees_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/assignees{/user}", + "branches_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/branches{/branch}", + "tags_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/tags", + "blobs_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/statuses/{sha}", + "languages_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/languages", + "stargazers_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/stargazers", + "contributors_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/contributors", + "subscribers_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/subscribers", + "subscription_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/subscription", + "commits_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/contents/{+path}", + "compare_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/merges", + "archive_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/downloads", + "issues_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/issues{/number}", + "pulls_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/pulls{/number}", + "milestones_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/milestones{/number}", + "notifications_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/labels{/name}", + "releases_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/releases{/id}", + "deployments_url": "https://api.github.com/repos/brackets-beautify/brackets-beautify/deployments" + }, + "url": "https://api.github.com/notifications/threads/615049233", + "subscription_url": "https://api.github.com/notifications/threads/615049233/subscription" + }, + { + "id": "615016016", + "unread": false, + "reason": "comment", + "updated_at": "2019-10-25T20:16:21Z", + "last_read_at": "2019-10-25T20:16:21Z", + "subject": { + "title": "[NGPIPELINE-793] Add jacoco coverage reporting", + "url": "https://api.github.com/repos/cloudbees/convert-to-declarative/pulls/2", + "latest_comment_url": "https://api.github.com/repos/cloudbees/convert-to-declarative/pulls/2", + "type": "PullRequest" + }, + "repository": { + "id": 180995738, + "node_id": "MDEwOlJlcG9zaXRvcnkxODA5OTU3Mzg=", + "name": "convert-to-declarative", + "full_name": "cloudbees/convert-to-declarative", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/convert-to-declarative", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/convert-to-declarative", + "forks_url": "https://api.github.com/repos/cloudbees/convert-to-declarative/forks", + "keys_url": "https://api.github.com/repos/cloudbees/convert-to-declarative/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/convert-to-declarative/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/convert-to-declarative/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/convert-to-declarative/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/convert-to-declarative/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/convert-to-declarative/events", + "assignees_url": "https://api.github.com/repos/cloudbees/convert-to-declarative/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/convert-to-declarative/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/convert-to-declarative/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/convert-to-declarative/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/convert-to-declarative/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/convert-to-declarative/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/convert-to-declarative/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/convert-to-declarative/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/convert-to-declarative/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/convert-to-declarative/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/convert-to-declarative/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/convert-to-declarative/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/convert-to-declarative/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/convert-to-declarative/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/convert-to-declarative/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/convert-to-declarative/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/convert-to-declarative/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/convert-to-declarative/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/convert-to-declarative/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/convert-to-declarative/merges", + "archive_url": "https://api.github.com/repos/cloudbees/convert-to-declarative/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/convert-to-declarative/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/convert-to-declarative/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/convert-to-declarative/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/convert-to-declarative/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/convert-to-declarative/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/convert-to-declarative/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/convert-to-declarative/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/convert-to-declarative/deployments" + }, + "url": "https://api.github.com/notifications/threads/615016016", + "subscription_url": "https://api.github.com/notifications/threads/615016016/subscription" + }, + { + "id": "612162080", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-25T19:58:58Z", + "last_read_at": "2019-10-25T01:21:40Z", + "subject": { + "title": "chore(deps-dev): bump webpack-dev-server from 3.8.2 to 3.9.0", + "url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/33", + "latest_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/comments/546491929", + "type": "PullRequest" + }, + "repository": { + "id": 215874575, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTU4NzQ1NzU=", + "name": "sdm-ui", + "full_name": "cloudbees/sdm-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/sdm-ui", + "description": "SDM UI repository", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/sdm-ui", + "forks_url": "https://api.github.com/repos/cloudbees/sdm-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/sdm-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/sdm-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/sdm-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/sdm-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/sdm-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/sdm-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/sdm-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/sdm-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/sdm-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/sdm-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/sdm-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/sdm-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/sdm-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/sdm-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/sdm-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/sdm-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/sdm-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/sdm-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/sdm-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/sdm-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/sdm-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/sdm-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/612162080", + "subscription_url": "https://api.github.com/notifications/threads/612162080/subscription" + }, + { + "id": "614428678", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-25T19:58:10Z", + "last_read_at": null, + "subject": { + "title": "chore(deps): bump i18next from 17.2.0 to 18.0.0", + "url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/40", + "latest_comment_url": null, + "type": "PullRequest" + }, + "repository": { + "id": 215874575, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTU4NzQ1NzU=", + "name": "sdm-ui", + "full_name": "cloudbees/sdm-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/sdm-ui", + "description": "SDM UI repository", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/sdm-ui", + "forks_url": "https://api.github.com/repos/cloudbees/sdm-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/sdm-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/sdm-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/sdm-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/sdm-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/sdm-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/sdm-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/sdm-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/sdm-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/sdm-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/sdm-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/sdm-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/sdm-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/sdm-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/sdm-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/sdm-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/sdm-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/sdm-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/sdm-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/sdm-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/sdm-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/sdm-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/sdm-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/614428678", + "subscription_url": "https://api.github.com/notifications/threads/614428678/subscription" + }, + { + "id": "613402825", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-25T19:57:26Z", + "last_read_at": "2019-10-25T01:21:40Z", + "subject": { + "title": "chore(deps-dev): bump eslint-config-airbnb-typescript from 4.0.1 to 6.0.0", + "url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/35", + "latest_comment_url": null, + "type": "PullRequest" + }, + "repository": { + "id": 215874575, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTU4NzQ1NzU=", + "name": "sdm-ui", + "full_name": "cloudbees/sdm-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/sdm-ui", + "description": "SDM UI repository", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/sdm-ui", + "forks_url": "https://api.github.com/repos/cloudbees/sdm-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/sdm-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/sdm-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/sdm-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/sdm-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/sdm-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/sdm-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/sdm-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/sdm-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/sdm-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/sdm-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/sdm-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/sdm-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/sdm-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/sdm-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/sdm-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/sdm-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/sdm-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/sdm-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/sdm-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/sdm-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/sdm-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/sdm-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/613402825", + "subscription_url": "https://api.github.com/notifications/threads/613402825/subscription" + }, + { + "id": "614433747", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-25T19:56:16Z", + "last_read_at": null, + "subject": { + "title": "chore(deps-dev): bump @types/node from 12.11.1 to 12.11.7", + "url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/41", + "latest_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/comments/546491093", + "type": "PullRequest" + }, + "repository": { + "id": 215874575, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTU4NzQ1NzU=", + "name": "sdm-ui", + "full_name": "cloudbees/sdm-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/sdm-ui", + "description": "SDM UI repository", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/sdm-ui", + "forks_url": "https://api.github.com/repos/cloudbees/sdm-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/sdm-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/sdm-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/sdm-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/sdm-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/sdm-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/sdm-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/sdm-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/sdm-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/sdm-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/sdm-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/sdm-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/sdm-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/sdm-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/sdm-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/sdm-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/sdm-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/sdm-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/sdm-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/sdm-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/sdm-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/sdm-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/sdm-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/614433747", + "subscription_url": "https://api.github.com/notifications/threads/614433747/subscription" + }, + { + "id": "611969541", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-25T19:55:47Z", + "last_read_at": "2019-10-25T01:12:20Z", + "subject": { + "title": "chore(deps): bump i18next-browser-languagedetector from 3.1.1 to 4.0.0", + "url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/26", + "latest_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/comments/546490963", + "type": "PullRequest" + }, + "repository": { + "id": 215874575, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTU4NzQ1NzU=", + "name": "sdm-ui", + "full_name": "cloudbees/sdm-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/sdm-ui", + "description": "SDM UI repository", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/sdm-ui", + "forks_url": "https://api.github.com/repos/cloudbees/sdm-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/sdm-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/sdm-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/sdm-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/sdm-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/sdm-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/sdm-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/sdm-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/sdm-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/sdm-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/sdm-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/sdm-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/sdm-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/sdm-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/sdm-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/sdm-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/sdm-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/sdm-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/sdm-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/sdm-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/sdm-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/sdm-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/sdm-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/611969541", + "subscription_url": "https://api.github.com/notifications/threads/611969541/subscription" + }, + { + "id": "611969388", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-25T19:55:11Z", + "last_read_at": "2019-10-25T01:12:20Z", + "subject": { + "title": "chore(deps-dev): bump @typescript-eslint/eslint-plugin from 2.4.0 to 2.5.0", + "url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/25", + "latest_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/comments/546490787", + "type": "PullRequest" + }, + "repository": { + "id": 215874575, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTU4NzQ1NzU=", + "name": "sdm-ui", + "full_name": "cloudbees/sdm-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/sdm-ui", + "description": "SDM UI repository", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/sdm-ui", + "forks_url": "https://api.github.com/repos/cloudbees/sdm-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/sdm-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/sdm-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/sdm-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/sdm-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/sdm-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/sdm-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/sdm-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/sdm-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/sdm-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/sdm-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/sdm-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/sdm-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/sdm-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/sdm-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/sdm-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/sdm-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/sdm-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/sdm-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/sdm-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/sdm-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/sdm-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/sdm-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/611969388", + "subscription_url": "https://api.github.com/notifications/threads/611969388/subscription" + }, + { + "id": "614843210", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-25T19:49:00Z", + "last_read_at": null, + "subject": { + "title": "CB Product Switcher", + "url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/42", + "latest_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/comments/546437737", + "type": "PullRequest" + }, + "repository": { + "id": 215874575, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTU4NzQ1NzU=", + "name": "sdm-ui", + "full_name": "cloudbees/sdm-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/sdm-ui", + "description": "SDM UI repository", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/sdm-ui", + "forks_url": "https://api.github.com/repos/cloudbees/sdm-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/sdm-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/sdm-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/sdm-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/sdm-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/sdm-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/sdm-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/sdm-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/sdm-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/sdm-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/sdm-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/sdm-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/sdm-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/sdm-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/sdm-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/sdm-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/sdm-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/sdm-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/sdm-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/sdm-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/sdm-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/sdm-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/sdm-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/614843210", + "subscription_url": "https://api.github.com/notifications/threads/614843210/subscription" + }, + { + "id": "614973301", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-25T19:39:35Z", + "last_read_at": null, + "subject": { + "title": "v0.12.0", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/releases/20989575", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases/20989575", + "type": "Release" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/614973301", + "subscription_url": "https://api.github.com/notifications/threads/614973301/subscription" + }, + { + "id": "613884007", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-25T18:40:29Z", + "last_read_at": "2019-10-25T18:41:09Z", + "subject": { + "title": "Added Branch unit tests", + "url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/pulls/252", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/pulls/252", + "type": "PullRequest" + }, + "repository": { + "id": 43903637, + "node_id": "MDEwOlJlcG9zaXRvcnk0MzkwMzYzNw==", + "name": "github-branch-source-plugin", + "full_name": "jenkinsci/github-branch-source-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/github-branch-source-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/613884007", + "subscription_url": "https://api.github.com/notifications/threads/613884007/subscription" + }, + { + "id": "614922742", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-25T18:21:42Z", + "last_read_at": null, + "subject": { + "title": "Disable ACI usage", + "url": "https://api.github.com/repos/jenkins-infra/pipeline-library/pulls/118", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/issues/comments/546459925", + "type": "PullRequest" + }, + "repository": { + "id": 65505983, + "node_id": "MDEwOlJlcG9zaXRvcnk2NTUwNTk4Mw==", + "name": "pipeline-library", + "full_name": "jenkins-infra/pipeline-library", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/pipeline-library", + "description": "Collection of custom steps and variables for our Jenkins instance(s)", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/pipeline-library", + "forks_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/deployments" + }, + "url": "https://api.github.com/notifications/threads/614922742", + "subscription_url": "https://api.github.com/notifications/threads/614922742/subscription" + }, + { + "id": "613611861", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-25T17:13:26Z", + "last_read_at": "2019-10-25T01:21:40Z", + "subject": { + "title": "[PH-988] As a user I would like to see the GitHub Organization column on linking repository modal", + "url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/36", + "latest_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/comments/546436621", + "type": "PullRequest" + }, + "repository": { + "id": 215874575, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTU4NzQ1NzU=", + "name": "sdm-ui", + "full_name": "cloudbees/sdm-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/sdm-ui", + "description": "SDM UI repository", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/sdm-ui", + "forks_url": "https://api.github.com/repos/cloudbees/sdm-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/sdm-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/sdm-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/sdm-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/sdm-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/sdm-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/sdm-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/sdm-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/sdm-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/sdm-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/sdm-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/sdm-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/sdm-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/sdm-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/sdm-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/sdm-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/sdm-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/sdm-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/sdm-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/sdm-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/sdm-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/sdm-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/sdm-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/613611861", + "subscription_url": "https://api.github.com/notifications/threads/613611861/subscription" + }, + { + "id": "608706458", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-25T17:04:15Z", + "last_read_at": "2019-10-21T19:53:17Z", + "subject": { + "title": "CBDA-290: Extract component `Card` into HU-react library", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/173", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/173", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/608706458", + "subscription_url": "https://api.github.com/notifications/threads/608706458/subscription" + }, + { + "id": "614754819", + "unread": true, + "reason": "review_requested", + "updated_at": "2019-10-25T15:27:26Z", + "last_read_at": null, + "subject": { + "title": "Make Platform Sig meeting time 12:00 UTC", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2596", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2596", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/614754819", + "subscription_url": "https://api.github.com/notifications/threads/614754819/subscription" + }, + { + "id": "611170059", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-10-25T15:24:56Z", + "last_read_at": "2019-10-25T16:57:43Z", + "subject": { + "title": "Adding UI for build view", + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/pulls/24", + "latest_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/issues/comments/546398885", + "type": "PullRequest" + }, + "repository": { + "id": 193577985, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTM1Nzc5ODU=", + "name": "cloudbees-pipeline-rules-interception-plugin", + "full_name": "cloudbees/cloudbees-pipeline-rules-interception-plugin", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/cloudbees-pipeline-rules-interception-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin", + "forks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/forks", + "keys_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/events", + "assignees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/merges", + "archive_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/611170059", + "subscription_url": "https://api.github.com/notifications/threads/611170059/subscription" + }, + { + "id": "614755385", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-25T14:55:58Z", + "last_read_at": null, + "subject": { + "title": "update links for Flow and Accelerator", + "url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/pulls/9", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/pulls/9", + "type": "PullRequest" + }, + "repository": { + "id": 146052751, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDYwNTI3NTE=", + "name": "docsite-cloudbees-common", + "full_name": "cloudbees/docsite-cloudbees-common", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-cloudbees-common", + "description": "CloudBees common documentation, built by the 'docsite-cloudbees' repository.", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/deployments" + }, + "url": "https://api.github.com/notifications/threads/614755385", + "subscription_url": "https://api.github.com/notifications/threads/614755385/subscription" + }, + { + "id": "614054301", + "unread": true, + "reason": "review_requested", + "updated_at": "2019-10-25T14:30:45Z", + "last_read_at": null, + "subject": { + "title": "[WEBSITE-664] Add testing.adoc in participate content", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2594", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2594", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/614054301", + "subscription_url": "https://api.github.com/notifications/threads/614054301/subscription" + }, + { + "id": "609618108", + "unread": true, + "reason": "review_requested", + "updated_at": "2019-10-25T14:19:32Z", + "last_read_at": null, + "subject": { + "title": "Fill out plugin dev chapter more", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2586", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments/546373579", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/609618108", + "subscription_url": "https://api.github.com/notifications/threads/609618108/subscription" + }, + { + "id": "613826084", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-25T13:59:30Z", + "last_read_at": "2019-10-25T01:21:40Z", + "subject": { + "title": "CBDA-187 As a user I see information about each of my associated Jira issues in Features contribution", + "url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/38", + "latest_comment_url": null, + "type": "PullRequest" + }, + "repository": { + "id": 215874575, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTU4NzQ1NzU=", + "name": "sdm-ui", + "full_name": "cloudbees/sdm-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/sdm-ui", + "description": "SDM UI repository", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/sdm-ui", + "forks_url": "https://api.github.com/repos/cloudbees/sdm-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/sdm-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/sdm-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/sdm-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/sdm-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/sdm-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/sdm-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/sdm-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/sdm-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/sdm-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/sdm-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/sdm-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/sdm-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/sdm-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/sdm-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/sdm-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/sdm-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/sdm-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/sdm-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/sdm-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/sdm-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/sdm-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/sdm-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/613826084", + "subscription_url": "https://api.github.com/notifications/threads/613826084/subscription" + }, + { + "id": "613250472", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-25T13:59:07Z", + "last_read_at": null, + "subject": { + "title": "[CTR-706] New tutorial triggering jobs with a simple webhook and json null issue", + "url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/pulls/6", + "latest_comment_url": null, + "type": "PullRequest" + }, + "repository": { + "id": 146052751, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDYwNTI3NTE=", + "name": "docsite-cloudbees-common", + "full_name": "cloudbees/docsite-cloudbees-common", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-cloudbees-common", + "description": "CloudBees common documentation, built by the 'docsite-cloudbees' repository.", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/deployments" + }, + "url": "https://api.github.com/notifications/threads/613250472", + "subscription_url": "https://api.github.com/notifications/threads/613250472/subscription" + }, + { + "id": "612346246", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-25T13:04:09Z", + "last_read_at": null, + "subject": { + "title": "[FNDJEN-1625] Update event names and property names to match naming convention", + "url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/pulls/15", + "latest_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/pulls/15", + "type": "PullRequest" + }, + "repository": { + "id": 205587249, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDU1ODcyNDk=", + "name": "cloudbees-analytics-plugin", + "full_name": "cloudbees/cloudbees-analytics-plugin", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/cloudbees-analytics-plugin", + "description": "The analytics plugin to gather and send information to an endpoint using a standard analytics API", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin", + "forks_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/forks", + "keys_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/events", + "assignees_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/merges", + "archive_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/612346246", + "subscription_url": "https://api.github.com/notifications/threads/612346246/subscription" + }, + { + "id": "602467025", + "unread": false, + "reason": "mention", + "updated_at": "2019-10-25T12:13:39Z", + "last_read_at": "2019-10-25T18:14:12Z", + "subject": { + "title": "[JENKINS-47703] - allow building dockerfile on Windows", + "url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/pulls/354", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/issues/comments/546329453", + "type": "PullRequest" + }, + "repository": { + "id": 66677338, + "node_id": "MDEwOlJlcG9zaXRvcnk2NjY3NzMzOA==", + "name": "pipeline-model-definition-plugin", + "full_name": "jenkinsci/pipeline-model-definition-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pipeline-model-definition-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/602467025", + "subscription_url": "https://api.github.com/notifications/threads/602467025/subscription" + }, + { + "id": "58054951", + "unread": false, + "reason": "comment", + "updated_at": "2019-10-25T07:39:26Z", + "last_read_at": "2019-10-25T16:54:06Z", + "subject": { + "title": "Indentation of function inside if", + "url": "https://api.github.com/repos/beautify-web/js-beautify/issues/621", + "latest_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/comments/546241006", + "type": "Issue" + }, + "repository": { + "id": 84822, + "node_id": "MDEwOlJlcG9zaXRvcnk4NDgyMg==", + "name": "js-beautify", + "full_name": "beautify-web/js-beautify", + "private": false, + "owner": { + "login": "beautify-web", + "id": 6538164, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjY1MzgxNjQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/6538164?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/beautify-web", + "html_url": "https://github.com/beautify-web", + "followers_url": "https://api.github.com/users/beautify-web/followers", + "following_url": "https://api.github.com/users/beautify-web/following{/other_user}", + "gists_url": "https://api.github.com/users/beautify-web/gists{/gist_id}", + "starred_url": "https://api.github.com/users/beautify-web/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/beautify-web/subscriptions", + "organizations_url": "https://api.github.com/users/beautify-web/orgs", + "repos_url": "https://api.github.com/users/beautify-web/repos", + "events_url": "https://api.github.com/users/beautify-web/events{/privacy}", + "received_events_url": "https://api.github.com/users/beautify-web/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/beautify-web/js-beautify", + "description": "Beautifier for javascript ", + "fork": false, + "url": "https://api.github.com/repos/beautify-web/js-beautify", + "forks_url": "https://api.github.com/repos/beautify-web/js-beautify/forks", + "keys_url": "https://api.github.com/repos/beautify-web/js-beautify/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/beautify-web/js-beautify/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/beautify-web/js-beautify/teams", + "hooks_url": "https://api.github.com/repos/beautify-web/js-beautify/hooks", + "issue_events_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/events{/number}", + "events_url": "https://api.github.com/repos/beautify-web/js-beautify/events", + "assignees_url": "https://api.github.com/repos/beautify-web/js-beautify/assignees{/user}", + "branches_url": "https://api.github.com/repos/beautify-web/js-beautify/branches{/branch}", + "tags_url": "https://api.github.com/repos/beautify-web/js-beautify/tags", + "blobs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/beautify-web/js-beautify/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/beautify-web/js-beautify/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/beautify-web/js-beautify/statuses/{sha}", + "languages_url": "https://api.github.com/repos/beautify-web/js-beautify/languages", + "stargazers_url": "https://api.github.com/repos/beautify-web/js-beautify/stargazers", + "contributors_url": "https://api.github.com/repos/beautify-web/js-beautify/contributors", + "subscribers_url": "https://api.github.com/repos/beautify-web/js-beautify/subscribers", + "subscription_url": "https://api.github.com/repos/beautify-web/js-beautify/subscription", + "commits_url": "https://api.github.com/repos/beautify-web/js-beautify/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/beautify-web/js-beautify/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/beautify-web/js-beautify/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/beautify-web/js-beautify/contents/{+path}", + "compare_url": "https://api.github.com/repos/beautify-web/js-beautify/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/beautify-web/js-beautify/merges", + "archive_url": "https://api.github.com/repos/beautify-web/js-beautify/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/beautify-web/js-beautify/downloads", + "issues_url": "https://api.github.com/repos/beautify-web/js-beautify/issues{/number}", + "pulls_url": "https://api.github.com/repos/beautify-web/js-beautify/pulls{/number}", + "milestones_url": "https://api.github.com/repos/beautify-web/js-beautify/milestones{/number}", + "notifications_url": "https://api.github.com/repos/beautify-web/js-beautify/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/beautify-web/js-beautify/labels{/name}", + "releases_url": "https://api.github.com/repos/beautify-web/js-beautify/releases{/id}", + "deployments_url": "https://api.github.com/repos/beautify-web/js-beautify/deployments" + }, + "url": "https://api.github.com/notifications/threads/58054951", + "subscription_url": "https://api.github.com/notifications/threads/58054951/subscription" + }, + { + "id": "612161835", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-25T07:16:28Z", + "last_read_at": "2019-10-25T01:21:40Z", + "subject": { + "title": "chore(deps-dev): bump @types/node from 12.11.1 to 12.11.5", + "url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/32", + "latest_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/32", + "type": "PullRequest" + }, + "repository": { + "id": 215874575, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTU4NzQ1NzU=", + "name": "sdm-ui", + "full_name": "cloudbees/sdm-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/sdm-ui", + "description": "SDM UI repository", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/sdm-ui", + "forks_url": "https://api.github.com/repos/cloudbees/sdm-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/sdm-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/sdm-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/sdm-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/sdm-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/sdm-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/sdm-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/sdm-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/sdm-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/sdm-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/sdm-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/sdm-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/sdm-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/sdm-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/sdm-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/sdm-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/sdm-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/sdm-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/sdm-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/sdm-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/sdm-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/sdm-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/sdm-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/612161835", + "subscription_url": "https://api.github.com/notifications/threads/612161835/subscription" + }, + { + "id": "612161356", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-25T07:07:15Z", + "last_read_at": "2019-10-25T01:21:40Z", + "subject": { + "title": "chore(deps): bump i18next from 17.2.0 to 17.3.0", + "url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/31", + "latest_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/31", + "type": "PullRequest" + }, + "repository": { + "id": 215874575, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTU4NzQ1NzU=", + "name": "sdm-ui", + "full_name": "cloudbees/sdm-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/sdm-ui", + "description": "SDM UI repository", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/sdm-ui", + "forks_url": "https://api.github.com/repos/cloudbees/sdm-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/sdm-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/sdm-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/sdm-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/sdm-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/sdm-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/sdm-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/sdm-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/sdm-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/sdm-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/sdm-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/sdm-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/sdm-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/sdm-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/sdm-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/sdm-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/sdm-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/sdm-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/sdm-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/sdm-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/sdm-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/sdm-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/sdm-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/612161356", + "subscription_url": "https://api.github.com/notifications/threads/612161356/subscription" + }, + { + "id": "598425894", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-25T06:18:30Z", + "last_read_at": "2019-10-18T16:57:29Z", + "subject": { + "title": "[NGPIPELINE-732] Track timing information for steps", + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/pulls/22", + "latest_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/pulls/comments/338900257", + "type": "PullRequest" + }, + "repository": { + "id": 200867838, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDA4Njc4Mzg=", + "name": "cloudbees-pipeline-analytics-plugin", + "full_name": "cloudbees/cloudbees-pipeline-analytics-plugin", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/cloudbees-pipeline-analytics-plugin", + "description": "PoC Plugin for https://cloudbees.atlassian.net/browse/NGPIPELINE-610", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin", + "forks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/forks", + "keys_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/events", + "assignees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/merges", + "archive_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/598425894", + "subscription_url": "https://api.github.com/notifications/threads/598425894/subscription" + }, + { + "id": "614396131", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-25T06:03:39Z", + "last_read_at": null, + "subject": { + "title": "chore(deps-dev): bump @types/react from 16.9.9 to 16.9.10", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/185", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/185", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/614396131", + "subscription_url": "https://api.github.com/notifications/threads/614396131/subscription" + }, + { + "id": "614395485", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-25T06:02:26Z", + "last_read_at": null, + "subject": { + "title": "chore(deps-dev): bump babel-plugin-react-docgen from 3.1.0 to 3.2.0", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/184", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/184", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/614395485", + "subscription_url": "https://api.github.com/notifications/threads/614395485/subscription" + }, + { + "id": "614316328", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-25T03:22:43Z", + "last_read_at": null, + "subject": { + "title": "CSDOCS-276", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/171", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/171", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/614316328", + "subscription_url": "https://api.github.com/notifications/threads/614316328/subscription" + }, + { + "id": "578780494", + "unread": true, + "reason": "review_requested", + "updated_at": "2019-10-25T00:57:29Z", + "last_read_at": "2019-09-30T16:05:46Z", + "subject": { + "title": "Add Tutorial: Build a LabVIEW app", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2463", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2463", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/578780494", + "subscription_url": "https://api.github.com/notifications/threads/578780494/subscription" + }, + { + "id": "614273392", + "unread": true, + "reason": "review_requested", + "updated_at": "2019-10-25T00:56:21Z", + "last_read_at": null, + "subject": { + "title": "Add Yaroslavl meetup logo", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2595", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2595", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/614273392", + "subscription_url": "https://api.github.com/notifications/threads/614273392/subscription" + }, + { + "id": "609254411", + "unread": true, + "reason": "review_requested", + "updated_at": "2019-10-25T00:56:01Z", + "last_read_at": null, + "subject": { + "title": "Add sections to navigation in developerbook", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2580", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2580", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/609254411", + "subscription_url": "https://api.github.com/notifications/threads/609254411/subscription" + }, + { + "id": "607232889", + "unread": true, + "reason": "review_requested", + "updated_at": "2019-10-25T00:32:47Z", + "last_read_at": null, + "subject": { + "title": "Validate logos and event locations", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2570", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2570", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/607232889", + "subscription_url": "https://api.github.com/notifications/threads/607232889/subscription" + }, + { + "id": "613537483", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-25T00:19:28Z", + "last_read_at": null, + "subject": { + "title": "[CSDOCS-262][CSDOCS-271][CSDOCS-261] Add search page pagination and no results msg", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/170", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/170", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/613537483", + "subscription_url": "https://api.github.com/notifications/threads/613537483/subscription" + }, + { + "id": "613929553", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-24T21:21:29Z", + "last_read_at": "2019-10-25T01:21:40Z", + "subject": { + "title": "Prettier", + "url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/39", + "latest_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/39", + "type": "PullRequest" + }, + "repository": { + "id": 215874575, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTU4NzQ1NzU=", + "name": "sdm-ui", + "full_name": "cloudbees/sdm-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/sdm-ui", + "description": "SDM UI repository", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/sdm-ui", + "forks_url": "https://api.github.com/repos/cloudbees/sdm-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/sdm-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/sdm-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/sdm-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/sdm-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/sdm-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/sdm-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/sdm-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/sdm-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/sdm-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/sdm-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/sdm-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/sdm-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/sdm-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/sdm-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/sdm-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/sdm-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/sdm-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/sdm-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/sdm-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/sdm-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/sdm-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/sdm-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/613929553", + "subscription_url": "https://api.github.com/notifications/threads/613929553/subscription" + }, + { + "id": "612407841", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-24T20:34:41Z", + "last_read_at": null, + "subject": { + "title": "close the dropdown when option is clicked", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/183", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/183", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/612407841", + "subscription_url": "https://api.github.com/notifications/threads/612407841/subscription" + }, + { + "id": "610919968", + "unread": true, + "reason": "review_requested", + "updated_at": "2019-10-24T20:29:56Z", + "last_read_at": null, + "subject": { + "title": "Dwjw2019 Lisbon blog \"Jenkins Performance\"", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2592", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2592", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/610919968", + "subscription_url": "https://api.github.com/notifications/threads/610919968/subscription" + }, + { + "id": "614104640", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-24T20:29:31Z", + "last_read_at": null, + "subject": { + "title": "move to CJXD component", + "url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/pulls/8", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/pulls/8", + "type": "PullRequest" + }, + "repository": { + "id": 146052751, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDYwNTI3NTE=", + "name": "docsite-cloudbees-common", + "full_name": "cloudbees/docsite-cloudbees-common", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-cloudbees-common", + "description": "CloudBees common documentation, built by the 'docsite-cloudbees' repository.", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/deployments" + }, + "url": "https://api.github.com/notifications/threads/614104640", + "subscription_url": "https://api.github.com/notifications/threads/614104640/subscription" + }, + { + "id": "612995874", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-24T19:23:36Z", + "last_read_at": "2019-10-25T01:21:40Z", + "subject": { + "title": "chore: regression fixes", + "url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/34", + "latest_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/34", + "type": "PullRequest" + }, + "repository": { + "id": 215874575, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTU4NzQ1NzU=", + "name": "sdm-ui", + "full_name": "cloudbees/sdm-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/sdm-ui", + "description": "SDM UI repository", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/sdm-ui", + "forks_url": "https://api.github.com/repos/cloudbees/sdm-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/sdm-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/sdm-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/sdm-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/sdm-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/sdm-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/sdm-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/sdm-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/sdm-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/sdm-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/sdm-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/sdm-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/sdm-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/sdm-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/sdm-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/sdm-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/sdm-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/sdm-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/sdm-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/sdm-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/sdm-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/sdm-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/sdm-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/612995874", + "subscription_url": "https://api.github.com/notifications/threads/612995874/subscription" + }, + { + "id": "613730879", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-24T19:22:27Z", + "last_read_at": "2019-10-25T01:21:40Z", + "subject": { + "title": "Acme issues hackathon", + "url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/37", + "latest_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/37", + "type": "PullRequest" + }, + "repository": { + "id": 215874575, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTU4NzQ1NzU=", + "name": "sdm-ui", + "full_name": "cloudbees/sdm-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/sdm-ui", + "description": "SDM UI repository", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/sdm-ui", + "forks_url": "https://api.github.com/repos/cloudbees/sdm-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/sdm-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/sdm-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/sdm-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/sdm-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/sdm-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/sdm-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/sdm-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/sdm-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/sdm-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/sdm-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/sdm-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/sdm-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/sdm-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/sdm-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/sdm-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/sdm-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/sdm-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/sdm-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/sdm-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/sdm-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/sdm-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/sdm-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/613730879", + "subscription_url": "https://api.github.com/notifications/threads/613730879/subscription" + }, + { + "id": "613914443", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-24T17:48:49Z", + "last_read_at": null, + "subject": { + "title": "[CE-3490]Recreating pull request from CBN-Site ", + "url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/pulls/7", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/pulls/7", + "type": "PullRequest" + }, + "repository": { + "id": 146052751, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDYwNTI3NTE=", + "name": "docsite-cloudbees-common", + "full_name": "cloudbees/docsite-cloudbees-common", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-cloudbees-common", + "description": "CloudBees common documentation, built by the 'docsite-cloudbees' repository.", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/deployments" + }, + "url": "https://api.github.com/notifications/threads/613914443", + "subscription_url": "https://api.github.com/notifications/threads/613914443/subscription" + }, + { + "id": "473599562", + "unread": false, + "reason": "mention", + "updated_at": "2019-10-25T01:32:10Z", + "last_read_at": "2019-10-25T01:21:49Z", + "subject": { + "title": "Added getUserPublicOrganizations method", + "url": "https://api.github.com/repos/github-api/github-api/pulls/510", + "latest_comment_url": "https://api.github.com/repos/github-api/github-api/pulls/510", + "type": "PullRequest" + }, + "repository": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments" + }, + "url": "https://api.github.com/notifications/threads/473599562", + "subscription_url": "https://api.github.com/notifications/threads/473599562/subscription" + }, + { + "id": "609109387", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-24T16:32:36Z", + "last_read_at": null, + "subject": { + "title": "Create reusable \"technical preview\" partial", + "url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/pulls/3", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/pulls/comments/338674967", + "type": "PullRequest" + }, + "repository": { + "id": 146052751, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDYwNTI3NTE=", + "name": "docsite-cloudbees-common", + "full_name": "cloudbees/docsite-cloudbees-common", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-cloudbees-common", + "description": "CloudBees common documentation, built by the 'docsite-cloudbees' repository.", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/deployments" + }, + "url": "https://api.github.com/notifications/threads/609109387", + "subscription_url": "https://api.github.com/notifications/threads/609109387/subscription" + }, + { + "id": "603667311", + "unread": false, + "reason": "author", + "updated_at": "2019-10-25T01:20:31Z", + "last_read_at": "2019-10-24T14:17:44Z", + "subject": { + "title": "[JENKINS-37984] Matrix throws \"Method code too large! error\" on ", + "url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/pulls/355", + "latest_comment_url": null, + "type": "PullRequest" + }, + "repository": { + "id": 66677338, + "node_id": "MDEwOlJlcG9zaXRvcnk2NjY3NzMzOA==", + "name": "pipeline-model-definition-plugin", + "full_name": "jenkinsci/pipeline-model-definition-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pipeline-model-definition-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/603667311", + "subscription_url": "https://api.github.com/notifications/threads/603667311/subscription" + }, + { + "id": "611969168", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-24T07:10:57Z", + "last_read_at": "2019-10-25T01:21:40Z", + "subject": { + "title": "chore(deps-dev): bump eslint-config-airbnb-typescript from 4.0.1 to 5.0.0", + "url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/24", + "latest_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/24", + "type": "PullRequest" + }, + "repository": { + "id": 215874575, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTU4NzQ1NzU=", + "name": "sdm-ui", + "full_name": "cloudbees/sdm-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/sdm-ui", + "description": "SDM UI repository", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/sdm-ui", + "forks_url": "https://api.github.com/repos/cloudbees/sdm-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/sdm-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/sdm-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/sdm-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/sdm-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/sdm-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/sdm-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/sdm-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/sdm-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/sdm-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/sdm-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/sdm-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/sdm-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/sdm-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/sdm-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/sdm-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/sdm-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/sdm-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/sdm-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/sdm-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/sdm-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/sdm-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/sdm-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/611969168", + "subscription_url": "https://api.github.com/notifications/threads/611969168/subscription" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/__files/notifications-d9617266-1ca6-44b2-b495-52c1f3be4b91.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/__files/notifications-d9617266-1ca6-44b2-b495-52c1f3be4b91.json new file mode 100644 index 0000000000..e2fa48c7f8 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/__files/notifications-d9617266-1ca6-44b2-b495-52c1f3be4b91.json @@ -0,0 +1,4102 @@ +[ + { + "id": "612123822", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-24T06:44:20Z", + "last_read_at": null, + "subject": { + "title": "chore(deps-dev): bump webpack-dev-server from 3.8.2 to 3.9.0", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/180", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments/545770652", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/612123822", + "subscription_url": "https://api.github.com/notifications/threads/612123822/subscription" + }, + { + "id": "612123422", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-24T06:44:05Z", + "last_read_at": null, + "subject": { + "title": "chore(deps-dev): bump eslint-plugin-react-hooks from 2.1.2 to 2.2.0", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/179", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments/545770567", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/612123422", + "subscription_url": "https://api.github.com/notifications/threads/612123422/subscription" + }, + { + "id": "613342610", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-24T06:31:46Z", + "last_read_at": null, + "subject": { + "title": "CSDOCS-248 - Quick and dirty pull request enumerator", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/169", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/169", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/613342610", + "subscription_url": "https://api.github.com/notifications/threads/613342610/subscription" + }, + { + "id": "598290838", + "unread": true, + "reason": "review_requested", + "updated_at": "2019-10-24T05:20:12Z", + "last_read_at": "2019-10-05T07:25:52Z", + "subject": { + "title": "Declarative new contributed questions", + "url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/pulls/59", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/pulls/59", + "type": "PullRequest" + }, + "repository": { + "id": 117846164, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTc4NDYxNjQ=", + "name": "jenkins-certification-exam", + "full_name": "cloudbees/jenkins-certification-exam", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jenkins-certification-exam", + "description": "Jenkins Certification Exam Questions", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam", + "forks_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jenkins-certification-exam/deployments" + }, + "url": "https://api.github.com/notifications/threads/598290838", + "subscription_url": "https://api.github.com/notifications/threads/598290838/subscription" + }, + { + "id": "601734586", + "unread": false, + "reason": "mention", + "updated_at": "2019-10-25T01:49:47Z", + "last_read_at": "2019-10-25T01:40:06Z", + "subject": { + "title": "Support all available endpoints for Github App with preview request", + "url": "https://api.github.com/repos/github-api/github-api/issues/570", + "latest_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments/546166819", + "type": "Issue" + }, + "repository": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments" + }, + "url": "https://api.github.com/notifications/threads/601734586", + "subscription_url": "https://api.github.com/notifications/threads/601734586/subscription" + }, + { + "id": "612122193", + "unread": true, + "reason": "team_mention", + "updated_at": "2019-10-23T17:56:31Z", + "last_read_at": null, + "subject": { + "title": "Add codeowners - fixes #12", + "url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter/pulls/16", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter/pulls/16", + "type": "PullRequest" + }, + "repository": { + "id": 216131113, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTYxMzExMTM=", + "name": "jenkins-wiki-exporter", + "full_name": "jenkins-infra/jenkins-wiki-exporter", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins-wiki-exporter", + "description": "Quick util to convert jenkins plugin wiki format to github markdown", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins-wiki-exporter/deployments" + }, + "url": "https://api.github.com/notifications/threads/612122193", + "subscription_url": "https://api.github.com/notifications/threads/612122193/subscription" + }, + { + "id": "609457159", + "unread": true, + "reason": "review_requested", + "updated_at": "2019-10-23T17:25:03Z", + "last_read_at": null, + "subject": { + "title": "Port cli wiki to docs", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2584", + "latest_comment_url": null, + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/609457159", + "subscription_url": "https://api.github.com/notifications/threads/609457159/subscription" + }, + { + "id": "612665061", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-23T16:52:25Z", + "last_read_at": null, + "subject": { + "title": "[WIP][FNDJEN-1638] Import foundation Jenkinsfile", + "url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/pulls/16", + "latest_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/pulls/16", + "type": "PullRequest" + }, + "repository": { + "id": 205587249, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDU1ODcyNDk=", + "name": "cloudbees-analytics-plugin", + "full_name": "cloudbees/cloudbees-analytics-plugin", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/cloudbees-analytics-plugin", + "description": "The analytics plugin to gather and send information to an endpoint using a standard analytics API", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin", + "forks_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/forks", + "keys_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/events", + "assignees_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/merges", + "archive_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/612665061", + "subscription_url": "https://api.github.com/notifications/threads/612665061/subscription" + }, + { + "id": "586338905", + "unread": true, + "reason": "review_requested", + "updated_at": "2019-10-23T16:31:41Z", + "last_read_at": "2019-10-05T07:24:53Z", + "subject": { + "title": "[JENKINS-59412] Clarify that build history does not include pipeline stages", + "url": "https://api.github.com/repos/jenkinsci/jenkins/pulls/4207", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/jenkins/issues/comments/545528577", + "type": "PullRequest" + }, + "repository": { + "id": 1103607, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTAzNjA3", + "name": "jenkins", + "full_name": "jenkinsci/jenkins", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jenkins", + "description": "Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jenkins", + "forks_url": "https://api.github.com/repos/jenkinsci/jenkins/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jenkins/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jenkins/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jenkins/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jenkins/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jenkins/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jenkins/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jenkins/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jenkins/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jenkins/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jenkins/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jenkins/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jenkins/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jenkins/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jenkins/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jenkins/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jenkins/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jenkins/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jenkins/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jenkins/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jenkins/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jenkins/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jenkins/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jenkins/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jenkins/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jenkins/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jenkins/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jenkins/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jenkins/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jenkins/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jenkins/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jenkins/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jenkins/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jenkins/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jenkins/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jenkins/deployments" + }, + "url": "https://api.github.com/notifications/threads/586338905", + "subscription_url": "https://api.github.com/notifications/threads/586338905/subscription" + }, + { + "id": "612611711", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-23T15:44:06Z", + "last_read_at": null, + "subject": { + "title": "Find a way to push the app to the public jenkins-x-chartmuseum repository only when we decide or generate an actual release", + "url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/67", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/67", + "type": "Issue" + }, + "repository": { + "id": 183067295, + "node_id": "MDEwOlJlcG9zaXRvcnkxODMwNjcyOTU=", + "name": "jx-app-ui", + "full_name": "cloudbees/jx-app-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jx-app-ui", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jx-app-ui", + "forks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jx-app-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jx-app-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jx-app-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jx-app-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jx-app-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jx-app-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jx-app-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jx-app-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jx-app-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jx-app-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jx-app-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jx-app-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jx-app-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jx-app-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/612611711", + "subscription_url": "https://api.github.com/notifications/threads/612611711/subscription" + }, + { + "id": "612607179", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-23T15:39:14Z", + "last_read_at": null, + "subject": { + "title": "Custom Avatar sources for AvatarCache", + "url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/pulls/79", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/pulls/79", + "type": "PullRequest" + }, + "repository": { + "id": 12713417, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjcxMzQxNw==", + "name": "scm-api-plugin", + "full_name": "jenkinsci/scm-api-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/scm-api-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/scm-api-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/612607179", + "subscription_url": "https://api.github.com/notifications/threads/612607179/subscription" + }, + { + "id": "612589672", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-23T15:20:13Z", + "last_read_at": null, + "subject": { + "title": "update for new Advisor name", + "url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/pulls/5", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/pulls/5", + "type": "PullRequest" + }, + "repository": { + "id": 146052751, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDYwNTI3NTE=", + "name": "docsite-cloudbees-common", + "full_name": "cloudbees/docsite-cloudbees-common", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-cloudbees-common", + "description": "CloudBees common documentation, built by the 'docsite-cloudbees' repository.", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/deployments" + }, + "url": "https://api.github.com/notifications/threads/612589672", + "subscription_url": "https://api.github.com/notifications/threads/612589672/subscription" + }, + { + "id": "612437555", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-23T13:16:37Z", + "last_read_at": null, + "subject": { + "title": "Update requirements.yaml", + "url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/66", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/66", + "type": "PullRequest" + }, + "repository": { + "id": 183067295, + "node_id": "MDEwOlJlcG9zaXRvcnkxODMwNjcyOTU=", + "name": "jx-app-ui", + "full_name": "cloudbees/jx-app-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jx-app-ui", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jx-app-ui", + "forks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jx-app-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jx-app-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jx-app-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jx-app-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jx-app-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jx-app-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jx-app-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jx-app-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jx-app-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jx-app-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jx-app-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jx-app-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jx-app-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jx-app-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/612437555", + "subscription_url": "https://api.github.com/notifications/threads/612437555/subscription" + }, + { + "id": "275805625", + "unread": true, + "reason": "mention", + "updated_at": "2019-10-23T13:06:15Z", + "last_read_at": null, + "subject": { + "title": "Add example showing how to build project inside docker container", + "url": "https://api.github.com/repos/jenkinsci/pipeline-examples/pulls/83", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/pipeline-examples/issues/comments/545433962", + "type": "PullRequest" + }, + "repository": { + "id": 46802503, + "node_id": "MDEwOlJlcG9zaXRvcnk0NjgwMjUwMw==", + "name": "pipeline-examples", + "full_name": "jenkinsci/pipeline-examples", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pipeline-examples", + "description": "A collection of examples, tips and tricks and snippets of scripting for the Jenkins Pipeline plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/pipeline-examples", + "forks_url": "https://api.github.com/repos/jenkinsci/pipeline-examples/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pipeline-examples/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pipeline-examples/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pipeline-examples/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pipeline-examples/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pipeline-examples/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pipeline-examples/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pipeline-examples/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pipeline-examples/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pipeline-examples/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pipeline-examples/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pipeline-examples/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pipeline-examples/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pipeline-examples/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pipeline-examples/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pipeline-examples/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pipeline-examples/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pipeline-examples/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pipeline-examples/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pipeline-examples/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pipeline-examples/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pipeline-examples/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pipeline-examples/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pipeline-examples/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pipeline-examples/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pipeline-examples/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pipeline-examples/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pipeline-examples/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pipeline-examples/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pipeline-examples/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pipeline-examples/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pipeline-examples/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pipeline-examples/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pipeline-examples/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pipeline-examples/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pipeline-examples/deployments" + }, + "url": "https://api.github.com/notifications/threads/275805625", + "subscription_url": "https://api.github.com/notifications/threads/275805625/subscription" + }, + { + "id": "612432385", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-23T13:03:46Z", + "last_read_at": null, + "subject": { + "title": "0.1.0", + "url": "https://api.github.com/repos/cloudbees/jx-app-ui/releases/20915166", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/releases/20915166", + "type": "Release" + }, + "repository": { + "id": 183067295, + "node_id": "MDEwOlJlcG9zaXRvcnkxODMwNjcyOTU=", + "name": "jx-app-ui", + "full_name": "cloudbees/jx-app-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jx-app-ui", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jx-app-ui", + "forks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jx-app-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jx-app-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jx-app-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jx-app-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jx-app-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jx-app-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jx-app-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jx-app-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jx-app-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jx-app-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jx-app-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jx-app-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jx-app-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jx-app-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/612432385", + "subscription_url": "https://api.github.com/notifications/threads/612432385/subscription" + }, + { + "id": "612206725", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-23T08:11:29Z", + "last_read_at": null, + "subject": { + "title": "chore(deps): bump https://github.com/cloudbees/jxui-frontend.git from 0.0.912 to 0.0.914", + "url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/65", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/65", + "type": "PullRequest" + }, + "repository": { + "id": 183067295, + "node_id": "MDEwOlJlcG9zaXRvcnkxODMwNjcyOTU=", + "name": "jx-app-ui", + "full_name": "cloudbees/jx-app-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jx-app-ui", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jx-app-ui", + "forks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jx-app-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jx-app-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jx-app-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jx-app-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jx-app-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jx-app-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jx-app-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jx-app-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jx-app-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jx-app-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jx-app-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jx-app-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jx-app-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jx-app-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/612206725", + "subscription_url": "https://api.github.com/notifications/threads/612206725/subscription" + }, + { + "id": "612156984", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-23T07:21:28Z", + "last_read_at": null, + "subject": { + "title": "Change csp report-uri so we send the report to sentry", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/168", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/168", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/612156984", + "subscription_url": "https://api.github.com/notifications/threads/612156984/subscription" + }, + { + "id": "612160843", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-23T07:05:07Z", + "last_read_at": "2019-10-25T01:21:40Z", + "subject": { + "title": "chore(deps-dev): bump eslint-plugin-react-hooks from 2.1.2 to 2.2.0", + "url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/30", + "latest_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/30", + "type": "PullRequest" + }, + "repository": { + "id": 215874575, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTU4NzQ1NzU=", + "name": "sdm-ui", + "full_name": "cloudbees/sdm-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/sdm-ui", + "description": "SDM UI repository", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/sdm-ui", + "forks_url": "https://api.github.com/repos/cloudbees/sdm-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/sdm-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/sdm-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/sdm-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/sdm-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/sdm-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/sdm-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/sdm-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/sdm-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/sdm-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/sdm-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/sdm-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/sdm-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/sdm-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/sdm-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/sdm-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/sdm-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/sdm-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/sdm-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/sdm-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/sdm-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/sdm-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/sdm-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/612160843", + "subscription_url": "https://api.github.com/notifications/threads/612160843/subscription" + }, + { + "id": "612160337", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-23T07:04:26Z", + "last_read_at": "2019-10-25T01:21:40Z", + "subject": { + "title": "chore(deps-dev): bump @types/react-router-dom from 4.3.5 to 5.1.0", + "url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/29", + "latest_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/29", + "type": "PullRequest" + }, + "repository": { + "id": 215874575, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTU4NzQ1NzU=", + "name": "sdm-ui", + "full_name": "cloudbees/sdm-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/sdm-ui", + "description": "SDM UI repository", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/sdm-ui", + "forks_url": "https://api.github.com/repos/cloudbees/sdm-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/sdm-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/sdm-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/sdm-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/sdm-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/sdm-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/sdm-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/sdm-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/sdm-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/sdm-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/sdm-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/sdm-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/sdm-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/sdm-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/sdm-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/sdm-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/sdm-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/sdm-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/sdm-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/sdm-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/sdm-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/sdm-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/sdm-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/612160337", + "subscription_url": "https://api.github.com/notifications/threads/612160337/subscription" + }, + { + "id": "612124985", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-23T06:03:58Z", + "last_read_at": null, + "subject": { + "title": "chore(deps-dev): bump react from 16.10.2 to 16.11.0", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/182", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/182", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/612124985", + "subscription_url": "https://api.github.com/notifications/threads/612124985/subscription" + }, + { + "id": "612124317", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-23T06:02:51Z", + "last_read_at": null, + "subject": { + "title": "chore(deps-dev): bump react-dom from 16.10.2 to 16.11.0", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/181", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/181", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/612124317", + "subscription_url": "https://api.github.com/notifications/threads/612124317/subscription" + }, + { + "id": "612096105", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-23T05:55:05Z", + "last_read_at": null, + "subject": { + "title": "CSDOCS-250-recommendation - Add recommendations for title not being set or too long", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/167", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/167", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/612096105", + "subscription_url": "https://api.github.com/notifications/threads/612096105/subscription" + }, + { + "id": "612052955", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-23T03:28:33Z", + "last_read_at": null, + "subject": { + "title": "CSDOCS-267 - Change how search removal works", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/165", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/165", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/612052955", + "subscription_url": "https://api.github.com/notifications/threads/612052955/subscription" + }, + { + "id": "612056975", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-23T03:44:49Z", + "last_read_at": null, + "subject": { + "title": "[CSDOCS-264][CSDOCS-208][CSWD-502] move support link in header and fix other bugs", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/166", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/166", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/612056975", + "subscription_url": "https://api.github.com/notifications/threads/612056975/subscription" + }, + { + "id": "611970091", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-22T23:58:18Z", + "last_read_at": "2019-10-25T01:12:20Z", + "subject": { + "title": "chore(deps): bump react from 16.10.2 to 16.11.0", + "url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/28", + "latest_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/28", + "type": "PullRequest" + }, + "repository": { + "id": 215874575, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTU4NzQ1NzU=", + "name": "sdm-ui", + "full_name": "cloudbees/sdm-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/sdm-ui", + "description": "SDM UI repository", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/sdm-ui", + "forks_url": "https://api.github.com/repos/cloudbees/sdm-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/sdm-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/sdm-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/sdm-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/sdm-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/sdm-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/sdm-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/sdm-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/sdm-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/sdm-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/sdm-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/sdm-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/sdm-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/sdm-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/sdm-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/sdm-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/sdm-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/sdm-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/sdm-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/sdm-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/sdm-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/sdm-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/sdm-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/611970091", + "subscription_url": "https://api.github.com/notifications/threads/611970091/subscription" + }, + { + "id": "611969763", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-22T23:57:17Z", + "last_read_at": "2019-10-25T01:12:20Z", + "subject": { + "title": "chore(deps-dev): bump @typescript-eslint/parser from 2.4.0 to 2.5.0", + "url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/27", + "latest_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/27", + "type": "PullRequest" + }, + "repository": { + "id": 215874575, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTU4NzQ1NzU=", + "name": "sdm-ui", + "full_name": "cloudbees/sdm-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/sdm-ui", + "description": "SDM UI repository", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/sdm-ui", + "forks_url": "https://api.github.com/repos/cloudbees/sdm-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/sdm-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/sdm-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/sdm-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/sdm-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/sdm-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/sdm-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/sdm-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/sdm-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/sdm-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/sdm-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/sdm-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/sdm-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/sdm-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/sdm-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/sdm-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/sdm-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/sdm-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/sdm-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/sdm-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/sdm-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/sdm-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/sdm-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/611969763", + "subscription_url": "https://api.github.com/notifications/threads/611969763/subscription" + }, + { + "id": "610991013", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-22T23:49:48Z", + "last_read_at": null, + "subject": { + "title": "chore(deps-dev): bump @storybook/react from 5.2.3 to 5.2.5", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/178", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments/545203090", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/610991013", + "subscription_url": "https://api.github.com/notifications/threads/610991013/subscription" + }, + { + "id": "610990440", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-22T23:49:34Z", + "last_read_at": null, + "subject": { + "title": "chore(deps-dev): bump @storybook/addons from 5.2.1 to 5.2.5", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/177", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments/545203037", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/610990440", + "subscription_url": "https://api.github.com/notifications/threads/610990440/subscription" + }, + { + "id": "610990030", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-22T23:49:22Z", + "last_read_at": null, + "subject": { + "title": "chore(deps-dev): bump @storybook/addon-storysource from 5.1.11 to 5.2.5", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/176", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments/545202993", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/610990030", + "subscription_url": "https://api.github.com/notifications/threads/610990030/subscription" + }, + { + "id": "610989666", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-22T23:49:11Z", + "last_read_at": null, + "subject": { + "title": "chore(deps-dev): bump @storybook/addon-viewport from 5.2.1 to 5.2.5", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/175", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments/545202959", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/610989666", + "subscription_url": "https://api.github.com/notifications/threads/610989666/subscription" + }, + { + "id": "610988944", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-22T23:48:55Z", + "last_read_at": null, + "subject": { + "title": "chore(deps-dev): bump @storybook/addon-info from 5.1.11 to 5.2.5", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/174", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments/545202914", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/610988944", + "subscription_url": "https://api.github.com/notifications/threads/610988944/subscription" + }, + { + "id": "611752146", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-22T21:10:31Z", + "last_read_at": null, + "subject": { + "title": "CSDOCS-267 - Remove knowledgebase articles completely from site", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/164", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/164", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/611752146", + "subscription_url": "https://api.github.com/notifications/threads/611752146/subscription" + }, + { + "id": "611572162", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-22T21:04:20Z", + "last_read_at": "2019-10-25T01:12:20Z", + "subject": { + "title": "feat: Test", + "url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/23", + "latest_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/23", + "type": "PullRequest" + }, + "repository": { + "id": 215874575, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTU4NzQ1NzU=", + "name": "sdm-ui", + "full_name": "cloudbees/sdm-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/sdm-ui", + "description": "SDM UI repository", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/sdm-ui", + "forks_url": "https://api.github.com/repos/cloudbees/sdm-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/sdm-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/sdm-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/sdm-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/sdm-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/sdm-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/sdm-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/sdm-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/sdm-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/sdm-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/sdm-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/sdm-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/sdm-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/sdm-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/sdm-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/sdm-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/sdm-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/sdm-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/sdm-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/sdm-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/sdm-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/sdm-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/sdm-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/611572162", + "subscription_url": "https://api.github.com/notifications/threads/611572162/subscription" + }, + { + "id": "611731233", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-22T20:50:29Z", + "last_read_at": null, + "subject": { + "title": "chore(deps): bump https://github.com/cloudbees/jxui-frontend.git from 0.0.911 to 0.0.912", + "url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/64", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/64", + "type": "PullRequest" + }, + "repository": { + "id": 183067295, + "node_id": "MDEwOlJlcG9zaXRvcnkxODMwNjcyOTU=", + "name": "jx-app-ui", + "full_name": "cloudbees/jx-app-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jx-app-ui", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jx-app-ui", + "forks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jx-app-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jx-app-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jx-app-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jx-app-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jx-app-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jx-app-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jx-app-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jx-app-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jx-app-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jx-app-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jx-app-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jx-app-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jx-app-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jx-app-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/611731233", + "subscription_url": "https://api.github.com/notifications/threads/611731233/subscription" + }, + { + "id": "597101829", + "unread": false, + "reason": "comment", + "updated_at": "2019-10-23T18:24:39Z", + "last_read_at": "2019-10-23T08:22:05Z", + "subject": { + "title": "Adding some lazy Iterator Tag tests", + "url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/pulls/249", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/pulls/249", + "type": "PullRequest" + }, + "repository": { + "id": 43903637, + "node_id": "MDEwOlJlcG9zaXRvcnk0MzkwMzYzNw==", + "name": "github-branch-source-plugin", + "full_name": "jenkinsci/github-branch-source-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/github-branch-source-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/597101829", + "subscription_url": "https://api.github.com/notifications/threads/597101829/subscription" + }, + { + "id": "611611751", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-22T20:12:34Z", + "last_read_at": null, + "subject": { + "title": "CSDOCS-250 - Display title from page in metadata", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/163", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/163", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/611611751", + "subscription_url": "https://api.github.com/notifications/threads/611611751/subscription" + }, + { + "id": "611597274", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-22T19:27:24Z", + "last_read_at": null, + "subject": { + "title": "[DOCS-1402] add ESR abbr", + "url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/pulls/4", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/pulls/4", + "type": "PullRequest" + }, + "repository": { + "id": 146052751, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDYwNTI3NTE=", + "name": "docsite-cloudbees-common", + "full_name": "cloudbees/docsite-cloudbees-common", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-cloudbees-common", + "description": "CloudBees common documentation, built by the 'docsite-cloudbees' repository.", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-cloudbees-common/deployments" + }, + "url": "https://api.github.com/notifications/threads/611597274", + "subscription_url": "https://api.github.com/notifications/threads/611597274/subscription" + }, + { + "id": "561526600", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-22T18:34:01Z", + "last_read_at": "2019-08-30T15:23:15Z", + "subject": { + "title": "CE-3195 Script to approve all the pending signatures", + "url": "https://api.github.com/repos/cloudbees/jenkins-scripts/pulls/109", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/pulls/109", + "type": "PullRequest" + }, + "repository": { + "id": 49162083, + "node_id": "MDEwOlJlcG9zaXRvcnk0OTE2MjA4Mw==", + "name": "jenkins-scripts", + "full_name": "cloudbees/jenkins-scripts", + "private": false, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jenkins-scripts", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jenkins-scripts", + "forks_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/deployments" + }, + "url": "https://api.github.com/notifications/threads/561526600", + "subscription_url": "https://api.github.com/notifications/threads/561526600/subscription" + }, + { + "id": "450868287", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-22T12:21:41Z", + "last_read_at": null, + "subject": { + "title": "Script to copy Groups and Roles assigned to a Node", + "url": "https://api.github.com/repos/cloudbees/jenkins-scripts/pulls/93", + "latest_comment_url": null, + "type": "PullRequest" + }, + "repository": { + "id": 49162083, + "node_id": "MDEwOlJlcG9zaXRvcnk0OTE2MjA4Mw==", + "name": "jenkins-scripts", + "full_name": "cloudbees/jenkins-scripts", + "private": false, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jenkins-scripts", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jenkins-scripts", + "forks_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/deployments" + }, + "url": "https://api.github.com/notifications/threads/450868287", + "subscription_url": "https://api.github.com/notifications/threads/450868287/subscription" + }, + { + "id": "611538199", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-22T18:08:28Z", + "last_read_at": "2019-10-25T01:12:20Z", + "subject": { + "title": "feat: Enable deployment", + "url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/22", + "latest_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/22", + "type": "PullRequest" + }, + "repository": { + "id": 215874575, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTU4NzQ1NzU=", + "name": "sdm-ui", + "full_name": "cloudbees/sdm-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/sdm-ui", + "description": "SDM UI repository", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/sdm-ui", + "forks_url": "https://api.github.com/repos/cloudbees/sdm-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/sdm-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/sdm-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/sdm-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/sdm-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/sdm-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/sdm-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/sdm-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/sdm-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/sdm-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/sdm-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/sdm-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/sdm-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/sdm-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/sdm-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/sdm-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/sdm-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/sdm-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/sdm-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/sdm-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/sdm-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/sdm-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/sdm-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/611538199", + "subscription_url": "https://api.github.com/notifications/threads/611538199/subscription" + }, + { + "id": "602083533", + "unread": true, + "reason": "review_requested", + "updated_at": "2019-10-22T18:02:54Z", + "last_read_at": null, + "subject": { + "title": "Add missing Amsterdam meetup logos to Artwork", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2553", + "latest_comment_url": null, + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/602083533", + "subscription_url": "https://api.github.com/notifications/threads/602083533/subscription" + }, + { + "id": "609909562", + "unread": true, + "reason": "team_mention", + "updated_at": "2019-10-22T16:24:09Z", + "last_read_at": null, + "subject": { + "title": "Autogenerated OSS plugin updates Oct 21, 2019", + "url": "https://api.github.com/repos/cloudbees/unified-release/pulls/1572", + "latest_comment_url": "https://api.github.com/repos/cloudbees/unified-release/issues/comments/545043562", + "type": "PullRequest" + }, + "repository": { + "id": 78131017, + "node_id": "MDEwOlJlcG9zaXRvcnk3ODEzMTAxNw==", + "name": "unified-release", + "full_name": "cloudbees/unified-release", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/unified-release", + "description": "Unified Release Repository", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/unified-release", + "forks_url": "https://api.github.com/repos/cloudbees/unified-release/forks", + "keys_url": "https://api.github.com/repos/cloudbees/unified-release/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/unified-release/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/unified-release/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/unified-release/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/unified-release/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/unified-release/events", + "assignees_url": "https://api.github.com/repos/cloudbees/unified-release/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/unified-release/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/unified-release/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/unified-release/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/unified-release/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/unified-release/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/unified-release/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/unified-release/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/unified-release/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/unified-release/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/unified-release/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/unified-release/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/unified-release/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/unified-release/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/unified-release/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/unified-release/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/unified-release/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/unified-release/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/unified-release/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/unified-release/merges", + "archive_url": "https://api.github.com/repos/cloudbees/unified-release/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/unified-release/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/unified-release/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/unified-release/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/unified-release/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/unified-release/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/unified-release/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/unified-release/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/unified-release/deployments" + }, + "url": "https://api.github.com/notifications/threads/609909562", + "subscription_url": "https://api.github.com/notifications/threads/609909562/subscription" + }, + { + "id": "611133989", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-22T16:14:46Z", + "last_read_at": "2019-10-25T01:12:20Z", + "subject": { + "title": "Fix lint 2", + "url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/21", + "latest_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls/21", + "type": "PullRequest" + }, + "repository": { + "id": 215874575, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTU4NzQ1NzU=", + "name": "sdm-ui", + "full_name": "cloudbees/sdm-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/sdm-ui", + "description": "SDM UI repository", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/sdm-ui", + "forks_url": "https://api.github.com/repos/cloudbees/sdm-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/sdm-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/sdm-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/sdm-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/sdm-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/sdm-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/sdm-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/sdm-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/sdm-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/sdm-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/sdm-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/sdm-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/sdm-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/sdm-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/sdm-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/sdm-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/sdm-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/sdm-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/sdm-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/sdm-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/sdm-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/sdm-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/sdm-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/sdm-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/sdm-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/sdm-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/sdm-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/611133989", + "subscription_url": "https://api.github.com/notifications/threads/611133989/subscription" + }, + { + "id": "551987604", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-22T15:25:46Z", + "last_read_at": "2019-08-12T22:36:22Z", + "subject": { + "title": "Adding Trigger restrictions auditing", + "url": "https://api.github.com/repos/cloudbees/jenkins-scripts/pulls/107", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/pulls/107", + "type": "PullRequest" + }, + "repository": { + "id": 49162083, + "node_id": "MDEwOlJlcG9zaXRvcnk0OTE2MjA4Mw==", + "name": "jenkins-scripts", + "full_name": "cloudbees/jenkins-scripts", + "private": false, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jenkins-scripts", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jenkins-scripts", + "forks_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/deployments" + }, + "url": "https://api.github.com/notifications/threads/551987604", + "subscription_url": "https://api.github.com/notifications/threads/551987604/subscription" + }, + { + "id": "584023363", + "unread": true, + "reason": "review_requested", + "updated_at": "2019-10-22T13:26:50Z", + "last_read_at": "2019-09-30T16:05:46Z", + "subject": { + "title": "Add Docs project ideas", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2474", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments/544961109", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/584023363", + "subscription_url": "https://api.github.com/notifications/threads/584023363/subscription" + }, + { + "id": "609842770", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-22T12:26:50Z", + "last_read_at": null, + "subject": { + "title": "[CE-2062] [CE-3643] Scripts to create Managed / Team Masters", + "url": "https://api.github.com/repos/cloudbees/jenkins-scripts/pulls/113", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/issues/comments/544937390", + "type": "PullRequest" + }, + "repository": { + "id": 49162083, + "node_id": "MDEwOlJlcG9zaXRvcnk0OTE2MjA4Mw==", + "name": "jenkins-scripts", + "full_name": "cloudbees/jenkins-scripts", + "private": false, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jenkins-scripts", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jenkins-scripts", + "forks_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/deployments" + }, + "url": "https://api.github.com/notifications/threads/609842770", + "subscription_url": "https://api.github.com/notifications/threads/609842770/subscription" + }, + { + "id": "611239319", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-22T12:26:04Z", + "last_read_at": null, + "subject": { + "title": "[CE-2062] [CE-3643] Fix image", + "url": "https://api.github.com/repos/cloudbees/jenkins-scripts/pulls/114", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/pulls/114", + "type": "PullRequest" + }, + "repository": { + "id": 49162083, + "node_id": "MDEwOlJlcG9zaXRvcnk0OTE2MjA4Mw==", + "name": "jenkins-scripts", + "full_name": "cloudbees/jenkins-scripts", + "private": false, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jenkins-scripts", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jenkins-scripts", + "forks_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jenkins-scripts/deployments" + }, + "url": "https://api.github.com/notifications/threads/611239319", + "subscription_url": "https://api.github.com/notifications/threads/611239319/subscription" + }, + { + "id": "604172742", + "unread": true, + "reason": "review_requested", + "updated_at": "2019-10-16T23:18:05Z", + "last_read_at": null, + "subject": { + "title": "Add changelog and upgrade guide for 2.190.2", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2558", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments/541349295", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/604172742", + "subscription_url": "https://api.github.com/notifications/threads/604172742/subscription" + }, + { + "id": "611217049", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-22T11:43:29Z", + "last_read_at": null, + "subject": { + "title": "chore(deps): bump https://github.com/cloudbees/jxui-frontend.git from 0.0.910 to 0.0.911", + "url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/63", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/63", + "type": "PullRequest" + }, + "repository": { + "id": 183067295, + "node_id": "MDEwOlJlcG9zaXRvcnkxODMwNjcyOTU=", + "name": "jx-app-ui", + "full_name": "cloudbees/jx-app-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jx-app-ui", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jx-app-ui", + "forks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jx-app-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jx-app-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jx-app-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jx-app-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jx-app-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jx-app-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jx-app-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jx-app-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jx-app-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jx-app-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jx-app-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jx-app-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jx-app-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jx-app-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/611217049", + "subscription_url": "https://api.github.com/notifications/threads/611217049/subscription" + }, + { + "id": "611025660", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-22T08:30:30Z", + "last_read_at": null, + "subject": { + "title": "Move assets from deprecated static dir to public dir", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/162", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/162", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/611025660", + "subscription_url": "https://api.github.com/notifications/threads/611025660/subscription" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/__files/notifications-e1d519f7-9bd2-4fcd-a288-2391944ec7ca.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/__files/notifications-e1d519f7-9bd2-4fcd-a288-2391944ec7ca.json new file mode 100644 index 0000000000..39c91b2064 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/__files/notifications-e1d519f7-9bd2-4fcd-a288-2391944ec7ca.json @@ -0,0 +1,4102 @@ +[ + { + "id": "575158543", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-30T01:19:53Z", + "last_read_at": "2019-08-30T15:18:16Z", + "subject": { + "title": "Async methods indentation in multiple variable declarations", + "url": "https://api.github.com/repos/beautify-web/js-beautify/issues/1702", + "latest_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/1702", + "type": "Issue" + }, + "repository": { + "id": 84822, + "node_id": "MDEwOlJlcG9zaXRvcnk4NDgyMg==", + "name": "js-beautify", + "full_name": "beautify-web/js-beautify", + "private": false, + "owner": { + "login": "beautify-web", + "id": 6538164, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjY1MzgxNjQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/6538164?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/beautify-web", + "html_url": "https://github.com/beautify-web", + "followers_url": "https://api.github.com/users/beautify-web/followers", + "following_url": "https://api.github.com/users/beautify-web/following{/other_user}", + "gists_url": "https://api.github.com/users/beautify-web/gists{/gist_id}", + "starred_url": "https://api.github.com/users/beautify-web/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/beautify-web/subscriptions", + "organizations_url": "https://api.github.com/users/beautify-web/orgs", + "repos_url": "https://api.github.com/users/beautify-web/repos", + "events_url": "https://api.github.com/users/beautify-web/events{/privacy}", + "received_events_url": "https://api.github.com/users/beautify-web/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/beautify-web/js-beautify", + "description": "Beautifier for javascript ", + "fork": false, + "url": "https://api.github.com/repos/beautify-web/js-beautify", + "forks_url": "https://api.github.com/repos/beautify-web/js-beautify/forks", + "keys_url": "https://api.github.com/repos/beautify-web/js-beautify/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/beautify-web/js-beautify/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/beautify-web/js-beautify/teams", + "hooks_url": "https://api.github.com/repos/beautify-web/js-beautify/hooks", + "issue_events_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/events{/number}", + "events_url": "https://api.github.com/repos/beautify-web/js-beautify/events", + "assignees_url": "https://api.github.com/repos/beautify-web/js-beautify/assignees{/user}", + "branches_url": "https://api.github.com/repos/beautify-web/js-beautify/branches{/branch}", + "tags_url": "https://api.github.com/repos/beautify-web/js-beautify/tags", + "blobs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/beautify-web/js-beautify/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/beautify-web/js-beautify/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/beautify-web/js-beautify/statuses/{sha}", + "languages_url": "https://api.github.com/repos/beautify-web/js-beautify/languages", + "stargazers_url": "https://api.github.com/repos/beautify-web/js-beautify/stargazers", + "contributors_url": "https://api.github.com/repos/beautify-web/js-beautify/contributors", + "subscribers_url": "https://api.github.com/repos/beautify-web/js-beautify/subscribers", + "subscription_url": "https://api.github.com/repos/beautify-web/js-beautify/subscription", + "commits_url": "https://api.github.com/repos/beautify-web/js-beautify/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/beautify-web/js-beautify/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/beautify-web/js-beautify/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/beautify-web/js-beautify/contents/{+path}", + "compare_url": "https://api.github.com/repos/beautify-web/js-beautify/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/beautify-web/js-beautify/merges", + "archive_url": "https://api.github.com/repos/beautify-web/js-beautify/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/beautify-web/js-beautify/downloads", + "issues_url": "https://api.github.com/repos/beautify-web/js-beautify/issues{/number}", + "pulls_url": "https://api.github.com/repos/beautify-web/js-beautify/pulls{/number}", + "milestones_url": "https://api.github.com/repos/beautify-web/js-beautify/milestones{/number}", + "notifications_url": "https://api.github.com/repos/beautify-web/js-beautify/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/beautify-web/js-beautify/labels{/name}", + "releases_url": "https://api.github.com/repos/beautify-web/js-beautify/releases{/id}", + "deployments_url": "https://api.github.com/repos/beautify-web/js-beautify/deployments" + }, + "url": "https://api.github.com/notifications/threads/575158543", + "subscription_url": "https://api.github.com/notifications/threads/575158543/subscription" + }, + { + "id": "575120669", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-29T23:16:56Z", + "last_read_at": "2019-08-30T15:19:28Z", + "subject": { + "title": "chore(deps): bump https://github.com/cloudbees/jxui-frontend.git from 0.0.826 to 0.0.827", + "url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/21", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/21", + "type": "PullRequest" + }, + "repository": { + "id": 183067295, + "node_id": "MDEwOlJlcG9zaXRvcnkxODMwNjcyOTU=", + "name": "jx-app-ui", + "full_name": "cloudbees/jx-app-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jx-app-ui", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jx-app-ui", + "forks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jx-app-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jx-app-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jx-app-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jx-app-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jx-app-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jx-app-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jx-app-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jx-app-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jx-app-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jx-app-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jx-app-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jx-app-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jx-app-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jx-app-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/575120669", + "subscription_url": "https://api.github.com/notifications/threads/575120669/subscription" + }, + { + "id": "575118545", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-29T23:10:57Z", + "last_read_at": "2019-08-30T15:19:28Z", + "subject": { + "title": "chore(deps): bump https://github.com/cloudbees/jxui-frontend.git from 0.0.824 to 0.0.826", + "url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/20", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/20", + "type": "PullRequest" + }, + "repository": { + "id": 183067295, + "node_id": "MDEwOlJlcG9zaXRvcnkxODMwNjcyOTU=", + "name": "jx-app-ui", + "full_name": "cloudbees/jx-app-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jx-app-ui", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jx-app-ui", + "forks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jx-app-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jx-app-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jx-app-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jx-app-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jx-app-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jx-app-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jx-app-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jx-app-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jx-app-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jx-app-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jx-app-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jx-app-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jx-app-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jx-app-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/575118545", + "subscription_url": "https://api.github.com/notifications/threads/575118545/subscription" + }, + { + "id": "491169782", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-29T19:21:30Z", + "last_read_at": "2019-09-03T07:19:13Z", + "subject": { + "title": "Define API for other plugins create audit events", + "url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues/30", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues/comments/526325494", + "type": "Issue" + }, + "repository": { + "id": 159685662, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTk2ODU2NjI=", + "name": "audit-log-plugin", + "full_name": "jenkinsci/audit-log-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/audit-log-plugin", + "description": "Audit logging plugin for Jenkins based on Apache Log4j Audit", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/audit-log-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/491169782", + "subscription_url": "https://api.github.com/notifications/threads/491169782/subscription" + }, + { + "id": "575007160", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-29T19:18:20Z", + "last_read_at": "2019-09-03T07:19:13Z", + "subject": { + "title": "Convert appender and layout config to use Describable/Descriptor", + "url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues/61", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues/61", + "type": "Issue" + }, + "repository": { + "id": 159685662, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTk2ODU2NjI=", + "name": "audit-log-plugin", + "full_name": "jenkinsci/audit-log-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/audit-log-plugin", + "description": "Audit logging plugin for Jenkins based on Apache Log4j Audit", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/audit-log-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/575007160", + "subscription_url": "https://api.github.com/notifications/threads/575007160/subscription" + }, + { + "id": "491180271", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-29T19:14:53Z", + "last_read_at": "2019-09-03T07:19:13Z", + "subject": { + "title": "Add audit log viewer UI", + "url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues/32", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues/32", + "type": "Issue" + }, + "repository": { + "id": 159685662, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTk2ODU2NjI=", + "name": "audit-log-plugin", + "full_name": "jenkinsci/audit-log-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/audit-log-plugin", + "description": "Audit logging plugin for Jenkins based on Apache Log4j Audit", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/audit-log-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/491180271", + "subscription_url": "https://api.github.com/notifications/threads/491180271/subscription" + }, + { + "id": "491162520", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-29T19:14:44Z", + "last_read_at": "2019-09-03T07:19:13Z", + "subject": { + "title": "Add support for syslog-based appender", + "url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues/29", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues/29", + "type": "Issue" + }, + "repository": { + "id": 159685662, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTk2ODU2NjI=", + "name": "audit-log-plugin", + "full_name": "jenkinsci/audit-log-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/audit-log-plugin", + "description": "Audit logging plugin for Jenkins based on Apache Log4j Audit", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/audit-log-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/491162520", + "subscription_url": "https://api.github.com/notifications/threads/491162520/subscription" + }, + { + "id": "491196913", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-29T19:14:35Z", + "last_read_at": "2019-09-03T07:19:13Z", + "subject": { + "title": "Log credential usage", + "url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues/35", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues/35", + "type": "Issue" + }, + "repository": { + "id": 159685662, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTk2ODU2NjI=", + "name": "audit-log-plugin", + "full_name": "jenkinsci/audit-log-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/audit-log-plugin", + "description": "Audit logging plugin for Jenkins based on Apache Log4j Audit", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/audit-log-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/491196913", + "subscription_url": "https://api.github.com/notifications/threads/491196913/subscription" + }, + { + "id": "501814450", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-29T19:14:08Z", + "last_read_at": "2019-09-03T07:19:13Z", + "subject": { + "title": "Make IANA Enterprise Number configurable", + "url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues/41", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues/41", + "type": "Issue" + }, + "repository": { + "id": 159685662, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTk2ODU2NjI=", + "name": "audit-log-plugin", + "full_name": "jenkinsci/audit-log-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/audit-log-plugin", + "description": "Audit logging plugin for Jenkins based on Apache Log4j Audit", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/audit-log-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/501814450", + "subscription_url": "https://api.github.com/notifications/threads/501814450/subscription" + }, + { + "id": "513816308", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-29T19:13:07Z", + "last_read_at": "2019-09-03T07:15:53Z", + "subject": { + "title": "Make IANA enterprise number configurable", + "url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/pulls/47", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/pulls/47", + "type": "PullRequest" + }, + "repository": { + "id": 159685662, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTk2ODU2NjI=", + "name": "audit-log-plugin", + "full_name": "jenkinsci/audit-log-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/audit-log-plugin", + "description": "Audit logging plugin for Jenkins based on Apache Log4j Audit", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/audit-log-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/513816308", + "subscription_url": "https://api.github.com/notifications/threads/513816308/subscription" + }, + { + "id": "574956162", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-29T17:53:51Z", + "last_read_at": "2019-08-30T15:19:28Z", + "subject": { + "title": "feat: make the TLS env variable optional so it doesn't fail if it's n…", + "url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/19", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/19", + "type": "PullRequest" + }, + "repository": { + "id": 183067295, + "node_id": "MDEwOlJlcG9zaXRvcnkxODMwNjcyOTU=", + "name": "jx-app-ui", + "full_name": "cloudbees/jx-app-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jx-app-ui", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jx-app-ui", + "forks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jx-app-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jx-app-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jx-app-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jx-app-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jx-app-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jx-app-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jx-app-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jx-app-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jx-app-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jx-app-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jx-app-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jx-app-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jx-app-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jx-app-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/574956162", + "subscription_url": "https://api.github.com/notifications/threads/574956162/subscription" + }, + { + "id": "574843179", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-29T15:06:08Z", + "last_read_at": "2019-08-30T15:19:28Z", + "subject": { + "title": "feat: disable SSO and ingress when TSL is not active in the cluster", + "url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/18", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/18", + "type": "PullRequest" + }, + "repository": { + "id": 183067295, + "node_id": "MDEwOlJlcG9zaXRvcnkxODMwNjcyOTU=", + "name": "jx-app-ui", + "full_name": "cloudbees/jx-app-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jx-app-ui", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jx-app-ui", + "forks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jx-app-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jx-app-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jx-app-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jx-app-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jx-app-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jx-app-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jx-app-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jx-app-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jx-app-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jx-app-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jx-app-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jx-app-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jx-app-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jx-app-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/574843179", + "subscription_url": "https://api.github.com/notifications/threads/574843179/subscription" + }, + { + "id": "573655595", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-29T14:40:30Z", + "last_read_at": "2019-09-11T05:50:31Z", + "subject": { + "title": "Do not store enums defined in Pipeline scripts in ArgumentsActionImpl", + "url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls/318", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls/318", + "type": "PullRequest" + }, + "repository": { + "id": 55543225, + "node_id": "MDEwOlJlcG9zaXRvcnk1NTU0MzIyNQ==", + "name": "workflow-cps-plugin", + "full_name": "jenkinsci/workflow-cps-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/workflow-cps-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/573655595", + "subscription_url": "https://api.github.com/notifications/threads/573655595/subscription" + }, + { + "id": "571315918", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-29T14:39:42Z", + "last_read_at": "2019-09-11T05:50:31Z", + "subject": { + "title": "[JENKINS-59083] Do not try to open the listener for a completed build", + "url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls/317", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls/317", + "type": "PullRequest" + }, + "repository": { + "id": 55543225, + "node_id": "MDEwOlJlcG9zaXRvcnk1NTU0MzIyNQ==", + "name": "workflow-cps-plugin", + "full_name": "jenkinsci/workflow-cps-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/workflow-cps-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/571315918", + "subscription_url": "https://api.github.com/notifications/threads/571315918/subscription" + }, + { + "id": "574675026", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-29T13:51:30Z", + "last_read_at": "2019-09-11T14:15:09Z", + "subject": { + "title": "security and press", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2453", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2453", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/574675026", + "subscription_url": "https://api.github.com/notifications/threads/574675026/subscription" + }, + { + "id": "518221580", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-29T13:51:01Z", + "last_read_at": "2019-09-03T07:15:53Z", + "subject": { + "title": "Update the recommended LTS version from 2.164.1 to 2.176.1 in `buildPlugin.recommendedConfigurations`", + "url": "https://api.github.com/repos/jenkins-infra/pipeline-library/pulls/92", + "latest_comment_url": null, + "type": "PullRequest" + }, + "repository": { + "id": 65505983, + "node_id": "MDEwOlJlcG9zaXRvcnk2NTUwNTk4Mw==", + "name": "pipeline-library", + "full_name": "jenkins-infra/pipeline-library", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/pipeline-library", + "description": "Collection of custom steps and variables for our Jenkins instance(s)", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/pipeline-library", + "forks_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/deployments" + }, + "url": "https://api.github.com/notifications/threads/518221580", + "subscription_url": "https://api.github.com/notifications/threads/518221580/subscription" + }, + { + "id": "574695526", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-29T11:31:57Z", + "last_read_at": "2019-08-30T15:19:28Z", + "subject": { + "title": "chore(deps): bump https://github.com/cloudbees/jxui-frontend.git from 0.0.823 to 0.0.824", + "url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/17", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/17", + "type": "PullRequest" + }, + "repository": { + "id": 183067295, + "node_id": "MDEwOlJlcG9zaXRvcnkxODMwNjcyOTU=", + "name": "jx-app-ui", + "full_name": "cloudbees/jx-app-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jx-app-ui", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jx-app-ui", + "forks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jx-app-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jx-app-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jx-app-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jx-app-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jx-app-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jx-app-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jx-app-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jx-app-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jx-app-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jx-app-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jx-app-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jx-app-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jx-app-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jx-app-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/574695526", + "subscription_url": "https://api.github.com/notifications/threads/574695526/subscription" + }, + { + "id": "534002419", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-29T09:43:24Z", + "last_read_at": "2019-09-03T07:15:53Z", + "subject": { + "title": "Allow to use a more recent LTS version", + "url": "https://api.github.com/repos/jenkins-infra/pipeline-library/pulls/94", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/issues/comments/526110351", + "type": "PullRequest" + }, + "repository": { + "id": 65505983, + "node_id": "MDEwOlJlcG9zaXRvcnk2NTUwNTk4Mw==", + "name": "pipeline-library", + "full_name": "jenkins-infra/pipeline-library", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/pipeline-library", + "description": "Collection of custom steps and variables for our Jenkins instance(s)", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/pipeline-library", + "forks_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/deployments" + }, + "url": "https://api.github.com/notifications/threads/534002419", + "subscription_url": "https://api.github.com/notifications/threads/534002419/subscription" + }, + { + "id": "561752775", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-29T09:19:38Z", + "last_read_at": "2019-09-03T07:15:53Z", + "subject": { + "title": "Add Unit Tests for `buildPlugin` and `runBenchmarks`", + "url": "https://api.github.com/repos/jenkins-infra/pipeline-library/pulls/102", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/pulls/102", + "type": "PullRequest" + }, + "repository": { + "id": 65505983, + "node_id": "MDEwOlJlcG9zaXRvcnk2NTUwNTk4Mw==", + "name": "pipeline-library", + "full_name": "jenkins-infra/pipeline-library", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/pipeline-library", + "description": "Collection of custom steps and variables for our Jenkins instance(s)", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/pipeline-library", + "forks_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/deployments" + }, + "url": "https://api.github.com/notifications/threads/561752775", + "subscription_url": "https://api.github.com/notifications/threads/561752775/subscription" + }, + { + "id": "574594928", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-29T08:56:56Z", + "last_read_at": "2019-08-30T15:19:28Z", + "subject": { + "title": "chore(deps): bump https://github.com/cloudbees/jxui-frontend.git from 0.0.822 to 0.0.823", + "url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/16", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/16", + "type": "PullRequest" + }, + "repository": { + "id": 183067295, + "node_id": "MDEwOlJlcG9zaXRvcnkxODMwNjcyOTU=", + "name": "jx-app-ui", + "full_name": "cloudbees/jx-app-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jx-app-ui", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jx-app-ui", + "forks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jx-app-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jx-app-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jx-app-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jx-app-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jx-app-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jx-app-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jx-app-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jx-app-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jx-app-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jx-app-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jx-app-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jx-app-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jx-app-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jx-app-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/574594928", + "subscription_url": "https://api.github.com/notifications/threads/574594928/subscription" + }, + { + "id": "574413377", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-29T04:28:03Z", + "last_read_at": "2019-08-30T15:17:53Z", + "subject": { + "title": "CSDOCS-104 - Reactify the Antora generated content", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/48", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments/526016701", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/574413377", + "subscription_url": "https://api.github.com/notifications/threads/574413377/subscription" + }, + { + "id": "572708852", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-28T15:41:50Z", + "last_read_at": "2019-08-28T15:42:48Z", + "subject": { + "title": "Bump lint-staged from 9.2.3 to 9.2.5", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/82", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/82", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/572708852", + "subscription_url": "https://api.github.com/notifications/threads/572708852/subscription" + }, + { + "id": "572707815", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-28T15:41:33Z", + "last_read_at": "2019-08-28T15:42:48Z", + "subject": { + "title": "Bump @types/lodash from 4.14.137 to 4.14.138", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/81", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/81", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/572707815", + "subscription_url": "https://api.github.com/notifications/threads/572707815/subscription" + }, + { + "id": "572706659", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-28T15:41:16Z", + "last_read_at": "2019-08-28T15:42:48Z", + "subject": { + "title": "Bump webpack from 4.39.2 to 4.39.3", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/80", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/80", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/572706659", + "subscription_url": "https://api.github.com/notifications/threads/572706659/subscription" + }, + { + "id": "572846837", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-28T12:13:47Z", + "last_read_at": "2019-08-28T15:43:58Z", + "subject": { + "title": "5678967", + "url": "https://api.github.com/repos/beautify-web/js-beautify/issues/1701", + "latest_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/1701", + "type": "Issue" + }, + "repository": { + "id": 84822, + "node_id": "MDEwOlJlcG9zaXRvcnk4NDgyMg==", + "name": "js-beautify", + "full_name": "beautify-web/js-beautify", + "private": false, + "owner": { + "login": "beautify-web", + "id": 6538164, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjY1MzgxNjQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/6538164?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/beautify-web", + "html_url": "https://github.com/beautify-web", + "followers_url": "https://api.github.com/users/beautify-web/followers", + "following_url": "https://api.github.com/users/beautify-web/following{/other_user}", + "gists_url": "https://api.github.com/users/beautify-web/gists{/gist_id}", + "starred_url": "https://api.github.com/users/beautify-web/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/beautify-web/subscriptions", + "organizations_url": "https://api.github.com/users/beautify-web/orgs", + "repos_url": "https://api.github.com/users/beautify-web/repos", + "events_url": "https://api.github.com/users/beautify-web/events{/privacy}", + "received_events_url": "https://api.github.com/users/beautify-web/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/beautify-web/js-beautify", + "description": "Beautifier for javascript ", + "fork": false, + "url": "https://api.github.com/repos/beautify-web/js-beautify", + "forks_url": "https://api.github.com/repos/beautify-web/js-beautify/forks", + "keys_url": "https://api.github.com/repos/beautify-web/js-beautify/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/beautify-web/js-beautify/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/beautify-web/js-beautify/teams", + "hooks_url": "https://api.github.com/repos/beautify-web/js-beautify/hooks", + "issue_events_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/events{/number}", + "events_url": "https://api.github.com/repos/beautify-web/js-beautify/events", + "assignees_url": "https://api.github.com/repos/beautify-web/js-beautify/assignees{/user}", + "branches_url": "https://api.github.com/repos/beautify-web/js-beautify/branches{/branch}", + "tags_url": "https://api.github.com/repos/beautify-web/js-beautify/tags", + "blobs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/beautify-web/js-beautify/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/beautify-web/js-beautify/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/beautify-web/js-beautify/statuses/{sha}", + "languages_url": "https://api.github.com/repos/beautify-web/js-beautify/languages", + "stargazers_url": "https://api.github.com/repos/beautify-web/js-beautify/stargazers", + "contributors_url": "https://api.github.com/repos/beautify-web/js-beautify/contributors", + "subscribers_url": "https://api.github.com/repos/beautify-web/js-beautify/subscribers", + "subscription_url": "https://api.github.com/repos/beautify-web/js-beautify/subscription", + "commits_url": "https://api.github.com/repos/beautify-web/js-beautify/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/beautify-web/js-beautify/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/beautify-web/js-beautify/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/beautify-web/js-beautify/contents/{+path}", + "compare_url": "https://api.github.com/repos/beautify-web/js-beautify/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/beautify-web/js-beautify/merges", + "archive_url": "https://api.github.com/repos/beautify-web/js-beautify/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/beautify-web/js-beautify/downloads", + "issues_url": "https://api.github.com/repos/beautify-web/js-beautify/issues{/number}", + "pulls_url": "https://api.github.com/repos/beautify-web/js-beautify/pulls{/number}", + "milestones_url": "https://api.github.com/repos/beautify-web/js-beautify/milestones{/number}", + "notifications_url": "https://api.github.com/repos/beautify-web/js-beautify/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/beautify-web/js-beautify/labels{/name}", + "releases_url": "https://api.github.com/repos/beautify-web/js-beautify/releases{/id}", + "deployments_url": "https://api.github.com/repos/beautify-web/js-beautify/deployments" + }, + "url": "https://api.github.com/notifications/threads/572846837", + "subscription_url": "https://api.github.com/notifications/threads/572846837/subscription" + }, + { + "id": "572843038", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-28T15:43:53Z", + "last_read_at": "2019-08-28T15:43:45Z", + "subject": { + "title": "963", + "url": "https://api.github.com/repos/beautify-web/js-beautify/issues/1700", + "latest_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/1700", + "type": "Issue" + }, + "repository": { + "id": 84822, + "node_id": "MDEwOlJlcG9zaXRvcnk4NDgyMg==", + "name": "js-beautify", + "full_name": "beautify-web/js-beautify", + "private": false, + "owner": { + "login": "beautify-web", + "id": 6538164, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjY1MzgxNjQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/6538164?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/beautify-web", + "html_url": "https://github.com/beautify-web", + "followers_url": "https://api.github.com/users/beautify-web/followers", + "following_url": "https://api.github.com/users/beautify-web/following{/other_user}", + "gists_url": "https://api.github.com/users/beautify-web/gists{/gist_id}", + "starred_url": "https://api.github.com/users/beautify-web/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/beautify-web/subscriptions", + "organizations_url": "https://api.github.com/users/beautify-web/orgs", + "repos_url": "https://api.github.com/users/beautify-web/repos", + "events_url": "https://api.github.com/users/beautify-web/events{/privacy}", + "received_events_url": "https://api.github.com/users/beautify-web/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/beautify-web/js-beautify", + "description": "Beautifier for javascript ", + "fork": false, + "url": "https://api.github.com/repos/beautify-web/js-beautify", + "forks_url": "https://api.github.com/repos/beautify-web/js-beautify/forks", + "keys_url": "https://api.github.com/repos/beautify-web/js-beautify/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/beautify-web/js-beautify/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/beautify-web/js-beautify/teams", + "hooks_url": "https://api.github.com/repos/beautify-web/js-beautify/hooks", + "issue_events_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/events{/number}", + "events_url": "https://api.github.com/repos/beautify-web/js-beautify/events", + "assignees_url": "https://api.github.com/repos/beautify-web/js-beautify/assignees{/user}", + "branches_url": "https://api.github.com/repos/beautify-web/js-beautify/branches{/branch}", + "tags_url": "https://api.github.com/repos/beautify-web/js-beautify/tags", + "blobs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/beautify-web/js-beautify/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/beautify-web/js-beautify/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/beautify-web/js-beautify/statuses/{sha}", + "languages_url": "https://api.github.com/repos/beautify-web/js-beautify/languages", + "stargazers_url": "https://api.github.com/repos/beautify-web/js-beautify/stargazers", + "contributors_url": "https://api.github.com/repos/beautify-web/js-beautify/contributors", + "subscribers_url": "https://api.github.com/repos/beautify-web/js-beautify/subscribers", + "subscription_url": "https://api.github.com/repos/beautify-web/js-beautify/subscription", + "commits_url": "https://api.github.com/repos/beautify-web/js-beautify/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/beautify-web/js-beautify/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/beautify-web/js-beautify/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/beautify-web/js-beautify/contents/{+path}", + "compare_url": "https://api.github.com/repos/beautify-web/js-beautify/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/beautify-web/js-beautify/merges", + "archive_url": "https://api.github.com/repos/beautify-web/js-beautify/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/beautify-web/js-beautify/downloads", + "issues_url": "https://api.github.com/repos/beautify-web/js-beautify/issues{/number}", + "pulls_url": "https://api.github.com/repos/beautify-web/js-beautify/pulls{/number}", + "milestones_url": "https://api.github.com/repos/beautify-web/js-beautify/milestones{/number}", + "notifications_url": "https://api.github.com/repos/beautify-web/js-beautify/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/beautify-web/js-beautify/labels{/name}", + "releases_url": "https://api.github.com/repos/beautify-web/js-beautify/releases{/id}", + "deployments_url": "https://api.github.com/repos/beautify-web/js-beautify/deployments" + }, + "url": "https://api.github.com/notifications/threads/572843038", + "subscription_url": "https://api.github.com/notifications/threads/572843038/subscription" + }, + { + "id": "572838255", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-28T15:43:40Z", + "last_read_at": "2019-08-28T15:42:54Z", + "subject": { + "title": "123", + "url": "https://api.github.com/repos/beautify-web/js-beautify/issues/1699", + "latest_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/1699", + "type": "Issue" + }, + "repository": { + "id": 84822, + "node_id": "MDEwOlJlcG9zaXRvcnk4NDgyMg==", + "name": "js-beautify", + "full_name": "beautify-web/js-beautify", + "private": false, + "owner": { + "login": "beautify-web", + "id": 6538164, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjY1MzgxNjQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/6538164?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/beautify-web", + "html_url": "https://github.com/beautify-web", + "followers_url": "https://api.github.com/users/beautify-web/followers", + "following_url": "https://api.github.com/users/beautify-web/following{/other_user}", + "gists_url": "https://api.github.com/users/beautify-web/gists{/gist_id}", + "starred_url": "https://api.github.com/users/beautify-web/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/beautify-web/subscriptions", + "organizations_url": "https://api.github.com/users/beautify-web/orgs", + "repos_url": "https://api.github.com/users/beautify-web/repos", + "events_url": "https://api.github.com/users/beautify-web/events{/privacy}", + "received_events_url": "https://api.github.com/users/beautify-web/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/beautify-web/js-beautify", + "description": "Beautifier for javascript ", + "fork": false, + "url": "https://api.github.com/repos/beautify-web/js-beautify", + "forks_url": "https://api.github.com/repos/beautify-web/js-beautify/forks", + "keys_url": "https://api.github.com/repos/beautify-web/js-beautify/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/beautify-web/js-beautify/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/beautify-web/js-beautify/teams", + "hooks_url": "https://api.github.com/repos/beautify-web/js-beautify/hooks", + "issue_events_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/events{/number}", + "events_url": "https://api.github.com/repos/beautify-web/js-beautify/events", + "assignees_url": "https://api.github.com/repos/beautify-web/js-beautify/assignees{/user}", + "branches_url": "https://api.github.com/repos/beautify-web/js-beautify/branches{/branch}", + "tags_url": "https://api.github.com/repos/beautify-web/js-beautify/tags", + "blobs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/beautify-web/js-beautify/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/beautify-web/js-beautify/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/beautify-web/js-beautify/statuses/{sha}", + "languages_url": "https://api.github.com/repos/beautify-web/js-beautify/languages", + "stargazers_url": "https://api.github.com/repos/beautify-web/js-beautify/stargazers", + "contributors_url": "https://api.github.com/repos/beautify-web/js-beautify/contributors", + "subscribers_url": "https://api.github.com/repos/beautify-web/js-beautify/subscribers", + "subscription_url": "https://api.github.com/repos/beautify-web/js-beautify/subscription", + "commits_url": "https://api.github.com/repos/beautify-web/js-beautify/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/beautify-web/js-beautify/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/beautify-web/js-beautify/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/beautify-web/js-beautify/contents/{+path}", + "compare_url": "https://api.github.com/repos/beautify-web/js-beautify/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/beautify-web/js-beautify/merges", + "archive_url": "https://api.github.com/repos/beautify-web/js-beautify/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/beautify-web/js-beautify/downloads", + "issues_url": "https://api.github.com/repos/beautify-web/js-beautify/issues{/number}", + "pulls_url": "https://api.github.com/repos/beautify-web/js-beautify/pulls{/number}", + "milestones_url": "https://api.github.com/repos/beautify-web/js-beautify/milestones{/number}", + "notifications_url": "https://api.github.com/repos/beautify-web/js-beautify/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/beautify-web/js-beautify/labels{/name}", + "releases_url": "https://api.github.com/repos/beautify-web/js-beautify/releases{/id}", + "deployments_url": "https://api.github.com/repos/beautify-web/js-beautify/deployments" + }, + "url": "https://api.github.com/notifications/threads/572838255", + "subscription_url": "https://api.github.com/notifications/threads/572838255/subscription" + }, + { + "id": "572689199", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-28T10:50:55Z", + "last_read_at": "2019-08-28T20:26:12Z", + "subject": { + "title": "chore(deps): bump https://github.com/cloudbees/jxui-frontend.git from 0.0.821 to 0.0.822", + "url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/15", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/15", + "type": "PullRequest" + }, + "repository": { + "id": 183067295, + "node_id": "MDEwOlJlcG9zaXRvcnkxODMwNjcyOTU=", + "name": "jx-app-ui", + "full_name": "cloudbees/jx-app-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jx-app-ui", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jx-app-ui", + "forks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jx-app-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jx-app-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jx-app-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jx-app-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jx-app-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jx-app-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jx-app-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jx-app-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jx-app-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jx-app-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jx-app-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jx-app-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jx-app-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jx-app-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/572689199", + "subscription_url": "https://api.github.com/notifications/threads/572689199/subscription" + }, + { + "id": "571639016", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-28T10:04:01Z", + "last_read_at": "2019-08-30T15:17:53Z", + "subject": { + "title": "[CSDOCS-74] Add cypress testing and jest + enzyme", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/47", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/47", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/571639016", + "subscription_url": "https://api.github.com/notifications/threads/571639016/subscription" + }, + { + "id": "572598228", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-28T09:54:55Z", + "last_read_at": "2019-08-28T20:26:12Z", + "subject": { + "title": "chore(deps): bump https://github.com/cloudbees/jxui-frontend.git from 0.0.820 to 0.0.821", + "url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/14", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/14", + "type": "PullRequest" + }, + "repository": { + "id": 183067295, + "node_id": "MDEwOlJlcG9zaXRvcnkxODMwNjcyOTU=", + "name": "jx-app-ui", + "full_name": "cloudbees/jx-app-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jx-app-ui", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jx-app-ui", + "forks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jx-app-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jx-app-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jx-app-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jx-app-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jx-app-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jx-app-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jx-app-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jx-app-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jx-app-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jx-app-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jx-app-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jx-app-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jx-app-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jx-app-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/572598228", + "subscription_url": "https://api.github.com/notifications/threads/572598228/subscription" + }, + { + "id": "570756680", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-27T22:34:45Z", + "last_read_at": "2019-08-29T07:24:57Z", + "subject": { + "title": "Jenkins World Blog Post by Marky Jackson", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2451", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments/525509421", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/570756680", + "subscription_url": "https://api.github.com/notifications/threads/570756680/subscription" + }, + { + "id": "417808556", + "unread": false, + "reason": "mention", + "updated_at": "2019-08-28T22:19:40Z", + "last_read_at": "2019-08-27T21:22:26Z", + "subject": { + "title": "Combine and remove redundant tests to speed up build time", + "url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/pulls/304", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/pulls/304", + "type": "PullRequest" + }, + "repository": { + "id": 66677338, + "node_id": "MDEwOlJlcG9zaXRvcnk2NjY3NzMzOA==", + "name": "pipeline-model-definition-plugin", + "full_name": "jenkinsci/pipeline-model-definition-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pipeline-model-definition-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/417808556", + "subscription_url": "https://api.github.com/notifications/threads/417808556/subscription" + }, + { + "id": "570896801", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-27T19:43:21Z", + "last_read_at": "2019-08-27T21:21:59Z", + "subject": { + "title": "chore: [CBDA-86] converting pagination to controlled component", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/79", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments/525453439", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/570896801", + "subscription_url": "https://api.github.com/notifications/threads/570896801/subscription" + }, + { + "id": "570758510", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-27T19:43:47Z", + "last_read_at": "2019-08-27T21:21:59Z", + "subject": { + "title": "Badge Variants", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/77", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/77", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/570758510", + "subscription_url": "https://api.github.com/notifications/threads/570758510/subscription" + }, + { + "id": "570310433", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-27T19:04:23Z", + "last_read_at": "2019-08-27T21:21:59Z", + "subject": { + "title": "Bump eslint-plugin-react-hooks from 1.7.0 to 2.0.1", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/76", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/76", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/570310433", + "subscription_url": "https://api.github.com/notifications/threads/570310433/subscription" + }, + { + "id": "522518369", + "unread": false, + "reason": "state_change", + "updated_at": "2019-08-27T17:59:41Z", + "last_read_at": "2019-08-27T21:14:20Z", + "subject": { + "title": "[JENKINS-54403] Handle tag not found error for single tag", + "url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/pulls/229", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues/comments/525082045", + "type": "PullRequest" + }, + "repository": { + "id": 43903637, + "node_id": "MDEwOlJlcG9zaXRvcnk0MzkwMzYzNw==", + "name": "github-branch-source-plugin", + "full_name": "jenkinsci/github-branch-source-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/github-branch-source-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/522518369", + "subscription_url": "https://api.github.com/notifications/threads/522518369/subscription" + }, + { + "id": "570894416", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-27T17:42:12Z", + "last_read_at": "2019-08-27T21:21:59Z", + "subject": { + "title": "chore: [CBDA-86] reset page when items change", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/78", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/78", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/570894416", + "subscription_url": "https://api.github.com/notifications/threads/570894416/subscription" + }, + { + "id": "569720607", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-27T11:43:16Z", + "last_read_at": "2019-08-27T21:21:59Z", + "subject": { + "title": "chore: [CBDA-86] fix useCallback and add prop", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/75", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/75", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/569720607", + "subscription_url": "https://api.github.com/notifications/threads/569720607/subscription" + }, + { + "id": "569280419", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-27T10:25:55Z", + "last_read_at": "2019-09-11T00:03:42Z", + "subject": { + "title": "Readme background/rationale", + "url": "https://api.github.com/repos/cloudbees/urap/pulls/5", + "latest_comment_url": "https://api.github.com/repos/cloudbees/urap/pulls/5", + "type": "PullRequest" + }, + "repository": { + "id": 202161566, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDIxNjE1NjY=", + "name": "urap", + "full_name": "cloudbees/urap", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/urap", + "description": "Unified Release Automatic Plugin updater. https://en.wikipedia.org/wiki/Urap", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/urap", + "forks_url": "https://api.github.com/repos/cloudbees/urap/forks", + "keys_url": "https://api.github.com/repos/cloudbees/urap/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/urap/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/urap/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/urap/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/urap/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/urap/events", + "assignees_url": "https://api.github.com/repos/cloudbees/urap/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/urap/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/urap/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/urap/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/urap/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/urap/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/urap/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/urap/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/urap/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/urap/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/urap/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/urap/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/urap/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/urap/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/urap/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/urap/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/urap/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/urap/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/urap/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/urap/merges", + "archive_url": "https://api.github.com/repos/cloudbees/urap/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/urap/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/urap/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/urap/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/urap/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/urap/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/urap/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/urap/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/urap/deployments" + }, + "url": "https://api.github.com/notifications/threads/569280419", + "subscription_url": "https://api.github.com/notifications/threads/569280419/subscription" + }, + { + "id": "569348988", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-27T09:05:59Z", + "last_read_at": "2019-08-27T21:21:59Z", + "subject": { + "title": "chore: [CBDA-86] Add pagination component", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/72", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/comments/317971455", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/569348988", + "subscription_url": "https://api.github.com/notifications/threads/569348988/subscription" + }, + { + "id": "470461772", + "unread": false, + "reason": "comment", + "updated_at": "2019-08-27T06:11:38Z", + "last_read_at": "2019-08-27T16:39:37Z", + "subject": { + "title": "HTML format breaks when text contains un-encoded <", + "url": "https://api.github.com/repos/beautify-web/js-beautify/issues/1646", + "latest_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/comments/525153970", + "type": "Issue" + }, + "repository": { + "id": 84822, + "node_id": "MDEwOlJlcG9zaXRvcnk4NDgyMg==", + "name": "js-beautify", + "full_name": "beautify-web/js-beautify", + "private": false, + "owner": { + "login": "beautify-web", + "id": 6538164, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjY1MzgxNjQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/6538164?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/beautify-web", + "html_url": "https://github.com/beautify-web", + "followers_url": "https://api.github.com/users/beautify-web/followers", + "following_url": "https://api.github.com/users/beautify-web/following{/other_user}", + "gists_url": "https://api.github.com/users/beautify-web/gists{/gist_id}", + "starred_url": "https://api.github.com/users/beautify-web/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/beautify-web/subscriptions", + "organizations_url": "https://api.github.com/users/beautify-web/orgs", + "repos_url": "https://api.github.com/users/beautify-web/repos", + "events_url": "https://api.github.com/users/beautify-web/events{/privacy}", + "received_events_url": "https://api.github.com/users/beautify-web/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/beautify-web/js-beautify", + "description": "Beautifier for javascript ", + "fork": false, + "url": "https://api.github.com/repos/beautify-web/js-beautify", + "forks_url": "https://api.github.com/repos/beautify-web/js-beautify/forks", + "keys_url": "https://api.github.com/repos/beautify-web/js-beautify/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/beautify-web/js-beautify/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/beautify-web/js-beautify/teams", + "hooks_url": "https://api.github.com/repos/beautify-web/js-beautify/hooks", + "issue_events_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/events{/number}", + "events_url": "https://api.github.com/repos/beautify-web/js-beautify/events", + "assignees_url": "https://api.github.com/repos/beautify-web/js-beautify/assignees{/user}", + "branches_url": "https://api.github.com/repos/beautify-web/js-beautify/branches{/branch}", + "tags_url": "https://api.github.com/repos/beautify-web/js-beautify/tags", + "blobs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/beautify-web/js-beautify/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/beautify-web/js-beautify/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/beautify-web/js-beautify/statuses/{sha}", + "languages_url": "https://api.github.com/repos/beautify-web/js-beautify/languages", + "stargazers_url": "https://api.github.com/repos/beautify-web/js-beautify/stargazers", + "contributors_url": "https://api.github.com/repos/beautify-web/js-beautify/contributors", + "subscribers_url": "https://api.github.com/repos/beautify-web/js-beautify/subscribers", + "subscription_url": "https://api.github.com/repos/beautify-web/js-beautify/subscription", + "commits_url": "https://api.github.com/repos/beautify-web/js-beautify/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/beautify-web/js-beautify/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/beautify-web/js-beautify/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/beautify-web/js-beautify/contents/{+path}", + "compare_url": "https://api.github.com/repos/beautify-web/js-beautify/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/beautify-web/js-beautify/merges", + "archive_url": "https://api.github.com/repos/beautify-web/js-beautify/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/beautify-web/js-beautify/downloads", + "issues_url": "https://api.github.com/repos/beautify-web/js-beautify/issues{/number}", + "pulls_url": "https://api.github.com/repos/beautify-web/js-beautify/pulls{/number}", + "milestones_url": "https://api.github.com/repos/beautify-web/js-beautify/milestones{/number}", + "notifications_url": "https://api.github.com/repos/beautify-web/js-beautify/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/beautify-web/js-beautify/labels{/name}", + "releases_url": "https://api.github.com/repos/beautify-web/js-beautify/releases{/id}", + "deployments_url": "https://api.github.com/repos/beautify-web/js-beautify/deployments" + }, + "url": "https://api.github.com/notifications/threads/470461772", + "subscription_url": "https://api.github.com/notifications/threads/470461772/subscription" + }, + { + "id": "570097287", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-28T20:24:53Z", + "last_read_at": "2019-08-28T18:53:47Z", + "subject": { + "title": "Swap to HTTPs", + "url": "https://api.github.com/repos/github-api/github-api/pulls/534", + "latest_comment_url": "https://api.github.com/repos/github-api/github-api/pulls/534", + "type": "PullRequest" + }, + "repository": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments" + }, + "url": "https://api.github.com/notifications/threads/570097287", + "subscription_url": "https://api.github.com/notifications/threads/570097287/subscription" + }, + { + "id": "570026636", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-27T01:32:54Z", + "last_read_at": "2019-08-27T21:21:47Z", + "subject": { + "title": "chore(deps): bump https://github.com/cloudbees/jxui-frontend.git from 0.0.819 to 0.0.820", + "url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/13", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/13", + "type": "PullRequest" + }, + "repository": { + "id": 183067295, + "node_id": "MDEwOlJlcG9zaXRvcnkxODMwNjcyOTU=", + "name": "jx-app-ui", + "full_name": "cloudbees/jx-app-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jx-app-ui", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jx-app-ui", + "forks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jx-app-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jx-app-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jx-app-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jx-app-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jx-app-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jx-app-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jx-app-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jx-app-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jx-app-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jx-app-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jx-app-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jx-app-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jx-app-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jx-app-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/570026636", + "subscription_url": "https://api.github.com/notifications/threads/570026636/subscription" + }, + { + "id": "569700812", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-26T20:57:39Z", + "last_read_at": "2019-08-29T07:24:57Z", + "subject": { + "title": "appropriated -> appropriate", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2449", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2449", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/569700812", + "subscription_url": "https://api.github.com/notifications/threads/569700812/subscription" + }, + { + "id": "569612497", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-26T19:06:08Z", + "last_read_at": "2019-08-27T21:21:59Z", + "subject": { + "title": "[Security] Bump eslint-utils from 1.3.1 to 1.4.2", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/74", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/74", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/569612497", + "subscription_url": "https://api.github.com/notifications/threads/569612497/subscription" + }, + { + "id": "569515882", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-26T19:05:36Z", + "last_read_at": "2019-08-27T21:21:59Z", + "subject": { + "title": "Make repo public", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/73", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/73", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/569515882", + "subscription_url": "https://api.github.com/notifications/threads/569515882/subscription" + }, + { + "id": "569141603", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-26T16:43:41Z", + "last_read_at": "2019-08-27T21:21:59Z", + "subject": { + "title": "Bump lint-staged from 9.2.3 to 9.2.4", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/71", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments/524934576", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/569141603", + "subscription_url": "https://api.github.com/notifications/threads/569141603/subscription" + }, + { + "id": "569141253", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-26T16:43:27Z", + "last_read_at": "2019-08-27T21:21:59Z", + "subject": { + "title": "Bump eslint-loader from 2.2.1 to 3.0.0", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/70", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments/524934487", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/569141253", + "subscription_url": "https://api.github.com/notifications/threads/569141253/subscription" + }, + { + "id": "569140717", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-26T16:43:15Z", + "last_read_at": "2019-08-27T21:21:59Z", + "subject": { + "title": "Bump babel-eslint from 10.0.2 to 10.0.3", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/69", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments/524934398", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/569140717", + "subscription_url": "https://api.github.com/notifications/threads/569140717/subscription" + }, + { + "id": "569356801", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-08-26T16:00:58Z", + "last_read_at": "2019-08-29T07:24:57Z", + "subject": { + "title": "* DRAFT Update Jenkins Infrastructure homepage", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2448", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2448", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/569356801", + "subscription_url": "https://api.github.com/notifications/threads/569356801/subscription" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/__files/notifications-ee5a6c9f-da3a-47e7-a393-b403e82ae5d9.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/__files/notifications-ee5a6c9f-da3a-47e7-a393-b403e82ae5d9.json new file mode 100644 index 0000000000..779e8a64c5 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/__files/notifications-ee5a6c9f-da3a-47e7-a393-b403e82ae5d9.json @@ -0,0 +1,4102 @@ +[ + { + "id": "582414860", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-11T17:46:27Z", + "last_read_at": "2019-09-12T20:12:56Z", + "subject": { + "title": "chore(deps): bump https://github.com/cloudbees/jxui-frontend.git from 0.0.837 to 0.0.838", + "url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/27", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/comments/530489685", + "type": "PullRequest" + }, + "repository": { + "id": 183067295, + "node_id": "MDEwOlJlcG9zaXRvcnkxODMwNjcyOTU=", + "name": "jx-app-ui", + "full_name": "cloudbees/jx-app-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jx-app-ui", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jx-app-ui", + "forks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jx-app-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jx-app-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jx-app-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jx-app-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jx-app-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jx-app-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jx-app-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jx-app-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jx-app-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jx-app-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jx-app-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jx-app-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jx-app-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jx-app-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/582414860", + "subscription_url": "https://api.github.com/notifications/threads/582414860/subscription" + }, + { + "id": "520991206", + "unread": false, + "reason": "mention", + "updated_at": "2019-09-11T15:12:58Z", + "last_read_at": "2019-09-12T05:10:18Z", + "subject": { + "title": "[JENKINS-58028] change gmaven to gmavenplus", + "url": "https://api.github.com/repos/jenkinsci/htmlpublisher-plugin/pulls/42", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/htmlpublisher-plugin/issues/comments/530426667", + "type": "PullRequest" + }, + "repository": { + "id": 1163591, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNTkx", + "name": "htmlpublisher-plugin", + "full_name": "jenkinsci/htmlpublisher-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/htmlpublisher-plugin", + "description": "Jenkins htmlpublisher plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/htmlpublisher-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/htmlpublisher-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/htmlpublisher-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/htmlpublisher-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/htmlpublisher-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/htmlpublisher-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/htmlpublisher-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/htmlpublisher-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/htmlpublisher-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/htmlpublisher-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/htmlpublisher-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/htmlpublisher-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/htmlpublisher-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/htmlpublisher-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/htmlpublisher-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/htmlpublisher-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/htmlpublisher-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/htmlpublisher-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/htmlpublisher-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/htmlpublisher-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/htmlpublisher-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/htmlpublisher-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/htmlpublisher-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/htmlpublisher-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/htmlpublisher-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/htmlpublisher-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/htmlpublisher-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/htmlpublisher-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/htmlpublisher-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/htmlpublisher-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/htmlpublisher-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/htmlpublisher-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/htmlpublisher-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/htmlpublisher-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/htmlpublisher-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/htmlpublisher-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/htmlpublisher-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/520991206", + "subscription_url": "https://api.github.com/notifications/threads/520991206/subscription" + }, + { + "id": "561572177", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-09-11T15:14:52Z", + "last_read_at": "2019-09-11T15:11:25Z", + "subject": { + "title": "[JENKINS-58942] Honor -Djenkins.hook.url=… if defined", + "url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/pulls/240", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/pulls/240", + "type": "PullRequest" + }, + "repository": { + "id": 43903637, + "node_id": "MDEwOlJlcG9zaXRvcnk0MzkwMzYzNw==", + "name": "github-branch-source-plugin", + "full_name": "jenkinsci/github-branch-source-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/github-branch-source-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/561572177", + "subscription_url": "https://api.github.com/notifications/threads/561572177/subscription" + }, + { + "id": "580673823", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-09-11T13:16:13Z", + "last_read_at": "2019-09-11T14:08:13Z", + "subject": { + "title": "Update plugin lists", + "url": "https://api.github.com/repos/cloudbees/urap/pulls/9", + "latest_comment_url": "https://api.github.com/repos/cloudbees/urap/pulls/9", + "type": "PullRequest" + }, + "repository": { + "id": 202161566, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDIxNjE1NjY=", + "name": "urap", + "full_name": "cloudbees/urap", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/urap", + "description": "Unified Release Automatic Plugin updater. https://en.wikipedia.org/wiki/Urap", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/urap", + "forks_url": "https://api.github.com/repos/cloudbees/urap/forks", + "keys_url": "https://api.github.com/repos/cloudbees/urap/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/urap/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/urap/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/urap/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/urap/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/urap/events", + "assignees_url": "https://api.github.com/repos/cloudbees/urap/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/urap/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/urap/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/urap/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/urap/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/urap/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/urap/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/urap/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/urap/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/urap/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/urap/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/urap/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/urap/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/urap/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/urap/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/urap/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/urap/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/urap/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/urap/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/urap/merges", + "archive_url": "https://api.github.com/repos/cloudbees/urap/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/urap/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/urap/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/urap/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/urap/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/urap/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/urap/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/urap/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/urap/deployments" + }, + "url": "https://api.github.com/notifications/threads/580673823", + "subscription_url": "https://api.github.com/notifications/threads/580673823/subscription" + }, + { + "id": "582119176", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-11T10:58:22Z", + "last_read_at": "2019-09-12T20:12:56Z", + "subject": { + "title": "chore(deps): bump https://github.com/cloudbees/jxui-frontend.git from 0.0.834 to 0.0.837", + "url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/25", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/comments/530330311", + "type": "PullRequest" + }, + "repository": { + "id": 183067295, + "node_id": "MDEwOlJlcG9zaXRvcnkxODMwNjcyOTU=", + "name": "jx-app-ui", + "full_name": "cloudbees/jx-app-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jx-app-ui", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jx-app-ui", + "forks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jx-app-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jx-app-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jx-app-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jx-app-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jx-app-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jx-app-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jx-app-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jx-app-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jx-app-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jx-app-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jx-app-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jx-app-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jx-app-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jx-app-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/582119176", + "subscription_url": "https://api.github.com/notifications/threads/582119176/subscription" + }, + { + "id": "582067880", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-11T09:59:18Z", + "last_read_at": "2019-09-30T16:10:10Z", + "subject": { + "title": "Ngpipeline 684", + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/pulls/11", + "latest_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/pulls/11", + "type": "PullRequest" + }, + "repository": { + "id": 193577985, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTM1Nzc5ODU=", + "name": "cloudbees-pipeline-rules-interception-plugin", + "full_name": "cloudbees/cloudbees-pipeline-rules-interception-plugin", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/cloudbees-pipeline-rules-interception-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin", + "forks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/forks", + "keys_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/events", + "assignees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/merges", + "archive_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/582067880", + "subscription_url": "https://api.github.com/notifications/threads/582067880/subscription" + }, + { + "id": "580715672", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-11T09:24:42Z", + "last_read_at": "2019-09-30T16:10:10Z", + "subject": { + "title": "[NGPIPELINE-684] adding check for paused actions within nodes", + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/pulls/9", + "latest_comment_url": null, + "type": "PullRequest" + }, + "repository": { + "id": 193577985, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTM1Nzc5ODU=", + "name": "cloudbees-pipeline-rules-interception-plugin", + "full_name": "cloudbees/cloudbees-pipeline-rules-interception-plugin", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/cloudbees-pipeline-rules-interception-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin", + "forks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/forks", + "keys_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/events", + "assignees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/merges", + "archive_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/580715672", + "subscription_url": "https://api.github.com/notifications/threads/580715672/subscription" + }, + { + "id": "548415526", + "unread": false, + "reason": "mention", + "updated_at": "2019-09-11T14:16:38Z", + "last_read_at": "2019-09-11T14:15:25Z", + "subject": { + "title": "Consistently use sandbox for CpsFlowDefinitions", + "url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/pulls/343", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/pulls/343", + "type": "PullRequest" + }, + "repository": { + "id": 66677338, + "node_id": "MDEwOlJlcG9zaXRvcnk2NjY3NzMzOA==", + "name": "pipeline-model-definition-plugin", + "full_name": "jenkinsci/pipeline-model-definition-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pipeline-model-definition-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/548415526", + "subscription_url": "https://api.github.com/notifications/threads/548415526/subscription" + }, + { + "id": "250531899", + "unread": false, + "reason": "mention", + "updated_at": "2019-09-11T09:17:13Z", + "last_read_at": "2019-10-01T21:21:35Z", + "subject": { + "title": "[WiP]Validate credentials id", + "url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/pulls/184", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/issues/comments/530295974", + "type": "PullRequest" + }, + "repository": { + "id": 66677338, + "node_id": "MDEwOlJlcG9zaXRvcnk2NjY3NzMzOA==", + "name": "pipeline-model-definition-plugin", + "full_name": "jenkinsci/pipeline-model-definition-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pipeline-model-definition-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/250531899", + "subscription_url": "https://api.github.com/notifications/threads/250531899/subscription" + }, + { + "id": "579814236", + "unread": false, + "reason": "mention", + "updated_at": "2019-09-11T05:54:25Z", + "last_read_at": "2019-09-11T14:08:28Z", + "subject": { + "title": "Fix JENKINS-56016 by documenting behaviour", + "url": "https://api.github.com/repos/jenkinsci/pipeline-input-step-plugin/pulls/39", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/pipeline-input-step-plugin/issues/comments/530231485", + "type": "PullRequest" + }, + "repository": { + "id": 55543019, + "node_id": "MDEwOlJlcG9zaXRvcnk1NTU0MzAxOQ==", + "name": "pipeline-input-step-plugin", + "full_name": "jenkinsci/pipeline-input-step-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pipeline-input-step-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/pipeline-input-step-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pipeline-input-step-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pipeline-input-step-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pipeline-input-step-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pipeline-input-step-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pipeline-input-step-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pipeline-input-step-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pipeline-input-step-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pipeline-input-step-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pipeline-input-step-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pipeline-input-step-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pipeline-input-step-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pipeline-input-step-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pipeline-input-step-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pipeline-input-step-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pipeline-input-step-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pipeline-input-step-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pipeline-input-step-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pipeline-input-step-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pipeline-input-step-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pipeline-input-step-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pipeline-input-step-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pipeline-input-step-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pipeline-input-step-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pipeline-input-step-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pipeline-input-step-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pipeline-input-step-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pipeline-input-step-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pipeline-input-step-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pipeline-input-step-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pipeline-input-step-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pipeline-input-step-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pipeline-input-step-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pipeline-input-step-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pipeline-input-step-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pipeline-input-step-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pipeline-input-step-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/579814236", + "subscription_url": "https://api.github.com/notifications/threads/579814236/subscription" + }, + { + "id": "581645707", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-09-10T21:45:28Z", + "last_read_at": "2019-09-11T00:03:20Z", + "subject": { + "title": "[CPLT2-5785] Define jenkins.hook.url when appropriate", + "url": "https://api.github.com/repos/cloudbees/managed-master-hibernation-plugin/pulls/15", + "latest_comment_url": "https://api.github.com/repos/cloudbees/managed-master-hibernation-plugin/pulls/15", + "type": "PullRequest" + }, + "repository": { + "id": 202214807, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDIyMTQ4MDc=", + "name": "managed-master-hibernation-plugin", + "full_name": "cloudbees/managed-master-hibernation-plugin", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/managed-master-hibernation-plugin", + "description": "CPLT2-5737: Allows a managed master to indicate that it is ready to be hibernated.", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/managed-master-hibernation-plugin", + "forks_url": "https://api.github.com/repos/cloudbees/managed-master-hibernation-plugin/forks", + "keys_url": "https://api.github.com/repos/cloudbees/managed-master-hibernation-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/managed-master-hibernation-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/managed-master-hibernation-plugin/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/managed-master-hibernation-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/managed-master-hibernation-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/managed-master-hibernation-plugin/events", + "assignees_url": "https://api.github.com/repos/cloudbees/managed-master-hibernation-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/managed-master-hibernation-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/managed-master-hibernation-plugin/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/managed-master-hibernation-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/managed-master-hibernation-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/managed-master-hibernation-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/managed-master-hibernation-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/managed-master-hibernation-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/managed-master-hibernation-plugin/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/managed-master-hibernation-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/managed-master-hibernation-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/managed-master-hibernation-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/managed-master-hibernation-plugin/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/managed-master-hibernation-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/managed-master-hibernation-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/managed-master-hibernation-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/managed-master-hibernation-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/managed-master-hibernation-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/managed-master-hibernation-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/managed-master-hibernation-plugin/merges", + "archive_url": "https://api.github.com/repos/cloudbees/managed-master-hibernation-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/managed-master-hibernation-plugin/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/managed-master-hibernation-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/managed-master-hibernation-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/managed-master-hibernation-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/managed-master-hibernation-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/managed-master-hibernation-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/managed-master-hibernation-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/managed-master-hibernation-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/581645707", + "subscription_url": "https://api.github.com/notifications/threads/581645707/subscription" + }, + { + "id": "581738076", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-10T21:10:57Z", + "last_read_at": "2019-09-29T16:12:22Z", + "subject": { + "title": "HTML option \"wrap-attributes\": \"preserve\" does not preserve line break before closing angle bracket", + "url": "https://api.github.com/repos/beautify-web/js-beautify/issues/1707", + "latest_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/1707", + "type": "Issue" + }, + "repository": { + "id": 84822, + "node_id": "MDEwOlJlcG9zaXRvcnk4NDgyMg==", + "name": "js-beautify", + "full_name": "beautify-web/js-beautify", + "private": false, + "owner": { + "login": "beautify-web", + "id": 6538164, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjY1MzgxNjQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/6538164?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/beautify-web", + "html_url": "https://github.com/beautify-web", + "followers_url": "https://api.github.com/users/beautify-web/followers", + "following_url": "https://api.github.com/users/beautify-web/following{/other_user}", + "gists_url": "https://api.github.com/users/beautify-web/gists{/gist_id}", + "starred_url": "https://api.github.com/users/beautify-web/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/beautify-web/subscriptions", + "organizations_url": "https://api.github.com/users/beautify-web/orgs", + "repos_url": "https://api.github.com/users/beautify-web/repos", + "events_url": "https://api.github.com/users/beautify-web/events{/privacy}", + "received_events_url": "https://api.github.com/users/beautify-web/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/beautify-web/js-beautify", + "description": "Beautifier for javascript ", + "fork": false, + "url": "https://api.github.com/repos/beautify-web/js-beautify", + "forks_url": "https://api.github.com/repos/beautify-web/js-beautify/forks", + "keys_url": "https://api.github.com/repos/beautify-web/js-beautify/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/beautify-web/js-beautify/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/beautify-web/js-beautify/teams", + "hooks_url": "https://api.github.com/repos/beautify-web/js-beautify/hooks", + "issue_events_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/events{/number}", + "events_url": "https://api.github.com/repos/beautify-web/js-beautify/events", + "assignees_url": "https://api.github.com/repos/beautify-web/js-beautify/assignees{/user}", + "branches_url": "https://api.github.com/repos/beautify-web/js-beautify/branches{/branch}", + "tags_url": "https://api.github.com/repos/beautify-web/js-beautify/tags", + "blobs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/beautify-web/js-beautify/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/beautify-web/js-beautify/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/beautify-web/js-beautify/statuses/{sha}", + "languages_url": "https://api.github.com/repos/beautify-web/js-beautify/languages", + "stargazers_url": "https://api.github.com/repos/beautify-web/js-beautify/stargazers", + "contributors_url": "https://api.github.com/repos/beautify-web/js-beautify/contributors", + "subscribers_url": "https://api.github.com/repos/beautify-web/js-beautify/subscribers", + "subscription_url": "https://api.github.com/repos/beautify-web/js-beautify/subscription", + "commits_url": "https://api.github.com/repos/beautify-web/js-beautify/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/beautify-web/js-beautify/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/beautify-web/js-beautify/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/beautify-web/js-beautify/contents/{+path}", + "compare_url": "https://api.github.com/repos/beautify-web/js-beautify/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/beautify-web/js-beautify/merges", + "archive_url": "https://api.github.com/repos/beautify-web/js-beautify/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/beautify-web/js-beautify/downloads", + "issues_url": "https://api.github.com/repos/beautify-web/js-beautify/issues{/number}", + "pulls_url": "https://api.github.com/repos/beautify-web/js-beautify/pulls{/number}", + "milestones_url": "https://api.github.com/repos/beautify-web/js-beautify/milestones{/number}", + "notifications_url": "https://api.github.com/repos/beautify-web/js-beautify/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/beautify-web/js-beautify/labels{/name}", + "releases_url": "https://api.github.com/repos/beautify-web/js-beautify/releases{/id}", + "deployments_url": "https://api.github.com/repos/beautify-web/js-beautify/deployments" + }, + "url": "https://api.github.com/notifications/threads/581738076", + "subscription_url": "https://api.github.com/notifications/threads/581738076/subscription" + }, + { + "id": "382530750", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-10T20:01:03Z", + "last_read_at": "2019-09-11T00:01:36Z", + "subject": { + "title": "Added PULL_REQUEST_REVIEW_COMMENT event trigger to webhook", + "url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/pulls/185", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues/comments/530096141", + "type": "PullRequest" + }, + "repository": { + "id": 43903637, + "node_id": "MDEwOlJlcG9zaXRvcnk0MzkwMzYzNw==", + "name": "github-branch-source-plugin", + "full_name": "jenkinsci/github-branch-source-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/github-branch-source-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/382530750", + "subscription_url": "https://api.github.com/notifications/threads/382530750/subscription" + }, + { + "id": "575149557", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-10T19:13:41Z", + "last_read_at": "2019-09-11T00:03:29Z", + "subject": { + "title": "Introducing the jira software plugin for jenkins", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2454", + "latest_comment_url": null, + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/575149557", + "subscription_url": "https://api.github.com/notifications/threads/575149557/subscription" + }, + { + "id": "580607611", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-10T19:30:30Z", + "last_read_at": "2019-09-11T00:03:29Z", + "subject": { + "title": "Improve the XSS prevention page", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2468", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/comments/322922763", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/580607611", + "subscription_url": "https://api.github.com/notifications/threads/580607611/subscription" + }, + { + "id": "579024846", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-09-10T19:15:07Z", + "last_read_at": "2019-09-11T00:03:29Z", + "subject": { + "title": "Automatically request copy-editors to review all content pull requests", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2464", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2464", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/579024846", + "subscription_url": "https://api.github.com/notifications/threads/579024846/subscription" + }, + { + "id": "576907634", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-10T17:03:50Z", + "last_read_at": "2019-09-11T14:14:56Z", + "subject": { + "title": "Scm, job type, and duration collection", + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/pulls/12", + "latest_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/pulls/12", + "type": "PullRequest" + }, + "repository": { + "id": 200867838, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDA4Njc4Mzg=", + "name": "cloudbees-pipeline-analytics-plugin", + "full_name": "cloudbees/cloudbees-pipeline-analytics-plugin", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/cloudbees-pipeline-analytics-plugin", + "description": "PoC Plugin for https://cloudbees.atlassian.net/browse/NGPIPELINE-610", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin", + "forks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/forks", + "keys_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/events", + "assignees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/merges", + "archive_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/576907634", + "subscription_url": "https://api.github.com/notifications/threads/576907634/subscription" + }, + { + "id": "559650467", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-10T16:46:56Z", + "last_read_at": "2019-09-11T00:03:29Z", + "subject": { + "title": "Fill out forms chapter", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2407", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2407", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/559650467", + "subscription_url": "https://api.github.com/notifications/threads/559650467/subscription" + }, + { + "id": "576159853", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-10T16:25:17Z", + "last_read_at": "2019-09-10T21:21:09Z", + "subject": { + "title": "[FNDJEN-1422] [FNDJEN-1519] A plugin to gather and send information via the standard analytics API", + "url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/pulls/1", + "latest_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/pulls/1", + "type": "PullRequest" + }, + "repository": { + "id": 205587249, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDU1ODcyNDk=", + "name": "cloudbees-analytics-plugin", + "full_name": "cloudbees/cloudbees-analytics-plugin", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/cloudbees-analytics-plugin", + "description": "The analytics plugin to gather and send information to an endpoint using a standard analytics API", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin", + "forks_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/forks", + "keys_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/events", + "assignees_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/merges", + "archive_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/cloudbees-analytics-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/576159853", + "subscription_url": "https://api.github.com/notifications/threads/576159853/subscription" + }, + { + "id": "581207959", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-10T13:53:39Z", + "last_read_at": "2019-09-10T15:14:42Z", + "subject": { + "title": "[NGPIPELINE-691] bumped jenkins version to get changes from workflow-api", + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/pulls/10", + "latest_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/pulls/10", + "type": "PullRequest" + }, + "repository": { + "id": 193577985, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTM1Nzc5ODU=", + "name": "cloudbees-pipeline-rules-interception-plugin", + "full_name": "cloudbees/cloudbees-pipeline-rules-interception-plugin", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/cloudbees-pipeline-rules-interception-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin", + "forks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/forks", + "keys_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/events", + "assignees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/merges", + "archive_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/581207959", + "subscription_url": "https://api.github.com/notifications/threads/581207959/subscription" + }, + { + "id": "580915176", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-10T12:11:30Z", + "last_read_at": "2019-09-11T00:03:29Z", + "subject": { + "title": "Reset parallelism setting for site generation", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2470", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2470", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/580915176", + "subscription_url": "https://api.github.com/notifications/threads/580915176/subscription" + }, + { + "id": "445529630", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-10T10:11:35Z", + "last_read_at": "2019-09-10T15:16:18Z", + "subject": { + "title": "Add Version Number Library to the Javadoc site", + "url": "https://api.github.com/repos/jenkins-infra/javadoc/pulls/21", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/javadoc/pulls/21", + "type": "PullRequest" + }, + "repository": { + "id": 64257420, + "node_id": "MDEwOlJlcG9zaXRvcnk2NDI1NzQyMA==", + "name": "javadoc", + "full_name": "jenkins-infra/javadoc", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/javadoc", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/javadoc", + "forks_url": "https://api.github.com/repos/jenkins-infra/javadoc/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/javadoc/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/javadoc/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/javadoc/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/javadoc/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/javadoc/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/javadoc/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/javadoc/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/javadoc/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/javadoc/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/javadoc/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/javadoc/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/javadoc/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/javadoc/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/javadoc/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/javadoc/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/javadoc/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/javadoc/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/javadoc/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/javadoc/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/javadoc/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/javadoc/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/javadoc/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/javadoc/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/javadoc/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/javadoc/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/javadoc/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/javadoc/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/javadoc/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/javadoc/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/javadoc/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/javadoc/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/javadoc/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/javadoc/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/javadoc/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/javadoc/deployments" + }, + "url": "https://api.github.com/notifications/threads/445529630", + "subscription_url": "https://api.github.com/notifications/threads/445529630/subscription" + }, + { + "id": "580964311", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-09T22:30:42Z", + "last_read_at": "2019-09-10T15:15:03Z", + "subject": { + "title": "chore(deps): bump https://github.com/cloudbees/jxui-frontend.git from 0.0.831 to 0.0.834", + "url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/24", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/24", + "type": "PullRequest" + }, + "repository": { + "id": 183067295, + "node_id": "MDEwOlJlcG9zaXRvcnkxODMwNjcyOTU=", + "name": "jx-app-ui", + "full_name": "cloudbees/jx-app-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jx-app-ui", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jx-app-ui", + "forks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jx-app-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jx-app-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jx-app-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jx-app-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jx-app-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jx-app-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jx-app-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jx-app-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jx-app-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jx-app-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jx-app-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jx-app-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jx-app-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jx-app-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/580964311", + "subscription_url": "https://api.github.com/notifications/threads/580964311/subscription" + }, + { + "id": "564363753", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-09T20:46:28Z", + "last_read_at": "2019-09-11T05:50:31Z", + "subject": { + "title": "[JENKINS-58407] Verify that `foo.someField()` doesn't trigger mismatch", + "url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls/316", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls/comments/322446431", + "type": "PullRequest" + }, + "repository": { + "id": 55543225, + "node_id": "MDEwOlJlcG9zaXRvcnk1NTU0MzIyNQ==", + "name": "workflow-cps-plugin", + "full_name": "jenkinsci/workflow-cps-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/workflow-cps-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/564363753", + "subscription_url": "https://api.github.com/notifications/threads/564363753/subscription" + }, + { + "id": "580886655", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-09T20:22:21Z", + "last_read_at": "2019-09-11T00:03:29Z", + "subject": { + "title": "[WEBSITE-469] Verify syntax check DO NOT MERGE", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2469", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2469", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/580886655", + "subscription_url": "https://api.github.com/notifications/threads/580886655/subscription" + }, + { + "id": "580336663", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-09T19:35:05Z", + "last_read_at": "2019-09-10T15:15:07Z", + "subject": { + "title": "Bump @babel/core from 7.5.5 to 7.6.0", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/90", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/90", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/580336663", + "subscription_url": "https://api.github.com/notifications/threads/580336663/subscription" + }, + { + "id": "580336233", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-09T19:34:44Z", + "last_read_at": "2019-09-10T15:15:07Z", + "subject": { + "title": "Bump @babel/preset-env from 7.5.5 to 7.6.0", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/89", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments/529632108", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/580336233", + "subscription_url": "https://api.github.com/notifications/threads/580336233/subscription" + }, + { + "id": "560876838", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-09T18:11:52Z", + "last_read_at": "2019-09-11T05:50:06Z", + "subject": { + "title": "JENKINS-58620 GroovyShell.evaluate should be skipped in the mismatch handler", + "url": "https://api.github.com/repos/cloudbees/groovy-cps/pulls/101", + "latest_comment_url": "https://api.github.com/repos/cloudbees/groovy-cps/issues/comments/529600812", + "type": "PullRequest" + }, + "repository": { + "id": 16677474, + "node_id": "MDEwOlJlcG9zaXRvcnkxNjY3NzQ3NA==", + "name": "groovy-cps", + "full_name": "cloudbees/groovy-cps", + "private": false, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/groovy-cps", + "description": "Groovy execution in the continuation passing style", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/groovy-cps", + "forks_url": "https://api.github.com/repos/cloudbees/groovy-cps/forks", + "keys_url": "https://api.github.com/repos/cloudbees/groovy-cps/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/groovy-cps/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/groovy-cps/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/groovy-cps/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/groovy-cps/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/groovy-cps/events", + "assignees_url": "https://api.github.com/repos/cloudbees/groovy-cps/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/groovy-cps/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/groovy-cps/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/groovy-cps/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/groovy-cps/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/groovy-cps/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/groovy-cps/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/groovy-cps/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/groovy-cps/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/groovy-cps/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/groovy-cps/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/groovy-cps/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/groovy-cps/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/groovy-cps/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/groovy-cps/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/groovy-cps/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/groovy-cps/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/groovy-cps/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/groovy-cps/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/groovy-cps/merges", + "archive_url": "https://api.github.com/repos/cloudbees/groovy-cps/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/groovy-cps/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/groovy-cps/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/groovy-cps/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/groovy-cps/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/groovy-cps/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/groovy-cps/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/groovy-cps/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/groovy-cps/deployments" + }, + "url": "https://api.github.com/notifications/threads/560876838", + "subscription_url": "https://api.github.com/notifications/threads/560876838/subscription" + }, + { + "id": "580709828", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-09T15:46:42Z", + "last_read_at": "2019-09-10T15:15:03Z", + "subject": { + "title": "chore(deps): bump https://github.com/cloudbees/jxui-frontend.git from 0.0.828 to 0.0.831", + "url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/23", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/23", + "type": "PullRequest" + }, + "repository": { + "id": 183067295, + "node_id": "MDEwOlJlcG9zaXRvcnkxODMwNjcyOTU=", + "name": "jx-app-ui", + "full_name": "cloudbees/jx-app-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jx-app-ui", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jx-app-ui", + "forks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jx-app-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jx-app-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jx-app-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jx-app-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jx-app-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jx-app-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jx-app-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jx-app-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jx-app-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jx-app-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jx-app-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jx-app-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jx-app-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jx-app-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/580709828", + "subscription_url": "https://api.github.com/notifications/threads/580709828/subscription" + }, + { + "id": "580683767", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-09-09T15:34:43Z", + "last_read_at": "2019-09-10T15:14:59Z", + "subject": { + "title": "Lock Gradle, display-url-api and mailer", + "url": "https://api.github.com/repos/cloudbees/urap/pulls/10", + "latest_comment_url": "https://api.github.com/repos/cloudbees/urap/pulls/10", + "type": "PullRequest" + }, + "repository": { + "id": 202161566, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDIxNjE1NjY=", + "name": "urap", + "full_name": "cloudbees/urap", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/urap", + "description": "Unified Release Automatic Plugin updater. https://en.wikipedia.org/wiki/Urap", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/urap", + "forks_url": "https://api.github.com/repos/cloudbees/urap/forks", + "keys_url": "https://api.github.com/repos/cloudbees/urap/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/urap/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/urap/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/urap/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/urap/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/urap/events", + "assignees_url": "https://api.github.com/repos/cloudbees/urap/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/urap/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/urap/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/urap/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/urap/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/urap/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/urap/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/urap/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/urap/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/urap/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/urap/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/urap/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/urap/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/urap/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/urap/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/urap/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/urap/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/urap/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/urap/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/urap/merges", + "archive_url": "https://api.github.com/repos/cloudbees/urap/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/urap/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/urap/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/urap/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/urap/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/urap/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/urap/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/urap/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/urap/deployments" + }, + "url": "https://api.github.com/notifications/threads/580683767", + "subscription_url": "https://api.github.com/notifications/threads/580683767/subscription" + }, + { + "id": "577290711", + "unread": false, + "reason": "mention", + "updated_at": "2019-09-09T22:55:13Z", + "last_read_at": "2019-09-09T23:18:34Z", + "subject": { + "title": "Namespace PR head queries with repo's owner by default", + "url": "https://api.github.com/repos/github-api/github-api/pulls/538", + "latest_comment_url": null, + "type": "PullRequest" + }, + "repository": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments" + }, + "url": "https://api.github.com/notifications/threads/577290711", + "subscription_url": "https://api.github.com/notifications/threads/577290711/subscription" + }, + { + "id": "580648747", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-09T14:31:29Z", + "last_read_at": "2019-09-29T02:56:02Z", + "subject": { + "title": "Please support es module", + "url": "https://api.github.com/repos/beautify-web/js-beautify/issues/1706", + "latest_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/1706", + "type": "Issue" + }, + "repository": { + "id": 84822, + "node_id": "MDEwOlJlcG9zaXRvcnk4NDgyMg==", + "name": "js-beautify", + "full_name": "beautify-web/js-beautify", + "private": false, + "owner": { + "login": "beautify-web", + "id": 6538164, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjY1MzgxNjQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/6538164?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/beautify-web", + "html_url": "https://github.com/beautify-web", + "followers_url": "https://api.github.com/users/beautify-web/followers", + "following_url": "https://api.github.com/users/beautify-web/following{/other_user}", + "gists_url": "https://api.github.com/users/beautify-web/gists{/gist_id}", + "starred_url": "https://api.github.com/users/beautify-web/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/beautify-web/subscriptions", + "organizations_url": "https://api.github.com/users/beautify-web/orgs", + "repos_url": "https://api.github.com/users/beautify-web/repos", + "events_url": "https://api.github.com/users/beautify-web/events{/privacy}", + "received_events_url": "https://api.github.com/users/beautify-web/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/beautify-web/js-beautify", + "description": "Beautifier for javascript ", + "fork": false, + "url": "https://api.github.com/repos/beautify-web/js-beautify", + "forks_url": "https://api.github.com/repos/beautify-web/js-beautify/forks", + "keys_url": "https://api.github.com/repos/beautify-web/js-beautify/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/beautify-web/js-beautify/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/beautify-web/js-beautify/teams", + "hooks_url": "https://api.github.com/repos/beautify-web/js-beautify/hooks", + "issue_events_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/events{/number}", + "events_url": "https://api.github.com/repos/beautify-web/js-beautify/events", + "assignees_url": "https://api.github.com/repos/beautify-web/js-beautify/assignees{/user}", + "branches_url": "https://api.github.com/repos/beautify-web/js-beautify/branches{/branch}", + "tags_url": "https://api.github.com/repos/beautify-web/js-beautify/tags", + "blobs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/beautify-web/js-beautify/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/beautify-web/js-beautify/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/beautify-web/js-beautify/statuses/{sha}", + "languages_url": "https://api.github.com/repos/beautify-web/js-beautify/languages", + "stargazers_url": "https://api.github.com/repos/beautify-web/js-beautify/stargazers", + "contributors_url": "https://api.github.com/repos/beautify-web/js-beautify/contributors", + "subscribers_url": "https://api.github.com/repos/beautify-web/js-beautify/subscribers", + "subscription_url": "https://api.github.com/repos/beautify-web/js-beautify/subscription", + "commits_url": "https://api.github.com/repos/beautify-web/js-beautify/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/beautify-web/js-beautify/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/beautify-web/js-beautify/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/beautify-web/js-beautify/contents/{+path}", + "compare_url": "https://api.github.com/repos/beautify-web/js-beautify/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/beautify-web/js-beautify/merges", + "archive_url": "https://api.github.com/repos/beautify-web/js-beautify/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/beautify-web/js-beautify/downloads", + "issues_url": "https://api.github.com/repos/beautify-web/js-beautify/issues{/number}", + "pulls_url": "https://api.github.com/repos/beautify-web/js-beautify/pulls{/number}", + "milestones_url": "https://api.github.com/repos/beautify-web/js-beautify/milestones{/number}", + "notifications_url": "https://api.github.com/repos/beautify-web/js-beautify/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/beautify-web/js-beautify/labels{/name}", + "releases_url": "https://api.github.com/repos/beautify-web/js-beautify/releases{/id}", + "deployments_url": "https://api.github.com/repos/beautify-web/js-beautify/deployments" + }, + "url": "https://api.github.com/notifications/threads/580648747", + "subscription_url": "https://api.github.com/notifications/threads/580648747/subscription" + }, + { + "id": "564362630", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-09T14:13:41Z", + "last_read_at": "2019-09-11T05:50:06Z", + "subject": { + "title": "[FIXED JENKINS-58407] Treat closure fields and map values properly", + "url": "https://api.github.com/repos/cloudbees/groovy-cps/pulls/102", + "latest_comment_url": "https://api.github.com/repos/cloudbees/groovy-cps/pulls/102", + "type": "PullRequest" + }, + "repository": { + "id": 16677474, + "node_id": "MDEwOlJlcG9zaXRvcnkxNjY3NzQ3NA==", + "name": "groovy-cps", + "full_name": "cloudbees/groovy-cps", + "private": false, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/groovy-cps", + "description": "Groovy execution in the continuation passing style", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/groovy-cps", + "forks_url": "https://api.github.com/repos/cloudbees/groovy-cps/forks", + "keys_url": "https://api.github.com/repos/cloudbees/groovy-cps/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/groovy-cps/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/groovy-cps/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/groovy-cps/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/groovy-cps/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/groovy-cps/events", + "assignees_url": "https://api.github.com/repos/cloudbees/groovy-cps/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/groovy-cps/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/groovy-cps/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/groovy-cps/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/groovy-cps/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/groovy-cps/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/groovy-cps/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/groovy-cps/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/groovy-cps/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/groovy-cps/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/groovy-cps/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/groovy-cps/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/groovy-cps/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/groovy-cps/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/groovy-cps/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/groovy-cps/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/groovy-cps/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/groovy-cps/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/groovy-cps/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/groovy-cps/merges", + "archive_url": "https://api.github.com/repos/cloudbees/groovy-cps/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/groovy-cps/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/groovy-cps/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/groovy-cps/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/groovy-cps/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/groovy-cps/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/groovy-cps/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/groovy-cps/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/groovy-cps/deployments" + }, + "url": "https://api.github.com/notifications/threads/564362630", + "subscription_url": "https://api.github.com/notifications/threads/564362630/subscription" + }, + { + "id": "580555701", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-09T12:32:42Z", + "last_read_at": "2019-09-10T15:14:42Z", + "subject": { + "title": "fixed infinite loop test as no failure is thrown", + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/pulls/8", + "latest_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/pulls/8", + "type": "PullRequest" + }, + "repository": { + "id": 193577985, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTM1Nzc5ODU=", + "name": "cloudbees-pipeline-rules-interception-plugin", + "full_name": "cloudbees/cloudbees-pipeline-rules-interception-plugin", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/cloudbees-pipeline-rules-interception-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin", + "forks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/forks", + "keys_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/events", + "assignees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/merges", + "archive_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/580555701", + "subscription_url": "https://api.github.com/notifications/threads/580555701/subscription" + }, + { + "id": "580459131", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-09T10:36:20Z", + "last_read_at": "2019-09-10T15:14:42Z", + "subject": { + "title": "Ngpipeline 683", + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/pulls/7", + "latest_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/pulls/7", + "type": "PullRequest" + }, + "repository": { + "id": 193577985, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTM1Nzc5ODU=", + "name": "cloudbees-pipeline-rules-interception-plugin", + "full_name": "cloudbees/cloudbees-pipeline-rules-interception-plugin", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/cloudbees-pipeline-rules-interception-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin", + "forks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/forks", + "keys_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/events", + "assignees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/merges", + "archive_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/580459131", + "subscription_url": "https://api.github.com/notifications/threads/580459131/subscription" + }, + { + "id": "551888077", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-09T10:29:32Z", + "last_read_at": "2019-09-10T15:14:42Z", + "subject": { + "title": "loop detection", + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/pulls/2", + "latest_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/pulls/2", + "type": "PullRequest" + }, + "repository": { + "id": 193577985, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTM1Nzc5ODU=", + "name": "cloudbees-pipeline-rules-interception-plugin", + "full_name": "cloudbees/cloudbees-pipeline-rules-interception-plugin", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/cloudbees-pipeline-rules-interception-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin", + "forks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/forks", + "keys_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/events", + "assignees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/merges", + "archive_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/551888077", + "subscription_url": "https://api.github.com/notifications/threads/551888077/subscription" + }, + { + "id": "564221688", + "unread": false, + "reason": "mention", + "updated_at": "2019-09-09T10:09:42Z", + "last_read_at": "2019-09-11T00:03:29Z", + "subject": { + "title": "Update dependencies", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2423", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2423", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/564221688", + "subscription_url": "https://api.github.com/notifications/threads/564221688/subscription" + }, + { + "id": "580372761", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-09T08:49:39Z", + "last_read_at": "2019-09-11T00:03:29Z", + "subject": { + "title": "Add changelog for 2.194", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2467", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2467", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/580372761", + "subscription_url": "https://api.github.com/notifications/threads/580372761/subscription" + }, + { + "id": "576635093", + "unread": false, + "reason": "mention", + "updated_at": "2019-09-09T06:24:34Z", + "last_read_at": "2019-09-11T05:50:10Z", + "subject": { + "title": "Autogenerated OSS plugin updates Sep 2, 2019", + "url": "https://api.github.com/repos/cloudbees/unified-release/pulls/1435", + "latest_comment_url": "https://api.github.com/repos/cloudbees/unified-release/pulls/1435", + "type": "PullRequest" + }, + "repository": { + "id": 78131017, + "node_id": "MDEwOlJlcG9zaXRvcnk3ODEzMTAxNw==", + "name": "unified-release", + "full_name": "cloudbees/unified-release", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/unified-release", + "description": "Unified Release Repository", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/unified-release", + "forks_url": "https://api.github.com/repos/cloudbees/unified-release/forks", + "keys_url": "https://api.github.com/repos/cloudbees/unified-release/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/unified-release/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/unified-release/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/unified-release/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/unified-release/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/unified-release/events", + "assignees_url": "https://api.github.com/repos/cloudbees/unified-release/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/unified-release/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/unified-release/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/unified-release/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/unified-release/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/unified-release/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/unified-release/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/unified-release/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/unified-release/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/unified-release/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/unified-release/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/unified-release/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/unified-release/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/unified-release/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/unified-release/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/unified-release/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/unified-release/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/unified-release/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/unified-release/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/unified-release/merges", + "archive_url": "https://api.github.com/repos/cloudbees/unified-release/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/unified-release/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/unified-release/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/unified-release/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/unified-release/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/unified-release/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/unified-release/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/unified-release/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/unified-release/deployments" + }, + "url": "https://api.github.com/notifications/threads/576635093", + "subscription_url": "https://api.github.com/notifications/threads/576635093/subscription" + }, + { + "id": "580004971", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-08T07:52:02Z", + "last_read_at": "2019-09-11T00:03:29Z", + "subject": { + "title": "Remove the colon at the end of the title", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2466", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments/529173144", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/580004971", + "subscription_url": "https://api.github.com/notifications/threads/580004971/subscription" + }, + { + "id": "580004617", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-08T07:51:25Z", + "last_read_at": "2019-09-11T00:03:29Z", + "subject": { + "title": "change pull request to merge request", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2465", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2465", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/580004617", + "subscription_url": "https://api.github.com/notifications/threads/580004617/subscription" + }, + { + "id": "576327689", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-06T16:28:54Z", + "last_read_at": "2019-09-10T15:15:07Z", + "subject": { + "title": "Bump react-docgen-typescript-loader from 3.1.1 to 3.2.0", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/84", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/84", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/576327689", + "subscription_url": "https://api.github.com/notifications/threads/576327689/subscription" + }, + { + "id": "574519243", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-06T16:28:35Z", + "last_read_at": "2019-09-10T15:15:07Z", + "subject": { + "title": "Bump typescript from 3.5.3 to 3.6.2", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/83", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/83", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/574519243", + "subscription_url": "https://api.github.com/notifications/threads/574519243/subscription" + }, + { + "id": "576327919", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-06T15:59:24Z", + "last_read_at": "2019-09-10T15:15:07Z", + "subject": { + "title": "Bump husky from 3.0.4 to 3.0.5", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/85", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments/528912660", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/576327919", + "subscription_url": "https://api.github.com/notifications/threads/576327919/subscription" + }, + { + "id": "579163612", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-06T15:56:59Z", + "last_read_at": "2019-09-10T15:15:07Z", + "subject": { + "title": "Bump webpack-cli from 3.3.7 to 3.3.8", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/87", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/87", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/579163612", + "subscription_url": "https://api.github.com/notifications/threads/579163612/subscription" + }, + { + "id": "312795867", + "unread": false, + "reason": "mention", + "updated_at": "2019-09-06T14:16:04Z", + "last_read_at": "2019-09-12T20:15:28Z", + "subject": { + "title": "[JENKINS-48050] introduce \"container\" agent type", + "url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/pulls/255", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/pulls/255", + "type": "PullRequest" + }, + "repository": { + "id": 66677338, + "node_id": "MDEwOlJlcG9zaXRvcnk2NjY3NzMzOA==", + "name": "pipeline-model-definition-plugin", + "full_name": "jenkinsci/pipeline-model-definition-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pipeline-model-definition-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/312795867", + "subscription_url": "https://api.github.com/notifications/threads/312795867/subscription" + }, + { + "id": "577066407", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-06T07:46:01Z", + "last_read_at": "2019-09-10T15:15:07Z", + "subject": { + "title": "chore: [better_icon_interface] use enum for size and color", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/86", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/86", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/577066407", + "subscription_url": "https://api.github.com/notifications/threads/577066407/subscription" + }, + { + "id": "578697435", + "unread": false, + "reason": "mention", + "updated_at": "2019-09-29T02:55:24Z", + "last_read_at": "2019-09-06T08:40:39Z", + "subject": { + "title": " tag destroying html format", + "url": "https://api.github.com/repos/beautify-web/js-beautify/issues/1705", + "latest_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/comments/536243122", + "type": "Issue" + }, + "repository": { + "id": 84822, + "node_id": "MDEwOlJlcG9zaXRvcnk4NDgyMg==", + "name": "js-beautify", + "full_name": "beautify-web/js-beautify", + "private": false, + "owner": { + "login": "beautify-web", + "id": 6538164, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjY1MzgxNjQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/6538164?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/beautify-web", + "html_url": "https://github.com/beautify-web", + "followers_url": "https://api.github.com/users/beautify-web/followers", + "following_url": "https://api.github.com/users/beautify-web/following{/other_user}", + "gists_url": "https://api.github.com/users/beautify-web/gists{/gist_id}", + "starred_url": "https://api.github.com/users/beautify-web/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/beautify-web/subscriptions", + "organizations_url": "https://api.github.com/users/beautify-web/orgs", + "repos_url": "https://api.github.com/users/beautify-web/repos", + "events_url": "https://api.github.com/users/beautify-web/events{/privacy}", + "received_events_url": "https://api.github.com/users/beautify-web/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/beautify-web/js-beautify", + "description": "Beautifier for javascript ", + "fork": false, + "url": "https://api.github.com/repos/beautify-web/js-beautify", + "forks_url": "https://api.github.com/repos/beautify-web/js-beautify/forks", + "keys_url": "https://api.github.com/repos/beautify-web/js-beautify/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/beautify-web/js-beautify/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/beautify-web/js-beautify/teams", + "hooks_url": "https://api.github.com/repos/beautify-web/js-beautify/hooks", + "issue_events_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/events{/number}", + "events_url": "https://api.github.com/repos/beautify-web/js-beautify/events", + "assignees_url": "https://api.github.com/repos/beautify-web/js-beautify/assignees{/user}", + "branches_url": "https://api.github.com/repos/beautify-web/js-beautify/branches{/branch}", + "tags_url": "https://api.github.com/repos/beautify-web/js-beautify/tags", + "blobs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/beautify-web/js-beautify/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/beautify-web/js-beautify/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/beautify-web/js-beautify/statuses/{sha}", + "languages_url": "https://api.github.com/repos/beautify-web/js-beautify/languages", + "stargazers_url": "https://api.github.com/repos/beautify-web/js-beautify/stargazers", + "contributors_url": "https://api.github.com/repos/beautify-web/js-beautify/contributors", + "subscribers_url": "https://api.github.com/repos/beautify-web/js-beautify/subscribers", + "subscription_url": "https://api.github.com/repos/beautify-web/js-beautify/subscription", + "commits_url": "https://api.github.com/repos/beautify-web/js-beautify/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/beautify-web/js-beautify/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/beautify-web/js-beautify/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/beautify-web/js-beautify/contents/{+path}", + "compare_url": "https://api.github.com/repos/beautify-web/js-beautify/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/beautify-web/js-beautify/merges", + "archive_url": "https://api.github.com/repos/beautify-web/js-beautify/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/beautify-web/js-beautify/downloads", + "issues_url": "https://api.github.com/repos/beautify-web/js-beautify/issues{/number}", + "pulls_url": "https://api.github.com/repos/beautify-web/js-beautify/pulls{/number}", + "milestones_url": "https://api.github.com/repos/beautify-web/js-beautify/milestones{/number}", + "notifications_url": "https://api.github.com/repos/beautify-web/js-beautify/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/beautify-web/js-beautify/labels{/name}", + "releases_url": "https://api.github.com/repos/beautify-web/js-beautify/releases{/id}", + "deployments_url": "https://api.github.com/repos/beautify-web/js-beautify/deployments" + }, + "url": "https://api.github.com/notifications/threads/578697435", + "subscription_url": "https://api.github.com/notifications/threads/578697435/subscription" + }, + { + "id": "575865509", + "unread": false, + "reason": "author", + "updated_at": "2019-09-06T23:17:37Z", + "last_read_at": "2019-09-06T03:05:15Z", + "subject": { + "title": "Add WireMock testing facility", + "url": "https://api.github.com/repos/github-api/github-api/pulls/537", + "latest_comment_url": "https://api.github.com/repos/github-api/github-api/pulls/537", + "type": "PullRequest" + }, + "repository": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments" + }, + "url": "https://api.github.com/notifications/threads/575865509", + "subscription_url": "https://api.github.com/notifications/threads/575865509/subscription" + }, + { + "id": "579056746", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-06T01:39:49Z", + "last_read_at": "2019-09-09T07:02:53Z", + "subject": { + "title": "[CSDOCS-110] Refactor code, add animation to collapsible menus and fix general stuff", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/58", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/58", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/579056746", + "subscription_url": "https://api.github.com/notifications/threads/579056746/subscription" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/__files/notifications-f2524684-5156-4db6-97fa-10dedac5f779.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/__files/notifications-f2524684-5156-4db6-97fa-10dedac5f779.json new file mode 100644 index 0000000000..f5513eae55 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/__files/notifications-f2524684-5156-4db6-97fa-10dedac5f779.json @@ -0,0 +1,4102 @@ +[ + { + "id": "600291855", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-14T19:33:42Z", + "last_read_at": "2019-10-09T01:36:02Z", + "subject": { + "title": "Try and debug Windows file locking", + "url": "https://api.github.com/repos/jenkins-infra/pipeline-library/pulls/116", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/pulls/116", + "type": "PullRequest" + }, + "repository": { + "id": 65505983, + "node_id": "MDEwOlJlcG9zaXRvcnk2NTUwNTk4Mw==", + "name": "pipeline-library", + "full_name": "jenkins-infra/pipeline-library", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/pipeline-library", + "description": "Collection of custom steps and variables for our Jenkins instance(s)", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/pipeline-library", + "forks_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/deployments" + }, + "url": "https://api.github.com/notifications/threads/600291855", + "subscription_url": "https://api.github.com/notifications/threads/600291855/subscription" + }, + { + "id": "601253233", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-14T19:26:50Z", + "last_read_at": "2019-10-18T14:46:46Z", + "subject": { + "title": "[NGPIPELINE-686] Adding generic information to non-pipeline builds", + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/pulls/23", + "latest_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/pulls/23", + "type": "PullRequest" + }, + "repository": { + "id": 200867838, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDA4Njc4Mzg=", + "name": "cloudbees-pipeline-analytics-plugin", + "full_name": "cloudbees/cloudbees-pipeline-analytics-plugin", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/cloudbees-pipeline-analytics-plugin", + "description": "PoC Plugin for https://cloudbees.atlassian.net/browse/NGPIPELINE-610", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin", + "forks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/forks", + "keys_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/events", + "assignees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/merges", + "archive_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/601253233", + "subscription_url": "https://api.github.com/notifications/threads/601253233/subscription" + }, + { + "id": "605066051", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-14T19:24:39Z", + "last_read_at": "2019-10-18T20:02:08Z", + "subject": { + "title": "go to the correct link", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/123", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/123", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/605066051", + "subscription_url": "https://api.github.com/notifications/threads/605066051/subscription" + }, + { + "id": "604794780", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-14T19:15:27Z", + "last_read_at": "2019-10-18T20:02:08Z", + "subject": { + "title": "CSDOCS-212 - Fix navigation issues and clean up some content edge cases", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/120", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/120", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/604794780", + "subscription_url": "https://api.github.com/notifications/threads/604794780/subscription" + }, + { + "id": "604707140", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-14T18:19:39Z", + "last_read_at": "2019-10-16T02:10:52Z", + "subject": { + "title": "chore(deps-dev): bump husky from 3.0.8 to 3.0.9", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/157", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/157", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/604707140", + "subscription_url": "https://api.github.com/notifications/threads/604707140/subscription" + }, + { + "id": "604707924", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-14T18:19:23Z", + "last_read_at": "2019-10-16T02:10:52Z", + "subject": { + "title": "chore(deps-dev): bump webpack from 4.41.0 to 4.41.1", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/158", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/158", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/604707924", + "subscription_url": "https://api.github.com/notifications/threads/604707924/subscription" + }, + { + "id": "603271035", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-10-14T16:15:06Z", + "last_read_at": "2019-10-14T17:54:38Z", + "subject": { + "title": "Add various methods to whitelist", + "url": "https://api.github.com/repos/jenkinsci/script-security-plugin/pulls/273", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/issues/comments/541773334", + "type": "PullRequest" + }, + "repository": { + "id": 17301604, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzMwMTYwNA==", + "name": "script-security-plugin", + "full_name": "jenkinsci/script-security-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/script-security-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/script-security-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/603271035", + "subscription_url": "https://api.github.com/notifications/threads/603271035/subscription" + }, + { + "id": "604491786", + "unread": true, + "reason": "review_requested", + "updated_at": "2019-10-14T11:43:36Z", + "last_read_at": null, + "subject": { + "title": "add or delete dot & make some words case conversion", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2562", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2562", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/604491786", + "subscription_url": "https://api.github.com/notifications/threads/604491786/subscription" + }, + { + "id": "603521590", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-10-14T11:01:12Z", + "last_read_at": "2019-10-14T17:54:38Z", + "subject": { + "title": "Changing messages", + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/pulls/23", + "latest_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/pulls/comments/334427549", + "type": "PullRequest" + }, + "repository": { + "id": 193577985, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTM1Nzc5ODU=", + "name": "cloudbees-pipeline-rules-interception-plugin", + "full_name": "cloudbees/cloudbees-pipeline-rules-interception-plugin", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/cloudbees-pipeline-rules-interception-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin", + "forks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/forks", + "keys_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/events", + "assignees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/merges", + "archive_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/603521590", + "subscription_url": "https://api.github.com/notifications/threads/603521590/subscription" + }, + { + "id": "604812915", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-14T10:12:07Z", + "last_read_at": "2019-10-18T20:02:08Z", + "subject": { + "title": "CSDOCS-153 - Update Auth0 to use the v2/logout endpoint", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/122", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/122", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/604812915", + "subscription_url": "https://api.github.com/notifications/threads/604812915/subscription" + }, + { + "id": "604838974", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-14T10:15:26Z", + "last_read_at": null, + "subject": { + "title": "JENKINS-48431 Support both lightweight checkout AND build parameters", + "url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls/329", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls/329", + "type": "PullRequest" + }, + "repository": { + "id": 55543225, + "node_id": "MDEwOlJlcG9zaXRvcnk1NTU0MzIyNQ==", + "name": "workflow-cps-plugin", + "full_name": "jenkinsci/workflow-cps-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/workflow-cps-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/604838974", + "subscription_url": "https://api.github.com/notifications/threads/604838974/subscription" + }, + { + "id": "604767532", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-14T15:41:42Z", + "last_read_at": "2019-10-14T15:40:25Z", + "subject": { + "title": "Can't beautify code", + "url": "https://api.github.com/repos/beautify-web/js-beautify/issues/1720", + "latest_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/comments/541754814", + "type": "Issue" + }, + "repository": { + "id": 84822, + "node_id": "MDEwOlJlcG9zaXRvcnk4NDgyMg==", + "name": "js-beautify", + "full_name": "beautify-web/js-beautify", + "private": false, + "owner": { + "login": "beautify-web", + "id": 6538164, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjY1MzgxNjQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/6538164?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/beautify-web", + "html_url": "https://github.com/beautify-web", + "followers_url": "https://api.github.com/users/beautify-web/followers", + "following_url": "https://api.github.com/users/beautify-web/following{/other_user}", + "gists_url": "https://api.github.com/users/beautify-web/gists{/gist_id}", + "starred_url": "https://api.github.com/users/beautify-web/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/beautify-web/subscriptions", + "organizations_url": "https://api.github.com/users/beautify-web/orgs", + "repos_url": "https://api.github.com/users/beautify-web/repos", + "events_url": "https://api.github.com/users/beautify-web/events{/privacy}", + "received_events_url": "https://api.github.com/users/beautify-web/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/beautify-web/js-beautify", + "description": "Beautifier for javascript ", + "fork": false, + "url": "https://api.github.com/repos/beautify-web/js-beautify", + "forks_url": "https://api.github.com/repos/beautify-web/js-beautify/forks", + "keys_url": "https://api.github.com/repos/beautify-web/js-beautify/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/beautify-web/js-beautify/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/beautify-web/js-beautify/teams", + "hooks_url": "https://api.github.com/repos/beautify-web/js-beautify/hooks", + "issue_events_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/events{/number}", + "events_url": "https://api.github.com/repos/beautify-web/js-beautify/events", + "assignees_url": "https://api.github.com/repos/beautify-web/js-beautify/assignees{/user}", + "branches_url": "https://api.github.com/repos/beautify-web/js-beautify/branches{/branch}", + "tags_url": "https://api.github.com/repos/beautify-web/js-beautify/tags", + "blobs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/beautify-web/js-beautify/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/beautify-web/js-beautify/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/beautify-web/js-beautify/statuses/{sha}", + "languages_url": "https://api.github.com/repos/beautify-web/js-beautify/languages", + "stargazers_url": "https://api.github.com/repos/beautify-web/js-beautify/stargazers", + "contributors_url": "https://api.github.com/repos/beautify-web/js-beautify/contributors", + "subscribers_url": "https://api.github.com/repos/beautify-web/js-beautify/subscribers", + "subscription_url": "https://api.github.com/repos/beautify-web/js-beautify/subscription", + "commits_url": "https://api.github.com/repos/beautify-web/js-beautify/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/beautify-web/js-beautify/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/beautify-web/js-beautify/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/beautify-web/js-beautify/contents/{+path}", + "compare_url": "https://api.github.com/repos/beautify-web/js-beautify/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/beautify-web/js-beautify/merges", + "archive_url": "https://api.github.com/repos/beautify-web/js-beautify/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/beautify-web/js-beautify/downloads", + "issues_url": "https://api.github.com/repos/beautify-web/js-beautify/issues{/number}", + "pulls_url": "https://api.github.com/repos/beautify-web/js-beautify/pulls{/number}", + "milestones_url": "https://api.github.com/repos/beautify-web/js-beautify/milestones{/number}", + "notifications_url": "https://api.github.com/repos/beautify-web/js-beautify/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/beautify-web/js-beautify/labels{/name}", + "releases_url": "https://api.github.com/repos/beautify-web/js-beautify/releases{/id}", + "deployments_url": "https://api.github.com/repos/beautify-web/js-beautify/deployments" + }, + "url": "https://api.github.com/notifications/threads/604767532", + "subscription_url": "https://api.github.com/notifications/threads/604767532/subscription" + }, + { + "id": "591098143", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-14T08:03:34Z", + "last_read_at": "2019-09-29T16:07:22Z", + "subject": { + "title": "Stop trying to deleteDir in buildPlugin", + "url": "https://api.github.com/repos/jenkins-infra/pipeline-library/pulls/115", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/pulls/115", + "type": "PullRequest" + }, + "repository": { + "id": 65505983, + "node_id": "MDEwOlJlcG9zaXRvcnk2NTUwNTk4Mw==", + "name": "pipeline-library", + "full_name": "jenkins-infra/pipeline-library", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/pipeline-library", + "description": "Collection of custom steps and variables for our Jenkins instance(s)", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/pipeline-library", + "forks_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/deployments" + }, + "url": "https://api.github.com/notifications/threads/591098143", + "subscription_url": "https://api.github.com/notifications/threads/591098143/subscription" + }, + { + "id": "604705955", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-14T06:34:41Z", + "last_read_at": "2019-10-16T02:10:52Z", + "subject": { + "title": "chore(deps-dev): bump @cloudbees/honeyui from 1.2.1 to 1.3.0", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/156", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/156", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/604705955", + "subscription_url": "https://api.github.com/notifications/threads/604705955/subscription" + }, + { + "id": "604617528", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-14T02:05:29Z", + "last_read_at": "2019-10-14T15:37:25Z", + "subject": { + "title": "Make option to not outdent closing tags or other closing attributes.", + "url": "https://api.github.com/repos/beautify-web/js-beautify/issues/1719", + "latest_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/1719", + "type": "Issue" + }, + "repository": { + "id": 84822, + "node_id": "MDEwOlJlcG9zaXRvcnk4NDgyMg==", + "name": "js-beautify", + "full_name": "beautify-web/js-beautify", + "private": false, + "owner": { + "login": "beautify-web", + "id": 6538164, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjY1MzgxNjQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/6538164?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/beautify-web", + "html_url": "https://github.com/beautify-web", + "followers_url": "https://api.github.com/users/beautify-web/followers", + "following_url": "https://api.github.com/users/beautify-web/following{/other_user}", + "gists_url": "https://api.github.com/users/beautify-web/gists{/gist_id}", + "starred_url": "https://api.github.com/users/beautify-web/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/beautify-web/subscriptions", + "organizations_url": "https://api.github.com/users/beautify-web/orgs", + "repos_url": "https://api.github.com/users/beautify-web/repos", + "events_url": "https://api.github.com/users/beautify-web/events{/privacy}", + "received_events_url": "https://api.github.com/users/beautify-web/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/beautify-web/js-beautify", + "description": "Beautifier for javascript ", + "fork": false, + "url": "https://api.github.com/repos/beautify-web/js-beautify", + "forks_url": "https://api.github.com/repos/beautify-web/js-beautify/forks", + "keys_url": "https://api.github.com/repos/beautify-web/js-beautify/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/beautify-web/js-beautify/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/beautify-web/js-beautify/teams", + "hooks_url": "https://api.github.com/repos/beautify-web/js-beautify/hooks", + "issue_events_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/events{/number}", + "events_url": "https://api.github.com/repos/beautify-web/js-beautify/events", + "assignees_url": "https://api.github.com/repos/beautify-web/js-beautify/assignees{/user}", + "branches_url": "https://api.github.com/repos/beautify-web/js-beautify/branches{/branch}", + "tags_url": "https://api.github.com/repos/beautify-web/js-beautify/tags", + "blobs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/beautify-web/js-beautify/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/beautify-web/js-beautify/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/beautify-web/js-beautify/statuses/{sha}", + "languages_url": "https://api.github.com/repos/beautify-web/js-beautify/languages", + "stargazers_url": "https://api.github.com/repos/beautify-web/js-beautify/stargazers", + "contributors_url": "https://api.github.com/repos/beautify-web/js-beautify/contributors", + "subscribers_url": "https://api.github.com/repos/beautify-web/js-beautify/subscribers", + "subscription_url": "https://api.github.com/repos/beautify-web/js-beautify/subscription", + "commits_url": "https://api.github.com/repos/beautify-web/js-beautify/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/beautify-web/js-beautify/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/beautify-web/js-beautify/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/beautify-web/js-beautify/contents/{+path}", + "compare_url": "https://api.github.com/repos/beautify-web/js-beautify/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/beautify-web/js-beautify/merges", + "archive_url": "https://api.github.com/repos/beautify-web/js-beautify/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/beautify-web/js-beautify/downloads", + "issues_url": "https://api.github.com/repos/beautify-web/js-beautify/issues{/number}", + "pulls_url": "https://api.github.com/repos/beautify-web/js-beautify/pulls{/number}", + "milestones_url": "https://api.github.com/repos/beautify-web/js-beautify/milestones{/number}", + "notifications_url": "https://api.github.com/repos/beautify-web/js-beautify/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/beautify-web/js-beautify/labels{/name}", + "releases_url": "https://api.github.com/repos/beautify-web/js-beautify/releases{/id}", + "deployments_url": "https://api.github.com/repos/beautify-web/js-beautify/deployments" + }, + "url": "https://api.github.com/notifications/threads/604617528", + "subscription_url": "https://api.github.com/notifications/threads/604617528/subscription" + }, + { + "id": "601480285", + "unread": false, + "reason": "mention", + "updated_at": "2019-10-13T23:45:00Z", + "last_read_at": "2019-10-14T15:45:20Z", + "subject": { + "title": "Any plan for new releases?", + "url": "https://api.github.com/repos/github-api/github-api/issues/569", + "latest_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments/541471157", + "type": "Issue" + }, + "repository": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments" + }, + "url": "https://api.github.com/notifications/threads/601480285", + "subscription_url": "https://api.github.com/notifications/threads/601480285/subscription" + }, + { + "id": "187707238", + "unread": false, + "reason": "mention", + "updated_at": "2019-10-13T23:44:32Z", + "last_read_at": "2019-10-14T15:44:30Z", + "subject": { + "title": "SPOF check", + "url": "https://api.github.com/repos/github-api/github-api/issues/321", + "latest_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments/541471110", + "type": "Issue" + }, + "repository": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments" + }, + "url": "https://api.github.com/notifications/threads/187707238", + "subscription_url": "https://api.github.com/notifications/threads/187707238/subscription" + }, + { + "id": "604537422", + "unread": true, + "reason": "review_requested", + "updated_at": "2019-10-13T22:19:09Z", + "last_read_at": "2019-10-13T20:51:27Z", + "subject": { + "title": "Fix misprint", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2564", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2564", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/604537422", + "subscription_url": "https://api.github.com/notifications/threads/604537422/subscription" + }, + { + "id": "604291025", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-10-13T19:01:47Z", + "last_read_at": "2019-10-13T20:51:27Z", + "subject": { + "title": "Add Clown Jenkins Logo", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2561", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2561", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/604291025", + "subscription_url": "https://api.github.com/notifications/threads/604291025/subscription" + }, + { + "id": "604512303", + "unread": true, + "reason": "review_requested", + "updated_at": "2019-10-13T18:58:03Z", + "last_read_at": null, + "subject": { + "title": "Haml is a funny thing", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2563", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2563", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/604512303", + "subscription_url": "https://api.github.com/notifications/threads/604512303/subscription" + }, + { + "id": "604265513", + "unread": true, + "reason": "review_requested", + "updated_at": "2019-10-13T18:41:16Z", + "last_read_at": null, + "subject": { + "title": "Add a direct link to the .ics URL", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2560", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments/541445540", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/604265513", + "subscription_url": "https://api.github.com/notifications/threads/604265513/subscription" + }, + { + "id": "604443669", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-13T13:56:05Z", + "last_read_at": "2019-10-14T15:38:49Z", + "subject": { + "title": "no new line after self closing tag", + "url": "https://api.github.com/repos/beautify-web/js-beautify/issues/1718", + "latest_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/1718", + "type": "Issue" + }, + "repository": { + "id": 84822, + "node_id": "MDEwOlJlcG9zaXRvcnk4NDgyMg==", + "name": "js-beautify", + "full_name": "beautify-web/js-beautify", + "private": false, + "owner": { + "login": "beautify-web", + "id": 6538164, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjY1MzgxNjQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/6538164?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/beautify-web", + "html_url": "https://github.com/beautify-web", + "followers_url": "https://api.github.com/users/beautify-web/followers", + "following_url": "https://api.github.com/users/beautify-web/following{/other_user}", + "gists_url": "https://api.github.com/users/beautify-web/gists{/gist_id}", + "starred_url": "https://api.github.com/users/beautify-web/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/beautify-web/subscriptions", + "organizations_url": "https://api.github.com/users/beautify-web/orgs", + "repos_url": "https://api.github.com/users/beautify-web/repos", + "events_url": "https://api.github.com/users/beautify-web/events{/privacy}", + "received_events_url": "https://api.github.com/users/beautify-web/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/beautify-web/js-beautify", + "description": "Beautifier for javascript ", + "fork": false, + "url": "https://api.github.com/repos/beautify-web/js-beautify", + "forks_url": "https://api.github.com/repos/beautify-web/js-beautify/forks", + "keys_url": "https://api.github.com/repos/beautify-web/js-beautify/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/beautify-web/js-beautify/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/beautify-web/js-beautify/teams", + "hooks_url": "https://api.github.com/repos/beautify-web/js-beautify/hooks", + "issue_events_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/events{/number}", + "events_url": "https://api.github.com/repos/beautify-web/js-beautify/events", + "assignees_url": "https://api.github.com/repos/beautify-web/js-beautify/assignees{/user}", + "branches_url": "https://api.github.com/repos/beautify-web/js-beautify/branches{/branch}", + "tags_url": "https://api.github.com/repos/beautify-web/js-beautify/tags", + "blobs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/beautify-web/js-beautify/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/beautify-web/js-beautify/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/beautify-web/js-beautify/statuses/{sha}", + "languages_url": "https://api.github.com/repos/beautify-web/js-beautify/languages", + "stargazers_url": "https://api.github.com/repos/beautify-web/js-beautify/stargazers", + "contributors_url": "https://api.github.com/repos/beautify-web/js-beautify/contributors", + "subscribers_url": "https://api.github.com/repos/beautify-web/js-beautify/subscribers", + "subscription_url": "https://api.github.com/repos/beautify-web/js-beautify/subscription", + "commits_url": "https://api.github.com/repos/beautify-web/js-beautify/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/beautify-web/js-beautify/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/beautify-web/js-beautify/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/beautify-web/js-beautify/contents/{+path}", + "compare_url": "https://api.github.com/repos/beautify-web/js-beautify/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/beautify-web/js-beautify/merges", + "archive_url": "https://api.github.com/repos/beautify-web/js-beautify/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/beautify-web/js-beautify/downloads", + "issues_url": "https://api.github.com/repos/beautify-web/js-beautify/issues{/number}", + "pulls_url": "https://api.github.com/repos/beautify-web/js-beautify/pulls{/number}", + "milestones_url": "https://api.github.com/repos/beautify-web/js-beautify/milestones{/number}", + "notifications_url": "https://api.github.com/repos/beautify-web/js-beautify/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/beautify-web/js-beautify/labels{/name}", + "releases_url": "https://api.github.com/repos/beautify-web/js-beautify/releases{/id}", + "deployments_url": "https://api.github.com/repos/beautify-web/js-beautify/deployments" + }, + "url": "https://api.github.com/notifications/threads/604443669", + "subscription_url": "https://api.github.com/notifications/threads/604443669/subscription" + }, + { + "id": "604410378", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-13T11:24:22Z", + "last_read_at": null, + "subject": { + "title": "JENKINS-59762 Replace static initialization block to allow for CpsThread mocking", + "url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls/328", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls/328", + "type": "PullRequest" + }, + "repository": { + "id": 55543225, + "node_id": "MDEwOlJlcG9zaXRvcnk1NTU0MzIyNQ==", + "name": "workflow-cps-plugin", + "full_name": "jenkinsci/workflow-cps-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/workflow-cps-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/604410378", + "subscription_url": "https://api.github.com/notifications/threads/604410378/subscription" + }, + { + "id": "602448769", + "unread": false, + "reason": "state_change", + "updated_at": "2019-10-13T11:22:31Z", + "last_read_at": "2019-10-14T15:37:13Z", + "subject": { + "title": "Can anyone help? Thanks a lot.", + "url": "https://api.github.com/repos/beautify-web/js-beautify/issues/1715", + "latest_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/comments/541409851", + "type": "Issue" + }, + "repository": { + "id": 84822, + "node_id": "MDEwOlJlcG9zaXRvcnk4NDgyMg==", + "name": "js-beautify", + "full_name": "beautify-web/js-beautify", + "private": false, + "owner": { + "login": "beautify-web", + "id": 6538164, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjY1MzgxNjQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/6538164?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/beautify-web", + "html_url": "https://github.com/beautify-web", + "followers_url": "https://api.github.com/users/beautify-web/followers", + "following_url": "https://api.github.com/users/beautify-web/following{/other_user}", + "gists_url": "https://api.github.com/users/beautify-web/gists{/gist_id}", + "starred_url": "https://api.github.com/users/beautify-web/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/beautify-web/subscriptions", + "organizations_url": "https://api.github.com/users/beautify-web/orgs", + "repos_url": "https://api.github.com/users/beautify-web/repos", + "events_url": "https://api.github.com/users/beautify-web/events{/privacy}", + "received_events_url": "https://api.github.com/users/beautify-web/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/beautify-web/js-beautify", + "description": "Beautifier for javascript ", + "fork": false, + "url": "https://api.github.com/repos/beautify-web/js-beautify", + "forks_url": "https://api.github.com/repos/beautify-web/js-beautify/forks", + "keys_url": "https://api.github.com/repos/beautify-web/js-beautify/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/beautify-web/js-beautify/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/beautify-web/js-beautify/teams", + "hooks_url": "https://api.github.com/repos/beautify-web/js-beautify/hooks", + "issue_events_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/events{/number}", + "events_url": "https://api.github.com/repos/beautify-web/js-beautify/events", + "assignees_url": "https://api.github.com/repos/beautify-web/js-beautify/assignees{/user}", + "branches_url": "https://api.github.com/repos/beautify-web/js-beautify/branches{/branch}", + "tags_url": "https://api.github.com/repos/beautify-web/js-beautify/tags", + "blobs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/beautify-web/js-beautify/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/beautify-web/js-beautify/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/beautify-web/js-beautify/statuses/{sha}", + "languages_url": "https://api.github.com/repos/beautify-web/js-beautify/languages", + "stargazers_url": "https://api.github.com/repos/beautify-web/js-beautify/stargazers", + "contributors_url": "https://api.github.com/repos/beautify-web/js-beautify/contributors", + "subscribers_url": "https://api.github.com/repos/beautify-web/js-beautify/subscribers", + "subscription_url": "https://api.github.com/repos/beautify-web/js-beautify/subscription", + "commits_url": "https://api.github.com/repos/beautify-web/js-beautify/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/beautify-web/js-beautify/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/beautify-web/js-beautify/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/beautify-web/js-beautify/contents/{+path}", + "compare_url": "https://api.github.com/repos/beautify-web/js-beautify/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/beautify-web/js-beautify/merges", + "archive_url": "https://api.github.com/repos/beautify-web/js-beautify/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/beautify-web/js-beautify/downloads", + "issues_url": "https://api.github.com/repos/beautify-web/js-beautify/issues{/number}", + "pulls_url": "https://api.github.com/repos/beautify-web/js-beautify/pulls{/number}", + "milestones_url": "https://api.github.com/repos/beautify-web/js-beautify/milestones{/number}", + "notifications_url": "https://api.github.com/repos/beautify-web/js-beautify/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/beautify-web/js-beautify/labels{/name}", + "releases_url": "https://api.github.com/repos/beautify-web/js-beautify/releases{/id}", + "deployments_url": "https://api.github.com/repos/beautify-web/js-beautify/deployments" + }, + "url": "https://api.github.com/notifications/threads/602448769", + "subscription_url": "https://api.github.com/notifications/threads/602448769/subscription" + }, + { + "id": "578284678", + "unread": false, + "reason": "comment", + "updated_at": "2019-10-13T11:11:40Z", + "last_read_at": "2019-10-13T19:02:05Z", + "subject": { + "title": "Response code -1 and response message null when making github API calls", + "url": "https://api.github.com/repos/github-api/github-api/issues/539", + "latest_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments/541409177", + "type": "Issue" + }, + "repository": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments" + }, + "url": "https://api.github.com/notifications/threads/578284678", + "subscription_url": "https://api.github.com/notifications/threads/578284678/subscription" + }, + { + "id": "602336403", + "unread": true, + "reason": "review_requested", + "updated_at": "2019-10-12T20:33:04Z", + "last_read_at": null, + "subject": { + "title": "Marking JEP-305 as Final", + "url": "https://api.github.com/repos/jenkinsci/jep/pulls/248", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/jep/pulls/248", + "type": "PullRequest" + }, + "repository": { + "id": 103302223, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDMzMDIyMjM=", + "name": "jep", + "full_name": "jenkinsci/jep", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jep", + "description": "Jenkins Enhancement Proposals", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jep", + "forks_url": "https://api.github.com/repos/jenkinsci/jep/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jep/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jep/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jep/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jep/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jep/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jep/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jep/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jep/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jep/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jep/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jep/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jep/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jep/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jep/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jep/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jep/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jep/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jep/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jep/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jep/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jep/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jep/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jep/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jep/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jep/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jep/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jep/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jep/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jep/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jep/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jep/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jep/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jep/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jep/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jep/deployments" + }, + "url": "https://api.github.com/notifications/threads/602336403", + "subscription_url": "https://api.github.com/notifications/threads/602336403/subscription" + }, + { + "id": "604161340", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-12T13:00:15Z", + "last_read_at": null, + "subject": { + "title": "Accommodate plugins defining a custom changelist.format", + "url": "https://api.github.com/repos/jenkins-infra/community-functions/pulls/22", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/community-functions/issues/comments/541322837", + "type": "PullRequest" + }, + "repository": { + "id": 110898753, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTA4OTg3NTM=", + "name": "community-functions", + "full_name": "jenkins-infra/community-functions", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/community-functions", + "description": "Azure Functions to implement community automation for the Jenkins project", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/community-functions", + "forks_url": "https://api.github.com/repos/jenkins-infra/community-functions/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/community-functions/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/community-functions/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/community-functions/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/community-functions/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/community-functions/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/community-functions/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/community-functions/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/community-functions/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/community-functions/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/community-functions/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/community-functions/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/community-functions/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/community-functions/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/community-functions/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/community-functions/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/community-functions/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/community-functions/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/community-functions/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/community-functions/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/community-functions/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/community-functions/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/community-functions/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/community-functions/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/community-functions/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/community-functions/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/community-functions/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/community-functions/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/community-functions/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/community-functions/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/community-functions/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/community-functions/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/community-functions/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/community-functions/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/community-functions/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/community-functions/deployments" + }, + "url": "https://api.github.com/notifications/threads/604161340", + "subscription_url": "https://api.github.com/notifications/threads/604161340/subscription" + }, + { + "id": "601332056", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-12T12:13:07Z", + "last_read_at": "2019-10-09T01:35:42Z", + "subject": { + "title": "Speed up deploy", + "url": "https://api.github.com/repos/jenkins-infra/pipeline-library/pulls/117", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/issues/comments/541319308", + "type": "PullRequest" + }, + "repository": { + "id": 65505983, + "node_id": "MDEwOlJlcG9zaXRvcnk2NTUwNTk4Mw==", + "name": "pipeline-library", + "full_name": "jenkins-infra/pipeline-library", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/pipeline-library", + "description": "Collection of custom steps and variables for our Jenkins instance(s)", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/pipeline-library", + "forks_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/pipeline-library/deployments" + }, + "url": "https://api.github.com/notifications/threads/601332056", + "subscription_url": "https://api.github.com/notifications/threads/601332056/subscription" + }, + { + "id": "603379274", + "unread": true, + "reason": "review_requested", + "updated_at": "2019-10-12T10:38:07Z", + "last_read_at": null, + "subject": { + "title": "Add changelog for 2.200", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2556", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2556", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/603379274", + "subscription_url": "https://api.github.com/notifications/threads/603379274/subscription" + }, + { + "id": "601312324", + "unread": true, + "reason": "review_requested", + "updated_at": "2019-10-12T05:45:38Z", + "last_read_at": "2019-10-09T04:08:07Z", + "subject": { + "title": "[WEBSITE-206] Move guest post disclaimer to the front matter", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2551", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2551", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/601312324", + "subscription_url": "https://api.github.com/notifications/threads/601312324/subscription" + }, + { + "id": "604012272", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-12T02:07:56Z", + "last_read_at": null, + "subject": { + "title": "CSDOCS-210 - Refactored admin screen + extra", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/118", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments/541273044", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/604012272", + "subscription_url": "https://api.github.com/notifications/threads/604012272/subscription" + }, + { + "id": "602991705", + "unread": true, + "reason": "review_requested", + "updated_at": "2019-10-11T20:58:43Z", + "last_read_at": null, + "subject": { + "title": "Update default body styles", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2555", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments/541221880", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/602991705", + "subscription_url": "https://api.github.com/notifications/threads/602991705/subscription" + }, + { + "id": "603734573", + "unread": true, + "reason": "review_requested", + "updated_at": "2019-10-11T20:52:15Z", + "last_read_at": null, + "subject": { + "title": "Fix some invalid Github profile links in blog posts (Hacktoberfest 2019)", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2557", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/comments/334136678", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/603734573", + "subscription_url": "https://api.github.com/notifications/threads/603734573/subscription" + }, + { + "id": "602974476", + "unread": true, + "reason": "review_requested", + "updated_at": "2019-10-11T19:17:52Z", + "last_read_at": null, + "subject": { + "title": "Fix invalid URL in 2.73.1 changelog (Hacktoberfest 2019)", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2554", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2554", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/602974476", + "subscription_url": "https://api.github.com/notifications/threads/602974476/subscription" + }, + { + "id": "603854089", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-11T20:13:11Z", + "last_read_at": "2019-10-11T20:11:31Z", + "subject": { + "title": "GitHub workflow: add JDK 13 to build matrix", + "url": "https://api.github.com/repos/github-api/github-api/pulls/572", + "latest_comment_url": null, + "type": "PullRequest" + }, + "repository": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments" + }, + "url": "https://api.github.com/notifications/threads/603854089", + "subscription_url": "https://api.github.com/notifications/threads/603854089/subscription" + }, + { + "id": "603758264", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-11T17:52:02Z", + "last_read_at": "2019-10-13T00:55:27Z", + "subject": { + "title": "v0.8.0", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/releases/20647776", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases/20647776", + "type": "Release" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/603758264", + "subscription_url": "https://api.github.com/notifications/threads/603758264/subscription" + }, + { + "id": "603301327", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-11T17:26:28Z", + "last_read_at": "2019-10-13T00:55:27Z", + "subject": { + "title": "chore(deps-dev): bump @babel/core from 7.6.3 to 7.6.4", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/154", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/154", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/603301327", + "subscription_url": "https://api.github.com/notifications/threads/603301327/subscription" + }, + { + "id": "603610339", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-11T16:34:24Z", + "last_read_at": "2019-10-13T00:55:27Z", + "subject": { + "title": "Nav and Tabs", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/155", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/comments/334075886", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/603610339", + "subscription_url": "https://api.github.com/notifications/threads/603610339/subscription" + }, + { + "id": "475544168", + "unread": true, + "reason": "mention", + "updated_at": "2019-10-11T16:55:59Z", + "last_read_at": "2019-09-12T01:21:26Z", + "subject": { + "title": "[JENKINS-49259] Support team dimension in GitHub", + "url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/pulls/214", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues/comments/541142763", + "type": "PullRequest" + }, + "repository": { + "id": 43903637, + "node_id": "MDEwOlJlcG9zaXRvcnk0MzkwMzYzNw==", + "name": "github-branch-source-plugin", + "full_name": "jenkinsci/github-branch-source-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/github-branch-source-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/475544168", + "subscription_url": "https://api.github.com/notifications/threads/475544168/subscription" + }, + { + "id": "603719448", + "unread": false, + "reason": "mention", + "updated_at": "2019-10-11T16:44:51Z", + "last_read_at": "2019-10-11T17:09:22Z", + "subject": { + "title": "JENKINS-58313 Add source commit and branch name", + "url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/pulls/250", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/pulls/250", + "type": "PullRequest" + }, + "repository": { + "id": 43903637, + "node_id": "MDEwOlJlcG9zaXRvcnk0MzkwMzYzNw==", + "name": "github-branch-source-plugin", + "full_name": "jenkinsci/github-branch-source-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/github-branch-source-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/603719448", + "subscription_url": "https://api.github.com/notifications/threads/603719448/subscription" + }, + { + "id": "602925060", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-11T16:35:14Z", + "last_read_at": "2019-10-13T00:55:27Z", + "subject": { + "title": "Popover improvements", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/153", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/153", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/602925060", + "subscription_url": "https://api.github.com/notifications/threads/602925060/subscription" + }, + { + "id": "599377600", + "unread": true, + "reason": "review_requested", + "updated_at": "2019-10-11T12:58:59Z", + "last_read_at": null, + "subject": { + "title": "[WEBSITE-654] - Move the plugin documentation hosting info from Wiki to jenkins.io", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2544", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2544", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/599377600", + "subscription_url": "https://api.github.com/notifications/threads/599377600/subscription" + }, + { + "id": "603516966", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-11T12:50:04Z", + "last_read_at": null, + "subject": { + "title": "[CSDOCS-183] Add downloads page and refactor search modal functionality", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/116", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/116", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/603516966", + "subscription_url": "https://api.github.com/notifications/threads/603516966/subscription" + }, + { + "id": "603500160", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-11T11:52:11Z", + "last_read_at": "2019-10-11T17:13:35Z", + "subject": { + "title": "add a GitTest file", + "url": "https://api.github.com/repos/github-api/github-api/pulls/571", + "latest_comment_url": "https://api.github.com/repos/github-api/github-api/pulls/571", + "type": "PullRequest" + }, + "repository": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments" + }, + "url": "https://api.github.com/notifications/threads/603500160", + "subscription_url": "https://api.github.com/notifications/threads/603500160/subscription" + }, + { + "id": "603340898", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-11T07:54:04Z", + "last_read_at": null, + "subject": { + "title": "Applying some changes from NGPIPELINE-728 review", + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/pulls/22", + "latest_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/pulls/22", + "type": "PullRequest" + }, + "repository": { + "id": 193577985, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTM1Nzc5ODU=", + "name": "cloudbees-pipeline-rules-interception-plugin", + "full_name": "cloudbees/cloudbees-pipeline-rules-interception-plugin", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/cloudbees-pipeline-rules-interception-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin", + "forks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/forks", + "keys_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/events", + "assignees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/merges", + "archive_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/603340898", + "subscription_url": "https://api.github.com/notifications/threads/603340898/subscription" + }, + { + "id": "599953419", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-10-11T07:26:44Z", + "last_read_at": "2019-10-11T15:52:10Z", + "subject": { + "title": "Logs - summary when build completes", + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/pulls/20", + "latest_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/pulls/comments/333858602", + "type": "PullRequest" + }, + "repository": { + "id": 193577985, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTM1Nzc5ODU=", + "name": "cloudbees-pipeline-rules-interception-plugin", + "full_name": "cloudbees/cloudbees-pipeline-rules-interception-plugin", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/cloudbees-pipeline-rules-interception-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin", + "forks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/forks", + "keys_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/events", + "assignees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/merges", + "archive_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/599953419", + "subscription_url": "https://api.github.com/notifications/threads/599953419/subscription" + }, + { + "id": "422143397", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-10-11T18:44:04Z", + "last_read_at": "2019-10-11T18:36:38Z", + "subject": { + "title": "Add issue events API", + "url": "https://api.github.com/repos/github-api/github-api/pulls/479", + "latest_comment_url": "https://api.github.com/repos/github-api/github-api/pulls/479", + "type": "PullRequest" + }, + "repository": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments" + }, + "url": "https://api.github.com/notifications/threads/422143397", + "subscription_url": "https://api.github.com/notifications/threads/422143397/subscription" + }, + { + "id": "603126288", + "unread": true, + "reason": "subscribed", + "updated_at": "2019-10-11T00:49:31Z", + "last_read_at": null, + "subject": { + "title": "CSDOCS-207 - Duplicate detection recommendation", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/114", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments/540854837", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/603126288", + "subscription_url": "https://api.github.com/notifications/threads/603126288/subscription" + }, + { + "id": "602454782", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-10T17:30:08Z", + "last_read_at": "2019-10-13T00:55:27Z", + "subject": { + "title": "chore(deps-dev): bump typescript from 3.6.3 to 3.6.4", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/152", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/152", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/602454782", + "subscription_url": "https://api.github.com/notifications/threads/602454782/subscription" + }, + { + "id": "602454460", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-10-10T17:29:54Z", + "last_read_at": "2019-10-13T00:55:27Z", + "subject": { + "title": "chore(deps-dev): bump @types/lodash from 4.14.142 to 4.14.144", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/151", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/151", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/602454460", + "subscription_url": "https://api.github.com/notifications/threads/602454460/subscription" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/__files/notifications-f2648b73-4af1-4be3-a2a4-9edc712c5d59.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/__files/notifications-f2648b73-4af1-4be3-a2a4-9edc712c5d59.json new file mode 100644 index 0000000000..bcc23bf73e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/__files/notifications-f2648b73-4af1-4be3-a2a4-9edc712c5d59.json @@ -0,0 +1,4102 @@ +[ + { + "id": "585070146", + "unread": false, + "reason": "comment", + "updated_at": "2019-09-30T16:08:49Z", + "last_read_at": "2019-09-30T16:07:40Z", + "subject": { + "title": "Add localization support", + "url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/pulls/246", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues/comments/536633708", + "type": "PullRequest" + }, + "repository": { + "id": 43903637, + "node_id": "MDEwOlJlcG9zaXRvcnk0MzkwMzYzNw==", + "name": "github-branch-source-plugin", + "full_name": "jenkinsci/github-branch-source-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/github-branch-source-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/585070146", + "subscription_url": "https://api.github.com/notifications/threads/585070146/subscription" + }, + { + "id": "585797203", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-17T10:55:44Z", + "last_read_at": "2019-09-25T00:51:21Z", + "subject": { + "title": "CSDOCS-130 - Improve handling of the navigation for unknown pages", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/66", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/66", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/585797203", + "subscription_url": "https://api.github.com/notifications/threads/585797203/subscription" + }, + { + "id": "579266738", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-17T09:44:17Z", + "last_read_at": "2019-09-19T05:33:53Z", + "subject": { + "title": "Search sizes", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/88", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/88", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/579266738", + "subscription_url": "https://api.github.com/notifications/threads/579266738/subscription" + }, + { + "id": "585915173", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-09-17T09:34:56Z", + "last_read_at": "2019-09-30T16:04:11Z", + "subject": { + "title": "Add changelog for 2.195", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2486", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments/532143172", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/585915173", + "subscription_url": "https://api.github.com/notifications/threads/585915173/subscription" + }, + { + "id": "580337041", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-17T06:30:48Z", + "last_read_at": "2019-09-19T05:33:53Z", + "subject": { + "title": "Bump @babel/preset-typescript from 7.3.3 to 7.6.0", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/91", + "latest_comment_url": null, + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/580337041", + "subscription_url": "https://api.github.com/notifications/threads/580337041/subscription" + }, + { + "id": "581035882", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-27T17:47:35Z", + "last_read_at": "2019-09-27T17:15:25Z", + "subject": { + "title": "Improve interface ChangeRequestSCMHead", + "url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/pulls/77", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/pulls/comments/329181483", + "type": "PullRequest" + }, + "repository": { + "id": 12713417, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjcxMzQxNw==", + "name": "scm-api-plugin", + "full_name": "jenkinsci/scm-api-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/scm-api-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/scm-api-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/581035882", + "subscription_url": "https://api.github.com/notifications/threads/581035882/subscription" + }, + { + "id": "585589298", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-16T21:21:26Z", + "last_read_at": "2019-09-30T16:10:01Z", + "subject": { + "title": "[JENKINS-59398] Flatten UserIdCause into ReplayCause", + "url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls/323", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls/323", + "type": "PullRequest" + }, + "repository": { + "id": 55543225, + "node_id": "MDEwOlJlcG9zaXRvcnk1NTU0MzIyNQ==", + "name": "workflow-cps-plugin", + "full_name": "jenkinsci/workflow-cps-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/workflow-cps-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/585589298", + "subscription_url": "https://api.github.com/notifications/threads/585589298/subscription" + }, + { + "id": "585347044", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-16T18:44:25Z", + "last_read_at": "2019-09-30T16:04:11Z", + "subject": { + "title": "GSoC - Automatically request reviews from the GSoC team for the GSoC content", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2483", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2483", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/585347044", + "subscription_url": "https://api.github.com/notifications/threads/585347044/subscription" + }, + { + "id": "575211370", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-16T15:39:05Z", + "last_read_at": "2019-09-30T16:04:11Z", + "subject": { + "title": "JSON Schema doc", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2455", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2455", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/575211370", + "subscription_url": "https://api.github.com/notifications/threads/575211370/subscription" + }, + { + "id": "585343775", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-09-16T15:26:57Z", + "last_read_at": "2019-09-30T16:04:11Z", + "subject": { + "title": "Hacktoberfest 2019 - Cleanup the text a bit", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2482", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2482", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/585343775", + "subscription_url": "https://api.github.com/notifications/threads/585343775/subscription" + }, + { + "id": "585205283", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-16T12:27:32Z", + "last_read_at": "2019-09-20T13:59:13Z", + "subject": { + "title": "chore(deps): bump https://github.com/cloudbees/jxui-frontend.git from 0.0.840 to 0.0.843", + "url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/29", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/29", + "type": "PullRequest" + }, + "repository": { + "id": 183067295, + "node_id": "MDEwOlJlcG9zaXRvcnkxODMwNjcyOTU=", + "name": "jx-app-ui", + "full_name": "cloudbees/jx-app-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jx-app-ui", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jx-app-ui", + "forks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jx-app-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jx-app-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jx-app-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jx-app-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jx-app-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jx-app-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jx-app-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jx-app-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jx-app-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jx-app-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jx-app-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jx-app-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jx-app-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jx-app-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/585205283", + "subscription_url": "https://api.github.com/notifications/threads/585205283/subscription" + }, + { + "id": "585181995", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-16T11:50:02Z", + "last_read_at": "2019-10-01T18:56:21Z", + "subject": { + "title": "Add Annotation Indexer Lib to the Javadoc service", + "url": "https://api.github.com/repos/jenkins-infra/javadoc/pulls/22", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/javadoc/pulls/22", + "type": "PullRequest" + }, + "repository": { + "id": 64257420, + "node_id": "MDEwOlJlcG9zaXRvcnk2NDI1NzQyMA==", + "name": "javadoc", + "full_name": "jenkins-infra/javadoc", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/javadoc", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/javadoc", + "forks_url": "https://api.github.com/repos/jenkins-infra/javadoc/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/javadoc/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/javadoc/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/javadoc/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/javadoc/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/javadoc/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/javadoc/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/javadoc/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/javadoc/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/javadoc/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/javadoc/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/javadoc/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/javadoc/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/javadoc/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/javadoc/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/javadoc/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/javadoc/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/javadoc/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/javadoc/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/javadoc/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/javadoc/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/javadoc/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/javadoc/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/javadoc/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/javadoc/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/javadoc/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/javadoc/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/javadoc/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/javadoc/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/javadoc/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/javadoc/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/javadoc/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/javadoc/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/javadoc/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/javadoc/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/javadoc/deployments" + }, + "url": "https://api.github.com/notifications/threads/585181995", + "subscription_url": "https://api.github.com/notifications/threads/585181995/subscription" + }, + { + "id": "583455895", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-09-16T11:15:35Z", + "last_read_at": "2019-09-30T16:04:11Z", + "subject": { + "title": "Add advice for the 10k users of 3.0.0-rc", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2472", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments/531734605", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/583455895", + "subscription_url": "https://api.github.com/notifications/threads/583455895/subscription" + }, + { + "id": "585056745", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-09-16T10:26:32Z", + "last_read_at": "2019-09-30T16:04:11Z", + "subject": { + "title": "Improve layout for blogposts with multiple authors", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2481", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2481", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/585056745", + "subscription_url": "https://api.github.com/notifications/threads/585056745/subscription" + }, + { + "id": "585016304", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-16T07:20:52Z", + "last_read_at": "2019-09-27T17:51:52Z", + "subject": { + "title": "Move all Chinese localization files into localization-zh-cn-plugin", + "url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/pulls/245", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/pulls/245", + "type": "PullRequest" + }, + "repository": { + "id": 43903637, + "node_id": "MDEwOlJlcG9zaXRvcnk0MzkwMzYzNw==", + "name": "github-branch-source-plugin", + "full_name": "jenkinsci/github-branch-source-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/github-branch-source-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/585016304", + "subscription_url": "https://api.github.com/notifications/threads/585016304/subscription" + }, + { + "id": "584981342", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-16T07:16:55Z", + "last_read_at": "2019-09-25T00:51:21Z", + "subject": { + "title": "CSDOCS-129 - Remove the S3/HTTP backends", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/64", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments/531665860", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/584981342", + "subscription_url": "https://api.github.com/notifications/threads/584981342/subscription" + }, + { + "id": "584915594", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-16T07:14:06Z", + "last_read_at": "2019-09-25T00:51:21Z", + "subject": { + "title": "CSDOCS-101 - Update health endpoint to show database and combined status", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/63", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/63", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/584915594", + "subscription_url": "https://api.github.com/notifications/threads/584915594/subscription" + }, + { + "id": "584465335", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-16T07:13:17Z", + "last_read_at": "2019-09-25T00:51:21Z", + "subject": { + "title": "CSDOCS-127 - Protect our engine documentation", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/62", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/62", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/584465335", + "subscription_url": "https://api.github.com/notifications/threads/584465335/subscription" + }, + { + "id": "585010692", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-27T18:19:16Z", + "last_read_at": "2019-09-27T18:10:02Z", + "subject": { + "title": "Fix the exception handle when url is invalid", + "url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/pulls/244", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues/comments/536046644", + "type": "PullRequest" + }, + "repository": { + "id": 43903637, + "node_id": "MDEwOlJlcG9zaXRvcnk0MzkwMzYzNw==", + "name": "github-branch-source-plugin", + "full_name": "jenkinsci/github-branch-source-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/github-branch-source-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/585010692", + "subscription_url": "https://api.github.com/notifications/threads/585010692/subscription" + }, + { + "id": "585002521", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-16T07:10:13Z", + "last_read_at": "2019-09-25T00:51:21Z", + "subject": { + "title": "[CSDOCS-61]/update navigation theming", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/65", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/65", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/585002521", + "subscription_url": "https://api.github.com/notifications/threads/585002521/subscription" + }, + { + "id": "583816357", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-16T06:18:00Z", + "last_read_at": "2019-09-19T05:30:10Z", + "subject": { + "title": "Bump webpack from 4.39.3 to 4.40.0", + "url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/93", + "latest_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls/93", + "type": "PullRequest" + }, + "repository": { + "id": 188335364, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMzUzNjQ=", + "name": "honeyui-react", + "full_name": "cloudbees/honeyui-react", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/honeyui-react", + "description": "React bindings for CloudBees HoneyUI", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/honeyui-react", + "forks_url": "https://api.github.com/repos/cloudbees/honeyui-react/forks", + "keys_url": "https://api.github.com/repos/cloudbees/honeyui-react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/honeyui-react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/honeyui-react/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/honeyui-react/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/honeyui-react/events", + "assignees_url": "https://api.github.com/repos/cloudbees/honeyui-react/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/honeyui-react/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/honeyui-react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/honeyui-react/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/honeyui-react/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/honeyui-react/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/honeyui-react/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/honeyui-react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/honeyui-react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/honeyui-react/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/honeyui-react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/honeyui-react/merges", + "archive_url": "https://api.github.com/repos/cloudbees/honeyui-react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/honeyui-react/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/honeyui-react/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/honeyui-react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/honeyui-react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/honeyui-react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/honeyui-react/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/honeyui-react/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/honeyui-react/deployments" + }, + "url": "https://api.github.com/notifications/threads/583816357", + "subscription_url": "https://api.github.com/notifications/threads/583816357/subscription" + }, + { + "id": "584910834", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-16T02:42:25Z", + "last_read_at": "2019-09-27T17:14:05Z", + "subject": { + "title": "Add PR's title into PullRequestSCMHead", + "url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/pulls/243", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/pulls/243", + "type": "PullRequest" + }, + "repository": { + "id": 43903637, + "node_id": "MDEwOlJlcG9zaXRvcnk0MzkwMzYzNw==", + "name": "github-branch-source-plugin", + "full_name": "jenkinsci/github-branch-source-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/github-branch-source-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/584910834", + "subscription_url": "https://api.github.com/notifications/threads/584910834/subscription" + }, + { + "id": "584448969", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-16T02:19:32Z", + "last_read_at": "2019-09-25T00:51:21Z", + "subject": { + "title": "CSDOCS-109 - Changes to content loading to understand lack of .html ", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/61", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/61", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/584448969", + "subscription_url": "https://api.github.com/notifications/threads/584448969/subscription" + }, + { + "id": "584333868", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-09-14T12:03:04Z", + "last_read_at": "2019-09-30T16:04:11Z", + "subject": { + "title": "GSoC 2019 - Update statuses of projects", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2478", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2478", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/584333868", + "subscription_url": "https://api.github.com/notifications/threads/584333868/subscription" + }, + { + "id": "584378146", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-09-14T09:59:14Z", + "last_read_at": "2019-09-30T16:04:11Z", + "subject": { + "title": "Add support of multiple authors to the blogposts + fix the Pipeline Config History post", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2479", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2479", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/584378146", + "subscription_url": "https://api.github.com/notifications/threads/584378146/subscription" + }, + { + "id": "496836175", + "unread": false, + "reason": "mention", + "updated_at": "2019-09-14T07:50:04Z", + "last_read_at": "2019-09-14T18:12:44Z", + "subject": { + "title": "Filter out archived repos", + "url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/pulls/225", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues/comments/531459047", + "type": "PullRequest" + }, + "repository": { + "id": 43903637, + "node_id": "MDEwOlJlcG9zaXRvcnk0MzkwMzYzNw==", + "name": "github-branch-source-plugin", + "full_name": "jenkinsci/github-branch-source-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/github-branch-source-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/496836175", + "subscription_url": "https://api.github.com/notifications/threads/496836175/subscription" + }, + { + "id": "578396101", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-13T21:05:43Z", + "last_read_at": "2019-09-25T00:51:21Z", + "subject": { + "title": "CSDOCS-109 - Handling of .html suffixes on filename", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/56", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments/531390918", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/578396101", + "subscription_url": "https://api.github.com/notifications/threads/578396101/subscription" + }, + { + "id": "583818410", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-13T21:04:14Z", + "last_read_at": "2019-09-25T00:51:21Z", + "subject": { + "title": "CSDOCS-123 Extract search engine input from documents during site-builder process", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/59", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/59", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/583818410", + "subscription_url": "https://api.github.com/notifications/threads/583818410/subscription" + }, + { + "id": "583837088", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-13T21:03:53Z", + "last_read_at": "2019-09-25T00:51:21Z", + "subject": { + "title": "CSDOCS-118 - Rework containers", + "url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/60", + "latest_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls/60", + "type": "PullRequest" + }, + "repository": { + "id": 131690023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2OTAwMjM=", + "name": "docsite-engine", + "full_name": "cloudbees/docsite-engine", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/docsite-engine", + "description": "CloudBees documentation built using Antora", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/docsite-engine", + "forks_url": "https://api.github.com/repos/cloudbees/docsite-engine/forks", + "keys_url": "https://api.github.com/repos/cloudbees/docsite-engine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/docsite-engine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/docsite-engine/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/docsite-engine/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/docsite-engine/events", + "assignees_url": "https://api.github.com/repos/cloudbees/docsite-engine/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/docsite-engine/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/docsite-engine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/docsite-engine/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/docsite-engine/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/docsite-engine/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/docsite-engine/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/docsite-engine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/docsite-engine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/docsite-engine/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/docsite-engine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/docsite-engine/merges", + "archive_url": "https://api.github.com/repos/cloudbees/docsite-engine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/docsite-engine/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/docsite-engine/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/docsite-engine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/docsite-engine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/docsite-engine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/docsite-engine/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/docsite-engine/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/docsite-engine/deployments" + }, + "url": "https://api.github.com/notifications/threads/583837088", + "subscription_url": "https://api.github.com/notifications/threads/583837088/subscription" + }, + { + "id": "584267204", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-13T20:59:56Z", + "last_read_at": "2019-09-30T16:09:23Z", + "subject": { + "title": "Add a markerfile for building on gauntlet", + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/pulls/16", + "latest_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/issues/comments/531389404", + "type": "PullRequest" + }, + "repository": { + "id": 200867838, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDA4Njc4Mzg=", + "name": "cloudbees-pipeline-analytics-plugin", + "full_name": "cloudbees/cloudbees-pipeline-analytics-plugin", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/cloudbees-pipeline-analytics-plugin", + "description": "PoC Plugin for https://cloudbees.atlassian.net/browse/NGPIPELINE-610", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin", + "forks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/forks", + "keys_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/events", + "assignees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/merges", + "archive_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/584267204", + "subscription_url": "https://api.github.com/notifications/threads/584267204/subscription" + }, + { + "id": "584024187", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-09-13T18:14:29Z", + "last_read_at": "2019-09-30T16:04:11Z", + "subject": { + "title": "Add JENKINS-37862 to the 2.190.1 upgrade guide", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2475", + "latest_comment_url": null, + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/584024187", + "subscription_url": "https://api.github.com/notifications/threads/584024187/subscription" + }, + { + "id": "494551592", + "unread": false, + "reason": "mention", + "updated_at": "2019-09-13T18:35:34Z", + "last_read_at": "2019-09-14T00:23:43Z", + "subject": { + "title": "[JENKINS-57563] - Added JCasC to ScriptApproval (PR#233)", + "url": "https://api.github.com/repos/jenkinsci/script-security-plugin/pulls/250", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/issues/comments/531345929", + "type": "PullRequest" + }, + "repository": { + "id": 17301604, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzMwMTYwNA==", + "name": "script-security-plugin", + "full_name": "jenkinsci/script-security-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/script-security-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/script-security-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/494551592", + "subscription_url": "https://api.github.com/notifications/threads/494551592/subscription" + }, + { + "id": "584144897", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-09-13T17:32:20Z", + "last_read_at": "2019-09-30T16:04:11Z", + "subject": { + "title": "Hacktoberfest 2019 - Create a skeleton for the landing page", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2477", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2477", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/584144897", + "subscription_url": "https://api.github.com/notifications/threads/584144897/subscription" + }, + { + "id": "557229146", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-13T15:03:48Z", + "last_read_at": "2019-09-30T16:09:24Z", + "subject": { + "title": "Authentication was not being used in commands", + "url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/pulls/5", + "latest_comment_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/pulls/5", + "type": "PullRequest" + }, + "repository": { + "id": 183626073, + "node_id": "MDEwOlJlcG9zaXRvcnkxODM2MjYwNzM=", + "name": "user-activity-monitoring-scripts", + "full_name": "cloudbees/user-activity-monitoring-scripts", + "private": false, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/user-activity-monitoring-scripts", + "description": "Scripts for the User Activity Monitoring plugin", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts", + "forks_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/forks", + "keys_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/events", + "assignees_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/merges", + "archive_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/user-activity-monitoring-scripts/deployments" + }, + "url": "https://api.github.com/notifications/threads/557229146", + "subscription_url": "https://api.github.com/notifications/threads/557229146/subscription" + }, + { + "id": "578624416", + "unread": false, + "reason": "team_mention", + "updated_at": "2019-09-13T14:05:49Z", + "last_read_at": "2019-09-30T16:09:43Z", + "subject": { + "title": "Autogenerated OSS plugin updates Sep 5, 2019", + "url": "https://api.github.com/repos/cloudbees/unified-release/pulls/1441", + "latest_comment_url": "https://api.github.com/repos/cloudbees/unified-release/issues/comments/531250542", + "type": "PullRequest" + }, + "repository": { + "id": 78131017, + "node_id": "MDEwOlJlcG9zaXRvcnk3ODEzMTAxNw==", + "name": "unified-release", + "full_name": "cloudbees/unified-release", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/unified-release", + "description": "Unified Release Repository", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/unified-release", + "forks_url": "https://api.github.com/repos/cloudbees/unified-release/forks", + "keys_url": "https://api.github.com/repos/cloudbees/unified-release/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/unified-release/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/unified-release/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/unified-release/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/unified-release/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/unified-release/events", + "assignees_url": "https://api.github.com/repos/cloudbees/unified-release/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/unified-release/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/unified-release/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/unified-release/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/unified-release/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/unified-release/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/unified-release/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/unified-release/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/unified-release/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/unified-release/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/unified-release/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/unified-release/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/unified-release/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/unified-release/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/unified-release/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/unified-release/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/unified-release/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/unified-release/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/unified-release/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/unified-release/merges", + "archive_url": "https://api.github.com/repos/cloudbees/unified-release/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/unified-release/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/unified-release/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/unified-release/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/unified-release/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/unified-release/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/unified-release/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/unified-release/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/unified-release/deployments" + }, + "url": "https://api.github.com/notifications/threads/578624416", + "subscription_url": "https://api.github.com/notifications/threads/578624416/subscription" + }, + { + "id": "584032287", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-09-13T13:44:30Z", + "last_read_at": "2019-09-30T16:04:11Z", + "subject": { + "title": "More details on Secret use", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2476", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2476", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/584032287", + "subscription_url": "https://api.github.com/notifications/threads/584032287/subscription" + }, + { + "id": "583876087", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-09-13T10:40:28Z", + "last_read_at": "2019-09-30T16:04:11Z", + "subject": { + "title": "Add changelog for 2.190.1", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2473", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2473", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/583876087", + "subscription_url": "https://api.github.com/notifications/threads/583876087/subscription" + }, + { + "id": "583934768", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-23T18:29:33Z", + "last_read_at": "2019-09-23T18:28:36Z", + "subject": { + "title": ".jsbeautifyrc does not accept \"\\crlf\" as eol.", + "url": "https://api.github.com/repos/beautify-web/js-beautify/issues/1708", + "latest_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/1708", + "type": "Issue" + }, + "repository": { + "id": 84822, + "node_id": "MDEwOlJlcG9zaXRvcnk4NDgyMg==", + "name": "js-beautify", + "full_name": "beautify-web/js-beautify", + "private": false, + "owner": { + "login": "beautify-web", + "id": 6538164, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjY1MzgxNjQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/6538164?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/beautify-web", + "html_url": "https://github.com/beautify-web", + "followers_url": "https://api.github.com/users/beautify-web/followers", + "following_url": "https://api.github.com/users/beautify-web/following{/other_user}", + "gists_url": "https://api.github.com/users/beautify-web/gists{/gist_id}", + "starred_url": "https://api.github.com/users/beautify-web/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/beautify-web/subscriptions", + "organizations_url": "https://api.github.com/users/beautify-web/orgs", + "repos_url": "https://api.github.com/users/beautify-web/repos", + "events_url": "https://api.github.com/users/beautify-web/events{/privacy}", + "received_events_url": "https://api.github.com/users/beautify-web/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/beautify-web/js-beautify", + "description": "Beautifier for javascript ", + "fork": false, + "url": "https://api.github.com/repos/beautify-web/js-beautify", + "forks_url": "https://api.github.com/repos/beautify-web/js-beautify/forks", + "keys_url": "https://api.github.com/repos/beautify-web/js-beautify/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/beautify-web/js-beautify/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/beautify-web/js-beautify/teams", + "hooks_url": "https://api.github.com/repos/beautify-web/js-beautify/hooks", + "issue_events_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/events{/number}", + "events_url": "https://api.github.com/repos/beautify-web/js-beautify/events", + "assignees_url": "https://api.github.com/repos/beautify-web/js-beautify/assignees{/user}", + "branches_url": "https://api.github.com/repos/beautify-web/js-beautify/branches{/branch}", + "tags_url": "https://api.github.com/repos/beautify-web/js-beautify/tags", + "blobs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/beautify-web/js-beautify/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/beautify-web/js-beautify/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/beautify-web/js-beautify/statuses/{sha}", + "languages_url": "https://api.github.com/repos/beautify-web/js-beautify/languages", + "stargazers_url": "https://api.github.com/repos/beautify-web/js-beautify/stargazers", + "contributors_url": "https://api.github.com/repos/beautify-web/js-beautify/contributors", + "subscribers_url": "https://api.github.com/repos/beautify-web/js-beautify/subscribers", + "subscription_url": "https://api.github.com/repos/beautify-web/js-beautify/subscription", + "commits_url": "https://api.github.com/repos/beautify-web/js-beautify/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/beautify-web/js-beautify/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/beautify-web/js-beautify/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/beautify-web/js-beautify/contents/{+path}", + "compare_url": "https://api.github.com/repos/beautify-web/js-beautify/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/beautify-web/js-beautify/merges", + "archive_url": "https://api.github.com/repos/beautify-web/js-beautify/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/beautify-web/js-beautify/downloads", + "issues_url": "https://api.github.com/repos/beautify-web/js-beautify/issues{/number}", + "pulls_url": "https://api.github.com/repos/beautify-web/js-beautify/pulls{/number}", + "milestones_url": "https://api.github.com/repos/beautify-web/js-beautify/milestones{/number}", + "notifications_url": "https://api.github.com/repos/beautify-web/js-beautify/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/beautify-web/js-beautify/labels{/name}", + "releases_url": "https://api.github.com/repos/beautify-web/js-beautify/releases{/id}", + "deployments_url": "https://api.github.com/repos/beautify-web/js-beautify/deployments" + }, + "url": "https://api.github.com/notifications/threads/583934768", + "subscription_url": "https://api.github.com/notifications/threads/583934768/subscription" + }, + { + "id": "519542136", + "unread": false, + "reason": "comment", + "updated_at": "2019-10-11T20:21:30Z", + "last_read_at": "2019-09-13T02:44:43Z", + "subject": { + "title": "add function 'getLastCommit' in GHRepository.java", + "url": "https://api.github.com/repos/github-api/github-api/pulls/523", + "latest_comment_url": "https://api.github.com/repos/github-api/github-api/pulls/523", + "type": "PullRequest" + }, + "repository": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments" + }, + "url": "https://api.github.com/notifications/threads/519542136", + "subscription_url": "https://api.github.com/notifications/threads/519542136/subscription" + }, + { + "id": "575594533", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-12T19:32:12Z", + "last_read_at": "2019-09-12T20:09:05Z", + "subject": { + "title": "Add `loadFromClasspath()` pipeline step", + "url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls/319", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls/319", + "type": "PullRequest" + }, + "repository": { + "id": 55543225, + "node_id": "MDEwOlJlcG9zaXRvcnk1NTU0MzIyNQ==", + "name": "workflow-cps-plugin", + "full_name": "jenkinsci/workflow-cps-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/workflow-cps-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/575594533", + "subscription_url": "https://api.github.com/notifications/threads/575594533/subscription" + }, + { + "id": "578106040", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-12T17:08:04Z", + "last_read_at": "2019-09-30T16:09:23Z", + "subject": { + "title": "[NGPIPELINE-658] Track uses of when expressions in Declarative Pipelines", + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/pulls/13", + "latest_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/pulls/13", + "type": "PullRequest" + }, + "repository": { + "id": 200867838, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDA4Njc4Mzg=", + "name": "cloudbees-pipeline-analytics-plugin", + "full_name": "cloudbees/cloudbees-pipeline-analytics-plugin", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/cloudbees-pipeline-analytics-plugin", + "description": "PoC Plugin for https://cloudbees.atlassian.net/browse/NGPIPELINE-610", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin", + "forks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/forks", + "keys_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/events", + "assignees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/merges", + "archive_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-analytics-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/578106040", + "subscription_url": "https://api.github.com/notifications/threads/578106040/subscription" + }, + { + "id": "583449473", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-12T16:57:51Z", + "last_read_at": "2019-09-30T16:10:10Z", + "subject": { + "title": "[NGPIPELINE-682] adding timeout for agents and some refactoring for t…", + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/pulls/13", + "latest_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/pulls/comments/323847898", + "type": "PullRequest" + }, + "repository": { + "id": 193577985, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTM1Nzc5ODU=", + "name": "cloudbees-pipeline-rules-interception-plugin", + "full_name": "cloudbees/cloudbees-pipeline-rules-interception-plugin", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/cloudbees-pipeline-rules-interception-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin", + "forks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/forks", + "keys_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/events", + "assignees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/merges", + "archive_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/cloudbees-pipeline-rules-interception-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/583449473", + "subscription_url": "https://api.github.com/notifications/threads/583449473/subscription" + }, + { + "id": "560113949", + "unread": false, + "reason": "mention", + "updated_at": "2019-09-12T16:20:46Z", + "last_read_at": "2019-10-05T07:25:59Z", + "subject": { + "title": "JENKINS-58894 Add String signatures to match CharSequence counterparts", + "url": "https://api.github.com/repos/jenkinsci/script-security-plugin/pulls/262", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/issues/comments/530900629", + "type": "PullRequest" + }, + "repository": { + "id": 17301604, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzMwMTYwNA==", + "name": "script-security-plugin", + "full_name": "jenkinsci/script-security-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/script-security-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/script-security-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/560113949", + "subscription_url": "https://api.github.com/notifications/threads/560113949/subscription" + }, + { + "id": "583356190", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-12T15:03:54Z", + "last_read_at": "2019-09-30T16:10:01Z", + "subject": { + "title": "Add regression tests for SECURITY-1538", + "url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls/322", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/comments/530868409", + "type": "PullRequest" + }, + "repository": { + "id": 55543225, + "node_id": "MDEwOlJlcG9zaXRvcnk1NTU0MzIyNQ==", + "name": "workflow-cps-plugin", + "full_name": "jenkinsci/workflow-cps-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/workflow-cps-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/583356190", + "subscription_url": "https://api.github.com/notifications/threads/583356190/subscription" + }, + { + "id": "580922026", + "unread": false, + "reason": "comment", + "updated_at": "2019-09-12T14:30:07Z", + "last_read_at": "2019-09-30T16:10:01Z", + "subject": { + "title": "Using ClassRule in some more places", + "url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls/321", + "latest_comment_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls/321", + "type": "PullRequest" + }, + "repository": { + "id": 55543225, + "node_id": "MDEwOlJlcG9zaXRvcnk1NTU0MzIyNQ==", + "name": "workflow-cps-plugin", + "full_name": "jenkinsci/workflow-cps-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/workflow-cps-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/deployments" + }, + "url": "https://api.github.com/notifications/threads/580922026", + "subscription_url": "https://api.github.com/notifications/threads/580922026/subscription" + }, + { + "id": "583073295", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-12T08:49:43Z", + "last_read_at": "2019-09-12T20:12:56Z", + "subject": { + "title": "chore(deps): bump https://github.com/cloudbees/jxui-frontend.git from 0.0.838 to 0.0.840", + "url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/28", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/28", + "type": "PullRequest" + }, + "repository": { + "id": 183067295, + "node_id": "MDEwOlJlcG9zaXRvcnkxODMwNjcyOTU=", + "name": "jx-app-ui", + "full_name": "cloudbees/jx-app-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jx-app-ui", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jx-app-ui", + "forks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jx-app-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jx-app-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jx-app-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jx-app-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jx-app-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jx-app-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jx-app-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jx-app-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jx-app-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jx-app-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jx-app-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jx-app-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jx-app-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jx-app-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/583073295", + "subscription_url": "https://api.github.com/notifications/threads/583073295/subscription" + }, + { + "id": "582270031", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-12T08:49:29Z", + "last_read_at": "2019-09-12T20:14:36Z", + "subject": { + "title": "[FNDJEN-1538] Check if there are any open PRs before opening a new one.", + "url": "https://api.github.com/repos/cloudbees/urap/pulls/11", + "latest_comment_url": "https://api.github.com/repos/cloudbees/urap/pulls/11", + "type": "PullRequest" + }, + "repository": { + "id": 202161566, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDIxNjE1NjY=", + "name": "urap", + "full_name": "cloudbees/urap", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/urap", + "description": "Unified Release Automatic Plugin updater. https://en.wikipedia.org/wiki/Urap", + "fork": false, + "url": "https://api.github.com/repos/cloudbees/urap", + "forks_url": "https://api.github.com/repos/cloudbees/urap/forks", + "keys_url": "https://api.github.com/repos/cloudbees/urap/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/urap/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/urap/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/urap/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/urap/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/urap/events", + "assignees_url": "https://api.github.com/repos/cloudbees/urap/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/urap/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/urap/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/urap/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/urap/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/urap/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/urap/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/urap/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/urap/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/urap/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/urap/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/urap/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/urap/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/urap/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/urap/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/urap/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/urap/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/urap/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/urap/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/urap/merges", + "archive_url": "https://api.github.com/repos/cloudbees/urap/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/urap/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/urap/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/urap/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/urap/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/urap/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/urap/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/urap/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/urap/deployments" + }, + "url": "https://api.github.com/notifications/threads/582270031", + "subscription_url": "https://api.github.com/notifications/threads/582270031/subscription" + }, + { + "id": "582397965", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-12T08:44:43Z", + "last_read_at": "2019-09-12T20:12:56Z", + "subject": { + "title": "feat: add ui resource label", + "url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/26", + "latest_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls/26", + "type": "PullRequest" + }, + "repository": { + "id": 183067295, + "node_id": "MDEwOlJlcG9zaXRvcnkxODMwNjcyOTU=", + "name": "jx-app-ui", + "full_name": "cloudbees/jx-app-ui", + "private": true, + "owner": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees", + "html_url": "https://github.com/cloudbees", + "followers_url": "https://api.github.com/users/cloudbees/followers", + "following_url": "https://api.github.com/users/cloudbees/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees/orgs", + "repos_url": "https://api.github.com/users/cloudbees/repos", + "events_url": "https://api.github.com/users/cloudbees/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees/jx-app-ui", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cloudbees/jx-app-ui", + "forks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/forks", + "keys_url": "https://api.github.com/repos/cloudbees/jx-app-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees/jx-app-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees/jx-app-ui/teams", + "hooks_url": "https://api.github.com/repos/cloudbees/jx-app-ui/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees/jx-app-ui/events", + "assignees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees/jx-app-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/tags", + "blobs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees/jx-app-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees/jx-app-ui/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees/jx-app-ui/subscription", + "commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees/jx-app-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees/jx-app-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees/jx-app-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees/jx-app-ui/merges", + "archive_url": "https://api.github.com/repos/cloudbees/jx-app-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees/jx-app-ui/downloads", + "issues_url": "https://api.github.com/repos/cloudbees/jx-app-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees/jx-app-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees/jx-app-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees/jx-app-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees/jx-app-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees/jx-app-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees/jx-app-ui/deployments" + }, + "url": "https://api.github.com/notifications/threads/582397965", + "subscription_url": "https://api.github.com/notifications/threads/582397965/subscription" + }, + { + "id": "582626269", + "unread": false, + "reason": "subscribed", + "updated_at": "2019-09-12T03:48:29Z", + "last_read_at": "2019-09-12T03:47:45Z", + "subject": { + "title": "Grammar", + "url": "https://api.github.com/repos/github-api/github-api/pulls/543", + "latest_comment_url": "https://api.github.com/repos/github-api/github-api/pulls/543", + "type": "PullRequest" + }, + "repository": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments" + }, + "url": "https://api.github.com/notifications/threads/582626269", + "subscription_url": "https://api.github.com/notifications/threads/582626269/subscription" + }, + { + "id": "582383689", + "unread": false, + "reason": "review_requested", + "updated_at": "2019-09-11T18:32:27Z", + "last_read_at": "2019-09-12T01:23:01Z", + "subject": { + "title": "Update stages directive doc", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2471", + "latest_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls/2471", + "type": "PullRequest" + }, + "repository": { + "id": 44886691, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg4NjY5MQ==", + "name": "jenkins.io", + "full_name": "jenkins-infra/jenkins.io", + "private": false, + "owner": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkins-infra", + "html_url": "https://github.com/jenkins-infra", + "followers_url": "https://api.github.com/users/jenkins-infra/followers", + "following_url": "https://api.github.com/users/jenkins-infra/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkins-infra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkins-infra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkins-infra/subscriptions", + "organizations_url": "https://api.github.com/users/jenkins-infra/orgs", + "repos_url": "https://api.github.com/users/jenkins-infra/repos", + "events_url": "https://api.github.com/users/jenkins-infra/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkins-infra/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkins-infra/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "forks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/deployments" + }, + "url": "https://api.github.com/notifications/threads/582383689", + "subscription_url": "https://api.github.com/notifications/threads/582383689/subscription" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/__files/user-8439ce2a-f18e-4395-9e5c-21604abb77ec.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/__files/user-8439ce2a-f18e-4395-9e5c-21604abb77ec.json new file mode 100644 index 0000000000..a4b576e8a7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/__files/user-8439ce2a-f18e-4395-9e5c-21604abb77ec.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 169, + "public_gists": 7, + "followers": 139, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/notifications-10-a97934.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/notifications-10-a97934.json new file mode 100644 index 0000000000..ea6a5672a7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/notifications-10-a97934.json @@ -0,0 +1,45 @@ +{ + "id": "a979348d-c6be-4cb7-8877-7c42a6f013ae", + "name": "notifications", + "request": { + "url": "/notifications?all=true&page=9&all=true", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "notifications-a979348d-c6be-4cb7-8877-7c42a6f013ae.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:45 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4272", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"\"", + "Last-Modified": "Fri, 04 Oct 2019 22:33:47 GMT", + "X-Poll-Interval": "60", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "notifications, repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CB13:833E:A1F628:BFE1F0:5DB3A14D", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "a979348d-c6be-4cb7-8877-7c42a6f013ae", + "persistent": true, + "insertionIndex": 10 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/notifications-11-89714e.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/notifications-11-89714e.json new file mode 100644 index 0000000000..340b8a92eb --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/notifications-11-89714e.json @@ -0,0 +1,45 @@ +{ + "id": "89714ed3-235b-4914-86a8-44ad66d59f30", + "name": "notifications", + "request": { + "url": "/notifications?all=true&page=10&all=true", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "notifications-89714ed3-235b-4914-86a8-44ad66d59f30.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:45 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4271", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"\"", + "Last-Modified": "Tue, 01 Oct 2019 22:44:33 GMT", + "X-Poll-Interval": "60", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "notifications, repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CB13:833E:A1F646:BFE217:5DB3A14D", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "89714ed3-235b-4914-86a8-44ad66d59f30", + "persistent": true, + "insertionIndex": 11 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/notifications-12-2b7183.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/notifications-12-2b7183.json new file mode 100644 index 0000000000..6e0cdb447b --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/notifications-12-2b7183.json @@ -0,0 +1,45 @@ +{ + "id": "2b718339-36d3-4c6b-9484-79cdd79a79e4", + "name": "notifications", + "request": { + "url": "/notifications?all=true&page=11&all=true", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "notifications-2b718339-36d3-4c6b-9484-79cdd79a79e4.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:46 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4270", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"\"", + "Last-Modified": "Sun, 29 Sep 2019 17:59:57 GMT", + "X-Poll-Interval": "60", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "notifications, repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CB13:833E:A1F657:BFE22B:5DB3A14D", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "2b718339-36d3-4c6b-9484-79cdd79a79e4", + "persistent": true, + "insertionIndex": 12 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/notifications-13-989db4.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/notifications-13-989db4.json new file mode 100644 index 0000000000..334b2d2725 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/notifications-13-989db4.json @@ -0,0 +1,45 @@ +{ + "id": "989db4b3-8dde-4065-b4ef-6a2d90a2753a", + "name": "notifications", + "request": { + "url": "/notifications?all=true&page=12&all=true", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "notifications-989db4b3-8dde-4065-b4ef-6a2d90a2753a.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:46 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4269", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"\"", + "Last-Modified": "Wed, 25 Sep 2019 18:41:05 GMT", + "X-Poll-Interval": "60", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "notifications, repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CB13:833E:A1F661:BFE238:5DB3A14E", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "989db4b3-8dde-4065-b4ef-6a2d90a2753a", + "persistent": true, + "insertionIndex": 13 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/notifications-14-50b907.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/notifications-14-50b907.json new file mode 100644 index 0000000000..59c90bd0b6 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/notifications-14-50b907.json @@ -0,0 +1,45 @@ +{ + "id": "50b907ef-a983-4cc9-bfd2-e2ba76eae729", + "name": "notifications", + "request": { + "url": "/notifications?all=true&page=13&all=true", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "notifications-50b907ef-a983-4cc9-bfd2-e2ba76eae729.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:46 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4268", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"\"", + "Last-Modified": "Sat, 21 Sep 2019 00:30:26 GMT", + "X-Poll-Interval": "60", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "notifications, repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CB13:833E:A1F66D:BFE242:5DB3A14E", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "50b907ef-a983-4cc9-bfd2-e2ba76eae729", + "persistent": true, + "insertionIndex": 14 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/notifications-15-f2648b.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/notifications-15-f2648b.json new file mode 100644 index 0000000000..6b25c7de98 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/notifications-15-f2648b.json @@ -0,0 +1,45 @@ +{ + "id": "f2648b73-4af1-4be3-a2a4-9edc712c5d59", + "name": "notifications", + "request": { + "url": "/notifications?all=true&page=14&all=true", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "notifications-f2648b73-4af1-4be3-a2a4-9edc712c5d59.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:46 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4267", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"\"", + "Last-Modified": "Mon, 30 Sep 2019 16:08:49 GMT", + "X-Poll-Interval": "60", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "notifications, repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CB13:833E:A1F679:BFE254:5DB3A14E", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "f2648b73-4af1-4be3-a2a4-9edc712c5d59", + "persistent": true, + "insertionIndex": 15 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/notifications-16-ee5a6c.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/notifications-16-ee5a6c.json new file mode 100644 index 0000000000..9da8b89150 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/notifications-16-ee5a6c.json @@ -0,0 +1,45 @@ +{ + "id": "ee5a6c9f-da3a-47e7-a393-b403e82ae5d9", + "name": "notifications", + "request": { + "url": "/notifications?all=true&page=15&all=true", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "notifications-ee5a6c9f-da3a-47e7-a393-b403e82ae5d9.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:47 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4266", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"\"", + "Last-Modified": "Wed, 11 Sep 2019 17:46:27 GMT", + "X-Poll-Interval": "60", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "notifications, repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CB13:833E:A1F689:BFE266:5DB3A14E", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "ee5a6c9f-da3a-47e7-a393-b403e82ae5d9", + "persistent": true, + "insertionIndex": 16 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/notifications-17-a41aee.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/notifications-17-a41aee.json new file mode 100644 index 0000000000..3f36730721 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/notifications-17-a41aee.json @@ -0,0 +1,45 @@ +{ + "id": "a41aeecf-7097-4ac6-b857-ab14797afe0a", + "name": "notifications", + "request": { + "url": "/notifications?all=true&page=16&all=true", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "notifications-a41aeecf-7097-4ac6-b857-ab14797afe0a.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:47 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4265", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"\"", + "Last-Modified": "Thu, 05 Sep 2019 21:37:55 GMT", + "X-Poll-Interval": "60", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "notifications, repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CB13:833E:A1F69E:BFE27A:5DB3A14F", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "a41aeecf-7097-4ac6-b857-ab14797afe0a", + "persistent": true, + "insertionIndex": 17 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/notifications-18-e1d519.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/notifications-18-e1d519.json new file mode 100644 index 0000000000..bc4bbe5240 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/notifications-18-e1d519.json @@ -0,0 +1,45 @@ +{ + "id": "e1d519f7-9bd2-4fcd-a288-2391944ec7ca", + "name": "notifications", + "request": { + "url": "/notifications?all=true&page=17&all=true", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "notifications-e1d519f7-9bd2-4fcd-a288-2391944ec7ca.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:47 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4264", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"\"", + "Last-Modified": "Fri, 30 Aug 2019 01:19:53 GMT", + "X-Poll-Interval": "60", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "notifications, repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CB13:833E:A1F6B4:BFE291:5DB3A14F", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "e1d519f7-9bd2-4fcd-a288-2391944ec7ca", + "persistent": true, + "insertionIndex": 18 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/notifications-19-1b6948.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/notifications-19-1b6948.json new file mode 100644 index 0000000000..667c9f768a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/notifications-19-1b6948.json @@ -0,0 +1,45 @@ +{ + "id": "1b694852-8043-418c-a76e-39370f22db96", + "name": "notifications", + "request": { + "url": "/notifications?all=true&page=18&all=true", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "notifications-1b694852-8043-418c-a76e-39370f22db96.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:48 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4263", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"\"", + "Last-Modified": "Mon, 26 Aug 2019 15:07:19 GMT", + "X-Poll-Interval": "60", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "notifications, repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CB13:833E:A1F6CA:BFE2B2:5DB3A14F", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "1b694852-8043-418c-a76e-39370f22db96", + "persistent": true, + "insertionIndex": 19 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/notifications-2-d85867.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/notifications-2-d85867.json new file mode 100644 index 0000000000..a45d7dc241 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/notifications-2-d85867.json @@ -0,0 +1,45 @@ +{ + "id": "d85867b0-1efe-43f5-bdf4-1b9aef03ef55", + "name": "notifications", + "request": { + "url": "/notifications?all=true", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "notifications-d85867b0-1efe-43f5-bdf4-1b9aef03ef55.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:43 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4280", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"\"", + "Last-Modified": "Sat, 26 Oct 2019 00:58:29 GMT", + "X-Poll-Interval": "60", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "notifications, repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CB13:833E:A1F5C2:BFE16E:5DB3A14B", + "Link": "; rel=\"next\", ; rel=\"last\"" + } + }, + "uuid": "d85867b0-1efe-43f5-bdf4-1b9aef03ef55", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/notifications-20-489082.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/notifications-20-489082.json new file mode 100644 index 0000000000..46c3189aa4 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/notifications-20-489082.json @@ -0,0 +1,45 @@ +{ + "id": "48908278-ce2f-4cec-8662-6f4ca3d81226", + "name": "notifications", + "request": { + "url": "/notifications?all=true&page=19&all=true", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "notifications-48908278-ce2f-4cec-8662-6f4ca3d81226.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:48 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4262", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"\"", + "Last-Modified": "Wed, 21 Aug 2019 16:00:35 GMT", + "X-Poll-Interval": "60", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "notifications, repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CB13:833E:A1F6E4:BFE2D4:5DB3A150", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "48908278-ce2f-4cec-8662-6f4ca3d81226", + "persistent": true, + "insertionIndex": 20 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/notifications-21-42be65.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/notifications-21-42be65.json new file mode 100644 index 0000000000..8238b8ca6a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/notifications-21-42be65.json @@ -0,0 +1,45 @@ +{ + "id": "42be6527-0570-4353-b42f-d0cae80258e3", + "name": "notifications", + "request": { + "url": "/notifications?all=true&page=20&all=true", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "notifications-42be6527-0570-4353-b42f-d0cae80258e3.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:48 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4261", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"\"", + "Last-Modified": "Fri, 16 Aug 2019 01:10:46 GMT", + "X-Poll-Interval": "60", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "notifications, repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CB13:833E:A1F70C:BFE300:5DB3A150", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "42be6527-0570-4353-b42f-d0cae80258e3", + "persistent": true, + "insertionIndex": 21 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/notifications-22-5720c4.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/notifications-22-5720c4.json new file mode 100644 index 0000000000..2a3aafe0f7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/notifications-22-5720c4.json @@ -0,0 +1,45 @@ +{ + "id": "5720c49c-c69b-495b-b7e6-b885d88c10b1", + "name": "notifications", + "request": { + "url": "/notifications?all=true&page=21&all=true", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "notifications-5720c49c-c69b-495b-b7e6-b885d88c10b1.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:49 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4260", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"\"", + "Last-Modified": "Thu, 08 Aug 2019 20:39:15 GMT", + "X-Poll-Interval": "60", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "notifications, repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CB13:833E:A1F71C:BFE311:5DB3A150", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "5720c49c-c69b-495b-b7e6-b885d88c10b1", + "persistent": true, + "insertionIndex": 22 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/notifications-23-045c36.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/notifications-23-045c36.json new file mode 100644 index 0000000000..7c46c5d61e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/notifications-23-045c36.json @@ -0,0 +1,45 @@ +{ + "id": "045c369a-0818-455a-afe1-3ae9ec919af2", + "name": "notifications", + "request": { + "url": "/notifications?all=true&page=22&all=true", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "notifications-045c369a-0818-455a-afe1-3ae9ec919af2.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:49 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4259", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"\"", + "Last-Modified": "Fri, 02 Aug 2019 03:50:24 GMT", + "X-Poll-Interval": "60", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "notifications, repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CB13:833E:A1F731:BFE31F:5DB3A151", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "045c369a-0818-455a-afe1-3ae9ec919af2", + "persistent": true, + "insertionIndex": 23 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/notifications-24-bfc773.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/notifications-24-bfc773.json new file mode 100644 index 0000000000..71a870674e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/notifications-24-bfc773.json @@ -0,0 +1,45 @@ +{ + "id": "bfc7733f-6dff-4675-81e9-926103c40b83", + "name": "notifications", + "request": { + "url": "/notifications?all=true&page=23&all=true", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "notifications-bfc7733f-6dff-4675-81e9-926103c40b83.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:49 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4258", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"\"", + "Last-Modified": "Fri, 05 Jul 2019 21:37:24 GMT", + "X-Poll-Interval": "60", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "notifications, repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CB13:833E:A1F73A:BFE332:5DB3A151", + "Link": "; rel=\"prev\", ; rel=\"first\"" + } + }, + "uuid": "bfc7733f-6dff-4675-81e9-926103c40b83", + "persistent": true, + "insertionIndex": 24 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/notifications-26-ac22e3.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/notifications-26-ac22e3.json new file mode 100644 index 0000000000..6bc2d9c0ea --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/notifications-26-ac22e3.json @@ -0,0 +1,45 @@ +{ + "id": "ac22e3e2-f0d3-4ff1-af23-23e9c79c725c", + "name": "notifications", + "request": { + "url": "/notifications", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "notifications-ac22e3e2-f0d3-4ff1-af23-23e9c79c725c.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:50 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4256", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"\"", + "Last-Modified": "Sat, 26 Oct 2019 00:58:29 GMT", + "X-Poll-Interval": "60", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "notifications, repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CB13:833E:A1F759:BFE352:5DB3A151", + "Link": "; rel=\"next\", ; rel=\"last\"" + } + }, + "uuid": "ac22e3e2-f0d3-4ff1-af23-23e9c79c725c", + "persistent": true, + "insertionIndex": 26 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/notifications-3-d96172.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/notifications-3-d96172.json new file mode 100644 index 0000000000..e90a40a00c --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/notifications-3-d96172.json @@ -0,0 +1,45 @@ +{ + "id": "d9617266-1ca6-44b2-b495-52c1f3be4b91", + "name": "notifications", + "request": { + "url": "/notifications?all=true&page=2&all=true", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "notifications-d9617266-1ca6-44b2-b495-52c1f3be4b91.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:43 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4279", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"\"", + "Last-Modified": "Thu, 24 Oct 2019 06:44:20 GMT", + "X-Poll-Interval": "60", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "notifications, repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CB13:833E:A1F5D0:BFE187:5DB3A14B", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "d9617266-1ca6-44b2-b495-52c1f3be4b91", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/notifications-4-6dea52.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/notifications-4-6dea52.json new file mode 100644 index 0000000000..2c5994ca0a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/notifications-4-6dea52.json @@ -0,0 +1,45 @@ +{ + "id": "6dea5253-3aa2-4484-b97a-effcad5c6ebd", + "name": "notifications", + "request": { + "url": "/notifications?all=true&page=3&all=true", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "notifications-6dea5253-3aa2-4484-b97a-effcad5c6ebd.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:44 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4278", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"\"", + "Last-Modified": "Tue, 22 Oct 2019 09:35:07 GMT", + "X-Poll-Interval": "60", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "notifications, repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CB13:833E:A1F5DC:BFE198:5DB3A14B", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "6dea5253-3aa2-4484-b97a-effcad5c6ebd", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/notifications-5-a8e944.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/notifications-5-a8e944.json new file mode 100644 index 0000000000..8763e59513 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/notifications-5-a8e944.json @@ -0,0 +1,45 @@ +{ + "id": "a8e9449d-b78c-4e46-801e-59fc459920d3", + "name": "notifications", + "request": { + "url": "/notifications?all=true&page=4&all=true", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "notifications-a8e9449d-b78c-4e46-801e-59fc459920d3.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:44 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4277", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"\"", + "Last-Modified": "Mon, 21 Oct 2019 00:22:13 GMT", + "X-Poll-Interval": "60", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "notifications, repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CB13:833E:A1F5E4:BFE1A3:5DB3A14C", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "a8e9449d-b78c-4e46-801e-59fc459920d3", + "persistent": true, + "insertionIndex": 5 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/notifications-6-2658e9.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/notifications-6-2658e9.json new file mode 100644 index 0000000000..7fe53ad5fc --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/notifications-6-2658e9.json @@ -0,0 +1,45 @@ +{ + "id": "2658e99a-6619-4b0b-b70f-814a0841839e", + "name": "notifications", + "request": { + "url": "/notifications?all=true&page=5&all=true", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "notifications-2658e99a-6619-4b0b-b70f-814a0841839e.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:44 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4276", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"\"", + "Last-Modified": "Wed, 16 Oct 2019 14:14:48 GMT", + "X-Poll-Interval": "60", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "notifications, repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CB13:833E:A1F5F0:BFE1B4:5DB3A14C", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "2658e99a-6619-4b0b-b70f-814a0841839e", + "persistent": true, + "insertionIndex": 6 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/notifications-7-f25246.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/notifications-7-f25246.json new file mode 100644 index 0000000000..e40f801aa1 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/notifications-7-f25246.json @@ -0,0 +1,45 @@ +{ + "id": "f2524684-5156-4db6-97fa-10dedac5f779", + "name": "notifications", + "request": { + "url": "/notifications?all=true&page=6&all=true", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "notifications-f2524684-5156-4db6-97fa-10dedac5f779.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:44 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4275", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"\"", + "Last-Modified": "Mon, 14 Oct 2019 19:33:42 GMT", + "X-Poll-Interval": "60", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "notifications, repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CB13:833E:A1F5FD:BFE1C1:5DB3A14C", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "f2524684-5156-4db6-97fa-10dedac5f779", + "persistent": true, + "insertionIndex": 7 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/notifications-8-943718.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/notifications-8-943718.json new file mode 100644 index 0000000000..479c340c72 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/notifications-8-943718.json @@ -0,0 +1,45 @@ +{ + "id": "9437189d-2f1b-47de-898d-66fde88ef05b", + "name": "notifications", + "request": { + "url": "/notifications?all=true&page=7&all=true", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "notifications-9437189d-2f1b-47de-898d-66fde88ef05b.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:44 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4274", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"\"", + "Last-Modified": "Thu, 10 Oct 2019 17:05:03 GMT", + "X-Poll-Interval": "60", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "notifications, repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CB13:833E:A1F60A:BFE1CD:5DB3A14C", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "9437189d-2f1b-47de-898d-66fde88ef05b", + "persistent": true, + "insertionIndex": 8 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/notifications-9-1de525.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/notifications-9-1de525.json new file mode 100644 index 0000000000..079f9a0fa7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/notifications-9-1de525.json @@ -0,0 +1,45 @@ +{ + "id": "1de52522-e900-4b19-90cd-758573c2349a", + "name": "notifications", + "request": { + "url": "/notifications?all=true&page=8&all=true", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "notifications-1de52522-e900-4b19-90cd-758573c2349a.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:45 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4273", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"\"", + "Last-Modified": "Tue, 08 Oct 2019 15:10:07 GMT", + "X-Poll-Interval": "60", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "notifications, repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CB13:833E:A1F612:BFE1D9:5DB3A14C", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "1de52522-e900-4b19-90cd-758573c2349a", + "persistent": true, + "insertionIndex": 9 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/notifications_threads_523050578-25-3b5fa2.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/notifications_threads_523050578-25-3b5fa2.json new file mode 100644 index 0000000000..21a9f5bb30 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/notifications_threads_523050578-25-3b5fa2.json @@ -0,0 +1,42 @@ +{ + "id": "3b5fa257-4f63-4d99-8fe9-6f978e5b1a0c", + "name": "notifications_threads_523050578", + "request": { + "url": "/notifications/threads/523050578", + "method": "PATCH", + "bodyPatterns": [ + { + "equalToJson": "{}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 205, + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:49 GMT", + "Content-Type": "text/plain;charset=utf-8", + "Server": "GitHub.com", + "Status": "205 Reset Content", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4257", + "X-RateLimit-Reset": "1572055286", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "notifications, repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CB13:833E:A1F745:BFE33C:5DB3A151" + } + }, + "uuid": "3b5fa257-4f63-4d99-8fe9-6f978e5b1a0c", + "persistent": true, + "insertionIndex": 25 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/user-1-8439ce.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/user-1-8439ce.json new file mode 100644 index 0000000000..278d39fb16 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/notifications/mappings/user-1-8439ce.json @@ -0,0 +1,43 @@ +{ + "id": "8439ce2a-f18e-4395-9e5c-21604abb77ec", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-8439ce2a-f18e-4395-9e5c-21604abb77ec.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:43 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4282", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"8c3d3dcf6fc5f9edaf26c902295396e5\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CB13:833E:A1F5AB:BFE15F:5DB3A14B" + } + }, + "uuid": "8439ce2a-f18e-4395-9e5c-21604abb77ec", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/reactions/__files/repos_github-api_github-api-802b5ffb-1b82-43ae-bd10-62f1cf8adfa3.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/reactions/__files/repos_github-api_github-api-802b5ffb-1b82-43ae-bd10-62f1cf8adfa3.json new file mode 100644 index 0000000000..29eeabe7c9 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/reactions/__files/repos_github-api_github-api-802b5ffb-1b82-43ae-bd10-62f1cf8adfa3.json @@ -0,0 +1,130 @@ +{ + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-10-25T01:32:16Z", + "pushed_at": "2019-10-25T16:41:09Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 13494, + "stargazers_count": 565, + "watchers_count": 565, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 433, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 64, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 433, + "open_issues": 64, + "watchers": 565, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "network_count": 433, + "subscribers_count": 48 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/reactions/__files/repos_github-api_github-api_issues_311-27fe2304-4e19-4da7-8db3-0adf9281f71b.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/reactions/__files/repos_github-api_github-api_issues_311-27fe2304-4e19-4da7-8db3-0adf9281f71b.json new file mode 100644 index 0000000000..749d1ff7f5 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/reactions/__files/repos_github-api_github-api_issues_311-27fe2304-4e19-4da7-8db3-0adf9281f71b.json @@ -0,0 +1,64 @@ +{ + "url": "https://api.github.com/repos/github-api/github-api/issues/311", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/311/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/311/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/311/events", + "html_url": "https://github.com/github-api/github-api/issues/311", + "id": 189918501, + "node_id": "MDU6SXNzdWUxODk5MTg1MDE=", + "number": 311, + "title": "Testing reaction", + "user": { + "login": "kohsuke", + "id": 50003, + "node_id": "MDQ6VXNlcjUwMDAz", + "avatar_url": "https://avatars1.githubusercontent.com/u/50003?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kohsuke", + "html_url": "https://github.com/kohsuke", + "followers_url": "https://api.github.com/users/kohsuke/followers", + "following_url": "https://api.github.com/users/kohsuke/following{/other_user}", + "gists_url": "https://api.github.com/users/kohsuke/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kohsuke/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kohsuke/subscriptions", + "organizations_url": "https://api.github.com/users/kohsuke/orgs", + "repos_url": "https://api.github.com/users/kohsuke/repos", + "events_url": "https://api.github.com/users/kohsuke/events{/privacy}", + "received_events_url": "https://api.github.com/users/kohsuke/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2016-11-17T02:40:08Z", + "updated_at": "2016-11-17T02:40:11Z", + "closed_at": "2016-11-17T02:40:11Z", + "author_association": "MEMBER", + "body": "", + "closed_by": { + "login": "kohsuke", + "id": 50003, + "node_id": "MDQ6VXNlcjUwMDAz", + "avatar_url": "https://avatars1.githubusercontent.com/u/50003?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kohsuke", + "html_url": "https://github.com/kohsuke", + "followers_url": "https://api.github.com/users/kohsuke/followers", + "following_url": "https://api.github.com/users/kohsuke/following{/other_user}", + "gists_url": "https://api.github.com/users/kohsuke/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kohsuke/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kohsuke/subscriptions", + "organizations_url": "https://api.github.com/users/kohsuke/orgs", + "repos_url": "https://api.github.com/users/kohsuke/repos", + "events_url": "https://api.github.com/users/kohsuke/events{/privacy}", + "received_events_url": "https://api.github.com/users/kohsuke/received_events", + "type": "User", + "site_admin": false + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/reactions/__files/repos_github-api_github-api_issues_311_reactions-03125293-7da8-4da4-8d53-38060ef25daa.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/reactions/__files/repos_github-api_github-api_issues_311_reactions-03125293-7da8-4da4-8d53-38060ef25daa.json new file mode 100644 index 0000000000..093d145ef8 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/reactions/__files/repos_github-api_github-api_issues_311_reactions-03125293-7da8-4da4-8d53-38060ef25daa.json @@ -0,0 +1,26 @@ +{ + "id": 54107401, + "node_id": "MDg6UmVhY3Rpb241NDEwNzQwMQ==", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "content": "hooray", + "created_at": "2019-10-26T01:27:43Z" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/reactions/__files/repos_github-api_github-api_issues_311_reactions-4abb0b9d-6883-4156-9111-86ec994328df.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/reactions/__files/repos_github-api_github-api_issues_311_reactions-4abb0b9d-6883-4156-9111-86ec994328df.json new file mode 100644 index 0000000000..ee767d3d2b --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/reactions/__files/repos_github-api_github-api_issues_311_reactions-4abb0b9d-6883-4156-9111-86ec994328df.json @@ -0,0 +1,28 @@ +[ + { + "id": 5037900, + "node_id": "MDg6UmVhY3Rpb241MDM3OTAw", + "user": { + "login": "kohsuke", + "id": 50003, + "node_id": "MDQ6VXNlcjUwMDAz", + "avatar_url": "https://avatars1.githubusercontent.com/u/50003?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kohsuke", + "html_url": "https://github.com/kohsuke", + "followers_url": "https://api.github.com/users/kohsuke/followers", + "following_url": "https://api.github.com/users/kohsuke/following{/other_user}", + "gists_url": "https://api.github.com/users/kohsuke/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kohsuke/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kohsuke/subscriptions", + "organizations_url": "https://api.github.com/users/kohsuke/orgs", + "repos_url": "https://api.github.com/users/kohsuke/repos", + "events_url": "https://api.github.com/users/kohsuke/events{/privacy}", + "received_events_url": "https://api.github.com/users/kohsuke/received_events", + "type": "User", + "site_admin": false + }, + "content": "heart", + "created_at": "2016-11-17T02:40:15Z" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/reactions/__files/user-b7deb8d4-d53a-4dd5-8ab8-f0bf4f7bfb9e.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/reactions/__files/user-b7deb8d4-d53a-4dd5-8ab8-f0bf4f7bfb9e.json new file mode 100644 index 0000000000..a4b576e8a7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/reactions/__files/user-b7deb8d4-d53a-4dd5-8ab8-f0bf4f7bfb9e.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 169, + "public_gists": 7, + "followers": 139, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/reactions/mappings/reactions_54107401-6-613187.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/reactions/mappings/reactions_54107401-6-613187.json new file mode 100644 index 0000000000..29a0730e77 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/reactions/mappings/reactions_54107401-6-613187.json @@ -0,0 +1,35 @@ +{ + "id": "613187cb-6ce1-4cec-8f3a-aa1e0402c0a2", + "name": "reactions_54107401", + "request": { + "url": "/reactions/54107401", + "method": "DELETE" + }, + "response": { + "status": 204, + "headers": { + "Date": "Sat, 26 Oct 2019 01:27:43 GMT", + "Server": "GitHub.com", + "Status": "204 No Content", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4408", + "X-RateLimit-Reset": "1572055286", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.squirrel-girl-preview", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "CAAC:45A6:ED51CF:1180A5B:5DB3A10F" + } + }, + "uuid": "613187cb-6ce1-4cec-8f3a-aa1e0402c0a2", + "persistent": true, + "insertionIndex": 6 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/reactions/mappings/repos_github-api_github-api-2-802b5f.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/reactions/mappings/repos_github-api_github-api-2-802b5f.json new file mode 100644 index 0000000000..bdb8149913 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/reactions/mappings/repos_github-api_github-api-2-802b5f.json @@ -0,0 +1,43 @@ +{ + "id": "802b5ffb-1b82-43ae-bd10-62f1cf8adfa3", + "name": "repos_github-api_github-api", + "request": { + "url": "/repos/github-api/github-api", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api_github-api-802b5ffb-1b82-43ae-bd10-62f1cf8adfa3.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:27:42 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4412", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"c1a01d01a6354d93b3cc6098e0b2d047\"", + "Last-Modified": "Fri, 25 Oct 2019 01:32:16 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAAC:45A6:ED514A:11809B8:5DB3A10D" + } + }, + "uuid": "802b5ffb-1b82-43ae-bd10-62f1cf8adfa3", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/reactions/mappings/repos_github-api_github-api_issues_311-3-27fe23.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/reactions/mappings/repos_github-api_github-api_issues_311-3-27fe23.json new file mode 100644 index 0000000000..cbcd54100b --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/reactions/mappings/repos_github-api_github-api_issues_311-3-27fe23.json @@ -0,0 +1,43 @@ +{ + "id": "27fe2304-4e19-4da7-8db3-0adf9281f71b", + "name": "repos_github-api_github-api_issues_311", + "request": { + "url": "/repos/github-api/github-api/issues/311", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api_github-api_issues_311-27fe2304-4e19-4da7-8db3-0adf9281f71b.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:27:42 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4411", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"609e07e4daf5a4a5fb63f9ff089ae6b4\"", + "Last-Modified": "Fri, 25 Oct 2019 16:53:26 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAAC:45A6:ED5163:11809E8:5DB3A10E" + } + }, + "uuid": "27fe2304-4e19-4da7-8db3-0adf9281f71b", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/reactions/mappings/repos_github-api_github-api_issues_311_reactions-4-4abb0b.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/reactions/mappings/repos_github-api_github-api_issues_311_reactions-4-4abb0b.json new file mode 100644 index 0000000000..3842e9e8a6 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/reactions/mappings/repos_github-api_github-api_issues_311_reactions-4-4abb0b.json @@ -0,0 +1,42 @@ +{ + "id": "4abb0b9d-6883-4156-9111-86ec994328df", + "name": "repos_github-api_github-api_issues_311_reactions", + "request": { + "url": "/repos/github-api/github-api/issues/311/reactions", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api_github-api_issues_311_reactions-4abb0b9d-6883-4156-9111-86ec994328df.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:27:42 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4410", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"121462c6df4333753c2e424ec1b757e9\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.squirrel-girl-preview", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAAC:45A6:ED5191:1180A11:5DB3A10E" + } + }, + "uuid": "4abb0b9d-6883-4156-9111-86ec994328df", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/reactions/mappings/repos_github-api_github-api_issues_311_reactions-5-031252.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/reactions/mappings/repos_github-api_github-api_issues_311_reactions-5-031252.json new file mode 100644 index 0000000000..6727233d21 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/reactions/mappings/repos_github-api_github-api_issues_311_reactions-5-031252.json @@ -0,0 +1,49 @@ +{ + "id": "03125293-7da8-4da4-8d53-38060ef25daa", + "name": "repos_github-api_github-api_issues_311_reactions", + "request": { + "url": "/repos/github-api/github-api/issues/311/reactions", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"content\":\"hooray\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "repos_github-api_github-api_issues_311_reactions-03125293-7da8-4da4-8d53-38060ef25daa.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:27:43 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4409", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"114f64d23a30418378801432528d6961\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.squirrel-girl-preview", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAAC:45A6:ED51AC:1180A3B:5DB3A10E" + } + }, + "uuid": "03125293-7da8-4da4-8d53-38060ef25daa", + "persistent": true, + "insertionIndex": 5 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/reactions/mappings/user-1-b7deb8.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/reactions/mappings/user-1-b7deb8.json new file mode 100644 index 0000000000..be95fcf48c --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/reactions/mappings/user-1-b7deb8.json @@ -0,0 +1,43 @@ +{ + "id": "b7deb8d4-d53a-4dd5-8ab8-f0bf4f7bfb9e", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-b7deb8d4-d53a-4dd5-8ab8-f0bf4f7bfb9e.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:27:41 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4414", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"8c3d3dcf6fc5f9edaf26c902295396e5\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAAC:45A6:ED5124:11809A1:5DB3A10D" + } + }, + "uuid": "b7deb8d4-d53a-4dd5-8ab8-f0bf4f7bfb9e", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCheckMembership/__files/orgs_jenkinsci-0d9fbee0-4b68-47c0-a981-105ca1998d9a.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCheckMembership/__files/orgs_jenkinsci-0d9fbee0-4b68-47c0-a981-105ca1998d9a.json new file mode 100644 index 0000000000..81befff424 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCheckMembership/__files/orgs_jenkinsci-0d9fbee0-4b68-47c0-a981-105ca1998d9a.json @@ -0,0 +1,46 @@ +{ + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "url": "https://api.github.com/orgs/jenkinsci", + "repos_url": "https://api.github.com/orgs/jenkinsci/repos", + "events_url": "https://api.github.com/orgs/jenkinsci/events", + "hooks_url": "https://api.github.com/orgs/jenkinsci/hooks", + "issues_url": "https://api.github.com/orgs/jenkinsci/issues", + "members_url": "https://api.github.com/orgs/jenkinsci/members{/member}", + "public_members_url": "https://api.github.com/orgs/jenkinsci/public_members{/member}", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "description": "Jenkins is an open source automation server with an unparalleled plugin ecosystem to support practically every tool as part of your delivery pipelines", + "name": "Jenkins", + "company": null, + "blog": "https://jenkins.io", + "location": "Santa Clara, CA", + "email": "jenkinsci-users@googlegroups.com", + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 2204, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/jenkinsci", + "created_at": "2009-07-21T21:03:50Z", + "updated_at": "2019-02-25T15:26:10Z", + "type": "Organization", + "total_private_repos": 0, + "owned_private_repos": 0, + "private_gists": null, + "disk_usage": null, + "collaborators": null, + "billing_email": null, + "default_repository_permission": null, + "members_can_create_repositories": false, + "two_factor_requirement_enabled": null, + "plan": { + "name": "free", + "space": 976562499, + "private_repos": 0, + "filled_seats": 2065, + "seats": 0 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCheckMembership/__files/user-1f8ee76d-944b-4d35-953f-e99ef59186eb.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCheckMembership/__files/user-1f8ee76d-944b-4d35-953f-e99ef59186eb.json new file mode 100644 index 0000000000..a4b576e8a7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCheckMembership/__files/user-1f8ee76d-944b-4d35-953f-e99ef59186eb.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 169, + "public_gists": 7, + "followers": 139, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCheckMembership/__files/users_b-6d6a6b03-f90a-47f7-b0ad-b80aab3b0a50.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCheckMembership/__files/users_b-6d6a6b03-f90a-47f7-b0ad-b80aab3b0a50.json new file mode 100644 index 0000000000..2577f10e5e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCheckMembership/__files/users_b-6d6a6b03-f90a-47f7-b0ad-b80aab3b0a50.json @@ -0,0 +1,33 @@ +{ + "login": "b", + "id": 31712, + "node_id": "MDQ6VXNlcjMxNzEy", + "avatar_url": "https://avatars2.githubusercontent.com/u/31712?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/b", + "html_url": "https://github.com/b", + "followers_url": "https://api.github.com/users/b/followers", + "following_url": "https://api.github.com/users/b/following{/other_user}", + "gists_url": "https://api.github.com/users/b/gists{/gist_id}", + "starred_url": "https://api.github.com/users/b/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/b/subscriptions", + "organizations_url": "https://api.github.com/users/b/orgs", + "repos_url": "https://api.github.com/users/b/repos", + "events_url": "https://api.github.com/users/b/events{/privacy}", + "received_events_url": "https://api.github.com/users/b/received_events", + "type": "User", + "site_admin": false, + "name": "Benjamin Black", + "company": null, + "blog": "http://blog.b3k.us", + "location": "Seattle, WA", + "email": "b@b3k.us", + "hireable": null, + "bio": null, + "public_repos": 95, + "public_gists": 10, + "followers": 169, + "following": 2, + "created_at": "2008-10-29T21:00:03Z", + "updated_at": "2019-08-28T17:35:04Z" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCheckMembership/__files/users_kohsuke-6fc7a54e-d15d-4275-a7aa-396937282c09.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCheckMembership/__files/users_kohsuke-6fc7a54e-d15d-4275-a7aa-396937282c09.json new file mode 100644 index 0000000000..f0eb753281 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCheckMembership/__files/users_kohsuke-6fc7a54e-d15d-4275-a7aa-396937282c09.json @@ -0,0 +1,33 @@ +{ + "login": "kohsuke", + "id": 50003, + "node_id": "MDQ6VXNlcjUwMDAz", + "avatar_url": "https://avatars1.githubusercontent.com/u/50003?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kohsuke", + "html_url": "https://github.com/kohsuke", + "followers_url": "https://api.github.com/users/kohsuke/followers", + "following_url": "https://api.github.com/users/kohsuke/following{/other_user}", + "gists_url": "https://api.github.com/users/kohsuke/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kohsuke/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kohsuke/subscriptions", + "organizations_url": "https://api.github.com/users/kohsuke/orgs", + "repos_url": "https://api.github.com/users/kohsuke/repos", + "events_url": "https://api.github.com/users/kohsuke/events{/privacy}", + "received_events_url": "https://api.github.com/users/kohsuke/received_events", + "type": "User", + "site_admin": false, + "name": "Kohsuke Kawaguchi", + "company": "CloudBees, Inc.", + "blog": "http://www.kohsuke.org/", + "location": "San Jose, California", + "email": "kk@kohsuke.org", + "hireable": null, + "bio": null, + "public_repos": 257, + "public_gists": 109, + "followers": 1692, + "following": 3, + "created_at": "2009-01-28T18:53:21Z", + "updated_at": "2019-10-25T16:53:26Z" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCheckMembership/mappings/orgs_jenkinsci-2-0d9fbe.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCheckMembership/mappings/orgs_jenkinsci-2-0d9fbe.json new file mode 100644 index 0000000000..748da322b3 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCheckMembership/mappings/orgs_jenkinsci-2-0d9fbe.json @@ -0,0 +1,43 @@ +{ + "id": "0d9fbee0-4b68-47c0-a981-105ca1998d9a", + "name": "orgs_jenkinsci", + "request": { + "url": "/orgs/jenkinsci", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_jenkinsci-0d9fbee0-4b68-47c0-a981-105ca1998d9a.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:27:49 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4387", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"ee1dcb6549b6c8fc14267ae3abde8f38\"", + "Last-Modified": "Mon, 25 Feb 2019 15:26:10 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAC0:833C:55B6CA:63EEAF:5DB3A114" + } + }, + "uuid": "0d9fbee0-4b68-47c0-a981-105ca1998d9a", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCheckMembership/mappings/orgs_jenkinsci_members_b-6-ee4228.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCheckMembership/mappings/orgs_jenkinsci_members_b-6-ee4228.json new file mode 100644 index 0000000000..986290aebf --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCheckMembership/mappings/orgs_jenkinsci_members_b-6-ee4228.json @@ -0,0 +1,36 @@ +{ + "id": "ee422893-1cde-4222-af21-010b5143f3f6", + "name": "orgs_jenkinsci_members_b", + "request": { + "url": "/orgs/jenkinsci/members/b", + "method": "GET" + }, + "response": { + "status": 404, + "body": "{\"message\":\"User does not exist or is not a member of the organization\",\"documentation_url\":\"https://developer.github.com/v3/orgs/members/#check-membership\"}", + "headers": { + "Date": "Sat, 26 Oct 2019 01:27:49 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4383", + "X-RateLimit-Reset": "1572055286", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "read:org, repo, user", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAC0:833C:55B6EA:63EED7:5DB3A115" + } + }, + "uuid": "ee422893-1cde-4222-af21-010b5143f3f6", + "persistent": true, + "insertionIndex": 6 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCheckMembership/mappings/orgs_jenkinsci_members_kohsuke-5-073028.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCheckMembership/mappings/orgs_jenkinsci_members_kohsuke-5-073028.json new file mode 100644 index 0000000000..eec40808f2 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCheckMembership/mappings/orgs_jenkinsci_members_kohsuke-5-073028.json @@ -0,0 +1,35 @@ +{ + "id": "073028e0-572f-4e93-ac32-8940c3ac5e68", + "name": "orgs_jenkinsci_members_kohsuke", + "request": { + "url": "/orgs/jenkinsci/members/kohsuke", + "method": "GET" + }, + "response": { + "status": 204, + "headers": { + "Date": "Sat, 26 Oct 2019 01:27:49 GMT", + "Server": "GitHub.com", + "Status": "204 No Content", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4384", + "X-RateLimit-Reset": "1572055286", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "read:org, repo, user", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "CAC0:833C:55B6E3:63EED0:5DB3A115" + } + }, + "uuid": "073028e0-572f-4e93-ac32-8940c3ac5e68", + "persistent": true, + "insertionIndex": 5 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCheckMembership/mappings/orgs_jenkinsci_public_members_b-8-fde843.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCheckMembership/mappings/orgs_jenkinsci_public_members_b-8-fde843.json new file mode 100644 index 0000000000..1230b820da --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCheckMembership/mappings/orgs_jenkinsci_public_members_b-8-fde843.json @@ -0,0 +1,36 @@ +{ + "id": "fde843ef-48ef-4c7c-9c88-368989b98424", + "name": "orgs_jenkinsci_public_members_b", + "request": { + "url": "/orgs/jenkinsci/public_members/b", + "method": "GET" + }, + "response": { + "status": 404, + "body": "{\"message\":\"User does not exist or is not a public member of the organization\",\"documentation_url\":\"https://developer.github.com/v3/orgs/members/#check-public-membership\"}", + "headers": { + "Date": "Sat, 26 Oct 2019 01:27:50 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4381", + "X-RateLimit-Reset": "1572055286", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAC0:833C:55B6F8:63EEE8:5DB3A116" + } + }, + "uuid": "fde843ef-48ef-4c7c-9c88-368989b98424", + "persistent": true, + "insertionIndex": 8 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCheckMembership/mappings/orgs_jenkinsci_public_members_kohsuke-7-0da2da.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCheckMembership/mappings/orgs_jenkinsci_public_members_kohsuke-7-0da2da.json new file mode 100644 index 0000000000..7e361ae19d --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCheckMembership/mappings/orgs_jenkinsci_public_members_kohsuke-7-0da2da.json @@ -0,0 +1,35 @@ +{ + "id": "0da2da27-69d2-416d-ac4c-6913ec0e3c62", + "name": "orgs_jenkinsci_public_members_kohsuke", + "request": { + "url": "/orgs/jenkinsci/public_members/kohsuke", + "method": "GET" + }, + "response": { + "status": 204, + "headers": { + "Date": "Sat, 26 Oct 2019 01:27:50 GMT", + "Server": "GitHub.com", + "Status": "204 No Content", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4382", + "X-RateLimit-Reset": "1572055286", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "CAC0:833C:55B6EF:63EEDF:5DB3A115" + } + }, + "uuid": "0da2da27-69d2-416d-ac4c-6913ec0e3c62", + "persistent": true, + "insertionIndex": 7 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCheckMembership/mappings/user-1-1f8ee7.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCheckMembership/mappings/user-1-1f8ee7.json new file mode 100644 index 0000000000..4de44b30d6 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCheckMembership/mappings/user-1-1f8ee7.json @@ -0,0 +1,43 @@ +{ + "id": "1f8ee76d-944b-4d35-953f-e99ef59186eb", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-1f8ee76d-944b-4d35-953f-e99ef59186eb.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:27:48 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4389", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"8c3d3dcf6fc5f9edaf26c902295396e5\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAC0:833C:55B6BB:63EEA5:5DB3A114" + } + }, + "uuid": "1f8ee76d-944b-4d35-953f-e99ef59186eb", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCheckMembership/mappings/users_b-4-6d6a6b.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCheckMembership/mappings/users_b-4-6d6a6b.json new file mode 100644 index 0000000000..f0ee3080ef --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCheckMembership/mappings/users_b-4-6d6a6b.json @@ -0,0 +1,43 @@ +{ + "id": "6d6a6b03-f90a-47f7-b0ad-b80aab3b0a50", + "name": "users_b", + "request": { + "url": "/users/b", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "users_b-6d6a6b03-f90a-47f7-b0ad-b80aab3b0a50.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:27:49 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4385", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"46c396489784f79825366890a95394ee\"", + "Last-Modified": "Wed, 28 Aug 2019 17:35:04 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAC0:833C:55B6E1:63EECC:5DB3A115" + } + }, + "uuid": "6d6a6b03-f90a-47f7-b0ad-b80aab3b0a50", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCheckMembership/mappings/users_kohsuke-3-6fc7a5.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCheckMembership/mappings/users_kohsuke-3-6fc7a5.json new file mode 100644 index 0000000000..54d08cfa79 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCheckMembership/mappings/users_kohsuke-3-6fc7a5.json @@ -0,0 +1,43 @@ +{ + "id": "6fc7a54e-d15d-4275-a7aa-396937282c09", + "name": "users_kohsuke", + "request": { + "url": "/users/kohsuke", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "users_kohsuke-6fc7a54e-d15d-4275-a7aa-396937282c09.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:27:49 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4386", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"99c27226f3b6139ef2af80ccbcd5d252\"", + "Last-Modified": "Fri, 25 Oct 2019 16:53:26 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAC0:833C:55B6DB:63EEC7:5DB3A115" + } + }, + "uuid": "6fc7a54e-d15d-4275-a7aa-396937282c09", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommit/__files/repos_jenkinsci_jenkins-f502af71-7b74-4106-a246-1728b2c761ec.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommit/__files/repos_jenkinsci_jenkins-f502af71-7b74-4106-a246-1728b2c761ec.json new file mode 100644 index 0000000000..5f1a035df0 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommit/__files/repos_jenkinsci_jenkins-f502af71-7b74-4106-a246-1728b2c761ec.json @@ -0,0 +1,127 @@ +{ + "id": 1103607, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTAzNjA3", + "name": "jenkins", + "full_name": "jenkinsci/jenkins", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jenkins", + "description": "Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jenkins", + "forks_url": "https://api.github.com/repos/jenkinsci/jenkins/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jenkins/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jenkins/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jenkins/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jenkins/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jenkins/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jenkins/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jenkins/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jenkins/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jenkins/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jenkins/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jenkins/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jenkins/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jenkins/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jenkins/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jenkins/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jenkins/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jenkins/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jenkins/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jenkins/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jenkins/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jenkins/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jenkins/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jenkins/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jenkins/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jenkins/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jenkins/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jenkins/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jenkins/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jenkins/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jenkins/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jenkins/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jenkins/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jenkins/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jenkins/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jenkins/deployments", + "created_at": "2010-11-22T21:21:23Z", + "updated_at": "2019-10-26T01:07:22Z", + "pushed_at": "2019-10-25T16:17:56Z", + "git_url": "git://github.com/jenkinsci/jenkins.git", + "ssh_url": "git@github.com:jenkinsci/jenkins.git", + "clone_url": "https://github.com/jenkinsci/jenkins.git", + "svn_url": "https://github.com/jenkinsci/jenkins", + "homepage": "https://jenkins.io/", + "size": 113287, + "stargazers_count": 14167, + "watchers_count": 14167, + "language": "Java", + "has_issues": false, + "has_projects": false, + "has_downloads": false, + "has_wiki": false, + "has_pages": false, + "forks_count": 5807, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 74, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 5807, + "open_issues": 74, + "watchers": 14167, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + }, + "organization": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "network_count": 5807, + "subscribers_count": 902 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommit/__files/repos_jenkinsci_jenkins_commits_08c1c9970af4d609ae754fbe803e06186e3206f7-c46f8ba9-3382-4afd-95b4-5efe98749e1d.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommit/__files/repos_jenkinsci_jenkins_commits_08c1c9970af4d609ae754fbe803e06186e3206f7-c46f8ba9-3382-4afd-95b4-5efe98749e1d.json new file mode 100644 index 0000000000..50c20e1981 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommit/__files/repos_jenkinsci_jenkins_commits_08c1c9970af4d609ae754fbe803e06186e3206f7-c46f8ba9-3382-4afd-95b4-5efe98749e1d.json @@ -0,0 +1,98 @@ +{ + "sha": "08c1c9970af4d609ae754fbe803e06186e3206f7", + "node_id": "MDY6Q29tbWl0MTEwMzYwNzowOGMxYzk5NzBhZjRkNjA5YWU3NTRmYmU4MDNlMDYxODZlMzIwNmY3", + "commit": { + "author": { + "name": "Kohsuke Kawaguchi", + "email": "kk@kohsuke.org", + "date": "2012-04-24T00:16:52Z" + }, + "committer": { + "name": "Kohsuke Kawaguchi", + "email": "kk@kohsuke.org", + "date": "2012-04-24T00:16:52Z" + }, + "message": "creating an RC branch", + "tree": { + "sha": "d96a6e8b7231571b49af150a683177f37a180f04", + "url": "https://api.github.com/repos/jenkinsci/jenkins/git/trees/d96a6e8b7231571b49af150a683177f37a180f04" + }, + "url": "https://api.github.com/repos/jenkinsci/jenkins/git/commits/08c1c9970af4d609ae754fbe803e06186e3206f7", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jenkinsci/jenkins/commits/08c1c9970af4d609ae754fbe803e06186e3206f7", + "html_url": "https://github.com/jenkinsci/jenkins/commit/08c1c9970af4d609ae754fbe803e06186e3206f7", + "comments_url": "https://api.github.com/repos/jenkinsci/jenkins/commits/08c1c9970af4d609ae754fbe803e06186e3206f7/comments", + "author": { + "login": "kohsuke", + "id": 50003, + "node_id": "MDQ6VXNlcjUwMDAz", + "avatar_url": "https://avatars1.githubusercontent.com/u/50003?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kohsuke", + "html_url": "https://github.com/kohsuke", + "followers_url": "https://api.github.com/users/kohsuke/followers", + "following_url": "https://api.github.com/users/kohsuke/following{/other_user}", + "gists_url": "https://api.github.com/users/kohsuke/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kohsuke/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kohsuke/subscriptions", + "organizations_url": "https://api.github.com/users/kohsuke/orgs", + "repos_url": "https://api.github.com/users/kohsuke/repos", + "events_url": "https://api.github.com/users/kohsuke/events{/privacy}", + "received_events_url": "https://api.github.com/users/kohsuke/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "kohsuke", + "id": 50003, + "node_id": "MDQ6VXNlcjUwMDAz", + "avatar_url": "https://avatars1.githubusercontent.com/u/50003?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kohsuke", + "html_url": "https://github.com/kohsuke", + "followers_url": "https://api.github.com/users/kohsuke/followers", + "following_url": "https://api.github.com/users/kohsuke/following{/other_user}", + "gists_url": "https://api.github.com/users/kohsuke/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kohsuke/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kohsuke/subscriptions", + "organizations_url": "https://api.github.com/users/kohsuke/orgs", + "repos_url": "https://api.github.com/users/kohsuke/repos", + "events_url": "https://api.github.com/users/kohsuke/events{/privacy}", + "received_events_url": "https://api.github.com/users/kohsuke/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "e5463e3d53fdf74e917d63dc44ec60bab60a24d4", + "url": "https://api.github.com/repos/jenkinsci/jenkins/commits/e5463e3d53fdf74e917d63dc44ec60bab60a24d4", + "html_url": "https://github.com/jenkinsci/jenkins/commit/e5463e3d53fdf74e917d63dc44ec60bab60a24d4" + } + ], + "stats": { + "total": 48, + "additions": 40, + "deletions": 8 + }, + "files": [ + { + "sha": "04d3e54017542ad0ff46355eababacd4850ccba5", + "filename": "changelog.html", + "status": "modified", + "additions": 40, + "deletions": 8, + "changes": 48, + "blob_url": "https://github.com/jenkinsci/jenkins/blob/08c1c9970af4d609ae754fbe803e06186e3206f7/changelog.html", + "raw_url": "https://github.com/jenkinsci/jenkins/raw/08c1c9970af4d609ae754fbe803e06186e3206f7/changelog.html", + "contents_url": "https://api.github.com/repos/jenkinsci/jenkins/contents/changelog.html?ref=08c1c9970af4d609ae754fbe803e06186e3206f7", + "patch": "@@ -54,6 +54,14 @@\n \n \n
    \n+
      \n+
    • \n+
    \n+
    \n+\n+\n+
    \n+

    What's new in 1.462

    \n
      \n
    • \n Added the filter textbox to the update center selector.\n@@ -70,17 +78,41 @@\n \n \n
    \n-
    \n-\n-\n-\n

    What's new in 1.462 (2012/04/23)

    \n-\n+
      \n+
    • \n+ Added the filter textbox to the update center selector.\n+ (issue 13476)\n+
    • \n+ Move \"View as plain text\" link on console output page from top right to the sidepanel.\n+ (issue 13389)\n+
    • \n+ Convert \"Delete this build\" buttons into links in the sidepanel.\n+ (issue 13387)\n+
    • \n+ Validate project naming regex immediately.\n+ (issue 13524)\n+\n+\n+
    \n

    What's new in 1.462 (2012/04/23)

    \n-\n+
      \n+
    • \n+ Added the filter textbox to the update center selector.\n+ (issue 13476)\n+
    • \n+ Move \"View as plain text\" link on console output page from top right to the sidepanel.\n+ (issue 13389)\n+
    • \n+ Convert \"Delete this build\" buttons into links in the sidepanel.\n+ (issue 13387)\n+
    • \n+ Validate project naming regex immediately.\n+ (issue 13524)\n+\n+\n+
    \n

    What's new in 1.461 (2012/04/23)

    \n
      \n
    • " + } + ] +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommit/__files/repos_jenkinsci_jenkins_commits_e5463e3d53fdf74e917d63dc44ec60bab60a24d4-8ff72064-9c69-42c5-b00f-8fd6d21af7f7.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommit/__files/repos_jenkinsci_jenkins_commits_e5463e3d53fdf74e917d63dc44ec60bab60a24d4-8ff72064-9c69-42c5-b00f-8fd6d21af7f7.json new file mode 100644 index 0000000000..df643571fb --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommit/__files/repos_jenkinsci_jenkins_commits_e5463e3d53fdf74e917d63dc44ec60bab60a24d4-8ff72064-9c69-42c5-b00f-8fd6d21af7f7.json @@ -0,0 +1,115 @@ +{ + "sha": "e5463e3d53fdf74e917d63dc44ec60bab60a24d4", + "node_id": "MDY6Q29tbWl0MTEwMzYwNzplNTQ2M2UzZDUzZmRmNzRlOTE3ZDYzZGM0NGVjNjBiYWI2MGEyNGQ0", + "commit": { + "author": { + "name": "Kohsuke Kawaguchi", + "email": "kk@kohsuke.org", + "date": "2012-04-23T22:32:43Z" + }, + "committer": { + "name": "Kohsuke Kawaguchi", + "email": "kk@kohsuke.org", + "date": "2012-04-23T22:32:43Z" + }, + "message": "merged back the RC branch", + "tree": { + "sha": "4e56d5d5ae7c08d4bbdd7b8607669f37225600b1", + "url": "https://api.github.com/repos/jenkinsci/jenkins/git/trees/4e56d5d5ae7c08d4bbdd7b8607669f37225600b1" + }, + "url": "https://api.github.com/repos/jenkinsci/jenkins/git/commits/e5463e3d53fdf74e917d63dc44ec60bab60a24d4", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jenkinsci/jenkins/commits/e5463e3d53fdf74e917d63dc44ec60bab60a24d4", + "html_url": "https://github.com/jenkinsci/jenkins/commit/e5463e3d53fdf74e917d63dc44ec60bab60a24d4", + "comments_url": "https://api.github.com/repos/jenkinsci/jenkins/commits/e5463e3d53fdf74e917d63dc44ec60bab60a24d4/comments", + "author": { + "login": "kohsuke", + "id": 50003, + "node_id": "MDQ6VXNlcjUwMDAz", + "avatar_url": "https://avatars1.githubusercontent.com/u/50003?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kohsuke", + "html_url": "https://github.com/kohsuke", + "followers_url": "https://api.github.com/users/kohsuke/followers", + "following_url": "https://api.github.com/users/kohsuke/following{/other_user}", + "gists_url": "https://api.github.com/users/kohsuke/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kohsuke/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kohsuke/subscriptions", + "organizations_url": "https://api.github.com/users/kohsuke/orgs", + "repos_url": "https://api.github.com/users/kohsuke/repos", + "events_url": "https://api.github.com/users/kohsuke/events{/privacy}", + "received_events_url": "https://api.github.com/users/kohsuke/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "kohsuke", + "id": 50003, + "node_id": "MDQ6VXNlcjUwMDAz", + "avatar_url": "https://avatars1.githubusercontent.com/u/50003?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kohsuke", + "html_url": "https://github.com/kohsuke", + "followers_url": "https://api.github.com/users/kohsuke/followers", + "following_url": "https://api.github.com/users/kohsuke/following{/other_user}", + "gists_url": "https://api.github.com/users/kohsuke/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kohsuke/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kohsuke/subscriptions", + "organizations_url": "https://api.github.com/users/kohsuke/orgs", + "repos_url": "https://api.github.com/users/kohsuke/repos", + "events_url": "https://api.github.com/users/kohsuke/events{/privacy}", + "received_events_url": "https://api.github.com/users/kohsuke/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "8060a13e57aeb4d15cfe8578c01ca3cc47dae03a", + "url": "https://api.github.com/repos/jenkinsci/jenkins/commits/8060a13e57aeb4d15cfe8578c01ca3cc47dae03a", + "html_url": "https://github.com/jenkinsci/jenkins/commit/8060a13e57aeb4d15cfe8578c01ca3cc47dae03a" + }, + { + "sha": "6f841d459ac6a568632a26c00959d5cdf57fc945", + "url": "https://api.github.com/repos/jenkinsci/jenkins/commits/6f841d459ac6a568632a26c00959d5cdf57fc945", + "html_url": "https://github.com/jenkinsci/jenkins/commit/6f841d459ac6a568632a26c00959d5cdf57fc945" + } + ], + "stats": { + "total": 22, + "additions": 20, + "deletions": 2 + }, + "files": [ + { + "sha": "0c83b64e16cc54c0d6d097542929541cbb9a5cd0", + "filename": "changelog.html", + "status": "modified", + "additions": 8, + "deletions": 2, + "changes": 10, + "blob_url": "https://github.com/jenkinsci/jenkins/blob/e5463e3d53fdf74e917d63dc44ec60bab60a24d4/changelog.html", + "raw_url": "https://github.com/jenkinsci/jenkins/raw/e5463e3d53fdf74e917d63dc44ec60bab60a24d4/changelog.html", + "contents_url": "https://api.github.com/repos/jenkinsci/jenkins/contents/changelog.html?ref=e5463e3d53fdf74e917d63dc44ec60bab60a24d4", + "patch": "@@ -74,7 +74,14 @@\n \n \n \n+

      What's new in 1.462 (2012/04/23)

      \n+\n+

      What's new in 1.462 (2012/04/23)

      \n+\n+

      What's new in 1.461 (2012/04/23)

      \n
        \n
      • \n Flag -U is not used during the parsing step of a Maven Job\n@@ -86,7 +93,6 @@

        What's new in 1.461

        \n allow j/k navigation for search results\n (issue 13105) \n
      \n-\n

      What's new in 1.460 (2012/04/14)

      \n
        \n
      • " + }, + { + "sha": "3c0f1607e1408738ee2c0ff5eb286387b230a050", + "filename": "debian/debian/changelog", + "status": "modified", + "additions": 12, + "deletions": 0, + "changes": 12, + "blob_url": "https://github.com/jenkinsci/jenkins/blob/e5463e3d53fdf74e917d63dc44ec60bab60a24d4/debian/debian/changelog", + "raw_url": "https://github.com/jenkinsci/jenkins/raw/e5463e3d53fdf74e917d63dc44ec60bab60a24d4/debian/debian/changelog", + "contents_url": "https://api.github.com/repos/jenkinsci/jenkins/contents/debian/debian/changelog?ref=e5463e3d53fdf74e917d63dc44ec60bab60a24d4", + "patch": "@@ -1,3 +1,15 @@\n+jenkins (1.461) unstable; urgency=low\n+\n+ * See http://jenkins-ci.org/changelog for more details.\n+\n+ -- Kohsuke Kawaguchi Mon, 23 Apr 2012 15:17:44 -0700\n+\n+jenkins (1.461) unstable; urgency=low\n+\n+ * See http://jenkins-ci.org/changelog for more details.\n+\n+ -- Kohsuke Kawaguchi Mon, 23 Apr 2012 13:51:09 -0700\n+\n jenkins (1.460) unstable; urgency=low\n \n * See http://jenkins-ci.org/changelog for more details." + } + ] +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommit/__files/repos_jenkinsci_jenkins_git_trees_216d657eb6b24cb3ee300cf9dfe97b4131b7800b-ba22502f-be39-4226-bf77-729b8fe2351a.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommit/__files/repos_jenkinsci_jenkins_git_trees_216d657eb6b24cb3ee300cf9dfe97b4131b7800b-ba22502f-be39-4226-bf77-729b8fe2351a.json new file mode 100644 index 0000000000..5f224c510c --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommit/__files/repos_jenkinsci_jenkins_git_trees_216d657eb6b24cb3ee300cf9dfe97b4131b7800b-ba22502f-be39-4226-bf77-729b8fe2351a.json @@ -0,0 +1,45 @@ +{ + "sha": "216d657eb6b24cb3ee300cf9dfe97b4131b7800b", + "url": "https://api.github.com/repos/jenkinsci/jenkins/git/trees/216d657eb6b24cb3ee300cf9dfe97b4131b7800b", + "tree": [ + { + "path": ".gitignore", + "mode": "100755", + "type": "blob", + "sha": "e500657ff925b81739b25e2adf2121a6f201cc3e", + "size": 17, + "url": "https://api.github.com/repos/jenkinsci/jenkins/git/blobs/e500657ff925b81739b25e2adf2121a6f201cc3e" + }, + { + "path": "images", + "mode": "040000", + "type": "tree", + "sha": "ad3d16ad28fcc45519d0996c7e8f8b255ec0d196", + "url": "https://api.github.com/repos/jenkinsci/jenkins/git/trees/ad3d16ad28fcc45519d0996c7e8f8b255ec0d196" + }, + { + "path": "nbactions.xml", + "mode": "100644", + "type": "blob", + "sha": "3461cc32706bf8f0dd387b3cafa9511d8b45946e", + "size": 1627, + "url": "https://api.github.com/repos/jenkinsci/jenkins/git/blobs/3461cc32706bf8f0dd387b3cafa9511d8b45946e" + }, + { + "path": "pom.xml", + "mode": "100644", + "type": "blob", + "sha": "fef2e34182f5f5bb0c31b8b62d0048a920812158", + "size": 18790, + "url": "https://api.github.com/repos/jenkinsci/jenkins/git/blobs/fef2e34182f5f5bb0c31b8b62d0048a920812158" + }, + { + "path": "src", + "mode": "040000", + "type": "tree", + "sha": "f039b32c15ae8deb42819151c5f87804259fad8e", + "url": "https://api.github.com/repos/jenkinsci/jenkins/git/trees/f039b32c15ae8deb42819151c5f87804259fad8e" + } + ], + "truncated": false +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommit/__files/repos_jenkinsci_jenkins_git_trees_d96a6e8b7231571b49af150a683177f37a180f04-d30d6520-52dd-4f0c-9254-59fcdd4eeb86.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommit/__files/repos_jenkinsci_jenkins_git_trees_d96a6e8b7231571b49af150a683177f37a180f04-d30d6520-52dd-4f0c-9254-59fcdd4eeb86.json new file mode 100644 index 0000000000..0d9297a4b5 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommit/__files/repos_jenkinsci_jenkins_git_trees_d96a6e8b7231571b49af150a683177f37a180f04-d30d6520-52dd-4f0c-9254-59fcdd4eeb86.json @@ -0,0 +1,217 @@ +{ + "sha": "d96a6e8b7231571b49af150a683177f37a180f04", + "url": "https://api.github.com/repos/jenkinsci/jenkins/git/trees/d96a6e8b7231571b49af150a683177f37a180f04", + "tree": [ + { + "path": ".gitignore", + "mode": "100644", + "type": "blob", + "sha": "66394a91cad2c5e142c52e2681f3d04038261527", + "size": 441, + "url": "https://api.github.com/repos/jenkinsci/jenkins/git/blobs/66394a91cad2c5e142c52e2681f3d04038261527" + }, + { + "path": ".jenkins", + "mode": "100644", + "type": "blob", + "sha": "652bd394f0252c7f1347be196dc1b2173accd0cf", + "size": 93, + "url": "https://api.github.com/repos/jenkinsci/jenkins/git/blobs/652bd394f0252c7f1347be196dc1b2173accd0cf" + }, + { + "path": "BUILDING.TXT", + "mode": "100644", + "type": "blob", + "sha": "9620b1b88b9f31a8b32cc37c2da0316d5c639d25", + "size": 287, + "url": "https://api.github.com/repos/jenkinsci/jenkins/git/blobs/9620b1b88b9f31a8b32cc37c2da0316d5c639d25" + }, + { + "path": "LICENSE.txt", + "mode": "100644", + "type": "blob", + "sha": "b3249a138b58c24fbe712e51c9827fa97c3efa70", + "size": 1144, + "url": "https://api.github.com/repos/jenkinsci/jenkins/git/blobs/b3249a138b58c24fbe712e51c9827fa97c3efa70" + }, + { + "path": "README.md", + "mode": "100644", + "type": "blob", + "sha": "2df751a11a4904182fc43d969de8e6d0ceef33c0", + "size": 1033, + "url": "https://api.github.com/repos/jenkinsci/jenkins/git/blobs/2df751a11a4904182fc43d969de8e6d0ceef33c0" + }, + { + "path": "assembly-src.xml", + "mode": "100644", + "type": "blob", + "sha": "851623064c9d27d0d0cd6340f8bf1de4f5ea93d0", + "size": 1937, + "url": "https://api.github.com/repos/jenkinsci/jenkins/git/blobs/851623064c9d27d0d0cd6340f8bf1de4f5ea93d0" + }, + { + "path": "changelog.html", + "mode": "100644", + "type": "blob", + "sha": "04d3e54017542ad0ff46355eababacd4850ccba5", + "size": 219753, + "url": "https://api.github.com/repos/jenkinsci/jenkins/git/blobs/04d3e54017542ad0ff46355eababacd4850ccba5" + }, + { + "path": "cli", + "mode": "040000", + "type": "tree", + "sha": "248bcb60672bf6fe97f9954c66600433cd56901d", + "url": "https://api.github.com/repos/jenkinsci/jenkins/git/trees/248bcb60672bf6fe97f9954c66600433cd56901d" + }, + { + "path": "core", + "mode": "040000", + "type": "tree", + "sha": "06dc1d486f7fa4a10a3183fce9b531ccfff600dd", + "url": "https://api.github.com/repos/jenkinsci/jenkins/git/trees/06dc1d486f7fa4a10a3183fce9b531ccfff600dd" + }, + { + "path": "debian", + "mode": "040000", + "type": "tree", + "sha": "37ec5c6670aefdce71a2c4062c752f9ababfc5ae", + "url": "https://api.github.com/repos/jenkinsci/jenkins/git/trees/37ec5c6670aefdce71a2c4062c752f9ababfc5ae" + }, + { + "path": "dummy.keystore", + "mode": "100644", + "type": "blob", + "sha": "a353377aca92b2cead3697ee42c9278d39320fa4", + "size": 1320, + "url": "https://api.github.com/repos/jenkinsci/jenkins/git/blobs/a353377aca92b2cead3697ee42c9278d39320fa4" + }, + { + "path": "ebuild", + "mode": "040000", + "type": "tree", + "sha": "0a4e94466a714487b7c1916ad316a3e41f32a364", + "url": "https://api.github.com/repos/jenkinsci/jenkins/git/trees/0a4e94466a714487b7c1916ad316a3e41f32a364" + }, + { + "path": "ips", + "mode": "040000", + "type": "tree", + "sha": "35ec0860150597ad54ef2be8f634566bcf9ae807", + "url": "https://api.github.com/repos/jenkinsci/jenkins/git/trees/35ec0860150597ad54ef2be8f634566bcf9ae807" + }, + { + "path": "licenseCompleter.groovy", + "mode": "100644", + "type": "blob", + "sha": "1df9f4208a30246a3ae13f6af2254be33519057d", + "size": 4556, + "url": "https://api.github.com/repos/jenkinsci/jenkins/git/blobs/1df9f4208a30246a3ae13f6af2254be33519057d" + }, + { + "path": "maven-plugin", + "mode": "040000", + "type": "tree", + "sha": "bc6560e847a20b5884a410ce5923a7accbb55b8c", + "url": "https://api.github.com/repos/jenkinsci/jenkins/git/trees/bc6560e847a20b5884a410ce5923a7accbb55b8c" + }, + { + "path": "msi", + "mode": "040000", + "type": "tree", + "sha": "12a20d74ac9c11a570f49cea90a85b6a531c8938", + "url": "https://api.github.com/repos/jenkinsci/jenkins/git/trees/12a20d74ac9c11a570f49cea90a85b6a531c8938" + }, + { + "path": "opensuse", + "mode": "040000", + "type": "tree", + "sha": "cd38934df44b4c3221f0fbca7c1ae8dd83eb0346", + "url": "https://api.github.com/repos/jenkinsci/jenkins/git/trees/cd38934df44b4c3221f0fbca7c1ae8dd83eb0346" + }, + { + "path": "osx", + "mode": "040000", + "type": "tree", + "sha": "fb010ba70f4179daf83a5ae37c3d684b3085abad", + "url": "https://api.github.com/repos/jenkinsci/jenkins/git/trees/fb010ba70f4179daf83a5ae37c3d684b3085abad" + }, + { + "path": "plugins", + "mode": "040000", + "type": "tree", + "sha": "3f1aef66e70d19f42bc90a1c42b0293b99ae7c42", + "url": "https://api.github.com/repos/jenkinsci/jenkins/git/trees/3f1aef66e70d19f42bc90a1c42b0293b99ae7c42" + }, + { + "path": "pom.xml", + "mode": "100644", + "type": "blob", + "sha": "6bfdff966a8e9ed14c58e04504bb6d2c105fcddf", + "size": 27424, + "url": "https://api.github.com/repos/jenkinsci/jenkins/git/blobs/6bfdff966a8e9ed14c58e04504bb6d2c105fcddf" + }, + { + "path": "rc.changelog.rb", + "mode": "100644", + "type": "blob", + "sha": "7f3051b461197ca2b7a4440e3651930c42a4bd58", + "size": 1737, + "url": "https://api.github.com/repos/jenkinsci/jenkins/git/blobs/7f3051b461197ca2b7a4440e3651930c42a4bd58" + }, + { + "path": "rpm", + "mode": "040000", + "type": "tree", + "sha": "203ee4411eb9c05674afeec91eefc426f2dcb3e6", + "url": "https://api.github.com/repos/jenkinsci/jenkins/git/trees/203ee4411eb9c05674afeec91eefc426f2dcb3e6" + }, + { + "path": "show-pom-version.rb", + "mode": "100755", + "type": "blob", + "sha": "919e6e524ee1a180e8ebf1f2e0a79905db4cadbf", + "size": 320, + "url": "https://api.github.com/repos/jenkinsci/jenkins/git/blobs/919e6e524ee1a180e8ebf1f2e0a79905db4cadbf" + }, + { + "path": "test", + "mode": "040000", + "type": "tree", + "sha": "cde7393d6f5ce16310db1f469990ae2439e02340", + "url": "https://api.github.com/repos/jenkinsci/jenkins/git/trees/cde7393d6f5ce16310db1f469990ae2439e02340" + }, + { + "path": "todo.txt", + "mode": "100644", + "type": "blob", + "sha": "187cdf651cbf44196886f87327dc3968443174fb", + "size": 116, + "url": "https://api.github.com/repos/jenkinsci/jenkins/git/blobs/187cdf651cbf44196886f87327dc3968443174fb" + }, + { + "path": "translation-tool.pl", + "mode": "100755", + "type": "blob", + "sha": "11ca0dc92e660a35a6b9a94d4c7d520feeeb56e2", + "size": 13335, + "url": "https://api.github.com/repos/jenkinsci/jenkins/git/blobs/11ca0dc92e660a35a6b9a94d4c7d520feeeb56e2" + }, + { + "path": "ui-samples-plugin", + "mode": "040000", + "type": "tree", + "sha": "86d4e6eb13ed9c81a23e2534a3a145787205af27", + "url": "https://api.github.com/repos/jenkinsci/jenkins/git/trees/86d4e6eb13ed9c81a23e2534a3a145787205af27" + }, + { + "path": "war", + "mode": "040000", + "type": "tree", + "sha": "216d657eb6b24cb3ee300cf9dfe97b4131b7800b", + "url": "https://api.github.com/repos/jenkinsci/jenkins/git/trees/216d657eb6b24cb3ee300cf9dfe97b4131b7800b" + } + ], + "truncated": false +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommit/__files/user-bddf3899-0de4-49c5-af35-56e5b63ef972.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommit/__files/user-bddf3899-0de4-49c5-af35-56e5b63ef972.json new file mode 100644 index 0000000000..a4b576e8a7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommit/__files/user-bddf3899-0de4-49c5-af35-56e5b63ef972.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 169, + "public_gists": 7, + "followers": 139, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommit/__files/users_jenkinsci-0eb97309-f0ae-460d-9fbe-f091372110eb.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommit/__files/users_jenkinsci-0eb97309-f0ae-460d-9fbe-f091372110eb.json new file mode 100644 index 0000000000..12ac7bd90a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommit/__files/users_jenkinsci-0eb97309-f0ae-460d-9fbe-f091372110eb.json @@ -0,0 +1,33 @@ +{ + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false, + "name": "Jenkins", + "company": null, + "blog": "https://jenkins.io", + "location": "Santa Clara, CA", + "email": "jenkinsci-users@googlegroups.com", + "hireable": null, + "bio": "Jenkins is an open source automation server with an unparalleled plugin ecosystem to support practically every tool as part of your delivery pipelines", + "public_repos": 2204, + "public_gists": 0, + "followers": 0, + "following": 0, + "created_at": "2009-07-21T21:03:50Z", + "updated_at": "2019-02-25T15:26:10Z" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommit/mappings/repos_jenkinsci_jenkins-3-f502af.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommit/mappings/repos_jenkinsci_jenkins-3-f502af.json new file mode 100644 index 0000000000..92bfac7b7d --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommit/mappings/repos_jenkinsci_jenkins-3-f502af.json @@ -0,0 +1,43 @@ +{ + "id": "f502af71-7b74-4106-a246-1728b2c761ec", + "name": "repos_jenkinsci_jenkins", + "request": { + "url": "/repos/jenkinsci/jenkins", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_jenkinsci_jenkins-f502af71-7b74-4106-a246-1728b2c761ec.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:42 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4288", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"bc93de689b79708d9501fd02bc1f7696\"", + "Last-Modified": "Sat, 26 Oct 2019 01:07:22 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CB0D:1CC2:1A23FD:1EF37A:5DB3A149" + } + }, + "uuid": "f502af71-7b74-4106-a246-1728b2c761ec", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommit/mappings/repos_jenkinsci_jenkins_commits_08c1c9970af4d609ae754fbe803e06186e3206f7-4-c46f8b.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommit/mappings/repos_jenkinsci_jenkins_commits_08c1c9970af4d609ae754fbe803e06186e3206f7-4-c46f8b.json new file mode 100644 index 0000000000..f56300d182 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommit/mappings/repos_jenkinsci_jenkins_commits_08c1c9970af4d609ae754fbe803e06186e3206f7-4-c46f8b.json @@ -0,0 +1,43 @@ +{ + "id": "c46f8ba9-3382-4afd-95b4-5efe98749e1d", + "name": "repos_jenkinsci_jenkins_commits_08c1c9970af4d609ae754fbe803e06186e3206f7", + "request": { + "url": "/repos/jenkinsci/jenkins/commits/08c1c9970af4d609ae754fbe803e06186e3206f7", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_jenkinsci_jenkins_commits_08c1c9970af4d609ae754fbe803e06186e3206f7-c46f8ba9-3382-4afd-95b4-5efe98749e1d.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:42 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4287", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"cc8e7993a42bab15efbff39d175d0b10\"", + "Last-Modified": "Tue, 24 Apr 2012 00:16:52 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CB0D:1CC2:1A2400:1EF37E:5DB3A14A" + } + }, + "uuid": "c46f8ba9-3382-4afd-95b4-5efe98749e1d", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommit/mappings/repos_jenkinsci_jenkins_commits_e5463e3d53fdf74e917d63dc44ec60bab60a24d4-5-8ff720.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommit/mappings/repos_jenkinsci_jenkins_commits_e5463e3d53fdf74e917d63dc44ec60bab60a24d4-5-8ff720.json new file mode 100644 index 0000000000..3a75f33834 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommit/mappings/repos_jenkinsci_jenkins_commits_e5463e3d53fdf74e917d63dc44ec60bab60a24d4-5-8ff720.json @@ -0,0 +1,43 @@ +{ + "id": "8ff72064-9c69-42c5-b00f-8fd6d21af7f7", + "name": "repos_jenkinsci_jenkins_commits_e5463e3d53fdf74e917d63dc44ec60bab60a24d4", + "request": { + "url": "/repos/jenkinsci/jenkins/commits/e5463e3d53fdf74e917d63dc44ec60bab60a24d4", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_jenkinsci_jenkins_commits_e5463e3d53fdf74e917d63dc44ec60bab60a24d4-8ff72064-9c69-42c5-b00f-8fd6d21af7f7.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:42 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4286", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"96de82f912d65c05b4e1f392051a6c2a\"", + "Last-Modified": "Mon, 23 Apr 2012 22:32:43 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CB0D:1CC2:1A2403:1EF383:5DB3A14A" + } + }, + "uuid": "8ff72064-9c69-42c5-b00f-8fd6d21af7f7", + "persistent": true, + "insertionIndex": 5 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommit/mappings/repos_jenkinsci_jenkins_git_blobs_187cdf651cbf44196886f87327dc3968443174fb-7-176ac3.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommit/mappings/repos_jenkinsci_jenkins_git_blobs_187cdf651cbf44196886f87327dc3968443174fb-7-176ac3.json new file mode 100644 index 0000000000..046ee5080b --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommit/mappings/repos_jenkinsci_jenkins_git_blobs_187cdf651cbf44196886f87327dc3968443174fb-7-176ac3.json @@ -0,0 +1,42 @@ +{ + "id": "176ac350-0490-4f5e-b7e8-0b01c44dea94", + "name": "repos_jenkinsci_jenkins_git_blobs_187cdf651cbf44196886f87327dc3968443174fb", + "request": { + "url": "/repos/jenkinsci/jenkins/git/blobs/187cdf651cbf44196886f87327dc3968443174fb", + "method": "GET" + }, + "response": { + "status": 200, + "body": " executor rendering.\n we'd like to sort executors so that WideJobProperty can merge its rendering with parents.\n", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:42 GMT", + "Content-Type": "text/plain; charset=iso-8859-1", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4284", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"12c405e30ecc6d145c83f20c3a8092ff\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CB0D:1CC2:1A240A:1EF38A:5DB3A14A" + } + }, + "uuid": "176ac350-0490-4f5e-b7e8-0b01c44dea94", + "persistent": true, + "insertionIndex": 7 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommit/mappings/repos_jenkinsci_jenkins_git_trees_216d657eb6b24cb3ee300cf9dfe97b4131b7800b-8-ba2250.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommit/mappings/repos_jenkinsci_jenkins_git_trees_216d657eb6b24cb3ee300cf9dfe97b4131b7800b-8-ba2250.json new file mode 100644 index 0000000000..1c3130f19a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommit/mappings/repos_jenkinsci_jenkins_git_trees_216d657eb6b24cb3ee300cf9dfe97b4131b7800b-8-ba2250.json @@ -0,0 +1,43 @@ +{ + "id": "ba22502f-be39-4226-bf77-729b8fe2351a", + "name": "repos_jenkinsci_jenkins_git_trees_216d657eb6b24cb3ee300cf9dfe97b4131b7800b", + "request": { + "url": "/repos/jenkinsci/jenkins/git/trees/216d657eb6b24cb3ee300cf9dfe97b4131b7800b", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_jenkinsci_jenkins_git_trees_216d657eb6b24cb3ee300cf9dfe97b4131b7800b-ba22502f-be39-4226-bf77-729b8fe2351a.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:43 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4283", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"6d19930d413337f528ff26d8701d7faf\"", + "Last-Modified": "Sat, 26 Oct 2019 01:07:22 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CB0D:1CC2:1A240D:1EF38D:5DB3A14A" + } + }, + "uuid": "ba22502f-be39-4226-bf77-729b8fe2351a", + "persistent": true, + "insertionIndex": 8 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommit/mappings/repos_jenkinsci_jenkins_git_trees_d96a6e8b7231571b49af150a683177f37a180f04-6-d30d65.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommit/mappings/repos_jenkinsci_jenkins_git_trees_d96a6e8b7231571b49af150a683177f37a180f04-6-d30d65.json new file mode 100644 index 0000000000..e4a7934a93 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommit/mappings/repos_jenkinsci_jenkins_git_trees_d96a6e8b7231571b49af150a683177f37a180f04-6-d30d65.json @@ -0,0 +1,43 @@ +{ + "id": "d30d6520-52dd-4f0c-9254-59fcdd4eeb86", + "name": "repos_jenkinsci_jenkins_git_trees_d96a6e8b7231571b49af150a683177f37a180f04", + "request": { + "url": "/repos/jenkinsci/jenkins/git/trees/d96a6e8b7231571b49af150a683177f37a180f04", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_jenkinsci_jenkins_git_trees_d96a6e8b7231571b49af150a683177f37a180f04-d30d6520-52dd-4f0c-9254-59fcdd4eeb86.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:42 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4285", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"f58ef0149d3b35957c18ea74df832bda\"", + "Last-Modified": "Sat, 26 Oct 2019 01:07:22 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CB0D:1CC2:1A2408:1EF387:5DB3A14A" + } + }, + "uuid": "d30d6520-52dd-4f0c-9254-59fcdd4eeb86", + "persistent": true, + "insertionIndex": 6 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommit/mappings/user-1-bddf38.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommit/mappings/user-1-bddf38.json new file mode 100644 index 0000000000..c8bdc42963 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommit/mappings/user-1-bddf38.json @@ -0,0 +1,43 @@ +{ + "id": "bddf3899-0de4-49c5-af35-56e5b63ef972", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-bddf3899-0de4-49c5-af35-56e5b63ef972.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:41 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4291", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"8c3d3dcf6fc5f9edaf26c902295396e5\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CB0D:1CC2:1A23F6:1EF373:5DB3A149" + } + }, + "uuid": "bddf3899-0de4-49c5-af35-56e5b63ef972", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommit/mappings/users_jenkinsci-2-0eb973.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommit/mappings/users_jenkinsci-2-0eb973.json new file mode 100644 index 0000000000..7f7893cad2 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommit/mappings/users_jenkinsci-2-0eb973.json @@ -0,0 +1,43 @@ +{ + "id": "0eb97309-f0ae-460d-9fbe-f091372110eb", + "name": "users_jenkinsci", + "request": { + "url": "/users/jenkinsci", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "users_jenkinsci-0eb97309-f0ae-460d-9fbe-f091372110eb.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:41 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4289", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"cf08d94b8454daf0770638531436c38e\"", + "Last-Modified": "Mon, 25 Feb 2019 15:26:10 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CB0D:1CC2:1A23FB:1EF375:5DB3A149" + } + }, + "uuid": "0eb97309-f0ae-460d-9fbe-f091372110eb", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommitComment/__files/repos_jenkinsci_jenkins-fe185aa7-c9e7-44d3-86e9-fd751abcf0d7.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommitComment/__files/repos_jenkinsci_jenkins-fe185aa7-c9e7-44d3-86e9-fd751abcf0d7.json new file mode 100644 index 0000000000..5f1a035df0 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommitComment/__files/repos_jenkinsci_jenkins-fe185aa7-c9e7-44d3-86e9-fd751abcf0d7.json @@ -0,0 +1,127 @@ +{ + "id": 1103607, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTAzNjA3", + "name": "jenkins", + "full_name": "jenkinsci/jenkins", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jenkins", + "description": "Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jenkins", + "forks_url": "https://api.github.com/repos/jenkinsci/jenkins/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jenkins/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jenkins/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jenkins/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jenkins/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jenkins/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jenkins/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jenkins/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jenkins/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jenkins/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jenkins/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jenkins/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jenkins/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jenkins/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jenkins/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jenkins/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jenkins/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jenkins/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jenkins/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jenkins/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jenkins/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jenkins/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jenkins/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jenkins/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jenkins/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jenkins/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jenkins/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jenkins/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jenkins/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jenkins/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jenkins/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jenkins/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jenkins/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jenkins/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jenkins/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jenkins/deployments", + "created_at": "2010-11-22T21:21:23Z", + "updated_at": "2019-10-26T01:07:22Z", + "pushed_at": "2019-10-25T16:17:56Z", + "git_url": "git://github.com/jenkinsci/jenkins.git", + "ssh_url": "git@github.com:jenkinsci/jenkins.git", + "clone_url": "https://github.com/jenkinsci/jenkins.git", + "svn_url": "https://github.com/jenkinsci/jenkins", + "homepage": "https://jenkins.io/", + "size": 113287, + "stargazers_count": 14167, + "watchers_count": 14167, + "language": "Java", + "has_issues": false, + "has_projects": false, + "has_downloads": false, + "has_wiki": false, + "has_pages": false, + "forks_count": 5807, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 74, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 5807, + "open_issues": 74, + "watchers": 14167, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + }, + "organization": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "network_count": 5807, + "subscribers_count": 902 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommitComment/__files/repos_jenkinsci_jenkins_comments-c4ee8bf9-1fc1-4535-ac30-f4133283e22f.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommitComment/__files/repos_jenkinsci_jenkins_comments-c4ee8bf9-1fc1-4535-ac30-f4133283e22f.json new file mode 100644 index 0000000000..518c34865a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommitComment/__files/repos_jenkinsci_jenkins_comments-c4ee8bf9-1fc1-4535-ac30-f4133283e22f.json @@ -0,0 +1,1022 @@ +[ + { + "url": "https://api.github.com/repos/jenkinsci/jenkins/comments/215529", + "html_url": "https://github.com/jenkinsci/jenkins/commit/c06f6e459cd934a3335ffe433e0bb558a6d78cac#commitcomment-215529", + "id": 215529, + "node_id": "MDEzOkNvbW1pdENvbW1lbnQyMTU1Mjk=", + "user": { + "login": "emanuelez", + "id": 473050, + "node_id": "MDQ6VXNlcjQ3MzA1MA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/473050?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/emanuelez", + "html_url": "https://github.com/emanuelez", + "followers_url": "https://api.github.com/users/emanuelez/followers", + "following_url": "https://api.github.com/users/emanuelez/following{/other_user}", + "gists_url": "https://api.github.com/users/emanuelez/gists{/gist_id}", + "starred_url": "https://api.github.com/users/emanuelez/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/emanuelez/subscriptions", + "organizations_url": "https://api.github.com/users/emanuelez/orgs", + "repos_url": "https://api.github.com/users/emanuelez/repos", + "events_url": "https://api.github.com/users/emanuelez/events{/privacy}", + "received_events_url": "https://api.github.com/users/emanuelez/received_events", + "type": "User", + "site_admin": false + }, + "position": null, + "line": null, + "path": null, + "commit_id": "c06f6e459cd934a3335ffe433e0bb558a6d78cac", + "created_at": "2010-12-11T11:24:49Z", + "updated_at": "2010-12-11T11:24:49Z", + "author_association": "MEMBER", + "body": "Why not using Google Collections?\nIterables.filter(iterable, Predicates.notNull());\n" + }, + { + "url": "https://api.github.com/repos/jenkinsci/jenkins/comments/216228", + "html_url": "https://github.com/jenkinsci/jenkins/commit/c06f6e459cd934a3335ffe433e0bb558a6d78cac#commitcomment-216228", + "id": 216228, + "node_id": "MDEzOkNvbW1pdENvbW1lbnQyMTYyMjg=", + "user": { + "login": "kohsuke", + "id": 50003, + "node_id": "MDQ6VXNlcjUwMDAz", + "avatar_url": "https://avatars1.githubusercontent.com/u/50003?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kohsuke", + "html_url": "https://github.com/kohsuke", + "followers_url": "https://api.github.com/users/kohsuke/followers", + "following_url": "https://api.github.com/users/kohsuke/following{/other_user}", + "gists_url": "https://api.github.com/users/kohsuke/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kohsuke/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kohsuke/subscriptions", + "organizations_url": "https://api.github.com/users/kohsuke/orgs", + "repos_url": "https://api.github.com/users/kohsuke/repos", + "events_url": "https://api.github.com/users/kohsuke/events{/privacy}", + "received_events_url": "https://api.github.com/users/kohsuke/received_events", + "type": "User", + "site_admin": false + }, + "position": null, + "line": null, + "path": null, + "commit_id": "c06f6e459cd934a3335ffe433e0bb558a6d78cac", + "created_at": "2010-12-13T07:31:18Z", + "updated_at": "2010-12-13T07:31:18Z", + "author_association": "MEMBER", + "body": "Good catch. Fixed in 731c8aaa5fe3d2844f7b567b30512624a3f89517\nFeel free to just commit this kind of change by yourself going forward :-)\n" + }, + { + "url": "https://api.github.com/repos/jenkinsci/jenkins/comments/225762", + "html_url": "https://github.com/jenkinsci/jenkins/commit/c85e60f14e0ccd5b45a1c4fa0a96b794f39e238c#commitcomment-225762", + "id": 225762, + "node_id": "MDEzOkNvbW1pdENvbW1lbnQyMjU3NjI=", + "user": { + "login": "ssogabe", + "id": 271370, + "node_id": "MDQ6VXNlcjI3MTM3MA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/271370?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ssogabe", + "html_url": "https://github.com/ssogabe", + "followers_url": "https://api.github.com/users/ssogabe/followers", + "following_url": "https://api.github.com/users/ssogabe/following{/other_user}", + "gists_url": "https://api.github.com/users/ssogabe/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ssogabe/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ssogabe/subscriptions", + "organizations_url": "https://api.github.com/users/ssogabe/orgs", + "repos_url": "https://api.github.com/users/ssogabe/repos", + "events_url": "https://api.github.com/users/ssogabe/events{/privacy}", + "received_events_url": "https://api.github.com/users/ssogabe/received_events", + "type": "User", + "site_admin": false + }, + "position": null, + "line": null, + "path": null, + "commit_id": "c85e60f14e0ccd5b45a1c4fa0a96b794f39e238c", + "created_at": "2010-12-24T13:35:06Z", + "updated_at": "2010-12-24T13:35:06Z", + "author_association": "MEMBER", + "body": "orz\n" + }, + { + "url": "https://api.github.com/repos/jenkinsci/jenkins/comments/226477", + "html_url": "https://github.com/jenkinsci/jenkins/commit/87450503def17e42a06e80450992f58cacef3635#commitcomment-226477", + "id": 226477, + "node_id": "MDEzOkNvbW1pdENvbW1lbnQyMjY0Nzc=", + "user": { + "login": "mfriedenhagen", + "id": 125281, + "node_id": "MDQ6VXNlcjEyNTI4MQ==", + "avatar_url": "https://avatars3.githubusercontent.com/u/125281?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mfriedenhagen", + "html_url": "https://github.com/mfriedenhagen", + "followers_url": "https://api.github.com/users/mfriedenhagen/followers", + "following_url": "https://api.github.com/users/mfriedenhagen/following{/other_user}", + "gists_url": "https://api.github.com/users/mfriedenhagen/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mfriedenhagen/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mfriedenhagen/subscriptions", + "organizations_url": "https://api.github.com/users/mfriedenhagen/orgs", + "repos_url": "https://api.github.com/users/mfriedenhagen/repos", + "events_url": "https://api.github.com/users/mfriedenhagen/events{/privacy}", + "received_events_url": "https://api.github.com/users/mfriedenhagen/received_events", + "type": "User", + "site_admin": false + }, + "position": 394, + "line": 394, + "path": "maven-plugin/src/main/java/hudson/maven/Maven3ProcessFactory.java", + "commit_id": "87450503def17e42a06e80450992f58cacef3635", + "created_at": "2010-12-26T21:32:20Z", + "updated_at": "2010-12-26T21:32:20Z", + "author_association": "MEMBER", + "body": "Should this not be the logger of Maven3ProcessFactory?\n" + }, + { + "url": "https://api.github.com/repos/jenkinsci/jenkins/comments/226479", + "html_url": "https://github.com/jenkinsci/jenkins/commit/87450503def17e42a06e80450992f58cacef3635#commitcomment-226479", + "id": 226479, + "node_id": "MDEzOkNvbW1pdENvbW1lbnQyMjY0Nzk=", + "user": { + "login": "olamy", + "id": 19728, + "node_id": "MDQ6VXNlcjE5NzI4", + "avatar_url": "https://avatars2.githubusercontent.com/u/19728?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/olamy", + "html_url": "https://github.com/olamy", + "followers_url": "https://api.github.com/users/olamy/followers", + "following_url": "https://api.github.com/users/olamy/following{/other_user}", + "gists_url": "https://api.github.com/users/olamy/gists{/gist_id}", + "starred_url": "https://api.github.com/users/olamy/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/olamy/subscriptions", + "organizations_url": "https://api.github.com/users/olamy/orgs", + "repos_url": "https://api.github.com/users/olamy/repos", + "events_url": "https://api.github.com/users/olamy/events{/privacy}", + "received_events_url": "https://api.github.com/users/olamy/received_events", + "type": "User", + "site_admin": false + }, + "position": 394, + "line": 394, + "path": "maven-plugin/src/main/java/hudson/maven/Maven3ProcessFactory.java", + "commit_id": "87450503def17e42a06e80450992f58cacef3635", + "created_at": "2010-12-26T21:38:33Z", + "updated_at": "2010-12-26T21:38:33Z", + "author_association": "MEMBER", + "body": "yup I will fix that\nThanks !\n" + }, + { + "url": "https://api.github.com/repos/jenkinsci/jenkins/comments/234711", + "html_url": "https://github.com/jenkinsci/jenkins/commit/eeeda9eea834966fb0e3ce81b161afd8a53d68e3#commitcomment-234711", + "id": 234711, + "node_id": "MDEzOkNvbW1pdENvbW1lbnQyMzQ3MTE=", + "user": { + "login": "FireFart", + "id": 105281, + "node_id": "MDQ6VXNlcjEwNTI4MQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/105281?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/FireFart", + "html_url": "https://github.com/FireFart", + "followers_url": "https://api.github.com/users/FireFart/followers", + "following_url": "https://api.github.com/users/FireFart/following{/other_user}", + "gists_url": "https://api.github.com/users/FireFart/gists{/gist_id}", + "starred_url": "https://api.github.com/users/FireFart/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/FireFart/subscriptions", + "organizations_url": "https://api.github.com/users/FireFart/orgs", + "repos_url": "https://api.github.com/users/FireFart/repos", + "events_url": "https://api.github.com/users/FireFart/events{/privacy}", + "received_events_url": "https://api.github.com/users/FireFart/received_events", + "type": "User", + "site_admin": false + }, + "position": 7, + "line": 176, + "path": "core/src/test/java/hudson/UtilTest.java", + "commit_id": "eeeda9eea834966fb0e3ce81b161afd8a53d68e3", + "created_at": "2011-01-07T18:19:29Z", + "updated_at": "2011-01-07T18:20:05Z", + "author_association": "NONE", + "body": "Shouldn't this be\nassertEquals(\"& lt;a& gt;\", Util.escape(\"\"));\n?\nthe > symbol should also be html encoded to & gt;\n(blanks after & need to be removed)\n" + }, + { + "url": "https://api.github.com/repos/jenkinsci/jenkins/comments/234772", + "html_url": "https://github.com/jenkinsci/jenkins/commit/eeeda9eea834966fb0e3ce81b161afd8a53d68e3#commitcomment-234772", + "id": 234772, + "node_id": "MDEzOkNvbW1pdENvbW1lbnQyMzQ3NzI=", + "user": { + "login": "orrc", + "id": 138615, + "node_id": "MDQ6VXNlcjEzODYxNQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/138615?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/orrc", + "html_url": "https://github.com/orrc", + "followers_url": "https://api.github.com/users/orrc/followers", + "following_url": "https://api.github.com/users/orrc/following{/other_user}", + "gists_url": "https://api.github.com/users/orrc/gists{/gist_id}", + "starred_url": "https://api.github.com/users/orrc/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/orrc/subscriptions", + "organizations_url": "https://api.github.com/users/orrc/orgs", + "repos_url": "https://api.github.com/users/orrc/repos", + "events_url": "https://api.github.com/users/orrc/events{/privacy}", + "received_events_url": "https://api.github.com/users/orrc/received_events", + "type": "User", + "site_admin": false + }, + "position": 7, + "line": 176, + "path": "core/src/test/java/hudson/UtilTest.java", + "commit_id": "eeeda9eea834966fb0e3ce81b161afd8a53d68e3", + "created_at": "2011-01-07T19:16:41Z", + "updated_at": "2011-01-07T19:16:41Z", + "author_association": "MEMBER", + "body": "No, because the `escape()` method under test doesn't convert '`>`' to \"`>`\".\n\nSo long as you escape the '<' in these situations, the '>' doesn't need to be escaped anyway.\n" + }, + { + "url": "https://api.github.com/repos/jenkinsci/jenkins/comments/240723", + "html_url": "https://github.com/jenkinsci/jenkins/commit/ed20962551a5d925bd6a9f429cc85ac4625b9a46#commitcomment-240723", + "id": 240723, + "node_id": "MDEzOkNvbW1pdENvbW1lbnQyNDA3MjM=", + "user": { + "login": "olamy", + "id": 19728, + "node_id": "MDQ6VXNlcjE5NzI4", + "avatar_url": "https://avatars2.githubusercontent.com/u/19728?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/olamy", + "html_url": "https://github.com/olamy", + "followers_url": "https://api.github.com/users/olamy/followers", + "following_url": "https://api.github.com/users/olamy/following{/other_user}", + "gists_url": "https://api.github.com/users/olamy/gists{/gist_id}", + "starred_url": "https://api.github.com/users/olamy/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/olamy/subscriptions", + "organizations_url": "https://api.github.com/users/olamy/orgs", + "repos_url": "https://api.github.com/users/olamy/repos", + "events_url": "https://api.github.com/users/olamy/events{/privacy}", + "received_events_url": "https://api.github.com/users/olamy/received_events", + "type": "User", + "site_admin": false + }, + "position": null, + "line": null, + "path": null, + "commit_id": "ed20962551a5d925bd6a9f429cc85ac4625b9a46", + "created_at": "2011-01-14T09:08:47Z", + "updated_at": "2011-01-14T09:08:47Z", + "author_association": "MEMBER", + "body": "Nice !! just tested and definitely improve startup time !!\nThanks !\n" + }, + { + "url": "https://api.github.com/repos/jenkinsci/jenkins/comments/240728", + "html_url": "https://github.com/jenkinsci/jenkins/commit/ed20962551a5d925bd6a9f429cc85ac4625b9a46#commitcomment-240728", + "id": 240728, + "node_id": "MDEzOkNvbW1pdENvbW1lbnQyNDA3Mjg=", + "user": { + "login": "lacostej", + "id": 24282, + "node_id": "MDQ6VXNlcjI0Mjgy", + "avatar_url": "https://avatars2.githubusercontent.com/u/24282?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/lacostej", + "html_url": "https://github.com/lacostej", + "followers_url": "https://api.github.com/users/lacostej/followers", + "following_url": "https://api.github.com/users/lacostej/following{/other_user}", + "gists_url": "https://api.github.com/users/lacostej/gists{/gist_id}", + "starred_url": "https://api.github.com/users/lacostej/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/lacostej/subscriptions", + "organizations_url": "https://api.github.com/users/lacostej/orgs", + "repos_url": "https://api.github.com/users/lacostej/repos", + "events_url": "https://api.github.com/users/lacostej/events{/privacy}", + "received_events_url": "https://api.github.com/users/lacostej/received_events", + "type": "User", + "site_admin": false + }, + "position": null, + "line": null, + "path": null, + "commit_id": "ed20962551a5d925bd6a9f429cc85ac4625b9a46", + "created_at": "2011-01-14T09:19:51Z", + "updated_at": "2011-01-14T09:19:51Z", + "author_association": "MEMBER", + "body": "Typo ? getIndicies -> getIndices\n" + }, + { + "url": "https://api.github.com/repos/jenkinsci/jenkins/comments/240975", + "html_url": "https://github.com/jenkinsci/jenkins/commit/ed20962551a5d925bd6a9f429cc85ac4625b9a46#commitcomment-240975", + "id": 240975, + "node_id": "MDEzOkNvbW1pdENvbW1lbnQyNDA5NzU=", + "user": { + "login": "kohsuke", + "id": 50003, + "node_id": "MDQ6VXNlcjUwMDAz", + "avatar_url": "https://avatars1.githubusercontent.com/u/50003?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kohsuke", + "html_url": "https://github.com/kohsuke", + "followers_url": "https://api.github.com/users/kohsuke/followers", + "following_url": "https://api.github.com/users/kohsuke/following{/other_user}", + "gists_url": "https://api.github.com/users/kohsuke/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kohsuke/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kohsuke/subscriptions", + "organizations_url": "https://api.github.com/users/kohsuke/orgs", + "repos_url": "https://api.github.com/users/kohsuke/repos", + "events_url": "https://api.github.com/users/kohsuke/events{/privacy}", + "received_events_url": "https://api.github.com/users/kohsuke/received_events", + "type": "User", + "site_admin": false + }, + "position": null, + "line": null, + "path": null, + "commit_id": "ed20962551a5d925bd6a9f429cc85ac4625b9a46", + "created_at": "2011-01-14T16:16:29Z", + "updated_at": "2011-01-14T16:16:29Z", + "author_association": "MEMBER", + "body": "Typo fixed in ba092e9a292324fd9f407b10c2eec8c88ae296e9\n" + }, + { + "url": "https://api.github.com/repos/jenkinsci/jenkins/comments/248058", + "html_url": "https://github.com/jenkinsci/jenkins/commit/0a0f040e639f4f8142799b231e31e5c65c173bfd#commitcomment-248058", + "id": 248058, + "node_id": "MDEzOkNvbW1pdENvbW1lbnQyNDgwNTg=", + "user": { + "login": "jglick", + "id": 154109, + "node_id": "MDQ6VXNlcjE1NDEwOQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/154109?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jglick", + "html_url": "https://github.com/jglick", + "followers_url": "https://api.github.com/users/jglick/followers", + "following_url": "https://api.github.com/users/jglick/following{/other_user}", + "gists_url": "https://api.github.com/users/jglick/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jglick/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jglick/subscriptions", + "organizations_url": "https://api.github.com/users/jglick/orgs", + "repos_url": "https://api.github.com/users/jglick/repos", + "events_url": "https://api.github.com/users/jglick/events{/privacy}", + "received_events_url": "https://api.github.com/users/jglick/received_events", + "type": "User", + "site_admin": false + }, + "position": null, + "line": null, + "path": null, + "commit_id": "0a0f040e639f4f8142799b231e31e5c65c173bfd", + "created_at": "2011-01-22T14:23:30Z", + "updated_at": "2011-01-22T14:23:30Z", + "author_association": "MEMBER", + "body": "http://hudson.dev.java.net/changelog.html gives a 404. Shouldn't this be changed to http://hudson-ci.org/changelog.html or its redirect to http://hudson-labs.org/changelog ?\n" + }, + { + "url": "https://api.github.com/repos/jenkinsci/jenkins/comments/249670", + "html_url": "https://github.com/jenkinsci/jenkins/commit/0a0f040e639f4f8142799b231e31e5c65c173bfd#commitcomment-249670", + "id": 249670, + "node_id": "MDEzOkNvbW1pdENvbW1lbnQyNDk2NzA=", + "user": { + "login": "kohsuke", + "id": 50003, + "node_id": "MDQ6VXNlcjUwMDAz", + "avatar_url": "https://avatars1.githubusercontent.com/u/50003?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kohsuke", + "html_url": "https://github.com/kohsuke", + "followers_url": "https://api.github.com/users/kohsuke/followers", + "following_url": "https://api.github.com/users/kohsuke/following{/other_user}", + "gists_url": "https://api.github.com/users/kohsuke/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kohsuke/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kohsuke/subscriptions", + "organizations_url": "https://api.github.com/users/kohsuke/orgs", + "repos_url": "https://api.github.com/users/kohsuke/repos", + "events_url": "https://api.github.com/users/kohsuke/events{/privacy}", + "received_events_url": "https://api.github.com/users/kohsuke/received_events", + "type": "User", + "site_admin": false + }, + "position": null, + "line": null, + "path": null, + "commit_id": "0a0f040e639f4f8142799b231e31e5c65c173bfd", + "created_at": "2011-01-24T19:18:03Z", + "updated_at": "2011-01-24T19:18:03Z", + "author_association": "MEMBER", + "body": "Fixed!\n" + }, + { + "url": "https://api.github.com/repos/jenkinsci/jenkins/comments/255545", + "html_url": "https://github.com/jenkinsci/jenkins/commit/dc7e05a4c33f709e3cafd095b1789c0e37bfd4cd#commitcomment-255545", + "id": 255545, + "node_id": "MDEzOkNvbW1pdENvbW1lbnQyNTU1NDU=", + "user": { + "login": "manandbytes", + "id": 133584, + "node_id": "MDQ6VXNlcjEzMzU4NA==", + "avatar_url": "https://avatars1.githubusercontent.com/u/133584?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/manandbytes", + "html_url": "https://github.com/manandbytes", + "followers_url": "https://api.github.com/users/manandbytes/followers", + "following_url": "https://api.github.com/users/manandbytes/following{/other_user}", + "gists_url": "https://api.github.com/users/manandbytes/gists{/gist_id}", + "starred_url": "https://api.github.com/users/manandbytes/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/manandbytes/subscriptions", + "organizations_url": "https://api.github.com/users/manandbytes/orgs", + "repos_url": "https://api.github.com/users/manandbytes/repos", + "events_url": "https://api.github.com/users/manandbytes/events{/privacy}", + "received_events_url": "https://api.github.com/users/manandbytes/received_events", + "type": "User", + "site_admin": false + }, + "position": null, + "line": null, + "path": null, + "commit_id": "dc7e05a4c33f709e3cafd095b1789c0e37bfd4cd", + "created_at": "2011-01-30T11:43:49Z", + "updated_at": "2011-01-30T11:43:49Z", + "author_association": "CONTRIBUTOR", + "body": "war/src/main/webapp/images/title.svg for some reason left intact. Is it intentional? According to git grep this SVG don't used, should it be removed?\n" + }, + { + "url": "https://api.github.com/repos/jenkinsci/jenkins/comments/255732", + "html_url": "https://github.com/jenkinsci/jenkins/commit/bb991ada6d53c054fb5aff697532115c22538488#commitcomment-255732", + "id": 255732, + "node_id": "MDEzOkNvbW1pdENvbW1lbnQyNTU3MzI=", + "user": { + "login": "dalbertom", + "id": 295731, + "node_id": "MDQ6VXNlcjI5NTczMQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/295731?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dalbertom", + "html_url": "https://github.com/dalbertom", + "followers_url": "https://api.github.com/users/dalbertom/followers", + "following_url": "https://api.github.com/users/dalbertom/following{/other_user}", + "gists_url": "https://api.github.com/users/dalbertom/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dalbertom/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dalbertom/subscriptions", + "organizations_url": "https://api.github.com/users/dalbertom/orgs", + "repos_url": "https://api.github.com/users/dalbertom/repos", + "events_url": "https://api.github.com/users/dalbertom/events{/privacy}", + "received_events_url": "https://api.github.com/users/dalbertom/received_events", + "type": "User", + "site_admin": false + }, + "position": 5, + "line": 30, + "path": "core/src/main/resources/lib/layout/layout.jelly", + "commit_id": "bb991ada6d53c054fb5aff697532115c22538488", + "created_at": "2011-01-30T20:45:38Z", + "updated_at": "2011-01-30T20:45:38Z", + "author_association": "CONTRIBUTOR", + "body": "shouldn't \" Hudson's \" be transformed into \" Jenkins' \" instead of \" Jenkins's \"?\n" + }, + { + "url": "https://api.github.com/repos/jenkinsci/jenkins/comments/255737", + "html_url": "https://github.com/jenkinsci/jenkins/commit/bb991ada6d53c054fb5aff697532115c22538488#commitcomment-255737", + "id": 255737, + "node_id": "MDEzOkNvbW1pdENvbW1lbnQyNTU3Mzc=", + "user": { + "login": "rbywater", + "id": 384963, + "node_id": "MDQ6VXNlcjM4NDk2Mw==", + "avatar_url": "https://avatars0.githubusercontent.com/u/384963?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rbywater", + "html_url": "https://github.com/rbywater", + "followers_url": "https://api.github.com/users/rbywater/followers", + "following_url": "https://api.github.com/users/rbywater/following{/other_user}", + "gists_url": "https://api.github.com/users/rbywater/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rbywater/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rbywater/subscriptions", + "organizations_url": "https://api.github.com/users/rbywater/orgs", + "repos_url": "https://api.github.com/users/rbywater/repos", + "events_url": "https://api.github.com/users/rbywater/events{/privacy}", + "received_events_url": "https://api.github.com/users/rbywater/received_events", + "type": "User", + "site_admin": false + }, + "position": 5, + "line": 30, + "path": "core/src/main/resources/lib/layout/layout.jelly", + "commit_id": "bb991ada6d53c054fb5aff697532115c22538488", + "created_at": "2011-01-30T21:00:19Z", + "updated_at": "2011-01-30T21:00:19Z", + "author_association": "MEMBER", + "body": "Seconded :)\n" + }, + { + "url": "https://api.github.com/repos/jenkinsci/jenkins/comments/255744", + "html_url": "https://github.com/jenkinsci/jenkins/commit/5bd0b9898627ad2cc50c4037f1138609b7720c13#commitcomment-255744", + "id": 255744, + "node_id": "MDEzOkNvbW1pdENvbW1lbnQyNTU3NDQ=", + "user": { + "login": "aheritier", + "id": 174600, + "node_id": "MDQ6VXNlcjE3NDYwMA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/174600?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/aheritier", + "html_url": "https://github.com/aheritier", + "followers_url": "https://api.github.com/users/aheritier/followers", + "following_url": "https://api.github.com/users/aheritier/following{/other_user}", + "gists_url": "https://api.github.com/users/aheritier/gists{/gist_id}", + "starred_url": "https://api.github.com/users/aheritier/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/aheritier/subscriptions", + "organizations_url": "https://api.github.com/users/aheritier/orgs", + "repos_url": "https://api.github.com/users/aheritier/repos", + "events_url": "https://api.github.com/users/aheritier/events{/privacy}", + "received_events_url": "https://api.github.com/users/aheritier/received_events", + "type": "User", + "site_admin": false + }, + "position": null, + "line": null, + "path": null, + "commit_id": "5bd0b9898627ad2cc50c4037f1138609b7720c13", + "created_at": "2011-01-30T21:35:02Z", + "updated_at": "2011-01-30T21:35:02Z", + "author_association": "MEMBER", + "body": "Couldn't we have some some classpath issues in the future if maven find in plugin dependencies a conflict between jenkins and hudson dependencies.\nIt could be solved using relocations (http://maven.apache.org/guides/mini/guide-relocation.html) but I don't thing that Oracle wil like that because it's not a move as they announced they'll continue to maintain hudson\n" + }, + { + "url": "https://api.github.com/repos/jenkinsci/jenkins/comments/255909", + "html_url": "https://github.com/jenkinsci/jenkins/commit/8ea876faa4dab9cf65974afa826e07a4991d2aa4#commitcomment-255909", + "id": 255909, + "node_id": "MDEzOkNvbW1pdENvbW1lbnQyNTU5MDk=", + "user": { + "login": "dty", + "id": 493835, + "node_id": "MDQ6VXNlcjQ5MzgzNQ==", + "avatar_url": "https://avatars0.githubusercontent.com/u/493835?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dty", + "html_url": "https://github.com/dty", + "followers_url": "https://api.github.com/users/dty/followers", + "following_url": "https://api.github.com/users/dty/following{/other_user}", + "gists_url": "https://api.github.com/users/dty/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dty/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dty/subscriptions", + "organizations_url": "https://api.github.com/users/dty/orgs", + "repos_url": "https://api.github.com/users/dty/repos", + "events_url": "https://api.github.com/users/dty/events{/privacy}", + "received_events_url": "https://api.github.com/users/dty/received_events", + "type": "User", + "site_admin": false + }, + "position": 16, + "line": 81, + "path": "core/src/main/java/hudson/Main.java", + "commit_id": "8ea876faa4dab9cf65974afa826e07a4991d2aa4", + "created_at": "2011-01-31T05:06:56Z", + "updated_at": "2011-01-31T05:06:56Z", + "author_association": "MEMBER", + "body": "I think this instance should be HUDSON_HOME\n" + }, + { + "url": "https://api.github.com/repos/jenkinsci/jenkins/comments/255921", + "html_url": "https://github.com/jenkinsci/jenkins/commit/8ea876faa4dab9cf65974afa826e07a4991d2aa4#commitcomment-255921", + "id": 255921, + "node_id": "MDEzOkNvbW1pdENvbW1lbnQyNTU5MjE=", + "user": { + "login": "kohsuke", + "id": 50003, + "node_id": "MDQ6VXNlcjUwMDAz", + "avatar_url": "https://avatars1.githubusercontent.com/u/50003?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kohsuke", + "html_url": "https://github.com/kohsuke", + "followers_url": "https://api.github.com/users/kohsuke/followers", + "following_url": "https://api.github.com/users/kohsuke/following{/other_user}", + "gists_url": "https://api.github.com/users/kohsuke/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kohsuke/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kohsuke/subscriptions", + "organizations_url": "https://api.github.com/users/kohsuke/orgs", + "repos_url": "https://api.github.com/users/kohsuke/repos", + "events_url": "https://api.github.com/users/kohsuke/events{/privacy}", + "received_events_url": "https://api.github.com/users/kohsuke/received_events", + "type": "User", + "site_admin": false + }, + "position": 16, + "line": 81, + "path": "core/src/main/java/hudson/Main.java", + "commit_id": "8ea876faa4dab9cf65974afa826e07a4991d2aa4", + "created_at": "2011-01-31T05:55:18Z", + "updated_at": "2011-01-31T05:55:18Z", + "author_association": "MEMBER", + "body": "That's right! Fixed.\n" + }, + { + "url": "https://api.github.com/repos/jenkinsci/jenkins/comments/259615", + "html_url": "https://github.com/jenkinsci/jenkins/commit/5c91eb1fe58b4f47b210a960ca2f9db6039507e9#commitcomment-259615", + "id": 259615, + "node_id": "MDEzOkNvbW1pdENvbW1lbnQyNTk2MTU=", + "user": { + "login": "lacostej", + "id": 24282, + "node_id": "MDQ6VXNlcjI0Mjgy", + "avatar_url": "https://avatars2.githubusercontent.com/u/24282?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/lacostej", + "html_url": "https://github.com/lacostej", + "followers_url": "https://api.github.com/users/lacostej/followers", + "following_url": "https://api.github.com/users/lacostej/following{/other_user}", + "gists_url": "https://api.github.com/users/lacostej/gists{/gist_id}", + "starred_url": "https://api.github.com/users/lacostej/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/lacostej/subscriptions", + "organizations_url": "https://api.github.com/users/lacostej/orgs", + "repos_url": "https://api.github.com/users/lacostej/repos", + "events_url": "https://api.github.com/users/lacostej/events{/privacy}", + "received_events_url": "https://api.github.com/users/lacostej/received_events", + "type": "User", + "site_admin": false + }, + "position": null, + "line": null, + "path": null, + "commit_id": "5c91eb1fe58b4f47b210a960ca2f9db6039507e9", + "created_at": "2011-02-03T12:48:12Z", + "updated_at": "2011-02-03T12:48:12Z", + "author_association": "MEMBER", + "body": "Looks like this commit fixed JENKINS-7745\n\nSee http://issues.jenkins-ci.org/browse/JENKINS-7745?focusedCommentId=145412#comment-145412\n" + }, + { + "url": "https://api.github.com/repos/jenkinsci/jenkins/comments/259632", + "html_url": "https://github.com/jenkinsci/jenkins/commit/5c91eb1fe58b4f47b210a960ca2f9db6039507e9#commitcomment-259632", + "id": 259632, + "node_id": "MDEzOkNvbW1pdENvbW1lbnQyNTk2MzI=", + "user": { + "login": "lacostej", + "id": 24282, + "node_id": "MDQ6VXNlcjI0Mjgy", + "avatar_url": "https://avatars2.githubusercontent.com/u/24282?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/lacostej", + "html_url": "https://github.com/lacostej", + "followers_url": "https://api.github.com/users/lacostej/followers", + "following_url": "https://api.github.com/users/lacostej/following{/other_user}", + "gists_url": "https://api.github.com/users/lacostej/gists{/gist_id}", + "starred_url": "https://api.github.com/users/lacostej/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/lacostej/subscriptions", + "organizations_url": "https://api.github.com/users/lacostej/orgs", + "repos_url": "https://api.github.com/users/lacostej/repos", + "events_url": "https://api.github.com/users/lacostej/events{/privacy}", + "received_events_url": "https://api.github.com/users/lacostej/received_events", + "type": "User", + "site_admin": false + }, + "position": null, + "line": null, + "path": null, + "commit_id": "5c91eb1fe58b4f47b210a960ca2f9db6039507e9", + "created_at": "2011-02-03T13:08:22Z", + "updated_at": "2011-02-03T13:08:22Z", + "author_association": "MEMBER", + "body": "Kohsuke, thinking about it, do you think that the same kind of fixes on the ProxyInputStream would fix http://issues.jenkins-ci.org/browse/JENKINS-7836 ?\n\nI've made this as a tentative fix: https://github.com/lacostej/jenkins/commit/31b8361d3152fb7970e1c11c906a763fa1aa5c25\n" + }, + { + "url": "https://api.github.com/repos/jenkinsci/jenkins/comments/259664", + "html_url": "https://github.com/jenkinsci/jenkins/commit/5c91eb1fe58b4f47b210a960ca2f9db6039507e9#commitcomment-259664", + "id": 259664, + "node_id": "MDEzOkNvbW1pdENvbW1lbnQyNTk2NjQ=", + "user": { + "login": "olamy", + "id": 19728, + "node_id": "MDQ6VXNlcjE5NzI4", + "avatar_url": "https://avatars2.githubusercontent.com/u/19728?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/olamy", + "html_url": "https://github.com/olamy", + "followers_url": "https://api.github.com/users/olamy/followers", + "following_url": "https://api.github.com/users/olamy/following{/other_user}", + "gists_url": "https://api.github.com/users/olamy/gists{/gist_id}", + "starred_url": "https://api.github.com/users/olamy/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/olamy/subscriptions", + "organizations_url": "https://api.github.com/users/olamy/orgs", + "repos_url": "https://api.github.com/users/olamy/repos", + "events_url": "https://api.github.com/users/olamy/events{/privacy}", + "received_events_url": "https://api.github.com/users/olamy/received_events", + "type": "User", + "site_admin": false + }, + "position": null, + "line": null, + "path": null, + "commit_id": "5c91eb1fe58b4f47b210a960ca2f9db6039507e9", + "created_at": "2011-02-03T13:53:22Z", + "updated_at": "2011-02-03T13:53:22Z", + "author_association": "MEMBER", + "body": "+1\n" + }, + { + "url": "https://api.github.com/repos/jenkinsci/jenkins/comments/262708", + "html_url": "https://github.com/jenkinsci/jenkins/commit/c15ba139b8bc50aca5bedce8f15212bc64698b49#commitcomment-262708", + "id": 262708, + "node_id": "MDEzOkNvbW1pdENvbW1lbnQyNjI3MDg=", + "user": { + "login": "tbingaman", + "id": 494358, + "node_id": "MDQ6VXNlcjQ5NDM1OA==", + "avatar_url": "https://avatars3.githubusercontent.com/u/494358?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/tbingaman", + "html_url": "https://github.com/tbingaman", + "followers_url": "https://api.github.com/users/tbingaman/followers", + "following_url": "https://api.github.com/users/tbingaman/following{/other_user}", + "gists_url": "https://api.github.com/users/tbingaman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/tbingaman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/tbingaman/subscriptions", + "organizations_url": "https://api.github.com/users/tbingaman/orgs", + "repos_url": "https://api.github.com/users/tbingaman/repos", + "events_url": "https://api.github.com/users/tbingaman/events{/privacy}", + "received_events_url": "https://api.github.com/users/tbingaman/received_events", + "type": "User", + "site_admin": false + }, + "position": null, + "line": null, + "path": null, + "commit_id": "c15ba139b8bc50aca5bedce8f15212bc64698b49", + "created_at": "2011-02-07T00:27:11Z", + "updated_at": "2011-02-07T00:27:11Z", + "author_association": "MEMBER", + "body": "Just got bitten by this change. It doesn't provide backwards-compatibility with other project plugins (like the Ivy Plugin).\n Caused by: java.lang.AbstractMethodError: hudson.model.TopLevelItemDescriptor.newInstance(Lhudson/model/ItemGroup;Ljava/lang/String;)Lhudson/model/TopLevelItem;\n at hudson.model.ItemGroupMixIn.createProject(ItemGroupMixIn.java:246)\n at hudson.model.ItemGroupMixIn.createTopLevelItem(ItemGroupMixIn.java:173)\n at hudson.model.Hudson.doCreateItem(Hudson.java:2633)\n\nAlso, looks like this change only made it into _1.395_ **not** _1.390_, would be good to update the `@since` tags for clarity as it took me a while to track it down.\nShould I tweak them and issue a pull request or can one of the core guys just change them?\n\nAs for the actual backwards-compatibility, if it could be fixed easily that'd be nice. For the Ivy Plugin I'll be pushing out a compatible release soon anyway.\n" + }, + { + "url": "https://api.github.com/repos/jenkinsci/jenkins/comments/266975", + "html_url": "https://github.com/jenkinsci/jenkins/commit/1d1c18890f9a4ead541efb8482e2a160a0a91237#commitcomment-266975", + "id": 266975, + "node_id": "MDEzOkNvbW1pdENvbW1lbnQyNjY5NzU=", + "user": { + "login": "GLundh", + "id": 300900, + "node_id": "MDQ6VXNlcjMwMDkwMA==", + "avatar_url": "https://avatars3.githubusercontent.com/u/300900?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/GLundh", + "html_url": "https://github.com/GLundh", + "followers_url": "https://api.github.com/users/GLundh/followers", + "following_url": "https://api.github.com/users/GLundh/following{/other_user}", + "gists_url": "https://api.github.com/users/GLundh/gists{/gist_id}", + "starred_url": "https://api.github.com/users/GLundh/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/GLundh/subscriptions", + "organizations_url": "https://api.github.com/users/GLundh/orgs", + "repos_url": "https://api.github.com/users/GLundh/repos", + "events_url": "https://api.github.com/users/GLundh/events{/privacy}", + "received_events_url": "https://api.github.com/users/GLundh/received_events", + "type": "User", + "site_admin": false + }, + "position": null, + "line": null, + "path": null, + "commit_id": "1d1c18890f9a4ead541efb8482e2a160a0a91237", + "created_at": "2011-02-10T14:10:23Z", + "updated_at": "2011-02-10T14:10:23Z", + "author_association": "MEMBER", + "body": "We are not forgetting to merge this, JENKINS-8592, branch into master?\n" + }, + { + "url": "https://api.github.com/repos/jenkinsci/jenkins/comments/267069", + "html_url": "https://github.com/jenkinsci/jenkins/commit/1d1c18890f9a4ead541efb8482e2a160a0a91237#commitcomment-267069", + "id": 267069, + "node_id": "MDEzOkNvbW1pdENvbW1lbnQyNjcwNjk=", + "user": { + "login": "nairb774", + "id": 128795, + "node_id": "MDQ6VXNlcjEyODc5NQ==", + "avatar_url": "https://avatars0.githubusercontent.com/u/128795?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nairb774", + "html_url": "https://github.com/nairb774", + "followers_url": "https://api.github.com/users/nairb774/followers", + "following_url": "https://api.github.com/users/nairb774/following{/other_user}", + "gists_url": "https://api.github.com/users/nairb774/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nairb774/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nairb774/subscriptions", + "organizations_url": "https://api.github.com/users/nairb774/orgs", + "repos_url": "https://api.github.com/users/nairb774/repos", + "events_url": "https://api.github.com/users/nairb774/events{/privacy}", + "received_events_url": "https://api.github.com/users/nairb774/received_events", + "type": "User", + "site_admin": false + }, + "position": null, + "line": null, + "path": null, + "commit_id": "1d1c18890f9a4ead541efb8482e2a160a0a91237", + "created_at": "2011-02-10T15:33:23Z", + "updated_at": "2011-02-10T15:33:23Z", + "author_association": "MEMBER", + "body": "The initial changes got merged in - the safe changes. I was waiting till those got out on a release before moving these changes in. That way, if this branch does mess something up (hoping not), there will be at least one release in between which should operate correctly.\n\nSound like a fair plan?\n" + }, + { + "url": "https://api.github.com/repos/jenkinsci/jenkins/comments/267086", + "html_url": "https://github.com/jenkinsci/jenkins/commit/1d1c18890f9a4ead541efb8482e2a160a0a91237#commitcomment-267086", + "id": 267086, + "node_id": "MDEzOkNvbW1pdENvbW1lbnQyNjcwODY=", + "user": { + "login": "GLundh", + "id": 300900, + "node_id": "MDQ6VXNlcjMwMDkwMA==", + "avatar_url": "https://avatars3.githubusercontent.com/u/300900?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/GLundh", + "html_url": "https://github.com/GLundh", + "followers_url": "https://api.github.com/users/GLundh/followers", + "following_url": "https://api.github.com/users/GLundh/following{/other_user}", + "gists_url": "https://api.github.com/users/GLundh/gists{/gist_id}", + "starred_url": "https://api.github.com/users/GLundh/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/GLundh/subscriptions", + "organizations_url": "https://api.github.com/users/GLundh/orgs", + "repos_url": "https://api.github.com/users/GLundh/repos", + "events_url": "https://api.github.com/users/GLundh/events{/privacy}", + "received_events_url": "https://api.github.com/users/GLundh/received_events", + "type": "User", + "site_admin": false + }, + "position": null, + "line": null, + "path": null, + "commit_id": "1d1c18890f9a4ead541efb8482e2a160a0a91237", + "created_at": "2011-02-10T15:57:37Z", + "updated_at": "2011-02-10T15:57:37Z", + "author_association": "MEMBER", + "body": "Absolutely. Thanks for the update! (and your work on the issue).\n\nBr\nGustaf\n" + }, + { + "url": "https://api.github.com/repos/jenkinsci/jenkins/comments/271293", + "html_url": "https://github.com/jenkinsci/jenkins/commit/18b92fe43abcde800d3ff2885b25f8a74f61714e#commitcomment-271293", + "id": 271293, + "node_id": "MDEzOkNvbW1pdENvbW1lbnQyNzEyOTM=", + "user": { + "login": "mlb5000", + "id": 207508, + "node_id": "MDQ6VXNlcjIwNzUwOA==", + "avatar_url": "https://avatars1.githubusercontent.com/u/207508?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mlb5000", + "html_url": "https://github.com/mlb5000", + "followers_url": "https://api.github.com/users/mlb5000/followers", + "following_url": "https://api.github.com/users/mlb5000/following{/other_user}", + "gists_url": "https://api.github.com/users/mlb5000/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mlb5000/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mlb5000/subscriptions", + "organizations_url": "https://api.github.com/users/mlb5000/orgs", + "repos_url": "https://api.github.com/users/mlb5000/repos", + "events_url": "https://api.github.com/users/mlb5000/events{/privacy}", + "received_events_url": "https://api.github.com/users/mlb5000/received_events", + "type": "User", + "site_admin": false + }, + "position": null, + "line": null, + "path": null, + "commit_id": "18b92fe43abcde800d3ff2885b25f8a74f61714e", + "created_at": "2011-02-14T22:06:55Z", + "updated_at": "2011-02-14T22:06:55Z", + "author_association": "NONE", + "body": "There appears to be an issue with this integration. During shutdown in unit tests while attempting to kill the slaves I get this error:\n\n```\nFeb 14, 2011 4:56:18 PM hudson.remoting.Channel$ReaderThread run\nSEVERE: Failed to execute command close (channel slave3)\njava.lang.NullPointerException\n at hudson.util.ProcessTree.getKillers(ProcessTree.java:158)\n at hudson.util.ProcessTree$OSProcess.killByKiller(ProcessTree.java:212)\n at hudson.util.ProcessTree$UnixProcess.kill(ProcessTree.java:545)\n at hudson.util.ProcessTree$UnixProcess.killRecursively(ProcessTree.java:552)\n at hudson.util.ProcessTree.killAll(ProcessTree.java:147)\n at hudson.slaves.CommandLauncher$1.onClosed(CommandLauncher.java:133)\n at hudson.remoting.Channel.terminate(Channel.java:695)\n at hudson.remoting.Channel$CloseCommand.execute(Channel.java:763)\n at hudson.remoting.Channel$ReaderThread.run(Channel.java:962)\n```\n\nReverting back to the previous version fixes this. I am running OS X 10.6.6 64-bit.\n" + }, + { + "url": "https://api.github.com/repos/jenkinsci/jenkins/comments/271301", + "html_url": "https://github.com/jenkinsci/jenkins/commit/18b92fe43abcde800d3ff2885b25f8a74f61714e#commitcomment-271301", + "id": 271301, + "node_id": "MDEzOkNvbW1pdENvbW1lbnQyNzEzMDE=", + "user": { + "login": "wolfs", + "id": 423186, + "node_id": "MDQ6VXNlcjQyMzE4Ng==", + "avatar_url": "https://avatars1.githubusercontent.com/u/423186?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/wolfs", + "html_url": "https://github.com/wolfs", + "followers_url": "https://api.github.com/users/wolfs/followers", + "following_url": "https://api.github.com/users/wolfs/following{/other_user}", + "gists_url": "https://api.github.com/users/wolfs/gists{/gist_id}", + "starred_url": "https://api.github.com/users/wolfs/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/wolfs/subscriptions", + "organizations_url": "https://api.github.com/users/wolfs/orgs", + "repos_url": "https://api.github.com/users/wolfs/repos", + "events_url": "https://api.github.com/users/wolfs/events{/privacy}", + "received_events_url": "https://api.github.com/users/wolfs/received_events", + "type": "User", + "site_admin": false + }, + "position": null, + "line": null, + "path": null, + "commit_id": "18b92fe43abcde800d3ff2885b25f8a74f61714e", + "created_at": "2011-02-14T22:13:36Z", + "updated_at": "2011-02-14T22:13:36Z", + "author_association": "MEMBER", + "body": "Does the JNLPStartupTest work for you without the patch?\n" + }, + { + "url": "https://api.github.com/repos/jenkinsci/jenkins/comments/272445", + "html_url": "https://github.com/jenkinsci/jenkins/commit/18b92fe43abcde800d3ff2885b25f8a74f61714e#commitcomment-272445", + "id": 272445, + "node_id": "MDEzOkNvbW1pdENvbW1lbnQyNzI0NDU=", + "user": { + "login": "mlb5000", + "id": 207508, + "node_id": "MDQ6VXNlcjIwNzUwOA==", + "avatar_url": "https://avatars1.githubusercontent.com/u/207508?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mlb5000", + "html_url": "https://github.com/mlb5000", + "followers_url": "https://api.github.com/users/mlb5000/followers", + "following_url": "https://api.github.com/users/mlb5000/following{/other_user}", + "gists_url": "https://api.github.com/users/mlb5000/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mlb5000/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mlb5000/subscriptions", + "organizations_url": "https://api.github.com/users/mlb5000/orgs", + "repos_url": "https://api.github.com/users/mlb5000/repos", + "events_url": "https://api.github.com/users/mlb5000/events{/privacy}", + "received_events_url": "https://api.github.com/users/mlb5000/received_events", + "type": "User", + "site_admin": false + }, + "position": null, + "line": null, + "path": null, + "commit_id": "18b92fe43abcde800d3ff2885b25f8a74f61714e", + "created_at": "2011-02-15T21:16:52Z", + "updated_at": "2011-02-15T21:16:52Z", + "author_association": "NONE", + "body": "Nope, it hangs at proc.kill() on line 105. I guess the NPE is the lesser of two evils here from a development perspective. At least I can run all the tests with this fix :).\n" + }, + { + "url": "https://api.github.com/repos/jenkinsci/jenkins/comments/272447", + "html_url": "https://github.com/jenkinsci/jenkins/commit/18b92fe43abcde800d3ff2885b25f8a74f61714e#commitcomment-272447", + "id": 272447, + "node_id": "MDEzOkNvbW1pdENvbW1lbnQyNzI0NDc=", + "user": { + "login": "mlb5000", + "id": 207508, + "node_id": "MDQ6VXNlcjIwNzUwOA==", + "avatar_url": "https://avatars1.githubusercontent.com/u/207508?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mlb5000", + "html_url": "https://github.com/mlb5000", + "followers_url": "https://api.github.com/users/mlb5000/followers", + "following_url": "https://api.github.com/users/mlb5000/following{/other_user}", + "gists_url": "https://api.github.com/users/mlb5000/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mlb5000/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mlb5000/subscriptions", + "organizations_url": "https://api.github.com/users/mlb5000/orgs", + "repos_url": "https://api.github.com/users/mlb5000/repos", + "events_url": "https://api.github.com/users/mlb5000/events{/privacy}", + "received_events_url": "https://api.github.com/users/mlb5000/received_events", + "type": "User", + "site_admin": false + }, + "position": null, + "line": null, + "path": null, + "commit_id": "18b92fe43abcde800d3ff2885b25f8a74f61714e", + "created_at": "2011-02-15T21:18:15Z", + "updated_at": "2011-02-15T21:18:15Z", + "author_association": "NONE", + "body": "Hmmm...it looks like the tests \"passed\" but the JNLP slave processes are still running on my machine...\n" + }, + { + "url": "https://api.github.com/repos/jenkinsci/jenkins/comments/273769", + "html_url": "https://github.com/jenkinsci/jenkins/commit/18b92fe43abcde800d3ff2885b25f8a74f61714e#commitcomment-273769", + "id": 273769, + "node_id": "MDEzOkNvbW1pdENvbW1lbnQyNzM3Njk=", + "user": { + "login": "kohsuke", + "id": 50003, + "node_id": "MDQ6VXNlcjUwMDAz", + "avatar_url": "https://avatars1.githubusercontent.com/u/50003?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kohsuke", + "html_url": "https://github.com/kohsuke", + "followers_url": "https://api.github.com/users/kohsuke/followers", + "following_url": "https://api.github.com/users/kohsuke/following{/other_user}", + "gists_url": "https://api.github.com/users/kohsuke/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kohsuke/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kohsuke/subscriptions", + "organizations_url": "https://api.github.com/users/kohsuke/orgs", + "repos_url": "https://api.github.com/users/kohsuke/repos", + "events_url": "https://api.github.com/users/kohsuke/events{/privacy}", + "received_events_url": "https://api.github.com/users/kohsuke/received_events", + "type": "User", + "site_admin": false + }, + "position": null, + "line": null, + "path": null, + "commit_id": "18b92fe43abcde800d3ff2885b25f8a74f61714e", + "created_at": "2011-02-16T20:52:09Z", + "updated_at": "2011-02-16T20:52:09Z", + "author_association": "MEMBER", + "body": "I've modified the code in another commit since then that hopefully eliminated the problem.\n" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommitComment/__files/user-b9ac0eab-6dd1-4c7a-84fa-bf39e150869d.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommitComment/__files/user-b9ac0eab-6dd1-4c7a-84fa-bf39e150869d.json new file mode 100644 index 0000000000..a4b576e8a7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommitComment/__files/user-b9ac0eab-6dd1-4c7a-84fa-bf39e150869d.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 169, + "public_gists": 7, + "followers": 139, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommitComment/__files/users_jenkinsci-2443ea59-c39e-4dbc-8e5d-4f0330abb3dd.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommitComment/__files/users_jenkinsci-2443ea59-c39e-4dbc-8e5d-4f0330abb3dd.json new file mode 100644 index 0000000000..12ac7bd90a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommitComment/__files/users_jenkinsci-2443ea59-c39e-4dbc-8e5d-4f0330abb3dd.json @@ -0,0 +1,33 @@ +{ + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false, + "name": "Jenkins", + "company": null, + "blog": "https://jenkins.io", + "location": "Santa Clara, CA", + "email": "jenkinsci-users@googlegroups.com", + "hireable": null, + "bio": "Jenkins is an open source automation server with an unparalleled plugin ecosystem to support practically every tool as part of your delivery pipelines", + "public_repos": 2204, + "public_gists": 0, + "followers": 0, + "following": 0, + "created_at": "2009-07-21T21:03:50Z", + "updated_at": "2019-02-25T15:26:10Z" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommitComment/mappings/repos_jenkinsci_jenkins-3-fe185a.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommitComment/mappings/repos_jenkinsci_jenkins-3-fe185a.json new file mode 100644 index 0000000000..7cf0a6bae9 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommitComment/mappings/repos_jenkinsci_jenkins-3-fe185a.json @@ -0,0 +1,43 @@ +{ + "id": "fe185aa7-c9e7-44d3-86e9-fd751abcf0d7", + "name": "repos_jenkinsci_jenkins", + "request": { + "url": "/repos/jenkinsci/jenkins", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_jenkinsci_jenkins-fe185aa7-c9e7-44d3-86e9-fd751abcf0d7.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:27:47 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4391", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"bc93de689b79708d9501fd02bc1f7696\"", + "Last-Modified": "Sat, 26 Oct 2019 01:07:22 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CABC:98FD:56009A:651EBA:5DB3A113" + } + }, + "uuid": "fe185aa7-c9e7-44d3-86e9-fd751abcf0d7", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommitComment/mappings/repos_jenkinsci_jenkins_comments-4-c4ee8b.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommitComment/mappings/repos_jenkinsci_jenkins_comments-4-c4ee8b.json new file mode 100644 index 0000000000..cd9d5faa42 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommitComment/mappings/repos_jenkinsci_jenkins_comments-4-c4ee8b.json @@ -0,0 +1,43 @@ +{ + "id": "c4ee8bf9-1fc1-4535-ac30-f4133283e22f", + "name": "repos_jenkinsci_jenkins_comments", + "request": { + "url": "/repos/jenkinsci/jenkins/comments", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_jenkinsci_jenkins_comments-c4ee8bf9-1fc1-4535-ac30-f4133283e22f.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:27:48 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4390", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"06f06aa168061deee509547275821e75\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CABC:98FD:5600A0:651EC2:5DB3A113", + "Link": "; rel=\"next\", ; rel=\"last\"" + } + }, + "uuid": "c4ee8bf9-1fc1-4535-ac30-f4133283e22f", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommitComment/mappings/user-1-b9ac0e.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommitComment/mappings/user-1-b9ac0e.json new file mode 100644 index 0000000000..1b705a1025 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommitComment/mappings/user-1-b9ac0e.json @@ -0,0 +1,43 @@ +{ + "id": "b9ac0eab-6dd1-4c7a-84fa-bf39e150869d", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-b9ac0eab-6dd1-4c7a-84fa-bf39e150869d.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:27:47 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4394", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"8c3d3dcf6fc5f9edaf26c902295396e5\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CABC:98FD:56008B:651EAA:5DB3A112" + } + }, + "uuid": "b9ac0eab-6dd1-4c7a-84fa-bf39e150869d", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommitComment/mappings/users_jenkinsci-2-2443ea.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommitComment/mappings/users_jenkinsci-2-2443ea.json new file mode 100644 index 0000000000..93ded7b7c9 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommitComment/mappings/users_jenkinsci-2-2443ea.json @@ -0,0 +1,43 @@ +{ + "id": "2443ea59-c39e-4dbc-8e5d-4f0330abb3dd", + "name": "users_jenkinsci", + "request": { + "url": "/users/jenkinsci", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "users_jenkinsci-2443ea59-c39e-4dbc-8e5d-4f0330abb3dd.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:27:47 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4392", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"cf08d94b8454daf0770638531436c38e\"", + "Last-Modified": "Mon, 25 Feb 2019 15:26:10 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CABC:98FD:560097:651EB0:5DB3A113" + } + }, + "uuid": "2443ea59-c39e-4dbc-8e5d-4f0330abb3dd", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommitShortInfo/__files/repos_github-api_github-api-441cdfd7-a44a-42b4-b732-57e674227760.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommitShortInfo/__files/repos_github-api_github-api-441cdfd7-a44a-42b4-b732-57e674227760.json new file mode 100644 index 0000000000..29eeabe7c9 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommitShortInfo/__files/repos_github-api_github-api-441cdfd7-a44a-42b4-b732-57e674227760.json @@ -0,0 +1,130 @@ +{ + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-10-25T01:32:16Z", + "pushed_at": "2019-10-25T16:41:09Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 13494, + "stargazers_count": 565, + "watchers_count": 565, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 433, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 64, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 433, + "open_issues": 64, + "watchers": 565, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "network_count": 433, + "subscribers_count": 48 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommitShortInfo/__files/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f23-d76abea9-c1be-430a-bbd0-28931c58e1e8.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommitShortInfo/__files/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f23-d76abea9-c1be-430a-bbd0-28931c58e1e8.json new file mode 100644 index 0000000000..b78f673197 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommitShortInfo/__files/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f23-d76abea9-c1be-430a-bbd0-28931c58e1e8.json @@ -0,0 +1,98 @@ +{ + "sha": "86a2e245aa6d71d54923655066049d9e21a15f23", + "node_id": "MDY6Q29tbWl0NjE3MjEwOjg2YTJlMjQ1YWE2ZDcxZDU0OTIzNjU1MDY2MDQ5ZDllMjFhMTVmMjM=", + "commit": { + "author": { + "name": "Kohsuke Kawaguchi", + "email": "kk@kohsuke.org", + "date": "2010-04-19T04:12:41Z" + }, + "committer": { + "name": "Kohsuke Kawaguchi", + "email": "kk@kohsuke.org", + "date": "2010-04-19T04:12:41Z" + }, + "message": "doc", + "tree": { + "sha": "17ed4173aeb2e98c93216e8b6e16138dc7f8cd91", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/17ed4173aeb2e98c93216e8b6e16138dc7f8cd91" + }, + "url": "https://api.github.com/repos/github-api/github-api/git/commits/86a2e245aa6d71d54923655066049d9e21a15f23", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/github-api/github-api/commits/86a2e245aa6d71d54923655066049d9e21a15f23", + "html_url": "https://github.com/github-api/github-api/commit/86a2e245aa6d71d54923655066049d9e21a15f23", + "comments_url": "https://api.github.com/repos/github-api/github-api/commits/86a2e245aa6d71d54923655066049d9e21a15f23/comments", + "author": { + "login": "kohsuke", + "id": 50003, + "node_id": "MDQ6VXNlcjUwMDAz", + "avatar_url": "https://avatars1.githubusercontent.com/u/50003?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kohsuke", + "html_url": "https://github.com/kohsuke", + "followers_url": "https://api.github.com/users/kohsuke/followers", + "following_url": "https://api.github.com/users/kohsuke/following{/other_user}", + "gists_url": "https://api.github.com/users/kohsuke/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kohsuke/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kohsuke/subscriptions", + "organizations_url": "https://api.github.com/users/kohsuke/orgs", + "repos_url": "https://api.github.com/users/kohsuke/repos", + "events_url": "https://api.github.com/users/kohsuke/events{/privacy}", + "received_events_url": "https://api.github.com/users/kohsuke/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "kohsuke", + "id": 50003, + "node_id": "MDQ6VXNlcjUwMDAz", + "avatar_url": "https://avatars1.githubusercontent.com/u/50003?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kohsuke", + "html_url": "https://github.com/kohsuke", + "followers_url": "https://api.github.com/users/kohsuke/followers", + "following_url": "https://api.github.com/users/kohsuke/following{/other_user}", + "gists_url": "https://api.github.com/users/kohsuke/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kohsuke/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kohsuke/subscriptions", + "organizations_url": "https://api.github.com/users/kohsuke/orgs", + "repos_url": "https://api.github.com/users/kohsuke/repos", + "events_url": "https://api.github.com/users/kohsuke/events{/privacy}", + "received_events_url": "https://api.github.com/users/kohsuke/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "ecbfdd7315ef2cf04b2be7f11a072ce0bd00c396", + "url": "https://api.github.com/repos/github-api/github-api/commits/ecbfdd7315ef2cf04b2be7f11a072ce0bd00c396", + "html_url": "https://github.com/github-api/github-api/commit/ecbfdd7315ef2cf04b2be7f11a072ce0bd00c396" + } + ], + "stats": { + "total": 3, + "additions": 3, + "deletions": 0 + }, + "files": [ + { + "sha": "2a2e1f77fd77bd03273946d893d25a455f696be0", + "filename": "README", + "status": "added", + "additions": 3, + "deletions": 0, + "changes": 3, + "blob_url": "https://github.com/github-api/github-api/blob/86a2e245aa6d71d54923655066049d9e21a15f23/README", + "raw_url": "https://github.com/github-api/github-api/raw/86a2e245aa6d71d54923655066049d9e21a15f23/README", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/README?ref=86a2e245aa6d71d54923655066049d9e21a15f23", + "patch": "@@ -0,0 +1,3 @@\n+Java API for GitHub\n+\n+See http://kohsuke.org/github-api/ for more details" + } + ] +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommitShortInfo/__files/user-c247f81b-84b8-44e9-820a-0a91dc74ce98.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommitShortInfo/__files/user-c247f81b-84b8-44e9-820a-0a91dc74ce98.json new file mode 100644 index 0000000000..a4b576e8a7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommitShortInfo/__files/user-c247f81b-84b8-44e9-820a-0a91dc74ce98.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 169, + "public_gists": 7, + "followers": 139, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommitShortInfo/mappings/repos_github-api_github-api-2-441cdf.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommitShortInfo/mappings/repos_github-api_github-api-2-441cdf.json new file mode 100644 index 0000000000..cb8bbebde0 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommitShortInfo/mappings/repos_github-api_github-api-2-441cdf.json @@ -0,0 +1,43 @@ +{ + "id": "441cdfd7-a44a-42b4-b732-57e674227760", + "name": "repos_github-api_github-api", + "request": { + "url": "/repos/github-api/github-api", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api_github-api-441cdfd7-a44a-42b4-b732-57e674227760.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:40 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4295", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"c1a01d01a6354d93b3cc6098e0b2d047\"", + "Last-Modified": "Fri, 25 Oct 2019 01:32:16 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CB01:05A2:A65B56:C4A050:5DB3A147" + } + }, + "uuid": "441cdfd7-a44a-42b4-b732-57e674227760", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommitShortInfo/mappings/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f23-3-d76abe.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommitShortInfo/mappings/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f23-3-d76abe.json new file mode 100644 index 0000000000..2c0f6d8031 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommitShortInfo/mappings/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f23-3-d76abe.json @@ -0,0 +1,43 @@ +{ + "id": "d76abea9-c1be-430a-bbd0-28931c58e1e8", + "name": "repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f23", + "request": { + "url": "/repos/github-api/github-api/commits/86a2e245aa6d71d54923655066049d9e21a15f23", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f23-d76abea9-c1be-430a-bbd0-28931c58e1e8.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:40 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4294", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"0a8c453e4290ce879ea09578e06a5961\"", + "Last-Modified": "Mon, 19 Apr 2010 04:12:41 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CB01:05A2:A65B5F:C4A064:5DB3A148" + } + }, + "uuid": "d76abea9-c1be-430a-bbd0-28931c58e1e8", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommitShortInfo/mappings/user-1-c247f8.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommitShortInfo/mappings/user-1-c247f8.json new file mode 100644 index 0000000000..31ec6520f5 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommitShortInfo/mappings/user-1-c247f8.json @@ -0,0 +1,43 @@ +{ + "id": "c247f81b-84b8-44e9-820a-0a91dc74ce98", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-c247f81b-84b8-44e9-820a-0a91dc74ce98.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:39 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4297", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"8c3d3dcf6fc5f9edaf26c902295396e5\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CB01:05A2:A65B49:C4A046:5DB3A147" + } + }, + "uuid": "c247f81b-84b8-44e9-820a-0a91dc74ce98", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommitStatus/__files/repos_github-api_github-api-b3932679-d938-421c-83c8-321c611cda12.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommitStatus/__files/repos_github-api_github-api-b3932679-d938-421c-83c8-321c611cda12.json new file mode 100644 index 0000000000..29eeabe7c9 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommitStatus/__files/repos_github-api_github-api-b3932679-d938-421c-83c8-321c611cda12.json @@ -0,0 +1,130 @@ +{ + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-10-25T01:32:16Z", + "pushed_at": "2019-10-25T16:41:09Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 13494, + "stargazers_count": 565, + "watchers_count": 565, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 433, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 64, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 433, + "open_issues": 64, + "watchers": 565, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "network_count": 433, + "subscribers_count": 48 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommitStatus/__files/repos_github-api_github-api_statuses_ecbfdd7315ef2cf04b2be7f11a072ce0bd00c396-6fad91ab-a75a-4968-b2cf-9b6edd71ee36.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommitStatus/__files/repos_github-api_github-api_statuses_ecbfdd7315ef2cf04b2be7f11a072ce0bd00c396-6fad91ab-a75a-4968-b2cf-9b6edd71ee36.json new file mode 100644 index 0000000000..8ba7ab572c --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommitStatus/__files/repos_github-api_github-api_statuses_ecbfdd7315ef2cf04b2be7f11a072ce0bd00c396-6fad91ab-a75a-4968-b2cf-9b6edd71ee36.json @@ -0,0 +1,34 @@ +[ + { + "url": "https://api.github.com/repos/github-api/github-api/statuses/ecbfdd7315ef2cf04b2be7f11a072ce0bd00c396", + "avatar_url": "https://avatars1.githubusercontent.com/u/50003?v=4", + "id": 49686125, + "node_id": "MDEzOlN0YXR1c0NvbnRleHQ0OTY4NjEyNQ==", + "state": "failure", + "description": "testing!", + "target_url": "http://kohsuke.org/", + "context": "default", + "created_at": "2014-03-28T17:06:19Z", + "updated_at": "2014-03-28T17:06:19Z", + "creator": { + "login": "kohsuke", + "id": 50003, + "node_id": "MDQ6VXNlcjUwMDAz", + "avatar_url": "https://avatars1.githubusercontent.com/u/50003?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kohsuke", + "html_url": "https://github.com/kohsuke", + "followers_url": "https://api.github.com/users/kohsuke/followers", + "following_url": "https://api.github.com/users/kohsuke/following{/other_user}", + "gists_url": "https://api.github.com/users/kohsuke/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kohsuke/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kohsuke/subscriptions", + "organizations_url": "https://api.github.com/users/kohsuke/orgs", + "repos_url": "https://api.github.com/users/kohsuke/repos", + "events_url": "https://api.github.com/users/kohsuke/events{/privacy}", + "received_events_url": "https://api.github.com/users/kohsuke/received_events", + "type": "User", + "site_admin": false + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommitStatus/__files/user-83b4bb7c-8af2-4ece-8e5a-c1a1f8e557e4.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommitStatus/__files/user-83b4bb7c-8af2-4ece-8e5a-c1a1f8e557e4.json new file mode 100644 index 0000000000..a4b576e8a7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommitStatus/__files/user-83b4bb7c-8af2-4ece-8e5a-c1a1f8e557e4.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 169, + "public_gists": 7, + "followers": 139, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommitStatus/mappings/repos_github-api_github-api-2-b39326.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommitStatus/mappings/repos_github-api_github-api-2-b39326.json new file mode 100644 index 0000000000..237a04da57 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommitStatus/mappings/repos_github-api_github-api-2-b39326.json @@ -0,0 +1,43 @@ +{ + "id": "b3932679-d938-421c-83c8-321c611cda12", + "name": "repos_github-api_github-api", + "request": { + "url": "/repos/github-api/github-api", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api_github-api-b3932679-d938-421c-83c8-321c611cda12.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:34 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4322", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"c1a01d01a6354d93b3cc6098e0b2d047\"", + "Last-Modified": "Fri, 25 Oct 2019 01:32:16 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAE1:45A4:C1463C:DF1120:5DB3A142" + } + }, + "uuid": "b3932679-d938-421c-83c8-321c611cda12", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommitStatus/mappings/repos_github-api_github-api_statuses_ecbfdd7315ef2cf04b2be7f11a072ce0bd00c396-3-6fad91.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommitStatus/mappings/repos_github-api_github-api_statuses_ecbfdd7315ef2cf04b2be7f11a072ce0bd00c396-3-6fad91.json new file mode 100644 index 0000000000..2adfaca55f --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommitStatus/mappings/repos_github-api_github-api_statuses_ecbfdd7315ef2cf04b2be7f11a072ce0bd00c396-3-6fad91.json @@ -0,0 +1,42 @@ +{ + "id": "6fad91ab-a75a-4968-b2cf-9b6edd71ee36", + "name": "repos_github-api_github-api_statuses_ecbfdd7315ef2cf04b2be7f11a072ce0bd00c396", + "request": { + "url": "/repos/github-api/github-api/statuses/ecbfdd7315ef2cf04b2be7f11a072ce0bd00c396", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api_github-api_statuses_ecbfdd7315ef2cf04b2be7f11a072ce0bd00c396-6fad91ab-a75a-4968-b2cf-9b6edd71ee36.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:35 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4321", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"9b40186e3eec6147394ae5898f0f021f\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAE1:45A4:C1465A:DF1160:5DB3A142" + } + }, + "uuid": "6fad91ab-a75a-4968-b2cf-9b6edd71ee36", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommitStatus/mappings/user-1-83b4bb.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommitStatus/mappings/user-1-83b4bb.json new file mode 100644 index 0000000000..534b540898 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCommitStatus/mappings/user-1-83b4bb.json @@ -0,0 +1,43 @@ +{ + "id": "83b4bb7c-8af2-4ece-8e5a-c1a1f8e557e4", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-83b4bb7c-8af2-4ece-8e5a-c1a1f8e557e4.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:34 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4324", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"8c3d3dcf6fc5f9edaf26c902295396e5\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAE1:45A4:C14616:DF1117:5DB3A142" + } + }, + "uuid": "83b4bb7c-8af2-4ece-8e5a-c1a1f8e557e4", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateAndListDeployments/__files/repos_github-api-test-org_github-api-test-31a86a0d-5120-47b8-a9bc-ec4b34a08080.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateAndListDeployments/__files/repos_github-api-test-org_github-api-test-31a86a0d-5120-47b8-a9bc-ec4b34a08080.json new file mode 100644 index 0000000000..4e1f05cc8a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateAndListDeployments/__files/repos_github-api-test-org_github-api-test-31a86a0d-5120-47b8-a9bc-ec4b34a08080.json @@ -0,0 +1,124 @@ +{ + "id": 212656166, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTI2NTYxNjY=", + "name": "github-api-test", + "full_name": "github-api-test-org/github-api-test", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api-test", + "description": "A test repository for testing the github-api project", + "fork": false, + "url": "https://api.github.com/repos/github-api-test-org/github-api-test", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api-test/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api-test/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api-test/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api-test/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api-test/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api-test/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api-test/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api-test/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api-test/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api-test/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api-test/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api-test/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api-test/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api-test/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api-test/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api-test/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api-test/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api-test/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api-test/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api-test/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api-test/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api-test/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api-test/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api-test/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api-test/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api-test/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api-test/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api-test/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api-test/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api-test/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api-test/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api-test/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api-test/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api-test/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api-test/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api-test/deployments", + "created_at": "2019-10-03T18:57:53Z", + "updated_at": "2019-10-03T18:57:57Z", + "pushed_at": "2019-10-03T18:57:54Z", + "git_url": "git://github.com/github-api-test-org/github-api-test.git", + "ssh_url": "git@github.com:github-api-test-org/github-api-test.git", + "clone_url": "https://github.com/github-api-test-org/github-api-test.git", + "svn_url": "https://github.com/github-api-test-org/github-api-test", + "homepage": "http://github-api.kohsuke.org/", + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "network_count": 0, + "subscribers_count": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateAndListDeployments/__files/repos_github-api-test-org_github-api-test_deployments-702b7123-86c1-41e0-bee7-f3cb89a3236d.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateAndListDeployments/__files/repos_github-api-test-org_github-api-test_deployments-702b7123-86c1-41e0-bee7-f3cb89a3236d.json new file mode 100644 index 0000000000..8a0ccba06d --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateAndListDeployments/__files/repos_github-api-test-org_github-api-test_deployments-702b7123-86c1-41e0-bee7-f3cb89a3236d.json @@ -0,0 +1,36 @@ +{ + "url": "http://localhost:62379/repos/github-api-test-org/github-api-test/deployments/173089055", + "id": 173089055, + "node_id": "MDEwOkRlcGxveW1lbnQxNzMwODkwNTU=", + "sha": "a446d9fa5c6f43d5f9333b625606909cd4635071", + "ref": "master", + "task": "deploy", + "payload": "{\"user\":\"atmos\",\"room_id\":123456}", + "original_environment": "unittest", + "environment": "unittest", + "description": "question", + "creator": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "http://localhost:62379/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "http://localhost:62379/users/bitwiseman/followers", + "following_url": "http://localhost:62379/users/bitwiseman/following{/other_user}", + "gists_url": "http://localhost:62379/users/bitwiseman/gists{/gist_id}", + "starred_url": "http://localhost:62379/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "http://localhost:62379/users/bitwiseman/subscriptions", + "organizations_url": "http://localhost:62379/users/bitwiseman/orgs", + "repos_url": "http://localhost:62379/users/bitwiseman/repos", + "events_url": "http://localhost:62379/users/bitwiseman/events{/privacy}", + "received_events_url": "http://localhost:62379/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2019-10-03T18:57:57Z", + "updated_at": "2019-10-03T18:57:57Z", + "statuses_url": "http://localhost:62379/repos/github-api-test-org/github-api-test/deployments/173089055/statuses", + "repository_url": "http://localhost:62379/repos/github-api-test-org/github-api-test" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateAndListDeployments/__files/repos_github-api-test-org_github-api-test_deployments-b4bcdadb-a708-4509-9382-479f300eb172.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateAndListDeployments/__files/repos_github-api-test-org_github-api-test_deployments-b4bcdadb-a708-4509-9382-479f300eb172.json new file mode 100644 index 0000000000..ffacc12cf0 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateAndListDeployments/__files/repos_github-api-test-org_github-api-test_deployments-b4bcdadb-a708-4509-9382-479f300eb172.json @@ -0,0 +1,38 @@ +[ + { + "url": "https://api.github.com/repos/github-api-test-org/github-api-test/deployments/173089055", + "id": 173089055, + "node_id": "MDEwOkRlcGxveW1lbnQxNzMwODkwNTU=", + "sha": "a446d9fa5c6f43d5f9333b625606909cd4635071", + "ref": "master", + "task": "deploy", + "payload": "{\"user\":\"atmos\",\"room_id\":123456}", + "original_environment": "unittest", + "environment": "unittest", + "description": "question", + "creator": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2019-10-03T18:57:57Z", + "updated_at": "2019-10-03T18:57:57Z", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api-test/deployments/173089055/statuses", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api-test" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateAndListDeployments/__files/user-6d2dcbf4-4abf-4180-9b55-ca2931ca31c5.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateAndListDeployments/__files/user-6d2dcbf4-4abf-4180-9b55-ca2931ca31c5.json new file mode 100644 index 0000000000..39d6c8353e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateAndListDeployments/__files/user-6d2dcbf4-4abf-4180-9b55-ca2931ca31c5.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 167, + "public_gists": 4, + "followers": 136, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateAndListDeployments/mappings/repos_github-api-test-org_github-api-test-2-31a86a.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateAndListDeployments/mappings/repos_github-api-test-org_github-api-test-2-31a86a.json new file mode 100644 index 0000000000..b1374a479f --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateAndListDeployments/mappings/repos_github-api-test-org_github-api-test-2-31a86a.json @@ -0,0 +1,43 @@ +{ + "id": "31a86a0d-5120-47b8-a9bc-ec4b34a08080", + "name": "repos_github-api-test-org_github-api-test", + "request": { + "url": "/repos/github-api-test-org/github-api-test", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api-test-31a86a0d-5120-47b8-a9bc-ec4b34a08080.json", + "headers": { + "Date": "Thu, 03 Oct 2019 18:57:57 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4750", + "X-RateLimit-Reset": "1570132527", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"65ee4cf55cf4d084267c80a5d39244c6\"", + "Last-Modified": "Thu, 03 Oct 2019 18:57:57 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F3AD:3618:10E8DB:149FB6:5D9644B0" + } + }, + "uuid": "31a86a0d-5120-47b8-a9bc-ec4b34a08080", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateAndListDeployments/mappings/repos_github-api-test-org_github-api-test_deployments-3-702b71.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateAndListDeployments/mappings/repos_github-api-test-org_github-api-test_deployments-3-702b71.json new file mode 100644 index 0000000000..689b260dcd --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateAndListDeployments/mappings/repos_github-api-test-org_github-api-test_deployments-3-702b71.json @@ -0,0 +1,51 @@ +{ + "id": "702b7123-86c1-41e0-bee7-f3cb89a3236d", + "name": "repos_github-api-test-org_github-api-test_deployments", + "request": { + "url": "/repos/github-api-test-org/github-api-test/deployments", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"ref\":\"master\",\"environment\":\"unittest\",\"payload\":\"{\\\"user\\\":\\\"atmos\\\",\\\"room_id\\\":123456}\",\"description\":\"question\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "repos_github-api-test-org_github-api-test_deployments-702b7123-86c1-41e0-bee7-f3cb89a3236d.json", + "headers": { + "Date": "Thu, 03 Oct 2019 18:57:57 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4749", + "X-RateLimit-Reset": "1570132527", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"c76b22eae3a1d091db2c789a39fecda9\"", + "Last-Modified": "Thu, 03 Oct 2019 18:57:57 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/github-api-test-org/github-api-test/deployments/173089055", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F3AD:3618:10E8DF:149FEF:5D9644B5" + } + }, + "uuid": "702b7123-86c1-41e0-bee7-f3cb89a3236d", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateAndListDeployments/mappings/repos_github-api-test-org_github-api-test_deployments-4-b4bcda.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateAndListDeployments/mappings/repos_github-api-test-org_github-api-test_deployments-4-b4bcda.json new file mode 100644 index 0000000000..b5fe8f595e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateAndListDeployments/mappings/repos_github-api-test-org_github-api-test_deployments-4-b4bcda.json @@ -0,0 +1,42 @@ +{ + "id": "b4bcdadb-a708-4509-9382-479f300eb172", + "name": "repos_github-api-test-org_github-api-test_deployments", + "request": { + "url": "/repos/github-api-test-org/github-api-test/deployments?ref=master&environment=unittest&", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api-test_deployments-b4bcdadb-a708-4509-9382-479f300eb172.json", + "headers": { + "Date": "Thu, 03 Oct 2019 18:57:58 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4748", + "X-RateLimit-Reset": "1570132527", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"b47f03577f96c1081341944009009f7f\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo, repo_deployment", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F3AD:3618:10E8E2:149FF2:5D9644B5" + } + }, + "uuid": "b4bcdadb-a708-4509-9382-479f300eb172", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateAndListDeployments/mappings/user-1-6d2dcb.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateAndListDeployments/mappings/user-1-6d2dcb.json new file mode 100644 index 0000000000..91644f4573 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateAndListDeployments/mappings/user-1-6d2dcb.json @@ -0,0 +1,43 @@ +{ + "id": "6d2dcbf4-4abf-4180-9b55-ca2931ca31c5", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-6d2dcbf4-4abf-4180-9b55-ca2931ca31c5.json", + "headers": { + "Date": "Thu, 03 Oct 2019 18:57:52 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4759", + "X-RateLimit-Reset": "1570132527", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"cf6199fecf47b59c42190e1e11147ee2\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F3AD:3618:10E8AA:149FB4:5D9644B0" + } + }, + "uuid": "6d2dcbf4-4abf-4180-9b55-ca2931ca31c5", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateCommitComment/__files/repos_kohsuke_sandbox-ant-3fd5d206-9d71-4f2a-bc95-605c06b6f793.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateCommitComment/__files/repos_kohsuke_sandbox-ant-3fd5d206-9d71-4f2a-bc95-605c06b6f793.json new file mode 100644 index 0000000000..4879fdf8f6 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateCommitComment/__files/repos_kohsuke_sandbox-ant-3fd5d206-9d71-4f2a-bc95-605c06b6f793.json @@ -0,0 +1,289 @@ +{ + "id": 3422601, + "node_id": "MDEwOlJlcG9zaXRvcnkzNDIyNjAx", + "name": "sandbox-ant", + "full_name": "kohsuke/sandbox-ant", + "private": false, + "owner": { + "login": "kohsuke", + "id": 50003, + "node_id": "MDQ6VXNlcjUwMDAz", + "avatar_url": "https://avatars1.githubusercontent.com/u/50003?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kohsuke", + "html_url": "https://github.com/kohsuke", + "followers_url": "https://api.github.com/users/kohsuke/followers", + "following_url": "https://api.github.com/users/kohsuke/following{/other_user}", + "gists_url": "https://api.github.com/users/kohsuke/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kohsuke/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kohsuke/subscriptions", + "organizations_url": "https://api.github.com/users/kohsuke/orgs", + "repos_url": "https://api.github.com/users/kohsuke/repos", + "events_url": "https://api.github.com/users/kohsuke/events{/privacy}", + "received_events_url": "https://api.github.com/users/kohsuke/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/kohsuke/sandbox-ant", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/kohsuke/sandbox-ant", + "forks_url": "https://api.github.com/repos/kohsuke/sandbox-ant/forks", + "keys_url": "https://api.github.com/repos/kohsuke/sandbox-ant/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/kohsuke/sandbox-ant/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/kohsuke/sandbox-ant/teams", + "hooks_url": "https://api.github.com/repos/kohsuke/sandbox-ant/hooks", + "issue_events_url": "https://api.github.com/repos/kohsuke/sandbox-ant/issues/events{/number}", + "events_url": "https://api.github.com/repos/kohsuke/sandbox-ant/events", + "assignees_url": "https://api.github.com/repos/kohsuke/sandbox-ant/assignees{/user}", + "branches_url": "https://api.github.com/repos/kohsuke/sandbox-ant/branches{/branch}", + "tags_url": "https://api.github.com/repos/kohsuke/sandbox-ant/tags", + "blobs_url": "https://api.github.com/repos/kohsuke/sandbox-ant/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/kohsuke/sandbox-ant/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/kohsuke/sandbox-ant/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/kohsuke/sandbox-ant/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/kohsuke/sandbox-ant/statuses/{sha}", + "languages_url": "https://api.github.com/repos/kohsuke/sandbox-ant/languages", + "stargazers_url": "https://api.github.com/repos/kohsuke/sandbox-ant/stargazers", + "contributors_url": "https://api.github.com/repos/kohsuke/sandbox-ant/contributors", + "subscribers_url": "https://api.github.com/repos/kohsuke/sandbox-ant/subscribers", + "subscription_url": "https://api.github.com/repos/kohsuke/sandbox-ant/subscription", + "commits_url": "https://api.github.com/repos/kohsuke/sandbox-ant/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/kohsuke/sandbox-ant/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/kohsuke/sandbox-ant/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/kohsuke/sandbox-ant/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/kohsuke/sandbox-ant/contents/{+path}", + "compare_url": "https://api.github.com/repos/kohsuke/sandbox-ant/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/kohsuke/sandbox-ant/merges", + "archive_url": "https://api.github.com/repos/kohsuke/sandbox-ant/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/kohsuke/sandbox-ant/downloads", + "issues_url": "https://api.github.com/repos/kohsuke/sandbox-ant/issues{/number}", + "pulls_url": "https://api.github.com/repos/kohsuke/sandbox-ant/pulls{/number}", + "milestones_url": "https://api.github.com/repos/kohsuke/sandbox-ant/milestones{/number}", + "notifications_url": "https://api.github.com/repos/kohsuke/sandbox-ant/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/kohsuke/sandbox-ant/labels{/name}", + "releases_url": "https://api.github.com/repos/kohsuke/sandbox-ant/releases{/id}", + "deployments_url": "https://api.github.com/repos/kohsuke/sandbox-ant/deployments", + "created_at": "2012-02-12T15:20:30Z", + "updated_at": "2019-08-13T14:56:58Z", + "pushed_at": "2012-05-17T14:05:23Z", + "git_url": "git://github.com/kohsuke/sandbox-ant.git", + "ssh_url": "git@github.com:kohsuke/sandbox-ant.git", + "clone_url": "https://github.com/kohsuke/sandbox-ant.git", + "svn_url": "https://github.com/kohsuke/sandbox-ant", + "homepage": "", + "size": 121, + "stargazers_count": 2, + "watchers_count": 2, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + }, + "parent": { + "id": 3231216, + "node_id": "MDEwOlJlcG9zaXRvcnkzMjMxMjE2", + "name": "sandbox-ant", + "full_name": "kohsuke2/sandbox-ant", + "private": false, + "owner": { + "login": "kohsuke2", + "id": 1329242, + "node_id": "MDQ6VXNlcjEzMjkyNDI=", + "avatar_url": "https://avatars2.githubusercontent.com/u/1329242?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kohsuke2", + "html_url": "https://github.com/kohsuke2", + "followers_url": "https://api.github.com/users/kohsuke2/followers", + "following_url": "https://api.github.com/users/kohsuke2/following{/other_user}", + "gists_url": "https://api.github.com/users/kohsuke2/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kohsuke2/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kohsuke2/subscriptions", + "organizations_url": "https://api.github.com/users/kohsuke2/orgs", + "repos_url": "https://api.github.com/users/kohsuke2/repos", + "events_url": "https://api.github.com/users/kohsuke2/events{/privacy}", + "received_events_url": "https://api.github.com/users/kohsuke2/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/kohsuke2/sandbox-ant", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/kohsuke2/sandbox-ant", + "forks_url": "https://api.github.com/repos/kohsuke2/sandbox-ant/forks", + "keys_url": "https://api.github.com/repos/kohsuke2/sandbox-ant/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/kohsuke2/sandbox-ant/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/kohsuke2/sandbox-ant/teams", + "hooks_url": "https://api.github.com/repos/kohsuke2/sandbox-ant/hooks", + "issue_events_url": "https://api.github.com/repos/kohsuke2/sandbox-ant/issues/events{/number}", + "events_url": "https://api.github.com/repos/kohsuke2/sandbox-ant/events", + "assignees_url": "https://api.github.com/repos/kohsuke2/sandbox-ant/assignees{/user}", + "branches_url": "https://api.github.com/repos/kohsuke2/sandbox-ant/branches{/branch}", + "tags_url": "https://api.github.com/repos/kohsuke2/sandbox-ant/tags", + "blobs_url": "https://api.github.com/repos/kohsuke2/sandbox-ant/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/kohsuke2/sandbox-ant/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/kohsuke2/sandbox-ant/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/kohsuke2/sandbox-ant/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/kohsuke2/sandbox-ant/statuses/{sha}", + "languages_url": "https://api.github.com/repos/kohsuke2/sandbox-ant/languages", + "stargazers_url": "https://api.github.com/repos/kohsuke2/sandbox-ant/stargazers", + "contributors_url": "https://api.github.com/repos/kohsuke2/sandbox-ant/contributors", + "subscribers_url": "https://api.github.com/repos/kohsuke2/sandbox-ant/subscribers", + "subscription_url": "https://api.github.com/repos/kohsuke2/sandbox-ant/subscription", + "commits_url": "https://api.github.com/repos/kohsuke2/sandbox-ant/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/kohsuke2/sandbox-ant/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/kohsuke2/sandbox-ant/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/kohsuke2/sandbox-ant/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/kohsuke2/sandbox-ant/contents/{+path}", + "compare_url": "https://api.github.com/repos/kohsuke2/sandbox-ant/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/kohsuke2/sandbox-ant/merges", + "archive_url": "https://api.github.com/repos/kohsuke2/sandbox-ant/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/kohsuke2/sandbox-ant/downloads", + "issues_url": "https://api.github.com/repos/kohsuke2/sandbox-ant/issues{/number}", + "pulls_url": "https://api.github.com/repos/kohsuke2/sandbox-ant/pulls{/number}", + "milestones_url": "https://api.github.com/repos/kohsuke2/sandbox-ant/milestones{/number}", + "notifications_url": "https://api.github.com/repos/kohsuke2/sandbox-ant/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/kohsuke2/sandbox-ant/labels{/name}", + "releases_url": "https://api.github.com/repos/kohsuke2/sandbox-ant/releases{/id}", + "deployments_url": "https://api.github.com/repos/kohsuke2/sandbox-ant/deployments", + "created_at": "2012-01-21T00:41:52Z", + "updated_at": "2019-08-13T14:55:44Z", + "pushed_at": "2014-11-18T01:52:04Z", + "git_url": "git://github.com/kohsuke2/sandbox-ant.git", + "ssh_url": "git@github.com:kohsuke2/sandbox-ant.git", + "clone_url": "https://github.com/kohsuke2/sandbox-ant.git", + "svn_url": "https://github.com/kohsuke2/sandbox-ant", + "homepage": "", + "size": 166, + "stargazers_count": 4, + "watchers_count": 4, + "language": null, + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 4, + "open_issues": 0, + "watchers": 4, + "default_branch": "master" + }, + "source": { + "id": 3231216, + "node_id": "MDEwOlJlcG9zaXRvcnkzMjMxMjE2", + "name": "sandbox-ant", + "full_name": "kohsuke2/sandbox-ant", + "private": false, + "owner": { + "login": "kohsuke2", + "id": 1329242, + "node_id": "MDQ6VXNlcjEzMjkyNDI=", + "avatar_url": "https://avatars2.githubusercontent.com/u/1329242?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kohsuke2", + "html_url": "https://github.com/kohsuke2", + "followers_url": "https://api.github.com/users/kohsuke2/followers", + "following_url": "https://api.github.com/users/kohsuke2/following{/other_user}", + "gists_url": "https://api.github.com/users/kohsuke2/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kohsuke2/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kohsuke2/subscriptions", + "organizations_url": "https://api.github.com/users/kohsuke2/orgs", + "repos_url": "https://api.github.com/users/kohsuke2/repos", + "events_url": "https://api.github.com/users/kohsuke2/events{/privacy}", + "received_events_url": "https://api.github.com/users/kohsuke2/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/kohsuke2/sandbox-ant", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/kohsuke2/sandbox-ant", + "forks_url": "https://api.github.com/repos/kohsuke2/sandbox-ant/forks", + "keys_url": "https://api.github.com/repos/kohsuke2/sandbox-ant/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/kohsuke2/sandbox-ant/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/kohsuke2/sandbox-ant/teams", + "hooks_url": "https://api.github.com/repos/kohsuke2/sandbox-ant/hooks", + "issue_events_url": "https://api.github.com/repos/kohsuke2/sandbox-ant/issues/events{/number}", + "events_url": "https://api.github.com/repos/kohsuke2/sandbox-ant/events", + "assignees_url": "https://api.github.com/repos/kohsuke2/sandbox-ant/assignees{/user}", + "branches_url": "https://api.github.com/repos/kohsuke2/sandbox-ant/branches{/branch}", + "tags_url": "https://api.github.com/repos/kohsuke2/sandbox-ant/tags", + "blobs_url": "https://api.github.com/repos/kohsuke2/sandbox-ant/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/kohsuke2/sandbox-ant/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/kohsuke2/sandbox-ant/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/kohsuke2/sandbox-ant/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/kohsuke2/sandbox-ant/statuses/{sha}", + "languages_url": "https://api.github.com/repos/kohsuke2/sandbox-ant/languages", + "stargazers_url": "https://api.github.com/repos/kohsuke2/sandbox-ant/stargazers", + "contributors_url": "https://api.github.com/repos/kohsuke2/sandbox-ant/contributors", + "subscribers_url": "https://api.github.com/repos/kohsuke2/sandbox-ant/subscribers", + "subscription_url": "https://api.github.com/repos/kohsuke2/sandbox-ant/subscription", + "commits_url": "https://api.github.com/repos/kohsuke2/sandbox-ant/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/kohsuke2/sandbox-ant/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/kohsuke2/sandbox-ant/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/kohsuke2/sandbox-ant/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/kohsuke2/sandbox-ant/contents/{+path}", + "compare_url": "https://api.github.com/repos/kohsuke2/sandbox-ant/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/kohsuke2/sandbox-ant/merges", + "archive_url": "https://api.github.com/repos/kohsuke2/sandbox-ant/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/kohsuke2/sandbox-ant/downloads", + "issues_url": "https://api.github.com/repos/kohsuke2/sandbox-ant/issues{/number}", + "pulls_url": "https://api.github.com/repos/kohsuke2/sandbox-ant/pulls{/number}", + "milestones_url": "https://api.github.com/repos/kohsuke2/sandbox-ant/milestones{/number}", + "notifications_url": "https://api.github.com/repos/kohsuke2/sandbox-ant/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/kohsuke2/sandbox-ant/labels{/name}", + "releases_url": "https://api.github.com/repos/kohsuke2/sandbox-ant/releases{/id}", + "deployments_url": "https://api.github.com/repos/kohsuke2/sandbox-ant/deployments", + "created_at": "2012-01-21T00:41:52Z", + "updated_at": "2019-08-13T14:55:44Z", + "pushed_at": "2014-11-18T01:52:04Z", + "git_url": "git://github.com/kohsuke2/sandbox-ant.git", + "ssh_url": "git@github.com:kohsuke2/sandbox-ant.git", + "clone_url": "https://github.com/kohsuke2/sandbox-ant.git", + "svn_url": "https://github.com/kohsuke2/sandbox-ant", + "homepage": "", + "size": 166, + "stargazers_count": 4, + "watchers_count": 4, + "language": null, + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 4, + "open_issues": 0, + "watchers": 4, + "default_branch": "master" + }, + "network_count": 4, + "subscribers_count": 0 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateCommitComment/__files/repos_kohsuke_sandbox-ant_comments_35673784-70a63f41-02d3-404e-af0b-8e1c3cd00494.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateCommitComment/__files/repos_kohsuke_sandbox-ant_comments_35673784-70a63f41-02d3-404e-af0b-8e1c3cd00494.json new file mode 100644 index 0000000000..ebfb21fc90 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateCommitComment/__files/repos_kohsuke_sandbox-ant_comments_35673784-70a63f41-02d3-404e-af0b-8e1c3cd00494.json @@ -0,0 +1,34 @@ +{ + "url": "https://api.github.com/repos/kohsuke/sandbox-ant/comments/35673784", + "html_url": "https://github.com/kohsuke/sandbox-ant/commit/8ae38db0ea5837313ab5f39d43a6f73de3bd9000#commitcomment-35673784", + "id": 35673784, + "node_id": "MDEzOkNvbW1pdENvbW1lbnQzNTY3Mzc4NA==", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "position": null, + "line": null, + "path": null, + "commit_id": "8ae38db0ea5837313ab5f39d43a6f73de3bd9000", + "created_at": "2019-10-26T01:28:59Z", + "updated_at": "2019-10-26T01:28:59Z", + "author_association": "NONE", + "body": "updated text" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateCommitComment/__files/repos_kohsuke_sandbox-ant_commits_8ae38db0ea5837313ab5f39d43a6f73de3bd9000-d1822d1b-5505-42ae-ba1d-ae0496d76c19.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateCommitComment/__files/repos_kohsuke_sandbox-ant_commits_8ae38db0ea5837313ab5f39d43a6f73de3bd9000-d1822d1b-5505-42ae-ba1d-ae0496d76c19.json new file mode 100644 index 0000000000..c0dd00afc0 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateCommitComment/__files/repos_kohsuke_sandbox-ant_commits_8ae38db0ea5837313ab5f39d43a6f73de3bd9000-d1822d1b-5505-42ae-ba1d-ae0496d76c19.json @@ -0,0 +1,98 @@ +{ + "sha": "8ae38db0ea5837313ab5f39d43a6f73de3bd9000", + "node_id": "MDY6Q29tbWl0MzQyMjYwMTo4YWUzOGRiMGVhNTgzNzMxM2FiNWYzOWQ0M2E2ZjczZGUzYmQ5MDAw", + "commit": { + "author": { + "name": "Kohsuke Kawaguchi", + "email": "kk@kohsuke.org", + "date": "2012-04-24T22:54:20Z" + }, + "committer": { + "name": "Kohsuke Kawaguchi", + "email": "kk@kohsuke.org", + "date": "2012-04-24T22:54:20Z" + }, + "message": "deleted", + "tree": { + "sha": "7499e2f81fdaa0f861d522218424636032ee0c39", + "url": "https://api.github.com/repos/kohsuke/sandbox-ant/git/trees/7499e2f81fdaa0f861d522218424636032ee0c39" + }, + "url": "https://api.github.com/repos/kohsuke/sandbox-ant/git/commits/8ae38db0ea5837313ab5f39d43a6f73de3bd9000", + "comment_count": 30, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/kohsuke/sandbox-ant/commits/8ae38db0ea5837313ab5f39d43a6f73de3bd9000", + "html_url": "https://github.com/kohsuke/sandbox-ant/commit/8ae38db0ea5837313ab5f39d43a6f73de3bd9000", + "comments_url": "https://api.github.com/repos/kohsuke/sandbox-ant/commits/8ae38db0ea5837313ab5f39d43a6f73de3bd9000/comments", + "author": { + "login": "kohsuke", + "id": 50003, + "node_id": "MDQ6VXNlcjUwMDAz", + "avatar_url": "https://avatars1.githubusercontent.com/u/50003?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kohsuke", + "html_url": "https://github.com/kohsuke", + "followers_url": "https://api.github.com/users/kohsuke/followers", + "following_url": "https://api.github.com/users/kohsuke/following{/other_user}", + "gists_url": "https://api.github.com/users/kohsuke/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kohsuke/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kohsuke/subscriptions", + "organizations_url": "https://api.github.com/users/kohsuke/orgs", + "repos_url": "https://api.github.com/users/kohsuke/repos", + "events_url": "https://api.github.com/users/kohsuke/events{/privacy}", + "received_events_url": "https://api.github.com/users/kohsuke/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "kohsuke", + "id": 50003, + "node_id": "MDQ6VXNlcjUwMDAz", + "avatar_url": "https://avatars1.githubusercontent.com/u/50003?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kohsuke", + "html_url": "https://github.com/kohsuke", + "followers_url": "https://api.github.com/users/kohsuke/followers", + "following_url": "https://api.github.com/users/kohsuke/following{/other_user}", + "gists_url": "https://api.github.com/users/kohsuke/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kohsuke/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kohsuke/subscriptions", + "organizations_url": "https://api.github.com/users/kohsuke/orgs", + "repos_url": "https://api.github.com/users/kohsuke/repos", + "events_url": "https://api.github.com/users/kohsuke/events{/privacy}", + "received_events_url": "https://api.github.com/users/kohsuke/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "c6e9f4865e57d52992c86111858d289d36b6cf7d", + "url": "https://api.github.com/repos/kohsuke/sandbox-ant/commits/c6e9f4865e57d52992c86111858d289d36b6cf7d", + "html_url": "https://github.com/kohsuke/sandbox-ant/commit/c6e9f4865e57d52992c86111858d289d36b6cf7d" + } + ], + "stats": { + "total": 2, + "additions": 0, + "deletions": 2 + }, + "files": [ + { + "sha": "5d8a5566f0e8b2794b60559ecaa3cf8986e23d47", + "filename": "a", + "status": "removed", + "additions": 0, + "deletions": 2, + "changes": 2, + "blob_url": "https://github.com/kohsuke/sandbox-ant/blob/c6e9f4865e57d52992c86111858d289d36b6cf7d/a", + "raw_url": "https://github.com/kohsuke/sandbox-ant/raw/c6e9f4865e57d52992c86111858d289d36b6cf7d/a", + "contents_url": "https://api.github.com/repos/kohsuke/sandbox-ant/contents/a?ref=c6e9f4865e57d52992c86111858d289d36b6cf7d", + "patch": "@@ -1,2 +0,0 @@\n-abc\n-abc" + } + ] +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateCommitComment/__files/repos_kohsuke_sandbox-ant_commits_8ae38db0ea5837313ab5f39d43a6f73de3bd9000_comments-62d11eb1-6045-42a7-988a-aae9d9f3800b.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateCommitComment/__files/repos_kohsuke_sandbox-ant_commits_8ae38db0ea5837313ab5f39d43a6f73de3bd9000_comments-62d11eb1-6045-42a7-988a-aae9d9f3800b.json new file mode 100644 index 0000000000..9b7f5bdd33 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateCommitComment/__files/repos_kohsuke_sandbox-ant_commits_8ae38db0ea5837313ab5f39d43a6f73de3bd9000_comments-62d11eb1-6045-42a7-988a-aae9d9f3800b.json @@ -0,0 +1,34 @@ +{ + "url": "https://api.github.com/repos/kohsuke/sandbox-ant/comments/35673784", + "html_url": "https://github.com/kohsuke/sandbox-ant/commit/8ae38db0ea5837313ab5f39d43a6f73de3bd9000#commitcomment-35673784", + "id": 35673784, + "node_id": "MDEzOkNvbW1pdENvbW1lbnQzNTY3Mzc4NA==", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "position": null, + "line": null, + "path": null, + "commit_id": "8ae38db0ea5837313ab5f39d43a6f73de3bd9000", + "created_at": "2019-10-26T01:28:59Z", + "updated_at": "2019-10-26T01:28:59Z", + "author_association": "NONE", + "body": "[testing](http://kohsuse.org/)" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateCommitComment/__files/user-a9b48b44-c9ff-4434-9f98-64195b0c46ce.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateCommitComment/__files/user-a9b48b44-c9ff-4434-9f98-64195b0c46ce.json new file mode 100644 index 0000000000..a4b576e8a7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateCommitComment/__files/user-a9b48b44-c9ff-4434-9f98-64195b0c46ce.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 169, + "public_gists": 7, + "followers": 139, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateCommitComment/__files/users_kohsuke-a4924f94-0b1c-4cb0-bf1f-595ccb78aa41.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateCommitComment/__files/users_kohsuke-a4924f94-0b1c-4cb0-bf1f-595ccb78aa41.json new file mode 100644 index 0000000000..f0eb753281 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateCommitComment/__files/users_kohsuke-a4924f94-0b1c-4cb0-bf1f-595ccb78aa41.json @@ -0,0 +1,33 @@ +{ + "login": "kohsuke", + "id": 50003, + "node_id": "MDQ6VXNlcjUwMDAz", + "avatar_url": "https://avatars1.githubusercontent.com/u/50003?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kohsuke", + "html_url": "https://github.com/kohsuke", + "followers_url": "https://api.github.com/users/kohsuke/followers", + "following_url": "https://api.github.com/users/kohsuke/following{/other_user}", + "gists_url": "https://api.github.com/users/kohsuke/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kohsuke/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kohsuke/subscriptions", + "organizations_url": "https://api.github.com/users/kohsuke/orgs", + "repos_url": "https://api.github.com/users/kohsuke/repos", + "events_url": "https://api.github.com/users/kohsuke/events{/privacy}", + "received_events_url": "https://api.github.com/users/kohsuke/received_events", + "type": "User", + "site_admin": false, + "name": "Kohsuke Kawaguchi", + "company": "CloudBees, Inc.", + "blog": "http://www.kohsuke.org/", + "location": "San Jose, California", + "email": "kk@kohsuke.org", + "hireable": null, + "bio": null, + "public_repos": 257, + "public_gists": 109, + "followers": 1692, + "following": 3, + "created_at": "2009-01-28T18:53:21Z", + "updated_at": "2019-10-25T16:53:26Z" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateCommitComment/mappings/repos_kohsuke_sandbox-ant-3-3fd5d2.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateCommitComment/mappings/repos_kohsuke_sandbox-ant-3-3fd5d2.json new file mode 100644 index 0000000000..d2589a79ba --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateCommitComment/mappings/repos_kohsuke_sandbox-ant-3-3fd5d2.json @@ -0,0 +1,43 @@ +{ + "id": "3fd5d206-9d71-4f2a-bc95-605c06b6f793", + "name": "repos_kohsuke_sandbox-ant", + "request": { + "url": "/repos/kohsuke/sandbox-ant", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_kohsuke_sandbox-ant-3fd5d206-9d71-4f2a-bc95-605c06b6f793.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:58 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4242", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"6d4495f0d482e4612ed1964d37884bce\"", + "Last-Modified": "Tue, 13 Aug 2019 14:56:58 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CB24:8340:ED2364:116FE52:5DB3A15A" + } + }, + "uuid": "3fd5d206-9d71-4f2a-bc95-605c06b6f793", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateCommitComment/mappings/repos_kohsuke_sandbox-ant_comments_35673784-6-70a63f.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateCommitComment/mappings/repos_kohsuke_sandbox-ant_comments_35673784-6-70a63f.json new file mode 100644 index 0000000000..c40a642c12 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateCommitComment/mappings/repos_kohsuke_sandbox-ant_comments_35673784-6-70a63f.json @@ -0,0 +1,49 @@ +{ + "id": "70a63f41-02d3-404e-af0b-8e1c3cd00494", + "name": "repos_kohsuke_sandbox-ant_comments_35673784", + "request": { + "url": "/repos/kohsuke/sandbox-ant/comments/35673784", + "method": "PATCH", + "bodyPatterns": [ + { + "equalToJson": "{\"body\":\"updated text\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 200, + "bodyFileName": "repos_kohsuke_sandbox-ant_comments_35673784-70a63f41-02d3-404e-af0b-8e1c3cd00494.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:59 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4239", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"e22c642208efa831e007ec061a30aae3\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CB24:8340:ED23BA:116FEBA:5DB3A15B" + } + }, + "uuid": "70a63f41-02d3-404e-af0b-8e1c3cd00494", + "persistent": true, + "insertionIndex": 6 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateCommitComment/mappings/repos_kohsuke_sandbox-ant_comments_35673784-7-1e9db3.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateCommitComment/mappings/repos_kohsuke_sandbox-ant_comments_35673784-7-1e9db3.json new file mode 100644 index 0000000000..ee1f0632b3 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateCommitComment/mappings/repos_kohsuke_sandbox-ant_comments_35673784-7-1e9db3.json @@ -0,0 +1,35 @@ +{ + "id": "1e9db334-efda-432b-890e-c9b513935a0b", + "name": "repos_kohsuke_sandbox-ant_comments_35673784", + "request": { + "url": "/repos/kohsuke/sandbox-ant/comments/35673784", + "method": "DELETE" + }, + "response": { + "status": 204, + "headers": { + "Date": "Sat, 26 Oct 2019 01:29:00 GMT", + "Server": "GitHub.com", + "Status": "204 No Content", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4238", + "X-RateLimit-Reset": "1572055286", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "CB24:8340:ED23D1:116FED8:5DB3A15B" + } + }, + "uuid": "1e9db334-efda-432b-890e-c9b513935a0b", + "persistent": true, + "insertionIndex": 7 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateCommitComment/mappings/repos_kohsuke_sandbox-ant_commits_8ae38db0ea5837313ab5f39d43a6f73de3bd9000-4-d1822d.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateCommitComment/mappings/repos_kohsuke_sandbox-ant_commits_8ae38db0ea5837313ab5f39d43a6f73de3bd9000-4-d1822d.json new file mode 100644 index 0000000000..5445b8b5b0 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateCommitComment/mappings/repos_kohsuke_sandbox-ant_commits_8ae38db0ea5837313ab5f39d43a6f73de3bd9000-4-d1822d.json @@ -0,0 +1,43 @@ +{ + "id": "d1822d1b-5505-42ae-ba1d-ae0496d76c19", + "name": "repos_kohsuke_sandbox-ant_commits_8ae38db0ea5837313ab5f39d43a6f73de3bd9000", + "request": { + "url": "/repos/kohsuke/sandbox-ant/commits/8ae38db0ea5837313ab5f39d43a6f73de3bd9000", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_kohsuke_sandbox-ant_commits_8ae38db0ea5837313ab5f39d43a6f73de3bd9000-d1822d1b-5505-42ae-ba1d-ae0496d76c19.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:58 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4241", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"f7ff477379d3449f082c148579824d0f\"", + "Last-Modified": "Tue, 24 Apr 2012 22:54:20 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CB24:8340:ED2375:116FE66:5DB3A15A" + } + }, + "uuid": "d1822d1b-5505-42ae-ba1d-ae0496d76c19", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateCommitComment/mappings/repos_kohsuke_sandbox-ant_commits_8ae38db0ea5837313ab5f39d43a6f73de3bd9000_comments-5-62d11e.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateCommitComment/mappings/repos_kohsuke_sandbox-ant_commits_8ae38db0ea5837313ab5f39d43a6f73de3bd9000_comments-5-62d11e.json new file mode 100644 index 0000000000..4a48d0498d --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateCommitComment/mappings/repos_kohsuke_sandbox-ant_commits_8ae38db0ea5837313ab5f39d43a6f73de3bd9000_comments-5-62d11e.json @@ -0,0 +1,50 @@ +{ + "id": "62d11eb1-6045-42a7-988a-aae9d9f3800b", + "name": "repos_kohsuke_sandbox-ant_commits_8ae38db0ea5837313ab5f39d43a6f73de3bd9000_comments", + "request": { + "url": "/repos/kohsuke/sandbox-ant/commits/8ae38db0ea5837313ab5f39d43a6f73de3bd9000/comments", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"body\":\"[testing](http://kohsuse.org/)\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "repos_kohsuke_sandbox-ant_commits_8ae38db0ea5837313ab5f39d43a6f73de3bd9000_comments-62d11eb1-6045-42a7-988a-aae9d9f3800b.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:59 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4240", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"1ebfc3d7a9cbe1bfbab78c1636ef102a\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/kohsuke/sandbox-ant/comments/35673784", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CB24:8340:ED2399:116FE83:5DB3A15A" + } + }, + "uuid": "62d11eb1-6045-42a7-988a-aae9d9f3800b", + "persistent": true, + "insertionIndex": 5 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateCommitComment/mappings/user-1-a9b48b.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateCommitComment/mappings/user-1-a9b48b.json new file mode 100644 index 0000000000..9cf12424a8 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateCommitComment/mappings/user-1-a9b48b.json @@ -0,0 +1,43 @@ +{ + "id": "a9b48b44-c9ff-4434-9f98-64195b0c46ce", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-a9b48b44-c9ff-4434-9f98-64195b0c46ce.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:58 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4245", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"8c3d3dcf6fc5f9edaf26c902295396e5\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CB24:8340:ED234A:116FE30:5DB3A15A" + } + }, + "uuid": "a9b48b44-c9ff-4434-9f98-64195b0c46ce", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateCommitComment/mappings/users_kohsuke-2-a4924f.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateCommitComment/mappings/users_kohsuke-2-a4924f.json new file mode 100644 index 0000000000..3b18234c30 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateCommitComment/mappings/users_kohsuke-2-a4924f.json @@ -0,0 +1,43 @@ +{ + "id": "a4924f94-0b1c-4cb0-bf1f-595ccb78aa41", + "name": "users_kohsuke", + "request": { + "url": "/users/kohsuke", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "users_kohsuke-a4924f94-0b1c-4cb0-bf1f-595ccb78aa41.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:58 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4243", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"99c27226f3b6139ef2af80ccbcd5d252\"", + "Last-Modified": "Fri, 25 Oct 2019 16:53:26 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CB24:8340:ED235B:116FE3C:5DB3A15A" + } + }, + "uuid": "a4924f94-0b1c-4cb0-bf1f-595ccb78aa41", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/__files/orgs_github-api-test-org-6ab1a03d-267b-4675-a8e4-91bbef27f6ec.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/__files/orgs_github-api-test-org-6ab1a03d-267b-4675-a8e4-91bbef27f6ec.json new file mode 100644 index 0000000000..5605b36c3d --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/__files/orgs_github-api-test-org-6ab1a03d-267b-4675-a8e4-91bbef27f6ec.json @@ -0,0 +1,41 @@ +{ + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "url": "https://api.github.com/orgs/github-api-test-org", + "repos_url": "https://api.github.com/orgs/github-api-test-org/repos", + "events_url": "https://api.github.com/orgs/github-api-test-org/events", + "hooks_url": "https://api.github.com/orgs/github-api-test-org/hooks", + "issues_url": "https://api.github.com/orgs/github-api-test-org/issues", + "members_url": "https://api.github.com/orgs/github-api-test-org/members{/member}", + "public_members_url": "https://api.github.com/orgs/github-api-test-org/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "description": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 10, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/github-api-test-org", + "created_at": "2014-05-10T19:39:11Z", + "updated_at": "2015-04-20T00:42:30Z", + "type": "Organization", + "total_private_repos": 0, + "owned_private_repos": 0, + "private_gists": 0, + "disk_usage": 132, + "collaborators": 0, + "billing_email": "kk@kohsuke.org", + "default_repository_permission": "none", + "members_can_create_repositories": false, + "two_factor_requirement_enabled": false, + "plan": { + "name": "free", + "space": 976562499, + "private_repos": 0, + "filled_seats": 3, + "seats": 0 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/__files/repos_github-api-test-org_github-api-test-2d35cecf-0212-47d5-8dd3-15b4838d56c6.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/__files/repos_github-api-test-org_github-api-test-2d35cecf-0212-47d5-8dd3-15b4838d56c6.json new file mode 100644 index 0000000000..f7ffcfba0c --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/__files/repos_github-api-test-org_github-api-test-2d35cecf-0212-47d5-8dd3-15b4838d56c6.json @@ -0,0 +1,124 @@ +{ + "id": 212423833, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTI0MjM4MzM=", + "name": "github-api-test", + "full_name": "github-api-test-org/github-api-test", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api-test", + "description": "A test repository for testing the github-api project", + "fork": false, + "url": "https://api.github.com/repos/github-api-test-org/github-api-test", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api-test/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api-test/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api-test/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api-test/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api-test/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api-test/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api-test/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api-test/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api-test/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api-test/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api-test/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api-test/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api-test/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api-test/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api-test/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api-test/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api-test/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api-test/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api-test/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api-test/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api-test/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api-test/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api-test/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api-test/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api-test/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api-test/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api-test/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api-test/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api-test/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api-test/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api-test/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api-test/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api-test/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api-test/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api-test/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api-test/deployments", + "created_at": "2019-10-02T19:25:19Z", + "updated_at": "2019-10-02T19:25:34Z", + "pushed_at": "2019-10-02T19:25:20Z", + "git_url": "git://github.com/github-api-test-org/github-api-test.git", + "ssh_url": "git@github.com:github-api-test-org/github-api-test.git", + "clone_url": "https://github.com/github-api-test-org/github-api-test.git", + "svn_url": "https://github.com/github-api-test-org/github-api-test", + "homepage": "http://github-api.kohsuke.org/", + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "network_count": 0, + "subscribers_count": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/__files/repos_github-api-test-org_github-api-test_issues-4c0eec6b-2118-4a14-8a95-3e55fd260384.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/__files/repos_github-api-test-org_github-api-test_issues-4c0eec6b-2118-4a14-8a95-3e55fd260384.json new file mode 100644 index 0000000000..c718f27620 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/__files/repos_github-api-test-org_github-api-test_issues-4c0eec6b-2118-4a14-8a95-3e55fd260384.json @@ -0,0 +1,138 @@ +{ + "url": "http://localhost:51126/repos/github-api-test-org/github-api-test/issues/1", + "repository_url": "http://localhost:51126/repos/github-api-test-org/github-api-test", + "labels_url": "http://localhost:51126/repos/github-api-test-org/github-api-test/issues/1/labels{/name}", + "comments_url": "http://localhost:51126/repos/github-api-test-org/github-api-test/issues/1/comments", + "events_url": "http://localhost:51126/repos/github-api-test-org/github-api-test/issues/1/events", + "html_url": "https://github.com/github-api-test-org/github-api-test/issues/1", + "id": 501750408, + "node_id": "MDU6SXNzdWU1MDE3NTA0MDg=", + "number": 1, + "title": "testing", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "http://localhost:51126/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "http://localhost:51126/users/bitwiseman/followers", + "following_url": "http://localhost:51126/users/bitwiseman/following{/other_user}", + "gists_url": "http://localhost:51126/users/bitwiseman/gists{/gist_id}", + "starred_url": "http://localhost:51126/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "http://localhost:51126/users/bitwiseman/subscriptions", + "organizations_url": "http://localhost:51126/users/bitwiseman/orgs", + "repos_url": "http://localhost:51126/users/bitwiseman/repos", + "events_url": "http://localhost:51126/users/bitwiseman/events{/privacy}", + "received_events_url": "http://localhost:51126/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 1592005563, + "node_id": "MDU6TGFiZWwxNTkyMDA1NTYz", + "url": "http://localhost:51126/repos/github-api-test-org/github-api-test/labels/bug", + "name": "bug", + "color": "d73a4a", + "default": true + }, + { + "id": 1592005574, + "node_id": "MDU6TGFiZWwxNTkyMDA1NTc0", + "url": "http://localhost:51126/repos/github-api-test-org/github-api-test/labels/question", + "name": "question", + "color": "d876e3", + "default": true + } + ], + "state": "open", + "locked": false, + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "http://localhost:51126/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "http://localhost:51126/users/bitwiseman/followers", + "following_url": "http://localhost:51126/users/bitwiseman/following{/other_user}", + "gists_url": "http://localhost:51126/users/bitwiseman/gists{/gist_id}", + "starred_url": "http://localhost:51126/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "http://localhost:51126/users/bitwiseman/subscriptions", + "organizations_url": "http://localhost:51126/users/bitwiseman/orgs", + "repos_url": "http://localhost:51126/users/bitwiseman/repos", + "events_url": "http://localhost:51126/users/bitwiseman/events{/privacy}", + "received_events_url": "http://localhost:51126/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "assignees": [ + { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "http://localhost:51126/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "http://localhost:51126/users/bitwiseman/followers", + "following_url": "http://localhost:51126/users/bitwiseman/following{/other_user}", + "gists_url": "http://localhost:51126/users/bitwiseman/gists{/gist_id}", + "starred_url": "http://localhost:51126/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "http://localhost:51126/users/bitwiseman/subscriptions", + "organizations_url": "http://localhost:51126/users/bitwiseman/orgs", + "repos_url": "http://localhost:51126/users/bitwiseman/repos", + "events_url": "http://localhost:51126/users/bitwiseman/events{/privacy}", + "received_events_url": "http://localhost:51126/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + } + ], + "milestone": { + "url": "http://localhost:51126/repos/github-api-test-org/github-api-test/milestones/1", + "html_url": "https://github.com/github-api-test-org/github-api-test/milestone/1", + "labels_url": "http://localhost:51126/repos/github-api-test-org/github-api-test/milestones/1/labels", + "id": 4715278, + "node_id": "MDk6TWlsZXN0b25lNDcxNTI3OA==", + "number": 1, + "title": "Test Milestone Title2", + "description": "Test Milestone", + "creator": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "http://localhost:51126/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "http://localhost:51126/users/bitwiseman/followers", + "following_url": "http://localhost:51126/users/bitwiseman/following{/other_user}", + "gists_url": "http://localhost:51126/users/bitwiseman/gists{/gist_id}", + "starred_url": "http://localhost:51126/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "http://localhost:51126/users/bitwiseman/subscriptions", + "organizations_url": "http://localhost:51126/users/bitwiseman/orgs", + "repos_url": "http://localhost:51126/users/bitwiseman/repos", + "events_url": "http://localhost:51126/users/bitwiseman/events{/privacy}", + "received_events_url": "http://localhost:51126/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "open_issues": 1, + "closed_issues": 0, + "state": "open", + "created_at": "2019-10-02T22:04:13Z", + "updated_at": "2019-10-02T22:04:13Z", + "due_on": null, + "closed_at": null + }, + "comments": 0, + "created_at": "2019-10-02T22:04:13Z", + "updated_at": "2019-10-02T22:04:14Z", + "closed_at": null, + "author_association": "MEMBER", + "body": "this is body", + "closed_by": null +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/__files/repos_github-api-test-org_github-api-test_issues_1-b2b352de-1dfc-4bbf-8b29-6699c09adcba.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/__files/repos_github-api-test-org_github-api-test_issues_1-b2b352de-1dfc-4bbf-8b29-6699c09adcba.json new file mode 100644 index 0000000000..001e4cbd70 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/__files/repos_github-api-test-org_github-api-test_issues_1-b2b352de-1dfc-4bbf-8b29-6699c09adcba.json @@ -0,0 +1,157 @@ +{ + "url": "https://api.github.com/repos/github-api-test-org/github-api-test/issues/1", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api-test", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api-test/issues/1/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api-test/issues/1/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api-test/issues/1/events", + "html_url": "https://github.com/github-api-test-org/github-api-test/issues/1", + "id": 501750408, + "node_id": "MDU6SXNzdWU1MDE3NTA0MDg=", + "number": 1, + "title": "testing", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 1592005563, + "node_id": "MDU6TGFiZWwxNTkyMDA1NTYz", + "url": "https://api.github.com/repos/github-api-test-org/github-api-test/labels/bug", + "name": "bug", + "color": "d73a4a", + "default": true + }, + { + "id": 1592005574, + "node_id": "MDU6TGFiZWwxNTkyMDA1NTc0", + "url": "https://api.github.com/repos/github-api-test-org/github-api-test/labels/question", + "name": "question", + "color": "d876e3", + "default": true + } + ], + "state": "closed", + "locked": false, + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "assignees": [ + { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + } + ], + "milestone": { + "url": "https://api.github.com/repos/github-api-test-org/github-api-test/milestones/1", + "html_url": "https://github.com/github-api-test-org/github-api-test/milestone/1", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api-test/milestones/1/labels", + "id": 4715278, + "node_id": "MDk6TWlsZXN0b25lNDcxNTI3OA==", + "number": 1, + "title": "Test Milestone Title2", + "description": "Test Milestone", + "creator": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "open_issues": 0, + "closed_issues": 1, + "state": "open", + "created_at": "2019-10-02T22:04:13Z", + "updated_at": "2019-10-02T22:04:14Z", + "due_on": null, + "closed_at": null + }, + "comments": 0, + "created_at": "2019-10-02T22:04:13Z", + "updated_at": "2019-10-02T22:04:14Z", + "closed_at": "2019-10-02T22:04:14Z", + "author_association": "MEMBER", + "body": "this is body", + "closed_by": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/__files/repos_github-api-test-org_github-api-test_milestones-9f6e9872-cdec-405b-a820-838d4a40ab00.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/__files/repos_github-api-test-org_github-api-test_milestones-9f6e9872-cdec-405b-a820-838d4a40ab00.json new file mode 100644 index 0000000000..bd6ce8be62 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/__files/repos_github-api-test-org_github-api-test_milestones-9f6e9872-cdec-405b-a820-838d4a40ab00.json @@ -0,0 +1,37 @@ +{ + "url": "http://localhost:51162/repos/github-api-test-org/github-api-test/milestones/1", + "html_url": "https://github.com/github-api-test-org/github-api-test/milestone/1", + "labels_url": "http://localhost:51162/repos/github-api-test-org/github-api-test/milestones/1/labels", + "id": 4715281, + "node_id": "MDk6TWlsZXN0b25lNDcxNTI4MQ==", + "number": 1, + "title": "Test Milestone Title3", + "description": "Test Milestone", + "creator": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "http://localhost:51162/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "http://localhost:51162/users/bitwiseman/followers", + "following_url": "http://localhost:51162/users/bitwiseman/following{/other_user}", + "gists_url": "http://localhost:51162/users/bitwiseman/gists{/gist_id}", + "starred_url": "http://localhost:51162/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "http://localhost:51162/users/bitwiseman/subscriptions", + "organizations_url": "http://localhost:51162/users/bitwiseman/orgs", + "repos_url": "http://localhost:51162/users/bitwiseman/repos", + "events_url": "http://localhost:51162/users/bitwiseman/events{/privacy}", + "received_events_url": "http://localhost:51162/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "open_issues": 0, + "closed_issues": 0, + "state": "open", + "created_at": "2019-10-02T22:04:51Z", + "updated_at": "2019-10-02T22:04:51Z", + "due_on": null, + "closed_at": null +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/__files/repos_github-api-test-org_github-api-test_milestones-c528f3b4-7651-4943-8247-fc4eb960f7c7.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/__files/repos_github-api-test-org_github-api-test_milestones-c528f3b4-7651-4943-8247-fc4eb960f7c7.json new file mode 100644 index 0000000000..24eb551121 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/__files/repos_github-api-test-org_github-api-test_milestones-c528f3b4-7651-4943-8247-fc4eb960f7c7.json @@ -0,0 +1,37 @@ +{ + "url": "http://localhost:51126/repos/github-api-test-org/github-api-test/milestones/1", + "html_url": "https://github.com/github-api-test-org/github-api-test/milestone/1", + "labels_url": "http://localhost:51126/repos/github-api-test-org/github-api-test/milestones/1/labels", + "id": 4715278, + "node_id": "MDk6TWlsZXN0b25lNDcxNTI3OA==", + "number": 1, + "title": "Test Milestone Title2", + "description": "Test Milestone", + "creator": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "http://localhost:51126/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "http://localhost:51126/users/bitwiseman/followers", + "following_url": "http://localhost:51126/users/bitwiseman/following{/other_user}", + "gists_url": "http://localhost:51126/users/bitwiseman/gists{/gist_id}", + "starred_url": "http://localhost:51126/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "http://localhost:51126/users/bitwiseman/subscriptions", + "organizations_url": "http://localhost:51126/users/bitwiseman/orgs", + "repos_url": "http://localhost:51126/users/bitwiseman/repos", + "events_url": "http://localhost:51126/users/bitwiseman/events{/privacy}", + "received_events_url": "http://localhost:51126/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "open_issues": 0, + "closed_issues": 0, + "state": "open", + "created_at": "2019-10-02T22:04:13Z", + "updated_at": "2019-10-02T22:04:13Z", + "due_on": null, + "closed_at": null +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/__files/user-8104cc51-7147-4bc3-9004-2cec25e972f8.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/__files/user-8104cc51-7147-4bc3-9004-2cec25e972f8.json new file mode 100644 index 0000000000..39d6c8353e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/__files/user-8104cc51-7147-4bc3-9004-2cec25e972f8.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 167, + "public_gists": 4, + "followers": 136, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/mappings/repos_github-api-test-org_github-api-test-2-2d35ce.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/mappings/repos_github-api-test-org_github-api-test-2-2d35ce.json new file mode 100644 index 0000000000..63d7f00591 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/mappings/repos_github-api-test-org_github-api-test-2-2d35ce.json @@ -0,0 +1,43 @@ +{ + "id": "2d35cecf-0212-47d5-8dd3-15b4838d56c6", + "name": "repos_github-api-test-org_github-api-test", + "request": { + "url": "/repos/github-api-test-org/github-api-test", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api-test-2d35cecf-0212-47d5-8dd3-15b4838d56c6.json", + "headers": { + "Date": "Wed, 02 Oct 2019 21:39:59 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4956", + "X-RateLimit-Reset": "1570055937", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"5808cf093e2e56c1894809cd197b2abc\"", + "Last-Modified": "Wed, 02 Oct 2019 19:25:34 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C2C1:361D:9BDE30:B8EDBE:5D95192F" + } + }, + "uuid": "2d35cecf-0212-47d5-8dd3-15b4838d56c6", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/mappings/repos_github-api-test-org_github-api-test_hooks-4-0765fd.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/mappings/repos_github-api-test-org_github-api-test_hooks-4-0765fd.json new file mode 100644 index 0000000000..fddb520507 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/mappings/repos_github-api-test-org_github-api-test_hooks-4-0765fd.json @@ -0,0 +1,45 @@ +{ + "id": "0765fda8-b2f8-4474-8936-f02c33023e52", + "name": "repos_github-api-test-org_github-api-test_hooks", + "request": { + "url": "/repos/github-api-test-org/github-api-test/hooks", + "method": "GET" + }, + "response": { + "status": 200, + "body": "[]", + "headers": { + "Date": "Wed, 02 Oct 2019 21:55:20 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4877", + "X-RateLimit-Reset": "1570055937", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"ad5808b0a5d75d70a16a73b8e9763e19\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:repo_hook, public_repo, read:repo_hook, repo, write:repo_hook", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C568:957A:C9FE0F:F131B4:5D951CC8" + } + }, + "uuid": "0765fda8-b2f8-4474-8936-f02c33023e52", + "persistent": true, + "scenarioName": "scenario-1-repos-github-api-test-org-github-api-test-hooks", + "requiredScenarioState": "Started", + "newScenarioState": "scenario-1-repos-github-api-test-org-github-api-test-hooks-2", + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/mappings/repos_github-api-test-org_github-api-test_hooks-5-9f3310.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/mappings/repos_github-api-test-org_github-api-test_hooks-5-9f3310.json new file mode 100644 index 0000000000..09a1040fea --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/mappings/repos_github-api-test-org_github-api-test_hooks-5-9f3310.json @@ -0,0 +1,45 @@ +{ + "id": "9f3310d4-dd87-4af5-8a0d-1b4dfa8eb868", + "name": "repos_github-api-test-org_github-api-test_hooks", + "request": { + "url": "/repos/github-api-test-org/github-api-test/hooks", + "method": "GET" + }, + "response": { + "status": 200, + "body": "[]", + "headers": { + "Date": "Wed, 02 Oct 2019 21:55:21 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4876", + "X-RateLimit-Reset": "1570055937", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"ad5808b0a5d75d70a16a73b8e9763e19\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:repo_hook, public_repo, read:repo_hook, repo, write:repo_hook", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C568:957A:C9FECD:F131CD:5D951CC8" + } + }, + "uuid": "9f3310d4-dd87-4af5-8a0d-1b4dfa8eb868", + "persistent": true, + "scenarioName": "scenario-1-repos-github-api-test-org-github-api-test-hooks", + "requiredScenarioState": "scenario-1-repos-github-api-test-org-github-api-test-hooks-2", + "newScenarioState": "scenario-1-repos-github-api-test-org-github-api-test-hooks-3", + "insertionIndex": 5 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/mappings/repos_github-api-test-org_github-api-test_hooks-7-3dddac.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/mappings/repos_github-api-test-org_github-api-test_hooks-7-3dddac.json new file mode 100644 index 0000000000..f3adfb4971 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/mappings/repos_github-api-test-org_github-api-test_hooks-7-3dddac.json @@ -0,0 +1,45 @@ +{ + "id": "3dddac88-e8cb-4c36-ab50-157ef996f9b3", + "name": "repos_github-api-test-org_github-api-test_hooks", + "request": { + "url": "/repos/github-api-test-org/github-api-test/hooks", + "method": "GET" + }, + "response": { + "status": 200, + "body": "[]", + "headers": { + "Date": "Wed, 02 Oct 2019 21:58:13 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4874", + "X-RateLimit-Reset": "1570055937", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"ad5808b0a5d75d70a16a73b8e9763e19\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:repo_hook, public_repo, read:repo_hook, repo, write:repo_hook", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C641:67D6:CC4C32:F283ED:5D951D75" + } + }, + "uuid": "3dddac88-e8cb-4c36-ab50-157ef996f9b3", + "persistent": true, + "scenarioName": "scenario-1-repos-github-api-test-org-github-api-test-hooks", + "requiredScenarioState": "scenario-1-repos-github-api-test-org-github-api-test-hooks-3", + "newScenarioState": "scenario-1-repos-github-api-test-org-github-api-test-hooks-4", + "insertionIndex": 7 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/mappings/repos_github-api-test-org_github-api-test_hooks-8-8cfab8.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/mappings/repos_github-api-test-org_github-api-test_hooks-8-8cfab8.json new file mode 100644 index 0000000000..9f2cef8f5c --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/mappings/repos_github-api-test-org_github-api-test_hooks-8-8cfab8.json @@ -0,0 +1,44 @@ +{ + "id": "8cfab8d4-7115-4dc1-ac02-7a99a1428d2c", + "name": "repos_github-api-test-org_github-api-test_hooks", + "request": { + "url": "/repos/github-api-test-org/github-api-test/hooks", + "method": "GET" + }, + "response": { + "status": 200, + "body": "[]", + "headers": { + "Date": "Wed, 02 Oct 2019 21:58:15 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4873", + "X-RateLimit-Reset": "1570055937", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"ad5808b0a5d75d70a16a73b8e9763e19\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:repo_hook, public_repo, read:repo_hook, repo, write:repo_hook", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C641:67D6:CC4CE8:F28405:5D951D75" + } + }, + "uuid": "8cfab8d4-7115-4dc1-ac02-7a99a1428d2c", + "persistent": true, + "scenarioName": "scenario-1-repos-github-api-test-org-github-api-test-hooks", + "requiredScenarioState": "scenario-1-repos-github-api-test-org-github-api-test-hooks-4", + "insertionIndex": 8 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/mappings/repos_github-api-test-org_github-api-test_issues-10-4c0eec.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/mappings/repos_github-api-test-org_github-api-test_issues-10-4c0eec.json new file mode 100644 index 0000000000..92bc23789b --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/mappings/repos_github-api-test-org_github-api-test_issues-10-4c0eec.json @@ -0,0 +1,50 @@ +{ + "id": "4c0eec6b-2118-4a14-8a95-3e55fd260384", + "name": "repos_github-api-test-org_github-api-test_issues", + "request": { + "url": "/repos/github-api-test-org/github-api-test/issues", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"milestone\":1,\"assignees\":[\"bitwiseman\"],\"title\":\"testing\",\"body\":\"this is body\",\"labels\":[\"bug\",\"question\"]}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "repos_github-api-test-org_github-api-test_issues-4c0eec6b-2118-4a14-8a95-3e55fd260384.json", + "headers": { + "Date": "Wed, 02 Oct 2019 22:04:14 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4856", + "X-RateLimit-Reset": "1570055937", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"da80c0ddf30a92e2f67e99710e305521\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/github-api-test-org/github-api-test/issues/1", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C7C8:67D5:8932C5:A52738:5D951EDD" + } + }, + "uuid": "4c0eec6b-2118-4a14-8a95-3e55fd260384", + "persistent": true, + "insertionIndex": 10 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/mappings/repos_github-api-test-org_github-api-test_issues_1-11-b2b352.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/mappings/repos_github-api-test-org_github-api-test_issues_1-11-b2b352.json new file mode 100644 index 0000000000..d4680339cb --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/mappings/repos_github-api-test-org_github-api-test_issues_1-11-b2b352.json @@ -0,0 +1,49 @@ +{ + "id": "b2b352de-1dfc-4bbf-8b29-6699c09adcba", + "name": "repos_github-api-test-org_github-api-test_issues_1", + "request": { + "url": "/repos/github-api-test-org/github-api-test/issues/1", + "method": "PATCH", + "bodyPatterns": [ + { + "equalToJson": "{\"state\":\"closed\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api-test_issues_1-b2b352de-1dfc-4bbf-8b29-6699c09adcba.json", + "headers": { + "Date": "Wed, 02 Oct 2019 22:04:14 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4855", + "X-RateLimit-Reset": "1570055937", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"c747dbe6b23b7df1b44abcdf422594da\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C7C8:67D5:893322:A527A2:5D951EDE" + } + }, + "uuid": "b2b352de-1dfc-4bbf-8b29-6699c09adcba", + "persistent": true, + "insertionIndex": 11 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/mappings/repos_github-api-test-org_github-api-test_milestones-12-9f6e98.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/mappings/repos_github-api-test-org_github-api-test_milestones-12-9f6e98.json new file mode 100644 index 0000000000..52258c7f4d --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/mappings/repos_github-api-test-org_github-api-test_milestones-12-9f6e98.json @@ -0,0 +1,50 @@ +{ + "id": "9f6e9872-cdec-405b-a820-838d4a40ab00", + "name": "repos_github-api-test-org_github-api-test_milestones", + "request": { + "url": "/repos/github-api-test-org/github-api-test/milestones", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"description\":\"Test Milestone\",\"title\":\"Test Milestone Title3\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "repos_github-api-test-org_github-api-test_milestones-9f6e9872-cdec-405b-a820-838d4a40ab00.json", + "headers": { + "Date": "Wed, 02 Oct 2019 22:04:51 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4847", + "X-RateLimit-Reset": "1570055937", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"c7e702bb14033f392f15666e3c20f786\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/github-api-test-org/github-api-test/milestones/1", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C7E2:2CE7:A1D690:BEC182:5D951F03" + } + }, + "uuid": "9f6e9872-cdec-405b-a820-838d4a40ab00", + "persistent": true, + "insertionIndex": 12 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/mappings/repos_github-api-test-org_github-api-test_milestones-3-7cb4f1.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/mappings/repos_github-api-test-org_github-api-test_milestones-3-7cb4f1.json new file mode 100644 index 0000000000..5097fa633e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/mappings/repos_github-api-test-org_github-api-test_milestones-3-7cb4f1.json @@ -0,0 +1,43 @@ +{ + "id": "7cb4f11b-01c1-4f10-b53f-a8be6ed9f5fe", + "name": "repos_github-api-test-org_github-api-test_milestones", + "request": { + "url": "/repos/github-api-test-org/github-api-test/milestones", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"description\":\"Test Milestone\",\"title\":\"Test Milestone Title\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 422, + "body": "{\"message\":\"Validation Failed\",\"errors\":[{\"resource\":\"Milestone\",\"code\":\"already_exists\",\"field\":\"title\"}],\"documentation_url\":\"https://developer.github.com/v3/issues/milestones/#create-a-milestone\"}", + "headers": { + "Date": "Wed, 02 Oct 2019 21:40:00 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "422 Unprocessable Entity", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4955", + "X-RateLimit-Reset": "1570055937", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C2C1:361D:9BDE40:B8EE01:5D95192F" + } + }, + "uuid": "7cb4f11b-01c1-4f10-b53f-a8be6ed9f5fe", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/mappings/repos_github-api-test-org_github-api-test_milestones-6-9a91aa.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/mappings/repos_github-api-test-org_github-api-test_milestones-6-9a91aa.json new file mode 100644 index 0000000000..f6315b52bf --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/mappings/repos_github-api-test-org_github-api-test_milestones-6-9a91aa.json @@ -0,0 +1,42 @@ +{ + "id": "9a91aa37-0169-4a92-bedb-2676773ccdb3", + "name": "repos_github-api-test-org_github-api-test_milestones", + "request": { + "url": "/repos/github-api-test-org/github-api-test/milestones?state=open", + "method": "GET" + }, + "response": { + "status": 200, + "body": "[]", + "headers": { + "Date": "Wed, 02 Oct 2019 21:56:05 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4875", + "X-RateLimit-Reset": "1570055937", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"ad5808b0a5d75d70a16a73b8e9763e19\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C568:957A:CA16C3:F13297:5D951CC9" + } + }, + "uuid": "9a91aa37-0169-4a92-bedb-2676773ccdb3", + "persistent": true, + "insertionIndex": 6 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/mappings/repos_github-api-test-org_github-api-test_milestones-9-c528f3.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/mappings/repos_github-api-test-org_github-api-test_milestones-9-c528f3.json new file mode 100644 index 0000000000..f1885f938e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/mappings/repos_github-api-test-org_github-api-test_milestones-9-c528f3.json @@ -0,0 +1,50 @@ +{ + "id": "c528f3b4-7651-4943-8247-fc4eb960f7c7", + "name": "repos_github-api-test-org_github-api-test_milestones", + "request": { + "url": "/repos/github-api-test-org/github-api-test/milestones", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"description\":\"Test Milestone\",\"title\":\"Test Milestone Title2\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "repos_github-api-test-org_github-api-test_milestones-c528f3b4-7651-4943-8247-fc4eb960f7c7.json", + "headers": { + "Date": "Wed, 02 Oct 2019 22:04:13 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4857", + "X-RateLimit-Reset": "1570055937", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"b35242ca101f84f1be21e1508b9851a3\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/github-api-test-org/github-api-test/milestones/1", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C7C8:67D5:8932AC:A5271D:5D951EDC" + } + }, + "uuid": "c528f3b4-7651-4943-8247-fc4eb960f7c7", + "persistent": true, + "insertionIndex": 9 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/mappings/user-1-8104cc.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/mappings/user-1-8104cc.json new file mode 100644 index 0000000000..43b384287b --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/mappings/user-1-8104cc.json @@ -0,0 +1,43 @@ +{ + "id": "8104cc51-7147-4bc3-9004-2cec25e972f8", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-8104cc51-7147-4bc3-9004-2cec25e972f8.json", + "headers": { + "Date": "Wed, 02 Oct 2019 21:39:59 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4958", + "X-RateLimit-Reset": "1570055937", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"cf6199fecf47b59c42190e1e11147ee2\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C2C1:361D:9BDE00:B8EDB3:5D95192F" + } + }, + "uuid": "8104cc51-7147-4bc3-9004-2cec25e972f8", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCredentialValid/__files/user-eba96b24-3354-4d21-bd2a-388a13ba9832.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCredentialValid/__files/user-eba96b24-3354-4d21-bd2a-388a13ba9832.json new file mode 100644 index 0000000000..39d6c8353e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCredentialValid/__files/user-eba96b24-3354-4d21-bd2a-388a13ba9832.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 167, + "public_gists": 4, + "followers": 136, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCredentialValid/mappings/user-1-eba96b.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCredentialValid/mappings/user-1-eba96b.json new file mode 100644 index 0000000000..40af3e7e85 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testCredentialValid/mappings/user-1-eba96b.json @@ -0,0 +1,43 @@ +{ + "id": "eba96b24-3354-4d21-bd2a-388a13ba9832", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-eba96b24-3354-4d21-bd2a-388a13ba9832.json", + "headers": { + "Date": "Wed, 02 Oct 2019 21:39:57 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4964", + "X-RateLimit-Reset": "1570055937", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"cf6199fecf47b59c42190e1e11147ee2\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C2BA:67D6:CA2979:EFEEDC:5D95192D" + } + }, + "uuid": "eba96b24-3354-4d21-bd2a-388a13ba9832", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/__files/events-1f4bc3c9-b53c-4cab-ba72-bf9eaea1dc2d.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/__files/events-1f4bc3c9-b53c-4cab-ba72-bf9eaea1dc2d.json new file mode 100644 index 0000000000..8246842ceb --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/__files/events-1f4bc3c9-b53c-4cab-ba72-bf9eaea1dc2d.json @@ -0,0 +1,692 @@ +[ + { + "id": "10680624904", + "type": "PushEvent", + "actor": { + "id": 55142606, + "login": "Marco-S117", + "display_login": "Marco-S117", + "gravatar_id": "", + "url": "https://api.github.com/users/Marco-S117", + "avatar_url": "https://avatars.githubusercontent.com/u/55142606?" + }, + "repo": { + "id": 216574088, + "name": "Marco-S117/js-mail-dadi", + "url": "https://api.github.com/repos/Marco-S117/js-mail-dadi" + }, + "payload": { + "push_id": 4176854844, + "size": 2, + "distinct_size": 2, + "ref": "refs/heads/master", + "head": "d2236eda0eaacce89c1061771ee6b869c1a45f62", + "before": "c056019ab48ac4112f94e3d3a4b8df5c4a829942", + "commits": [ + { + "sha": "cc46a51a0bb5088e6d440ae9631373ef55f53dbe", + "author": { + "email": "55142606+Marco-S117@users.noreply.github.com", + "name": "Marco Polino" + }, + "message": "Cambio nomi var e aggiunte altre per i nomi\n\nSono state inserite due nuove variabili per gestire i nomi dei due giocatori che si affronteranno. I nomi di variabile precedenti sono stati rinominati per renderli consoni al nuovo contesto.", + "distinct": true, + "url": "https://api.github.com/repos/Marco-S117/js-mail-dadi/commits/cc46a51a0bb5088e6d440ae9631373ef55f53dbe" + }, + { + "sha": "d2236eda0eaacce89c1061771ee6b869c1a45f62", + "author": { + "email": "55142606+Marco-S117@users.noreply.github.com", + "name": "Marco Polino" + }, + "message": "Aggiunta struttura classifica\n\nE' stata aggiunta una sezione per visualizzare la classifica tra i due giocatori. (Non implementata ancora).", + "distinct": true, + "url": "https://api.github.com/repos/Marco-S117/js-mail-dadi/commits/d2236eda0eaacce89c1061771ee6b869c1a45f62" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:47Z" + }, + { + "id": "10680624899", + "type": "PushEvent", + "actor": { + "id": 13302709, + "login": "krishan147", + "display_login": "krishan147", + "gravatar_id": "", + "url": "https://api.github.com/users/krishan147", + "avatar_url": "https://avatars.githubusercontent.com/u/13302709?" + }, + "repo": { + "id": 216410008, + "name": "krishan147/dashboard_login", + "url": "https://api.github.com/repos/krishan147/dashboard_login" + }, + "payload": { + "push_id": 4176854836, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "803f0f4a487b2b4da9410829dca1cbdc1f0209e4", + "before": "cb6da22b157a14363ad3a4c4f716ec8390ab7aec", + "commits": [ + { + "sha": "803f0f4a487b2b4da9410829dca1cbdc1f0209e4", + "author": { + "email": "krishan.vadher@gmail.com", + "name": "krishan vadher" + }, + "message": "text on login", + "distinct": true, + "url": "https://api.github.com/repos/krishan147/dashboard_login/commits/803f0f4a487b2b4da9410829dca1cbdc1f0209e4" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:47Z" + }, + { + "id": "10680624895", + "type": "PushEvent", + "actor": { + "id": 49878854, + "login": "erick423", + "display_login": "erick423", + "gravatar_id": "", + "url": "https://api.github.com/users/erick423", + "avatar_url": "https://avatars.githubusercontent.com/u/49878854?" + }, + "repo": { + "id": 113603314, + "name": "tryanzu/frontend", + "url": "https://api.github.com/repos/tryanzu/frontend" + }, + "payload": { + "push_id": 4176854835, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/feature/draft", + "head": "bbb7e2bb9bd02110bcbb076c2f47c15e825413f9", + "before": "1824d525aa9b2dfda630429034cb2b68e8c0d187", + "commits": [ + { + "sha": "bbb7e2bb9bd02110bcbb076c2f47c15e825413f9", + "author": { + "email": "erick.cedillo23@outlook.com", + "name": "ErickCedillo" + }, + "message": "chore(drafts): using the t function to translate the discard message", + "distinct": true, + "url": "https://api.github.com/repos/tryanzu/frontend/commits/bbb7e2bb9bd02110bcbb076c2f47c15e825413f9" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:47Z", + "org": { + "id": 33064681, + "login": "tryanzu", + "gravatar_id": "", + "url": "https://api.github.com/orgs/tryanzu", + "avatar_url": "https://avatars.githubusercontent.com/u/33064681?" + } + }, + { + "id": "10680624891", + "type": "PushEvent", + "actor": { + "id": 23188584, + "login": "CBrosius", + "display_login": "CBrosius", + "gravatar_id": "", + "url": "https://api.github.com/users/CBrosius", + "avatar_url": "https://avatars.githubusercontent.com/u/23188584?" + }, + "repo": { + "id": 216635689, + "name": "CBrosius/AdminLTE", + "url": "https://api.github.com/repos/CBrosius/AdminLTE" + }, + "payload": { + "push_id": 4176854834, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "520b59ae2047f8b6adaa0a17a17d9ca531de3b3e", + "before": "38d8e77f999ba5999c013b44f6e8fe808308de7a", + "commits": [ + { + "sha": "520b59ae2047f8b6adaa0a17a17d9ca531de3b3e", + "author": { + "email": "Christian.Brosius@gmail.com", + "name": "CBrosius" + }, + "message": "Add Remove-Button to DHCP-Leases-List\n\nmake it possible to remove MAC from /etc/pihole/dhcp.leases", + "distinct": true, + "url": "https://api.github.com/repos/CBrosius/AdminLTE/commits/520b59ae2047f8b6adaa0a17a17d9ca531de3b3e" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:47Z" + }, + { + "id": "10680624893", + "type": "CreateEvent", + "actor": { + "id": 36385616, + "login": "angreifer", + "display_login": "angreifer", + "gravatar_id": "", + "url": "https://api.github.com/users/angreifer", + "avatar_url": "https://avatars.githubusercontent.com/u/36385616?" + }, + "repo": { + "id": 216672332, + "name": "angreiferOrg/api-docs", + "url": "https://api.github.com/repos/angreiferOrg/api-docs" + }, + "payload": { + "ref": null, + "ref_type": "repository", + "master_branch": "master", + "description": "Documentation on Angreifer.org services (coming soon)", + "pusher_type": "user" + }, + "public": true, + "created_at": "2019-10-21T21:54:47Z", + "org": { + "id": 36386506, + "login": "angreiferOrg", + "gravatar_id": "", + "url": "https://api.github.com/orgs/angreiferOrg", + "avatar_url": "https://avatars.githubusercontent.com/u/36386506?" + } + }, + { + "id": "10680624882", + "type": "PushEvent", + "actor": { + "id": 10810283, + "login": "direwolf-github", + "display_login": "direwolf-github", + "gravatar_id": "", + "url": "https://api.github.com/users/direwolf-github", + "avatar_url": "https://avatars.githubusercontent.com/u/10810283?" + }, + "repo": { + "id": 183051410, + "name": "direwolf-github/my-app", + "url": "https://api.github.com/repos/direwolf-github/my-app" + }, + "payload": { + "push_id": 4176854829, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/branch-64bc3386", + "head": "3bab6eda0f36a11cd6cbf7e0f224df18bc73f9c6", + "before": "97b657afdf54d3b3ccbcb094fc803fee1c0e5821", + "commits": [ + { + "sha": "3bab6eda0f36a11cd6cbf7e0f224df18bc73f9c6", + "author": { + "email": "heroku-lifecycle+direwolf-github@salesforce.com", + "name": "direwolf-github" + }, + "message": "add readme.txt", + "distinct": true, + "url": "https://api.github.com/repos/direwolf-github/my-app/commits/3bab6eda0f36a11cd6cbf7e0f224df18bc73f9c6" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:47Z" + }, + { + "id": "10680624876", + "type": "PushEvent", + "actor": { + "id": 27856297, + "login": "dependabot-preview[bot]", + "display_login": "dependabot-preview", + "gravatar_id": "", + "url": "https://api.github.com/users/dependabot-preview[bot]", + "avatar_url": "https://avatars.githubusercontent.com/u/27856297?" + }, + "repo": { + "id": 108659838, + "name": "Profiscience/knockout-contrib", + "url": "https://api.github.com/repos/Profiscience/knockout-contrib" + }, + "payload": { + "push_id": 4176854822, + "size": 2, + "distinct_size": 1, + "ref": "refs/heads/dependabot/npm_and_yarn/date-fns-2.5.1", + "head": "3c2acb28c17c60c9f15afa9763dca02d5923b2c3", + "before": "e7a7fd4d0ec1525797531273ccf42939f2ede808", + "commits": [ + { + "sha": "9ab424bf5c76e162692c6304c9071d0360de6e75", + "author": { + "email": "27856297+dependabot-preview[bot]@users.noreply.github.com", + "name": "dependabot-preview[bot]" + }, + "message": "build(deps-dev): bump husky from 3.0.5 to 3.0.9 (#331)", + "distinct": false, + "url": "https://api.github.com/repos/Profiscience/knockout-contrib/commits/9ab424bf5c76e162692c6304c9071d0360de6e75" + }, + { + "sha": "3c2acb28c17c60c9f15afa9763dca02d5923b2c3", + "author": { + "email": "27856297+dependabot-preview[bot]@users.noreply.github.com", + "name": "dependabot-preview[bot]" + }, + "message": "build(deps): bump date-fns from 2.2.1 to 2.5.1\n\nBumps [date-fns](https://github.com/date-fns/date-fns) from 2.2.1 to 2.5.1.\n- [Release notes](https://github.com/date-fns/date-fns/releases)\n- [Changelog](https://github.com/date-fns/date-fns/blob/master/CHANGELOG.md)\n- [Commits](https://github.com/date-fns/date-fns/compare/v2.2.1...v2.5.1)\n\nSigned-off-by: dependabot-preview[bot] ", + "distinct": true, + "url": "https://api.github.com/repos/Profiscience/knockout-contrib/commits/3c2acb28c17c60c9f15afa9763dca02d5923b2c3" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:47Z", + "org": { + "id": 18732031, + "login": "Profiscience", + "gravatar_id": "", + "url": "https://api.github.com/orgs/Profiscience", + "avatar_url": "https://avatars.githubusercontent.com/u/18732031?" + } + }, + { + "id": "10680624870", + "type": "IssuesEvent", + "actor": { + "id": 7014706, + "login": "tophmatthews", + "display_login": "tophmatthews", + "gravatar_id": "", + "url": "https://api.github.com/users/tophmatthews", + "avatar_url": "https://avatars.githubusercontent.com/u/7014706?" + }, + "repo": { + "id": 16851223, + "name": "idaholab/moose", + "url": "https://api.github.com/repos/idaholab/moose" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/idaholab/moose/issues/14205", + "repository_url": "https://api.github.com/repos/idaholab/moose", + "labels_url": "https://api.github.com/repos/idaholab/moose/issues/14205/labels{/name}", + "comments_url": "https://api.github.com/repos/idaholab/moose/issues/14205/comments", + "events_url": "https://api.github.com/repos/idaholab/moose/issues/14205/events", + "html_url": "https://github.com/idaholab/moose/issues/14205", + "id": 510315266, + "node_id": "MDU6SXNzdWU1MTAzMTUyNjY=", + "number": 14205, + "title": "Organize contact module", + "user": { + "login": "tophmatthews", + "id": 7014706, + "node_id": "MDQ6VXNlcjcwMTQ3MDY=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7014706?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/tophmatthews", + "html_url": "https://github.com/tophmatthews", + "followers_url": "https://api.github.com/users/tophmatthews/followers", + "following_url": "https://api.github.com/users/tophmatthews/following{/other_user}", + "gists_url": "https://api.github.com/users/tophmatthews/gists{/gist_id}", + "starred_url": "https://api.github.com/users/tophmatthews/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/tophmatthews/subscriptions", + "organizations_url": "https://api.github.com/users/tophmatthews/orgs", + "repos_url": "https://api.github.com/users/tophmatthews/repos", + "events_url": "https://api.github.com/users/tophmatthews/events{/privacy}", + "received_events_url": "https://api.github.com/users/tophmatthews/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 80663266, + "node_id": "MDU6TGFiZWw4MDY2MzI2Ng==", + "url": "https://api.github.com/repos/idaholab/moose/labels/P:%20normal", + "name": "P: normal", + "color": "ededed", + "default": false + }, + { + "id": 80663264, + "node_id": "MDU6TGFiZWw4MDY2MzI2NA==", + "url": "https://api.github.com/repos/idaholab/moose/labels/T:%20task", + "name": "T: task", + "color": "cccccc", + "default": false + } + ], + "state": "open", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-10-21T21:54:47Z", + "updated_at": "2019-10-21T21:54:47Z", + "closed_at": null, + "author_association": "CONTRIBUTOR", + "body": "## Reason\r\nThe contact module *.h and *.C files are only partially organized...not too sure why. This will prevent unity building, and add confusion about what objects really are.\r\n\r\n## Design\r\nReorganize the contact module based on object type.\r\n\r\n## Impact\r\nBetter readability, organization, unity build, etc.\r\n" + } + }, + "public": true, + "created_at": "2019-10-21T21:54:47Z", + "org": { + "id": 3855370, + "login": "idaholab", + "gravatar_id": "", + "url": "https://api.github.com/orgs/idaholab", + "avatar_url": "https://avatars.githubusercontent.com/u/3855370?" + } + }, + { + "id": "10680624847", + "type": "PushEvent", + "actor": { + "id": 51011840, + "login": "othhotro", + "display_login": "othhotro", + "gravatar_id": "", + "url": "https://api.github.com/users/othhotro", + "avatar_url": "https://avatars.githubusercontent.com/u/51011840?" + }, + "repo": { + "id": 201879384, + "name": "othhotro/Roo.Exe", + "url": "https://api.github.com/repos/othhotro/Roo.Exe" + }, + "payload": { + "push_id": 4176854811, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "9e030787665d1dbf6f75f4020c52cb842d3cd17b", + "before": "0bb1bbedfa1148e8931dca828cfaa3a6f21dd9a4", + "commits": [ + { + "sha": "9e030787665d1dbf6f75f4020c52cb842d3cd17b", + "author": { + "email": "oth.hotro@gmail.com", + "name": "oth.hotro@gmail.com" + }, + "message": "Lần chạy [2019-10-22 04-53]:Lần thứ 48", + "distinct": true, + "url": "https://api.github.com/repos/othhotro/Roo.Exe/commits/9e030787665d1dbf6f75f4020c52cb842d3cd17b" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:47Z" + }, + { + "id": "10680624851", + "type": "DeleteEvent", + "actor": { + "id": 6752228, + "login": "marciot", + "display_login": "marciot", + "gravatar_id": "", + "url": "https://api.github.com/users/marciot", + "avatar_url": "https://avatars.githubusercontent.com/u/6752228?" + }, + "repo": { + "id": 216087420, + "name": "marciot/drunken-octopus-marlin", + "url": "https://api.github.com/repos/marciot/drunken-octopus-marlin" + }, + "payload": { + "ref": "1.1.4", + "ref_type": "tag", + "pusher_type": "user" + }, + "public": true, + "created_at": "2019-10-21T21:54:47Z" + }, + { + "id": "10680624836", + "type": "PushEvent", + "actor": { + "id": 18040654, + "login": "kangarang", + "display_login": "kangarang", + "gravatar_id": "", + "url": "https://api.github.com/users/kangarang", + "avatar_url": "https://avatars.githubusercontent.com/u/18040654?" + }, + "repo": { + "id": 173829666, + "name": "ConsenSys/panvala", + "url": "https://api.github.com/repos/ConsenSys/panvala" + }, + "payload": { + "push_id": 4176854806, + "size": 61, + "distinct_size": 0, + "ref": "refs/heads/master", + "head": "5005a784df3fe79330212c6503c67b05b474df87", + "before": "36df29735886a29cda5ba7bccf26ef0faa55f1c0", + "commits": [ + { + "sha": "ce63da0d99ffe4d7523229831abd32f9321f02be", + "author": { + "email": "isaac.kang@consensys.net", + "name": "Isaac Kang" + }, + "message": "mv margin to button container", + "distinct": false, + "url": "https://api.github.com/repos/ConsenSys/panvala/commits/ce63da0d99ffe4d7523229831abd32f9321f02be" + }, + { + "sha": "5ce868d5fd9278c49f2325290fd564b337d99170", + "author": { + "email": "isaac.kang@consensys.net", + "name": "Isaac Kang" + }, + "message": "add gatsby. add assets. convert /team", + "distinct": false, + "url": "https://api.github.com/repos/ConsenSys/panvala/commits/5ce868d5fd9278c49f2325290fd564b337d99170" + }, + { + "sha": "5af96d979af295e817a56956053083c30c4386ea", + "author": { + "email": "isaac.kang@consensys.net", + "name": "Isaac Kang" + }, + "message": "separate footer and nav components", + "distinct": false, + "url": "https://api.github.com/repos/ConsenSys/panvala/commits/5af96d979af295e817a56956053083c30c4386ea" + }, + { + "sha": "ae7f0ff361cec1caeee98cffb8d9c817b3ec467a", + "author": { + "email": "isaac.kang@consensys.net", + "name": "Isaac Kang" + }, + "message": "add favicon", + "distinct": false, + "url": "https://api.github.com/repos/ConsenSys/panvala/commits/ae7f0ff361cec1caeee98cffb8d9c817b3ec467a" + }, + { + "sha": "63766294be1bc258c37a84b4ded84416b72e3223", + "author": { + "email": "isaac.kang@consensys.net", + "name": "Isaac Kang" + }, + "message": "convert index route", + "distinct": false, + "url": "https://api.github.com/repos/ConsenSys/panvala/commits/63766294be1bc258c37a84b4ded84416b72e3223" + }, + { + "sha": "bc756042faf50f144145a842c5edb203a4b5a887", + "author": { + "email": "isaac.kang@consensys.net", + "name": "Isaac Kang" + }, + "message": "convert /donate. fix imports. add layout component", + "distinct": false, + "url": "https://api.github.com/repos/ConsenSys/panvala/commits/bc756042faf50f144145a842c5edb203a4b5a887" + }, + { + "sha": "5a2a009ed6b0eb8ebfec086a87e55170e8c54161", + "author": { + "email": "isaac.kang@consensys.net", + "name": "Isaac Kang" + }, + "message": "rename Donate component -> Donation", + "distinct": false, + "url": "https://api.github.com/repos/ConsenSys/panvala/commits/5a2a009ed6b0eb8ebfec086a87e55170e8c54161" + }, + { + "sha": "a262febf11a18afe8d14c35d207ed0b44daa57db", + "author": { + "email": "isaac.kang@consensys.net", + "name": "Isaac Kang" + }, + "message": "add spacing. fix filename typo.", + "distinct": false, + "url": "https://api.github.com/repos/ConsenSys/panvala/commits/a262febf11a18afe8d14c35d207ed0b44daa57db" + }, + { + "sha": "22bbfb94449bcb9a3ab58d9576296c5cc1320f78", + "author": { + "email": "isaac.kang@consensys.net", + "name": "Isaac Kang" + }, + "message": "convert /grants & /resources", + "distinct": false, + "url": "https://api.github.com/repos/ConsenSys/panvala/commits/22bbfb94449bcb9a3ab58d9576296c5cc1320f78" + }, + { + "sha": "119342855d811351efd84f27374468120299146d", + "author": { + "email": "isaac.kang@consensys.net", + "name": "Isaac Kang" + }, + "message": "update donation flow (network check)", + "distinct": false, + "url": "https://api.github.com/repos/ConsenSys/panvala/commits/119342855d811351efd84f27374468120299146d" + }, + { + "sha": "3348800ca72248228222ab4c8b3da674ecc63a7b", + "author": { + "email": "isaac.kang@consensys.net", + "name": "Isaac Kang" + }, + "message": "update links w/ latest copy", + "distinct": false, + "url": "https://api.github.com/repos/ConsenSys/panvala/commits/3348800ca72248228222ab4c8b3da674ecc63a7b" + }, + { + "sha": "504d14ce165384832a62cb925fe73fbc70ea4235", + "author": { + "email": "isaac.kang@consensys.net", + "name": "Isaac Kang" + }, + "message": "use ref to scroll on click for Donate Now button", + "distinct": false, + "url": "https://api.github.com/repos/ConsenSys/panvala/commits/504d14ce165384832a62cb925fe73fbc70ea4235" + }, + { + "sha": "cd4d8bf1cc0ac1329c63c579be741f8f9bd2a684", + "author": { + "email": "isaac.kang@consensys.net", + "name": "Isaac Kang" + }, + "message": "fix thank you image imports", + "distinct": false, + "url": "https://api.github.com/repos/ConsenSys/panvala/commits/cd4d8bf1cc0ac1329c63c579be741f8f9bd2a684" + }, + { + "sha": "d1b88f2098ff3e9c16486c82da29980cb6923cf3", + "author": { + "email": "isaac.kang@consensys.net", + "name": "Isaac Kang" + }, + "message": "check url for /donate", + "distinct": false, + "url": "https://api.github.com/repos/ConsenSys/panvala/commits/d1b88f2098ff3e9c16486c82da29980cb6923cf3" + }, + { + "sha": "969265f1b0eac0f332b0cb421973465eb18a8ced", + "author": { + "email": "isaac.kang@consensys.net", + "name": "Isaac Kang" + }, + "message": "network checks during donation flow\n\n- prevent page crash if wrong network\n- rm Buffer comments", + "distinct": false, + "url": "https://api.github.com/repos/ConsenSys/panvala/commits/969265f1b0eac0f332b0cb421973465eb18a8ced" + }, + { + "sha": "7c7ee533af8ef4a8fe21493bb91f10d2fcbd5354", + "author": { + "email": "isaac.kang@consensys.net", + "name": "Isaac Kang" + }, + "message": "add refs to scroll to hrefs on page loads", + "distinct": false, + "url": "https://api.github.com/repos/ConsenSys/panvala/commits/7c7ee533af8ef4a8fe21493bb91f10d2fcbd5354" + }, + { + "sha": "de9ff84f184bdf78615c9f769a13cd564c19b9e3", + "author": { + "email": "isaac.kang@consensys.net", + "name": "Isaac Kang" + }, + "message": "make entire tweet button clickable", + "distinct": false, + "url": "https://api.github.com/repos/ConsenSys/panvala/commits/de9ff84f184bdf78615c9f769a13cd564c19b9e3" + }, + { + "sha": "1f0e1a4750d6c972bacdecbb109bf89703e4c4ec", + "author": { + "email": "isaac.kang@consensys.net", + "name": "Isaac Kang" + }, + "message": "check typeof window and more\n\n- rm fetch dep\n- add autopilot\n- add s3 plugin", + "distinct": false, + "url": "https://api.github.com/repos/ConsenSys/panvala/commits/1f0e1a4750d6c972bacdecbb109bf89703e4c4ec" + }, + { + "sha": "24de6ee2f8ac51390dd20a15351857b9d733db6a", + "author": { + "email": "isaac.kang@consensys.net", + "name": "Isaac Kang" + }, + "message": "prefix href routes with /", + "distinct": false, + "url": "https://api.github.com/repos/ConsenSys/panvala/commits/24de6ee2f8ac51390dd20a15351857b9d733db6a" + }, + { + "sha": "c390df8be5436f0213e77546c3d715c442018fdd", + "author": { + "email": "isaac.kang@consensys.net", + "name": "Isaac Kang" + }, + "message": "fix gatsby config. fix image src", + "distinct": false, + "url": "https://api.github.com/repos/ConsenSys/panvala/commits/c390df8be5436f0213e77546c3d715c442018fdd" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:46Z", + "org": { + "id": 10818037, + "login": "ConsenSys", + "gravatar_id": "", + "url": "https://api.github.com/orgs/ConsenSys", + "avatar_url": "https://avatars.githubusercontent.com/u/10818037?" + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/__files/events-3719d162-a479-4a4c-803c-6747e224509c.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/__files/events-3719d162-a479-4a4c-803c-6747e224509c.json new file mode 100644 index 0000000000..404370fedc --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/__files/events-3719d162-a479-4a4c-803c-6747e224509c.json @@ -0,0 +1,2512 @@ +[ + { + "id": "10680625155", + "type": "DeleteEvent", + "actor": { + "id": 49699333, + "login": "dependabot[bot]", + "display_login": "dependabot", + "gravatar_id": "", + "url": "https://api.github.com/users/dependabot[bot]", + "avatar_url": "https://avatars.githubusercontent.com/u/49699333?" + }, + "repo": { + "id": 147853345, + "name": "jjorissen52/bug_reproduction", + "url": "https://api.github.com/repos/jjorissen52/bug_reproduction" + }, + "payload": { + "ref": "dependabot/pip/django-1.11.23", + "ref_type": "branch", + "pusher_type": "user" + }, + "public": true, + "created_at": "2019-10-21T21:54:50Z" + }, + { + "id": "10680625066", + "type": "PushEvent", + "actor": { + "id": 33434372, + "login": "tensorflow-copybara", + "display_login": "tensorflow-copybara", + "gravatar_id": "", + "url": "https://api.github.com/users/tensorflow-copybara", + "avatar_url": "https://avatars.githubusercontent.com/u/33434372?" + }, + "repo": { + "id": 45717250, + "name": "tensorflow/tensorflow", + "url": "https://api.github.com/repos/tensorflow/tensorflow" + }, + "payload": { + "push_id": 4176854921, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "f0458723e4e88ee34613c984b02b3dc927c4a538", + "before": "d0973869c9d7f14f0353a7eceddf9d3daa1382e1", + "commits": [ + { + "sha": "f0458723e4e88ee34613c984b02b3dc927c4a538", + "author": { + "email": "hyey@google.com", + "name": "Hye Soo Yang" + }, + "message": "Migrate (nightly) release build scripts to opensource - ubuntu_16/cpu_py2_full/*\n\nPiperOrigin-RevId: 275917502\nChange-Id: If8c216543e53e45587b2b92b86ddbdbd3bd1eb81", + "distinct": true, + "url": "https://api.github.com/repos/tensorflow/tensorflow/commits/f0458723e4e88ee34613c984b02b3dc927c4a538" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:49Z", + "org": { + "id": 15658638, + "login": "tensorflow", + "gravatar_id": "", + "url": "https://api.github.com/orgs/tensorflow", + "avatar_url": "https://avatars.githubusercontent.com/u/15658638?" + } + }, + { + "id": "10680625146", + "type": "CreateEvent", + "actor": { + "id": 10810283, + "login": "direwolf-github", + "display_login": "direwolf-github", + "gravatar_id": "", + "url": "https://api.github.com/users/direwolf-github", + "avatar_url": "https://avatars.githubusercontent.com/u/10810283?" + }, + "repo": { + "id": 216672326, + "name": "direwolf-github/my-app-752826ef", + "url": "https://api.github.com/repos/direwolf-github/my-app-752826ef" + }, + "payload": { + "ref": "branch-c7fa2a10", + "ref_type": "branch", + "master_branch": "master", + "description": null, + "pusher_type": "user" + }, + "public": true, + "created_at": "2019-10-21T21:54:49Z" + }, + { + "id": "10680625142", + "type": "IssuesEvent", + "actor": { + "id": 53636771, + "login": "Dany-LF", + "display_login": "Dany-LF", + "gravatar_id": "", + "url": "https://api.github.com/users/Dany-LF", + "avatar_url": "https://avatars.githubusercontent.com/u/53636771?" + }, + "repo": { + "id": 114530056, + "name": "Jisagi/Discord-guild-copy", + "url": "https://api.github.com/repos/Jisagi/Discord-guild-copy" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/Jisagi/Discord-guild-copy/issues/60", + "repository_url": "https://api.github.com/repos/Jisagi/Discord-guild-copy", + "labels_url": "https://api.github.com/repos/Jisagi/Discord-guild-copy/issues/60/labels{/name}", + "comments_url": "https://api.github.com/repos/Jisagi/Discord-guild-copy/issues/60/comments", + "events_url": "https://api.github.com/repos/Jisagi/Discord-guild-copy/issues/60/events", + "html_url": "https://github.com/Jisagi/Discord-guild-copy/issues/60", + "id": 510315279, + "node_id": "MDU6SXNzdWU1MTAzMTUyNzk=", + "number": 60, + "title": "Cannot read property 'id' of undefined", + "user": { + "login": "Dany-LF", + "id": 53636771, + "node_id": "MDQ6VXNlcjUzNjM2Nzcx", + "avatar_url": "https://avatars2.githubusercontent.com/u/53636771?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Dany-LF", + "html_url": "https://github.com/Dany-LF", + "followers_url": "https://api.github.com/users/Dany-LF/followers", + "following_url": "https://api.github.com/users/Dany-LF/following{/other_user}", + "gists_url": "https://api.github.com/users/Dany-LF/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Dany-LF/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Dany-LF/subscriptions", + "organizations_url": "https://api.github.com/users/Dany-LF/orgs", + "repos_url": "https://api.github.com/users/Dany-LF/repos", + "events_url": "https://api.github.com/users/Dany-LF/events{/privacy}", + "received_events_url": "https://api.github.com/users/Dany-LF/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-10-21T21:54:49Z", + "updated_at": "2019-10-21T21:54:49Z", + "closed_at": null, + "author_association": "NONE", + "body": "1. Serializing general data\r\n2. Serializing role data\r\nTypeError: Cannot read property 'id' of undefined\r\n at roleCol.map.role (/home/root2/Bureau/Discord-guild-copy-master/objects/serializer.js:103:57)\r\n" + } + }, + "public": true, + "created_at": "2019-10-21T21:54:49Z" + }, + { + "id": "10680625138", + "type": "CreateEvent", + "actor": { + "id": 56849494, + "login": "belindarose", + "display_login": "belindarose", + "gravatar_id": "", + "url": "https://api.github.com/users/belindarose", + "avatar_url": "https://avatars.githubusercontent.com/u/56849494?" + }, + "repo": { + "id": 216672339, + "name": "belindarose/b-rose", + "url": "https://api.github.com/repos/belindarose/b-rose" + }, + "payload": { + "ref": null, + "ref_type": "repository", + "master_branch": "master", + "description": null, + "pusher_type": "user" + }, + "public": true, + "created_at": "2019-10-21T21:54:49Z" + }, + { + "id": "10680625132", + "type": "PullRequestEvent", + "actor": { + "id": 10810283, + "login": "direwolf-github", + "display_login": "direwolf-github", + "gravatar_id": "", + "url": "https://api.github.com/users/direwolf-github", + "avatar_url": "https://avatars.githubusercontent.com/u/10810283?" + }, + "repo": { + "id": 216672323, + "name": "direwolf-github/my-app-f9704ec8", + "url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8" + }, + "payload": { + "action": "opened", + "number": 1, + "pull_request": { + "url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/pulls/1", + "id": 330711281, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzMwNzExMjgx", + "html_url": "https://github.com/direwolf-github/my-app-f9704ec8/pull/1", + "diff_url": "https://github.com/direwolf-github/my-app-f9704ec8/pull/1.diff", + "patch_url": "https://github.com/direwolf-github/my-app-f9704ec8/pull/1.patch", + "issue_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/issues/1", + "number": 1, + "state": "open", + "locked": false, + "title": "Direwolf review apps test branch-e08f46fa", + "user": { + "login": "direwolf-github", + "id": 10810283, + "node_id": "MDQ6VXNlcjEwODEwMjgz", + "avatar_url": "https://avatars0.githubusercontent.com/u/10810283?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/direwolf-github", + "html_url": "https://github.com/direwolf-github", + "followers_url": "https://api.github.com/users/direwolf-github/followers", + "following_url": "https://api.github.com/users/direwolf-github/following{/other_user}", + "gists_url": "https://api.github.com/users/direwolf-github/gists{/gist_id}", + "starred_url": "https://api.github.com/users/direwolf-github/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/direwolf-github/subscriptions", + "organizations_url": "https://api.github.com/users/direwolf-github/orgs", + "repos_url": "https://api.github.com/users/direwolf-github/repos", + "events_url": "https://api.github.com/users/direwolf-github/events{/privacy}", + "received_events_url": "https://api.github.com/users/direwolf-github/received_events", + "type": "User", + "site_admin": false + }, + "body": "Direwolf review apps test branch-e08f46fa", + "created_at": "2019-10-21T21:54:49Z", + "updated_at": "2019-10-21T21:54:49Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/pulls/1/commits", + "review_comments_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/pulls/1/comments", + "review_comment_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/issues/1/comments", + "statuses_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/statuses/59e58b1b034f83160109af55b0b4432e1fe54708", + "head": { + "label": "direwolf-github:branch-e08f46fa", + "ref": "branch-e08f46fa", + "sha": "59e58b1b034f83160109af55b0b4432e1fe54708", + "user": { + "login": "direwolf-github", + "id": 10810283, + "node_id": "MDQ6VXNlcjEwODEwMjgz", + "avatar_url": "https://avatars0.githubusercontent.com/u/10810283?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/direwolf-github", + "html_url": "https://github.com/direwolf-github", + "followers_url": "https://api.github.com/users/direwolf-github/followers", + "following_url": "https://api.github.com/users/direwolf-github/following{/other_user}", + "gists_url": "https://api.github.com/users/direwolf-github/gists{/gist_id}", + "starred_url": "https://api.github.com/users/direwolf-github/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/direwolf-github/subscriptions", + "organizations_url": "https://api.github.com/users/direwolf-github/orgs", + "repos_url": "https://api.github.com/users/direwolf-github/repos", + "events_url": "https://api.github.com/users/direwolf-github/events{/privacy}", + "received_events_url": "https://api.github.com/users/direwolf-github/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 216672323, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTY2NzIzMjM=", + "name": "my-app-f9704ec8", + "full_name": "direwolf-github/my-app-f9704ec8", + "private": false, + "owner": { + "login": "direwolf-github", + "id": 10810283, + "node_id": "MDQ6VXNlcjEwODEwMjgz", + "avatar_url": "https://avatars0.githubusercontent.com/u/10810283?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/direwolf-github", + "html_url": "https://github.com/direwolf-github", + "followers_url": "https://api.github.com/users/direwolf-github/followers", + "following_url": "https://api.github.com/users/direwolf-github/following{/other_user}", + "gists_url": "https://api.github.com/users/direwolf-github/gists{/gist_id}", + "starred_url": "https://api.github.com/users/direwolf-github/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/direwolf-github/subscriptions", + "organizations_url": "https://api.github.com/users/direwolf-github/orgs", + "repos_url": "https://api.github.com/users/direwolf-github/repos", + "events_url": "https://api.github.com/users/direwolf-github/events{/privacy}", + "received_events_url": "https://api.github.com/users/direwolf-github/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/direwolf-github/my-app-f9704ec8", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8", + "forks_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/forks", + "keys_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/teams", + "hooks_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/hooks", + "issue_events_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/issues/events{/number}", + "events_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/events", + "assignees_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/assignees{/user}", + "branches_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/branches{/branch}", + "tags_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/tags", + "blobs_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/statuses/{sha}", + "languages_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/languages", + "stargazers_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/stargazers", + "contributors_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/contributors", + "subscribers_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/subscribers", + "subscription_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/subscription", + "commits_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/contents/{+path}", + "compare_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/merges", + "archive_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/downloads", + "issues_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/issues{/number}", + "pulls_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/pulls{/number}", + "milestones_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/milestones{/number}", + "notifications_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/labels{/name}", + "releases_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/releases{/id}", + "deployments_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/deployments", + "created_at": "2019-10-21T21:54:43Z", + "updated_at": "2019-10-21T21:54:46Z", + "pushed_at": "2019-10-21T21:54:49Z", + "git_url": "git://github.com/direwolf-github/my-app-f9704ec8.git", + "ssh_url": "git@github.com:direwolf-github/my-app-f9704ec8.git", + "clone_url": "https://github.com/direwolf-github/my-app-f9704ec8.git", + "svn_url": "https://github.com/direwolf-github/my-app-f9704ec8", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "direwolf-github:master", + "ref": "master", + "sha": "4d3c6b596570ce87ea9ec7549f75603aaa5a680f", + "user": { + "login": "direwolf-github", + "id": 10810283, + "node_id": "MDQ6VXNlcjEwODEwMjgz", + "avatar_url": "https://avatars0.githubusercontent.com/u/10810283?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/direwolf-github", + "html_url": "https://github.com/direwolf-github", + "followers_url": "https://api.github.com/users/direwolf-github/followers", + "following_url": "https://api.github.com/users/direwolf-github/following{/other_user}", + "gists_url": "https://api.github.com/users/direwolf-github/gists{/gist_id}", + "starred_url": "https://api.github.com/users/direwolf-github/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/direwolf-github/subscriptions", + "organizations_url": "https://api.github.com/users/direwolf-github/orgs", + "repos_url": "https://api.github.com/users/direwolf-github/repos", + "events_url": "https://api.github.com/users/direwolf-github/events{/privacy}", + "received_events_url": "https://api.github.com/users/direwolf-github/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 216672323, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTY2NzIzMjM=", + "name": "my-app-f9704ec8", + "full_name": "direwolf-github/my-app-f9704ec8", + "private": false, + "owner": { + "login": "direwolf-github", + "id": 10810283, + "node_id": "MDQ6VXNlcjEwODEwMjgz", + "avatar_url": "https://avatars0.githubusercontent.com/u/10810283?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/direwolf-github", + "html_url": "https://github.com/direwolf-github", + "followers_url": "https://api.github.com/users/direwolf-github/followers", + "following_url": "https://api.github.com/users/direwolf-github/following{/other_user}", + "gists_url": "https://api.github.com/users/direwolf-github/gists{/gist_id}", + "starred_url": "https://api.github.com/users/direwolf-github/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/direwolf-github/subscriptions", + "organizations_url": "https://api.github.com/users/direwolf-github/orgs", + "repos_url": "https://api.github.com/users/direwolf-github/repos", + "events_url": "https://api.github.com/users/direwolf-github/events{/privacy}", + "received_events_url": "https://api.github.com/users/direwolf-github/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/direwolf-github/my-app-f9704ec8", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8", + "forks_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/forks", + "keys_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/teams", + "hooks_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/hooks", + "issue_events_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/issues/events{/number}", + "events_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/events", + "assignees_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/assignees{/user}", + "branches_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/branches{/branch}", + "tags_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/tags", + "blobs_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/statuses/{sha}", + "languages_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/languages", + "stargazers_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/stargazers", + "contributors_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/contributors", + "subscribers_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/subscribers", + "subscription_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/subscription", + "commits_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/contents/{+path}", + "compare_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/merges", + "archive_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/downloads", + "issues_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/issues{/number}", + "pulls_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/pulls{/number}", + "milestones_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/milestones{/number}", + "notifications_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/labels{/name}", + "releases_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/releases{/id}", + "deployments_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/deployments", + "created_at": "2019-10-21T21:54:43Z", + "updated_at": "2019-10-21T21:54:46Z", + "pushed_at": "2019-10-21T21:54:49Z", + "git_url": "git://github.com/direwolf-github/my-app-f9704ec8.git", + "ssh_url": "git@github.com:direwolf-github/my-app-f9704ec8.git", + "clone_url": "https://github.com/direwolf-github/my-app-f9704ec8.git", + "svn_url": "https://github.com/direwolf-github/my-app-f9704ec8", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/pulls/1" + }, + "html": { + "href": "https://github.com/direwolf-github/my-app-f9704ec8/pull/1" + }, + "issue": { + "href": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/issues/1" + }, + "comments": { + "href": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/issues/1/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/pulls/1/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/pulls/1/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/statuses/59e58b1b034f83160109af55b0b4432e1fe54708" + } + }, + "author_association": "OWNER", + "merged": false, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 1, + "deletions": 0, + "changed_files": 1 + } + }, + "public": true, + "created_at": "2019-10-21T21:54:49Z" + }, + { + "id": "10680625127", + "type": "CreateEvent", + "actor": { + "id": 10810283, + "login": "direwolf-github", + "display_login": "direwolf-github", + "gravatar_id": "", + "url": "https://api.github.com/users/direwolf-github", + "avatar_url": "https://avatars.githubusercontent.com/u/10810283?" + }, + "repo": { + "id": 183051410, + "name": "direwolf-github/my-app", + "url": "https://api.github.com/repos/direwolf-github/my-app" + }, + "payload": { + "ref": "branch-cdd0a924", + "ref_type": "branch", + "master_branch": "master", + "description": null, + "pusher_type": "user" + }, + "public": true, + "created_at": "2019-10-21T21:54:49Z" + }, + { + "id": "10680625119", + "type": "PushEvent", + "actor": { + "id": 1276443, + "login": "jalopezsilva", + "display_login": "jalopezsilva", + "gravatar_id": "", + "url": "https://api.github.com/users/jalopezsilva", + "avatar_url": "https://avatars.githubusercontent.com/u/1276443?" + }, + "repo": { + "id": 209424327, + "name": "jalopezsilva/requests", + "url": "https://api.github.com/repos/jalopezsilva/requests" + }, + "payload": { + "push_id": 4176854952, + "size": 2, + "distinct_size": 2, + "ref": "refs/heads/master", + "head": "7949f68fc3607986a80d4097233450ecc034432e", + "before": "452fbf0db4f98082c941bd84c2e24d6f4444c402", + "commits": [ + { + "sha": "3eae408d1811e3d79b79dae76ac0d56a25f47d76", + "author": { + "email": "jalopezsilva@gmail.com", + "name": "Jorge Lopez Silva" + }, + "message": "Prepare for FB internal patch.", + "distinct": true, + "url": "https://api.github.com/repos/jalopezsilva/requests/commits/3eae408d1811e3d79b79dae76ac0d56a25f47d76" + }, + { + "sha": "7949f68fc3607986a80d4097233450ecc034432e", + "author": { + "email": "jalopezsilva@gmail.com", + "name": "Jorge Lopez Silva" + }, + "message": "Fix bug when proxy_scheme is not set.", + "distinct": true, + "url": "https://api.github.com/repos/jalopezsilva/requests/commits/7949f68fc3607986a80d4097233450ecc034432e" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:49Z" + }, + { + "id": "10680625108", + "type": "PushEvent", + "actor": { + "id": 52762728, + "login": "lflores0214", + "display_login": "lflores0214", + "gravatar_id": "", + "url": "https://api.github.com/users/lflores0214", + "avatar_url": "https://avatars.githubusercontent.com/u/52762728?" + }, + "repo": { + "id": 216055148, + "name": "build-week-vegan-meets/FE", + "url": "https://api.github.com/repos/build-week-vegan-meets/FE" + }, + "payload": { + "push_id": 4176854950, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/Luis-Flores", + "head": "077d3a9a104483c350d53b57b8320d784a05ed03", + "before": "224f95bcbb1700c7f5ee53dbdb64df898b0e4f29", + "commits": [ + { + "sha": "077d3a9a104483c350d53b57b8320d784a05ed03", + "author": { + "email": "Lflores02142@gmail.com", + "name": "Luis Floresgit config --global user.name Luis" + }, + "message": "reformatted to use Formik", + "distinct": true, + "url": "https://api.github.com/repos/build-week-vegan-meets/FE/commits/077d3a9a104483c350d53b57b8320d784a05ed03" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:49Z", + "org": { + "id": 56733259, + "login": "build-week-vegan-meets", + "gravatar_id": "", + "url": "https://api.github.com/orgs/build-week-vegan-meets", + "avatar_url": "https://avatars.githubusercontent.com/u/56733259?" + } + }, + { + "id": "10680625114", + "type": "IssueCommentEvent", + "actor": { + "id": 33439345, + "login": "tgsong", + "display_login": "tgsong", + "gravatar_id": "", + "url": "https://api.github.com/users/tgsong", + "avatar_url": "https://avatars.githubusercontent.com/u/33439345?" + }, + "repo": { + "id": 110170439, + "name": "aws/amazon-freertos", + "url": "https://api.github.com/repos/aws/amazon-freertos" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/aws/amazon-freertos/issues/832", + "repository_url": "https://api.github.com/repos/aws/amazon-freertos", + "labels_url": "https://api.github.com/repos/aws/amazon-freertos/issues/832/labels{/name}", + "comments_url": "https://api.github.com/repos/aws/amazon-freertos/issues/832/comments", + "events_url": "https://api.github.com/repos/aws/amazon-freertos/issues/832/events", + "html_url": "https://github.com/aws/amazon-freertos/issues/832", + "id": 459524798, + "node_id": "MDU6SXNzdWU0NTk1MjQ3OTg=", + "number": 832, + "title": "Document how to create a new cmake project outside the freertos source tree", + "user": { + "login": "jrr", + "id": 164652, + "node_id": "MDQ6VXNlcjE2NDY1Mg==", + "avatar_url": "https://avatars0.githubusercontent.com/u/164652?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jrr", + "html_url": "https://github.com/jrr", + "followers_url": "https://api.github.com/users/jrr/followers", + "following_url": "https://api.github.com/users/jrr/following{/other_user}", + "gists_url": "https://api.github.com/users/jrr/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jrr/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jrr/subscriptions", + "organizations_url": "https://api.github.com/users/jrr/orgs", + "repos_url": "https://api.github.com/users/jrr/repos", + "events_url": "https://api.github.com/users/jrr/events{/privacy}", + "received_events_url": "https://api.github.com/users/jrr/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 37, + "created_at": "2019-06-23T01:04:51Z", + "updated_at": "2019-10-21T21:54:49Z", + "closed_at": null, + "author_association": "NONE", + "body": "**Is your feature request related to a problem? Please describe.** \r\nThe Getting Started Guides describe how to run the demo apps, but I can't find anything about creating a _new_ project.\r\n\r\n**Describe the solution you would like.** \r\nDocumentation describing how to create a new project outside the amazon-freertos source tree, and guidance about how to consume freertos from outside. \r\n\r\n**Additional context** \r\nWith the old Make-based system, I was able to create a new ESP32 project that references amazon-freertos from outside, including this repo as an unmodified git submodule.\r\n\r\n(This wasn't documented before, either, so it took significant effort!)\r\n\r\nNow with the new cmake system I feel like I have to start all over.\r\n\r\n**I'm looking for something like:**\r\n1) Copy files X, Y, and Z into a new directory\r\n2) Export an `AMAZON_FREERTOS_PATH` environment variable pointing the root directory of the amazon-freertos repo\r\n3) Issue command `cmake -D...` to build your application image.\r\n\r\nIs this documented anywhere? Am I missing something?" + }, + "comment": { + "url": "https://api.github.com/repos/aws/amazon-freertos/issues/comments/544724571", + "html_url": "https://github.com/aws/amazon-freertos/issues/832#issuecomment-544724571", + "issue_url": "https://api.github.com/repos/aws/amazon-freertos/issues/832", + "id": 544724571, + "node_id": "MDEyOklzc3VlQ29tbWVudDU0NDcyNDU3MQ==", + "user": { + "login": "tgsong", + "id": 33439345, + "node_id": "MDQ6VXNlcjMzNDM5MzQ1", + "avatar_url": "https://avatars2.githubusercontent.com/u/33439345?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/tgsong", + "html_url": "https://github.com/tgsong", + "followers_url": "https://api.github.com/users/tgsong/followers", + "following_url": "https://api.github.com/users/tgsong/following{/other_user}", + "gists_url": "https://api.github.com/users/tgsong/gists{/gist_id}", + "starred_url": "https://api.github.com/users/tgsong/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/tgsong/subscriptions", + "organizations_url": "https://api.github.com/users/tgsong/orgs", + "repos_url": "https://api.github.com/users/tgsong/repos", + "events_url": "https://api.github.com/users/tgsong/events{/privacy}", + "received_events_url": "https://api.github.com/users/tgsong/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2019-10-21T21:54:49Z", + "updated_at": "2019-10-21T21:54:49Z", + "author_association": "COLLABORATOR", + "body": "@JairoDaniel I see you have this line in your CMake file, `file(GLOB SOURCES \"hello/main.c\")`. However, you said your project structure has `src/main.c`. Can you double check if you're compiling that `main.c` or not? CMake won't tell you if the `SOURCES` variable is empty or not." + } + }, + "public": true, + "created_at": "2019-10-21T21:54:49Z", + "org": { + "id": 2232217, + "login": "aws", + "gravatar_id": "", + "url": "https://api.github.com/orgs/aws", + "avatar_url": "https://avatars.githubusercontent.com/u/2232217?" + } + }, + { + "id": "10680625109", + "type": "PushEvent", + "actor": { + "id": 53228114, + "login": "Mikeulrich75", + "display_login": "Mikeulrich75", + "gravatar_id": "", + "url": "https://api.github.com/users/Mikeulrich75", + "avatar_url": "https://avatars.githubusercontent.com/u/53228114?" + }, + "repo": { + "id": 216653839, + "name": "Mikeulrich75/dataLayerBuilderStandardEcommerce", + "url": "https://api.github.com/repos/Mikeulrich75/dataLayerBuilderStandardEcommerce" + }, + "payload": { + "push_id": 4176854947, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "0757c0a942788403c9792b434e3b7cee81446a66", + "before": "1af55801fc12dc12bbe523ff41ea351841bca423", + "commits": [ + { + "sha": "0757c0a942788403c9792b434e3b7cee81446a66", + "author": { + "email": "53228114+Mikeulrich75@users.noreply.github.com", + "name": "Mikeulrich75" + }, + "message": "Update metadata.yaml", + "distinct": true, + "url": "https://api.github.com/repos/Mikeulrich75/dataLayerBuilderStandardEcommerce/commits/0757c0a942788403c9792b434e3b7cee81446a66" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:49Z" + }, + { + "id": "10680625104", + "type": "PushEvent", + "actor": { + "id": 16145939, + "login": "joffitzer", + "display_login": "joffitzer", + "gravatar_id": "", + "url": "https://api.github.com/users/joffitzer", + "avatar_url": "https://avatars.githubusercontent.com/u/16145939?" + }, + "repo": { + "id": 215930498, + "name": "joffitzer/advanced-hashes-hashketball-nyc-web-102819", + "url": "https://api.github.com/repos/joffitzer/advanced-hashes-hashketball-nyc-web-102819" + }, + "payload": { + "push_id": 4176854944, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/wip", + "head": "e82b1595bd3e8b993b8bd01fcf1a5bdba96f9f84", + "before": "94769898091f4b25786b1fa8d6268d57b98cd0b2", + "commits": [ + { + "sha": "e82b1595bd3e8b993b8bd01fcf1a5bdba96f9f84", + "author": { + "email": "joffitzer@gmail.com", + "name": "Jonah Offitzer" + }, + "message": "Automatically backed up by Learn", + "distinct": true, + "url": "https://api.github.com/repos/joffitzer/advanced-hashes-hashketball-nyc-web-102819/commits/e82b1595bd3e8b993b8bd01fcf1a5bdba96f9f84" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:49Z" + }, + { + "id": "10680625115", + "type": "DeleteEvent", + "actor": { + "id": 23040076, + "login": "greenkeeper[bot]", + "display_login": "greenkeeper", + "gravatar_id": "", + "url": "https://api.github.com/users/greenkeeper[bot]", + "avatar_url": "https://avatars.githubusercontent.com/u/23040076?" + }, + "repo": { + "id": 203189267, + "name": "stevenselcuk/Coeus", + "url": "https://api.github.com/repos/stevenselcuk/Coeus" + }, + "payload": { + "ref": "greenkeeper/monorepo.apollo-server-20191021190157", + "ref_type": "branch", + "pusher_type": "user" + }, + "public": true, + "created_at": "2019-10-21T21:54:49Z" + }, + { + "id": "10680625105", + "type": "PushEvent", + "actor": { + "id": 10810283, + "login": "direwolf-github", + "display_login": "direwolf-github", + "gravatar_id": "", + "url": "https://api.github.com/users/direwolf-github", + "avatar_url": "https://avatars.githubusercontent.com/u/10810283?" + }, + "repo": { + "id": 216672323, + "name": "direwolf-github/my-app-f9704ec8", + "url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8" + }, + "payload": { + "push_id": 4176854945, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/branch-e08f46fa", + "head": "59e58b1b034f83160109af55b0b4432e1fe54708", + "before": "4d3c6b596570ce87ea9ec7549f75603aaa5a680f", + "commits": [ + { + "sha": "59e58b1b034f83160109af55b0b4432e1fe54708", + "author": { + "email": "heroku-lifecycle+direwolf-github@salesforce.com", + "name": "direwolf-github" + }, + "message": "add readme.txt", + "distinct": true, + "url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/commits/59e58b1b034f83160109af55b0b4432e1fe54708" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:49Z" + }, + { + "id": "10680625103", + "type": "PushEvent", + "actor": { + "id": 3455449, + "login": "Dids", + "display_login": "Dids", + "gravatar_id": "", + "url": "https://api.github.com/users/Dids", + "avatar_url": "https://avatars.githubusercontent.com/u/3455449?" + }, + "repo": { + "id": 92093613, + "name": "Didstopia/SDL_net", + "url": "https://api.github.com/repos/Didstopia/SDL_net" + }, + "payload": { + "push_id": 4176854943, + "size": 0, + "distinct_size": 0, + "ref": "refs/heads/SDL-1.2", + "head": "665e9ff856a6a3458a37da16afedd00ff95723fe", + "before": "665e9ff856a6a3458a37da16afedd00ff95723fe", + "commits": [] + }, + "public": true, + "created_at": "2019-10-21T21:54:49Z", + "org": { + "id": 11643531, + "login": "Didstopia", + "gravatar_id": "", + "url": "https://api.github.com/orgs/Didstopia", + "avatar_url": "https://avatars.githubusercontent.com/u/11643531?" + } + }, + { + "id": "10680625101", + "type": "CreateEvent", + "actor": { + "id": 42206314, + "login": "jchaconv", + "display_login": "jchaconv", + "gravatar_id": "", + "url": "https://api.github.com/users/jchaconv", + "avatar_url": "https://avatars.githubusercontent.com/u/42206314?" + }, + "repo": { + "id": 216672337, + "name": "jchaconv/spring-boot-microservices", + "url": "https://api.github.com/repos/jchaconv/spring-boot-microservices" + }, + "payload": { + "ref": null, + "ref_type": "repository", + "master_branch": "master", + "description": "Repository for the course Spring Boot Microservices with Spring Cloud Beginner to Guru", + "pusher_type": "user" + }, + "public": true, + "created_at": "2019-10-21T21:54:49Z" + }, + { + "id": "10680625092", + "type": "PushEvent", + "actor": { + "id": 794578, + "login": "ghostwords", + "display_login": "ghostwords", + "gravatar_id": "", + "url": "https://api.github.com/users/ghostwords", + "avatar_url": "https://avatars.githubusercontent.com/u/794578?" + }, + "repo": { + "id": 11321096, + "name": "EFForg/privacybadger", + "url": "https://api.github.com/repos/EFForg/privacybadger" + }, + "payload": { + "push_id": 4176854942, + "size": 2, + "distinct_size": 2, + "ref": "refs/heads/master", + "head": "abd2e330a3b4b6222c88587d04d71b12f4da870d", + "before": "1340bbf32da76263b4f65abf9c1690e049de3ade", + "commits": [ + { + "sha": "4604368825383efab42b00f59963f6b5b6b58726", + "author": { + "email": "alexeiatyahoodotcom@gmail.com", + "name": "Alexei" + }, + "message": "Add a couple of SoundCloud domains to MDFP.", + "distinct": true, + "url": "https://api.github.com/repos/EFForg/privacybadger/commits/4604368825383efab42b00f59963f6b5b6b58726" + }, + { + "sha": "abd2e330a3b4b6222c88587d04d71b12f4da870d", + "author": { + "email": "alexeiatyahoodotcom@gmail.com", + "name": "Alexei" + }, + "message": "Restore sndcdn.com to yellowlist.\n\nShould stay until we release 4604368.", + "distinct": true, + "url": "https://api.github.com/repos/EFForg/privacybadger/commits/abd2e330a3b4b6222c88587d04d71b12f4da870d" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:49Z", + "org": { + "id": 2120271, + "login": "EFForg", + "gravatar_id": "", + "url": "https://api.github.com/orgs/EFForg", + "avatar_url": "https://avatars.githubusercontent.com/u/2120271?" + } + }, + { + "id": "10680625084", + "type": "PushEvent", + "actor": { + "id": 40370237, + "login": "elimvb", + "display_login": "elimvb", + "gravatar_id": "", + "url": "https://api.github.com/users/elimvb", + "avatar_url": "https://avatars.githubusercontent.com/u/40370237?" + }, + "repo": { + "id": 107305157, + "name": "allenai/ai2thor", + "url": "https://api.github.com/repos/allenai/ai2thor" + }, + "payload": { + "push_id": 4176854936, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/real", + "head": "dd92a4c5692b8e21a762fe06d8b5c67fcff9822a", + "before": "b035ed164318519b90f459fa54f4a7390d1a3c71", + "commits": [ + { + "sha": "dd92a4c5692b8e21a762fe06d8b5c67fcff9822a", + "author": { + "email": "40370237+elimvb@users.noreply.github.com", + "name": "Eli VanderBilt" + }, + "message": "Completed FloorPlan_Train15 variations", + "distinct": true, + "url": "https://api.github.com/repos/allenai/ai2thor/commits/dd92a4c5692b8e21a762fe06d8b5c67fcff9822a" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:49Z", + "org": { + "id": 5667695, + "login": "allenai", + "gravatar_id": "", + "url": "https://api.github.com/orgs/allenai", + "avatar_url": "https://avatars.githubusercontent.com/u/5667695?" + } + }, + { + "id": "10680625085", + "type": "PushEvent", + "actor": { + "id": 56764278, + "login": "grobelDev", + "display_login": "grobelDev", + "gravatar_id": "", + "url": "https://api.github.com/users/grobelDev", + "avatar_url": "https://avatars.githubusercontent.com/u/56764278?" + }, + "repo": { + "id": 216637078, + "name": "thinkful-ei-iguana/Anthony-Harrison-Day-1-JS", + "url": "https://api.github.com/repos/thinkful-ei-iguana/Anthony-Harrison-Day-1-JS" + }, + "payload": { + "push_id": 4176854935, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "8e7248fcf15480d4b6090b0e02c1fba68bcf1171", + "before": "65644249a175698e87bb4b6c32ff37ac0f924a3c", + "commits": [ + { + "sha": "8e7248fcf15480d4b6090b0e02c1fba68bcf1171", + "author": { + "email": "grobeldev@gmail.com", + "name": "grobelDev" + }, + "message": "map, reduce, forEach", + "distinct": true, + "url": "https://api.github.com/repos/thinkful-ei-iguana/Anthony-Harrison-Day-1-JS/commits/8e7248fcf15480d4b6090b0e02c1fba68bcf1171" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:49Z", + "org": { + "id": 56694966, + "login": "thinkful-ei-iguana", + "gravatar_id": "", + "url": "https://api.github.com/orgs/thinkful-ei-iguana", + "avatar_url": "https://avatars.githubusercontent.com/u/56694966?" + } + }, + { + "id": "10680625080", + "type": "PushEvent", + "actor": { + "id": 7111514, + "login": "shushugah", + "display_login": "shushugah", + "gravatar_id": "", + "url": "https://api.github.com/users/shushugah", + "avatar_url": "https://avatars.githubusercontent.com/u/7111514?" + }, + "repo": { + "id": 209969044, + "name": "codecurious-bln/CC-website", + "url": "https://api.github.com/repos/codecurious-bln/CC-website" + }, + "payload": { + "push_id": 4176854937, + "size": 2, + "distinct_size": 2, + "ref": "refs/heads/master", + "head": "ca3257de9d87f497be2d5d2cfd5ef75c78b1c732", + "before": "b762a83d2dd69f4d7be63695dff479b39605c9e3", + "commits": [ + { + "sha": "aec5222f75127664e4df1aa618334663f4a0081f", + "author": { + "email": "mejiasnam@gmail.com", + "name": "Naylin Medina" + }, + "message": "add edit on github\n\nSigned-off-by: Naylin Medina ", + "distinct": true, + "url": "https://api.github.com/repos/codecurious-bln/CC-website/commits/aec5222f75127664e4df1aa618334663f4a0081f" + }, + { + "sha": "ca3257de9d87f497be2d5d2cfd5ef75c78b1c732", + "author": { + "email": "yonatan@shushugah.com", + "name": "yonatan miller" + }, + "message": "Merge pull request #32 from Naylin15/edit-github\n\nAdd edit on github", + "distinct": true, + "url": "https://api.github.com/repos/codecurious-bln/CC-website/commits/ca3257de9d87f497be2d5d2cfd5ef75c78b1c732" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:49Z", + "org": { + "id": 2067368, + "login": "codecurious-bln", + "gravatar_id": "", + "url": "https://api.github.com/orgs/codecurious-bln", + "avatar_url": "https://avatars.githubusercontent.com/u/2067368?" + } + }, + { + "id": "10680625077", + "type": "PushEvent", + "actor": { + "id": 25649994, + "login": "MarkMozgovoy", + "display_login": "MarkMozgovoy", + "gravatar_id": "", + "url": "https://api.github.com/users/MarkMozgovoy", + "avatar_url": "https://avatars.githubusercontent.com/u/25649994?" + }, + "repo": { + "id": 188302057, + "name": "MarkMozgovoy/LeetCode-Problems", + "url": "https://api.github.com/repos/MarkMozgovoy/LeetCode-Problems" + }, + "payload": { + "push_id": 4176854934, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "e57205289100880b63e23f3ac02f6b64d92ef290", + "before": "dfced045a8f132fc046115d179195aed65a8900a", + "commits": [ + { + "sha": "e57205289100880b63e23f3ac02f6b64d92ef290", + "author": { + "email": "mark@mozgovoy.com", + "name": "Mark" + }, + "message": "Did AVeryBigSum and CountingValleys", + "distinct": true, + "url": "https://api.github.com/repos/MarkMozgovoy/LeetCode-Problems/commits/e57205289100880b63e23f3ac02f6b64d92ef290" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:49Z" + }, + { + "id": "10680625073", + "type": "PushEvent", + "actor": { + "id": 14370342, + "login": "SambaGodschynski", + "display_login": "SambaGodschynski", + "gravatar_id": "", + "url": "https://api.github.com/users/SambaGodschynski", + "avatar_url": "https://avatars.githubusercontent.com/u/14370342?" + }, + "repo": { + "id": 209546605, + "name": "SambaGodschynski/werckmeister-codext", + "url": "https://api.github.com/repos/SambaGodschynski/werckmeister-codext" + }, + "payload": { + "push_id": 4176854928, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "dae114332acb5a7dc01b60f74fc20c362a494901", + "before": "431184bd4d19f6fc1ded8423c4eaca9a2717b580", + "commits": [ + { + "sha": "dae114332acb5a7dc01b60f74fc20c362a494901", + "author": { + "email": "johannes.unger@vstforx.de", + "name": "U-fips\\samba" + }, + "message": "start player current file no sheet fallback impl.", + "distinct": true, + "url": "https://api.github.com/repos/SambaGodschynski/werckmeister-codext/commits/dae114332acb5a7dc01b60f74fc20c362a494901" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:49Z" + }, + { + "id": "10680625068", + "type": "PullRequestEvent", + "actor": { + "id": 39814207, + "login": "pull[bot]", + "display_login": "pull", + "gravatar_id": "", + "url": "https://api.github.com/users/pull[bot]", + "avatar_url": "https://avatars.githubusercontent.com/u/39814207?" + }, + "repo": { + "id": 197345677, + "name": "daddyfatstacksBIG/lerna", + "url": "https://api.github.com/repos/daddyfatstacksBIG/lerna" + }, + "payload": { + "action": "opened", + "number": 20, + "pull_request": { + "url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/pulls/20", + "id": 330711279, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzMwNzExMjc5", + "html_url": "https://github.com/daddyfatstacksBIG/lerna/pull/20", + "diff_url": "https://github.com/daddyfatstacksBIG/lerna/pull/20.diff", + "patch_url": "https://github.com/daddyfatstacksBIG/lerna/pull/20.patch", + "issue_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/issues/20", + "number": 20, + "state": "open", + "locked": false, + "title": "[pull] master from lerna:master", + "user": { + "login": "pull[bot]", + "id": 39814207, + "node_id": "MDM6Qm90Mzk4MTQyMDc=", + "avatar_url": "https://avatars0.githubusercontent.com/in/12910?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/pull%5Bbot%5D", + "html_url": "https://github.com/apps/pull", + "followers_url": "https://api.github.com/users/pull%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/pull%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/pull%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/pull%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/pull%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/pull%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/pull%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/pull%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/pull%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "body": "See Commits and Changes for more details.\n\n-----\nCreated by [ **pull[bot]**](https://github.com/wei/pull). Want to support this open source service? [Please star it : )](https://github.com/wei/pull)", + "created_at": "2019-10-21T21:54:49Z", + "updated_at": "2019-10-21T21:54:49Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/pulls/20/commits", + "review_comments_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/pulls/20/comments", + "review_comment_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/issues/20/comments", + "statuses_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/statuses/4872459be7bf88e5900ff907b07279e9516d333c", + "head": { + "label": "lerna:master", + "ref": "master", + "sha": "4872459be7bf88e5900ff907b07279e9516d333c", + "user": { + "login": "lerna", + "id": 19333396, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE5MzMzMzk2", + "avatar_url": "https://avatars2.githubusercontent.com/u/19333396?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/lerna", + "html_url": "https://github.com/lerna", + "followers_url": "https://api.github.com/users/lerna/followers", + "following_url": "https://api.github.com/users/lerna/following{/other_user}", + "gists_url": "https://api.github.com/users/lerna/gists{/gist_id}", + "starred_url": "https://api.github.com/users/lerna/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/lerna/subscriptions", + "organizations_url": "https://api.github.com/users/lerna/orgs", + "repos_url": "https://api.github.com/users/lerna/repos", + "events_url": "https://api.github.com/users/lerna/events{/privacy}", + "received_events_url": "https://api.github.com/users/lerna/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 47394776, + "node_id": "MDEwOlJlcG9zaXRvcnk0NzM5NDc3Ng==", + "name": "lerna", + "full_name": "lerna/lerna", + "private": false, + "owner": { + "login": "lerna", + "id": 19333396, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE5MzMzMzk2", + "avatar_url": "https://avatars2.githubusercontent.com/u/19333396?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/lerna", + "html_url": "https://github.com/lerna", + "followers_url": "https://api.github.com/users/lerna/followers", + "following_url": "https://api.github.com/users/lerna/following{/other_user}", + "gists_url": "https://api.github.com/users/lerna/gists{/gist_id}", + "starred_url": "https://api.github.com/users/lerna/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/lerna/subscriptions", + "organizations_url": "https://api.github.com/users/lerna/orgs", + "repos_url": "https://api.github.com/users/lerna/repos", + "events_url": "https://api.github.com/users/lerna/events{/privacy}", + "received_events_url": "https://api.github.com/users/lerna/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/lerna/lerna", + "description": ":dragon: A tool for managing JavaScript projects with multiple packages.", + "fork": false, + "url": "https://api.github.com/repos/lerna/lerna", + "forks_url": "https://api.github.com/repos/lerna/lerna/forks", + "keys_url": "https://api.github.com/repos/lerna/lerna/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/lerna/lerna/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/lerna/lerna/teams", + "hooks_url": "https://api.github.com/repos/lerna/lerna/hooks", + "issue_events_url": "https://api.github.com/repos/lerna/lerna/issues/events{/number}", + "events_url": "https://api.github.com/repos/lerna/lerna/events", + "assignees_url": "https://api.github.com/repos/lerna/lerna/assignees{/user}", + "branches_url": "https://api.github.com/repos/lerna/lerna/branches{/branch}", + "tags_url": "https://api.github.com/repos/lerna/lerna/tags", + "blobs_url": "https://api.github.com/repos/lerna/lerna/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/lerna/lerna/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/lerna/lerna/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/lerna/lerna/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/lerna/lerna/statuses/{sha}", + "languages_url": "https://api.github.com/repos/lerna/lerna/languages", + "stargazers_url": "https://api.github.com/repos/lerna/lerna/stargazers", + "contributors_url": "https://api.github.com/repos/lerna/lerna/contributors", + "subscribers_url": "https://api.github.com/repos/lerna/lerna/subscribers", + "subscription_url": "https://api.github.com/repos/lerna/lerna/subscription", + "commits_url": "https://api.github.com/repos/lerna/lerna/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/lerna/lerna/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/lerna/lerna/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/lerna/lerna/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/lerna/lerna/contents/{+path}", + "compare_url": "https://api.github.com/repos/lerna/lerna/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/lerna/lerna/merges", + "archive_url": "https://api.github.com/repos/lerna/lerna/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/lerna/lerna/downloads", + "issues_url": "https://api.github.com/repos/lerna/lerna/issues{/number}", + "pulls_url": "https://api.github.com/repos/lerna/lerna/pulls{/number}", + "milestones_url": "https://api.github.com/repos/lerna/lerna/milestones{/number}", + "notifications_url": "https://api.github.com/repos/lerna/lerna/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/lerna/lerna/labels{/name}", + "releases_url": "https://api.github.com/repos/lerna/lerna/releases{/id}", + "deployments_url": "https://api.github.com/repos/lerna/lerna/deployments", + "created_at": "2015-12-04T09:36:55Z", + "updated_at": "2019-10-21T21:10:48Z", + "pushed_at": "2019-10-21T21:43:03Z", + "git_url": "git://github.com/lerna/lerna.git", + "ssh_url": "git@github.com:lerna/lerna.git", + "clone_url": "https://github.com/lerna/lerna.git", + "svn_url": "https://github.com/lerna/lerna", + "homepage": "https://lerna.js.org", + "size": 7992, + "stargazers_count": 19472, + "watchers_count": 19472, + "language": "JavaScript", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1208, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 230, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1208, + "open_issues": 230, + "watchers": 19472, + "default_branch": "master" + } + }, + "base": { + "label": "daddyfatstacksBIG:master", + "ref": "master", + "sha": "99425f7e3df4d081c51f9850e71ad93e83dc30c4", + "user": { + "login": "daddyfatstacksBIG", + "id": 50436469, + "node_id": "MDQ6VXNlcjUwNDM2NDY5", + "avatar_url": "https://avatars3.githubusercontent.com/u/50436469?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/daddyfatstacksBIG", + "html_url": "https://github.com/daddyfatstacksBIG", + "followers_url": "https://api.github.com/users/daddyfatstacksBIG/followers", + "following_url": "https://api.github.com/users/daddyfatstacksBIG/following{/other_user}", + "gists_url": "https://api.github.com/users/daddyfatstacksBIG/gists{/gist_id}", + "starred_url": "https://api.github.com/users/daddyfatstacksBIG/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/daddyfatstacksBIG/subscriptions", + "organizations_url": "https://api.github.com/users/daddyfatstacksBIG/orgs", + "repos_url": "https://api.github.com/users/daddyfatstacksBIG/repos", + "events_url": "https://api.github.com/users/daddyfatstacksBIG/events{/privacy}", + "received_events_url": "https://api.github.com/users/daddyfatstacksBIG/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 197345677, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTczNDU2Nzc=", + "name": "lerna", + "full_name": "daddyfatstacksBIG/lerna", + "private": false, + "owner": { + "login": "daddyfatstacksBIG", + "id": 50436469, + "node_id": "MDQ6VXNlcjUwNDM2NDY5", + "avatar_url": "https://avatars3.githubusercontent.com/u/50436469?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/daddyfatstacksBIG", + "html_url": "https://github.com/daddyfatstacksBIG", + "followers_url": "https://api.github.com/users/daddyfatstacksBIG/followers", + "following_url": "https://api.github.com/users/daddyfatstacksBIG/following{/other_user}", + "gists_url": "https://api.github.com/users/daddyfatstacksBIG/gists{/gist_id}", + "starred_url": "https://api.github.com/users/daddyfatstacksBIG/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/daddyfatstacksBIG/subscriptions", + "organizations_url": "https://api.github.com/users/daddyfatstacksBIG/orgs", + "repos_url": "https://api.github.com/users/daddyfatstacksBIG/repos", + "events_url": "https://api.github.com/users/daddyfatstacksBIG/events{/privacy}", + "received_events_url": "https://api.github.com/users/daddyfatstacksBIG/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/daddyfatstacksBIG/lerna", + "description": ":dragon: A tool for managing JavaScript projects with multiple packages.", + "fork": true, + "url": "https://api.github.com/repos/daddyfatstacksBIG/lerna", + "forks_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/forks", + "keys_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/teams", + "hooks_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/hooks", + "issue_events_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/issues/events{/number}", + "events_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/events", + "assignees_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/assignees{/user}", + "branches_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/branches{/branch}", + "tags_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/tags", + "blobs_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/statuses/{sha}", + "languages_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/languages", + "stargazers_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/stargazers", + "contributors_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/contributors", + "subscribers_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/subscribers", + "subscription_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/subscription", + "commits_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/contents/{+path}", + "compare_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/merges", + "archive_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/downloads", + "issues_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/issues{/number}", + "pulls_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/pulls{/number}", + "milestones_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/milestones{/number}", + "notifications_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/labels{/name}", + "releases_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/releases{/id}", + "deployments_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/deployments", + "created_at": "2019-07-17T08:14:07Z", + "updated_at": "2019-10-21T19:54:51Z", + "pushed_at": "2019-10-21T19:54:49Z", + "git_url": "git://github.com/daddyfatstacksBIG/lerna.git", + "ssh_url": "git@github.com:daddyfatstacksBIG/lerna.git", + "clone_url": "https://github.com/daddyfatstacksBIG/lerna.git", + "svn_url": "https://github.com/daddyfatstacksBIG/lerna", + "homepage": "https://lerna.js.org", + "size": 7870, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/daddyfatstacksBIG/lerna/pulls/20" + }, + "html": { + "href": "https://github.com/daddyfatstacksBIG/lerna/pull/20" + }, + "issue": { + "href": "https://api.github.com/repos/daddyfatstacksBIG/lerna/issues/20" + }, + "comments": { + "href": "https://api.github.com/repos/daddyfatstacksBIG/lerna/issues/20/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/daddyfatstacksBIG/lerna/pulls/20/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/daddyfatstacksBIG/lerna/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/daddyfatstacksBIG/lerna/pulls/20/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/daddyfatstacksBIG/lerna/statuses/4872459be7bf88e5900ff907b07279e9516d333c" + } + }, + "author_association": "NONE", + "merged": false, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 5, + "additions": 327, + "deletions": 260, + "changed_files": 25 + } + }, + "public": true, + "created_at": "2019-10-21T21:54:49Z" + }, + { + "id": "10680625062", + "type": "PushEvent", + "actor": { + "id": 28238025, + "login": "dekkerglen", + "display_login": "dekkerglen", + "gravatar_id": "", + "url": "https://api.github.com/users/dekkerglen", + "avatar_url": "https://avatars.githubusercontent.com/u/28238025?" + }, + "repo": { + "id": 199488444, + "name": "dekkerglen/CubeCobra", + "url": "https://api.github.com/repos/dekkerglen/CubeCobra" + }, + "payload": { + "push_id": 4176854926, + "size": 4, + "distinct_size": 4, + "ref": "refs/heads/master", + "head": "eb3028813d9f14f92538ada84ae11a73346d9b38", + "before": "a3216a60043f115fa6aa9044250d8a04a3f09bf9", + "commits": [ + { + "sha": "9f351e9f0a43982b8ca4a93c73f5cf540d99487d", + "author": { + "email": "andrewbayer2016@u.northwestern.edu", + "name": "anderoonies" + }, + "message": "asynchronously fetch tcgplayer data when card version changes in CardModal", + "distinct": true, + "url": "https://api.github.com/repos/dekkerglen/CubeCobra/commits/9f351e9f0a43982b8ca4a93c73f5cf540d99487d" + }, + { + "sha": "8f3bbc4dd47af159bba2a8934f368ac76a767ff1", + "author": { + "email": "andrewbayer2016@u.northwestern.edu", + "name": "anderoonies" + }, + "message": "get price data in getversions/:id to pass to cardmodalform rather than querying on version change", + "distinct": true, + "url": "https://api.github.com/repos/dekkerglen/CubeCobra/commits/8f3bbc4dd47af159bba2a8934f368ac76a767ff1" + }, + { + "sha": "62f262d63ddea88e2269a30c3ea7a31f2c8cd8db", + "author": { + "email": "andrewbayer2016@u.northwestern.edu", + "name": "anderoonies" + }, + "message": "use carddb.allIds for version lookup", + "distinct": true, + "url": "https://api.github.com/repos/dekkerglen/CubeCobra/commits/62f262d63ddea88e2269a30c3ea7a31f2c8cd8db" + }, + { + "sha": "eb3028813d9f14f92538ada84ae11a73346d9b38", + "author": { + "email": "dekker.glen@gmail.com", + "name": "dekkerglen" + }, + "message": "Merge pull request #608 from anderoonies/reload-price-in-card-modal-on-version-change\n\nFetch price data for all card versions to display in CardModal", + "distinct": true, + "url": "https://api.github.com/repos/dekkerglen/CubeCobra/commits/eb3028813d9f14f92538ada84ae11a73346d9b38" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:49Z" + }, + { + "id": "10680625059", + "type": "PushEvent", + "actor": { + "id": 53795474, + "login": "BradenDykstra", + "display_login": "BradenDykstra", + "gravatar_id": "", + "url": "https://api.github.com/users/BradenDykstra", + "avatar_url": "https://avatars.githubusercontent.com/u/53795474?" + }, + "repo": { + "id": 216074273, + "name": "BradenDykstra/Keepr-2", + "url": "https://api.github.com/repos/BradenDykstra/Keepr-2" + }, + "payload": { + "push_id": 4176854925, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "18fa79ff8011eb750fe61fba8e6c0a344be69f1c", + "before": "5579db424d40f8b4dfd8cb0338ae87bd2123e858", + "commits": [ + { + "sha": "18fa79ff8011eb750fe61fba8e6c0a344be69f1c", + "author": { + "email": "Toastie285@gmail.com", + "name": "Braden Dykstra" + }, + "message": "user can view own keeps", + "distinct": true, + "url": "https://api.github.com/repos/BradenDykstra/Keepr-2/commits/18fa79ff8011eb750fe61fba8e6c0a344be69f1c" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:49Z" + }, + { + "id": "10680625060", + "type": "PullRequestEvent", + "actor": { + "id": 54124593, + "login": "jthielman", + "display_login": "jthielman", + "gravatar_id": "", + "url": "https://api.github.com/users/jthielman", + "avatar_url": "https://avatars.githubusercontent.com/u/54124593?" + }, + "repo": { + "id": 214669120, + "name": "jthielman/solar-system", + "url": "https://api.github.com/repos/jthielman/solar-system" + }, + "payload": { + "action": "opened", + "number": 13, + "pull_request": { + "url": "https://api.github.com/repos/jthielman/solar-system/pulls/13", + "id": 330711278, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzMwNzExMjc4", + "html_url": "https://github.com/jthielman/solar-system/pull/13", + "diff_url": "https://github.com/jthielman/solar-system/pull/13.diff", + "patch_url": "https://github.com/jthielman/solar-system/pull/13.patch", + "issue_url": "https://api.github.com/repos/jthielman/solar-system/issues/13", + "number": 13, + "state": "open", + "locked": false, + "title": "clicking X returns to main view", + "user": { + "login": "jthielman", + "id": 54124593, + "node_id": "MDQ6VXNlcjU0MTI0NTkz", + "avatar_url": "https://avatars3.githubusercontent.com/u/54124593?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jthielman", + "html_url": "https://github.com/jthielman", + "followers_url": "https://api.github.com/users/jthielman/followers", + "following_url": "https://api.github.com/users/jthielman/following{/other_user}", + "gists_url": "https://api.github.com/users/jthielman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jthielman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jthielman/subscriptions", + "organizations_url": "https://api.github.com/users/jthielman/orgs", + "repos_url": "https://api.github.com/users/jthielman/repos", + "events_url": "https://api.github.com/users/jthielman/events{/privacy}", + "received_events_url": "https://api.github.com/users/jthielman/received_events", + "type": "User", + "site_admin": false + }, + "body": "like it says on the tin.", + "created_at": "2019-10-21T21:54:48Z", + "updated_at": "2019-10-21T21:54:48Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/jthielman/solar-system/pulls/13/commits", + "review_comments_url": "https://api.github.com/repos/jthielman/solar-system/pulls/13/comments", + "review_comment_url": "https://api.github.com/repos/jthielman/solar-system/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/jthielman/solar-system/issues/13/comments", + "statuses_url": "https://api.github.com/repos/jthielman/solar-system/statuses/cc75e5a933371f06d850fec15edf0a2f2f6a0506", + "head": { + "label": "jthielman:jt-clickX", + "ref": "jt-clickX", + "sha": "cc75e5a933371f06d850fec15edf0a2f2f6a0506", + "user": { + "login": "jthielman", + "id": 54124593, + "node_id": "MDQ6VXNlcjU0MTI0NTkz", + "avatar_url": "https://avatars3.githubusercontent.com/u/54124593?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jthielman", + "html_url": "https://github.com/jthielman", + "followers_url": "https://api.github.com/users/jthielman/followers", + "following_url": "https://api.github.com/users/jthielman/following{/other_user}", + "gists_url": "https://api.github.com/users/jthielman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jthielman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jthielman/subscriptions", + "organizations_url": "https://api.github.com/users/jthielman/orgs", + "repos_url": "https://api.github.com/users/jthielman/repos", + "events_url": "https://api.github.com/users/jthielman/events{/privacy}", + "received_events_url": "https://api.github.com/users/jthielman/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 214669120, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTQ2NjkxMjA=", + "name": "solar-system", + "full_name": "jthielman/solar-system", + "private": false, + "owner": { + "login": "jthielman", + "id": 54124593, + "node_id": "MDQ6VXNlcjU0MTI0NTkz", + "avatar_url": "https://avatars3.githubusercontent.com/u/54124593?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jthielman", + "html_url": "https://github.com/jthielman", + "followers_url": "https://api.github.com/users/jthielman/followers", + "following_url": "https://api.github.com/users/jthielman/following{/other_user}", + "gists_url": "https://api.github.com/users/jthielman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jthielman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jthielman/subscriptions", + "organizations_url": "https://api.github.com/users/jthielman/orgs", + "repos_url": "https://api.github.com/users/jthielman/repos", + "events_url": "https://api.github.com/users/jthielman/events{/privacy}", + "received_events_url": "https://api.github.com/users/jthielman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/jthielman/solar-system", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jthielman/solar-system", + "forks_url": "https://api.github.com/repos/jthielman/solar-system/forks", + "keys_url": "https://api.github.com/repos/jthielman/solar-system/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jthielman/solar-system/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jthielman/solar-system/teams", + "hooks_url": "https://api.github.com/repos/jthielman/solar-system/hooks", + "issue_events_url": "https://api.github.com/repos/jthielman/solar-system/issues/events{/number}", + "events_url": "https://api.github.com/repos/jthielman/solar-system/events", + "assignees_url": "https://api.github.com/repos/jthielman/solar-system/assignees{/user}", + "branches_url": "https://api.github.com/repos/jthielman/solar-system/branches{/branch}", + "tags_url": "https://api.github.com/repos/jthielman/solar-system/tags", + "blobs_url": "https://api.github.com/repos/jthielman/solar-system/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jthielman/solar-system/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jthielman/solar-system/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jthielman/solar-system/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jthielman/solar-system/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jthielman/solar-system/languages", + "stargazers_url": "https://api.github.com/repos/jthielman/solar-system/stargazers", + "contributors_url": "https://api.github.com/repos/jthielman/solar-system/contributors", + "subscribers_url": "https://api.github.com/repos/jthielman/solar-system/subscribers", + "subscription_url": "https://api.github.com/repos/jthielman/solar-system/subscription", + "commits_url": "https://api.github.com/repos/jthielman/solar-system/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jthielman/solar-system/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jthielman/solar-system/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jthielman/solar-system/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jthielman/solar-system/contents/{+path}", + "compare_url": "https://api.github.com/repos/jthielman/solar-system/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jthielman/solar-system/merges", + "archive_url": "https://api.github.com/repos/jthielman/solar-system/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jthielman/solar-system/downloads", + "issues_url": "https://api.github.com/repos/jthielman/solar-system/issues{/number}", + "pulls_url": "https://api.github.com/repos/jthielman/solar-system/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jthielman/solar-system/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jthielman/solar-system/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jthielman/solar-system/labels{/name}", + "releases_url": "https://api.github.com/repos/jthielman/solar-system/releases{/id}", + "deployments_url": "https://api.github.com/repos/jthielman/solar-system/deployments", + "created_at": "2019-10-12T15:22:16Z", + "updated_at": "2019-10-21T21:12:38Z", + "pushed_at": "2019-10-21T21:54:23Z", + "git_url": "git://github.com/jthielman/solar-system.git", + "ssh_url": "git@github.com:jthielman/solar-system.git", + "clone_url": "https://github.com/jthielman/solar-system.git", + "svn_url": "https://github.com/jthielman/solar-system", + "homepage": null, + "size": 11, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": null, + "forks": 0, + "open_issues": 3, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "jthielman:master", + "ref": "master", + "sha": "6564f42f20577d964ee9f8c007a961ccd81e8aae", + "user": { + "login": "jthielman", + "id": 54124593, + "node_id": "MDQ6VXNlcjU0MTI0NTkz", + "avatar_url": "https://avatars3.githubusercontent.com/u/54124593?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jthielman", + "html_url": "https://github.com/jthielman", + "followers_url": "https://api.github.com/users/jthielman/followers", + "following_url": "https://api.github.com/users/jthielman/following{/other_user}", + "gists_url": "https://api.github.com/users/jthielman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jthielman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jthielman/subscriptions", + "organizations_url": "https://api.github.com/users/jthielman/orgs", + "repos_url": "https://api.github.com/users/jthielman/repos", + "events_url": "https://api.github.com/users/jthielman/events{/privacy}", + "received_events_url": "https://api.github.com/users/jthielman/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 214669120, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTQ2NjkxMjA=", + "name": "solar-system", + "full_name": "jthielman/solar-system", + "private": false, + "owner": { + "login": "jthielman", + "id": 54124593, + "node_id": "MDQ6VXNlcjU0MTI0NTkz", + "avatar_url": "https://avatars3.githubusercontent.com/u/54124593?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jthielman", + "html_url": "https://github.com/jthielman", + "followers_url": "https://api.github.com/users/jthielman/followers", + "following_url": "https://api.github.com/users/jthielman/following{/other_user}", + "gists_url": "https://api.github.com/users/jthielman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jthielman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jthielman/subscriptions", + "organizations_url": "https://api.github.com/users/jthielman/orgs", + "repos_url": "https://api.github.com/users/jthielman/repos", + "events_url": "https://api.github.com/users/jthielman/events{/privacy}", + "received_events_url": "https://api.github.com/users/jthielman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/jthielman/solar-system", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jthielman/solar-system", + "forks_url": "https://api.github.com/repos/jthielman/solar-system/forks", + "keys_url": "https://api.github.com/repos/jthielman/solar-system/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jthielman/solar-system/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jthielman/solar-system/teams", + "hooks_url": "https://api.github.com/repos/jthielman/solar-system/hooks", + "issue_events_url": "https://api.github.com/repos/jthielman/solar-system/issues/events{/number}", + "events_url": "https://api.github.com/repos/jthielman/solar-system/events", + "assignees_url": "https://api.github.com/repos/jthielman/solar-system/assignees{/user}", + "branches_url": "https://api.github.com/repos/jthielman/solar-system/branches{/branch}", + "tags_url": "https://api.github.com/repos/jthielman/solar-system/tags", + "blobs_url": "https://api.github.com/repos/jthielman/solar-system/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jthielman/solar-system/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jthielman/solar-system/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jthielman/solar-system/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jthielman/solar-system/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jthielman/solar-system/languages", + "stargazers_url": "https://api.github.com/repos/jthielman/solar-system/stargazers", + "contributors_url": "https://api.github.com/repos/jthielman/solar-system/contributors", + "subscribers_url": "https://api.github.com/repos/jthielman/solar-system/subscribers", + "subscription_url": "https://api.github.com/repos/jthielman/solar-system/subscription", + "commits_url": "https://api.github.com/repos/jthielman/solar-system/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jthielman/solar-system/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jthielman/solar-system/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jthielman/solar-system/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jthielman/solar-system/contents/{+path}", + "compare_url": "https://api.github.com/repos/jthielman/solar-system/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jthielman/solar-system/merges", + "archive_url": "https://api.github.com/repos/jthielman/solar-system/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jthielman/solar-system/downloads", + "issues_url": "https://api.github.com/repos/jthielman/solar-system/issues{/number}", + "pulls_url": "https://api.github.com/repos/jthielman/solar-system/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jthielman/solar-system/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jthielman/solar-system/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jthielman/solar-system/labels{/name}", + "releases_url": "https://api.github.com/repos/jthielman/solar-system/releases{/id}", + "deployments_url": "https://api.github.com/repos/jthielman/solar-system/deployments", + "created_at": "2019-10-12T15:22:16Z", + "updated_at": "2019-10-21T21:12:38Z", + "pushed_at": "2019-10-21T21:54:23Z", + "git_url": "git://github.com/jthielman/solar-system.git", + "ssh_url": "git@github.com:jthielman/solar-system.git", + "clone_url": "https://github.com/jthielman/solar-system.git", + "svn_url": "https://github.com/jthielman/solar-system", + "homepage": null, + "size": 11, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": null, + "forks": 0, + "open_issues": 3, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/jthielman/solar-system/pulls/13" + }, + "html": { + "href": "https://github.com/jthielman/solar-system/pull/13" + }, + "issue": { + "href": "https://api.github.com/repos/jthielman/solar-system/issues/13" + }, + "comments": { + "href": "https://api.github.com/repos/jthielman/solar-system/issues/13/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/jthielman/solar-system/pulls/13/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/jthielman/solar-system/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/jthielman/solar-system/pulls/13/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/jthielman/solar-system/statuses/cc75e5a933371f06d850fec15edf0a2f2f6a0506" + } + }, + "author_association": "OWNER", + "merged": false, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 28, + "deletions": 6, + "changed_files": 6 + } + }, + "public": true, + "created_at": "2019-10-21T21:54:49Z" + }, + { + "id": "10680625052", + "type": "PushEvent", + "actor": { + "id": 4157996, + "login": "esellors", + "display_login": "esellors", + "gravatar_id": "", + "url": "https://api.github.com/users/esellors", + "avatar_url": "https://avatars.githubusercontent.com/u/4157996?" + }, + "repo": { + "id": 216093525, + "name": "dm-group-trakd/trakd", + "url": "https://api.github.com/repos/dm-group-trakd/trakd" + }, + "payload": { + "push_id": 4176854920, + "size": 8, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "56d21eeee46fd18ad1a3ada1ddc0dde40ee148fd", + "before": "4586bdd4aba94009ee60a2d01710f50493f60fd7", + "commits": [ + { + "sha": "6f4067870101c572e51d819146261deab1858a6c", + "author": { + "email": "jensenjamison@yahoo.com", + "name": "unknown" + }, + "message": "done for friday", + "distinct": false, + "url": "https://api.github.com/repos/dm-group-trakd/trakd/commits/6f4067870101c572e51d819146261deab1858a6c" + }, + { + "sha": "3b07c020146eb44e0b73abd21d66f7b7ba6d1d79", + "author": { + "email": "jensenjamison@yahoo.com", + "name": "unknown" + }, + "message": "updating to master", + "distinct": false, + "url": "https://api.github.com/repos/dm-group-trakd/trakd/commits/3b07c020146eb44e0b73abd21d66f7b7ba6d1d79" + }, + { + "sha": "3b7f5f90fef58384093632f3518ef0355c38fa39", + "author": { + "email": "jensenjamison@yahoo.com", + "name": "unknown" + }, + "message": "added settings component and styling", + "distinct": false, + "url": "https://api.github.com/repos/dm-group-trakd/trakd/commits/3b7f5f90fef58384093632f3518ef0355c38fa39" + }, + { + "sha": "5e0396f6e73a7359e5d997b98373a5b8f95261f8", + "author": { + "email": "jensenjamison@yahoo.com", + "name": "unknown" + }, + "message": "Merge branch 'master' into jamison", + "distinct": false, + "url": "https://api.github.com/repos/dm-group-trakd/trakd/commits/5e0396f6e73a7359e5d997b98373a5b8f95261f8" + }, + { + "sha": "86f154430e2d2e289dd75359d9f111f72f1cf29e", + "author": { + "email": "jensenjamison@yahoo.com", + "name": "unknown" + }, + "message": "added settings and styled ui", + "distinct": false, + "url": "https://api.github.com/repos/dm-group-trakd/trakd/commits/86f154430e2d2e289dd75359d9f111f72f1cf29e" + }, + { + "sha": "da8b095b65b2aa4dd4538f58a52e498da3b46ba7", + "author": { + "email": "jensenjamison@yahoo.com", + "name": "unknown" + }, + "message": "Merge branch 'master' into jamison", + "distinct": false, + "url": "https://api.github.com/repos/dm-group-trakd/trakd/commits/da8b095b65b2aa4dd4538f58a52e498da3b46ba7" + }, + { + "sha": "66a7bf7d92111a5056813ae964574d48e431b470", + "author": { + "email": "jensenjamison@yahoo.com", + "name": "unknown" + }, + "message": "fixed bug and added methods for updating user settings and goals", + "distinct": false, + "url": "https://api.github.com/repos/dm-group-trakd/trakd/commits/66a7bf7d92111a5056813ae964574d48e431b470" + }, + { + "sha": "56d21eeee46fd18ad1a3ada1ddc0dde40ee148fd", + "author": { + "email": "4157996+esellors@users.noreply.github.com", + "name": "Eric Sellors" + }, + "message": "Merge pull request #18 from dm-group-trakd/jamison\n\nadd settings component include methods for updating user settings and goals, fixed bug with user reducer", + "distinct": true, + "url": "https://api.github.com/repos/dm-group-trakd/trakd/commits/56d21eeee46fd18ad1a3ada1ddc0dde40ee148fd" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:49Z", + "org": { + "id": 56691813, + "login": "dm-group-trakd", + "gravatar_id": "", + "url": "https://api.github.com/orgs/dm-group-trakd", + "avatar_url": "https://avatars.githubusercontent.com/u/56691813?" + } + }, + { + "id": "10680625053", + "type": "PushEvent", + "actor": { + "id": 51011840, + "login": "othhotro", + "display_login": "othhotro", + "gravatar_id": "", + "url": "https://api.github.com/users/othhotro", + "avatar_url": "https://avatars.githubusercontent.com/u/51011840?" + }, + "repo": { + "id": 201879384, + "name": "othhotro/Roo.Exe", + "url": "https://api.github.com/repos/othhotro/Roo.Exe" + }, + "payload": { + "push_id": 4176854918, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "15016ceee06af3047744c7bac173ebc162c2b3ac", + "before": "908784246be05f222167f3f463e1423885f54ac5", + "commits": [ + { + "sha": "15016ceee06af3047744c7bac173ebc162c2b3ac", + "author": { + "email": "oth.hotro@gmail.com", + "name": "oth.hotro@gmail.com" + }, + "message": "Lần chạy [2019-10-22 04-53]:Lần thứ 50", + "distinct": true, + "url": "https://api.github.com/repos/othhotro/Roo.Exe/commits/15016ceee06af3047744c7bac173ebc162c2b3ac" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:49Z" + }, + { + "id": "10680625055", + "type": "ForkEvent", + "actor": { + "id": 18275928, + "login": "nguyens7", + "display_login": "nguyens7", + "gravatar_id": "", + "url": "https://api.github.com/users/nguyens7", + "avatar_url": "https://avatars.githubusercontent.com/u/18275928?" + }, + "repo": { + "id": 216604352, + "name": "rladies-eastlansing/2019-workshop-dataviz", + "url": "https://api.github.com/repos/rladies-eastlansing/2019-workshop-dataviz" + }, + "payload": { + "forkee": { + "id": 216672336, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTY2NzIzMzY=", + "name": "2019-workshop-dataviz", + "full_name": "nguyens7/2019-workshop-dataviz", + "private": false, + "owner": { + "login": "nguyens7", + "id": 18275928, + "node_id": "MDQ6VXNlcjE4Mjc1OTI4", + "avatar_url": "https://avatars3.githubusercontent.com/u/18275928?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nguyens7", + "html_url": "https://github.com/nguyens7", + "followers_url": "https://api.github.com/users/nguyens7/followers", + "following_url": "https://api.github.com/users/nguyens7/following{/other_user}", + "gists_url": "https://api.github.com/users/nguyens7/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nguyens7/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nguyens7/subscriptions", + "organizations_url": "https://api.github.com/users/nguyens7/orgs", + "repos_url": "https://api.github.com/users/nguyens7/repos", + "events_url": "https://api.github.com/users/nguyens7/events{/privacy}", + "received_events_url": "https://api.github.com/users/nguyens7/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/nguyens7/2019-workshop-dataviz", + "description": "Workshop on Intro to Data Wrangling & Visualization w/ R | Oct 21, 2019 @RLadiesELansing", + "fork": true, + "url": "https://api.github.com/repos/nguyens7/2019-workshop-dataviz", + "forks_url": "https://api.github.com/repos/nguyens7/2019-workshop-dataviz/forks", + "keys_url": "https://api.github.com/repos/nguyens7/2019-workshop-dataviz/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/nguyens7/2019-workshop-dataviz/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/nguyens7/2019-workshop-dataviz/teams", + "hooks_url": "https://api.github.com/repos/nguyens7/2019-workshop-dataviz/hooks", + "issue_events_url": "https://api.github.com/repos/nguyens7/2019-workshop-dataviz/issues/events{/number}", + "events_url": "https://api.github.com/repos/nguyens7/2019-workshop-dataviz/events", + "assignees_url": "https://api.github.com/repos/nguyens7/2019-workshop-dataviz/assignees{/user}", + "branches_url": "https://api.github.com/repos/nguyens7/2019-workshop-dataviz/branches{/branch}", + "tags_url": "https://api.github.com/repos/nguyens7/2019-workshop-dataviz/tags", + "blobs_url": "https://api.github.com/repos/nguyens7/2019-workshop-dataviz/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/nguyens7/2019-workshop-dataviz/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/nguyens7/2019-workshop-dataviz/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/nguyens7/2019-workshop-dataviz/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/nguyens7/2019-workshop-dataviz/statuses/{sha}", + "languages_url": "https://api.github.com/repos/nguyens7/2019-workshop-dataviz/languages", + "stargazers_url": "https://api.github.com/repos/nguyens7/2019-workshop-dataviz/stargazers", + "contributors_url": "https://api.github.com/repos/nguyens7/2019-workshop-dataviz/contributors", + "subscribers_url": "https://api.github.com/repos/nguyens7/2019-workshop-dataviz/subscribers", + "subscription_url": "https://api.github.com/repos/nguyens7/2019-workshop-dataviz/subscription", + "commits_url": "https://api.github.com/repos/nguyens7/2019-workshop-dataviz/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/nguyens7/2019-workshop-dataviz/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/nguyens7/2019-workshop-dataviz/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/nguyens7/2019-workshop-dataviz/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/nguyens7/2019-workshop-dataviz/contents/{+path}", + "compare_url": "https://api.github.com/repos/nguyens7/2019-workshop-dataviz/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/nguyens7/2019-workshop-dataviz/merges", + "archive_url": "https://api.github.com/repos/nguyens7/2019-workshop-dataviz/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/nguyens7/2019-workshop-dataviz/downloads", + "issues_url": "https://api.github.com/repos/nguyens7/2019-workshop-dataviz/issues{/number}", + "pulls_url": "https://api.github.com/repos/nguyens7/2019-workshop-dataviz/pulls{/number}", + "milestones_url": "https://api.github.com/repos/nguyens7/2019-workshop-dataviz/milestones{/number}", + "notifications_url": "https://api.github.com/repos/nguyens7/2019-workshop-dataviz/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/nguyens7/2019-workshop-dataviz/labels{/name}", + "releases_url": "https://api.github.com/repos/nguyens7/2019-workshop-dataviz/releases{/id}", + "deployments_url": "https://api.github.com/repos/nguyens7/2019-workshop-dataviz/deployments", + "created_at": "2019-10-21T21:54:48Z", + "updated_at": "2019-10-21T16:30:28Z", + "pushed_at": "2019-10-21T16:30:26Z", + "git_url": "git://github.com/nguyens7/2019-workshop-dataviz.git", + "ssh_url": "git@github.com:nguyens7/2019-workshop-dataviz.git", + "clone_url": "https://github.com/nguyens7/2019-workshop-dataviz.git", + "svn_url": "https://github.com/nguyens7/2019-workshop-dataviz", + "homepage": null, + "size": 4295, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "public": true + } + }, + "public": true, + "created_at": "2019-10-21T21:54:49Z", + "org": { + "id": 40669648, + "login": "rladies-eastlansing", + "gravatar_id": "", + "url": "https://api.github.com/orgs/rladies-eastlansing", + "avatar_url": "https://avatars.githubusercontent.com/u/40669648?" + } + }, + { + "id": "10680625040", + "type": "PushEvent", + "actor": { + "id": 6563840, + "login": "sarenameas", + "display_login": "sarenameas", + "gravatar_id": "", + "url": "https://api.github.com/users/sarenameas", + "avatar_url": "https://avatars.githubusercontent.com/u/6563840?" + }, + "repo": { + "id": 209374154, + "name": "sarenameas/amazon-freertos", + "url": "https://api.github.com/repos/sarenameas/amazon-freertos" + }, + "payload": { + "push_id": 4176854912, + "size": 13, + "distinct_size": 2, + "ref": "refs/heads/doc_sync", + "head": "5bcb4369caf445565588af8e8f6ab1a2959c6d35", + "before": "9a312b05863eeeeb6acadf0b56cf9dd6374a9ec2", + "commits": [ + { + "sha": "c77bbcbd208a55b7cbf9a2d9af1b5256628a9349", + "author": { + "email": "ts.whu@outlook.com", + "name": "Tiangang Song" + }, + "message": "Allow demos to be turned off in CMake", + "distinct": false, + "url": "https://api.github.com/repos/sarenameas/amazon-freertos/commits/c77bbcbd208a55b7cbf9a2d9af1b5256628a9349" + }, + { + "sha": "8b0125429a166ff0057e0ac99f19c425c5198e8f", + "author": { + "email": "ts.whu@outlook.com", + "name": "Tiangang Song" + }, + "message": "Extend turning off demo support to all boards", + "distinct": false, + "url": "https://api.github.com/repos/sarenameas/amazon-freertos/commits/8b0125429a166ff0057e0ac99f19c425c5198e8f" + }, + { + "sha": "e89a7ea8b4cf9445c593fb20851433ac6c2b6f05", + "author": { + "email": "ts.whu@outlook.com", + "name": "Tiangang Song" + }, + "message": "Fix AFR_ENABLE_DEMOS in CMake GUI", + "distinct": false, + "url": "https://api.github.com/repos/sarenameas/amazon-freertos/commits/e89a7ea8b4cf9445c593fb20851433ac6c2b6f05" + }, + { + "sha": "c58281840008401cb16961f9d60f37ea0bf4e907", + "author": { + "email": "qiutongs@amazon.com", + "name": "qiutongs" + }, + "message": "Merge branch 'master' into feature/cmake_turn_off_demos", + "distinct": false, + "url": "https://api.github.com/repos/sarenameas/amazon-freertos/commits/c58281840008401cb16961f9d60f37ea0bf4e907" + }, + { + "sha": "33dbda4fdfd6468eae94b0c433be4268bce6a07b", + "author": { + "email": "qiutongs@amazon.com", + "name": "qiutongs" + }, + "message": "Remove duplicate commands in Nordic cmake", + "distinct": false, + "url": "https://api.github.com/repos/sarenameas/amazon-freertos/commits/33dbda4fdfd6468eae94b0c433be4268bce6a07b" + }, + { + "sha": "f3549a7bc850fb2d849f8f1da84c82c895b5d63d", + "author": { + "email": "ts.whu@outlook.com", + "name": "Tiangang Song" + }, + "message": "Turn off demos in cmake when we're not at top level", + "distinct": false, + "url": "https://api.github.com/repos/sarenameas/amazon-freertos/commits/f3549a7bc850fb2d849f8f1da84c82c895b5d63d" + }, + { + "sha": "6c86b095ff62516dbb62466aa3ac258dd81d3f76", + "author": { + "email": "ts.whu@outlook.com", + "name": "Tiangang Song" + }, + "message": "Fix nordic cmake file", + "distinct": false, + "url": "https://api.github.com/repos/sarenameas/amazon-freertos/commits/6c86b095ff62516dbb62466aa3ac258dd81d3f76" + }, + { + "sha": "1de9a4d51c9d0bccef2f7b5550cc6086ce9525a3", + "author": { + "email": "ts.whu@outlook.com", + "name": "Tiangang Song" + }, + "message": "Merge remote-tracking branch 'origin/master' into HEAD", + "distinct": false, + "url": "https://api.github.com/repos/sarenameas/amazon-freertos/commits/1de9a4d51c9d0bccef2f7b5550cc6086ce9525a3" + }, + { + "sha": "390618c93c0be2c96059a865610c326a96de1e47", + "author": { + "email": "ts.whu@outlook.com", + "name": "Tiangang Song" + }, + "message": "Merge pull request #1161 from aws/feature/cmake_turn_off_demos\n\nAllow demos to be turned off in CMake", + "distinct": false, + "url": "https://api.github.com/repos/sarenameas/amazon-freertos/commits/390618c93c0be2c96059a865610c326a96de1e47" + }, + { + "sha": "b3ddf96a5ff6f1d254c646473feb1bc5c0bf2724", + "author": { + "email": "33439348+alexa-noxon@users.noreply.github.com", + "name": "alexa@aws" + }, + "message": "Add test that private keys are not extractable (#1434)\n\n* Add test that private keys are not extract-able", + "distinct": false, + "url": "https://api.github.com/repos/sarenameas/amazon-freertos/commits/b3ddf96a5ff6f1d254c646473feb1bc5c0bf2724" + }, + { + "sha": "a003c65980c91f141a513ee2ea4b67a0160ce026", + "author": { + "email": "bhagavar@amazon.com", + "name": "Ravishankar Bhagavandas" + }, + "message": "Add bootloader project to Nordic CMake (#1438)\n\n* Adding cmake for nordic bootloader\r\n\r\n* Separate wifi provisioning tests from ble tests\r\n\r\n* Look for correct objcopy file", + "distinct": false, + "url": "https://api.github.com/repos/sarenameas/amazon-freertos/commits/a003c65980c91f141a513ee2ea4b67a0160ce026" + }, + { + "sha": "24280adc2b975e2d3ddafd3530070cfc9ebaf0d0", + "author": { + "email": "sarem@amazon.com", + "name": "Sarena Meas" + }, + "message": "Update doc/README.md for correct CSDK api ref link.", + "distinct": true, + "url": "https://api.github.com/repos/sarenameas/amazon-freertos/commits/24280adc2b975e2d3ddafd3530070cfc9ebaf0d0" + }, + { + "sha": "5bcb4369caf445565588af8e8f6ab1a2959c6d35", + "author": { + "email": "sarem@amazon.com", + "name": "Sarena Meas" + }, + "message": "Synchronize the doxygen content of the platform layer in AFR to CSDK.", + "distinct": true, + "url": "https://api.github.com/repos/sarenameas/amazon-freertos/commits/5bcb4369caf445565588af8e8f6ab1a2959c6d35" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:49Z" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/__files/events-3894ddd2-ac57-4592-bc01-9e5d7f93ef6e.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/__files/events-3894ddd2-ac57-4592-bc01-9e5d7f93ef6e.json new file mode 100644 index 0000000000..986493202b --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/__files/events-3894ddd2-ac57-4592-bc01-9e5d7f93ef6e.json @@ -0,0 +1,4044 @@ +[ + { + "id": "10680625011", + "type": "CreateEvent", + "actor": { + "id": 10810283, + "login": "direwolf-github", + "display_login": "direwolf-github", + "gravatar_id": "", + "url": "https://api.github.com/users/direwolf-github", + "avatar_url": "https://avatars.githubusercontent.com/u/10810283?" + }, + "repo": { + "id": 183051410, + "name": "direwolf-github/my-app", + "url": "https://api.github.com/repos/direwolf-github/my-app" + }, + "payload": { + "ref": "branch-8855a329", + "ref_type": "branch", + "master_branch": "master", + "description": null, + "pusher_type": "user" + }, + "public": true, + "created_at": "2019-10-21T21:54:48Z" + }, + { + "id": "10680625005", + "type": "PushEvent", + "actor": { + "id": 53705924, + "login": "neverFeltAlive", + "display_login": "neverFeltAlive", + "gravatar_id": "", + "url": "https://api.github.com/users/neverFeltAlive", + "avatar_url": "https://avatars.githubusercontent.com/u/53705924?" + }, + "repo": { + "id": 210054233, + "name": "neverFeltAlive/adventuregame", + "url": "https://api.github.com/repos/neverFeltAlive/adventuregame" + }, + "payload": { + "push_id": 4176854894, + "size": 11, + "distinct_size": 11, + "ref": "refs/heads/utility", + "head": "0299f784f89666bd514bf8965a2f8273eddd95dd", + "before": "baa480d987e4b620683dcfc62a6a172187497cd3", + "commits": [ + { + "sha": "6c51472390ccd2f9f33c0bd8decc63e93fbc2d38", + "author": { + "email": "20This.Is.My.Mail00@protonmail.com", + "name": "NeverFeltAlive" + }, + "message": "<--- automatic commit --->", + "distinct": true, + "url": "https://api.github.com/repos/neverFeltAlive/adventuregame/commits/6c51472390ccd2f9f33c0bd8decc63e93fbc2d38" + }, + { + "sha": "5a3a20929bce83057c72822c2e65e0204f77bd81", + "author": { + "email": "20This.Is.My.Mail00@protonmail.com", + "name": "NeverFeltAlive" + }, + "message": "<--- automatic commit --->", + "distinct": true, + "url": "https://api.github.com/repos/neverFeltAlive/adventuregame/commits/5a3a20929bce83057c72822c2e65e0204f77bd81" + }, + { + "sha": "1d49a2c5430e1516ac1f89655d77ca0ff926c95a", + "author": { + "email": "20This.Is.My.Mail00@protonmail.com", + "name": "NeverFeltAlive" + }, + "message": "<--- automatic commit --->", + "distinct": true, + "url": "https://api.github.com/repos/neverFeltAlive/adventuregame/commits/1d49a2c5430e1516ac1f89655d77ca0ff926c95a" + }, + { + "sha": "7bc714a218ac397c95bc93c1725beb8410373af2", + "author": { + "email": "20This.Is.My.Mail00@protonmail.com", + "name": "NeverFeltAlive" + }, + "message": "<--- automatic commit --->", + "distinct": true, + "url": "https://api.github.com/repos/neverFeltAlive/adventuregame/commits/7bc714a218ac397c95bc93c1725beb8410373af2" + }, + { + "sha": "ec3f34bb293937b501cf850192d0427aaa290899", + "author": { + "email": "20This.Is.My.Mail00@protonmail.com", + "name": "NeverFeltAlive" + }, + "message": "<--- automatic commit --->", + "distinct": true, + "url": "https://api.github.com/repos/neverFeltAlive/adventuregame/commits/ec3f34bb293937b501cf850192d0427aaa290899" + }, + { + "sha": "2e5e0084a77c62bc5f490dfe443977b433f64c0a", + "author": { + "email": "20This.Is.My.Mail00@protonmail.com", + "name": "NeverFeltAlive" + }, + "message": "<--- automatic commit --->", + "distinct": true, + "url": "https://api.github.com/repos/neverFeltAlive/adventuregame/commits/2e5e0084a77c62bc5f490dfe443977b433f64c0a" + }, + { + "sha": "681dd9d1bc1bd01f928bbe997265e845b06310e5", + "author": { + "email": "20This.Is.My.Mail00@protonmail.com", + "name": "NeverFeltAlive" + }, + "message": "<--- automatic commit --->", + "distinct": true, + "url": "https://api.github.com/repos/neverFeltAlive/adventuregame/commits/681dd9d1bc1bd01f928bbe997265e845b06310e5" + }, + { + "sha": "7267ab1cd26ae3f7e6e1dd6b51b55d89c3ac3866", + "author": { + "email": "20This.Is.My.Mail00@protonmail.com", + "name": "NeverFeltAlive" + }, + "message": "<--- automatic commit --->", + "distinct": true, + "url": "https://api.github.com/repos/neverFeltAlive/adventuregame/commits/7267ab1cd26ae3f7e6e1dd6b51b55d89c3ac3866" + }, + { + "sha": "0d40f6e59623457cd4d68ad80f75d3b20a89527f", + "author": { + "email": "20This.Is.My.Mail00@protonmail.com", + "name": "NeverFeltAlive" + }, + "message": "<--- automatic commit --->", + "distinct": true, + "url": "https://api.github.com/repos/neverFeltAlive/adventuregame/commits/0d40f6e59623457cd4d68ad80f75d3b20a89527f" + }, + { + "sha": "5c5d9d3ff083981b139cd5da851650003bfd638d", + "author": { + "email": "20This.Is.My.Mail00@protonmail.com", + "name": "NeverFeltAlive" + }, + "message": "<--- automatic commit --->", + "distinct": true, + "url": "https://api.github.com/repos/neverFeltAlive/adventuregame/commits/5c5d9d3ff083981b139cd5da851650003bfd638d" + }, + { + "sha": "0299f784f89666bd514bf8965a2f8273eddd95dd", + "author": { + "email": "20This.Is.My.Mail00@protonmail.com", + "name": "NeverFeltAlive" + }, + "message": "<--- automatic commit --->", + "distinct": true, + "url": "https://api.github.com/repos/neverFeltAlive/adventuregame/commits/0299f784f89666bd514bf8965a2f8273eddd95dd" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:48Z" + }, + { + "id": "10680625001", + "type": "PushEvent", + "actor": { + "id": 33554436, + "login": "SolomonRFeldman", + "display_login": "SolomonRFeldman", + "gravatar_id": "", + "url": "https://api.github.com/users/SolomonRFeldman", + "avatar_url": "https://avatars.githubusercontent.com/u/33554436?" + }, + "repo": { + "id": 216669660, + "name": "SolomonRFeldman/js-data-structures-objects-lab-online-web-sp-000", + "url": "https://api.github.com/repos/SolomonRFeldman/js-data-structures-objects-lab-online-web-sp-000" + }, + "payload": { + "push_id": 4176854892, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/wip", + "head": "40c2c544f4291018ef254de9571a239611db7b2c", + "before": "cf00ec1b78c4b67b031faf97698acb4c9e5e3323", + "commits": [ + { + "sha": "40c2c544f4291018ef254de9571a239611db7b2c", + "author": { + "email": "solomonrfeldman@gmail.com", + "name": "Solomon Feldman" + }, + "message": "Automatically backed up by Learn", + "distinct": true, + "url": "https://api.github.com/repos/SolomonRFeldman/js-data-structures-objects-lab-online-web-sp-000/commits/40c2c544f4291018ef254de9571a239611db7b2c" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:48Z" + }, + { + "id": "10680625000", + "type": "CreateEvent", + "actor": { + "id": 10810283, + "login": "direwolf-github", + "display_login": "direwolf-github", + "gravatar_id": "", + "url": "https://api.github.com/users/direwolf-github", + "avatar_url": "https://avatars.githubusercontent.com/u/10810283?" + }, + "repo": { + "id": 216672323, + "name": "direwolf-github/my-app-f9704ec8", + "url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8" + }, + "payload": { + "ref": "branch-e08f46fa", + "ref_type": "branch", + "master_branch": "master", + "description": null, + "pusher_type": "user" + }, + "public": true, + "created_at": "2019-10-21T21:54:48Z" + }, + { + "id": "10680624994", + "type": "PushEvent", + "actor": { + "id": 49761379, + "login": "aleixmp", + "display_login": "aleixmp", + "gravatar_id": "", + "url": "https://api.github.com/users/aleixmp", + "avatar_url": "https://avatars.githubusercontent.com/u/49761379?" + }, + "repo": { + "id": 215786848, + "name": "aleixmp/mocks-fakes-spies-and-stubs-kata", + "url": "https://api.github.com/repos/aleixmp/mocks-fakes-spies-and-stubs-kata" + }, + "payload": { + "push_id": 4176854891, + "size": 2, + "distinct_size": 2, + "ref": "refs/heads/master", + "head": "d3108b1a65697a4d495da409b90c01949487a028", + "before": "b6149875bc527d31618a9e49513966cd52129ada", + "commits": [ + { + "sha": "4d0ded89977c5e8d6353efadc95296f6bcee67d5", + "author": { + "email": "aleixmp@users.noreply.github.com", + "name": "Aleix" + }, + "message": "Added Film", + "distinct": true, + "url": "https://api.github.com/repos/aleixmp/mocks-fakes-spies-and-stubs-kata/commits/4d0ded89977c5e8d6353efadc95296f6bcee67d5" + }, + { + "sha": "d3108b1a65697a4d495da409b90c01949487a028", + "author": { + "email": "aleixmp@users.noreply.github.com", + "name": "Aleix" + }, + "message": "Added javafaker\nCreated FilmRandomGenerator", + "distinct": true, + "url": "https://api.github.com/repos/aleixmp/mocks-fakes-spies-and-stubs-kata/commits/d3108b1a65697a4d495da409b90c01949487a028" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:48Z" + }, + { + "id": "10680624998", + "type": "PullRequestEvent", + "actor": { + "id": 35507083, + "login": "vskliarov", + "display_login": "vskliarov", + "gravatar_id": "", + "url": "https://api.github.com/users/vskliarov", + "avatar_url": "https://avatars.githubusercontent.com/u/35507083?" + }, + "repo": { + "id": 126823047, + "name": "gridu/gridu-jenkins", + "url": "https://api.github.com/repos/gridu/gridu-jenkins" + }, + "payload": { + "action": "opened", + "number": 19, + "pull_request": { + "url": "https://api.github.com/repos/gridu/gridu-jenkins/pulls/19", + "id": 330711274, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzMwNzExMjc0", + "html_url": "https://github.com/gridu/gridu-jenkins/pull/19", + "diff_url": "https://github.com/gridu/gridu-jenkins/pull/19.diff", + "patch_url": "https://github.com/gridu/gridu-jenkins/pull/19.patch", + "issue_url": "https://api.github.com/repos/gridu/gridu-jenkins/issues/19", + "number": 19, + "state": "open", + "locked": false, + "title": "[TST-266] + report business english assessment 4.0", + "user": { + "login": "vskliarov", + "id": 35507083, + "node_id": "MDQ6VXNlcjM1NTA3MDgz", + "avatar_url": "https://avatars2.githubusercontent.com/u/35507083?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vskliarov", + "html_url": "https://github.com/vskliarov", + "followers_url": "https://api.github.com/users/vskliarov/followers", + "following_url": "https://api.github.com/users/vskliarov/following{/other_user}", + "gists_url": "https://api.github.com/users/vskliarov/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vskliarov/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vskliarov/subscriptions", + "organizations_url": "https://api.github.com/users/vskliarov/orgs", + "repos_url": "https://api.github.com/users/vskliarov/repos", + "events_url": "https://api.github.com/users/vskliarov/events{/privacy}", + "received_events_url": "https://api.github.com/users/vskliarov/received_events", + "type": "User", + "site_admin": false + }, + "body": "[TST-266](https://issues.griddynamics.net/browse/TST-266)", + "created_at": "2019-10-21T21:54:48Z", + "updated_at": "2019-10-21T21:54:48Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": { + "login": "vskliarov", + "id": 35507083, + "node_id": "MDQ6VXNlcjM1NTA3MDgz", + "avatar_url": "https://avatars2.githubusercontent.com/u/35507083?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vskliarov", + "html_url": "https://github.com/vskliarov", + "followers_url": "https://api.github.com/users/vskliarov/followers", + "following_url": "https://api.github.com/users/vskliarov/following{/other_user}", + "gists_url": "https://api.github.com/users/vskliarov/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vskliarov/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vskliarov/subscriptions", + "organizations_url": "https://api.github.com/users/vskliarov/orgs", + "repos_url": "https://api.github.com/users/vskliarov/repos", + "events_url": "https://api.github.com/users/vskliarov/events{/privacy}", + "received_events_url": "https://api.github.com/users/vskliarov/received_events", + "type": "User", + "site_admin": false + }, + "assignees": [ + { + "login": "vskliarov", + "id": 35507083, + "node_id": "MDQ6VXNlcjM1NTA3MDgz", + "avatar_url": "https://avatars2.githubusercontent.com/u/35507083?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vskliarov", + "html_url": "https://github.com/vskliarov", + "followers_url": "https://api.github.com/users/vskliarov/followers", + "following_url": "https://api.github.com/users/vskliarov/following{/other_user}", + "gists_url": "https://api.github.com/users/vskliarov/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vskliarov/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vskliarov/subscriptions", + "organizations_url": "https://api.github.com/users/vskliarov/orgs", + "repos_url": "https://api.github.com/users/vskliarov/repos", + "events_url": "https://api.github.com/users/vskliarov/events{/privacy}", + "received_events_url": "https://api.github.com/users/vskliarov/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_reviewers": [ + { + "login": "mariachugunova", + "id": 28981821, + "node_id": "MDQ6VXNlcjI4OTgxODIx", + "avatar_url": "https://avatars2.githubusercontent.com/u/28981821?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mariachugunova", + "html_url": "https://github.com/mariachugunova", + "followers_url": "https://api.github.com/users/mariachugunova/followers", + "following_url": "https://api.github.com/users/mariachugunova/following{/other_user}", + "gists_url": "https://api.github.com/users/mariachugunova/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mariachugunova/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mariachugunova/subscriptions", + "organizations_url": "https://api.github.com/users/mariachugunova/orgs", + "repos_url": "https://api.github.com/users/mariachugunova/repos", + "events_url": "https://api.github.com/users/mariachugunova/events{/privacy}", + "received_events_url": "https://api.github.com/users/mariachugunova/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/gridu/gridu-jenkins/pulls/19/commits", + "review_comments_url": "https://api.github.com/repos/gridu/gridu-jenkins/pulls/19/comments", + "review_comment_url": "https://api.github.com/repos/gridu/gridu-jenkins/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/gridu/gridu-jenkins/issues/19/comments", + "statuses_url": "https://api.github.com/repos/gridu/gridu-jenkins/statuses/98b7257713063fc373d1c044fe55ef574da19507", + "head": { + "label": "gridu:TST-266", + "ref": "TST-266", + "sha": "98b7257713063fc373d1c044fe55ef574da19507", + "user": { + "login": "gridu", + "id": 36301767, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjM2MzAxNzY3", + "avatar_url": "https://avatars1.githubusercontent.com/u/36301767?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/gridu", + "html_url": "https://github.com/gridu", + "followers_url": "https://api.github.com/users/gridu/followers", + "following_url": "https://api.github.com/users/gridu/following{/other_user}", + "gists_url": "https://api.github.com/users/gridu/gists{/gist_id}", + "starred_url": "https://api.github.com/users/gridu/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/gridu/subscriptions", + "organizations_url": "https://api.github.com/users/gridu/orgs", + "repos_url": "https://api.github.com/users/gridu/repos", + "events_url": "https://api.github.com/users/gridu/events{/privacy}", + "received_events_url": "https://api.github.com/users/gridu/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 126823047, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjY4MjMwNDc=", + "name": "gridu-jenkins", + "full_name": "gridu/gridu-jenkins", + "private": false, + "owner": { + "login": "gridu", + "id": 36301767, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjM2MzAxNzY3", + "avatar_url": "https://avatars1.githubusercontent.com/u/36301767?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/gridu", + "html_url": "https://github.com/gridu", + "followers_url": "https://api.github.com/users/gridu/followers", + "following_url": "https://api.github.com/users/gridu/following{/other_user}", + "gists_url": "https://api.github.com/users/gridu/gists{/gist_id}", + "starred_url": "https://api.github.com/users/gridu/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/gridu/subscriptions", + "organizations_url": "https://api.github.com/users/gridu/orgs", + "repos_url": "https://api.github.com/users/gridu/repos", + "events_url": "https://api.github.com/users/gridu/events{/privacy}", + "received_events_url": "https://api.github.com/users/gridu/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/gridu/gridu-jenkins", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/gridu/gridu-jenkins", + "forks_url": "https://api.github.com/repos/gridu/gridu-jenkins/forks", + "keys_url": "https://api.github.com/repos/gridu/gridu-jenkins/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/gridu/gridu-jenkins/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/gridu/gridu-jenkins/teams", + "hooks_url": "https://api.github.com/repos/gridu/gridu-jenkins/hooks", + "issue_events_url": "https://api.github.com/repos/gridu/gridu-jenkins/issues/events{/number}", + "events_url": "https://api.github.com/repos/gridu/gridu-jenkins/events", + "assignees_url": "https://api.github.com/repos/gridu/gridu-jenkins/assignees{/user}", + "branches_url": "https://api.github.com/repos/gridu/gridu-jenkins/branches{/branch}", + "tags_url": "https://api.github.com/repos/gridu/gridu-jenkins/tags", + "blobs_url": "https://api.github.com/repos/gridu/gridu-jenkins/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/gridu/gridu-jenkins/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/gridu/gridu-jenkins/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/gridu/gridu-jenkins/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/gridu/gridu-jenkins/statuses/{sha}", + "languages_url": "https://api.github.com/repos/gridu/gridu-jenkins/languages", + "stargazers_url": "https://api.github.com/repos/gridu/gridu-jenkins/stargazers", + "contributors_url": "https://api.github.com/repos/gridu/gridu-jenkins/contributors", + "subscribers_url": "https://api.github.com/repos/gridu/gridu-jenkins/subscribers", + "subscription_url": "https://api.github.com/repos/gridu/gridu-jenkins/subscription", + "commits_url": "https://api.github.com/repos/gridu/gridu-jenkins/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/gridu/gridu-jenkins/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/gridu/gridu-jenkins/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/gridu/gridu-jenkins/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/gridu/gridu-jenkins/contents/{+path}", + "compare_url": "https://api.github.com/repos/gridu/gridu-jenkins/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/gridu/gridu-jenkins/merges", + "archive_url": "https://api.github.com/repos/gridu/gridu-jenkins/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/gridu/gridu-jenkins/downloads", + "issues_url": "https://api.github.com/repos/gridu/gridu-jenkins/issues{/number}", + "pulls_url": "https://api.github.com/repos/gridu/gridu-jenkins/pulls{/number}", + "milestones_url": "https://api.github.com/repos/gridu/gridu-jenkins/milestones{/number}", + "notifications_url": "https://api.github.com/repos/gridu/gridu-jenkins/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/gridu/gridu-jenkins/labels{/name}", + "releases_url": "https://api.github.com/repos/gridu/gridu-jenkins/releases{/id}", + "deployments_url": "https://api.github.com/repos/gridu/gridu-jenkins/deployments", + "created_at": "2018-03-26T12:08:13Z", + "updated_at": "2019-10-21T18:50:08Z", + "pushed_at": "2019-10-21T21:51:25Z", + "git_url": "git://github.com/gridu/gridu-jenkins.git", + "ssh_url": "git@github.com:gridu/gridu-jenkins.git", + "clone_url": "https://github.com/gridu/gridu-jenkins.git", + "svn_url": "https://github.com/gridu/gridu-jenkins", + "homepage": null, + "size": 133, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Groovy", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "gridu:master", + "ref": "master", + "sha": "b3b4fd9e4a2e1aa505cb9d3b7f019f8431e495da", + "user": { + "login": "gridu", + "id": 36301767, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjM2MzAxNzY3", + "avatar_url": "https://avatars1.githubusercontent.com/u/36301767?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/gridu", + "html_url": "https://github.com/gridu", + "followers_url": "https://api.github.com/users/gridu/followers", + "following_url": "https://api.github.com/users/gridu/following{/other_user}", + "gists_url": "https://api.github.com/users/gridu/gists{/gist_id}", + "starred_url": "https://api.github.com/users/gridu/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/gridu/subscriptions", + "organizations_url": "https://api.github.com/users/gridu/orgs", + "repos_url": "https://api.github.com/users/gridu/repos", + "events_url": "https://api.github.com/users/gridu/events{/privacy}", + "received_events_url": "https://api.github.com/users/gridu/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 126823047, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjY4MjMwNDc=", + "name": "gridu-jenkins", + "full_name": "gridu/gridu-jenkins", + "private": false, + "owner": { + "login": "gridu", + "id": 36301767, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjM2MzAxNzY3", + "avatar_url": "https://avatars1.githubusercontent.com/u/36301767?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/gridu", + "html_url": "https://github.com/gridu", + "followers_url": "https://api.github.com/users/gridu/followers", + "following_url": "https://api.github.com/users/gridu/following{/other_user}", + "gists_url": "https://api.github.com/users/gridu/gists{/gist_id}", + "starred_url": "https://api.github.com/users/gridu/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/gridu/subscriptions", + "organizations_url": "https://api.github.com/users/gridu/orgs", + "repos_url": "https://api.github.com/users/gridu/repos", + "events_url": "https://api.github.com/users/gridu/events{/privacy}", + "received_events_url": "https://api.github.com/users/gridu/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/gridu/gridu-jenkins", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/gridu/gridu-jenkins", + "forks_url": "https://api.github.com/repos/gridu/gridu-jenkins/forks", + "keys_url": "https://api.github.com/repos/gridu/gridu-jenkins/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/gridu/gridu-jenkins/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/gridu/gridu-jenkins/teams", + "hooks_url": "https://api.github.com/repos/gridu/gridu-jenkins/hooks", + "issue_events_url": "https://api.github.com/repos/gridu/gridu-jenkins/issues/events{/number}", + "events_url": "https://api.github.com/repos/gridu/gridu-jenkins/events", + "assignees_url": "https://api.github.com/repos/gridu/gridu-jenkins/assignees{/user}", + "branches_url": "https://api.github.com/repos/gridu/gridu-jenkins/branches{/branch}", + "tags_url": "https://api.github.com/repos/gridu/gridu-jenkins/tags", + "blobs_url": "https://api.github.com/repos/gridu/gridu-jenkins/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/gridu/gridu-jenkins/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/gridu/gridu-jenkins/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/gridu/gridu-jenkins/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/gridu/gridu-jenkins/statuses/{sha}", + "languages_url": "https://api.github.com/repos/gridu/gridu-jenkins/languages", + "stargazers_url": "https://api.github.com/repos/gridu/gridu-jenkins/stargazers", + "contributors_url": "https://api.github.com/repos/gridu/gridu-jenkins/contributors", + "subscribers_url": "https://api.github.com/repos/gridu/gridu-jenkins/subscribers", + "subscription_url": "https://api.github.com/repos/gridu/gridu-jenkins/subscription", + "commits_url": "https://api.github.com/repos/gridu/gridu-jenkins/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/gridu/gridu-jenkins/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/gridu/gridu-jenkins/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/gridu/gridu-jenkins/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/gridu/gridu-jenkins/contents/{+path}", + "compare_url": "https://api.github.com/repos/gridu/gridu-jenkins/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/gridu/gridu-jenkins/merges", + "archive_url": "https://api.github.com/repos/gridu/gridu-jenkins/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/gridu/gridu-jenkins/downloads", + "issues_url": "https://api.github.com/repos/gridu/gridu-jenkins/issues{/number}", + "pulls_url": "https://api.github.com/repos/gridu/gridu-jenkins/pulls{/number}", + "milestones_url": "https://api.github.com/repos/gridu/gridu-jenkins/milestones{/number}", + "notifications_url": "https://api.github.com/repos/gridu/gridu-jenkins/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/gridu/gridu-jenkins/labels{/name}", + "releases_url": "https://api.github.com/repos/gridu/gridu-jenkins/releases{/id}", + "deployments_url": "https://api.github.com/repos/gridu/gridu-jenkins/deployments", + "created_at": "2018-03-26T12:08:13Z", + "updated_at": "2019-10-21T18:50:08Z", + "pushed_at": "2019-10-21T21:51:25Z", + "git_url": "git://github.com/gridu/gridu-jenkins.git", + "ssh_url": "git@github.com:gridu/gridu-jenkins.git", + "clone_url": "https://github.com/gridu/gridu-jenkins.git", + "svn_url": "https://github.com/gridu/gridu-jenkins", + "homepage": null, + "size": 133, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Groovy", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/gridu/gridu-jenkins/pulls/19" + }, + "html": { + "href": "https://github.com/gridu/gridu-jenkins/pull/19" + }, + "issue": { + "href": "https://api.github.com/repos/gridu/gridu-jenkins/issues/19" + }, + "comments": { + "href": "https://api.github.com/repos/gridu/gridu-jenkins/issues/19/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/gridu/gridu-jenkins/pulls/19/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/gridu/gridu-jenkins/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/gridu/gridu-jenkins/pulls/19/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/gridu/gridu-jenkins/statuses/98b7257713063fc373d1c044fe55ef574da19507" + } + }, + "author_association": "CONTRIBUTOR", + "merged": false, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 194, + "deletions": 0, + "changed_files": 3 + } + }, + "public": true, + "created_at": "2019-10-21T21:54:48Z", + "org": { + "id": 36301767, + "login": "gridu", + "gravatar_id": "", + "url": "https://api.github.com/orgs/gridu", + "avatar_url": "https://avatars.githubusercontent.com/u/36301767?" + } + }, + { + "id": "10680624991", + "type": "PushEvent", + "actor": { + "id": 21160680, + "login": "gszlan", + "display_login": "gszlan", + "gravatar_id": "", + "url": "https://api.github.com/users/gszlan", + "avatar_url": "https://avatars.githubusercontent.com/u/21160680?" + }, + "repo": { + "id": 195653396, + "name": "gszlan/DukeC-programming", + "url": "https://api.github.com/repos/gszlan/DukeC-programming" + }, + "payload": { + "push_id": 4176854890, + "size": 11, + "distinct_size": 11, + "ref": "refs/heads/master", + "head": "6c05258cfd1a6156ee587923fb2ac0f55d84e482", + "before": "e63bc6b2efce3bc6525e020fba6085654ddd3f49", + "commits": [ + { + "sha": "ad2578315b3c9cf973e233a8cffda96a13d7844f", + "author": { + "email": "invalid@nowhere.com", + "name": "Learn 2 Program Grader" + }, + "message": "graded", + "distinct": true, + "url": "https://api.github.com/repos/gszlan/DukeC-programming/commits/ad2578315b3c9cf973e233a8cffda96a13d7844f" + }, + { + "sha": "7807e29af8106aa4a6c01538c9a745c52db52155", + "author": { + "email": "nobody@nowhere.nul", + "name": "Coursera Learner" + }, + "message": "Merge branch 'master' of https://github.com/gszlan/DukeC-programming\n\ndone", + "distinct": true, + "url": "https://api.github.com/repos/gszlan/DukeC-programming/commits/7807e29af8106aa4a6c01538c9a745c52db52155" + }, + { + "sha": "c19074a391ed36dd451f792c3f003d6bff670a70", + "author": { + "email": "nobody@nowhere.nul", + "name": "Coursera Learner" + }, + "message": "Merge branch 'master' of https://github.com/gszlan/DukeC-programming\n\ndone", + "distinct": true, + "url": "https://api.github.com/repos/gszlan/DukeC-programming/commits/c19074a391ed36dd451f792c3f003d6bff670a70" + }, + { + "sha": "75b9623a81c4c618df19b8e63c5dd3315fc4da67", + "author": { + "email": "invalid@nowhere.com", + "name": "Learn 2 Program Grader" + }, + "message": "graded", + "distinct": true, + "url": "https://api.github.com/repos/gszlan/DukeC-programming/commits/75b9623a81c4c618df19b8e63c5dd3315fc4da67" + }, + { + "sha": "2812192ddc013f7e75b3f1845649eb5ccb8baaea", + "author": { + "email": "nobody@nowhere.nul", + "name": "Coursera Learner" + }, + "message": "Merge branch 'master' of https://github.com/gszlan/DukeC-programming\n\naaa", + "distinct": true, + "url": "https://api.github.com/repos/gszlan/DukeC-programming/commits/2812192ddc013f7e75b3f1845649eb5ccb8baaea" + }, + { + "sha": "a5be6c8362d2030af3cf599a93cbe1a692410c41", + "author": { + "email": "invalid@nowhere.com", + "name": "Learn 2 Program Grader" + }, + "message": "graded", + "distinct": true, + "url": "https://api.github.com/repos/gszlan/DukeC-programming/commits/a5be6c8362d2030af3cf599a93cbe1a692410c41" + }, + { + "sha": "07ea94f84ae40ae341de1158f0a5c1c4804dae8c", + "author": { + "email": "nobody@nowhere.nul", + "name": "Coursera Learner" + }, + "message": "Merge branch 'master' of https://github.com/gszlan/DukeC-programming", + "distinct": true, + "url": "https://api.github.com/repos/gszlan/DukeC-programming/commits/07ea94f84ae40ae341de1158f0a5c1c4804dae8c" + }, + { + "sha": "ad507105658ea4fb49eba1eeb6bb276df29dd809", + "author": { + "email": "invalid@nowhere.com", + "name": "Learn 2 Program Grader" + }, + "message": "graded", + "distinct": true, + "url": "https://api.github.com/repos/gszlan/DukeC-programming/commits/ad507105658ea4fb49eba1eeb6bb276df29dd809" + }, + { + "sha": "9d9d8e3ff80b91b6fe30732b36dee7b5b88196d5", + "author": { + "email": "nobody@nowhere.nul", + "name": "Coursera Learner" + }, + "message": "Merge branch 'master' of https://github.com/gszlan/DukeC-programming", + "distinct": true, + "url": "https://api.github.com/repos/gszlan/DukeC-programming/commits/9d9d8e3ff80b91b6fe30732b36dee7b5b88196d5" + }, + { + "sha": "73be8ad510ef03c368e4d376f9df1ee430c0ad9c", + "author": { + "email": "invalid@nowhere.com", + "name": "Learn 2 Program Grader" + }, + "message": "graded", + "distinct": true, + "url": "https://api.github.com/repos/gszlan/DukeC-programming/commits/73be8ad510ef03c368e4d376f9df1ee430c0ad9c" + }, + { + "sha": "6c05258cfd1a6156ee587923fb2ac0f55d84e482", + "author": { + "email": "invalid@nowhere.com", + "name": "Learn 2 Program Grader" + }, + "message": "Released assignment", + "distinct": true, + "url": "https://api.github.com/repos/gszlan/DukeC-programming/commits/6c05258cfd1a6156ee587923fb2ac0f55d84e482" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:48Z" + }, + { + "id": "10680624987", + "type": "PushEvent", + "actor": { + "id": 817330, + "login": "dtzWill", + "display_login": "dtzWill", + "gravatar_id": "", + "url": "https://api.github.com/users/dtzWill", + "avatar_url": "https://avatars.githubusercontent.com/u/817330?" + }, + "repo": { + "id": 60178915, + "name": "dtzWill/nixpkgs", + "url": "https://api.github.com/repos/dtzWill/nixpkgs" + }, + "payload": { + "push_id": 4176854880, + "size": 2, + "distinct_size": 2, + "ref": "refs/heads/nixos-dtz", + "head": "ad10a85624e7a2b58b8fa849bb494db40a822257", + "before": "84dfd77a4d4232147890c84536114f3b2a0b34db", + "commits": [ + { + "sha": "c66925f91925e470ed1f2532d8a225afa21285ce", + "author": { + "email": "ryantm-bot@ryantm.com", + "name": "R. RyanTM" + }, + "message": "libsForQt5.accounts-qt: 1.15 -> 1.16\n\nSemi-automatic update generated by\nhttps://github.com/ryantm/nixpkgs-update tools. This update was made\nbased on information from\nhttps://repology.org/metapackage/accounts-qt/versions\n\n(cherry picked from commit a4dc3bc24617afb908579c1431e379cbeb6b0d93)", + "distinct": true, + "url": "https://api.github.com/repos/dtzWill/nixpkgs/commits/c66925f91925e470ed1f2532d8a225afa21285ce" + }, + { + "sha": "ad10a85624e7a2b58b8fa849bb494db40a822257", + "author": { + "email": "joerg@thalheim.io", + "name": "Jörg Thalheim" + }, + "message": "linux: remove deprecated kernel config options\n\nOur oldest kernel is 4.4. That's why we can remove configurations that only\napplies to kernels older than that.\n\n(cherry picked from commit 14a6713aefdc711db264735901e2581555f1e86e)", + "distinct": true, + "url": "https://api.github.com/repos/dtzWill/nixpkgs/commits/ad10a85624e7a2b58b8fa849bb494db40a822257" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:48Z" + }, + { + "id": "10680624990", + "type": "PushEvent", + "actor": { + "id": 49883273, + "login": "B-Griffinn", + "display_login": "B-Griffinn", + "gravatar_id": "", + "url": "https://api.github.com/users/B-Griffinn", + "avatar_url": "https://avatars.githubusercontent.com/u/49883273?" + }, + "repo": { + "id": 216102957, + "name": "Build-Week-Kids-Fly-2/Back-End", + "url": "https://api.github.com/repos/Build-Week-Kids-Fly-2/Back-End" + }, + "payload": { + "push_id": 4176854889, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "30555b249ec8d391669c5e0986633c81ae0074e4", + "before": "be176ad97e275562df0352855aa7d1f0d06786ce", + "commits": [ + { + "sha": "30555b249ec8d391669c5e0986633c81ae0074e4", + "author": { + "email": "bigriffin94@outlook.com", + "name": "Ben" + }, + "message": "testing my users get", + "distinct": true, + "url": "https://api.github.com/repos/Build-Week-Kids-Fly-2/Back-End/commits/30555b249ec8d391669c5e0986633c81ae0074e4" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:48Z", + "org": { + "id": 56741693, + "login": "Build-Week-Kids-Fly-2", + "gravatar_id": "", + "url": "https://api.github.com/orgs/Build-Week-Kids-Fly-2", + "avatar_url": "https://avatars.githubusercontent.com/u/56741693?" + } + }, + { + "id": "10680624983", + "type": "PushEvent", + "actor": { + "id": 26882248, + "login": "Oddiesea", + "display_login": "Oddiesea", + "gravatar_id": "", + "url": "https://api.github.com/users/Oddiesea", + "avatar_url": "https://avatars.githubusercontent.com/u/26882248?" + }, + "repo": { + "id": 216225209, + "name": "Oddiesea/portfolio", + "url": "https://api.github.com/repos/Oddiesea/portfolio" + }, + "payload": { + "push_id": 4176854884, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "61a4f6c6a093379eb8a5c8212c4fd59c2b6583f4", + "before": "371b9b4cc0a641cb7dd1b1c5e67b920ff267e6ee", + "commits": [ + { + "sha": "61a4f6c6a093379eb8a5c8212c4fd59c2b6583f4", + "author": { + "email": "liamwiltonjones@gmail.com", + "name": "Oddiesea" + }, + "message": "Styling and refactor", + "distinct": true, + "url": "https://api.github.com/repos/Oddiesea/portfolio/commits/61a4f6c6a093379eb8a5c8212c4fd59c2b6583f4" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:48Z" + }, + { + "id": "10680624984", + "type": "IssueCommentEvent", + "actor": { + "id": 37936606, + "login": "github-learning-lab[bot]", + "display_login": "github-learning-lab", + "gravatar_id": "", + "url": "https://api.github.com/users/github-learning-lab[bot]", + "avatar_url": "https://avatars.githubusercontent.com/u/37936606?" + }, + "repo": { + "id": 216671952, + "name": "rcordeirotmu/reviewing-a-pull-request", + "url": "https://api.github.com/repos/rcordeirotmu/reviewing-a-pull-request" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/rcordeirotmu/reviewing-a-pull-request/issues/1", + "repository_url": "https://api.github.com/repos/rcordeirotmu/reviewing-a-pull-request", + "labels_url": "https://api.github.com/repos/rcordeirotmu/reviewing-a-pull-request/issues/1/labels{/name}", + "comments_url": "https://api.github.com/repos/rcordeirotmu/reviewing-a-pull-request/issues/1/comments", + "events_url": "https://api.github.com/repos/rcordeirotmu/reviewing-a-pull-request/issues/1/events", + "html_url": "https://github.com/rcordeirotmu/reviewing-a-pull-request/issues/1", + "id": 510314364, + "node_id": "MDU6SXNzdWU1MTAzMTQzNjQ=", + "number": 1, + "title": "Welcome", + "user": { + "login": "github-learning-lab[bot]", + "id": 37936606, + "node_id": "MDM6Qm90Mzc5MzY2MDY=", + "avatar_url": "https://avatars0.githubusercontent.com/in/10572?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-learning-lab%5Bbot%5D", + "html_url": "https://github.com/apps/github-learning-lab", + "followers_url": "https://api.github.com/users/github-learning-lab%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-learning-lab%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-learning-lab%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-learning-lab%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-learning-lab%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-learning-lab%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-learning-lab%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-learning-lab%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-learning-lab%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": { + "login": "rcordeirotmu", + "id": 54368413, + "node_id": "MDQ6VXNlcjU0MzY4NDEz", + "avatar_url": "https://avatars0.githubusercontent.com/u/54368413?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rcordeirotmu", + "html_url": "https://github.com/rcordeirotmu", + "followers_url": "https://api.github.com/users/rcordeirotmu/followers", + "following_url": "https://api.github.com/users/rcordeirotmu/following{/other_user}", + "gists_url": "https://api.github.com/users/rcordeirotmu/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rcordeirotmu/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rcordeirotmu/subscriptions", + "organizations_url": "https://api.github.com/users/rcordeirotmu/orgs", + "repos_url": "https://api.github.com/users/rcordeirotmu/repos", + "events_url": "https://api.github.com/users/rcordeirotmu/events{/privacy}", + "received_events_url": "https://api.github.com/users/rcordeirotmu/received_events", + "type": "User", + "site_admin": false + }, + "assignees": [ + { + "login": "rcordeirotmu", + "id": 54368413, + "node_id": "MDQ6VXNlcjU0MzY4NDEz", + "avatar_url": "https://avatars0.githubusercontent.com/u/54368413?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rcordeirotmu", + "html_url": "https://github.com/rcordeirotmu", + "followers_url": "https://api.github.com/users/rcordeirotmu/followers", + "following_url": "https://api.github.com/users/rcordeirotmu/following{/other_user}", + "gists_url": "https://api.github.com/users/rcordeirotmu/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rcordeirotmu/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rcordeirotmu/subscriptions", + "organizations_url": "https://api.github.com/users/rcordeirotmu/orgs", + "repos_url": "https://api.github.com/users/rcordeirotmu/repos", + "events_url": "https://api.github.com/users/rcordeirotmu/events{/privacy}", + "received_events_url": "https://api.github.com/users/rcordeirotmu/received_events", + "type": "User", + "site_admin": false + } + ], + "milestone": null, + "comments": 0, + "created_at": "2019-10-21T21:52:26Z", + "updated_at": "2019-10-21T21:54:48Z", + "closed_at": null, + "author_association": "NONE", + "body": "## Welcome!\n\nHello and welcome! In this course you will learn how you can get your best work done in pull requests. You'll learn when and how to request a review, how to review someone else's code, and how to respond to reviews. To do this, we'll be playing around with the code in this repository that makes a simple Tetris game.\n\nIf you'd like, you can use [GitHub Pages](https://pages.github.com/) to host your Tetris game. Just go to the **Settings** tab of this repository. Scroll down to **GitHub Pages**. Select `master` as a **Source**, and click **Save**. \n\n### New to GitHub?\n\nFor this course, you'll need some background knowledge. If you need a refresher on the GitHub flow, check out [the Introduction to GitHub course](https://lab.github.com/courses/introduction-to-github).\n\n## Pull Requests Reviews 101\n\nReviewing a pull request is an opportunity to examine another contributor's changes. While reviewing a pull request, you can extrapolate how someone else solved a problem. It's an awesome opportunity to learn more about how the code works and how others solve problems. Reviewing a pull request is a great learning opportunity!\n\n## Step 1: Add assignees for issues and pull requests\n\nAssignees on issues and pull requests let other team members know who is responsible. The assignee oversees the issue or pull request in an accessible and visible way.\n\n### :keyboard: Activity: Assign yourself to this issue\n\n1. On the right side of the screen, click the `assign yourself` text under the **Assignees** section\n\n
        \n

        I'll respond below for your next step

        \n\n> _Sometimes I respond too fast for the page to update! If you perform an expected action and don't see a response, wait a few seconds and refresh the page for your next steps._\n" + }, + "comment": { + "url": "https://api.github.com/repos/rcordeirotmu/reviewing-a-pull-request/issues/comments/544724566", + "html_url": "https://github.com/rcordeirotmu/reviewing-a-pull-request/issues/1#issuecomment-544724566", + "issue_url": "https://api.github.com/repos/rcordeirotmu/reviewing-a-pull-request/issues/1", + "id": 544724566, + "node_id": "MDEyOklzc3VlQ29tbWVudDU0NDcyNDU2Ng==", + "user": { + "login": "github-learning-lab[bot]", + "id": 37936606, + "node_id": "MDM6Qm90Mzc5MzY2MDY=", + "avatar_url": "https://avatars0.githubusercontent.com/in/10572?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-learning-lab%5Bbot%5D", + "html_url": "https://github.com/apps/github-learning-lab", + "followers_url": "https://api.github.com/users/github-learning-lab%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-learning-lab%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-learning-lab%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-learning-lab%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-learning-lab%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-learning-lab%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-learning-lab%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-learning-lab%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-learning-lab%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "created_at": "2019-10-21T21:54:48Z", + "updated_at": "2019-10-21T21:54:48Z", + "author_association": "NONE", + "body": "Nice work, @rcordeirotmu! Assigning yourself to an issue is a great way to let people know what you are working on. Once you begin working, it's important to get feedback on your work through reviews.\n\n
        \n

        Learn more in the next pull request

        \n" + } + }, + "public": true, + "created_at": "2019-10-21T21:54:48Z" + }, + { + "id": "10680624981", + "type": "PullRequestEvent", + "actor": { + "id": 28238025, + "login": "dekkerglen", + "display_login": "dekkerglen", + "gravatar_id": "", + "url": "https://api.github.com/users/dekkerglen", + "avatar_url": "https://avatars.githubusercontent.com/u/28238025?" + }, + "repo": { + "id": 199488444, + "name": "dekkerglen/CubeCobra", + "url": "https://api.github.com/repos/dekkerglen/CubeCobra" + }, + "payload": { + "action": "closed", + "number": 608, + "pull_request": { + "url": "https://api.github.com/repos/dekkerglen/CubeCobra/pulls/608", + "id": 328381447, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzI4MzgxNDQ3", + "html_url": "https://github.com/dekkerglen/CubeCobra/pull/608", + "diff_url": "https://github.com/dekkerglen/CubeCobra/pull/608.diff", + "patch_url": "https://github.com/dekkerglen/CubeCobra/pull/608.patch", + "issue_url": "https://api.github.com/repos/dekkerglen/CubeCobra/issues/608", + "number": 608, + "state": "closed", + "locked": false, + "title": "Fetch price data for all card versions to display in CardModal", + "user": { + "login": "anderoonies", + "id": 6645121, + "node_id": "MDQ6VXNlcjY2NDUxMjE=", + "avatar_url": "https://avatars0.githubusercontent.com/u/6645121?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/anderoonies", + "html_url": "https://github.com/anderoonies", + "followers_url": "https://api.github.com/users/anderoonies/followers", + "following_url": "https://api.github.com/users/anderoonies/following{/other_user}", + "gists_url": "https://api.github.com/users/anderoonies/gists{/gist_id}", + "starred_url": "https://api.github.com/users/anderoonies/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/anderoonies/subscriptions", + "organizations_url": "https://api.github.com/users/anderoonies/orgs", + "repos_url": "https://api.github.com/users/anderoonies/repos", + "events_url": "https://api.github.com/users/anderoonies/events{/privacy}", + "received_events_url": "https://api.github.com/users/anderoonies/received_events", + "type": "User", + "site_admin": false + }, + "body": "fixes #607 \r\n\r\n`getversions` fetches price data, which is passed into the card modal so version changes have access to prices\r\n\r\nunable to test this fully locally because i don't have access to the tcgplayer api, but if someone who does could test this that would be great 🙇 ", + "created_at": "2019-10-15T17:24:21Z", + "updated_at": "2019-10-21T21:54:48Z", + "closed_at": "2019-10-21T21:54:48Z", + "merged_at": "2019-10-21T21:54:47Z", + "merge_commit_sha": "eb3028813d9f14f92538ada84ae11a73346d9b38", + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/dekkerglen/CubeCobra/pulls/608/commits", + "review_comments_url": "https://api.github.com/repos/dekkerglen/CubeCobra/pulls/608/comments", + "review_comment_url": "https://api.github.com/repos/dekkerglen/CubeCobra/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/dekkerglen/CubeCobra/issues/608/comments", + "statuses_url": "https://api.github.com/repos/dekkerglen/CubeCobra/statuses/62f262d63ddea88e2269a30c3ea7a31f2c8cd8db", + "head": { + "label": "anderoonies:reload-price-in-card-modal-on-version-change", + "ref": "reload-price-in-card-modal-on-version-change", + "sha": "62f262d63ddea88e2269a30c3ea7a31f2c8cd8db", + "user": { + "login": "anderoonies", + "id": 6645121, + "node_id": "MDQ6VXNlcjY2NDUxMjE=", + "avatar_url": "https://avatars0.githubusercontent.com/u/6645121?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/anderoonies", + "html_url": "https://github.com/anderoonies", + "followers_url": "https://api.github.com/users/anderoonies/followers", + "following_url": "https://api.github.com/users/anderoonies/following{/other_user}", + "gists_url": "https://api.github.com/users/anderoonies/gists{/gist_id}", + "starred_url": "https://api.github.com/users/anderoonies/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/anderoonies/subscriptions", + "organizations_url": "https://api.github.com/users/anderoonies/orgs", + "repos_url": "https://api.github.com/users/anderoonies/repos", + "events_url": "https://api.github.com/users/anderoonies/events{/privacy}", + "received_events_url": "https://api.github.com/users/anderoonies/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 215356555, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTUzNTY1NTU=", + "name": "CubeCobra", + "full_name": "anderoonies/CubeCobra", + "private": false, + "owner": { + "login": "anderoonies", + "id": 6645121, + "node_id": "MDQ6VXNlcjY2NDUxMjE=", + "avatar_url": "https://avatars0.githubusercontent.com/u/6645121?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/anderoonies", + "html_url": "https://github.com/anderoonies", + "followers_url": "https://api.github.com/users/anderoonies/followers", + "following_url": "https://api.github.com/users/anderoonies/following{/other_user}", + "gists_url": "https://api.github.com/users/anderoonies/gists{/gist_id}", + "starred_url": "https://api.github.com/users/anderoonies/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/anderoonies/subscriptions", + "organizations_url": "https://api.github.com/users/anderoonies/orgs", + "repos_url": "https://api.github.com/users/anderoonies/repos", + "events_url": "https://api.github.com/users/anderoonies/events{/privacy}", + "received_events_url": "https://api.github.com/users/anderoonies/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/anderoonies/CubeCobra", + "description": "An open source web application for building, managing, and playtesting Magic the Gathering cubes.", + "fork": true, + "url": "https://api.github.com/repos/anderoonies/CubeCobra", + "forks_url": "https://api.github.com/repos/anderoonies/CubeCobra/forks", + "keys_url": "https://api.github.com/repos/anderoonies/CubeCobra/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/anderoonies/CubeCobra/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/anderoonies/CubeCobra/teams", + "hooks_url": "https://api.github.com/repos/anderoonies/CubeCobra/hooks", + "issue_events_url": "https://api.github.com/repos/anderoonies/CubeCobra/issues/events{/number}", + "events_url": "https://api.github.com/repos/anderoonies/CubeCobra/events", + "assignees_url": "https://api.github.com/repos/anderoonies/CubeCobra/assignees{/user}", + "branches_url": "https://api.github.com/repos/anderoonies/CubeCobra/branches{/branch}", + "tags_url": "https://api.github.com/repos/anderoonies/CubeCobra/tags", + "blobs_url": "https://api.github.com/repos/anderoonies/CubeCobra/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/anderoonies/CubeCobra/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/anderoonies/CubeCobra/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/anderoonies/CubeCobra/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/anderoonies/CubeCobra/statuses/{sha}", + "languages_url": "https://api.github.com/repos/anderoonies/CubeCobra/languages", + "stargazers_url": "https://api.github.com/repos/anderoonies/CubeCobra/stargazers", + "contributors_url": "https://api.github.com/repos/anderoonies/CubeCobra/contributors", + "subscribers_url": "https://api.github.com/repos/anderoonies/CubeCobra/subscribers", + "subscription_url": "https://api.github.com/repos/anderoonies/CubeCobra/subscription", + "commits_url": "https://api.github.com/repos/anderoonies/CubeCobra/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/anderoonies/CubeCobra/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/anderoonies/CubeCobra/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/anderoonies/CubeCobra/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/anderoonies/CubeCobra/contents/{+path}", + "compare_url": "https://api.github.com/repos/anderoonies/CubeCobra/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/anderoonies/CubeCobra/merges", + "archive_url": "https://api.github.com/repos/anderoonies/CubeCobra/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/anderoonies/CubeCobra/downloads", + "issues_url": "https://api.github.com/repos/anderoonies/CubeCobra/issues{/number}", + "pulls_url": "https://api.github.com/repos/anderoonies/CubeCobra/pulls{/number}", + "milestones_url": "https://api.github.com/repos/anderoonies/CubeCobra/milestones{/number}", + "notifications_url": "https://api.github.com/repos/anderoonies/CubeCobra/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/anderoonies/CubeCobra/labels{/name}", + "releases_url": "https://api.github.com/repos/anderoonies/CubeCobra/releases{/id}", + "deployments_url": "https://api.github.com/repos/anderoonies/CubeCobra/deployments", + "created_at": "2019-10-15T17:21:57Z", + "updated_at": "2019-10-15T17:21:59Z", + "pushed_at": "2019-10-21T20:17:22Z", + "git_url": "git://github.com/anderoonies/CubeCobra.git", + "ssh_url": "git@github.com:anderoonies/CubeCobra.git", + "clone_url": "https://github.com/anderoonies/CubeCobra.git", + "svn_url": "https://github.com/anderoonies/CubeCobra", + "homepage": "https://www.cubecobra.com", + "size": 8332, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "dekkerglen:master", + "ref": "master", + "sha": "f25ddd94644152d3bb6f2641e552b05108d13475", + "user": { + "login": "dekkerglen", + "id": 28238025, + "node_id": "MDQ6VXNlcjI4MjM4MDI1", + "avatar_url": "https://avatars0.githubusercontent.com/u/28238025?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dekkerglen", + "html_url": "https://github.com/dekkerglen", + "followers_url": "https://api.github.com/users/dekkerglen/followers", + "following_url": "https://api.github.com/users/dekkerglen/following{/other_user}", + "gists_url": "https://api.github.com/users/dekkerglen/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dekkerglen/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dekkerglen/subscriptions", + "organizations_url": "https://api.github.com/users/dekkerglen/orgs", + "repos_url": "https://api.github.com/users/dekkerglen/repos", + "events_url": "https://api.github.com/users/dekkerglen/events{/privacy}", + "received_events_url": "https://api.github.com/users/dekkerglen/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 199488444, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTk0ODg0NDQ=", + "name": "CubeCobra", + "full_name": "dekkerglen/CubeCobra", + "private": false, + "owner": { + "login": "dekkerglen", + "id": 28238025, + "node_id": "MDQ6VXNlcjI4MjM4MDI1", + "avatar_url": "https://avatars0.githubusercontent.com/u/28238025?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dekkerglen", + "html_url": "https://github.com/dekkerglen", + "followers_url": "https://api.github.com/users/dekkerglen/followers", + "following_url": "https://api.github.com/users/dekkerglen/following{/other_user}", + "gists_url": "https://api.github.com/users/dekkerglen/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dekkerglen/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dekkerglen/subscriptions", + "organizations_url": "https://api.github.com/users/dekkerglen/orgs", + "repos_url": "https://api.github.com/users/dekkerglen/repos", + "events_url": "https://api.github.com/users/dekkerglen/events{/privacy}", + "received_events_url": "https://api.github.com/users/dekkerglen/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/dekkerglen/CubeCobra", + "description": "An open source web application for building, managing, and playtesting Magic the Gathering cubes.", + "fork": false, + "url": "https://api.github.com/repos/dekkerglen/CubeCobra", + "forks_url": "https://api.github.com/repos/dekkerglen/CubeCobra/forks", + "keys_url": "https://api.github.com/repos/dekkerglen/CubeCobra/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/dekkerglen/CubeCobra/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/dekkerglen/CubeCobra/teams", + "hooks_url": "https://api.github.com/repos/dekkerglen/CubeCobra/hooks", + "issue_events_url": "https://api.github.com/repos/dekkerglen/CubeCobra/issues/events{/number}", + "events_url": "https://api.github.com/repos/dekkerglen/CubeCobra/events", + "assignees_url": "https://api.github.com/repos/dekkerglen/CubeCobra/assignees{/user}", + "branches_url": "https://api.github.com/repos/dekkerglen/CubeCobra/branches{/branch}", + "tags_url": "https://api.github.com/repos/dekkerglen/CubeCobra/tags", + "blobs_url": "https://api.github.com/repos/dekkerglen/CubeCobra/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/dekkerglen/CubeCobra/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/dekkerglen/CubeCobra/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/dekkerglen/CubeCobra/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/dekkerglen/CubeCobra/statuses/{sha}", + "languages_url": "https://api.github.com/repos/dekkerglen/CubeCobra/languages", + "stargazers_url": "https://api.github.com/repos/dekkerglen/CubeCobra/stargazers", + "contributors_url": "https://api.github.com/repos/dekkerglen/CubeCobra/contributors", + "subscribers_url": "https://api.github.com/repos/dekkerglen/CubeCobra/subscribers", + "subscription_url": "https://api.github.com/repos/dekkerglen/CubeCobra/subscription", + "commits_url": "https://api.github.com/repos/dekkerglen/CubeCobra/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/dekkerglen/CubeCobra/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/dekkerglen/CubeCobra/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/dekkerglen/CubeCobra/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/dekkerglen/CubeCobra/contents/{+path}", + "compare_url": "https://api.github.com/repos/dekkerglen/CubeCobra/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/dekkerglen/CubeCobra/merges", + "archive_url": "https://api.github.com/repos/dekkerglen/CubeCobra/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/dekkerglen/CubeCobra/downloads", + "issues_url": "https://api.github.com/repos/dekkerglen/CubeCobra/issues{/number}", + "pulls_url": "https://api.github.com/repos/dekkerglen/CubeCobra/pulls{/number}", + "milestones_url": "https://api.github.com/repos/dekkerglen/CubeCobra/milestones{/number}", + "notifications_url": "https://api.github.com/repos/dekkerglen/CubeCobra/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/dekkerglen/CubeCobra/labels{/name}", + "releases_url": "https://api.github.com/repos/dekkerglen/CubeCobra/releases{/id}", + "deployments_url": "https://api.github.com/repos/dekkerglen/CubeCobra/deployments", + "created_at": "2019-07-29T16:24:01Z", + "updated_at": "2019-10-21T21:53:42Z", + "pushed_at": "2019-10-21T21:54:47Z", + "git_url": "git://github.com/dekkerglen/CubeCobra.git", + "ssh_url": "git@github.com:dekkerglen/CubeCobra.git", + "clone_url": "https://github.com/dekkerglen/CubeCobra.git", + "svn_url": "https://github.com/dekkerglen/CubeCobra", + "homepage": "https://www.cubecobra.com", + "size": 8357, + "stargazers_count": 39, + "watchers_count": 39, + "language": "JavaScript", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 28, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 126, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 28, + "open_issues": 126, + "watchers": 39, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/dekkerglen/CubeCobra/pulls/608" + }, + "html": { + "href": "https://github.com/dekkerglen/CubeCobra/pull/608" + }, + "issue": { + "href": "https://api.github.com/repos/dekkerglen/CubeCobra/issues/608" + }, + "comments": { + "href": "https://api.github.com/repos/dekkerglen/CubeCobra/issues/608/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/dekkerglen/CubeCobra/pulls/608/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/dekkerglen/CubeCobra/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/dekkerglen/CubeCobra/pulls/608/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/dekkerglen/CubeCobra/statuses/62f262d63ddea88e2269a30c3ea7a31f2c8cd8db" + } + }, + "author_association": "NONE", + "merged": true, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": { + "login": "dekkerglen", + "id": 28238025, + "node_id": "MDQ6VXNlcjI4MjM4MDI1", + "avatar_url": "https://avatars0.githubusercontent.com/u/28238025?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dekkerglen", + "html_url": "https://github.com/dekkerglen", + "followers_url": "https://api.github.com/users/dekkerglen/followers", + "following_url": "https://api.github.com/users/dekkerglen/following{/other_user}", + "gists_url": "https://api.github.com/users/dekkerglen/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dekkerglen/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dekkerglen/subscriptions", + "organizations_url": "https://api.github.com/users/dekkerglen/orgs", + "repos_url": "https://api.github.com/users/dekkerglen/repos", + "events_url": "https://api.github.com/users/dekkerglen/events{/privacy}", + "received_events_url": "https://api.github.com/users/dekkerglen/received_events", + "type": "User", + "site_admin": false + }, + "comments": 0, + "review_comments": 3, + "maintainer_can_modify": false, + "commits": 3, + "additions": 29, + "deletions": 9, + "changed_files": 2 + } + }, + "public": true, + "created_at": "2019-10-21T21:54:48Z" + }, + { + "id": "10680624979", + "type": "PushEvent", + "actor": { + "id": 8759693, + "login": "couven92", + "display_login": "couven92", + "gravatar_id": "", + "url": "https://api.github.com/users/couven92", + "avatar_url": "https://avatars.githubusercontent.com/u/8759693?" + }, + "repo": { + "id": 74722074, + "name": "thnetii/windows-api", + "url": "https://api.github.com/repos/thnetii/windows-api" + }, + "payload": { + "push_id": 4176854881, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "b826329617c6f44caaac3be82a3147d082e404b7", + "before": "4ff7211da7ee2bfa13e742c6332d78b228a4f4dc", + "commits": [ + { + "sha": "b826329617c6f44caaac3be82a3147d082e404b7", + "author": { + "email": "fredrik.rasch@gmail.com", + "name": "Fredrik Høisæther Rasch" + }, + "message": "Update azure-pipelines.yml", + "distinct": true, + "url": "https://api.github.com/repos/thnetii/windows-api/commits/b826329617c6f44caaac3be82a3147d082e404b7" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:48Z", + "org": { + "id": 26299854, + "login": "thnetii", + "gravatar_id": "", + "url": "https://api.github.com/orgs/thnetii", + "avatar_url": "https://avatars.githubusercontent.com/u/26299854?" + } + }, + { + "id": "10680624968", + "type": "PushEvent", + "actor": { + "id": 2940419, + "login": "Adrir", + "display_login": "Adrir", + "gravatar_id": "", + "url": "https://api.github.com/users/Adrir", + "avatar_url": "https://avatars.githubusercontent.com/u/2940419?" + }, + "repo": { + "id": 213589753, + "name": "Adrir/comp120-tinkering-graphics", + "url": "https://api.github.com/repos/Adrir/comp120-tinkering-graphics" + }, + "payload": { + "push_id": 4176854876, + "size": 2, + "distinct_size": 2, + "ref": "refs/heads/master", + "head": "f4b6567d15dfe6709d3eecd304877e4ca32ac308", + "before": "0d0b5abb37eae9421cf0cbdcc63e37e2cd0f1a06", + "commits": [ + { + "sha": "c9e1902ed9e9a684bfd7f9d16943427ee730e38e", + "author": { + "email": "adrir@adrir.com", + "name": "Adrir" + }, + "message": "Added information about the project to README.md", + "distinct": true, + "url": "https://api.github.com/repos/Adrir/comp120-tinkering-graphics/commits/c9e1902ed9e9a684bfd7f9d16943427ee730e38e" + }, + { + "sha": "f4b6567d15dfe6709d3eecd304877e4ca32ac308", + "author": { + "email": "adrir@adrir.com", + "name": "Adrir" + }, + "message": "Merge branch 'master' of https://github.com/Adrir/comp120-tinkering-graphics", + "distinct": true, + "url": "https://api.github.com/repos/Adrir/comp120-tinkering-graphics/commits/f4b6567d15dfe6709d3eecd304877e4ca32ac308" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:48Z" + }, + { + "id": "10680624975", + "type": "PushEvent", + "actor": { + "id": 53057190, + "login": "Besker1", + "display_login": "Besker1", + "gravatar_id": "", + "url": "https://api.github.com/users/Besker1", + "avatar_url": "https://avatars.githubusercontent.com/u/53057190?" + }, + "repo": { + "id": 213773409, + "name": "Besker1/besker1.github.io", + "url": "https://api.github.com/repos/Besker1/besker1.github.io" + }, + "payload": { + "push_id": 4176854871, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "ccc9ca4e384c48c6543b66801cb9dc8df3fd2178", + "before": "6bcfc18c475e5ab4de1f89a5a588ea628367ea38", + "commits": [ + { + "sha": "ccc9ca4e384c48c6543b66801cb9dc8df3fd2178", + "author": { + "email": "beskertelisma26@gmail.com", + "name": "Besker Telisma" + }, + "message": "updated studies", + "distinct": true, + "url": "https://api.github.com/repos/Besker1/besker1.github.io/commits/ccc9ca4e384c48c6543b66801cb9dc8df3fd2178" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:48Z" + }, + { + "id": "10680624976", + "type": "PullRequestEvent", + "actor": { + "id": 4157996, + "login": "esellors", + "display_login": "esellors", + "gravatar_id": "", + "url": "https://api.github.com/users/esellors", + "avatar_url": "https://avatars.githubusercontent.com/u/4157996?" + }, + "repo": { + "id": 216093525, + "name": "dm-group-trakd/trakd", + "url": "https://api.github.com/repos/dm-group-trakd/trakd" + }, + "payload": { + "action": "closed", + "number": 18, + "pull_request": { + "url": "https://api.github.com/repos/dm-group-trakd/trakd/pulls/18", + "id": 330702921, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzMwNzAyOTIx", + "html_url": "https://github.com/dm-group-trakd/trakd/pull/18", + "diff_url": "https://github.com/dm-group-trakd/trakd/pull/18.diff", + "patch_url": "https://github.com/dm-group-trakd/trakd/pull/18.patch", + "issue_url": "https://api.github.com/repos/dm-group-trakd/trakd/issues/18", + "number": 18, + "state": "closed", + "locked": false, + "title": "add settings component include methods for updating user settings and goals, fixed bug with user reducer", + "user": { + "login": "jensenjamison", + "id": 48266902, + "node_id": "MDQ6VXNlcjQ4MjY2OTAy", + "avatar_url": "https://avatars1.githubusercontent.com/u/48266902?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jensenjamison", + "html_url": "https://github.com/jensenjamison", + "followers_url": "https://api.github.com/users/jensenjamison/followers", + "following_url": "https://api.github.com/users/jensenjamison/following{/other_user}", + "gists_url": "https://api.github.com/users/jensenjamison/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jensenjamison/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jensenjamison/subscriptions", + "organizations_url": "https://api.github.com/users/jensenjamison/orgs", + "repos_url": "https://api.github.com/users/jensenjamison/repos", + "events_url": "https://api.github.com/users/jensenjamison/events{/privacy}", + "received_events_url": "https://api.github.com/users/jensenjamison/received_events", + "type": "User", + "site_admin": false + }, + "body": "", + "created_at": "2019-10-21T21:30:09Z", + "updated_at": "2019-10-21T21:54:48Z", + "closed_at": "2019-10-21T21:54:48Z", + "merged_at": "2019-10-21T21:54:48Z", + "merge_commit_sha": "56d21eeee46fd18ad1a3ada1ddc0dde40ee148fd", + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/dm-group-trakd/trakd/pulls/18/commits", + "review_comments_url": "https://api.github.com/repos/dm-group-trakd/trakd/pulls/18/comments", + "review_comment_url": "https://api.github.com/repos/dm-group-trakd/trakd/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/dm-group-trakd/trakd/issues/18/comments", + "statuses_url": "https://api.github.com/repos/dm-group-trakd/trakd/statuses/66a7bf7d92111a5056813ae964574d48e431b470", + "head": { + "label": "dm-group-trakd:jamison", + "ref": "jamison", + "sha": "66a7bf7d92111a5056813ae964574d48e431b470", + "user": { + "login": "dm-group-trakd", + "id": 56691813, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU2NjkxODEz", + "avatar_url": "https://avatars3.githubusercontent.com/u/56691813?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dm-group-trakd", + "html_url": "https://github.com/dm-group-trakd", + "followers_url": "https://api.github.com/users/dm-group-trakd/followers", + "following_url": "https://api.github.com/users/dm-group-trakd/following{/other_user}", + "gists_url": "https://api.github.com/users/dm-group-trakd/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dm-group-trakd/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dm-group-trakd/subscriptions", + "organizations_url": "https://api.github.com/users/dm-group-trakd/orgs", + "repos_url": "https://api.github.com/users/dm-group-trakd/repos", + "events_url": "https://api.github.com/users/dm-group-trakd/events{/privacy}", + "received_events_url": "https://api.github.com/users/dm-group-trakd/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 216093525, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTYwOTM1MjU=", + "name": "trakd", + "full_name": "dm-group-trakd/trakd", + "private": false, + "owner": { + "login": "dm-group-trakd", + "id": 56691813, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU2NjkxODEz", + "avatar_url": "https://avatars3.githubusercontent.com/u/56691813?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dm-group-trakd", + "html_url": "https://github.com/dm-group-trakd", + "followers_url": "https://api.github.com/users/dm-group-trakd/followers", + "following_url": "https://api.github.com/users/dm-group-trakd/following{/other_user}", + "gists_url": "https://api.github.com/users/dm-group-trakd/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dm-group-trakd/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dm-group-trakd/subscriptions", + "organizations_url": "https://api.github.com/users/dm-group-trakd/orgs", + "repos_url": "https://api.github.com/users/dm-group-trakd/repos", + "events_url": "https://api.github.com/users/dm-group-trakd/events{/privacy}", + "received_events_url": "https://api.github.com/users/dm-group-trakd/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/dm-group-trakd/trakd", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/dm-group-trakd/trakd", + "forks_url": "https://api.github.com/repos/dm-group-trakd/trakd/forks", + "keys_url": "https://api.github.com/repos/dm-group-trakd/trakd/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/dm-group-trakd/trakd/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/dm-group-trakd/trakd/teams", + "hooks_url": "https://api.github.com/repos/dm-group-trakd/trakd/hooks", + "issue_events_url": "https://api.github.com/repos/dm-group-trakd/trakd/issues/events{/number}", + "events_url": "https://api.github.com/repos/dm-group-trakd/trakd/events", + "assignees_url": "https://api.github.com/repos/dm-group-trakd/trakd/assignees{/user}", + "branches_url": "https://api.github.com/repos/dm-group-trakd/trakd/branches{/branch}", + "tags_url": "https://api.github.com/repos/dm-group-trakd/trakd/tags", + "blobs_url": "https://api.github.com/repos/dm-group-trakd/trakd/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/dm-group-trakd/trakd/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/dm-group-trakd/trakd/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/dm-group-trakd/trakd/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/dm-group-trakd/trakd/statuses/{sha}", + "languages_url": "https://api.github.com/repos/dm-group-trakd/trakd/languages", + "stargazers_url": "https://api.github.com/repos/dm-group-trakd/trakd/stargazers", + "contributors_url": "https://api.github.com/repos/dm-group-trakd/trakd/contributors", + "subscribers_url": "https://api.github.com/repos/dm-group-trakd/trakd/subscribers", + "subscription_url": "https://api.github.com/repos/dm-group-trakd/trakd/subscription", + "commits_url": "https://api.github.com/repos/dm-group-trakd/trakd/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/dm-group-trakd/trakd/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/dm-group-trakd/trakd/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/dm-group-trakd/trakd/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/dm-group-trakd/trakd/contents/{+path}", + "compare_url": "https://api.github.com/repos/dm-group-trakd/trakd/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/dm-group-trakd/trakd/merges", + "archive_url": "https://api.github.com/repos/dm-group-trakd/trakd/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/dm-group-trakd/trakd/downloads", + "issues_url": "https://api.github.com/repos/dm-group-trakd/trakd/issues{/number}", + "pulls_url": "https://api.github.com/repos/dm-group-trakd/trakd/pulls{/number}", + "milestones_url": "https://api.github.com/repos/dm-group-trakd/trakd/milestones{/number}", + "notifications_url": "https://api.github.com/repos/dm-group-trakd/trakd/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/dm-group-trakd/trakd/labels{/name}", + "releases_url": "https://api.github.com/repos/dm-group-trakd/trakd/releases{/id}", + "deployments_url": "https://api.github.com/repos/dm-group-trakd/trakd/deployments", + "created_at": "2019-10-18T19:27:15Z", + "updated_at": "2019-10-21T20:32:39Z", + "pushed_at": "2019-10-21T21:54:48Z", + "git_url": "git://github.com/dm-group-trakd/trakd.git", + "ssh_url": "git@github.com:dm-group-trakd/trakd.git", + "clone_url": "https://github.com/dm-group-trakd/trakd.git", + "svn_url": "https://github.com/dm-group-trakd/trakd", + "homepage": null, + "size": 565, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "dm-group-trakd:master", + "ref": "master", + "sha": "4586bdd4aba94009ee60a2d01710f50493f60fd7", + "user": { + "login": "dm-group-trakd", + "id": 56691813, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU2NjkxODEz", + "avatar_url": "https://avatars3.githubusercontent.com/u/56691813?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dm-group-trakd", + "html_url": "https://github.com/dm-group-trakd", + "followers_url": "https://api.github.com/users/dm-group-trakd/followers", + "following_url": "https://api.github.com/users/dm-group-trakd/following{/other_user}", + "gists_url": "https://api.github.com/users/dm-group-trakd/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dm-group-trakd/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dm-group-trakd/subscriptions", + "organizations_url": "https://api.github.com/users/dm-group-trakd/orgs", + "repos_url": "https://api.github.com/users/dm-group-trakd/repos", + "events_url": "https://api.github.com/users/dm-group-trakd/events{/privacy}", + "received_events_url": "https://api.github.com/users/dm-group-trakd/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 216093525, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTYwOTM1MjU=", + "name": "trakd", + "full_name": "dm-group-trakd/trakd", + "private": false, + "owner": { + "login": "dm-group-trakd", + "id": 56691813, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU2NjkxODEz", + "avatar_url": "https://avatars3.githubusercontent.com/u/56691813?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dm-group-trakd", + "html_url": "https://github.com/dm-group-trakd", + "followers_url": "https://api.github.com/users/dm-group-trakd/followers", + "following_url": "https://api.github.com/users/dm-group-trakd/following{/other_user}", + "gists_url": "https://api.github.com/users/dm-group-trakd/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dm-group-trakd/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dm-group-trakd/subscriptions", + "organizations_url": "https://api.github.com/users/dm-group-trakd/orgs", + "repos_url": "https://api.github.com/users/dm-group-trakd/repos", + "events_url": "https://api.github.com/users/dm-group-trakd/events{/privacy}", + "received_events_url": "https://api.github.com/users/dm-group-trakd/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/dm-group-trakd/trakd", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/dm-group-trakd/trakd", + "forks_url": "https://api.github.com/repos/dm-group-trakd/trakd/forks", + "keys_url": "https://api.github.com/repos/dm-group-trakd/trakd/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/dm-group-trakd/trakd/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/dm-group-trakd/trakd/teams", + "hooks_url": "https://api.github.com/repos/dm-group-trakd/trakd/hooks", + "issue_events_url": "https://api.github.com/repos/dm-group-trakd/trakd/issues/events{/number}", + "events_url": "https://api.github.com/repos/dm-group-trakd/trakd/events", + "assignees_url": "https://api.github.com/repos/dm-group-trakd/trakd/assignees{/user}", + "branches_url": "https://api.github.com/repos/dm-group-trakd/trakd/branches{/branch}", + "tags_url": "https://api.github.com/repos/dm-group-trakd/trakd/tags", + "blobs_url": "https://api.github.com/repos/dm-group-trakd/trakd/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/dm-group-trakd/trakd/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/dm-group-trakd/trakd/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/dm-group-trakd/trakd/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/dm-group-trakd/trakd/statuses/{sha}", + "languages_url": "https://api.github.com/repos/dm-group-trakd/trakd/languages", + "stargazers_url": "https://api.github.com/repos/dm-group-trakd/trakd/stargazers", + "contributors_url": "https://api.github.com/repos/dm-group-trakd/trakd/contributors", + "subscribers_url": "https://api.github.com/repos/dm-group-trakd/trakd/subscribers", + "subscription_url": "https://api.github.com/repos/dm-group-trakd/trakd/subscription", + "commits_url": "https://api.github.com/repos/dm-group-trakd/trakd/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/dm-group-trakd/trakd/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/dm-group-trakd/trakd/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/dm-group-trakd/trakd/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/dm-group-trakd/trakd/contents/{+path}", + "compare_url": "https://api.github.com/repos/dm-group-trakd/trakd/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/dm-group-trakd/trakd/merges", + "archive_url": "https://api.github.com/repos/dm-group-trakd/trakd/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/dm-group-trakd/trakd/downloads", + "issues_url": "https://api.github.com/repos/dm-group-trakd/trakd/issues{/number}", + "pulls_url": "https://api.github.com/repos/dm-group-trakd/trakd/pulls{/number}", + "milestones_url": "https://api.github.com/repos/dm-group-trakd/trakd/milestones{/number}", + "notifications_url": "https://api.github.com/repos/dm-group-trakd/trakd/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/dm-group-trakd/trakd/labels{/name}", + "releases_url": "https://api.github.com/repos/dm-group-trakd/trakd/releases{/id}", + "deployments_url": "https://api.github.com/repos/dm-group-trakd/trakd/deployments", + "created_at": "2019-10-18T19:27:15Z", + "updated_at": "2019-10-21T20:32:39Z", + "pushed_at": "2019-10-21T21:54:48Z", + "git_url": "git://github.com/dm-group-trakd/trakd.git", + "ssh_url": "git@github.com:dm-group-trakd/trakd.git", + "clone_url": "https://github.com/dm-group-trakd/trakd.git", + "svn_url": "https://github.com/dm-group-trakd/trakd", + "homepage": null, + "size": 565, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/dm-group-trakd/trakd/pulls/18" + }, + "html": { + "href": "https://github.com/dm-group-trakd/trakd/pull/18" + }, + "issue": { + "href": "https://api.github.com/repos/dm-group-trakd/trakd/issues/18" + }, + "comments": { + "href": "https://api.github.com/repos/dm-group-trakd/trakd/issues/18/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/dm-group-trakd/trakd/pulls/18/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/dm-group-trakd/trakd/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/dm-group-trakd/trakd/pulls/18/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/dm-group-trakd/trakd/statuses/66a7bf7d92111a5056813ae964574d48e431b470" + } + }, + "author_association": "CONTRIBUTOR", + "merged": true, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": { + "login": "esellors", + "id": 4157996, + "node_id": "MDQ6VXNlcjQxNTc5OTY=", + "avatar_url": "https://avatars2.githubusercontent.com/u/4157996?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/esellors", + "html_url": "https://github.com/esellors", + "followers_url": "https://api.github.com/users/esellors/followers", + "following_url": "https://api.github.com/users/esellors/following{/other_user}", + "gists_url": "https://api.github.com/users/esellors/gists{/gist_id}", + "starred_url": "https://api.github.com/users/esellors/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/esellors/subscriptions", + "organizations_url": "https://api.github.com/users/esellors/orgs", + "repos_url": "https://api.github.com/users/esellors/repos", + "events_url": "https://api.github.com/users/esellors/events{/privacy}", + "received_events_url": "https://api.github.com/users/esellors/received_events", + "type": "User", + "site_admin": false + }, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 7, + "additions": 389, + "deletions": 7, + "changed_files": 7 + } + }, + "public": true, + "created_at": "2019-10-21T21:54:48Z", + "org": { + "id": 56691813, + "login": "dm-group-trakd", + "gravatar_id": "", + "url": "https://api.github.com/orgs/dm-group-trakd", + "avatar_url": "https://avatars.githubusercontent.com/u/56691813?" + } + }, + { + "id": "10680624970", + "type": "PushEvent", + "actor": { + "id": 52138860, + "login": "vitoperez117", + "display_login": "vitoperez117", + "gravatar_id": "", + "url": "https://api.github.com/users/vitoperez117", + "avatar_url": "https://avatars.githubusercontent.com/u/52138860?" + }, + "repo": { + "id": 215708182, + "name": "vitoperez117/python-api-challenge", + "url": "https://api.github.com/repos/vitoperez117/python-api-challenge" + }, + "payload": { + "push_id": 4176854878, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "6ce7de98689be2a91f3455f0fe83754252658073", + "before": "2d14bcf9d9906d1ef9aa124b3ed168e926b45334", + "commits": [ + { + "sha": "6ce7de98689be2a91f3455f0fe83754252658073", + "author": { + "email": "vito@vitos-mbp.home", + "name": "Vito" + }, + "message": "update readme", + "distinct": true, + "url": "https://api.github.com/repos/vitoperez117/python-api-challenge/commits/6ce7de98689be2a91f3455f0fe83754252658073" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:48Z" + }, + { + "id": "10680624965", + "type": "PullRequestEvent", + "actor": { + "id": 190297, + "login": "PiotrSikora", + "display_login": "PiotrSikora", + "gravatar_id": "", + "url": "https://api.github.com/users/PiotrSikora", + "avatar_url": "https://avatars.githubusercontent.com/u/190297?" + }, + "repo": { + "id": 185880979, + "name": "envoyproxy/envoy-wasm", + "url": "https://api.github.com/repos/envoyproxy/envoy-wasm" + }, + "payload": { + "action": "closed", + "number": 267, + "pull_request": { + "url": "https://api.github.com/repos/envoyproxy/envoy-wasm/pulls/267", + "id": 330325128, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzMwMzI1MTI4", + "html_url": "https://github.com/envoyproxy/envoy-wasm/pull/267", + "diff_url": "https://github.com/envoyproxy/envoy-wasm/pull/267.diff", + "patch_url": "https://github.com/envoyproxy/envoy-wasm/pull/267.patch", + "issue_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/issues/267", + "number": 267, + "state": "closed", + "locked": false, + "title": "Remove support for __errno_location.", + "user": { + "login": "PiotrSikora", + "id": 190297, + "node_id": "MDQ6VXNlcjE5MDI5Nw==", + "avatar_url": "https://avatars3.githubusercontent.com/u/190297?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PiotrSikora", + "html_url": "https://github.com/PiotrSikora", + "followers_url": "https://api.github.com/users/PiotrSikora/followers", + "following_url": "https://api.github.com/users/PiotrSikora/following{/other_user}", + "gists_url": "https://api.github.com/users/PiotrSikora/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PiotrSikora/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PiotrSikora/subscriptions", + "organizations_url": "https://api.github.com/users/PiotrSikora/orgs", + "repos_url": "https://api.github.com/users/PiotrSikora/repos", + "events_url": "https://api.github.com/users/PiotrSikora/events{/privacy}", + "received_events_url": "https://api.github.com/users/PiotrSikora/received_events", + "type": "User", + "site_admin": false + }, + "body": "We don't need it anymore. Missed in #260.\r\n\r\nSigned-off-by: Piotr Sikora ", + "created_at": "2019-10-21T10:10:19Z", + "updated_at": "2019-10-21T21:54:47Z", + "closed_at": "2019-10-21T21:54:47Z", + "merged_at": "2019-10-21T21:54:47Z", + "merge_commit_sha": "5b4a25e4146fb31ccfa425c70843ff43bd2814c3", + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/pulls/267/commits", + "review_comments_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/pulls/267/comments", + "review_comment_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/issues/267/comments", + "statuses_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/statuses/74abaed902e429f448dc7a271766453044fb452c", + "head": { + "label": "PiotrSikora:errno", + "ref": "errno", + "sha": "74abaed902e429f448dc7a271766453044fb452c", + "user": { + "login": "PiotrSikora", + "id": 190297, + "node_id": "MDQ6VXNlcjE5MDI5Nw==", + "avatar_url": "https://avatars3.githubusercontent.com/u/190297?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PiotrSikora", + "html_url": "https://github.com/PiotrSikora", + "followers_url": "https://api.github.com/users/PiotrSikora/followers", + "following_url": "https://api.github.com/users/PiotrSikora/following{/other_user}", + "gists_url": "https://api.github.com/users/PiotrSikora/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PiotrSikora/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PiotrSikora/subscriptions", + "organizations_url": "https://api.github.com/users/PiotrSikora/orgs", + "repos_url": "https://api.github.com/users/PiotrSikora/repos", + "events_url": "https://api.github.com/users/PiotrSikora/events{/privacy}", + "received_events_url": "https://api.github.com/users/PiotrSikora/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 186988247, + "node_id": "MDEwOlJlcG9zaXRvcnkxODY5ODgyNDc=", + "name": "envoy-wasm", + "full_name": "PiotrSikora/envoy-wasm", + "private": false, + "owner": { + "login": "PiotrSikora", + "id": 190297, + "node_id": "MDQ6VXNlcjE5MDI5Nw==", + "avatar_url": "https://avatars3.githubusercontent.com/u/190297?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PiotrSikora", + "html_url": "https://github.com/PiotrSikora", + "followers_url": "https://api.github.com/users/PiotrSikora/followers", + "following_url": "https://api.github.com/users/PiotrSikora/following{/other_user}", + "gists_url": "https://api.github.com/users/PiotrSikora/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PiotrSikora/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PiotrSikora/subscriptions", + "organizations_url": "https://api.github.com/users/PiotrSikora/orgs", + "repos_url": "https://api.github.com/users/PiotrSikora/repos", + "events_url": "https://api.github.com/users/PiotrSikora/events{/privacy}", + "received_events_url": "https://api.github.com/users/PiotrSikora/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/PiotrSikora/envoy-wasm", + "description": "Playground for Envoy WASM filter", + "fork": true, + "url": "https://api.github.com/repos/PiotrSikora/envoy-wasm", + "forks_url": "https://api.github.com/repos/PiotrSikora/envoy-wasm/forks", + "keys_url": "https://api.github.com/repos/PiotrSikora/envoy-wasm/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/PiotrSikora/envoy-wasm/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/PiotrSikora/envoy-wasm/teams", + "hooks_url": "https://api.github.com/repos/PiotrSikora/envoy-wasm/hooks", + "issue_events_url": "https://api.github.com/repos/PiotrSikora/envoy-wasm/issues/events{/number}", + "events_url": "https://api.github.com/repos/PiotrSikora/envoy-wasm/events", + "assignees_url": "https://api.github.com/repos/PiotrSikora/envoy-wasm/assignees{/user}", + "branches_url": "https://api.github.com/repos/PiotrSikora/envoy-wasm/branches{/branch}", + "tags_url": "https://api.github.com/repos/PiotrSikora/envoy-wasm/tags", + "blobs_url": "https://api.github.com/repos/PiotrSikora/envoy-wasm/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/PiotrSikora/envoy-wasm/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/PiotrSikora/envoy-wasm/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/PiotrSikora/envoy-wasm/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/PiotrSikora/envoy-wasm/statuses/{sha}", + "languages_url": "https://api.github.com/repos/PiotrSikora/envoy-wasm/languages", + "stargazers_url": "https://api.github.com/repos/PiotrSikora/envoy-wasm/stargazers", + "contributors_url": "https://api.github.com/repos/PiotrSikora/envoy-wasm/contributors", + "subscribers_url": "https://api.github.com/repos/PiotrSikora/envoy-wasm/subscribers", + "subscription_url": "https://api.github.com/repos/PiotrSikora/envoy-wasm/subscription", + "commits_url": "https://api.github.com/repos/PiotrSikora/envoy-wasm/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/PiotrSikora/envoy-wasm/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/PiotrSikora/envoy-wasm/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/PiotrSikora/envoy-wasm/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/PiotrSikora/envoy-wasm/contents/{+path}", + "compare_url": "https://api.github.com/repos/PiotrSikora/envoy-wasm/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/PiotrSikora/envoy-wasm/merges", + "archive_url": "https://api.github.com/repos/PiotrSikora/envoy-wasm/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/PiotrSikora/envoy-wasm/downloads", + "issues_url": "https://api.github.com/repos/PiotrSikora/envoy-wasm/issues{/number}", + "pulls_url": "https://api.github.com/repos/PiotrSikora/envoy-wasm/pulls{/number}", + "milestones_url": "https://api.github.com/repos/PiotrSikora/envoy-wasm/milestones{/number}", + "notifications_url": "https://api.github.com/repos/PiotrSikora/envoy-wasm/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/PiotrSikora/envoy-wasm/labels{/name}", + "releases_url": "https://api.github.com/repos/PiotrSikora/envoy-wasm/releases{/id}", + "deployments_url": "https://api.github.com/repos/PiotrSikora/envoy-wasm/deployments", + "created_at": "2019-05-16T08:43:34Z", + "updated_at": "2019-05-17T20:43:11Z", + "pushed_at": "2019-10-21T19:10:54Z", + "git_url": "git://github.com/PiotrSikora/envoy-wasm.git", + "ssh_url": "git@github.com:PiotrSikora/envoy-wasm.git", + "clone_url": "https://github.com/PiotrSikora/envoy-wasm.git", + "svn_url": "https://github.com/PiotrSikora/envoy-wasm", + "homepage": null, + "size": 89135, + "stargazers_count": 0, + "watchers_count": 0, + "language": "WebAssembly", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "envoyproxy:master", + "ref": "master", + "sha": "4bd38639fe0332c55961505d4e091f72895b7f73", + "user": { + "login": "envoyproxy", + "id": 30125649, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMTI1NjQ5", + "avatar_url": "https://avatars1.githubusercontent.com/u/30125649?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/envoyproxy", + "html_url": "https://github.com/envoyproxy", + "followers_url": "https://api.github.com/users/envoyproxy/followers", + "following_url": "https://api.github.com/users/envoyproxy/following{/other_user}", + "gists_url": "https://api.github.com/users/envoyproxy/gists{/gist_id}", + "starred_url": "https://api.github.com/users/envoyproxy/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/envoyproxy/subscriptions", + "organizations_url": "https://api.github.com/users/envoyproxy/orgs", + "repos_url": "https://api.github.com/users/envoyproxy/repos", + "events_url": "https://api.github.com/users/envoyproxy/events{/privacy}", + "received_events_url": "https://api.github.com/users/envoyproxy/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 185880979, + "node_id": "MDEwOlJlcG9zaXRvcnkxODU4ODA5Nzk=", + "name": "envoy-wasm", + "full_name": "envoyproxy/envoy-wasm", + "private": false, + "owner": { + "login": "envoyproxy", + "id": 30125649, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMTI1NjQ5", + "avatar_url": "https://avatars1.githubusercontent.com/u/30125649?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/envoyproxy", + "html_url": "https://github.com/envoyproxy", + "followers_url": "https://api.github.com/users/envoyproxy/followers", + "following_url": "https://api.github.com/users/envoyproxy/following{/other_user}", + "gists_url": "https://api.github.com/users/envoyproxy/gists{/gist_id}", + "starred_url": "https://api.github.com/users/envoyproxy/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/envoyproxy/subscriptions", + "organizations_url": "https://api.github.com/users/envoyproxy/orgs", + "repos_url": "https://api.github.com/users/envoyproxy/repos", + "events_url": "https://api.github.com/users/envoyproxy/events{/privacy}", + "received_events_url": "https://api.github.com/users/envoyproxy/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/envoyproxy/envoy-wasm", + "description": "Playground for Envoy WASM filter", + "fork": false, + "url": "https://api.github.com/repos/envoyproxy/envoy-wasm", + "forks_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/forks", + "keys_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/teams", + "hooks_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/hooks", + "issue_events_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/issues/events{/number}", + "events_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/events", + "assignees_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/assignees{/user}", + "branches_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/branches{/branch}", + "tags_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/tags", + "blobs_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/statuses/{sha}", + "languages_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/languages", + "stargazers_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/stargazers", + "contributors_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/contributors", + "subscribers_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/subscribers", + "subscription_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/subscription", + "commits_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/contents/{+path}", + "compare_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/merges", + "archive_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/downloads", + "issues_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/issues{/number}", + "pulls_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/pulls{/number}", + "milestones_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/milestones{/number}", + "notifications_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/labels{/name}", + "releases_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/releases{/id}", + "deployments_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/deployments", + "created_at": "2019-05-09T22:37:07Z", + "updated_at": "2019-10-21T02:05:58Z", + "pushed_at": "2019-10-21T21:54:47Z", + "git_url": "git://github.com/envoyproxy/envoy-wasm.git", + "ssh_url": "git@github.com:envoyproxy/envoy-wasm.git", + "clone_url": "https://github.com/envoyproxy/envoy-wasm.git", + "svn_url": "https://github.com/envoyproxy/envoy-wasm", + "homepage": null, + "size": 88503, + "stargazers_count": 61, + "watchers_count": 61, + "language": "C++", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 26, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 66, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 26, + "open_issues": 66, + "watchers": 61, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/envoyproxy/envoy-wasm/pulls/267" + }, + "html": { + "href": "https://github.com/envoyproxy/envoy-wasm/pull/267" + }, + "issue": { + "href": "https://api.github.com/repos/envoyproxy/envoy-wasm/issues/267" + }, + "comments": { + "href": "https://api.github.com/repos/envoyproxy/envoy-wasm/issues/267/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/envoyproxy/envoy-wasm/pulls/267/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/envoyproxy/envoy-wasm/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/envoyproxy/envoy-wasm/pulls/267/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/envoyproxy/envoy-wasm/statuses/74abaed902e429f448dc7a271766453044fb452c" + } + }, + "author_association": "MEMBER", + "merged": true, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": { + "login": "PiotrSikora", + "id": 190297, + "node_id": "MDQ6VXNlcjE5MDI5Nw==", + "avatar_url": "https://avatars3.githubusercontent.com/u/190297?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PiotrSikora", + "html_url": "https://github.com/PiotrSikora", + "followers_url": "https://api.github.com/users/PiotrSikora/followers", + "following_url": "https://api.github.com/users/PiotrSikora/following{/other_user}", + "gists_url": "https://api.github.com/users/PiotrSikora/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PiotrSikora/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PiotrSikora/subscriptions", + "organizations_url": "https://api.github.com/users/PiotrSikora/orgs", + "repos_url": "https://api.github.com/users/PiotrSikora/repos", + "events_url": "https://api.github.com/users/PiotrSikora/events{/privacy}", + "received_events_url": "https://api.github.com/users/PiotrSikora/received_events", + "type": "User", + "site_admin": false + }, + "comments": 1, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 2, + "deletions": 20, + "changed_files": 3 + } + }, + "public": true, + "created_at": "2019-10-21T21:54:48Z", + "org": { + "id": 30125649, + "login": "envoyproxy", + "gravatar_id": "", + "url": "https://api.github.com/orgs/envoyproxy", + "avatar_url": "https://avatars.githubusercontent.com/u/30125649?" + } + }, + { + "id": "10680624961", + "type": "IssuesEvent", + "actor": { + "id": 28238025, + "login": "dekkerglen", + "display_login": "dekkerglen", + "gravatar_id": "", + "url": "https://api.github.com/users/dekkerglen", + "avatar_url": "https://avatars.githubusercontent.com/u/28238025?" + }, + "repo": { + "id": 199488444, + "name": "dekkerglen/CubeCobra", + "url": "https://api.github.com/repos/dekkerglen/CubeCobra" + }, + "payload": { + "action": "closed", + "issue": { + "url": "https://api.github.com/repos/dekkerglen/CubeCobra/issues/607", + "repository_url": "https://api.github.com/repos/dekkerglen/CubeCobra", + "labels_url": "https://api.github.com/repos/dekkerglen/CubeCobra/issues/607/labels{/name}", + "comments_url": "https://api.github.com/repos/dekkerglen/CubeCobra/issues/607/comments", + "events_url": "https://api.github.com/repos/dekkerglen/CubeCobra/issues/607/events", + "html_url": "https://github.com/dekkerglen/CubeCobra/issues/607", + "id": 507291698, + "node_id": "MDU6SXNzdWU1MDcyOTE2OTg=", + "number": 607, + "title": "The price in card view disappears when you change version.", + "user": { + "login": "Balkmeister", + "id": 12525888, + "node_id": "MDQ6VXNlcjEyNTI1ODg4", + "avatar_url": "https://avatars3.githubusercontent.com/u/12525888?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Balkmeister", + "html_url": "https://github.com/Balkmeister", + "followers_url": "https://api.github.com/users/Balkmeister/followers", + "following_url": "https://api.github.com/users/Balkmeister/following{/other_user}", + "gists_url": "https://api.github.com/users/Balkmeister/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Balkmeister/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Balkmeister/subscriptions", + "organizations_url": "https://api.github.com/users/Balkmeister/orgs", + "repos_url": "https://api.github.com/users/Balkmeister/repos", + "events_url": "https://api.github.com/users/Balkmeister/events{/privacy}", + "received_events_url": "https://api.github.com/users/Balkmeister/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2019-10-15T14:41:20Z", + "updated_at": "2019-10-21T21:54:47Z", + "closed_at": "2019-10-21T21:54:47Z", + "author_association": "NONE", + "body": "**Describe the bug**\r\nThe box containing price of a card in the card view disapears if you change the version of the card from the drop down.\r\n\r\n**To Reproduce**\r\nSteps to reproduce the behavior:\r\n1. click on any card that have multiple versions\r\n2. click the version selector drop down and select a different version\r\n3. the price displayed below the card image disappears.\r\n**Screenshots**\r\nIf applicable, add screenshots to help explain your problem.\r\n![image](https://user-images.githubusercontent.com/12525888/66841823-8779f780-ef6a-11e9-9887-559e934e25ca.png)\r\n\r\n![image](https://user-images.githubusercontent.com/12525888/66841704-66190b80-ef6a-11e9-9841-d2cce15188b9.png)\r\n\r\n\r\n**Desktop (please complete the following information):**\r\n - OS: [e.g. iOS]\r\n - Browser [e.g. chrome, safari]\r\n - Version [e.g. 22]\r\n\r\n**Smartphone (please complete the following information):**\r\n - Device: laptop\r\n - OS: win 10\r\n - Browser chrome\r\n - Version [e.g. 22]\r\n\r\n**Additional context**\r\nAdd any other context about the problem here.\r\n" + } + }, + "public": true, + "created_at": "2019-10-21T21:54:48Z" + }, + { + "id": "10680624960", + "type": "PullRequestReviewCommentEvent", + "actor": { + "id": 50109276, + "login": "AndrewCopeland", + "display_login": "AndrewCopeland", + "gravatar_id": "", + "url": "https://api.github.com/users/AndrewCopeland", + "avatar_url": "https://avatars.githubusercontent.com/u/50109276?" + }, + "repo": { + "id": 62174977, + "name": "cyberark/conjur", + "url": "https://api.github.com/repos/cyberark/conjur" + }, + "payload": { + "action": "created", + "comment": { + "url": "https://api.github.com/repos/cyberark/conjur/pulls/comments/337257960", + "pull_request_review_id": 304874130, + "id": 337257960, + "node_id": "MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDMzNzI1Nzk2MA==", + "diff_hunk": "@@ -0,0 +1,111 @@\n+# frozen_string_literal: true\n+require 'json'\n+\n+module Authentication\n+ module AuthnJenkins\n+ class Authenticator\n+\n+ Err = Errors::Authentication::AuthnJenkins\n+ def initialize(env:)\n+ @env = env\n+ end\n+\n+ def webservice\n+ @webservice ||= ::Authentication::Webservice.new(\n+ account: @account,\n+ authenticator_name: @authenticator_name,\n+ service_id: @service_id\n+ )\n+ end\n+\n+ def http_get_request(url, username, password) ", + "path": "app/domain/authentication/authn_jenkins/authenticator.rb", + "position": null, + "original_position": 21, + "commit_id": "d16c40c290d4f1ac139b101cd089a1635f20db29", + "original_commit_id": "9e4e54c791825ef3d91e878161a39aacc7705c31", + "user": { + "login": "AndrewCopeland", + "id": 50109276, + "node_id": "MDQ6VXNlcjUwMTA5Mjc2", + "avatar_url": "https://avatars0.githubusercontent.com/u/50109276?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/AndrewCopeland", + "html_url": "https://github.com/AndrewCopeland", + "followers_url": "https://api.github.com/users/AndrewCopeland/followers", + "following_url": "https://api.github.com/users/AndrewCopeland/following{/other_user}", + "gists_url": "https://api.github.com/users/AndrewCopeland/gists{/gist_id}", + "starred_url": "https://api.github.com/users/AndrewCopeland/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/AndrewCopeland/subscriptions", + "organizations_url": "https://api.github.com/users/AndrewCopeland/orgs", + "repos_url": "https://api.github.com/users/AndrewCopeland/repos", + "events_url": "https://api.github.com/users/AndrewCopeland/events{/privacy}", + "received_events_url": "https://api.github.com/users/AndrewCopeland/received_events", + "type": "User", + "site_admin": false + }, + "body": "Added jenkins client in this commit: https://github.com/AndrewCopeland/conjur/commit/d16c40c290d4f1ac139b101cd089a1635f20db29", + "created_at": "2019-10-21T21:54:47Z", + "updated_at": "2019-10-21T21:54:47Z", + "html_url": "https://github.com/cyberark/conjur/pull/1209#discussion_r337257960", + "pull_request_url": "https://api.github.com/repos/cyberark/conjur/pulls/1209", + "author_association": "NONE", + "_links": { + "self": { + "href": "https://api.github.com/repos/cyberark/conjur/pulls/comments/337257960" + }, + "html": { + "href": "https://github.com/cyberark/conjur/pull/1209#discussion_r337257960" + }, + "pull_request": { + "href": "https://api.github.com/repos/cyberark/conjur/pulls/1209" + } + }, + "in_reply_to_id": 336689699 + }, + "pull_request": { + "url": "https://api.github.com/repos/cyberark/conjur/pulls/1209", + "id": 329291792, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzI5MjkxNzky", + "html_url": "https://github.com/cyberark/conjur/pull/1209", + "diff_url": "https://github.com/cyberark/conjur/pull/1209.diff", + "patch_url": "https://github.com/cyberark/conjur/pull/1209.patch", + "issue_url": "https://api.github.com/repos/cyberark/conjur/issues/1209", + "number": 1209, + "state": "open", + "locked": false, + "title": "Authenticate specific jenkins jobs during run time (authn-jenkins)", + "user": { + "login": "AndrewCopeland", + "id": 50109276, + "node_id": "MDQ6VXNlcjUwMTA5Mjc2", + "avatar_url": "https://avatars0.githubusercontent.com/u/50109276?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/AndrewCopeland", + "html_url": "https://github.com/AndrewCopeland", + "followers_url": "https://api.github.com/users/AndrewCopeland/followers", + "following_url": "https://api.github.com/users/AndrewCopeland/following{/other_user}", + "gists_url": "https://api.github.com/users/AndrewCopeland/gists{/gist_id}", + "starred_url": "https://api.github.com/users/AndrewCopeland/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/AndrewCopeland/subscriptions", + "organizations_url": "https://api.github.com/users/AndrewCopeland/orgs", + "repos_url": "https://api.github.com/users/AndrewCopeland/repos", + "events_url": "https://api.github.com/users/AndrewCopeland/events{/privacy}", + "received_events_url": "https://api.github.com/users/AndrewCopeland/received_events", + "type": "User", + "site_admin": false + }, + "body": "#### What does this PR do?\r\nIt allows jenkins jobs to authenticate to conjur without the need of a stored api key. Also it allows the ability to specifically authenticate a job rather than an entire host.\r\n\r\n#### Any background context you want to provide?\r\n#### What ticket does this PR close?\r\nConnected to [relevant GitHub issues, eg #76]\r\n#### Where should the reviewer start?\r\n#### How should this be manually tested?\r\nOpen jenkins, import the jenkins plugin that supports Jenkins JIT authentication.\r\nCreate a jenkins 'conjur authn' user.\r\nLoad the authn-jenkins policy and populate the variables 'jenkinsURL', 'jenkinsUsername' & 'jenkinsPassword'.\r\nCreate a host that has access to use the authn-jenkins policy and ends with the appropriate job name.\r\nCreate this job in jenkins and enter in the correct conjur metadata (URL, account, ssl cert, etc)\r\nCreate a pipeline that fetches a secret using the Conjur Credential Plugin.\r\nRun the pipeline. \r\n\r\n#### Screenshots (if appropriate)\r\n#### Has the Version and Changelog been updated?\r\nNo\r\n#### Questions:\r\n> Does this work have automated integration and unit tests?\r\nIt has unit tests, integration tests have not been created\r\n> Can we make a blog post, video, or animated GIF of this?\r\nYes\r\n> Has this change been documented (Readme, docs, etc.)?\r\nNo\r\n> Does the knowledge base need an update?\r\nYes (integration/authentication)", + "created_at": "2019-10-17T14:24:43Z", + "updated_at": "2019-10-21T21:54:47Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "92efedd067683f99f2c7065502968bd7702f880a", + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/cyberark/conjur/pulls/1209/commits", + "review_comments_url": "https://api.github.com/repos/cyberark/conjur/pulls/1209/comments", + "review_comment_url": "https://api.github.com/repos/cyberark/conjur/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/cyberark/conjur/issues/1209/comments", + "statuses_url": "https://api.github.com/repos/cyberark/conjur/statuses/d16c40c290d4f1ac139b101cd089a1635f20db29", + "head": { + "label": "AndrewCopeland:master", + "ref": "master", + "sha": "d16c40c290d4f1ac139b101cd089a1635f20db29", + "user": { + "login": "AndrewCopeland", + "id": 50109276, + "node_id": "MDQ6VXNlcjUwMTA5Mjc2", + "avatar_url": "https://avatars0.githubusercontent.com/u/50109276?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/AndrewCopeland", + "html_url": "https://github.com/AndrewCopeland", + "followers_url": "https://api.github.com/users/AndrewCopeland/followers", + "following_url": "https://api.github.com/users/AndrewCopeland/following{/other_user}", + "gists_url": "https://api.github.com/users/AndrewCopeland/gists{/gist_id}", + "starred_url": "https://api.github.com/users/AndrewCopeland/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/AndrewCopeland/subscriptions", + "organizations_url": "https://api.github.com/users/AndrewCopeland/orgs", + "repos_url": "https://api.github.com/users/AndrewCopeland/repos", + "events_url": "https://api.github.com/users/AndrewCopeland/events{/privacy}", + "received_events_url": "https://api.github.com/users/AndrewCopeland/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 213462449, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTM0NjI0NDk=", + "name": "conjur", + "full_name": "AndrewCopeland/conjur", + "private": false, + "owner": { + "login": "AndrewCopeland", + "id": 50109276, + "node_id": "MDQ6VXNlcjUwMTA5Mjc2", + "avatar_url": "https://avatars0.githubusercontent.com/u/50109276?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/AndrewCopeland", + "html_url": "https://github.com/AndrewCopeland", + "followers_url": "https://api.github.com/users/AndrewCopeland/followers", + "following_url": "https://api.github.com/users/AndrewCopeland/following{/other_user}", + "gists_url": "https://api.github.com/users/AndrewCopeland/gists{/gist_id}", + "starred_url": "https://api.github.com/users/AndrewCopeland/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/AndrewCopeland/subscriptions", + "organizations_url": "https://api.github.com/users/AndrewCopeland/orgs", + "repos_url": "https://api.github.com/users/AndrewCopeland/repos", + "events_url": "https://api.github.com/users/AndrewCopeland/events{/privacy}", + "received_events_url": "https://api.github.com/users/AndrewCopeland/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/AndrewCopeland/conjur", + "description": "CyberArk Conjur automatically secures secrets used by privileged users and machine identities", + "fork": true, + "url": "https://api.github.com/repos/AndrewCopeland/conjur", + "forks_url": "https://api.github.com/repos/AndrewCopeland/conjur/forks", + "keys_url": "https://api.github.com/repos/AndrewCopeland/conjur/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/AndrewCopeland/conjur/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/AndrewCopeland/conjur/teams", + "hooks_url": "https://api.github.com/repos/AndrewCopeland/conjur/hooks", + "issue_events_url": "https://api.github.com/repos/AndrewCopeland/conjur/issues/events{/number}", + "events_url": "https://api.github.com/repos/AndrewCopeland/conjur/events", + "assignees_url": "https://api.github.com/repos/AndrewCopeland/conjur/assignees{/user}", + "branches_url": "https://api.github.com/repos/AndrewCopeland/conjur/branches{/branch}", + "tags_url": "https://api.github.com/repos/AndrewCopeland/conjur/tags", + "blobs_url": "https://api.github.com/repos/AndrewCopeland/conjur/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/AndrewCopeland/conjur/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/AndrewCopeland/conjur/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/AndrewCopeland/conjur/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/AndrewCopeland/conjur/statuses/{sha}", + "languages_url": "https://api.github.com/repos/AndrewCopeland/conjur/languages", + "stargazers_url": "https://api.github.com/repos/AndrewCopeland/conjur/stargazers", + "contributors_url": "https://api.github.com/repos/AndrewCopeland/conjur/contributors", + "subscribers_url": "https://api.github.com/repos/AndrewCopeland/conjur/subscribers", + "subscription_url": "https://api.github.com/repos/AndrewCopeland/conjur/subscription", + "commits_url": "https://api.github.com/repos/AndrewCopeland/conjur/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/AndrewCopeland/conjur/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/AndrewCopeland/conjur/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/AndrewCopeland/conjur/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/AndrewCopeland/conjur/contents/{+path}", + "compare_url": "https://api.github.com/repos/AndrewCopeland/conjur/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/AndrewCopeland/conjur/merges", + "archive_url": "https://api.github.com/repos/AndrewCopeland/conjur/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/AndrewCopeland/conjur/downloads", + "issues_url": "https://api.github.com/repos/AndrewCopeland/conjur/issues{/number}", + "pulls_url": "https://api.github.com/repos/AndrewCopeland/conjur/pulls{/number}", + "milestones_url": "https://api.github.com/repos/AndrewCopeland/conjur/milestones{/number}", + "notifications_url": "https://api.github.com/repos/AndrewCopeland/conjur/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/AndrewCopeland/conjur/labels{/name}", + "releases_url": "https://api.github.com/repos/AndrewCopeland/conjur/releases{/id}", + "deployments_url": "https://api.github.com/repos/AndrewCopeland/conjur/deployments", + "created_at": "2019-10-07T18:55:27Z", + "updated_at": "2019-10-21T21:53:18Z", + "pushed_at": "2019-10-21T21:53:16Z", + "git_url": "git://github.com/AndrewCopeland/conjur.git", + "ssh_url": "git@github.com:AndrewCopeland/conjur.git", + "clone_url": "https://github.com/AndrewCopeland/conjur.git", + "svn_url": "https://github.com/AndrewCopeland/conjur", + "homepage": "https://conjur.org", + "size": 9456, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Ruby", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "lgpl-3.0", + "name": "GNU Lesser General Public License v3.0", + "spdx_id": "LGPL-3.0", + "url": "https://api.github.com/licenses/lgpl-3.0", + "node_id": "MDc6TGljZW5zZTEy" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "cyberark:master", + "ref": "master", + "sha": "ccf74318168be925bd62753926ae6b46ccce67aa", + "user": { + "login": "cyberark", + "id": 30869256, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwODY5MjU2", + "avatar_url": "https://avatars3.githubusercontent.com/u/30869256?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyberark", + "html_url": "https://github.com/cyberark", + "followers_url": "https://api.github.com/users/cyberark/followers", + "following_url": "https://api.github.com/users/cyberark/following{/other_user}", + "gists_url": "https://api.github.com/users/cyberark/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyberark/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyberark/subscriptions", + "organizations_url": "https://api.github.com/users/cyberark/orgs", + "repos_url": "https://api.github.com/users/cyberark/repos", + "events_url": "https://api.github.com/users/cyberark/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyberark/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 62174977, + "node_id": "MDEwOlJlcG9zaXRvcnk2MjE3NDk3Nw==", + "name": "conjur", + "full_name": "cyberark/conjur", + "private": false, + "owner": { + "login": "cyberark", + "id": 30869256, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwODY5MjU2", + "avatar_url": "https://avatars3.githubusercontent.com/u/30869256?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyberark", + "html_url": "https://github.com/cyberark", + "followers_url": "https://api.github.com/users/cyberark/followers", + "following_url": "https://api.github.com/users/cyberark/following{/other_user}", + "gists_url": "https://api.github.com/users/cyberark/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyberark/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyberark/subscriptions", + "organizations_url": "https://api.github.com/users/cyberark/orgs", + "repos_url": "https://api.github.com/users/cyberark/repos", + "events_url": "https://api.github.com/users/cyberark/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyberark/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cyberark/conjur", + "description": "CyberArk Conjur automatically secures secrets used by privileged users and machine identities", + "fork": false, + "url": "https://api.github.com/repos/cyberark/conjur", + "forks_url": "https://api.github.com/repos/cyberark/conjur/forks", + "keys_url": "https://api.github.com/repos/cyberark/conjur/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cyberark/conjur/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cyberark/conjur/teams", + "hooks_url": "https://api.github.com/repos/cyberark/conjur/hooks", + "issue_events_url": "https://api.github.com/repos/cyberark/conjur/issues/events{/number}", + "events_url": "https://api.github.com/repos/cyberark/conjur/events", + "assignees_url": "https://api.github.com/repos/cyberark/conjur/assignees{/user}", + "branches_url": "https://api.github.com/repos/cyberark/conjur/branches{/branch}", + "tags_url": "https://api.github.com/repos/cyberark/conjur/tags", + "blobs_url": "https://api.github.com/repos/cyberark/conjur/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cyberark/conjur/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cyberark/conjur/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cyberark/conjur/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cyberark/conjur/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cyberark/conjur/languages", + "stargazers_url": "https://api.github.com/repos/cyberark/conjur/stargazers", + "contributors_url": "https://api.github.com/repos/cyberark/conjur/contributors", + "subscribers_url": "https://api.github.com/repos/cyberark/conjur/subscribers", + "subscription_url": "https://api.github.com/repos/cyberark/conjur/subscription", + "commits_url": "https://api.github.com/repos/cyberark/conjur/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cyberark/conjur/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cyberark/conjur/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cyberark/conjur/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cyberark/conjur/contents/{+path}", + "compare_url": "https://api.github.com/repos/cyberark/conjur/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cyberark/conjur/merges", + "archive_url": "https://api.github.com/repos/cyberark/conjur/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cyberark/conjur/downloads", + "issues_url": "https://api.github.com/repos/cyberark/conjur/issues{/number}", + "pulls_url": "https://api.github.com/repos/cyberark/conjur/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cyberark/conjur/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cyberark/conjur/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cyberark/conjur/labels{/name}", + "releases_url": "https://api.github.com/repos/cyberark/conjur/releases{/id}", + "deployments_url": "https://api.github.com/repos/cyberark/conjur/deployments", + "created_at": "2016-06-28T21:18:07Z", + "updated_at": "2019-10-17T19:02:08Z", + "pushed_at": "2019-10-21T21:53:18Z", + "git_url": "git://github.com/cyberark/conjur.git", + "ssh_url": "git@github.com:cyberark/conjur.git", + "clone_url": "https://github.com/cyberark/conjur.git", + "svn_url": "https://github.com/cyberark/conjur", + "homepage": "https://conjur.org", + "size": 5288, + "stargazers_count": 320, + "watchers_count": 320, + "language": "Ruby", + "has_issues": true, + "has_projects": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 63, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 260, + "license": { + "key": "lgpl-3.0", + "name": "GNU Lesser General Public License v3.0", + "spdx_id": "LGPL-3.0", + "url": "https://api.github.com/licenses/lgpl-3.0", + "node_id": "MDc6TGljZW5zZTEy" + }, + "forks": 63, + "open_issues": 260, + "watchers": 320, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/cyberark/conjur/pulls/1209" + }, + "html": { + "href": "https://github.com/cyberark/conjur/pull/1209" + }, + "issue": { + "href": "https://api.github.com/repos/cyberark/conjur/issues/1209" + }, + "comments": { + "href": "https://api.github.com/repos/cyberark/conjur/issues/1209/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/cyberark/conjur/pulls/1209/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/cyberark/conjur/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/cyberark/conjur/pulls/1209/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/cyberark/conjur/statuses/d16c40c290d4f1ac139b101cd089a1635f20db29" + } + }, + "author_association": "NONE" + } + }, + "public": true, + "created_at": "2019-10-21T21:54:47Z", + "org": { + "id": 30869256, + "login": "cyberark", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cyberark", + "avatar_url": "https://avatars.githubusercontent.com/u/30869256?" + } + }, + { + "id": "10680624943", + "type": "PushEvent", + "actor": { + "id": 22123093, + "login": "oran2527", + "display_login": "oran2527", + "gravatar_id": "", + "url": "https://api.github.com/users/oran2527", + "avatar_url": "https://avatars.githubusercontent.com/u/22123093?" + }, + "repo": { + "id": 209381520, + "name": "oran2527/holbertonschool-low_level_programming", + "url": "https://api.github.com/repos/oran2527/holbertonschool-low_level_programming" + }, + "payload": { + "push_id": 4176854863, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "2282592b49f3c60b07f84135ddfd8d7199d93e2a", + "before": "f393ac03494aa2e71988f93d73243c6887bf1541", + "commits": [ + { + "sha": "2282592b49f3c60b07f84135ddfd8d7199d93e2a", + "author": { + "email": "orlago250183@gmail.com", + "name": "oran2527" + }, + "message": "fix", + "distinct": true, + "url": "https://api.github.com/repos/oran2527/holbertonschool-low_level_programming/commits/2282592b49f3c60b07f84135ddfd8d7199d93e2a" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:48Z" + }, + { + "id": "10680624948", + "type": "CreateEvent", + "actor": { + "id": 54295495, + "login": "J-danger", + "display_login": "J-danger", + "gravatar_id": "", + "url": "https://api.github.com/users/J-danger", + "avatar_url": "https://avatars.githubusercontent.com/u/54295495?" + }, + "repo": { + "id": 216654918, + "name": "J-danger/Project-Two", + "url": "https://api.github.com/repos/J-danger/Project-Two" + }, + "payload": { + "ref": "steveDesktop", + "ref_type": "branch", + "master_branch": "master", + "description": null, + "pusher_type": "user" + }, + "public": true, + "created_at": "2019-10-21T21:54:48Z" + }, + { + "id": "10680624935", + "type": "PushEvent", + "actor": { + "id": 51011840, + "login": "othhotro", + "display_login": "othhotro", + "gravatar_id": "", + "url": "https://api.github.com/users/othhotro", + "avatar_url": "https://avatars.githubusercontent.com/u/51011840?" + }, + "repo": { + "id": 201879384, + "name": "othhotro/Roo.Exe", + "url": "https://api.github.com/repos/othhotro/Roo.Exe" + }, + "payload": { + "push_id": 4176854859, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "908784246be05f222167f3f463e1423885f54ac5", + "before": "9e030787665d1dbf6f75f4020c52cb842d3cd17b", + "commits": [ + { + "sha": "908784246be05f222167f3f463e1423885f54ac5", + "author": { + "email": "oth.hotro@gmail.com", + "name": "oth.hotro@gmail.com" + }, + "message": "Lần chạy [2019-10-22 04-53]:Lần thứ 49", + "distinct": true, + "url": "https://api.github.com/repos/othhotro/Roo.Exe/commits/908784246be05f222167f3f463e1423885f54ac5" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:47Z" + }, + { + "id": "10680624939", + "type": "ForkEvent", + "actor": { + "id": 19598165, + "login": "pedroslark", + "display_login": "pedroslark", + "gravatar_id": "", + "url": "https://api.github.com/users/pedroslark", + "avatar_url": "https://avatars.githubusercontent.com/u/19598165?" + }, + "repo": { + "id": 162767986, + "name": "Aguiar16/curso-git-appice", + "url": "https://api.github.com/repos/Aguiar16/curso-git-appice" + }, + "payload": { + "forkee": { + "id": 216672334, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTY2NzIzMzQ=", + "name": "curso-git-appice", + "full_name": "pedroslark/curso-git-appice", + "private": false, + "owner": { + "login": "pedroslark", + "id": 19598165, + "node_id": "MDQ6VXNlcjE5NTk4MTY1", + "avatar_url": "https://avatars1.githubusercontent.com/u/19598165?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/pedroslark", + "html_url": "https://github.com/pedroslark", + "followers_url": "https://api.github.com/users/pedroslark/followers", + "following_url": "https://api.github.com/users/pedroslark/following{/other_user}", + "gists_url": "https://api.github.com/users/pedroslark/gists{/gist_id}", + "starred_url": "https://api.github.com/users/pedroslark/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/pedroslark/subscriptions", + "organizations_url": "https://api.github.com/users/pedroslark/orgs", + "repos_url": "https://api.github.com/users/pedroslark/repos", + "events_url": "https://api.github.com/users/pedroslark/events{/privacy}", + "received_events_url": "https://api.github.com/users/pedroslark/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/pedroslark/curso-git-appice", + "description": "Curso de git ministrado com carinho para a appicesoftware", + "fork": true, + "url": "https://api.github.com/repos/pedroslark/curso-git-appice", + "forks_url": "https://api.github.com/repos/pedroslark/curso-git-appice/forks", + "keys_url": "https://api.github.com/repos/pedroslark/curso-git-appice/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/pedroslark/curso-git-appice/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/pedroslark/curso-git-appice/teams", + "hooks_url": "https://api.github.com/repos/pedroslark/curso-git-appice/hooks", + "issue_events_url": "https://api.github.com/repos/pedroslark/curso-git-appice/issues/events{/number}", + "events_url": "https://api.github.com/repos/pedroslark/curso-git-appice/events", + "assignees_url": "https://api.github.com/repos/pedroslark/curso-git-appice/assignees{/user}", + "branches_url": "https://api.github.com/repos/pedroslark/curso-git-appice/branches{/branch}", + "tags_url": "https://api.github.com/repos/pedroslark/curso-git-appice/tags", + "blobs_url": "https://api.github.com/repos/pedroslark/curso-git-appice/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/pedroslark/curso-git-appice/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/pedroslark/curso-git-appice/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/pedroslark/curso-git-appice/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/pedroslark/curso-git-appice/statuses/{sha}", + "languages_url": "https://api.github.com/repos/pedroslark/curso-git-appice/languages", + "stargazers_url": "https://api.github.com/repos/pedroslark/curso-git-appice/stargazers", + "contributors_url": "https://api.github.com/repos/pedroslark/curso-git-appice/contributors", + "subscribers_url": "https://api.github.com/repos/pedroslark/curso-git-appice/subscribers", + "subscription_url": "https://api.github.com/repos/pedroslark/curso-git-appice/subscription", + "commits_url": "https://api.github.com/repos/pedroslark/curso-git-appice/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/pedroslark/curso-git-appice/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/pedroslark/curso-git-appice/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/pedroslark/curso-git-appice/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/pedroslark/curso-git-appice/contents/{+path}", + "compare_url": "https://api.github.com/repos/pedroslark/curso-git-appice/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/pedroslark/curso-git-appice/merges", + "archive_url": "https://api.github.com/repos/pedroslark/curso-git-appice/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/pedroslark/curso-git-appice/downloads", + "issues_url": "https://api.github.com/repos/pedroslark/curso-git-appice/issues{/number}", + "pulls_url": "https://api.github.com/repos/pedroslark/curso-git-appice/pulls{/number}", + "milestones_url": "https://api.github.com/repos/pedroslark/curso-git-appice/milestones{/number}", + "notifications_url": "https://api.github.com/repos/pedroslark/curso-git-appice/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/pedroslark/curso-git-appice/labels{/name}", + "releases_url": "https://api.github.com/repos/pedroslark/curso-git-appice/releases{/id}", + "deployments_url": "https://api.github.com/repos/pedroslark/curso-git-appice/deployments", + "created_at": "2019-10-21T21:54:47Z", + "updated_at": "2019-10-10T22:04:00Z", + "pushed_at": "2019-10-10T22:03:58Z", + "git_url": "git://github.com/pedroslark/curso-git-appice.git", + "ssh_url": "git@github.com:pedroslark/curso-git-appice.git", + "clone_url": "https://github.com/pedroslark/curso-git-appice.git", + "svn_url": "https://github.com/pedroslark/curso-git-appice", + "homepage": null, + "size": 6, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "public": true + } + }, + "public": true, + "created_at": "2019-10-21T21:54:48Z" + }, + { + "id": "10680624936", + "type": "WatchEvent", + "actor": { + "id": 471467, + "login": "g5pw", + "display_login": "g5pw", + "gravatar_id": "", + "url": "https://api.github.com/users/g5pw", + "avatar_url": "https://avatars.githubusercontent.com/u/471467?" + }, + "repo": { + "id": 103470104, + "name": "exclave/exclave", + "url": "https://api.github.com/repos/exclave/exclave" + }, + "payload": { + "action": "started" + }, + "public": true, + "created_at": "2019-10-21T21:54:48Z", + "org": { + "id": 31875913, + "login": "exclave", + "gravatar_id": "", + "url": "https://api.github.com/orgs/exclave", + "avatar_url": "https://avatars.githubusercontent.com/u/31875913?" + } + }, + { + "id": "10680624928", + "type": "PushEvent", + "actor": { + "id": 56806318, + "login": "Relights", + "display_login": "Relights", + "gravatar_id": "", + "url": "https://api.github.com/users/Relights", + "avatar_url": "https://avatars.githubusercontent.com/u/56806318?" + }, + "repo": { + "id": 216452792, + "name": "Relights/t3380bot", + "url": "https://api.github.com/repos/Relights/t3380bot" + }, + "payload": { + "push_id": 4176854855, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "c8c067d90454baf99eb4cb1f02306b6de748a2b7", + "before": "35f44d43437cfe431fc2ee4ad42cb2a790c9a789", + "commits": [ + { + "sha": "c8c067d90454baf99eb4cb1f02306b6de748a2b7", + "author": { + "email": "56806318+Relights@users.noreply.github.com", + "name": "Relights" + }, + "message": "Update play.js", + "distinct": true, + "url": "https://api.github.com/repos/Relights/t3380bot/commits/c8c067d90454baf99eb4cb1f02306b6de748a2b7" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:47Z" + }, + { + "id": "10680624921", + "type": "PullRequestReviewCommentEvent", + "actor": { + "id": 20525523, + "login": "choumx", + "display_login": "choumx", + "gravatar_id": "", + "url": "https://api.github.com/users/choumx", + "avatar_url": "https://avatars.githubusercontent.com/u/20525523?" + }, + "repo": { + "id": 41766002, + "name": "ampproject/amphtml", + "url": "https://api.github.com/repos/ampproject/amphtml" + }, + "payload": { + "action": "created", + "comment": { + "url": "https://api.github.com/repos/ampproject/amphtml/pulls/comments/337257953", + "pull_request_review_id": 304874125, + "id": 337257953, + "node_id": "MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDMzNzI1Nzk1Mw==", + "diff_hunk": "@@ -253,6 +257,11 @@ export class ResourcesImpl {\n });\n \n this.rebuildDomWhenReady_();\n+\n+ listen(this.win.document, 'scroll', e => this.scrolled_(e), {\n+ capture: true,\n+ passive: true,\n+ });", + "path": "src/service/resources-impl.js", + "position": 26, + "original_position": 26, + "commit_id": "d59d8cd0aa25cbb8c189d9df0abfce7988e291d5", + "original_commit_id": "d59d8cd0aa25cbb8c189d9df0abfce7988e291d5", + "user": { + "login": "choumx", + "id": 20525523, + "node_id": "MDQ6VXNlcjIwNTI1NTIz", + "avatar_url": "https://avatars1.githubusercontent.com/u/20525523?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/choumx", + "html_url": "https://github.com/choumx", + "followers_url": "https://api.github.com/users/choumx/followers", + "following_url": "https://api.github.com/users/choumx/following{/other_user}", + "gists_url": "https://api.github.com/users/choumx/gists{/gist_id}", + "starred_url": "https://api.github.com/users/choumx/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/choumx/subscriptions", + "organizations_url": "https://api.github.com/users/choumx/orgs", + "repos_url": "https://api.github.com/users/choumx/repos", + "events_url": "https://api.github.com/users/choumx/events{/privacy}", + "received_events_url": "https://api.github.com/users/choumx/received_events", + "type": "User", + "site_admin": false + }, + "body": "Should the handler be debounced?", + "created_at": "2019-10-21T21:54:47Z", + "updated_at": "2019-10-21T21:54:47Z", + "html_url": "https://github.com/ampproject/amphtml/pull/25172#discussion_r337257953", + "pull_request_url": "https://api.github.com/repos/ampproject/amphtml/pulls/25172", + "author_association": "CONTRIBUTOR", + "_links": { + "self": { + "href": "https://api.github.com/repos/ampproject/amphtml/pulls/comments/337257953" + }, + "html": { + "href": "https://github.com/ampproject/amphtml/pull/25172#discussion_r337257953" + }, + "pull_request": { + "href": "https://api.github.com/repos/ampproject/amphtml/pulls/25172" + } + } + }, + "pull_request": { + "url": "https://api.github.com/repos/ampproject/amphtml/pulls/25172", + "id": 330696383, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzMwNjk2Mzgz", + "html_url": "https://github.com/ampproject/amphtml/pull/25172", + "diff_url": "https://github.com/ampproject/amphtml/pull/25172.diff", + "patch_url": "https://github.com/ampproject/amphtml/pull/25172.patch", + "issue_url": "https://api.github.com/repos/ampproject/amphtml/issues/25172", + "number": 25172, + "state": "open", + "locked": false, + "title": "[WIP] ✨ Invalidate layout boxes in nested scrollers after scroll", + "user": { + "login": "jridgewell", + "id": 112982, + "node_id": "MDQ6VXNlcjExMjk4Mg==", + "avatar_url": "https://avatars1.githubusercontent.com/u/112982?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jridgewell", + "html_url": "https://github.com/jridgewell", + "followers_url": "https://api.github.com/users/jridgewell/followers", + "following_url": "https://api.github.com/users/jridgewell/following{/other_user}", + "gists_url": "https://api.github.com/users/jridgewell/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jridgewell/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jridgewell/subscriptions", + "organizations_url": "https://api.github.com/users/jridgewell/orgs", + "repos_url": "https://api.github.com/users/jridgewell/repos", + "events_url": "https://api.github.com/users/jridgewell/events{/privacy}", + "received_events_url": "https://api.github.com/users/jridgewell/received_events", + "type": "User", + "site_admin": false + }, + "body": "This accomplishes the main goal of Layers (supporting nested scrolling elements) by invalidating the layout boxes of elements inside a nested scrolling element after a scroll.\r\n\r\nEg, if an `` (once it migrates off of Ownership system) were to scroll, all ``s inside it would invalidate their layout boxes. Once the next Resources pass happens, the images would be remeasured, and we'll now detect that the image has moved closer/further from viewport.\r\n\r\nThe layout boxes themselves are still page-absolute and not viewport-relative. This means we keep the speed benefits that stopped us from shipping Layers.\r\n\r\nFixes https://github.com/ampproject/amphtml/issues/24929.", + "created_at": "2019-10-21T21:14:10Z", + "updated_at": "2019-10-21T21:54:47Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "bbd6209159c24f4ad5a414b0fb84b03f637562a5", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "dvoytenko", + "id": 726049, + "node_id": "MDQ6VXNlcjcyNjA0OQ==", + "avatar_url": "https://avatars0.githubusercontent.com/u/726049?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dvoytenko", + "html_url": "https://github.com/dvoytenko", + "followers_url": "https://api.github.com/users/dvoytenko/followers", + "following_url": "https://api.github.com/users/dvoytenko/following{/other_user}", + "gists_url": "https://api.github.com/users/dvoytenko/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dvoytenko/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dvoytenko/subscriptions", + "organizations_url": "https://api.github.com/users/dvoytenko/orgs", + "repos_url": "https://api.github.com/users/dvoytenko/repos", + "events_url": "https://api.github.com/users/dvoytenko/events{/privacy}", + "received_events_url": "https://api.github.com/users/dvoytenko/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [ + { + "id": 596633554, + "node_id": "MDU6TGFiZWw1OTY2MzM1NTQ=", + "url": "https://api.github.com/repos/ampproject/amphtml/labels/cla:%20yes", + "name": "cla: yes", + "color": "ededed", + "default": false + } + ], + "milestone": null, + "commits_url": "https://api.github.com/repos/ampproject/amphtml/pulls/25172/commits", + "review_comments_url": "https://api.github.com/repos/ampproject/amphtml/pulls/25172/comments", + "review_comment_url": "https://api.github.com/repos/ampproject/amphtml/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/ampproject/amphtml/issues/25172/comments", + "statuses_url": "https://api.github.com/repos/ampproject/amphtml/statuses/d59d8cd0aa25cbb8c189d9df0abfce7988e291d5", + "head": { + "label": "jridgewell:resources-scroll", + "ref": "resources-scroll", + "sha": "d59d8cd0aa25cbb8c189d9df0abfce7988e291d5", + "user": { + "login": "jridgewell", + "id": 112982, + "node_id": "MDQ6VXNlcjExMjk4Mg==", + "avatar_url": "https://avatars1.githubusercontent.com/u/112982?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jridgewell", + "html_url": "https://github.com/jridgewell", + "followers_url": "https://api.github.com/users/jridgewell/followers", + "following_url": "https://api.github.com/users/jridgewell/following{/other_user}", + "gists_url": "https://api.github.com/users/jridgewell/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jridgewell/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jridgewell/subscriptions", + "organizations_url": "https://api.github.com/users/jridgewell/orgs", + "repos_url": "https://api.github.com/users/jridgewell/repos", + "events_url": "https://api.github.com/users/jridgewell/events{/privacy}", + "received_events_url": "https://api.github.com/users/jridgewell/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 48198933, + "node_id": "MDEwOlJlcG9zaXRvcnk0ODE5ODkzMw==", + "name": "amphtml", + "full_name": "jridgewell/amphtml", + "private": false, + "owner": { + "login": "jridgewell", + "id": 112982, + "node_id": "MDQ6VXNlcjExMjk4Mg==", + "avatar_url": "https://avatars1.githubusercontent.com/u/112982?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jridgewell", + "html_url": "https://github.com/jridgewell", + "followers_url": "https://api.github.com/users/jridgewell/followers", + "following_url": "https://api.github.com/users/jridgewell/following{/other_user}", + "gists_url": "https://api.github.com/users/jridgewell/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jridgewell/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jridgewell/subscriptions", + "organizations_url": "https://api.github.com/users/jridgewell/orgs", + "repos_url": "https://api.github.com/users/jridgewell/repos", + "events_url": "https://api.github.com/users/jridgewell/events{/privacy}", + "received_events_url": "https://api.github.com/users/jridgewell/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/jridgewell/amphtml", + "description": "AMP HTML source code, samples, and documentation. See below for more info.", + "fork": true, + "url": "https://api.github.com/repos/jridgewell/amphtml", + "forks_url": "https://api.github.com/repos/jridgewell/amphtml/forks", + "keys_url": "https://api.github.com/repos/jridgewell/amphtml/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jridgewell/amphtml/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jridgewell/amphtml/teams", + "hooks_url": "https://api.github.com/repos/jridgewell/amphtml/hooks", + "issue_events_url": "https://api.github.com/repos/jridgewell/amphtml/issues/events{/number}", + "events_url": "https://api.github.com/repos/jridgewell/amphtml/events", + "assignees_url": "https://api.github.com/repos/jridgewell/amphtml/assignees{/user}", + "branches_url": "https://api.github.com/repos/jridgewell/amphtml/branches{/branch}", + "tags_url": "https://api.github.com/repos/jridgewell/amphtml/tags", + "blobs_url": "https://api.github.com/repos/jridgewell/amphtml/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jridgewell/amphtml/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jridgewell/amphtml/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jridgewell/amphtml/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jridgewell/amphtml/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jridgewell/amphtml/languages", + "stargazers_url": "https://api.github.com/repos/jridgewell/amphtml/stargazers", + "contributors_url": "https://api.github.com/repos/jridgewell/amphtml/contributors", + "subscribers_url": "https://api.github.com/repos/jridgewell/amphtml/subscribers", + "subscription_url": "https://api.github.com/repos/jridgewell/amphtml/subscription", + "commits_url": "https://api.github.com/repos/jridgewell/amphtml/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jridgewell/amphtml/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jridgewell/amphtml/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jridgewell/amphtml/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jridgewell/amphtml/contents/{+path}", + "compare_url": "https://api.github.com/repos/jridgewell/amphtml/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jridgewell/amphtml/merges", + "archive_url": "https://api.github.com/repos/jridgewell/amphtml/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jridgewell/amphtml/downloads", + "issues_url": "https://api.github.com/repos/jridgewell/amphtml/issues{/number}", + "pulls_url": "https://api.github.com/repos/jridgewell/amphtml/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jridgewell/amphtml/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jridgewell/amphtml/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jridgewell/amphtml/labels{/name}", + "releases_url": "https://api.github.com/repos/jridgewell/amphtml/releases{/id}", + "deployments_url": "https://api.github.com/repos/jridgewell/amphtml/deployments", + "created_at": "2015-12-17T21:21:35Z", + "updated_at": "2019-09-04T22:39:41Z", + "pushed_at": "2019-10-21T21:28:54Z", + "git_url": "git://github.com/jridgewell/amphtml.git", + "ssh_url": "git@github.com:jridgewell/amphtml.git", + "clone_url": "https://github.com/jridgewell/amphtml.git", + "svn_url": "https://github.com/jridgewell/amphtml", + "homepage": "http://justin.ridgewell.name/amphtml/", + "size": 665289, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": false, + "has_wiki": false, + "has_pages": true, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "ampproject:master", + "ref": "master", + "sha": "9e8a075958f4a7995ba8190c5becc32ef3108f89", + "user": { + "login": "ampproject", + "id": 14114390, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE0MTE0Mzkw", + "avatar_url": "https://avatars3.githubusercontent.com/u/14114390?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ampproject", + "html_url": "https://github.com/ampproject", + "followers_url": "https://api.github.com/users/ampproject/followers", + "following_url": "https://api.github.com/users/ampproject/following{/other_user}", + "gists_url": "https://api.github.com/users/ampproject/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ampproject/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ampproject/subscriptions", + "organizations_url": "https://api.github.com/users/ampproject/orgs", + "repos_url": "https://api.github.com/users/ampproject/repos", + "events_url": "https://api.github.com/users/ampproject/events{/privacy}", + "received_events_url": "https://api.github.com/users/ampproject/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 41766002, + "node_id": "MDEwOlJlcG9zaXRvcnk0MTc2NjAwMg==", + "name": "amphtml", + "full_name": "ampproject/amphtml", + "private": false, + "owner": { + "login": "ampproject", + "id": 14114390, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE0MTE0Mzkw", + "avatar_url": "https://avatars3.githubusercontent.com/u/14114390?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ampproject", + "html_url": "https://github.com/ampproject", + "followers_url": "https://api.github.com/users/ampproject/followers", + "following_url": "https://api.github.com/users/ampproject/following{/other_user}", + "gists_url": "https://api.github.com/users/ampproject/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ampproject/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ampproject/subscriptions", + "organizations_url": "https://api.github.com/users/ampproject/orgs", + "repos_url": "https://api.github.com/users/ampproject/repos", + "events_url": "https://api.github.com/users/ampproject/events{/privacy}", + "received_events_url": "https://api.github.com/users/ampproject/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/ampproject/amphtml", + "description": "The AMP web component framework.", + "fork": false, + "url": "https://api.github.com/repos/ampproject/amphtml", + "forks_url": "https://api.github.com/repos/ampproject/amphtml/forks", + "keys_url": "https://api.github.com/repos/ampproject/amphtml/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/ampproject/amphtml/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/ampproject/amphtml/teams", + "hooks_url": "https://api.github.com/repos/ampproject/amphtml/hooks", + "issue_events_url": "https://api.github.com/repos/ampproject/amphtml/issues/events{/number}", + "events_url": "https://api.github.com/repos/ampproject/amphtml/events", + "assignees_url": "https://api.github.com/repos/ampproject/amphtml/assignees{/user}", + "branches_url": "https://api.github.com/repos/ampproject/amphtml/branches{/branch}", + "tags_url": "https://api.github.com/repos/ampproject/amphtml/tags", + "blobs_url": "https://api.github.com/repos/ampproject/amphtml/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/ampproject/amphtml/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/ampproject/amphtml/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/ampproject/amphtml/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/ampproject/amphtml/statuses/{sha}", + "languages_url": "https://api.github.com/repos/ampproject/amphtml/languages", + "stargazers_url": "https://api.github.com/repos/ampproject/amphtml/stargazers", + "contributors_url": "https://api.github.com/repos/ampproject/amphtml/contributors", + "subscribers_url": "https://api.github.com/repos/ampproject/amphtml/subscribers", + "subscription_url": "https://api.github.com/repos/ampproject/amphtml/subscription", + "commits_url": "https://api.github.com/repos/ampproject/amphtml/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/ampproject/amphtml/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/ampproject/amphtml/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/ampproject/amphtml/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/ampproject/amphtml/contents/{+path}", + "compare_url": "https://api.github.com/repos/ampproject/amphtml/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/ampproject/amphtml/merges", + "archive_url": "https://api.github.com/repos/ampproject/amphtml/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/ampproject/amphtml/downloads", + "issues_url": "https://api.github.com/repos/ampproject/amphtml/issues{/number}", + "pulls_url": "https://api.github.com/repos/ampproject/amphtml/pulls{/number}", + "milestones_url": "https://api.github.com/repos/ampproject/amphtml/milestones{/number}", + "notifications_url": "https://api.github.com/repos/ampproject/amphtml/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/ampproject/amphtml/labels{/name}", + "releases_url": "https://api.github.com/repos/ampproject/amphtml/releases{/id}", + "deployments_url": "https://api.github.com/repos/ampproject/amphtml/deployments", + "created_at": "2015-09-01T22:10:53Z", + "updated_at": "2019-10-21T21:14:45Z", + "pushed_at": "2019-10-21T21:44:12Z", + "git_url": "git://github.com/ampproject/amphtml.git", + "ssh_url": "git@github.com:ampproject/amphtml.git", + "clone_url": "https://github.com/ampproject/amphtml.git", + "svn_url": "https://github.com/ampproject/amphtml", + "homepage": "https://amp.dev", + "size": 664022, + "stargazers_count": 13177, + "watchers_count": 13177, + "language": "JavaScript", + "has_issues": true, + "has_projects": true, + "has_downloads": false, + "has_wiki": false, + "has_pages": false, + "forks_count": 3217, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1641, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 3217, + "open_issues": 1641, + "watchers": 13177, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/ampproject/amphtml/pulls/25172" + }, + "html": { + "href": "https://github.com/ampproject/amphtml/pull/25172" + }, + "issue": { + "href": "https://api.github.com/repos/ampproject/amphtml/issues/25172" + }, + "comments": { + "href": "https://api.github.com/repos/ampproject/amphtml/issues/25172/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/ampproject/amphtml/pulls/25172/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/ampproject/amphtml/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/ampproject/amphtml/pulls/25172/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/ampproject/amphtml/statuses/d59d8cd0aa25cbb8c189d9df0abfce7988e291d5" + } + }, + "author_association": "MEMBER" + } + }, + "public": true, + "created_at": "2019-10-21T21:54:47Z", + "org": { + "id": 14114390, + "login": "ampproject", + "gravatar_id": "", + "url": "https://api.github.com/orgs/ampproject", + "avatar_url": "https://avatars.githubusercontent.com/u/14114390?" + } + }, + { + "id": "10680624924", + "type": "PullRequestEvent", + "actor": { + "id": 39632188, + "login": "AvalancheOfFox", + "display_login": "AvalancheOfFox", + "gravatar_id": "", + "url": "https://api.github.com/users/AvalancheOfFox", + "avatar_url": "https://avatars.githubusercontent.com/u/39632188?" + }, + "repo": { + "id": 214274481, + "name": "AvalancheOfFox/bodegadex-frontend", + "url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend" + }, + "payload": { + "action": "opened", + "number": 7, + "pull_request": { + "url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/pulls/7", + "id": 330711273, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzMwNzExMjcz", + "html_url": "https://github.com/AvalancheOfFox/bodegadex-frontend/pull/7", + "diff_url": "https://github.com/AvalancheOfFox/bodegadex-frontend/pull/7.diff", + "patch_url": "https://github.com/AvalancheOfFox/bodegadex-frontend/pull/7.patch", + "issue_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/issues/7", + "number": 7, + "state": "open", + "locked": false, + "title": "Final thursday branch", + "user": { + "login": "AvalancheOfFox", + "id": 39632188, + "node_id": "MDQ6VXNlcjM5NjMyMTg4", + "avatar_url": "https://avatars2.githubusercontent.com/u/39632188?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/AvalancheOfFox", + "html_url": "https://github.com/AvalancheOfFox", + "followers_url": "https://api.github.com/users/AvalancheOfFox/followers", + "following_url": "https://api.github.com/users/AvalancheOfFox/following{/other_user}", + "gists_url": "https://api.github.com/users/AvalancheOfFox/gists{/gist_id}", + "starred_url": "https://api.github.com/users/AvalancheOfFox/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/AvalancheOfFox/subscriptions", + "organizations_url": "https://api.github.com/users/AvalancheOfFox/orgs", + "repos_url": "https://api.github.com/users/AvalancheOfFox/repos", + "events_url": "https://api.github.com/users/AvalancheOfFox/events{/privacy}", + "received_events_url": "https://api.github.com/users/AvalancheOfFox/received_events", + "type": "User", + "site_admin": false + }, + "body": "", + "created_at": "2019-10-21T21:54:47Z", + "updated_at": "2019-10-21T21:54:47Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/pulls/7/commits", + "review_comments_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/pulls/7/comments", + "review_comment_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/issues/7/comments", + "statuses_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/statuses/df28846c08f38b1f4bbe0aa77d49e1cb422d76dd", + "head": { + "label": "AvalancheOfFox:finalThursdayBranch", + "ref": "finalThursdayBranch", + "sha": "df28846c08f38b1f4bbe0aa77d49e1cb422d76dd", + "user": { + "login": "AvalancheOfFox", + "id": 39632188, + "node_id": "MDQ6VXNlcjM5NjMyMTg4", + "avatar_url": "https://avatars2.githubusercontent.com/u/39632188?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/AvalancheOfFox", + "html_url": "https://github.com/AvalancheOfFox", + "followers_url": "https://api.github.com/users/AvalancheOfFox/followers", + "following_url": "https://api.github.com/users/AvalancheOfFox/following{/other_user}", + "gists_url": "https://api.github.com/users/AvalancheOfFox/gists{/gist_id}", + "starred_url": "https://api.github.com/users/AvalancheOfFox/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/AvalancheOfFox/subscriptions", + "organizations_url": "https://api.github.com/users/AvalancheOfFox/orgs", + "repos_url": "https://api.github.com/users/AvalancheOfFox/repos", + "events_url": "https://api.github.com/users/AvalancheOfFox/events{/privacy}", + "received_events_url": "https://api.github.com/users/AvalancheOfFox/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 214274481, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTQyNzQ0ODE=", + "name": "bodegadex-frontend", + "full_name": "AvalancheOfFox/bodegadex-frontend", + "private": false, + "owner": { + "login": "AvalancheOfFox", + "id": 39632188, + "node_id": "MDQ6VXNlcjM5NjMyMTg4", + "avatar_url": "https://avatars2.githubusercontent.com/u/39632188?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/AvalancheOfFox", + "html_url": "https://github.com/AvalancheOfFox", + "followers_url": "https://api.github.com/users/AvalancheOfFox/followers", + "following_url": "https://api.github.com/users/AvalancheOfFox/following{/other_user}", + "gists_url": "https://api.github.com/users/AvalancheOfFox/gists{/gist_id}", + "starred_url": "https://api.github.com/users/AvalancheOfFox/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/AvalancheOfFox/subscriptions", + "organizations_url": "https://api.github.com/users/AvalancheOfFox/orgs", + "repos_url": "https://api.github.com/users/AvalancheOfFox/repos", + "events_url": "https://api.github.com/users/AvalancheOfFox/events{/privacy}", + "received_events_url": "https://api.github.com/users/AvalancheOfFox/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/AvalancheOfFox/bodegadex-frontend", + "description": "Frontend for the bodega cat pokedex WIP. ", + "fork": false, + "url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend", + "forks_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/forks", + "keys_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/teams", + "hooks_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/hooks", + "issue_events_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/issues/events{/number}", + "events_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/events", + "assignees_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/assignees{/user}", + "branches_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/branches{/branch}", + "tags_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/tags", + "blobs_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/statuses/{sha}", + "languages_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/languages", + "stargazers_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/stargazers", + "contributors_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/contributors", + "subscribers_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/subscribers", + "subscription_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/subscription", + "commits_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/contents/{+path}", + "compare_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/merges", + "archive_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/downloads", + "issues_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/issues{/number}", + "pulls_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/pulls{/number}", + "milestones_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/milestones{/number}", + "notifications_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/labels{/name}", + "releases_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/releases{/id}", + "deployments_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/deployments", + "created_at": "2019-10-10T20:00:44Z", + "updated_at": "2019-10-21T19:36:01Z", + "pushed_at": "2019-10-21T21:54:28Z", + "git_url": "git://github.com/AvalancheOfFox/bodegadex-frontend.git", + "ssh_url": "git@github.com:AvalancheOfFox/bodegadex-frontend.git", + "clone_url": "https://github.com/AvalancheOfFox/bodegadex-frontend.git", + "svn_url": "https://github.com/AvalancheOfFox/bodegadex-frontend", + "homepage": null, + "size": 274, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "AvalancheOfFox:master", + "ref": "master", + "sha": "8809925097f56d47aba7203acbfa5420b5f9ed61", + "user": { + "login": "AvalancheOfFox", + "id": 39632188, + "node_id": "MDQ6VXNlcjM5NjMyMTg4", + "avatar_url": "https://avatars2.githubusercontent.com/u/39632188?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/AvalancheOfFox", + "html_url": "https://github.com/AvalancheOfFox", + "followers_url": "https://api.github.com/users/AvalancheOfFox/followers", + "following_url": "https://api.github.com/users/AvalancheOfFox/following{/other_user}", + "gists_url": "https://api.github.com/users/AvalancheOfFox/gists{/gist_id}", + "starred_url": "https://api.github.com/users/AvalancheOfFox/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/AvalancheOfFox/subscriptions", + "organizations_url": "https://api.github.com/users/AvalancheOfFox/orgs", + "repos_url": "https://api.github.com/users/AvalancheOfFox/repos", + "events_url": "https://api.github.com/users/AvalancheOfFox/events{/privacy}", + "received_events_url": "https://api.github.com/users/AvalancheOfFox/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 214274481, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTQyNzQ0ODE=", + "name": "bodegadex-frontend", + "full_name": "AvalancheOfFox/bodegadex-frontend", + "private": false, + "owner": { + "login": "AvalancheOfFox", + "id": 39632188, + "node_id": "MDQ6VXNlcjM5NjMyMTg4", + "avatar_url": "https://avatars2.githubusercontent.com/u/39632188?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/AvalancheOfFox", + "html_url": "https://github.com/AvalancheOfFox", + "followers_url": "https://api.github.com/users/AvalancheOfFox/followers", + "following_url": "https://api.github.com/users/AvalancheOfFox/following{/other_user}", + "gists_url": "https://api.github.com/users/AvalancheOfFox/gists{/gist_id}", + "starred_url": "https://api.github.com/users/AvalancheOfFox/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/AvalancheOfFox/subscriptions", + "organizations_url": "https://api.github.com/users/AvalancheOfFox/orgs", + "repos_url": "https://api.github.com/users/AvalancheOfFox/repos", + "events_url": "https://api.github.com/users/AvalancheOfFox/events{/privacy}", + "received_events_url": "https://api.github.com/users/AvalancheOfFox/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/AvalancheOfFox/bodegadex-frontend", + "description": "Frontend for the bodega cat pokedex WIP. ", + "fork": false, + "url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend", + "forks_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/forks", + "keys_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/teams", + "hooks_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/hooks", + "issue_events_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/issues/events{/number}", + "events_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/events", + "assignees_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/assignees{/user}", + "branches_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/branches{/branch}", + "tags_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/tags", + "blobs_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/statuses/{sha}", + "languages_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/languages", + "stargazers_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/stargazers", + "contributors_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/contributors", + "subscribers_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/subscribers", + "subscription_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/subscription", + "commits_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/contents/{+path}", + "compare_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/merges", + "archive_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/downloads", + "issues_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/issues{/number}", + "pulls_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/pulls{/number}", + "milestones_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/milestones{/number}", + "notifications_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/labels{/name}", + "releases_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/releases{/id}", + "deployments_url": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/deployments", + "created_at": "2019-10-10T20:00:44Z", + "updated_at": "2019-10-21T19:36:01Z", + "pushed_at": "2019-10-21T21:54:28Z", + "git_url": "git://github.com/AvalancheOfFox/bodegadex-frontend.git", + "ssh_url": "git@github.com:AvalancheOfFox/bodegadex-frontend.git", + "clone_url": "https://github.com/AvalancheOfFox/bodegadex-frontend.git", + "svn_url": "https://github.com/AvalancheOfFox/bodegadex-frontend", + "homepage": null, + "size": 274, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/pulls/7" + }, + "html": { + "href": "https://github.com/AvalancheOfFox/bodegadex-frontend/pull/7" + }, + "issue": { + "href": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/issues/7" + }, + "comments": { + "href": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/issues/7/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/pulls/7/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/pulls/7/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/AvalancheOfFox/bodegadex-frontend/statuses/df28846c08f38b1f4bbe0aa77d49e1cb422d76dd" + } + }, + "author_association": "OWNER", + "merged": false, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 2, + "additions": 3, + "deletions": 3, + "changed_files": 2 + } + }, + "public": true, + "created_at": "2019-10-21T21:54:47Z" + }, + { + "id": "10680624918", + "type": "PushEvent", + "actor": { + "id": 41017988, + "login": "rachel-kauff", + "display_login": "rachel-kauff", + "gravatar_id": "", + "url": "https://api.github.com/users/rachel-kauff", + "avatar_url": "https://avatars.githubusercontent.com/u/41017988?" + }, + "repo": { + "id": 131753309, + "name": "CivicActions/civicactions.com", + "url": "https://api.github.com/repos/CivicActions/civicactions.com" + }, + "payload": { + "push_id": 4176854845, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/rachel-kauff-patch-7", + "head": "9122f0fa408c75e4aab04c670787ff15df79461a", + "before": "35371f89abb221305fee867e40c30eb36b91fd14", + "commits": [ + { + "sha": "9122f0fa408c75e4aab04c670787ff15df79461a", + "author": { + "email": "rachel.kauff@civicactions.com", + "name": "Rachel Kauff" + }, + "message": "Update adrienne-cabouet.md\n\n- Style update: spell out state name.", + "distinct": true, + "url": "https://api.github.com/repos/CivicActions/civicactions.com/commits/9122f0fa408c75e4aab04c670787ff15df79461a" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:47Z", + "org": { + "id": 6517157, + "login": "CivicActions", + "gravatar_id": "", + "url": "https://api.github.com/orgs/CivicActions", + "avatar_url": "https://avatars.githubusercontent.com/u/6517157?" + } + }, + { + "id": "10680624913", + "type": "CreateEvent", + "actor": { + "id": 12522847, + "login": "carlosgon1", + "display_login": "carlosgon1", + "gravatar_id": "", + "url": "https://api.github.com/users/carlosgon1", + "avatar_url": "https://avatars.githubusercontent.com/u/12522847?" + }, + "repo": { + "id": 216672320, + "name": "carlosgon1/Carlos-Gonzalez", + "url": "https://api.github.com/repos/carlosgon1/Carlos-Gonzalez" + }, + "payload": { + "ref": "master", + "ref_type": "branch", + "master_branch": "master", + "description": null, + "pusher_type": "user" + }, + "public": true, + "created_at": "2019-10-21T21:54:47Z" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/__files/events-5d107ab6-f41e-41dd-b699-ed83c6edbceb.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/__files/events-5d107ab6-f41e-41dd-b699-ed83c6edbceb.json new file mode 100644 index 0000000000..6690e1d9f4 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/__files/events-5d107ab6-f41e-41dd-b699-ed83c6edbceb.json @@ -0,0 +1,2511 @@ +[ + { + "id": "10680625228", + "type": "PullRequestEvent", + "actor": { + "id": 1996564, + "login": "DeBuchie", + "display_login": "DeBuchie", + "gravatar_id": "", + "url": "https://api.github.com/users/DeBuchie", + "avatar_url": "https://avatars.githubusercontent.com/u/1996564?" + }, + "repo": { + "id": 216437191, + "name": "DeBuchie/enkovortraege-frontend", + "url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend" + }, + "payload": { + "action": "closed", + "number": 10, + "pull_request": { + "url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/pulls/10", + "id": 330711248, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzMwNzExMjQ4", + "html_url": "https://github.com/DeBuchie/enkovortraege-frontend/pull/10", + "diff_url": "https://github.com/DeBuchie/enkovortraege-frontend/pull/10.diff", + "patch_url": "https://github.com/DeBuchie/enkovortraege-frontend/pull/10.patch", + "issue_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/issues/10", + "number": 10, + "state": "closed", + "locked": false, + "title": "Added Create Vortrag Effect Demo", + "user": { + "login": "DeBuchie", + "id": 1996564, + "node_id": "MDQ6VXNlcjE5OTY1NjQ=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1996564?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/DeBuchie", + "html_url": "https://github.com/DeBuchie", + "followers_url": "https://api.github.com/users/DeBuchie/followers", + "following_url": "https://api.github.com/users/DeBuchie/following{/other_user}", + "gists_url": "https://api.github.com/users/DeBuchie/gists{/gist_id}", + "starred_url": "https://api.github.com/users/DeBuchie/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/DeBuchie/subscriptions", + "organizations_url": "https://api.github.com/users/DeBuchie/orgs", + "repos_url": "https://api.github.com/users/DeBuchie/repos", + "events_url": "https://api.github.com/users/DeBuchie/events{/privacy}", + "received_events_url": "https://api.github.com/users/DeBuchie/received_events", + "type": "User", + "site_admin": false + }, + "body": "", + "created_at": "2019-10-21T21:54:43Z", + "updated_at": "2019-10-21T21:54:50Z", + "closed_at": "2019-10-21T21:54:50Z", + "merged_at": "2019-10-21T21:54:50Z", + "merge_commit_sha": "077fb6369088fc334fde4cad3b4443cfd3b6546c", + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/pulls/10/commits", + "review_comments_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/pulls/10/comments", + "review_comment_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/issues/10/comments", + "statuses_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/statuses/85e487b88d48c608c9535cd8ed7615cbdfae6617", + "head": { + "label": "DeBuchie:create_Vortrag_Effect", + "ref": "create_Vortrag_Effect", + "sha": "85e487b88d48c608c9535cd8ed7615cbdfae6617", + "user": { + "login": "DeBuchie", + "id": 1996564, + "node_id": "MDQ6VXNlcjE5OTY1NjQ=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1996564?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/DeBuchie", + "html_url": "https://github.com/DeBuchie", + "followers_url": "https://api.github.com/users/DeBuchie/followers", + "following_url": "https://api.github.com/users/DeBuchie/following{/other_user}", + "gists_url": "https://api.github.com/users/DeBuchie/gists{/gist_id}", + "starred_url": "https://api.github.com/users/DeBuchie/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/DeBuchie/subscriptions", + "organizations_url": "https://api.github.com/users/DeBuchie/orgs", + "repos_url": "https://api.github.com/users/DeBuchie/repos", + "events_url": "https://api.github.com/users/DeBuchie/events{/privacy}", + "received_events_url": "https://api.github.com/users/DeBuchie/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 216437191, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTY0MzcxOTE=", + "name": "enkovortraege-frontend", + "full_name": "DeBuchie/enkovortraege-frontend", + "private": false, + "owner": { + "login": "DeBuchie", + "id": 1996564, + "node_id": "MDQ6VXNlcjE5OTY1NjQ=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1996564?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/DeBuchie", + "html_url": "https://github.com/DeBuchie", + "followers_url": "https://api.github.com/users/DeBuchie/followers", + "following_url": "https://api.github.com/users/DeBuchie/following{/other_user}", + "gists_url": "https://api.github.com/users/DeBuchie/gists{/gist_id}", + "starred_url": "https://api.github.com/users/DeBuchie/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/DeBuchie/subscriptions", + "organizations_url": "https://api.github.com/users/DeBuchie/orgs", + "repos_url": "https://api.github.com/users/DeBuchie/repos", + "events_url": "https://api.github.com/users/DeBuchie/events{/privacy}", + "received_events_url": "https://api.github.com/users/DeBuchie/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/DeBuchie/enkovortraege-frontend", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend", + "forks_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/forks", + "keys_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/teams", + "hooks_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/hooks", + "issue_events_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/issues/events{/number}", + "events_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/events", + "assignees_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/assignees{/user}", + "branches_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/branches{/branch}", + "tags_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/tags", + "blobs_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/statuses/{sha}", + "languages_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/languages", + "stargazers_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/stargazers", + "contributors_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/contributors", + "subscribers_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/subscribers", + "subscription_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/subscription", + "commits_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/contents/{+path}", + "compare_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/merges", + "archive_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/downloads", + "issues_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/issues{/number}", + "pulls_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/pulls{/number}", + "milestones_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/milestones{/number}", + "notifications_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/labels{/name}", + "releases_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/releases{/id}", + "deployments_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/deployments", + "created_at": "2019-10-20T22:43:24Z", + "updated_at": "2019-10-21T06:51:26Z", + "pushed_at": "2019-10-21T21:54:50Z", + "git_url": "git://github.com/DeBuchie/enkovortraege-frontend.git", + "ssh_url": "git@github.com:DeBuchie/enkovortraege-frontend.git", + "clone_url": "https://github.com/DeBuchie/enkovortraege-frontend.git", + "svn_url": "https://github.com/DeBuchie/enkovortraege-frontend", + "homepage": null, + "size": 2275, + "stargazers_count": 0, + "watchers_count": 0, + "language": "TypeScript", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "DeBuchie:master", + "ref": "master", + "sha": "087f5d8dc690e9c2ba31340bd04382d8648b9e66", + "user": { + "login": "DeBuchie", + "id": 1996564, + "node_id": "MDQ6VXNlcjE5OTY1NjQ=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1996564?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/DeBuchie", + "html_url": "https://github.com/DeBuchie", + "followers_url": "https://api.github.com/users/DeBuchie/followers", + "following_url": "https://api.github.com/users/DeBuchie/following{/other_user}", + "gists_url": "https://api.github.com/users/DeBuchie/gists{/gist_id}", + "starred_url": "https://api.github.com/users/DeBuchie/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/DeBuchie/subscriptions", + "organizations_url": "https://api.github.com/users/DeBuchie/orgs", + "repos_url": "https://api.github.com/users/DeBuchie/repos", + "events_url": "https://api.github.com/users/DeBuchie/events{/privacy}", + "received_events_url": "https://api.github.com/users/DeBuchie/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 216437191, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTY0MzcxOTE=", + "name": "enkovortraege-frontend", + "full_name": "DeBuchie/enkovortraege-frontend", + "private": false, + "owner": { + "login": "DeBuchie", + "id": 1996564, + "node_id": "MDQ6VXNlcjE5OTY1NjQ=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1996564?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/DeBuchie", + "html_url": "https://github.com/DeBuchie", + "followers_url": "https://api.github.com/users/DeBuchie/followers", + "following_url": "https://api.github.com/users/DeBuchie/following{/other_user}", + "gists_url": "https://api.github.com/users/DeBuchie/gists{/gist_id}", + "starred_url": "https://api.github.com/users/DeBuchie/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/DeBuchie/subscriptions", + "organizations_url": "https://api.github.com/users/DeBuchie/orgs", + "repos_url": "https://api.github.com/users/DeBuchie/repos", + "events_url": "https://api.github.com/users/DeBuchie/events{/privacy}", + "received_events_url": "https://api.github.com/users/DeBuchie/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/DeBuchie/enkovortraege-frontend", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend", + "forks_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/forks", + "keys_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/teams", + "hooks_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/hooks", + "issue_events_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/issues/events{/number}", + "events_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/events", + "assignees_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/assignees{/user}", + "branches_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/branches{/branch}", + "tags_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/tags", + "blobs_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/statuses/{sha}", + "languages_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/languages", + "stargazers_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/stargazers", + "contributors_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/contributors", + "subscribers_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/subscribers", + "subscription_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/subscription", + "commits_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/contents/{+path}", + "compare_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/merges", + "archive_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/downloads", + "issues_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/issues{/number}", + "pulls_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/pulls{/number}", + "milestones_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/milestones{/number}", + "notifications_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/labels{/name}", + "releases_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/releases{/id}", + "deployments_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/deployments", + "created_at": "2019-10-20T22:43:24Z", + "updated_at": "2019-10-21T06:51:26Z", + "pushed_at": "2019-10-21T21:54:50Z", + "git_url": "git://github.com/DeBuchie/enkovortraege-frontend.git", + "ssh_url": "git@github.com:DeBuchie/enkovortraege-frontend.git", + "clone_url": "https://github.com/DeBuchie/enkovortraege-frontend.git", + "svn_url": "https://github.com/DeBuchie/enkovortraege-frontend", + "homepage": null, + "size": 2275, + "stargazers_count": 0, + "watchers_count": 0, + "language": "TypeScript", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/pulls/10" + }, + "html": { + "href": "https://github.com/DeBuchie/enkovortraege-frontend/pull/10" + }, + "issue": { + "href": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/issues/10" + }, + "comments": { + "href": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/issues/10/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/pulls/10/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/pulls/10/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/statuses/85e487b88d48c608c9535cd8ed7615cbdfae6617" + } + }, + "author_association": "OWNER", + "merged": true, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": { + "login": "DeBuchie", + "id": 1996564, + "node_id": "MDQ6VXNlcjE5OTY1NjQ=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1996564?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/DeBuchie", + "html_url": "https://github.com/DeBuchie", + "followers_url": "https://api.github.com/users/DeBuchie/followers", + "following_url": "https://api.github.com/users/DeBuchie/following{/other_user}", + "gists_url": "https://api.github.com/users/DeBuchie/gists{/gist_id}", + "starred_url": "https://api.github.com/users/DeBuchie/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/DeBuchie/subscriptions", + "organizations_url": "https://api.github.com/users/DeBuchie/orgs", + "repos_url": "https://api.github.com/users/DeBuchie/repos", + "events_url": "https://api.github.com/users/DeBuchie/events{/privacy}", + "received_events_url": "https://api.github.com/users/DeBuchie/received_events", + "type": "User", + "site_admin": false + }, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 56, + "deletions": 4, + "changed_files": 6 + } + }, + "public": true, + "created_at": "2019-10-21T21:54:50Z" + }, + { + "id": "10680625224", + "type": "PushEvent", + "actor": { + "id": 47527659, + "login": "mevgamer", + "display_login": "mevgamer", + "gravatar_id": "", + "url": "https://api.github.com/users/mevgamer", + "avatar_url": "https://avatars.githubusercontent.com/u/47527659?" + }, + "repo": { + "id": 203684700, + "name": "mevgamer/POO", + "url": "https://api.github.com/repos/mevgamer/POO" + }, + "payload": { + "push_id": 4176854998, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "cb7fabdb5a14b78a3ee05cde9032cdae0c7fb473", + "before": "c399ac1645b55107ac4fff9a53116619e53200ff", + "commits": [ + { + "sha": "cb7fabdb5a14b78a3ee05cde9032cdae0c7fb473", + "author": { + "email": "47527659+mevgamer@users.noreply.github.com", + "name": "mevgamer" + }, + "message": "aula", + "distinct": true, + "url": "https://api.github.com/repos/mevgamer/POO/commits/cb7fabdb5a14b78a3ee05cde9032cdae0c7fb473" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:50Z" + }, + { + "id": "10680625223", + "type": "CreateEvent", + "actor": { + "id": 42206314, + "login": "jchaconv", + "display_login": "jchaconv", + "gravatar_id": "", + "url": "https://api.github.com/users/jchaconv", + "avatar_url": "https://avatars.githubusercontent.com/u/42206314?" + }, + "repo": { + "id": 216672337, + "name": "jchaconv/spring-boot-microservices", + "url": "https://api.github.com/repos/jchaconv/spring-boot-microservices" + }, + "payload": { + "ref": "master", + "ref_type": "branch", + "master_branch": "master", + "description": "Repository for the course Spring Boot Microservices with Spring Cloud Beginner to Guru", + "pusher_type": "user" + }, + "public": true, + "created_at": "2019-10-21T21:54:50Z" + }, + { + "id": "10680625211", + "type": "PushEvent", + "actor": { + "id": 54225959, + "login": "hdp2112", + "display_login": "hdp2112", + "gravatar_id": "", + "url": "https://api.github.com/users/hdp2112", + "avatar_url": "https://avatars.githubusercontent.com/u/54225959?" + }, + "repo": { + "id": 215460211, + "name": "hdp2112/ruby-enumerables-reverse-each-word-lab-nyc-web-102819", + "url": "https://api.github.com/repos/hdp2112/ruby-enumerables-reverse-each-word-lab-nyc-web-102819" + }, + "payload": { + "push_id": 4176854990, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/wip", + "head": "fe4243ccc9d12bc2f1b85808d89e01969330948f", + "before": "71b27545ce043b929aa4ebc6a9d4bd8cdbb40a7e", + "commits": [ + { + "sha": "fe4243ccc9d12bc2f1b85808d89e01969330948f", + "author": { + "email": "hdp2112@columbia.edu", + "name": "Hector Polanco" + }, + "message": "Automatically backed up by Learn", + "distinct": true, + "url": "https://api.github.com/repos/hdp2112/ruby-enumerables-reverse-each-word-lab-nyc-web-102819/commits/fe4243ccc9d12bc2f1b85808d89e01969330948f" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:50Z" + }, + { + "id": "10680625208", + "type": "IssueCommentEvent", + "actor": { + "id": 36771401, + "login": "azure-pipelines[bot]", + "display_login": "azure-pipelines", + "gravatar_id": "", + "url": "https://api.github.com/users/azure-pipelines[bot]", + "avatar_url": "https://avatars.githubusercontent.com/u/36771401?" + }, + "repo": { + "id": 2928948, + "name": "Azure/azure-sdk-for-java", + "url": "https://api.github.com/repos/Azure/azure-sdk-for-java" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/Azure/azure-sdk-for-java/issues/5958", + "repository_url": "https://api.github.com/repos/Azure/azure-sdk-for-java", + "labels_url": "https://api.github.com/repos/Azure/azure-sdk-for-java/issues/5958/labels{/name}", + "comments_url": "https://api.github.com/repos/Azure/azure-sdk-for-java/issues/5958/comments", + "events_url": "https://api.github.com/repos/Azure/azure-sdk-for-java/issues/5958/events", + "html_url": "https://github.com/Azure/azure-sdk-for-java/pull/5958", + "id": 509999496, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzMwNDM2MDE1", + "number": 5958, + "title": "Versions in java files", + "user": { + "login": "JimSuplizio", + "id": 13556087, + "node_id": "MDQ6VXNlcjEzNTU2MDg3", + "avatar_url": "https://avatars3.githubusercontent.com/u/13556087?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/JimSuplizio", + "html_url": "https://github.com/JimSuplizio", + "followers_url": "https://api.github.com/users/JimSuplizio/followers", + "following_url": "https://api.github.com/users/JimSuplizio/following{/other_user}", + "gists_url": "https://api.github.com/users/JimSuplizio/gists{/gist_id}", + "starred_url": "https://api.github.com/users/JimSuplizio/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/JimSuplizio/subscriptions", + "organizations_url": "https://api.github.com/users/JimSuplizio/orgs", + "repos_url": "https://api.github.com/users/JimSuplizio/repos", + "events_url": "https://api.github.com/users/JimSuplizio/events{/privacy}", + "received_events_url": "https://api.github.com/users/JimSuplizio/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 13, + "created_at": "2019-10-21T14:27:12Z", + "updated_at": "2019-10-21T21:54:50Z", + "closed_at": null, + "author_association": "MEMBER", + "pull_request": { + "url": "https://api.github.com/repos/Azure/azure-sdk-for-java/pulls/5958", + "html_url": "https://github.com/Azure/azure-sdk-for-java/pull/5958", + "diff_url": "https://github.com/Azure/azure-sdk-for-java/pull/5958.diff", + "patch_url": "https://github.com/Azure/azure-sdk-for-java/pull/5958.patch" + }, + "body": "This is the same as the previous PR that was cancelled on Friday due to the DevOps pipeline being down." + }, + "comment": { + "url": "https://api.github.com/repos/Azure/azure-sdk-for-java/issues/comments/544724574", + "html_url": "https://github.com/Azure/azure-sdk-for-java/pull/5958#issuecomment-544724574", + "issue_url": "https://api.github.com/repos/Azure/azure-sdk-for-java/issues/5958", + "id": 544724574, + "node_id": "MDEyOklzc3VlQ29tbWVudDU0NDcyNDU3NA==", + "user": { + "login": "azure-pipelines[bot]", + "id": 36771401, + "node_id": "MDM6Qm90MzY3NzE0MDE=", + "avatar_url": "https://avatars3.githubusercontent.com/in/9426?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/azure-pipelines%5Bbot%5D", + "html_url": "https://github.com/apps/azure-pipelines", + "followers_url": "https://api.github.com/users/azure-pipelines%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/azure-pipelines%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/azure-pipelines%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/azure-pipelines%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/azure-pipelines%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/azure-pipelines%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/azure-pipelines%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/azure-pipelines%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/azure-pipelines%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "created_at": "2019-10-21T21:54:50Z", + "updated_at": "2019-10-21T21:54:50Z", + "author_association": "NONE", + "body": "\nAzure Pipelines successfully started running 1 pipeline(s).
        \r\n\n
        " + } + }, + "public": true, + "created_at": "2019-10-21T21:54:50Z", + "org": { + "id": 6844498, + "login": "Azure", + "gravatar_id": "", + "url": "https://api.github.com/orgs/Azure", + "avatar_url": "https://avatars.githubusercontent.com/u/6844498?" + } + }, + { + "id": "10680625200", + "type": "PullRequestEvent", + "actor": { + "id": 32246571, + "login": "SarvagyaGupta", + "display_login": "SarvagyaGupta", + "gravatar_id": "", + "url": "https://api.github.com/users/SarvagyaGupta", + "avatar_url": "https://avatars.githubusercontent.com/u/32246571?" + }, + "repo": { + "id": 213764765, + "name": "SarvagyaGupta/uwimg", + "url": "https://api.github.com/repos/SarvagyaGupta/uwimg" + }, + "payload": { + "action": "closed", + "number": 4, + "pull_request": { + "url": "https://api.github.com/repos/SarvagyaGupta/uwimg/pulls/4", + "id": 330711224, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzMwNzExMjI0", + "html_url": "https://github.com/SarvagyaGupta/uwimg/pull/4", + "diff_url": "https://github.com/SarvagyaGupta/uwimg/pull/4.diff", + "patch_url": "https://github.com/SarvagyaGupta/uwimg/pull/4.patch", + "issue_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/issues/4", + "number": 4, + "state": "closed", + "locked": false, + "title": "HW1 python script changed", + "user": { + "login": "SarvagyaGupta", + "id": 32246571, + "node_id": "MDQ6VXNlcjMyMjQ2NTcx", + "avatar_url": "https://avatars0.githubusercontent.com/u/32246571?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/SarvagyaGupta", + "html_url": "https://github.com/SarvagyaGupta", + "followers_url": "https://api.github.com/users/SarvagyaGupta/followers", + "following_url": "https://api.github.com/users/SarvagyaGupta/following{/other_user}", + "gists_url": "https://api.github.com/users/SarvagyaGupta/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SarvagyaGupta/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SarvagyaGupta/subscriptions", + "organizations_url": "https://api.github.com/users/SarvagyaGupta/orgs", + "repos_url": "https://api.github.com/users/SarvagyaGupta/repos", + "events_url": "https://api.github.com/users/SarvagyaGupta/events{/privacy}", + "received_events_url": "https://api.github.com/users/SarvagyaGupta/received_events", + "type": "User", + "site_admin": false + }, + "body": "", + "created_at": "2019-10-21T21:54:39Z", + "updated_at": "2019-10-21T21:54:50Z", + "closed_at": "2019-10-21T21:54:50Z", + "merged_at": "2019-10-21T21:54:50Z", + "merge_commit_sha": "03f8cff362a6aca0dc7bfce326bec1092e874c63", + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/pulls/4/commits", + "review_comments_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/pulls/4/comments", + "review_comment_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/issues/4/comments", + "statuses_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/statuses/f765c7e5527e36e37539bb1623900c99739689e5", + "head": { + "label": "SarvagyaGupta:HW1", + "ref": "HW1", + "sha": "f765c7e5527e36e37539bb1623900c99739689e5", + "user": { + "login": "SarvagyaGupta", + "id": 32246571, + "node_id": "MDQ6VXNlcjMyMjQ2NTcx", + "avatar_url": "https://avatars0.githubusercontent.com/u/32246571?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/SarvagyaGupta", + "html_url": "https://github.com/SarvagyaGupta", + "followers_url": "https://api.github.com/users/SarvagyaGupta/followers", + "following_url": "https://api.github.com/users/SarvagyaGupta/following{/other_user}", + "gists_url": "https://api.github.com/users/SarvagyaGupta/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SarvagyaGupta/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SarvagyaGupta/subscriptions", + "organizations_url": "https://api.github.com/users/SarvagyaGupta/orgs", + "repos_url": "https://api.github.com/users/SarvagyaGupta/repos", + "events_url": "https://api.github.com/users/SarvagyaGupta/events{/privacy}", + "received_events_url": "https://api.github.com/users/SarvagyaGupta/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 213764765, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTM3NjQ3NjU=", + "name": "uwimg", + "full_name": "SarvagyaGupta/uwimg", + "private": false, + "owner": { + "login": "SarvagyaGupta", + "id": 32246571, + "node_id": "MDQ6VXNlcjMyMjQ2NTcx", + "avatar_url": "https://avatars0.githubusercontent.com/u/32246571?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/SarvagyaGupta", + "html_url": "https://github.com/SarvagyaGupta", + "followers_url": "https://api.github.com/users/SarvagyaGupta/followers", + "following_url": "https://api.github.com/users/SarvagyaGupta/following{/other_user}", + "gists_url": "https://api.github.com/users/SarvagyaGupta/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SarvagyaGupta/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SarvagyaGupta/subscriptions", + "organizations_url": "https://api.github.com/users/SarvagyaGupta/orgs", + "repos_url": "https://api.github.com/users/SarvagyaGupta/repos", + "events_url": "https://api.github.com/users/SarvagyaGupta/events{/privacy}", + "received_events_url": "https://api.github.com/users/SarvagyaGupta/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/SarvagyaGupta/uwimg", + "description": "Build your own computer vision library in C", + "fork": true, + "url": "https://api.github.com/repos/SarvagyaGupta/uwimg", + "forks_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/forks", + "keys_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/teams", + "hooks_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/hooks", + "issue_events_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/issues/events{/number}", + "events_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/events", + "assignees_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/assignees{/user}", + "branches_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/branches{/branch}", + "tags_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/tags", + "blobs_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/statuses/{sha}", + "languages_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/languages", + "stargazers_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/stargazers", + "contributors_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/contributors", + "subscribers_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/subscribers", + "subscription_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/subscription", + "commits_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/contents/{+path}", + "compare_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/merges", + "archive_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/downloads", + "issues_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/issues{/number}", + "pulls_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/pulls{/number}", + "milestones_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/milestones{/number}", + "notifications_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/labels{/name}", + "releases_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/releases{/id}", + "deployments_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/deployments", + "created_at": "2019-10-08T22:06:43Z", + "updated_at": "2019-10-18T04:29:13Z", + "pushed_at": "2019-10-21T21:54:50Z", + "git_url": "git://github.com/SarvagyaGupta/uwimg.git", + "ssh_url": "git@github.com:SarvagyaGupta/uwimg.git", + "clone_url": "https://github.com/SarvagyaGupta/uwimg.git", + "svn_url": "https://github.com/SarvagyaGupta/uwimg", + "homepage": null, + "size": 48568, + "stargazers_count": 0, + "watchers_count": 0, + "language": "C", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "SarvagyaGupta:master", + "ref": "master", + "sha": "5f1e6fdc621f3186ecaf479cd89e1f07df71d73b", + "user": { + "login": "SarvagyaGupta", + "id": 32246571, + "node_id": "MDQ6VXNlcjMyMjQ2NTcx", + "avatar_url": "https://avatars0.githubusercontent.com/u/32246571?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/SarvagyaGupta", + "html_url": "https://github.com/SarvagyaGupta", + "followers_url": "https://api.github.com/users/SarvagyaGupta/followers", + "following_url": "https://api.github.com/users/SarvagyaGupta/following{/other_user}", + "gists_url": "https://api.github.com/users/SarvagyaGupta/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SarvagyaGupta/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SarvagyaGupta/subscriptions", + "organizations_url": "https://api.github.com/users/SarvagyaGupta/orgs", + "repos_url": "https://api.github.com/users/SarvagyaGupta/repos", + "events_url": "https://api.github.com/users/SarvagyaGupta/events{/privacy}", + "received_events_url": "https://api.github.com/users/SarvagyaGupta/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 213764765, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTM3NjQ3NjU=", + "name": "uwimg", + "full_name": "SarvagyaGupta/uwimg", + "private": false, + "owner": { + "login": "SarvagyaGupta", + "id": 32246571, + "node_id": "MDQ6VXNlcjMyMjQ2NTcx", + "avatar_url": "https://avatars0.githubusercontent.com/u/32246571?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/SarvagyaGupta", + "html_url": "https://github.com/SarvagyaGupta", + "followers_url": "https://api.github.com/users/SarvagyaGupta/followers", + "following_url": "https://api.github.com/users/SarvagyaGupta/following{/other_user}", + "gists_url": "https://api.github.com/users/SarvagyaGupta/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SarvagyaGupta/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SarvagyaGupta/subscriptions", + "organizations_url": "https://api.github.com/users/SarvagyaGupta/orgs", + "repos_url": "https://api.github.com/users/SarvagyaGupta/repos", + "events_url": "https://api.github.com/users/SarvagyaGupta/events{/privacy}", + "received_events_url": "https://api.github.com/users/SarvagyaGupta/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/SarvagyaGupta/uwimg", + "description": "Build your own computer vision library in C", + "fork": true, + "url": "https://api.github.com/repos/SarvagyaGupta/uwimg", + "forks_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/forks", + "keys_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/teams", + "hooks_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/hooks", + "issue_events_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/issues/events{/number}", + "events_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/events", + "assignees_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/assignees{/user}", + "branches_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/branches{/branch}", + "tags_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/tags", + "blobs_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/statuses/{sha}", + "languages_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/languages", + "stargazers_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/stargazers", + "contributors_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/contributors", + "subscribers_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/subscribers", + "subscription_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/subscription", + "commits_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/contents/{+path}", + "compare_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/merges", + "archive_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/downloads", + "issues_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/issues{/number}", + "pulls_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/pulls{/number}", + "milestones_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/milestones{/number}", + "notifications_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/labels{/name}", + "releases_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/releases{/id}", + "deployments_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/deployments", + "created_at": "2019-10-08T22:06:43Z", + "updated_at": "2019-10-18T04:29:13Z", + "pushed_at": "2019-10-21T21:54:50Z", + "git_url": "git://github.com/SarvagyaGupta/uwimg.git", + "ssh_url": "git@github.com:SarvagyaGupta/uwimg.git", + "clone_url": "https://github.com/SarvagyaGupta/uwimg.git", + "svn_url": "https://github.com/SarvagyaGupta/uwimg", + "homepage": null, + "size": 48568, + "stargazers_count": 0, + "watchers_count": 0, + "language": "C", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/SarvagyaGupta/uwimg/pulls/4" + }, + "html": { + "href": "https://github.com/SarvagyaGupta/uwimg/pull/4" + }, + "issue": { + "href": "https://api.github.com/repos/SarvagyaGupta/uwimg/issues/4" + }, + "comments": { + "href": "https://api.github.com/repos/SarvagyaGupta/uwimg/issues/4/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/SarvagyaGupta/uwimg/pulls/4/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/SarvagyaGupta/uwimg/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/SarvagyaGupta/uwimg/pulls/4/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/SarvagyaGupta/uwimg/statuses/f765c7e5527e36e37539bb1623900c99739689e5" + } + }, + "author_association": "OWNER", + "merged": true, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": { + "login": "SarvagyaGupta", + "id": 32246571, + "node_id": "MDQ6VXNlcjMyMjQ2NTcx", + "avatar_url": "https://avatars0.githubusercontent.com/u/32246571?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/SarvagyaGupta", + "html_url": "https://github.com/SarvagyaGupta", + "followers_url": "https://api.github.com/users/SarvagyaGupta/followers", + "following_url": "https://api.github.com/users/SarvagyaGupta/following{/other_user}", + "gists_url": "https://api.github.com/users/SarvagyaGupta/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SarvagyaGupta/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SarvagyaGupta/subscriptions", + "organizations_url": "https://api.github.com/users/SarvagyaGupta/orgs", + "repos_url": "https://api.github.com/users/SarvagyaGupta/repos", + "events_url": "https://api.github.com/users/SarvagyaGupta/events{/privacy}", + "received_events_url": "https://api.github.com/users/SarvagyaGupta/received_events", + "type": "User", + "site_admin": false + }, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 4, + "deletions": 0, + "changed_files": 1 + } + }, + "public": true, + "created_at": "2019-10-21T21:54:50Z" + }, + { + "id": "10680625199", + "type": "IssuesEvent", + "actor": { + "id": 266306, + "login": "kenorb", + "display_login": "kenorb", + "gravatar_id": "", + "url": "https://api.github.com/users/kenorb", + "avatar_url": "https://avatars.githubusercontent.com/u/266306?" + }, + "repo": { + "id": 50688232, + "name": "EA31337/EA31337-classes", + "url": "https://api.github.com/repos/EA31337/EA31337-classes" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/EA31337/EA31337-classes/issues/74", + "repository_url": "https://api.github.com/repos/EA31337/EA31337-classes", + "labels_url": "https://api.github.com/repos/EA31337/EA31337-classes/issues/74/labels{/name}", + "comments_url": "https://api.github.com/repos/EA31337/EA31337-classes/issues/74/comments", + "events_url": "https://api.github.com/repos/EA31337/EA31337-classes/issues/74/events", + "html_url": "https://github.com/EA31337/EA31337-classes/issues/74", + "id": 510315283, + "node_id": "MDU6SXNzdWU1MTAzMTUyODM=", + "number": 74, + "title": "Error 244: tree optimization error", + "user": { + "login": "kenorb", + "id": 266306, + "node_id": "MDQ6VXNlcjI2NjMwNg==", + "avatar_url": "https://avatars2.githubusercontent.com/u/266306?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kenorb", + "html_url": "https://github.com/kenorb", + "followers_url": "https://api.github.com/users/kenorb/followers", + "following_url": "https://api.github.com/users/kenorb/following{/other_user}", + "gists_url": "https://api.github.com/users/kenorb/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kenorb/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kenorb/subscriptions", + "organizations_url": "https://api.github.com/users/kenorb/orgs", + "repos_url": "https://api.github.com/users/kenorb/repos", + "events_url": "https://api.github.com/users/kenorb/events{/privacy}", + "received_events_url": "https://api.github.com/users/kenorb/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 318724070, + "node_id": "MDU6TGFiZWwzMTg3MjQwNzA=", + "url": "https://api.github.com/repos/EA31337/EA31337-classes/labels/bug", + "name": "bug", + "color": "fc2929", + "default": true + } + ], + "state": "open", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-10-21T21:54:50Z", + "updated_at": "2019-10-21T21:54:50Z", + "closed_at": null, + "author_association": "MEMBER", + "body": "The following code results in error:\r\n\r\n```mql5\r\nPrint(acc.GetAccountFreeMarginCheck(ORDER_TYPE_BUY, SymbolInfo::GetVolumeMin()));\r\nPrint(acc.GetAccountFreeMarginCheck(ORDER_TYPE_SELL, SymbolInfo::GetVolumeMin()));\r\nPrint(acc.IsFreeMargin(ORDER_TYPE_BUY, SymbolInfo::GetVolumeMin()));\r\nPrint(acc.IsFreeMargin(ORDER_TYPE_SELL, SymbolInfo::GetVolumeMin()));\r\n```\r\n\r\n> Error 244: tree optimization error\r\n\r\nFile: `tests/AccountTest.mq5`" + } + }, + "public": true, + "created_at": "2019-10-21T21:54:50Z", + "org": { + "id": 13502077, + "login": "EA31337", + "gravatar_id": "", + "url": "https://api.github.com/orgs/EA31337", + "avatar_url": "https://avatars.githubusercontent.com/u/13502077?" + } + }, + { + "id": "10680625192", + "type": "PushEvent", + "actor": { + "id": 8980868, + "login": "bnlb", + "display_login": "bnlb", + "gravatar_id": "", + "url": "https://api.github.com/users/bnlb", + "avatar_url": "https://avatars.githubusercontent.com/u/8980868?" + }, + "repo": { + "id": 49092721, + "name": "algorithmiaio/dev-center", + "url": "https://api.github.com/repos/algorithmiaio/dev-center" + }, + "payload": { + "push_id": 4176854983, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/feature/FRONTEND-1660", + "head": "1a93282716570222d78b890112a3aaccceb0008a", + "before": "360ef24a29a084c41cf6fd331aa4c4ca7788e8f0", + "commits": [ + { + "sha": "1a93282716570222d78b890112a3aaccceb0008a", + "author": { + "email": "nblack@algorithmia.io", + "name": "Nathan Lyle Black" + }, + "message": "FRONTEND-1660 Add server test for CSP", + "distinct": true, + "url": "https://api.github.com/repos/algorithmiaio/dev-center/commits/1a93282716570222d78b890112a3aaccceb0008a" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:50Z", + "org": { + "id": 5078755, + "login": "algorithmiaio", + "gravatar_id": "", + "url": "https://api.github.com/orgs/algorithmiaio", + "avatar_url": "https://avatars.githubusercontent.com/u/5078755?" + } + }, + { + "id": "10680625190", + "type": "IssueCommentEvent", + "actor": { + "id": 41325216, + "login": "quangnhat185", + "display_login": "quangnhat185", + "gravatar_id": "", + "url": "https://api.github.com/users/quangnhat185", + "avatar_url": "https://avatars.githubusercontent.com/u/41325216?" + }, + "repo": { + "id": 215707732, + "name": "aivivn/Machine-Learning-Yearning-Vietnamese-Translation", + "url": "https://api.github.com/repos/aivivn/Machine-Learning-Yearning-Vietnamese-Translation" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/aivivn/Machine-Learning-Yearning-Vietnamese-Translation/issues/91", + "repository_url": "https://api.github.com/repos/aivivn/Machine-Learning-Yearning-Vietnamese-Translation", + "labels_url": "https://api.github.com/repos/aivivn/Machine-Learning-Yearning-Vietnamese-Translation/issues/91/labels{/name}", + "comments_url": "https://api.github.com/repos/aivivn/Machine-Learning-Yearning-Vietnamese-Translation/issues/91/comments", + "events_url": "https://api.github.com/repos/aivivn/Machine-Learning-Yearning-Vietnamese-Translation/issues/91/events", + "html_url": "https://github.com/aivivn/Machine-Learning-Yearning-Vietnamese-Translation/pull/91", + "id": 509603826, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzMwMTIzMzIw", + "number": 91, + "title": "Dịch chap 06", + "user": { + "login": "quangnhat185", + "id": 41325216, + "node_id": "MDQ6VXNlcjQxMzI1MjE2", + "avatar_url": "https://avatars2.githubusercontent.com/u/41325216?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/quangnhat185", + "html_url": "https://github.com/quangnhat185", + "followers_url": "https://api.github.com/users/quangnhat185/followers", + "following_url": "https://api.github.com/users/quangnhat185/following{/other_user}", + "gists_url": "https://api.github.com/users/quangnhat185/gists{/gist_id}", + "starred_url": "https://api.github.com/users/quangnhat185/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/quangnhat185/subscriptions", + "organizations_url": "https://api.github.com/users/quangnhat185/orgs", + "repos_url": "https://api.github.com/users/quangnhat185/repos", + "events_url": "https://api.github.com/users/quangnhat185/events{/privacy}", + "received_events_url": "https://api.github.com/users/quangnhat185/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 1624945333, + "node_id": "MDU6TGFiZWwxNjI0OTQ1MzMz", + "url": "https://api.github.com/repos/aivivn/Machine-Learning-Yearning-Vietnamese-Translation/labels/high%20priority", + "name": "high priority", + "color": "ff4500", + "default": false + }, + { + "id": 1626758164, + "node_id": "MDU6TGFiZWwxNjI2NzU4MTY0", + "url": "https://api.github.com/repos/aivivn/Machine-Learning-Yearning-Vietnamese-Translation/labels/review%20wanted", + "name": "review wanted", + "color": "b60205", + "default": false + } + ], + "state": "open", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": { + "url": "https://api.github.com/repos/aivivn/Machine-Learning-Yearning-Vietnamese-Translation/milestones/1", + "html_url": "https://github.com/aivivn/Machine-Learning-Yearning-Vietnamese-Translation/milestone/1", + "labels_url": "https://api.github.com/repos/aivivn/Machine-Learning-Yearning-Vietnamese-Translation/milestones/1/labels", + "id": 4768319, + "node_id": "MDk6TWlsZXN0b25lNDc2ODMxOQ==", + "number": 1, + "title": "Phần 1 (chương 1-14)", + "description": "", + "creator": { + "login": "tiepvupsu", + "id": 2201237, + "node_id": "MDQ6VXNlcjIyMDEyMzc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/2201237?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/tiepvupsu", + "html_url": "https://github.com/tiepvupsu", + "followers_url": "https://api.github.com/users/tiepvupsu/followers", + "following_url": "https://api.github.com/users/tiepvupsu/following{/other_user}", + "gists_url": "https://api.github.com/users/tiepvupsu/gists{/gist_id}", + "starred_url": "https://api.github.com/users/tiepvupsu/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/tiepvupsu/subscriptions", + "organizations_url": "https://api.github.com/users/tiepvupsu/orgs", + "repos_url": "https://api.github.com/users/tiepvupsu/repos", + "events_url": "https://api.github.com/users/tiepvupsu/events{/privacy}", + "received_events_url": "https://api.github.com/users/tiepvupsu/received_events", + "type": "User", + "site_admin": false + }, + "open_issues": 6, + "closed_issues": 2, + "state": "open", + "created_at": "2019-10-21T06:13:12Z", + "updated_at": "2019-10-21T19:52:47Z", + "due_on": "2019-10-31T07:00:00Z", + "closed_at": null + }, + "comments": 1, + "created_at": "2019-10-20T14:39:50Z", + "updated_at": "2019-10-21T21:54:50Z", + "closed_at": null, + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/aivivn/Machine-Learning-Yearning-Vietnamese-Translation/pulls/91", + "html_url": "https://github.com/aivivn/Machine-Learning-Yearning-Vietnamese-Translation/pull/91", + "diff_url": "https://github.com/aivivn/Machine-Learning-Yearning-Vietnamese-Translation/pull/91.diff", + "patch_url": "https://github.com/aivivn/Machine-Learning-Yearning-Vietnamese-Translation/pull/91.patch" + }, + "body": "Em update bản dịch của chap 06. Trong bản dịch này em có một số vấn đề như sau:\r\n\r\n- Distribution dịch là \"phân khúc\" thay vì \"phân phối\" như trong glossary để nghe xuôi tai hơn.\r\n\r\n- Giữ nguyên over-fit và benchmark vì chưa có bản dịch tiếng việt trong glossary." + }, + "comment": { + "url": "https://api.github.com/repos/aivivn/Machine-Learning-Yearning-Vietnamese-Translation/issues/comments/544724573", + "html_url": "https://github.com/aivivn/Machine-Learning-Yearning-Vietnamese-Translation/pull/91#issuecomment-544724573", + "issue_url": "https://api.github.com/repos/aivivn/Machine-Learning-Yearning-Vietnamese-Translation/issues/91", + "id": 544724573, + "node_id": "MDEyOklzc3VlQ29tbWVudDU0NDcyNDU3Mw==", + "user": { + "login": "quangnhat185", + "id": 41325216, + "node_id": "MDQ6VXNlcjQxMzI1MjE2", + "avatar_url": "https://avatars2.githubusercontent.com/u/41325216?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/quangnhat185", + "html_url": "https://github.com/quangnhat185", + "followers_url": "https://api.github.com/users/quangnhat185/followers", + "following_url": "https://api.github.com/users/quangnhat185/following{/other_user}", + "gists_url": "https://api.github.com/users/quangnhat185/gists{/gist_id}", + "starred_url": "https://api.github.com/users/quangnhat185/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/quangnhat185/subscriptions", + "organizations_url": "https://api.github.com/users/quangnhat185/orgs", + "repos_url": "https://api.github.com/users/quangnhat185/repos", + "events_url": "https://api.github.com/users/quangnhat185/events{/privacy}", + "received_events_url": "https://api.github.com/users/quangnhat185/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2019-10-21T21:54:50Z", + "updated_at": "2019-10-21T21:54:50Z", + "author_association": "CONTRIBUTOR", + "body": "@ngcthuong Em đã update theo review của a ạ :smile: " + } + }, + "public": true, + "created_at": "2019-10-21T21:54:50Z" + }, + { + "id": "10680625191", + "type": "CreateEvent", + "actor": { + "id": 45858947, + "login": "MG1222", + "display_login": "MG1222", + "gravatar_id": "", + "url": "https://api.github.com/users/MG1222", + "avatar_url": "https://avatars.githubusercontent.com/u/45858947?" + }, + "repo": { + "id": 216672080, + "name": "MG1222/gossip_sinatra", + "url": "https://api.github.com/repos/MG1222/gossip_sinatra" + }, + "payload": { + "ref": "master", + "ref_type": "branch", + "master_branch": "master", + "description": null, + "pusher_type": "user" + }, + "public": true, + "created_at": "2019-10-21T21:54:50Z" + }, + { + "id": "10680625179", + "type": "PushEvent", + "actor": { + "id": 10810283, + "login": "direwolf-github", + "display_login": "direwolf-github", + "gravatar_id": "", + "url": "https://api.github.com/users/direwolf-github", + "avatar_url": "https://avatars.githubusercontent.com/u/10810283?" + }, + "repo": { + "id": 183051410, + "name": "direwolf-github/my-app", + "url": "https://api.github.com/repos/direwolf-github/my-app" + }, + "payload": { + "push_id": 4176854980, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/branch-8855a329", + "head": "dc6a6cfdbe6e79644efa066bbea65fcaa7a5cdc3", + "before": "97b657afdf54d3b3ccbcb094fc803fee1c0e5821", + "commits": [ + { + "sha": "dc6a6cfdbe6e79644efa066bbea65fcaa7a5cdc3", + "author": { + "email": "heroku-lifecycle+direwolf-github@salesforce.com", + "name": "direwolf-github" + }, + "message": "add readme.txt", + "distinct": true, + "url": "https://api.github.com/repos/direwolf-github/my-app/commits/dc6a6cfdbe6e79644efa066bbea65fcaa7a5cdc3" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:50Z" + }, + { + "id": "10680625182", + "type": "IssuesEvent", + "actor": { + "id": 56306344, + "login": "SindouNF", + "display_login": "SindouNF", + "gravatar_id": "", + "url": "https://api.github.com/users/SindouNF", + "avatar_url": "https://avatars.githubusercontent.com/u/56306344?" + }, + "repo": { + "id": 213643780, + "name": "paulo-eng-soft/projeto-eng-soft", + "url": "https://api.github.com/repos/paulo-eng-soft/projeto-eng-soft" + }, + "payload": { + "action": "closed", + "issue": { + "url": "https://api.github.com/repos/paulo-eng-soft/projeto-eng-soft/issues/1", + "repository_url": "https://api.github.com/repos/paulo-eng-soft/projeto-eng-soft", + "labels_url": "https://api.github.com/repos/paulo-eng-soft/projeto-eng-soft/issues/1/labels{/name}", + "comments_url": "https://api.github.com/repos/paulo-eng-soft/projeto-eng-soft/issues/1/comments", + "events_url": "https://api.github.com/repos/paulo-eng-soft/projeto-eng-soft/issues/1/events", + "html_url": "https://github.com/paulo-eng-soft/projeto-eng-soft/issues/1", + "id": 509687614, + "node_id": "MDU6SXNzdWU1MDk2ODc2MTQ=", + "number": 1, + "title": "Fase 0", + "user": { + "login": "SindouNF", + "id": 56306344, + "node_id": "MDQ6VXNlcjU2MzA2MzQ0", + "avatar_url": "https://avatars0.githubusercontent.com/u/56306344?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/SindouNF", + "html_url": "https://github.com/SindouNF", + "followers_url": "https://api.github.com/users/SindouNF/followers", + "following_url": "https://api.github.com/users/SindouNF/following{/other_user}", + "gists_url": "https://api.github.com/users/SindouNF/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SindouNF/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SindouNF/subscriptions", + "organizations_url": "https://api.github.com/users/SindouNF/orgs", + "repos_url": "https://api.github.com/users/SindouNF/repos", + "events_url": "https://api.github.com/users/SindouNF/events{/privacy}", + "received_events_url": "https://api.github.com/users/SindouNF/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 1628304009, + "node_id": "MDU6TGFiZWwxNjI4MzA0MDA5", + "url": "https://api.github.com/repos/paulo-eng-soft/projeto-eng-soft/labels/Complete", + "name": "Complete", + "color": "4bd339", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-10-21T01:41:38Z", + "updated_at": "2019-10-21T21:54:50Z", + "closed_at": "2019-10-21T21:54:50Z", + "author_association": "COLLABORATOR", + "body": "Etapas para o procedimento da Fase 0" + } + }, + "public": true, + "created_at": "2019-10-21T21:54:50Z" + }, + { + "id": "10680625177", + "type": "PushEvent", + "actor": { + "id": 15263515, + "login": "stefanionescu", + "display_login": "stefanionescu", + "gravatar_id": "", + "url": "https://api.github.com/users/stefanionescu", + "avatar_url": "https://avatars.githubusercontent.com/u/15263515?" + }, + "repo": { + "id": 210862691, + "name": "komodo-finance/aws-oracle-feed-source", + "url": "https://api.github.com/repos/komodo-finance/aws-oracle-feed-source" + }, + "payload": { + "push_id": 4176854978, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "eeace75e56840498f81e2e8b8ccb1073331b49b2", + "before": "9f54a7e2e8417b5c442edbdb9bdcf26ff985c578", + "commits": [ + { + "sha": "eeace75e56840498f81e2e8b8ccb1073331b49b2", + "author": { + "email": "codrinionescu@yahoo.com", + "name": "stefanionescu" + }, + "message": "Integrated with new oracles, updating prices on Kovan", + "distinct": true, + "url": "https://api.github.com/repos/komodo-finance/aws-oracle-feed-source/commits/eeace75e56840498f81e2e8b8ccb1073331b49b2" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:50Z", + "org": { + "id": 54208539, + "login": "komodo-finance", + "gravatar_id": "", + "url": "https://api.github.com/orgs/komodo-finance", + "avatar_url": "https://avatars.githubusercontent.com/u/54208539?" + } + }, + { + "id": "10680625171", + "type": "PushEvent", + "actor": { + "id": 8162640, + "login": "rhythnic", + "display_login": "rhythnic", + "gravatar_id": "", + "url": "https://api.github.com/users/rhythnic", + "avatar_url": "https://avatars.githubusercontent.com/u/8162640?" + }, + "repo": { + "id": 120832655, + "name": "cablelabs/lpwanserver", + "url": "https://api.github.com/repos/cablelabs/lpwanserver" + }, + "payload": { + "push_id": 4176854977, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/issue-322", + "head": "b37c5fe4e006d5e3a8c0d632355fefe744b79ffc", + "before": "04fd1f20920c6759a5a9a6f8a22924b754687ebc", + "commits": [ + { + "sha": "b37c5fe4e006d5e3a8c0d632355fefe744b79ffc", + "author": { + "email": "nick@rhythnic.com", + "name": "Nick Baroni" + }, + "message": "Created networkDeployment model.", + "distinct": true, + "url": "https://api.github.com/repos/cablelabs/lpwanserver/commits/b37c5fe4e006d5e3a8c0d632355fefe744b79ffc" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:50Z", + "org": { + "id": 619376, + "login": "cablelabs", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cablelabs", + "avatar_url": "https://avatars.githubusercontent.com/u/619376?" + } + }, + { + "id": "10680625173", + "type": "IssuesEvent", + "actor": { + "id": 37936606, + "login": "github-learning-lab[bot]", + "display_login": "github-learning-lab", + "gravatar_id": "", + "url": "https://api.github.com/users/github-learning-lab[bot]", + "avatar_url": "https://avatars.githubusercontent.com/u/37936606?" + }, + "repo": { + "id": 216671952, + "name": "rcordeirotmu/reviewing-a-pull-request", + "url": "https://api.github.com/repos/rcordeirotmu/reviewing-a-pull-request" + }, + "payload": { + "action": "closed", + "issue": { + "url": "https://api.github.com/repos/rcordeirotmu/reviewing-a-pull-request/issues/1", + "repository_url": "https://api.github.com/repos/rcordeirotmu/reviewing-a-pull-request", + "labels_url": "https://api.github.com/repos/rcordeirotmu/reviewing-a-pull-request/issues/1/labels{/name}", + "comments_url": "https://api.github.com/repos/rcordeirotmu/reviewing-a-pull-request/issues/1/comments", + "events_url": "https://api.github.com/repos/rcordeirotmu/reviewing-a-pull-request/issues/1/events", + "html_url": "https://github.com/rcordeirotmu/reviewing-a-pull-request/issues/1", + "id": 510314364, + "node_id": "MDU6SXNzdWU1MTAzMTQzNjQ=", + "number": 1, + "title": "Welcome", + "user": { + "login": "github-learning-lab[bot]", + "id": 37936606, + "node_id": "MDM6Qm90Mzc5MzY2MDY=", + "avatar_url": "https://avatars0.githubusercontent.com/in/10572?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-learning-lab%5Bbot%5D", + "html_url": "https://github.com/apps/github-learning-lab", + "followers_url": "https://api.github.com/users/github-learning-lab%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-learning-lab%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-learning-lab%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-learning-lab%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-learning-lab%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-learning-lab%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-learning-lab%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-learning-lab%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-learning-lab%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": { + "login": "rcordeirotmu", + "id": 54368413, + "node_id": "MDQ6VXNlcjU0MzY4NDEz", + "avatar_url": "https://avatars0.githubusercontent.com/u/54368413?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rcordeirotmu", + "html_url": "https://github.com/rcordeirotmu", + "followers_url": "https://api.github.com/users/rcordeirotmu/followers", + "following_url": "https://api.github.com/users/rcordeirotmu/following{/other_user}", + "gists_url": "https://api.github.com/users/rcordeirotmu/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rcordeirotmu/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rcordeirotmu/subscriptions", + "organizations_url": "https://api.github.com/users/rcordeirotmu/orgs", + "repos_url": "https://api.github.com/users/rcordeirotmu/repos", + "events_url": "https://api.github.com/users/rcordeirotmu/events{/privacy}", + "received_events_url": "https://api.github.com/users/rcordeirotmu/received_events", + "type": "User", + "site_admin": false + }, + "assignees": [ + { + "login": "rcordeirotmu", + "id": 54368413, + "node_id": "MDQ6VXNlcjU0MzY4NDEz", + "avatar_url": "https://avatars0.githubusercontent.com/u/54368413?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rcordeirotmu", + "html_url": "https://github.com/rcordeirotmu", + "followers_url": "https://api.github.com/users/rcordeirotmu/followers", + "following_url": "https://api.github.com/users/rcordeirotmu/following{/other_user}", + "gists_url": "https://api.github.com/users/rcordeirotmu/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rcordeirotmu/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rcordeirotmu/subscriptions", + "organizations_url": "https://api.github.com/users/rcordeirotmu/orgs", + "repos_url": "https://api.github.com/users/rcordeirotmu/repos", + "events_url": "https://api.github.com/users/rcordeirotmu/events{/privacy}", + "received_events_url": "https://api.github.com/users/rcordeirotmu/received_events", + "type": "User", + "site_admin": false + } + ], + "milestone": null, + "comments": 1, + "created_at": "2019-10-21T21:52:26Z", + "updated_at": "2019-10-21T21:54:50Z", + "closed_at": "2019-10-21T21:54:50Z", + "author_association": "NONE", + "body": "## Welcome!\n\nHello and welcome! In this course you will learn how you can get your best work done in pull requests. You'll learn when and how to request a review, how to review someone else's code, and how to respond to reviews. To do this, we'll be playing around with the code in this repository that makes a simple Tetris game.\n\nIf you'd like, you can use [GitHub Pages](https://pages.github.com/) to host your Tetris game. Just go to the **Settings** tab of this repository. Scroll down to **GitHub Pages**. Select `master` as a **Source**, and click **Save**. \n\n### New to GitHub?\n\nFor this course, you'll need some background knowledge. If you need a refresher on the GitHub flow, check out [the Introduction to GitHub course](https://lab.github.com/courses/introduction-to-github).\n\n## Pull Requests Reviews 101\n\nReviewing a pull request is an opportunity to examine another contributor's changes. While reviewing a pull request, you can extrapolate how someone else solved a problem. It's an awesome opportunity to learn more about how the code works and how others solve problems. Reviewing a pull request is a great learning opportunity!\n\n## Step 1: Add assignees for issues and pull requests\n\nAssignees on issues and pull requests let other team members know who is responsible. The assignee oversees the issue or pull request in an accessible and visible way.\n\n### :keyboard: Activity: Assign yourself to this issue\n\n1. On the right side of the screen, click the `assign yourself` text under the **Assignees** section\n\n
        \n

        I'll respond below for your next step

        \n\n> _Sometimes I respond too fast for the page to update! If you perform an expected action and don't see a response, wait a few seconds and refresh the page for your next steps._\n" + } + }, + "public": true, + "created_at": "2019-10-21T21:54:50Z" + }, + { + "id": "10680625172", + "type": "WatchEvent", + "actor": { + "id": 9640576, + "login": "laurentlp", + "display_login": "laurentlp", + "gravatar_id": "", + "url": "https://api.github.com/users/laurentlp", + "avatar_url": "https://avatars.githubusercontent.com/u/9640576?" + }, + "repo": { + "id": 216389258, + "name": "RanadeepPolavarapu/docker-nginx-http3", + "url": "https://api.github.com/repos/RanadeepPolavarapu/docker-nginx-http3" + }, + "payload": { + "action": "started" + }, + "public": true, + "created_at": "2019-10-21T21:54:50Z" + }, + { + "id": "10680625176", + "type": "CreateEvent", + "actor": { + "id": 53870272, + "login": "evanschwarz90", + "display_login": "evanschwarz90", + "gravatar_id": "", + "url": "https://api.github.com/users/evanschwarz90", + "avatar_url": "https://avatars.githubusercontent.com/u/53870272?" + }, + "repo": { + "id": 213791687, + "name": "GHRBLD05/Retail-Product-Webpage", + "url": "https://api.github.com/repos/GHRBLD05/Retail-Product-Webpage" + }, + "payload": { + "ref": "changeProductOnClick", + "ref_type": "branch", + "master_branch": "master", + "description": null, + "pusher_type": "user" + }, + "public": true, + "created_at": "2019-10-21T21:54:50Z", + "org": { + "id": 56328373, + "login": "GHRBLD05", + "gravatar_id": "", + "url": "https://api.github.com/orgs/GHRBLD05", + "avatar_url": "https://avatars.githubusercontent.com/u/56328373?" + } + }, + { + "id": "10680625158", + "type": "PushEvent", + "actor": { + "id": 31808922, + "login": "brandontkessler", + "display_login": "brandontkessler", + "gravatar_id": "", + "url": "https://api.github.com/users/brandontkessler", + "avatar_url": "https://avatars.githubusercontent.com/u/31808922?" + }, + "repo": { + "id": 206614200, + "name": "brandontkessler/data_transformations_ps", + "url": "https://api.github.com/repos/brandontkessler/data_transformations_ps" + }, + "payload": { + "push_id": 4176854972, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "6bf9c3f7d85380942350eb48f8d45eb22f38cac8", + "before": "8542d53991e43656fdaf4a0ac48425755c02c229", + "commits": [ + { + "sha": "6bf9c3f7d85380942350eb48f8d45eb22f38cac8", + "author": { + "email": "brandontkessler@gmail.com", + "name": "Brandon" + }, + "message": "imports and data prep", + "distinct": true, + "url": "https://api.github.com/repos/brandontkessler/data_transformations_ps/commits/6bf9c3f7d85380942350eb48f8d45eb22f38cac8" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:50Z" + }, + { + "id": "10680625156", + "type": "PushEvent", + "actor": { + "id": 51011840, + "login": "othhotro", + "display_login": "othhotro", + "gravatar_id": "", + "url": "https://api.github.com/users/othhotro", + "avatar_url": "https://avatars.githubusercontent.com/u/51011840?" + }, + "repo": { + "id": 201879384, + "name": "othhotro/Roo.Exe", + "url": "https://api.github.com/repos/othhotro/Roo.Exe" + }, + "payload": { + "push_id": 4176854968, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "ff47c37132b9f65b7a019f68bd6f920f9557850f", + "before": "15016ceee06af3047744c7bac173ebc162c2b3ac", + "commits": [ + { + "sha": "ff47c37132b9f65b7a019f68bd6f920f9557850f", + "author": { + "email": "oth.hotro@gmail.com", + "name": "oth.hotro@gmail.com" + }, + "message": "Lần chạy [2019-10-22 04-53]:Lần thứ 51", + "distinct": true, + "url": "https://api.github.com/repos/othhotro/Roo.Exe/commits/ff47c37132b9f65b7a019f68bd6f920f9557850f" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:50Z" + }, + { + "id": "10680625155", + "type": "DeleteEvent", + "actor": { + "id": 49699333, + "login": "dependabot[bot]", + "display_login": "dependabot", + "gravatar_id": "", + "url": "https://api.github.com/users/dependabot[bot]", + "avatar_url": "https://avatars.githubusercontent.com/u/49699333?" + }, + "repo": { + "id": 147853345, + "name": "jjorissen52/bug_reproduction", + "url": "https://api.github.com/repos/jjorissen52/bug_reproduction" + }, + "payload": { + "ref": "dependabot/pip/django-1.11.23", + "ref_type": "branch", + "pusher_type": "user" + }, + "public": true, + "created_at": "2019-10-21T21:54:50Z" + }, + { + "id": "10680625066", + "type": "PushEvent", + "actor": { + "id": 33434372, + "login": "tensorflow-copybara", + "display_login": "tensorflow-copybara", + "gravatar_id": "", + "url": "https://api.github.com/users/tensorflow-copybara", + "avatar_url": "https://avatars.githubusercontent.com/u/33434372?" + }, + "repo": { + "id": 45717250, + "name": "tensorflow/tensorflow", + "url": "https://api.github.com/repos/tensorflow/tensorflow" + }, + "payload": { + "push_id": 4176854921, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "f0458723e4e88ee34613c984b02b3dc927c4a538", + "before": "d0973869c9d7f14f0353a7eceddf9d3daa1382e1", + "commits": [ + { + "sha": "f0458723e4e88ee34613c984b02b3dc927c4a538", + "author": { + "email": "hyey@google.com", + "name": "Hye Soo Yang" + }, + "message": "Migrate (nightly) release build scripts to opensource - ubuntu_16/cpu_py2_full/*\n\nPiperOrigin-RevId: 275917502\nChange-Id: If8c216543e53e45587b2b92b86ddbdbd3bd1eb81", + "distinct": true, + "url": "https://api.github.com/repos/tensorflow/tensorflow/commits/f0458723e4e88ee34613c984b02b3dc927c4a538" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:49Z", + "org": { + "id": 15658638, + "login": "tensorflow", + "gravatar_id": "", + "url": "https://api.github.com/orgs/tensorflow", + "avatar_url": "https://avatars.githubusercontent.com/u/15658638?" + } + }, + { + "id": "10680625146", + "type": "CreateEvent", + "actor": { + "id": 10810283, + "login": "direwolf-github", + "display_login": "direwolf-github", + "gravatar_id": "", + "url": "https://api.github.com/users/direwolf-github", + "avatar_url": "https://avatars.githubusercontent.com/u/10810283?" + }, + "repo": { + "id": 216672326, + "name": "direwolf-github/my-app-752826ef", + "url": "https://api.github.com/repos/direwolf-github/my-app-752826ef" + }, + "payload": { + "ref": "branch-c7fa2a10", + "ref_type": "branch", + "master_branch": "master", + "description": null, + "pusher_type": "user" + }, + "public": true, + "created_at": "2019-10-21T21:54:49Z" + }, + { + "id": "10680625142", + "type": "IssuesEvent", + "actor": { + "id": 53636771, + "login": "Dany-LF", + "display_login": "Dany-LF", + "gravatar_id": "", + "url": "https://api.github.com/users/Dany-LF", + "avatar_url": "https://avatars.githubusercontent.com/u/53636771?" + }, + "repo": { + "id": 114530056, + "name": "Jisagi/Discord-guild-copy", + "url": "https://api.github.com/repos/Jisagi/Discord-guild-copy" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/Jisagi/Discord-guild-copy/issues/60", + "repository_url": "https://api.github.com/repos/Jisagi/Discord-guild-copy", + "labels_url": "https://api.github.com/repos/Jisagi/Discord-guild-copy/issues/60/labels{/name}", + "comments_url": "https://api.github.com/repos/Jisagi/Discord-guild-copy/issues/60/comments", + "events_url": "https://api.github.com/repos/Jisagi/Discord-guild-copy/issues/60/events", + "html_url": "https://github.com/Jisagi/Discord-guild-copy/issues/60", + "id": 510315279, + "node_id": "MDU6SXNzdWU1MTAzMTUyNzk=", + "number": 60, + "title": "Cannot read property 'id' of undefined", + "user": { + "login": "Dany-LF", + "id": 53636771, + "node_id": "MDQ6VXNlcjUzNjM2Nzcx", + "avatar_url": "https://avatars2.githubusercontent.com/u/53636771?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Dany-LF", + "html_url": "https://github.com/Dany-LF", + "followers_url": "https://api.github.com/users/Dany-LF/followers", + "following_url": "https://api.github.com/users/Dany-LF/following{/other_user}", + "gists_url": "https://api.github.com/users/Dany-LF/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Dany-LF/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Dany-LF/subscriptions", + "organizations_url": "https://api.github.com/users/Dany-LF/orgs", + "repos_url": "https://api.github.com/users/Dany-LF/repos", + "events_url": "https://api.github.com/users/Dany-LF/events{/privacy}", + "received_events_url": "https://api.github.com/users/Dany-LF/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-10-21T21:54:49Z", + "updated_at": "2019-10-21T21:54:49Z", + "closed_at": null, + "author_association": "NONE", + "body": "1. Serializing general data\r\n2. Serializing role data\r\nTypeError: Cannot read property 'id' of undefined\r\n at roleCol.map.role (/home/root2/Bureau/Discord-guild-copy-master/objects/serializer.js:103:57)\r\n" + } + }, + "public": true, + "created_at": "2019-10-21T21:54:49Z" + }, + { + "id": "10680625138", + "type": "CreateEvent", + "actor": { + "id": 56849494, + "login": "belindarose", + "display_login": "belindarose", + "gravatar_id": "", + "url": "https://api.github.com/users/belindarose", + "avatar_url": "https://avatars.githubusercontent.com/u/56849494?" + }, + "repo": { + "id": 216672339, + "name": "belindarose/b-rose", + "url": "https://api.github.com/repos/belindarose/b-rose" + }, + "payload": { + "ref": null, + "ref_type": "repository", + "master_branch": "master", + "description": null, + "pusher_type": "user" + }, + "public": true, + "created_at": "2019-10-21T21:54:49Z" + }, + { + "id": "10680625132", + "type": "PullRequestEvent", + "actor": { + "id": 10810283, + "login": "direwolf-github", + "display_login": "direwolf-github", + "gravatar_id": "", + "url": "https://api.github.com/users/direwolf-github", + "avatar_url": "https://avatars.githubusercontent.com/u/10810283?" + }, + "repo": { + "id": 216672323, + "name": "direwolf-github/my-app-f9704ec8", + "url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8" + }, + "payload": { + "action": "opened", + "number": 1, + "pull_request": { + "url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/pulls/1", + "id": 330711281, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzMwNzExMjgx", + "html_url": "https://github.com/direwolf-github/my-app-f9704ec8/pull/1", + "diff_url": "https://github.com/direwolf-github/my-app-f9704ec8/pull/1.diff", + "patch_url": "https://github.com/direwolf-github/my-app-f9704ec8/pull/1.patch", + "issue_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/issues/1", + "number": 1, + "state": "open", + "locked": false, + "title": "Direwolf review apps test branch-e08f46fa", + "user": { + "login": "direwolf-github", + "id": 10810283, + "node_id": "MDQ6VXNlcjEwODEwMjgz", + "avatar_url": "https://avatars0.githubusercontent.com/u/10810283?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/direwolf-github", + "html_url": "https://github.com/direwolf-github", + "followers_url": "https://api.github.com/users/direwolf-github/followers", + "following_url": "https://api.github.com/users/direwolf-github/following{/other_user}", + "gists_url": "https://api.github.com/users/direwolf-github/gists{/gist_id}", + "starred_url": "https://api.github.com/users/direwolf-github/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/direwolf-github/subscriptions", + "organizations_url": "https://api.github.com/users/direwolf-github/orgs", + "repos_url": "https://api.github.com/users/direwolf-github/repos", + "events_url": "https://api.github.com/users/direwolf-github/events{/privacy}", + "received_events_url": "https://api.github.com/users/direwolf-github/received_events", + "type": "User", + "site_admin": false + }, + "body": "Direwolf review apps test branch-e08f46fa", + "created_at": "2019-10-21T21:54:49Z", + "updated_at": "2019-10-21T21:54:49Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/pulls/1/commits", + "review_comments_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/pulls/1/comments", + "review_comment_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/issues/1/comments", + "statuses_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/statuses/59e58b1b034f83160109af55b0b4432e1fe54708", + "head": { + "label": "direwolf-github:branch-e08f46fa", + "ref": "branch-e08f46fa", + "sha": "59e58b1b034f83160109af55b0b4432e1fe54708", + "user": { + "login": "direwolf-github", + "id": 10810283, + "node_id": "MDQ6VXNlcjEwODEwMjgz", + "avatar_url": "https://avatars0.githubusercontent.com/u/10810283?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/direwolf-github", + "html_url": "https://github.com/direwolf-github", + "followers_url": "https://api.github.com/users/direwolf-github/followers", + "following_url": "https://api.github.com/users/direwolf-github/following{/other_user}", + "gists_url": "https://api.github.com/users/direwolf-github/gists{/gist_id}", + "starred_url": "https://api.github.com/users/direwolf-github/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/direwolf-github/subscriptions", + "organizations_url": "https://api.github.com/users/direwolf-github/orgs", + "repos_url": "https://api.github.com/users/direwolf-github/repos", + "events_url": "https://api.github.com/users/direwolf-github/events{/privacy}", + "received_events_url": "https://api.github.com/users/direwolf-github/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 216672323, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTY2NzIzMjM=", + "name": "my-app-f9704ec8", + "full_name": "direwolf-github/my-app-f9704ec8", + "private": false, + "owner": { + "login": "direwolf-github", + "id": 10810283, + "node_id": "MDQ6VXNlcjEwODEwMjgz", + "avatar_url": "https://avatars0.githubusercontent.com/u/10810283?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/direwolf-github", + "html_url": "https://github.com/direwolf-github", + "followers_url": "https://api.github.com/users/direwolf-github/followers", + "following_url": "https://api.github.com/users/direwolf-github/following{/other_user}", + "gists_url": "https://api.github.com/users/direwolf-github/gists{/gist_id}", + "starred_url": "https://api.github.com/users/direwolf-github/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/direwolf-github/subscriptions", + "organizations_url": "https://api.github.com/users/direwolf-github/orgs", + "repos_url": "https://api.github.com/users/direwolf-github/repos", + "events_url": "https://api.github.com/users/direwolf-github/events{/privacy}", + "received_events_url": "https://api.github.com/users/direwolf-github/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/direwolf-github/my-app-f9704ec8", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8", + "forks_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/forks", + "keys_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/teams", + "hooks_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/hooks", + "issue_events_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/issues/events{/number}", + "events_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/events", + "assignees_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/assignees{/user}", + "branches_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/branches{/branch}", + "tags_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/tags", + "blobs_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/statuses/{sha}", + "languages_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/languages", + "stargazers_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/stargazers", + "contributors_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/contributors", + "subscribers_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/subscribers", + "subscription_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/subscription", + "commits_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/contents/{+path}", + "compare_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/merges", + "archive_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/downloads", + "issues_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/issues{/number}", + "pulls_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/pulls{/number}", + "milestones_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/milestones{/number}", + "notifications_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/labels{/name}", + "releases_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/releases{/id}", + "deployments_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/deployments", + "created_at": "2019-10-21T21:54:43Z", + "updated_at": "2019-10-21T21:54:46Z", + "pushed_at": "2019-10-21T21:54:49Z", + "git_url": "git://github.com/direwolf-github/my-app-f9704ec8.git", + "ssh_url": "git@github.com:direwolf-github/my-app-f9704ec8.git", + "clone_url": "https://github.com/direwolf-github/my-app-f9704ec8.git", + "svn_url": "https://github.com/direwolf-github/my-app-f9704ec8", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "direwolf-github:master", + "ref": "master", + "sha": "4d3c6b596570ce87ea9ec7549f75603aaa5a680f", + "user": { + "login": "direwolf-github", + "id": 10810283, + "node_id": "MDQ6VXNlcjEwODEwMjgz", + "avatar_url": "https://avatars0.githubusercontent.com/u/10810283?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/direwolf-github", + "html_url": "https://github.com/direwolf-github", + "followers_url": "https://api.github.com/users/direwolf-github/followers", + "following_url": "https://api.github.com/users/direwolf-github/following{/other_user}", + "gists_url": "https://api.github.com/users/direwolf-github/gists{/gist_id}", + "starred_url": "https://api.github.com/users/direwolf-github/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/direwolf-github/subscriptions", + "organizations_url": "https://api.github.com/users/direwolf-github/orgs", + "repos_url": "https://api.github.com/users/direwolf-github/repos", + "events_url": "https://api.github.com/users/direwolf-github/events{/privacy}", + "received_events_url": "https://api.github.com/users/direwolf-github/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 216672323, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTY2NzIzMjM=", + "name": "my-app-f9704ec8", + "full_name": "direwolf-github/my-app-f9704ec8", + "private": false, + "owner": { + "login": "direwolf-github", + "id": 10810283, + "node_id": "MDQ6VXNlcjEwODEwMjgz", + "avatar_url": "https://avatars0.githubusercontent.com/u/10810283?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/direwolf-github", + "html_url": "https://github.com/direwolf-github", + "followers_url": "https://api.github.com/users/direwolf-github/followers", + "following_url": "https://api.github.com/users/direwolf-github/following{/other_user}", + "gists_url": "https://api.github.com/users/direwolf-github/gists{/gist_id}", + "starred_url": "https://api.github.com/users/direwolf-github/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/direwolf-github/subscriptions", + "organizations_url": "https://api.github.com/users/direwolf-github/orgs", + "repos_url": "https://api.github.com/users/direwolf-github/repos", + "events_url": "https://api.github.com/users/direwolf-github/events{/privacy}", + "received_events_url": "https://api.github.com/users/direwolf-github/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/direwolf-github/my-app-f9704ec8", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8", + "forks_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/forks", + "keys_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/teams", + "hooks_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/hooks", + "issue_events_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/issues/events{/number}", + "events_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/events", + "assignees_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/assignees{/user}", + "branches_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/branches{/branch}", + "tags_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/tags", + "blobs_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/statuses/{sha}", + "languages_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/languages", + "stargazers_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/stargazers", + "contributors_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/contributors", + "subscribers_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/subscribers", + "subscription_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/subscription", + "commits_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/contents/{+path}", + "compare_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/merges", + "archive_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/downloads", + "issues_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/issues{/number}", + "pulls_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/pulls{/number}", + "milestones_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/milestones{/number}", + "notifications_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/labels{/name}", + "releases_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/releases{/id}", + "deployments_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/deployments", + "created_at": "2019-10-21T21:54:43Z", + "updated_at": "2019-10-21T21:54:46Z", + "pushed_at": "2019-10-21T21:54:49Z", + "git_url": "git://github.com/direwolf-github/my-app-f9704ec8.git", + "ssh_url": "git@github.com:direwolf-github/my-app-f9704ec8.git", + "clone_url": "https://github.com/direwolf-github/my-app-f9704ec8.git", + "svn_url": "https://github.com/direwolf-github/my-app-f9704ec8", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/pulls/1" + }, + "html": { + "href": "https://github.com/direwolf-github/my-app-f9704ec8/pull/1" + }, + "issue": { + "href": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/issues/1" + }, + "comments": { + "href": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/issues/1/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/pulls/1/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/pulls/1/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/statuses/59e58b1b034f83160109af55b0b4432e1fe54708" + } + }, + "author_association": "OWNER", + "merged": false, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 1, + "deletions": 0, + "changed_files": 1 + } + }, + "public": true, + "created_at": "2019-10-21T21:54:49Z" + }, + { + "id": "10680625127", + "type": "CreateEvent", + "actor": { + "id": 10810283, + "login": "direwolf-github", + "display_login": "direwolf-github", + "gravatar_id": "", + "url": "https://api.github.com/users/direwolf-github", + "avatar_url": "https://avatars.githubusercontent.com/u/10810283?" + }, + "repo": { + "id": 183051410, + "name": "direwolf-github/my-app", + "url": "https://api.github.com/repos/direwolf-github/my-app" + }, + "payload": { + "ref": "branch-cdd0a924", + "ref_type": "branch", + "master_branch": "master", + "description": null, + "pusher_type": "user" + }, + "public": true, + "created_at": "2019-10-21T21:54:49Z" + }, + { + "id": "10680625119", + "type": "PushEvent", + "actor": { + "id": 1276443, + "login": "jalopezsilva", + "display_login": "jalopezsilva", + "gravatar_id": "", + "url": "https://api.github.com/users/jalopezsilva", + "avatar_url": "https://avatars.githubusercontent.com/u/1276443?" + }, + "repo": { + "id": 209424327, + "name": "jalopezsilva/requests", + "url": "https://api.github.com/repos/jalopezsilva/requests" + }, + "payload": { + "push_id": 4176854952, + "size": 2, + "distinct_size": 2, + "ref": "refs/heads/master", + "head": "7949f68fc3607986a80d4097233450ecc034432e", + "before": "452fbf0db4f98082c941bd84c2e24d6f4444c402", + "commits": [ + { + "sha": "3eae408d1811e3d79b79dae76ac0d56a25f47d76", + "author": { + "email": "jalopezsilva@gmail.com", + "name": "Jorge Lopez Silva" + }, + "message": "Prepare for FB internal patch.", + "distinct": true, + "url": "https://api.github.com/repos/jalopezsilva/requests/commits/3eae408d1811e3d79b79dae76ac0d56a25f47d76" + }, + { + "sha": "7949f68fc3607986a80d4097233450ecc034432e", + "author": { + "email": "jalopezsilva@gmail.com", + "name": "Jorge Lopez Silva" + }, + "message": "Fix bug when proxy_scheme is not set.", + "distinct": true, + "url": "https://api.github.com/repos/jalopezsilva/requests/commits/7949f68fc3607986a80d4097233450ecc034432e" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:49Z" + }, + { + "id": "10680625108", + "type": "PushEvent", + "actor": { + "id": 52762728, + "login": "lflores0214", + "display_login": "lflores0214", + "gravatar_id": "", + "url": "https://api.github.com/users/lflores0214", + "avatar_url": "https://avatars.githubusercontent.com/u/52762728?" + }, + "repo": { + "id": 216055148, + "name": "build-week-vegan-meets/FE", + "url": "https://api.github.com/repos/build-week-vegan-meets/FE" + }, + "payload": { + "push_id": 4176854950, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/Luis-Flores", + "head": "077d3a9a104483c350d53b57b8320d784a05ed03", + "before": "224f95bcbb1700c7f5ee53dbdb64df898b0e4f29", + "commits": [ + { + "sha": "077d3a9a104483c350d53b57b8320d784a05ed03", + "author": { + "email": "Lflores02142@gmail.com", + "name": "Luis Floresgit config --global user.name Luis" + }, + "message": "reformatted to use Formik", + "distinct": true, + "url": "https://api.github.com/repos/build-week-vegan-meets/FE/commits/077d3a9a104483c350d53b57b8320d784a05ed03" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:49Z", + "org": { + "id": 56733259, + "login": "build-week-vegan-meets", + "gravatar_id": "", + "url": "https://api.github.com/orgs/build-week-vegan-meets", + "avatar_url": "https://avatars.githubusercontent.com/u/56733259?" + } + }, + { + "id": "10680625114", + "type": "IssueCommentEvent", + "actor": { + "id": 33439345, + "login": "tgsong", + "display_login": "tgsong", + "gravatar_id": "", + "url": "https://api.github.com/users/tgsong", + "avatar_url": "https://avatars.githubusercontent.com/u/33439345?" + }, + "repo": { + "id": 110170439, + "name": "aws/amazon-freertos", + "url": "https://api.github.com/repos/aws/amazon-freertos" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/aws/amazon-freertos/issues/832", + "repository_url": "https://api.github.com/repos/aws/amazon-freertos", + "labels_url": "https://api.github.com/repos/aws/amazon-freertos/issues/832/labels{/name}", + "comments_url": "https://api.github.com/repos/aws/amazon-freertos/issues/832/comments", + "events_url": "https://api.github.com/repos/aws/amazon-freertos/issues/832/events", + "html_url": "https://github.com/aws/amazon-freertos/issues/832", + "id": 459524798, + "node_id": "MDU6SXNzdWU0NTk1MjQ3OTg=", + "number": 832, + "title": "Document how to create a new cmake project outside the freertos source tree", + "user": { + "login": "jrr", + "id": 164652, + "node_id": "MDQ6VXNlcjE2NDY1Mg==", + "avatar_url": "https://avatars0.githubusercontent.com/u/164652?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jrr", + "html_url": "https://github.com/jrr", + "followers_url": "https://api.github.com/users/jrr/followers", + "following_url": "https://api.github.com/users/jrr/following{/other_user}", + "gists_url": "https://api.github.com/users/jrr/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jrr/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jrr/subscriptions", + "organizations_url": "https://api.github.com/users/jrr/orgs", + "repos_url": "https://api.github.com/users/jrr/repos", + "events_url": "https://api.github.com/users/jrr/events{/privacy}", + "received_events_url": "https://api.github.com/users/jrr/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 37, + "created_at": "2019-06-23T01:04:51Z", + "updated_at": "2019-10-21T21:54:49Z", + "closed_at": null, + "author_association": "NONE", + "body": "**Is your feature request related to a problem? Please describe.** \r\nThe Getting Started Guides describe how to run the demo apps, but I can't find anything about creating a _new_ project.\r\n\r\n**Describe the solution you would like.** \r\nDocumentation describing how to create a new project outside the amazon-freertos source tree, and guidance about how to consume freertos from outside. \r\n\r\n**Additional context** \r\nWith the old Make-based system, I was able to create a new ESP32 project that references amazon-freertos from outside, including this repo as an unmodified git submodule.\r\n\r\n(This wasn't documented before, either, so it took significant effort!)\r\n\r\nNow with the new cmake system I feel like I have to start all over.\r\n\r\n**I'm looking for something like:**\r\n1) Copy files X, Y, and Z into a new directory\r\n2) Export an `AMAZON_FREERTOS_PATH` environment variable pointing the root directory of the amazon-freertos repo\r\n3) Issue command `cmake -D...` to build your application image.\r\n\r\nIs this documented anywhere? Am I missing something?" + }, + "comment": { + "url": "https://api.github.com/repos/aws/amazon-freertos/issues/comments/544724571", + "html_url": "https://github.com/aws/amazon-freertos/issues/832#issuecomment-544724571", + "issue_url": "https://api.github.com/repos/aws/amazon-freertos/issues/832", + "id": 544724571, + "node_id": "MDEyOklzc3VlQ29tbWVudDU0NDcyNDU3MQ==", + "user": { + "login": "tgsong", + "id": 33439345, + "node_id": "MDQ6VXNlcjMzNDM5MzQ1", + "avatar_url": "https://avatars2.githubusercontent.com/u/33439345?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/tgsong", + "html_url": "https://github.com/tgsong", + "followers_url": "https://api.github.com/users/tgsong/followers", + "following_url": "https://api.github.com/users/tgsong/following{/other_user}", + "gists_url": "https://api.github.com/users/tgsong/gists{/gist_id}", + "starred_url": "https://api.github.com/users/tgsong/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/tgsong/subscriptions", + "organizations_url": "https://api.github.com/users/tgsong/orgs", + "repos_url": "https://api.github.com/users/tgsong/repos", + "events_url": "https://api.github.com/users/tgsong/events{/privacy}", + "received_events_url": "https://api.github.com/users/tgsong/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2019-10-21T21:54:49Z", + "updated_at": "2019-10-21T21:54:49Z", + "author_association": "COLLABORATOR", + "body": "@JairoDaniel I see you have this line in your CMake file, `file(GLOB SOURCES \"hello/main.c\")`. However, you said your project structure has `src/main.c`. Can you double check if you're compiling that `main.c` or not? CMake won't tell you if the `SOURCES` variable is empty or not." + } + }, + "public": true, + "created_at": "2019-10-21T21:54:49Z", + "org": { + "id": 2232217, + "login": "aws", + "gravatar_id": "", + "url": "https://api.github.com/orgs/aws", + "avatar_url": "https://avatars.githubusercontent.com/u/2232217?" + } + }, + { + "id": "10680625109", + "type": "PushEvent", + "actor": { + "id": 53228114, + "login": "Mikeulrich75", + "display_login": "Mikeulrich75", + "gravatar_id": "", + "url": "https://api.github.com/users/Mikeulrich75", + "avatar_url": "https://avatars.githubusercontent.com/u/53228114?" + }, + "repo": { + "id": 216653839, + "name": "Mikeulrich75/dataLayerBuilderStandardEcommerce", + "url": "https://api.github.com/repos/Mikeulrich75/dataLayerBuilderStandardEcommerce" + }, + "payload": { + "push_id": 4176854947, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "0757c0a942788403c9792b434e3b7cee81446a66", + "before": "1af55801fc12dc12bbe523ff41ea351841bca423", + "commits": [ + { + "sha": "0757c0a942788403c9792b434e3b7cee81446a66", + "author": { + "email": "53228114+Mikeulrich75@users.noreply.github.com", + "name": "Mikeulrich75" + }, + "message": "Update metadata.yaml", + "distinct": true, + "url": "https://api.github.com/repos/Mikeulrich75/dataLayerBuilderStandardEcommerce/commits/0757c0a942788403c9792b434e3b7cee81446a66" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:49Z" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/__files/events-6354ffb5-fa83-474c-94ea-f91ca33f5a71.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/__files/events-6354ffb5-fa83-474c-94ea-f91ca33f5a71.json new file mode 100644 index 0000000000..284474b47d --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/__files/events-6354ffb5-fa83-474c-94ea-f91ca33f5a71.json @@ -0,0 +1,3209 @@ +[ + { + "id": "10680625142", + "type": "IssuesEvent", + "actor": { + "id": 53636771, + "login": "Dany-LF", + "display_login": "Dany-LF", + "gravatar_id": "", + "url": "https://api.github.com/users/Dany-LF", + "avatar_url": "https://avatars.githubusercontent.com/u/53636771?" + }, + "repo": { + "id": 114530056, + "name": "Jisagi/Discord-guild-copy", + "url": "https://api.github.com/repos/Jisagi/Discord-guild-copy" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/Jisagi/Discord-guild-copy/issues/60", + "repository_url": "https://api.github.com/repos/Jisagi/Discord-guild-copy", + "labels_url": "https://api.github.com/repos/Jisagi/Discord-guild-copy/issues/60/labels{/name}", + "comments_url": "https://api.github.com/repos/Jisagi/Discord-guild-copy/issues/60/comments", + "events_url": "https://api.github.com/repos/Jisagi/Discord-guild-copy/issues/60/events", + "html_url": "https://github.com/Jisagi/Discord-guild-copy/issues/60", + "id": 510315279, + "node_id": "MDU6SXNzdWU1MTAzMTUyNzk=", + "number": 60, + "title": "Cannot read property 'id' of undefined", + "user": { + "login": "Dany-LF", + "id": 53636771, + "node_id": "MDQ6VXNlcjUzNjM2Nzcx", + "avatar_url": "https://avatars2.githubusercontent.com/u/53636771?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Dany-LF", + "html_url": "https://github.com/Dany-LF", + "followers_url": "https://api.github.com/users/Dany-LF/followers", + "following_url": "https://api.github.com/users/Dany-LF/following{/other_user}", + "gists_url": "https://api.github.com/users/Dany-LF/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Dany-LF/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Dany-LF/subscriptions", + "organizations_url": "https://api.github.com/users/Dany-LF/orgs", + "repos_url": "https://api.github.com/users/Dany-LF/repos", + "events_url": "https://api.github.com/users/Dany-LF/events{/privacy}", + "received_events_url": "https://api.github.com/users/Dany-LF/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-10-21T21:54:49Z", + "updated_at": "2019-10-21T21:54:49Z", + "closed_at": null, + "author_association": "NONE", + "body": "1. Serializing general data\r\n2. Serializing role data\r\nTypeError: Cannot read property 'id' of undefined\r\n at roleCol.map.role (/home/root2/Bureau/Discord-guild-copy-master/objects/serializer.js:103:57)\r\n" + } + }, + "public": true, + "created_at": "2019-10-21T21:54:49Z" + }, + { + "id": "10680625138", + "type": "CreateEvent", + "actor": { + "id": 56849494, + "login": "belindarose", + "display_login": "belindarose", + "gravatar_id": "", + "url": "https://api.github.com/users/belindarose", + "avatar_url": "https://avatars.githubusercontent.com/u/56849494?" + }, + "repo": { + "id": 216672339, + "name": "belindarose/b-rose", + "url": "https://api.github.com/repos/belindarose/b-rose" + }, + "payload": { + "ref": null, + "ref_type": "repository", + "master_branch": "master", + "description": null, + "pusher_type": "user" + }, + "public": true, + "created_at": "2019-10-21T21:54:49Z" + }, + { + "id": "10680625132", + "type": "PullRequestEvent", + "actor": { + "id": 10810283, + "login": "direwolf-github", + "display_login": "direwolf-github", + "gravatar_id": "", + "url": "https://api.github.com/users/direwolf-github", + "avatar_url": "https://avatars.githubusercontent.com/u/10810283?" + }, + "repo": { + "id": 216672323, + "name": "direwolf-github/my-app-f9704ec8", + "url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8" + }, + "payload": { + "action": "opened", + "number": 1, + "pull_request": { + "url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/pulls/1", + "id": 330711281, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzMwNzExMjgx", + "html_url": "https://github.com/direwolf-github/my-app-f9704ec8/pull/1", + "diff_url": "https://github.com/direwolf-github/my-app-f9704ec8/pull/1.diff", + "patch_url": "https://github.com/direwolf-github/my-app-f9704ec8/pull/1.patch", + "issue_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/issues/1", + "number": 1, + "state": "open", + "locked": false, + "title": "Direwolf review apps test branch-e08f46fa", + "user": { + "login": "direwolf-github", + "id": 10810283, + "node_id": "MDQ6VXNlcjEwODEwMjgz", + "avatar_url": "https://avatars0.githubusercontent.com/u/10810283?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/direwolf-github", + "html_url": "https://github.com/direwolf-github", + "followers_url": "https://api.github.com/users/direwolf-github/followers", + "following_url": "https://api.github.com/users/direwolf-github/following{/other_user}", + "gists_url": "https://api.github.com/users/direwolf-github/gists{/gist_id}", + "starred_url": "https://api.github.com/users/direwolf-github/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/direwolf-github/subscriptions", + "organizations_url": "https://api.github.com/users/direwolf-github/orgs", + "repos_url": "https://api.github.com/users/direwolf-github/repos", + "events_url": "https://api.github.com/users/direwolf-github/events{/privacy}", + "received_events_url": "https://api.github.com/users/direwolf-github/received_events", + "type": "User", + "site_admin": false + }, + "body": "Direwolf review apps test branch-e08f46fa", + "created_at": "2019-10-21T21:54:49Z", + "updated_at": "2019-10-21T21:54:49Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/pulls/1/commits", + "review_comments_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/pulls/1/comments", + "review_comment_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/issues/1/comments", + "statuses_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/statuses/59e58b1b034f83160109af55b0b4432e1fe54708", + "head": { + "label": "direwolf-github:branch-e08f46fa", + "ref": "branch-e08f46fa", + "sha": "59e58b1b034f83160109af55b0b4432e1fe54708", + "user": { + "login": "direwolf-github", + "id": 10810283, + "node_id": "MDQ6VXNlcjEwODEwMjgz", + "avatar_url": "https://avatars0.githubusercontent.com/u/10810283?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/direwolf-github", + "html_url": "https://github.com/direwolf-github", + "followers_url": "https://api.github.com/users/direwolf-github/followers", + "following_url": "https://api.github.com/users/direwolf-github/following{/other_user}", + "gists_url": "https://api.github.com/users/direwolf-github/gists{/gist_id}", + "starred_url": "https://api.github.com/users/direwolf-github/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/direwolf-github/subscriptions", + "organizations_url": "https://api.github.com/users/direwolf-github/orgs", + "repos_url": "https://api.github.com/users/direwolf-github/repos", + "events_url": "https://api.github.com/users/direwolf-github/events{/privacy}", + "received_events_url": "https://api.github.com/users/direwolf-github/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 216672323, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTY2NzIzMjM=", + "name": "my-app-f9704ec8", + "full_name": "direwolf-github/my-app-f9704ec8", + "private": false, + "owner": { + "login": "direwolf-github", + "id": 10810283, + "node_id": "MDQ6VXNlcjEwODEwMjgz", + "avatar_url": "https://avatars0.githubusercontent.com/u/10810283?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/direwolf-github", + "html_url": "https://github.com/direwolf-github", + "followers_url": "https://api.github.com/users/direwolf-github/followers", + "following_url": "https://api.github.com/users/direwolf-github/following{/other_user}", + "gists_url": "https://api.github.com/users/direwolf-github/gists{/gist_id}", + "starred_url": "https://api.github.com/users/direwolf-github/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/direwolf-github/subscriptions", + "organizations_url": "https://api.github.com/users/direwolf-github/orgs", + "repos_url": "https://api.github.com/users/direwolf-github/repos", + "events_url": "https://api.github.com/users/direwolf-github/events{/privacy}", + "received_events_url": "https://api.github.com/users/direwolf-github/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/direwolf-github/my-app-f9704ec8", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8", + "forks_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/forks", + "keys_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/teams", + "hooks_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/hooks", + "issue_events_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/issues/events{/number}", + "events_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/events", + "assignees_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/assignees{/user}", + "branches_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/branches{/branch}", + "tags_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/tags", + "blobs_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/statuses/{sha}", + "languages_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/languages", + "stargazers_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/stargazers", + "contributors_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/contributors", + "subscribers_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/subscribers", + "subscription_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/subscription", + "commits_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/contents/{+path}", + "compare_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/merges", + "archive_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/downloads", + "issues_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/issues{/number}", + "pulls_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/pulls{/number}", + "milestones_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/milestones{/number}", + "notifications_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/labels{/name}", + "releases_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/releases{/id}", + "deployments_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/deployments", + "created_at": "2019-10-21T21:54:43Z", + "updated_at": "2019-10-21T21:54:46Z", + "pushed_at": "2019-10-21T21:54:49Z", + "git_url": "git://github.com/direwolf-github/my-app-f9704ec8.git", + "ssh_url": "git@github.com:direwolf-github/my-app-f9704ec8.git", + "clone_url": "https://github.com/direwolf-github/my-app-f9704ec8.git", + "svn_url": "https://github.com/direwolf-github/my-app-f9704ec8", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "direwolf-github:master", + "ref": "master", + "sha": "4d3c6b596570ce87ea9ec7549f75603aaa5a680f", + "user": { + "login": "direwolf-github", + "id": 10810283, + "node_id": "MDQ6VXNlcjEwODEwMjgz", + "avatar_url": "https://avatars0.githubusercontent.com/u/10810283?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/direwolf-github", + "html_url": "https://github.com/direwolf-github", + "followers_url": "https://api.github.com/users/direwolf-github/followers", + "following_url": "https://api.github.com/users/direwolf-github/following{/other_user}", + "gists_url": "https://api.github.com/users/direwolf-github/gists{/gist_id}", + "starred_url": "https://api.github.com/users/direwolf-github/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/direwolf-github/subscriptions", + "organizations_url": "https://api.github.com/users/direwolf-github/orgs", + "repos_url": "https://api.github.com/users/direwolf-github/repos", + "events_url": "https://api.github.com/users/direwolf-github/events{/privacy}", + "received_events_url": "https://api.github.com/users/direwolf-github/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 216672323, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTY2NzIzMjM=", + "name": "my-app-f9704ec8", + "full_name": "direwolf-github/my-app-f9704ec8", + "private": false, + "owner": { + "login": "direwolf-github", + "id": 10810283, + "node_id": "MDQ6VXNlcjEwODEwMjgz", + "avatar_url": "https://avatars0.githubusercontent.com/u/10810283?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/direwolf-github", + "html_url": "https://github.com/direwolf-github", + "followers_url": "https://api.github.com/users/direwolf-github/followers", + "following_url": "https://api.github.com/users/direwolf-github/following{/other_user}", + "gists_url": "https://api.github.com/users/direwolf-github/gists{/gist_id}", + "starred_url": "https://api.github.com/users/direwolf-github/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/direwolf-github/subscriptions", + "organizations_url": "https://api.github.com/users/direwolf-github/orgs", + "repos_url": "https://api.github.com/users/direwolf-github/repos", + "events_url": "https://api.github.com/users/direwolf-github/events{/privacy}", + "received_events_url": "https://api.github.com/users/direwolf-github/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/direwolf-github/my-app-f9704ec8", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8", + "forks_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/forks", + "keys_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/teams", + "hooks_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/hooks", + "issue_events_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/issues/events{/number}", + "events_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/events", + "assignees_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/assignees{/user}", + "branches_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/branches{/branch}", + "tags_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/tags", + "blobs_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/statuses/{sha}", + "languages_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/languages", + "stargazers_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/stargazers", + "contributors_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/contributors", + "subscribers_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/subscribers", + "subscription_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/subscription", + "commits_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/contents/{+path}", + "compare_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/merges", + "archive_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/downloads", + "issues_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/issues{/number}", + "pulls_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/pulls{/number}", + "milestones_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/milestones{/number}", + "notifications_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/labels{/name}", + "releases_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/releases{/id}", + "deployments_url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/deployments", + "created_at": "2019-10-21T21:54:43Z", + "updated_at": "2019-10-21T21:54:46Z", + "pushed_at": "2019-10-21T21:54:49Z", + "git_url": "git://github.com/direwolf-github/my-app-f9704ec8.git", + "ssh_url": "git@github.com:direwolf-github/my-app-f9704ec8.git", + "clone_url": "https://github.com/direwolf-github/my-app-f9704ec8.git", + "svn_url": "https://github.com/direwolf-github/my-app-f9704ec8", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/pulls/1" + }, + "html": { + "href": "https://github.com/direwolf-github/my-app-f9704ec8/pull/1" + }, + "issue": { + "href": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/issues/1" + }, + "comments": { + "href": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/issues/1/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/pulls/1/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/pulls/1/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/statuses/59e58b1b034f83160109af55b0b4432e1fe54708" + } + }, + "author_association": "OWNER", + "merged": false, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 1, + "deletions": 0, + "changed_files": 1 + } + }, + "public": true, + "created_at": "2019-10-21T21:54:49Z" + }, + { + "id": "10680625127", + "type": "CreateEvent", + "actor": { + "id": 10810283, + "login": "direwolf-github", + "display_login": "direwolf-github", + "gravatar_id": "", + "url": "https://api.github.com/users/direwolf-github", + "avatar_url": "https://avatars.githubusercontent.com/u/10810283?" + }, + "repo": { + "id": 183051410, + "name": "direwolf-github/my-app", + "url": "https://api.github.com/repos/direwolf-github/my-app" + }, + "payload": { + "ref": "branch-cdd0a924", + "ref_type": "branch", + "master_branch": "master", + "description": null, + "pusher_type": "user" + }, + "public": true, + "created_at": "2019-10-21T21:54:49Z" + }, + { + "id": "10680625119", + "type": "PushEvent", + "actor": { + "id": 1276443, + "login": "jalopezsilva", + "display_login": "jalopezsilva", + "gravatar_id": "", + "url": "https://api.github.com/users/jalopezsilva", + "avatar_url": "https://avatars.githubusercontent.com/u/1276443?" + }, + "repo": { + "id": 209424327, + "name": "jalopezsilva/requests", + "url": "https://api.github.com/repos/jalopezsilva/requests" + }, + "payload": { + "push_id": 4176854952, + "size": 2, + "distinct_size": 2, + "ref": "refs/heads/master", + "head": "7949f68fc3607986a80d4097233450ecc034432e", + "before": "452fbf0db4f98082c941bd84c2e24d6f4444c402", + "commits": [ + { + "sha": "3eae408d1811e3d79b79dae76ac0d56a25f47d76", + "author": { + "email": "jalopezsilva@gmail.com", + "name": "Jorge Lopez Silva" + }, + "message": "Prepare for FB internal patch.", + "distinct": true, + "url": "https://api.github.com/repos/jalopezsilva/requests/commits/3eae408d1811e3d79b79dae76ac0d56a25f47d76" + }, + { + "sha": "7949f68fc3607986a80d4097233450ecc034432e", + "author": { + "email": "jalopezsilva@gmail.com", + "name": "Jorge Lopez Silva" + }, + "message": "Fix bug when proxy_scheme is not set.", + "distinct": true, + "url": "https://api.github.com/repos/jalopezsilva/requests/commits/7949f68fc3607986a80d4097233450ecc034432e" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:49Z" + }, + { + "id": "10680625108", + "type": "PushEvent", + "actor": { + "id": 52762728, + "login": "lflores0214", + "display_login": "lflores0214", + "gravatar_id": "", + "url": "https://api.github.com/users/lflores0214", + "avatar_url": "https://avatars.githubusercontent.com/u/52762728?" + }, + "repo": { + "id": 216055148, + "name": "build-week-vegan-meets/FE", + "url": "https://api.github.com/repos/build-week-vegan-meets/FE" + }, + "payload": { + "push_id": 4176854950, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/Luis-Flores", + "head": "077d3a9a104483c350d53b57b8320d784a05ed03", + "before": "224f95bcbb1700c7f5ee53dbdb64df898b0e4f29", + "commits": [ + { + "sha": "077d3a9a104483c350d53b57b8320d784a05ed03", + "author": { + "email": "Lflores02142@gmail.com", + "name": "Luis Floresgit config --global user.name Luis" + }, + "message": "reformatted to use Formik", + "distinct": true, + "url": "https://api.github.com/repos/build-week-vegan-meets/FE/commits/077d3a9a104483c350d53b57b8320d784a05ed03" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:49Z", + "org": { + "id": 56733259, + "login": "build-week-vegan-meets", + "gravatar_id": "", + "url": "https://api.github.com/orgs/build-week-vegan-meets", + "avatar_url": "https://avatars.githubusercontent.com/u/56733259?" + } + }, + { + "id": "10680625114", + "type": "IssueCommentEvent", + "actor": { + "id": 33439345, + "login": "tgsong", + "display_login": "tgsong", + "gravatar_id": "", + "url": "https://api.github.com/users/tgsong", + "avatar_url": "https://avatars.githubusercontent.com/u/33439345?" + }, + "repo": { + "id": 110170439, + "name": "aws/amazon-freertos", + "url": "https://api.github.com/repos/aws/amazon-freertos" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/aws/amazon-freertos/issues/832", + "repository_url": "https://api.github.com/repos/aws/amazon-freertos", + "labels_url": "https://api.github.com/repos/aws/amazon-freertos/issues/832/labels{/name}", + "comments_url": "https://api.github.com/repos/aws/amazon-freertos/issues/832/comments", + "events_url": "https://api.github.com/repos/aws/amazon-freertos/issues/832/events", + "html_url": "https://github.com/aws/amazon-freertos/issues/832", + "id": 459524798, + "node_id": "MDU6SXNzdWU0NTk1MjQ3OTg=", + "number": 832, + "title": "Document how to create a new cmake project outside the freertos source tree", + "user": { + "login": "jrr", + "id": 164652, + "node_id": "MDQ6VXNlcjE2NDY1Mg==", + "avatar_url": "https://avatars0.githubusercontent.com/u/164652?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jrr", + "html_url": "https://github.com/jrr", + "followers_url": "https://api.github.com/users/jrr/followers", + "following_url": "https://api.github.com/users/jrr/following{/other_user}", + "gists_url": "https://api.github.com/users/jrr/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jrr/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jrr/subscriptions", + "organizations_url": "https://api.github.com/users/jrr/orgs", + "repos_url": "https://api.github.com/users/jrr/repos", + "events_url": "https://api.github.com/users/jrr/events{/privacy}", + "received_events_url": "https://api.github.com/users/jrr/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 37, + "created_at": "2019-06-23T01:04:51Z", + "updated_at": "2019-10-21T21:54:49Z", + "closed_at": null, + "author_association": "NONE", + "body": "**Is your feature request related to a problem? Please describe.** \r\nThe Getting Started Guides describe how to run the demo apps, but I can't find anything about creating a _new_ project.\r\n\r\n**Describe the solution you would like.** \r\nDocumentation describing how to create a new project outside the amazon-freertos source tree, and guidance about how to consume freertos from outside. \r\n\r\n**Additional context** \r\nWith the old Make-based system, I was able to create a new ESP32 project that references amazon-freertos from outside, including this repo as an unmodified git submodule.\r\n\r\n(This wasn't documented before, either, so it took significant effort!)\r\n\r\nNow with the new cmake system I feel like I have to start all over.\r\n\r\n**I'm looking for something like:**\r\n1) Copy files X, Y, and Z into a new directory\r\n2) Export an `AMAZON_FREERTOS_PATH` environment variable pointing the root directory of the amazon-freertos repo\r\n3) Issue command `cmake -D...` to build your application image.\r\n\r\nIs this documented anywhere? Am I missing something?" + }, + "comment": { + "url": "https://api.github.com/repos/aws/amazon-freertos/issues/comments/544724571", + "html_url": "https://github.com/aws/amazon-freertos/issues/832#issuecomment-544724571", + "issue_url": "https://api.github.com/repos/aws/amazon-freertos/issues/832", + "id": 544724571, + "node_id": "MDEyOklzc3VlQ29tbWVudDU0NDcyNDU3MQ==", + "user": { + "login": "tgsong", + "id": 33439345, + "node_id": "MDQ6VXNlcjMzNDM5MzQ1", + "avatar_url": "https://avatars2.githubusercontent.com/u/33439345?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/tgsong", + "html_url": "https://github.com/tgsong", + "followers_url": "https://api.github.com/users/tgsong/followers", + "following_url": "https://api.github.com/users/tgsong/following{/other_user}", + "gists_url": "https://api.github.com/users/tgsong/gists{/gist_id}", + "starred_url": "https://api.github.com/users/tgsong/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/tgsong/subscriptions", + "organizations_url": "https://api.github.com/users/tgsong/orgs", + "repos_url": "https://api.github.com/users/tgsong/repos", + "events_url": "https://api.github.com/users/tgsong/events{/privacy}", + "received_events_url": "https://api.github.com/users/tgsong/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2019-10-21T21:54:49Z", + "updated_at": "2019-10-21T21:54:49Z", + "author_association": "COLLABORATOR", + "body": "@JairoDaniel I see you have this line in your CMake file, `file(GLOB SOURCES \"hello/main.c\")`. However, you said your project structure has `src/main.c`. Can you double check if you're compiling that `main.c` or not? CMake won't tell you if the `SOURCES` variable is empty or not." + } + }, + "public": true, + "created_at": "2019-10-21T21:54:49Z", + "org": { + "id": 2232217, + "login": "aws", + "gravatar_id": "", + "url": "https://api.github.com/orgs/aws", + "avatar_url": "https://avatars.githubusercontent.com/u/2232217?" + } + }, + { + "id": "10680625109", + "type": "PushEvent", + "actor": { + "id": 53228114, + "login": "Mikeulrich75", + "display_login": "Mikeulrich75", + "gravatar_id": "", + "url": "https://api.github.com/users/Mikeulrich75", + "avatar_url": "https://avatars.githubusercontent.com/u/53228114?" + }, + "repo": { + "id": 216653839, + "name": "Mikeulrich75/dataLayerBuilderStandardEcommerce", + "url": "https://api.github.com/repos/Mikeulrich75/dataLayerBuilderStandardEcommerce" + }, + "payload": { + "push_id": 4176854947, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "0757c0a942788403c9792b434e3b7cee81446a66", + "before": "1af55801fc12dc12bbe523ff41ea351841bca423", + "commits": [ + { + "sha": "0757c0a942788403c9792b434e3b7cee81446a66", + "author": { + "email": "53228114+Mikeulrich75@users.noreply.github.com", + "name": "Mikeulrich75" + }, + "message": "Update metadata.yaml", + "distinct": true, + "url": "https://api.github.com/repos/Mikeulrich75/dataLayerBuilderStandardEcommerce/commits/0757c0a942788403c9792b434e3b7cee81446a66" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:49Z" + }, + { + "id": "10680625104", + "type": "PushEvent", + "actor": { + "id": 16145939, + "login": "joffitzer", + "display_login": "joffitzer", + "gravatar_id": "", + "url": "https://api.github.com/users/joffitzer", + "avatar_url": "https://avatars.githubusercontent.com/u/16145939?" + }, + "repo": { + "id": 215930498, + "name": "joffitzer/advanced-hashes-hashketball-nyc-web-102819", + "url": "https://api.github.com/repos/joffitzer/advanced-hashes-hashketball-nyc-web-102819" + }, + "payload": { + "push_id": 4176854944, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/wip", + "head": "e82b1595bd3e8b993b8bd01fcf1a5bdba96f9f84", + "before": "94769898091f4b25786b1fa8d6268d57b98cd0b2", + "commits": [ + { + "sha": "e82b1595bd3e8b993b8bd01fcf1a5bdba96f9f84", + "author": { + "email": "joffitzer@gmail.com", + "name": "Jonah Offitzer" + }, + "message": "Automatically backed up by Learn", + "distinct": true, + "url": "https://api.github.com/repos/joffitzer/advanced-hashes-hashketball-nyc-web-102819/commits/e82b1595bd3e8b993b8bd01fcf1a5bdba96f9f84" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:49Z" + }, + { + "id": "10680625115", + "type": "DeleteEvent", + "actor": { + "id": 23040076, + "login": "greenkeeper[bot]", + "display_login": "greenkeeper", + "gravatar_id": "", + "url": "https://api.github.com/users/greenkeeper[bot]", + "avatar_url": "https://avatars.githubusercontent.com/u/23040076?" + }, + "repo": { + "id": 203189267, + "name": "stevenselcuk/Coeus", + "url": "https://api.github.com/repos/stevenselcuk/Coeus" + }, + "payload": { + "ref": "greenkeeper/monorepo.apollo-server-20191021190157", + "ref_type": "branch", + "pusher_type": "user" + }, + "public": true, + "created_at": "2019-10-21T21:54:49Z" + }, + { + "id": "10680625105", + "type": "PushEvent", + "actor": { + "id": 10810283, + "login": "direwolf-github", + "display_login": "direwolf-github", + "gravatar_id": "", + "url": "https://api.github.com/users/direwolf-github", + "avatar_url": "https://avatars.githubusercontent.com/u/10810283?" + }, + "repo": { + "id": 216672323, + "name": "direwolf-github/my-app-f9704ec8", + "url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8" + }, + "payload": { + "push_id": 4176854945, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/branch-e08f46fa", + "head": "59e58b1b034f83160109af55b0b4432e1fe54708", + "before": "4d3c6b596570ce87ea9ec7549f75603aaa5a680f", + "commits": [ + { + "sha": "59e58b1b034f83160109af55b0b4432e1fe54708", + "author": { + "email": "heroku-lifecycle+direwolf-github@salesforce.com", + "name": "direwolf-github" + }, + "message": "add readme.txt", + "distinct": true, + "url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8/commits/59e58b1b034f83160109af55b0b4432e1fe54708" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:49Z" + }, + { + "id": "10680625103", + "type": "PushEvent", + "actor": { + "id": 3455449, + "login": "Dids", + "display_login": "Dids", + "gravatar_id": "", + "url": "https://api.github.com/users/Dids", + "avatar_url": "https://avatars.githubusercontent.com/u/3455449?" + }, + "repo": { + "id": 92093613, + "name": "Didstopia/SDL_net", + "url": "https://api.github.com/repos/Didstopia/SDL_net" + }, + "payload": { + "push_id": 4176854943, + "size": 0, + "distinct_size": 0, + "ref": "refs/heads/SDL-1.2", + "head": "665e9ff856a6a3458a37da16afedd00ff95723fe", + "before": "665e9ff856a6a3458a37da16afedd00ff95723fe", + "commits": [] + }, + "public": true, + "created_at": "2019-10-21T21:54:49Z", + "org": { + "id": 11643531, + "login": "Didstopia", + "gravatar_id": "", + "url": "https://api.github.com/orgs/Didstopia", + "avatar_url": "https://avatars.githubusercontent.com/u/11643531?" + } + }, + { + "id": "10680625101", + "type": "CreateEvent", + "actor": { + "id": 42206314, + "login": "jchaconv", + "display_login": "jchaconv", + "gravatar_id": "", + "url": "https://api.github.com/users/jchaconv", + "avatar_url": "https://avatars.githubusercontent.com/u/42206314?" + }, + "repo": { + "id": 216672337, + "name": "jchaconv/spring-boot-microservices", + "url": "https://api.github.com/repos/jchaconv/spring-boot-microservices" + }, + "payload": { + "ref": null, + "ref_type": "repository", + "master_branch": "master", + "description": "Repository for the course Spring Boot Microservices with Spring Cloud Beginner to Guru", + "pusher_type": "user" + }, + "public": true, + "created_at": "2019-10-21T21:54:49Z" + }, + { + "id": "10680625092", + "type": "PushEvent", + "actor": { + "id": 794578, + "login": "ghostwords", + "display_login": "ghostwords", + "gravatar_id": "", + "url": "https://api.github.com/users/ghostwords", + "avatar_url": "https://avatars.githubusercontent.com/u/794578?" + }, + "repo": { + "id": 11321096, + "name": "EFForg/privacybadger", + "url": "https://api.github.com/repos/EFForg/privacybadger" + }, + "payload": { + "push_id": 4176854942, + "size": 2, + "distinct_size": 2, + "ref": "refs/heads/master", + "head": "abd2e330a3b4b6222c88587d04d71b12f4da870d", + "before": "1340bbf32da76263b4f65abf9c1690e049de3ade", + "commits": [ + { + "sha": "4604368825383efab42b00f59963f6b5b6b58726", + "author": { + "email": "alexeiatyahoodotcom@gmail.com", + "name": "Alexei" + }, + "message": "Add a couple of SoundCloud domains to MDFP.", + "distinct": true, + "url": "https://api.github.com/repos/EFForg/privacybadger/commits/4604368825383efab42b00f59963f6b5b6b58726" + }, + { + "sha": "abd2e330a3b4b6222c88587d04d71b12f4da870d", + "author": { + "email": "alexeiatyahoodotcom@gmail.com", + "name": "Alexei" + }, + "message": "Restore sndcdn.com to yellowlist.\n\nShould stay until we release 4604368.", + "distinct": true, + "url": "https://api.github.com/repos/EFForg/privacybadger/commits/abd2e330a3b4b6222c88587d04d71b12f4da870d" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:49Z", + "org": { + "id": 2120271, + "login": "EFForg", + "gravatar_id": "", + "url": "https://api.github.com/orgs/EFForg", + "avatar_url": "https://avatars.githubusercontent.com/u/2120271?" + } + }, + { + "id": "10680625084", + "type": "PushEvent", + "actor": { + "id": 40370237, + "login": "elimvb", + "display_login": "elimvb", + "gravatar_id": "", + "url": "https://api.github.com/users/elimvb", + "avatar_url": "https://avatars.githubusercontent.com/u/40370237?" + }, + "repo": { + "id": 107305157, + "name": "allenai/ai2thor", + "url": "https://api.github.com/repos/allenai/ai2thor" + }, + "payload": { + "push_id": 4176854936, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/real", + "head": "dd92a4c5692b8e21a762fe06d8b5c67fcff9822a", + "before": "b035ed164318519b90f459fa54f4a7390d1a3c71", + "commits": [ + { + "sha": "dd92a4c5692b8e21a762fe06d8b5c67fcff9822a", + "author": { + "email": "40370237+elimvb@users.noreply.github.com", + "name": "Eli VanderBilt" + }, + "message": "Completed FloorPlan_Train15 variations", + "distinct": true, + "url": "https://api.github.com/repos/allenai/ai2thor/commits/dd92a4c5692b8e21a762fe06d8b5c67fcff9822a" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:49Z", + "org": { + "id": 5667695, + "login": "allenai", + "gravatar_id": "", + "url": "https://api.github.com/orgs/allenai", + "avatar_url": "https://avatars.githubusercontent.com/u/5667695?" + } + }, + { + "id": "10680625085", + "type": "PushEvent", + "actor": { + "id": 56764278, + "login": "grobelDev", + "display_login": "grobelDev", + "gravatar_id": "", + "url": "https://api.github.com/users/grobelDev", + "avatar_url": "https://avatars.githubusercontent.com/u/56764278?" + }, + "repo": { + "id": 216637078, + "name": "thinkful-ei-iguana/Anthony-Harrison-Day-1-JS", + "url": "https://api.github.com/repos/thinkful-ei-iguana/Anthony-Harrison-Day-1-JS" + }, + "payload": { + "push_id": 4176854935, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "8e7248fcf15480d4b6090b0e02c1fba68bcf1171", + "before": "65644249a175698e87bb4b6c32ff37ac0f924a3c", + "commits": [ + { + "sha": "8e7248fcf15480d4b6090b0e02c1fba68bcf1171", + "author": { + "email": "grobeldev@gmail.com", + "name": "grobelDev" + }, + "message": "map, reduce, forEach", + "distinct": true, + "url": "https://api.github.com/repos/thinkful-ei-iguana/Anthony-Harrison-Day-1-JS/commits/8e7248fcf15480d4b6090b0e02c1fba68bcf1171" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:49Z", + "org": { + "id": 56694966, + "login": "thinkful-ei-iguana", + "gravatar_id": "", + "url": "https://api.github.com/orgs/thinkful-ei-iguana", + "avatar_url": "https://avatars.githubusercontent.com/u/56694966?" + } + }, + { + "id": "10680625080", + "type": "PushEvent", + "actor": { + "id": 7111514, + "login": "shushugah", + "display_login": "shushugah", + "gravatar_id": "", + "url": "https://api.github.com/users/shushugah", + "avatar_url": "https://avatars.githubusercontent.com/u/7111514?" + }, + "repo": { + "id": 209969044, + "name": "codecurious-bln/CC-website", + "url": "https://api.github.com/repos/codecurious-bln/CC-website" + }, + "payload": { + "push_id": 4176854937, + "size": 2, + "distinct_size": 2, + "ref": "refs/heads/master", + "head": "ca3257de9d87f497be2d5d2cfd5ef75c78b1c732", + "before": "b762a83d2dd69f4d7be63695dff479b39605c9e3", + "commits": [ + { + "sha": "aec5222f75127664e4df1aa618334663f4a0081f", + "author": { + "email": "mejiasnam@gmail.com", + "name": "Naylin Medina" + }, + "message": "add edit on github\n\nSigned-off-by: Naylin Medina ", + "distinct": true, + "url": "https://api.github.com/repos/codecurious-bln/CC-website/commits/aec5222f75127664e4df1aa618334663f4a0081f" + }, + { + "sha": "ca3257de9d87f497be2d5d2cfd5ef75c78b1c732", + "author": { + "email": "yonatan@shushugah.com", + "name": "yonatan miller" + }, + "message": "Merge pull request #32 from Naylin15/edit-github\n\nAdd edit on github", + "distinct": true, + "url": "https://api.github.com/repos/codecurious-bln/CC-website/commits/ca3257de9d87f497be2d5d2cfd5ef75c78b1c732" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:49Z", + "org": { + "id": 2067368, + "login": "codecurious-bln", + "gravatar_id": "", + "url": "https://api.github.com/orgs/codecurious-bln", + "avatar_url": "https://avatars.githubusercontent.com/u/2067368?" + } + }, + { + "id": "10680625077", + "type": "PushEvent", + "actor": { + "id": 25649994, + "login": "MarkMozgovoy", + "display_login": "MarkMozgovoy", + "gravatar_id": "", + "url": "https://api.github.com/users/MarkMozgovoy", + "avatar_url": "https://avatars.githubusercontent.com/u/25649994?" + }, + "repo": { + "id": 188302057, + "name": "MarkMozgovoy/LeetCode-Problems", + "url": "https://api.github.com/repos/MarkMozgovoy/LeetCode-Problems" + }, + "payload": { + "push_id": 4176854934, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "e57205289100880b63e23f3ac02f6b64d92ef290", + "before": "dfced045a8f132fc046115d179195aed65a8900a", + "commits": [ + { + "sha": "e57205289100880b63e23f3ac02f6b64d92ef290", + "author": { + "email": "mark@mozgovoy.com", + "name": "Mark" + }, + "message": "Did AVeryBigSum and CountingValleys", + "distinct": true, + "url": "https://api.github.com/repos/MarkMozgovoy/LeetCode-Problems/commits/e57205289100880b63e23f3ac02f6b64d92ef290" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:49Z" + }, + { + "id": "10680625073", + "type": "PushEvent", + "actor": { + "id": 14370342, + "login": "SambaGodschynski", + "display_login": "SambaGodschynski", + "gravatar_id": "", + "url": "https://api.github.com/users/SambaGodschynski", + "avatar_url": "https://avatars.githubusercontent.com/u/14370342?" + }, + "repo": { + "id": 209546605, + "name": "SambaGodschynski/werckmeister-codext", + "url": "https://api.github.com/repos/SambaGodschynski/werckmeister-codext" + }, + "payload": { + "push_id": 4176854928, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "dae114332acb5a7dc01b60f74fc20c362a494901", + "before": "431184bd4d19f6fc1ded8423c4eaca9a2717b580", + "commits": [ + { + "sha": "dae114332acb5a7dc01b60f74fc20c362a494901", + "author": { + "email": "johannes.unger@vstforx.de", + "name": "U-fips\\samba" + }, + "message": "start player current file no sheet fallback impl.", + "distinct": true, + "url": "https://api.github.com/repos/SambaGodschynski/werckmeister-codext/commits/dae114332acb5a7dc01b60f74fc20c362a494901" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:49Z" + }, + { + "id": "10680625068", + "type": "PullRequestEvent", + "actor": { + "id": 39814207, + "login": "pull[bot]", + "display_login": "pull", + "gravatar_id": "", + "url": "https://api.github.com/users/pull[bot]", + "avatar_url": "https://avatars.githubusercontent.com/u/39814207?" + }, + "repo": { + "id": 197345677, + "name": "daddyfatstacksBIG/lerna", + "url": "https://api.github.com/repos/daddyfatstacksBIG/lerna" + }, + "payload": { + "action": "opened", + "number": 20, + "pull_request": { + "url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/pulls/20", + "id": 330711279, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzMwNzExMjc5", + "html_url": "https://github.com/daddyfatstacksBIG/lerna/pull/20", + "diff_url": "https://github.com/daddyfatstacksBIG/lerna/pull/20.diff", + "patch_url": "https://github.com/daddyfatstacksBIG/lerna/pull/20.patch", + "issue_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/issues/20", + "number": 20, + "state": "open", + "locked": false, + "title": "[pull] master from lerna:master", + "user": { + "login": "pull[bot]", + "id": 39814207, + "node_id": "MDM6Qm90Mzk4MTQyMDc=", + "avatar_url": "https://avatars0.githubusercontent.com/in/12910?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/pull%5Bbot%5D", + "html_url": "https://github.com/apps/pull", + "followers_url": "https://api.github.com/users/pull%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/pull%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/pull%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/pull%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/pull%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/pull%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/pull%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/pull%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/pull%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "body": "See Commits and Changes for more details.\n\n-----\nCreated by [ **pull[bot]**](https://github.com/wei/pull). Want to support this open source service? [Please star it : )](https://github.com/wei/pull)", + "created_at": "2019-10-21T21:54:49Z", + "updated_at": "2019-10-21T21:54:49Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/pulls/20/commits", + "review_comments_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/pulls/20/comments", + "review_comment_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/issues/20/comments", + "statuses_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/statuses/4872459be7bf88e5900ff907b07279e9516d333c", + "head": { + "label": "lerna:master", + "ref": "master", + "sha": "4872459be7bf88e5900ff907b07279e9516d333c", + "user": { + "login": "lerna", + "id": 19333396, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE5MzMzMzk2", + "avatar_url": "https://avatars2.githubusercontent.com/u/19333396?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/lerna", + "html_url": "https://github.com/lerna", + "followers_url": "https://api.github.com/users/lerna/followers", + "following_url": "https://api.github.com/users/lerna/following{/other_user}", + "gists_url": "https://api.github.com/users/lerna/gists{/gist_id}", + "starred_url": "https://api.github.com/users/lerna/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/lerna/subscriptions", + "organizations_url": "https://api.github.com/users/lerna/orgs", + "repos_url": "https://api.github.com/users/lerna/repos", + "events_url": "https://api.github.com/users/lerna/events{/privacy}", + "received_events_url": "https://api.github.com/users/lerna/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 47394776, + "node_id": "MDEwOlJlcG9zaXRvcnk0NzM5NDc3Ng==", + "name": "lerna", + "full_name": "lerna/lerna", + "private": false, + "owner": { + "login": "lerna", + "id": 19333396, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE5MzMzMzk2", + "avatar_url": "https://avatars2.githubusercontent.com/u/19333396?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/lerna", + "html_url": "https://github.com/lerna", + "followers_url": "https://api.github.com/users/lerna/followers", + "following_url": "https://api.github.com/users/lerna/following{/other_user}", + "gists_url": "https://api.github.com/users/lerna/gists{/gist_id}", + "starred_url": "https://api.github.com/users/lerna/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/lerna/subscriptions", + "organizations_url": "https://api.github.com/users/lerna/orgs", + "repos_url": "https://api.github.com/users/lerna/repos", + "events_url": "https://api.github.com/users/lerna/events{/privacy}", + "received_events_url": "https://api.github.com/users/lerna/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/lerna/lerna", + "description": ":dragon: A tool for managing JavaScript projects with multiple packages.", + "fork": false, + "url": "https://api.github.com/repos/lerna/lerna", + "forks_url": "https://api.github.com/repos/lerna/lerna/forks", + "keys_url": "https://api.github.com/repos/lerna/lerna/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/lerna/lerna/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/lerna/lerna/teams", + "hooks_url": "https://api.github.com/repos/lerna/lerna/hooks", + "issue_events_url": "https://api.github.com/repos/lerna/lerna/issues/events{/number}", + "events_url": "https://api.github.com/repos/lerna/lerna/events", + "assignees_url": "https://api.github.com/repos/lerna/lerna/assignees{/user}", + "branches_url": "https://api.github.com/repos/lerna/lerna/branches{/branch}", + "tags_url": "https://api.github.com/repos/lerna/lerna/tags", + "blobs_url": "https://api.github.com/repos/lerna/lerna/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/lerna/lerna/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/lerna/lerna/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/lerna/lerna/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/lerna/lerna/statuses/{sha}", + "languages_url": "https://api.github.com/repos/lerna/lerna/languages", + "stargazers_url": "https://api.github.com/repos/lerna/lerna/stargazers", + "contributors_url": "https://api.github.com/repos/lerna/lerna/contributors", + "subscribers_url": "https://api.github.com/repos/lerna/lerna/subscribers", + "subscription_url": "https://api.github.com/repos/lerna/lerna/subscription", + "commits_url": "https://api.github.com/repos/lerna/lerna/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/lerna/lerna/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/lerna/lerna/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/lerna/lerna/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/lerna/lerna/contents/{+path}", + "compare_url": "https://api.github.com/repos/lerna/lerna/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/lerna/lerna/merges", + "archive_url": "https://api.github.com/repos/lerna/lerna/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/lerna/lerna/downloads", + "issues_url": "https://api.github.com/repos/lerna/lerna/issues{/number}", + "pulls_url": "https://api.github.com/repos/lerna/lerna/pulls{/number}", + "milestones_url": "https://api.github.com/repos/lerna/lerna/milestones{/number}", + "notifications_url": "https://api.github.com/repos/lerna/lerna/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/lerna/lerna/labels{/name}", + "releases_url": "https://api.github.com/repos/lerna/lerna/releases{/id}", + "deployments_url": "https://api.github.com/repos/lerna/lerna/deployments", + "created_at": "2015-12-04T09:36:55Z", + "updated_at": "2019-10-21T21:10:48Z", + "pushed_at": "2019-10-21T21:43:03Z", + "git_url": "git://github.com/lerna/lerna.git", + "ssh_url": "git@github.com:lerna/lerna.git", + "clone_url": "https://github.com/lerna/lerna.git", + "svn_url": "https://github.com/lerna/lerna", + "homepage": "https://lerna.js.org", + "size": 7992, + "stargazers_count": 19472, + "watchers_count": 19472, + "language": "JavaScript", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1208, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 230, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1208, + "open_issues": 230, + "watchers": 19472, + "default_branch": "master" + } + }, + "base": { + "label": "daddyfatstacksBIG:master", + "ref": "master", + "sha": "99425f7e3df4d081c51f9850e71ad93e83dc30c4", + "user": { + "login": "daddyfatstacksBIG", + "id": 50436469, + "node_id": "MDQ6VXNlcjUwNDM2NDY5", + "avatar_url": "https://avatars3.githubusercontent.com/u/50436469?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/daddyfatstacksBIG", + "html_url": "https://github.com/daddyfatstacksBIG", + "followers_url": "https://api.github.com/users/daddyfatstacksBIG/followers", + "following_url": "https://api.github.com/users/daddyfatstacksBIG/following{/other_user}", + "gists_url": "https://api.github.com/users/daddyfatstacksBIG/gists{/gist_id}", + "starred_url": "https://api.github.com/users/daddyfatstacksBIG/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/daddyfatstacksBIG/subscriptions", + "organizations_url": "https://api.github.com/users/daddyfatstacksBIG/orgs", + "repos_url": "https://api.github.com/users/daddyfatstacksBIG/repos", + "events_url": "https://api.github.com/users/daddyfatstacksBIG/events{/privacy}", + "received_events_url": "https://api.github.com/users/daddyfatstacksBIG/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 197345677, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTczNDU2Nzc=", + "name": "lerna", + "full_name": "daddyfatstacksBIG/lerna", + "private": false, + "owner": { + "login": "daddyfatstacksBIG", + "id": 50436469, + "node_id": "MDQ6VXNlcjUwNDM2NDY5", + "avatar_url": "https://avatars3.githubusercontent.com/u/50436469?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/daddyfatstacksBIG", + "html_url": "https://github.com/daddyfatstacksBIG", + "followers_url": "https://api.github.com/users/daddyfatstacksBIG/followers", + "following_url": "https://api.github.com/users/daddyfatstacksBIG/following{/other_user}", + "gists_url": "https://api.github.com/users/daddyfatstacksBIG/gists{/gist_id}", + "starred_url": "https://api.github.com/users/daddyfatstacksBIG/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/daddyfatstacksBIG/subscriptions", + "organizations_url": "https://api.github.com/users/daddyfatstacksBIG/orgs", + "repos_url": "https://api.github.com/users/daddyfatstacksBIG/repos", + "events_url": "https://api.github.com/users/daddyfatstacksBIG/events{/privacy}", + "received_events_url": "https://api.github.com/users/daddyfatstacksBIG/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/daddyfatstacksBIG/lerna", + "description": ":dragon: A tool for managing JavaScript projects with multiple packages.", + "fork": true, + "url": "https://api.github.com/repos/daddyfatstacksBIG/lerna", + "forks_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/forks", + "keys_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/teams", + "hooks_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/hooks", + "issue_events_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/issues/events{/number}", + "events_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/events", + "assignees_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/assignees{/user}", + "branches_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/branches{/branch}", + "tags_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/tags", + "blobs_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/statuses/{sha}", + "languages_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/languages", + "stargazers_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/stargazers", + "contributors_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/contributors", + "subscribers_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/subscribers", + "subscription_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/subscription", + "commits_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/contents/{+path}", + "compare_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/merges", + "archive_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/downloads", + "issues_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/issues{/number}", + "pulls_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/pulls{/number}", + "milestones_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/milestones{/number}", + "notifications_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/labels{/name}", + "releases_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/releases{/id}", + "deployments_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/deployments", + "created_at": "2019-07-17T08:14:07Z", + "updated_at": "2019-10-21T19:54:51Z", + "pushed_at": "2019-10-21T19:54:49Z", + "git_url": "git://github.com/daddyfatstacksBIG/lerna.git", + "ssh_url": "git@github.com:daddyfatstacksBIG/lerna.git", + "clone_url": "https://github.com/daddyfatstacksBIG/lerna.git", + "svn_url": "https://github.com/daddyfatstacksBIG/lerna", + "homepage": "https://lerna.js.org", + "size": 7870, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/daddyfatstacksBIG/lerna/pulls/20" + }, + "html": { + "href": "https://github.com/daddyfatstacksBIG/lerna/pull/20" + }, + "issue": { + "href": "https://api.github.com/repos/daddyfatstacksBIG/lerna/issues/20" + }, + "comments": { + "href": "https://api.github.com/repos/daddyfatstacksBIG/lerna/issues/20/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/daddyfatstacksBIG/lerna/pulls/20/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/daddyfatstacksBIG/lerna/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/daddyfatstacksBIG/lerna/pulls/20/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/daddyfatstacksBIG/lerna/statuses/4872459be7bf88e5900ff907b07279e9516d333c" + } + }, + "author_association": "NONE", + "merged": false, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 5, + "additions": 327, + "deletions": 260, + "changed_files": 25 + } + }, + "public": true, + "created_at": "2019-10-21T21:54:49Z" + }, + { + "id": "10680625062", + "type": "PushEvent", + "actor": { + "id": 28238025, + "login": "dekkerglen", + "display_login": "dekkerglen", + "gravatar_id": "", + "url": "https://api.github.com/users/dekkerglen", + "avatar_url": "https://avatars.githubusercontent.com/u/28238025?" + }, + "repo": { + "id": 199488444, + "name": "dekkerglen/CubeCobra", + "url": "https://api.github.com/repos/dekkerglen/CubeCobra" + }, + "payload": { + "push_id": 4176854926, + "size": 4, + "distinct_size": 4, + "ref": "refs/heads/master", + "head": "eb3028813d9f14f92538ada84ae11a73346d9b38", + "before": "a3216a60043f115fa6aa9044250d8a04a3f09bf9", + "commits": [ + { + "sha": "9f351e9f0a43982b8ca4a93c73f5cf540d99487d", + "author": { + "email": "andrewbayer2016@u.northwestern.edu", + "name": "anderoonies" + }, + "message": "asynchronously fetch tcgplayer data when card version changes in CardModal", + "distinct": true, + "url": "https://api.github.com/repos/dekkerglen/CubeCobra/commits/9f351e9f0a43982b8ca4a93c73f5cf540d99487d" + }, + { + "sha": "8f3bbc4dd47af159bba2a8934f368ac76a767ff1", + "author": { + "email": "andrewbayer2016@u.northwestern.edu", + "name": "anderoonies" + }, + "message": "get price data in getversions/:id to pass to cardmodalform rather than querying on version change", + "distinct": true, + "url": "https://api.github.com/repos/dekkerglen/CubeCobra/commits/8f3bbc4dd47af159bba2a8934f368ac76a767ff1" + }, + { + "sha": "62f262d63ddea88e2269a30c3ea7a31f2c8cd8db", + "author": { + "email": "andrewbayer2016@u.northwestern.edu", + "name": "anderoonies" + }, + "message": "use carddb.allIds for version lookup", + "distinct": true, + "url": "https://api.github.com/repos/dekkerglen/CubeCobra/commits/62f262d63ddea88e2269a30c3ea7a31f2c8cd8db" + }, + { + "sha": "eb3028813d9f14f92538ada84ae11a73346d9b38", + "author": { + "email": "dekker.glen@gmail.com", + "name": "dekkerglen" + }, + "message": "Merge pull request #608 from anderoonies/reload-price-in-card-modal-on-version-change\n\nFetch price data for all card versions to display in CardModal", + "distinct": true, + "url": "https://api.github.com/repos/dekkerglen/CubeCobra/commits/eb3028813d9f14f92538ada84ae11a73346d9b38" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:49Z" + }, + { + "id": "10680625059", + "type": "PushEvent", + "actor": { + "id": 53795474, + "login": "BradenDykstra", + "display_login": "BradenDykstra", + "gravatar_id": "", + "url": "https://api.github.com/users/BradenDykstra", + "avatar_url": "https://avatars.githubusercontent.com/u/53795474?" + }, + "repo": { + "id": 216074273, + "name": "BradenDykstra/Keepr-2", + "url": "https://api.github.com/repos/BradenDykstra/Keepr-2" + }, + "payload": { + "push_id": 4176854925, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "18fa79ff8011eb750fe61fba8e6c0a344be69f1c", + "before": "5579db424d40f8b4dfd8cb0338ae87bd2123e858", + "commits": [ + { + "sha": "18fa79ff8011eb750fe61fba8e6c0a344be69f1c", + "author": { + "email": "Toastie285@gmail.com", + "name": "Braden Dykstra" + }, + "message": "user can view own keeps", + "distinct": true, + "url": "https://api.github.com/repos/BradenDykstra/Keepr-2/commits/18fa79ff8011eb750fe61fba8e6c0a344be69f1c" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:49Z" + }, + { + "id": "10680625060", + "type": "PullRequestEvent", + "actor": { + "id": 54124593, + "login": "jthielman", + "display_login": "jthielman", + "gravatar_id": "", + "url": "https://api.github.com/users/jthielman", + "avatar_url": "https://avatars.githubusercontent.com/u/54124593?" + }, + "repo": { + "id": 214669120, + "name": "jthielman/solar-system", + "url": "https://api.github.com/repos/jthielman/solar-system" + }, + "payload": { + "action": "opened", + "number": 13, + "pull_request": { + "url": "https://api.github.com/repos/jthielman/solar-system/pulls/13", + "id": 330711278, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzMwNzExMjc4", + "html_url": "https://github.com/jthielman/solar-system/pull/13", + "diff_url": "https://github.com/jthielman/solar-system/pull/13.diff", + "patch_url": "https://github.com/jthielman/solar-system/pull/13.patch", + "issue_url": "https://api.github.com/repos/jthielman/solar-system/issues/13", + "number": 13, + "state": "open", + "locked": false, + "title": "clicking X returns to main view", + "user": { + "login": "jthielman", + "id": 54124593, + "node_id": "MDQ6VXNlcjU0MTI0NTkz", + "avatar_url": "https://avatars3.githubusercontent.com/u/54124593?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jthielman", + "html_url": "https://github.com/jthielman", + "followers_url": "https://api.github.com/users/jthielman/followers", + "following_url": "https://api.github.com/users/jthielman/following{/other_user}", + "gists_url": "https://api.github.com/users/jthielman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jthielman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jthielman/subscriptions", + "organizations_url": "https://api.github.com/users/jthielman/orgs", + "repos_url": "https://api.github.com/users/jthielman/repos", + "events_url": "https://api.github.com/users/jthielman/events{/privacy}", + "received_events_url": "https://api.github.com/users/jthielman/received_events", + "type": "User", + "site_admin": false + }, + "body": "like it says on the tin.", + "created_at": "2019-10-21T21:54:48Z", + "updated_at": "2019-10-21T21:54:48Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/jthielman/solar-system/pulls/13/commits", + "review_comments_url": "https://api.github.com/repos/jthielman/solar-system/pulls/13/comments", + "review_comment_url": "https://api.github.com/repos/jthielman/solar-system/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/jthielman/solar-system/issues/13/comments", + "statuses_url": "https://api.github.com/repos/jthielman/solar-system/statuses/cc75e5a933371f06d850fec15edf0a2f2f6a0506", + "head": { + "label": "jthielman:jt-clickX", + "ref": "jt-clickX", + "sha": "cc75e5a933371f06d850fec15edf0a2f2f6a0506", + "user": { + "login": "jthielman", + "id": 54124593, + "node_id": "MDQ6VXNlcjU0MTI0NTkz", + "avatar_url": "https://avatars3.githubusercontent.com/u/54124593?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jthielman", + "html_url": "https://github.com/jthielman", + "followers_url": "https://api.github.com/users/jthielman/followers", + "following_url": "https://api.github.com/users/jthielman/following{/other_user}", + "gists_url": "https://api.github.com/users/jthielman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jthielman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jthielman/subscriptions", + "organizations_url": "https://api.github.com/users/jthielman/orgs", + "repos_url": "https://api.github.com/users/jthielman/repos", + "events_url": "https://api.github.com/users/jthielman/events{/privacy}", + "received_events_url": "https://api.github.com/users/jthielman/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 214669120, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTQ2NjkxMjA=", + "name": "solar-system", + "full_name": "jthielman/solar-system", + "private": false, + "owner": { + "login": "jthielman", + "id": 54124593, + "node_id": "MDQ6VXNlcjU0MTI0NTkz", + "avatar_url": "https://avatars3.githubusercontent.com/u/54124593?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jthielman", + "html_url": "https://github.com/jthielman", + "followers_url": "https://api.github.com/users/jthielman/followers", + "following_url": "https://api.github.com/users/jthielman/following{/other_user}", + "gists_url": "https://api.github.com/users/jthielman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jthielman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jthielman/subscriptions", + "organizations_url": "https://api.github.com/users/jthielman/orgs", + "repos_url": "https://api.github.com/users/jthielman/repos", + "events_url": "https://api.github.com/users/jthielman/events{/privacy}", + "received_events_url": "https://api.github.com/users/jthielman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/jthielman/solar-system", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jthielman/solar-system", + "forks_url": "https://api.github.com/repos/jthielman/solar-system/forks", + "keys_url": "https://api.github.com/repos/jthielman/solar-system/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jthielman/solar-system/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jthielman/solar-system/teams", + "hooks_url": "https://api.github.com/repos/jthielman/solar-system/hooks", + "issue_events_url": "https://api.github.com/repos/jthielman/solar-system/issues/events{/number}", + "events_url": "https://api.github.com/repos/jthielman/solar-system/events", + "assignees_url": "https://api.github.com/repos/jthielman/solar-system/assignees{/user}", + "branches_url": "https://api.github.com/repos/jthielman/solar-system/branches{/branch}", + "tags_url": "https://api.github.com/repos/jthielman/solar-system/tags", + "blobs_url": "https://api.github.com/repos/jthielman/solar-system/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jthielman/solar-system/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jthielman/solar-system/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jthielman/solar-system/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jthielman/solar-system/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jthielman/solar-system/languages", + "stargazers_url": "https://api.github.com/repos/jthielman/solar-system/stargazers", + "contributors_url": "https://api.github.com/repos/jthielman/solar-system/contributors", + "subscribers_url": "https://api.github.com/repos/jthielman/solar-system/subscribers", + "subscription_url": "https://api.github.com/repos/jthielman/solar-system/subscription", + "commits_url": "https://api.github.com/repos/jthielman/solar-system/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jthielman/solar-system/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jthielman/solar-system/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jthielman/solar-system/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jthielman/solar-system/contents/{+path}", + "compare_url": "https://api.github.com/repos/jthielman/solar-system/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jthielman/solar-system/merges", + "archive_url": "https://api.github.com/repos/jthielman/solar-system/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jthielman/solar-system/downloads", + "issues_url": "https://api.github.com/repos/jthielman/solar-system/issues{/number}", + "pulls_url": "https://api.github.com/repos/jthielman/solar-system/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jthielman/solar-system/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jthielman/solar-system/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jthielman/solar-system/labels{/name}", + "releases_url": "https://api.github.com/repos/jthielman/solar-system/releases{/id}", + "deployments_url": "https://api.github.com/repos/jthielman/solar-system/deployments", + "created_at": "2019-10-12T15:22:16Z", + "updated_at": "2019-10-21T21:12:38Z", + "pushed_at": "2019-10-21T21:54:23Z", + "git_url": "git://github.com/jthielman/solar-system.git", + "ssh_url": "git@github.com:jthielman/solar-system.git", + "clone_url": "https://github.com/jthielman/solar-system.git", + "svn_url": "https://github.com/jthielman/solar-system", + "homepage": null, + "size": 11, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": null, + "forks": 0, + "open_issues": 3, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "jthielman:master", + "ref": "master", + "sha": "6564f42f20577d964ee9f8c007a961ccd81e8aae", + "user": { + "login": "jthielman", + "id": 54124593, + "node_id": "MDQ6VXNlcjU0MTI0NTkz", + "avatar_url": "https://avatars3.githubusercontent.com/u/54124593?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jthielman", + "html_url": "https://github.com/jthielman", + "followers_url": "https://api.github.com/users/jthielman/followers", + "following_url": "https://api.github.com/users/jthielman/following{/other_user}", + "gists_url": "https://api.github.com/users/jthielman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jthielman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jthielman/subscriptions", + "organizations_url": "https://api.github.com/users/jthielman/orgs", + "repos_url": "https://api.github.com/users/jthielman/repos", + "events_url": "https://api.github.com/users/jthielman/events{/privacy}", + "received_events_url": "https://api.github.com/users/jthielman/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 214669120, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTQ2NjkxMjA=", + "name": "solar-system", + "full_name": "jthielman/solar-system", + "private": false, + "owner": { + "login": "jthielman", + "id": 54124593, + "node_id": "MDQ6VXNlcjU0MTI0NTkz", + "avatar_url": "https://avatars3.githubusercontent.com/u/54124593?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jthielman", + "html_url": "https://github.com/jthielman", + "followers_url": "https://api.github.com/users/jthielman/followers", + "following_url": "https://api.github.com/users/jthielman/following{/other_user}", + "gists_url": "https://api.github.com/users/jthielman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jthielman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jthielman/subscriptions", + "organizations_url": "https://api.github.com/users/jthielman/orgs", + "repos_url": "https://api.github.com/users/jthielman/repos", + "events_url": "https://api.github.com/users/jthielman/events{/privacy}", + "received_events_url": "https://api.github.com/users/jthielman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/jthielman/solar-system", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jthielman/solar-system", + "forks_url": "https://api.github.com/repos/jthielman/solar-system/forks", + "keys_url": "https://api.github.com/repos/jthielman/solar-system/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jthielman/solar-system/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jthielman/solar-system/teams", + "hooks_url": "https://api.github.com/repos/jthielman/solar-system/hooks", + "issue_events_url": "https://api.github.com/repos/jthielman/solar-system/issues/events{/number}", + "events_url": "https://api.github.com/repos/jthielman/solar-system/events", + "assignees_url": "https://api.github.com/repos/jthielman/solar-system/assignees{/user}", + "branches_url": "https://api.github.com/repos/jthielman/solar-system/branches{/branch}", + "tags_url": "https://api.github.com/repos/jthielman/solar-system/tags", + "blobs_url": "https://api.github.com/repos/jthielman/solar-system/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jthielman/solar-system/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jthielman/solar-system/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jthielman/solar-system/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jthielman/solar-system/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jthielman/solar-system/languages", + "stargazers_url": "https://api.github.com/repos/jthielman/solar-system/stargazers", + "contributors_url": "https://api.github.com/repos/jthielman/solar-system/contributors", + "subscribers_url": "https://api.github.com/repos/jthielman/solar-system/subscribers", + "subscription_url": "https://api.github.com/repos/jthielman/solar-system/subscription", + "commits_url": "https://api.github.com/repos/jthielman/solar-system/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jthielman/solar-system/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jthielman/solar-system/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jthielman/solar-system/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jthielman/solar-system/contents/{+path}", + "compare_url": "https://api.github.com/repos/jthielman/solar-system/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jthielman/solar-system/merges", + "archive_url": "https://api.github.com/repos/jthielman/solar-system/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jthielman/solar-system/downloads", + "issues_url": "https://api.github.com/repos/jthielman/solar-system/issues{/number}", + "pulls_url": "https://api.github.com/repos/jthielman/solar-system/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jthielman/solar-system/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jthielman/solar-system/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jthielman/solar-system/labels{/name}", + "releases_url": "https://api.github.com/repos/jthielman/solar-system/releases{/id}", + "deployments_url": "https://api.github.com/repos/jthielman/solar-system/deployments", + "created_at": "2019-10-12T15:22:16Z", + "updated_at": "2019-10-21T21:12:38Z", + "pushed_at": "2019-10-21T21:54:23Z", + "git_url": "git://github.com/jthielman/solar-system.git", + "ssh_url": "git@github.com:jthielman/solar-system.git", + "clone_url": "https://github.com/jthielman/solar-system.git", + "svn_url": "https://github.com/jthielman/solar-system", + "homepage": null, + "size": 11, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": null, + "forks": 0, + "open_issues": 3, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/jthielman/solar-system/pulls/13" + }, + "html": { + "href": "https://github.com/jthielman/solar-system/pull/13" + }, + "issue": { + "href": "https://api.github.com/repos/jthielman/solar-system/issues/13" + }, + "comments": { + "href": "https://api.github.com/repos/jthielman/solar-system/issues/13/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/jthielman/solar-system/pulls/13/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/jthielman/solar-system/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/jthielman/solar-system/pulls/13/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/jthielman/solar-system/statuses/cc75e5a933371f06d850fec15edf0a2f2f6a0506" + } + }, + "author_association": "OWNER", + "merged": false, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 28, + "deletions": 6, + "changed_files": 6 + } + }, + "public": true, + "created_at": "2019-10-21T21:54:49Z" + }, + { + "id": "10680625052", + "type": "PushEvent", + "actor": { + "id": 4157996, + "login": "esellors", + "display_login": "esellors", + "gravatar_id": "", + "url": "https://api.github.com/users/esellors", + "avatar_url": "https://avatars.githubusercontent.com/u/4157996?" + }, + "repo": { + "id": 216093525, + "name": "dm-group-trakd/trakd", + "url": "https://api.github.com/repos/dm-group-trakd/trakd" + }, + "payload": { + "push_id": 4176854920, + "size": 8, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "56d21eeee46fd18ad1a3ada1ddc0dde40ee148fd", + "before": "4586bdd4aba94009ee60a2d01710f50493f60fd7", + "commits": [ + { + "sha": "6f4067870101c572e51d819146261deab1858a6c", + "author": { + "email": "jensenjamison@yahoo.com", + "name": "unknown" + }, + "message": "done for friday", + "distinct": false, + "url": "https://api.github.com/repos/dm-group-trakd/trakd/commits/6f4067870101c572e51d819146261deab1858a6c" + }, + { + "sha": "3b07c020146eb44e0b73abd21d66f7b7ba6d1d79", + "author": { + "email": "jensenjamison@yahoo.com", + "name": "unknown" + }, + "message": "updating to master", + "distinct": false, + "url": "https://api.github.com/repos/dm-group-trakd/trakd/commits/3b07c020146eb44e0b73abd21d66f7b7ba6d1d79" + }, + { + "sha": "3b7f5f90fef58384093632f3518ef0355c38fa39", + "author": { + "email": "jensenjamison@yahoo.com", + "name": "unknown" + }, + "message": "added settings component and styling", + "distinct": false, + "url": "https://api.github.com/repos/dm-group-trakd/trakd/commits/3b7f5f90fef58384093632f3518ef0355c38fa39" + }, + { + "sha": "5e0396f6e73a7359e5d997b98373a5b8f95261f8", + "author": { + "email": "jensenjamison@yahoo.com", + "name": "unknown" + }, + "message": "Merge branch 'master' into jamison", + "distinct": false, + "url": "https://api.github.com/repos/dm-group-trakd/trakd/commits/5e0396f6e73a7359e5d997b98373a5b8f95261f8" + }, + { + "sha": "86f154430e2d2e289dd75359d9f111f72f1cf29e", + "author": { + "email": "jensenjamison@yahoo.com", + "name": "unknown" + }, + "message": "added settings and styled ui", + "distinct": false, + "url": "https://api.github.com/repos/dm-group-trakd/trakd/commits/86f154430e2d2e289dd75359d9f111f72f1cf29e" + }, + { + "sha": "da8b095b65b2aa4dd4538f58a52e498da3b46ba7", + "author": { + "email": "jensenjamison@yahoo.com", + "name": "unknown" + }, + "message": "Merge branch 'master' into jamison", + "distinct": false, + "url": "https://api.github.com/repos/dm-group-trakd/trakd/commits/da8b095b65b2aa4dd4538f58a52e498da3b46ba7" + }, + { + "sha": "66a7bf7d92111a5056813ae964574d48e431b470", + "author": { + "email": "jensenjamison@yahoo.com", + "name": "unknown" + }, + "message": "fixed bug and added methods for updating user settings and goals", + "distinct": false, + "url": "https://api.github.com/repos/dm-group-trakd/trakd/commits/66a7bf7d92111a5056813ae964574d48e431b470" + }, + { + "sha": "56d21eeee46fd18ad1a3ada1ddc0dde40ee148fd", + "author": { + "email": "4157996+esellors@users.noreply.github.com", + "name": "Eric Sellors" + }, + "message": "Merge pull request #18 from dm-group-trakd/jamison\n\nadd settings component include methods for updating user settings and goals, fixed bug with user reducer", + "distinct": true, + "url": "https://api.github.com/repos/dm-group-trakd/trakd/commits/56d21eeee46fd18ad1a3ada1ddc0dde40ee148fd" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:49Z", + "org": { + "id": 56691813, + "login": "dm-group-trakd", + "gravatar_id": "", + "url": "https://api.github.com/orgs/dm-group-trakd", + "avatar_url": "https://avatars.githubusercontent.com/u/56691813?" + } + }, + { + "id": "10680625053", + "type": "PushEvent", + "actor": { + "id": 51011840, + "login": "othhotro", + "display_login": "othhotro", + "gravatar_id": "", + "url": "https://api.github.com/users/othhotro", + "avatar_url": "https://avatars.githubusercontent.com/u/51011840?" + }, + "repo": { + "id": 201879384, + "name": "othhotro/Roo.Exe", + "url": "https://api.github.com/repos/othhotro/Roo.Exe" + }, + "payload": { + "push_id": 4176854918, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "15016ceee06af3047744c7bac173ebc162c2b3ac", + "before": "908784246be05f222167f3f463e1423885f54ac5", + "commits": [ + { + "sha": "15016ceee06af3047744c7bac173ebc162c2b3ac", + "author": { + "email": "oth.hotro@gmail.com", + "name": "oth.hotro@gmail.com" + }, + "message": "Lần chạy [2019-10-22 04-53]:Lần thứ 50", + "distinct": true, + "url": "https://api.github.com/repos/othhotro/Roo.Exe/commits/15016ceee06af3047744c7bac173ebc162c2b3ac" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:49Z" + }, + { + "id": "10680625055", + "type": "ForkEvent", + "actor": { + "id": 18275928, + "login": "nguyens7", + "display_login": "nguyens7", + "gravatar_id": "", + "url": "https://api.github.com/users/nguyens7", + "avatar_url": "https://avatars.githubusercontent.com/u/18275928?" + }, + "repo": { + "id": 216604352, + "name": "rladies-eastlansing/2019-workshop-dataviz", + "url": "https://api.github.com/repos/rladies-eastlansing/2019-workshop-dataviz" + }, + "payload": { + "forkee": { + "id": 216672336, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTY2NzIzMzY=", + "name": "2019-workshop-dataviz", + "full_name": "nguyens7/2019-workshop-dataviz", + "private": false, + "owner": { + "login": "nguyens7", + "id": 18275928, + "node_id": "MDQ6VXNlcjE4Mjc1OTI4", + "avatar_url": "https://avatars3.githubusercontent.com/u/18275928?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nguyens7", + "html_url": "https://github.com/nguyens7", + "followers_url": "https://api.github.com/users/nguyens7/followers", + "following_url": "https://api.github.com/users/nguyens7/following{/other_user}", + "gists_url": "https://api.github.com/users/nguyens7/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nguyens7/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nguyens7/subscriptions", + "organizations_url": "https://api.github.com/users/nguyens7/orgs", + "repos_url": "https://api.github.com/users/nguyens7/repos", + "events_url": "https://api.github.com/users/nguyens7/events{/privacy}", + "received_events_url": "https://api.github.com/users/nguyens7/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/nguyens7/2019-workshop-dataviz", + "description": "Workshop on Intro to Data Wrangling & Visualization w/ R | Oct 21, 2019 @RLadiesELansing", + "fork": true, + "url": "https://api.github.com/repos/nguyens7/2019-workshop-dataviz", + "forks_url": "https://api.github.com/repos/nguyens7/2019-workshop-dataviz/forks", + "keys_url": "https://api.github.com/repos/nguyens7/2019-workshop-dataviz/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/nguyens7/2019-workshop-dataviz/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/nguyens7/2019-workshop-dataviz/teams", + "hooks_url": "https://api.github.com/repos/nguyens7/2019-workshop-dataviz/hooks", + "issue_events_url": "https://api.github.com/repos/nguyens7/2019-workshop-dataviz/issues/events{/number}", + "events_url": "https://api.github.com/repos/nguyens7/2019-workshop-dataviz/events", + "assignees_url": "https://api.github.com/repos/nguyens7/2019-workshop-dataviz/assignees{/user}", + "branches_url": "https://api.github.com/repos/nguyens7/2019-workshop-dataviz/branches{/branch}", + "tags_url": "https://api.github.com/repos/nguyens7/2019-workshop-dataviz/tags", + "blobs_url": "https://api.github.com/repos/nguyens7/2019-workshop-dataviz/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/nguyens7/2019-workshop-dataviz/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/nguyens7/2019-workshop-dataviz/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/nguyens7/2019-workshop-dataviz/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/nguyens7/2019-workshop-dataviz/statuses/{sha}", + "languages_url": "https://api.github.com/repos/nguyens7/2019-workshop-dataviz/languages", + "stargazers_url": "https://api.github.com/repos/nguyens7/2019-workshop-dataviz/stargazers", + "contributors_url": "https://api.github.com/repos/nguyens7/2019-workshop-dataviz/contributors", + "subscribers_url": "https://api.github.com/repos/nguyens7/2019-workshop-dataviz/subscribers", + "subscription_url": "https://api.github.com/repos/nguyens7/2019-workshop-dataviz/subscription", + "commits_url": "https://api.github.com/repos/nguyens7/2019-workshop-dataviz/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/nguyens7/2019-workshop-dataviz/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/nguyens7/2019-workshop-dataviz/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/nguyens7/2019-workshop-dataviz/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/nguyens7/2019-workshop-dataviz/contents/{+path}", + "compare_url": "https://api.github.com/repos/nguyens7/2019-workshop-dataviz/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/nguyens7/2019-workshop-dataviz/merges", + "archive_url": "https://api.github.com/repos/nguyens7/2019-workshop-dataviz/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/nguyens7/2019-workshop-dataviz/downloads", + "issues_url": "https://api.github.com/repos/nguyens7/2019-workshop-dataviz/issues{/number}", + "pulls_url": "https://api.github.com/repos/nguyens7/2019-workshop-dataviz/pulls{/number}", + "milestones_url": "https://api.github.com/repos/nguyens7/2019-workshop-dataviz/milestones{/number}", + "notifications_url": "https://api.github.com/repos/nguyens7/2019-workshop-dataviz/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/nguyens7/2019-workshop-dataviz/labels{/name}", + "releases_url": "https://api.github.com/repos/nguyens7/2019-workshop-dataviz/releases{/id}", + "deployments_url": "https://api.github.com/repos/nguyens7/2019-workshop-dataviz/deployments", + "created_at": "2019-10-21T21:54:48Z", + "updated_at": "2019-10-21T16:30:28Z", + "pushed_at": "2019-10-21T16:30:26Z", + "git_url": "git://github.com/nguyens7/2019-workshop-dataviz.git", + "ssh_url": "git@github.com:nguyens7/2019-workshop-dataviz.git", + "clone_url": "https://github.com/nguyens7/2019-workshop-dataviz.git", + "svn_url": "https://github.com/nguyens7/2019-workshop-dataviz", + "homepage": null, + "size": 4295, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "public": true + } + }, + "public": true, + "created_at": "2019-10-21T21:54:49Z", + "org": { + "id": 40669648, + "login": "rladies-eastlansing", + "gravatar_id": "", + "url": "https://api.github.com/orgs/rladies-eastlansing", + "avatar_url": "https://avatars.githubusercontent.com/u/40669648?" + } + }, + { + "id": "10680625040", + "type": "PushEvent", + "actor": { + "id": 6563840, + "login": "sarenameas", + "display_login": "sarenameas", + "gravatar_id": "", + "url": "https://api.github.com/users/sarenameas", + "avatar_url": "https://avatars.githubusercontent.com/u/6563840?" + }, + "repo": { + "id": 209374154, + "name": "sarenameas/amazon-freertos", + "url": "https://api.github.com/repos/sarenameas/amazon-freertos" + }, + "payload": { + "push_id": 4176854912, + "size": 13, + "distinct_size": 2, + "ref": "refs/heads/doc_sync", + "head": "5bcb4369caf445565588af8e8f6ab1a2959c6d35", + "before": "9a312b05863eeeeb6acadf0b56cf9dd6374a9ec2", + "commits": [ + { + "sha": "c77bbcbd208a55b7cbf9a2d9af1b5256628a9349", + "author": { + "email": "ts.whu@outlook.com", + "name": "Tiangang Song" + }, + "message": "Allow demos to be turned off in CMake", + "distinct": false, + "url": "https://api.github.com/repos/sarenameas/amazon-freertos/commits/c77bbcbd208a55b7cbf9a2d9af1b5256628a9349" + }, + { + "sha": "8b0125429a166ff0057e0ac99f19c425c5198e8f", + "author": { + "email": "ts.whu@outlook.com", + "name": "Tiangang Song" + }, + "message": "Extend turning off demo support to all boards", + "distinct": false, + "url": "https://api.github.com/repos/sarenameas/amazon-freertos/commits/8b0125429a166ff0057e0ac99f19c425c5198e8f" + }, + { + "sha": "e89a7ea8b4cf9445c593fb20851433ac6c2b6f05", + "author": { + "email": "ts.whu@outlook.com", + "name": "Tiangang Song" + }, + "message": "Fix AFR_ENABLE_DEMOS in CMake GUI", + "distinct": false, + "url": "https://api.github.com/repos/sarenameas/amazon-freertos/commits/e89a7ea8b4cf9445c593fb20851433ac6c2b6f05" + }, + { + "sha": "c58281840008401cb16961f9d60f37ea0bf4e907", + "author": { + "email": "qiutongs@amazon.com", + "name": "qiutongs" + }, + "message": "Merge branch 'master' into feature/cmake_turn_off_demos", + "distinct": false, + "url": "https://api.github.com/repos/sarenameas/amazon-freertos/commits/c58281840008401cb16961f9d60f37ea0bf4e907" + }, + { + "sha": "33dbda4fdfd6468eae94b0c433be4268bce6a07b", + "author": { + "email": "qiutongs@amazon.com", + "name": "qiutongs" + }, + "message": "Remove duplicate commands in Nordic cmake", + "distinct": false, + "url": "https://api.github.com/repos/sarenameas/amazon-freertos/commits/33dbda4fdfd6468eae94b0c433be4268bce6a07b" + }, + { + "sha": "f3549a7bc850fb2d849f8f1da84c82c895b5d63d", + "author": { + "email": "ts.whu@outlook.com", + "name": "Tiangang Song" + }, + "message": "Turn off demos in cmake when we're not at top level", + "distinct": false, + "url": "https://api.github.com/repos/sarenameas/amazon-freertos/commits/f3549a7bc850fb2d849f8f1da84c82c895b5d63d" + }, + { + "sha": "6c86b095ff62516dbb62466aa3ac258dd81d3f76", + "author": { + "email": "ts.whu@outlook.com", + "name": "Tiangang Song" + }, + "message": "Fix nordic cmake file", + "distinct": false, + "url": "https://api.github.com/repos/sarenameas/amazon-freertos/commits/6c86b095ff62516dbb62466aa3ac258dd81d3f76" + }, + { + "sha": "1de9a4d51c9d0bccef2f7b5550cc6086ce9525a3", + "author": { + "email": "ts.whu@outlook.com", + "name": "Tiangang Song" + }, + "message": "Merge remote-tracking branch 'origin/master' into HEAD", + "distinct": false, + "url": "https://api.github.com/repos/sarenameas/amazon-freertos/commits/1de9a4d51c9d0bccef2f7b5550cc6086ce9525a3" + }, + { + "sha": "390618c93c0be2c96059a865610c326a96de1e47", + "author": { + "email": "ts.whu@outlook.com", + "name": "Tiangang Song" + }, + "message": "Merge pull request #1161 from aws/feature/cmake_turn_off_demos\n\nAllow demos to be turned off in CMake", + "distinct": false, + "url": "https://api.github.com/repos/sarenameas/amazon-freertos/commits/390618c93c0be2c96059a865610c326a96de1e47" + }, + { + "sha": "b3ddf96a5ff6f1d254c646473feb1bc5c0bf2724", + "author": { + "email": "33439348+alexa-noxon@users.noreply.github.com", + "name": "alexa@aws" + }, + "message": "Add test that private keys are not extractable (#1434)\n\n* Add test that private keys are not extract-able", + "distinct": false, + "url": "https://api.github.com/repos/sarenameas/amazon-freertos/commits/b3ddf96a5ff6f1d254c646473feb1bc5c0bf2724" + }, + { + "sha": "a003c65980c91f141a513ee2ea4b67a0160ce026", + "author": { + "email": "bhagavar@amazon.com", + "name": "Ravishankar Bhagavandas" + }, + "message": "Add bootloader project to Nordic CMake (#1438)\n\n* Adding cmake for nordic bootloader\r\n\r\n* Separate wifi provisioning tests from ble tests\r\n\r\n* Look for correct objcopy file", + "distinct": false, + "url": "https://api.github.com/repos/sarenameas/amazon-freertos/commits/a003c65980c91f141a513ee2ea4b67a0160ce026" + }, + { + "sha": "24280adc2b975e2d3ddafd3530070cfc9ebaf0d0", + "author": { + "email": "sarem@amazon.com", + "name": "Sarena Meas" + }, + "message": "Update doc/README.md for correct CSDK api ref link.", + "distinct": true, + "url": "https://api.github.com/repos/sarenameas/amazon-freertos/commits/24280adc2b975e2d3ddafd3530070cfc9ebaf0d0" + }, + { + "sha": "5bcb4369caf445565588af8e8f6ab1a2959c6d35", + "author": { + "email": "sarem@amazon.com", + "name": "Sarena Meas" + }, + "message": "Synchronize the doxygen content of the platform layer in AFR to CSDK.", + "distinct": true, + "url": "https://api.github.com/repos/sarenameas/amazon-freertos/commits/5bcb4369caf445565588af8e8f6ab1a2959c6d35" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:49Z" + }, + { + "id": "10680625049", + "type": "PullRequestEvent", + "actor": { + "id": 43646355, + "login": "TaylorAkin", + "display_login": "TaylorAkin", + "gravatar_id": "", + "url": "https://api.github.com/users/TaylorAkin", + "avatar_url": "https://avatars.githubusercontent.com/u/43646355?" + }, + "repo": { + "id": 216576946, + "name": "TaylorAkin/react_restaurant", + "url": "https://api.github.com/repos/TaylorAkin/react_restaurant" + }, + "payload": { + "action": "opened", + "number": 1, + "pull_request": { + "url": "https://api.github.com/repos/TaylorAkin/react_restaurant/pulls/1", + "id": 330711276, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzMwNzExMjc2", + "html_url": "https://github.com/TaylorAkin/react_restaurant/pull/1", + "diff_url": "https://github.com/TaylorAkin/react_restaurant/pull/1.diff", + "patch_url": "https://github.com/TaylorAkin/react_restaurant/pull/1.patch", + "issue_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/issues/1", + "number": 1, + "state": "open", + "locked": false, + "title": "added parallax and images for each meal type section", + "user": { + "login": "TaylorAkin", + "id": 43646355, + "node_id": "MDQ6VXNlcjQzNjQ2MzU1", + "avatar_url": "https://avatars0.githubusercontent.com/u/43646355?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/TaylorAkin", + "html_url": "https://github.com/TaylorAkin", + "followers_url": "https://api.github.com/users/TaylorAkin/followers", + "following_url": "https://api.github.com/users/TaylorAkin/following{/other_user}", + "gists_url": "https://api.github.com/users/TaylorAkin/gists{/gist_id}", + "starred_url": "https://api.github.com/users/TaylorAkin/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/TaylorAkin/subscriptions", + "organizations_url": "https://api.github.com/users/TaylorAkin/orgs", + "repos_url": "https://api.github.com/users/TaylorAkin/repos", + "events_url": "https://api.github.com/users/TaylorAkin/events{/privacy}", + "received_events_url": "https://api.github.com/users/TaylorAkin/received_events", + "type": "User", + "site_admin": false + }, + "body": "", + "created_at": "2019-10-21T21:54:48Z", + "updated_at": "2019-10-21T21:54:48Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/pulls/1/commits", + "review_comments_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/pulls/1/comments", + "review_comment_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/issues/1/comments", + "statuses_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/statuses/902da1a56e7f302edaac196d76c3e28209e6d85b", + "head": { + "label": "TaylorAkin:feature", + "ref": "feature", + "sha": "902da1a56e7f302edaac196d76c3e28209e6d85b", + "user": { + "login": "TaylorAkin", + "id": 43646355, + "node_id": "MDQ6VXNlcjQzNjQ2MzU1", + "avatar_url": "https://avatars0.githubusercontent.com/u/43646355?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/TaylorAkin", + "html_url": "https://github.com/TaylorAkin", + "followers_url": "https://api.github.com/users/TaylorAkin/followers", + "following_url": "https://api.github.com/users/TaylorAkin/following{/other_user}", + "gists_url": "https://api.github.com/users/TaylorAkin/gists{/gist_id}", + "starred_url": "https://api.github.com/users/TaylorAkin/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/TaylorAkin/subscriptions", + "organizations_url": "https://api.github.com/users/TaylorAkin/orgs", + "repos_url": "https://api.github.com/users/TaylorAkin/repos", + "events_url": "https://api.github.com/users/TaylorAkin/events{/privacy}", + "received_events_url": "https://api.github.com/users/TaylorAkin/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 216576946, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTY1NzY5NDY=", + "name": "react_restaurant", + "full_name": "TaylorAkin/react_restaurant", + "private": false, + "owner": { + "login": "TaylorAkin", + "id": 43646355, + "node_id": "MDQ6VXNlcjQzNjQ2MzU1", + "avatar_url": "https://avatars0.githubusercontent.com/u/43646355?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/TaylorAkin", + "html_url": "https://github.com/TaylorAkin", + "followers_url": "https://api.github.com/users/TaylorAkin/followers", + "following_url": "https://api.github.com/users/TaylorAkin/following{/other_user}", + "gists_url": "https://api.github.com/users/TaylorAkin/gists{/gist_id}", + "starred_url": "https://api.github.com/users/TaylorAkin/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/TaylorAkin/subscriptions", + "organizations_url": "https://api.github.com/users/TaylorAkin/orgs", + "repos_url": "https://api.github.com/users/TaylorAkin/repos", + "events_url": "https://api.github.com/users/TaylorAkin/events{/privacy}", + "received_events_url": "https://api.github.com/users/TaylorAkin/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/TaylorAkin/react_restaurant", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/TaylorAkin/react_restaurant", + "forks_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/forks", + "keys_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/teams", + "hooks_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/hooks", + "issue_events_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/issues/events{/number}", + "events_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/events", + "assignees_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/assignees{/user}", + "branches_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/branches{/branch}", + "tags_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/tags", + "blobs_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/statuses/{sha}", + "languages_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/languages", + "stargazers_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/stargazers", + "contributors_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/contributors", + "subscribers_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/subscribers", + "subscription_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/subscription", + "commits_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/contents/{+path}", + "compare_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/merges", + "archive_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/downloads", + "issues_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/issues{/number}", + "pulls_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/pulls{/number}", + "milestones_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/milestones{/number}", + "notifications_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/labels{/name}", + "releases_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/releases{/id}", + "deployments_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/deployments", + "created_at": "2019-10-21T13:36:23Z", + "updated_at": "2019-10-21T17:06:24Z", + "pushed_at": "2019-10-21T21:54:27Z", + "git_url": "git://github.com/TaylorAkin/react_restaurant.git", + "ssh_url": "git@github.com:TaylorAkin/react_restaurant.git", + "clone_url": "https://github.com/TaylorAkin/react_restaurant.git", + "svn_url": "https://github.com/TaylorAkin/react_restaurant", + "homepage": null, + "size": 360, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "TaylorAkin:dev", + "ref": "dev", + "sha": "25dffabf683e79517c70763adf86e52c589c0ddb", + "user": { + "login": "TaylorAkin", + "id": 43646355, + "node_id": "MDQ6VXNlcjQzNjQ2MzU1", + "avatar_url": "https://avatars0.githubusercontent.com/u/43646355?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/TaylorAkin", + "html_url": "https://github.com/TaylorAkin", + "followers_url": "https://api.github.com/users/TaylorAkin/followers", + "following_url": "https://api.github.com/users/TaylorAkin/following{/other_user}", + "gists_url": "https://api.github.com/users/TaylorAkin/gists{/gist_id}", + "starred_url": "https://api.github.com/users/TaylorAkin/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/TaylorAkin/subscriptions", + "organizations_url": "https://api.github.com/users/TaylorAkin/orgs", + "repos_url": "https://api.github.com/users/TaylorAkin/repos", + "events_url": "https://api.github.com/users/TaylorAkin/events{/privacy}", + "received_events_url": "https://api.github.com/users/TaylorAkin/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 216576946, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTY1NzY5NDY=", + "name": "react_restaurant", + "full_name": "TaylorAkin/react_restaurant", + "private": false, + "owner": { + "login": "TaylorAkin", + "id": 43646355, + "node_id": "MDQ6VXNlcjQzNjQ2MzU1", + "avatar_url": "https://avatars0.githubusercontent.com/u/43646355?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/TaylorAkin", + "html_url": "https://github.com/TaylorAkin", + "followers_url": "https://api.github.com/users/TaylorAkin/followers", + "following_url": "https://api.github.com/users/TaylorAkin/following{/other_user}", + "gists_url": "https://api.github.com/users/TaylorAkin/gists{/gist_id}", + "starred_url": "https://api.github.com/users/TaylorAkin/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/TaylorAkin/subscriptions", + "organizations_url": "https://api.github.com/users/TaylorAkin/orgs", + "repos_url": "https://api.github.com/users/TaylorAkin/repos", + "events_url": "https://api.github.com/users/TaylorAkin/events{/privacy}", + "received_events_url": "https://api.github.com/users/TaylorAkin/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/TaylorAkin/react_restaurant", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/TaylorAkin/react_restaurant", + "forks_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/forks", + "keys_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/teams", + "hooks_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/hooks", + "issue_events_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/issues/events{/number}", + "events_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/events", + "assignees_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/assignees{/user}", + "branches_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/branches{/branch}", + "tags_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/tags", + "blobs_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/statuses/{sha}", + "languages_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/languages", + "stargazers_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/stargazers", + "contributors_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/contributors", + "subscribers_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/subscribers", + "subscription_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/subscription", + "commits_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/contents/{+path}", + "compare_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/merges", + "archive_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/downloads", + "issues_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/issues{/number}", + "pulls_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/pulls{/number}", + "milestones_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/milestones{/number}", + "notifications_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/labels{/name}", + "releases_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/releases{/id}", + "deployments_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/deployments", + "created_at": "2019-10-21T13:36:23Z", + "updated_at": "2019-10-21T17:06:24Z", + "pushed_at": "2019-10-21T21:54:27Z", + "git_url": "git://github.com/TaylorAkin/react_restaurant.git", + "ssh_url": "git@github.com:TaylorAkin/react_restaurant.git", + "clone_url": "https://github.com/TaylorAkin/react_restaurant.git", + "svn_url": "https://github.com/TaylorAkin/react_restaurant", + "homepage": null, + "size": 360, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/TaylorAkin/react_restaurant/pulls/1" + }, + "html": { + "href": "https://github.com/TaylorAkin/react_restaurant/pull/1" + }, + "issue": { + "href": "https://api.github.com/repos/TaylorAkin/react_restaurant/issues/1" + }, + "comments": { + "href": "https://api.github.com/repos/TaylorAkin/react_restaurant/issues/1/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/TaylorAkin/react_restaurant/pulls/1/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/TaylorAkin/react_restaurant/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/TaylorAkin/react_restaurant/pulls/1/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/TaylorAkin/react_restaurant/statuses/902da1a56e7f302edaac196d76c3e28209e6d85b" + } + }, + "author_association": "OWNER", + "merged": false, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 176, + "deletions": 34, + "changed_files": 14 + } + }, + "public": true, + "created_at": "2019-10-21T21:54:49Z" + }, + { + "id": "10680625030", + "type": "PullRequestEvent", + "actor": { + "id": 7111514, + "login": "shushugah", + "display_login": "shushugah", + "gravatar_id": "", + "url": "https://api.github.com/users/shushugah", + "avatar_url": "https://avatars.githubusercontent.com/u/7111514?" + }, + "repo": { + "id": 209969044, + "name": "codecurious-bln/CC-website", + "url": "https://api.github.com/repos/codecurious-bln/CC-website" + }, + "payload": { + "action": "closed", + "number": 32, + "pull_request": { + "url": "https://api.github.com/repos/codecurious-bln/CC-website/pulls/32", + "id": 330041415, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzMwMDQxNDE1", + "html_url": "https://github.com/codecurious-bln/CC-website/pull/32", + "diff_url": "https://github.com/codecurious-bln/CC-website/pull/32.diff", + "patch_url": "https://github.com/codecurious-bln/CC-website/pull/32.patch", + "issue_url": "https://api.github.com/repos/codecurious-bln/CC-website/issues/32", + "number": 32, + "state": "closed", + "locked": false, + "title": "Add edit on github", + "user": { + "login": "Naylin15", + "id": 30867977, + "node_id": "MDQ6VXNlcjMwODY3OTc3", + "avatar_url": "https://avatars0.githubusercontent.com/u/30867977?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Naylin15", + "html_url": "https://github.com/Naylin15", + "followers_url": "https://api.github.com/users/Naylin15/followers", + "following_url": "https://api.github.com/users/Naylin15/following{/other_user}", + "gists_url": "https://api.github.com/users/Naylin15/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Naylin15/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Naylin15/subscriptions", + "organizations_url": "https://api.github.com/users/Naylin15/orgs", + "repos_url": "https://api.github.com/users/Naylin15/repos", + "events_url": "https://api.github.com/users/Naylin15/events{/privacy}", + "received_events_url": "https://api.github.com/users/Naylin15/received_events", + "type": "User", + "site_admin": false + }, + "body": "Hi,\r\n\r\nI was working in this too, perhaps my changes could also be taken into account? \r\n\r\nI added the link to GitHub as part of the header to make it look like this \r\n\r\n![edit-github](https://user-images.githubusercontent.com/30867977/67149168-6a04a080-f27e-11e9-91a0-9d79f5d72492.jpg)\r\n\r\nAfter reviewing [this issue in minima](https://github.com/jekyll/minima/issues/207)\r\n\r\nRelated: #30 #19 ", + "created_at": "2019-10-19T17:44:03Z", + "updated_at": "2019-10-21T21:54:48Z", + "closed_at": "2019-10-21T21:54:48Z", + "merged_at": "2019-10-21T21:54:48Z", + "merge_commit_sha": "ca3257de9d87f497be2d5d2cfd5ef75c78b1c732", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "shushugah", + "id": 7111514, + "node_id": "MDQ6VXNlcjcxMTE1MTQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/7111514?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/shushugah", + "html_url": "https://github.com/shushugah", + "followers_url": "https://api.github.com/users/shushugah/followers", + "following_url": "https://api.github.com/users/shushugah/following{/other_user}", + "gists_url": "https://api.github.com/users/shushugah/gists{/gist_id}", + "starred_url": "https://api.github.com/users/shushugah/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/shushugah/subscriptions", + "organizations_url": "https://api.github.com/users/shushugah/orgs", + "repos_url": "https://api.github.com/users/shushugah/repos", + "events_url": "https://api.github.com/users/shushugah/events{/privacy}", + "received_events_url": "https://api.github.com/users/shushugah/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/codecurious-bln/CC-website/pulls/32/commits", + "review_comments_url": "https://api.github.com/repos/codecurious-bln/CC-website/pulls/32/comments", + "review_comment_url": "https://api.github.com/repos/codecurious-bln/CC-website/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/codecurious-bln/CC-website/issues/32/comments", + "statuses_url": "https://api.github.com/repos/codecurious-bln/CC-website/statuses/aec5222f75127664e4df1aa618334663f4a0081f", + "head": { + "label": "Naylin15:edit-github", + "ref": "edit-github", + "sha": "aec5222f75127664e4df1aa618334663f4a0081f", + "user": { + "login": "Naylin15", + "id": 30867977, + "node_id": "MDQ6VXNlcjMwODY3OTc3", + "avatar_url": "https://avatars0.githubusercontent.com/u/30867977?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Naylin15", + "html_url": "https://github.com/Naylin15", + "followers_url": "https://api.github.com/users/Naylin15/followers", + "following_url": "https://api.github.com/users/Naylin15/following{/other_user}", + "gists_url": "https://api.github.com/users/Naylin15/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Naylin15/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Naylin15/subscriptions", + "organizations_url": "https://api.github.com/users/Naylin15/orgs", + "repos_url": "https://api.github.com/users/Naylin15/repos", + "events_url": "https://api.github.com/users/Naylin15/events{/privacy}", + "received_events_url": "https://api.github.com/users/Naylin15/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 216205787, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTYyMDU3ODc=", + "name": "CC-website", + "full_name": "Naylin15/CC-website", + "private": false, + "owner": { + "login": "Naylin15", + "id": 30867977, + "node_id": "MDQ6VXNlcjMwODY3OTc3", + "avatar_url": "https://avatars0.githubusercontent.com/u/30867977?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Naylin15", + "html_url": "https://github.com/Naylin15", + "followers_url": "https://api.github.com/users/Naylin15/followers", + "following_url": "https://api.github.com/users/Naylin15/following{/other_user}", + "gists_url": "https://api.github.com/users/Naylin15/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Naylin15/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Naylin15/subscriptions", + "organizations_url": "https://api.github.com/users/Naylin15/orgs", + "repos_url": "https://api.github.com/users/Naylin15/repos", + "events_url": "https://api.github.com/users/Naylin15/events{/privacy}", + "received_events_url": "https://api.github.com/users/Naylin15/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/Naylin15/CC-website", + "description": "The future code curious website, it replaces the wordpress site hosted at http://codecurious.org . It deploys to", + "fork": true, + "url": "https://api.github.com/repos/Naylin15/CC-website", + "forks_url": "https://api.github.com/repos/Naylin15/CC-website/forks", + "keys_url": "https://api.github.com/repos/Naylin15/CC-website/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Naylin15/CC-website/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Naylin15/CC-website/teams", + "hooks_url": "https://api.github.com/repos/Naylin15/CC-website/hooks", + "issue_events_url": "https://api.github.com/repos/Naylin15/CC-website/issues/events{/number}", + "events_url": "https://api.github.com/repos/Naylin15/CC-website/events", + "assignees_url": "https://api.github.com/repos/Naylin15/CC-website/assignees{/user}", + "branches_url": "https://api.github.com/repos/Naylin15/CC-website/branches{/branch}", + "tags_url": "https://api.github.com/repos/Naylin15/CC-website/tags", + "blobs_url": "https://api.github.com/repos/Naylin15/CC-website/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Naylin15/CC-website/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Naylin15/CC-website/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Naylin15/CC-website/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Naylin15/CC-website/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Naylin15/CC-website/languages", + "stargazers_url": "https://api.github.com/repos/Naylin15/CC-website/stargazers", + "contributors_url": "https://api.github.com/repos/Naylin15/CC-website/contributors", + "subscribers_url": "https://api.github.com/repos/Naylin15/CC-website/subscribers", + "subscription_url": "https://api.github.com/repos/Naylin15/CC-website/subscription", + "commits_url": "https://api.github.com/repos/Naylin15/CC-website/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Naylin15/CC-website/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Naylin15/CC-website/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Naylin15/CC-website/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Naylin15/CC-website/contents/{+path}", + "compare_url": "https://api.github.com/repos/Naylin15/CC-website/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Naylin15/CC-website/merges", + "archive_url": "https://api.github.com/repos/Naylin15/CC-website/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Naylin15/CC-website/downloads", + "issues_url": "https://api.github.com/repos/Naylin15/CC-website/issues{/number}", + "pulls_url": "https://api.github.com/repos/Naylin15/CC-website/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Naylin15/CC-website/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Naylin15/CC-website/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Naylin15/CC-website/labels{/name}", + "releases_url": "https://api.github.com/repos/Naylin15/CC-website/releases{/id}", + "deployments_url": "https://api.github.com/repos/Naylin15/CC-website/deployments", + "created_at": "2019-10-19T12:52:10Z", + "updated_at": "2019-10-19T12:52:11Z", + "pushed_at": "2019-10-21T21:36:57Z", + "git_url": "git://github.com/Naylin15/CC-website.git", + "ssh_url": "git@github.com:Naylin15/CC-website.git", + "clone_url": "https://github.com/Naylin15/CC-website.git", + "svn_url": "https://github.com/Naylin15/CC-website", + "homepage": "https://code-curious.netlify.com", + "size": 842, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "codecurious-bln:master", + "ref": "master", + "sha": "b762a83d2dd69f4d7be63695dff479b39605c9e3", + "user": { + "login": "codecurious-bln", + "id": 2067368, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIwNjczNjg=", + "avatar_url": "https://avatars0.githubusercontent.com/u/2067368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/codecurious-bln", + "html_url": "https://github.com/codecurious-bln", + "followers_url": "https://api.github.com/users/codecurious-bln/followers", + "following_url": "https://api.github.com/users/codecurious-bln/following{/other_user}", + "gists_url": "https://api.github.com/users/codecurious-bln/gists{/gist_id}", + "starred_url": "https://api.github.com/users/codecurious-bln/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/codecurious-bln/subscriptions", + "organizations_url": "https://api.github.com/users/codecurious-bln/orgs", + "repos_url": "https://api.github.com/users/codecurious-bln/repos", + "events_url": "https://api.github.com/users/codecurious-bln/events{/privacy}", + "received_events_url": "https://api.github.com/users/codecurious-bln/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 209969044, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDk5NjkwNDQ=", + "name": "CC-website", + "full_name": "codecurious-bln/CC-website", + "private": false, + "owner": { + "login": "codecurious-bln", + "id": 2067368, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIwNjczNjg=", + "avatar_url": "https://avatars0.githubusercontent.com/u/2067368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/codecurious-bln", + "html_url": "https://github.com/codecurious-bln", + "followers_url": "https://api.github.com/users/codecurious-bln/followers", + "following_url": "https://api.github.com/users/codecurious-bln/following{/other_user}", + "gists_url": "https://api.github.com/users/codecurious-bln/gists{/gist_id}", + "starred_url": "https://api.github.com/users/codecurious-bln/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/codecurious-bln/subscriptions", + "organizations_url": "https://api.github.com/users/codecurious-bln/orgs", + "repos_url": "https://api.github.com/users/codecurious-bln/repos", + "events_url": "https://api.github.com/users/codecurious-bln/events{/privacy}", + "received_events_url": "https://api.github.com/users/codecurious-bln/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/codecurious-bln/CC-website", + "description": "The future code curious website, it replaces the wordpress site hosted at http://codecurious.org . It deploys to", + "fork": false, + "url": "https://api.github.com/repos/codecurious-bln/CC-website", + "forks_url": "https://api.github.com/repos/codecurious-bln/CC-website/forks", + "keys_url": "https://api.github.com/repos/codecurious-bln/CC-website/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/codecurious-bln/CC-website/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/codecurious-bln/CC-website/teams", + "hooks_url": "https://api.github.com/repos/codecurious-bln/CC-website/hooks", + "issue_events_url": "https://api.github.com/repos/codecurious-bln/CC-website/issues/events{/number}", + "events_url": "https://api.github.com/repos/codecurious-bln/CC-website/events", + "assignees_url": "https://api.github.com/repos/codecurious-bln/CC-website/assignees{/user}", + "branches_url": "https://api.github.com/repos/codecurious-bln/CC-website/branches{/branch}", + "tags_url": "https://api.github.com/repos/codecurious-bln/CC-website/tags", + "blobs_url": "https://api.github.com/repos/codecurious-bln/CC-website/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/codecurious-bln/CC-website/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/codecurious-bln/CC-website/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/codecurious-bln/CC-website/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/codecurious-bln/CC-website/statuses/{sha}", + "languages_url": "https://api.github.com/repos/codecurious-bln/CC-website/languages", + "stargazers_url": "https://api.github.com/repos/codecurious-bln/CC-website/stargazers", + "contributors_url": "https://api.github.com/repos/codecurious-bln/CC-website/contributors", + "subscribers_url": "https://api.github.com/repos/codecurious-bln/CC-website/subscribers", + "subscription_url": "https://api.github.com/repos/codecurious-bln/CC-website/subscription", + "commits_url": "https://api.github.com/repos/codecurious-bln/CC-website/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/codecurious-bln/CC-website/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/codecurious-bln/CC-website/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/codecurious-bln/CC-website/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/codecurious-bln/CC-website/contents/{+path}", + "compare_url": "https://api.github.com/repos/codecurious-bln/CC-website/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/codecurious-bln/CC-website/merges", + "archive_url": "https://api.github.com/repos/codecurious-bln/CC-website/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/codecurious-bln/CC-website/downloads", + "issues_url": "https://api.github.com/repos/codecurious-bln/CC-website/issues{/number}", + "pulls_url": "https://api.github.com/repos/codecurious-bln/CC-website/pulls{/number}", + "milestones_url": "https://api.github.com/repos/codecurious-bln/CC-website/milestones{/number}", + "notifications_url": "https://api.github.com/repos/codecurious-bln/CC-website/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/codecurious-bln/CC-website/labels{/name}", + "releases_url": "https://api.github.com/repos/codecurious-bln/CC-website/releases{/id}", + "deployments_url": "https://api.github.com/repos/codecurious-bln/CC-website/deployments", + "created_at": "2019-09-21T10:52:14Z", + "updated_at": "2019-10-21T20:53:29Z", + "pushed_at": "2019-10-21T21:54:48Z", + "git_url": "git://github.com/codecurious-bln/CC-website.git", + "ssh_url": "git@github.com:codecurious-bln/CC-website.git", + "clone_url": "https://github.com/codecurious-bln/CC-website.git", + "svn_url": "https://github.com/codecurious-bln/CC-website", + "homepage": "https://code-curious.netlify.com", + "size": 856, + "stargazers_count": 10, + "watchers_count": 10, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 8, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 16, + "license": null, + "forks": 8, + "open_issues": 16, + "watchers": 10, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/codecurious-bln/CC-website/pulls/32" + }, + "html": { + "href": "https://github.com/codecurious-bln/CC-website/pull/32" + }, + "issue": { + "href": "https://api.github.com/repos/codecurious-bln/CC-website/issues/32" + }, + "comments": { + "href": "https://api.github.com/repos/codecurious-bln/CC-website/issues/32/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/codecurious-bln/CC-website/pulls/32/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/codecurious-bln/CC-website/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/codecurious-bln/CC-website/pulls/32/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/codecurious-bln/CC-website/statuses/aec5222f75127664e4df1aa618334663f4a0081f" + } + }, + "author_association": "NONE", + "merged": true, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": { + "login": "shushugah", + "id": 7111514, + "node_id": "MDQ6VXNlcjcxMTE1MTQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/7111514?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/shushugah", + "html_url": "https://github.com/shushugah", + "followers_url": "https://api.github.com/users/shushugah/followers", + "following_url": "https://api.github.com/users/shushugah/following{/other_user}", + "gists_url": "https://api.github.com/users/shushugah/gists{/gist_id}", + "starred_url": "https://api.github.com/users/shushugah/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/shushugah/subscriptions", + "organizations_url": "https://api.github.com/users/shushugah/orgs", + "repos_url": "https://api.github.com/users/shushugah/repos", + "events_url": "https://api.github.com/users/shushugah/events{/privacy}", + "received_events_url": "https://api.github.com/users/shushugah/received_events", + "type": "User", + "site_admin": false + }, + "comments": 2, + "review_comments": 5, + "maintainer_can_modify": false, + "commits": 1, + "additions": 32, + "deletions": 0, + "changed_files": 1 + } + }, + "public": true, + "created_at": "2019-10-21T21:54:48Z", + "org": { + "id": 2067368, + "login": "codecurious-bln", + "gravatar_id": "", + "url": "https://api.github.com/orgs/codecurious-bln", + "avatar_url": "https://avatars.githubusercontent.com/u/2067368?" + } + }, + { + "id": "10680625032", + "type": "PushEvent", + "actor": { + "id": 190297, + "login": "PiotrSikora", + "display_login": "PiotrSikora", + "gravatar_id": "", + "url": "https://api.github.com/users/PiotrSikora", + "avatar_url": "https://avatars.githubusercontent.com/u/190297?" + }, + "repo": { + "id": 185880979, + "name": "envoyproxy/envoy-wasm", + "url": "https://api.github.com/repos/envoyproxy/envoy-wasm" + }, + "payload": { + "push_id": 4176854908, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "5b4a25e4146fb31ccfa425c70843ff43bd2814c3", + "before": "4bd38639fe0332c55961505d4e091f72895b7f73", + "commits": [ + { + "sha": "5b4a25e4146fb31ccfa425c70843ff43bd2814c3", + "author": { + "email": "piotrsikora@google.com", + "name": "Piotr Sikora" + }, + "message": "Remove support for __errno_location. (#267)\n\nWe don't need it anymore. Missed in #260.\r\n\r\nSigned-off-by: Piotr Sikora ", + "distinct": true, + "url": "https://api.github.com/repos/envoyproxy/envoy-wasm/commits/5b4a25e4146fb31ccfa425c70843ff43bd2814c3" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:48Z", + "org": { + "id": 30125649, + "login": "envoyproxy", + "gravatar_id": "", + "url": "https://api.github.com/orgs/envoyproxy", + "avatar_url": "https://avatars.githubusercontent.com/u/30125649?" + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/__files/events-6f4a1d77-46f9-4f38-a260-953487c97b4f.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/__files/events-6f4a1d77-46f9-4f38-a260-953487c97b4f.json new file mode 100644 index 0000000000..da9d3d9cb1 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/__files/events-6f4a1d77-46f9-4f38-a260-953487c97b4f.json @@ -0,0 +1,2483 @@ +[ + { + "id": "10680625252", + "type": "PullRequestEvent", + "actor": { + "id": 10810283, + "login": "direwolf-github", + "display_login": "direwolf-github", + "gravatar_id": "", + "url": "https://api.github.com/users/direwolf-github", + "avatar_url": "https://avatars.githubusercontent.com/u/10810283?" + }, + "repo": { + "id": 216672326, + "name": "direwolf-github/my-app-752826ef", + "url": "https://api.github.com/repos/direwolf-github/my-app-752826ef" + }, + "payload": { + "action": "opened", + "number": 1, + "pull_request": { + "url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/pulls/1", + "id": 330711285, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzMwNzExMjg1", + "html_url": "https://github.com/direwolf-github/my-app-752826ef/pull/1", + "diff_url": "https://github.com/direwolf-github/my-app-752826ef/pull/1.diff", + "patch_url": "https://github.com/direwolf-github/my-app-752826ef/pull/1.patch", + "issue_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/issues/1", + "number": 1, + "state": "open", + "locked": false, + "title": "Direwolf review apps test branch-c7fa2a10", + "user": { + "login": "direwolf-github", + "id": 10810283, + "node_id": "MDQ6VXNlcjEwODEwMjgz", + "avatar_url": "https://avatars0.githubusercontent.com/u/10810283?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/direwolf-github", + "html_url": "https://github.com/direwolf-github", + "followers_url": "https://api.github.com/users/direwolf-github/followers", + "following_url": "https://api.github.com/users/direwolf-github/following{/other_user}", + "gists_url": "https://api.github.com/users/direwolf-github/gists{/gist_id}", + "starred_url": "https://api.github.com/users/direwolf-github/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/direwolf-github/subscriptions", + "organizations_url": "https://api.github.com/users/direwolf-github/orgs", + "repos_url": "https://api.github.com/users/direwolf-github/repos", + "events_url": "https://api.github.com/users/direwolf-github/events{/privacy}", + "received_events_url": "https://api.github.com/users/direwolf-github/received_events", + "type": "User", + "site_admin": false + }, + "body": "Direwolf review apps test branch-c7fa2a10", + "created_at": "2019-10-21T21:54:50Z", + "updated_at": "2019-10-21T21:54:50Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/pulls/1/commits", + "review_comments_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/pulls/1/comments", + "review_comment_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/issues/1/comments", + "statuses_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/statuses/a3c6c818cf13f328cdb74b9a37baa9186f215131", + "head": { + "label": "direwolf-github:branch-c7fa2a10", + "ref": "branch-c7fa2a10", + "sha": "a3c6c818cf13f328cdb74b9a37baa9186f215131", + "user": { + "login": "direwolf-github", + "id": 10810283, + "node_id": "MDQ6VXNlcjEwODEwMjgz", + "avatar_url": "https://avatars0.githubusercontent.com/u/10810283?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/direwolf-github", + "html_url": "https://github.com/direwolf-github", + "followers_url": "https://api.github.com/users/direwolf-github/followers", + "following_url": "https://api.github.com/users/direwolf-github/following{/other_user}", + "gists_url": "https://api.github.com/users/direwolf-github/gists{/gist_id}", + "starred_url": "https://api.github.com/users/direwolf-github/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/direwolf-github/subscriptions", + "organizations_url": "https://api.github.com/users/direwolf-github/orgs", + "repos_url": "https://api.github.com/users/direwolf-github/repos", + "events_url": "https://api.github.com/users/direwolf-github/events{/privacy}", + "received_events_url": "https://api.github.com/users/direwolf-github/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 216672326, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTY2NzIzMjY=", + "name": "my-app-752826ef", + "full_name": "direwolf-github/my-app-752826ef", + "private": false, + "owner": { + "login": "direwolf-github", + "id": 10810283, + "node_id": "MDQ6VXNlcjEwODEwMjgz", + "avatar_url": "https://avatars0.githubusercontent.com/u/10810283?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/direwolf-github", + "html_url": "https://github.com/direwolf-github", + "followers_url": "https://api.github.com/users/direwolf-github/followers", + "following_url": "https://api.github.com/users/direwolf-github/following{/other_user}", + "gists_url": "https://api.github.com/users/direwolf-github/gists{/gist_id}", + "starred_url": "https://api.github.com/users/direwolf-github/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/direwolf-github/subscriptions", + "organizations_url": "https://api.github.com/users/direwolf-github/orgs", + "repos_url": "https://api.github.com/users/direwolf-github/repos", + "events_url": "https://api.github.com/users/direwolf-github/events{/privacy}", + "received_events_url": "https://api.github.com/users/direwolf-github/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/direwolf-github/my-app-752826ef", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/direwolf-github/my-app-752826ef", + "forks_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/forks", + "keys_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/teams", + "hooks_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/hooks", + "issue_events_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/issues/events{/number}", + "events_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/events", + "assignees_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/assignees{/user}", + "branches_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/branches{/branch}", + "tags_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/tags", + "blobs_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/statuses/{sha}", + "languages_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/languages", + "stargazers_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/stargazers", + "contributors_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/contributors", + "subscribers_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/subscribers", + "subscription_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/subscription", + "commits_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/contents/{+path}", + "compare_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/merges", + "archive_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/downloads", + "issues_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/issues{/number}", + "pulls_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/pulls{/number}", + "milestones_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/milestones{/number}", + "notifications_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/labels{/name}", + "releases_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/releases{/id}", + "deployments_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/deployments", + "created_at": "2019-10-21T21:54:44Z", + "updated_at": "2019-10-21T21:54:47Z", + "pushed_at": "2019-10-21T21:54:50Z", + "git_url": "git://github.com/direwolf-github/my-app-752826ef.git", + "ssh_url": "git@github.com:direwolf-github/my-app-752826ef.git", + "clone_url": "https://github.com/direwolf-github/my-app-752826ef.git", + "svn_url": "https://github.com/direwolf-github/my-app-752826ef", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "direwolf-github:master", + "ref": "master", + "sha": "18395ef48a32eec03d7631dd1750aa3d81fd1fa2", + "user": { + "login": "direwolf-github", + "id": 10810283, + "node_id": "MDQ6VXNlcjEwODEwMjgz", + "avatar_url": "https://avatars0.githubusercontent.com/u/10810283?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/direwolf-github", + "html_url": "https://github.com/direwolf-github", + "followers_url": "https://api.github.com/users/direwolf-github/followers", + "following_url": "https://api.github.com/users/direwolf-github/following{/other_user}", + "gists_url": "https://api.github.com/users/direwolf-github/gists{/gist_id}", + "starred_url": "https://api.github.com/users/direwolf-github/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/direwolf-github/subscriptions", + "organizations_url": "https://api.github.com/users/direwolf-github/orgs", + "repos_url": "https://api.github.com/users/direwolf-github/repos", + "events_url": "https://api.github.com/users/direwolf-github/events{/privacy}", + "received_events_url": "https://api.github.com/users/direwolf-github/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 216672326, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTY2NzIzMjY=", + "name": "my-app-752826ef", + "full_name": "direwolf-github/my-app-752826ef", + "private": false, + "owner": { + "login": "direwolf-github", + "id": 10810283, + "node_id": "MDQ6VXNlcjEwODEwMjgz", + "avatar_url": "https://avatars0.githubusercontent.com/u/10810283?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/direwolf-github", + "html_url": "https://github.com/direwolf-github", + "followers_url": "https://api.github.com/users/direwolf-github/followers", + "following_url": "https://api.github.com/users/direwolf-github/following{/other_user}", + "gists_url": "https://api.github.com/users/direwolf-github/gists{/gist_id}", + "starred_url": "https://api.github.com/users/direwolf-github/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/direwolf-github/subscriptions", + "organizations_url": "https://api.github.com/users/direwolf-github/orgs", + "repos_url": "https://api.github.com/users/direwolf-github/repos", + "events_url": "https://api.github.com/users/direwolf-github/events{/privacy}", + "received_events_url": "https://api.github.com/users/direwolf-github/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/direwolf-github/my-app-752826ef", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/direwolf-github/my-app-752826ef", + "forks_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/forks", + "keys_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/teams", + "hooks_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/hooks", + "issue_events_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/issues/events{/number}", + "events_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/events", + "assignees_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/assignees{/user}", + "branches_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/branches{/branch}", + "tags_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/tags", + "blobs_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/statuses/{sha}", + "languages_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/languages", + "stargazers_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/stargazers", + "contributors_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/contributors", + "subscribers_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/subscribers", + "subscription_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/subscription", + "commits_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/contents/{+path}", + "compare_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/merges", + "archive_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/downloads", + "issues_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/issues{/number}", + "pulls_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/pulls{/number}", + "milestones_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/milestones{/number}", + "notifications_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/labels{/name}", + "releases_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/releases{/id}", + "deployments_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/deployments", + "created_at": "2019-10-21T21:54:44Z", + "updated_at": "2019-10-21T21:54:47Z", + "pushed_at": "2019-10-21T21:54:50Z", + "git_url": "git://github.com/direwolf-github/my-app-752826ef.git", + "ssh_url": "git@github.com:direwolf-github/my-app-752826ef.git", + "clone_url": "https://github.com/direwolf-github/my-app-752826ef.git", + "svn_url": "https://github.com/direwolf-github/my-app-752826ef", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/direwolf-github/my-app-752826ef/pulls/1" + }, + "html": { + "href": "https://github.com/direwolf-github/my-app-752826ef/pull/1" + }, + "issue": { + "href": "https://api.github.com/repos/direwolf-github/my-app-752826ef/issues/1" + }, + "comments": { + "href": "https://api.github.com/repos/direwolf-github/my-app-752826ef/issues/1/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/direwolf-github/my-app-752826ef/pulls/1/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/direwolf-github/my-app-752826ef/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/direwolf-github/my-app-752826ef/pulls/1/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/direwolf-github/my-app-752826ef/statuses/a3c6c818cf13f328cdb74b9a37baa9186f215131" + } + }, + "author_association": "OWNER", + "merged": false, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 1, + "deletions": 0, + "changed_files": 1 + } + }, + "public": true, + "created_at": "2019-10-21T21:54:51Z" + }, + { + "id": "10680625241", + "type": "PushEvent", + "actor": { + "id": 9728851, + "login": "adferrand", + "display_login": "adferrand", + "gravatar_id": "", + "url": "https://api.github.com/users/adferrand", + "avatar_url": "https://avatars.githubusercontent.com/u/9728851?" + }, + "repo": { + "id": 144460400, + "name": "adferrand/certbot", + "url": "https://api.github.com/repos/adferrand/certbot" + }, + "payload": { + "push_id": 4176855009, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/centos6-migrate-python36", + "head": "84646a918ee0684e5167a586ec3155f79f6bfe1f", + "before": "5d422eb82c2cf92a04e54fcfd3dcd441bceac5e0", + "commits": [ + { + "sha": "84646a918ee0684e5167a586ec3155f79f6bfe1f", + "author": { + "email": "ferrand.ad@gmail.com", + "name": "Adrien Ferrand" + }, + "message": "Fix test message", + "distinct": true, + "url": "https://api.github.com/repos/adferrand/certbot/commits/84646a918ee0684e5167a586ec3155f79f6bfe1f" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:50Z" + }, + { + "id": "10680625233", + "type": "IssuesEvent", + "actor": { + "id": 37864982, + "login": "iamthannos", + "display_login": "iamthannos", + "gravatar_id": "", + "url": "https://api.github.com/users/iamthannos", + "avatar_url": "https://avatars.githubusercontent.com/u/37864982?" + }, + "repo": { + "id": 149494920, + "name": "Scaleskope-Ind/Org_Apic_Auto_Repo", + "url": "https://api.github.com/repos/Scaleskope-Ind/Org_Apic_Auto_Repo" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/Scaleskope-Ind/Org_Apic_Auto_Repo/issues/490", + "repository_url": "https://api.github.com/repos/Scaleskope-Ind/Org_Apic_Auto_Repo", + "labels_url": "https://api.github.com/repos/Scaleskope-Ind/Org_Apic_Auto_Repo/issues/490/labels{/name}", + "comments_url": "https://api.github.com/repos/Scaleskope-Ind/Org_Apic_Auto_Repo/issues/490/comments", + "events_url": "https://api.github.com/repos/Scaleskope-Ind/Org_Apic_Auto_Repo/issues/490/events", + "html_url": "https://github.com/Scaleskope-Ind/Org_Apic_Auto_Repo/issues/490", + "id": 510315285, + "node_id": "MDU6SXNzdWU1MTAzMTUyODU=", + "number": 490, + "title": "Found a bug - 1571694889", + "user": { + "login": "iamthannos", + "id": 37864982, + "node_id": "MDQ6VXNlcjM3ODY0OTgy", + "avatar_url": "https://avatars1.githubusercontent.com/u/37864982?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/iamthannos", + "html_url": "https://github.com/iamthannos", + "followers_url": "https://api.github.com/users/iamthannos/followers", + "following_url": "https://api.github.com/users/iamthannos/following{/other_user}", + "gists_url": "https://api.github.com/users/iamthannos/gists{/gist_id}", + "starred_url": "https://api.github.com/users/iamthannos/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/iamthannos/subscriptions", + "organizations_url": "https://api.github.com/users/iamthannos/orgs", + "repos_url": "https://api.github.com/users/iamthannos/repos", + "events_url": "https://api.github.com/users/iamthannos/events{/privacy}", + "received_events_url": "https://api.github.com/users/iamthannos/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-10-21T21:54:50Z", + "updated_at": "2019-10-21T21:54:50Z", + "closed_at": null, + "author_association": "CONTRIBUTOR", + "body": "I'm having a problem with this." + } + }, + "public": true, + "created_at": "2019-10-21T21:54:50Z", + "org": { + "id": 37864994, + "login": "Scaleskope-Ind", + "gravatar_id": "", + "url": "https://api.github.com/orgs/Scaleskope-Ind", + "avatar_url": "https://avatars.githubusercontent.com/u/37864994?" + } + }, + { + "id": "10680625236", + "type": "IssuesEvent", + "actor": { + "id": 6785733, + "login": "Arametheus", + "display_login": "Arametheus", + "gravatar_id": "", + "url": "https://api.github.com/users/Arametheus", + "avatar_url": "https://avatars.githubusercontent.com/u/6785733?" + }, + "repo": { + "id": 211002651, + "name": "ahmedsaoud31/laravel-permission-to-vuejs", + "url": "https://api.github.com/repos/ahmedsaoud31/laravel-permission-to-vuejs" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/ahmedsaoud31/laravel-permission-to-vuejs/issues/1", + "repository_url": "https://api.github.com/repos/ahmedsaoud31/laravel-permission-to-vuejs", + "labels_url": "https://api.github.com/repos/ahmedsaoud31/laravel-permission-to-vuejs/issues/1/labels{/name}", + "comments_url": "https://api.github.com/repos/ahmedsaoud31/laravel-permission-to-vuejs/issues/1/comments", + "events_url": "https://api.github.com/repos/ahmedsaoud31/laravel-permission-to-vuejs/issues/1/events", + "html_url": "https://github.com/ahmedsaoud31/laravel-permission-to-vuejs/issues/1", + "id": 510315288, + "node_id": "MDU6SXNzdWU1MTAzMTUyODg=", + "number": 1, + "title": "can you update this for \"spatie/laravel-permission\": \"^3.2\"", + "user": { + "login": "Arametheus", + "id": 6785733, + "node_id": "MDQ6VXNlcjY3ODU3MzM=", + "avatar_url": "https://avatars1.githubusercontent.com/u/6785733?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Arametheus", + "html_url": "https://github.com/Arametheus", + "followers_url": "https://api.github.com/users/Arametheus/followers", + "following_url": "https://api.github.com/users/Arametheus/following{/other_user}", + "gists_url": "https://api.github.com/users/Arametheus/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Arametheus/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Arametheus/subscriptions", + "organizations_url": "https://api.github.com/users/Arametheus/orgs", + "repos_url": "https://api.github.com/users/Arametheus/repos", + "events_url": "https://api.github.com/users/Arametheus/events{/privacy}", + "received_events_url": "https://api.github.com/users/Arametheus/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-10-21T21:54:50Z", + "updated_at": "2019-10-21T21:54:50Z", + "closed_at": null, + "author_association": "NONE", + "body": "so I have the newest laravel-permission but yours is erroring \r\nProblem 1\r\n - Can only install one of: spatie/laravel-permission[v2.x-dev, 3.2.0].\r\n - Can only install one of: spatie/laravel-permission[v2.x-dev, 3.2.0].\r\n - Can only install one of: spatie/laravel-permission[v2.x-dev, 3.2.0].\r\n - ahmedsaoud31/laravel-permission-to-vuejs dev-master requires spatie/laravel-permission ^2.0 -> satisfiable by spatie/laravel-permission[v2.x-dev].\r\n - Installation request for ahmedsaoud31/laravel-permission-to-vuejs dev-master -> satisfiable by ahmedsaoud31/laravel-permission-to-vuejs[dev-master].\r\n - Installation request for spatie/laravel-permission ^3.2 -> satisfiable by spatie/laravel-permission[3.2.0].\r\n\r\nThank you" + } + }, + "public": true, + "created_at": "2019-10-21T21:54:50Z" + }, + { + "id": "10680625237", + "type": "CreateEvent", + "actor": { + "id": 49699333, + "login": "dependabot[bot]", + "display_login": "dependabot", + "gravatar_id": "", + "url": "https://api.github.com/users/dependabot[bot]", + "avatar_url": "https://avatars.githubusercontent.com/u/49699333?" + }, + "repo": { + "id": 209932221, + "name": "liuzhuzhu/lzz-gulimall", + "url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall" + }, + "payload": { + "ref": "dependabot/maven/gulimall-admin/commons-fileupload-commons-fileupload-1.3.3", + "ref_type": "branch", + "master_branch": "master", + "description": "第四次 不再是一个maven工程", + "pusher_type": "user" + }, + "public": true, + "created_at": "2019-10-21T21:54:50Z" + }, + { + "id": "10680625234", + "type": "PushEvent", + "actor": { + "id": 38665693, + "login": "enricobuehler", + "display_login": "enricobuehler", + "gravatar_id": "", + "url": "https://api.github.com/users/enricobuehler", + "avatar_url": "https://avatars.githubusercontent.com/u/38665693?" + }, + "repo": { + "id": 215888316, + "name": "Schriftlage/onlyyou", + "url": "https://api.github.com/repos/Schriftlage/onlyyou" + }, + "payload": { + "push_id": 4176855005, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/next", + "head": "0a47924a50ba3b06f9e3acd968887fa7b5286200", + "before": "605c32247bfa9e97de3809230e1e574b25e542ba", + "commits": [ + { + "sha": "0a47924a50ba3b06f9e3acd968887fa7b5286200", + "author": { + "email": "privat@enricobuehler.de", + "name": "Enrico Bühler" + }, + "message": "0.2.5b", + "distinct": true, + "url": "https://api.github.com/repos/Schriftlage/onlyyou/commits/0a47924a50ba3b06f9e3acd968887fa7b5286200" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:50Z", + "org": { + "id": 46821218, + "login": "Schriftlage", + "gravatar_id": "", + "url": "https://api.github.com/orgs/Schriftlage", + "avatar_url": "https://avatars.githubusercontent.com/u/46821218?" + } + }, + { + "id": "10680625229", + "type": "PushEvent", + "actor": { + "id": 55193487, + "login": "shaunmcpherson", + "display_login": "shaunmcpherson", + "gravatar_id": "", + "url": "https://api.github.com/users/shaunmcpherson", + "avatar_url": "https://avatars.githubusercontent.com/u/55193487?" + }, + "repo": { + "id": 216647551, + "name": "shaunmcpherson/button-styles", + "url": "https://api.github.com/repos/shaunmcpherson/button-styles" + }, + "payload": { + "push_id": 4176855001, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/gh-pages", + "head": "bfbc4994d4dd2f7a40e7eea472b950c995a3195f", + "before": "a4ba2506f11456fefed3d2eddf94ff5f28a41b5c", + "commits": [ + { + "sha": "bfbc4994d4dd2f7a40e7eea472b950c995a3195f", + "author": { + "email": "shaunmcpherson@Shauns-MacBook-Pro.local", + "name": "Shaun" + }, + "message": "Change the ghost button line height", + "distinct": true, + "url": "https://api.github.com/repos/shaunmcpherson/button-styles/commits/bfbc4994d4dd2f7a40e7eea472b950c995a3195f" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:50Z" + }, + { + "id": "10680625226", + "type": "PushEvent", + "actor": { + "id": 18013175, + "login": "Quiqui64", + "display_login": "Quiqui64", + "gravatar_id": "", + "url": "https://api.github.com/users/Quiqui64", + "avatar_url": "https://avatars.githubusercontent.com/u/18013175?" + }, + "repo": { + "id": 216669904, + "name": "Quiqui64/HubitatFanRemote", + "url": "https://api.github.com/repos/Quiqui64/HubitatFanRemote" + }, + "payload": { + "push_id": 4176854995, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "dde922c2123a85ff1ff593fdb2c5e235d1a26a77", + "before": "92c78290f141c614d27c4b5d2ad3041ceb6b360c", + "commits": [ + { + "sha": "dde922c2123a85ff1ff593fdb2c5e235d1a26a77", + "author": { + "email": "vq1qa@hotmail.com", + "name": "Quiqui64" + }, + "message": "Update README.md", + "distinct": true, + "url": "https://api.github.com/repos/Quiqui64/HubitatFanRemote/commits/dde922c2123a85ff1ff593fdb2c5e235d1a26a77" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:50Z" + }, + { + "id": "10680625228", + "type": "PullRequestEvent", + "actor": { + "id": 1996564, + "login": "DeBuchie", + "display_login": "DeBuchie", + "gravatar_id": "", + "url": "https://api.github.com/users/DeBuchie", + "avatar_url": "https://avatars.githubusercontent.com/u/1996564?" + }, + "repo": { + "id": 216437191, + "name": "DeBuchie/enkovortraege-frontend", + "url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend" + }, + "payload": { + "action": "closed", + "number": 10, + "pull_request": { + "url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/pulls/10", + "id": 330711248, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzMwNzExMjQ4", + "html_url": "https://github.com/DeBuchie/enkovortraege-frontend/pull/10", + "diff_url": "https://github.com/DeBuchie/enkovortraege-frontend/pull/10.diff", + "patch_url": "https://github.com/DeBuchie/enkovortraege-frontend/pull/10.patch", + "issue_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/issues/10", + "number": 10, + "state": "closed", + "locked": false, + "title": "Added Create Vortrag Effect Demo", + "user": { + "login": "DeBuchie", + "id": 1996564, + "node_id": "MDQ6VXNlcjE5OTY1NjQ=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1996564?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/DeBuchie", + "html_url": "https://github.com/DeBuchie", + "followers_url": "https://api.github.com/users/DeBuchie/followers", + "following_url": "https://api.github.com/users/DeBuchie/following{/other_user}", + "gists_url": "https://api.github.com/users/DeBuchie/gists{/gist_id}", + "starred_url": "https://api.github.com/users/DeBuchie/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/DeBuchie/subscriptions", + "organizations_url": "https://api.github.com/users/DeBuchie/orgs", + "repos_url": "https://api.github.com/users/DeBuchie/repos", + "events_url": "https://api.github.com/users/DeBuchie/events{/privacy}", + "received_events_url": "https://api.github.com/users/DeBuchie/received_events", + "type": "User", + "site_admin": false + }, + "body": "", + "created_at": "2019-10-21T21:54:43Z", + "updated_at": "2019-10-21T21:54:50Z", + "closed_at": "2019-10-21T21:54:50Z", + "merged_at": "2019-10-21T21:54:50Z", + "merge_commit_sha": "077fb6369088fc334fde4cad3b4443cfd3b6546c", + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/pulls/10/commits", + "review_comments_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/pulls/10/comments", + "review_comment_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/issues/10/comments", + "statuses_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/statuses/85e487b88d48c608c9535cd8ed7615cbdfae6617", + "head": { + "label": "DeBuchie:create_Vortrag_Effect", + "ref": "create_Vortrag_Effect", + "sha": "85e487b88d48c608c9535cd8ed7615cbdfae6617", + "user": { + "login": "DeBuchie", + "id": 1996564, + "node_id": "MDQ6VXNlcjE5OTY1NjQ=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1996564?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/DeBuchie", + "html_url": "https://github.com/DeBuchie", + "followers_url": "https://api.github.com/users/DeBuchie/followers", + "following_url": "https://api.github.com/users/DeBuchie/following{/other_user}", + "gists_url": "https://api.github.com/users/DeBuchie/gists{/gist_id}", + "starred_url": "https://api.github.com/users/DeBuchie/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/DeBuchie/subscriptions", + "organizations_url": "https://api.github.com/users/DeBuchie/orgs", + "repos_url": "https://api.github.com/users/DeBuchie/repos", + "events_url": "https://api.github.com/users/DeBuchie/events{/privacy}", + "received_events_url": "https://api.github.com/users/DeBuchie/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 216437191, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTY0MzcxOTE=", + "name": "enkovortraege-frontend", + "full_name": "DeBuchie/enkovortraege-frontend", + "private": false, + "owner": { + "login": "DeBuchie", + "id": 1996564, + "node_id": "MDQ6VXNlcjE5OTY1NjQ=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1996564?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/DeBuchie", + "html_url": "https://github.com/DeBuchie", + "followers_url": "https://api.github.com/users/DeBuchie/followers", + "following_url": "https://api.github.com/users/DeBuchie/following{/other_user}", + "gists_url": "https://api.github.com/users/DeBuchie/gists{/gist_id}", + "starred_url": "https://api.github.com/users/DeBuchie/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/DeBuchie/subscriptions", + "organizations_url": "https://api.github.com/users/DeBuchie/orgs", + "repos_url": "https://api.github.com/users/DeBuchie/repos", + "events_url": "https://api.github.com/users/DeBuchie/events{/privacy}", + "received_events_url": "https://api.github.com/users/DeBuchie/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/DeBuchie/enkovortraege-frontend", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend", + "forks_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/forks", + "keys_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/teams", + "hooks_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/hooks", + "issue_events_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/issues/events{/number}", + "events_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/events", + "assignees_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/assignees{/user}", + "branches_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/branches{/branch}", + "tags_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/tags", + "blobs_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/statuses/{sha}", + "languages_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/languages", + "stargazers_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/stargazers", + "contributors_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/contributors", + "subscribers_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/subscribers", + "subscription_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/subscription", + "commits_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/contents/{+path}", + "compare_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/merges", + "archive_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/downloads", + "issues_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/issues{/number}", + "pulls_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/pulls{/number}", + "milestones_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/milestones{/number}", + "notifications_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/labels{/name}", + "releases_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/releases{/id}", + "deployments_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/deployments", + "created_at": "2019-10-20T22:43:24Z", + "updated_at": "2019-10-21T06:51:26Z", + "pushed_at": "2019-10-21T21:54:50Z", + "git_url": "git://github.com/DeBuchie/enkovortraege-frontend.git", + "ssh_url": "git@github.com:DeBuchie/enkovortraege-frontend.git", + "clone_url": "https://github.com/DeBuchie/enkovortraege-frontend.git", + "svn_url": "https://github.com/DeBuchie/enkovortraege-frontend", + "homepage": null, + "size": 2275, + "stargazers_count": 0, + "watchers_count": 0, + "language": "TypeScript", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "DeBuchie:master", + "ref": "master", + "sha": "087f5d8dc690e9c2ba31340bd04382d8648b9e66", + "user": { + "login": "DeBuchie", + "id": 1996564, + "node_id": "MDQ6VXNlcjE5OTY1NjQ=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1996564?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/DeBuchie", + "html_url": "https://github.com/DeBuchie", + "followers_url": "https://api.github.com/users/DeBuchie/followers", + "following_url": "https://api.github.com/users/DeBuchie/following{/other_user}", + "gists_url": "https://api.github.com/users/DeBuchie/gists{/gist_id}", + "starred_url": "https://api.github.com/users/DeBuchie/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/DeBuchie/subscriptions", + "organizations_url": "https://api.github.com/users/DeBuchie/orgs", + "repos_url": "https://api.github.com/users/DeBuchie/repos", + "events_url": "https://api.github.com/users/DeBuchie/events{/privacy}", + "received_events_url": "https://api.github.com/users/DeBuchie/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 216437191, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTY0MzcxOTE=", + "name": "enkovortraege-frontend", + "full_name": "DeBuchie/enkovortraege-frontend", + "private": false, + "owner": { + "login": "DeBuchie", + "id": 1996564, + "node_id": "MDQ6VXNlcjE5OTY1NjQ=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1996564?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/DeBuchie", + "html_url": "https://github.com/DeBuchie", + "followers_url": "https://api.github.com/users/DeBuchie/followers", + "following_url": "https://api.github.com/users/DeBuchie/following{/other_user}", + "gists_url": "https://api.github.com/users/DeBuchie/gists{/gist_id}", + "starred_url": "https://api.github.com/users/DeBuchie/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/DeBuchie/subscriptions", + "organizations_url": "https://api.github.com/users/DeBuchie/orgs", + "repos_url": "https://api.github.com/users/DeBuchie/repos", + "events_url": "https://api.github.com/users/DeBuchie/events{/privacy}", + "received_events_url": "https://api.github.com/users/DeBuchie/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/DeBuchie/enkovortraege-frontend", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend", + "forks_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/forks", + "keys_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/teams", + "hooks_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/hooks", + "issue_events_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/issues/events{/number}", + "events_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/events", + "assignees_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/assignees{/user}", + "branches_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/branches{/branch}", + "tags_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/tags", + "blobs_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/statuses/{sha}", + "languages_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/languages", + "stargazers_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/stargazers", + "contributors_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/contributors", + "subscribers_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/subscribers", + "subscription_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/subscription", + "commits_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/contents/{+path}", + "compare_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/merges", + "archive_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/downloads", + "issues_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/issues{/number}", + "pulls_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/pulls{/number}", + "milestones_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/milestones{/number}", + "notifications_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/labels{/name}", + "releases_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/releases{/id}", + "deployments_url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/deployments", + "created_at": "2019-10-20T22:43:24Z", + "updated_at": "2019-10-21T06:51:26Z", + "pushed_at": "2019-10-21T21:54:50Z", + "git_url": "git://github.com/DeBuchie/enkovortraege-frontend.git", + "ssh_url": "git@github.com:DeBuchie/enkovortraege-frontend.git", + "clone_url": "https://github.com/DeBuchie/enkovortraege-frontend.git", + "svn_url": "https://github.com/DeBuchie/enkovortraege-frontend", + "homepage": null, + "size": 2275, + "stargazers_count": 0, + "watchers_count": 0, + "language": "TypeScript", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/pulls/10" + }, + "html": { + "href": "https://github.com/DeBuchie/enkovortraege-frontend/pull/10" + }, + "issue": { + "href": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/issues/10" + }, + "comments": { + "href": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/issues/10/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/pulls/10/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/pulls/10/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/statuses/85e487b88d48c608c9535cd8ed7615cbdfae6617" + } + }, + "author_association": "OWNER", + "merged": true, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": { + "login": "DeBuchie", + "id": 1996564, + "node_id": "MDQ6VXNlcjE5OTY1NjQ=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1996564?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/DeBuchie", + "html_url": "https://github.com/DeBuchie", + "followers_url": "https://api.github.com/users/DeBuchie/followers", + "following_url": "https://api.github.com/users/DeBuchie/following{/other_user}", + "gists_url": "https://api.github.com/users/DeBuchie/gists{/gist_id}", + "starred_url": "https://api.github.com/users/DeBuchie/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/DeBuchie/subscriptions", + "organizations_url": "https://api.github.com/users/DeBuchie/orgs", + "repos_url": "https://api.github.com/users/DeBuchie/repos", + "events_url": "https://api.github.com/users/DeBuchie/events{/privacy}", + "received_events_url": "https://api.github.com/users/DeBuchie/received_events", + "type": "User", + "site_admin": false + }, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 56, + "deletions": 4, + "changed_files": 6 + } + }, + "public": true, + "created_at": "2019-10-21T21:54:50Z" + }, + { + "id": "10680625224", + "type": "PushEvent", + "actor": { + "id": 47527659, + "login": "mevgamer", + "display_login": "mevgamer", + "gravatar_id": "", + "url": "https://api.github.com/users/mevgamer", + "avatar_url": "https://avatars.githubusercontent.com/u/47527659?" + }, + "repo": { + "id": 203684700, + "name": "mevgamer/POO", + "url": "https://api.github.com/repos/mevgamer/POO" + }, + "payload": { + "push_id": 4176854998, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "cb7fabdb5a14b78a3ee05cde9032cdae0c7fb473", + "before": "c399ac1645b55107ac4fff9a53116619e53200ff", + "commits": [ + { + "sha": "cb7fabdb5a14b78a3ee05cde9032cdae0c7fb473", + "author": { + "email": "47527659+mevgamer@users.noreply.github.com", + "name": "mevgamer" + }, + "message": "aula", + "distinct": true, + "url": "https://api.github.com/repos/mevgamer/POO/commits/cb7fabdb5a14b78a3ee05cde9032cdae0c7fb473" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:50Z" + }, + { + "id": "10680625223", + "type": "CreateEvent", + "actor": { + "id": 42206314, + "login": "jchaconv", + "display_login": "jchaconv", + "gravatar_id": "", + "url": "https://api.github.com/users/jchaconv", + "avatar_url": "https://avatars.githubusercontent.com/u/42206314?" + }, + "repo": { + "id": 216672337, + "name": "jchaconv/spring-boot-microservices", + "url": "https://api.github.com/repos/jchaconv/spring-boot-microservices" + }, + "payload": { + "ref": "master", + "ref_type": "branch", + "master_branch": "master", + "description": "Repository for the course Spring Boot Microservices with Spring Cloud Beginner to Guru", + "pusher_type": "user" + }, + "public": true, + "created_at": "2019-10-21T21:54:50Z" + }, + { + "id": "10680625211", + "type": "PushEvent", + "actor": { + "id": 54225959, + "login": "hdp2112", + "display_login": "hdp2112", + "gravatar_id": "", + "url": "https://api.github.com/users/hdp2112", + "avatar_url": "https://avatars.githubusercontent.com/u/54225959?" + }, + "repo": { + "id": 215460211, + "name": "hdp2112/ruby-enumerables-reverse-each-word-lab-nyc-web-102819", + "url": "https://api.github.com/repos/hdp2112/ruby-enumerables-reverse-each-word-lab-nyc-web-102819" + }, + "payload": { + "push_id": 4176854990, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/wip", + "head": "fe4243ccc9d12bc2f1b85808d89e01969330948f", + "before": "71b27545ce043b929aa4ebc6a9d4bd8cdbb40a7e", + "commits": [ + { + "sha": "fe4243ccc9d12bc2f1b85808d89e01969330948f", + "author": { + "email": "hdp2112@columbia.edu", + "name": "Hector Polanco" + }, + "message": "Automatically backed up by Learn", + "distinct": true, + "url": "https://api.github.com/repos/hdp2112/ruby-enumerables-reverse-each-word-lab-nyc-web-102819/commits/fe4243ccc9d12bc2f1b85808d89e01969330948f" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:50Z" + }, + { + "id": "10680625208", + "type": "IssueCommentEvent", + "actor": { + "id": 36771401, + "login": "azure-pipelines[bot]", + "display_login": "azure-pipelines", + "gravatar_id": "", + "url": "https://api.github.com/users/azure-pipelines[bot]", + "avatar_url": "https://avatars.githubusercontent.com/u/36771401?" + }, + "repo": { + "id": 2928948, + "name": "Azure/azure-sdk-for-java", + "url": "https://api.github.com/repos/Azure/azure-sdk-for-java" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/Azure/azure-sdk-for-java/issues/5958", + "repository_url": "https://api.github.com/repos/Azure/azure-sdk-for-java", + "labels_url": "https://api.github.com/repos/Azure/azure-sdk-for-java/issues/5958/labels{/name}", + "comments_url": "https://api.github.com/repos/Azure/azure-sdk-for-java/issues/5958/comments", + "events_url": "https://api.github.com/repos/Azure/azure-sdk-for-java/issues/5958/events", + "html_url": "https://github.com/Azure/azure-sdk-for-java/pull/5958", + "id": 509999496, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzMwNDM2MDE1", + "number": 5958, + "title": "Versions in java files", + "user": { + "login": "JimSuplizio", + "id": 13556087, + "node_id": "MDQ6VXNlcjEzNTU2MDg3", + "avatar_url": "https://avatars3.githubusercontent.com/u/13556087?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/JimSuplizio", + "html_url": "https://github.com/JimSuplizio", + "followers_url": "https://api.github.com/users/JimSuplizio/followers", + "following_url": "https://api.github.com/users/JimSuplizio/following{/other_user}", + "gists_url": "https://api.github.com/users/JimSuplizio/gists{/gist_id}", + "starred_url": "https://api.github.com/users/JimSuplizio/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/JimSuplizio/subscriptions", + "organizations_url": "https://api.github.com/users/JimSuplizio/orgs", + "repos_url": "https://api.github.com/users/JimSuplizio/repos", + "events_url": "https://api.github.com/users/JimSuplizio/events{/privacy}", + "received_events_url": "https://api.github.com/users/JimSuplizio/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 13, + "created_at": "2019-10-21T14:27:12Z", + "updated_at": "2019-10-21T21:54:50Z", + "closed_at": null, + "author_association": "MEMBER", + "pull_request": { + "url": "https://api.github.com/repos/Azure/azure-sdk-for-java/pulls/5958", + "html_url": "https://github.com/Azure/azure-sdk-for-java/pull/5958", + "diff_url": "https://github.com/Azure/azure-sdk-for-java/pull/5958.diff", + "patch_url": "https://github.com/Azure/azure-sdk-for-java/pull/5958.patch" + }, + "body": "This is the same as the previous PR that was cancelled on Friday due to the DevOps pipeline being down." + }, + "comment": { + "url": "https://api.github.com/repos/Azure/azure-sdk-for-java/issues/comments/544724574", + "html_url": "https://github.com/Azure/azure-sdk-for-java/pull/5958#issuecomment-544724574", + "issue_url": "https://api.github.com/repos/Azure/azure-sdk-for-java/issues/5958", + "id": 544724574, + "node_id": "MDEyOklzc3VlQ29tbWVudDU0NDcyNDU3NA==", + "user": { + "login": "azure-pipelines[bot]", + "id": 36771401, + "node_id": "MDM6Qm90MzY3NzE0MDE=", + "avatar_url": "https://avatars3.githubusercontent.com/in/9426?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/azure-pipelines%5Bbot%5D", + "html_url": "https://github.com/apps/azure-pipelines", + "followers_url": "https://api.github.com/users/azure-pipelines%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/azure-pipelines%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/azure-pipelines%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/azure-pipelines%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/azure-pipelines%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/azure-pipelines%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/azure-pipelines%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/azure-pipelines%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/azure-pipelines%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "created_at": "2019-10-21T21:54:50Z", + "updated_at": "2019-10-21T21:54:50Z", + "author_association": "NONE", + "body": "\nAzure Pipelines successfully started running 1 pipeline(s).
        \r\n\n
        " + } + }, + "public": true, + "created_at": "2019-10-21T21:54:50Z", + "org": { + "id": 6844498, + "login": "Azure", + "gravatar_id": "", + "url": "https://api.github.com/orgs/Azure", + "avatar_url": "https://avatars.githubusercontent.com/u/6844498?" + } + }, + { + "id": "10680625200", + "type": "PullRequestEvent", + "actor": { + "id": 32246571, + "login": "SarvagyaGupta", + "display_login": "SarvagyaGupta", + "gravatar_id": "", + "url": "https://api.github.com/users/SarvagyaGupta", + "avatar_url": "https://avatars.githubusercontent.com/u/32246571?" + }, + "repo": { + "id": 213764765, + "name": "SarvagyaGupta/uwimg", + "url": "https://api.github.com/repos/SarvagyaGupta/uwimg" + }, + "payload": { + "action": "closed", + "number": 4, + "pull_request": { + "url": "https://api.github.com/repos/SarvagyaGupta/uwimg/pulls/4", + "id": 330711224, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzMwNzExMjI0", + "html_url": "https://github.com/SarvagyaGupta/uwimg/pull/4", + "diff_url": "https://github.com/SarvagyaGupta/uwimg/pull/4.diff", + "patch_url": "https://github.com/SarvagyaGupta/uwimg/pull/4.patch", + "issue_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/issues/4", + "number": 4, + "state": "closed", + "locked": false, + "title": "HW1 python script changed", + "user": { + "login": "SarvagyaGupta", + "id": 32246571, + "node_id": "MDQ6VXNlcjMyMjQ2NTcx", + "avatar_url": "https://avatars0.githubusercontent.com/u/32246571?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/SarvagyaGupta", + "html_url": "https://github.com/SarvagyaGupta", + "followers_url": "https://api.github.com/users/SarvagyaGupta/followers", + "following_url": "https://api.github.com/users/SarvagyaGupta/following{/other_user}", + "gists_url": "https://api.github.com/users/SarvagyaGupta/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SarvagyaGupta/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SarvagyaGupta/subscriptions", + "organizations_url": "https://api.github.com/users/SarvagyaGupta/orgs", + "repos_url": "https://api.github.com/users/SarvagyaGupta/repos", + "events_url": "https://api.github.com/users/SarvagyaGupta/events{/privacy}", + "received_events_url": "https://api.github.com/users/SarvagyaGupta/received_events", + "type": "User", + "site_admin": false + }, + "body": "", + "created_at": "2019-10-21T21:54:39Z", + "updated_at": "2019-10-21T21:54:50Z", + "closed_at": "2019-10-21T21:54:50Z", + "merged_at": "2019-10-21T21:54:50Z", + "merge_commit_sha": "03f8cff362a6aca0dc7bfce326bec1092e874c63", + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/pulls/4/commits", + "review_comments_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/pulls/4/comments", + "review_comment_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/issues/4/comments", + "statuses_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/statuses/f765c7e5527e36e37539bb1623900c99739689e5", + "head": { + "label": "SarvagyaGupta:HW1", + "ref": "HW1", + "sha": "f765c7e5527e36e37539bb1623900c99739689e5", + "user": { + "login": "SarvagyaGupta", + "id": 32246571, + "node_id": "MDQ6VXNlcjMyMjQ2NTcx", + "avatar_url": "https://avatars0.githubusercontent.com/u/32246571?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/SarvagyaGupta", + "html_url": "https://github.com/SarvagyaGupta", + "followers_url": "https://api.github.com/users/SarvagyaGupta/followers", + "following_url": "https://api.github.com/users/SarvagyaGupta/following{/other_user}", + "gists_url": "https://api.github.com/users/SarvagyaGupta/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SarvagyaGupta/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SarvagyaGupta/subscriptions", + "organizations_url": "https://api.github.com/users/SarvagyaGupta/orgs", + "repos_url": "https://api.github.com/users/SarvagyaGupta/repos", + "events_url": "https://api.github.com/users/SarvagyaGupta/events{/privacy}", + "received_events_url": "https://api.github.com/users/SarvagyaGupta/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 213764765, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTM3NjQ3NjU=", + "name": "uwimg", + "full_name": "SarvagyaGupta/uwimg", + "private": false, + "owner": { + "login": "SarvagyaGupta", + "id": 32246571, + "node_id": "MDQ6VXNlcjMyMjQ2NTcx", + "avatar_url": "https://avatars0.githubusercontent.com/u/32246571?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/SarvagyaGupta", + "html_url": "https://github.com/SarvagyaGupta", + "followers_url": "https://api.github.com/users/SarvagyaGupta/followers", + "following_url": "https://api.github.com/users/SarvagyaGupta/following{/other_user}", + "gists_url": "https://api.github.com/users/SarvagyaGupta/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SarvagyaGupta/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SarvagyaGupta/subscriptions", + "organizations_url": "https://api.github.com/users/SarvagyaGupta/orgs", + "repos_url": "https://api.github.com/users/SarvagyaGupta/repos", + "events_url": "https://api.github.com/users/SarvagyaGupta/events{/privacy}", + "received_events_url": "https://api.github.com/users/SarvagyaGupta/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/SarvagyaGupta/uwimg", + "description": "Build your own computer vision library in C", + "fork": true, + "url": "https://api.github.com/repos/SarvagyaGupta/uwimg", + "forks_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/forks", + "keys_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/teams", + "hooks_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/hooks", + "issue_events_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/issues/events{/number}", + "events_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/events", + "assignees_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/assignees{/user}", + "branches_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/branches{/branch}", + "tags_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/tags", + "blobs_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/statuses/{sha}", + "languages_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/languages", + "stargazers_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/stargazers", + "contributors_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/contributors", + "subscribers_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/subscribers", + "subscription_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/subscription", + "commits_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/contents/{+path}", + "compare_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/merges", + "archive_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/downloads", + "issues_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/issues{/number}", + "pulls_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/pulls{/number}", + "milestones_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/milestones{/number}", + "notifications_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/labels{/name}", + "releases_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/releases{/id}", + "deployments_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/deployments", + "created_at": "2019-10-08T22:06:43Z", + "updated_at": "2019-10-18T04:29:13Z", + "pushed_at": "2019-10-21T21:54:50Z", + "git_url": "git://github.com/SarvagyaGupta/uwimg.git", + "ssh_url": "git@github.com:SarvagyaGupta/uwimg.git", + "clone_url": "https://github.com/SarvagyaGupta/uwimg.git", + "svn_url": "https://github.com/SarvagyaGupta/uwimg", + "homepage": null, + "size": 48568, + "stargazers_count": 0, + "watchers_count": 0, + "language": "C", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "SarvagyaGupta:master", + "ref": "master", + "sha": "5f1e6fdc621f3186ecaf479cd89e1f07df71d73b", + "user": { + "login": "SarvagyaGupta", + "id": 32246571, + "node_id": "MDQ6VXNlcjMyMjQ2NTcx", + "avatar_url": "https://avatars0.githubusercontent.com/u/32246571?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/SarvagyaGupta", + "html_url": "https://github.com/SarvagyaGupta", + "followers_url": "https://api.github.com/users/SarvagyaGupta/followers", + "following_url": "https://api.github.com/users/SarvagyaGupta/following{/other_user}", + "gists_url": "https://api.github.com/users/SarvagyaGupta/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SarvagyaGupta/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SarvagyaGupta/subscriptions", + "organizations_url": "https://api.github.com/users/SarvagyaGupta/orgs", + "repos_url": "https://api.github.com/users/SarvagyaGupta/repos", + "events_url": "https://api.github.com/users/SarvagyaGupta/events{/privacy}", + "received_events_url": "https://api.github.com/users/SarvagyaGupta/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 213764765, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTM3NjQ3NjU=", + "name": "uwimg", + "full_name": "SarvagyaGupta/uwimg", + "private": false, + "owner": { + "login": "SarvagyaGupta", + "id": 32246571, + "node_id": "MDQ6VXNlcjMyMjQ2NTcx", + "avatar_url": "https://avatars0.githubusercontent.com/u/32246571?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/SarvagyaGupta", + "html_url": "https://github.com/SarvagyaGupta", + "followers_url": "https://api.github.com/users/SarvagyaGupta/followers", + "following_url": "https://api.github.com/users/SarvagyaGupta/following{/other_user}", + "gists_url": "https://api.github.com/users/SarvagyaGupta/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SarvagyaGupta/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SarvagyaGupta/subscriptions", + "organizations_url": "https://api.github.com/users/SarvagyaGupta/orgs", + "repos_url": "https://api.github.com/users/SarvagyaGupta/repos", + "events_url": "https://api.github.com/users/SarvagyaGupta/events{/privacy}", + "received_events_url": "https://api.github.com/users/SarvagyaGupta/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/SarvagyaGupta/uwimg", + "description": "Build your own computer vision library in C", + "fork": true, + "url": "https://api.github.com/repos/SarvagyaGupta/uwimg", + "forks_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/forks", + "keys_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/teams", + "hooks_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/hooks", + "issue_events_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/issues/events{/number}", + "events_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/events", + "assignees_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/assignees{/user}", + "branches_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/branches{/branch}", + "tags_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/tags", + "blobs_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/statuses/{sha}", + "languages_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/languages", + "stargazers_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/stargazers", + "contributors_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/contributors", + "subscribers_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/subscribers", + "subscription_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/subscription", + "commits_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/contents/{+path}", + "compare_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/merges", + "archive_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/downloads", + "issues_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/issues{/number}", + "pulls_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/pulls{/number}", + "milestones_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/milestones{/number}", + "notifications_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/labels{/name}", + "releases_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/releases{/id}", + "deployments_url": "https://api.github.com/repos/SarvagyaGupta/uwimg/deployments", + "created_at": "2019-10-08T22:06:43Z", + "updated_at": "2019-10-18T04:29:13Z", + "pushed_at": "2019-10-21T21:54:50Z", + "git_url": "git://github.com/SarvagyaGupta/uwimg.git", + "ssh_url": "git@github.com:SarvagyaGupta/uwimg.git", + "clone_url": "https://github.com/SarvagyaGupta/uwimg.git", + "svn_url": "https://github.com/SarvagyaGupta/uwimg", + "homepage": null, + "size": 48568, + "stargazers_count": 0, + "watchers_count": 0, + "language": "C", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/SarvagyaGupta/uwimg/pulls/4" + }, + "html": { + "href": "https://github.com/SarvagyaGupta/uwimg/pull/4" + }, + "issue": { + "href": "https://api.github.com/repos/SarvagyaGupta/uwimg/issues/4" + }, + "comments": { + "href": "https://api.github.com/repos/SarvagyaGupta/uwimg/issues/4/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/SarvagyaGupta/uwimg/pulls/4/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/SarvagyaGupta/uwimg/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/SarvagyaGupta/uwimg/pulls/4/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/SarvagyaGupta/uwimg/statuses/f765c7e5527e36e37539bb1623900c99739689e5" + } + }, + "author_association": "OWNER", + "merged": true, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": { + "login": "SarvagyaGupta", + "id": 32246571, + "node_id": "MDQ6VXNlcjMyMjQ2NTcx", + "avatar_url": "https://avatars0.githubusercontent.com/u/32246571?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/SarvagyaGupta", + "html_url": "https://github.com/SarvagyaGupta", + "followers_url": "https://api.github.com/users/SarvagyaGupta/followers", + "following_url": "https://api.github.com/users/SarvagyaGupta/following{/other_user}", + "gists_url": "https://api.github.com/users/SarvagyaGupta/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SarvagyaGupta/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SarvagyaGupta/subscriptions", + "organizations_url": "https://api.github.com/users/SarvagyaGupta/orgs", + "repos_url": "https://api.github.com/users/SarvagyaGupta/repos", + "events_url": "https://api.github.com/users/SarvagyaGupta/events{/privacy}", + "received_events_url": "https://api.github.com/users/SarvagyaGupta/received_events", + "type": "User", + "site_admin": false + }, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 4, + "deletions": 0, + "changed_files": 1 + } + }, + "public": true, + "created_at": "2019-10-21T21:54:50Z" + }, + { + "id": "10680625199", + "type": "IssuesEvent", + "actor": { + "id": 266306, + "login": "kenorb", + "display_login": "kenorb", + "gravatar_id": "", + "url": "https://api.github.com/users/kenorb", + "avatar_url": "https://avatars.githubusercontent.com/u/266306?" + }, + "repo": { + "id": 50688232, + "name": "EA31337/EA31337-classes", + "url": "https://api.github.com/repos/EA31337/EA31337-classes" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/EA31337/EA31337-classes/issues/74", + "repository_url": "https://api.github.com/repos/EA31337/EA31337-classes", + "labels_url": "https://api.github.com/repos/EA31337/EA31337-classes/issues/74/labels{/name}", + "comments_url": "https://api.github.com/repos/EA31337/EA31337-classes/issues/74/comments", + "events_url": "https://api.github.com/repos/EA31337/EA31337-classes/issues/74/events", + "html_url": "https://github.com/EA31337/EA31337-classes/issues/74", + "id": 510315283, + "node_id": "MDU6SXNzdWU1MTAzMTUyODM=", + "number": 74, + "title": "Error 244: tree optimization error", + "user": { + "login": "kenorb", + "id": 266306, + "node_id": "MDQ6VXNlcjI2NjMwNg==", + "avatar_url": "https://avatars2.githubusercontent.com/u/266306?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kenorb", + "html_url": "https://github.com/kenorb", + "followers_url": "https://api.github.com/users/kenorb/followers", + "following_url": "https://api.github.com/users/kenorb/following{/other_user}", + "gists_url": "https://api.github.com/users/kenorb/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kenorb/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kenorb/subscriptions", + "organizations_url": "https://api.github.com/users/kenorb/orgs", + "repos_url": "https://api.github.com/users/kenorb/repos", + "events_url": "https://api.github.com/users/kenorb/events{/privacy}", + "received_events_url": "https://api.github.com/users/kenorb/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 318724070, + "node_id": "MDU6TGFiZWwzMTg3MjQwNzA=", + "url": "https://api.github.com/repos/EA31337/EA31337-classes/labels/bug", + "name": "bug", + "color": "fc2929", + "default": true + } + ], + "state": "open", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-10-21T21:54:50Z", + "updated_at": "2019-10-21T21:54:50Z", + "closed_at": null, + "author_association": "MEMBER", + "body": "The following code results in error:\r\n\r\n```mql5\r\nPrint(acc.GetAccountFreeMarginCheck(ORDER_TYPE_BUY, SymbolInfo::GetVolumeMin()));\r\nPrint(acc.GetAccountFreeMarginCheck(ORDER_TYPE_SELL, SymbolInfo::GetVolumeMin()));\r\nPrint(acc.IsFreeMargin(ORDER_TYPE_BUY, SymbolInfo::GetVolumeMin()));\r\nPrint(acc.IsFreeMargin(ORDER_TYPE_SELL, SymbolInfo::GetVolumeMin()));\r\n```\r\n\r\n> Error 244: tree optimization error\r\n\r\nFile: `tests/AccountTest.mq5`" + } + }, + "public": true, + "created_at": "2019-10-21T21:54:50Z", + "org": { + "id": 13502077, + "login": "EA31337", + "gravatar_id": "", + "url": "https://api.github.com/orgs/EA31337", + "avatar_url": "https://avatars.githubusercontent.com/u/13502077?" + } + }, + { + "id": "10680625192", + "type": "PushEvent", + "actor": { + "id": 8980868, + "login": "bnlb", + "display_login": "bnlb", + "gravatar_id": "", + "url": "https://api.github.com/users/bnlb", + "avatar_url": "https://avatars.githubusercontent.com/u/8980868?" + }, + "repo": { + "id": 49092721, + "name": "algorithmiaio/dev-center", + "url": "https://api.github.com/repos/algorithmiaio/dev-center" + }, + "payload": { + "push_id": 4176854983, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/feature/FRONTEND-1660", + "head": "1a93282716570222d78b890112a3aaccceb0008a", + "before": "360ef24a29a084c41cf6fd331aa4c4ca7788e8f0", + "commits": [ + { + "sha": "1a93282716570222d78b890112a3aaccceb0008a", + "author": { + "email": "nblack@algorithmia.io", + "name": "Nathan Lyle Black" + }, + "message": "FRONTEND-1660 Add server test for CSP", + "distinct": true, + "url": "https://api.github.com/repos/algorithmiaio/dev-center/commits/1a93282716570222d78b890112a3aaccceb0008a" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:50Z", + "org": { + "id": 5078755, + "login": "algorithmiaio", + "gravatar_id": "", + "url": "https://api.github.com/orgs/algorithmiaio", + "avatar_url": "https://avatars.githubusercontent.com/u/5078755?" + } + }, + { + "id": "10680625190", + "type": "IssueCommentEvent", + "actor": { + "id": 41325216, + "login": "quangnhat185", + "display_login": "quangnhat185", + "gravatar_id": "", + "url": "https://api.github.com/users/quangnhat185", + "avatar_url": "https://avatars.githubusercontent.com/u/41325216?" + }, + "repo": { + "id": 215707732, + "name": "aivivn/Machine-Learning-Yearning-Vietnamese-Translation", + "url": "https://api.github.com/repos/aivivn/Machine-Learning-Yearning-Vietnamese-Translation" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/aivivn/Machine-Learning-Yearning-Vietnamese-Translation/issues/91", + "repository_url": "https://api.github.com/repos/aivivn/Machine-Learning-Yearning-Vietnamese-Translation", + "labels_url": "https://api.github.com/repos/aivivn/Machine-Learning-Yearning-Vietnamese-Translation/issues/91/labels{/name}", + "comments_url": "https://api.github.com/repos/aivivn/Machine-Learning-Yearning-Vietnamese-Translation/issues/91/comments", + "events_url": "https://api.github.com/repos/aivivn/Machine-Learning-Yearning-Vietnamese-Translation/issues/91/events", + "html_url": "https://github.com/aivivn/Machine-Learning-Yearning-Vietnamese-Translation/pull/91", + "id": 509603826, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzMwMTIzMzIw", + "number": 91, + "title": "Dịch chap 06", + "user": { + "login": "quangnhat185", + "id": 41325216, + "node_id": "MDQ6VXNlcjQxMzI1MjE2", + "avatar_url": "https://avatars2.githubusercontent.com/u/41325216?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/quangnhat185", + "html_url": "https://github.com/quangnhat185", + "followers_url": "https://api.github.com/users/quangnhat185/followers", + "following_url": "https://api.github.com/users/quangnhat185/following{/other_user}", + "gists_url": "https://api.github.com/users/quangnhat185/gists{/gist_id}", + "starred_url": "https://api.github.com/users/quangnhat185/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/quangnhat185/subscriptions", + "organizations_url": "https://api.github.com/users/quangnhat185/orgs", + "repos_url": "https://api.github.com/users/quangnhat185/repos", + "events_url": "https://api.github.com/users/quangnhat185/events{/privacy}", + "received_events_url": "https://api.github.com/users/quangnhat185/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 1624945333, + "node_id": "MDU6TGFiZWwxNjI0OTQ1MzMz", + "url": "https://api.github.com/repos/aivivn/Machine-Learning-Yearning-Vietnamese-Translation/labels/high%20priority", + "name": "high priority", + "color": "ff4500", + "default": false + }, + { + "id": 1626758164, + "node_id": "MDU6TGFiZWwxNjI2NzU4MTY0", + "url": "https://api.github.com/repos/aivivn/Machine-Learning-Yearning-Vietnamese-Translation/labels/review%20wanted", + "name": "review wanted", + "color": "b60205", + "default": false + } + ], + "state": "open", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": { + "url": "https://api.github.com/repos/aivivn/Machine-Learning-Yearning-Vietnamese-Translation/milestones/1", + "html_url": "https://github.com/aivivn/Machine-Learning-Yearning-Vietnamese-Translation/milestone/1", + "labels_url": "https://api.github.com/repos/aivivn/Machine-Learning-Yearning-Vietnamese-Translation/milestones/1/labels", + "id": 4768319, + "node_id": "MDk6TWlsZXN0b25lNDc2ODMxOQ==", + "number": 1, + "title": "Phần 1 (chương 1-14)", + "description": "", + "creator": { + "login": "tiepvupsu", + "id": 2201237, + "node_id": "MDQ6VXNlcjIyMDEyMzc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/2201237?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/tiepvupsu", + "html_url": "https://github.com/tiepvupsu", + "followers_url": "https://api.github.com/users/tiepvupsu/followers", + "following_url": "https://api.github.com/users/tiepvupsu/following{/other_user}", + "gists_url": "https://api.github.com/users/tiepvupsu/gists{/gist_id}", + "starred_url": "https://api.github.com/users/tiepvupsu/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/tiepvupsu/subscriptions", + "organizations_url": "https://api.github.com/users/tiepvupsu/orgs", + "repos_url": "https://api.github.com/users/tiepvupsu/repos", + "events_url": "https://api.github.com/users/tiepvupsu/events{/privacy}", + "received_events_url": "https://api.github.com/users/tiepvupsu/received_events", + "type": "User", + "site_admin": false + }, + "open_issues": 6, + "closed_issues": 2, + "state": "open", + "created_at": "2019-10-21T06:13:12Z", + "updated_at": "2019-10-21T19:52:47Z", + "due_on": "2019-10-31T07:00:00Z", + "closed_at": null + }, + "comments": 1, + "created_at": "2019-10-20T14:39:50Z", + "updated_at": "2019-10-21T21:54:50Z", + "closed_at": null, + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/aivivn/Machine-Learning-Yearning-Vietnamese-Translation/pulls/91", + "html_url": "https://github.com/aivivn/Machine-Learning-Yearning-Vietnamese-Translation/pull/91", + "diff_url": "https://github.com/aivivn/Machine-Learning-Yearning-Vietnamese-Translation/pull/91.diff", + "patch_url": "https://github.com/aivivn/Machine-Learning-Yearning-Vietnamese-Translation/pull/91.patch" + }, + "body": "Em update bản dịch của chap 06. Trong bản dịch này em có một số vấn đề như sau:\r\n\r\n- Distribution dịch là \"phân khúc\" thay vì \"phân phối\" như trong glossary để nghe xuôi tai hơn.\r\n\r\n- Giữ nguyên over-fit và benchmark vì chưa có bản dịch tiếng việt trong glossary." + }, + "comment": { + "url": "https://api.github.com/repos/aivivn/Machine-Learning-Yearning-Vietnamese-Translation/issues/comments/544724573", + "html_url": "https://github.com/aivivn/Machine-Learning-Yearning-Vietnamese-Translation/pull/91#issuecomment-544724573", + "issue_url": "https://api.github.com/repos/aivivn/Machine-Learning-Yearning-Vietnamese-Translation/issues/91", + "id": 544724573, + "node_id": "MDEyOklzc3VlQ29tbWVudDU0NDcyNDU3Mw==", + "user": { + "login": "quangnhat185", + "id": 41325216, + "node_id": "MDQ6VXNlcjQxMzI1MjE2", + "avatar_url": "https://avatars2.githubusercontent.com/u/41325216?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/quangnhat185", + "html_url": "https://github.com/quangnhat185", + "followers_url": "https://api.github.com/users/quangnhat185/followers", + "following_url": "https://api.github.com/users/quangnhat185/following{/other_user}", + "gists_url": "https://api.github.com/users/quangnhat185/gists{/gist_id}", + "starred_url": "https://api.github.com/users/quangnhat185/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/quangnhat185/subscriptions", + "organizations_url": "https://api.github.com/users/quangnhat185/orgs", + "repos_url": "https://api.github.com/users/quangnhat185/repos", + "events_url": "https://api.github.com/users/quangnhat185/events{/privacy}", + "received_events_url": "https://api.github.com/users/quangnhat185/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2019-10-21T21:54:50Z", + "updated_at": "2019-10-21T21:54:50Z", + "author_association": "CONTRIBUTOR", + "body": "@ngcthuong Em đã update theo review của a ạ :smile: " + } + }, + "public": true, + "created_at": "2019-10-21T21:54:50Z" + }, + { + "id": "10680625191", + "type": "CreateEvent", + "actor": { + "id": 45858947, + "login": "MG1222", + "display_login": "MG1222", + "gravatar_id": "", + "url": "https://api.github.com/users/MG1222", + "avatar_url": "https://avatars.githubusercontent.com/u/45858947?" + }, + "repo": { + "id": 216672080, + "name": "MG1222/gossip_sinatra", + "url": "https://api.github.com/repos/MG1222/gossip_sinatra" + }, + "payload": { + "ref": "master", + "ref_type": "branch", + "master_branch": "master", + "description": null, + "pusher_type": "user" + }, + "public": true, + "created_at": "2019-10-21T21:54:50Z" + }, + { + "id": "10680625179", + "type": "PushEvent", + "actor": { + "id": 10810283, + "login": "direwolf-github", + "display_login": "direwolf-github", + "gravatar_id": "", + "url": "https://api.github.com/users/direwolf-github", + "avatar_url": "https://avatars.githubusercontent.com/u/10810283?" + }, + "repo": { + "id": 183051410, + "name": "direwolf-github/my-app", + "url": "https://api.github.com/repos/direwolf-github/my-app" + }, + "payload": { + "push_id": 4176854980, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/branch-8855a329", + "head": "dc6a6cfdbe6e79644efa066bbea65fcaa7a5cdc3", + "before": "97b657afdf54d3b3ccbcb094fc803fee1c0e5821", + "commits": [ + { + "sha": "dc6a6cfdbe6e79644efa066bbea65fcaa7a5cdc3", + "author": { + "email": "heroku-lifecycle+direwolf-github@salesforce.com", + "name": "direwolf-github" + }, + "message": "add readme.txt", + "distinct": true, + "url": "https://api.github.com/repos/direwolf-github/my-app/commits/dc6a6cfdbe6e79644efa066bbea65fcaa7a5cdc3" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:50Z" + }, + { + "id": "10680625182", + "type": "IssuesEvent", + "actor": { + "id": 56306344, + "login": "SindouNF", + "display_login": "SindouNF", + "gravatar_id": "", + "url": "https://api.github.com/users/SindouNF", + "avatar_url": "https://avatars.githubusercontent.com/u/56306344?" + }, + "repo": { + "id": 213643780, + "name": "paulo-eng-soft/projeto-eng-soft", + "url": "https://api.github.com/repos/paulo-eng-soft/projeto-eng-soft" + }, + "payload": { + "action": "closed", + "issue": { + "url": "https://api.github.com/repos/paulo-eng-soft/projeto-eng-soft/issues/1", + "repository_url": "https://api.github.com/repos/paulo-eng-soft/projeto-eng-soft", + "labels_url": "https://api.github.com/repos/paulo-eng-soft/projeto-eng-soft/issues/1/labels{/name}", + "comments_url": "https://api.github.com/repos/paulo-eng-soft/projeto-eng-soft/issues/1/comments", + "events_url": "https://api.github.com/repos/paulo-eng-soft/projeto-eng-soft/issues/1/events", + "html_url": "https://github.com/paulo-eng-soft/projeto-eng-soft/issues/1", + "id": 509687614, + "node_id": "MDU6SXNzdWU1MDk2ODc2MTQ=", + "number": 1, + "title": "Fase 0", + "user": { + "login": "SindouNF", + "id": 56306344, + "node_id": "MDQ6VXNlcjU2MzA2MzQ0", + "avatar_url": "https://avatars0.githubusercontent.com/u/56306344?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/SindouNF", + "html_url": "https://github.com/SindouNF", + "followers_url": "https://api.github.com/users/SindouNF/followers", + "following_url": "https://api.github.com/users/SindouNF/following{/other_user}", + "gists_url": "https://api.github.com/users/SindouNF/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SindouNF/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SindouNF/subscriptions", + "organizations_url": "https://api.github.com/users/SindouNF/orgs", + "repos_url": "https://api.github.com/users/SindouNF/repos", + "events_url": "https://api.github.com/users/SindouNF/events{/privacy}", + "received_events_url": "https://api.github.com/users/SindouNF/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 1628304009, + "node_id": "MDU6TGFiZWwxNjI4MzA0MDA5", + "url": "https://api.github.com/repos/paulo-eng-soft/projeto-eng-soft/labels/Complete", + "name": "Complete", + "color": "4bd339", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-10-21T01:41:38Z", + "updated_at": "2019-10-21T21:54:50Z", + "closed_at": "2019-10-21T21:54:50Z", + "author_association": "COLLABORATOR", + "body": "Etapas para o procedimento da Fase 0" + } + }, + "public": true, + "created_at": "2019-10-21T21:54:50Z" + }, + { + "id": "10680625177", + "type": "PushEvent", + "actor": { + "id": 15263515, + "login": "stefanionescu", + "display_login": "stefanionescu", + "gravatar_id": "", + "url": "https://api.github.com/users/stefanionescu", + "avatar_url": "https://avatars.githubusercontent.com/u/15263515?" + }, + "repo": { + "id": 210862691, + "name": "komodo-finance/aws-oracle-feed-source", + "url": "https://api.github.com/repos/komodo-finance/aws-oracle-feed-source" + }, + "payload": { + "push_id": 4176854978, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "eeace75e56840498f81e2e8b8ccb1073331b49b2", + "before": "9f54a7e2e8417b5c442edbdb9bdcf26ff985c578", + "commits": [ + { + "sha": "eeace75e56840498f81e2e8b8ccb1073331b49b2", + "author": { + "email": "codrinionescu@yahoo.com", + "name": "stefanionescu" + }, + "message": "Integrated with new oracles, updating prices on Kovan", + "distinct": true, + "url": "https://api.github.com/repos/komodo-finance/aws-oracle-feed-source/commits/eeace75e56840498f81e2e8b8ccb1073331b49b2" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:50Z", + "org": { + "id": 54208539, + "login": "komodo-finance", + "gravatar_id": "", + "url": "https://api.github.com/orgs/komodo-finance", + "avatar_url": "https://avatars.githubusercontent.com/u/54208539?" + } + }, + { + "id": "10680625171", + "type": "PushEvent", + "actor": { + "id": 8162640, + "login": "rhythnic", + "display_login": "rhythnic", + "gravatar_id": "", + "url": "https://api.github.com/users/rhythnic", + "avatar_url": "https://avatars.githubusercontent.com/u/8162640?" + }, + "repo": { + "id": 120832655, + "name": "cablelabs/lpwanserver", + "url": "https://api.github.com/repos/cablelabs/lpwanserver" + }, + "payload": { + "push_id": 4176854977, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/issue-322", + "head": "b37c5fe4e006d5e3a8c0d632355fefe744b79ffc", + "before": "04fd1f20920c6759a5a9a6f8a22924b754687ebc", + "commits": [ + { + "sha": "b37c5fe4e006d5e3a8c0d632355fefe744b79ffc", + "author": { + "email": "nick@rhythnic.com", + "name": "Nick Baroni" + }, + "message": "Created networkDeployment model.", + "distinct": true, + "url": "https://api.github.com/repos/cablelabs/lpwanserver/commits/b37c5fe4e006d5e3a8c0d632355fefe744b79ffc" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:50Z", + "org": { + "id": 619376, + "login": "cablelabs", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cablelabs", + "avatar_url": "https://avatars.githubusercontent.com/u/619376?" + } + }, + { + "id": "10680625173", + "type": "IssuesEvent", + "actor": { + "id": 37936606, + "login": "github-learning-lab[bot]", + "display_login": "github-learning-lab", + "gravatar_id": "", + "url": "https://api.github.com/users/github-learning-lab[bot]", + "avatar_url": "https://avatars.githubusercontent.com/u/37936606?" + }, + "repo": { + "id": 216671952, + "name": "rcordeirotmu/reviewing-a-pull-request", + "url": "https://api.github.com/repos/rcordeirotmu/reviewing-a-pull-request" + }, + "payload": { + "action": "closed", + "issue": { + "url": "https://api.github.com/repos/rcordeirotmu/reviewing-a-pull-request/issues/1", + "repository_url": "https://api.github.com/repos/rcordeirotmu/reviewing-a-pull-request", + "labels_url": "https://api.github.com/repos/rcordeirotmu/reviewing-a-pull-request/issues/1/labels{/name}", + "comments_url": "https://api.github.com/repos/rcordeirotmu/reviewing-a-pull-request/issues/1/comments", + "events_url": "https://api.github.com/repos/rcordeirotmu/reviewing-a-pull-request/issues/1/events", + "html_url": "https://github.com/rcordeirotmu/reviewing-a-pull-request/issues/1", + "id": 510314364, + "node_id": "MDU6SXNzdWU1MTAzMTQzNjQ=", + "number": 1, + "title": "Welcome", + "user": { + "login": "github-learning-lab[bot]", + "id": 37936606, + "node_id": "MDM6Qm90Mzc5MzY2MDY=", + "avatar_url": "https://avatars0.githubusercontent.com/in/10572?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-learning-lab%5Bbot%5D", + "html_url": "https://github.com/apps/github-learning-lab", + "followers_url": "https://api.github.com/users/github-learning-lab%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-learning-lab%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-learning-lab%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-learning-lab%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-learning-lab%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-learning-lab%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-learning-lab%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-learning-lab%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-learning-lab%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": { + "login": "rcordeirotmu", + "id": 54368413, + "node_id": "MDQ6VXNlcjU0MzY4NDEz", + "avatar_url": "https://avatars0.githubusercontent.com/u/54368413?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rcordeirotmu", + "html_url": "https://github.com/rcordeirotmu", + "followers_url": "https://api.github.com/users/rcordeirotmu/followers", + "following_url": "https://api.github.com/users/rcordeirotmu/following{/other_user}", + "gists_url": "https://api.github.com/users/rcordeirotmu/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rcordeirotmu/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rcordeirotmu/subscriptions", + "organizations_url": "https://api.github.com/users/rcordeirotmu/orgs", + "repos_url": "https://api.github.com/users/rcordeirotmu/repos", + "events_url": "https://api.github.com/users/rcordeirotmu/events{/privacy}", + "received_events_url": "https://api.github.com/users/rcordeirotmu/received_events", + "type": "User", + "site_admin": false + }, + "assignees": [ + { + "login": "rcordeirotmu", + "id": 54368413, + "node_id": "MDQ6VXNlcjU0MzY4NDEz", + "avatar_url": "https://avatars0.githubusercontent.com/u/54368413?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rcordeirotmu", + "html_url": "https://github.com/rcordeirotmu", + "followers_url": "https://api.github.com/users/rcordeirotmu/followers", + "following_url": "https://api.github.com/users/rcordeirotmu/following{/other_user}", + "gists_url": "https://api.github.com/users/rcordeirotmu/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rcordeirotmu/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rcordeirotmu/subscriptions", + "organizations_url": "https://api.github.com/users/rcordeirotmu/orgs", + "repos_url": "https://api.github.com/users/rcordeirotmu/repos", + "events_url": "https://api.github.com/users/rcordeirotmu/events{/privacy}", + "received_events_url": "https://api.github.com/users/rcordeirotmu/received_events", + "type": "User", + "site_admin": false + } + ], + "milestone": null, + "comments": 1, + "created_at": "2019-10-21T21:52:26Z", + "updated_at": "2019-10-21T21:54:50Z", + "closed_at": "2019-10-21T21:54:50Z", + "author_association": "NONE", + "body": "## Welcome!\n\nHello and welcome! In this course you will learn how you can get your best work done in pull requests. You'll learn when and how to request a review, how to review someone else's code, and how to respond to reviews. To do this, we'll be playing around with the code in this repository that makes a simple Tetris game.\n\nIf you'd like, you can use [GitHub Pages](https://pages.github.com/) to host your Tetris game. Just go to the **Settings** tab of this repository. Scroll down to **GitHub Pages**. Select `master` as a **Source**, and click **Save**. \n\n### New to GitHub?\n\nFor this course, you'll need some background knowledge. If you need a refresher on the GitHub flow, check out [the Introduction to GitHub course](https://lab.github.com/courses/introduction-to-github).\n\n## Pull Requests Reviews 101\n\nReviewing a pull request is an opportunity to examine another contributor's changes. While reviewing a pull request, you can extrapolate how someone else solved a problem. It's an awesome opportunity to learn more about how the code works and how others solve problems. Reviewing a pull request is a great learning opportunity!\n\n## Step 1: Add assignees for issues and pull requests\n\nAssignees on issues and pull requests let other team members know who is responsible. The assignee oversees the issue or pull request in an accessible and visible way.\n\n### :keyboard: Activity: Assign yourself to this issue\n\n1. On the right side of the screen, click the `assign yourself` text under the **Assignees** section\n\n
        \n

        I'll respond below for your next step

        \n\n> _Sometimes I respond too fast for the page to update! If you perform an expected action and don't see a response, wait a few seconds and refresh the page for your next steps._\n" + } + }, + "public": true, + "created_at": "2019-10-21T21:54:50Z" + }, + { + "id": "10680625172", + "type": "WatchEvent", + "actor": { + "id": 9640576, + "login": "laurentlp", + "display_login": "laurentlp", + "gravatar_id": "", + "url": "https://api.github.com/users/laurentlp", + "avatar_url": "https://avatars.githubusercontent.com/u/9640576?" + }, + "repo": { + "id": 216389258, + "name": "RanadeepPolavarapu/docker-nginx-http3", + "url": "https://api.github.com/repos/RanadeepPolavarapu/docker-nginx-http3" + }, + "payload": { + "action": "started" + }, + "public": true, + "created_at": "2019-10-21T21:54:50Z" + }, + { + "id": "10680625176", + "type": "CreateEvent", + "actor": { + "id": 53870272, + "login": "evanschwarz90", + "display_login": "evanschwarz90", + "gravatar_id": "", + "url": "https://api.github.com/users/evanschwarz90", + "avatar_url": "https://avatars.githubusercontent.com/u/53870272?" + }, + "repo": { + "id": 213791687, + "name": "GHRBLD05/Retail-Product-Webpage", + "url": "https://api.github.com/repos/GHRBLD05/Retail-Product-Webpage" + }, + "payload": { + "ref": "changeProductOnClick", + "ref_type": "branch", + "master_branch": "master", + "description": null, + "pusher_type": "user" + }, + "public": true, + "created_at": "2019-10-21T21:54:50Z", + "org": { + "id": 56328373, + "login": "GHRBLD05", + "gravatar_id": "", + "url": "https://api.github.com/orgs/GHRBLD05", + "avatar_url": "https://avatars.githubusercontent.com/u/56328373?" + } + }, + { + "id": "10680625158", + "type": "PushEvent", + "actor": { + "id": 31808922, + "login": "brandontkessler", + "display_login": "brandontkessler", + "gravatar_id": "", + "url": "https://api.github.com/users/brandontkessler", + "avatar_url": "https://avatars.githubusercontent.com/u/31808922?" + }, + "repo": { + "id": 206614200, + "name": "brandontkessler/data_transformations_ps", + "url": "https://api.github.com/repos/brandontkessler/data_transformations_ps" + }, + "payload": { + "push_id": 4176854972, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "6bf9c3f7d85380942350eb48f8d45eb22f38cac8", + "before": "8542d53991e43656fdaf4a0ac48425755c02c229", + "commits": [ + { + "sha": "6bf9c3f7d85380942350eb48f8d45eb22f38cac8", + "author": { + "email": "brandontkessler@gmail.com", + "name": "Brandon" + }, + "message": "imports and data prep", + "distinct": true, + "url": "https://api.github.com/repos/brandontkessler/data_transformations_ps/commits/6bf9c3f7d85380942350eb48f8d45eb22f38cac8" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:50Z" + }, + { + "id": "10680625156", + "type": "PushEvent", + "actor": { + "id": 51011840, + "login": "othhotro", + "display_login": "othhotro", + "gravatar_id": "", + "url": "https://api.github.com/users/othhotro", + "avatar_url": "https://avatars.githubusercontent.com/u/51011840?" + }, + "repo": { + "id": 201879384, + "name": "othhotro/Roo.Exe", + "url": "https://api.github.com/repos/othhotro/Roo.Exe" + }, + "payload": { + "push_id": 4176854968, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "ff47c37132b9f65b7a019f68bd6f920f9557850f", + "before": "15016ceee06af3047744c7bac173ebc162c2b3ac", + "commits": [ + { + "sha": "ff47c37132b9f65b7a019f68bd6f920f9557850f", + "author": { + "email": "oth.hotro@gmail.com", + "name": "oth.hotro@gmail.com" + }, + "message": "Lần chạy [2019-10-22 04-53]:Lần thứ 51", + "distinct": true, + "url": "https://api.github.com/repos/othhotro/Roo.Exe/commits/ff47c37132b9f65b7a019f68bd6f920f9557850f" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:50Z" + }, + { + "id": "10680625155", + "type": "DeleteEvent", + "actor": { + "id": 49699333, + "login": "dependabot[bot]", + "display_login": "dependabot", + "gravatar_id": "", + "url": "https://api.github.com/users/dependabot[bot]", + "avatar_url": "https://avatars.githubusercontent.com/u/49699333?" + }, + "repo": { + "id": 147853345, + "name": "jjorissen52/bug_reproduction", + "url": "https://api.github.com/repos/jjorissen52/bug_reproduction" + }, + "payload": { + "ref": "dependabot/pip/django-1.11.23", + "ref_type": "branch", + "pusher_type": "user" + }, + "public": true, + "created_at": "2019-10-21T21:54:50Z" + }, + { + "id": "10680625066", + "type": "PushEvent", + "actor": { + "id": 33434372, + "login": "tensorflow-copybara", + "display_login": "tensorflow-copybara", + "gravatar_id": "", + "url": "https://api.github.com/users/tensorflow-copybara", + "avatar_url": "https://avatars.githubusercontent.com/u/33434372?" + }, + "repo": { + "id": 45717250, + "name": "tensorflow/tensorflow", + "url": "https://api.github.com/repos/tensorflow/tensorflow" + }, + "payload": { + "push_id": 4176854921, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "f0458723e4e88ee34613c984b02b3dc927c4a538", + "before": "d0973869c9d7f14f0353a7eceddf9d3daa1382e1", + "commits": [ + { + "sha": "f0458723e4e88ee34613c984b02b3dc927c4a538", + "author": { + "email": "hyey@google.com", + "name": "Hye Soo Yang" + }, + "message": "Migrate (nightly) release build scripts to opensource - ubuntu_16/cpu_py2_full/*\n\nPiperOrigin-RevId: 275917502\nChange-Id: If8c216543e53e45587b2b92b86ddbdbd3bd1eb81", + "distinct": true, + "url": "https://api.github.com/repos/tensorflow/tensorflow/commits/f0458723e4e88ee34613c984b02b3dc927c4a538" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:49Z", + "org": { + "id": 15658638, + "login": "tensorflow", + "gravatar_id": "", + "url": "https://api.github.com/orgs/tensorflow", + "avatar_url": "https://avatars.githubusercontent.com/u/15658638?" + } + }, + { + "id": "10680625146", + "type": "CreateEvent", + "actor": { + "id": 10810283, + "login": "direwolf-github", + "display_login": "direwolf-github", + "gravatar_id": "", + "url": "https://api.github.com/users/direwolf-github", + "avatar_url": "https://avatars.githubusercontent.com/u/10810283?" + }, + "repo": { + "id": 216672326, + "name": "direwolf-github/my-app-752826ef", + "url": "https://api.github.com/repos/direwolf-github/my-app-752826ef" + }, + "payload": { + "ref": "branch-c7fa2a10", + "ref_type": "branch", + "master_branch": "master", + "description": null, + "pusher_type": "user" + }, + "public": true, + "created_at": "2019-10-21T21:54:49Z" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/__files/events-79407878-4e6c-4d87-a3b7-f2d003b89d91.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/__files/events-79407878-4e6c-4d87-a3b7-f2d003b89d91.json new file mode 100644 index 0000000000..b66d545a5a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/__files/events-79407878-4e6c-4d87-a3b7-f2d003b89d91.json @@ -0,0 +1,2827 @@ +[ + { + "id": "10680625302", + "type": "PushEvent", + "actor": { + "id": 46480543, + "login": "daarth", + "display_login": "daarth", + "gravatar_id": "", + "url": "https://api.github.com/users/daarth", + "avatar_url": "https://avatars.githubusercontent.com/u/46480543?" + }, + "repo": { + "id": 180147601, + "name": "daarth/thinkfalle", + "url": "https://api.github.com/repos/daarth/thinkfalle" + }, + "payload": { + "push_id": 4176855037, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "846050f82a70b7ca5c527859d8ef1f65f19e0a22", + "before": "a2391c4a3e4c01f56b0c11533be1879361c9b969", + "commits": [ + { + "sha": "846050f82a70b7ca5c527859d8ef1f65f19e0a22", + "author": { + "email": "daarth@programmer.net", + "name": "daarth" + }, + "message": "and a comma", + "distinct": true, + "url": "https://api.github.com/repos/daarth/thinkfalle/commits/846050f82a70b7ca5c527859d8ef1f65f19e0a22" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:51Z" + }, + { + "id": "10680625307", + "type": "IssueCommentEvent", + "actor": { + "id": 3493663, + "login": "lambdamusic", + "display_login": "lambdamusic", + "gravatar_id": "", + "url": "https://api.github.com/users/lambdamusic", + "avatar_url": "https://avatars.githubusercontent.com/u/3493663?" + }, + "repo": { + "id": 132828217, + "name": "WestHealth/pyvis", + "url": "https://api.github.com/repos/WestHealth/pyvis" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/WestHealth/pyvis/issues/49", + "repository_url": "https://api.github.com/repos/WestHealth/pyvis", + "labels_url": "https://api.github.com/repos/WestHealth/pyvis/issues/49/labels{/name}", + "comments_url": "https://api.github.com/repos/WestHealth/pyvis/issues/49/comments", + "events_url": "https://api.github.com/repos/WestHealth/pyvis/issues/49/events", + "html_url": "https://github.com/WestHealth/pyvis/issues/49", + "id": 497692483, + "node_id": "MDU6SXNzdWU0OTc2OTI0ODM=", + "number": 49, + "title": "google colab", + "user": { + "login": "willfinnigan", + "id": 15628614, + "node_id": "MDQ6VXNlcjE1NjI4NjE0", + "avatar_url": "https://avatars2.githubusercontent.com/u/15628614?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/willfinnigan", + "html_url": "https://github.com/willfinnigan", + "followers_url": "https://api.github.com/users/willfinnigan/followers", + "following_url": "https://api.github.com/users/willfinnigan/following{/other_user}", + "gists_url": "https://api.github.com/users/willfinnigan/gists{/gist_id}", + "starred_url": "https://api.github.com/users/willfinnigan/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/willfinnigan/subscriptions", + "organizations_url": "https://api.github.com/users/willfinnigan/orgs", + "repos_url": "https://api.github.com/users/willfinnigan/repos", + "events_url": "https://api.github.com/users/willfinnigan/events{/privacy}", + "received_events_url": "https://api.github.com/users/willfinnigan/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-24T13:34:20Z", + "updated_at": "2019-10-21T21:54:51Z", + "closed_at": null, + "author_association": "NONE", + "body": "Hi, great package! I was wondering if you had any tips for getting the graph to load in google colab. Currently, I get 'localhost refused to connect' as an error." + }, + "comment": { + "url": "https://api.github.com/repos/WestHealth/pyvis/issues/comments/544724583", + "html_url": "https://github.com/WestHealth/pyvis/issues/49#issuecomment-544724583", + "issue_url": "https://api.github.com/repos/WestHealth/pyvis/issues/49", + "id": 544724583, + "node_id": "MDEyOklzc3VlQ29tbWVudDU0NDcyNDU4Mw==", + "user": { + "login": "lambdamusic", + "id": 3493663, + "node_id": "MDQ6VXNlcjM0OTM2NjM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/3493663?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/lambdamusic", + "html_url": "https://github.com/lambdamusic", + "followers_url": "https://api.github.com/users/lambdamusic/followers", + "following_url": "https://api.github.com/users/lambdamusic/following{/other_user}", + "gists_url": "https://api.github.com/users/lambdamusic/gists{/gist_id}", + "starred_url": "https://api.github.com/users/lambdamusic/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/lambdamusic/subscriptions", + "organizations_url": "https://api.github.com/users/lambdamusic/orgs", + "repos_url": "https://api.github.com/users/lambdamusic/repos", + "events_url": "https://api.github.com/users/lambdamusic/events{/privacy}", + "received_events_url": "https://api.github.com/users/lambdamusic/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2019-10-21T21:54:51Z", + "updated_at": "2019-10-21T21:54:51Z", + "author_association": "NONE", + "body": "Same here. It'd be great to have it working in Colab (ps it works if you just save to a file)\r\n\r\n![Screenshot 2019-10-21 at 22 54 00](https://user-images.githubusercontent.com/3493663/67246223-c66de880-f455-11e9-8858-81a40e4aa324.png)\r\n" + } + }, + "public": true, + "created_at": "2019-10-21T21:54:51Z", + "org": { + "id": 22085795, + "login": "WestHealth", + "gravatar_id": "", + "url": "https://api.github.com/orgs/WestHealth", + "avatar_url": "https://avatars.githubusercontent.com/u/22085795?" + } + }, + { + "id": "10680625304", + "type": "CreateEvent", + "actor": { + "id": 53269239, + "login": "Critical94", + "display_login": "Critical94", + "gravatar_id": "", + "url": "https://api.github.com/users/Critical94", + "avatar_url": "https://avatars.githubusercontent.com/u/53269239?" + }, + "repo": { + "id": 216668360, + "name": "Critical94/github-slideshow", + "url": "https://api.github.com/repos/Critical94/github-slideshow" + }, + "payload": { + "ref": "my-slide", + "ref_type": "branch", + "master_branch": "master", + "description": "A robot powered training repository :robot:", + "pusher_type": "user" + }, + "public": true, + "created_at": "2019-10-21T21:54:51Z" + }, + { + "id": "10680625301", + "type": "DeleteEvent", + "actor": { + "id": 24236477, + "login": "tcc7130", + "display_login": "tcc7130", + "gravatar_id": "", + "url": "https://api.github.com/users/tcc7130", + "avatar_url": "https://avatars.githubusercontent.com/u/24236477?" + }, + "repo": { + "id": 216604989, + "name": "tcc7130/youtube-copy", + "url": "https://api.github.com/repos/tcc7130/youtube-copy" + }, + "payload": { + "ref": "size-columns", + "ref_type": "branch", + "pusher_type": "user" + }, + "public": true, + "created_at": "2019-10-21T21:54:51Z" + }, + { + "id": "10680625294", + "type": "PushEvent", + "actor": { + "id": 1271183, + "login": "heysupratim", + "display_login": "heysupratim", + "gravatar_id": "", + "url": "https://api.github.com/users/heysupratim", + "avatar_url": "https://avatars.githubusercontent.com/u/1271183?" + }, + "repo": { + "id": 216669006, + "name": "heysupratim/designpodcastpapers", + "url": "https://api.github.com/repos/heysupratim/designpodcastpapers" + }, + "payload": { + "push_id": 4176855036, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "5817dd632f14c5a1b9d9340ad7cf64f0f44e2d4d", + "before": "93b11e1aea2670ec515e75531aedde0d73ee78a4", + "commits": [ + { + "sha": "5817dd632f14c5a1b9d9340ad7cf64f0f44e2d4d", + "author": { + "email": "sup270792@gmail.com", + "name": "Supratim" + }, + "message": "Update README.md", + "distinct": true, + "url": "https://api.github.com/repos/heysupratim/designpodcastpapers/commits/5817dd632f14c5a1b9d9340ad7cf64f0f44e2d4d" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:51Z" + }, + { + "id": "10680625292", + "type": "PushEvent", + "actor": { + "id": 54604717, + "login": "DiegoPompeo", + "display_login": "DiegoPompeo", + "gravatar_id": "", + "url": "https://api.github.com/users/DiegoPompeo", + "avatar_url": "https://avatars.githubusercontent.com/u/54604717?" + }, + "repo": { + "id": 214837456, + "name": "DiegoPompeo/client-redesocial", + "url": "https://api.github.com/repos/DiegoPompeo/client-redesocial" + }, + "payload": { + "push_id": 4176855035, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "f3de92d93edf5a547aa7d3f96bd145920c2bc3c6", + "before": "4f4517747cad50464c61df70e1d9f6472ecfb690", + "commits": [ + { + "sha": "f3de92d93edf5a547aa7d3f96bd145920c2bc3c6", + "author": { + "email": "54604717+DiegoPompeo@users.noreply.github.com", + "name": "Diego C. Pompeo" + }, + "message": "update", + "distinct": true, + "url": "https://api.github.com/repos/DiegoPompeo/client-redesocial/commits/f3de92d93edf5a547aa7d3f96bd145920c2bc3c6" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:51Z" + }, + { + "id": "10680625296", + "type": "PullRequestEvent", + "actor": { + "id": 24723950, + "login": "dob9601", + "display_login": "dob9601", + "gravatar_id": "", + "url": "https://api.github.com/users/dob9601", + "avatar_url": "https://avatars.githubusercontent.com/u/24723950?" + }, + "repo": { + "id": 213237911, + "name": "dob9601/cowrite", + "url": "https://api.github.com/repos/dob9601/cowrite" + }, + "payload": { + "action": "opened", + "number": 6, + "pull_request": { + "url": "https://api.github.com/repos/dob9601/cowrite/pulls/6", + "id": 330711290, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzMwNzExMjkw", + "html_url": "https://github.com/dob9601/cowrite/pull/6", + "diff_url": "https://github.com/dob9601/cowrite/pull/6.diff", + "patch_url": "https://github.com/dob9601/cowrite/pull/6.patch", + "issue_url": "https://api.github.com/repos/dob9601/cowrite/issues/6", + "number": 6, + "state": "open", + "locked": false, + "title": "Patch fixing typo in the url of verification email", + "user": { + "login": "dob9601", + "id": 24723950, + "node_id": "MDQ6VXNlcjI0NzIzOTUw", + "avatar_url": "https://avatars1.githubusercontent.com/u/24723950?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dob9601", + "html_url": "https://github.com/dob9601", + "followers_url": "https://api.github.com/users/dob9601/followers", + "following_url": "https://api.github.com/users/dob9601/following{/other_user}", + "gists_url": "https://api.github.com/users/dob9601/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dob9601/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dob9601/subscriptions", + "organizations_url": "https://api.github.com/users/dob9601/orgs", + "repos_url": "https://api.github.com/users/dob9601/repos", + "events_url": "https://api.github.com/users/dob9601/events{/privacy}", + "received_events_url": "https://api.github.com/users/dob9601/received_events", + "type": "User", + "site_admin": false + }, + "body": "", + "created_at": "2019-10-21T21:54:51Z", + "updated_at": "2019-10-21T21:54:51Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/dob9601/cowrite/pulls/6/commits", + "review_comments_url": "https://api.github.com/repos/dob9601/cowrite/pulls/6/comments", + "review_comment_url": "https://api.github.com/repos/dob9601/cowrite/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/dob9601/cowrite/issues/6/comments", + "statuses_url": "https://api.github.com/repos/dob9601/cowrite/statuses/e38191eee526ca5366a553c8d6121a92b8e04c70", + "head": { + "label": "dob9601:fix-email", + "ref": "fix-email", + "sha": "e38191eee526ca5366a553c8d6121a92b8e04c70", + "user": { + "login": "dob9601", + "id": 24723950, + "node_id": "MDQ6VXNlcjI0NzIzOTUw", + "avatar_url": "https://avatars1.githubusercontent.com/u/24723950?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dob9601", + "html_url": "https://github.com/dob9601", + "followers_url": "https://api.github.com/users/dob9601/followers", + "following_url": "https://api.github.com/users/dob9601/following{/other_user}", + "gists_url": "https://api.github.com/users/dob9601/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dob9601/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dob9601/subscriptions", + "organizations_url": "https://api.github.com/users/dob9601/orgs", + "repos_url": "https://api.github.com/users/dob9601/repos", + "events_url": "https://api.github.com/users/dob9601/events{/privacy}", + "received_events_url": "https://api.github.com/users/dob9601/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 213237911, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTMyMzc5MTE=", + "name": "cowrite", + "full_name": "dob9601/cowrite", + "private": false, + "owner": { + "login": "dob9601", + "id": 24723950, + "node_id": "MDQ6VXNlcjI0NzIzOTUw", + "avatar_url": "https://avatars1.githubusercontent.com/u/24723950?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dob9601", + "html_url": "https://github.com/dob9601", + "followers_url": "https://api.github.com/users/dob9601/followers", + "following_url": "https://api.github.com/users/dob9601/following{/other_user}", + "gists_url": "https://api.github.com/users/dob9601/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dob9601/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dob9601/subscriptions", + "organizations_url": "https://api.github.com/users/dob9601/orgs", + "repos_url": "https://api.github.com/users/dob9601/repos", + "events_url": "https://api.github.com/users/dob9601/events{/privacy}", + "received_events_url": "https://api.github.com/users/dob9601/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/dob9601/cowrite", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/dob9601/cowrite", + "forks_url": "https://api.github.com/repos/dob9601/cowrite/forks", + "keys_url": "https://api.github.com/repos/dob9601/cowrite/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/dob9601/cowrite/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/dob9601/cowrite/teams", + "hooks_url": "https://api.github.com/repos/dob9601/cowrite/hooks", + "issue_events_url": "https://api.github.com/repos/dob9601/cowrite/issues/events{/number}", + "events_url": "https://api.github.com/repos/dob9601/cowrite/events", + "assignees_url": "https://api.github.com/repos/dob9601/cowrite/assignees{/user}", + "branches_url": "https://api.github.com/repos/dob9601/cowrite/branches{/branch}", + "tags_url": "https://api.github.com/repos/dob9601/cowrite/tags", + "blobs_url": "https://api.github.com/repos/dob9601/cowrite/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/dob9601/cowrite/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/dob9601/cowrite/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/dob9601/cowrite/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/dob9601/cowrite/statuses/{sha}", + "languages_url": "https://api.github.com/repos/dob9601/cowrite/languages", + "stargazers_url": "https://api.github.com/repos/dob9601/cowrite/stargazers", + "contributors_url": "https://api.github.com/repos/dob9601/cowrite/contributors", + "subscribers_url": "https://api.github.com/repos/dob9601/cowrite/subscribers", + "subscription_url": "https://api.github.com/repos/dob9601/cowrite/subscription", + "commits_url": "https://api.github.com/repos/dob9601/cowrite/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/dob9601/cowrite/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/dob9601/cowrite/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/dob9601/cowrite/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/dob9601/cowrite/contents/{+path}", + "compare_url": "https://api.github.com/repos/dob9601/cowrite/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/dob9601/cowrite/merges", + "archive_url": "https://api.github.com/repos/dob9601/cowrite/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/dob9601/cowrite/downloads", + "issues_url": "https://api.github.com/repos/dob9601/cowrite/issues{/number}", + "pulls_url": "https://api.github.com/repos/dob9601/cowrite/pulls{/number}", + "milestones_url": "https://api.github.com/repos/dob9601/cowrite/milestones{/number}", + "notifications_url": "https://api.github.com/repos/dob9601/cowrite/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/dob9601/cowrite/labels{/name}", + "releases_url": "https://api.github.com/repos/dob9601/cowrite/releases{/id}", + "deployments_url": "https://api.github.com/repos/dob9601/cowrite/deployments", + "created_at": "2019-10-06T20:21:07Z", + "updated_at": "2019-10-06T21:20:18Z", + "pushed_at": "2019-10-21T21:53:00Z", + "git_url": "git://github.com/dob9601/cowrite.git", + "ssh_url": "git@github.com:dob9601/cowrite.git", + "clone_url": "https://github.com/dob9601/cowrite.git", + "svn_url": "https://github.com/dob9601/cowrite", + "homepage": null, + "size": 214, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Python", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "dob9601:master", + "ref": "master", + "sha": "dd5167cfae62de4fe36d0865026ac9b40210fa25", + "user": { + "login": "dob9601", + "id": 24723950, + "node_id": "MDQ6VXNlcjI0NzIzOTUw", + "avatar_url": "https://avatars1.githubusercontent.com/u/24723950?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dob9601", + "html_url": "https://github.com/dob9601", + "followers_url": "https://api.github.com/users/dob9601/followers", + "following_url": "https://api.github.com/users/dob9601/following{/other_user}", + "gists_url": "https://api.github.com/users/dob9601/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dob9601/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dob9601/subscriptions", + "organizations_url": "https://api.github.com/users/dob9601/orgs", + "repos_url": "https://api.github.com/users/dob9601/repos", + "events_url": "https://api.github.com/users/dob9601/events{/privacy}", + "received_events_url": "https://api.github.com/users/dob9601/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 213237911, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTMyMzc5MTE=", + "name": "cowrite", + "full_name": "dob9601/cowrite", + "private": false, + "owner": { + "login": "dob9601", + "id": 24723950, + "node_id": "MDQ6VXNlcjI0NzIzOTUw", + "avatar_url": "https://avatars1.githubusercontent.com/u/24723950?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dob9601", + "html_url": "https://github.com/dob9601", + "followers_url": "https://api.github.com/users/dob9601/followers", + "following_url": "https://api.github.com/users/dob9601/following{/other_user}", + "gists_url": "https://api.github.com/users/dob9601/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dob9601/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dob9601/subscriptions", + "organizations_url": "https://api.github.com/users/dob9601/orgs", + "repos_url": "https://api.github.com/users/dob9601/repos", + "events_url": "https://api.github.com/users/dob9601/events{/privacy}", + "received_events_url": "https://api.github.com/users/dob9601/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/dob9601/cowrite", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/dob9601/cowrite", + "forks_url": "https://api.github.com/repos/dob9601/cowrite/forks", + "keys_url": "https://api.github.com/repos/dob9601/cowrite/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/dob9601/cowrite/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/dob9601/cowrite/teams", + "hooks_url": "https://api.github.com/repos/dob9601/cowrite/hooks", + "issue_events_url": "https://api.github.com/repos/dob9601/cowrite/issues/events{/number}", + "events_url": "https://api.github.com/repos/dob9601/cowrite/events", + "assignees_url": "https://api.github.com/repos/dob9601/cowrite/assignees{/user}", + "branches_url": "https://api.github.com/repos/dob9601/cowrite/branches{/branch}", + "tags_url": "https://api.github.com/repos/dob9601/cowrite/tags", + "blobs_url": "https://api.github.com/repos/dob9601/cowrite/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/dob9601/cowrite/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/dob9601/cowrite/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/dob9601/cowrite/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/dob9601/cowrite/statuses/{sha}", + "languages_url": "https://api.github.com/repos/dob9601/cowrite/languages", + "stargazers_url": "https://api.github.com/repos/dob9601/cowrite/stargazers", + "contributors_url": "https://api.github.com/repos/dob9601/cowrite/contributors", + "subscribers_url": "https://api.github.com/repos/dob9601/cowrite/subscribers", + "subscription_url": "https://api.github.com/repos/dob9601/cowrite/subscription", + "commits_url": "https://api.github.com/repos/dob9601/cowrite/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/dob9601/cowrite/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/dob9601/cowrite/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/dob9601/cowrite/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/dob9601/cowrite/contents/{+path}", + "compare_url": "https://api.github.com/repos/dob9601/cowrite/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/dob9601/cowrite/merges", + "archive_url": "https://api.github.com/repos/dob9601/cowrite/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/dob9601/cowrite/downloads", + "issues_url": "https://api.github.com/repos/dob9601/cowrite/issues{/number}", + "pulls_url": "https://api.github.com/repos/dob9601/cowrite/pulls{/number}", + "milestones_url": "https://api.github.com/repos/dob9601/cowrite/milestones{/number}", + "notifications_url": "https://api.github.com/repos/dob9601/cowrite/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/dob9601/cowrite/labels{/name}", + "releases_url": "https://api.github.com/repos/dob9601/cowrite/releases{/id}", + "deployments_url": "https://api.github.com/repos/dob9601/cowrite/deployments", + "created_at": "2019-10-06T20:21:07Z", + "updated_at": "2019-10-06T21:20:18Z", + "pushed_at": "2019-10-21T21:53:00Z", + "git_url": "git://github.com/dob9601/cowrite.git", + "ssh_url": "git@github.com:dob9601/cowrite.git", + "clone_url": "https://github.com/dob9601/cowrite.git", + "svn_url": "https://github.com/dob9601/cowrite", + "homepage": null, + "size": 214, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Python", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/dob9601/cowrite/pulls/6" + }, + "html": { + "href": "https://github.com/dob9601/cowrite/pull/6" + }, + "issue": { + "href": "https://api.github.com/repos/dob9601/cowrite/issues/6" + }, + "comments": { + "href": "https://api.github.com/repos/dob9601/cowrite/issues/6/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/dob9601/cowrite/pulls/6/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/dob9601/cowrite/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/dob9601/cowrite/pulls/6/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/dob9601/cowrite/statuses/e38191eee526ca5366a553c8d6121a92b8e04c70" + } + }, + "author_association": "OWNER", + "merged": false, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 1, + "deletions": 1, + "changed_files": 3 + } + }, + "public": true, + "created_at": "2019-10-21T21:54:51Z" + }, + { + "id": "10680625287", + "type": "PushEvent", + "actor": { + "id": 54672561, + "login": "EmiReno", + "display_login": "EmiReno", + "gravatar_id": "", + "url": "https://api.github.com/users/EmiReno", + "avatar_url": "https://avatars.githubusercontent.com/u/54672561?" + }, + "repo": { + "id": 206453295, + "name": "EmiReno/EmiReno.github.io", + "url": "https://api.github.com/repos/EmiReno/EmiReno.github.io" + }, + "payload": { + "push_id": 4176855034, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "132c6e3f563648754dc973ceaeae47ef2688d128", + "before": "0ac44fb2add6e1e7802ba448ac07e4fc525a0688", + "commits": [ + { + "sha": "132c6e3f563648754dc973ceaeae47ef2688d128", + "author": { + "email": "54672561+EmiReno@users.noreply.github.com", + "name": "Emille Moreno" + }, + "message": "Update style.css", + "distinct": true, + "url": "https://api.github.com/repos/EmiReno/EmiReno.github.io/commits/132c6e3f563648754dc973ceaeae47ef2688d128" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:51Z" + }, + { + "id": "10680625293", + "type": "CreateEvent", + "actor": { + "id": 47148648, + "login": "svc-software-factory", + "display_login": "svc-software-factory", + "gravatar_id": "", + "url": "https://api.github.com/users/svc-software-factory", + "avatar_url": "https://avatars.githubusercontent.com/u/47148648?" + }, + "repo": { + "id": 197735826, + "name": "adeo-gitlab/sync-github-gitlab-33", + "url": "https://api.github.com/repos/adeo-gitlab/sync-github-gitlab-33" + }, + "payload": { + "ref": "2019-10-21_21-54-44_123_scenario1", + "ref_type": "branch", + "master_branch": "master", + "description": null, + "pusher_type": "user" + }, + "public": true, + "created_at": "2019-10-21T21:54:51Z", + "org": { + "id": 52697831, + "login": "adeo-gitlab", + "gravatar_id": "", + "url": "https://api.github.com/orgs/adeo-gitlab", + "avatar_url": "https://avatars.githubusercontent.com/u/52697831?" + } + }, + { + "id": "10680625282", + "type": "PushEvent", + "actor": { + "id": 1996564, + "login": "DeBuchie", + "display_login": "DeBuchie", + "gravatar_id": "", + "url": "https://api.github.com/users/DeBuchie", + "avatar_url": "https://avatars.githubusercontent.com/u/1996564?" + }, + "repo": { + "id": 216437191, + "name": "DeBuchie/enkovortraege-frontend", + "url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend" + }, + "payload": { + "push_id": 4176855031, + "size": 2, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "077fb6369088fc334fde4cad3b4443cfd3b6546c", + "before": "087f5d8dc690e9c2ba31340bd04382d8648b9e66", + "commits": [ + { + "sha": "85e487b88d48c608c9535cd8ed7615cbdfae6617", + "author": { + "email": "andreasbuchholz@googlemail.com", + "name": "Andreas Buchholz" + }, + "message": "Added Create Vortrag Effect Demo", + "distinct": false, + "url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/commits/85e487b88d48c608c9535cd8ed7615cbdfae6617" + }, + { + "sha": "077fb6369088fc334fde4cad3b4443cfd3b6546c", + "author": { + "email": "DeBuchie@users.noreply.github.com", + "name": "Andreas Buchholz" + }, + "message": "Merge pull request #10 from DeBuchie/create_Vortrag_Effect\n\nAdded Create Vortrag Effect Demo", + "distinct": true, + "url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/commits/077fb6369088fc334fde4cad3b4443cfd3b6546c" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:51Z" + }, + { + "id": "10680625281", + "type": "PushEvent", + "actor": { + "id": 38301098, + "login": "anhthyho", + "display_login": "anhthyho", + "gravatar_id": "", + "url": "https://api.github.com/users/anhthyho", + "avatar_url": "https://avatars.githubusercontent.com/u/38301098?" + }, + "repo": { + "id": 216145117, + "name": "anhthyho/lab13", + "url": "https://api.github.com/repos/anhthyho/lab13" + }, + "payload": { + "push_id": 4176855030, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "300e8462a5018dee52ad1a7b2bc3430494496ceb", + "before": "fbaadbc8a46e76de09d522d548f985619818b0a9", + "commits": [ + { + "sha": "300e8462a5018dee52ad1a7b2bc3430494496ceb", + "author": { + "email": "anhthynho@yahoo.com", + "name": "Anh-Thy Ho" + }, + "message": "added sh", + "distinct": true, + "url": "https://api.github.com/repos/anhthyho/lab13/commits/300e8462a5018dee52ad1a7b2bc3430494496ceb" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:51Z" + }, + { + "id": "10680625278", + "type": "PullRequestReviewCommentEvent", + "actor": { + "id": 747061, + "login": "csanden", + "display_login": "csanden", + "gravatar_id": "", + "url": "https://api.github.com/users/csanden", + "avatar_url": "https://avatars.githubusercontent.com/u/747061?" + }, + "repo": { + "id": 80229651, + "name": "spinnaker/kayenta", + "url": "https://api.github.com/repos/spinnaker/kayenta" + }, + "payload": { + "action": "created", + "comment": { + "url": "https://api.github.com/repos/spinnaker/kayenta/pulls/comments/337258001", + "pull_request_review_id": 304874162, + "id": 337258001, + "node_id": "MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDMzNzI1ODAwMQ==", + "diff_hunk": "@@ -0,0 +1,99 @@\n+Objects in this document are documented using [Markdown Syntax for Object Notation (MSON)].\n+\n+### Canary Config Object model (object)\n+\n+#### Properties\n+- `name` **my-app golden signals canary config** (string, required) - Name for canary configuration.\n+- `description` **Canary config for my-app** (string, required) - Description for the canary configuration.\n+- `applications` (array[string], required) - A list of applications that the canary is for. You can just have a list with single item `ad-hoc` as the entry, unless you are storing the configuration in Kayenta and sharing it. \n+- `judge` ([CanaryJudgeConfig](#canary-judge-config), required) - Judge configuration.\n+- `metrics` (array([CanaryMetricConfig](#canary-metric-config))) - List of metrics to analyze.\n+- `templates` (map, optional) - Templates allow you to compose and parameterize advanced queries against your telemetry provider. Parameterized queries are hydrated by values provided in the canary stage. The project, resourceType, scope, and location variable bindings are implicitly available. For example, you can interpolate project using the following syntax: \\${project}.\n+- `classifier` ([CanaryClassifierConfig](#canary-classifier-config), required) - The classification configuration, such as group weights.\n+\n+\n+### CanaryJudgeConfig (object)\n+Currently there is one judge and this object should be static across all the configuration (see the above examples).\n+#### Properties\n+- `name` **NetflixACAJudge-v1.0** (string, required) - Judge to use, as of right now there is only `NetflixACAJudge-v1.0`.\n+- `judgeConfigurations` **{}** (object, required) - Map of judgement configuration, this should always be an empty object as of right now.\n+\n+\n+### CanaryMetricConfig (object)\n+Describes a metric that will be used in determining the health of a canary.\n+#### Properties\n+- `name` **http errors** (string, required) - Human readable name of the metric under test.\n+- `query` (enum[[CanaryMetricSetQueryConfig](canary-metrics-set-query-config)], required) - Query config object for your metric source type.\n+- `groups` (array[string], required) - List of metrics groups that this metric will belong to.\n+- `analysisConfigurations` ([AnalysisConfiguration](#analysis-configuration), required) - Analysis configuration, describes how to judge a given metric.\n+- `scopeName` (enum[string], required)\n+ - `default` - only accepted value here\n+\n+\n+### CanaryMetricSetQueryConfig (object)\n+Metric source interface for describing how to query for a given metric / metric source.\n+#### Properties\n+- One of\n+ - AtlasCanaryMetricSetQueryConfig\n+ - DatadogCanaryMetricSetQueryConfig\n+ - GraphiteCanaryMetricSetQueryConfig\n+ - InfluxdbCanaryMetricSetQueryConfig\n+ - NewRelicInsightsCanaryMetricSetQueryConfig\n+ - PrometheusCanaryMetricSetQueryConfig\n+ - [SignalFxCanaryMetricSetQueryConfig](../kayenta-signalfx/docs/metric-set-query-config.md)\n+ - StackdriverCanaryMetricSetQueryConfig\n+ - WavefrontCanaryMetricSetQueryConfig\n+ \n+\n+### AnalysisConfiguration (object)\n+Wrapper object that includes the Canary Analysis Configuration and describes how to judge a given metric.\n+#### Properties\n+- `canary` ([CanaryAnalysisConfiguration](#canary-analysis-configuration))\n+\n+\n+### CanaryAnalysisConfiguration (object)\n+Describes how to judge a metric, see the [Netflix Automated Canary Analysis Judge] for more information.\n+#### Properties\n+- `direction` (enum[string], required) Which direction of statistical change triggers the metric to fail.\n+ - `increase` - Use when you want the canary to fail only if it is significantly higher than the baseline (error counts, memory usage, etc, where a decrease is not a failure).\n+ - `decrease` - Use when you want the canary to fail only if it is significantly lower than the baseline (success counts, etc, where a larger number is not a failure).\n+ - `either` - Use when you want the canary to fail if it is significantly higher or lower than the baseline.\n+- `nanStrategy` (enum[string], required) How to handle NaN values which can occur if the metric does not return data for a particular time interval.\n+ - `remove` - Use when you expect a metric to always have data and you want the NaNs removed from your data set (usage metrics).\n+ - `replace` - Use when you expect a metric to return no data in certain use cases and you want the NaNs replaced with zeros (for example: count metrics, if no errors happened, then metric will return no data for that time interval).\n+- `critical` **true** (boolean, optional) - Use to fail the entire canary if this metric fails (recommended for important metrics that signal service outages or severe problems).\n+- `mustHaveData` **true** (boolean, optional) - Use to fail a metric if data is missing.\n+- `effectSize` ([EffectSize](#effect-size), optional) - Controls how much different the metric needs to be to fail or fail critically.\n+\n+\n+### EffectSize\n+Controls the degree of statistical significance the metric needs to fail or fail critically. \n+Metrics marked as critical can also define `criticalIncrease` and `criticalDecrease`. \n+See the [Netflix Automated Canary Analysis Judge] and [Mann Whitney Classifier] classes for more information.\n+\n+#### Properties\n+- `allowedIncrease` **1.1** (number, optional) - Defaults to 1. The multiplier increase that must be met for the metric to fail. This example makes the metric fail when the metric has increased 10% from the baseline.\n+- `allowedDecrease` **0.90** (number, optional) - Defaults to 1. The multiplier decrease that must be met for the metric to fail. This example makes the metric fail when the metric has decreased 10% from the baseline.\n+- `criticalIncrease` **5.0** (number, optional) - Defaults to 1. The multiplier increase that must be met for the metric to be a critical failure and fail the entire analysis with a score of 0. This example make the canary fail critically if there is a 5x increase.", + "path": "docs/canary-config.md", + "position": 78, + "original_position": 77, + "commit_id": "0df10badb72b5272f4c3b5ca461636504b10e03b", + "original_commit_id": "6829c96f81368e4770501249fb7ffcd0d79e4f87", + "user": { + "login": "csanden", + "id": 747061, + "node_id": "MDQ6VXNlcjc0NzA2MQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/747061?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/csanden", + "html_url": "https://github.com/csanden", + "followers_url": "https://api.github.com/users/csanden/followers", + "following_url": "https://api.github.com/users/csanden/following{/other_user}", + "gists_url": "https://api.github.com/users/csanden/gists{/gist_id}", + "starred_url": "https://api.github.com/users/csanden/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/csanden/subscriptions", + "organizations_url": "https://api.github.com/users/csanden/orgs", + "repos_url": "https://api.github.com/users/csanden/repos", + "events_url": "https://api.github.com/users/csanden/events{/privacy}", + "received_events_url": "https://api.github.com/users/csanden/received_events", + "type": "User", + "site_admin": false + }, + "body": "That is correct. If a metric is marked a `critical` then we will check if the user has supplied a `criticalIncrease` or `criticalDecrease` value. These properties allow the user to control the sensitivity of a \"critical\" failure. Note that, a critical failure will result in the entire canary to be marked as a failure and receive a score of zero.", + "created_at": "2019-10-21T21:54:50Z", + "updated_at": "2019-10-21T21:54:51Z", + "html_url": "https://github.com/spinnaker/kayenta/pull/622#discussion_r337258001", + "pull_request_url": "https://api.github.com/repos/spinnaker/kayenta/pulls/622", + "author_association": "CONTRIBUTOR", + "_links": { + "self": { + "href": "https://api.github.com/repos/spinnaker/kayenta/pulls/comments/337258001" + }, + "html": { + "href": "https://github.com/spinnaker/kayenta/pull/622#discussion_r337258001" + }, + "pull_request": { + "href": "https://api.github.com/repos/spinnaker/kayenta/pulls/622" + } + }, + "in_reply_to_id": 336213213 + }, + "pull_request": { + "url": "https://api.github.com/repos/spinnaker/kayenta/pulls/622", + "id": 328941589, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzI4OTQxNTg5", + "html_url": "https://github.com/spinnaker/kayenta/pull/622", + "diff_url": "https://github.com/spinnaker/kayenta/pull/622.diff", + "patch_url": "https://github.com/spinnaker/kayenta/pull/622.patch", + "issue_url": "https://api.github.com/repos/spinnaker/kayenta/issues/622", + "number": 622, + "state": "open", + "locked": false, + "title": "chore(docs): add documentation on the object structure of canary config.", + "user": { + "login": "fieldju", + "id": 711726, + "node_id": "MDQ6VXNlcjcxMTcyNg==", + "avatar_url": "https://avatars2.githubusercontent.com/u/711726?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/fieldju", + "html_url": "https://github.com/fieldju", + "followers_url": "https://api.github.com/users/fieldju/followers", + "following_url": "https://api.github.com/users/fieldju/following{/other_user}", + "gists_url": "https://api.github.com/users/fieldju/gists{/gist_id}", + "starred_url": "https://api.github.com/users/fieldju/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/fieldju/subscriptions", + "organizations_url": "https://api.github.com/users/fieldju/orgs", + "repos_url": "https://api.github.com/users/fieldju/repos", + "events_url": "https://api.github.com/users/fieldju/events{/privacy}", + "received_events_url": "https://api.github.com/users/fieldju/received_events", + "type": "User", + "site_admin": false + }, + "body": "As discussed here: https://github.com/spinnaker/kayenta/pull/621#discussion_r334932676\r\n\r\nThis is a PR of my internal documentation of the Object structure of the Canary Config that documents some of the hidden features that the UI doesn't expose.\r\n\r\nThese probably aren't perfect but are better than nothing.\r\n\r\nOne thing that I am still confused on that maybe @csanden can add input on is the difference between `critical` and `allowed` increase / decrease.\r\n\r\n", + "created_at": "2019-10-16T20:22:43Z", + "updated_at": "2019-10-21T21:54:51Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "e13f5b5e7eff370e432000d032f257140d61c3dc", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "csanden", + "id": 747061, + "node_id": "MDQ6VXNlcjc0NzA2MQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/747061?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/csanden", + "html_url": "https://github.com/csanden", + "followers_url": "https://api.github.com/users/csanden/followers", + "following_url": "https://api.github.com/users/csanden/following{/other_user}", + "gists_url": "https://api.github.com/users/csanden/gists{/gist_id}", + "starred_url": "https://api.github.com/users/csanden/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/csanden/subscriptions", + "organizations_url": "https://api.github.com/users/csanden/orgs", + "repos_url": "https://api.github.com/users/csanden/repos", + "events_url": "https://api.github.com/users/csanden/events{/privacy}", + "received_events_url": "https://api.github.com/users/csanden/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/spinnaker/kayenta/pulls/622/commits", + "review_comments_url": "https://api.github.com/repos/spinnaker/kayenta/pulls/622/comments", + "review_comment_url": "https://api.github.com/repos/spinnaker/kayenta/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/spinnaker/kayenta/issues/622/comments", + "statuses_url": "https://api.github.com/repos/spinnaker/kayenta/statuses/0df10badb72b5272f4c3b5ca461636504b10e03b", + "head": { + "label": "Nike-Inc:docs/canary-config", + "ref": "docs/canary-config", + "sha": "0df10badb72b5272f4c3b5ca461636504b10e03b", + "user": { + "login": "Nike-Inc", + "id": 1435711, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE0MzU3MTE=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1435711?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Nike-Inc", + "html_url": "https://github.com/Nike-Inc", + "followers_url": "https://api.github.com/users/Nike-Inc/followers", + "following_url": "https://api.github.com/users/Nike-Inc/following{/other_user}", + "gists_url": "https://api.github.com/users/Nike-Inc/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Nike-Inc/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Nike-Inc/subscriptions", + "organizations_url": "https://api.github.com/users/Nike-Inc/orgs", + "repos_url": "https://api.github.com/users/Nike-Inc/repos", + "events_url": "https://api.github.com/users/Nike-Inc/events{/privacy}", + "received_events_url": "https://api.github.com/users/Nike-Inc/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 148255222, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDgyNTUyMjI=", + "name": "kayenta", + "full_name": "Nike-Inc/kayenta", + "private": false, + "owner": { + "login": "Nike-Inc", + "id": 1435711, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE0MzU3MTE=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1435711?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Nike-Inc", + "html_url": "https://github.com/Nike-Inc", + "followers_url": "https://api.github.com/users/Nike-Inc/followers", + "following_url": "https://api.github.com/users/Nike-Inc/following{/other_user}", + "gists_url": "https://api.github.com/users/Nike-Inc/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Nike-Inc/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Nike-Inc/subscriptions", + "organizations_url": "https://api.github.com/users/Nike-Inc/orgs", + "repos_url": "https://api.github.com/users/Nike-Inc/repos", + "events_url": "https://api.github.com/users/Nike-Inc/events{/privacy}", + "received_events_url": "https://api.github.com/users/Nike-Inc/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/Nike-Inc/kayenta", + "description": "Fork of https://github.com/spinnaker/kayenta for making PRs.", + "fork": true, + "url": "https://api.github.com/repos/Nike-Inc/kayenta", + "forks_url": "https://api.github.com/repos/Nike-Inc/kayenta/forks", + "keys_url": "https://api.github.com/repos/Nike-Inc/kayenta/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Nike-Inc/kayenta/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Nike-Inc/kayenta/teams", + "hooks_url": "https://api.github.com/repos/Nike-Inc/kayenta/hooks", + "issue_events_url": "https://api.github.com/repos/Nike-Inc/kayenta/issues/events{/number}", + "events_url": "https://api.github.com/repos/Nike-Inc/kayenta/events", + "assignees_url": "https://api.github.com/repos/Nike-Inc/kayenta/assignees{/user}", + "branches_url": "https://api.github.com/repos/Nike-Inc/kayenta/branches{/branch}", + "tags_url": "https://api.github.com/repos/Nike-Inc/kayenta/tags", + "blobs_url": "https://api.github.com/repos/Nike-Inc/kayenta/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Nike-Inc/kayenta/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Nike-Inc/kayenta/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Nike-Inc/kayenta/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Nike-Inc/kayenta/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Nike-Inc/kayenta/languages", + "stargazers_url": "https://api.github.com/repos/Nike-Inc/kayenta/stargazers", + "contributors_url": "https://api.github.com/repos/Nike-Inc/kayenta/contributors", + "subscribers_url": "https://api.github.com/repos/Nike-Inc/kayenta/subscribers", + "subscription_url": "https://api.github.com/repos/Nike-Inc/kayenta/subscription", + "commits_url": "https://api.github.com/repos/Nike-Inc/kayenta/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Nike-Inc/kayenta/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Nike-Inc/kayenta/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Nike-Inc/kayenta/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Nike-Inc/kayenta/contents/{+path}", + "compare_url": "https://api.github.com/repos/Nike-Inc/kayenta/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Nike-Inc/kayenta/merges", + "archive_url": "https://api.github.com/repos/Nike-Inc/kayenta/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Nike-Inc/kayenta/downloads", + "issues_url": "https://api.github.com/repos/Nike-Inc/kayenta/issues{/number}", + "pulls_url": "https://api.github.com/repos/Nike-Inc/kayenta/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Nike-Inc/kayenta/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Nike-Inc/kayenta/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Nike-Inc/kayenta/labels{/name}", + "releases_url": "https://api.github.com/repos/Nike-Inc/kayenta/releases{/id}", + "deployments_url": "https://api.github.com/repos/Nike-Inc/kayenta/deployments", + "created_at": "2018-09-11T03:30:40Z", + "updated_at": "2019-06-28T17:37:34Z", + "pushed_at": "2019-10-18T19:04:43Z", + "git_url": "git://github.com/Nike-Inc/kayenta.git", + "ssh_url": "git@github.com:Nike-Inc/kayenta.git", + "clone_url": "https://github.com/Nike-Inc/kayenta.git", + "svn_url": "https://github.com/Nike-Inc/kayenta", + "homepage": "", + "size": 10807, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "spinnaker:master", + "ref": "master", + "sha": "fde9a0359938f6442c1049e2958d5937e02cf612", + "user": { + "login": "spinnaker", + "id": 7634182, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc2MzQxODI=", + "avatar_url": "https://avatars1.githubusercontent.com/u/7634182?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/spinnaker", + "html_url": "https://github.com/spinnaker", + "followers_url": "https://api.github.com/users/spinnaker/followers", + "following_url": "https://api.github.com/users/spinnaker/following{/other_user}", + "gists_url": "https://api.github.com/users/spinnaker/gists{/gist_id}", + "starred_url": "https://api.github.com/users/spinnaker/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/spinnaker/subscriptions", + "organizations_url": "https://api.github.com/users/spinnaker/orgs", + "repos_url": "https://api.github.com/users/spinnaker/repos", + "events_url": "https://api.github.com/users/spinnaker/events{/privacy}", + "received_events_url": "https://api.github.com/users/spinnaker/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 80229651, + "node_id": "MDEwOlJlcG9zaXRvcnk4MDIyOTY1MQ==", + "name": "kayenta", + "full_name": "spinnaker/kayenta", + "private": false, + "owner": { + "login": "spinnaker", + "id": 7634182, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc2MzQxODI=", + "avatar_url": "https://avatars1.githubusercontent.com/u/7634182?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/spinnaker", + "html_url": "https://github.com/spinnaker", + "followers_url": "https://api.github.com/users/spinnaker/followers", + "following_url": "https://api.github.com/users/spinnaker/following{/other_user}", + "gists_url": "https://api.github.com/users/spinnaker/gists{/gist_id}", + "starred_url": "https://api.github.com/users/spinnaker/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/spinnaker/subscriptions", + "organizations_url": "https://api.github.com/users/spinnaker/orgs", + "repos_url": "https://api.github.com/users/spinnaker/repos", + "events_url": "https://api.github.com/users/spinnaker/events{/privacy}", + "received_events_url": "https://api.github.com/users/spinnaker/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/spinnaker/kayenta", + "description": "Automated Canary Service", + "fork": false, + "url": "https://api.github.com/repos/spinnaker/kayenta", + "forks_url": "https://api.github.com/repos/spinnaker/kayenta/forks", + "keys_url": "https://api.github.com/repos/spinnaker/kayenta/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/spinnaker/kayenta/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/spinnaker/kayenta/teams", + "hooks_url": "https://api.github.com/repos/spinnaker/kayenta/hooks", + "issue_events_url": "https://api.github.com/repos/spinnaker/kayenta/issues/events{/number}", + "events_url": "https://api.github.com/repos/spinnaker/kayenta/events", + "assignees_url": "https://api.github.com/repos/spinnaker/kayenta/assignees{/user}", + "branches_url": "https://api.github.com/repos/spinnaker/kayenta/branches{/branch}", + "tags_url": "https://api.github.com/repos/spinnaker/kayenta/tags", + "blobs_url": "https://api.github.com/repos/spinnaker/kayenta/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/spinnaker/kayenta/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/spinnaker/kayenta/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/spinnaker/kayenta/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/spinnaker/kayenta/statuses/{sha}", + "languages_url": "https://api.github.com/repos/spinnaker/kayenta/languages", + "stargazers_url": "https://api.github.com/repos/spinnaker/kayenta/stargazers", + "contributors_url": "https://api.github.com/repos/spinnaker/kayenta/contributors", + "subscribers_url": "https://api.github.com/repos/spinnaker/kayenta/subscribers", + "subscription_url": "https://api.github.com/repos/spinnaker/kayenta/subscription", + "commits_url": "https://api.github.com/repos/spinnaker/kayenta/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/spinnaker/kayenta/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/spinnaker/kayenta/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/spinnaker/kayenta/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/spinnaker/kayenta/contents/{+path}", + "compare_url": "https://api.github.com/repos/spinnaker/kayenta/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/spinnaker/kayenta/merges", + "archive_url": "https://api.github.com/repos/spinnaker/kayenta/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/spinnaker/kayenta/downloads", + "issues_url": "https://api.github.com/repos/spinnaker/kayenta/issues{/number}", + "pulls_url": "https://api.github.com/repos/spinnaker/kayenta/pulls{/number}", + "milestones_url": "https://api.github.com/repos/spinnaker/kayenta/milestones{/number}", + "notifications_url": "https://api.github.com/repos/spinnaker/kayenta/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/spinnaker/kayenta/labels{/name}", + "releases_url": "https://api.github.com/repos/spinnaker/kayenta/releases{/id}", + "deployments_url": "https://api.github.com/repos/spinnaker/kayenta/deployments", + "created_at": "2017-01-27T17:30:07Z", + "updated_at": "2019-10-21T20:10:08Z", + "pushed_at": "2019-10-21T20:10:06Z", + "git_url": "git://github.com/spinnaker/kayenta.git", + "ssh_url": "git@github.com:spinnaker/kayenta.git", + "clone_url": "https://github.com/spinnaker/kayenta.git", + "svn_url": "https://github.com/spinnaker/kayenta", + "homepage": "", + "size": 10788, + "stargazers_count": 891, + "watchers_count": 891, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 339, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 16, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 339, + "open_issues": 16, + "watchers": 891, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/spinnaker/kayenta/pulls/622" + }, + "html": { + "href": "https://github.com/spinnaker/kayenta/pull/622" + }, + "issue": { + "href": "https://api.github.com/repos/spinnaker/kayenta/issues/622" + }, + "comments": { + "href": "https://api.github.com/repos/spinnaker/kayenta/issues/622/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/spinnaker/kayenta/pulls/622/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/spinnaker/kayenta/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/spinnaker/kayenta/pulls/622/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/spinnaker/kayenta/statuses/0df10badb72b5272f4c3b5ca461636504b10e03b" + } + }, + "author_association": "COLLABORATOR" + } + }, + "public": true, + "created_at": "2019-10-21T21:54:50Z", + "org": { + "id": 7634182, + "login": "spinnaker", + "gravatar_id": "", + "url": "https://api.github.com/orgs/spinnaker", + "avatar_url": "https://avatars.githubusercontent.com/u/7634182?" + } + }, + { + "id": "10680625274", + "type": "PushEvent", + "actor": { + "id": 10810283, + "login": "direwolf-github", + "display_login": "direwolf-github", + "gravatar_id": "", + "url": "https://api.github.com/users/direwolf-github", + "avatar_url": "https://avatars.githubusercontent.com/u/10810283?" + }, + "repo": { + "id": 183051410, + "name": "direwolf-github/my-app", + "url": "https://api.github.com/repos/direwolf-github/my-app" + }, + "payload": { + "push_id": 4176855026, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/branch-cdd0a924", + "head": "7f0283fe374aacb02442659414e038b1dc39d1c6", + "before": "97b657afdf54d3b3ccbcb094fc803fee1c0e5821", + "commits": [ + { + "sha": "7f0283fe374aacb02442659414e038b1dc39d1c6", + "author": { + "email": "heroku-lifecycle+direwolf-github@salesforce.com", + "name": "direwolf-github" + }, + "message": "add readme.txt", + "distinct": true, + "url": "https://api.github.com/repos/direwolf-github/my-app/commits/7f0283fe374aacb02442659414e038b1dc39d1c6" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:51Z" + }, + { + "id": "10680625275", + "type": "IssueCommentEvent", + "actor": { + "id": 43851500, + "login": "instasck", + "display_login": "instasck", + "gravatar_id": "", + "url": "https://api.github.com/users/instasck", + "avatar_url": "https://avatars.githubusercontent.com/u/43851500?" + }, + "repo": { + "id": 191108343, + "name": "realsirjoe/instagram-scraper", + "url": "https://api.github.com/repos/realsirjoe/instagram-scraper" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/realsirjoe/instagram-scraper/issues/44", + "repository_url": "https://api.github.com/repos/realsirjoe/instagram-scraper", + "labels_url": "https://api.github.com/repos/realsirjoe/instagram-scraper/issues/44/labels{/name}", + "comments_url": "https://api.github.com/repos/realsirjoe/instagram-scraper/issues/44/comments", + "events_url": "https://api.github.com/repos/realsirjoe/instagram-scraper/issues/44/events", + "html_url": "https://github.com/realsirjoe/instagram-scraper/issues/44", + "id": 487365075, + "node_id": "MDU6SXNzdWU0ODczNjUwNzU=", + "number": 44, + "title": "KeyError: 'ProfilePage", + "user": { + "login": "ZIVVAL", + "id": 45262725, + "node_id": "MDQ6VXNlcjQ1MjYyNzI1", + "avatar_url": "https://avatars2.githubusercontent.com/u/45262725?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ZIVVAL", + "html_url": "https://github.com/ZIVVAL", + "followers_url": "https://api.github.com/users/ZIVVAL/followers", + "following_url": "https://api.github.com/users/ZIVVAL/following{/other_user}", + "gists_url": "https://api.github.com/users/ZIVVAL/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ZIVVAL/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ZIVVAL/subscriptions", + "organizations_url": "https://api.github.com/users/ZIVVAL/orgs", + "repos_url": "https://api.github.com/users/ZIVVAL/repos", + "events_url": "https://api.github.com/users/ZIVVAL/events{/privacy}", + "received_events_url": "https://api.github.com/users/ZIVVAL/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2019-08-30T08:47:32Z", + "updated_at": "2019-10-21T21:54:51Z", + "closed_at": null, + "author_association": "NONE", + "body": "All worked well and smooth untl few hours a go.\r\n\r\nI tried the user with proxy and got:\r\nif user_array['entry_data']['ProfilePage'][0]['graphql']['user'] is None:\r\nKeyError: 'ProfilePage'\r\n\r\nSo I tried without and all seems to be working for few times and again keyError: ProfilePage\r\nAny suggestions" + }, + "comment": { + "url": "https://api.github.com/repos/realsirjoe/instagram-scraper/issues/comments/544724580", + "html_url": "https://github.com/realsirjoe/instagram-scraper/issues/44#issuecomment-544724580", + "issue_url": "https://api.github.com/repos/realsirjoe/instagram-scraper/issues/44", + "id": 544724580, + "node_id": "MDEyOklzc3VlQ29tbWVudDU0NDcyNDU4MA==", + "user": { + "login": "instasck", + "id": 43851500, + "node_id": "MDQ6VXNlcjQzODUxNTAw", + "avatar_url": "https://avatars0.githubusercontent.com/u/43851500?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/instasck", + "html_url": "https://github.com/instasck", + "followers_url": "https://api.github.com/users/instasck/followers", + "following_url": "https://api.github.com/users/instasck/following{/other_user}", + "gists_url": "https://api.github.com/users/instasck/gists{/gist_id}", + "starred_url": "https://api.github.com/users/instasck/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/instasck/subscriptions", + "organizations_url": "https://api.github.com/users/instasck/orgs", + "repos_url": "https://api.github.com/users/instasck/repos", + "events_url": "https://api.github.com/users/instasck/events{/privacy}", + "received_events_url": "https://api.github.com/users/instasck/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2019-10-21T21:54:51Z", + "updated_at": "2019-10-21T21:54:51Z", + "author_association": "NONE", + "body": "@suxSx I now don't use a login user just scrape without user and a 4g proxy.\r\nIt seems to not work for 50% of times with return code:\r\n{'config': {'csrf_token': '5aS6alZEvNVGGRlKCxYwxaHM4JJASvMZ', 'viewer': None, 'viewerId': None}, 'country_code': 'IL', 'language_code': 'en', 'locale': 'en_US', 'entry_data': {'ProfilePage': [{'logging_page_id': 'prof\r\n\r\nWhat can I do ?" + } + }, + "public": true, + "created_at": "2019-10-21T21:54:51Z" + }, + { + "id": "10680625217", + "type": "PushEvent", + "actor": { + "id": 10810283, + "login": "direwolf-github", + "display_login": "direwolf-github", + "gravatar_id": "", + "url": "https://api.github.com/users/direwolf-github", + "avatar_url": "https://avatars.githubusercontent.com/u/10810283?" + }, + "repo": { + "id": 216672326, + "name": "direwolf-github/my-app-752826ef", + "url": "https://api.github.com/repos/direwolf-github/my-app-752826ef" + }, + "payload": { + "push_id": 4176855000, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/branch-c7fa2a10", + "head": "a3c6c818cf13f328cdb74b9a37baa9186f215131", + "before": "18395ef48a32eec03d7631dd1750aa3d81fd1fa2", + "commits": [ + { + "sha": "a3c6c818cf13f328cdb74b9a37baa9186f215131", + "author": { + "email": "heroku-lifecycle+direwolf-github@salesforce.com", + "name": "direwolf-github" + }, + "message": "add readme.txt", + "distinct": true, + "url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/commits/a3c6c818cf13f328cdb74b9a37baa9186f215131" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:50Z" + }, + { + "id": "10680625272", + "type": "PullRequestEvent", + "actor": { + "id": 15252235, + "login": "EmreAtes", + "display_login": "EmreAtes", + "gravatar_id": "", + "url": "https://api.github.com/users/EmreAtes", + "avatar_url": "https://avatars.githubusercontent.com/u/15252235?" + }, + "repo": { + "id": 216323481, + "name": "uuid-rs/uuid-gdb", + "url": "https://api.github.com/repos/uuid-rs/uuid-gdb" + }, + "payload": { + "action": "opened", + "number": 1, + "pull_request": { + "url": "https://api.github.com/repos/uuid-rs/uuid-gdb/pulls/1", + "id": 330711287, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzMwNzExMjg3", + "html_url": "https://github.com/uuid-rs/uuid-gdb/pull/1", + "diff_url": "https://github.com/uuid-rs/uuid-gdb/pull/1.diff", + "patch_url": "https://github.com/uuid-rs/uuid-gdb/pull/1.patch", + "issue_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/issues/1", + "number": 1, + "state": "open", + "locked": false, + "title": "Add initial files", + "user": { + "login": "EmreAtes", + "id": 15252235, + "node_id": "MDQ6VXNlcjE1MjUyMjM1", + "avatar_url": "https://avatars1.githubusercontent.com/u/15252235?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/EmreAtes", + "html_url": "https://github.com/EmreAtes", + "followers_url": "https://api.github.com/users/EmreAtes/followers", + "following_url": "https://api.github.com/users/EmreAtes/following{/other_user}", + "gists_url": "https://api.github.com/users/EmreAtes/gists{/gist_id}", + "starred_url": "https://api.github.com/users/EmreAtes/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/EmreAtes/subscriptions", + "organizations_url": "https://api.github.com/users/EmreAtes/orgs", + "repos_url": "https://api.github.com/users/EmreAtes/repos", + "events_url": "https://api.github.com/users/EmreAtes/events{/privacy}", + "received_events_url": "https://api.github.com/users/EmreAtes/received_events", + "type": "User", + "site_admin": false + }, + "body": "These are the initial printers I put in [#428](https://github.com/uuid-rs/uuid/issues/428).", + "created_at": "2019-10-21T21:54:50Z", + "updated_at": "2019-10-21T21:54:50Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/pulls/1/commits", + "review_comments_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/pulls/1/comments", + "review_comment_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/issues/1/comments", + "statuses_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/statuses/49316b28673041a2488dedefc9d75a56faab3b0e", + "head": { + "label": "uuid-rs:develop", + "ref": "develop", + "sha": "49316b28673041a2488dedefc9d75a56faab3b0e", + "user": { + "login": "uuid-rs", + "id": 35938770, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjM1OTM4Nzcw", + "avatar_url": "https://avatars2.githubusercontent.com/u/35938770?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/uuid-rs", + "html_url": "https://github.com/uuid-rs", + "followers_url": "https://api.github.com/users/uuid-rs/followers", + "following_url": "https://api.github.com/users/uuid-rs/following{/other_user}", + "gists_url": "https://api.github.com/users/uuid-rs/gists{/gist_id}", + "starred_url": "https://api.github.com/users/uuid-rs/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/uuid-rs/subscriptions", + "organizations_url": "https://api.github.com/users/uuid-rs/orgs", + "repos_url": "https://api.github.com/users/uuid-rs/repos", + "events_url": "https://api.github.com/users/uuid-rs/events{/privacy}", + "received_events_url": "https://api.github.com/users/uuid-rs/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 216323481, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTYzMjM0ODE=", + "name": "uuid-gdb", + "full_name": "uuid-rs/uuid-gdb", + "private": false, + "owner": { + "login": "uuid-rs", + "id": 35938770, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjM1OTM4Nzcw", + "avatar_url": "https://avatars2.githubusercontent.com/u/35938770?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/uuid-rs", + "html_url": "https://github.com/uuid-rs", + "followers_url": "https://api.github.com/users/uuid-rs/followers", + "following_url": "https://api.github.com/users/uuid-rs/following{/other_user}", + "gists_url": "https://api.github.com/users/uuid-rs/gists{/gist_id}", + "starred_url": "https://api.github.com/users/uuid-rs/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/uuid-rs/subscriptions", + "organizations_url": "https://api.github.com/users/uuid-rs/orgs", + "repos_url": "https://api.github.com/users/uuid-rs/repos", + "events_url": "https://api.github.com/users/uuid-rs/events{/privacy}", + "received_events_url": "https://api.github.com/users/uuid-rs/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/uuid-rs/uuid-gdb", + "description": "GDB pretty-printers for uuid::Uuid", + "fork": false, + "url": "https://api.github.com/repos/uuid-rs/uuid-gdb", + "forks_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/forks", + "keys_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/teams", + "hooks_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/hooks", + "issue_events_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/issues/events{/number}", + "events_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/events", + "assignees_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/assignees{/user}", + "branches_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/branches{/branch}", + "tags_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/tags", + "blobs_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/statuses/{sha}", + "languages_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/languages", + "stargazers_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/stargazers", + "contributors_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/contributors", + "subscribers_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/subscribers", + "subscription_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/subscription", + "commits_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/contents/{+path}", + "compare_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/merges", + "archive_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/downloads", + "issues_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/issues{/number}", + "pulls_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/pulls{/number}", + "milestones_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/milestones{/number}", + "notifications_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/labels{/name}", + "releases_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/releases{/id}", + "deployments_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/deployments", + "created_at": "2019-10-20T07:24:16Z", + "updated_at": "2019-10-20T07:24:19Z", + "pushed_at": "2019-10-21T21:52:31Z", + "git_url": "git://github.com/uuid-rs/uuid-gdb.git", + "ssh_url": "git@github.com:uuid-rs/uuid-gdb.git", + "clone_url": "https://github.com/uuid-rs/uuid-gdb.git", + "svn_url": "https://github.com/uuid-rs/uuid-gdb", + "homepage": null, + "size": 1, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "uuid-rs:master", + "ref": "master", + "sha": "2070c7bb3f09250854a5144985aa5002f4d0f11b", + "user": { + "login": "uuid-rs", + "id": 35938770, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjM1OTM4Nzcw", + "avatar_url": "https://avatars2.githubusercontent.com/u/35938770?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/uuid-rs", + "html_url": "https://github.com/uuid-rs", + "followers_url": "https://api.github.com/users/uuid-rs/followers", + "following_url": "https://api.github.com/users/uuid-rs/following{/other_user}", + "gists_url": "https://api.github.com/users/uuid-rs/gists{/gist_id}", + "starred_url": "https://api.github.com/users/uuid-rs/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/uuid-rs/subscriptions", + "organizations_url": "https://api.github.com/users/uuid-rs/orgs", + "repos_url": "https://api.github.com/users/uuid-rs/repos", + "events_url": "https://api.github.com/users/uuid-rs/events{/privacy}", + "received_events_url": "https://api.github.com/users/uuid-rs/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 216323481, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTYzMjM0ODE=", + "name": "uuid-gdb", + "full_name": "uuid-rs/uuid-gdb", + "private": false, + "owner": { + "login": "uuid-rs", + "id": 35938770, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjM1OTM4Nzcw", + "avatar_url": "https://avatars2.githubusercontent.com/u/35938770?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/uuid-rs", + "html_url": "https://github.com/uuid-rs", + "followers_url": "https://api.github.com/users/uuid-rs/followers", + "following_url": "https://api.github.com/users/uuid-rs/following{/other_user}", + "gists_url": "https://api.github.com/users/uuid-rs/gists{/gist_id}", + "starred_url": "https://api.github.com/users/uuid-rs/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/uuid-rs/subscriptions", + "organizations_url": "https://api.github.com/users/uuid-rs/orgs", + "repos_url": "https://api.github.com/users/uuid-rs/repos", + "events_url": "https://api.github.com/users/uuid-rs/events{/privacy}", + "received_events_url": "https://api.github.com/users/uuid-rs/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/uuid-rs/uuid-gdb", + "description": "GDB pretty-printers for uuid::Uuid", + "fork": false, + "url": "https://api.github.com/repos/uuid-rs/uuid-gdb", + "forks_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/forks", + "keys_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/teams", + "hooks_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/hooks", + "issue_events_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/issues/events{/number}", + "events_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/events", + "assignees_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/assignees{/user}", + "branches_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/branches{/branch}", + "tags_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/tags", + "blobs_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/statuses/{sha}", + "languages_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/languages", + "stargazers_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/stargazers", + "contributors_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/contributors", + "subscribers_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/subscribers", + "subscription_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/subscription", + "commits_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/contents/{+path}", + "compare_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/merges", + "archive_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/downloads", + "issues_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/issues{/number}", + "pulls_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/pulls{/number}", + "milestones_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/milestones{/number}", + "notifications_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/labels{/name}", + "releases_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/releases{/id}", + "deployments_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/deployments", + "created_at": "2019-10-20T07:24:16Z", + "updated_at": "2019-10-20T07:24:19Z", + "pushed_at": "2019-10-21T21:52:31Z", + "git_url": "git://github.com/uuid-rs/uuid-gdb.git", + "ssh_url": "git@github.com:uuid-rs/uuid-gdb.git", + "clone_url": "https://github.com/uuid-rs/uuid-gdb.git", + "svn_url": "https://github.com/uuid-rs/uuid-gdb", + "homepage": null, + "size": 1, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/uuid-rs/uuid-gdb/pulls/1" + }, + "html": { + "href": "https://github.com/uuid-rs/uuid-gdb/pull/1" + }, + "issue": { + "href": "https://api.github.com/repos/uuid-rs/uuid-gdb/issues/1" + }, + "comments": { + "href": "https://api.github.com/repos/uuid-rs/uuid-gdb/issues/1/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/uuid-rs/uuid-gdb/pulls/1/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/uuid-rs/uuid-gdb/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/uuid-rs/uuid-gdb/pulls/1/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/uuid-rs/uuid-gdb/statuses/49316b28673041a2488dedefc9d75a56faab3b0e" + } + }, + "author_association": "COLLABORATOR", + "merged": false, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 35, + "deletions": 0, + "changed_files": 3 + } + }, + "public": true, + "created_at": "2019-10-21T21:54:51Z", + "org": { + "id": 35938770, + "login": "uuid-rs", + "gravatar_id": "", + "url": "https://api.github.com/orgs/uuid-rs", + "avatar_url": "https://avatars.githubusercontent.com/u/35938770?" + } + }, + { + "id": "10680625267", + "type": "PushEvent", + "actor": { + "id": 51011840, + "login": "othhotro", + "display_login": "othhotro", + "gravatar_id": "", + "url": "https://api.github.com/users/othhotro", + "avatar_url": "https://avatars.githubusercontent.com/u/51011840?" + }, + "repo": { + "id": 201879384, + "name": "othhotro/Roo.Exe", + "url": "https://api.github.com/repos/othhotro/Roo.Exe" + }, + "payload": { + "push_id": 4176855025, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "481b4f5fd37451b9e9d2102f44f13bc9d18c599f", + "before": "ff47c37132b9f65b7a019f68bd6f920f9557850f", + "commits": [ + { + "sha": "481b4f5fd37451b9e9d2102f44f13bc9d18c599f", + "author": { + "email": "oth.hotro@gmail.com", + "name": "oth.hotro@gmail.com" + }, + "message": "Lần chạy [2019-10-22 04-53]:Lần thứ 52", + "distinct": true, + "url": "https://api.github.com/repos/othhotro/Roo.Exe/commits/481b4f5fd37451b9e9d2102f44f13bc9d18c599f" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:51Z" + }, + { + "id": "10680625270", + "type": "IssuesEvent", + "actor": { + "id": 36283240, + "login": "jmorrow2", + "display_login": "jmorrow2", + "gravatar_id": "", + "url": "https://api.github.com/users/jmorrow2", + "avatar_url": "https://avatars.githubusercontent.com/u/36283240?" + }, + "repo": { + "id": 206670154, + "name": "cse442-fall-2019-offering/442projects-wizard-hack", + "url": "https://api.github.com/repos/cse442-fall-2019-offering/442projects-wizard-hack" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/cse442-fall-2019-offering/442projects-wizard-hack/issues/101", + "repository_url": "https://api.github.com/repos/cse442-fall-2019-offering/442projects-wizard-hack", + "labels_url": "https://api.github.com/repos/cse442-fall-2019-offering/442projects-wizard-hack/issues/101/labels{/name}", + "comments_url": "https://api.github.com/repos/cse442-fall-2019-offering/442projects-wizard-hack/issues/101/comments", + "events_url": "https://api.github.com/repos/cse442-fall-2019-offering/442projects-wizard-hack/issues/101/events", + "html_url": "https://github.com/cse442-fall-2019-offering/442projects-wizard-hack/issues/101", + "id": 510315292, + "node_id": "MDU6SXNzdWU1MTAzMTUyOTI=", + "number": 101, + "title": "Stats Enemy Kill Count", + "user": { + "login": "jmorrow2", + "id": 36283240, + "node_id": "MDQ6VXNlcjM2MjgzMjQw", + "avatar_url": "https://avatars2.githubusercontent.com/u/36283240?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jmorrow2", + "html_url": "https://github.com/jmorrow2", + "followers_url": "https://api.github.com/users/jmorrow2/followers", + "following_url": "https://api.github.com/users/jmorrow2/following{/other_user}", + "gists_url": "https://api.github.com/users/jmorrow2/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jmorrow2/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jmorrow2/subscriptions", + "organizations_url": "https://api.github.com/users/jmorrow2/orgs", + "repos_url": "https://api.github.com/users/jmorrow2/repos", + "events_url": "https://api.github.com/users/jmorrow2/events{/privacy}", + "received_events_url": "https://api.github.com/users/jmorrow2/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-10-21T21:54:51Z", + "updated_at": "2019-10-21T21:54:51Z", + "closed_at": null, + "author_association": "COLLABORATOR", + "body": "As a video game player I want to click the stats button on the pause menu so that I can view the enemy kill count." + } + }, + "public": true, + "created_at": "2019-10-21T21:54:51Z", + "org": { + "id": 54152587, + "login": "cse442-fall-2019-offering", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cse442-fall-2019-offering", + "avatar_url": "https://avatars.githubusercontent.com/u/54152587?" + } + }, + { + "id": "10680625264", + "type": "PushEvent", + "actor": { + "id": 49404884, + "login": "zatarra97", + "display_login": "zatarra97", + "gravatar_id": "", + "url": "https://api.github.com/users/zatarra97", + "avatar_url": "https://avatars.githubusercontent.com/u/49404884?" + }, + "repo": { + "id": 188664645, + "name": "zatarra97/Site", + "url": "https://api.github.com/repos/zatarra97/Site" + }, + "payload": { + "push_id": 4176855020, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "7fc2ffa33a4fe96f248ebc6291e24c64a836c8a4", + "before": "3992ef316cc663ddc9b3a7d21586068c6e91dd5f", + "commits": [ + { + "sha": "7fc2ffa33a4fe96f248ebc6291e24c64a836c8a4", + "author": { + "email": "emmanuele.carlone@gmail.com", + "name": "Emmanuele Carlone" + }, + "message": "Prenotazione attività da parte del globetrotte", + "distinct": true, + "url": "https://api.github.com/repos/zatarra97/Site/commits/7fc2ffa33a4fe96f248ebc6291e24c64a836c8a4" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:51Z" + }, + { + "id": "10680625265", + "type": "WatchEvent", + "actor": { + "id": 55180351, + "login": "2bellbree", + "display_login": "2bellbree", + "gravatar_id": "", + "url": "https://api.github.com/users/2bellbree", + "avatar_url": "https://avatars.githubusercontent.com/u/55180351?" + }, + "repo": { + "id": 51270739, + "name": "viatsko/awesome-vscode", + "url": "https://api.github.com/repos/viatsko/awesome-vscode" + }, + "payload": { + "action": "started" + }, + "public": true, + "created_at": "2019-10-21T21:54:51Z" + }, + { + "id": "10680625262", + "type": "IssueCommentEvent", + "actor": { + "id": 28914781, + "login": "BOTOOM", + "display_login": "BOTOOM", + "gravatar_id": "", + "url": "https://api.github.com/users/BOTOOM", + "avatar_url": "https://avatars.githubusercontent.com/u/28914781?" + }, + "repo": { + "id": 195828012, + "name": "udistrital/cumplidos_cliente", + "url": "https://api.github.com/repos/udistrital/cumplidos_cliente" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/udistrital/cumplidos_cliente/issues/17", + "repository_url": "https://api.github.com/repos/udistrital/cumplidos_cliente", + "labels_url": "https://api.github.com/repos/udistrital/cumplidos_cliente/issues/17/labels{/name}", + "comments_url": "https://api.github.com/repos/udistrital/cumplidos_cliente/issues/17/comments", + "events_url": "https://api.github.com/repos/udistrital/cumplidos_cliente/issues/17/events", + "html_url": "https://github.com/udistrital/cumplidos_cliente/issues/17", + "id": 498919626, + "node_id": "MDU6SXNzdWU0OTg5MTk2MjY=", + "number": 17, + "title": "Despliegue en test de cliente de cumplidos", + "user": { + "login": "BOTOOM", + "id": 28914781, + "node_id": "MDQ6VXNlcjI4OTE0Nzgx", + "avatar_url": "https://avatars2.githubusercontent.com/u/28914781?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/BOTOOM", + "html_url": "https://github.com/BOTOOM", + "followers_url": "https://api.github.com/users/BOTOOM/followers", + "following_url": "https://api.github.com/users/BOTOOM/following{/other_user}", + "gists_url": "https://api.github.com/users/BOTOOM/gists{/gist_id}", + "starred_url": "https://api.github.com/users/BOTOOM/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/BOTOOM/subscriptions", + "organizations_url": "https://api.github.com/users/BOTOOM/orgs", + "repos_url": "https://api.github.com/users/BOTOOM/repos", + "events_url": "https://api.github.com/users/BOTOOM/events{/privacy}", + "received_events_url": "https://api.github.com/users/BOTOOM/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 1497400851, + "node_id": "MDU6TGFiZWwxNDk3NDAwODUx", + "url": "https://api.github.com/repos/udistrital/cumplidos_cliente/labels/Cumplidos", + "name": "Cumplidos", + "color": "d6fc19", + "default": false + } + ], + "state": "open", + "locked": false, + "assignee": { + "login": "BOTOOM", + "id": 28914781, + "node_id": "MDQ6VXNlcjI4OTE0Nzgx", + "avatar_url": "https://avatars2.githubusercontent.com/u/28914781?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/BOTOOM", + "html_url": "https://github.com/BOTOOM", + "followers_url": "https://api.github.com/users/BOTOOM/followers", + "following_url": "https://api.github.com/users/BOTOOM/following{/other_user}", + "gists_url": "https://api.github.com/users/BOTOOM/gists{/gist_id}", + "starred_url": "https://api.github.com/users/BOTOOM/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/BOTOOM/subscriptions", + "organizations_url": "https://api.github.com/users/BOTOOM/orgs", + "repos_url": "https://api.github.com/users/BOTOOM/repos", + "events_url": "https://api.github.com/users/BOTOOM/events{/privacy}", + "received_events_url": "https://api.github.com/users/BOTOOM/received_events", + "type": "User", + "site_admin": false + }, + "assignees": [ + { + "login": "BOTOOM", + "id": 28914781, + "node_id": "MDQ6VXNlcjI4OTE0Nzgx", + "avatar_url": "https://avatars2.githubusercontent.com/u/28914781?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/BOTOOM", + "html_url": "https://github.com/BOTOOM", + "followers_url": "https://api.github.com/users/BOTOOM/followers", + "following_url": "https://api.github.com/users/BOTOOM/following{/other_user}", + "gists_url": "https://api.github.com/users/BOTOOM/gists{/gist_id}", + "starred_url": "https://api.github.com/users/BOTOOM/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/BOTOOM/subscriptions", + "organizations_url": "https://api.github.com/users/BOTOOM/orgs", + "repos_url": "https://api.github.com/users/BOTOOM/repos", + "events_url": "https://api.github.com/users/BOTOOM/events{/privacy}", + "received_events_url": "https://api.github.com/users/BOTOOM/received_events", + "type": "User", + "site_admin": false + }, + { + "login": "anlramirezs11", + "id": 29903400, + "node_id": "MDQ6VXNlcjI5OTAzNDAw", + "avatar_url": "https://avatars0.githubusercontent.com/u/29903400?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/anlramirezs11", + "html_url": "https://github.com/anlramirezs11", + "followers_url": "https://api.github.com/users/anlramirezs11/followers", + "following_url": "https://api.github.com/users/anlramirezs11/following{/other_user}", + "gists_url": "https://api.github.com/users/anlramirezs11/gists{/gist_id}", + "starred_url": "https://api.github.com/users/anlramirezs11/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/anlramirezs11/subscriptions", + "organizations_url": "https://api.github.com/users/anlramirezs11/orgs", + "repos_url": "https://api.github.com/users/anlramirezs11/repos", + "events_url": "https://api.github.com/users/anlramirezs11/events{/privacy}", + "received_events_url": "https://api.github.com/users/anlramirezs11/received_events", + "type": "User", + "site_admin": false + } + ], + "milestone": null, + "comments": 11, + "created_at": "2019-09-26T14:23:40Z", + "updated_at": "2019-10-21T21:54:50Z", + "closed_at": null, + "author_association": "MEMBER", + "body": "" + }, + "comment": { + "url": "https://api.github.com/repos/udistrital/cumplidos_cliente/issues/comments/544724579", + "html_url": "https://github.com/udistrital/cumplidos_cliente/issues/17#issuecomment-544724579", + "issue_url": "https://api.github.com/repos/udistrital/cumplidos_cliente/issues/17", + "id": 544724579, + "node_id": "MDEyOklzc3VlQ29tbWVudDU0NDcyNDU3OQ==", + "user": { + "login": "BOTOOM", + "id": 28914781, + "node_id": "MDQ6VXNlcjI4OTE0Nzgx", + "avatar_url": "https://avatars2.githubusercontent.com/u/28914781?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/BOTOOM", + "html_url": "https://github.com/BOTOOM", + "followers_url": "https://api.github.com/users/BOTOOM/followers", + "following_url": "https://api.github.com/users/BOTOOM/following{/other_user}", + "gists_url": "https://api.github.com/users/BOTOOM/gists{/gist_id}", + "starred_url": "https://api.github.com/users/BOTOOM/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/BOTOOM/subscriptions", + "organizations_url": "https://api.github.com/users/BOTOOM/orgs", + "repos_url": "https://api.github.com/users/BOTOOM/repos", + "events_url": "https://api.github.com/users/BOTOOM/events{/privacy}", + "received_events_url": "https://api.github.com/users/BOTOOM/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2019-10-21T21:54:50Z", + "updated_at": "2019-10-21T21:54:50Z", + "author_association": "MEMBER", + "body": "el documento solo se publica cuando el proveedor aprueba, si el proveedor rechaza no pasa nada con el documento.\r\n\r\nel flujo se crea cuando el contratista sube archivos y el flujo se cancela cuando el contratista elimina los archivos" + } + }, + "public": true, + "created_at": "2019-10-21T21:54:51Z", + "org": { + "id": 2576963, + "login": "udistrital", + "gravatar_id": "", + "url": "https://api.github.com/orgs/udistrital", + "avatar_url": "https://avatars.githubusercontent.com/u/2576963?" + } + }, + { + "id": "10680625242", + "type": "PushEvent", + "actor": { + "id": 32246571, + "login": "SarvagyaGupta", + "display_login": "SarvagyaGupta", + "gravatar_id": "", + "url": "https://api.github.com/users/SarvagyaGupta", + "avatar_url": "https://avatars.githubusercontent.com/u/32246571?" + }, + "repo": { + "id": 213764765, + "name": "SarvagyaGupta/uwimg", + "url": "https://api.github.com/repos/SarvagyaGupta/uwimg" + }, + "payload": { + "push_id": 4176855010, + "size": 2, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "03f8cff362a6aca0dc7bfce326bec1092e874c63", + "before": "5f1e6fdc621f3186ecaf479cd89e1f07df71d73b", + "commits": [ + { + "sha": "f765c7e5527e36e37539bb1623900c99739689e5", + "author": { + "email": "guptasarvagyav@gmail.com", + "name": "Sarvagya Gupta" + }, + "message": "Added bilinear interpolation to python script", + "distinct": false, + "url": "https://api.github.com/repos/SarvagyaGupta/uwimg/commits/f765c7e5527e36e37539bb1623900c99739689e5" + }, + { + "sha": "03f8cff362a6aca0dc7bfce326bec1092e874c63", + "author": { + "email": "32246571+SarvagyaGupta@users.noreply.github.com", + "name": "SarvagyaGupta" + }, + "message": "Merge pull request #4 from SarvagyaGupta/HW1\n\nHW1 python script changed", + "distinct": true, + "url": "https://api.github.com/repos/SarvagyaGupta/uwimg/commits/03f8cff362a6aca0dc7bfce326bec1092e874c63" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:51Z" + }, + { + "id": "10680625252", + "type": "PullRequestEvent", + "actor": { + "id": 10810283, + "login": "direwolf-github", + "display_login": "direwolf-github", + "gravatar_id": "", + "url": "https://api.github.com/users/direwolf-github", + "avatar_url": "https://avatars.githubusercontent.com/u/10810283?" + }, + "repo": { + "id": 216672326, + "name": "direwolf-github/my-app-752826ef", + "url": "https://api.github.com/repos/direwolf-github/my-app-752826ef" + }, + "payload": { + "action": "opened", + "number": 1, + "pull_request": { + "url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/pulls/1", + "id": 330711285, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzMwNzExMjg1", + "html_url": "https://github.com/direwolf-github/my-app-752826ef/pull/1", + "diff_url": "https://github.com/direwolf-github/my-app-752826ef/pull/1.diff", + "patch_url": "https://github.com/direwolf-github/my-app-752826ef/pull/1.patch", + "issue_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/issues/1", + "number": 1, + "state": "open", + "locked": false, + "title": "Direwolf review apps test branch-c7fa2a10", + "user": { + "login": "direwolf-github", + "id": 10810283, + "node_id": "MDQ6VXNlcjEwODEwMjgz", + "avatar_url": "https://avatars0.githubusercontent.com/u/10810283?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/direwolf-github", + "html_url": "https://github.com/direwolf-github", + "followers_url": "https://api.github.com/users/direwolf-github/followers", + "following_url": "https://api.github.com/users/direwolf-github/following{/other_user}", + "gists_url": "https://api.github.com/users/direwolf-github/gists{/gist_id}", + "starred_url": "https://api.github.com/users/direwolf-github/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/direwolf-github/subscriptions", + "organizations_url": "https://api.github.com/users/direwolf-github/orgs", + "repos_url": "https://api.github.com/users/direwolf-github/repos", + "events_url": "https://api.github.com/users/direwolf-github/events{/privacy}", + "received_events_url": "https://api.github.com/users/direwolf-github/received_events", + "type": "User", + "site_admin": false + }, + "body": "Direwolf review apps test branch-c7fa2a10", + "created_at": "2019-10-21T21:54:50Z", + "updated_at": "2019-10-21T21:54:50Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/pulls/1/commits", + "review_comments_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/pulls/1/comments", + "review_comment_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/issues/1/comments", + "statuses_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/statuses/a3c6c818cf13f328cdb74b9a37baa9186f215131", + "head": { + "label": "direwolf-github:branch-c7fa2a10", + "ref": "branch-c7fa2a10", + "sha": "a3c6c818cf13f328cdb74b9a37baa9186f215131", + "user": { + "login": "direwolf-github", + "id": 10810283, + "node_id": "MDQ6VXNlcjEwODEwMjgz", + "avatar_url": "https://avatars0.githubusercontent.com/u/10810283?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/direwolf-github", + "html_url": "https://github.com/direwolf-github", + "followers_url": "https://api.github.com/users/direwolf-github/followers", + "following_url": "https://api.github.com/users/direwolf-github/following{/other_user}", + "gists_url": "https://api.github.com/users/direwolf-github/gists{/gist_id}", + "starred_url": "https://api.github.com/users/direwolf-github/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/direwolf-github/subscriptions", + "organizations_url": "https://api.github.com/users/direwolf-github/orgs", + "repos_url": "https://api.github.com/users/direwolf-github/repos", + "events_url": "https://api.github.com/users/direwolf-github/events{/privacy}", + "received_events_url": "https://api.github.com/users/direwolf-github/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 216672326, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTY2NzIzMjY=", + "name": "my-app-752826ef", + "full_name": "direwolf-github/my-app-752826ef", + "private": false, + "owner": { + "login": "direwolf-github", + "id": 10810283, + "node_id": "MDQ6VXNlcjEwODEwMjgz", + "avatar_url": "https://avatars0.githubusercontent.com/u/10810283?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/direwolf-github", + "html_url": "https://github.com/direwolf-github", + "followers_url": "https://api.github.com/users/direwolf-github/followers", + "following_url": "https://api.github.com/users/direwolf-github/following{/other_user}", + "gists_url": "https://api.github.com/users/direwolf-github/gists{/gist_id}", + "starred_url": "https://api.github.com/users/direwolf-github/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/direwolf-github/subscriptions", + "organizations_url": "https://api.github.com/users/direwolf-github/orgs", + "repos_url": "https://api.github.com/users/direwolf-github/repos", + "events_url": "https://api.github.com/users/direwolf-github/events{/privacy}", + "received_events_url": "https://api.github.com/users/direwolf-github/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/direwolf-github/my-app-752826ef", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/direwolf-github/my-app-752826ef", + "forks_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/forks", + "keys_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/teams", + "hooks_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/hooks", + "issue_events_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/issues/events{/number}", + "events_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/events", + "assignees_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/assignees{/user}", + "branches_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/branches{/branch}", + "tags_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/tags", + "blobs_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/statuses/{sha}", + "languages_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/languages", + "stargazers_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/stargazers", + "contributors_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/contributors", + "subscribers_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/subscribers", + "subscription_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/subscription", + "commits_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/contents/{+path}", + "compare_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/merges", + "archive_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/downloads", + "issues_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/issues{/number}", + "pulls_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/pulls{/number}", + "milestones_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/milestones{/number}", + "notifications_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/labels{/name}", + "releases_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/releases{/id}", + "deployments_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/deployments", + "created_at": "2019-10-21T21:54:44Z", + "updated_at": "2019-10-21T21:54:47Z", + "pushed_at": "2019-10-21T21:54:50Z", + "git_url": "git://github.com/direwolf-github/my-app-752826ef.git", + "ssh_url": "git@github.com:direwolf-github/my-app-752826ef.git", + "clone_url": "https://github.com/direwolf-github/my-app-752826ef.git", + "svn_url": "https://github.com/direwolf-github/my-app-752826ef", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "direwolf-github:master", + "ref": "master", + "sha": "18395ef48a32eec03d7631dd1750aa3d81fd1fa2", + "user": { + "login": "direwolf-github", + "id": 10810283, + "node_id": "MDQ6VXNlcjEwODEwMjgz", + "avatar_url": "https://avatars0.githubusercontent.com/u/10810283?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/direwolf-github", + "html_url": "https://github.com/direwolf-github", + "followers_url": "https://api.github.com/users/direwolf-github/followers", + "following_url": "https://api.github.com/users/direwolf-github/following{/other_user}", + "gists_url": "https://api.github.com/users/direwolf-github/gists{/gist_id}", + "starred_url": "https://api.github.com/users/direwolf-github/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/direwolf-github/subscriptions", + "organizations_url": "https://api.github.com/users/direwolf-github/orgs", + "repos_url": "https://api.github.com/users/direwolf-github/repos", + "events_url": "https://api.github.com/users/direwolf-github/events{/privacy}", + "received_events_url": "https://api.github.com/users/direwolf-github/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 216672326, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTY2NzIzMjY=", + "name": "my-app-752826ef", + "full_name": "direwolf-github/my-app-752826ef", + "private": false, + "owner": { + "login": "direwolf-github", + "id": 10810283, + "node_id": "MDQ6VXNlcjEwODEwMjgz", + "avatar_url": "https://avatars0.githubusercontent.com/u/10810283?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/direwolf-github", + "html_url": "https://github.com/direwolf-github", + "followers_url": "https://api.github.com/users/direwolf-github/followers", + "following_url": "https://api.github.com/users/direwolf-github/following{/other_user}", + "gists_url": "https://api.github.com/users/direwolf-github/gists{/gist_id}", + "starred_url": "https://api.github.com/users/direwolf-github/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/direwolf-github/subscriptions", + "organizations_url": "https://api.github.com/users/direwolf-github/orgs", + "repos_url": "https://api.github.com/users/direwolf-github/repos", + "events_url": "https://api.github.com/users/direwolf-github/events{/privacy}", + "received_events_url": "https://api.github.com/users/direwolf-github/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/direwolf-github/my-app-752826ef", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/direwolf-github/my-app-752826ef", + "forks_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/forks", + "keys_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/teams", + "hooks_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/hooks", + "issue_events_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/issues/events{/number}", + "events_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/events", + "assignees_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/assignees{/user}", + "branches_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/branches{/branch}", + "tags_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/tags", + "blobs_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/statuses/{sha}", + "languages_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/languages", + "stargazers_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/stargazers", + "contributors_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/contributors", + "subscribers_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/subscribers", + "subscription_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/subscription", + "commits_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/contents/{+path}", + "compare_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/merges", + "archive_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/downloads", + "issues_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/issues{/number}", + "pulls_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/pulls{/number}", + "milestones_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/milestones{/number}", + "notifications_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/labels{/name}", + "releases_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/releases{/id}", + "deployments_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/deployments", + "created_at": "2019-10-21T21:54:44Z", + "updated_at": "2019-10-21T21:54:47Z", + "pushed_at": "2019-10-21T21:54:50Z", + "git_url": "git://github.com/direwolf-github/my-app-752826ef.git", + "ssh_url": "git@github.com:direwolf-github/my-app-752826ef.git", + "clone_url": "https://github.com/direwolf-github/my-app-752826ef.git", + "svn_url": "https://github.com/direwolf-github/my-app-752826ef", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/direwolf-github/my-app-752826ef/pulls/1" + }, + "html": { + "href": "https://github.com/direwolf-github/my-app-752826ef/pull/1" + }, + "issue": { + "href": "https://api.github.com/repos/direwolf-github/my-app-752826ef/issues/1" + }, + "comments": { + "href": "https://api.github.com/repos/direwolf-github/my-app-752826ef/issues/1/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/direwolf-github/my-app-752826ef/pulls/1/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/direwolf-github/my-app-752826ef/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/direwolf-github/my-app-752826ef/pulls/1/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/direwolf-github/my-app-752826ef/statuses/a3c6c818cf13f328cdb74b9a37baa9186f215131" + } + }, + "author_association": "OWNER", + "merged": false, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 1, + "deletions": 0, + "changed_files": 1 + } + }, + "public": true, + "created_at": "2019-10-21T21:54:51Z" + }, + { + "id": "10680625241", + "type": "PushEvent", + "actor": { + "id": 9728851, + "login": "adferrand", + "display_login": "adferrand", + "gravatar_id": "", + "url": "https://api.github.com/users/adferrand", + "avatar_url": "https://avatars.githubusercontent.com/u/9728851?" + }, + "repo": { + "id": 144460400, + "name": "adferrand/certbot", + "url": "https://api.github.com/repos/adferrand/certbot" + }, + "payload": { + "push_id": 4176855009, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/centos6-migrate-python36", + "head": "84646a918ee0684e5167a586ec3155f79f6bfe1f", + "before": "5d422eb82c2cf92a04e54fcfd3dcd441bceac5e0", + "commits": [ + { + "sha": "84646a918ee0684e5167a586ec3155f79f6bfe1f", + "author": { + "email": "ferrand.ad@gmail.com", + "name": "Adrien Ferrand" + }, + "message": "Fix test message", + "distinct": true, + "url": "https://api.github.com/repos/adferrand/certbot/commits/84646a918ee0684e5167a586ec3155f79f6bfe1f" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:50Z" + }, + { + "id": "10680625233", + "type": "IssuesEvent", + "actor": { + "id": 37864982, + "login": "iamthannos", + "display_login": "iamthannos", + "gravatar_id": "", + "url": "https://api.github.com/users/iamthannos", + "avatar_url": "https://avatars.githubusercontent.com/u/37864982?" + }, + "repo": { + "id": 149494920, + "name": "Scaleskope-Ind/Org_Apic_Auto_Repo", + "url": "https://api.github.com/repos/Scaleskope-Ind/Org_Apic_Auto_Repo" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/Scaleskope-Ind/Org_Apic_Auto_Repo/issues/490", + "repository_url": "https://api.github.com/repos/Scaleskope-Ind/Org_Apic_Auto_Repo", + "labels_url": "https://api.github.com/repos/Scaleskope-Ind/Org_Apic_Auto_Repo/issues/490/labels{/name}", + "comments_url": "https://api.github.com/repos/Scaleskope-Ind/Org_Apic_Auto_Repo/issues/490/comments", + "events_url": "https://api.github.com/repos/Scaleskope-Ind/Org_Apic_Auto_Repo/issues/490/events", + "html_url": "https://github.com/Scaleskope-Ind/Org_Apic_Auto_Repo/issues/490", + "id": 510315285, + "node_id": "MDU6SXNzdWU1MTAzMTUyODU=", + "number": 490, + "title": "Found a bug - 1571694889", + "user": { + "login": "iamthannos", + "id": 37864982, + "node_id": "MDQ6VXNlcjM3ODY0OTgy", + "avatar_url": "https://avatars1.githubusercontent.com/u/37864982?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/iamthannos", + "html_url": "https://github.com/iamthannos", + "followers_url": "https://api.github.com/users/iamthannos/followers", + "following_url": "https://api.github.com/users/iamthannos/following{/other_user}", + "gists_url": "https://api.github.com/users/iamthannos/gists{/gist_id}", + "starred_url": "https://api.github.com/users/iamthannos/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/iamthannos/subscriptions", + "organizations_url": "https://api.github.com/users/iamthannos/orgs", + "repos_url": "https://api.github.com/users/iamthannos/repos", + "events_url": "https://api.github.com/users/iamthannos/events{/privacy}", + "received_events_url": "https://api.github.com/users/iamthannos/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-10-21T21:54:50Z", + "updated_at": "2019-10-21T21:54:50Z", + "closed_at": null, + "author_association": "CONTRIBUTOR", + "body": "I'm having a problem with this." + } + }, + "public": true, + "created_at": "2019-10-21T21:54:50Z", + "org": { + "id": 37864994, + "login": "Scaleskope-Ind", + "gravatar_id": "", + "url": "https://api.github.com/orgs/Scaleskope-Ind", + "avatar_url": "https://avatars.githubusercontent.com/u/37864994?" + } + }, + { + "id": "10680625236", + "type": "IssuesEvent", + "actor": { + "id": 6785733, + "login": "Arametheus", + "display_login": "Arametheus", + "gravatar_id": "", + "url": "https://api.github.com/users/Arametheus", + "avatar_url": "https://avatars.githubusercontent.com/u/6785733?" + }, + "repo": { + "id": 211002651, + "name": "ahmedsaoud31/laravel-permission-to-vuejs", + "url": "https://api.github.com/repos/ahmedsaoud31/laravel-permission-to-vuejs" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/ahmedsaoud31/laravel-permission-to-vuejs/issues/1", + "repository_url": "https://api.github.com/repos/ahmedsaoud31/laravel-permission-to-vuejs", + "labels_url": "https://api.github.com/repos/ahmedsaoud31/laravel-permission-to-vuejs/issues/1/labels{/name}", + "comments_url": "https://api.github.com/repos/ahmedsaoud31/laravel-permission-to-vuejs/issues/1/comments", + "events_url": "https://api.github.com/repos/ahmedsaoud31/laravel-permission-to-vuejs/issues/1/events", + "html_url": "https://github.com/ahmedsaoud31/laravel-permission-to-vuejs/issues/1", + "id": 510315288, + "node_id": "MDU6SXNzdWU1MTAzMTUyODg=", + "number": 1, + "title": "can you update this for \"spatie/laravel-permission\": \"^3.2\"", + "user": { + "login": "Arametheus", + "id": 6785733, + "node_id": "MDQ6VXNlcjY3ODU3MzM=", + "avatar_url": "https://avatars1.githubusercontent.com/u/6785733?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Arametheus", + "html_url": "https://github.com/Arametheus", + "followers_url": "https://api.github.com/users/Arametheus/followers", + "following_url": "https://api.github.com/users/Arametheus/following{/other_user}", + "gists_url": "https://api.github.com/users/Arametheus/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Arametheus/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Arametheus/subscriptions", + "organizations_url": "https://api.github.com/users/Arametheus/orgs", + "repos_url": "https://api.github.com/users/Arametheus/repos", + "events_url": "https://api.github.com/users/Arametheus/events{/privacy}", + "received_events_url": "https://api.github.com/users/Arametheus/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-10-21T21:54:50Z", + "updated_at": "2019-10-21T21:54:50Z", + "closed_at": null, + "author_association": "NONE", + "body": "so I have the newest laravel-permission but yours is erroring \r\nProblem 1\r\n - Can only install one of: spatie/laravel-permission[v2.x-dev, 3.2.0].\r\n - Can only install one of: spatie/laravel-permission[v2.x-dev, 3.2.0].\r\n - Can only install one of: spatie/laravel-permission[v2.x-dev, 3.2.0].\r\n - ahmedsaoud31/laravel-permission-to-vuejs dev-master requires spatie/laravel-permission ^2.0 -> satisfiable by spatie/laravel-permission[v2.x-dev].\r\n - Installation request for ahmedsaoud31/laravel-permission-to-vuejs dev-master -> satisfiable by ahmedsaoud31/laravel-permission-to-vuejs[dev-master].\r\n - Installation request for spatie/laravel-permission ^3.2 -> satisfiable by spatie/laravel-permission[3.2.0].\r\n\r\nThank you" + } + }, + "public": true, + "created_at": "2019-10-21T21:54:50Z" + }, + { + "id": "10680625237", + "type": "CreateEvent", + "actor": { + "id": 49699333, + "login": "dependabot[bot]", + "display_login": "dependabot", + "gravatar_id": "", + "url": "https://api.github.com/users/dependabot[bot]", + "avatar_url": "https://avatars.githubusercontent.com/u/49699333?" + }, + "repo": { + "id": 209932221, + "name": "liuzhuzhu/lzz-gulimall", + "url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall" + }, + "payload": { + "ref": "dependabot/maven/gulimall-admin/commons-fileupload-commons-fileupload-1.3.3", + "ref_type": "branch", + "master_branch": "master", + "description": "第四次 不再是一个maven工程", + "pusher_type": "user" + }, + "public": true, + "created_at": "2019-10-21T21:54:50Z" + }, + { + "id": "10680625234", + "type": "PushEvent", + "actor": { + "id": 38665693, + "login": "enricobuehler", + "display_login": "enricobuehler", + "gravatar_id": "", + "url": "https://api.github.com/users/enricobuehler", + "avatar_url": "https://avatars.githubusercontent.com/u/38665693?" + }, + "repo": { + "id": 215888316, + "name": "Schriftlage/onlyyou", + "url": "https://api.github.com/repos/Schriftlage/onlyyou" + }, + "payload": { + "push_id": 4176855005, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/next", + "head": "0a47924a50ba3b06f9e3acd968887fa7b5286200", + "before": "605c32247bfa9e97de3809230e1e574b25e542ba", + "commits": [ + { + "sha": "0a47924a50ba3b06f9e3acd968887fa7b5286200", + "author": { + "email": "privat@enricobuehler.de", + "name": "Enrico Bühler" + }, + "message": "0.2.5b", + "distinct": true, + "url": "https://api.github.com/repos/Schriftlage/onlyyou/commits/0a47924a50ba3b06f9e3acd968887fa7b5286200" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:50Z", + "org": { + "id": 46821218, + "login": "Schriftlage", + "gravatar_id": "", + "url": "https://api.github.com/orgs/Schriftlage", + "avatar_url": "https://avatars.githubusercontent.com/u/46821218?" + } + }, + { + "id": "10680625229", + "type": "PushEvent", + "actor": { + "id": 55193487, + "login": "shaunmcpherson", + "display_login": "shaunmcpherson", + "gravatar_id": "", + "url": "https://api.github.com/users/shaunmcpherson", + "avatar_url": "https://avatars.githubusercontent.com/u/55193487?" + }, + "repo": { + "id": 216647551, + "name": "shaunmcpherson/button-styles", + "url": "https://api.github.com/repos/shaunmcpherson/button-styles" + }, + "payload": { + "push_id": 4176855001, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/gh-pages", + "head": "bfbc4994d4dd2f7a40e7eea472b950c995a3195f", + "before": "a4ba2506f11456fefed3d2eddf94ff5f28a41b5c", + "commits": [ + { + "sha": "bfbc4994d4dd2f7a40e7eea472b950c995a3195f", + "author": { + "email": "shaunmcpherson@Shauns-MacBook-Pro.local", + "name": "Shaun" + }, + "message": "Change the ghost button line height", + "distinct": true, + "url": "https://api.github.com/repos/shaunmcpherson/button-styles/commits/bfbc4994d4dd2f7a40e7eea472b950c995a3195f" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:50Z" + }, + { + "id": "10680625226", + "type": "PushEvent", + "actor": { + "id": 18013175, + "login": "Quiqui64", + "display_login": "Quiqui64", + "gravatar_id": "", + "url": "https://api.github.com/users/Quiqui64", + "avatar_url": "https://avatars.githubusercontent.com/u/18013175?" + }, + "repo": { + "id": 216669904, + "name": "Quiqui64/HubitatFanRemote", + "url": "https://api.github.com/repos/Quiqui64/HubitatFanRemote" + }, + "payload": { + "push_id": 4176854995, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "dde922c2123a85ff1ff593fdb2c5e235d1a26a77", + "before": "92c78290f141c614d27c4b5d2ad3041ceb6b360c", + "commits": [ + { + "sha": "dde922c2123a85ff1ff593fdb2c5e235d1a26a77", + "author": { + "email": "vq1qa@hotmail.com", + "name": "Quiqui64" + }, + "message": "Update README.md", + "distinct": true, + "url": "https://api.github.com/repos/Quiqui64/HubitatFanRemote/commits/dde922c2123a85ff1ff593fdb2c5e235d1a26a77" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:50Z" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/__files/events-98288433-46b1-4ad0-9857-c44ae6ac3182.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/__files/events-98288433-46b1-4ad0-9857-c44ae6ac3182.json new file mode 100644 index 0000000000..bc4d349606 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/__files/events-98288433-46b1-4ad0-9857-c44ae6ac3182.json @@ -0,0 +1,4043 @@ +[ + { + "id": "10680625049", + "type": "PullRequestEvent", + "actor": { + "id": 43646355, + "login": "TaylorAkin", + "display_login": "TaylorAkin", + "gravatar_id": "", + "url": "https://api.github.com/users/TaylorAkin", + "avatar_url": "https://avatars.githubusercontent.com/u/43646355?" + }, + "repo": { + "id": 216576946, + "name": "TaylorAkin/react_restaurant", + "url": "https://api.github.com/repos/TaylorAkin/react_restaurant" + }, + "payload": { + "action": "opened", + "number": 1, + "pull_request": { + "url": "https://api.github.com/repos/TaylorAkin/react_restaurant/pulls/1", + "id": 330711276, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzMwNzExMjc2", + "html_url": "https://github.com/TaylorAkin/react_restaurant/pull/1", + "diff_url": "https://github.com/TaylorAkin/react_restaurant/pull/1.diff", + "patch_url": "https://github.com/TaylorAkin/react_restaurant/pull/1.patch", + "issue_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/issues/1", + "number": 1, + "state": "open", + "locked": false, + "title": "added parallax and images for each meal type section", + "user": { + "login": "TaylorAkin", + "id": 43646355, + "node_id": "MDQ6VXNlcjQzNjQ2MzU1", + "avatar_url": "https://avatars0.githubusercontent.com/u/43646355?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/TaylorAkin", + "html_url": "https://github.com/TaylorAkin", + "followers_url": "https://api.github.com/users/TaylorAkin/followers", + "following_url": "https://api.github.com/users/TaylorAkin/following{/other_user}", + "gists_url": "https://api.github.com/users/TaylorAkin/gists{/gist_id}", + "starred_url": "https://api.github.com/users/TaylorAkin/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/TaylorAkin/subscriptions", + "organizations_url": "https://api.github.com/users/TaylorAkin/orgs", + "repos_url": "https://api.github.com/users/TaylorAkin/repos", + "events_url": "https://api.github.com/users/TaylorAkin/events{/privacy}", + "received_events_url": "https://api.github.com/users/TaylorAkin/received_events", + "type": "User", + "site_admin": false + }, + "body": "", + "created_at": "2019-10-21T21:54:48Z", + "updated_at": "2019-10-21T21:54:48Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/pulls/1/commits", + "review_comments_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/pulls/1/comments", + "review_comment_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/issues/1/comments", + "statuses_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/statuses/902da1a56e7f302edaac196d76c3e28209e6d85b", + "head": { + "label": "TaylorAkin:feature", + "ref": "feature", + "sha": "902da1a56e7f302edaac196d76c3e28209e6d85b", + "user": { + "login": "TaylorAkin", + "id": 43646355, + "node_id": "MDQ6VXNlcjQzNjQ2MzU1", + "avatar_url": "https://avatars0.githubusercontent.com/u/43646355?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/TaylorAkin", + "html_url": "https://github.com/TaylorAkin", + "followers_url": "https://api.github.com/users/TaylorAkin/followers", + "following_url": "https://api.github.com/users/TaylorAkin/following{/other_user}", + "gists_url": "https://api.github.com/users/TaylorAkin/gists{/gist_id}", + "starred_url": "https://api.github.com/users/TaylorAkin/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/TaylorAkin/subscriptions", + "organizations_url": "https://api.github.com/users/TaylorAkin/orgs", + "repos_url": "https://api.github.com/users/TaylorAkin/repos", + "events_url": "https://api.github.com/users/TaylorAkin/events{/privacy}", + "received_events_url": "https://api.github.com/users/TaylorAkin/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 216576946, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTY1NzY5NDY=", + "name": "react_restaurant", + "full_name": "TaylorAkin/react_restaurant", + "private": false, + "owner": { + "login": "TaylorAkin", + "id": 43646355, + "node_id": "MDQ6VXNlcjQzNjQ2MzU1", + "avatar_url": "https://avatars0.githubusercontent.com/u/43646355?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/TaylorAkin", + "html_url": "https://github.com/TaylorAkin", + "followers_url": "https://api.github.com/users/TaylorAkin/followers", + "following_url": "https://api.github.com/users/TaylorAkin/following{/other_user}", + "gists_url": "https://api.github.com/users/TaylorAkin/gists{/gist_id}", + "starred_url": "https://api.github.com/users/TaylorAkin/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/TaylorAkin/subscriptions", + "organizations_url": "https://api.github.com/users/TaylorAkin/orgs", + "repos_url": "https://api.github.com/users/TaylorAkin/repos", + "events_url": "https://api.github.com/users/TaylorAkin/events{/privacy}", + "received_events_url": "https://api.github.com/users/TaylorAkin/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/TaylorAkin/react_restaurant", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/TaylorAkin/react_restaurant", + "forks_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/forks", + "keys_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/teams", + "hooks_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/hooks", + "issue_events_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/issues/events{/number}", + "events_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/events", + "assignees_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/assignees{/user}", + "branches_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/branches{/branch}", + "tags_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/tags", + "blobs_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/statuses/{sha}", + "languages_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/languages", + "stargazers_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/stargazers", + "contributors_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/contributors", + "subscribers_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/subscribers", + "subscription_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/subscription", + "commits_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/contents/{+path}", + "compare_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/merges", + "archive_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/downloads", + "issues_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/issues{/number}", + "pulls_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/pulls{/number}", + "milestones_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/milestones{/number}", + "notifications_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/labels{/name}", + "releases_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/releases{/id}", + "deployments_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/deployments", + "created_at": "2019-10-21T13:36:23Z", + "updated_at": "2019-10-21T17:06:24Z", + "pushed_at": "2019-10-21T21:54:27Z", + "git_url": "git://github.com/TaylorAkin/react_restaurant.git", + "ssh_url": "git@github.com:TaylorAkin/react_restaurant.git", + "clone_url": "https://github.com/TaylorAkin/react_restaurant.git", + "svn_url": "https://github.com/TaylorAkin/react_restaurant", + "homepage": null, + "size": 360, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "TaylorAkin:dev", + "ref": "dev", + "sha": "25dffabf683e79517c70763adf86e52c589c0ddb", + "user": { + "login": "TaylorAkin", + "id": 43646355, + "node_id": "MDQ6VXNlcjQzNjQ2MzU1", + "avatar_url": "https://avatars0.githubusercontent.com/u/43646355?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/TaylorAkin", + "html_url": "https://github.com/TaylorAkin", + "followers_url": "https://api.github.com/users/TaylorAkin/followers", + "following_url": "https://api.github.com/users/TaylorAkin/following{/other_user}", + "gists_url": "https://api.github.com/users/TaylorAkin/gists{/gist_id}", + "starred_url": "https://api.github.com/users/TaylorAkin/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/TaylorAkin/subscriptions", + "organizations_url": "https://api.github.com/users/TaylorAkin/orgs", + "repos_url": "https://api.github.com/users/TaylorAkin/repos", + "events_url": "https://api.github.com/users/TaylorAkin/events{/privacy}", + "received_events_url": "https://api.github.com/users/TaylorAkin/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 216576946, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTY1NzY5NDY=", + "name": "react_restaurant", + "full_name": "TaylorAkin/react_restaurant", + "private": false, + "owner": { + "login": "TaylorAkin", + "id": 43646355, + "node_id": "MDQ6VXNlcjQzNjQ2MzU1", + "avatar_url": "https://avatars0.githubusercontent.com/u/43646355?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/TaylorAkin", + "html_url": "https://github.com/TaylorAkin", + "followers_url": "https://api.github.com/users/TaylorAkin/followers", + "following_url": "https://api.github.com/users/TaylorAkin/following{/other_user}", + "gists_url": "https://api.github.com/users/TaylorAkin/gists{/gist_id}", + "starred_url": "https://api.github.com/users/TaylorAkin/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/TaylorAkin/subscriptions", + "organizations_url": "https://api.github.com/users/TaylorAkin/orgs", + "repos_url": "https://api.github.com/users/TaylorAkin/repos", + "events_url": "https://api.github.com/users/TaylorAkin/events{/privacy}", + "received_events_url": "https://api.github.com/users/TaylorAkin/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/TaylorAkin/react_restaurant", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/TaylorAkin/react_restaurant", + "forks_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/forks", + "keys_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/teams", + "hooks_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/hooks", + "issue_events_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/issues/events{/number}", + "events_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/events", + "assignees_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/assignees{/user}", + "branches_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/branches{/branch}", + "tags_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/tags", + "blobs_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/statuses/{sha}", + "languages_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/languages", + "stargazers_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/stargazers", + "contributors_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/contributors", + "subscribers_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/subscribers", + "subscription_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/subscription", + "commits_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/contents/{+path}", + "compare_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/merges", + "archive_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/downloads", + "issues_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/issues{/number}", + "pulls_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/pulls{/number}", + "milestones_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/milestones{/number}", + "notifications_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/labels{/name}", + "releases_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/releases{/id}", + "deployments_url": "https://api.github.com/repos/TaylorAkin/react_restaurant/deployments", + "created_at": "2019-10-21T13:36:23Z", + "updated_at": "2019-10-21T17:06:24Z", + "pushed_at": "2019-10-21T21:54:27Z", + "git_url": "git://github.com/TaylorAkin/react_restaurant.git", + "ssh_url": "git@github.com:TaylorAkin/react_restaurant.git", + "clone_url": "https://github.com/TaylorAkin/react_restaurant.git", + "svn_url": "https://github.com/TaylorAkin/react_restaurant", + "homepage": null, + "size": 360, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/TaylorAkin/react_restaurant/pulls/1" + }, + "html": { + "href": "https://github.com/TaylorAkin/react_restaurant/pull/1" + }, + "issue": { + "href": "https://api.github.com/repos/TaylorAkin/react_restaurant/issues/1" + }, + "comments": { + "href": "https://api.github.com/repos/TaylorAkin/react_restaurant/issues/1/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/TaylorAkin/react_restaurant/pulls/1/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/TaylorAkin/react_restaurant/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/TaylorAkin/react_restaurant/pulls/1/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/TaylorAkin/react_restaurant/statuses/902da1a56e7f302edaac196d76c3e28209e6d85b" + } + }, + "author_association": "OWNER", + "merged": false, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 176, + "deletions": 34, + "changed_files": 14 + } + }, + "public": true, + "created_at": "2019-10-21T21:54:49Z" + }, + { + "id": "10680625030", + "type": "PullRequestEvent", + "actor": { + "id": 7111514, + "login": "shushugah", + "display_login": "shushugah", + "gravatar_id": "", + "url": "https://api.github.com/users/shushugah", + "avatar_url": "https://avatars.githubusercontent.com/u/7111514?" + }, + "repo": { + "id": 209969044, + "name": "codecurious-bln/CC-website", + "url": "https://api.github.com/repos/codecurious-bln/CC-website" + }, + "payload": { + "action": "closed", + "number": 32, + "pull_request": { + "url": "https://api.github.com/repos/codecurious-bln/CC-website/pulls/32", + "id": 330041415, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzMwMDQxNDE1", + "html_url": "https://github.com/codecurious-bln/CC-website/pull/32", + "diff_url": "https://github.com/codecurious-bln/CC-website/pull/32.diff", + "patch_url": "https://github.com/codecurious-bln/CC-website/pull/32.patch", + "issue_url": "https://api.github.com/repos/codecurious-bln/CC-website/issues/32", + "number": 32, + "state": "closed", + "locked": false, + "title": "Add edit on github", + "user": { + "login": "Naylin15", + "id": 30867977, + "node_id": "MDQ6VXNlcjMwODY3OTc3", + "avatar_url": "https://avatars0.githubusercontent.com/u/30867977?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Naylin15", + "html_url": "https://github.com/Naylin15", + "followers_url": "https://api.github.com/users/Naylin15/followers", + "following_url": "https://api.github.com/users/Naylin15/following{/other_user}", + "gists_url": "https://api.github.com/users/Naylin15/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Naylin15/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Naylin15/subscriptions", + "organizations_url": "https://api.github.com/users/Naylin15/orgs", + "repos_url": "https://api.github.com/users/Naylin15/repos", + "events_url": "https://api.github.com/users/Naylin15/events{/privacy}", + "received_events_url": "https://api.github.com/users/Naylin15/received_events", + "type": "User", + "site_admin": false + }, + "body": "Hi,\r\n\r\nI was working in this too, perhaps my changes could also be taken into account? \r\n\r\nI added the link to GitHub as part of the header to make it look like this \r\n\r\n![edit-github](https://user-images.githubusercontent.com/30867977/67149168-6a04a080-f27e-11e9-91a0-9d79f5d72492.jpg)\r\n\r\nAfter reviewing [this issue in minima](https://github.com/jekyll/minima/issues/207)\r\n\r\nRelated: #30 #19 ", + "created_at": "2019-10-19T17:44:03Z", + "updated_at": "2019-10-21T21:54:48Z", + "closed_at": "2019-10-21T21:54:48Z", + "merged_at": "2019-10-21T21:54:48Z", + "merge_commit_sha": "ca3257de9d87f497be2d5d2cfd5ef75c78b1c732", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "shushugah", + "id": 7111514, + "node_id": "MDQ6VXNlcjcxMTE1MTQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/7111514?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/shushugah", + "html_url": "https://github.com/shushugah", + "followers_url": "https://api.github.com/users/shushugah/followers", + "following_url": "https://api.github.com/users/shushugah/following{/other_user}", + "gists_url": "https://api.github.com/users/shushugah/gists{/gist_id}", + "starred_url": "https://api.github.com/users/shushugah/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/shushugah/subscriptions", + "organizations_url": "https://api.github.com/users/shushugah/orgs", + "repos_url": "https://api.github.com/users/shushugah/repos", + "events_url": "https://api.github.com/users/shushugah/events{/privacy}", + "received_events_url": "https://api.github.com/users/shushugah/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/codecurious-bln/CC-website/pulls/32/commits", + "review_comments_url": "https://api.github.com/repos/codecurious-bln/CC-website/pulls/32/comments", + "review_comment_url": "https://api.github.com/repos/codecurious-bln/CC-website/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/codecurious-bln/CC-website/issues/32/comments", + "statuses_url": "https://api.github.com/repos/codecurious-bln/CC-website/statuses/aec5222f75127664e4df1aa618334663f4a0081f", + "head": { + "label": "Naylin15:edit-github", + "ref": "edit-github", + "sha": "aec5222f75127664e4df1aa618334663f4a0081f", + "user": { + "login": "Naylin15", + "id": 30867977, + "node_id": "MDQ6VXNlcjMwODY3OTc3", + "avatar_url": "https://avatars0.githubusercontent.com/u/30867977?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Naylin15", + "html_url": "https://github.com/Naylin15", + "followers_url": "https://api.github.com/users/Naylin15/followers", + "following_url": "https://api.github.com/users/Naylin15/following{/other_user}", + "gists_url": "https://api.github.com/users/Naylin15/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Naylin15/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Naylin15/subscriptions", + "organizations_url": "https://api.github.com/users/Naylin15/orgs", + "repos_url": "https://api.github.com/users/Naylin15/repos", + "events_url": "https://api.github.com/users/Naylin15/events{/privacy}", + "received_events_url": "https://api.github.com/users/Naylin15/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 216205787, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTYyMDU3ODc=", + "name": "CC-website", + "full_name": "Naylin15/CC-website", + "private": false, + "owner": { + "login": "Naylin15", + "id": 30867977, + "node_id": "MDQ6VXNlcjMwODY3OTc3", + "avatar_url": "https://avatars0.githubusercontent.com/u/30867977?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Naylin15", + "html_url": "https://github.com/Naylin15", + "followers_url": "https://api.github.com/users/Naylin15/followers", + "following_url": "https://api.github.com/users/Naylin15/following{/other_user}", + "gists_url": "https://api.github.com/users/Naylin15/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Naylin15/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Naylin15/subscriptions", + "organizations_url": "https://api.github.com/users/Naylin15/orgs", + "repos_url": "https://api.github.com/users/Naylin15/repos", + "events_url": "https://api.github.com/users/Naylin15/events{/privacy}", + "received_events_url": "https://api.github.com/users/Naylin15/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/Naylin15/CC-website", + "description": "The future code curious website, it replaces the wordpress site hosted at http://codecurious.org . It deploys to", + "fork": true, + "url": "https://api.github.com/repos/Naylin15/CC-website", + "forks_url": "https://api.github.com/repos/Naylin15/CC-website/forks", + "keys_url": "https://api.github.com/repos/Naylin15/CC-website/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Naylin15/CC-website/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Naylin15/CC-website/teams", + "hooks_url": "https://api.github.com/repos/Naylin15/CC-website/hooks", + "issue_events_url": "https://api.github.com/repos/Naylin15/CC-website/issues/events{/number}", + "events_url": "https://api.github.com/repos/Naylin15/CC-website/events", + "assignees_url": "https://api.github.com/repos/Naylin15/CC-website/assignees{/user}", + "branches_url": "https://api.github.com/repos/Naylin15/CC-website/branches{/branch}", + "tags_url": "https://api.github.com/repos/Naylin15/CC-website/tags", + "blobs_url": "https://api.github.com/repos/Naylin15/CC-website/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Naylin15/CC-website/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Naylin15/CC-website/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Naylin15/CC-website/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Naylin15/CC-website/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Naylin15/CC-website/languages", + "stargazers_url": "https://api.github.com/repos/Naylin15/CC-website/stargazers", + "contributors_url": "https://api.github.com/repos/Naylin15/CC-website/contributors", + "subscribers_url": "https://api.github.com/repos/Naylin15/CC-website/subscribers", + "subscription_url": "https://api.github.com/repos/Naylin15/CC-website/subscription", + "commits_url": "https://api.github.com/repos/Naylin15/CC-website/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Naylin15/CC-website/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Naylin15/CC-website/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Naylin15/CC-website/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Naylin15/CC-website/contents/{+path}", + "compare_url": "https://api.github.com/repos/Naylin15/CC-website/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Naylin15/CC-website/merges", + "archive_url": "https://api.github.com/repos/Naylin15/CC-website/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Naylin15/CC-website/downloads", + "issues_url": "https://api.github.com/repos/Naylin15/CC-website/issues{/number}", + "pulls_url": "https://api.github.com/repos/Naylin15/CC-website/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Naylin15/CC-website/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Naylin15/CC-website/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Naylin15/CC-website/labels{/name}", + "releases_url": "https://api.github.com/repos/Naylin15/CC-website/releases{/id}", + "deployments_url": "https://api.github.com/repos/Naylin15/CC-website/deployments", + "created_at": "2019-10-19T12:52:10Z", + "updated_at": "2019-10-19T12:52:11Z", + "pushed_at": "2019-10-21T21:36:57Z", + "git_url": "git://github.com/Naylin15/CC-website.git", + "ssh_url": "git@github.com:Naylin15/CC-website.git", + "clone_url": "https://github.com/Naylin15/CC-website.git", + "svn_url": "https://github.com/Naylin15/CC-website", + "homepage": "https://code-curious.netlify.com", + "size": 842, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "codecurious-bln:master", + "ref": "master", + "sha": "b762a83d2dd69f4d7be63695dff479b39605c9e3", + "user": { + "login": "codecurious-bln", + "id": 2067368, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIwNjczNjg=", + "avatar_url": "https://avatars0.githubusercontent.com/u/2067368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/codecurious-bln", + "html_url": "https://github.com/codecurious-bln", + "followers_url": "https://api.github.com/users/codecurious-bln/followers", + "following_url": "https://api.github.com/users/codecurious-bln/following{/other_user}", + "gists_url": "https://api.github.com/users/codecurious-bln/gists{/gist_id}", + "starred_url": "https://api.github.com/users/codecurious-bln/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/codecurious-bln/subscriptions", + "organizations_url": "https://api.github.com/users/codecurious-bln/orgs", + "repos_url": "https://api.github.com/users/codecurious-bln/repos", + "events_url": "https://api.github.com/users/codecurious-bln/events{/privacy}", + "received_events_url": "https://api.github.com/users/codecurious-bln/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 209969044, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDk5NjkwNDQ=", + "name": "CC-website", + "full_name": "codecurious-bln/CC-website", + "private": false, + "owner": { + "login": "codecurious-bln", + "id": 2067368, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIwNjczNjg=", + "avatar_url": "https://avatars0.githubusercontent.com/u/2067368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/codecurious-bln", + "html_url": "https://github.com/codecurious-bln", + "followers_url": "https://api.github.com/users/codecurious-bln/followers", + "following_url": "https://api.github.com/users/codecurious-bln/following{/other_user}", + "gists_url": "https://api.github.com/users/codecurious-bln/gists{/gist_id}", + "starred_url": "https://api.github.com/users/codecurious-bln/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/codecurious-bln/subscriptions", + "organizations_url": "https://api.github.com/users/codecurious-bln/orgs", + "repos_url": "https://api.github.com/users/codecurious-bln/repos", + "events_url": "https://api.github.com/users/codecurious-bln/events{/privacy}", + "received_events_url": "https://api.github.com/users/codecurious-bln/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/codecurious-bln/CC-website", + "description": "The future code curious website, it replaces the wordpress site hosted at http://codecurious.org . It deploys to", + "fork": false, + "url": "https://api.github.com/repos/codecurious-bln/CC-website", + "forks_url": "https://api.github.com/repos/codecurious-bln/CC-website/forks", + "keys_url": "https://api.github.com/repos/codecurious-bln/CC-website/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/codecurious-bln/CC-website/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/codecurious-bln/CC-website/teams", + "hooks_url": "https://api.github.com/repos/codecurious-bln/CC-website/hooks", + "issue_events_url": "https://api.github.com/repos/codecurious-bln/CC-website/issues/events{/number}", + "events_url": "https://api.github.com/repos/codecurious-bln/CC-website/events", + "assignees_url": "https://api.github.com/repos/codecurious-bln/CC-website/assignees{/user}", + "branches_url": "https://api.github.com/repos/codecurious-bln/CC-website/branches{/branch}", + "tags_url": "https://api.github.com/repos/codecurious-bln/CC-website/tags", + "blobs_url": "https://api.github.com/repos/codecurious-bln/CC-website/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/codecurious-bln/CC-website/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/codecurious-bln/CC-website/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/codecurious-bln/CC-website/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/codecurious-bln/CC-website/statuses/{sha}", + "languages_url": "https://api.github.com/repos/codecurious-bln/CC-website/languages", + "stargazers_url": "https://api.github.com/repos/codecurious-bln/CC-website/stargazers", + "contributors_url": "https://api.github.com/repos/codecurious-bln/CC-website/contributors", + "subscribers_url": "https://api.github.com/repos/codecurious-bln/CC-website/subscribers", + "subscription_url": "https://api.github.com/repos/codecurious-bln/CC-website/subscription", + "commits_url": "https://api.github.com/repos/codecurious-bln/CC-website/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/codecurious-bln/CC-website/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/codecurious-bln/CC-website/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/codecurious-bln/CC-website/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/codecurious-bln/CC-website/contents/{+path}", + "compare_url": "https://api.github.com/repos/codecurious-bln/CC-website/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/codecurious-bln/CC-website/merges", + "archive_url": "https://api.github.com/repos/codecurious-bln/CC-website/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/codecurious-bln/CC-website/downloads", + "issues_url": "https://api.github.com/repos/codecurious-bln/CC-website/issues{/number}", + "pulls_url": "https://api.github.com/repos/codecurious-bln/CC-website/pulls{/number}", + "milestones_url": "https://api.github.com/repos/codecurious-bln/CC-website/milestones{/number}", + "notifications_url": "https://api.github.com/repos/codecurious-bln/CC-website/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/codecurious-bln/CC-website/labels{/name}", + "releases_url": "https://api.github.com/repos/codecurious-bln/CC-website/releases{/id}", + "deployments_url": "https://api.github.com/repos/codecurious-bln/CC-website/deployments", + "created_at": "2019-09-21T10:52:14Z", + "updated_at": "2019-10-21T20:53:29Z", + "pushed_at": "2019-10-21T21:54:48Z", + "git_url": "git://github.com/codecurious-bln/CC-website.git", + "ssh_url": "git@github.com:codecurious-bln/CC-website.git", + "clone_url": "https://github.com/codecurious-bln/CC-website.git", + "svn_url": "https://github.com/codecurious-bln/CC-website", + "homepage": "https://code-curious.netlify.com", + "size": 856, + "stargazers_count": 10, + "watchers_count": 10, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 8, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 16, + "license": null, + "forks": 8, + "open_issues": 16, + "watchers": 10, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/codecurious-bln/CC-website/pulls/32" + }, + "html": { + "href": "https://github.com/codecurious-bln/CC-website/pull/32" + }, + "issue": { + "href": "https://api.github.com/repos/codecurious-bln/CC-website/issues/32" + }, + "comments": { + "href": "https://api.github.com/repos/codecurious-bln/CC-website/issues/32/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/codecurious-bln/CC-website/pulls/32/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/codecurious-bln/CC-website/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/codecurious-bln/CC-website/pulls/32/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/codecurious-bln/CC-website/statuses/aec5222f75127664e4df1aa618334663f4a0081f" + } + }, + "author_association": "NONE", + "merged": true, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": { + "login": "shushugah", + "id": 7111514, + "node_id": "MDQ6VXNlcjcxMTE1MTQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/7111514?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/shushugah", + "html_url": "https://github.com/shushugah", + "followers_url": "https://api.github.com/users/shushugah/followers", + "following_url": "https://api.github.com/users/shushugah/following{/other_user}", + "gists_url": "https://api.github.com/users/shushugah/gists{/gist_id}", + "starred_url": "https://api.github.com/users/shushugah/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/shushugah/subscriptions", + "organizations_url": "https://api.github.com/users/shushugah/orgs", + "repos_url": "https://api.github.com/users/shushugah/repos", + "events_url": "https://api.github.com/users/shushugah/events{/privacy}", + "received_events_url": "https://api.github.com/users/shushugah/received_events", + "type": "User", + "site_admin": false + }, + "comments": 2, + "review_comments": 5, + "maintainer_can_modify": false, + "commits": 1, + "additions": 32, + "deletions": 0, + "changed_files": 1 + } + }, + "public": true, + "created_at": "2019-10-21T21:54:48Z", + "org": { + "id": 2067368, + "login": "codecurious-bln", + "gravatar_id": "", + "url": "https://api.github.com/orgs/codecurious-bln", + "avatar_url": "https://avatars.githubusercontent.com/u/2067368?" + } + }, + { + "id": "10680625032", + "type": "PushEvent", + "actor": { + "id": 190297, + "login": "PiotrSikora", + "display_login": "PiotrSikora", + "gravatar_id": "", + "url": "https://api.github.com/users/PiotrSikora", + "avatar_url": "https://avatars.githubusercontent.com/u/190297?" + }, + "repo": { + "id": 185880979, + "name": "envoyproxy/envoy-wasm", + "url": "https://api.github.com/repos/envoyproxy/envoy-wasm" + }, + "payload": { + "push_id": 4176854908, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "5b4a25e4146fb31ccfa425c70843ff43bd2814c3", + "before": "4bd38639fe0332c55961505d4e091f72895b7f73", + "commits": [ + { + "sha": "5b4a25e4146fb31ccfa425c70843ff43bd2814c3", + "author": { + "email": "piotrsikora@google.com", + "name": "Piotr Sikora" + }, + "message": "Remove support for __errno_location. (#267)\n\nWe don't need it anymore. Missed in #260.\r\n\r\nSigned-off-by: Piotr Sikora ", + "distinct": true, + "url": "https://api.github.com/repos/envoyproxy/envoy-wasm/commits/5b4a25e4146fb31ccfa425c70843ff43bd2814c3" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:48Z", + "org": { + "id": 30125649, + "login": "envoyproxy", + "gravatar_id": "", + "url": "https://api.github.com/orgs/envoyproxy", + "avatar_url": "https://avatars.githubusercontent.com/u/30125649?" + } + }, + { + "id": "10680625027", + "type": "PushEvent", + "actor": { + "id": 27856297, + "login": "dependabot-preview[bot]", + "display_login": "dependabot-preview", + "gravatar_id": "", + "url": "https://api.github.com/users/dependabot-preview[bot]", + "avatar_url": "https://avatars.githubusercontent.com/u/27856297?" + }, + "repo": { + "id": 108659838, + "name": "Profiscience/knockout-contrib", + "url": "https://api.github.com/repos/Profiscience/knockout-contrib" + }, + "payload": { + "push_id": 4176854903, + "size": 2, + "distinct_size": 1, + "ref": "refs/heads/dependabot/npm_and_yarn/webpack-4.41.2", + "head": "19b3686ea1def69b7b4357af1b2c8136c0187e36", + "before": "7d3d86fdc7bab0313a8e7dcc207f65575b9e63ca", + "commits": [ + { + "sha": "9ab424bf5c76e162692c6304c9071d0360de6e75", + "author": { + "email": "27856297+dependabot-preview[bot]@users.noreply.github.com", + "name": "dependabot-preview[bot]" + }, + "message": "build(deps-dev): bump husky from 3.0.5 to 3.0.9 (#331)", + "distinct": false, + "url": "https://api.github.com/repos/Profiscience/knockout-contrib/commits/9ab424bf5c76e162692c6304c9071d0360de6e75" + }, + { + "sha": "19b3686ea1def69b7b4357af1b2c8136c0187e36", + "author": { + "email": "27856297+dependabot-preview[bot]@users.noreply.github.com", + "name": "dependabot-preview[bot]" + }, + "message": "build(deps-dev): bump webpack from 4.40.2 to 4.41.2\n\nBumps [webpack](https://github.com/webpack/webpack) from 4.40.2 to 4.41.2.\n- [Release notes](https://github.com/webpack/webpack/releases)\n- [Commits](https://github.com/webpack/webpack/compare/v4.40.2...v4.41.2)\n\nSigned-off-by: dependabot-preview[bot] ", + "distinct": true, + "url": "https://api.github.com/repos/Profiscience/knockout-contrib/commits/19b3686ea1def69b7b4357af1b2c8136c0187e36" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:48Z", + "org": { + "id": 18732031, + "login": "Profiscience", + "gravatar_id": "", + "url": "https://api.github.com/orgs/Profiscience", + "avatar_url": "https://avatars.githubusercontent.com/u/18732031?" + } + }, + { + "id": "10680625017", + "type": "PushEvent", + "actor": { + "id": 27436824, + "login": "VWesp", + "display_login": "VWesp", + "gravatar_id": "", + "url": "https://api.github.com/users/VWesp", + "avatar_url": "https://avatars.githubusercontent.com/u/27436824?" + }, + "repo": { + "id": 152597396, + "name": "fusion-jena/QuestionsMetadataBiodiv", + "url": "https://api.github.com/repos/fusion-jena/QuestionsMetadataBiodiv" + }, + "payload": { + "push_id": 4176854901, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "1059b39145650a196d83bdde5b01a801d2d20d46", + "before": "321fe758110355c54f663b2d4c2ecaf3f20d0564", + "commits": [ + { + "sha": "1059b39145650a196d83bdde5b01a801d2d20d46", + "author": { + "email": "valentinwesp@yahoo.de", + "name": "VWesp" + }, + "message": "fixed writing bug", + "distinct": true, + "url": "https://api.github.com/repos/fusion-jena/QuestionsMetadataBiodiv/commits/1059b39145650a196d83bdde5b01a801d2d20d46" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:48Z", + "org": { + "id": 18527053, + "login": "fusion-jena", + "gravatar_id": "", + "url": "https://api.github.com/orgs/fusion-jena", + "avatar_url": "https://avatars.githubusercontent.com/u/18527053?" + } + }, + { + "id": "10680625011", + "type": "CreateEvent", + "actor": { + "id": 10810283, + "login": "direwolf-github", + "display_login": "direwolf-github", + "gravatar_id": "", + "url": "https://api.github.com/users/direwolf-github", + "avatar_url": "https://avatars.githubusercontent.com/u/10810283?" + }, + "repo": { + "id": 183051410, + "name": "direwolf-github/my-app", + "url": "https://api.github.com/repos/direwolf-github/my-app" + }, + "payload": { + "ref": "branch-8855a329", + "ref_type": "branch", + "master_branch": "master", + "description": null, + "pusher_type": "user" + }, + "public": true, + "created_at": "2019-10-21T21:54:48Z" + }, + { + "id": "10680625005", + "type": "PushEvent", + "actor": { + "id": 53705924, + "login": "neverFeltAlive", + "display_login": "neverFeltAlive", + "gravatar_id": "", + "url": "https://api.github.com/users/neverFeltAlive", + "avatar_url": "https://avatars.githubusercontent.com/u/53705924?" + }, + "repo": { + "id": 210054233, + "name": "neverFeltAlive/adventuregame", + "url": "https://api.github.com/repos/neverFeltAlive/adventuregame" + }, + "payload": { + "push_id": 4176854894, + "size": 11, + "distinct_size": 11, + "ref": "refs/heads/utility", + "head": "0299f784f89666bd514bf8965a2f8273eddd95dd", + "before": "baa480d987e4b620683dcfc62a6a172187497cd3", + "commits": [ + { + "sha": "6c51472390ccd2f9f33c0bd8decc63e93fbc2d38", + "author": { + "email": "20This.Is.My.Mail00@protonmail.com", + "name": "NeverFeltAlive" + }, + "message": "<--- automatic commit --->", + "distinct": true, + "url": "https://api.github.com/repos/neverFeltAlive/adventuregame/commits/6c51472390ccd2f9f33c0bd8decc63e93fbc2d38" + }, + { + "sha": "5a3a20929bce83057c72822c2e65e0204f77bd81", + "author": { + "email": "20This.Is.My.Mail00@protonmail.com", + "name": "NeverFeltAlive" + }, + "message": "<--- automatic commit --->", + "distinct": true, + "url": "https://api.github.com/repos/neverFeltAlive/adventuregame/commits/5a3a20929bce83057c72822c2e65e0204f77bd81" + }, + { + "sha": "1d49a2c5430e1516ac1f89655d77ca0ff926c95a", + "author": { + "email": "20This.Is.My.Mail00@protonmail.com", + "name": "NeverFeltAlive" + }, + "message": "<--- automatic commit --->", + "distinct": true, + "url": "https://api.github.com/repos/neverFeltAlive/adventuregame/commits/1d49a2c5430e1516ac1f89655d77ca0ff926c95a" + }, + { + "sha": "7bc714a218ac397c95bc93c1725beb8410373af2", + "author": { + "email": "20This.Is.My.Mail00@protonmail.com", + "name": "NeverFeltAlive" + }, + "message": "<--- automatic commit --->", + "distinct": true, + "url": "https://api.github.com/repos/neverFeltAlive/adventuregame/commits/7bc714a218ac397c95bc93c1725beb8410373af2" + }, + { + "sha": "ec3f34bb293937b501cf850192d0427aaa290899", + "author": { + "email": "20This.Is.My.Mail00@protonmail.com", + "name": "NeverFeltAlive" + }, + "message": "<--- automatic commit --->", + "distinct": true, + "url": "https://api.github.com/repos/neverFeltAlive/adventuregame/commits/ec3f34bb293937b501cf850192d0427aaa290899" + }, + { + "sha": "2e5e0084a77c62bc5f490dfe443977b433f64c0a", + "author": { + "email": "20This.Is.My.Mail00@protonmail.com", + "name": "NeverFeltAlive" + }, + "message": "<--- automatic commit --->", + "distinct": true, + "url": "https://api.github.com/repos/neverFeltAlive/adventuregame/commits/2e5e0084a77c62bc5f490dfe443977b433f64c0a" + }, + { + "sha": "681dd9d1bc1bd01f928bbe997265e845b06310e5", + "author": { + "email": "20This.Is.My.Mail00@protonmail.com", + "name": "NeverFeltAlive" + }, + "message": "<--- automatic commit --->", + "distinct": true, + "url": "https://api.github.com/repos/neverFeltAlive/adventuregame/commits/681dd9d1bc1bd01f928bbe997265e845b06310e5" + }, + { + "sha": "7267ab1cd26ae3f7e6e1dd6b51b55d89c3ac3866", + "author": { + "email": "20This.Is.My.Mail00@protonmail.com", + "name": "NeverFeltAlive" + }, + "message": "<--- automatic commit --->", + "distinct": true, + "url": "https://api.github.com/repos/neverFeltAlive/adventuregame/commits/7267ab1cd26ae3f7e6e1dd6b51b55d89c3ac3866" + }, + { + "sha": "0d40f6e59623457cd4d68ad80f75d3b20a89527f", + "author": { + "email": "20This.Is.My.Mail00@protonmail.com", + "name": "NeverFeltAlive" + }, + "message": "<--- automatic commit --->", + "distinct": true, + "url": "https://api.github.com/repos/neverFeltAlive/adventuregame/commits/0d40f6e59623457cd4d68ad80f75d3b20a89527f" + }, + { + "sha": "5c5d9d3ff083981b139cd5da851650003bfd638d", + "author": { + "email": "20This.Is.My.Mail00@protonmail.com", + "name": "NeverFeltAlive" + }, + "message": "<--- automatic commit --->", + "distinct": true, + "url": "https://api.github.com/repos/neverFeltAlive/adventuregame/commits/5c5d9d3ff083981b139cd5da851650003bfd638d" + }, + { + "sha": "0299f784f89666bd514bf8965a2f8273eddd95dd", + "author": { + "email": "20This.Is.My.Mail00@protonmail.com", + "name": "NeverFeltAlive" + }, + "message": "<--- automatic commit --->", + "distinct": true, + "url": "https://api.github.com/repos/neverFeltAlive/adventuregame/commits/0299f784f89666bd514bf8965a2f8273eddd95dd" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:48Z" + }, + { + "id": "10680625001", + "type": "PushEvent", + "actor": { + "id": 33554436, + "login": "SolomonRFeldman", + "display_login": "SolomonRFeldman", + "gravatar_id": "", + "url": "https://api.github.com/users/SolomonRFeldman", + "avatar_url": "https://avatars.githubusercontent.com/u/33554436?" + }, + "repo": { + "id": 216669660, + "name": "SolomonRFeldman/js-data-structures-objects-lab-online-web-sp-000", + "url": "https://api.github.com/repos/SolomonRFeldman/js-data-structures-objects-lab-online-web-sp-000" + }, + "payload": { + "push_id": 4176854892, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/wip", + "head": "40c2c544f4291018ef254de9571a239611db7b2c", + "before": "cf00ec1b78c4b67b031faf97698acb4c9e5e3323", + "commits": [ + { + "sha": "40c2c544f4291018ef254de9571a239611db7b2c", + "author": { + "email": "solomonrfeldman@gmail.com", + "name": "Solomon Feldman" + }, + "message": "Automatically backed up by Learn", + "distinct": true, + "url": "https://api.github.com/repos/SolomonRFeldman/js-data-structures-objects-lab-online-web-sp-000/commits/40c2c544f4291018ef254de9571a239611db7b2c" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:48Z" + }, + { + "id": "10680625000", + "type": "CreateEvent", + "actor": { + "id": 10810283, + "login": "direwolf-github", + "display_login": "direwolf-github", + "gravatar_id": "", + "url": "https://api.github.com/users/direwolf-github", + "avatar_url": "https://avatars.githubusercontent.com/u/10810283?" + }, + "repo": { + "id": 216672323, + "name": "direwolf-github/my-app-f9704ec8", + "url": "https://api.github.com/repos/direwolf-github/my-app-f9704ec8" + }, + "payload": { + "ref": "branch-e08f46fa", + "ref_type": "branch", + "master_branch": "master", + "description": null, + "pusher_type": "user" + }, + "public": true, + "created_at": "2019-10-21T21:54:48Z" + }, + { + "id": "10680624994", + "type": "PushEvent", + "actor": { + "id": 49761379, + "login": "aleixmp", + "display_login": "aleixmp", + "gravatar_id": "", + "url": "https://api.github.com/users/aleixmp", + "avatar_url": "https://avatars.githubusercontent.com/u/49761379?" + }, + "repo": { + "id": 215786848, + "name": "aleixmp/mocks-fakes-spies-and-stubs-kata", + "url": "https://api.github.com/repos/aleixmp/mocks-fakes-spies-and-stubs-kata" + }, + "payload": { + "push_id": 4176854891, + "size": 2, + "distinct_size": 2, + "ref": "refs/heads/master", + "head": "d3108b1a65697a4d495da409b90c01949487a028", + "before": "b6149875bc527d31618a9e49513966cd52129ada", + "commits": [ + { + "sha": "4d0ded89977c5e8d6353efadc95296f6bcee67d5", + "author": { + "email": "aleixmp@users.noreply.github.com", + "name": "Aleix" + }, + "message": "Added Film", + "distinct": true, + "url": "https://api.github.com/repos/aleixmp/mocks-fakes-spies-and-stubs-kata/commits/4d0ded89977c5e8d6353efadc95296f6bcee67d5" + }, + { + "sha": "d3108b1a65697a4d495da409b90c01949487a028", + "author": { + "email": "aleixmp@users.noreply.github.com", + "name": "Aleix" + }, + "message": "Added javafaker\nCreated FilmRandomGenerator", + "distinct": true, + "url": "https://api.github.com/repos/aleixmp/mocks-fakes-spies-and-stubs-kata/commits/d3108b1a65697a4d495da409b90c01949487a028" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:48Z" + }, + { + "id": "10680624998", + "type": "PullRequestEvent", + "actor": { + "id": 35507083, + "login": "vskliarov", + "display_login": "vskliarov", + "gravatar_id": "", + "url": "https://api.github.com/users/vskliarov", + "avatar_url": "https://avatars.githubusercontent.com/u/35507083?" + }, + "repo": { + "id": 126823047, + "name": "gridu/gridu-jenkins", + "url": "https://api.github.com/repos/gridu/gridu-jenkins" + }, + "payload": { + "action": "opened", + "number": 19, + "pull_request": { + "url": "https://api.github.com/repos/gridu/gridu-jenkins/pulls/19", + "id": 330711274, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzMwNzExMjc0", + "html_url": "https://github.com/gridu/gridu-jenkins/pull/19", + "diff_url": "https://github.com/gridu/gridu-jenkins/pull/19.diff", + "patch_url": "https://github.com/gridu/gridu-jenkins/pull/19.patch", + "issue_url": "https://api.github.com/repos/gridu/gridu-jenkins/issues/19", + "number": 19, + "state": "open", + "locked": false, + "title": "[TST-266] + report business english assessment 4.0", + "user": { + "login": "vskliarov", + "id": 35507083, + "node_id": "MDQ6VXNlcjM1NTA3MDgz", + "avatar_url": "https://avatars2.githubusercontent.com/u/35507083?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vskliarov", + "html_url": "https://github.com/vskliarov", + "followers_url": "https://api.github.com/users/vskliarov/followers", + "following_url": "https://api.github.com/users/vskliarov/following{/other_user}", + "gists_url": "https://api.github.com/users/vskliarov/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vskliarov/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vskliarov/subscriptions", + "organizations_url": "https://api.github.com/users/vskliarov/orgs", + "repos_url": "https://api.github.com/users/vskliarov/repos", + "events_url": "https://api.github.com/users/vskliarov/events{/privacy}", + "received_events_url": "https://api.github.com/users/vskliarov/received_events", + "type": "User", + "site_admin": false + }, + "body": "[TST-266](https://issues.griddynamics.net/browse/TST-266)", + "created_at": "2019-10-21T21:54:48Z", + "updated_at": "2019-10-21T21:54:48Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": { + "login": "vskliarov", + "id": 35507083, + "node_id": "MDQ6VXNlcjM1NTA3MDgz", + "avatar_url": "https://avatars2.githubusercontent.com/u/35507083?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vskliarov", + "html_url": "https://github.com/vskliarov", + "followers_url": "https://api.github.com/users/vskliarov/followers", + "following_url": "https://api.github.com/users/vskliarov/following{/other_user}", + "gists_url": "https://api.github.com/users/vskliarov/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vskliarov/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vskliarov/subscriptions", + "organizations_url": "https://api.github.com/users/vskliarov/orgs", + "repos_url": "https://api.github.com/users/vskliarov/repos", + "events_url": "https://api.github.com/users/vskliarov/events{/privacy}", + "received_events_url": "https://api.github.com/users/vskliarov/received_events", + "type": "User", + "site_admin": false + }, + "assignees": [ + { + "login": "vskliarov", + "id": 35507083, + "node_id": "MDQ6VXNlcjM1NTA3MDgz", + "avatar_url": "https://avatars2.githubusercontent.com/u/35507083?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vskliarov", + "html_url": "https://github.com/vskliarov", + "followers_url": "https://api.github.com/users/vskliarov/followers", + "following_url": "https://api.github.com/users/vskliarov/following{/other_user}", + "gists_url": "https://api.github.com/users/vskliarov/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vskliarov/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vskliarov/subscriptions", + "organizations_url": "https://api.github.com/users/vskliarov/orgs", + "repos_url": "https://api.github.com/users/vskliarov/repos", + "events_url": "https://api.github.com/users/vskliarov/events{/privacy}", + "received_events_url": "https://api.github.com/users/vskliarov/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_reviewers": [ + { + "login": "mariachugunova", + "id": 28981821, + "node_id": "MDQ6VXNlcjI4OTgxODIx", + "avatar_url": "https://avatars2.githubusercontent.com/u/28981821?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mariachugunova", + "html_url": "https://github.com/mariachugunova", + "followers_url": "https://api.github.com/users/mariachugunova/followers", + "following_url": "https://api.github.com/users/mariachugunova/following{/other_user}", + "gists_url": "https://api.github.com/users/mariachugunova/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mariachugunova/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mariachugunova/subscriptions", + "organizations_url": "https://api.github.com/users/mariachugunova/orgs", + "repos_url": "https://api.github.com/users/mariachugunova/repos", + "events_url": "https://api.github.com/users/mariachugunova/events{/privacy}", + "received_events_url": "https://api.github.com/users/mariachugunova/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/gridu/gridu-jenkins/pulls/19/commits", + "review_comments_url": "https://api.github.com/repos/gridu/gridu-jenkins/pulls/19/comments", + "review_comment_url": "https://api.github.com/repos/gridu/gridu-jenkins/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/gridu/gridu-jenkins/issues/19/comments", + "statuses_url": "https://api.github.com/repos/gridu/gridu-jenkins/statuses/98b7257713063fc373d1c044fe55ef574da19507", + "head": { + "label": "gridu:TST-266", + "ref": "TST-266", + "sha": "98b7257713063fc373d1c044fe55ef574da19507", + "user": { + "login": "gridu", + "id": 36301767, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjM2MzAxNzY3", + "avatar_url": "https://avatars1.githubusercontent.com/u/36301767?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/gridu", + "html_url": "https://github.com/gridu", + "followers_url": "https://api.github.com/users/gridu/followers", + "following_url": "https://api.github.com/users/gridu/following{/other_user}", + "gists_url": "https://api.github.com/users/gridu/gists{/gist_id}", + "starred_url": "https://api.github.com/users/gridu/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/gridu/subscriptions", + "organizations_url": "https://api.github.com/users/gridu/orgs", + "repos_url": "https://api.github.com/users/gridu/repos", + "events_url": "https://api.github.com/users/gridu/events{/privacy}", + "received_events_url": "https://api.github.com/users/gridu/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 126823047, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjY4MjMwNDc=", + "name": "gridu-jenkins", + "full_name": "gridu/gridu-jenkins", + "private": false, + "owner": { + "login": "gridu", + "id": 36301767, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjM2MzAxNzY3", + "avatar_url": "https://avatars1.githubusercontent.com/u/36301767?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/gridu", + "html_url": "https://github.com/gridu", + "followers_url": "https://api.github.com/users/gridu/followers", + "following_url": "https://api.github.com/users/gridu/following{/other_user}", + "gists_url": "https://api.github.com/users/gridu/gists{/gist_id}", + "starred_url": "https://api.github.com/users/gridu/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/gridu/subscriptions", + "organizations_url": "https://api.github.com/users/gridu/orgs", + "repos_url": "https://api.github.com/users/gridu/repos", + "events_url": "https://api.github.com/users/gridu/events{/privacy}", + "received_events_url": "https://api.github.com/users/gridu/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/gridu/gridu-jenkins", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/gridu/gridu-jenkins", + "forks_url": "https://api.github.com/repos/gridu/gridu-jenkins/forks", + "keys_url": "https://api.github.com/repos/gridu/gridu-jenkins/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/gridu/gridu-jenkins/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/gridu/gridu-jenkins/teams", + "hooks_url": "https://api.github.com/repos/gridu/gridu-jenkins/hooks", + "issue_events_url": "https://api.github.com/repos/gridu/gridu-jenkins/issues/events{/number}", + "events_url": "https://api.github.com/repos/gridu/gridu-jenkins/events", + "assignees_url": "https://api.github.com/repos/gridu/gridu-jenkins/assignees{/user}", + "branches_url": "https://api.github.com/repos/gridu/gridu-jenkins/branches{/branch}", + "tags_url": "https://api.github.com/repos/gridu/gridu-jenkins/tags", + "blobs_url": "https://api.github.com/repos/gridu/gridu-jenkins/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/gridu/gridu-jenkins/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/gridu/gridu-jenkins/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/gridu/gridu-jenkins/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/gridu/gridu-jenkins/statuses/{sha}", + "languages_url": "https://api.github.com/repos/gridu/gridu-jenkins/languages", + "stargazers_url": "https://api.github.com/repos/gridu/gridu-jenkins/stargazers", + "contributors_url": "https://api.github.com/repos/gridu/gridu-jenkins/contributors", + "subscribers_url": "https://api.github.com/repos/gridu/gridu-jenkins/subscribers", + "subscription_url": "https://api.github.com/repos/gridu/gridu-jenkins/subscription", + "commits_url": "https://api.github.com/repos/gridu/gridu-jenkins/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/gridu/gridu-jenkins/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/gridu/gridu-jenkins/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/gridu/gridu-jenkins/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/gridu/gridu-jenkins/contents/{+path}", + "compare_url": "https://api.github.com/repos/gridu/gridu-jenkins/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/gridu/gridu-jenkins/merges", + "archive_url": "https://api.github.com/repos/gridu/gridu-jenkins/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/gridu/gridu-jenkins/downloads", + "issues_url": "https://api.github.com/repos/gridu/gridu-jenkins/issues{/number}", + "pulls_url": "https://api.github.com/repos/gridu/gridu-jenkins/pulls{/number}", + "milestones_url": "https://api.github.com/repos/gridu/gridu-jenkins/milestones{/number}", + "notifications_url": "https://api.github.com/repos/gridu/gridu-jenkins/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/gridu/gridu-jenkins/labels{/name}", + "releases_url": "https://api.github.com/repos/gridu/gridu-jenkins/releases{/id}", + "deployments_url": "https://api.github.com/repos/gridu/gridu-jenkins/deployments", + "created_at": "2018-03-26T12:08:13Z", + "updated_at": "2019-10-21T18:50:08Z", + "pushed_at": "2019-10-21T21:51:25Z", + "git_url": "git://github.com/gridu/gridu-jenkins.git", + "ssh_url": "git@github.com:gridu/gridu-jenkins.git", + "clone_url": "https://github.com/gridu/gridu-jenkins.git", + "svn_url": "https://github.com/gridu/gridu-jenkins", + "homepage": null, + "size": 133, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Groovy", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "gridu:master", + "ref": "master", + "sha": "b3b4fd9e4a2e1aa505cb9d3b7f019f8431e495da", + "user": { + "login": "gridu", + "id": 36301767, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjM2MzAxNzY3", + "avatar_url": "https://avatars1.githubusercontent.com/u/36301767?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/gridu", + "html_url": "https://github.com/gridu", + "followers_url": "https://api.github.com/users/gridu/followers", + "following_url": "https://api.github.com/users/gridu/following{/other_user}", + "gists_url": "https://api.github.com/users/gridu/gists{/gist_id}", + "starred_url": "https://api.github.com/users/gridu/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/gridu/subscriptions", + "organizations_url": "https://api.github.com/users/gridu/orgs", + "repos_url": "https://api.github.com/users/gridu/repos", + "events_url": "https://api.github.com/users/gridu/events{/privacy}", + "received_events_url": "https://api.github.com/users/gridu/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 126823047, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjY4MjMwNDc=", + "name": "gridu-jenkins", + "full_name": "gridu/gridu-jenkins", + "private": false, + "owner": { + "login": "gridu", + "id": 36301767, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjM2MzAxNzY3", + "avatar_url": "https://avatars1.githubusercontent.com/u/36301767?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/gridu", + "html_url": "https://github.com/gridu", + "followers_url": "https://api.github.com/users/gridu/followers", + "following_url": "https://api.github.com/users/gridu/following{/other_user}", + "gists_url": "https://api.github.com/users/gridu/gists{/gist_id}", + "starred_url": "https://api.github.com/users/gridu/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/gridu/subscriptions", + "organizations_url": "https://api.github.com/users/gridu/orgs", + "repos_url": "https://api.github.com/users/gridu/repos", + "events_url": "https://api.github.com/users/gridu/events{/privacy}", + "received_events_url": "https://api.github.com/users/gridu/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/gridu/gridu-jenkins", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/gridu/gridu-jenkins", + "forks_url": "https://api.github.com/repos/gridu/gridu-jenkins/forks", + "keys_url": "https://api.github.com/repos/gridu/gridu-jenkins/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/gridu/gridu-jenkins/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/gridu/gridu-jenkins/teams", + "hooks_url": "https://api.github.com/repos/gridu/gridu-jenkins/hooks", + "issue_events_url": "https://api.github.com/repos/gridu/gridu-jenkins/issues/events{/number}", + "events_url": "https://api.github.com/repos/gridu/gridu-jenkins/events", + "assignees_url": "https://api.github.com/repos/gridu/gridu-jenkins/assignees{/user}", + "branches_url": "https://api.github.com/repos/gridu/gridu-jenkins/branches{/branch}", + "tags_url": "https://api.github.com/repos/gridu/gridu-jenkins/tags", + "blobs_url": "https://api.github.com/repos/gridu/gridu-jenkins/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/gridu/gridu-jenkins/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/gridu/gridu-jenkins/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/gridu/gridu-jenkins/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/gridu/gridu-jenkins/statuses/{sha}", + "languages_url": "https://api.github.com/repos/gridu/gridu-jenkins/languages", + "stargazers_url": "https://api.github.com/repos/gridu/gridu-jenkins/stargazers", + "contributors_url": "https://api.github.com/repos/gridu/gridu-jenkins/contributors", + "subscribers_url": "https://api.github.com/repos/gridu/gridu-jenkins/subscribers", + "subscription_url": "https://api.github.com/repos/gridu/gridu-jenkins/subscription", + "commits_url": "https://api.github.com/repos/gridu/gridu-jenkins/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/gridu/gridu-jenkins/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/gridu/gridu-jenkins/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/gridu/gridu-jenkins/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/gridu/gridu-jenkins/contents/{+path}", + "compare_url": "https://api.github.com/repos/gridu/gridu-jenkins/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/gridu/gridu-jenkins/merges", + "archive_url": "https://api.github.com/repos/gridu/gridu-jenkins/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/gridu/gridu-jenkins/downloads", + "issues_url": "https://api.github.com/repos/gridu/gridu-jenkins/issues{/number}", + "pulls_url": "https://api.github.com/repos/gridu/gridu-jenkins/pulls{/number}", + "milestones_url": "https://api.github.com/repos/gridu/gridu-jenkins/milestones{/number}", + "notifications_url": "https://api.github.com/repos/gridu/gridu-jenkins/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/gridu/gridu-jenkins/labels{/name}", + "releases_url": "https://api.github.com/repos/gridu/gridu-jenkins/releases{/id}", + "deployments_url": "https://api.github.com/repos/gridu/gridu-jenkins/deployments", + "created_at": "2018-03-26T12:08:13Z", + "updated_at": "2019-10-21T18:50:08Z", + "pushed_at": "2019-10-21T21:51:25Z", + "git_url": "git://github.com/gridu/gridu-jenkins.git", + "ssh_url": "git@github.com:gridu/gridu-jenkins.git", + "clone_url": "https://github.com/gridu/gridu-jenkins.git", + "svn_url": "https://github.com/gridu/gridu-jenkins", + "homepage": null, + "size": 133, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Groovy", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/gridu/gridu-jenkins/pulls/19" + }, + "html": { + "href": "https://github.com/gridu/gridu-jenkins/pull/19" + }, + "issue": { + "href": "https://api.github.com/repos/gridu/gridu-jenkins/issues/19" + }, + "comments": { + "href": "https://api.github.com/repos/gridu/gridu-jenkins/issues/19/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/gridu/gridu-jenkins/pulls/19/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/gridu/gridu-jenkins/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/gridu/gridu-jenkins/pulls/19/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/gridu/gridu-jenkins/statuses/98b7257713063fc373d1c044fe55ef574da19507" + } + }, + "author_association": "CONTRIBUTOR", + "merged": false, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 194, + "deletions": 0, + "changed_files": 3 + } + }, + "public": true, + "created_at": "2019-10-21T21:54:48Z", + "org": { + "id": 36301767, + "login": "gridu", + "gravatar_id": "", + "url": "https://api.github.com/orgs/gridu", + "avatar_url": "https://avatars.githubusercontent.com/u/36301767?" + } + }, + { + "id": "10680624991", + "type": "PushEvent", + "actor": { + "id": 21160680, + "login": "gszlan", + "display_login": "gszlan", + "gravatar_id": "", + "url": "https://api.github.com/users/gszlan", + "avatar_url": "https://avatars.githubusercontent.com/u/21160680?" + }, + "repo": { + "id": 195653396, + "name": "gszlan/DukeC-programming", + "url": "https://api.github.com/repos/gszlan/DukeC-programming" + }, + "payload": { + "push_id": 4176854890, + "size": 11, + "distinct_size": 11, + "ref": "refs/heads/master", + "head": "6c05258cfd1a6156ee587923fb2ac0f55d84e482", + "before": "e63bc6b2efce3bc6525e020fba6085654ddd3f49", + "commits": [ + { + "sha": "ad2578315b3c9cf973e233a8cffda96a13d7844f", + "author": { + "email": "invalid@nowhere.com", + "name": "Learn 2 Program Grader" + }, + "message": "graded", + "distinct": true, + "url": "https://api.github.com/repos/gszlan/DukeC-programming/commits/ad2578315b3c9cf973e233a8cffda96a13d7844f" + }, + { + "sha": "7807e29af8106aa4a6c01538c9a745c52db52155", + "author": { + "email": "nobody@nowhere.nul", + "name": "Coursera Learner" + }, + "message": "Merge branch 'master' of https://github.com/gszlan/DukeC-programming\n\ndone", + "distinct": true, + "url": "https://api.github.com/repos/gszlan/DukeC-programming/commits/7807e29af8106aa4a6c01538c9a745c52db52155" + }, + { + "sha": "c19074a391ed36dd451f792c3f003d6bff670a70", + "author": { + "email": "nobody@nowhere.nul", + "name": "Coursera Learner" + }, + "message": "Merge branch 'master' of https://github.com/gszlan/DukeC-programming\n\ndone", + "distinct": true, + "url": "https://api.github.com/repos/gszlan/DukeC-programming/commits/c19074a391ed36dd451f792c3f003d6bff670a70" + }, + { + "sha": "75b9623a81c4c618df19b8e63c5dd3315fc4da67", + "author": { + "email": "invalid@nowhere.com", + "name": "Learn 2 Program Grader" + }, + "message": "graded", + "distinct": true, + "url": "https://api.github.com/repos/gszlan/DukeC-programming/commits/75b9623a81c4c618df19b8e63c5dd3315fc4da67" + }, + { + "sha": "2812192ddc013f7e75b3f1845649eb5ccb8baaea", + "author": { + "email": "nobody@nowhere.nul", + "name": "Coursera Learner" + }, + "message": "Merge branch 'master' of https://github.com/gszlan/DukeC-programming\n\naaa", + "distinct": true, + "url": "https://api.github.com/repos/gszlan/DukeC-programming/commits/2812192ddc013f7e75b3f1845649eb5ccb8baaea" + }, + { + "sha": "a5be6c8362d2030af3cf599a93cbe1a692410c41", + "author": { + "email": "invalid@nowhere.com", + "name": "Learn 2 Program Grader" + }, + "message": "graded", + "distinct": true, + "url": "https://api.github.com/repos/gszlan/DukeC-programming/commits/a5be6c8362d2030af3cf599a93cbe1a692410c41" + }, + { + "sha": "07ea94f84ae40ae341de1158f0a5c1c4804dae8c", + "author": { + "email": "nobody@nowhere.nul", + "name": "Coursera Learner" + }, + "message": "Merge branch 'master' of https://github.com/gszlan/DukeC-programming", + "distinct": true, + "url": "https://api.github.com/repos/gszlan/DukeC-programming/commits/07ea94f84ae40ae341de1158f0a5c1c4804dae8c" + }, + { + "sha": "ad507105658ea4fb49eba1eeb6bb276df29dd809", + "author": { + "email": "invalid@nowhere.com", + "name": "Learn 2 Program Grader" + }, + "message": "graded", + "distinct": true, + "url": "https://api.github.com/repos/gszlan/DukeC-programming/commits/ad507105658ea4fb49eba1eeb6bb276df29dd809" + }, + { + "sha": "9d9d8e3ff80b91b6fe30732b36dee7b5b88196d5", + "author": { + "email": "nobody@nowhere.nul", + "name": "Coursera Learner" + }, + "message": "Merge branch 'master' of https://github.com/gszlan/DukeC-programming", + "distinct": true, + "url": "https://api.github.com/repos/gszlan/DukeC-programming/commits/9d9d8e3ff80b91b6fe30732b36dee7b5b88196d5" + }, + { + "sha": "73be8ad510ef03c368e4d376f9df1ee430c0ad9c", + "author": { + "email": "invalid@nowhere.com", + "name": "Learn 2 Program Grader" + }, + "message": "graded", + "distinct": true, + "url": "https://api.github.com/repos/gszlan/DukeC-programming/commits/73be8ad510ef03c368e4d376f9df1ee430c0ad9c" + }, + { + "sha": "6c05258cfd1a6156ee587923fb2ac0f55d84e482", + "author": { + "email": "invalid@nowhere.com", + "name": "Learn 2 Program Grader" + }, + "message": "Released assignment", + "distinct": true, + "url": "https://api.github.com/repos/gszlan/DukeC-programming/commits/6c05258cfd1a6156ee587923fb2ac0f55d84e482" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:48Z" + }, + { + "id": "10680624987", + "type": "PushEvent", + "actor": { + "id": 817330, + "login": "dtzWill", + "display_login": "dtzWill", + "gravatar_id": "", + "url": "https://api.github.com/users/dtzWill", + "avatar_url": "https://avatars.githubusercontent.com/u/817330?" + }, + "repo": { + "id": 60178915, + "name": "dtzWill/nixpkgs", + "url": "https://api.github.com/repos/dtzWill/nixpkgs" + }, + "payload": { + "push_id": 4176854880, + "size": 2, + "distinct_size": 2, + "ref": "refs/heads/nixos-dtz", + "head": "ad10a85624e7a2b58b8fa849bb494db40a822257", + "before": "84dfd77a4d4232147890c84536114f3b2a0b34db", + "commits": [ + { + "sha": "c66925f91925e470ed1f2532d8a225afa21285ce", + "author": { + "email": "ryantm-bot@ryantm.com", + "name": "R. RyanTM" + }, + "message": "libsForQt5.accounts-qt: 1.15 -> 1.16\n\nSemi-automatic update generated by\nhttps://github.com/ryantm/nixpkgs-update tools. This update was made\nbased on information from\nhttps://repology.org/metapackage/accounts-qt/versions\n\n(cherry picked from commit a4dc3bc24617afb908579c1431e379cbeb6b0d93)", + "distinct": true, + "url": "https://api.github.com/repos/dtzWill/nixpkgs/commits/c66925f91925e470ed1f2532d8a225afa21285ce" + }, + { + "sha": "ad10a85624e7a2b58b8fa849bb494db40a822257", + "author": { + "email": "joerg@thalheim.io", + "name": "Jörg Thalheim" + }, + "message": "linux: remove deprecated kernel config options\n\nOur oldest kernel is 4.4. That's why we can remove configurations that only\napplies to kernels older than that.\n\n(cherry picked from commit 14a6713aefdc711db264735901e2581555f1e86e)", + "distinct": true, + "url": "https://api.github.com/repos/dtzWill/nixpkgs/commits/ad10a85624e7a2b58b8fa849bb494db40a822257" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:48Z" + }, + { + "id": "10680624990", + "type": "PushEvent", + "actor": { + "id": 49883273, + "login": "B-Griffinn", + "display_login": "B-Griffinn", + "gravatar_id": "", + "url": "https://api.github.com/users/B-Griffinn", + "avatar_url": "https://avatars.githubusercontent.com/u/49883273?" + }, + "repo": { + "id": 216102957, + "name": "Build-Week-Kids-Fly-2/Back-End", + "url": "https://api.github.com/repos/Build-Week-Kids-Fly-2/Back-End" + }, + "payload": { + "push_id": 4176854889, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "30555b249ec8d391669c5e0986633c81ae0074e4", + "before": "be176ad97e275562df0352855aa7d1f0d06786ce", + "commits": [ + { + "sha": "30555b249ec8d391669c5e0986633c81ae0074e4", + "author": { + "email": "bigriffin94@outlook.com", + "name": "Ben" + }, + "message": "testing my users get", + "distinct": true, + "url": "https://api.github.com/repos/Build-Week-Kids-Fly-2/Back-End/commits/30555b249ec8d391669c5e0986633c81ae0074e4" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:48Z", + "org": { + "id": 56741693, + "login": "Build-Week-Kids-Fly-2", + "gravatar_id": "", + "url": "https://api.github.com/orgs/Build-Week-Kids-Fly-2", + "avatar_url": "https://avatars.githubusercontent.com/u/56741693?" + } + }, + { + "id": "10680624983", + "type": "PushEvent", + "actor": { + "id": 26882248, + "login": "Oddiesea", + "display_login": "Oddiesea", + "gravatar_id": "", + "url": "https://api.github.com/users/Oddiesea", + "avatar_url": "https://avatars.githubusercontent.com/u/26882248?" + }, + "repo": { + "id": 216225209, + "name": "Oddiesea/portfolio", + "url": "https://api.github.com/repos/Oddiesea/portfolio" + }, + "payload": { + "push_id": 4176854884, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "61a4f6c6a093379eb8a5c8212c4fd59c2b6583f4", + "before": "371b9b4cc0a641cb7dd1b1c5e67b920ff267e6ee", + "commits": [ + { + "sha": "61a4f6c6a093379eb8a5c8212c4fd59c2b6583f4", + "author": { + "email": "liamwiltonjones@gmail.com", + "name": "Oddiesea" + }, + "message": "Styling and refactor", + "distinct": true, + "url": "https://api.github.com/repos/Oddiesea/portfolio/commits/61a4f6c6a093379eb8a5c8212c4fd59c2b6583f4" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:48Z" + }, + { + "id": "10680624984", + "type": "IssueCommentEvent", + "actor": { + "id": 37936606, + "login": "github-learning-lab[bot]", + "display_login": "github-learning-lab", + "gravatar_id": "", + "url": "https://api.github.com/users/github-learning-lab[bot]", + "avatar_url": "https://avatars.githubusercontent.com/u/37936606?" + }, + "repo": { + "id": 216671952, + "name": "rcordeirotmu/reviewing-a-pull-request", + "url": "https://api.github.com/repos/rcordeirotmu/reviewing-a-pull-request" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/rcordeirotmu/reviewing-a-pull-request/issues/1", + "repository_url": "https://api.github.com/repos/rcordeirotmu/reviewing-a-pull-request", + "labels_url": "https://api.github.com/repos/rcordeirotmu/reviewing-a-pull-request/issues/1/labels{/name}", + "comments_url": "https://api.github.com/repos/rcordeirotmu/reviewing-a-pull-request/issues/1/comments", + "events_url": "https://api.github.com/repos/rcordeirotmu/reviewing-a-pull-request/issues/1/events", + "html_url": "https://github.com/rcordeirotmu/reviewing-a-pull-request/issues/1", + "id": 510314364, + "node_id": "MDU6SXNzdWU1MTAzMTQzNjQ=", + "number": 1, + "title": "Welcome", + "user": { + "login": "github-learning-lab[bot]", + "id": 37936606, + "node_id": "MDM6Qm90Mzc5MzY2MDY=", + "avatar_url": "https://avatars0.githubusercontent.com/in/10572?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-learning-lab%5Bbot%5D", + "html_url": "https://github.com/apps/github-learning-lab", + "followers_url": "https://api.github.com/users/github-learning-lab%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-learning-lab%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-learning-lab%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-learning-lab%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-learning-lab%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-learning-lab%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-learning-lab%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-learning-lab%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-learning-lab%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": { + "login": "rcordeirotmu", + "id": 54368413, + "node_id": "MDQ6VXNlcjU0MzY4NDEz", + "avatar_url": "https://avatars0.githubusercontent.com/u/54368413?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rcordeirotmu", + "html_url": "https://github.com/rcordeirotmu", + "followers_url": "https://api.github.com/users/rcordeirotmu/followers", + "following_url": "https://api.github.com/users/rcordeirotmu/following{/other_user}", + "gists_url": "https://api.github.com/users/rcordeirotmu/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rcordeirotmu/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rcordeirotmu/subscriptions", + "organizations_url": "https://api.github.com/users/rcordeirotmu/orgs", + "repos_url": "https://api.github.com/users/rcordeirotmu/repos", + "events_url": "https://api.github.com/users/rcordeirotmu/events{/privacy}", + "received_events_url": "https://api.github.com/users/rcordeirotmu/received_events", + "type": "User", + "site_admin": false + }, + "assignees": [ + { + "login": "rcordeirotmu", + "id": 54368413, + "node_id": "MDQ6VXNlcjU0MzY4NDEz", + "avatar_url": "https://avatars0.githubusercontent.com/u/54368413?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rcordeirotmu", + "html_url": "https://github.com/rcordeirotmu", + "followers_url": "https://api.github.com/users/rcordeirotmu/followers", + "following_url": "https://api.github.com/users/rcordeirotmu/following{/other_user}", + "gists_url": "https://api.github.com/users/rcordeirotmu/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rcordeirotmu/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rcordeirotmu/subscriptions", + "organizations_url": "https://api.github.com/users/rcordeirotmu/orgs", + "repos_url": "https://api.github.com/users/rcordeirotmu/repos", + "events_url": "https://api.github.com/users/rcordeirotmu/events{/privacy}", + "received_events_url": "https://api.github.com/users/rcordeirotmu/received_events", + "type": "User", + "site_admin": false + } + ], + "milestone": null, + "comments": 0, + "created_at": "2019-10-21T21:52:26Z", + "updated_at": "2019-10-21T21:54:48Z", + "closed_at": null, + "author_association": "NONE", + "body": "## Welcome!\n\nHello and welcome! In this course you will learn how you can get your best work done in pull requests. You'll learn when and how to request a review, how to review someone else's code, and how to respond to reviews. To do this, we'll be playing around with the code in this repository that makes a simple Tetris game.\n\nIf you'd like, you can use [GitHub Pages](https://pages.github.com/) to host your Tetris game. Just go to the **Settings** tab of this repository. Scroll down to **GitHub Pages**. Select `master` as a **Source**, and click **Save**. \n\n### New to GitHub?\n\nFor this course, you'll need some background knowledge. If you need a refresher on the GitHub flow, check out [the Introduction to GitHub course](https://lab.github.com/courses/introduction-to-github).\n\n## Pull Requests Reviews 101\n\nReviewing a pull request is an opportunity to examine another contributor's changes. While reviewing a pull request, you can extrapolate how someone else solved a problem. It's an awesome opportunity to learn more about how the code works and how others solve problems. Reviewing a pull request is a great learning opportunity!\n\n## Step 1: Add assignees for issues and pull requests\n\nAssignees on issues and pull requests let other team members know who is responsible. The assignee oversees the issue or pull request in an accessible and visible way.\n\n### :keyboard: Activity: Assign yourself to this issue\n\n1. On the right side of the screen, click the `assign yourself` text under the **Assignees** section\n\n
        \n

        I'll respond below for your next step

        \n\n> _Sometimes I respond too fast for the page to update! If you perform an expected action and don't see a response, wait a few seconds and refresh the page for your next steps._\n" + }, + "comment": { + "url": "https://api.github.com/repos/rcordeirotmu/reviewing-a-pull-request/issues/comments/544724566", + "html_url": "https://github.com/rcordeirotmu/reviewing-a-pull-request/issues/1#issuecomment-544724566", + "issue_url": "https://api.github.com/repos/rcordeirotmu/reviewing-a-pull-request/issues/1", + "id": 544724566, + "node_id": "MDEyOklzc3VlQ29tbWVudDU0NDcyNDU2Ng==", + "user": { + "login": "github-learning-lab[bot]", + "id": 37936606, + "node_id": "MDM6Qm90Mzc5MzY2MDY=", + "avatar_url": "https://avatars0.githubusercontent.com/in/10572?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-learning-lab%5Bbot%5D", + "html_url": "https://github.com/apps/github-learning-lab", + "followers_url": "https://api.github.com/users/github-learning-lab%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-learning-lab%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-learning-lab%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-learning-lab%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-learning-lab%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-learning-lab%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-learning-lab%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-learning-lab%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-learning-lab%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "created_at": "2019-10-21T21:54:48Z", + "updated_at": "2019-10-21T21:54:48Z", + "author_association": "NONE", + "body": "Nice work, @rcordeirotmu! Assigning yourself to an issue is a great way to let people know what you are working on. Once you begin working, it's important to get feedback on your work through reviews.\n\n
        \n

        Learn more in the next pull request

        \n" + } + }, + "public": true, + "created_at": "2019-10-21T21:54:48Z" + }, + { + "id": "10680624981", + "type": "PullRequestEvent", + "actor": { + "id": 28238025, + "login": "dekkerglen", + "display_login": "dekkerglen", + "gravatar_id": "", + "url": "https://api.github.com/users/dekkerglen", + "avatar_url": "https://avatars.githubusercontent.com/u/28238025?" + }, + "repo": { + "id": 199488444, + "name": "dekkerglen/CubeCobra", + "url": "https://api.github.com/repos/dekkerglen/CubeCobra" + }, + "payload": { + "action": "closed", + "number": 608, + "pull_request": { + "url": "https://api.github.com/repos/dekkerglen/CubeCobra/pulls/608", + "id": 328381447, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzI4MzgxNDQ3", + "html_url": "https://github.com/dekkerglen/CubeCobra/pull/608", + "diff_url": "https://github.com/dekkerglen/CubeCobra/pull/608.diff", + "patch_url": "https://github.com/dekkerglen/CubeCobra/pull/608.patch", + "issue_url": "https://api.github.com/repos/dekkerglen/CubeCobra/issues/608", + "number": 608, + "state": "closed", + "locked": false, + "title": "Fetch price data for all card versions to display in CardModal", + "user": { + "login": "anderoonies", + "id": 6645121, + "node_id": "MDQ6VXNlcjY2NDUxMjE=", + "avatar_url": "https://avatars0.githubusercontent.com/u/6645121?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/anderoonies", + "html_url": "https://github.com/anderoonies", + "followers_url": "https://api.github.com/users/anderoonies/followers", + "following_url": "https://api.github.com/users/anderoonies/following{/other_user}", + "gists_url": "https://api.github.com/users/anderoonies/gists{/gist_id}", + "starred_url": "https://api.github.com/users/anderoonies/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/anderoonies/subscriptions", + "organizations_url": "https://api.github.com/users/anderoonies/orgs", + "repos_url": "https://api.github.com/users/anderoonies/repos", + "events_url": "https://api.github.com/users/anderoonies/events{/privacy}", + "received_events_url": "https://api.github.com/users/anderoonies/received_events", + "type": "User", + "site_admin": false + }, + "body": "fixes #607 \r\n\r\n`getversions` fetches price data, which is passed into the card modal so version changes have access to prices\r\n\r\nunable to test this fully locally because i don't have access to the tcgplayer api, but if someone who does could test this that would be great 🙇 ", + "created_at": "2019-10-15T17:24:21Z", + "updated_at": "2019-10-21T21:54:48Z", + "closed_at": "2019-10-21T21:54:48Z", + "merged_at": "2019-10-21T21:54:47Z", + "merge_commit_sha": "eb3028813d9f14f92538ada84ae11a73346d9b38", + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/dekkerglen/CubeCobra/pulls/608/commits", + "review_comments_url": "https://api.github.com/repos/dekkerglen/CubeCobra/pulls/608/comments", + "review_comment_url": "https://api.github.com/repos/dekkerglen/CubeCobra/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/dekkerglen/CubeCobra/issues/608/comments", + "statuses_url": "https://api.github.com/repos/dekkerglen/CubeCobra/statuses/62f262d63ddea88e2269a30c3ea7a31f2c8cd8db", + "head": { + "label": "anderoonies:reload-price-in-card-modal-on-version-change", + "ref": "reload-price-in-card-modal-on-version-change", + "sha": "62f262d63ddea88e2269a30c3ea7a31f2c8cd8db", + "user": { + "login": "anderoonies", + "id": 6645121, + "node_id": "MDQ6VXNlcjY2NDUxMjE=", + "avatar_url": "https://avatars0.githubusercontent.com/u/6645121?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/anderoonies", + "html_url": "https://github.com/anderoonies", + "followers_url": "https://api.github.com/users/anderoonies/followers", + "following_url": "https://api.github.com/users/anderoonies/following{/other_user}", + "gists_url": "https://api.github.com/users/anderoonies/gists{/gist_id}", + "starred_url": "https://api.github.com/users/anderoonies/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/anderoonies/subscriptions", + "organizations_url": "https://api.github.com/users/anderoonies/orgs", + "repos_url": "https://api.github.com/users/anderoonies/repos", + "events_url": "https://api.github.com/users/anderoonies/events{/privacy}", + "received_events_url": "https://api.github.com/users/anderoonies/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 215356555, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTUzNTY1NTU=", + "name": "CubeCobra", + "full_name": "anderoonies/CubeCobra", + "private": false, + "owner": { + "login": "anderoonies", + "id": 6645121, + "node_id": "MDQ6VXNlcjY2NDUxMjE=", + "avatar_url": "https://avatars0.githubusercontent.com/u/6645121?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/anderoonies", + "html_url": "https://github.com/anderoonies", + "followers_url": "https://api.github.com/users/anderoonies/followers", + "following_url": "https://api.github.com/users/anderoonies/following{/other_user}", + "gists_url": "https://api.github.com/users/anderoonies/gists{/gist_id}", + "starred_url": "https://api.github.com/users/anderoonies/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/anderoonies/subscriptions", + "organizations_url": "https://api.github.com/users/anderoonies/orgs", + "repos_url": "https://api.github.com/users/anderoonies/repos", + "events_url": "https://api.github.com/users/anderoonies/events{/privacy}", + "received_events_url": "https://api.github.com/users/anderoonies/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/anderoonies/CubeCobra", + "description": "An open source web application for building, managing, and playtesting Magic the Gathering cubes.", + "fork": true, + "url": "https://api.github.com/repos/anderoonies/CubeCobra", + "forks_url": "https://api.github.com/repos/anderoonies/CubeCobra/forks", + "keys_url": "https://api.github.com/repos/anderoonies/CubeCobra/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/anderoonies/CubeCobra/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/anderoonies/CubeCobra/teams", + "hooks_url": "https://api.github.com/repos/anderoonies/CubeCobra/hooks", + "issue_events_url": "https://api.github.com/repos/anderoonies/CubeCobra/issues/events{/number}", + "events_url": "https://api.github.com/repos/anderoonies/CubeCobra/events", + "assignees_url": "https://api.github.com/repos/anderoonies/CubeCobra/assignees{/user}", + "branches_url": "https://api.github.com/repos/anderoonies/CubeCobra/branches{/branch}", + "tags_url": "https://api.github.com/repos/anderoonies/CubeCobra/tags", + "blobs_url": "https://api.github.com/repos/anderoonies/CubeCobra/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/anderoonies/CubeCobra/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/anderoonies/CubeCobra/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/anderoonies/CubeCobra/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/anderoonies/CubeCobra/statuses/{sha}", + "languages_url": "https://api.github.com/repos/anderoonies/CubeCobra/languages", + "stargazers_url": "https://api.github.com/repos/anderoonies/CubeCobra/stargazers", + "contributors_url": "https://api.github.com/repos/anderoonies/CubeCobra/contributors", + "subscribers_url": "https://api.github.com/repos/anderoonies/CubeCobra/subscribers", + "subscription_url": "https://api.github.com/repos/anderoonies/CubeCobra/subscription", + "commits_url": "https://api.github.com/repos/anderoonies/CubeCobra/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/anderoonies/CubeCobra/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/anderoonies/CubeCobra/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/anderoonies/CubeCobra/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/anderoonies/CubeCobra/contents/{+path}", + "compare_url": "https://api.github.com/repos/anderoonies/CubeCobra/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/anderoonies/CubeCobra/merges", + "archive_url": "https://api.github.com/repos/anderoonies/CubeCobra/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/anderoonies/CubeCobra/downloads", + "issues_url": "https://api.github.com/repos/anderoonies/CubeCobra/issues{/number}", + "pulls_url": "https://api.github.com/repos/anderoonies/CubeCobra/pulls{/number}", + "milestones_url": "https://api.github.com/repos/anderoonies/CubeCobra/milestones{/number}", + "notifications_url": "https://api.github.com/repos/anderoonies/CubeCobra/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/anderoonies/CubeCobra/labels{/name}", + "releases_url": "https://api.github.com/repos/anderoonies/CubeCobra/releases{/id}", + "deployments_url": "https://api.github.com/repos/anderoonies/CubeCobra/deployments", + "created_at": "2019-10-15T17:21:57Z", + "updated_at": "2019-10-15T17:21:59Z", + "pushed_at": "2019-10-21T20:17:22Z", + "git_url": "git://github.com/anderoonies/CubeCobra.git", + "ssh_url": "git@github.com:anderoonies/CubeCobra.git", + "clone_url": "https://github.com/anderoonies/CubeCobra.git", + "svn_url": "https://github.com/anderoonies/CubeCobra", + "homepage": "https://www.cubecobra.com", + "size": 8332, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "dekkerglen:master", + "ref": "master", + "sha": "f25ddd94644152d3bb6f2641e552b05108d13475", + "user": { + "login": "dekkerglen", + "id": 28238025, + "node_id": "MDQ6VXNlcjI4MjM4MDI1", + "avatar_url": "https://avatars0.githubusercontent.com/u/28238025?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dekkerglen", + "html_url": "https://github.com/dekkerglen", + "followers_url": "https://api.github.com/users/dekkerglen/followers", + "following_url": "https://api.github.com/users/dekkerglen/following{/other_user}", + "gists_url": "https://api.github.com/users/dekkerglen/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dekkerglen/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dekkerglen/subscriptions", + "organizations_url": "https://api.github.com/users/dekkerglen/orgs", + "repos_url": "https://api.github.com/users/dekkerglen/repos", + "events_url": "https://api.github.com/users/dekkerglen/events{/privacy}", + "received_events_url": "https://api.github.com/users/dekkerglen/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 199488444, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTk0ODg0NDQ=", + "name": "CubeCobra", + "full_name": "dekkerglen/CubeCobra", + "private": false, + "owner": { + "login": "dekkerglen", + "id": 28238025, + "node_id": "MDQ6VXNlcjI4MjM4MDI1", + "avatar_url": "https://avatars0.githubusercontent.com/u/28238025?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dekkerglen", + "html_url": "https://github.com/dekkerglen", + "followers_url": "https://api.github.com/users/dekkerglen/followers", + "following_url": "https://api.github.com/users/dekkerglen/following{/other_user}", + "gists_url": "https://api.github.com/users/dekkerglen/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dekkerglen/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dekkerglen/subscriptions", + "organizations_url": "https://api.github.com/users/dekkerglen/orgs", + "repos_url": "https://api.github.com/users/dekkerglen/repos", + "events_url": "https://api.github.com/users/dekkerglen/events{/privacy}", + "received_events_url": "https://api.github.com/users/dekkerglen/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/dekkerglen/CubeCobra", + "description": "An open source web application for building, managing, and playtesting Magic the Gathering cubes.", + "fork": false, + "url": "https://api.github.com/repos/dekkerglen/CubeCobra", + "forks_url": "https://api.github.com/repos/dekkerglen/CubeCobra/forks", + "keys_url": "https://api.github.com/repos/dekkerglen/CubeCobra/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/dekkerglen/CubeCobra/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/dekkerglen/CubeCobra/teams", + "hooks_url": "https://api.github.com/repos/dekkerglen/CubeCobra/hooks", + "issue_events_url": "https://api.github.com/repos/dekkerglen/CubeCobra/issues/events{/number}", + "events_url": "https://api.github.com/repos/dekkerglen/CubeCobra/events", + "assignees_url": "https://api.github.com/repos/dekkerglen/CubeCobra/assignees{/user}", + "branches_url": "https://api.github.com/repos/dekkerglen/CubeCobra/branches{/branch}", + "tags_url": "https://api.github.com/repos/dekkerglen/CubeCobra/tags", + "blobs_url": "https://api.github.com/repos/dekkerglen/CubeCobra/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/dekkerglen/CubeCobra/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/dekkerglen/CubeCobra/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/dekkerglen/CubeCobra/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/dekkerglen/CubeCobra/statuses/{sha}", + "languages_url": "https://api.github.com/repos/dekkerglen/CubeCobra/languages", + "stargazers_url": "https://api.github.com/repos/dekkerglen/CubeCobra/stargazers", + "contributors_url": "https://api.github.com/repos/dekkerglen/CubeCobra/contributors", + "subscribers_url": "https://api.github.com/repos/dekkerglen/CubeCobra/subscribers", + "subscription_url": "https://api.github.com/repos/dekkerglen/CubeCobra/subscription", + "commits_url": "https://api.github.com/repos/dekkerglen/CubeCobra/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/dekkerglen/CubeCobra/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/dekkerglen/CubeCobra/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/dekkerglen/CubeCobra/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/dekkerglen/CubeCobra/contents/{+path}", + "compare_url": "https://api.github.com/repos/dekkerglen/CubeCobra/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/dekkerglen/CubeCobra/merges", + "archive_url": "https://api.github.com/repos/dekkerglen/CubeCobra/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/dekkerglen/CubeCobra/downloads", + "issues_url": "https://api.github.com/repos/dekkerglen/CubeCobra/issues{/number}", + "pulls_url": "https://api.github.com/repos/dekkerglen/CubeCobra/pulls{/number}", + "milestones_url": "https://api.github.com/repos/dekkerglen/CubeCobra/milestones{/number}", + "notifications_url": "https://api.github.com/repos/dekkerglen/CubeCobra/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/dekkerglen/CubeCobra/labels{/name}", + "releases_url": "https://api.github.com/repos/dekkerglen/CubeCobra/releases{/id}", + "deployments_url": "https://api.github.com/repos/dekkerglen/CubeCobra/deployments", + "created_at": "2019-07-29T16:24:01Z", + "updated_at": "2019-10-21T21:53:42Z", + "pushed_at": "2019-10-21T21:54:47Z", + "git_url": "git://github.com/dekkerglen/CubeCobra.git", + "ssh_url": "git@github.com:dekkerglen/CubeCobra.git", + "clone_url": "https://github.com/dekkerglen/CubeCobra.git", + "svn_url": "https://github.com/dekkerglen/CubeCobra", + "homepage": "https://www.cubecobra.com", + "size": 8357, + "stargazers_count": 39, + "watchers_count": 39, + "language": "JavaScript", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 28, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 126, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 28, + "open_issues": 126, + "watchers": 39, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/dekkerglen/CubeCobra/pulls/608" + }, + "html": { + "href": "https://github.com/dekkerglen/CubeCobra/pull/608" + }, + "issue": { + "href": "https://api.github.com/repos/dekkerglen/CubeCobra/issues/608" + }, + "comments": { + "href": "https://api.github.com/repos/dekkerglen/CubeCobra/issues/608/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/dekkerglen/CubeCobra/pulls/608/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/dekkerglen/CubeCobra/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/dekkerglen/CubeCobra/pulls/608/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/dekkerglen/CubeCobra/statuses/62f262d63ddea88e2269a30c3ea7a31f2c8cd8db" + } + }, + "author_association": "NONE", + "merged": true, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": { + "login": "dekkerglen", + "id": 28238025, + "node_id": "MDQ6VXNlcjI4MjM4MDI1", + "avatar_url": "https://avatars0.githubusercontent.com/u/28238025?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dekkerglen", + "html_url": "https://github.com/dekkerglen", + "followers_url": "https://api.github.com/users/dekkerglen/followers", + "following_url": "https://api.github.com/users/dekkerglen/following{/other_user}", + "gists_url": "https://api.github.com/users/dekkerglen/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dekkerglen/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dekkerglen/subscriptions", + "organizations_url": "https://api.github.com/users/dekkerglen/orgs", + "repos_url": "https://api.github.com/users/dekkerglen/repos", + "events_url": "https://api.github.com/users/dekkerglen/events{/privacy}", + "received_events_url": "https://api.github.com/users/dekkerglen/received_events", + "type": "User", + "site_admin": false + }, + "comments": 0, + "review_comments": 3, + "maintainer_can_modify": false, + "commits": 3, + "additions": 29, + "deletions": 9, + "changed_files": 2 + } + }, + "public": true, + "created_at": "2019-10-21T21:54:48Z" + }, + { + "id": "10680624979", + "type": "PushEvent", + "actor": { + "id": 8759693, + "login": "couven92", + "display_login": "couven92", + "gravatar_id": "", + "url": "https://api.github.com/users/couven92", + "avatar_url": "https://avatars.githubusercontent.com/u/8759693?" + }, + "repo": { + "id": 74722074, + "name": "thnetii/windows-api", + "url": "https://api.github.com/repos/thnetii/windows-api" + }, + "payload": { + "push_id": 4176854881, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "b826329617c6f44caaac3be82a3147d082e404b7", + "before": "4ff7211da7ee2bfa13e742c6332d78b228a4f4dc", + "commits": [ + { + "sha": "b826329617c6f44caaac3be82a3147d082e404b7", + "author": { + "email": "fredrik.rasch@gmail.com", + "name": "Fredrik Høisæther Rasch" + }, + "message": "Update azure-pipelines.yml", + "distinct": true, + "url": "https://api.github.com/repos/thnetii/windows-api/commits/b826329617c6f44caaac3be82a3147d082e404b7" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:48Z", + "org": { + "id": 26299854, + "login": "thnetii", + "gravatar_id": "", + "url": "https://api.github.com/orgs/thnetii", + "avatar_url": "https://avatars.githubusercontent.com/u/26299854?" + } + }, + { + "id": "10680624968", + "type": "PushEvent", + "actor": { + "id": 2940419, + "login": "Adrir", + "display_login": "Adrir", + "gravatar_id": "", + "url": "https://api.github.com/users/Adrir", + "avatar_url": "https://avatars.githubusercontent.com/u/2940419?" + }, + "repo": { + "id": 213589753, + "name": "Adrir/comp120-tinkering-graphics", + "url": "https://api.github.com/repos/Adrir/comp120-tinkering-graphics" + }, + "payload": { + "push_id": 4176854876, + "size": 2, + "distinct_size": 2, + "ref": "refs/heads/master", + "head": "f4b6567d15dfe6709d3eecd304877e4ca32ac308", + "before": "0d0b5abb37eae9421cf0cbdcc63e37e2cd0f1a06", + "commits": [ + { + "sha": "c9e1902ed9e9a684bfd7f9d16943427ee730e38e", + "author": { + "email": "adrir@adrir.com", + "name": "Adrir" + }, + "message": "Added information about the project to README.md", + "distinct": true, + "url": "https://api.github.com/repos/Adrir/comp120-tinkering-graphics/commits/c9e1902ed9e9a684bfd7f9d16943427ee730e38e" + }, + { + "sha": "f4b6567d15dfe6709d3eecd304877e4ca32ac308", + "author": { + "email": "adrir@adrir.com", + "name": "Adrir" + }, + "message": "Merge branch 'master' of https://github.com/Adrir/comp120-tinkering-graphics", + "distinct": true, + "url": "https://api.github.com/repos/Adrir/comp120-tinkering-graphics/commits/f4b6567d15dfe6709d3eecd304877e4ca32ac308" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:48Z" + }, + { + "id": "10680624975", + "type": "PushEvent", + "actor": { + "id": 53057190, + "login": "Besker1", + "display_login": "Besker1", + "gravatar_id": "", + "url": "https://api.github.com/users/Besker1", + "avatar_url": "https://avatars.githubusercontent.com/u/53057190?" + }, + "repo": { + "id": 213773409, + "name": "Besker1/besker1.github.io", + "url": "https://api.github.com/repos/Besker1/besker1.github.io" + }, + "payload": { + "push_id": 4176854871, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "ccc9ca4e384c48c6543b66801cb9dc8df3fd2178", + "before": "6bcfc18c475e5ab4de1f89a5a588ea628367ea38", + "commits": [ + { + "sha": "ccc9ca4e384c48c6543b66801cb9dc8df3fd2178", + "author": { + "email": "beskertelisma26@gmail.com", + "name": "Besker Telisma" + }, + "message": "updated studies", + "distinct": true, + "url": "https://api.github.com/repos/Besker1/besker1.github.io/commits/ccc9ca4e384c48c6543b66801cb9dc8df3fd2178" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:48Z" + }, + { + "id": "10680624976", + "type": "PullRequestEvent", + "actor": { + "id": 4157996, + "login": "esellors", + "display_login": "esellors", + "gravatar_id": "", + "url": "https://api.github.com/users/esellors", + "avatar_url": "https://avatars.githubusercontent.com/u/4157996?" + }, + "repo": { + "id": 216093525, + "name": "dm-group-trakd/trakd", + "url": "https://api.github.com/repos/dm-group-trakd/trakd" + }, + "payload": { + "action": "closed", + "number": 18, + "pull_request": { + "url": "https://api.github.com/repos/dm-group-trakd/trakd/pulls/18", + "id": 330702921, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzMwNzAyOTIx", + "html_url": "https://github.com/dm-group-trakd/trakd/pull/18", + "diff_url": "https://github.com/dm-group-trakd/trakd/pull/18.diff", + "patch_url": "https://github.com/dm-group-trakd/trakd/pull/18.patch", + "issue_url": "https://api.github.com/repos/dm-group-trakd/trakd/issues/18", + "number": 18, + "state": "closed", + "locked": false, + "title": "add settings component include methods for updating user settings and goals, fixed bug with user reducer", + "user": { + "login": "jensenjamison", + "id": 48266902, + "node_id": "MDQ6VXNlcjQ4MjY2OTAy", + "avatar_url": "https://avatars1.githubusercontent.com/u/48266902?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jensenjamison", + "html_url": "https://github.com/jensenjamison", + "followers_url": "https://api.github.com/users/jensenjamison/followers", + "following_url": "https://api.github.com/users/jensenjamison/following{/other_user}", + "gists_url": "https://api.github.com/users/jensenjamison/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jensenjamison/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jensenjamison/subscriptions", + "organizations_url": "https://api.github.com/users/jensenjamison/orgs", + "repos_url": "https://api.github.com/users/jensenjamison/repos", + "events_url": "https://api.github.com/users/jensenjamison/events{/privacy}", + "received_events_url": "https://api.github.com/users/jensenjamison/received_events", + "type": "User", + "site_admin": false + }, + "body": "", + "created_at": "2019-10-21T21:30:09Z", + "updated_at": "2019-10-21T21:54:48Z", + "closed_at": "2019-10-21T21:54:48Z", + "merged_at": "2019-10-21T21:54:48Z", + "merge_commit_sha": "56d21eeee46fd18ad1a3ada1ddc0dde40ee148fd", + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/dm-group-trakd/trakd/pulls/18/commits", + "review_comments_url": "https://api.github.com/repos/dm-group-trakd/trakd/pulls/18/comments", + "review_comment_url": "https://api.github.com/repos/dm-group-trakd/trakd/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/dm-group-trakd/trakd/issues/18/comments", + "statuses_url": "https://api.github.com/repos/dm-group-trakd/trakd/statuses/66a7bf7d92111a5056813ae964574d48e431b470", + "head": { + "label": "dm-group-trakd:jamison", + "ref": "jamison", + "sha": "66a7bf7d92111a5056813ae964574d48e431b470", + "user": { + "login": "dm-group-trakd", + "id": 56691813, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU2NjkxODEz", + "avatar_url": "https://avatars3.githubusercontent.com/u/56691813?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dm-group-trakd", + "html_url": "https://github.com/dm-group-trakd", + "followers_url": "https://api.github.com/users/dm-group-trakd/followers", + "following_url": "https://api.github.com/users/dm-group-trakd/following{/other_user}", + "gists_url": "https://api.github.com/users/dm-group-trakd/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dm-group-trakd/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dm-group-trakd/subscriptions", + "organizations_url": "https://api.github.com/users/dm-group-trakd/orgs", + "repos_url": "https://api.github.com/users/dm-group-trakd/repos", + "events_url": "https://api.github.com/users/dm-group-trakd/events{/privacy}", + "received_events_url": "https://api.github.com/users/dm-group-trakd/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 216093525, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTYwOTM1MjU=", + "name": "trakd", + "full_name": "dm-group-trakd/trakd", + "private": false, + "owner": { + "login": "dm-group-trakd", + "id": 56691813, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU2NjkxODEz", + "avatar_url": "https://avatars3.githubusercontent.com/u/56691813?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dm-group-trakd", + "html_url": "https://github.com/dm-group-trakd", + "followers_url": "https://api.github.com/users/dm-group-trakd/followers", + "following_url": "https://api.github.com/users/dm-group-trakd/following{/other_user}", + "gists_url": "https://api.github.com/users/dm-group-trakd/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dm-group-trakd/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dm-group-trakd/subscriptions", + "organizations_url": "https://api.github.com/users/dm-group-trakd/orgs", + "repos_url": "https://api.github.com/users/dm-group-trakd/repos", + "events_url": "https://api.github.com/users/dm-group-trakd/events{/privacy}", + "received_events_url": "https://api.github.com/users/dm-group-trakd/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/dm-group-trakd/trakd", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/dm-group-trakd/trakd", + "forks_url": "https://api.github.com/repos/dm-group-trakd/trakd/forks", + "keys_url": "https://api.github.com/repos/dm-group-trakd/trakd/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/dm-group-trakd/trakd/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/dm-group-trakd/trakd/teams", + "hooks_url": "https://api.github.com/repos/dm-group-trakd/trakd/hooks", + "issue_events_url": "https://api.github.com/repos/dm-group-trakd/trakd/issues/events{/number}", + "events_url": "https://api.github.com/repos/dm-group-trakd/trakd/events", + "assignees_url": "https://api.github.com/repos/dm-group-trakd/trakd/assignees{/user}", + "branches_url": "https://api.github.com/repos/dm-group-trakd/trakd/branches{/branch}", + "tags_url": "https://api.github.com/repos/dm-group-trakd/trakd/tags", + "blobs_url": "https://api.github.com/repos/dm-group-trakd/trakd/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/dm-group-trakd/trakd/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/dm-group-trakd/trakd/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/dm-group-trakd/trakd/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/dm-group-trakd/trakd/statuses/{sha}", + "languages_url": "https://api.github.com/repos/dm-group-trakd/trakd/languages", + "stargazers_url": "https://api.github.com/repos/dm-group-trakd/trakd/stargazers", + "contributors_url": "https://api.github.com/repos/dm-group-trakd/trakd/contributors", + "subscribers_url": "https://api.github.com/repos/dm-group-trakd/trakd/subscribers", + "subscription_url": "https://api.github.com/repos/dm-group-trakd/trakd/subscription", + "commits_url": "https://api.github.com/repos/dm-group-trakd/trakd/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/dm-group-trakd/trakd/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/dm-group-trakd/trakd/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/dm-group-trakd/trakd/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/dm-group-trakd/trakd/contents/{+path}", + "compare_url": "https://api.github.com/repos/dm-group-trakd/trakd/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/dm-group-trakd/trakd/merges", + "archive_url": "https://api.github.com/repos/dm-group-trakd/trakd/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/dm-group-trakd/trakd/downloads", + "issues_url": "https://api.github.com/repos/dm-group-trakd/trakd/issues{/number}", + "pulls_url": "https://api.github.com/repos/dm-group-trakd/trakd/pulls{/number}", + "milestones_url": "https://api.github.com/repos/dm-group-trakd/trakd/milestones{/number}", + "notifications_url": "https://api.github.com/repos/dm-group-trakd/trakd/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/dm-group-trakd/trakd/labels{/name}", + "releases_url": "https://api.github.com/repos/dm-group-trakd/trakd/releases{/id}", + "deployments_url": "https://api.github.com/repos/dm-group-trakd/trakd/deployments", + "created_at": "2019-10-18T19:27:15Z", + "updated_at": "2019-10-21T20:32:39Z", + "pushed_at": "2019-10-21T21:54:48Z", + "git_url": "git://github.com/dm-group-trakd/trakd.git", + "ssh_url": "git@github.com:dm-group-trakd/trakd.git", + "clone_url": "https://github.com/dm-group-trakd/trakd.git", + "svn_url": "https://github.com/dm-group-trakd/trakd", + "homepage": null, + "size": 565, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "dm-group-trakd:master", + "ref": "master", + "sha": "4586bdd4aba94009ee60a2d01710f50493f60fd7", + "user": { + "login": "dm-group-trakd", + "id": 56691813, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU2NjkxODEz", + "avatar_url": "https://avatars3.githubusercontent.com/u/56691813?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dm-group-trakd", + "html_url": "https://github.com/dm-group-trakd", + "followers_url": "https://api.github.com/users/dm-group-trakd/followers", + "following_url": "https://api.github.com/users/dm-group-trakd/following{/other_user}", + "gists_url": "https://api.github.com/users/dm-group-trakd/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dm-group-trakd/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dm-group-trakd/subscriptions", + "organizations_url": "https://api.github.com/users/dm-group-trakd/orgs", + "repos_url": "https://api.github.com/users/dm-group-trakd/repos", + "events_url": "https://api.github.com/users/dm-group-trakd/events{/privacy}", + "received_events_url": "https://api.github.com/users/dm-group-trakd/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 216093525, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTYwOTM1MjU=", + "name": "trakd", + "full_name": "dm-group-trakd/trakd", + "private": false, + "owner": { + "login": "dm-group-trakd", + "id": 56691813, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU2NjkxODEz", + "avatar_url": "https://avatars3.githubusercontent.com/u/56691813?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dm-group-trakd", + "html_url": "https://github.com/dm-group-trakd", + "followers_url": "https://api.github.com/users/dm-group-trakd/followers", + "following_url": "https://api.github.com/users/dm-group-trakd/following{/other_user}", + "gists_url": "https://api.github.com/users/dm-group-trakd/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dm-group-trakd/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dm-group-trakd/subscriptions", + "organizations_url": "https://api.github.com/users/dm-group-trakd/orgs", + "repos_url": "https://api.github.com/users/dm-group-trakd/repos", + "events_url": "https://api.github.com/users/dm-group-trakd/events{/privacy}", + "received_events_url": "https://api.github.com/users/dm-group-trakd/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/dm-group-trakd/trakd", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/dm-group-trakd/trakd", + "forks_url": "https://api.github.com/repos/dm-group-trakd/trakd/forks", + "keys_url": "https://api.github.com/repos/dm-group-trakd/trakd/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/dm-group-trakd/trakd/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/dm-group-trakd/trakd/teams", + "hooks_url": "https://api.github.com/repos/dm-group-trakd/trakd/hooks", + "issue_events_url": "https://api.github.com/repos/dm-group-trakd/trakd/issues/events{/number}", + "events_url": "https://api.github.com/repos/dm-group-trakd/trakd/events", + "assignees_url": "https://api.github.com/repos/dm-group-trakd/trakd/assignees{/user}", + "branches_url": "https://api.github.com/repos/dm-group-trakd/trakd/branches{/branch}", + "tags_url": "https://api.github.com/repos/dm-group-trakd/trakd/tags", + "blobs_url": "https://api.github.com/repos/dm-group-trakd/trakd/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/dm-group-trakd/trakd/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/dm-group-trakd/trakd/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/dm-group-trakd/trakd/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/dm-group-trakd/trakd/statuses/{sha}", + "languages_url": "https://api.github.com/repos/dm-group-trakd/trakd/languages", + "stargazers_url": "https://api.github.com/repos/dm-group-trakd/trakd/stargazers", + "contributors_url": "https://api.github.com/repos/dm-group-trakd/trakd/contributors", + "subscribers_url": "https://api.github.com/repos/dm-group-trakd/trakd/subscribers", + "subscription_url": "https://api.github.com/repos/dm-group-trakd/trakd/subscription", + "commits_url": "https://api.github.com/repos/dm-group-trakd/trakd/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/dm-group-trakd/trakd/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/dm-group-trakd/trakd/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/dm-group-trakd/trakd/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/dm-group-trakd/trakd/contents/{+path}", + "compare_url": "https://api.github.com/repos/dm-group-trakd/trakd/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/dm-group-trakd/trakd/merges", + "archive_url": "https://api.github.com/repos/dm-group-trakd/trakd/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/dm-group-trakd/trakd/downloads", + "issues_url": "https://api.github.com/repos/dm-group-trakd/trakd/issues{/number}", + "pulls_url": "https://api.github.com/repos/dm-group-trakd/trakd/pulls{/number}", + "milestones_url": "https://api.github.com/repos/dm-group-trakd/trakd/milestones{/number}", + "notifications_url": "https://api.github.com/repos/dm-group-trakd/trakd/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/dm-group-trakd/trakd/labels{/name}", + "releases_url": "https://api.github.com/repos/dm-group-trakd/trakd/releases{/id}", + "deployments_url": "https://api.github.com/repos/dm-group-trakd/trakd/deployments", + "created_at": "2019-10-18T19:27:15Z", + "updated_at": "2019-10-21T20:32:39Z", + "pushed_at": "2019-10-21T21:54:48Z", + "git_url": "git://github.com/dm-group-trakd/trakd.git", + "ssh_url": "git@github.com:dm-group-trakd/trakd.git", + "clone_url": "https://github.com/dm-group-trakd/trakd.git", + "svn_url": "https://github.com/dm-group-trakd/trakd", + "homepage": null, + "size": 565, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/dm-group-trakd/trakd/pulls/18" + }, + "html": { + "href": "https://github.com/dm-group-trakd/trakd/pull/18" + }, + "issue": { + "href": "https://api.github.com/repos/dm-group-trakd/trakd/issues/18" + }, + "comments": { + "href": "https://api.github.com/repos/dm-group-trakd/trakd/issues/18/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/dm-group-trakd/trakd/pulls/18/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/dm-group-trakd/trakd/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/dm-group-trakd/trakd/pulls/18/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/dm-group-trakd/trakd/statuses/66a7bf7d92111a5056813ae964574d48e431b470" + } + }, + "author_association": "CONTRIBUTOR", + "merged": true, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": { + "login": "esellors", + "id": 4157996, + "node_id": "MDQ6VXNlcjQxNTc5OTY=", + "avatar_url": "https://avatars2.githubusercontent.com/u/4157996?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/esellors", + "html_url": "https://github.com/esellors", + "followers_url": "https://api.github.com/users/esellors/followers", + "following_url": "https://api.github.com/users/esellors/following{/other_user}", + "gists_url": "https://api.github.com/users/esellors/gists{/gist_id}", + "starred_url": "https://api.github.com/users/esellors/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/esellors/subscriptions", + "organizations_url": "https://api.github.com/users/esellors/orgs", + "repos_url": "https://api.github.com/users/esellors/repos", + "events_url": "https://api.github.com/users/esellors/events{/privacy}", + "received_events_url": "https://api.github.com/users/esellors/received_events", + "type": "User", + "site_admin": false + }, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 7, + "additions": 389, + "deletions": 7, + "changed_files": 7 + } + }, + "public": true, + "created_at": "2019-10-21T21:54:48Z", + "org": { + "id": 56691813, + "login": "dm-group-trakd", + "gravatar_id": "", + "url": "https://api.github.com/orgs/dm-group-trakd", + "avatar_url": "https://avatars.githubusercontent.com/u/56691813?" + } + }, + { + "id": "10680624970", + "type": "PushEvent", + "actor": { + "id": 52138860, + "login": "vitoperez117", + "display_login": "vitoperez117", + "gravatar_id": "", + "url": "https://api.github.com/users/vitoperez117", + "avatar_url": "https://avatars.githubusercontent.com/u/52138860?" + }, + "repo": { + "id": 215708182, + "name": "vitoperez117/python-api-challenge", + "url": "https://api.github.com/repos/vitoperez117/python-api-challenge" + }, + "payload": { + "push_id": 4176854878, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "6ce7de98689be2a91f3455f0fe83754252658073", + "before": "2d14bcf9d9906d1ef9aa124b3ed168e926b45334", + "commits": [ + { + "sha": "6ce7de98689be2a91f3455f0fe83754252658073", + "author": { + "email": "vito@vitos-mbp.home", + "name": "Vito" + }, + "message": "update readme", + "distinct": true, + "url": "https://api.github.com/repos/vitoperez117/python-api-challenge/commits/6ce7de98689be2a91f3455f0fe83754252658073" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:48Z" + }, + { + "id": "10680624965", + "type": "PullRequestEvent", + "actor": { + "id": 190297, + "login": "PiotrSikora", + "display_login": "PiotrSikora", + "gravatar_id": "", + "url": "https://api.github.com/users/PiotrSikora", + "avatar_url": "https://avatars.githubusercontent.com/u/190297?" + }, + "repo": { + "id": 185880979, + "name": "envoyproxy/envoy-wasm", + "url": "https://api.github.com/repos/envoyproxy/envoy-wasm" + }, + "payload": { + "action": "closed", + "number": 267, + "pull_request": { + "url": "https://api.github.com/repos/envoyproxy/envoy-wasm/pulls/267", + "id": 330325128, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzMwMzI1MTI4", + "html_url": "https://github.com/envoyproxy/envoy-wasm/pull/267", + "diff_url": "https://github.com/envoyproxy/envoy-wasm/pull/267.diff", + "patch_url": "https://github.com/envoyproxy/envoy-wasm/pull/267.patch", + "issue_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/issues/267", + "number": 267, + "state": "closed", + "locked": false, + "title": "Remove support for __errno_location.", + "user": { + "login": "PiotrSikora", + "id": 190297, + "node_id": "MDQ6VXNlcjE5MDI5Nw==", + "avatar_url": "https://avatars3.githubusercontent.com/u/190297?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PiotrSikora", + "html_url": "https://github.com/PiotrSikora", + "followers_url": "https://api.github.com/users/PiotrSikora/followers", + "following_url": "https://api.github.com/users/PiotrSikora/following{/other_user}", + "gists_url": "https://api.github.com/users/PiotrSikora/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PiotrSikora/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PiotrSikora/subscriptions", + "organizations_url": "https://api.github.com/users/PiotrSikora/orgs", + "repos_url": "https://api.github.com/users/PiotrSikora/repos", + "events_url": "https://api.github.com/users/PiotrSikora/events{/privacy}", + "received_events_url": "https://api.github.com/users/PiotrSikora/received_events", + "type": "User", + "site_admin": false + }, + "body": "We don't need it anymore. Missed in #260.\r\n\r\nSigned-off-by: Piotr Sikora ", + "created_at": "2019-10-21T10:10:19Z", + "updated_at": "2019-10-21T21:54:47Z", + "closed_at": "2019-10-21T21:54:47Z", + "merged_at": "2019-10-21T21:54:47Z", + "merge_commit_sha": "5b4a25e4146fb31ccfa425c70843ff43bd2814c3", + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/pulls/267/commits", + "review_comments_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/pulls/267/comments", + "review_comment_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/issues/267/comments", + "statuses_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/statuses/74abaed902e429f448dc7a271766453044fb452c", + "head": { + "label": "PiotrSikora:errno", + "ref": "errno", + "sha": "74abaed902e429f448dc7a271766453044fb452c", + "user": { + "login": "PiotrSikora", + "id": 190297, + "node_id": "MDQ6VXNlcjE5MDI5Nw==", + "avatar_url": "https://avatars3.githubusercontent.com/u/190297?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PiotrSikora", + "html_url": "https://github.com/PiotrSikora", + "followers_url": "https://api.github.com/users/PiotrSikora/followers", + "following_url": "https://api.github.com/users/PiotrSikora/following{/other_user}", + "gists_url": "https://api.github.com/users/PiotrSikora/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PiotrSikora/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PiotrSikora/subscriptions", + "organizations_url": "https://api.github.com/users/PiotrSikora/orgs", + "repos_url": "https://api.github.com/users/PiotrSikora/repos", + "events_url": "https://api.github.com/users/PiotrSikora/events{/privacy}", + "received_events_url": "https://api.github.com/users/PiotrSikora/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 186988247, + "node_id": "MDEwOlJlcG9zaXRvcnkxODY5ODgyNDc=", + "name": "envoy-wasm", + "full_name": "PiotrSikora/envoy-wasm", + "private": false, + "owner": { + "login": "PiotrSikora", + "id": 190297, + "node_id": "MDQ6VXNlcjE5MDI5Nw==", + "avatar_url": "https://avatars3.githubusercontent.com/u/190297?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PiotrSikora", + "html_url": "https://github.com/PiotrSikora", + "followers_url": "https://api.github.com/users/PiotrSikora/followers", + "following_url": "https://api.github.com/users/PiotrSikora/following{/other_user}", + "gists_url": "https://api.github.com/users/PiotrSikora/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PiotrSikora/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PiotrSikora/subscriptions", + "organizations_url": "https://api.github.com/users/PiotrSikora/orgs", + "repos_url": "https://api.github.com/users/PiotrSikora/repos", + "events_url": "https://api.github.com/users/PiotrSikora/events{/privacy}", + "received_events_url": "https://api.github.com/users/PiotrSikora/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/PiotrSikora/envoy-wasm", + "description": "Playground for Envoy WASM filter", + "fork": true, + "url": "https://api.github.com/repos/PiotrSikora/envoy-wasm", + "forks_url": "https://api.github.com/repos/PiotrSikora/envoy-wasm/forks", + "keys_url": "https://api.github.com/repos/PiotrSikora/envoy-wasm/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/PiotrSikora/envoy-wasm/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/PiotrSikora/envoy-wasm/teams", + "hooks_url": "https://api.github.com/repos/PiotrSikora/envoy-wasm/hooks", + "issue_events_url": "https://api.github.com/repos/PiotrSikora/envoy-wasm/issues/events{/number}", + "events_url": "https://api.github.com/repos/PiotrSikora/envoy-wasm/events", + "assignees_url": "https://api.github.com/repos/PiotrSikora/envoy-wasm/assignees{/user}", + "branches_url": "https://api.github.com/repos/PiotrSikora/envoy-wasm/branches{/branch}", + "tags_url": "https://api.github.com/repos/PiotrSikora/envoy-wasm/tags", + "blobs_url": "https://api.github.com/repos/PiotrSikora/envoy-wasm/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/PiotrSikora/envoy-wasm/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/PiotrSikora/envoy-wasm/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/PiotrSikora/envoy-wasm/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/PiotrSikora/envoy-wasm/statuses/{sha}", + "languages_url": "https://api.github.com/repos/PiotrSikora/envoy-wasm/languages", + "stargazers_url": "https://api.github.com/repos/PiotrSikora/envoy-wasm/stargazers", + "contributors_url": "https://api.github.com/repos/PiotrSikora/envoy-wasm/contributors", + "subscribers_url": "https://api.github.com/repos/PiotrSikora/envoy-wasm/subscribers", + "subscription_url": "https://api.github.com/repos/PiotrSikora/envoy-wasm/subscription", + "commits_url": "https://api.github.com/repos/PiotrSikora/envoy-wasm/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/PiotrSikora/envoy-wasm/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/PiotrSikora/envoy-wasm/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/PiotrSikora/envoy-wasm/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/PiotrSikora/envoy-wasm/contents/{+path}", + "compare_url": "https://api.github.com/repos/PiotrSikora/envoy-wasm/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/PiotrSikora/envoy-wasm/merges", + "archive_url": "https://api.github.com/repos/PiotrSikora/envoy-wasm/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/PiotrSikora/envoy-wasm/downloads", + "issues_url": "https://api.github.com/repos/PiotrSikora/envoy-wasm/issues{/number}", + "pulls_url": "https://api.github.com/repos/PiotrSikora/envoy-wasm/pulls{/number}", + "milestones_url": "https://api.github.com/repos/PiotrSikora/envoy-wasm/milestones{/number}", + "notifications_url": "https://api.github.com/repos/PiotrSikora/envoy-wasm/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/PiotrSikora/envoy-wasm/labels{/name}", + "releases_url": "https://api.github.com/repos/PiotrSikora/envoy-wasm/releases{/id}", + "deployments_url": "https://api.github.com/repos/PiotrSikora/envoy-wasm/deployments", + "created_at": "2019-05-16T08:43:34Z", + "updated_at": "2019-05-17T20:43:11Z", + "pushed_at": "2019-10-21T19:10:54Z", + "git_url": "git://github.com/PiotrSikora/envoy-wasm.git", + "ssh_url": "git@github.com:PiotrSikora/envoy-wasm.git", + "clone_url": "https://github.com/PiotrSikora/envoy-wasm.git", + "svn_url": "https://github.com/PiotrSikora/envoy-wasm", + "homepage": null, + "size": 89135, + "stargazers_count": 0, + "watchers_count": 0, + "language": "WebAssembly", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "envoyproxy:master", + "ref": "master", + "sha": "4bd38639fe0332c55961505d4e091f72895b7f73", + "user": { + "login": "envoyproxy", + "id": 30125649, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMTI1NjQ5", + "avatar_url": "https://avatars1.githubusercontent.com/u/30125649?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/envoyproxy", + "html_url": "https://github.com/envoyproxy", + "followers_url": "https://api.github.com/users/envoyproxy/followers", + "following_url": "https://api.github.com/users/envoyproxy/following{/other_user}", + "gists_url": "https://api.github.com/users/envoyproxy/gists{/gist_id}", + "starred_url": "https://api.github.com/users/envoyproxy/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/envoyproxy/subscriptions", + "organizations_url": "https://api.github.com/users/envoyproxy/orgs", + "repos_url": "https://api.github.com/users/envoyproxy/repos", + "events_url": "https://api.github.com/users/envoyproxy/events{/privacy}", + "received_events_url": "https://api.github.com/users/envoyproxy/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 185880979, + "node_id": "MDEwOlJlcG9zaXRvcnkxODU4ODA5Nzk=", + "name": "envoy-wasm", + "full_name": "envoyproxy/envoy-wasm", + "private": false, + "owner": { + "login": "envoyproxy", + "id": 30125649, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMTI1NjQ5", + "avatar_url": "https://avatars1.githubusercontent.com/u/30125649?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/envoyproxy", + "html_url": "https://github.com/envoyproxy", + "followers_url": "https://api.github.com/users/envoyproxy/followers", + "following_url": "https://api.github.com/users/envoyproxy/following{/other_user}", + "gists_url": "https://api.github.com/users/envoyproxy/gists{/gist_id}", + "starred_url": "https://api.github.com/users/envoyproxy/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/envoyproxy/subscriptions", + "organizations_url": "https://api.github.com/users/envoyproxy/orgs", + "repos_url": "https://api.github.com/users/envoyproxy/repos", + "events_url": "https://api.github.com/users/envoyproxy/events{/privacy}", + "received_events_url": "https://api.github.com/users/envoyproxy/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/envoyproxy/envoy-wasm", + "description": "Playground for Envoy WASM filter", + "fork": false, + "url": "https://api.github.com/repos/envoyproxy/envoy-wasm", + "forks_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/forks", + "keys_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/teams", + "hooks_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/hooks", + "issue_events_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/issues/events{/number}", + "events_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/events", + "assignees_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/assignees{/user}", + "branches_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/branches{/branch}", + "tags_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/tags", + "blobs_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/statuses/{sha}", + "languages_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/languages", + "stargazers_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/stargazers", + "contributors_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/contributors", + "subscribers_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/subscribers", + "subscription_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/subscription", + "commits_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/contents/{+path}", + "compare_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/merges", + "archive_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/downloads", + "issues_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/issues{/number}", + "pulls_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/pulls{/number}", + "milestones_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/milestones{/number}", + "notifications_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/labels{/name}", + "releases_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/releases{/id}", + "deployments_url": "https://api.github.com/repos/envoyproxy/envoy-wasm/deployments", + "created_at": "2019-05-09T22:37:07Z", + "updated_at": "2019-10-21T02:05:58Z", + "pushed_at": "2019-10-21T21:54:47Z", + "git_url": "git://github.com/envoyproxy/envoy-wasm.git", + "ssh_url": "git@github.com:envoyproxy/envoy-wasm.git", + "clone_url": "https://github.com/envoyproxy/envoy-wasm.git", + "svn_url": "https://github.com/envoyproxy/envoy-wasm", + "homepage": null, + "size": 88503, + "stargazers_count": 61, + "watchers_count": 61, + "language": "C++", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 26, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 66, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 26, + "open_issues": 66, + "watchers": 61, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/envoyproxy/envoy-wasm/pulls/267" + }, + "html": { + "href": "https://github.com/envoyproxy/envoy-wasm/pull/267" + }, + "issue": { + "href": "https://api.github.com/repos/envoyproxy/envoy-wasm/issues/267" + }, + "comments": { + "href": "https://api.github.com/repos/envoyproxy/envoy-wasm/issues/267/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/envoyproxy/envoy-wasm/pulls/267/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/envoyproxy/envoy-wasm/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/envoyproxy/envoy-wasm/pulls/267/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/envoyproxy/envoy-wasm/statuses/74abaed902e429f448dc7a271766453044fb452c" + } + }, + "author_association": "MEMBER", + "merged": true, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": { + "login": "PiotrSikora", + "id": 190297, + "node_id": "MDQ6VXNlcjE5MDI5Nw==", + "avatar_url": "https://avatars3.githubusercontent.com/u/190297?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PiotrSikora", + "html_url": "https://github.com/PiotrSikora", + "followers_url": "https://api.github.com/users/PiotrSikora/followers", + "following_url": "https://api.github.com/users/PiotrSikora/following{/other_user}", + "gists_url": "https://api.github.com/users/PiotrSikora/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PiotrSikora/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PiotrSikora/subscriptions", + "organizations_url": "https://api.github.com/users/PiotrSikora/orgs", + "repos_url": "https://api.github.com/users/PiotrSikora/repos", + "events_url": "https://api.github.com/users/PiotrSikora/events{/privacy}", + "received_events_url": "https://api.github.com/users/PiotrSikora/received_events", + "type": "User", + "site_admin": false + }, + "comments": 1, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 2, + "deletions": 20, + "changed_files": 3 + } + }, + "public": true, + "created_at": "2019-10-21T21:54:48Z", + "org": { + "id": 30125649, + "login": "envoyproxy", + "gravatar_id": "", + "url": "https://api.github.com/orgs/envoyproxy", + "avatar_url": "https://avatars.githubusercontent.com/u/30125649?" + } + }, + { + "id": "10680624961", + "type": "IssuesEvent", + "actor": { + "id": 28238025, + "login": "dekkerglen", + "display_login": "dekkerglen", + "gravatar_id": "", + "url": "https://api.github.com/users/dekkerglen", + "avatar_url": "https://avatars.githubusercontent.com/u/28238025?" + }, + "repo": { + "id": 199488444, + "name": "dekkerglen/CubeCobra", + "url": "https://api.github.com/repos/dekkerglen/CubeCobra" + }, + "payload": { + "action": "closed", + "issue": { + "url": "https://api.github.com/repos/dekkerglen/CubeCobra/issues/607", + "repository_url": "https://api.github.com/repos/dekkerglen/CubeCobra", + "labels_url": "https://api.github.com/repos/dekkerglen/CubeCobra/issues/607/labels{/name}", + "comments_url": "https://api.github.com/repos/dekkerglen/CubeCobra/issues/607/comments", + "events_url": "https://api.github.com/repos/dekkerglen/CubeCobra/issues/607/events", + "html_url": "https://github.com/dekkerglen/CubeCobra/issues/607", + "id": 507291698, + "node_id": "MDU6SXNzdWU1MDcyOTE2OTg=", + "number": 607, + "title": "The price in card view disappears when you change version.", + "user": { + "login": "Balkmeister", + "id": 12525888, + "node_id": "MDQ6VXNlcjEyNTI1ODg4", + "avatar_url": "https://avatars3.githubusercontent.com/u/12525888?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Balkmeister", + "html_url": "https://github.com/Balkmeister", + "followers_url": "https://api.github.com/users/Balkmeister/followers", + "following_url": "https://api.github.com/users/Balkmeister/following{/other_user}", + "gists_url": "https://api.github.com/users/Balkmeister/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Balkmeister/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Balkmeister/subscriptions", + "organizations_url": "https://api.github.com/users/Balkmeister/orgs", + "repos_url": "https://api.github.com/users/Balkmeister/repos", + "events_url": "https://api.github.com/users/Balkmeister/events{/privacy}", + "received_events_url": "https://api.github.com/users/Balkmeister/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2019-10-15T14:41:20Z", + "updated_at": "2019-10-21T21:54:47Z", + "closed_at": "2019-10-21T21:54:47Z", + "author_association": "NONE", + "body": "**Describe the bug**\r\nThe box containing price of a card in the card view disapears if you change the version of the card from the drop down.\r\n\r\n**To Reproduce**\r\nSteps to reproduce the behavior:\r\n1. click on any card that have multiple versions\r\n2. click the version selector drop down and select a different version\r\n3. the price displayed below the card image disappears.\r\n**Screenshots**\r\nIf applicable, add screenshots to help explain your problem.\r\n![image](https://user-images.githubusercontent.com/12525888/66841823-8779f780-ef6a-11e9-9887-559e934e25ca.png)\r\n\r\n![image](https://user-images.githubusercontent.com/12525888/66841704-66190b80-ef6a-11e9-9841-d2cce15188b9.png)\r\n\r\n\r\n**Desktop (please complete the following information):**\r\n - OS: [e.g. iOS]\r\n - Browser [e.g. chrome, safari]\r\n - Version [e.g. 22]\r\n\r\n**Smartphone (please complete the following information):**\r\n - Device: laptop\r\n - OS: win 10\r\n - Browser chrome\r\n - Version [e.g. 22]\r\n\r\n**Additional context**\r\nAdd any other context about the problem here.\r\n" + } + }, + "public": true, + "created_at": "2019-10-21T21:54:48Z" + }, + { + "id": "10680624960", + "type": "PullRequestReviewCommentEvent", + "actor": { + "id": 50109276, + "login": "AndrewCopeland", + "display_login": "AndrewCopeland", + "gravatar_id": "", + "url": "https://api.github.com/users/AndrewCopeland", + "avatar_url": "https://avatars.githubusercontent.com/u/50109276?" + }, + "repo": { + "id": 62174977, + "name": "cyberark/conjur", + "url": "https://api.github.com/repos/cyberark/conjur" + }, + "payload": { + "action": "created", + "comment": { + "url": "https://api.github.com/repos/cyberark/conjur/pulls/comments/337257960", + "pull_request_review_id": 304874130, + "id": 337257960, + "node_id": "MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDMzNzI1Nzk2MA==", + "diff_hunk": "@@ -0,0 +1,111 @@\n+# frozen_string_literal: true\n+require 'json'\n+\n+module Authentication\n+ module AuthnJenkins\n+ class Authenticator\n+\n+ Err = Errors::Authentication::AuthnJenkins\n+ def initialize(env:)\n+ @env = env\n+ end\n+\n+ def webservice\n+ @webservice ||= ::Authentication::Webservice.new(\n+ account: @account,\n+ authenticator_name: @authenticator_name,\n+ service_id: @service_id\n+ )\n+ end\n+\n+ def http_get_request(url, username, password) ", + "path": "app/domain/authentication/authn_jenkins/authenticator.rb", + "position": null, + "original_position": 21, + "commit_id": "d16c40c290d4f1ac139b101cd089a1635f20db29", + "original_commit_id": "9e4e54c791825ef3d91e878161a39aacc7705c31", + "user": { + "login": "AndrewCopeland", + "id": 50109276, + "node_id": "MDQ6VXNlcjUwMTA5Mjc2", + "avatar_url": "https://avatars0.githubusercontent.com/u/50109276?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/AndrewCopeland", + "html_url": "https://github.com/AndrewCopeland", + "followers_url": "https://api.github.com/users/AndrewCopeland/followers", + "following_url": "https://api.github.com/users/AndrewCopeland/following{/other_user}", + "gists_url": "https://api.github.com/users/AndrewCopeland/gists{/gist_id}", + "starred_url": "https://api.github.com/users/AndrewCopeland/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/AndrewCopeland/subscriptions", + "organizations_url": "https://api.github.com/users/AndrewCopeland/orgs", + "repos_url": "https://api.github.com/users/AndrewCopeland/repos", + "events_url": "https://api.github.com/users/AndrewCopeland/events{/privacy}", + "received_events_url": "https://api.github.com/users/AndrewCopeland/received_events", + "type": "User", + "site_admin": false + }, + "body": "Added jenkins client in this commit: https://github.com/AndrewCopeland/conjur/commit/d16c40c290d4f1ac139b101cd089a1635f20db29", + "created_at": "2019-10-21T21:54:47Z", + "updated_at": "2019-10-21T21:54:47Z", + "html_url": "https://github.com/cyberark/conjur/pull/1209#discussion_r337257960", + "pull_request_url": "https://api.github.com/repos/cyberark/conjur/pulls/1209", + "author_association": "NONE", + "_links": { + "self": { + "href": "https://api.github.com/repos/cyberark/conjur/pulls/comments/337257960" + }, + "html": { + "href": "https://github.com/cyberark/conjur/pull/1209#discussion_r337257960" + }, + "pull_request": { + "href": "https://api.github.com/repos/cyberark/conjur/pulls/1209" + } + }, + "in_reply_to_id": 336689699 + }, + "pull_request": { + "url": "https://api.github.com/repos/cyberark/conjur/pulls/1209", + "id": 329291792, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzI5MjkxNzky", + "html_url": "https://github.com/cyberark/conjur/pull/1209", + "diff_url": "https://github.com/cyberark/conjur/pull/1209.diff", + "patch_url": "https://github.com/cyberark/conjur/pull/1209.patch", + "issue_url": "https://api.github.com/repos/cyberark/conjur/issues/1209", + "number": 1209, + "state": "open", + "locked": false, + "title": "Authenticate specific jenkins jobs during run time (authn-jenkins)", + "user": { + "login": "AndrewCopeland", + "id": 50109276, + "node_id": "MDQ6VXNlcjUwMTA5Mjc2", + "avatar_url": "https://avatars0.githubusercontent.com/u/50109276?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/AndrewCopeland", + "html_url": "https://github.com/AndrewCopeland", + "followers_url": "https://api.github.com/users/AndrewCopeland/followers", + "following_url": "https://api.github.com/users/AndrewCopeland/following{/other_user}", + "gists_url": "https://api.github.com/users/AndrewCopeland/gists{/gist_id}", + "starred_url": "https://api.github.com/users/AndrewCopeland/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/AndrewCopeland/subscriptions", + "organizations_url": "https://api.github.com/users/AndrewCopeland/orgs", + "repos_url": "https://api.github.com/users/AndrewCopeland/repos", + "events_url": "https://api.github.com/users/AndrewCopeland/events{/privacy}", + "received_events_url": "https://api.github.com/users/AndrewCopeland/received_events", + "type": "User", + "site_admin": false + }, + "body": "#### What does this PR do?\r\nIt allows jenkins jobs to authenticate to conjur without the need of a stored api key. Also it allows the ability to specifically authenticate a job rather than an entire host.\r\n\r\n#### Any background context you want to provide?\r\n#### What ticket does this PR close?\r\nConnected to [relevant GitHub issues, eg #76]\r\n#### Where should the reviewer start?\r\n#### How should this be manually tested?\r\nOpen jenkins, import the jenkins plugin that supports Jenkins JIT authentication.\r\nCreate a jenkins 'conjur authn' user.\r\nLoad the authn-jenkins policy and populate the variables 'jenkinsURL', 'jenkinsUsername' & 'jenkinsPassword'.\r\nCreate a host that has access to use the authn-jenkins policy and ends with the appropriate job name.\r\nCreate this job in jenkins and enter in the correct conjur metadata (URL, account, ssl cert, etc)\r\nCreate a pipeline that fetches a secret using the Conjur Credential Plugin.\r\nRun the pipeline. \r\n\r\n#### Screenshots (if appropriate)\r\n#### Has the Version and Changelog been updated?\r\nNo\r\n#### Questions:\r\n> Does this work have automated integration and unit tests?\r\nIt has unit tests, integration tests have not been created\r\n> Can we make a blog post, video, or animated GIF of this?\r\nYes\r\n> Has this change been documented (Readme, docs, etc.)?\r\nNo\r\n> Does the knowledge base need an update?\r\nYes (integration/authentication)", + "created_at": "2019-10-17T14:24:43Z", + "updated_at": "2019-10-21T21:54:47Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "92efedd067683f99f2c7065502968bd7702f880a", + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/cyberark/conjur/pulls/1209/commits", + "review_comments_url": "https://api.github.com/repos/cyberark/conjur/pulls/1209/comments", + "review_comment_url": "https://api.github.com/repos/cyberark/conjur/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/cyberark/conjur/issues/1209/comments", + "statuses_url": "https://api.github.com/repos/cyberark/conjur/statuses/d16c40c290d4f1ac139b101cd089a1635f20db29", + "head": { + "label": "AndrewCopeland:master", + "ref": "master", + "sha": "d16c40c290d4f1ac139b101cd089a1635f20db29", + "user": { + "login": "AndrewCopeland", + "id": 50109276, + "node_id": "MDQ6VXNlcjUwMTA5Mjc2", + "avatar_url": "https://avatars0.githubusercontent.com/u/50109276?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/AndrewCopeland", + "html_url": "https://github.com/AndrewCopeland", + "followers_url": "https://api.github.com/users/AndrewCopeland/followers", + "following_url": "https://api.github.com/users/AndrewCopeland/following{/other_user}", + "gists_url": "https://api.github.com/users/AndrewCopeland/gists{/gist_id}", + "starred_url": "https://api.github.com/users/AndrewCopeland/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/AndrewCopeland/subscriptions", + "organizations_url": "https://api.github.com/users/AndrewCopeland/orgs", + "repos_url": "https://api.github.com/users/AndrewCopeland/repos", + "events_url": "https://api.github.com/users/AndrewCopeland/events{/privacy}", + "received_events_url": "https://api.github.com/users/AndrewCopeland/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 213462449, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTM0NjI0NDk=", + "name": "conjur", + "full_name": "AndrewCopeland/conjur", + "private": false, + "owner": { + "login": "AndrewCopeland", + "id": 50109276, + "node_id": "MDQ6VXNlcjUwMTA5Mjc2", + "avatar_url": "https://avatars0.githubusercontent.com/u/50109276?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/AndrewCopeland", + "html_url": "https://github.com/AndrewCopeland", + "followers_url": "https://api.github.com/users/AndrewCopeland/followers", + "following_url": "https://api.github.com/users/AndrewCopeland/following{/other_user}", + "gists_url": "https://api.github.com/users/AndrewCopeland/gists{/gist_id}", + "starred_url": "https://api.github.com/users/AndrewCopeland/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/AndrewCopeland/subscriptions", + "organizations_url": "https://api.github.com/users/AndrewCopeland/orgs", + "repos_url": "https://api.github.com/users/AndrewCopeland/repos", + "events_url": "https://api.github.com/users/AndrewCopeland/events{/privacy}", + "received_events_url": "https://api.github.com/users/AndrewCopeland/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/AndrewCopeland/conjur", + "description": "CyberArk Conjur automatically secures secrets used by privileged users and machine identities", + "fork": true, + "url": "https://api.github.com/repos/AndrewCopeland/conjur", + "forks_url": "https://api.github.com/repos/AndrewCopeland/conjur/forks", + "keys_url": "https://api.github.com/repos/AndrewCopeland/conjur/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/AndrewCopeland/conjur/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/AndrewCopeland/conjur/teams", + "hooks_url": "https://api.github.com/repos/AndrewCopeland/conjur/hooks", + "issue_events_url": "https://api.github.com/repos/AndrewCopeland/conjur/issues/events{/number}", + "events_url": "https://api.github.com/repos/AndrewCopeland/conjur/events", + "assignees_url": "https://api.github.com/repos/AndrewCopeland/conjur/assignees{/user}", + "branches_url": "https://api.github.com/repos/AndrewCopeland/conjur/branches{/branch}", + "tags_url": "https://api.github.com/repos/AndrewCopeland/conjur/tags", + "blobs_url": "https://api.github.com/repos/AndrewCopeland/conjur/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/AndrewCopeland/conjur/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/AndrewCopeland/conjur/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/AndrewCopeland/conjur/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/AndrewCopeland/conjur/statuses/{sha}", + "languages_url": "https://api.github.com/repos/AndrewCopeland/conjur/languages", + "stargazers_url": "https://api.github.com/repos/AndrewCopeland/conjur/stargazers", + "contributors_url": "https://api.github.com/repos/AndrewCopeland/conjur/contributors", + "subscribers_url": "https://api.github.com/repos/AndrewCopeland/conjur/subscribers", + "subscription_url": "https://api.github.com/repos/AndrewCopeland/conjur/subscription", + "commits_url": "https://api.github.com/repos/AndrewCopeland/conjur/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/AndrewCopeland/conjur/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/AndrewCopeland/conjur/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/AndrewCopeland/conjur/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/AndrewCopeland/conjur/contents/{+path}", + "compare_url": "https://api.github.com/repos/AndrewCopeland/conjur/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/AndrewCopeland/conjur/merges", + "archive_url": "https://api.github.com/repos/AndrewCopeland/conjur/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/AndrewCopeland/conjur/downloads", + "issues_url": "https://api.github.com/repos/AndrewCopeland/conjur/issues{/number}", + "pulls_url": "https://api.github.com/repos/AndrewCopeland/conjur/pulls{/number}", + "milestones_url": "https://api.github.com/repos/AndrewCopeland/conjur/milestones{/number}", + "notifications_url": "https://api.github.com/repos/AndrewCopeland/conjur/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/AndrewCopeland/conjur/labels{/name}", + "releases_url": "https://api.github.com/repos/AndrewCopeland/conjur/releases{/id}", + "deployments_url": "https://api.github.com/repos/AndrewCopeland/conjur/deployments", + "created_at": "2019-10-07T18:55:27Z", + "updated_at": "2019-10-21T21:53:18Z", + "pushed_at": "2019-10-21T21:53:16Z", + "git_url": "git://github.com/AndrewCopeland/conjur.git", + "ssh_url": "git@github.com:AndrewCopeland/conjur.git", + "clone_url": "https://github.com/AndrewCopeland/conjur.git", + "svn_url": "https://github.com/AndrewCopeland/conjur", + "homepage": "https://conjur.org", + "size": 9456, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Ruby", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "lgpl-3.0", + "name": "GNU Lesser General Public License v3.0", + "spdx_id": "LGPL-3.0", + "url": "https://api.github.com/licenses/lgpl-3.0", + "node_id": "MDc6TGljZW5zZTEy" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "cyberark:master", + "ref": "master", + "sha": "ccf74318168be925bd62753926ae6b46ccce67aa", + "user": { + "login": "cyberark", + "id": 30869256, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwODY5MjU2", + "avatar_url": "https://avatars3.githubusercontent.com/u/30869256?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyberark", + "html_url": "https://github.com/cyberark", + "followers_url": "https://api.github.com/users/cyberark/followers", + "following_url": "https://api.github.com/users/cyberark/following{/other_user}", + "gists_url": "https://api.github.com/users/cyberark/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyberark/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyberark/subscriptions", + "organizations_url": "https://api.github.com/users/cyberark/orgs", + "repos_url": "https://api.github.com/users/cyberark/repos", + "events_url": "https://api.github.com/users/cyberark/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyberark/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 62174977, + "node_id": "MDEwOlJlcG9zaXRvcnk2MjE3NDk3Nw==", + "name": "conjur", + "full_name": "cyberark/conjur", + "private": false, + "owner": { + "login": "cyberark", + "id": 30869256, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwODY5MjU2", + "avatar_url": "https://avatars3.githubusercontent.com/u/30869256?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyberark", + "html_url": "https://github.com/cyberark", + "followers_url": "https://api.github.com/users/cyberark/followers", + "following_url": "https://api.github.com/users/cyberark/following{/other_user}", + "gists_url": "https://api.github.com/users/cyberark/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyberark/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyberark/subscriptions", + "organizations_url": "https://api.github.com/users/cyberark/orgs", + "repos_url": "https://api.github.com/users/cyberark/repos", + "events_url": "https://api.github.com/users/cyberark/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyberark/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cyberark/conjur", + "description": "CyberArk Conjur automatically secures secrets used by privileged users and machine identities", + "fork": false, + "url": "https://api.github.com/repos/cyberark/conjur", + "forks_url": "https://api.github.com/repos/cyberark/conjur/forks", + "keys_url": "https://api.github.com/repos/cyberark/conjur/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cyberark/conjur/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cyberark/conjur/teams", + "hooks_url": "https://api.github.com/repos/cyberark/conjur/hooks", + "issue_events_url": "https://api.github.com/repos/cyberark/conjur/issues/events{/number}", + "events_url": "https://api.github.com/repos/cyberark/conjur/events", + "assignees_url": "https://api.github.com/repos/cyberark/conjur/assignees{/user}", + "branches_url": "https://api.github.com/repos/cyberark/conjur/branches{/branch}", + "tags_url": "https://api.github.com/repos/cyberark/conjur/tags", + "blobs_url": "https://api.github.com/repos/cyberark/conjur/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cyberark/conjur/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cyberark/conjur/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cyberark/conjur/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cyberark/conjur/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cyberark/conjur/languages", + "stargazers_url": "https://api.github.com/repos/cyberark/conjur/stargazers", + "contributors_url": "https://api.github.com/repos/cyberark/conjur/contributors", + "subscribers_url": "https://api.github.com/repos/cyberark/conjur/subscribers", + "subscription_url": "https://api.github.com/repos/cyberark/conjur/subscription", + "commits_url": "https://api.github.com/repos/cyberark/conjur/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cyberark/conjur/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cyberark/conjur/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cyberark/conjur/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cyberark/conjur/contents/{+path}", + "compare_url": "https://api.github.com/repos/cyberark/conjur/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cyberark/conjur/merges", + "archive_url": "https://api.github.com/repos/cyberark/conjur/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cyberark/conjur/downloads", + "issues_url": "https://api.github.com/repos/cyberark/conjur/issues{/number}", + "pulls_url": "https://api.github.com/repos/cyberark/conjur/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cyberark/conjur/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cyberark/conjur/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cyberark/conjur/labels{/name}", + "releases_url": "https://api.github.com/repos/cyberark/conjur/releases{/id}", + "deployments_url": "https://api.github.com/repos/cyberark/conjur/deployments", + "created_at": "2016-06-28T21:18:07Z", + "updated_at": "2019-10-17T19:02:08Z", + "pushed_at": "2019-10-21T21:53:18Z", + "git_url": "git://github.com/cyberark/conjur.git", + "ssh_url": "git@github.com:cyberark/conjur.git", + "clone_url": "https://github.com/cyberark/conjur.git", + "svn_url": "https://github.com/cyberark/conjur", + "homepage": "https://conjur.org", + "size": 5288, + "stargazers_count": 320, + "watchers_count": 320, + "language": "Ruby", + "has_issues": true, + "has_projects": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 63, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 260, + "license": { + "key": "lgpl-3.0", + "name": "GNU Lesser General Public License v3.0", + "spdx_id": "LGPL-3.0", + "url": "https://api.github.com/licenses/lgpl-3.0", + "node_id": "MDc6TGljZW5zZTEy" + }, + "forks": 63, + "open_issues": 260, + "watchers": 320, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/cyberark/conjur/pulls/1209" + }, + "html": { + "href": "https://github.com/cyberark/conjur/pull/1209" + }, + "issue": { + "href": "https://api.github.com/repos/cyberark/conjur/issues/1209" + }, + "comments": { + "href": "https://api.github.com/repos/cyberark/conjur/issues/1209/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/cyberark/conjur/pulls/1209/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/cyberark/conjur/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/cyberark/conjur/pulls/1209/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/cyberark/conjur/statuses/d16c40c290d4f1ac139b101cd089a1635f20db29" + } + }, + "author_association": "NONE" + } + }, + "public": true, + "created_at": "2019-10-21T21:54:47Z", + "org": { + "id": 30869256, + "login": "cyberark", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cyberark", + "avatar_url": "https://avatars.githubusercontent.com/u/30869256?" + } + }, + { + "id": "10680624943", + "type": "PushEvent", + "actor": { + "id": 22123093, + "login": "oran2527", + "display_login": "oran2527", + "gravatar_id": "", + "url": "https://api.github.com/users/oran2527", + "avatar_url": "https://avatars.githubusercontent.com/u/22123093?" + }, + "repo": { + "id": 209381520, + "name": "oran2527/holbertonschool-low_level_programming", + "url": "https://api.github.com/repos/oran2527/holbertonschool-low_level_programming" + }, + "payload": { + "push_id": 4176854863, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "2282592b49f3c60b07f84135ddfd8d7199d93e2a", + "before": "f393ac03494aa2e71988f93d73243c6887bf1541", + "commits": [ + { + "sha": "2282592b49f3c60b07f84135ddfd8d7199d93e2a", + "author": { + "email": "orlago250183@gmail.com", + "name": "oran2527" + }, + "message": "fix", + "distinct": true, + "url": "https://api.github.com/repos/oran2527/holbertonschool-low_level_programming/commits/2282592b49f3c60b07f84135ddfd8d7199d93e2a" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:48Z" + }, + { + "id": "10680624948", + "type": "CreateEvent", + "actor": { + "id": 54295495, + "login": "J-danger", + "display_login": "J-danger", + "gravatar_id": "", + "url": "https://api.github.com/users/J-danger", + "avatar_url": "https://avatars.githubusercontent.com/u/54295495?" + }, + "repo": { + "id": 216654918, + "name": "J-danger/Project-Two", + "url": "https://api.github.com/repos/J-danger/Project-Two" + }, + "payload": { + "ref": "steveDesktop", + "ref_type": "branch", + "master_branch": "master", + "description": null, + "pusher_type": "user" + }, + "public": true, + "created_at": "2019-10-21T21:54:48Z" + }, + { + "id": "10680624935", + "type": "PushEvent", + "actor": { + "id": 51011840, + "login": "othhotro", + "display_login": "othhotro", + "gravatar_id": "", + "url": "https://api.github.com/users/othhotro", + "avatar_url": "https://avatars.githubusercontent.com/u/51011840?" + }, + "repo": { + "id": 201879384, + "name": "othhotro/Roo.Exe", + "url": "https://api.github.com/repos/othhotro/Roo.Exe" + }, + "payload": { + "push_id": 4176854859, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "908784246be05f222167f3f463e1423885f54ac5", + "before": "9e030787665d1dbf6f75f4020c52cb842d3cd17b", + "commits": [ + { + "sha": "908784246be05f222167f3f463e1423885f54ac5", + "author": { + "email": "oth.hotro@gmail.com", + "name": "oth.hotro@gmail.com" + }, + "message": "Lần chạy [2019-10-22 04-53]:Lần thứ 49", + "distinct": true, + "url": "https://api.github.com/repos/othhotro/Roo.Exe/commits/908784246be05f222167f3f463e1423885f54ac5" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:47Z" + }, + { + "id": "10680624939", + "type": "ForkEvent", + "actor": { + "id": 19598165, + "login": "pedroslark", + "display_login": "pedroslark", + "gravatar_id": "", + "url": "https://api.github.com/users/pedroslark", + "avatar_url": "https://avatars.githubusercontent.com/u/19598165?" + }, + "repo": { + "id": 162767986, + "name": "Aguiar16/curso-git-appice", + "url": "https://api.github.com/repos/Aguiar16/curso-git-appice" + }, + "payload": { + "forkee": { + "id": 216672334, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTY2NzIzMzQ=", + "name": "curso-git-appice", + "full_name": "pedroslark/curso-git-appice", + "private": false, + "owner": { + "login": "pedroslark", + "id": 19598165, + "node_id": "MDQ6VXNlcjE5NTk4MTY1", + "avatar_url": "https://avatars1.githubusercontent.com/u/19598165?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/pedroslark", + "html_url": "https://github.com/pedroslark", + "followers_url": "https://api.github.com/users/pedroslark/followers", + "following_url": "https://api.github.com/users/pedroslark/following{/other_user}", + "gists_url": "https://api.github.com/users/pedroslark/gists{/gist_id}", + "starred_url": "https://api.github.com/users/pedroslark/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/pedroslark/subscriptions", + "organizations_url": "https://api.github.com/users/pedroslark/orgs", + "repos_url": "https://api.github.com/users/pedroslark/repos", + "events_url": "https://api.github.com/users/pedroslark/events{/privacy}", + "received_events_url": "https://api.github.com/users/pedroslark/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/pedroslark/curso-git-appice", + "description": "Curso de git ministrado com carinho para a appicesoftware", + "fork": true, + "url": "https://api.github.com/repos/pedroslark/curso-git-appice", + "forks_url": "https://api.github.com/repos/pedroslark/curso-git-appice/forks", + "keys_url": "https://api.github.com/repos/pedroslark/curso-git-appice/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/pedroslark/curso-git-appice/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/pedroslark/curso-git-appice/teams", + "hooks_url": "https://api.github.com/repos/pedroslark/curso-git-appice/hooks", + "issue_events_url": "https://api.github.com/repos/pedroslark/curso-git-appice/issues/events{/number}", + "events_url": "https://api.github.com/repos/pedroslark/curso-git-appice/events", + "assignees_url": "https://api.github.com/repos/pedroslark/curso-git-appice/assignees{/user}", + "branches_url": "https://api.github.com/repos/pedroslark/curso-git-appice/branches{/branch}", + "tags_url": "https://api.github.com/repos/pedroslark/curso-git-appice/tags", + "blobs_url": "https://api.github.com/repos/pedroslark/curso-git-appice/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/pedroslark/curso-git-appice/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/pedroslark/curso-git-appice/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/pedroslark/curso-git-appice/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/pedroslark/curso-git-appice/statuses/{sha}", + "languages_url": "https://api.github.com/repos/pedroslark/curso-git-appice/languages", + "stargazers_url": "https://api.github.com/repos/pedroslark/curso-git-appice/stargazers", + "contributors_url": "https://api.github.com/repos/pedroslark/curso-git-appice/contributors", + "subscribers_url": "https://api.github.com/repos/pedroslark/curso-git-appice/subscribers", + "subscription_url": "https://api.github.com/repos/pedroslark/curso-git-appice/subscription", + "commits_url": "https://api.github.com/repos/pedroslark/curso-git-appice/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/pedroslark/curso-git-appice/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/pedroslark/curso-git-appice/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/pedroslark/curso-git-appice/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/pedroslark/curso-git-appice/contents/{+path}", + "compare_url": "https://api.github.com/repos/pedroslark/curso-git-appice/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/pedroslark/curso-git-appice/merges", + "archive_url": "https://api.github.com/repos/pedroslark/curso-git-appice/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/pedroslark/curso-git-appice/downloads", + "issues_url": "https://api.github.com/repos/pedroslark/curso-git-appice/issues{/number}", + "pulls_url": "https://api.github.com/repos/pedroslark/curso-git-appice/pulls{/number}", + "milestones_url": "https://api.github.com/repos/pedroslark/curso-git-appice/milestones{/number}", + "notifications_url": "https://api.github.com/repos/pedroslark/curso-git-appice/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/pedroslark/curso-git-appice/labels{/name}", + "releases_url": "https://api.github.com/repos/pedroslark/curso-git-appice/releases{/id}", + "deployments_url": "https://api.github.com/repos/pedroslark/curso-git-appice/deployments", + "created_at": "2019-10-21T21:54:47Z", + "updated_at": "2019-10-10T22:04:00Z", + "pushed_at": "2019-10-10T22:03:58Z", + "git_url": "git://github.com/pedroslark/curso-git-appice.git", + "ssh_url": "git@github.com:pedroslark/curso-git-appice.git", + "clone_url": "https://github.com/pedroslark/curso-git-appice.git", + "svn_url": "https://github.com/pedroslark/curso-git-appice", + "homepage": null, + "size": 6, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "public": true + } + }, + "public": true, + "created_at": "2019-10-21T21:54:48Z" + }, + { + "id": "10680624936", + "type": "WatchEvent", + "actor": { + "id": 471467, + "login": "g5pw", + "display_login": "g5pw", + "gravatar_id": "", + "url": "https://api.github.com/users/g5pw", + "avatar_url": "https://avatars.githubusercontent.com/u/471467?" + }, + "repo": { + "id": 103470104, + "name": "exclave/exclave", + "url": "https://api.github.com/repos/exclave/exclave" + }, + "payload": { + "action": "started" + }, + "public": true, + "created_at": "2019-10-21T21:54:48Z", + "org": { + "id": 31875913, + "login": "exclave", + "gravatar_id": "", + "url": "https://api.github.com/orgs/exclave", + "avatar_url": "https://avatars.githubusercontent.com/u/31875913?" + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/__files/events-d3ce344a-2eeb-443b-9929-612fb9cbde1f.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/__files/events-d3ce344a-2eeb-443b-9929-612fb9cbde1f.json new file mode 100644 index 0000000000..b66d545a5a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/__files/events-d3ce344a-2eeb-443b-9929-612fb9cbde1f.json @@ -0,0 +1,2827 @@ +[ + { + "id": "10680625302", + "type": "PushEvent", + "actor": { + "id": 46480543, + "login": "daarth", + "display_login": "daarth", + "gravatar_id": "", + "url": "https://api.github.com/users/daarth", + "avatar_url": "https://avatars.githubusercontent.com/u/46480543?" + }, + "repo": { + "id": 180147601, + "name": "daarth/thinkfalle", + "url": "https://api.github.com/repos/daarth/thinkfalle" + }, + "payload": { + "push_id": 4176855037, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "846050f82a70b7ca5c527859d8ef1f65f19e0a22", + "before": "a2391c4a3e4c01f56b0c11533be1879361c9b969", + "commits": [ + { + "sha": "846050f82a70b7ca5c527859d8ef1f65f19e0a22", + "author": { + "email": "daarth@programmer.net", + "name": "daarth" + }, + "message": "and a comma", + "distinct": true, + "url": "https://api.github.com/repos/daarth/thinkfalle/commits/846050f82a70b7ca5c527859d8ef1f65f19e0a22" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:51Z" + }, + { + "id": "10680625307", + "type": "IssueCommentEvent", + "actor": { + "id": 3493663, + "login": "lambdamusic", + "display_login": "lambdamusic", + "gravatar_id": "", + "url": "https://api.github.com/users/lambdamusic", + "avatar_url": "https://avatars.githubusercontent.com/u/3493663?" + }, + "repo": { + "id": 132828217, + "name": "WestHealth/pyvis", + "url": "https://api.github.com/repos/WestHealth/pyvis" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/WestHealth/pyvis/issues/49", + "repository_url": "https://api.github.com/repos/WestHealth/pyvis", + "labels_url": "https://api.github.com/repos/WestHealth/pyvis/issues/49/labels{/name}", + "comments_url": "https://api.github.com/repos/WestHealth/pyvis/issues/49/comments", + "events_url": "https://api.github.com/repos/WestHealth/pyvis/issues/49/events", + "html_url": "https://github.com/WestHealth/pyvis/issues/49", + "id": 497692483, + "node_id": "MDU6SXNzdWU0OTc2OTI0ODM=", + "number": 49, + "title": "google colab", + "user": { + "login": "willfinnigan", + "id": 15628614, + "node_id": "MDQ6VXNlcjE1NjI4NjE0", + "avatar_url": "https://avatars2.githubusercontent.com/u/15628614?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/willfinnigan", + "html_url": "https://github.com/willfinnigan", + "followers_url": "https://api.github.com/users/willfinnigan/followers", + "following_url": "https://api.github.com/users/willfinnigan/following{/other_user}", + "gists_url": "https://api.github.com/users/willfinnigan/gists{/gist_id}", + "starred_url": "https://api.github.com/users/willfinnigan/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/willfinnigan/subscriptions", + "organizations_url": "https://api.github.com/users/willfinnigan/orgs", + "repos_url": "https://api.github.com/users/willfinnigan/repos", + "events_url": "https://api.github.com/users/willfinnigan/events{/privacy}", + "received_events_url": "https://api.github.com/users/willfinnigan/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-24T13:34:20Z", + "updated_at": "2019-10-21T21:54:51Z", + "closed_at": null, + "author_association": "NONE", + "body": "Hi, great package! I was wondering if you had any tips for getting the graph to load in google colab. Currently, I get 'localhost refused to connect' as an error." + }, + "comment": { + "url": "https://api.github.com/repos/WestHealth/pyvis/issues/comments/544724583", + "html_url": "https://github.com/WestHealth/pyvis/issues/49#issuecomment-544724583", + "issue_url": "https://api.github.com/repos/WestHealth/pyvis/issues/49", + "id": 544724583, + "node_id": "MDEyOklzc3VlQ29tbWVudDU0NDcyNDU4Mw==", + "user": { + "login": "lambdamusic", + "id": 3493663, + "node_id": "MDQ6VXNlcjM0OTM2NjM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/3493663?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/lambdamusic", + "html_url": "https://github.com/lambdamusic", + "followers_url": "https://api.github.com/users/lambdamusic/followers", + "following_url": "https://api.github.com/users/lambdamusic/following{/other_user}", + "gists_url": "https://api.github.com/users/lambdamusic/gists{/gist_id}", + "starred_url": "https://api.github.com/users/lambdamusic/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/lambdamusic/subscriptions", + "organizations_url": "https://api.github.com/users/lambdamusic/orgs", + "repos_url": "https://api.github.com/users/lambdamusic/repos", + "events_url": "https://api.github.com/users/lambdamusic/events{/privacy}", + "received_events_url": "https://api.github.com/users/lambdamusic/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2019-10-21T21:54:51Z", + "updated_at": "2019-10-21T21:54:51Z", + "author_association": "NONE", + "body": "Same here. It'd be great to have it working in Colab (ps it works if you just save to a file)\r\n\r\n![Screenshot 2019-10-21 at 22 54 00](https://user-images.githubusercontent.com/3493663/67246223-c66de880-f455-11e9-8858-81a40e4aa324.png)\r\n" + } + }, + "public": true, + "created_at": "2019-10-21T21:54:51Z", + "org": { + "id": 22085795, + "login": "WestHealth", + "gravatar_id": "", + "url": "https://api.github.com/orgs/WestHealth", + "avatar_url": "https://avatars.githubusercontent.com/u/22085795?" + } + }, + { + "id": "10680625304", + "type": "CreateEvent", + "actor": { + "id": 53269239, + "login": "Critical94", + "display_login": "Critical94", + "gravatar_id": "", + "url": "https://api.github.com/users/Critical94", + "avatar_url": "https://avatars.githubusercontent.com/u/53269239?" + }, + "repo": { + "id": 216668360, + "name": "Critical94/github-slideshow", + "url": "https://api.github.com/repos/Critical94/github-slideshow" + }, + "payload": { + "ref": "my-slide", + "ref_type": "branch", + "master_branch": "master", + "description": "A robot powered training repository :robot:", + "pusher_type": "user" + }, + "public": true, + "created_at": "2019-10-21T21:54:51Z" + }, + { + "id": "10680625301", + "type": "DeleteEvent", + "actor": { + "id": 24236477, + "login": "tcc7130", + "display_login": "tcc7130", + "gravatar_id": "", + "url": "https://api.github.com/users/tcc7130", + "avatar_url": "https://avatars.githubusercontent.com/u/24236477?" + }, + "repo": { + "id": 216604989, + "name": "tcc7130/youtube-copy", + "url": "https://api.github.com/repos/tcc7130/youtube-copy" + }, + "payload": { + "ref": "size-columns", + "ref_type": "branch", + "pusher_type": "user" + }, + "public": true, + "created_at": "2019-10-21T21:54:51Z" + }, + { + "id": "10680625294", + "type": "PushEvent", + "actor": { + "id": 1271183, + "login": "heysupratim", + "display_login": "heysupratim", + "gravatar_id": "", + "url": "https://api.github.com/users/heysupratim", + "avatar_url": "https://avatars.githubusercontent.com/u/1271183?" + }, + "repo": { + "id": 216669006, + "name": "heysupratim/designpodcastpapers", + "url": "https://api.github.com/repos/heysupratim/designpodcastpapers" + }, + "payload": { + "push_id": 4176855036, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "5817dd632f14c5a1b9d9340ad7cf64f0f44e2d4d", + "before": "93b11e1aea2670ec515e75531aedde0d73ee78a4", + "commits": [ + { + "sha": "5817dd632f14c5a1b9d9340ad7cf64f0f44e2d4d", + "author": { + "email": "sup270792@gmail.com", + "name": "Supratim" + }, + "message": "Update README.md", + "distinct": true, + "url": "https://api.github.com/repos/heysupratim/designpodcastpapers/commits/5817dd632f14c5a1b9d9340ad7cf64f0f44e2d4d" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:51Z" + }, + { + "id": "10680625292", + "type": "PushEvent", + "actor": { + "id": 54604717, + "login": "DiegoPompeo", + "display_login": "DiegoPompeo", + "gravatar_id": "", + "url": "https://api.github.com/users/DiegoPompeo", + "avatar_url": "https://avatars.githubusercontent.com/u/54604717?" + }, + "repo": { + "id": 214837456, + "name": "DiegoPompeo/client-redesocial", + "url": "https://api.github.com/repos/DiegoPompeo/client-redesocial" + }, + "payload": { + "push_id": 4176855035, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "f3de92d93edf5a547aa7d3f96bd145920c2bc3c6", + "before": "4f4517747cad50464c61df70e1d9f6472ecfb690", + "commits": [ + { + "sha": "f3de92d93edf5a547aa7d3f96bd145920c2bc3c6", + "author": { + "email": "54604717+DiegoPompeo@users.noreply.github.com", + "name": "Diego C. Pompeo" + }, + "message": "update", + "distinct": true, + "url": "https://api.github.com/repos/DiegoPompeo/client-redesocial/commits/f3de92d93edf5a547aa7d3f96bd145920c2bc3c6" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:51Z" + }, + { + "id": "10680625296", + "type": "PullRequestEvent", + "actor": { + "id": 24723950, + "login": "dob9601", + "display_login": "dob9601", + "gravatar_id": "", + "url": "https://api.github.com/users/dob9601", + "avatar_url": "https://avatars.githubusercontent.com/u/24723950?" + }, + "repo": { + "id": 213237911, + "name": "dob9601/cowrite", + "url": "https://api.github.com/repos/dob9601/cowrite" + }, + "payload": { + "action": "opened", + "number": 6, + "pull_request": { + "url": "https://api.github.com/repos/dob9601/cowrite/pulls/6", + "id": 330711290, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzMwNzExMjkw", + "html_url": "https://github.com/dob9601/cowrite/pull/6", + "diff_url": "https://github.com/dob9601/cowrite/pull/6.diff", + "patch_url": "https://github.com/dob9601/cowrite/pull/6.patch", + "issue_url": "https://api.github.com/repos/dob9601/cowrite/issues/6", + "number": 6, + "state": "open", + "locked": false, + "title": "Patch fixing typo in the url of verification email", + "user": { + "login": "dob9601", + "id": 24723950, + "node_id": "MDQ6VXNlcjI0NzIzOTUw", + "avatar_url": "https://avatars1.githubusercontent.com/u/24723950?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dob9601", + "html_url": "https://github.com/dob9601", + "followers_url": "https://api.github.com/users/dob9601/followers", + "following_url": "https://api.github.com/users/dob9601/following{/other_user}", + "gists_url": "https://api.github.com/users/dob9601/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dob9601/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dob9601/subscriptions", + "organizations_url": "https://api.github.com/users/dob9601/orgs", + "repos_url": "https://api.github.com/users/dob9601/repos", + "events_url": "https://api.github.com/users/dob9601/events{/privacy}", + "received_events_url": "https://api.github.com/users/dob9601/received_events", + "type": "User", + "site_admin": false + }, + "body": "", + "created_at": "2019-10-21T21:54:51Z", + "updated_at": "2019-10-21T21:54:51Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/dob9601/cowrite/pulls/6/commits", + "review_comments_url": "https://api.github.com/repos/dob9601/cowrite/pulls/6/comments", + "review_comment_url": "https://api.github.com/repos/dob9601/cowrite/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/dob9601/cowrite/issues/6/comments", + "statuses_url": "https://api.github.com/repos/dob9601/cowrite/statuses/e38191eee526ca5366a553c8d6121a92b8e04c70", + "head": { + "label": "dob9601:fix-email", + "ref": "fix-email", + "sha": "e38191eee526ca5366a553c8d6121a92b8e04c70", + "user": { + "login": "dob9601", + "id": 24723950, + "node_id": "MDQ6VXNlcjI0NzIzOTUw", + "avatar_url": "https://avatars1.githubusercontent.com/u/24723950?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dob9601", + "html_url": "https://github.com/dob9601", + "followers_url": "https://api.github.com/users/dob9601/followers", + "following_url": "https://api.github.com/users/dob9601/following{/other_user}", + "gists_url": "https://api.github.com/users/dob9601/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dob9601/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dob9601/subscriptions", + "organizations_url": "https://api.github.com/users/dob9601/orgs", + "repos_url": "https://api.github.com/users/dob9601/repos", + "events_url": "https://api.github.com/users/dob9601/events{/privacy}", + "received_events_url": "https://api.github.com/users/dob9601/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 213237911, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTMyMzc5MTE=", + "name": "cowrite", + "full_name": "dob9601/cowrite", + "private": false, + "owner": { + "login": "dob9601", + "id": 24723950, + "node_id": "MDQ6VXNlcjI0NzIzOTUw", + "avatar_url": "https://avatars1.githubusercontent.com/u/24723950?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dob9601", + "html_url": "https://github.com/dob9601", + "followers_url": "https://api.github.com/users/dob9601/followers", + "following_url": "https://api.github.com/users/dob9601/following{/other_user}", + "gists_url": "https://api.github.com/users/dob9601/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dob9601/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dob9601/subscriptions", + "organizations_url": "https://api.github.com/users/dob9601/orgs", + "repos_url": "https://api.github.com/users/dob9601/repos", + "events_url": "https://api.github.com/users/dob9601/events{/privacy}", + "received_events_url": "https://api.github.com/users/dob9601/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/dob9601/cowrite", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/dob9601/cowrite", + "forks_url": "https://api.github.com/repos/dob9601/cowrite/forks", + "keys_url": "https://api.github.com/repos/dob9601/cowrite/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/dob9601/cowrite/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/dob9601/cowrite/teams", + "hooks_url": "https://api.github.com/repos/dob9601/cowrite/hooks", + "issue_events_url": "https://api.github.com/repos/dob9601/cowrite/issues/events{/number}", + "events_url": "https://api.github.com/repos/dob9601/cowrite/events", + "assignees_url": "https://api.github.com/repos/dob9601/cowrite/assignees{/user}", + "branches_url": "https://api.github.com/repos/dob9601/cowrite/branches{/branch}", + "tags_url": "https://api.github.com/repos/dob9601/cowrite/tags", + "blobs_url": "https://api.github.com/repos/dob9601/cowrite/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/dob9601/cowrite/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/dob9601/cowrite/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/dob9601/cowrite/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/dob9601/cowrite/statuses/{sha}", + "languages_url": "https://api.github.com/repos/dob9601/cowrite/languages", + "stargazers_url": "https://api.github.com/repos/dob9601/cowrite/stargazers", + "contributors_url": "https://api.github.com/repos/dob9601/cowrite/contributors", + "subscribers_url": "https://api.github.com/repos/dob9601/cowrite/subscribers", + "subscription_url": "https://api.github.com/repos/dob9601/cowrite/subscription", + "commits_url": "https://api.github.com/repos/dob9601/cowrite/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/dob9601/cowrite/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/dob9601/cowrite/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/dob9601/cowrite/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/dob9601/cowrite/contents/{+path}", + "compare_url": "https://api.github.com/repos/dob9601/cowrite/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/dob9601/cowrite/merges", + "archive_url": "https://api.github.com/repos/dob9601/cowrite/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/dob9601/cowrite/downloads", + "issues_url": "https://api.github.com/repos/dob9601/cowrite/issues{/number}", + "pulls_url": "https://api.github.com/repos/dob9601/cowrite/pulls{/number}", + "milestones_url": "https://api.github.com/repos/dob9601/cowrite/milestones{/number}", + "notifications_url": "https://api.github.com/repos/dob9601/cowrite/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/dob9601/cowrite/labels{/name}", + "releases_url": "https://api.github.com/repos/dob9601/cowrite/releases{/id}", + "deployments_url": "https://api.github.com/repos/dob9601/cowrite/deployments", + "created_at": "2019-10-06T20:21:07Z", + "updated_at": "2019-10-06T21:20:18Z", + "pushed_at": "2019-10-21T21:53:00Z", + "git_url": "git://github.com/dob9601/cowrite.git", + "ssh_url": "git@github.com:dob9601/cowrite.git", + "clone_url": "https://github.com/dob9601/cowrite.git", + "svn_url": "https://github.com/dob9601/cowrite", + "homepage": null, + "size": 214, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Python", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "dob9601:master", + "ref": "master", + "sha": "dd5167cfae62de4fe36d0865026ac9b40210fa25", + "user": { + "login": "dob9601", + "id": 24723950, + "node_id": "MDQ6VXNlcjI0NzIzOTUw", + "avatar_url": "https://avatars1.githubusercontent.com/u/24723950?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dob9601", + "html_url": "https://github.com/dob9601", + "followers_url": "https://api.github.com/users/dob9601/followers", + "following_url": "https://api.github.com/users/dob9601/following{/other_user}", + "gists_url": "https://api.github.com/users/dob9601/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dob9601/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dob9601/subscriptions", + "organizations_url": "https://api.github.com/users/dob9601/orgs", + "repos_url": "https://api.github.com/users/dob9601/repos", + "events_url": "https://api.github.com/users/dob9601/events{/privacy}", + "received_events_url": "https://api.github.com/users/dob9601/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 213237911, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTMyMzc5MTE=", + "name": "cowrite", + "full_name": "dob9601/cowrite", + "private": false, + "owner": { + "login": "dob9601", + "id": 24723950, + "node_id": "MDQ6VXNlcjI0NzIzOTUw", + "avatar_url": "https://avatars1.githubusercontent.com/u/24723950?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dob9601", + "html_url": "https://github.com/dob9601", + "followers_url": "https://api.github.com/users/dob9601/followers", + "following_url": "https://api.github.com/users/dob9601/following{/other_user}", + "gists_url": "https://api.github.com/users/dob9601/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dob9601/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dob9601/subscriptions", + "organizations_url": "https://api.github.com/users/dob9601/orgs", + "repos_url": "https://api.github.com/users/dob9601/repos", + "events_url": "https://api.github.com/users/dob9601/events{/privacy}", + "received_events_url": "https://api.github.com/users/dob9601/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/dob9601/cowrite", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/dob9601/cowrite", + "forks_url": "https://api.github.com/repos/dob9601/cowrite/forks", + "keys_url": "https://api.github.com/repos/dob9601/cowrite/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/dob9601/cowrite/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/dob9601/cowrite/teams", + "hooks_url": "https://api.github.com/repos/dob9601/cowrite/hooks", + "issue_events_url": "https://api.github.com/repos/dob9601/cowrite/issues/events{/number}", + "events_url": "https://api.github.com/repos/dob9601/cowrite/events", + "assignees_url": "https://api.github.com/repos/dob9601/cowrite/assignees{/user}", + "branches_url": "https://api.github.com/repos/dob9601/cowrite/branches{/branch}", + "tags_url": "https://api.github.com/repos/dob9601/cowrite/tags", + "blobs_url": "https://api.github.com/repos/dob9601/cowrite/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/dob9601/cowrite/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/dob9601/cowrite/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/dob9601/cowrite/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/dob9601/cowrite/statuses/{sha}", + "languages_url": "https://api.github.com/repos/dob9601/cowrite/languages", + "stargazers_url": "https://api.github.com/repos/dob9601/cowrite/stargazers", + "contributors_url": "https://api.github.com/repos/dob9601/cowrite/contributors", + "subscribers_url": "https://api.github.com/repos/dob9601/cowrite/subscribers", + "subscription_url": "https://api.github.com/repos/dob9601/cowrite/subscription", + "commits_url": "https://api.github.com/repos/dob9601/cowrite/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/dob9601/cowrite/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/dob9601/cowrite/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/dob9601/cowrite/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/dob9601/cowrite/contents/{+path}", + "compare_url": "https://api.github.com/repos/dob9601/cowrite/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/dob9601/cowrite/merges", + "archive_url": "https://api.github.com/repos/dob9601/cowrite/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/dob9601/cowrite/downloads", + "issues_url": "https://api.github.com/repos/dob9601/cowrite/issues{/number}", + "pulls_url": "https://api.github.com/repos/dob9601/cowrite/pulls{/number}", + "milestones_url": "https://api.github.com/repos/dob9601/cowrite/milestones{/number}", + "notifications_url": "https://api.github.com/repos/dob9601/cowrite/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/dob9601/cowrite/labels{/name}", + "releases_url": "https://api.github.com/repos/dob9601/cowrite/releases{/id}", + "deployments_url": "https://api.github.com/repos/dob9601/cowrite/deployments", + "created_at": "2019-10-06T20:21:07Z", + "updated_at": "2019-10-06T21:20:18Z", + "pushed_at": "2019-10-21T21:53:00Z", + "git_url": "git://github.com/dob9601/cowrite.git", + "ssh_url": "git@github.com:dob9601/cowrite.git", + "clone_url": "https://github.com/dob9601/cowrite.git", + "svn_url": "https://github.com/dob9601/cowrite", + "homepage": null, + "size": 214, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Python", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/dob9601/cowrite/pulls/6" + }, + "html": { + "href": "https://github.com/dob9601/cowrite/pull/6" + }, + "issue": { + "href": "https://api.github.com/repos/dob9601/cowrite/issues/6" + }, + "comments": { + "href": "https://api.github.com/repos/dob9601/cowrite/issues/6/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/dob9601/cowrite/pulls/6/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/dob9601/cowrite/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/dob9601/cowrite/pulls/6/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/dob9601/cowrite/statuses/e38191eee526ca5366a553c8d6121a92b8e04c70" + } + }, + "author_association": "OWNER", + "merged": false, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 1, + "deletions": 1, + "changed_files": 3 + } + }, + "public": true, + "created_at": "2019-10-21T21:54:51Z" + }, + { + "id": "10680625287", + "type": "PushEvent", + "actor": { + "id": 54672561, + "login": "EmiReno", + "display_login": "EmiReno", + "gravatar_id": "", + "url": "https://api.github.com/users/EmiReno", + "avatar_url": "https://avatars.githubusercontent.com/u/54672561?" + }, + "repo": { + "id": 206453295, + "name": "EmiReno/EmiReno.github.io", + "url": "https://api.github.com/repos/EmiReno/EmiReno.github.io" + }, + "payload": { + "push_id": 4176855034, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "132c6e3f563648754dc973ceaeae47ef2688d128", + "before": "0ac44fb2add6e1e7802ba448ac07e4fc525a0688", + "commits": [ + { + "sha": "132c6e3f563648754dc973ceaeae47ef2688d128", + "author": { + "email": "54672561+EmiReno@users.noreply.github.com", + "name": "Emille Moreno" + }, + "message": "Update style.css", + "distinct": true, + "url": "https://api.github.com/repos/EmiReno/EmiReno.github.io/commits/132c6e3f563648754dc973ceaeae47ef2688d128" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:51Z" + }, + { + "id": "10680625293", + "type": "CreateEvent", + "actor": { + "id": 47148648, + "login": "svc-software-factory", + "display_login": "svc-software-factory", + "gravatar_id": "", + "url": "https://api.github.com/users/svc-software-factory", + "avatar_url": "https://avatars.githubusercontent.com/u/47148648?" + }, + "repo": { + "id": 197735826, + "name": "adeo-gitlab/sync-github-gitlab-33", + "url": "https://api.github.com/repos/adeo-gitlab/sync-github-gitlab-33" + }, + "payload": { + "ref": "2019-10-21_21-54-44_123_scenario1", + "ref_type": "branch", + "master_branch": "master", + "description": null, + "pusher_type": "user" + }, + "public": true, + "created_at": "2019-10-21T21:54:51Z", + "org": { + "id": 52697831, + "login": "adeo-gitlab", + "gravatar_id": "", + "url": "https://api.github.com/orgs/adeo-gitlab", + "avatar_url": "https://avatars.githubusercontent.com/u/52697831?" + } + }, + { + "id": "10680625282", + "type": "PushEvent", + "actor": { + "id": 1996564, + "login": "DeBuchie", + "display_login": "DeBuchie", + "gravatar_id": "", + "url": "https://api.github.com/users/DeBuchie", + "avatar_url": "https://avatars.githubusercontent.com/u/1996564?" + }, + "repo": { + "id": 216437191, + "name": "DeBuchie/enkovortraege-frontend", + "url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend" + }, + "payload": { + "push_id": 4176855031, + "size": 2, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "077fb6369088fc334fde4cad3b4443cfd3b6546c", + "before": "087f5d8dc690e9c2ba31340bd04382d8648b9e66", + "commits": [ + { + "sha": "85e487b88d48c608c9535cd8ed7615cbdfae6617", + "author": { + "email": "andreasbuchholz@googlemail.com", + "name": "Andreas Buchholz" + }, + "message": "Added Create Vortrag Effect Demo", + "distinct": false, + "url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/commits/85e487b88d48c608c9535cd8ed7615cbdfae6617" + }, + { + "sha": "077fb6369088fc334fde4cad3b4443cfd3b6546c", + "author": { + "email": "DeBuchie@users.noreply.github.com", + "name": "Andreas Buchholz" + }, + "message": "Merge pull request #10 from DeBuchie/create_Vortrag_Effect\n\nAdded Create Vortrag Effect Demo", + "distinct": true, + "url": "https://api.github.com/repos/DeBuchie/enkovortraege-frontend/commits/077fb6369088fc334fde4cad3b4443cfd3b6546c" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:51Z" + }, + { + "id": "10680625281", + "type": "PushEvent", + "actor": { + "id": 38301098, + "login": "anhthyho", + "display_login": "anhthyho", + "gravatar_id": "", + "url": "https://api.github.com/users/anhthyho", + "avatar_url": "https://avatars.githubusercontent.com/u/38301098?" + }, + "repo": { + "id": 216145117, + "name": "anhthyho/lab13", + "url": "https://api.github.com/repos/anhthyho/lab13" + }, + "payload": { + "push_id": 4176855030, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "300e8462a5018dee52ad1a7b2bc3430494496ceb", + "before": "fbaadbc8a46e76de09d522d548f985619818b0a9", + "commits": [ + { + "sha": "300e8462a5018dee52ad1a7b2bc3430494496ceb", + "author": { + "email": "anhthynho@yahoo.com", + "name": "Anh-Thy Ho" + }, + "message": "added sh", + "distinct": true, + "url": "https://api.github.com/repos/anhthyho/lab13/commits/300e8462a5018dee52ad1a7b2bc3430494496ceb" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:51Z" + }, + { + "id": "10680625278", + "type": "PullRequestReviewCommentEvent", + "actor": { + "id": 747061, + "login": "csanden", + "display_login": "csanden", + "gravatar_id": "", + "url": "https://api.github.com/users/csanden", + "avatar_url": "https://avatars.githubusercontent.com/u/747061?" + }, + "repo": { + "id": 80229651, + "name": "spinnaker/kayenta", + "url": "https://api.github.com/repos/spinnaker/kayenta" + }, + "payload": { + "action": "created", + "comment": { + "url": "https://api.github.com/repos/spinnaker/kayenta/pulls/comments/337258001", + "pull_request_review_id": 304874162, + "id": 337258001, + "node_id": "MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDMzNzI1ODAwMQ==", + "diff_hunk": "@@ -0,0 +1,99 @@\n+Objects in this document are documented using [Markdown Syntax for Object Notation (MSON)].\n+\n+### Canary Config Object model (object)\n+\n+#### Properties\n+- `name` **my-app golden signals canary config** (string, required) - Name for canary configuration.\n+- `description` **Canary config for my-app** (string, required) - Description for the canary configuration.\n+- `applications` (array[string], required) - A list of applications that the canary is for. You can just have a list with single item `ad-hoc` as the entry, unless you are storing the configuration in Kayenta and sharing it. \n+- `judge` ([CanaryJudgeConfig](#canary-judge-config), required) - Judge configuration.\n+- `metrics` (array([CanaryMetricConfig](#canary-metric-config))) - List of metrics to analyze.\n+- `templates` (map, optional) - Templates allow you to compose and parameterize advanced queries against your telemetry provider. Parameterized queries are hydrated by values provided in the canary stage. The project, resourceType, scope, and location variable bindings are implicitly available. For example, you can interpolate project using the following syntax: \\${project}.\n+- `classifier` ([CanaryClassifierConfig](#canary-classifier-config), required) - The classification configuration, such as group weights.\n+\n+\n+### CanaryJudgeConfig (object)\n+Currently there is one judge and this object should be static across all the configuration (see the above examples).\n+#### Properties\n+- `name` **NetflixACAJudge-v1.0** (string, required) - Judge to use, as of right now there is only `NetflixACAJudge-v1.0`.\n+- `judgeConfigurations` **{}** (object, required) - Map of judgement configuration, this should always be an empty object as of right now.\n+\n+\n+### CanaryMetricConfig (object)\n+Describes a metric that will be used in determining the health of a canary.\n+#### Properties\n+- `name` **http errors** (string, required) - Human readable name of the metric under test.\n+- `query` (enum[[CanaryMetricSetQueryConfig](canary-metrics-set-query-config)], required) - Query config object for your metric source type.\n+- `groups` (array[string], required) - List of metrics groups that this metric will belong to.\n+- `analysisConfigurations` ([AnalysisConfiguration](#analysis-configuration), required) - Analysis configuration, describes how to judge a given metric.\n+- `scopeName` (enum[string], required)\n+ - `default` - only accepted value here\n+\n+\n+### CanaryMetricSetQueryConfig (object)\n+Metric source interface for describing how to query for a given metric / metric source.\n+#### Properties\n+- One of\n+ - AtlasCanaryMetricSetQueryConfig\n+ - DatadogCanaryMetricSetQueryConfig\n+ - GraphiteCanaryMetricSetQueryConfig\n+ - InfluxdbCanaryMetricSetQueryConfig\n+ - NewRelicInsightsCanaryMetricSetQueryConfig\n+ - PrometheusCanaryMetricSetQueryConfig\n+ - [SignalFxCanaryMetricSetQueryConfig](../kayenta-signalfx/docs/metric-set-query-config.md)\n+ - StackdriverCanaryMetricSetQueryConfig\n+ - WavefrontCanaryMetricSetQueryConfig\n+ \n+\n+### AnalysisConfiguration (object)\n+Wrapper object that includes the Canary Analysis Configuration and describes how to judge a given metric.\n+#### Properties\n+- `canary` ([CanaryAnalysisConfiguration](#canary-analysis-configuration))\n+\n+\n+### CanaryAnalysisConfiguration (object)\n+Describes how to judge a metric, see the [Netflix Automated Canary Analysis Judge] for more information.\n+#### Properties\n+- `direction` (enum[string], required) Which direction of statistical change triggers the metric to fail.\n+ - `increase` - Use when you want the canary to fail only if it is significantly higher than the baseline (error counts, memory usage, etc, where a decrease is not a failure).\n+ - `decrease` - Use when you want the canary to fail only if it is significantly lower than the baseline (success counts, etc, where a larger number is not a failure).\n+ - `either` - Use when you want the canary to fail if it is significantly higher or lower than the baseline.\n+- `nanStrategy` (enum[string], required) How to handle NaN values which can occur if the metric does not return data for a particular time interval.\n+ - `remove` - Use when you expect a metric to always have data and you want the NaNs removed from your data set (usage metrics).\n+ - `replace` - Use when you expect a metric to return no data in certain use cases and you want the NaNs replaced with zeros (for example: count metrics, if no errors happened, then metric will return no data for that time interval).\n+- `critical` **true** (boolean, optional) - Use to fail the entire canary if this metric fails (recommended for important metrics that signal service outages or severe problems).\n+- `mustHaveData` **true** (boolean, optional) - Use to fail a metric if data is missing.\n+- `effectSize` ([EffectSize](#effect-size), optional) - Controls how much different the metric needs to be to fail or fail critically.\n+\n+\n+### EffectSize\n+Controls the degree of statistical significance the metric needs to fail or fail critically. \n+Metrics marked as critical can also define `criticalIncrease` and `criticalDecrease`. \n+See the [Netflix Automated Canary Analysis Judge] and [Mann Whitney Classifier] classes for more information.\n+\n+#### Properties\n+- `allowedIncrease` **1.1** (number, optional) - Defaults to 1. The multiplier increase that must be met for the metric to fail. This example makes the metric fail when the metric has increased 10% from the baseline.\n+- `allowedDecrease` **0.90** (number, optional) - Defaults to 1. The multiplier decrease that must be met for the metric to fail. This example makes the metric fail when the metric has decreased 10% from the baseline.\n+- `criticalIncrease` **5.0** (number, optional) - Defaults to 1. The multiplier increase that must be met for the metric to be a critical failure and fail the entire analysis with a score of 0. This example make the canary fail critically if there is a 5x increase.", + "path": "docs/canary-config.md", + "position": 78, + "original_position": 77, + "commit_id": "0df10badb72b5272f4c3b5ca461636504b10e03b", + "original_commit_id": "6829c96f81368e4770501249fb7ffcd0d79e4f87", + "user": { + "login": "csanden", + "id": 747061, + "node_id": "MDQ6VXNlcjc0NzA2MQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/747061?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/csanden", + "html_url": "https://github.com/csanden", + "followers_url": "https://api.github.com/users/csanden/followers", + "following_url": "https://api.github.com/users/csanden/following{/other_user}", + "gists_url": "https://api.github.com/users/csanden/gists{/gist_id}", + "starred_url": "https://api.github.com/users/csanden/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/csanden/subscriptions", + "organizations_url": "https://api.github.com/users/csanden/orgs", + "repos_url": "https://api.github.com/users/csanden/repos", + "events_url": "https://api.github.com/users/csanden/events{/privacy}", + "received_events_url": "https://api.github.com/users/csanden/received_events", + "type": "User", + "site_admin": false + }, + "body": "That is correct. If a metric is marked a `critical` then we will check if the user has supplied a `criticalIncrease` or `criticalDecrease` value. These properties allow the user to control the sensitivity of a \"critical\" failure. Note that, a critical failure will result in the entire canary to be marked as a failure and receive a score of zero.", + "created_at": "2019-10-21T21:54:50Z", + "updated_at": "2019-10-21T21:54:51Z", + "html_url": "https://github.com/spinnaker/kayenta/pull/622#discussion_r337258001", + "pull_request_url": "https://api.github.com/repos/spinnaker/kayenta/pulls/622", + "author_association": "CONTRIBUTOR", + "_links": { + "self": { + "href": "https://api.github.com/repos/spinnaker/kayenta/pulls/comments/337258001" + }, + "html": { + "href": "https://github.com/spinnaker/kayenta/pull/622#discussion_r337258001" + }, + "pull_request": { + "href": "https://api.github.com/repos/spinnaker/kayenta/pulls/622" + } + }, + "in_reply_to_id": 336213213 + }, + "pull_request": { + "url": "https://api.github.com/repos/spinnaker/kayenta/pulls/622", + "id": 328941589, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzI4OTQxNTg5", + "html_url": "https://github.com/spinnaker/kayenta/pull/622", + "diff_url": "https://github.com/spinnaker/kayenta/pull/622.diff", + "patch_url": "https://github.com/spinnaker/kayenta/pull/622.patch", + "issue_url": "https://api.github.com/repos/spinnaker/kayenta/issues/622", + "number": 622, + "state": "open", + "locked": false, + "title": "chore(docs): add documentation on the object structure of canary config.", + "user": { + "login": "fieldju", + "id": 711726, + "node_id": "MDQ6VXNlcjcxMTcyNg==", + "avatar_url": "https://avatars2.githubusercontent.com/u/711726?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/fieldju", + "html_url": "https://github.com/fieldju", + "followers_url": "https://api.github.com/users/fieldju/followers", + "following_url": "https://api.github.com/users/fieldju/following{/other_user}", + "gists_url": "https://api.github.com/users/fieldju/gists{/gist_id}", + "starred_url": "https://api.github.com/users/fieldju/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/fieldju/subscriptions", + "organizations_url": "https://api.github.com/users/fieldju/orgs", + "repos_url": "https://api.github.com/users/fieldju/repos", + "events_url": "https://api.github.com/users/fieldju/events{/privacy}", + "received_events_url": "https://api.github.com/users/fieldju/received_events", + "type": "User", + "site_admin": false + }, + "body": "As discussed here: https://github.com/spinnaker/kayenta/pull/621#discussion_r334932676\r\n\r\nThis is a PR of my internal documentation of the Object structure of the Canary Config that documents some of the hidden features that the UI doesn't expose.\r\n\r\nThese probably aren't perfect but are better than nothing.\r\n\r\nOne thing that I am still confused on that maybe @csanden can add input on is the difference between `critical` and `allowed` increase / decrease.\r\n\r\n", + "created_at": "2019-10-16T20:22:43Z", + "updated_at": "2019-10-21T21:54:51Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "e13f5b5e7eff370e432000d032f257140d61c3dc", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "csanden", + "id": 747061, + "node_id": "MDQ6VXNlcjc0NzA2MQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/747061?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/csanden", + "html_url": "https://github.com/csanden", + "followers_url": "https://api.github.com/users/csanden/followers", + "following_url": "https://api.github.com/users/csanden/following{/other_user}", + "gists_url": "https://api.github.com/users/csanden/gists{/gist_id}", + "starred_url": "https://api.github.com/users/csanden/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/csanden/subscriptions", + "organizations_url": "https://api.github.com/users/csanden/orgs", + "repos_url": "https://api.github.com/users/csanden/repos", + "events_url": "https://api.github.com/users/csanden/events{/privacy}", + "received_events_url": "https://api.github.com/users/csanden/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/spinnaker/kayenta/pulls/622/commits", + "review_comments_url": "https://api.github.com/repos/spinnaker/kayenta/pulls/622/comments", + "review_comment_url": "https://api.github.com/repos/spinnaker/kayenta/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/spinnaker/kayenta/issues/622/comments", + "statuses_url": "https://api.github.com/repos/spinnaker/kayenta/statuses/0df10badb72b5272f4c3b5ca461636504b10e03b", + "head": { + "label": "Nike-Inc:docs/canary-config", + "ref": "docs/canary-config", + "sha": "0df10badb72b5272f4c3b5ca461636504b10e03b", + "user": { + "login": "Nike-Inc", + "id": 1435711, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE0MzU3MTE=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1435711?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Nike-Inc", + "html_url": "https://github.com/Nike-Inc", + "followers_url": "https://api.github.com/users/Nike-Inc/followers", + "following_url": "https://api.github.com/users/Nike-Inc/following{/other_user}", + "gists_url": "https://api.github.com/users/Nike-Inc/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Nike-Inc/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Nike-Inc/subscriptions", + "organizations_url": "https://api.github.com/users/Nike-Inc/orgs", + "repos_url": "https://api.github.com/users/Nike-Inc/repos", + "events_url": "https://api.github.com/users/Nike-Inc/events{/privacy}", + "received_events_url": "https://api.github.com/users/Nike-Inc/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 148255222, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDgyNTUyMjI=", + "name": "kayenta", + "full_name": "Nike-Inc/kayenta", + "private": false, + "owner": { + "login": "Nike-Inc", + "id": 1435711, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE0MzU3MTE=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1435711?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Nike-Inc", + "html_url": "https://github.com/Nike-Inc", + "followers_url": "https://api.github.com/users/Nike-Inc/followers", + "following_url": "https://api.github.com/users/Nike-Inc/following{/other_user}", + "gists_url": "https://api.github.com/users/Nike-Inc/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Nike-Inc/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Nike-Inc/subscriptions", + "organizations_url": "https://api.github.com/users/Nike-Inc/orgs", + "repos_url": "https://api.github.com/users/Nike-Inc/repos", + "events_url": "https://api.github.com/users/Nike-Inc/events{/privacy}", + "received_events_url": "https://api.github.com/users/Nike-Inc/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/Nike-Inc/kayenta", + "description": "Fork of https://github.com/spinnaker/kayenta for making PRs.", + "fork": true, + "url": "https://api.github.com/repos/Nike-Inc/kayenta", + "forks_url": "https://api.github.com/repos/Nike-Inc/kayenta/forks", + "keys_url": "https://api.github.com/repos/Nike-Inc/kayenta/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Nike-Inc/kayenta/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Nike-Inc/kayenta/teams", + "hooks_url": "https://api.github.com/repos/Nike-Inc/kayenta/hooks", + "issue_events_url": "https://api.github.com/repos/Nike-Inc/kayenta/issues/events{/number}", + "events_url": "https://api.github.com/repos/Nike-Inc/kayenta/events", + "assignees_url": "https://api.github.com/repos/Nike-Inc/kayenta/assignees{/user}", + "branches_url": "https://api.github.com/repos/Nike-Inc/kayenta/branches{/branch}", + "tags_url": "https://api.github.com/repos/Nike-Inc/kayenta/tags", + "blobs_url": "https://api.github.com/repos/Nike-Inc/kayenta/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Nike-Inc/kayenta/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Nike-Inc/kayenta/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Nike-Inc/kayenta/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Nike-Inc/kayenta/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Nike-Inc/kayenta/languages", + "stargazers_url": "https://api.github.com/repos/Nike-Inc/kayenta/stargazers", + "contributors_url": "https://api.github.com/repos/Nike-Inc/kayenta/contributors", + "subscribers_url": "https://api.github.com/repos/Nike-Inc/kayenta/subscribers", + "subscription_url": "https://api.github.com/repos/Nike-Inc/kayenta/subscription", + "commits_url": "https://api.github.com/repos/Nike-Inc/kayenta/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Nike-Inc/kayenta/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Nike-Inc/kayenta/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Nike-Inc/kayenta/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Nike-Inc/kayenta/contents/{+path}", + "compare_url": "https://api.github.com/repos/Nike-Inc/kayenta/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Nike-Inc/kayenta/merges", + "archive_url": "https://api.github.com/repos/Nike-Inc/kayenta/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Nike-Inc/kayenta/downloads", + "issues_url": "https://api.github.com/repos/Nike-Inc/kayenta/issues{/number}", + "pulls_url": "https://api.github.com/repos/Nike-Inc/kayenta/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Nike-Inc/kayenta/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Nike-Inc/kayenta/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Nike-Inc/kayenta/labels{/name}", + "releases_url": "https://api.github.com/repos/Nike-Inc/kayenta/releases{/id}", + "deployments_url": "https://api.github.com/repos/Nike-Inc/kayenta/deployments", + "created_at": "2018-09-11T03:30:40Z", + "updated_at": "2019-06-28T17:37:34Z", + "pushed_at": "2019-10-18T19:04:43Z", + "git_url": "git://github.com/Nike-Inc/kayenta.git", + "ssh_url": "git@github.com:Nike-Inc/kayenta.git", + "clone_url": "https://github.com/Nike-Inc/kayenta.git", + "svn_url": "https://github.com/Nike-Inc/kayenta", + "homepage": "", + "size": 10807, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "spinnaker:master", + "ref": "master", + "sha": "fde9a0359938f6442c1049e2958d5937e02cf612", + "user": { + "login": "spinnaker", + "id": 7634182, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc2MzQxODI=", + "avatar_url": "https://avatars1.githubusercontent.com/u/7634182?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/spinnaker", + "html_url": "https://github.com/spinnaker", + "followers_url": "https://api.github.com/users/spinnaker/followers", + "following_url": "https://api.github.com/users/spinnaker/following{/other_user}", + "gists_url": "https://api.github.com/users/spinnaker/gists{/gist_id}", + "starred_url": "https://api.github.com/users/spinnaker/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/spinnaker/subscriptions", + "organizations_url": "https://api.github.com/users/spinnaker/orgs", + "repos_url": "https://api.github.com/users/spinnaker/repos", + "events_url": "https://api.github.com/users/spinnaker/events{/privacy}", + "received_events_url": "https://api.github.com/users/spinnaker/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 80229651, + "node_id": "MDEwOlJlcG9zaXRvcnk4MDIyOTY1MQ==", + "name": "kayenta", + "full_name": "spinnaker/kayenta", + "private": false, + "owner": { + "login": "spinnaker", + "id": 7634182, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc2MzQxODI=", + "avatar_url": "https://avatars1.githubusercontent.com/u/7634182?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/spinnaker", + "html_url": "https://github.com/spinnaker", + "followers_url": "https://api.github.com/users/spinnaker/followers", + "following_url": "https://api.github.com/users/spinnaker/following{/other_user}", + "gists_url": "https://api.github.com/users/spinnaker/gists{/gist_id}", + "starred_url": "https://api.github.com/users/spinnaker/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/spinnaker/subscriptions", + "organizations_url": "https://api.github.com/users/spinnaker/orgs", + "repos_url": "https://api.github.com/users/spinnaker/repos", + "events_url": "https://api.github.com/users/spinnaker/events{/privacy}", + "received_events_url": "https://api.github.com/users/spinnaker/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/spinnaker/kayenta", + "description": "Automated Canary Service", + "fork": false, + "url": "https://api.github.com/repos/spinnaker/kayenta", + "forks_url": "https://api.github.com/repos/spinnaker/kayenta/forks", + "keys_url": "https://api.github.com/repos/spinnaker/kayenta/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/spinnaker/kayenta/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/spinnaker/kayenta/teams", + "hooks_url": "https://api.github.com/repos/spinnaker/kayenta/hooks", + "issue_events_url": "https://api.github.com/repos/spinnaker/kayenta/issues/events{/number}", + "events_url": "https://api.github.com/repos/spinnaker/kayenta/events", + "assignees_url": "https://api.github.com/repos/spinnaker/kayenta/assignees{/user}", + "branches_url": "https://api.github.com/repos/spinnaker/kayenta/branches{/branch}", + "tags_url": "https://api.github.com/repos/spinnaker/kayenta/tags", + "blobs_url": "https://api.github.com/repos/spinnaker/kayenta/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/spinnaker/kayenta/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/spinnaker/kayenta/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/spinnaker/kayenta/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/spinnaker/kayenta/statuses/{sha}", + "languages_url": "https://api.github.com/repos/spinnaker/kayenta/languages", + "stargazers_url": "https://api.github.com/repos/spinnaker/kayenta/stargazers", + "contributors_url": "https://api.github.com/repos/spinnaker/kayenta/contributors", + "subscribers_url": "https://api.github.com/repos/spinnaker/kayenta/subscribers", + "subscription_url": "https://api.github.com/repos/spinnaker/kayenta/subscription", + "commits_url": "https://api.github.com/repos/spinnaker/kayenta/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/spinnaker/kayenta/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/spinnaker/kayenta/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/spinnaker/kayenta/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/spinnaker/kayenta/contents/{+path}", + "compare_url": "https://api.github.com/repos/spinnaker/kayenta/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/spinnaker/kayenta/merges", + "archive_url": "https://api.github.com/repos/spinnaker/kayenta/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/spinnaker/kayenta/downloads", + "issues_url": "https://api.github.com/repos/spinnaker/kayenta/issues{/number}", + "pulls_url": "https://api.github.com/repos/spinnaker/kayenta/pulls{/number}", + "milestones_url": "https://api.github.com/repos/spinnaker/kayenta/milestones{/number}", + "notifications_url": "https://api.github.com/repos/spinnaker/kayenta/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/spinnaker/kayenta/labels{/name}", + "releases_url": "https://api.github.com/repos/spinnaker/kayenta/releases{/id}", + "deployments_url": "https://api.github.com/repos/spinnaker/kayenta/deployments", + "created_at": "2017-01-27T17:30:07Z", + "updated_at": "2019-10-21T20:10:08Z", + "pushed_at": "2019-10-21T20:10:06Z", + "git_url": "git://github.com/spinnaker/kayenta.git", + "ssh_url": "git@github.com:spinnaker/kayenta.git", + "clone_url": "https://github.com/spinnaker/kayenta.git", + "svn_url": "https://github.com/spinnaker/kayenta", + "homepage": "", + "size": 10788, + "stargazers_count": 891, + "watchers_count": 891, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 339, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 16, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 339, + "open_issues": 16, + "watchers": 891, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/spinnaker/kayenta/pulls/622" + }, + "html": { + "href": "https://github.com/spinnaker/kayenta/pull/622" + }, + "issue": { + "href": "https://api.github.com/repos/spinnaker/kayenta/issues/622" + }, + "comments": { + "href": "https://api.github.com/repos/spinnaker/kayenta/issues/622/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/spinnaker/kayenta/pulls/622/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/spinnaker/kayenta/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/spinnaker/kayenta/pulls/622/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/spinnaker/kayenta/statuses/0df10badb72b5272f4c3b5ca461636504b10e03b" + } + }, + "author_association": "COLLABORATOR" + } + }, + "public": true, + "created_at": "2019-10-21T21:54:50Z", + "org": { + "id": 7634182, + "login": "spinnaker", + "gravatar_id": "", + "url": "https://api.github.com/orgs/spinnaker", + "avatar_url": "https://avatars.githubusercontent.com/u/7634182?" + } + }, + { + "id": "10680625274", + "type": "PushEvent", + "actor": { + "id": 10810283, + "login": "direwolf-github", + "display_login": "direwolf-github", + "gravatar_id": "", + "url": "https://api.github.com/users/direwolf-github", + "avatar_url": "https://avatars.githubusercontent.com/u/10810283?" + }, + "repo": { + "id": 183051410, + "name": "direwolf-github/my-app", + "url": "https://api.github.com/repos/direwolf-github/my-app" + }, + "payload": { + "push_id": 4176855026, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/branch-cdd0a924", + "head": "7f0283fe374aacb02442659414e038b1dc39d1c6", + "before": "97b657afdf54d3b3ccbcb094fc803fee1c0e5821", + "commits": [ + { + "sha": "7f0283fe374aacb02442659414e038b1dc39d1c6", + "author": { + "email": "heroku-lifecycle+direwolf-github@salesforce.com", + "name": "direwolf-github" + }, + "message": "add readme.txt", + "distinct": true, + "url": "https://api.github.com/repos/direwolf-github/my-app/commits/7f0283fe374aacb02442659414e038b1dc39d1c6" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:51Z" + }, + { + "id": "10680625275", + "type": "IssueCommentEvent", + "actor": { + "id": 43851500, + "login": "instasck", + "display_login": "instasck", + "gravatar_id": "", + "url": "https://api.github.com/users/instasck", + "avatar_url": "https://avatars.githubusercontent.com/u/43851500?" + }, + "repo": { + "id": 191108343, + "name": "realsirjoe/instagram-scraper", + "url": "https://api.github.com/repos/realsirjoe/instagram-scraper" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/realsirjoe/instagram-scraper/issues/44", + "repository_url": "https://api.github.com/repos/realsirjoe/instagram-scraper", + "labels_url": "https://api.github.com/repos/realsirjoe/instagram-scraper/issues/44/labels{/name}", + "comments_url": "https://api.github.com/repos/realsirjoe/instagram-scraper/issues/44/comments", + "events_url": "https://api.github.com/repos/realsirjoe/instagram-scraper/issues/44/events", + "html_url": "https://github.com/realsirjoe/instagram-scraper/issues/44", + "id": 487365075, + "node_id": "MDU6SXNzdWU0ODczNjUwNzU=", + "number": 44, + "title": "KeyError: 'ProfilePage", + "user": { + "login": "ZIVVAL", + "id": 45262725, + "node_id": "MDQ6VXNlcjQ1MjYyNzI1", + "avatar_url": "https://avatars2.githubusercontent.com/u/45262725?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ZIVVAL", + "html_url": "https://github.com/ZIVVAL", + "followers_url": "https://api.github.com/users/ZIVVAL/followers", + "following_url": "https://api.github.com/users/ZIVVAL/following{/other_user}", + "gists_url": "https://api.github.com/users/ZIVVAL/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ZIVVAL/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ZIVVAL/subscriptions", + "organizations_url": "https://api.github.com/users/ZIVVAL/orgs", + "repos_url": "https://api.github.com/users/ZIVVAL/repos", + "events_url": "https://api.github.com/users/ZIVVAL/events{/privacy}", + "received_events_url": "https://api.github.com/users/ZIVVAL/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2019-08-30T08:47:32Z", + "updated_at": "2019-10-21T21:54:51Z", + "closed_at": null, + "author_association": "NONE", + "body": "All worked well and smooth untl few hours a go.\r\n\r\nI tried the user with proxy and got:\r\nif user_array['entry_data']['ProfilePage'][0]['graphql']['user'] is None:\r\nKeyError: 'ProfilePage'\r\n\r\nSo I tried without and all seems to be working for few times and again keyError: ProfilePage\r\nAny suggestions" + }, + "comment": { + "url": "https://api.github.com/repos/realsirjoe/instagram-scraper/issues/comments/544724580", + "html_url": "https://github.com/realsirjoe/instagram-scraper/issues/44#issuecomment-544724580", + "issue_url": "https://api.github.com/repos/realsirjoe/instagram-scraper/issues/44", + "id": 544724580, + "node_id": "MDEyOklzc3VlQ29tbWVudDU0NDcyNDU4MA==", + "user": { + "login": "instasck", + "id": 43851500, + "node_id": "MDQ6VXNlcjQzODUxNTAw", + "avatar_url": "https://avatars0.githubusercontent.com/u/43851500?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/instasck", + "html_url": "https://github.com/instasck", + "followers_url": "https://api.github.com/users/instasck/followers", + "following_url": "https://api.github.com/users/instasck/following{/other_user}", + "gists_url": "https://api.github.com/users/instasck/gists{/gist_id}", + "starred_url": "https://api.github.com/users/instasck/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/instasck/subscriptions", + "organizations_url": "https://api.github.com/users/instasck/orgs", + "repos_url": "https://api.github.com/users/instasck/repos", + "events_url": "https://api.github.com/users/instasck/events{/privacy}", + "received_events_url": "https://api.github.com/users/instasck/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2019-10-21T21:54:51Z", + "updated_at": "2019-10-21T21:54:51Z", + "author_association": "NONE", + "body": "@suxSx I now don't use a login user just scrape without user and a 4g proxy.\r\nIt seems to not work for 50% of times with return code:\r\n{'config': {'csrf_token': '5aS6alZEvNVGGRlKCxYwxaHM4JJASvMZ', 'viewer': None, 'viewerId': None}, 'country_code': 'IL', 'language_code': 'en', 'locale': 'en_US', 'entry_data': {'ProfilePage': [{'logging_page_id': 'prof\r\n\r\nWhat can I do ?" + } + }, + "public": true, + "created_at": "2019-10-21T21:54:51Z" + }, + { + "id": "10680625217", + "type": "PushEvent", + "actor": { + "id": 10810283, + "login": "direwolf-github", + "display_login": "direwolf-github", + "gravatar_id": "", + "url": "https://api.github.com/users/direwolf-github", + "avatar_url": "https://avatars.githubusercontent.com/u/10810283?" + }, + "repo": { + "id": 216672326, + "name": "direwolf-github/my-app-752826ef", + "url": "https://api.github.com/repos/direwolf-github/my-app-752826ef" + }, + "payload": { + "push_id": 4176855000, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/branch-c7fa2a10", + "head": "a3c6c818cf13f328cdb74b9a37baa9186f215131", + "before": "18395ef48a32eec03d7631dd1750aa3d81fd1fa2", + "commits": [ + { + "sha": "a3c6c818cf13f328cdb74b9a37baa9186f215131", + "author": { + "email": "heroku-lifecycle+direwolf-github@salesforce.com", + "name": "direwolf-github" + }, + "message": "add readme.txt", + "distinct": true, + "url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/commits/a3c6c818cf13f328cdb74b9a37baa9186f215131" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:50Z" + }, + { + "id": "10680625272", + "type": "PullRequestEvent", + "actor": { + "id": 15252235, + "login": "EmreAtes", + "display_login": "EmreAtes", + "gravatar_id": "", + "url": "https://api.github.com/users/EmreAtes", + "avatar_url": "https://avatars.githubusercontent.com/u/15252235?" + }, + "repo": { + "id": 216323481, + "name": "uuid-rs/uuid-gdb", + "url": "https://api.github.com/repos/uuid-rs/uuid-gdb" + }, + "payload": { + "action": "opened", + "number": 1, + "pull_request": { + "url": "https://api.github.com/repos/uuid-rs/uuid-gdb/pulls/1", + "id": 330711287, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzMwNzExMjg3", + "html_url": "https://github.com/uuid-rs/uuid-gdb/pull/1", + "diff_url": "https://github.com/uuid-rs/uuid-gdb/pull/1.diff", + "patch_url": "https://github.com/uuid-rs/uuid-gdb/pull/1.patch", + "issue_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/issues/1", + "number": 1, + "state": "open", + "locked": false, + "title": "Add initial files", + "user": { + "login": "EmreAtes", + "id": 15252235, + "node_id": "MDQ6VXNlcjE1MjUyMjM1", + "avatar_url": "https://avatars1.githubusercontent.com/u/15252235?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/EmreAtes", + "html_url": "https://github.com/EmreAtes", + "followers_url": "https://api.github.com/users/EmreAtes/followers", + "following_url": "https://api.github.com/users/EmreAtes/following{/other_user}", + "gists_url": "https://api.github.com/users/EmreAtes/gists{/gist_id}", + "starred_url": "https://api.github.com/users/EmreAtes/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/EmreAtes/subscriptions", + "organizations_url": "https://api.github.com/users/EmreAtes/orgs", + "repos_url": "https://api.github.com/users/EmreAtes/repos", + "events_url": "https://api.github.com/users/EmreAtes/events{/privacy}", + "received_events_url": "https://api.github.com/users/EmreAtes/received_events", + "type": "User", + "site_admin": false + }, + "body": "These are the initial printers I put in [#428](https://github.com/uuid-rs/uuid/issues/428).", + "created_at": "2019-10-21T21:54:50Z", + "updated_at": "2019-10-21T21:54:50Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/pulls/1/commits", + "review_comments_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/pulls/1/comments", + "review_comment_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/issues/1/comments", + "statuses_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/statuses/49316b28673041a2488dedefc9d75a56faab3b0e", + "head": { + "label": "uuid-rs:develop", + "ref": "develop", + "sha": "49316b28673041a2488dedefc9d75a56faab3b0e", + "user": { + "login": "uuid-rs", + "id": 35938770, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjM1OTM4Nzcw", + "avatar_url": "https://avatars2.githubusercontent.com/u/35938770?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/uuid-rs", + "html_url": "https://github.com/uuid-rs", + "followers_url": "https://api.github.com/users/uuid-rs/followers", + "following_url": "https://api.github.com/users/uuid-rs/following{/other_user}", + "gists_url": "https://api.github.com/users/uuid-rs/gists{/gist_id}", + "starred_url": "https://api.github.com/users/uuid-rs/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/uuid-rs/subscriptions", + "organizations_url": "https://api.github.com/users/uuid-rs/orgs", + "repos_url": "https://api.github.com/users/uuid-rs/repos", + "events_url": "https://api.github.com/users/uuid-rs/events{/privacy}", + "received_events_url": "https://api.github.com/users/uuid-rs/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 216323481, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTYzMjM0ODE=", + "name": "uuid-gdb", + "full_name": "uuid-rs/uuid-gdb", + "private": false, + "owner": { + "login": "uuid-rs", + "id": 35938770, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjM1OTM4Nzcw", + "avatar_url": "https://avatars2.githubusercontent.com/u/35938770?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/uuid-rs", + "html_url": "https://github.com/uuid-rs", + "followers_url": "https://api.github.com/users/uuid-rs/followers", + "following_url": "https://api.github.com/users/uuid-rs/following{/other_user}", + "gists_url": "https://api.github.com/users/uuid-rs/gists{/gist_id}", + "starred_url": "https://api.github.com/users/uuid-rs/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/uuid-rs/subscriptions", + "organizations_url": "https://api.github.com/users/uuid-rs/orgs", + "repos_url": "https://api.github.com/users/uuid-rs/repos", + "events_url": "https://api.github.com/users/uuid-rs/events{/privacy}", + "received_events_url": "https://api.github.com/users/uuid-rs/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/uuid-rs/uuid-gdb", + "description": "GDB pretty-printers for uuid::Uuid", + "fork": false, + "url": "https://api.github.com/repos/uuid-rs/uuid-gdb", + "forks_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/forks", + "keys_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/teams", + "hooks_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/hooks", + "issue_events_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/issues/events{/number}", + "events_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/events", + "assignees_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/assignees{/user}", + "branches_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/branches{/branch}", + "tags_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/tags", + "blobs_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/statuses/{sha}", + "languages_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/languages", + "stargazers_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/stargazers", + "contributors_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/contributors", + "subscribers_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/subscribers", + "subscription_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/subscription", + "commits_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/contents/{+path}", + "compare_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/merges", + "archive_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/downloads", + "issues_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/issues{/number}", + "pulls_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/pulls{/number}", + "milestones_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/milestones{/number}", + "notifications_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/labels{/name}", + "releases_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/releases{/id}", + "deployments_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/deployments", + "created_at": "2019-10-20T07:24:16Z", + "updated_at": "2019-10-20T07:24:19Z", + "pushed_at": "2019-10-21T21:52:31Z", + "git_url": "git://github.com/uuid-rs/uuid-gdb.git", + "ssh_url": "git@github.com:uuid-rs/uuid-gdb.git", + "clone_url": "https://github.com/uuid-rs/uuid-gdb.git", + "svn_url": "https://github.com/uuid-rs/uuid-gdb", + "homepage": null, + "size": 1, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "uuid-rs:master", + "ref": "master", + "sha": "2070c7bb3f09250854a5144985aa5002f4d0f11b", + "user": { + "login": "uuid-rs", + "id": 35938770, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjM1OTM4Nzcw", + "avatar_url": "https://avatars2.githubusercontent.com/u/35938770?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/uuid-rs", + "html_url": "https://github.com/uuid-rs", + "followers_url": "https://api.github.com/users/uuid-rs/followers", + "following_url": "https://api.github.com/users/uuid-rs/following{/other_user}", + "gists_url": "https://api.github.com/users/uuid-rs/gists{/gist_id}", + "starred_url": "https://api.github.com/users/uuid-rs/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/uuid-rs/subscriptions", + "organizations_url": "https://api.github.com/users/uuid-rs/orgs", + "repos_url": "https://api.github.com/users/uuid-rs/repos", + "events_url": "https://api.github.com/users/uuid-rs/events{/privacy}", + "received_events_url": "https://api.github.com/users/uuid-rs/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 216323481, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTYzMjM0ODE=", + "name": "uuid-gdb", + "full_name": "uuid-rs/uuid-gdb", + "private": false, + "owner": { + "login": "uuid-rs", + "id": 35938770, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjM1OTM4Nzcw", + "avatar_url": "https://avatars2.githubusercontent.com/u/35938770?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/uuid-rs", + "html_url": "https://github.com/uuid-rs", + "followers_url": "https://api.github.com/users/uuid-rs/followers", + "following_url": "https://api.github.com/users/uuid-rs/following{/other_user}", + "gists_url": "https://api.github.com/users/uuid-rs/gists{/gist_id}", + "starred_url": "https://api.github.com/users/uuid-rs/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/uuid-rs/subscriptions", + "organizations_url": "https://api.github.com/users/uuid-rs/orgs", + "repos_url": "https://api.github.com/users/uuid-rs/repos", + "events_url": "https://api.github.com/users/uuid-rs/events{/privacy}", + "received_events_url": "https://api.github.com/users/uuid-rs/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/uuid-rs/uuid-gdb", + "description": "GDB pretty-printers for uuid::Uuid", + "fork": false, + "url": "https://api.github.com/repos/uuid-rs/uuid-gdb", + "forks_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/forks", + "keys_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/teams", + "hooks_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/hooks", + "issue_events_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/issues/events{/number}", + "events_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/events", + "assignees_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/assignees{/user}", + "branches_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/branches{/branch}", + "tags_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/tags", + "blobs_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/statuses/{sha}", + "languages_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/languages", + "stargazers_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/stargazers", + "contributors_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/contributors", + "subscribers_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/subscribers", + "subscription_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/subscription", + "commits_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/contents/{+path}", + "compare_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/merges", + "archive_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/downloads", + "issues_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/issues{/number}", + "pulls_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/pulls{/number}", + "milestones_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/milestones{/number}", + "notifications_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/labels{/name}", + "releases_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/releases{/id}", + "deployments_url": "https://api.github.com/repos/uuid-rs/uuid-gdb/deployments", + "created_at": "2019-10-20T07:24:16Z", + "updated_at": "2019-10-20T07:24:19Z", + "pushed_at": "2019-10-21T21:52:31Z", + "git_url": "git://github.com/uuid-rs/uuid-gdb.git", + "ssh_url": "git@github.com:uuid-rs/uuid-gdb.git", + "clone_url": "https://github.com/uuid-rs/uuid-gdb.git", + "svn_url": "https://github.com/uuid-rs/uuid-gdb", + "homepage": null, + "size": 1, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/uuid-rs/uuid-gdb/pulls/1" + }, + "html": { + "href": "https://github.com/uuid-rs/uuid-gdb/pull/1" + }, + "issue": { + "href": "https://api.github.com/repos/uuid-rs/uuid-gdb/issues/1" + }, + "comments": { + "href": "https://api.github.com/repos/uuid-rs/uuid-gdb/issues/1/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/uuid-rs/uuid-gdb/pulls/1/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/uuid-rs/uuid-gdb/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/uuid-rs/uuid-gdb/pulls/1/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/uuid-rs/uuid-gdb/statuses/49316b28673041a2488dedefc9d75a56faab3b0e" + } + }, + "author_association": "COLLABORATOR", + "merged": false, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 35, + "deletions": 0, + "changed_files": 3 + } + }, + "public": true, + "created_at": "2019-10-21T21:54:51Z", + "org": { + "id": 35938770, + "login": "uuid-rs", + "gravatar_id": "", + "url": "https://api.github.com/orgs/uuid-rs", + "avatar_url": "https://avatars.githubusercontent.com/u/35938770?" + } + }, + { + "id": "10680625267", + "type": "PushEvent", + "actor": { + "id": 51011840, + "login": "othhotro", + "display_login": "othhotro", + "gravatar_id": "", + "url": "https://api.github.com/users/othhotro", + "avatar_url": "https://avatars.githubusercontent.com/u/51011840?" + }, + "repo": { + "id": 201879384, + "name": "othhotro/Roo.Exe", + "url": "https://api.github.com/repos/othhotro/Roo.Exe" + }, + "payload": { + "push_id": 4176855025, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "481b4f5fd37451b9e9d2102f44f13bc9d18c599f", + "before": "ff47c37132b9f65b7a019f68bd6f920f9557850f", + "commits": [ + { + "sha": "481b4f5fd37451b9e9d2102f44f13bc9d18c599f", + "author": { + "email": "oth.hotro@gmail.com", + "name": "oth.hotro@gmail.com" + }, + "message": "Lần chạy [2019-10-22 04-53]:Lần thứ 52", + "distinct": true, + "url": "https://api.github.com/repos/othhotro/Roo.Exe/commits/481b4f5fd37451b9e9d2102f44f13bc9d18c599f" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:51Z" + }, + { + "id": "10680625270", + "type": "IssuesEvent", + "actor": { + "id": 36283240, + "login": "jmorrow2", + "display_login": "jmorrow2", + "gravatar_id": "", + "url": "https://api.github.com/users/jmorrow2", + "avatar_url": "https://avatars.githubusercontent.com/u/36283240?" + }, + "repo": { + "id": 206670154, + "name": "cse442-fall-2019-offering/442projects-wizard-hack", + "url": "https://api.github.com/repos/cse442-fall-2019-offering/442projects-wizard-hack" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/cse442-fall-2019-offering/442projects-wizard-hack/issues/101", + "repository_url": "https://api.github.com/repos/cse442-fall-2019-offering/442projects-wizard-hack", + "labels_url": "https://api.github.com/repos/cse442-fall-2019-offering/442projects-wizard-hack/issues/101/labels{/name}", + "comments_url": "https://api.github.com/repos/cse442-fall-2019-offering/442projects-wizard-hack/issues/101/comments", + "events_url": "https://api.github.com/repos/cse442-fall-2019-offering/442projects-wizard-hack/issues/101/events", + "html_url": "https://github.com/cse442-fall-2019-offering/442projects-wizard-hack/issues/101", + "id": 510315292, + "node_id": "MDU6SXNzdWU1MTAzMTUyOTI=", + "number": 101, + "title": "Stats Enemy Kill Count", + "user": { + "login": "jmorrow2", + "id": 36283240, + "node_id": "MDQ6VXNlcjM2MjgzMjQw", + "avatar_url": "https://avatars2.githubusercontent.com/u/36283240?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jmorrow2", + "html_url": "https://github.com/jmorrow2", + "followers_url": "https://api.github.com/users/jmorrow2/followers", + "following_url": "https://api.github.com/users/jmorrow2/following{/other_user}", + "gists_url": "https://api.github.com/users/jmorrow2/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jmorrow2/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jmorrow2/subscriptions", + "organizations_url": "https://api.github.com/users/jmorrow2/orgs", + "repos_url": "https://api.github.com/users/jmorrow2/repos", + "events_url": "https://api.github.com/users/jmorrow2/events{/privacy}", + "received_events_url": "https://api.github.com/users/jmorrow2/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-10-21T21:54:51Z", + "updated_at": "2019-10-21T21:54:51Z", + "closed_at": null, + "author_association": "COLLABORATOR", + "body": "As a video game player I want to click the stats button on the pause menu so that I can view the enemy kill count." + } + }, + "public": true, + "created_at": "2019-10-21T21:54:51Z", + "org": { + "id": 54152587, + "login": "cse442-fall-2019-offering", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cse442-fall-2019-offering", + "avatar_url": "https://avatars.githubusercontent.com/u/54152587?" + } + }, + { + "id": "10680625264", + "type": "PushEvent", + "actor": { + "id": 49404884, + "login": "zatarra97", + "display_login": "zatarra97", + "gravatar_id": "", + "url": "https://api.github.com/users/zatarra97", + "avatar_url": "https://avatars.githubusercontent.com/u/49404884?" + }, + "repo": { + "id": 188664645, + "name": "zatarra97/Site", + "url": "https://api.github.com/repos/zatarra97/Site" + }, + "payload": { + "push_id": 4176855020, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "7fc2ffa33a4fe96f248ebc6291e24c64a836c8a4", + "before": "3992ef316cc663ddc9b3a7d21586068c6e91dd5f", + "commits": [ + { + "sha": "7fc2ffa33a4fe96f248ebc6291e24c64a836c8a4", + "author": { + "email": "emmanuele.carlone@gmail.com", + "name": "Emmanuele Carlone" + }, + "message": "Prenotazione attività da parte del globetrotte", + "distinct": true, + "url": "https://api.github.com/repos/zatarra97/Site/commits/7fc2ffa33a4fe96f248ebc6291e24c64a836c8a4" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:51Z" + }, + { + "id": "10680625265", + "type": "WatchEvent", + "actor": { + "id": 55180351, + "login": "2bellbree", + "display_login": "2bellbree", + "gravatar_id": "", + "url": "https://api.github.com/users/2bellbree", + "avatar_url": "https://avatars.githubusercontent.com/u/55180351?" + }, + "repo": { + "id": 51270739, + "name": "viatsko/awesome-vscode", + "url": "https://api.github.com/repos/viatsko/awesome-vscode" + }, + "payload": { + "action": "started" + }, + "public": true, + "created_at": "2019-10-21T21:54:51Z" + }, + { + "id": "10680625262", + "type": "IssueCommentEvent", + "actor": { + "id": 28914781, + "login": "BOTOOM", + "display_login": "BOTOOM", + "gravatar_id": "", + "url": "https://api.github.com/users/BOTOOM", + "avatar_url": "https://avatars.githubusercontent.com/u/28914781?" + }, + "repo": { + "id": 195828012, + "name": "udistrital/cumplidos_cliente", + "url": "https://api.github.com/repos/udistrital/cumplidos_cliente" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/udistrital/cumplidos_cliente/issues/17", + "repository_url": "https://api.github.com/repos/udistrital/cumplidos_cliente", + "labels_url": "https://api.github.com/repos/udistrital/cumplidos_cliente/issues/17/labels{/name}", + "comments_url": "https://api.github.com/repos/udistrital/cumplidos_cliente/issues/17/comments", + "events_url": "https://api.github.com/repos/udistrital/cumplidos_cliente/issues/17/events", + "html_url": "https://github.com/udistrital/cumplidos_cliente/issues/17", + "id": 498919626, + "node_id": "MDU6SXNzdWU0OTg5MTk2MjY=", + "number": 17, + "title": "Despliegue en test de cliente de cumplidos", + "user": { + "login": "BOTOOM", + "id": 28914781, + "node_id": "MDQ6VXNlcjI4OTE0Nzgx", + "avatar_url": "https://avatars2.githubusercontent.com/u/28914781?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/BOTOOM", + "html_url": "https://github.com/BOTOOM", + "followers_url": "https://api.github.com/users/BOTOOM/followers", + "following_url": "https://api.github.com/users/BOTOOM/following{/other_user}", + "gists_url": "https://api.github.com/users/BOTOOM/gists{/gist_id}", + "starred_url": "https://api.github.com/users/BOTOOM/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/BOTOOM/subscriptions", + "organizations_url": "https://api.github.com/users/BOTOOM/orgs", + "repos_url": "https://api.github.com/users/BOTOOM/repos", + "events_url": "https://api.github.com/users/BOTOOM/events{/privacy}", + "received_events_url": "https://api.github.com/users/BOTOOM/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 1497400851, + "node_id": "MDU6TGFiZWwxNDk3NDAwODUx", + "url": "https://api.github.com/repos/udistrital/cumplidos_cliente/labels/Cumplidos", + "name": "Cumplidos", + "color": "d6fc19", + "default": false + } + ], + "state": "open", + "locked": false, + "assignee": { + "login": "BOTOOM", + "id": 28914781, + "node_id": "MDQ6VXNlcjI4OTE0Nzgx", + "avatar_url": "https://avatars2.githubusercontent.com/u/28914781?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/BOTOOM", + "html_url": "https://github.com/BOTOOM", + "followers_url": "https://api.github.com/users/BOTOOM/followers", + "following_url": "https://api.github.com/users/BOTOOM/following{/other_user}", + "gists_url": "https://api.github.com/users/BOTOOM/gists{/gist_id}", + "starred_url": "https://api.github.com/users/BOTOOM/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/BOTOOM/subscriptions", + "organizations_url": "https://api.github.com/users/BOTOOM/orgs", + "repos_url": "https://api.github.com/users/BOTOOM/repos", + "events_url": "https://api.github.com/users/BOTOOM/events{/privacy}", + "received_events_url": "https://api.github.com/users/BOTOOM/received_events", + "type": "User", + "site_admin": false + }, + "assignees": [ + { + "login": "BOTOOM", + "id": 28914781, + "node_id": "MDQ6VXNlcjI4OTE0Nzgx", + "avatar_url": "https://avatars2.githubusercontent.com/u/28914781?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/BOTOOM", + "html_url": "https://github.com/BOTOOM", + "followers_url": "https://api.github.com/users/BOTOOM/followers", + "following_url": "https://api.github.com/users/BOTOOM/following{/other_user}", + "gists_url": "https://api.github.com/users/BOTOOM/gists{/gist_id}", + "starred_url": "https://api.github.com/users/BOTOOM/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/BOTOOM/subscriptions", + "organizations_url": "https://api.github.com/users/BOTOOM/orgs", + "repos_url": "https://api.github.com/users/BOTOOM/repos", + "events_url": "https://api.github.com/users/BOTOOM/events{/privacy}", + "received_events_url": "https://api.github.com/users/BOTOOM/received_events", + "type": "User", + "site_admin": false + }, + { + "login": "anlramirezs11", + "id": 29903400, + "node_id": "MDQ6VXNlcjI5OTAzNDAw", + "avatar_url": "https://avatars0.githubusercontent.com/u/29903400?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/anlramirezs11", + "html_url": "https://github.com/anlramirezs11", + "followers_url": "https://api.github.com/users/anlramirezs11/followers", + "following_url": "https://api.github.com/users/anlramirezs11/following{/other_user}", + "gists_url": "https://api.github.com/users/anlramirezs11/gists{/gist_id}", + "starred_url": "https://api.github.com/users/anlramirezs11/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/anlramirezs11/subscriptions", + "organizations_url": "https://api.github.com/users/anlramirezs11/orgs", + "repos_url": "https://api.github.com/users/anlramirezs11/repos", + "events_url": "https://api.github.com/users/anlramirezs11/events{/privacy}", + "received_events_url": "https://api.github.com/users/anlramirezs11/received_events", + "type": "User", + "site_admin": false + } + ], + "milestone": null, + "comments": 11, + "created_at": "2019-09-26T14:23:40Z", + "updated_at": "2019-10-21T21:54:50Z", + "closed_at": null, + "author_association": "MEMBER", + "body": "" + }, + "comment": { + "url": "https://api.github.com/repos/udistrital/cumplidos_cliente/issues/comments/544724579", + "html_url": "https://github.com/udistrital/cumplidos_cliente/issues/17#issuecomment-544724579", + "issue_url": "https://api.github.com/repos/udistrital/cumplidos_cliente/issues/17", + "id": 544724579, + "node_id": "MDEyOklzc3VlQ29tbWVudDU0NDcyNDU3OQ==", + "user": { + "login": "BOTOOM", + "id": 28914781, + "node_id": "MDQ6VXNlcjI4OTE0Nzgx", + "avatar_url": "https://avatars2.githubusercontent.com/u/28914781?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/BOTOOM", + "html_url": "https://github.com/BOTOOM", + "followers_url": "https://api.github.com/users/BOTOOM/followers", + "following_url": "https://api.github.com/users/BOTOOM/following{/other_user}", + "gists_url": "https://api.github.com/users/BOTOOM/gists{/gist_id}", + "starred_url": "https://api.github.com/users/BOTOOM/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/BOTOOM/subscriptions", + "organizations_url": "https://api.github.com/users/BOTOOM/orgs", + "repos_url": "https://api.github.com/users/BOTOOM/repos", + "events_url": "https://api.github.com/users/BOTOOM/events{/privacy}", + "received_events_url": "https://api.github.com/users/BOTOOM/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2019-10-21T21:54:50Z", + "updated_at": "2019-10-21T21:54:50Z", + "author_association": "MEMBER", + "body": "el documento solo se publica cuando el proveedor aprueba, si el proveedor rechaza no pasa nada con el documento.\r\n\r\nel flujo se crea cuando el contratista sube archivos y el flujo se cancela cuando el contratista elimina los archivos" + } + }, + "public": true, + "created_at": "2019-10-21T21:54:51Z", + "org": { + "id": 2576963, + "login": "udistrital", + "gravatar_id": "", + "url": "https://api.github.com/orgs/udistrital", + "avatar_url": "https://avatars.githubusercontent.com/u/2576963?" + } + }, + { + "id": "10680625242", + "type": "PushEvent", + "actor": { + "id": 32246571, + "login": "SarvagyaGupta", + "display_login": "SarvagyaGupta", + "gravatar_id": "", + "url": "https://api.github.com/users/SarvagyaGupta", + "avatar_url": "https://avatars.githubusercontent.com/u/32246571?" + }, + "repo": { + "id": 213764765, + "name": "SarvagyaGupta/uwimg", + "url": "https://api.github.com/repos/SarvagyaGupta/uwimg" + }, + "payload": { + "push_id": 4176855010, + "size": 2, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "03f8cff362a6aca0dc7bfce326bec1092e874c63", + "before": "5f1e6fdc621f3186ecaf479cd89e1f07df71d73b", + "commits": [ + { + "sha": "f765c7e5527e36e37539bb1623900c99739689e5", + "author": { + "email": "guptasarvagyav@gmail.com", + "name": "Sarvagya Gupta" + }, + "message": "Added bilinear interpolation to python script", + "distinct": false, + "url": "https://api.github.com/repos/SarvagyaGupta/uwimg/commits/f765c7e5527e36e37539bb1623900c99739689e5" + }, + { + "sha": "03f8cff362a6aca0dc7bfce326bec1092e874c63", + "author": { + "email": "32246571+SarvagyaGupta@users.noreply.github.com", + "name": "SarvagyaGupta" + }, + "message": "Merge pull request #4 from SarvagyaGupta/HW1\n\nHW1 python script changed", + "distinct": true, + "url": "https://api.github.com/repos/SarvagyaGupta/uwimg/commits/03f8cff362a6aca0dc7bfce326bec1092e874c63" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:51Z" + }, + { + "id": "10680625252", + "type": "PullRequestEvent", + "actor": { + "id": 10810283, + "login": "direwolf-github", + "display_login": "direwolf-github", + "gravatar_id": "", + "url": "https://api.github.com/users/direwolf-github", + "avatar_url": "https://avatars.githubusercontent.com/u/10810283?" + }, + "repo": { + "id": 216672326, + "name": "direwolf-github/my-app-752826ef", + "url": "https://api.github.com/repos/direwolf-github/my-app-752826ef" + }, + "payload": { + "action": "opened", + "number": 1, + "pull_request": { + "url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/pulls/1", + "id": 330711285, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzMwNzExMjg1", + "html_url": "https://github.com/direwolf-github/my-app-752826ef/pull/1", + "diff_url": "https://github.com/direwolf-github/my-app-752826ef/pull/1.diff", + "patch_url": "https://github.com/direwolf-github/my-app-752826ef/pull/1.patch", + "issue_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/issues/1", + "number": 1, + "state": "open", + "locked": false, + "title": "Direwolf review apps test branch-c7fa2a10", + "user": { + "login": "direwolf-github", + "id": 10810283, + "node_id": "MDQ6VXNlcjEwODEwMjgz", + "avatar_url": "https://avatars0.githubusercontent.com/u/10810283?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/direwolf-github", + "html_url": "https://github.com/direwolf-github", + "followers_url": "https://api.github.com/users/direwolf-github/followers", + "following_url": "https://api.github.com/users/direwolf-github/following{/other_user}", + "gists_url": "https://api.github.com/users/direwolf-github/gists{/gist_id}", + "starred_url": "https://api.github.com/users/direwolf-github/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/direwolf-github/subscriptions", + "organizations_url": "https://api.github.com/users/direwolf-github/orgs", + "repos_url": "https://api.github.com/users/direwolf-github/repos", + "events_url": "https://api.github.com/users/direwolf-github/events{/privacy}", + "received_events_url": "https://api.github.com/users/direwolf-github/received_events", + "type": "User", + "site_admin": false + }, + "body": "Direwolf review apps test branch-c7fa2a10", + "created_at": "2019-10-21T21:54:50Z", + "updated_at": "2019-10-21T21:54:50Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/pulls/1/commits", + "review_comments_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/pulls/1/comments", + "review_comment_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/issues/1/comments", + "statuses_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/statuses/a3c6c818cf13f328cdb74b9a37baa9186f215131", + "head": { + "label": "direwolf-github:branch-c7fa2a10", + "ref": "branch-c7fa2a10", + "sha": "a3c6c818cf13f328cdb74b9a37baa9186f215131", + "user": { + "login": "direwolf-github", + "id": 10810283, + "node_id": "MDQ6VXNlcjEwODEwMjgz", + "avatar_url": "https://avatars0.githubusercontent.com/u/10810283?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/direwolf-github", + "html_url": "https://github.com/direwolf-github", + "followers_url": "https://api.github.com/users/direwolf-github/followers", + "following_url": "https://api.github.com/users/direwolf-github/following{/other_user}", + "gists_url": "https://api.github.com/users/direwolf-github/gists{/gist_id}", + "starred_url": "https://api.github.com/users/direwolf-github/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/direwolf-github/subscriptions", + "organizations_url": "https://api.github.com/users/direwolf-github/orgs", + "repos_url": "https://api.github.com/users/direwolf-github/repos", + "events_url": "https://api.github.com/users/direwolf-github/events{/privacy}", + "received_events_url": "https://api.github.com/users/direwolf-github/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 216672326, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTY2NzIzMjY=", + "name": "my-app-752826ef", + "full_name": "direwolf-github/my-app-752826ef", + "private": false, + "owner": { + "login": "direwolf-github", + "id": 10810283, + "node_id": "MDQ6VXNlcjEwODEwMjgz", + "avatar_url": "https://avatars0.githubusercontent.com/u/10810283?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/direwolf-github", + "html_url": "https://github.com/direwolf-github", + "followers_url": "https://api.github.com/users/direwolf-github/followers", + "following_url": "https://api.github.com/users/direwolf-github/following{/other_user}", + "gists_url": "https://api.github.com/users/direwolf-github/gists{/gist_id}", + "starred_url": "https://api.github.com/users/direwolf-github/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/direwolf-github/subscriptions", + "organizations_url": "https://api.github.com/users/direwolf-github/orgs", + "repos_url": "https://api.github.com/users/direwolf-github/repos", + "events_url": "https://api.github.com/users/direwolf-github/events{/privacy}", + "received_events_url": "https://api.github.com/users/direwolf-github/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/direwolf-github/my-app-752826ef", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/direwolf-github/my-app-752826ef", + "forks_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/forks", + "keys_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/teams", + "hooks_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/hooks", + "issue_events_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/issues/events{/number}", + "events_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/events", + "assignees_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/assignees{/user}", + "branches_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/branches{/branch}", + "tags_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/tags", + "blobs_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/statuses/{sha}", + "languages_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/languages", + "stargazers_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/stargazers", + "contributors_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/contributors", + "subscribers_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/subscribers", + "subscription_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/subscription", + "commits_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/contents/{+path}", + "compare_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/merges", + "archive_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/downloads", + "issues_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/issues{/number}", + "pulls_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/pulls{/number}", + "milestones_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/milestones{/number}", + "notifications_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/labels{/name}", + "releases_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/releases{/id}", + "deployments_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/deployments", + "created_at": "2019-10-21T21:54:44Z", + "updated_at": "2019-10-21T21:54:47Z", + "pushed_at": "2019-10-21T21:54:50Z", + "git_url": "git://github.com/direwolf-github/my-app-752826ef.git", + "ssh_url": "git@github.com:direwolf-github/my-app-752826ef.git", + "clone_url": "https://github.com/direwolf-github/my-app-752826ef.git", + "svn_url": "https://github.com/direwolf-github/my-app-752826ef", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "direwolf-github:master", + "ref": "master", + "sha": "18395ef48a32eec03d7631dd1750aa3d81fd1fa2", + "user": { + "login": "direwolf-github", + "id": 10810283, + "node_id": "MDQ6VXNlcjEwODEwMjgz", + "avatar_url": "https://avatars0.githubusercontent.com/u/10810283?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/direwolf-github", + "html_url": "https://github.com/direwolf-github", + "followers_url": "https://api.github.com/users/direwolf-github/followers", + "following_url": "https://api.github.com/users/direwolf-github/following{/other_user}", + "gists_url": "https://api.github.com/users/direwolf-github/gists{/gist_id}", + "starred_url": "https://api.github.com/users/direwolf-github/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/direwolf-github/subscriptions", + "organizations_url": "https://api.github.com/users/direwolf-github/orgs", + "repos_url": "https://api.github.com/users/direwolf-github/repos", + "events_url": "https://api.github.com/users/direwolf-github/events{/privacy}", + "received_events_url": "https://api.github.com/users/direwolf-github/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 216672326, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTY2NzIzMjY=", + "name": "my-app-752826ef", + "full_name": "direwolf-github/my-app-752826ef", + "private": false, + "owner": { + "login": "direwolf-github", + "id": 10810283, + "node_id": "MDQ6VXNlcjEwODEwMjgz", + "avatar_url": "https://avatars0.githubusercontent.com/u/10810283?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/direwolf-github", + "html_url": "https://github.com/direwolf-github", + "followers_url": "https://api.github.com/users/direwolf-github/followers", + "following_url": "https://api.github.com/users/direwolf-github/following{/other_user}", + "gists_url": "https://api.github.com/users/direwolf-github/gists{/gist_id}", + "starred_url": "https://api.github.com/users/direwolf-github/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/direwolf-github/subscriptions", + "organizations_url": "https://api.github.com/users/direwolf-github/orgs", + "repos_url": "https://api.github.com/users/direwolf-github/repos", + "events_url": "https://api.github.com/users/direwolf-github/events{/privacy}", + "received_events_url": "https://api.github.com/users/direwolf-github/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/direwolf-github/my-app-752826ef", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/direwolf-github/my-app-752826ef", + "forks_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/forks", + "keys_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/teams", + "hooks_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/hooks", + "issue_events_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/issues/events{/number}", + "events_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/events", + "assignees_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/assignees{/user}", + "branches_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/branches{/branch}", + "tags_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/tags", + "blobs_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/statuses/{sha}", + "languages_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/languages", + "stargazers_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/stargazers", + "contributors_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/contributors", + "subscribers_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/subscribers", + "subscription_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/subscription", + "commits_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/contents/{+path}", + "compare_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/merges", + "archive_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/downloads", + "issues_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/issues{/number}", + "pulls_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/pulls{/number}", + "milestones_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/milestones{/number}", + "notifications_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/labels{/name}", + "releases_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/releases{/id}", + "deployments_url": "https://api.github.com/repos/direwolf-github/my-app-752826ef/deployments", + "created_at": "2019-10-21T21:54:44Z", + "updated_at": "2019-10-21T21:54:47Z", + "pushed_at": "2019-10-21T21:54:50Z", + "git_url": "git://github.com/direwolf-github/my-app-752826ef.git", + "ssh_url": "git@github.com:direwolf-github/my-app-752826ef.git", + "clone_url": "https://github.com/direwolf-github/my-app-752826ef.git", + "svn_url": "https://github.com/direwolf-github/my-app-752826ef", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/direwolf-github/my-app-752826ef/pulls/1" + }, + "html": { + "href": "https://github.com/direwolf-github/my-app-752826ef/pull/1" + }, + "issue": { + "href": "https://api.github.com/repos/direwolf-github/my-app-752826ef/issues/1" + }, + "comments": { + "href": "https://api.github.com/repos/direwolf-github/my-app-752826ef/issues/1/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/direwolf-github/my-app-752826ef/pulls/1/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/direwolf-github/my-app-752826ef/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/direwolf-github/my-app-752826ef/pulls/1/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/direwolf-github/my-app-752826ef/statuses/a3c6c818cf13f328cdb74b9a37baa9186f215131" + } + }, + "author_association": "OWNER", + "merged": false, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 1, + "deletions": 0, + "changed_files": 1 + } + }, + "public": true, + "created_at": "2019-10-21T21:54:51Z" + }, + { + "id": "10680625241", + "type": "PushEvent", + "actor": { + "id": 9728851, + "login": "adferrand", + "display_login": "adferrand", + "gravatar_id": "", + "url": "https://api.github.com/users/adferrand", + "avatar_url": "https://avatars.githubusercontent.com/u/9728851?" + }, + "repo": { + "id": 144460400, + "name": "adferrand/certbot", + "url": "https://api.github.com/repos/adferrand/certbot" + }, + "payload": { + "push_id": 4176855009, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/centos6-migrate-python36", + "head": "84646a918ee0684e5167a586ec3155f79f6bfe1f", + "before": "5d422eb82c2cf92a04e54fcfd3dcd441bceac5e0", + "commits": [ + { + "sha": "84646a918ee0684e5167a586ec3155f79f6bfe1f", + "author": { + "email": "ferrand.ad@gmail.com", + "name": "Adrien Ferrand" + }, + "message": "Fix test message", + "distinct": true, + "url": "https://api.github.com/repos/adferrand/certbot/commits/84646a918ee0684e5167a586ec3155f79f6bfe1f" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:50Z" + }, + { + "id": "10680625233", + "type": "IssuesEvent", + "actor": { + "id": 37864982, + "login": "iamthannos", + "display_login": "iamthannos", + "gravatar_id": "", + "url": "https://api.github.com/users/iamthannos", + "avatar_url": "https://avatars.githubusercontent.com/u/37864982?" + }, + "repo": { + "id": 149494920, + "name": "Scaleskope-Ind/Org_Apic_Auto_Repo", + "url": "https://api.github.com/repos/Scaleskope-Ind/Org_Apic_Auto_Repo" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/Scaleskope-Ind/Org_Apic_Auto_Repo/issues/490", + "repository_url": "https://api.github.com/repos/Scaleskope-Ind/Org_Apic_Auto_Repo", + "labels_url": "https://api.github.com/repos/Scaleskope-Ind/Org_Apic_Auto_Repo/issues/490/labels{/name}", + "comments_url": "https://api.github.com/repos/Scaleskope-Ind/Org_Apic_Auto_Repo/issues/490/comments", + "events_url": "https://api.github.com/repos/Scaleskope-Ind/Org_Apic_Auto_Repo/issues/490/events", + "html_url": "https://github.com/Scaleskope-Ind/Org_Apic_Auto_Repo/issues/490", + "id": 510315285, + "node_id": "MDU6SXNzdWU1MTAzMTUyODU=", + "number": 490, + "title": "Found a bug - 1571694889", + "user": { + "login": "iamthannos", + "id": 37864982, + "node_id": "MDQ6VXNlcjM3ODY0OTgy", + "avatar_url": "https://avatars1.githubusercontent.com/u/37864982?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/iamthannos", + "html_url": "https://github.com/iamthannos", + "followers_url": "https://api.github.com/users/iamthannos/followers", + "following_url": "https://api.github.com/users/iamthannos/following{/other_user}", + "gists_url": "https://api.github.com/users/iamthannos/gists{/gist_id}", + "starred_url": "https://api.github.com/users/iamthannos/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/iamthannos/subscriptions", + "organizations_url": "https://api.github.com/users/iamthannos/orgs", + "repos_url": "https://api.github.com/users/iamthannos/repos", + "events_url": "https://api.github.com/users/iamthannos/events{/privacy}", + "received_events_url": "https://api.github.com/users/iamthannos/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-10-21T21:54:50Z", + "updated_at": "2019-10-21T21:54:50Z", + "closed_at": null, + "author_association": "CONTRIBUTOR", + "body": "I'm having a problem with this." + } + }, + "public": true, + "created_at": "2019-10-21T21:54:50Z", + "org": { + "id": 37864994, + "login": "Scaleskope-Ind", + "gravatar_id": "", + "url": "https://api.github.com/orgs/Scaleskope-Ind", + "avatar_url": "https://avatars.githubusercontent.com/u/37864994?" + } + }, + { + "id": "10680625236", + "type": "IssuesEvent", + "actor": { + "id": 6785733, + "login": "Arametheus", + "display_login": "Arametheus", + "gravatar_id": "", + "url": "https://api.github.com/users/Arametheus", + "avatar_url": "https://avatars.githubusercontent.com/u/6785733?" + }, + "repo": { + "id": 211002651, + "name": "ahmedsaoud31/laravel-permission-to-vuejs", + "url": "https://api.github.com/repos/ahmedsaoud31/laravel-permission-to-vuejs" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/ahmedsaoud31/laravel-permission-to-vuejs/issues/1", + "repository_url": "https://api.github.com/repos/ahmedsaoud31/laravel-permission-to-vuejs", + "labels_url": "https://api.github.com/repos/ahmedsaoud31/laravel-permission-to-vuejs/issues/1/labels{/name}", + "comments_url": "https://api.github.com/repos/ahmedsaoud31/laravel-permission-to-vuejs/issues/1/comments", + "events_url": "https://api.github.com/repos/ahmedsaoud31/laravel-permission-to-vuejs/issues/1/events", + "html_url": "https://github.com/ahmedsaoud31/laravel-permission-to-vuejs/issues/1", + "id": 510315288, + "node_id": "MDU6SXNzdWU1MTAzMTUyODg=", + "number": 1, + "title": "can you update this for \"spatie/laravel-permission\": \"^3.2\"", + "user": { + "login": "Arametheus", + "id": 6785733, + "node_id": "MDQ6VXNlcjY3ODU3MzM=", + "avatar_url": "https://avatars1.githubusercontent.com/u/6785733?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Arametheus", + "html_url": "https://github.com/Arametheus", + "followers_url": "https://api.github.com/users/Arametheus/followers", + "following_url": "https://api.github.com/users/Arametheus/following{/other_user}", + "gists_url": "https://api.github.com/users/Arametheus/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Arametheus/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Arametheus/subscriptions", + "organizations_url": "https://api.github.com/users/Arametheus/orgs", + "repos_url": "https://api.github.com/users/Arametheus/repos", + "events_url": "https://api.github.com/users/Arametheus/events{/privacy}", + "received_events_url": "https://api.github.com/users/Arametheus/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-10-21T21:54:50Z", + "updated_at": "2019-10-21T21:54:50Z", + "closed_at": null, + "author_association": "NONE", + "body": "so I have the newest laravel-permission but yours is erroring \r\nProblem 1\r\n - Can only install one of: spatie/laravel-permission[v2.x-dev, 3.2.0].\r\n - Can only install one of: spatie/laravel-permission[v2.x-dev, 3.2.0].\r\n - Can only install one of: spatie/laravel-permission[v2.x-dev, 3.2.0].\r\n - ahmedsaoud31/laravel-permission-to-vuejs dev-master requires spatie/laravel-permission ^2.0 -> satisfiable by spatie/laravel-permission[v2.x-dev].\r\n - Installation request for ahmedsaoud31/laravel-permission-to-vuejs dev-master -> satisfiable by ahmedsaoud31/laravel-permission-to-vuejs[dev-master].\r\n - Installation request for spatie/laravel-permission ^3.2 -> satisfiable by spatie/laravel-permission[3.2.0].\r\n\r\nThank you" + } + }, + "public": true, + "created_at": "2019-10-21T21:54:50Z" + }, + { + "id": "10680625237", + "type": "CreateEvent", + "actor": { + "id": 49699333, + "login": "dependabot[bot]", + "display_login": "dependabot", + "gravatar_id": "", + "url": "https://api.github.com/users/dependabot[bot]", + "avatar_url": "https://avatars.githubusercontent.com/u/49699333?" + }, + "repo": { + "id": 209932221, + "name": "liuzhuzhu/lzz-gulimall", + "url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall" + }, + "payload": { + "ref": "dependabot/maven/gulimall-admin/commons-fileupload-commons-fileupload-1.3.3", + "ref_type": "branch", + "master_branch": "master", + "description": "第四次 不再是一个maven工程", + "pusher_type": "user" + }, + "public": true, + "created_at": "2019-10-21T21:54:50Z" + }, + { + "id": "10680625234", + "type": "PushEvent", + "actor": { + "id": 38665693, + "login": "enricobuehler", + "display_login": "enricobuehler", + "gravatar_id": "", + "url": "https://api.github.com/users/enricobuehler", + "avatar_url": "https://avatars.githubusercontent.com/u/38665693?" + }, + "repo": { + "id": 215888316, + "name": "Schriftlage/onlyyou", + "url": "https://api.github.com/repos/Schriftlage/onlyyou" + }, + "payload": { + "push_id": 4176855005, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/next", + "head": "0a47924a50ba3b06f9e3acd968887fa7b5286200", + "before": "605c32247bfa9e97de3809230e1e574b25e542ba", + "commits": [ + { + "sha": "0a47924a50ba3b06f9e3acd968887fa7b5286200", + "author": { + "email": "privat@enricobuehler.de", + "name": "Enrico Bühler" + }, + "message": "0.2.5b", + "distinct": true, + "url": "https://api.github.com/repos/Schriftlage/onlyyou/commits/0a47924a50ba3b06f9e3acd968887fa7b5286200" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:50Z", + "org": { + "id": 46821218, + "login": "Schriftlage", + "gravatar_id": "", + "url": "https://api.github.com/orgs/Schriftlage", + "avatar_url": "https://avatars.githubusercontent.com/u/46821218?" + } + }, + { + "id": "10680625229", + "type": "PushEvent", + "actor": { + "id": 55193487, + "login": "shaunmcpherson", + "display_login": "shaunmcpherson", + "gravatar_id": "", + "url": "https://api.github.com/users/shaunmcpherson", + "avatar_url": "https://avatars.githubusercontent.com/u/55193487?" + }, + "repo": { + "id": 216647551, + "name": "shaunmcpherson/button-styles", + "url": "https://api.github.com/repos/shaunmcpherson/button-styles" + }, + "payload": { + "push_id": 4176855001, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/gh-pages", + "head": "bfbc4994d4dd2f7a40e7eea472b950c995a3195f", + "before": "a4ba2506f11456fefed3d2eddf94ff5f28a41b5c", + "commits": [ + { + "sha": "bfbc4994d4dd2f7a40e7eea472b950c995a3195f", + "author": { + "email": "shaunmcpherson@Shauns-MacBook-Pro.local", + "name": "Shaun" + }, + "message": "Change the ghost button line height", + "distinct": true, + "url": "https://api.github.com/repos/shaunmcpherson/button-styles/commits/bfbc4994d4dd2f7a40e7eea472b950c995a3195f" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:50Z" + }, + { + "id": "10680625226", + "type": "PushEvent", + "actor": { + "id": 18013175, + "login": "Quiqui64", + "display_login": "Quiqui64", + "gravatar_id": "", + "url": "https://api.github.com/users/Quiqui64", + "avatar_url": "https://avatars.githubusercontent.com/u/18013175?" + }, + "repo": { + "id": 216669904, + "name": "Quiqui64/HubitatFanRemote", + "url": "https://api.github.com/repos/Quiqui64/HubitatFanRemote" + }, + "payload": { + "push_id": 4176854995, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "dde922c2123a85ff1ff593fdb2c5e235d1a26a77", + "before": "92c78290f141c614d27c4b5d2ad3041ceb6b360c", + "commits": [ + { + "sha": "dde922c2123a85ff1ff593fdb2c5e235d1a26a77", + "author": { + "email": "vq1qa@hotmail.com", + "name": "Quiqui64" + }, + "message": "Update README.md", + "distinct": true, + "url": "https://api.github.com/repos/Quiqui64/HubitatFanRemote/commits/dde922c2123a85ff1ff593fdb2c5e235d1a26a77" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:50Z" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/__files/events-d66da82e-6a4f-496f-824c-53e4db13d18a.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/__files/events-d66da82e-6a4f-496f-824c-53e4db13d18a.json new file mode 100644 index 0000000000..495204b57d --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/__files/events-d66da82e-6a4f-496f-824c-53e4db13d18a.json @@ -0,0 +1,2885 @@ +[ + { + "id": "10680625419", + "type": "PullRequestReviewCommentEvent", + "actor": { + "id": 1087183, + "login": "rjschwei", + "display_login": "rjschwei", + "gravatar_id": "", + "url": "https://api.github.com/users/rjschwei", + "avatar_url": "https://avatars.githubusercontent.com/u/1087183?" + }, + "repo": { + "id": 4576639, + "name": "Azure/WALinuxAgent", + "url": "https://api.github.com/repos/Azure/WALinuxAgent" + }, + "payload": { + "action": "created", + "comment": { + "url": "https://api.github.com/repos/Azure/WALinuxAgent/pulls/comments/337257898", + "pull_request_review_id": 304870310, + "id": 337257898, + "node_id": "MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDMzNzI1Nzg5OA==", + "diff_hunk": "@@ -16,19 +16,24 @@\n #\n \n import azurelinuxagent.common.conf as conf\n-\n+from azurelinuxagent.common import logger\n from azurelinuxagent.common.version import DISTRO_NAME, DISTRO_VERSION, \\\n DISTRO_FULL_NAME\n \n from .default import ProvisionHandler\n-from .cloudinit import CloudInitProvisionHandler\n+from .cloudinit import CloudInitProvisionHandler, cloud_init_is_enabled\n \n-def get_provision_handler(distro_name=DISTRO_NAME, \n+def get_provision_handler(distro_name=DISTRO_NAME,\n distro_version=DISTRO_VERSION,\n distro_full_name=DISTRO_FULL_NAME):\n \n- if conf.get_provision_cloudinit():\n+ provisioning_agent = conf.get_provisioning_agent()\n+\n+ if provisioning_agent == 'cloud-init' or (\n+ provisioning_agent == 'auto' and\n+ cloud_init_is_enabled()):\n+ logger.info('Using cloud-init for provisioning')", + "path": "azurelinuxagent/pa/provision/factory.py", + "position": 24, + "original_position": 24, + "commit_id": "1ae3debf2e6b42599f27904a19678afe56ecf72f", + "original_commit_id": "1ae3debf2e6b42599f27904a19678afe56ecf72f", + "user": { + "login": "rjschwei", + "id": 1087183, + "node_id": "MDQ6VXNlcjEwODcxODM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1087183?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rjschwei", + "html_url": "https://github.com/rjschwei", + "followers_url": "https://api.github.com/users/rjschwei/followers", + "following_url": "https://api.github.com/users/rjschwei/following{/other_user}", + "gists_url": "https://api.github.com/users/rjschwei/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rjschwei/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rjschwei/subscriptions", + "organizations_url": "https://api.github.com/users/rjschwei/orgs", + "repos_url": "https://api.github.com/users/rjschwei/repos", + "events_url": "https://api.github.com/users/rjschwei/events{/privacy}", + "received_events_url": "https://api.github.com/users/rjschwei/received_events", + "type": "User", + "site_admin": false + }, + "body": "I don't think this is sufficient for testing, but I may be missing a detail about how we get here. Let's say the image is built with `auto`. When the instance is running the user goes and fiddles and sets the configuration to `cloud-init` or `waagent` and then reboots. Bang!\r\n\r\nSince neither tool knows about the the others cached data the instance is going to be provisioned from scratch, i.e. new ssh keys, hostname, etc. From my perspective, albeit the user did something they shouldn't have, this will lead to a support call.\r\n\r\nI think somewhere along the line we need to cache the configuration and then complain when it changes on an instance that gets rebooted. This could be handled by writing some data to `/var/run/azure` and both the agent and the Azure cloud-init data source check that location. Both complain respectively if the instance on boot is not in the expected state.", + "created_at": "2019-10-21T21:54:39Z", + "updated_at": "2019-10-21T21:54:52Z", + "html_url": "https://github.com/Azure/WALinuxAgent/pull/1633#discussion_r337257898", + "pull_request_url": "https://api.github.com/repos/Azure/WALinuxAgent/pulls/1633", + "author_association": "CONTRIBUTOR", + "_links": { + "self": { + "href": "https://api.github.com/repos/Azure/WALinuxAgent/pulls/comments/337257898" + }, + "html": { + "href": "https://github.com/Azure/WALinuxAgent/pull/1633#discussion_r337257898" + }, + "pull_request": { + "href": "https://api.github.com/repos/Azure/WALinuxAgent/pulls/1633" + } + } + }, + "pull_request": { + "url": "https://api.github.com/repos/Azure/WALinuxAgent/pulls/1633", + "id": 317370287, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE3MzcwMjg3", + "html_url": "https://github.com/Azure/WALinuxAgent/pull/1633", + "diff_url": "https://github.com/Azure/WALinuxAgent/pull/1633.diff", + "patch_url": "https://github.com/Azure/WALinuxAgent/pull/1633.patch", + "issue_url": "https://api.github.com/repos/Azure/WALinuxAgent/issues/1633", + "number": 1633, + "state": "open", + "locked": false, + "title": "(WIP) Add cloud-init auto-detect to prevent multiple provisioning mechanisms from relying on configuration for coordination", + "user": { + "login": "trstringer", + "id": 1445483, + "node_id": "MDQ6VXNlcjE0NDU0ODM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1445483?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/trstringer", + "html_url": "https://github.com/trstringer", + "followers_url": "https://api.github.com/users/trstringer/followers", + "following_url": "https://api.github.com/users/trstringer/following{/other_user}", + "gists_url": "https://api.github.com/users/trstringer/gists{/gist_id}", + "starred_url": "https://api.github.com/users/trstringer/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/trstringer/subscriptions", + "organizations_url": "https://api.github.com/users/trstringer/orgs", + "repos_url": "https://api.github.com/users/trstringer/repos", + "events_url": "https://api.github.com/users/trstringer/events{/privacy}", + "received_events_url": "https://api.github.com/users/trstringer/received_events", + "type": "User", + "site_admin": false + }, + "body": "\r\n\r\n## Description\r\n\r\nCurrently waagent relies on explicit configuration (`Provisioning.UseCloudInit` to be set, and `Provisioning.Enabled` to be falsy). This can pose an interesting problem with the introduction of cloud-init. When waagent and cloud-init live side-by-side, they will contend with each other to be the provisioning agent. Image maintainers need to explicitly set configuration (above) so that waagent allows cloud-init to be the provisioning agent. With maintainers possibly not knowing about this behavior, they could unknowing cause provisioning issues.\r\n\r\nThis PR changes that behavior by deprecating `Provisioning.UseCloudInit` and `Provisioning.Enabled` configuration options and introduces a new configuration setting: `Provisioning.Agent`. The following values change the behavior of which provisioning agent to use:\r\n\r\n* `auto` (default) - Allow waagent to autodetect to see if cloud-init is enabled. If so, use cloud-init as the provisioning agent. If not, use waagent as the provisioning agent.\r\n* `waagent` - Force waagent as the provisioning agent.\r\n* `cloud-init` - Force cloud-init as the provisioning agent.\r\n* `disabled` - Disable all provisioning.\r\n\r\n---\r\n\r\n### PR information\r\n- [x] The title of the PR is clear and informative.\r\n- [x] There are a small number of commits, each of which has an informative message. This means that previously merged commits do not appear in the history of the PR. For information on cleaning up the commits in your pull request, [see this page](https://github.com/Azure/azure-powershell/blob/master/documentation/development-docs/cleaning-up-commits.md).\r\n- [x] Except for special cases involving multiple contributors, the PR is started from a fork of the main repository, not a branch.\r\n- [x] If applicable, the PR references the bug/issue that it fixes in the description.\r\n- [x] New Unit tests were added for the changes made and Travis.CI is passing.\r\n\r\n### Quality of Code and Contribution Guidelines\r\n- [x] I have read the [contribution guidelines](https://github.com/Azure/WALinuxAgent/blob/master/.github/CONTRIBUTING.md).\r\n\r\n\r\n---\r\nThis change is [\"Reviewable\"/](https://reviewable.io/reviews/azure/walinuxagent/1633)\r\n\r\n", + "created_at": "2019-09-13T15:12:48Z", + "updated_at": "2019-10-21T21:54:52Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "852e70f8c59683d542af3a31f1b1368183471e51", + "assignee": { + "login": "jasonzio", + "id": 8397537, + "node_id": "MDQ6VXNlcjgzOTc1Mzc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/8397537?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jasonzio", + "html_url": "https://github.com/jasonzio", + "followers_url": "https://api.github.com/users/jasonzio/followers", + "following_url": "https://api.github.com/users/jasonzio/following{/other_user}", + "gists_url": "https://api.github.com/users/jasonzio/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jasonzio/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jasonzio/subscriptions", + "organizations_url": "https://api.github.com/users/jasonzio/orgs", + "repos_url": "https://api.github.com/users/jasonzio/repos", + "events_url": "https://api.github.com/users/jasonzio/events{/privacy}", + "received_events_url": "https://api.github.com/users/jasonzio/received_events", + "type": "User", + "site_admin": false + }, + "assignees": [ + { + "login": "jasonzio", + "id": 8397537, + "node_id": "MDQ6VXNlcjgzOTc1Mzc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/8397537?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jasonzio", + "html_url": "https://github.com/jasonzio", + "followers_url": "https://api.github.com/users/jasonzio/followers", + "following_url": "https://api.github.com/users/jasonzio/following{/other_user}", + "gists_url": "https://api.github.com/users/jasonzio/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jasonzio/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jasonzio/subscriptions", + "organizations_url": "https://api.github.com/users/jasonzio/orgs", + "repos_url": "https://api.github.com/users/jasonzio/repos", + "events_url": "https://api.github.com/users/jasonzio/events{/privacy}", + "received_events_url": "https://api.github.com/users/jasonzio/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_reviewers": [ + { + "login": "vrdmr", + "id": 1047040, + "node_id": "MDQ6VXNlcjEwNDcwNDA=", + "avatar_url": "https://avatars0.githubusercontent.com/u/1047040?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vrdmr", + "html_url": "https://github.com/vrdmr", + "followers_url": "https://api.github.com/users/vrdmr/followers", + "following_url": "https://api.github.com/users/vrdmr/following{/other_user}", + "gists_url": "https://api.github.com/users/vrdmr/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vrdmr/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vrdmr/subscriptions", + "organizations_url": "https://api.github.com/users/vrdmr/orgs", + "repos_url": "https://api.github.com/users/vrdmr/repos", + "events_url": "https://api.github.com/users/vrdmr/events{/privacy}", + "received_events_url": "https://api.github.com/users/vrdmr/received_events", + "type": "User", + "site_admin": false + }, + { + "login": "pgombar", + "id": 9109950, + "node_id": "MDQ6VXNlcjkxMDk5NTA=", + "avatar_url": "https://avatars3.githubusercontent.com/u/9109950?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/pgombar", + "html_url": "https://github.com/pgombar", + "followers_url": "https://api.github.com/users/pgombar/followers", + "following_url": "https://api.github.com/users/pgombar/following{/other_user}", + "gists_url": "https://api.github.com/users/pgombar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/pgombar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/pgombar/subscriptions", + "organizations_url": "https://api.github.com/users/pgombar/orgs", + "repos_url": "https://api.github.com/users/pgombar/repos", + "events_url": "https://api.github.com/users/pgombar/events{/privacy}", + "received_events_url": "https://api.github.com/users/pgombar/received_events", + "type": "User", + "site_admin": false + }, + { + "login": "larohra", + "id": 41490930, + "node_id": "MDQ6VXNlcjQxNDkwOTMw", + "avatar_url": "https://avatars3.githubusercontent.com/u/41490930?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/larohra", + "html_url": "https://github.com/larohra", + "followers_url": "https://api.github.com/users/larohra/followers", + "following_url": "https://api.github.com/users/larohra/following{/other_user}", + "gists_url": "https://api.github.com/users/larohra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/larohra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/larohra/subscriptions", + "organizations_url": "https://api.github.com/users/larohra/orgs", + "repos_url": "https://api.github.com/users/larohra/repos", + "events_url": "https://api.github.com/users/larohra/events{/privacy}", + "received_events_url": "https://api.github.com/users/larohra/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/Azure/WALinuxAgent/pulls/1633/commits", + "review_comments_url": "https://api.github.com/repos/Azure/WALinuxAgent/pulls/1633/comments", + "review_comment_url": "https://api.github.com/repos/Azure/WALinuxAgent/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/Azure/WALinuxAgent/issues/1633/comments", + "statuses_url": "https://api.github.com/repos/Azure/WALinuxAgent/statuses/1ae3debf2e6b42599f27904a19678afe56ecf72f", + "head": { + "label": "trstringer:thstring/cloudinit-autodetect2", + "ref": "thstring/cloudinit-autodetect2", + "sha": "1ae3debf2e6b42599f27904a19678afe56ecf72f", + "user": { + "login": "trstringer", + "id": 1445483, + "node_id": "MDQ6VXNlcjE0NDU0ODM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1445483?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/trstringer", + "html_url": "https://github.com/trstringer", + "followers_url": "https://api.github.com/users/trstringer/followers", + "following_url": "https://api.github.com/users/trstringer/following{/other_user}", + "gists_url": "https://api.github.com/users/trstringer/gists{/gist_id}", + "starred_url": "https://api.github.com/users/trstringer/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/trstringer/subscriptions", + "organizations_url": "https://api.github.com/users/trstringer/orgs", + "repos_url": "https://api.github.com/users/trstringer/repos", + "events_url": "https://api.github.com/users/trstringer/events{/privacy}", + "received_events_url": "https://api.github.com/users/trstringer/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 197623509, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTc2MjM1MDk=", + "name": "WALinuxAgent", + "full_name": "trstringer/WALinuxAgent", + "private": false, + "owner": { + "login": "trstringer", + "id": 1445483, + "node_id": "MDQ6VXNlcjE0NDU0ODM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1445483?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/trstringer", + "html_url": "https://github.com/trstringer", + "followers_url": "https://api.github.com/users/trstringer/followers", + "following_url": "https://api.github.com/users/trstringer/following{/other_user}", + "gists_url": "https://api.github.com/users/trstringer/gists{/gist_id}", + "starred_url": "https://api.github.com/users/trstringer/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/trstringer/subscriptions", + "organizations_url": "https://api.github.com/users/trstringer/orgs", + "repos_url": "https://api.github.com/users/trstringer/repos", + "events_url": "https://api.github.com/users/trstringer/events{/privacy}", + "received_events_url": "https://api.github.com/users/trstringer/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/trstringer/WALinuxAgent", + "description": "Microsoft Azure Linux Guest Agent ", + "fork": true, + "url": "https://api.github.com/repos/trstringer/WALinuxAgent", + "forks_url": "https://api.github.com/repos/trstringer/WALinuxAgent/forks", + "keys_url": "https://api.github.com/repos/trstringer/WALinuxAgent/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/trstringer/WALinuxAgent/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/trstringer/WALinuxAgent/teams", + "hooks_url": "https://api.github.com/repos/trstringer/WALinuxAgent/hooks", + "issue_events_url": "https://api.github.com/repos/trstringer/WALinuxAgent/issues/events{/number}", + "events_url": "https://api.github.com/repos/trstringer/WALinuxAgent/events", + "assignees_url": "https://api.github.com/repos/trstringer/WALinuxAgent/assignees{/user}", + "branches_url": "https://api.github.com/repos/trstringer/WALinuxAgent/branches{/branch}", + "tags_url": "https://api.github.com/repos/trstringer/WALinuxAgent/tags", + "blobs_url": "https://api.github.com/repos/trstringer/WALinuxAgent/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/trstringer/WALinuxAgent/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/trstringer/WALinuxAgent/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/trstringer/WALinuxAgent/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/trstringer/WALinuxAgent/statuses/{sha}", + "languages_url": "https://api.github.com/repos/trstringer/WALinuxAgent/languages", + "stargazers_url": "https://api.github.com/repos/trstringer/WALinuxAgent/stargazers", + "contributors_url": "https://api.github.com/repos/trstringer/WALinuxAgent/contributors", + "subscribers_url": "https://api.github.com/repos/trstringer/WALinuxAgent/subscribers", + "subscription_url": "https://api.github.com/repos/trstringer/WALinuxAgent/subscription", + "commits_url": "https://api.github.com/repos/trstringer/WALinuxAgent/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/trstringer/WALinuxAgent/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/trstringer/WALinuxAgent/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/trstringer/WALinuxAgent/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/trstringer/WALinuxAgent/contents/{+path}", + "compare_url": "https://api.github.com/repos/trstringer/WALinuxAgent/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/trstringer/WALinuxAgent/merges", + "archive_url": "https://api.github.com/repos/trstringer/WALinuxAgent/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/trstringer/WALinuxAgent/downloads", + "issues_url": "https://api.github.com/repos/trstringer/WALinuxAgent/issues{/number}", + "pulls_url": "https://api.github.com/repos/trstringer/WALinuxAgent/pulls{/number}", + "milestones_url": "https://api.github.com/repos/trstringer/WALinuxAgent/milestones{/number}", + "notifications_url": "https://api.github.com/repos/trstringer/WALinuxAgent/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/trstringer/WALinuxAgent/labels{/name}", + "releases_url": "https://api.github.com/repos/trstringer/WALinuxAgent/releases{/id}", + "deployments_url": "https://api.github.com/repos/trstringer/WALinuxAgent/deployments", + "created_at": "2019-07-18T16:40:43Z", + "updated_at": "2019-07-18T16:40:47Z", + "pushed_at": "2019-10-10T22:16:42Z", + "git_url": "git://github.com/trstringer/WALinuxAgent.git", + "ssh_url": "git@github.com:trstringer/WALinuxAgent.git", + "clone_url": "https://github.com/trstringer/WALinuxAgent.git", + "svn_url": "https://github.com/trstringer/WALinuxAgent", + "homepage": "http://azure.microsoft.com/", + "size": 18543, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Python", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "develop" + } + }, + "base": { + "label": "Azure:develop", + "ref": "develop", + "sha": "96877940e3f773b64eea6624c1ff427043d1492f", + "user": { + "login": "Azure", + "id": 6844498, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjY4NDQ0OTg=", + "avatar_url": "https://avatars0.githubusercontent.com/u/6844498?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Azure", + "html_url": "https://github.com/Azure", + "followers_url": "https://api.github.com/users/Azure/followers", + "following_url": "https://api.github.com/users/Azure/following{/other_user}", + "gists_url": "https://api.github.com/users/Azure/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Azure/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Azure/subscriptions", + "organizations_url": "https://api.github.com/users/Azure/orgs", + "repos_url": "https://api.github.com/users/Azure/repos", + "events_url": "https://api.github.com/users/Azure/events{/privacy}", + "received_events_url": "https://api.github.com/users/Azure/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 4576639, + "node_id": "MDEwOlJlcG9zaXRvcnk0NTc2NjM5", + "name": "WALinuxAgent", + "full_name": "Azure/WALinuxAgent", + "private": false, + "owner": { + "login": "Azure", + "id": 6844498, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjY4NDQ0OTg=", + "avatar_url": "https://avatars0.githubusercontent.com/u/6844498?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Azure", + "html_url": "https://github.com/Azure", + "followers_url": "https://api.github.com/users/Azure/followers", + "following_url": "https://api.github.com/users/Azure/following{/other_user}", + "gists_url": "https://api.github.com/users/Azure/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Azure/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Azure/subscriptions", + "organizations_url": "https://api.github.com/users/Azure/orgs", + "repos_url": "https://api.github.com/users/Azure/repos", + "events_url": "https://api.github.com/users/Azure/events{/privacy}", + "received_events_url": "https://api.github.com/users/Azure/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/Azure/WALinuxAgent", + "description": "Microsoft Azure Linux Guest Agent ", + "fork": false, + "url": "https://api.github.com/repos/Azure/WALinuxAgent", + "forks_url": "https://api.github.com/repos/Azure/WALinuxAgent/forks", + "keys_url": "https://api.github.com/repos/Azure/WALinuxAgent/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Azure/WALinuxAgent/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Azure/WALinuxAgent/teams", + "hooks_url": "https://api.github.com/repos/Azure/WALinuxAgent/hooks", + "issue_events_url": "https://api.github.com/repos/Azure/WALinuxAgent/issues/events{/number}", + "events_url": "https://api.github.com/repos/Azure/WALinuxAgent/events", + "assignees_url": "https://api.github.com/repos/Azure/WALinuxAgent/assignees{/user}", + "branches_url": "https://api.github.com/repos/Azure/WALinuxAgent/branches{/branch}", + "tags_url": "https://api.github.com/repos/Azure/WALinuxAgent/tags", + "blobs_url": "https://api.github.com/repos/Azure/WALinuxAgent/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Azure/WALinuxAgent/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Azure/WALinuxAgent/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Azure/WALinuxAgent/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Azure/WALinuxAgent/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Azure/WALinuxAgent/languages", + "stargazers_url": "https://api.github.com/repos/Azure/WALinuxAgent/stargazers", + "contributors_url": "https://api.github.com/repos/Azure/WALinuxAgent/contributors", + "subscribers_url": "https://api.github.com/repos/Azure/WALinuxAgent/subscribers", + "subscription_url": "https://api.github.com/repos/Azure/WALinuxAgent/subscription", + "commits_url": "https://api.github.com/repos/Azure/WALinuxAgent/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Azure/WALinuxAgent/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Azure/WALinuxAgent/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Azure/WALinuxAgent/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Azure/WALinuxAgent/contents/{+path}", + "compare_url": "https://api.github.com/repos/Azure/WALinuxAgent/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Azure/WALinuxAgent/merges", + "archive_url": "https://api.github.com/repos/Azure/WALinuxAgent/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Azure/WALinuxAgent/downloads", + "issues_url": "https://api.github.com/repos/Azure/WALinuxAgent/issues{/number}", + "pulls_url": "https://api.github.com/repos/Azure/WALinuxAgent/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Azure/WALinuxAgent/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Azure/WALinuxAgent/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Azure/WALinuxAgent/labels{/name}", + "releases_url": "https://api.github.com/repos/Azure/WALinuxAgent/releases{/id}", + "deployments_url": "https://api.github.com/repos/Azure/WALinuxAgent/deployments", + "created_at": "2012-06-06T18:55:55Z", + "updated_at": "2019-10-21T18:26:46Z", + "pushed_at": "2019-10-21T18:20:29Z", + "git_url": "git://github.com/Azure/WALinuxAgent.git", + "ssh_url": "git@github.com:Azure/WALinuxAgent.git", + "clone_url": "https://github.com/Azure/WALinuxAgent.git", + "svn_url": "https://github.com/Azure/WALinuxAgent", + "homepage": "http://azure.microsoft.com/", + "size": 21261, + "stargazers_count": 332, + "watchers_count": 332, + "language": "Python", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 272, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 69, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 272, + "open_issues": 69, + "watchers": 332, + "default_branch": "develop" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/Azure/WALinuxAgent/pulls/1633" + }, + "html": { + "href": "https://github.com/Azure/WALinuxAgent/pull/1633" + }, + "issue": { + "href": "https://api.github.com/repos/Azure/WALinuxAgent/issues/1633" + }, + "comments": { + "href": "https://api.github.com/repos/Azure/WALinuxAgent/issues/1633/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/Azure/WALinuxAgent/pulls/1633/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/Azure/WALinuxAgent/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/Azure/WALinuxAgent/pulls/1633/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/Azure/WALinuxAgent/statuses/1ae3debf2e6b42599f27904a19678afe56ecf72f" + } + }, + "author_association": "MEMBER" + } + }, + "public": true, + "created_at": "2019-10-21T21:54:39Z", + "org": { + "id": 6844498, + "login": "Azure", + "gravatar_id": "", + "url": "https://api.github.com/orgs/Azure", + "avatar_url": "https://avatars.githubusercontent.com/u/6844498?" + } + }, + { + "id": "10680625420", + "type": "PushEvent", + "actor": { + "id": 6254886, + "login": "Bruno7kp", + "display_login": "Bruno7kp", + "gravatar_id": "", + "url": "https://api.github.com/users/Bruno7kp", + "avatar_url": "https://avatars.githubusercontent.com/u/6254886?" + }, + "repo": { + "id": 206185824, + "name": "Bruno7kp/webPythonProjetoEstudo2019_02", + "url": "https://api.github.com/repos/Bruno7kp/webPythonProjetoEstudo2019_02" + }, + "payload": { + "push_id": 4176855091, + "size": 2, + "distinct_size": 2, + "ref": "refs/heads/master", + "head": "a5d076457b88b544a7e7ca9351854fe40c2c8596", + "before": "9b6089c7a2e4483181fd96bd0ff77ffe49eac51b", + "commits": [ + { + "sha": "c4647c4b10e854fdcc158e7639195ecd91a4a912", + "author": { + "email": "bruno7kp@outlook.com", + "name": "Bruno" + }, + "message": "Models", + "distinct": true, + "url": "https://api.github.com/repos/Bruno7kp/webPythonProjetoEstudo2019_02/commits/c4647c4b10e854fdcc158e7639195ecd91a4a912" + }, + { + "sha": "a5d076457b88b544a7e7ca9351854fe40c2c8596", + "author": { + "email": "bruno7kp@outlook.com", + "name": "Bruno" + }, + "message": "Merge remote-tracking branch 'origin/master'", + "distinct": true, + "url": "https://api.github.com/repos/Bruno7kp/webPythonProjetoEstudo2019_02/commits/a5d076457b88b544a7e7ca9351854fe40c2c8596" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:52Z" + }, + { + "id": "10680625421", + "type": "DeleteEvent", + "actor": { + "id": 49699333, + "login": "dependabot[bot]", + "display_login": "dependabot", + "gravatar_id": "", + "url": "https://api.github.com/users/dependabot[bot]", + "avatar_url": "https://avatars.githubusercontent.com/u/49699333?" + }, + "repo": { + "id": 170703049, + "name": "frontend-park-mail-ru/2019_1_SleeplessNights", + "url": "https://api.github.com/repos/frontend-park-mail-ru/2019_1_SleeplessNights" + }, + "payload": { + "ref": "dependabot/npm_and_yarn/eslint-utils-1.4.3", + "ref_type": "branch", + "pusher_type": "user" + }, + "public": true, + "created_at": "2019-10-21T21:54:52Z", + "org": { + "id": 16650333, + "login": "frontend-park-mail-ru", + "gravatar_id": "", + "url": "https://api.github.com/orgs/frontend-park-mail-ru", + "avatar_url": "https://avatars.githubusercontent.com/u/16650333?" + } + }, + { + "id": "10680625414", + "type": "CreateEvent", + "actor": { + "id": 10712736, + "login": "haitamlaarabi", + "display_login": "haitamlaarabi", + "gravatar_id": "", + "url": "https://api.github.com/users/haitamlaarabi", + "avatar_url": "https://avatars.githubusercontent.com/u/10712736?" + }, + "repo": { + "id": 73118824, + "name": "LBNL-UCB-STI/beam", + "url": "https://api.github.com/repos/LBNL-UCB-STI/beam" + }, + "payload": { + "ref": "prod-speed-relocation", + "ref_type": "branch", + "master_branch": "develop", + "description": "The Framework for Modeling Behavior, Energy, Autonomy, and Mobility in Transportation Systems", + "pusher_type": "user" + }, + "public": true, + "created_at": "2019-10-21T21:54:52Z", + "org": { + "id": 26527414, + "login": "LBNL-UCB-STI", + "gravatar_id": "", + "url": "https://api.github.com/orgs/LBNL-UCB-STI", + "avatar_url": "https://avatars.githubusercontent.com/u/26527414?" + } + }, + { + "id": "10680625410", + "type": "PushEvent", + "actor": { + "id": 54544866, + "login": "jennyhil", + "display_login": "jennyhil", + "gravatar_id": "", + "url": "https://api.github.com/users/jennyhil", + "avatar_url": "https://avatars.githubusercontent.com/u/54544866?" + }, + "repo": { + "id": 215521858, + "name": "sot14/Hopverkefni-1", + "url": "https://api.github.com/repos/sot14/Hopverkefni-1" + }, + "payload": { + "push_id": 4176855087, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "230d1a6c4e090efb647ab1fb9e8fb8db91d652ab", + "before": "0dc96f40d477ffd4f9838c2ab68ea462364a6581", + "commits": [ + { + "sha": "230d1a6c4e090efb647ab1fb9e8fb8db91d652ab", + "author": { + "email": "54544866+jennyhil@users.noreply.github.com", + "name": "jennyhil" + }, + "message": "Update products.html", + "distinct": true, + "url": "https://api.github.com/repos/sot14/Hopverkefni-1/commits/230d1a6c4e090efb647ab1fb9e8fb8db91d652ab" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:52Z" + }, + { + "id": "10680625412", + "type": "CreateEvent", + "actor": { + "id": 32965009, + "login": "huskercpa2009", + "display_login": "huskercpa2009", + "gravatar_id": "", + "url": "https://api.github.com/users/huskercpa2009", + "avatar_url": "https://avatars.githubusercontent.com/u/32965009?" + }, + "repo": { + "id": 215837273, + "name": "niche1/codeTng", + "url": "https://api.github.com/repos/niche1/codeTng" + }, + "payload": { + "ref": "test.phpbranch1", + "ref_type": "branch", + "master_branch": "master", + "description": "Develop our code skills", + "pusher_type": "user" + }, + "public": true, + "created_at": "2019-10-21T21:54:52Z" + }, + { + "id": "10680625407", + "type": "PushEvent", + "actor": { + "id": 5336227, + "login": "IAmATeaPot418", + "display_login": "IAmATeaPot418", + "gravatar_id": "", + "url": "https://api.github.com/users/IAmATeaPot418", + "avatar_url": "https://avatars.githubusercontent.com/u/5336227?" + }, + "repo": { + "id": 216516318, + "name": "IAmATeaPot418/redis-py", + "url": "https://api.github.com/repos/IAmATeaPot418/redis-py" + }, + "payload": { + "push_id": 4176855085, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/patch-1", + "head": "0f407c9e2647df68724c4b989e0eb722d71f0429", + "before": "53f2a0bf45b94df2d0fdd55a6617eb17349cc620", + "commits": [ + { + "sha": "0f407c9e2647df68724c4b989e0eb722d71f0429", + "author": { + "email": "jamie.scott@uconn.edu", + "name": "jamie.scott@uconn.edu" + }, + "message": "Refactoring for conversation\n\nRefactoring per our conversation on git.", + "distinct": true, + "url": "https://api.github.com/repos/IAmATeaPot418/redis-py/commits/0f407c9e2647df68724c4b989e0eb722d71f0429" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:52Z" + }, + { + "id": "10680625404", + "type": "PushEvent", + "actor": { + "id": 1119017, + "login": "pconrad", + "display_login": "pconrad", + "gravatar_id": "", + "url": "https://api.github.com/users/pconrad", + "avatar_url": "https://avatars.githubusercontent.com/u/1119017?" + }, + "repo": { + "id": 162849163, + "name": "ucsb-cs56/ucsb-cs56.github.io", + "url": "https://api.github.com/repos/ucsb-cs56/ucsb-cs56.github.io" + }, + "payload": { + "push_id": 4176855086, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "f3e302ebb90aece032608a8e29fd36c136636a6f", + "before": "430ea4bf98dcee88235f556a2b89237552ef1be4", + "commits": [ + { + "sha": "f3e302ebb90aece032608a8e29fd36c136636a6f", + "author": { + "email": "pconrad@cs.ucsb.edu", + "name": "Phill Conrad" + }, + "message": "Update spring_boot_application_properties.md", + "distinct": true, + "url": "https://api.github.com/repos/ucsb-cs56/ucsb-cs56.github.io/commits/f3e302ebb90aece032608a8e29fd36c136636a6f" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:52Z", + "org": { + "id": 46076893, + "login": "ucsb-cs56", + "gravatar_id": "", + "url": "https://api.github.com/orgs/ucsb-cs56", + "avatar_url": "https://avatars.githubusercontent.com/u/46076893?" + } + }, + { + "id": "10680625409", + "type": "ForkEvent", + "actor": { + "id": 52728, + "login": "juster", + "display_login": "juster", + "gravatar_id": "", + "url": "https://api.github.com/users/juster", + "avatar_url": "https://avatars.githubusercontent.com/u/52728?" + }, + "repo": { + "id": 103117528, + "name": "tadashi9e/gprolog-utf8", + "url": "https://api.github.com/repos/tadashi9e/gprolog-utf8" + }, + "payload": { + "forkee": { + "id": 216672346, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTY2NzIzNDY=", + "name": "gprolog-utf8", + "full_name": "juster/gprolog-utf8", + "private": false, + "owner": { + "login": "juster", + "id": 52728, + "node_id": "MDQ6VXNlcjUyNzI4", + "avatar_url": "https://avatars0.githubusercontent.com/u/52728?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/juster", + "html_url": "https://github.com/juster", + "followers_url": "https://api.github.com/users/juster/followers", + "following_url": "https://api.github.com/users/juster/following{/other_user}", + "gists_url": "https://api.github.com/users/juster/gists{/gist_id}", + "starred_url": "https://api.github.com/users/juster/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/juster/subscriptions", + "organizations_url": "https://api.github.com/users/juster/orgs", + "repos_url": "https://api.github.com/users/juster/repos", + "events_url": "https://api.github.com/users/juster/events{/privacy}", + "received_events_url": "https://api.github.com/users/juster/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/juster/gprolog-utf8", + "description": "GNU PROLOG with utf-8 support", + "fork": true, + "url": "https://api.github.com/repos/juster/gprolog-utf8", + "forks_url": "https://api.github.com/repos/juster/gprolog-utf8/forks", + "keys_url": "https://api.github.com/repos/juster/gprolog-utf8/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/juster/gprolog-utf8/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/juster/gprolog-utf8/teams", + "hooks_url": "https://api.github.com/repos/juster/gprolog-utf8/hooks", + "issue_events_url": "https://api.github.com/repos/juster/gprolog-utf8/issues/events{/number}", + "events_url": "https://api.github.com/repos/juster/gprolog-utf8/events", + "assignees_url": "https://api.github.com/repos/juster/gprolog-utf8/assignees{/user}", + "branches_url": "https://api.github.com/repos/juster/gprolog-utf8/branches{/branch}", + "tags_url": "https://api.github.com/repos/juster/gprolog-utf8/tags", + "blobs_url": "https://api.github.com/repos/juster/gprolog-utf8/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/juster/gprolog-utf8/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/juster/gprolog-utf8/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/juster/gprolog-utf8/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/juster/gprolog-utf8/statuses/{sha}", + "languages_url": "https://api.github.com/repos/juster/gprolog-utf8/languages", + "stargazers_url": "https://api.github.com/repos/juster/gprolog-utf8/stargazers", + "contributors_url": "https://api.github.com/repos/juster/gprolog-utf8/contributors", + "subscribers_url": "https://api.github.com/repos/juster/gprolog-utf8/subscribers", + "subscription_url": "https://api.github.com/repos/juster/gprolog-utf8/subscription", + "commits_url": "https://api.github.com/repos/juster/gprolog-utf8/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/juster/gprolog-utf8/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/juster/gprolog-utf8/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/juster/gprolog-utf8/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/juster/gprolog-utf8/contents/{+path}", + "compare_url": "https://api.github.com/repos/juster/gprolog-utf8/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/juster/gprolog-utf8/merges", + "archive_url": "https://api.github.com/repos/juster/gprolog-utf8/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/juster/gprolog-utf8/downloads", + "issues_url": "https://api.github.com/repos/juster/gprolog-utf8/issues{/number}", + "pulls_url": "https://api.github.com/repos/juster/gprolog-utf8/pulls{/number}", + "milestones_url": "https://api.github.com/repos/juster/gprolog-utf8/milestones{/number}", + "notifications_url": "https://api.github.com/repos/juster/gprolog-utf8/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/juster/gprolog-utf8/labels{/name}", + "releases_url": "https://api.github.com/repos/juster/gprolog-utf8/releases{/id}", + "deployments_url": "https://api.github.com/repos/juster/gprolog-utf8/deployments", + "created_at": "2019-10-21T21:54:52Z", + "updated_at": "2017-09-25T21:47:48Z", + "pushed_at": "2017-10-28T09:18:06Z", + "git_url": "git://github.com/juster/gprolog-utf8.git", + "ssh_url": "git@github.com:juster/gprolog-utf8.git", + "clone_url": "https://github.com/juster/gprolog-utf8.git", + "svn_url": "https://github.com/juster/gprolog-utf8", + "homepage": "https://tadashi9e.github.io/gprolog-utf8/", + "size": 195218, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "public": true + } + }, + "public": true, + "created_at": "2019-10-21T21:54:52Z" + }, + { + "id": "10680625391", + "type": "PushEvent", + "actor": { + "id": 1097582, + "login": "steinnes", + "display_login": "steinnes", + "gravatar_id": "", + "url": "https://api.github.com/users/steinnes", + "avatar_url": "https://avatars.githubusercontent.com/u/1097582?" + }, + "repo": { + "id": 191759116, + "name": "steinnes/poetry", + "url": "https://api.github.com/repos/steinnes/poetry" + }, + "payload": { + "push_id": 4176855078, + "size": 178, + "distinct_size": 128, + "ref": "refs/heads/include-long-desc-content-type-in-sdist", + "head": "c3d77069b841b8420a22b41309df1fcbe34ab901", + "before": "79af8cc9101b0f984f9be6e40275d421db739abb", + "commits": [ + { + "sha": "c29174809a0570d32686fc5689b0cd93797747da", + "author": { + "email": "sebastien@eustace.io", + "name": "Sébastien Eustace" + }, + "message": "Fix transitive extra dependencies being removed when updating otehr dependency", + "distinct": false, + "url": "https://api.github.com/repos/steinnes/poetry/commits/c29174809a0570d32686fc5689b0cd93797747da" + }, + { + "sha": "55668d7668166f69b84a49782aabfa68ae462c5d", + "author": { + "email": "sebastien@eustace.io", + "name": "Sébastien Eustace" + }, + "message": "Update CHANGELOG", + "distinct": false, + "url": "https://api.github.com/repos/steinnes/poetry/commits/55668d7668166f69b84a49782aabfa68ae462c5d" + }, + { + "sha": "329b334be25fcd6af876372958633325ce9ca4ae", + "author": { + "email": "sebastien@eustace.io", + "name": "Sébastien Eustace" + }, + "message": "Merge branch 'master' into develop", + "distinct": false, + "url": "https://api.github.com/repos/steinnes/poetry/commits/329b334be25fcd6af876372958633325ce9ca4ae" + }, + { + "sha": "0ee0fe2f044526f24305c5e4aa8ce0cec194ec1d", + "author": { + "email": "sebastien@eustace.io", + "name": "Sébastien Eustace" + }, + "message": "Fix tests", + "distinct": false, + "url": "https://api.github.com/repos/steinnes/poetry/commits/0ee0fe2f044526f24305c5e4aa8ce0cec194ec1d" + }, + { + "sha": "695cade9e9a05bd56c3eab4b3eb92a328c601036", + "author": { + "email": "sebastien@eustace.io", + "name": "Sébastien Eustace" + }, + "message": "Fix tests on Windows", + "distinct": false, + "url": "https://api.github.com/repos/steinnes/poetry/commits/695cade9e9a05bd56c3eab4b3eb92a328c601036" + }, + { + "sha": "832e8fea6d85c35a645cf4b0d37e0f1c3216c280", + "author": { + "email": "sebastien@eustace.io", + "name": "Sébastien Eustace" + }, + "message": "Merge branch 'master' into develop", + "distinct": false, + "url": "https://api.github.com/repos/steinnes/poetry/commits/832e8fea6d85c35a645cf4b0d37e0f1c3216c280" + }, + { + "sha": "7018bd3206d133d11dfce993045a4d12d743b80f", + "author": { + "email": "sebastien.eustace@gmail.com", + "name": "Sébastien Eustace" + }, + "message": "Add an export command (#675)", + "distinct": false, + "url": "https://api.github.com/repos/steinnes/poetry/commits/7018bd3206d133d11dfce993045a4d12d743b80f" + }, + { + "sha": "89d520183efc92b50ca1a62344bfd6786418e9fe", + "author": { + "email": "bryan@reigndropsfall.net", + "name": "Bryan Forbes" + }, + "message": "Improve show command output (#679)\n\n* Improve show command output:\r\n\r\n* Handle file and directory dependencies\r\n* Handle git dev-dependencies\r\n* Only include a package's width for output if it needs updating\r\n\r\n* Update git show tests to have an outdated git dependency", + "distinct": false, + "url": "https://api.github.com/repos/steinnes/poetry/commits/89d520183efc92b50ca1a62344bfd6786418e9fe" + }, + { + "sha": "eb7c19723eb9dec9f7dc43cf341e98bf6de96a8e", + "author": { + "email": "sebastien@eustace.io", + "name": "Sébastien Eustace" + }, + "message": "Fix retrieval of extras in lock file", + "distinct": false, + "url": "https://api.github.com/repos/steinnes/poetry/commits/eb7c19723eb9dec9f7dc43cf341e98bf6de96a8e" + }, + { + "sha": "a1048974ab0767c39c6992200ffbb17b34fb2f4f", + "author": { + "email": "sebastien@eustace.io", + "name": "Sébastien Eustace" + }, + "message": "Bump version to 1.0.0a0", + "distinct": false, + "url": "https://api.github.com/repos/steinnes/poetry/commits/a1048974ab0767c39c6992200ffbb17b34fb2f4f" + }, + { + "sha": "1adf391991425eba88fd63f4131d65b91ecd3dbe", + "author": { + "email": "sebastien@eustace.io", + "name": "Sébastien Eustace" + }, + "message": "Fix reading of extras in lock file", + "distinct": false, + "url": "https://api.github.com/repos/steinnes/poetry/commits/1adf391991425eba88fd63f4131d65b91ecd3dbe" + }, + { + "sha": "a51d6642d00e7140b7658996c49e2bae3dcbeaf0", + "author": { + "email": "sebastien@eustace.io", + "name": "Sébastien Eustace" + }, + "message": "Bump version to 1.0.0a1", + "distinct": false, + "url": "https://api.github.com/repos/steinnes/poetry/commits/a51d6642d00e7140b7658996c49e2bae3dcbeaf0" + }, + { + "sha": "2ff796ed4914253a110aa0632e0598aa2967dcf9", + "author": { + "email": "sebastien.eustace@gmail.com", + "name": "Sébastien Eustace" + }, + "message": "Upgrade to latest version of Cleo (#722)\n\n* Upgrade Cleo to the new improved version\r\n\r\n* Update sonnet script to use sub commands", + "distinct": false, + "url": "https://api.github.com/repos/steinnes/poetry/commits/2ff796ed4914253a110aa0632e0598aa2967dcf9" + }, + { + "sha": "a48225eb74742573504ac3396c1a004c956d94ef", + "author": { + "email": "sebastien@eustace.io", + "name": "Sébastien Eustace" + }, + "message": "Update CHANGELOG", + "distinct": false, + "url": "https://api.github.com/repos/steinnes/poetry/commits/a48225eb74742573504ac3396c1a004c956d94ef" + }, + { + "sha": "41c2736dc5e49f18aae152c35693a9bd79c296a1", + "author": { + "email": "sebastien@eustace.io", + "name": "Sébastien Eustace" + }, + "message": "Update docs", + "distinct": false, + "url": "https://api.github.com/repos/steinnes/poetry/commits/41c2736dc5e49f18aae152c35693a9bd79c296a1" + }, + { + "sha": "3c26c8d009366a35669bfd4ef01af4cb32d113e3", + "author": { + "email": "sebastien.eustace@gmail.com", + "name": "Sébastien Eustace" + }, + "message": "New env command and sub commands (#731)\n\n* Add a env:info command\r\n\r\n* Add env:use command\r\n\r\n* Fix tests on Windows\r\n\r\n* Fix tests\r\n\r\n* Fix tests\r\n\r\n* Fix tests for Python 3.5\r\n\r\n* Use a hash in virtualenv names dependent on the project’s path\r\n\r\n* Add tests for the `env use` command\r\n\r\n* Fix tests\r\n\r\n* Add a `env list` command\r\n\r\n* Fix venvs being recreated when switching minor Python versions\r\n\r\n* Add a `env remove` command\r\n\r\n* Update CHANGELOG\r\n\r\n* Update documentation", + "distinct": false, + "url": "https://api.github.com/repos/steinnes/poetry/commits/3c26c8d009366a35669bfd4ef01af4cb32d113e3" + }, + { + "sha": "dbe13102facbb5886c4e1d431db7eb125fe475c4", + "author": { + "email": "sebastien@eustace.io", + "name": "Sébastien Eustace" + }, + "message": "Merge branch 'master' into develop\n\n# Conflicts:\n#\tCHANGELOG.md\n#\tpoetry.lock\n#\tpoetry/__version__.py\n#\tpyproject.toml\n#\ttests/packages/test_locker.py", + "distinct": false, + "url": "https://api.github.com/repos/steinnes/poetry/commits/dbe13102facbb5886c4e1d431db7eb125fe475c4" + }, + { + "sha": "84720cf791ec958497920bf44169ecac77def73b", + "author": { + "email": "sebastien@eustace.io", + "name": "Sébastien Eustace" + }, + "message": "Fix sonnet script", + "distinct": false, + "url": "https://api.github.com/repos/steinnes/poetry/commits/84720cf791ec958497920bf44169ecac77def73b" + }, + { + "sha": "df59c3d40703c8467d73f57ac72cf35bd3747dad", + "author": { + "email": "sebastien@eustace.io", + "name": "Sébastien Eustace" + }, + "message": "Bump version to 1.0.0a2", + "distinct": false, + "url": "https://api.github.com/repos/steinnes/poetry/commits/df59c3d40703c8467d73f57ac72cf35bd3747dad" + }, + { + "sha": "f4492d2824f5ea7a3279a4a7e987184cd684ba3b", + "author": { + "email": "sebastien@eustace.io", + "name": "Sébastien Eustace" + }, + "message": "Fix the make-linux-release.sh script", + "distinct": false, + "url": "https://api.github.com/repos/steinnes/poetry/commits/f4492d2824f5ea7a3279a4a7e987184cd684ba3b" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:52Z" + }, + { + "id": "10680625394", + "type": "PullRequestEvent", + "actor": { + "id": 39814207, + "login": "pull[bot]", + "display_login": "pull", + "gravatar_id": "", + "url": "https://api.github.com/users/pull[bot]", + "avatar_url": "https://avatars.githubusercontent.com/u/39814207?" + }, + "repo": { + "id": 197345677, + "name": "daddyfatstacksBIG/lerna", + "url": "https://api.github.com/repos/daddyfatstacksBIG/lerna" + }, + "payload": { + "action": "closed", + "number": 20, + "pull_request": { + "url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/pulls/20", + "id": 330711279, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzMwNzExMjc5", + "html_url": "https://github.com/daddyfatstacksBIG/lerna/pull/20", + "diff_url": "https://github.com/daddyfatstacksBIG/lerna/pull/20.diff", + "patch_url": "https://github.com/daddyfatstacksBIG/lerna/pull/20.patch", + "issue_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/issues/20", + "number": 20, + "state": "closed", + "locked": false, + "title": "[pull] master from lerna:master", + "user": { + "login": "pull[bot]", + "id": 39814207, + "node_id": "MDM6Qm90Mzk4MTQyMDc=", + "avatar_url": "https://avatars0.githubusercontent.com/in/12910?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/pull%5Bbot%5D", + "html_url": "https://github.com/apps/pull", + "followers_url": "https://api.github.com/users/pull%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/pull%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/pull%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/pull%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/pull%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/pull%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/pull%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/pull%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/pull%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "body": "See [Commits](/daddyfatstacksBIG/lerna/pull/20/commits) and [Changes](/daddyfatstacksBIG/lerna/pull/20/files) for more details.\n\n-----\nCreated by [ **pull[bot]**](https://github.com/wei/pull). Want to support this open source service? [Please star it : )](https://github.com/wei/pull)", + "created_at": "2019-10-21T21:54:49Z", + "updated_at": "2019-10-21T21:54:52Z", + "closed_at": "2019-10-21T21:54:52Z", + "merged_at": "2019-10-21T21:54:52Z", + "merge_commit_sha": "4872459be7bf88e5900ff907b07279e9516d333c", + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [ + { + "id": 1456200253, + "node_id": "MDU6TGFiZWwxNDU2MjAwMjUz", + "url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/labels/:arrow_heading_down:%20pull", + "name": ":arrow_heading_down: pull", + "color": "ededed", + "default": false + } + ], + "milestone": null, + "commits_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/pulls/20/commits", + "review_comments_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/pulls/20/comments", + "review_comment_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/issues/20/comments", + "statuses_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/statuses/4872459be7bf88e5900ff907b07279e9516d333c", + "head": { + "label": "lerna:master", + "ref": "master", + "sha": "4872459be7bf88e5900ff907b07279e9516d333c", + "user": { + "login": "lerna", + "id": 19333396, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE5MzMzMzk2", + "avatar_url": "https://avatars2.githubusercontent.com/u/19333396?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/lerna", + "html_url": "https://github.com/lerna", + "followers_url": "https://api.github.com/users/lerna/followers", + "following_url": "https://api.github.com/users/lerna/following{/other_user}", + "gists_url": "https://api.github.com/users/lerna/gists{/gist_id}", + "starred_url": "https://api.github.com/users/lerna/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/lerna/subscriptions", + "organizations_url": "https://api.github.com/users/lerna/orgs", + "repos_url": "https://api.github.com/users/lerna/repos", + "events_url": "https://api.github.com/users/lerna/events{/privacy}", + "received_events_url": "https://api.github.com/users/lerna/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 47394776, + "node_id": "MDEwOlJlcG9zaXRvcnk0NzM5NDc3Ng==", + "name": "lerna", + "full_name": "lerna/lerna", + "private": false, + "owner": { + "login": "lerna", + "id": 19333396, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE5MzMzMzk2", + "avatar_url": "https://avatars2.githubusercontent.com/u/19333396?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/lerna", + "html_url": "https://github.com/lerna", + "followers_url": "https://api.github.com/users/lerna/followers", + "following_url": "https://api.github.com/users/lerna/following{/other_user}", + "gists_url": "https://api.github.com/users/lerna/gists{/gist_id}", + "starred_url": "https://api.github.com/users/lerna/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/lerna/subscriptions", + "organizations_url": "https://api.github.com/users/lerna/orgs", + "repos_url": "https://api.github.com/users/lerna/repos", + "events_url": "https://api.github.com/users/lerna/events{/privacy}", + "received_events_url": "https://api.github.com/users/lerna/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/lerna/lerna", + "description": ":dragon: A tool for managing JavaScript projects with multiple packages.", + "fork": false, + "url": "https://api.github.com/repos/lerna/lerna", + "forks_url": "https://api.github.com/repos/lerna/lerna/forks", + "keys_url": "https://api.github.com/repos/lerna/lerna/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/lerna/lerna/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/lerna/lerna/teams", + "hooks_url": "https://api.github.com/repos/lerna/lerna/hooks", + "issue_events_url": "https://api.github.com/repos/lerna/lerna/issues/events{/number}", + "events_url": "https://api.github.com/repos/lerna/lerna/events", + "assignees_url": "https://api.github.com/repos/lerna/lerna/assignees{/user}", + "branches_url": "https://api.github.com/repos/lerna/lerna/branches{/branch}", + "tags_url": "https://api.github.com/repos/lerna/lerna/tags", + "blobs_url": "https://api.github.com/repos/lerna/lerna/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/lerna/lerna/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/lerna/lerna/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/lerna/lerna/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/lerna/lerna/statuses/{sha}", + "languages_url": "https://api.github.com/repos/lerna/lerna/languages", + "stargazers_url": "https://api.github.com/repos/lerna/lerna/stargazers", + "contributors_url": "https://api.github.com/repos/lerna/lerna/contributors", + "subscribers_url": "https://api.github.com/repos/lerna/lerna/subscribers", + "subscription_url": "https://api.github.com/repos/lerna/lerna/subscription", + "commits_url": "https://api.github.com/repos/lerna/lerna/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/lerna/lerna/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/lerna/lerna/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/lerna/lerna/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/lerna/lerna/contents/{+path}", + "compare_url": "https://api.github.com/repos/lerna/lerna/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/lerna/lerna/merges", + "archive_url": "https://api.github.com/repos/lerna/lerna/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/lerna/lerna/downloads", + "issues_url": "https://api.github.com/repos/lerna/lerna/issues{/number}", + "pulls_url": "https://api.github.com/repos/lerna/lerna/pulls{/number}", + "milestones_url": "https://api.github.com/repos/lerna/lerna/milestones{/number}", + "notifications_url": "https://api.github.com/repos/lerna/lerna/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/lerna/lerna/labels{/name}", + "releases_url": "https://api.github.com/repos/lerna/lerna/releases{/id}", + "deployments_url": "https://api.github.com/repos/lerna/lerna/deployments", + "created_at": "2015-12-04T09:36:55Z", + "updated_at": "2019-10-21T21:10:48Z", + "pushed_at": "2019-10-21T21:43:03Z", + "git_url": "git://github.com/lerna/lerna.git", + "ssh_url": "git@github.com:lerna/lerna.git", + "clone_url": "https://github.com/lerna/lerna.git", + "svn_url": "https://github.com/lerna/lerna", + "homepage": "https://lerna.js.org", + "size": 7992, + "stargazers_count": 19472, + "watchers_count": 19472, + "language": "JavaScript", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1208, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 230, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1208, + "open_issues": 230, + "watchers": 19472, + "default_branch": "master" + } + }, + "base": { + "label": "daddyfatstacksBIG:master", + "ref": "master", + "sha": "99425f7e3df4d081c51f9850e71ad93e83dc30c4", + "user": { + "login": "daddyfatstacksBIG", + "id": 50436469, + "node_id": "MDQ6VXNlcjUwNDM2NDY5", + "avatar_url": "https://avatars3.githubusercontent.com/u/50436469?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/daddyfatstacksBIG", + "html_url": "https://github.com/daddyfatstacksBIG", + "followers_url": "https://api.github.com/users/daddyfatstacksBIG/followers", + "following_url": "https://api.github.com/users/daddyfatstacksBIG/following{/other_user}", + "gists_url": "https://api.github.com/users/daddyfatstacksBIG/gists{/gist_id}", + "starred_url": "https://api.github.com/users/daddyfatstacksBIG/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/daddyfatstacksBIG/subscriptions", + "organizations_url": "https://api.github.com/users/daddyfatstacksBIG/orgs", + "repos_url": "https://api.github.com/users/daddyfatstacksBIG/repos", + "events_url": "https://api.github.com/users/daddyfatstacksBIG/events{/privacy}", + "received_events_url": "https://api.github.com/users/daddyfatstacksBIG/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 197345677, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTczNDU2Nzc=", + "name": "lerna", + "full_name": "daddyfatstacksBIG/lerna", + "private": false, + "owner": { + "login": "daddyfatstacksBIG", + "id": 50436469, + "node_id": "MDQ6VXNlcjUwNDM2NDY5", + "avatar_url": "https://avatars3.githubusercontent.com/u/50436469?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/daddyfatstacksBIG", + "html_url": "https://github.com/daddyfatstacksBIG", + "followers_url": "https://api.github.com/users/daddyfatstacksBIG/followers", + "following_url": "https://api.github.com/users/daddyfatstacksBIG/following{/other_user}", + "gists_url": "https://api.github.com/users/daddyfatstacksBIG/gists{/gist_id}", + "starred_url": "https://api.github.com/users/daddyfatstacksBIG/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/daddyfatstacksBIG/subscriptions", + "organizations_url": "https://api.github.com/users/daddyfatstacksBIG/orgs", + "repos_url": "https://api.github.com/users/daddyfatstacksBIG/repos", + "events_url": "https://api.github.com/users/daddyfatstacksBIG/events{/privacy}", + "received_events_url": "https://api.github.com/users/daddyfatstacksBIG/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/daddyfatstacksBIG/lerna", + "description": ":dragon: A tool for managing JavaScript projects with multiple packages.", + "fork": true, + "url": "https://api.github.com/repos/daddyfatstacksBIG/lerna", + "forks_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/forks", + "keys_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/teams", + "hooks_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/hooks", + "issue_events_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/issues/events{/number}", + "events_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/events", + "assignees_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/assignees{/user}", + "branches_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/branches{/branch}", + "tags_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/tags", + "blobs_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/statuses/{sha}", + "languages_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/languages", + "stargazers_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/stargazers", + "contributors_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/contributors", + "subscribers_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/subscribers", + "subscription_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/subscription", + "commits_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/contents/{+path}", + "compare_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/merges", + "archive_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/downloads", + "issues_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/issues{/number}", + "pulls_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/pulls{/number}", + "milestones_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/milestones{/number}", + "notifications_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/labels{/name}", + "releases_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/releases{/id}", + "deployments_url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/deployments", + "created_at": "2019-07-17T08:14:07Z", + "updated_at": "2019-10-21T19:54:51Z", + "pushed_at": "2019-10-21T21:54:51Z", + "git_url": "git://github.com/daddyfatstacksBIG/lerna.git", + "ssh_url": "git@github.com:daddyfatstacksBIG/lerna.git", + "clone_url": "https://github.com/daddyfatstacksBIG/lerna.git", + "svn_url": "https://github.com/daddyfatstacksBIG/lerna", + "homepage": "https://lerna.js.org", + "size": 7870, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/daddyfatstacksBIG/lerna/pulls/20" + }, + "html": { + "href": "https://github.com/daddyfatstacksBIG/lerna/pull/20" + }, + "issue": { + "href": "https://api.github.com/repos/daddyfatstacksBIG/lerna/issues/20" + }, + "comments": { + "href": "https://api.github.com/repos/daddyfatstacksBIG/lerna/issues/20/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/daddyfatstacksBIG/lerna/pulls/20/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/daddyfatstacksBIG/lerna/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/daddyfatstacksBIG/lerna/pulls/20/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/daddyfatstacksBIG/lerna/statuses/4872459be7bf88e5900ff907b07279e9516d333c" + } + }, + "author_association": "NONE", + "merged": true, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": { + "login": "pull[bot]", + "id": 39814207, + "node_id": "MDM6Qm90Mzk4MTQyMDc=", + "avatar_url": "https://avatars0.githubusercontent.com/in/12910?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/pull%5Bbot%5D", + "html_url": "https://github.com/apps/pull", + "followers_url": "https://api.github.com/users/pull%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/pull%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/pull%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/pull%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/pull%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/pull%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/pull%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/pull%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/pull%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 5, + "additions": 327, + "deletions": 260, + "changed_files": 25 + } + }, + "public": true, + "created_at": "2019-10-21T21:54:52Z" + }, + { + "id": "10680625393", + "type": "IssuesEvent", + "actor": { + "id": 1390808, + "login": "matthiasn", + "display_login": "matthiasn", + "gravatar_id": "", + "url": "https://api.github.com/users/matthiasn", + "avatar_url": "https://avatars.githubusercontent.com/u/1390808?" + }, + "repo": { + "id": 54041620, + "name": "matthiasn/meins", + "url": "https://api.github.com/repos/matthiasn/meins" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/matthiasn/meins/issues/29", + "repository_url": "https://api.github.com/repos/matthiasn/meins", + "labels_url": "https://api.github.com/repos/matthiasn/meins/issues/29/labels{/name}", + "comments_url": "https://api.github.com/repos/matthiasn/meins/issues/29/comments", + "events_url": "https://api.github.com/repos/matthiasn/meins/issues/29/events", + "html_url": "https://github.com/matthiasn/meins/issues/29", + "id": 510315299, + "node_id": "MDU6SXNzdWU1MTAzMTUyOTk=", + "number": 29, + "title": "TLS issue when using Gmail", + "user": { + "login": "matthiasn", + "id": 1390808, + "node_id": "MDQ6VXNlcjEzOTA4MDg=", + "avatar_url": "https://avatars1.githubusercontent.com/u/1390808?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/matthiasn", + "html_url": "https://github.com/matthiasn", + "followers_url": "https://api.github.com/users/matthiasn/followers", + "following_url": "https://api.github.com/users/matthiasn/following{/other_user}", + "gists_url": "https://api.github.com/users/matthiasn/gists{/gist_id}", + "starred_url": "https://api.github.com/users/matthiasn/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/matthiasn/subscriptions", + "organizations_url": "https://api.github.com/users/matthiasn/orgs", + "repos_url": "https://api.github.com/users/matthiasn/repos", + "events_url": "https://api.github.com/users/matthiasn/events{/privacy}", + "received_events_url": "https://api.github.com/users/matthiasn/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 342636988, + "node_id": "MDU6TGFiZWwzNDI2MzY5ODg=", + "url": "https://api.github.com/repos/matthiasn/meins/labels/help%20wanted", + "name": "help wanted", + "color": "159818", + "default": true + } + ], + "state": "open", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-10-21T21:54:52Z", + "updated_at": "2019-10-21T21:54:52Z", + "closed_at": null, + "author_association": "OWNER", + "body": "" + } + }, + "public": true, + "created_at": "2019-10-21T21:54:52Z" + }, + { + "id": "10680625390", + "type": "CreateEvent", + "actor": { + "id": 49699333, + "login": "dependabot[bot]", + "display_login": "dependabot", + "gravatar_id": "", + "url": "https://api.github.com/users/dependabot[bot]", + "avatar_url": "https://avatars.githubusercontent.com/u/49699333?" + }, + "repo": { + "id": 166539466, + "name": "jiegiser/vueShop", + "url": "https://api.github.com/repos/jiegiser/vueShop" + }, + "payload": { + "ref": "dependabot/npm_and_yarn/vue-shop/mixin-deep-1.3.2", + "ref_type": "branch", + "master_branch": "master", + "description": "实战商城", + "pusher_type": "user" + }, + "public": true, + "created_at": "2019-10-21T21:54:52Z" + }, + { + "id": "10680625378", + "type": "PushEvent", + "actor": { + "id": 39814207, + "login": "pull[bot]", + "display_login": "pull", + "gravatar_id": "", + "url": "https://api.github.com/users/pull[bot]", + "avatar_url": "https://avatars.githubusercontent.com/u/39814207?" + }, + "repo": { + "id": 197345677, + "name": "daddyfatstacksBIG/lerna", + "url": "https://api.github.com/repos/daddyfatstacksBIG/lerna" + }, + "payload": { + "push_id": 4176855075, + "size": 5, + "distinct_size": 5, + "ref": "refs/heads/master", + "head": "4872459be7bf88e5900ff907b07279e9516d333c", + "before": "99425f7e3df4d081c51f9850e71ad93e83dc30c4", + "commits": [ + { + "sha": "840392f26b0fa6398c862e3202379030da37ca78", + "author": { + "email": "daniel.stockman@gmail.com", + "name": "Daniel Stockman" + }, + "message": "refactor(test): Assert on loadJsonFile.registry.keys(), not snapshot", + "distinct": true, + "url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/commits/840392f26b0fa6398c862e3202379030da37ca78" + }, + { + "sha": "5b1b40b60ebd442d766236fad19bb6073ccb045b", + "author": { + "email": "daniel.stockman@gmail.com", + "name": "Daniel Stockman" + }, + "message": "fix(version): Update lockfile version, if present\n\nFixes #1998\nCloses #2160\nRefs #1415", + "distinct": true, + "url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/commits/5b1b40b60ebd442d766236fad19bb6073ccb045b" + }, + { + "sha": "b7c207222184d3a6f92cb17738f39345f101912d", + "author": { + "email": "daniel.stockman@gmail.com", + "name": "Daniel Stockman" + }, + "message": "refactor(tests): Merge --create-release= tests into a single file", + "distinct": true, + "url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/commits/b7c207222184d3a6f92cb17738f39345f101912d" + }, + { + "sha": "38d5f7f0772118c64358d726424177e4577cae61", + "author": { + "email": "daniel.stockman@gmail.com", + "name": "Daniel Stockman" + }, + "message": "chore(create-release): Ignore default case coverage", + "distinct": true, + "url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/commits/38d5f7f0772118c64358d726424177e4577cae61" + }, + { + "sha": "4872459be7bf88e5900ff907b07279e9516d333c", + "author": { + "email": "daniel.stockman@gmail.com", + "name": "Daniel Stockman" + }, + "message": "chore(release): v3.18.2", + "distinct": true, + "url": "https://api.github.com/repos/daddyfatstacksBIG/lerna/commits/4872459be7bf88e5900ff907b07279e9516d333c" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:52Z" + }, + { + "id": "10680625381", + "type": "IssueCommentEvent", + "actor": { + "id": 37864982, + "login": "iamthannos", + "display_login": "iamthannos", + "gravatar_id": "", + "url": "https://api.github.com/users/iamthannos", + "avatar_url": "https://avatars.githubusercontent.com/u/37864982?" + }, + "repo": { + "id": 149494920, + "name": "Scaleskope-Ind/Org_Apic_Auto_Repo", + "url": "https://api.github.com/repos/Scaleskope-Ind/Org_Apic_Auto_Repo" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/Scaleskope-Ind/Org_Apic_Auto_Repo/issues/490", + "repository_url": "https://api.github.com/repos/Scaleskope-Ind/Org_Apic_Auto_Repo", + "labels_url": "https://api.github.com/repos/Scaleskope-Ind/Org_Apic_Auto_Repo/issues/490/labels{/name}", + "comments_url": "https://api.github.com/repos/Scaleskope-Ind/Org_Apic_Auto_Repo/issues/490/comments", + "events_url": "https://api.github.com/repos/Scaleskope-Ind/Org_Apic_Auto_Repo/issues/490/events", + "html_url": "https://github.com/Scaleskope-Ind/Org_Apic_Auto_Repo/issues/490", + "id": 510315285, + "node_id": "MDU6SXNzdWU1MTAzMTUyODU=", + "number": 490, + "title": "Found a bug - 1571694889", + "user": { + "login": "iamthannos", + "id": 37864982, + "node_id": "MDQ6VXNlcjM3ODY0OTgy", + "avatar_url": "https://avatars1.githubusercontent.com/u/37864982?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/iamthannos", + "html_url": "https://github.com/iamthannos", + "followers_url": "https://api.github.com/users/iamthannos/followers", + "following_url": "https://api.github.com/users/iamthannos/following{/other_user}", + "gists_url": "https://api.github.com/users/iamthannos/gists{/gist_id}", + "starred_url": "https://api.github.com/users/iamthannos/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/iamthannos/subscriptions", + "organizations_url": "https://api.github.com/users/iamthannos/orgs", + "repos_url": "https://api.github.com/users/iamthannos/repos", + "events_url": "https://api.github.com/users/iamthannos/events{/privacy}", + "received_events_url": "https://api.github.com/users/iamthannos/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-10-21T21:54:50Z", + "updated_at": "2019-10-21T21:54:52Z", + "closed_at": null, + "author_association": "CONTRIBUTOR", + "body": "I'm having a problem with this." + }, + "comment": { + "url": "https://api.github.com/repos/Scaleskope-Ind/Org_Apic_Auto_Repo/issues/comments/544724590", + "html_url": "https://github.com/Scaleskope-Ind/Org_Apic_Auto_Repo/issues/490#issuecomment-544724590", + "issue_url": "https://api.github.com/repos/Scaleskope-Ind/Org_Apic_Auto_Repo/issues/490", + "id": 544724590, + "node_id": "MDEyOklzc3VlQ29tbWVudDU0NDcyNDU5MA==", + "user": { + "login": "iamthannos", + "id": 37864982, + "node_id": "MDQ6VXNlcjM3ODY0OTgy", + "avatar_url": "https://avatars1.githubusercontent.com/u/37864982?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/iamthannos", + "html_url": "https://github.com/iamthannos", + "followers_url": "https://api.github.com/users/iamthannos/followers", + "following_url": "https://api.github.com/users/iamthannos/following{/other_user}", + "gists_url": "https://api.github.com/users/iamthannos/gists{/gist_id}", + "starred_url": "https://api.github.com/users/iamthannos/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/iamthannos/subscriptions", + "organizations_url": "https://api.github.com/users/iamthannos/orgs", + "repos_url": "https://api.github.com/users/iamthannos/repos", + "events_url": "https://api.github.com/users/iamthannos/events{/privacy}", + "received_events_url": "https://api.github.com/users/iamthannos/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2019-10-21T21:54:52Z", + "updated_at": "2019-10-21T21:54:52Z", + "author_association": "CONTRIBUTOR", + "body": "Mee tooo" + } + }, + "public": true, + "created_at": "2019-10-21T21:54:52Z", + "org": { + "id": 37864994, + "login": "Scaleskope-Ind", + "gravatar_id": "", + "url": "https://api.github.com/orgs/Scaleskope-Ind", + "avatar_url": "https://avatars.githubusercontent.com/u/37864994?" + } + }, + { + "id": "10680625375", + "type": "CreateEvent", + "actor": { + "id": 56849505, + "login": "programmerphysics", + "display_login": "programmerphysics", + "gravatar_id": "", + "url": "https://api.github.com/users/programmerphysics", + "avatar_url": "https://avatars.githubusercontent.com/u/56849505?" + }, + "repo": { + "id": 216672345, + "name": "programmerphysics/programmerphysics.github.io", + "url": "https://api.github.com/repos/programmerphysics/programmerphysics.github.io" + }, + "payload": { + "ref": null, + "ref_type": "repository", + "master_branch": "master", + "description": null, + "pusher_type": "user" + }, + "public": true, + "created_at": "2019-10-21T21:54:52Z" + }, + { + "id": "10680625376", + "type": "CreateEvent", + "actor": { + "id": 20814111, + "login": "NathanPG", + "display_login": "NathanPG", + "gravatar_id": "", + "url": "https://api.github.com/users/NathanPG", + "avatar_url": "https://avatars.githubusercontent.com/u/20814111?" + }, + "repo": { + "id": 216671770, + "name": "NathanPG/TCP_GuessGame", + "url": "https://api.github.com/repos/NathanPG/TCP_GuessGame" + }, + "payload": { + "ref": "master", + "ref_type": "branch", + "master_branch": "master", + "description": null, + "pusher_type": "user" + }, + "public": true, + "created_at": "2019-10-21T21:54:52Z" + }, + { + "id": "10680625369", + "type": "PushEvent", + "actor": { + "id": 55512917, + "login": "nzauner", + "display_login": "nzauner", + "gravatar_id": "", + "url": "https://api.github.com/users/nzauner", + "avatar_url": "https://avatars.githubusercontent.com/u/55512917?" + }, + "repo": { + "id": 216597968, + "name": "nzauner/evaluating-regression-lines-data-science-intro-000", + "url": "https://api.github.com/repos/nzauner/evaluating-regression-lines-data-science-intro-000" + }, + "payload": { + "push_id": 4176855070, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/wip", + "head": "76bb9e610a421f143524fd4fda8e3b58e87431a3", + "before": "5cfeb0cc7aeebe5cd3007c555c0b2053b7b3a7ee", + "commits": [ + { + "sha": "76bb9e610a421f143524fd4fda8e3b58e87431a3", + "author": { + "email": "nzauner@gmail.com", + "name": "Nick Zauner" + }, + "message": "Automatically backed up by Learn", + "distinct": true, + "url": "https://api.github.com/repos/nzauner/evaluating-regression-lines-data-science-intro-000/commits/76bb9e610a421f143524fd4fda8e3b58e87431a3" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:52Z" + }, + { + "id": "10680625364", + "type": "PushEvent", + "actor": { + "id": 10931737, + "login": "dcnb", + "display_login": "dcnb", + "gravatar_id": "", + "url": "https://api.github.com/users/dcnb", + "avatar_url": "https://avatars.githubusercontent.com/u/10931737?" + }, + "repo": { + "id": 154226266, + "name": "uidaholib/collectionbuilder-cdm-template", + "url": "https://api.github.com/repos/uidaholib/collectionbuilder-cdm-template" + }, + "payload": { + "push_id": 4176855068, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "3099a4b8091293fd480a6e64da5b01e385fcfa06", + "before": "0f4de10752e6dc72e179caaeddcf3a1d522b2099", + "commits": [ + { + "sha": "3099a4b8091293fd480a6e64da5b01e385fcfa06", + "author": { + "email": "devinbecker@gmail.com", + "name": "dcnb" + }, + "message": "edited credits", + "distinct": true, + "url": "https://api.github.com/repos/uidaholib/collectionbuilder-cdm-template/commits/3099a4b8091293fd480a6e64da5b01e385fcfa06" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:52Z", + "org": { + "id": 19230281, + "login": "uidaholib", + "gravatar_id": "", + "url": "https://api.github.com/orgs/uidaholib", + "avatar_url": "https://avatars.githubusercontent.com/u/19230281?" + } + }, + { + "id": "10680625356", + "type": "PushEvent", + "actor": { + "id": 33970417, + "login": "lukewaring", + "display_login": "lukewaring", + "gravatar_id": "", + "url": "https://api.github.com/users/lukewaring", + "avatar_url": "https://avatars.githubusercontent.com/u/33970417?" + }, + "repo": { + "id": 216111947, + "name": "lukewaring/advanced-hashes-hashketball-nyc-web-102819", + "url": "https://api.github.com/repos/lukewaring/advanced-hashes-hashketball-nyc-web-102819" + }, + "payload": { + "push_id": 4176855065, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/wip", + "head": "be275fb91a1ec7f037b737eae9534c7a75f3a061", + "before": "324c51f8f54cb5c33d68cbba4aedfc1ce4851d46", + "commits": [ + { + "sha": "be275fb91a1ec7f037b737eae9534c7a75f3a061", + "author": { + "email": "lukewaring@gmail.com", + "name": "Luke Waring" + }, + "message": "Automatically backed up by Learn", + "distinct": true, + "url": "https://api.github.com/repos/lukewaring/advanced-hashes-hashketball-nyc-web-102819/commits/be275fb91a1ec7f037b737eae9534c7a75f3a061" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:52Z" + }, + { + "id": "10680625361", + "type": "PushEvent", + "actor": { + "id": 3455449, + "login": "Dids", + "display_login": "Dids", + "gravatar_id": "", + "url": "https://api.github.com/users/Dids", + "avatar_url": "https://avatars.githubusercontent.com/u/3455449?" + }, + "repo": { + "id": 92093613, + "name": "Didstopia/SDL_net", + "url": "https://api.github.com/repos/Didstopia/SDL_net" + }, + "payload": { + "push_id": 4176855060, + "size": 0, + "distinct_size": 0, + "ref": "refs/heads/master", + "head": "3b4fe7970049252f77fc6068371e59c48bc1cddf", + "before": "3b4fe7970049252f77fc6068371e59c48bc1cddf", + "commits": [] + }, + "public": true, + "created_at": "2019-10-21T21:54:52Z", + "org": { + "id": 11643531, + "login": "Didstopia", + "gravatar_id": "", + "url": "https://api.github.com/orgs/Didstopia", + "avatar_url": "https://avatars.githubusercontent.com/u/11643531?" + } + }, + { + "id": "10680625352", + "type": "PushEvent", + "actor": { + "id": 51426537, + "login": "tjamesstone", + "display_login": "tjamesstone", + "gravatar_id": "", + "url": "https://api.github.com/users/tjamesstone", + "avatar_url": "https://avatars.githubusercontent.com/u/51426537?" + }, + "repo": { + "id": 216667384, + "name": "tjamesstone/tjamesstone.github.io", + "url": "https://api.github.com/repos/tjamesstone/tjamesstone.github.io" + }, + "payload": { + "push_id": 4176855066, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "f3cf80bd829569dcc690663965465e8dc0ef6f50", + "before": "d4d97bd2ff211b55c603298f8ca75c6ab43b69d9", + "commits": [ + { + "sha": "f3cf80bd829569dcc690663965465e8dc0ef6f50", + "author": { + "email": "tatejamesstone@gmail.com", + "name": "Tate Stone" + }, + "message": "No more read me", + "distinct": true, + "url": "https://api.github.com/repos/tjamesstone/tjamesstone.github.io/commits/f3cf80bd829569dcc690663965465e8dc0ef6f50" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:52Z" + }, + { + "id": "10680625350", + "type": "PushEvent", + "actor": { + "id": 51011840, + "login": "othhotro", + "display_login": "othhotro", + "gravatar_id": "", + "url": "https://api.github.com/users/othhotro", + "avatar_url": "https://avatars.githubusercontent.com/u/51011840?" + }, + "repo": { + "id": 201879384, + "name": "othhotro/Roo.Exe", + "url": "https://api.github.com/repos/othhotro/Roo.Exe" + }, + "payload": { + "push_id": 4176855063, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "969d8090a16f7452a895965009ba7f6a4edc9c82", + "before": "481b4f5fd37451b9e9d2102f44f13bc9d18c599f", + "commits": [ + { + "sha": "969d8090a16f7452a895965009ba7f6a4edc9c82", + "author": { + "email": "oth.hotro@gmail.com", + "name": "oth.hotro@gmail.com" + }, + "message": "Lần chạy [2019-10-22 04-53]:Lần thứ 53", + "distinct": true, + "url": "https://api.github.com/repos/othhotro/Roo.Exe/commits/969d8090a16f7452a895965009ba7f6a4edc9c82" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:52Z" + }, + { + "id": "10680625348", + "type": "IssueCommentEvent", + "actor": { + "id": 20407524, + "login": "k8s-ci-robot", + "display_login": "k8s-ci-robot", + "gravatar_id": "", + "url": "https://api.github.com/users/k8s-ci-robot", + "avatar_url": "https://avatars.githubusercontent.com/u/20407524?" + }, + "repo": { + "id": 57333709, + "name": "kubernetes/test-infra", + "url": "https://api.github.com/repos/kubernetes/test-infra" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/kubernetes/test-infra/issues/14895", + "repository_url": "https://api.github.com/repos/kubernetes/test-infra", + "labels_url": "https://api.github.com/repos/kubernetes/test-infra/issues/14895/labels{/name}", + "comments_url": "https://api.github.com/repos/kubernetes/test-infra/issues/14895/comments", + "events_url": "https://api.github.com/repos/kubernetes/test-infra/issues/14895/events", + "html_url": "https://github.com/kubernetes/test-infra/pull/14895", + "id": 510314347, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzMwNzEwNTAy", + "number": 14895, + "title": "Merge duplicate lines when parsing coverage profiles", + "user": { + "login": "Katharine", + "id": 110792, + "node_id": "MDQ6VXNlcjExMDc5Mg==", + "avatar_url": "https://avatars0.githubusercontent.com/u/110792?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Katharine", + "html_url": "https://github.com/Katharine", + "followers_url": "https://api.github.com/users/Katharine/followers", + "following_url": "https://api.github.com/users/Katharine/following{/other_user}", + "gists_url": "https://api.github.com/users/Katharine/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Katharine/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Katharine/subscriptions", + "organizations_url": "https://api.github.com/users/Katharine/orgs", + "repos_url": "https://api.github.com/users/Katharine/repos", + "events_url": "https://api.github.com/users/Katharine/events{/privacy}", + "received_events_url": "https://api.github.com/users/Katharine/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 705940018, + "node_id": "MDU6TGFiZWw3MDU5NDAwMTg=", + "url": "https://api.github.com/repos/kubernetes/test-infra/labels/approved", + "name": "approved", + "color": "0ffa16", + "default": false + }, + { + "id": 1094830529, + "node_id": "MDU6TGFiZWwxMDk0ODMwNTI5", + "url": "https://api.github.com/repos/kubernetes/test-infra/labels/area/gopherage", + "name": "area/gopherage", + "color": "0052cc", + "default": false + }, + { + "id": 484580953, + "node_id": "MDU6TGFiZWw0ODQ1ODA5NTM=", + "url": "https://api.github.com/repos/kubernetes/test-infra/labels/cncf-cla:%20yes", + "name": "cncf-cla: yes", + "color": "bfe5bf", + "default": false + }, + { + "id": 366393439, + "node_id": "MDU6TGFiZWwzNjYzOTM0Mzk=", + "url": "https://api.github.com/repos/kubernetes/test-infra/labels/lgtm", + "name": "lgtm", + "color": "15dd18", + "default": false + }, + { + "id": 718255721, + "node_id": "MDU6TGFiZWw3MTgyNTU3MjE=", + "url": "https://api.github.com/repos/kubernetes/test-infra/labels/sig/testing", + "name": "sig/testing", + "color": "d2b48c", + "default": false + }, + { + "id": 671126262, + "node_id": "MDU6TGFiZWw2NzExMjYyNjI=", + "url": "https://api.github.com/repos/kubernetes/test-infra/labels/size/M", + "name": "size/M", + "color": "eebb00", + "default": false + } + ], + "state": "open", + "locked": false, + "assignee": { + "login": "BenTheElder", + "id": 917931, + "node_id": "MDQ6VXNlcjkxNzkzMQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/917931?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/BenTheElder", + "html_url": "https://github.com/BenTheElder", + "followers_url": "https://api.github.com/users/BenTheElder/followers", + "following_url": "https://api.github.com/users/BenTheElder/following{/other_user}", + "gists_url": "https://api.github.com/users/BenTheElder/gists{/gist_id}", + "starred_url": "https://api.github.com/users/BenTheElder/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/BenTheElder/subscriptions", + "organizations_url": "https://api.github.com/users/BenTheElder/orgs", + "repos_url": "https://api.github.com/users/BenTheElder/repos", + "events_url": "https://api.github.com/users/BenTheElder/events{/privacy}", + "received_events_url": "https://api.github.com/users/BenTheElder/received_events", + "type": "User", + "site_admin": false + }, + "assignees": [ + { + "login": "BenTheElder", + "id": 917931, + "node_id": "MDQ6VXNlcjkxNzkzMQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/917931?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/BenTheElder", + "html_url": "https://github.com/BenTheElder", + "followers_url": "https://api.github.com/users/BenTheElder/followers", + "following_url": "https://api.github.com/users/BenTheElder/following{/other_user}", + "gists_url": "https://api.github.com/users/BenTheElder/gists{/gist_id}", + "starred_url": "https://api.github.com/users/BenTheElder/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/BenTheElder/subscriptions", + "organizations_url": "https://api.github.com/users/BenTheElder/orgs", + "repos_url": "https://api.github.com/users/BenTheElder/repos", + "events_url": "https://api.github.com/users/BenTheElder/events{/privacy}", + "received_events_url": "https://api.github.com/users/BenTheElder/received_events", + "type": "User", + "site_admin": false + } + ], + "milestone": null, + "comments": 1, + "created_at": "2019-10-21T21:52:24Z", + "updated_at": "2019-10-21T21:54:51Z", + "closed_at": null, + "author_association": "MEMBER", + "pull_request": { + "url": "https://api.github.com/repos/kubernetes/test-infra/pulls/14895", + "html_url": "https://github.com/kubernetes/test-infra/pull/14895", + "diff_url": "https://github.com/kubernetes/test-infra/pull/14895.diff", + "patch_url": "https://github.com/kubernetes/test-infra/pull/14895.patch" + }, + "body": "Sometimes go produces mangled coverage profiles which have multiple entries for each block. Handle this by summing up the entries instead of becoming very confused.\r\n\r\n/cc @BenTheElder \r\n\r\nFixes #14876 " + }, + "comment": { + "url": "https://api.github.com/repos/kubernetes/test-infra/issues/comments/544724585", + "html_url": "https://github.com/kubernetes/test-infra/pull/14895#issuecomment-544724585", + "issue_url": "https://api.github.com/repos/kubernetes/test-infra/issues/14895", + "id": 544724585, + "node_id": "MDEyOklzc3VlQ29tbWVudDU0NDcyNDU4NQ==", + "user": { + "login": "k8s-ci-robot", + "id": 20407524, + "node_id": "MDQ6VXNlcjIwNDA3NTI0", + "avatar_url": "https://avatars0.githubusercontent.com/u/20407524?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/k8s-ci-robot", + "html_url": "https://github.com/k8s-ci-robot", + "followers_url": "https://api.github.com/users/k8s-ci-robot/followers", + "following_url": "https://api.github.com/users/k8s-ci-robot/following{/other_user}", + "gists_url": "https://api.github.com/users/k8s-ci-robot/gists{/gist_id}", + "starred_url": "https://api.github.com/users/k8s-ci-robot/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/k8s-ci-robot/subscriptions", + "organizations_url": "https://api.github.com/users/k8s-ci-robot/orgs", + "repos_url": "https://api.github.com/users/k8s-ci-robot/repos", + "events_url": "https://api.github.com/users/k8s-ci-robot/events{/privacy}", + "received_events_url": "https://api.github.com/users/k8s-ci-robot/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2019-10-21T21:54:51Z", + "updated_at": "2019-10-21T21:54:51Z", + "author_association": "CONTRIBUTOR", + "body": "[APPROVALNOTIFIER] This PR is **APPROVED**\n\nThis pull-request has been approved by: *BenTheElder*, *Katharine*\n\nThe full list of commands accepted by this bot can be found [here](https://go.k8s.io/bot-commands?repo=kubernetes%2Ftest-infra).\n\nThe pull request process is described [here](https://git.k8s.io/community/contributors/guide/owners.md#the-code-review-process)\n\n
        \nNeeds approval from an approver in each of these files:\n\n- ~~[gopherage/OWNERS](https://github.com/kubernetes/test-infra/blob/master/gopherage/OWNERS)~~ [BenTheElder,Katharine]\n\nApprovers can indicate their approval by writing `/approve` in a comment\nApprovers can cancel approval by writing `/approve cancel` in a comment\n
        \n" + } + }, + "public": true, + "created_at": "2019-10-21T21:54:52Z", + "org": { + "id": 13629408, + "login": "kubernetes", + "gravatar_id": "", + "url": "https://api.github.com/orgs/kubernetes", + "avatar_url": "https://avatars.githubusercontent.com/u/13629408?" + } + }, + { + "id": "10680625338", + "type": "IssuesEvent", + "actor": { + "id": 595169, + "login": "elenam", + "display_login": "elenam", + "gravatar_id": "", + "url": "https://api.github.com/users/elenam", + "avatar_url": "https://avatars.githubusercontent.com/u/595169?" + }, + "repo": { + "id": 134197059, + "name": "Clojure-Intro-Course/babel", + "url": "https://api.github.com/repos/Clojure-Intro-Course/babel" + }, + "payload": { + "action": "closed", + "issue": { + "url": "https://api.github.com/repos/Clojure-Intro-Course/babel/issues/71", + "repository_url": "https://api.github.com/repos/Clojure-Intro-Course/babel", + "labels_url": "https://api.github.com/repos/Clojure-Intro-Course/babel/issues/71/labels{/name}", + "comments_url": "https://api.github.com/repos/Clojure-Intro-Course/babel/issues/71/comments", + "events_url": "https://api.github.com/repos/Clojure-Intro-Course/babel/issues/71/events", + "html_url": "https://github.com/Clojure-Intro-Course/babel/issues/71", + "id": 510295664, + "node_id": "MDU6SXNzdWU1MTAyOTU2NjQ=", + "number": 71, + "title": "let with &", + "user": { + "login": "elenam", + "id": 595169, + "node_id": "MDQ6VXNlcjU5NTE2OQ==", + "avatar_url": "https://avatars0.githubusercontent.com/u/595169?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/elenam", + "html_url": "https://github.com/elenam", + "followers_url": "https://api.github.com/users/elenam/followers", + "following_url": "https://api.github.com/users/elenam/following{/other_user}", + "gists_url": "https://api.github.com/users/elenam/gists{/gist_id}", + "starred_url": "https://api.github.com/users/elenam/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/elenam/subscriptions", + "organizations_url": "https://api.github.com/users/elenam/orgs", + "repos_url": "https://api.github.com/users/elenam/repos", + "events_url": "https://api.github.com/users/elenam/events{/privacy}", + "received_events_url": "https://api.github.com/users/elenam/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 939296566, + "node_id": "MDU6TGFiZWw5MzkyOTY1NjY=", + "url": "https://api.github.com/repos/Clojure-Intro-Course/babel/labels/bug", + "name": "bug", + "color": "d73a4a", + "default": true + }, + { + "id": 939296572, + "node_id": "MDU6TGFiZWw5MzkyOTY1NzI=", + "url": "https://api.github.com/repos/Clojure-Intro-Course/babel/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "default": true + } + ], + "state": "closed", + "locked": false, + "assignee": { + "login": "elenam", + "id": 595169, + "node_id": "MDQ6VXNlcjU5NTE2OQ==", + "avatar_url": "https://avatars0.githubusercontent.com/u/595169?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/elenam", + "html_url": "https://github.com/elenam", + "followers_url": "https://api.github.com/users/elenam/followers", + "following_url": "https://api.github.com/users/elenam/following{/other_user}", + "gists_url": "https://api.github.com/users/elenam/gists{/gist_id}", + "starred_url": "https://api.github.com/users/elenam/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/elenam/subscriptions", + "organizations_url": "https://api.github.com/users/elenam/orgs", + "repos_url": "https://api.github.com/users/elenam/repos", + "events_url": "https://api.github.com/users/elenam/events{/privacy}", + "received_events_url": "https://api.github.com/users/elenam/received_events", + "type": "User", + "site_admin": false + }, + "assignees": [ + { + "login": "elenam", + "id": 595169, + "node_id": "MDQ6VXNlcjU5NTE2OQ==", + "avatar_url": "https://avatars0.githubusercontent.com/u/595169?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/elenam", + "html_url": "https://github.com/elenam", + "followers_url": "https://api.github.com/users/elenam/followers", + "following_url": "https://api.github.com/users/elenam/following{/other_user}", + "gists_url": "https://api.github.com/users/elenam/gists{/gist_id}", + "starred_url": "https://api.github.com/users/elenam/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/elenam/subscriptions", + "organizations_url": "https://api.github.com/users/elenam/orgs", + "repos_url": "https://api.github.com/users/elenam/repos", + "events_url": "https://api.github.com/users/elenam/events{/privacy}", + "received_events_url": "https://api.github.com/users/elenam/received_events", + "type": "User", + "site_admin": false + } + ], + "milestone": null, + "comments": 0, + "created_at": "2019-10-21T21:10:47Z", + "updated_at": "2019-10-21T21:54:51Z", + "closed_at": "2019-10-21T21:54:51Z", + "author_association": "NONE", + "body": "```\r\nbabel.middleware=> (let [& 5] 8)\r\nExecution error at sun.reflect.NativeConstructorAccessorImpl/newInstance0 (REPL:-2).\r\nSyntax problems with (let [& 5] 8):\r\nIn place of & the following are allowed: a vector or a hashmap or unknown type (clojure.core/fn [%] (clojure.core/not= (quote &) %))\r\n```" + } + }, + "public": true, + "created_at": "2019-10-21T21:54:51Z", + "org": { + "id": 7658717, + "login": "Clojure-Intro-Course", + "gravatar_id": "", + "url": "https://api.github.com/orgs/Clojure-Intro-Course", + "avatar_url": "https://avatars.githubusercontent.com/u/7658717?" + } + }, + { + "id": "10680625336", + "type": "WatchEvent", + "actor": { + "id": 11308364, + "login": "gtim108", + "display_login": "gtim108", + "gravatar_id": "", + "url": "https://api.github.com/users/gtim108", + "avatar_url": "https://avatars.githubusercontent.com/u/11308364?" + }, + "repo": { + "id": 140688160, + "name": "mre/vscode-snippet", + "url": "https://api.github.com/repos/mre/vscode-snippet" + }, + "payload": { + "action": "started" + }, + "public": true, + "created_at": "2019-10-21T21:54:51Z" + }, + { + "id": "10680625332", + "type": "WatchEvent", + "actor": { + "id": 55850308, + "login": "anthony-eai", + "display_login": "anthony-eai", + "gravatar_id": "", + "url": "https://api.github.com/users/anthony-eai", + "avatar_url": "https://avatars.githubusercontent.com/u/55850308?" + }, + "repo": { + "id": 103348658, + "name": "lawlietAi/pytorch-acnn-model", + "url": "https://api.github.com/repos/lawlietAi/pytorch-acnn-model" + }, + "payload": { + "action": "started" + }, + "public": true, + "created_at": "2019-10-21T21:54:51Z" + }, + { + "id": "10680625322", + "type": "PushEvent", + "actor": { + "id": 557050, + "login": "jonasjohansson", + "display_login": "jonasjohansson", + "gravatar_id": "", + "url": "https://api.github.com/users/jonasjohansson", + "avatar_url": "https://avatars.githubusercontent.com/u/557050?" + }, + "repo": { + "id": 197607598, + "name": "jonasjohansson/11.igem.se", + "url": "https://api.github.com/repos/jonasjohansson/11.igem.se" + }, + "payload": { + "push_id": 4176855048, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "9de940141ce125243ac37fe144388fc8e903afef", + "before": "cfe209f4e31cbd22bd86a9c5f2329b832efc5e53", + "commits": [ + { + "sha": "9de940141ce125243ac37fe144388fc8e903afef", + "author": { + "email": "jns.johansson@gmail.com", + "name": "Jonas Johansson" + }, + "message": "Update notebook.md", + "distinct": true, + "url": "https://api.github.com/repos/jonasjohansson/11.igem.se/commits/9de940141ce125243ac37fe144388fc8e903afef" + } + ] + }, + "public": true, + "created_at": "2019-10-21T21:54:51Z" + }, + { + "id": "10680625318", + "type": "PullRequestEvent", + "actor": { + "id": 49699333, + "login": "dependabot[bot]", + "display_login": "dependabot", + "gravatar_id": "", + "url": "https://api.github.com/users/dependabot[bot]", + "avatar_url": "https://avatars.githubusercontent.com/u/49699333?" + }, + "repo": { + "id": 209932221, + "name": "liuzhuzhu/lzz-gulimall", + "url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall" + }, + "payload": { + "action": "opened", + "number": 1, + "pull_request": { + "url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/pulls/1", + "id": 330711291, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzMwNzExMjkx", + "html_url": "https://github.com/liuzhuzhu/lzz-gulimall/pull/1", + "diff_url": "https://github.com/liuzhuzhu/lzz-gulimall/pull/1.diff", + "patch_url": "https://github.com/liuzhuzhu/lzz-gulimall/pull/1.patch", + "issue_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/issues/1", + "number": 1, + "state": "open", + "locked": false, + "title": "Bump commons-fileupload from 1.2.2 to 1.3.3 in /gulimall-admin", + "user": { + "login": "dependabot[bot]", + "id": 49699333, + "node_id": "MDM6Qm90NDk2OTkzMzM=", + "avatar_url": "https://avatars0.githubusercontent.com/in/29110?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dependabot%5Bbot%5D", + "html_url": "https://github.com/apps/dependabot", + "followers_url": "https://api.github.com/users/dependabot%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/dependabot%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/dependabot%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dependabot%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dependabot%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/dependabot%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/dependabot%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/dependabot%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/dependabot%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "body": "Bumps commons-fileupload from 1.2.2 to 1.3.3.\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=commons-fileupload:commons-fileupload&package-manager=maven&previous-version=1.2.2&new-version=1.3.3)](https://help.github.com/articles/configuring-automated-security-fixes)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
        \nDependabot commands and options\n
        \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot ignore this [patch|minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language\n- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language\n- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language\n- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language\n\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/liuzhuzhu/lzz-gulimall/network/alerts).\n\n
        ", + "created_at": "2019-10-21T21:54:51Z", + "updated_at": "2019-10-21T21:54:51Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/pulls/1/commits", + "review_comments_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/pulls/1/comments", + "review_comment_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/issues/1/comments", + "statuses_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/statuses/40cbe912a01a6b92b785a88e7019ae347a54b7dc", + "head": { + "label": "liuzhuzhu:dependabot/maven/gulimall-admin/commons-fileupload-commons-fileupload-1.3.3", + "ref": "dependabot/maven/gulimall-admin/commons-fileupload-commons-fileupload-1.3.3", + "sha": "40cbe912a01a6b92b785a88e7019ae347a54b7dc", + "user": { + "login": "liuzhuzhu", + "id": 16386125, + "node_id": "MDQ6VXNlcjE2Mzg2MTI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/16386125?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/liuzhuzhu", + "html_url": "https://github.com/liuzhuzhu", + "followers_url": "https://api.github.com/users/liuzhuzhu/followers", + "following_url": "https://api.github.com/users/liuzhuzhu/following{/other_user}", + "gists_url": "https://api.github.com/users/liuzhuzhu/gists{/gist_id}", + "starred_url": "https://api.github.com/users/liuzhuzhu/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/liuzhuzhu/subscriptions", + "organizations_url": "https://api.github.com/users/liuzhuzhu/orgs", + "repos_url": "https://api.github.com/users/liuzhuzhu/repos", + "events_url": "https://api.github.com/users/liuzhuzhu/events{/privacy}", + "received_events_url": "https://api.github.com/users/liuzhuzhu/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 209932221, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDk5MzIyMjE=", + "name": "lzz-gulimall", + "full_name": "liuzhuzhu/lzz-gulimall", + "private": false, + "owner": { + "login": "liuzhuzhu", + "id": 16386125, + "node_id": "MDQ6VXNlcjE2Mzg2MTI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/16386125?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/liuzhuzhu", + "html_url": "https://github.com/liuzhuzhu", + "followers_url": "https://api.github.com/users/liuzhuzhu/followers", + "following_url": "https://api.github.com/users/liuzhuzhu/following{/other_user}", + "gists_url": "https://api.github.com/users/liuzhuzhu/gists{/gist_id}", + "starred_url": "https://api.github.com/users/liuzhuzhu/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/liuzhuzhu/subscriptions", + "organizations_url": "https://api.github.com/users/liuzhuzhu/orgs", + "repos_url": "https://api.github.com/users/liuzhuzhu/repos", + "events_url": "https://api.github.com/users/liuzhuzhu/events{/privacy}", + "received_events_url": "https://api.github.com/users/liuzhuzhu/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/liuzhuzhu/lzz-gulimall", + "description": "第四次 不再是一个maven工程", + "fork": false, + "url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall", + "forks_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/forks", + "keys_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/teams", + "hooks_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/hooks", + "issue_events_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/issues/events{/number}", + "events_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/events", + "assignees_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/assignees{/user}", + "branches_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/branches{/branch}", + "tags_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/tags", + "blobs_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/statuses/{sha}", + "languages_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/languages", + "stargazers_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/stargazers", + "contributors_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/contributors", + "subscribers_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/subscribers", + "subscription_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/subscription", + "commits_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/contents/{+path}", + "compare_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/merges", + "archive_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/downloads", + "issues_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/issues{/number}", + "pulls_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/pulls{/number}", + "milestones_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/milestones{/number}", + "notifications_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/labels{/name}", + "releases_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/releases{/id}", + "deployments_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/deployments", + "created_at": "2019-09-21T05:48:31Z", + "updated_at": "2019-09-21T05:56:17Z", + "pushed_at": "2019-10-21T21:54:50Z", + "git_url": "git://github.com/liuzhuzhu/lzz-gulimall.git", + "ssh_url": "git@github.com:liuzhuzhu/lzz-gulimall.git", + "clone_url": "https://github.com/liuzhuzhu/lzz-gulimall.git", + "svn_url": "https://github.com/liuzhuzhu/lzz-gulimall", + "homepage": null, + "size": 1518, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "liuzhuzhu:master", + "ref": "master", + "sha": "f56c08f6925dfa7def6e51f4f361295480f32603", + "user": { + "login": "liuzhuzhu", + "id": 16386125, + "node_id": "MDQ6VXNlcjE2Mzg2MTI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/16386125?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/liuzhuzhu", + "html_url": "https://github.com/liuzhuzhu", + "followers_url": "https://api.github.com/users/liuzhuzhu/followers", + "following_url": "https://api.github.com/users/liuzhuzhu/following{/other_user}", + "gists_url": "https://api.github.com/users/liuzhuzhu/gists{/gist_id}", + "starred_url": "https://api.github.com/users/liuzhuzhu/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/liuzhuzhu/subscriptions", + "organizations_url": "https://api.github.com/users/liuzhuzhu/orgs", + "repos_url": "https://api.github.com/users/liuzhuzhu/repos", + "events_url": "https://api.github.com/users/liuzhuzhu/events{/privacy}", + "received_events_url": "https://api.github.com/users/liuzhuzhu/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 209932221, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDk5MzIyMjE=", + "name": "lzz-gulimall", + "full_name": "liuzhuzhu/lzz-gulimall", + "private": false, + "owner": { + "login": "liuzhuzhu", + "id": 16386125, + "node_id": "MDQ6VXNlcjE2Mzg2MTI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/16386125?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/liuzhuzhu", + "html_url": "https://github.com/liuzhuzhu", + "followers_url": "https://api.github.com/users/liuzhuzhu/followers", + "following_url": "https://api.github.com/users/liuzhuzhu/following{/other_user}", + "gists_url": "https://api.github.com/users/liuzhuzhu/gists{/gist_id}", + "starred_url": "https://api.github.com/users/liuzhuzhu/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/liuzhuzhu/subscriptions", + "organizations_url": "https://api.github.com/users/liuzhuzhu/orgs", + "repos_url": "https://api.github.com/users/liuzhuzhu/repos", + "events_url": "https://api.github.com/users/liuzhuzhu/events{/privacy}", + "received_events_url": "https://api.github.com/users/liuzhuzhu/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/liuzhuzhu/lzz-gulimall", + "description": "第四次 不再是一个maven工程", + "fork": false, + "url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall", + "forks_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/forks", + "keys_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/teams", + "hooks_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/hooks", + "issue_events_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/issues/events{/number}", + "events_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/events", + "assignees_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/assignees{/user}", + "branches_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/branches{/branch}", + "tags_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/tags", + "blobs_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/statuses/{sha}", + "languages_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/languages", + "stargazers_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/stargazers", + "contributors_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/contributors", + "subscribers_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/subscribers", + "subscription_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/subscription", + "commits_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/contents/{+path}", + "compare_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/merges", + "archive_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/downloads", + "issues_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/issues{/number}", + "pulls_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/pulls{/number}", + "milestones_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/milestones{/number}", + "notifications_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/labels{/name}", + "releases_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/releases{/id}", + "deployments_url": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/deployments", + "created_at": "2019-09-21T05:48:31Z", + "updated_at": "2019-09-21T05:56:17Z", + "pushed_at": "2019-10-21T21:54:50Z", + "git_url": "git://github.com/liuzhuzhu/lzz-gulimall.git", + "ssh_url": "git@github.com:liuzhuzhu/lzz-gulimall.git", + "clone_url": "https://github.com/liuzhuzhu/lzz-gulimall.git", + "svn_url": "https://github.com/liuzhuzhu/lzz-gulimall", + "homepage": null, + "size": 1518, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/pulls/1" + }, + "html": { + "href": "https://github.com/liuzhuzhu/lzz-gulimall/pull/1" + }, + "issue": { + "href": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/issues/1" + }, + "comments": { + "href": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/issues/1/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/pulls/1/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/pulls/1/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/liuzhuzhu/lzz-gulimall/statuses/40cbe912a01a6b92b785a88e7019ae347a54b7dc" + } + }, + "author_association": "NONE", + "merged": false, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 1, + "deletions": 1, + "changed_files": 1 + } + }, + "public": true, + "created_at": "2019-10-21T21:54:51Z" + }, + { + "id": "10680625312", + "type": "CreateEvent", + "actor": { + "id": 26723694, + "login": "VARUN2197", + "display_login": "VARUN2197", + "gravatar_id": "", + "url": "https://api.github.com/users/VARUN2197", + "avatar_url": "https://avatars.githubusercontent.com/u/26723694?" + }, + "repo": { + "id": 216671875, + "name": "VARUN2197/zodiacApp", + "url": "https://api.github.com/repos/VARUN2197/zodiacApp" + }, + "payload": { + "ref": "master", + "ref_type": "branch", + "master_branch": "master", + "description": null, + "pusher_type": "user" + }, + "public": true, + "created_at": "2019-10-21T21:54:51Z" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/__files/user-01c5f6e9-2ce9-42bf-acda-20cb8cc7bf8e.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/__files/user-01c5f6e9-2ce9-42bf-acda-20cb8cc7bf8e.json new file mode 100644 index 0000000000..0bc89b5312 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/__files/user-01c5f6e9-2ce9-42bf-acda-20cb8cc7bf8e.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 168, + "public_gists": 6, + "followers": 139, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/mappings/events-10-3894dd.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/mappings/events-10-3894dd.json new file mode 100644 index 0000000000..dd12b9f1dc --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/mappings/events-10-3894dd.json @@ -0,0 +1,45 @@ +{ + "id": "3894ddd2-ac57-4592-bc01-9e5d7f93ef6e", + "name": "events", + "request": { + "url": "/events?page=9", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "events-3894ddd2-ac57-4592-bc01-9e5d7f93ef6e.json", + "headers": { + "Date": "Mon, 21 Oct 2019 21:59:56 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4965", + "X-RateLimit-Reset": "1571698634", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"5862dd7d98ddfdeb9133b8e16856b0d0\"", + "Last-Modified": "Mon, 21 Oct 2019 21:54:48 GMT", + "X-Poll-Interval": "60", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F8EC:3E5C:DAF5B:104D1B:5DAE2A5C", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "3894ddd2-ac57-4592-bc01-9e5d7f93ef6e", + "persistent": true, + "insertionIndex": 10 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/mappings/events-11-1f4bc3.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/mappings/events-11-1f4bc3.json new file mode 100644 index 0000000000..76451c84c4 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/mappings/events-11-1f4bc3.json @@ -0,0 +1,45 @@ +{ + "id": "1f4bc3c9-b53c-4cab-ba72-bf9eaea1dc2d", + "name": "events", + "request": { + "url": "/events?page=10", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "events-1f4bc3c9-b53c-4cab-ba72-bf9eaea1dc2d.json", + "headers": { + "Date": "Mon, 21 Oct 2019 21:59:57 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4964", + "X-RateLimit-Reset": "1571698634", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"914cf40313b71893255259a65b717261\"", + "Last-Modified": "Mon, 21 Oct 2019 21:54:47 GMT", + "X-Poll-Interval": "60", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F8EC:3E5C:DAF81:104D4B:5DAE2A5C", + "Link": "; rel=\"prev\", ; rel=\"first\"" + } + }, + "uuid": "1f4bc3c9-b53c-4cab-ba72-bf9eaea1dc2d", + "persistent": true, + "insertionIndex": 11 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/mappings/events-2-d66da8.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/mappings/events-2-d66da8.json new file mode 100644 index 0000000000..56117717ff --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/mappings/events-2-d66da8.json @@ -0,0 +1,45 @@ +{ + "id": "d66da82e-6a4f-496f-824c-53e4db13d18a", + "name": "events", + "request": { + "url": "/events", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "events-d66da82e-6a4f-496f-824c-53e4db13d18a.json", + "headers": { + "Date": "Mon, 21 Oct 2019 21:59:52 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4973", + "X-RateLimit-Reset": "1571698634", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"01eb5d170ab95e151979e070a49611c2\"", + "Last-Modified": "Mon, 21 Oct 2019 21:54:52 GMT", + "X-Poll-Interval": "60", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F8EC:3E5C:DAD3B:104A5B:5DAE2A57", + "Link": "; rel=\"next\", ; rel=\"last\"" + } + }, + "uuid": "d66da82e-6a4f-496f-824c-53e4db13d18a", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/mappings/events-3-d3ce34.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/mappings/events-3-d3ce34.json new file mode 100644 index 0000000000..f58e499e02 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/mappings/events-3-d3ce34.json @@ -0,0 +1,45 @@ +{ + "id": "d3ce344a-2eeb-443b-9929-612fb9cbde1f", + "name": "events", + "request": { + "url": "/events?page=2", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "events-d3ce344a-2eeb-443b-9929-612fb9cbde1f.json", + "headers": { + "Date": "Mon, 21 Oct 2019 21:59:53 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4972", + "X-RateLimit-Reset": "1571698634", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"cc64ac435b4e3533e2725cb902c726c4\"", + "Last-Modified": "Mon, 21 Oct 2019 21:54:51 GMT", + "X-Poll-Interval": "60", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F8EC:3E5C:DAD77:104AD3:5DAE2A58", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "d3ce344a-2eeb-443b-9929-612fb9cbde1f", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/mappings/events-4-794078.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/mappings/events-4-794078.json new file mode 100644 index 0000000000..dae11c6a09 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/mappings/events-4-794078.json @@ -0,0 +1,45 @@ +{ + "id": "79407878-4e6c-4d87-a3b7-f2d003b89d91", + "name": "events", + "request": { + "url": "/events?page=3", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "events-79407878-4e6c-4d87-a3b7-f2d003b89d91.json", + "headers": { + "Date": "Mon, 21 Oct 2019 21:59:53 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4971", + "X-RateLimit-Reset": "1571698634", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"cc64ac435b4e3533e2725cb902c726c4\"", + "Last-Modified": "Mon, 21 Oct 2019 21:54:51 GMT", + "X-Poll-Interval": "60", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F8EC:3E5C:DADCC:104B31:5DAE2A59", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "79407878-4e6c-4d87-a3b7-f2d003b89d91", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/mappings/events-5-5d107a.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/mappings/events-5-5d107a.json new file mode 100644 index 0000000000..ee91b6e3a7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/mappings/events-5-5d107a.json @@ -0,0 +1,45 @@ +{ + "id": "5d107ab6-f41e-41dd-b699-ed83c6edbceb", + "name": "events", + "request": { + "url": "/events?page=4", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "events-5d107ab6-f41e-41dd-b699-ed83c6edbceb.json", + "headers": { + "Date": "Mon, 21 Oct 2019 21:59:54 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4970", + "X-RateLimit-Reset": "1571698634", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"ca3ad424754364911e4fe844de396c08\"", + "Last-Modified": "Mon, 21 Oct 2019 21:54:50 GMT", + "X-Poll-Interval": "60", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F8EC:3E5C:DAE18:104B7E:5DAE2A59", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "5d107ab6-f41e-41dd-b699-ed83c6edbceb", + "persistent": true, + "insertionIndex": 5 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/mappings/events-6-6f4a1d.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/mappings/events-6-6f4a1d.json new file mode 100644 index 0000000000..1d2429ff3e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/mappings/events-6-6f4a1d.json @@ -0,0 +1,45 @@ +{ + "id": "6f4a1d77-46f9-4f38-a260-953487c97b4f", + "name": "events", + "request": { + "url": "/events?page=5", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "events-6f4a1d77-46f9-4f38-a260-953487c97b4f.json", + "headers": { + "Date": "Mon, 21 Oct 2019 21:59:54 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4969", + "X-RateLimit-Reset": "1571698634", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"30b3c980ec502ed60846aedb00322d78\"", + "Last-Modified": "Mon, 21 Oct 2019 21:54:51 GMT", + "X-Poll-Interval": "60", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F8EC:3E5C:DAE55:104BE5:5DAE2A5A", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "6f4a1d77-46f9-4f38-a260-953487c97b4f", + "persistent": true, + "insertionIndex": 6 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/mappings/events-7-6354ff.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/mappings/events-7-6354ff.json new file mode 100644 index 0000000000..97e3b4e131 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/mappings/events-7-6354ff.json @@ -0,0 +1,45 @@ +{ + "id": "6354ffb5-fa83-474c-94ea-f91ca33f5a71", + "name": "events", + "request": { + "url": "/events?page=6", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "events-6354ffb5-fa83-474c-94ea-f91ca33f5a71.json", + "headers": { + "Date": "Mon, 21 Oct 2019 21:59:55 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4968", + "X-RateLimit-Reset": "1571698634", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"79886820d17e48d443179e2e533ff1bb\"", + "Last-Modified": "Mon, 21 Oct 2019 21:54:49 GMT", + "X-Poll-Interval": "60", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F8EC:3E5C:DAE93:104C31:5DAE2A5A", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "6354ffb5-fa83-474c-94ea-f91ca33f5a71", + "persistent": true, + "insertionIndex": 7 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/mappings/events-8-3719d1.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/mappings/events-8-3719d1.json new file mode 100644 index 0000000000..b4fcaa92c3 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/mappings/events-8-3719d1.json @@ -0,0 +1,45 @@ +{ + "id": "3719d162-a479-4a4c-803c-6747e224509c", + "name": "events", + "request": { + "url": "/events?page=7", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "events-3719d162-a479-4a4c-803c-6747e224509c.json", + "headers": { + "Date": "Mon, 21 Oct 2019 21:59:55 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4967", + "X-RateLimit-Reset": "1571698634", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"18f3cb6540885da24fb8a595f0a863e0\"", + "Last-Modified": "Mon, 21 Oct 2019 21:54:50 GMT", + "X-Poll-Interval": "60", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F8EC:3E5C:DAEF3:104C8E:5DAE2A5B", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "3719d162-a479-4a4c-803c-6747e224509c", + "persistent": true, + "insertionIndex": 8 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/mappings/events-9-982884.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/mappings/events-9-982884.json new file mode 100644 index 0000000000..494eb6024b --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/mappings/events-9-982884.json @@ -0,0 +1,45 @@ +{ + "id": "98288433-46b1-4ad0-9857-c44ae6ac3182", + "name": "events", + "request": { + "url": "/events?page=8", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "events-98288433-46b1-4ad0-9857-c44ae6ac3182.json", + "headers": { + "Date": "Mon, 21 Oct 2019 21:59:56 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4966", + "X-RateLimit-Reset": "1571698634", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"96693e93dd969b2007f637e182463fb4\"", + "Last-Modified": "Mon, 21 Oct 2019 21:54:49 GMT", + "X-Poll-Interval": "60", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F8EC:3E5C:DAF2D:104CE8:5DAE2A5B", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "98288433-46b1-4ad0-9857-c44ae6ac3182", + "persistent": true, + "insertionIndex": 9 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/mappings/user-1-01c5f6.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/mappings/user-1-01c5f6.json new file mode 100644 index 0000000000..adc458ce67 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/mappings/user-1-01c5f6.json @@ -0,0 +1,43 @@ +{ + "id": "01c5f6e9-2ce9-42bf-acda-20cb8cc7bf8e", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-01c5f6e9-2ce9-42bf-acda-20cb8cc7bf8e.json", + "headers": { + "Date": "Mon, 21 Oct 2019 21:59:51 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4975", + "X-RateLimit-Reset": "1571698634", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"b3ade9da976cfb0745abc8c0c5812c1e\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F8EC:3E5C:DACD7:104A25:5DAE2A57" + } + }, + "uuid": "01c5f6e9-2ce9-42bf-acda-20cb8cc7bf8e", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/__files/orgs_github-api-baecb5db-6e9c-441b-8414-c8070d9bc0c2.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/__files/orgs_github-api-baecb5db-6e9c-441b-8414-c8070d9bc0c2.json new file mode 100644 index 0000000000..7dc968a992 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/__files/orgs_github-api-baecb5db-6e9c-441b-8414-c8070d9bc0c2.json @@ -0,0 +1,41 @@ +{ + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "url": "https://api.github.com/orgs/github-api", + "repos_url": "https://api.github.com/orgs/github-api/repos", + "events_url": "https://api.github.com/orgs/github-api/events", + "hooks_url": "https://api.github.com/orgs/github-api/hooks", + "issues_url": "https://api.github.com/orgs/github-api/issues", + "members_url": "https://api.github.com/orgs/github-api/members{/member}", + "public_members_url": "https://api.github.com/orgs/github-api/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "description": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 1, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/github-api", + "created_at": "2019-09-04T18:12:34Z", + "updated_at": "2019-09-04T18:12:34Z", + "type": "Organization", + "total_private_repos": 0, + "owned_private_repos": 0, + "private_gists": 0, + "disk_usage": 12072, + "collaborators": 0, + "billing_email": "bitwiseman@gmail.com", + "default_repository_permission": "read", + "members_can_create_repositories": true, + "two_factor_requirement_enabled": false, + "plan": { + "name": "free", + "space": 976562499, + "private_repos": 0, + "filled_seats": 2, + "seats": 0 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/__files/repos_github-api_github-api-891820f6-7cd7-437a-8ec1-16c3e76c53ec.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/__files/repos_github-api_github-api-891820f6-7cd7-437a-8ec1-16c3e76c53ec.json new file mode 100644 index 0000000000..d9a933acc1 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/__files/repos_github-api_github-api-891820f6-7cd7-437a-8ec1-16c3e76c53ec.json @@ -0,0 +1,130 @@ +{ + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-10-03T21:38:52Z", + "pushed_at": "2019-10-03T23:00:11Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 12072, + "stargazers_count": 557, + "watchers_count": 557, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 428, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 89, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 428, + "open_issues": 89, + "watchers": 557, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "network_count": 428, + "subscribers_count": 50 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/__files/repos_github-api_github-api_issues-a70d05ac-5820-4749-8318-e422f0f6eaf5.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/__files/repos_github-api_github-api_issues-a70d05ac-5820-4749-8318-e422f0f6eaf5.json new file mode 100644 index 0000000000..993ec36e93 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/__files/repos_github-api_github-api_issues-a70d05ac-5820-4749-8318-e422f0f6eaf5.json @@ -0,0 +1,1595 @@ +[ + { + "url": "https://api.github.com/repos/github-api/github-api/issues/560", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/560/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/560/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/560/events", + "html_url": "https://github.com/github-api/github-api/issues/560", + "id": 501993460, + "node_id": "MDU6SXNzdWU1MDE5OTM0NjA=", + "number": 560, + "title": "Login details", + "user": { + "login": "Aleonor1", + "id": 39700857, + "node_id": "MDQ6VXNlcjM5NzAwODU3", + "avatar_url": "https://avatars0.githubusercontent.com/u/39700857?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Aleonor1", + "html_url": "https://github.com/Aleonor1", + "followers_url": "https://api.github.com/users/Aleonor1/followers", + "following_url": "https://api.github.com/users/Aleonor1/following{/other_user}", + "gists_url": "https://api.github.com/users/Aleonor1/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Aleonor1/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Aleonor1/subscriptions", + "organizations_url": "https://api.github.com/users/Aleonor1/orgs", + "repos_url": "https://api.github.com/users/Aleonor1/repos", + "events_url": "https://api.github.com/users/Aleonor1/events{/privacy}", + "received_events_url": "https://api.github.com/users/Aleonor1/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2019-10-03T10:54:51Z", + "updated_at": "2019-10-03T16:59:16Z", + "closed_at": "2019-10-03T16:59:15Z", + "author_association": "NONE", + "body": "When you are using connectUsingPassword how do you know if your credentials are ok or not? \r\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/559", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/559/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/559/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/559/events", + "html_url": "https://github.com/github-api/github-api/pull/559", + "id": 501580466, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzIzODI1NzMw", + "number": 559, + "title": "Bump okhttp3.version from 3.12.3 to 4.2.1", + "user": { + "login": "dependabot-preview[bot]", + "id": 27856297, + "node_id": "MDM6Qm90Mjc4NTYyOTc=", + "avatar_url": "https://avatars3.githubusercontent.com/in/2141?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dependabot-preview%5Bbot%5D", + "html_url": "https://github.com/apps/dependabot-preview", + "followers_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "labels": [ + { + "id": 1576019209, + "node_id": "MDU6TGFiZWwxNTc2MDE5MjA5", + "url": "https://api.github.com/repos/github-api/github-api/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2019-10-02T15:58:08Z", + "updated_at": "2019-10-02T16:10:47Z", + "closed_at": "2019-10-02T16:10:36Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/559", + "html_url": "https://github.com/github-api/github-api/pull/559", + "diff_url": "https://github.com/github-api/github-api/pull/559.diff", + "patch_url": "https://github.com/github-api/github-api/pull/559.patch" + }, + "body": "Bumps `okhttp3.version` from 3.12.3 to 4.2.1.\n\nUpdates `okhttp` from 3.12.3 to 4.2.1\n
        \nChangelog\n\n*Sourced from [okhttp's changelog](https://github.com/square/okhttp/blob/master/CHANGELOG.md).*\n\n> ## Version 4.2.1\n> \n> _2019-10-02_\n> \n> * Fix: In 4.1.0 we introduced a performance regression that prevented connections from being\n> pooled in certain situations. We have good test coverage for connection pooling but we missed\n> this because it only occurs if you have proxy configured and you share a connection pool among\n> multiple `OkHttpClient` instances.\n> \n> This particularly-subtle bug was caused by us assigning each `OkHttpClient` instance its own\n> `NullProxySelector` when an explicit proxy is configured. But we don't share connections when\n> the proxy selectors are different. Ugh!\n> \n> \n> ## Version 4.2.0\n> \n> _2019-09-10_\n> \n> * New: API to decode a certificate and private key to create a `HeldCertificate`. This accepts a\n> string containing both a certificate and PKCS #8-encoded private key.\n> \n> ```kotlin\n> val heldCertificate = HeldCertificate.decode(\"\"\"\n> |-----BEGIN CERTIFICATE-----\n> |MIIBYTCCAQegAwIBAgIBKjAKBggqhkjOPQQDAjApMRQwEgYDVQQLEwtlbmdpbmVl\n> |cmluZzERMA8GA1UEAxMIY2FzaC5hcHAwHhcNNzAwMTAxMDAwMDA1WhcNNzAwMTAx\n> |MDAwMDEwWjApMRQwEgYDVQQLEwtlbmdpbmVlcmluZzERMA8GA1UEAxMIY2FzaC5h\n> |cHAwWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAASda8ChkQXxGELnrV/oBnIAx3dD\n> |ocUOJfdz4pOJTP6dVQB9U3UBiW5uSX/MoOD0LL5zG3bVyL3Y6pDwKuYvfLNhoyAw\n> |HjAcBgNVHREBAf8EEjAQhwQBAQEBgghjYXNoLmFwcDAKBggqhkjOPQQDAgNIADBF\n> |AiAyHHg1N6YDDQiY920+cnI5XSZwEGhAtb9PYWO8bLmkcQIhAI2CfEZf3V/obmdT\n> |yyaoEufLKVXhrTQhRfodTeigi4RX\n> |-----END CERTIFICATE-----\n> |-----BEGIN PRIVATE KEY-----\n> |MEECAQAwEwYHKoZIzj0CAQYIKoZIzj0DAQcEJzAlAgEBBCA7ODT0xhGSNn4ESj6J\n> |lu/GJQZoU9lDrCPeUcQ28tzOWw==\n> |-----END PRIVATE KEY-----\n> \"\"\".trimMargin())\n> val handshakeCertificates = HandshakeCertificates.Builder()\n> .heldCertificate(heldCertificate)\n> .build()\n> val server = MockWebServer()\n> server.useHttps(handshakeCertificates.sslSocketFactory(), false)\n> ```\n> \n> Get these strings with `HeldCertificate.certificatePem()` and `privateKeyPkcs8Pem()`.\n> \n> * Fix: Handshake now returns peer certificates in canonical order: each certificate is signed by\n> the certificate that follows and the last certificate is signed by a trusted root.\n> \n> ... (truncated)\n
        \n
        \nCommits\n\n- [`57a165b`](https://github.com/square/okhttp/commit/57a165b69c6551c1caec8a557e0e9c9abf54b536) Prepare for release 4.2.1.\n- [`4c640ad`](https://github.com/square/okhttp/commit/4c640ad6c3016f49e753b5c86ab5c4d8b072bb66) Merge pull request [#5524](https://github-redirect.dependabot.com/square/okhttp/issues/5524) from square/jwilson.1002.cherrypick_poolfix\n- [`1b4b6bb`](https://github.com/square/okhttp/commit/1b4b6bbc82206816ced207bb0132611f770c56cd) Fix connection pooling for different clients with the same pool.\n- [`582f8ef`](https://github.com/square/okhttp/commit/582f8ef2f78cf001d479cb65831674289fd83af0) Prepare for release 4.2.0.\n- [`9b60ca8`](https://github.com/square/okhttp/commit/9b60ca8e88445de48997d3391ae15417a6ef5d90) Merge pull request [#5434](https://github-redirect.dependabot.com/square/okhttp/issues/5434) from square/jwilson.0909.race\n- [`510475a`](https://github.com/square/okhttp/commit/510475a21586fdf6010312a1950dca6e87cb6d2e) Don't leak incoming bytes when we race incoming data and close\n- [`2cdbbda`](https://github.com/square/okhttp/commit/2cdbbda64a8f01c48658a2101aca206389b50878) Hows My Ssl test for Android ([#5428](https://github-redirect.dependabot.com/square/okhttp/issues/5428))\n- [`3464ef3`](https://github.com/square/okhttp/commit/3464ef37e4fceb997df9c95cadce6fcc38102450) Merge pull request [#5431](https://github-redirect.dependabot.com/square/okhttp/issues/5431) from square/jwilson.0907.ack_apply_atomically\n- [`bd6a97a`](https://github.com/square/okhttp/commit/bd6a97a7200dda2127a0a6b7167fef0d09febf27) Acknowledge and apply inbound settings atomically\n- [`3490c7e`](https://github.com/square/okhttp/commit/3490c7ef9598e99bc298208f68022b36fecb21ce) Merge pull request [#5427](https://github-redirect.dependabot.com/square/okhttp/issues/5427) from square/jwilson.0905.decode_pems\n- Additional commits viewable in [compare view](https://github.com/square/okhttp/compare/parent-3.12.3...parent-4.2.1)\n
        \n
        \n\nUpdates `okhttp-urlconnection` from 3.12.3 to 4.2.1\n
        \nChangelog\n\n*Sourced from [okhttp-urlconnection's changelog](https://github.com/square/okhttp/blob/master/CHANGELOG.md).*\n\n> ## Version 4.2.1\n> \n> _2019-10-02_\n> \n> * Fix: In 4.1.0 we introduced a performance regression that prevented connections from being\n> pooled in certain situations. We have good test coverage for connection pooling but we missed\n> this because it only occurs if you have proxy configured and you share a connection pool among\n> multiple `OkHttpClient` instances.\n> \n> This particularly-subtle bug was caused by us assigning each `OkHttpClient` instance its own\n> `NullProxySelector` when an explicit proxy is configured. But we don't share connections when\n> the proxy selectors are different. Ugh!\n> \n> \n> ## Version 4.2.0\n> \n> _2019-09-10_\n> \n> * New: API to decode a certificate and private key to create a `HeldCertificate`. This accepts a\n> string containing both a certificate and PKCS #8-encoded private key.\n> \n> ```kotlin\n> val heldCertificate = HeldCertificate.decode(\"\"\"\n> |-----BEGIN CERTIFICATE-----\n> |MIIBYTCCAQegAwIBAgIBKjAKBggqhkjOPQQDAjApMRQwEgYDVQQLEwtlbmdpbmVl\n> |cmluZzERMA8GA1UEAxMIY2FzaC5hcHAwHhcNNzAwMTAxMDAwMDA1WhcNNzAwMTAx\n> |MDAwMDEwWjApMRQwEgYDVQQLEwtlbmdpbmVlcmluZzERMA8GA1UEAxMIY2FzaC5h\n> |cHAwWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAASda8ChkQXxGELnrV/oBnIAx3dD\n> |ocUOJfdz4pOJTP6dVQB9U3UBiW5uSX/MoOD0LL5zG3bVyL3Y6pDwKuYvfLNhoyAw\n> |HjAcBgNVHREBAf8EEjAQhwQBAQEBgghjYXNoLmFwcDAKBggqhkjOPQQDAgNIADBF\n> |AiAyHHg1N6YDDQiY920+cnI5XSZwEGhAtb9PYWO8bLmkcQIhAI2CfEZf3V/obmdT\n> |yyaoEufLKVXhrTQhRfodTeigi4RX\n> |-----END CERTIFICATE-----\n> |-----BEGIN PRIVATE KEY-----\n> |MEECAQAwEwYHKoZIzj0CAQYIKoZIzj0DAQcEJzAlAgEBBCA7ODT0xhGSNn4ESj6J\n> |lu/GJQZoU9lDrCPeUcQ28tzOWw==\n> |-----END PRIVATE KEY-----\n> \"\"\".trimMargin())\n> val handshakeCertificates = HandshakeCertificates.Builder()\n> .heldCertificate(heldCertificate)\n> .build()\n> val server = MockWebServer()\n> server.useHttps(handshakeCertificates.sslSocketFactory(), false)\n> ```\n> \n> Get these strings with `HeldCertificate.certificatePem()` and `privateKeyPkcs8Pem()`.\n> \n> * Fix: Handshake now returns peer certificates in canonical order: each certificate is signed by\n> the certificate that follows and the last certificate is signed by a trusted root.\n> \n> ... (truncated)\n
        \n
        \nCommits\n\n- [`57a165b`](https://github.com/square/okhttp/commit/57a165b69c6551c1caec8a557e0e9c9abf54b536) Prepare for release 4.2.1.\n- [`4c640ad`](https://github.com/square/okhttp/commit/4c640ad6c3016f49e753b5c86ab5c4d8b072bb66) Merge pull request [#5524](https://github-redirect.dependabot.com/square/okhttp/issues/5524) from square/jwilson.1002.cherrypick_poolfix\n- [`1b4b6bb`](https://github.com/square/okhttp/commit/1b4b6bbc82206816ced207bb0132611f770c56cd) Fix connection pooling for different clients with the same pool.\n- [`582f8ef`](https://github.com/square/okhttp/commit/582f8ef2f78cf001d479cb65831674289fd83af0) Prepare for release 4.2.0.\n- [`9b60ca8`](https://github.com/square/okhttp/commit/9b60ca8e88445de48997d3391ae15417a6ef5d90) Merge pull request [#5434](https://github-redirect.dependabot.com/square/okhttp/issues/5434) from square/jwilson.0909.race\n- [`510475a`](https://github.com/square/okhttp/commit/510475a21586fdf6010312a1950dca6e87cb6d2e) Don't leak incoming bytes when we race incoming data and close\n- [`2cdbbda`](https://github.com/square/okhttp/commit/2cdbbda64a8f01c48658a2101aca206389b50878) Hows My Ssl test for Android ([#5428](https://github-redirect.dependabot.com/square/okhttp/issues/5428))\n- [`3464ef3`](https://github.com/square/okhttp/commit/3464ef37e4fceb997df9c95cadce6fcc38102450) Merge pull request [#5431](https://github-redirect.dependabot.com/square/okhttp/issues/5431) from square/jwilson.0907.ack_apply_atomically\n- [`bd6a97a`](https://github.com/square/okhttp/commit/bd6a97a7200dda2127a0a6b7167fef0d09febf27) Acknowledge and apply inbound settings atomically\n- [`3490c7e`](https://github.com/square/okhttp/commit/3490c7ef9598e99bc298208f68022b36fecb21ce) Merge pull request [#5427](https://github-redirect.dependabot.com/square/okhttp/issues/5427) from square/jwilson.0905.decode_pems\n- Additional commits viewable in [compare view](https://github.com/square/okhttp/compare/parent-3.12.3...parent-4.2.1)\n
        \n
        \n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
        \nDependabot commands and options\n
        \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language\n- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language\n- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language\n- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language\n- `@dependabot badge me` will comment on this PR with code to add a \"Dependabot enabled\" badge to your readme\n\nAdditionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com):\n- Update frequency (including time of day and day of week)\n- Pull request limits (per update run and/or open at any time)\n- Out-of-range updates (receive only lockfile updates, if desired)\n- Security updates (receive only security updates, if desired)\n\nFinally, you can contact us by mentioning @dependabot.\n\n
        " + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/558", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/558/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/558/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/558/events", + "html_url": "https://github.com/github-api/github-api/pull/558", + "id": 501580160, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzIzODI1NDg0", + "number": 558, + "title": "Bump okio from 2.2.2 to 2.4.0", + "user": { + "login": "dependabot-preview[bot]", + "id": 27856297, + "node_id": "MDM6Qm90Mjc4NTYyOTc=", + "avatar_url": "https://avatars3.githubusercontent.com/in/2141?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dependabot-preview%5Bbot%5D", + "html_url": "https://github.com/apps/dependabot-preview", + "followers_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "labels": [ + { + "id": 1576019209, + "node_id": "MDU6TGFiZWwxNTc2MDE5MjA5", + "url": "https://api.github.com/repos/github-api/github-api/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-10-02T15:57:36Z", + "updated_at": "2019-10-02T16:13:05Z", + "closed_at": "2019-10-02T16:12:46Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/558", + "html_url": "https://github.com/github-api/github-api/pull/558", + "diff_url": "https://github.com/github-api/github-api/pull/558.diff", + "patch_url": "https://github.com/github-api/github-api/pull/558.patch" + }, + "body": "Bumps [okio](https://github.com/square/okio) from 2.2.2 to 2.4.0.\n
        \nChangelog\n\n*Sourced from [okio's changelog](https://github.com/square/okio/blob/master/CHANGELOG.md).*\n\n> ### Version 2.4.0\n> \n> _2019-08-26_\n> \n> * New: Upgrade to Kotlin 1.3.50.\n> \n> \n> ### Version 2.3.0\n> \n> _2019-07-29_\n> \n> **This release changes our build from Kotlin-JVM to Kotlin-multiplatform (which includes JVM).**\n> Both native and JavaScript platforms are unstable preview releases and subject to\n> backwards-incompatible changes in forthcoming releases.\n> \n> To try Okio in a multiplatform project use this Maven coordinate:\n> \n> ```kotlin\n> api('com.squareup.okio:okio-multiplatform:2.3.0')\n> ```\n> \n> You’ll also need to [enable Gradle metadata][gradle_metadata] in your project's settings. The\n> artifact name for JVM projects has not changed.\n> \n> * New: Upgrade to Kotlin 1.3.40.\n> * Fix: Use Gradle `api` instead of `implementation` for the kotlin-stdlib dependency.\n> * Fix: Don't block unless strictly necessary in `BufferedSource.peek()`.\n> \n> ## Version 1.17.4\n> \n> _2019-04-29_\n> \n> * Fix: Don't block unless strictly necessary in `BufferedSource.peek()`.\n
        \n
        \nCommits\n\n- [`35a6919`](https://github.com/square/okio/commit/35a69198bb17c7d8dc2b59aa2d4ffae3c201c599) Prepare for release 2.4.0.\n- [`1ab5136`](https://github.com/square/okio/commit/1ab5136fc3a7c3a713d1d82053643612b44aa092) Merge pull request [#650](https://github-redirect.dependabot.com/square/okio/issues/650) from square/jakew/repeat/2019-08-23\n- [`533b7da`](https://github.com/square/okio/commit/533b7dae1aafd007de3bfe58cf619aeec101e36b) Remove TestUtils.repeat in favor of Kotlin repeat\n- [`589c56c`](https://github.com/square/okio/commit/589c56c98b08dc690024fa0268885b08e3c61497) Kotlin 1.3.50 ([#649](https://github-redirect.dependabot.com/square/okio/issues/649))\n- [`29c16f9`](https://github.com/square/okio/commit/29c16f91a148db2df233bf734d229019db664824) Merge pull request [#648](https://github-redirect.dependabot.com/square/okio/issues/648) from square/egorand/190815/kotlin-1.3.50-eap\n- [`efaae11`](https://github.com/square/okio/commit/efaae11bd92d48ac303238b3f6b27c192c70541e) Kotlin 1.3.50-eap\n- [`a93f96c`](https://github.com/square/okio/commit/a93f96c0dc2b1256f209ec719dc96b6c121bba45) Update ktlint gradle to 8.2.0 version. ([#642](https://github-redirect.dependabot.com/square/okio/issues/642))\n- [`16cde1a`](https://github.com/square/okio/commit/16cde1a986fe921e6bad94a3f26841726c39797d) Merge pull request [#644](https://github-redirect.dependabot.com/square/okio/issues/644) from square/egorand/190805/kill-node\n- [`9376cb3`](https://github.com/square/okio/commit/9376cb360531f1f9af11af6063f3f171feecd19c) Merge pull request [#643](https://github-redirect.dependabot.com/square/okio/issues/643) from square/egorand/190804/gradle-5.5.1\n- [`5de9874`](https://github.com/square/okio/commit/5de9874d35a26c8ae0da8c302990cca1a11ea725) Node plugin is not needed anymore\n- Additional commits viewable in [compare view](https://github.com/square/okio/compare/2.2.2...parent-2.4.0)\n
        \n
        \n\n[![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=com.squareup.okio:okio&package-manager=maven&previous-version=2.2.2&new-version=2.4.0)](https://dependabot.com/compatibility-score.html?dependency-name=com.squareup.okio:okio&package-manager=maven&previous-version=2.2.2&new-version=2.4.0)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
        \nDependabot commands and options\n
        \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language\n- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language\n- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language\n- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language\n- `@dependabot badge me` will comment on this PR with code to add a \"Dependabot enabled\" badge to your readme\n\nAdditionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com):\n- Update frequency (including time of day and day of week)\n- Pull request limits (per update run and/or open at any time)\n- Out-of-range updates (receive only lockfile updates, if desired)\n- Security updates (receive only security updates, if desired)\n\nFinally, you can contact us by mentioning @dependabot.\n\n
        " + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/557", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/557/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/557/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/557/events", + "html_url": "https://github.com/github-api/github-api/pull/557", + "id": 500876257, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzIzMjU2MjA0", + "number": 557, + "title": "Bump mockito-core from 3.0.0 to 3.1.0", + "user": { + "login": "dependabot-preview[bot]", + "id": 27856297, + "node_id": "MDM6Qm90Mjc4NTYyOTc=", + "avatar_url": "https://avatars3.githubusercontent.com/in/2141?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dependabot-preview%5Bbot%5D", + "html_url": "https://github.com/apps/dependabot-preview", + "followers_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "labels": [ + { + "id": 1576019209, + "node_id": "MDU6TGFiZWwxNTc2MDE5MjA5", + "url": "https://api.github.com/repos/github-api/github-api/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-10-01T12:54:03Z", + "updated_at": "2019-10-01T15:26:08Z", + "closed_at": "2019-10-01T15:26:00Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/557", + "html_url": "https://github.com/github-api/github-api/pull/557", + "diff_url": "https://github.com/github-api/github-api/pull/557.diff", + "patch_url": "https://github.com/github-api/github-api/pull/557.patch" + }, + "body": "Bumps [mockito-core](https://github.com/mockito/mockito) from 3.0.0 to 3.1.0.\n
        \nRelease notes\n\n*Sourced from [mockito-core's releases](https://github.com/mockito/mockito/releases).*\n\n> ## v3.1.0\n> *Release notes were automatically generated by [Shipkit](http://shipkit.org/)*\n> \n> #### 3.1.0\n> - 2019-10-01 - [1 commit](https://github.com/mockito/mockito/compare/v3.0.12...v3.1.0) by [Tim van der Lippe](https://github.com/TimvdLippe) - published to [![Bintray](https://img.shields.io/badge/Bintray-3.1.0-green.svg)](https://bintray.com/mockito/maven/mockito/3.1.0)\n> - No pull requests referenced in commit messages.\n> \n> ## v3.0.12\n> *Release notes were automatically generated by [Shipkit](http://shipkit.org/)*\n> \n> #### 3.0.12\n> - 2019-09-30 - [3 commits](https://github.com/mockito/mockito/compare/v3.0.11...v3.0.12) by [Szczepan Faber](https://github.com/mockitoguy) (2), [Tim van der Lippe](https://github.com/TimvdLippe) (1) - published to [![Bintray](https://img.shields.io/badge/Bintray-3.0.12-green.svg)](https://bintray.com/mockito/maven/mockito-development/3.0.12)\n> - Fixed JUnit Jupiter parallel issue [([#1789](https://github-redirect.dependabot.com/mockito/mockito/issues/1789))](https://github-redirect.dependabot.com/mockito/mockito/pull/1789)\n> - Mockito JUnit Jupiter extension does not correctly support parallel test execution [([#1630](https://github-redirect.dependabot.com/mockito/mockito/issues/1630))](https://github-redirect.dependabot.com/mockito/mockito/issues/1630)\n> \n> ## v3.0.11\n> *Release notes were automatically generated by [Shipkit](http://shipkit.org/)*\n> \n> #### 3.0.11\n> - 2019-09-28 - [2 commits](https://github.com/mockito/mockito/compare/v3.0.10...v3.0.11) by [Szczepan Faber](https://github.com/mockitoguy) - published to [![Bintray](https://img.shields.io/badge/Bintray-3.0.11-green.svg)](https://bintray.com/mockito/maven/mockito-development/3.0.11)\n> - Upgraded JUnit Jupiter 5.1.1 -> 5.4.2 [([#1788](https://github-redirect.dependabot.com/mockito/mockito/issues/1788))](https://github-redirect.dependabot.com/mockito/mockito/pull/1788)\n> - Mockito JUnit Jupiter extension does not correctly support parallel test execution [([#1630](https://github-redirect.dependabot.com/mockito/mockito/issues/1630))](https://github-redirect.dependabot.com/mockito/mockito/issues/1630)\n> \n> ## v3.0.9\n> *Release notes were automatically generated by [Shipkit](http://shipkit.org/)*\n> \n> #### 3.0.9\n> - 2019-09-25 - [2 commits](https://github.com/mockito/mockito/compare/v3.0.8...v3.0.9) by [Szczepan Faber](https://github.com/mockitoguy) - published to [![Bintray](https://img.shields.io/badge/Bintray-3.0.9-green.svg)](https://bintray.com/mockito/maven/mockito-development/3.0.9)\n> - Cleaned up state after stubbing misuse exception [([#1783](https://github-redirect.dependabot.com/mockito/mockito/issues/1783))](https://github-redirect.dependabot.com/mockito/mockito/pull/1783)\n> - Stubbing not stopped properly when running suite of tests [([#1655](https://github-redirect.dependabot.com/mockito/mockito/issues/1655))](https://github-redirect.dependabot.com/mockito/mockito/issues/1655)\n> \n> ## v3.0.8\n> *Release notes were automatically generated by [Shipkit](http://shipkit.org/)*\n> \n> #### 3.0.8\n> - 2019-09-17 - [2 commits](https://github.com/mockito/mockito/compare/v3.0.7...v3.0.8) by [Dominik Stadler](https://github.com/centic9) (1), [Erhard Pointl](https://github.com/epeee) (1) - published to [![Bintray](https://img.shields.io/badge/Bintray-3.0.8-green.svg)](https://bintray.com/mockito/maven/mockito-development/3.0.8)\n> - Fixes [#1780](https://github-redirect.dependabot.com/mockito/mockito/issues/1780): Close file handle to avoid a file-handle-leak [([#1781](https://github-redirect.dependabot.com/mockito/mockito/issues/1781))](https://github-redirect.dependabot.com/mockito/mockito/pull/1781)\n> - File-handle leak in InlineByteBuddyMockMaker [([#1780](https://github-redirect.dependabot.com/mockito/mockito/issues/1780))](https://github-redirect.dependabot.com/mockito/mockito/issues/1780)\n> - Get rid of no longer used Assertor [([#1777](https://github-redirect.dependabot.com/mockito/mockito/issues/1777))](https://github-redirect.dependabot.com/mockito/mockito/pull/1777)\n> \n> ## v3.0.7\n> *Release notes were automatically generated by [Shipkit](http://shipkit.org/)*\n> \n> #### 3.0.7\n> - 2019-09-04 - [2 commits](https://github.com/mockito/mockito/compare/v3.0.6...v3.0.7) by [Erhard Pointl](https://github.com/epeee) (1), [Guillermo Pascual](https://github.com/pasku) (1) - published to [![Bintray](https://img.shields.io/badge/Bintray-3.0.7-green.svg)](https://bintray.com/mockito/maven/mockito-development/3.0.7)\n> - Fixes [#1769](https://github-redirect.dependabot.com/mockito/mockito/issues/1769): Clarify default strict stubbing behaviour in 3.0.0 [([#1773](https://github-redirect.dependabot.com/mockito/mockito/issues/1773))](https://github-redirect.dependabot.com/mockito/mockito/pull/1773)\n> - Are strict stubs really the default in v3? [([#1769](https://github-redirect.dependabot.com/mockito/mockito/issues/1769))](https://github-redirect.dependabot.com/mockito/mockito/issues/1769)\n> - Update assertj (v3.13.2) [([#1765](https://github-redirect.dependabot.com/mockito/mockito/issues/1765))](https://github-redirect.dependabot.com/mockito/mockito/pull/1765)\n> \n> ## v3.0.6\n> ... (truncated)\n
        \n
        \nCommits\n\n- [`8922326`](https://github.com/mockito/mockito/commit/892232611ef06a4c5861f50416819c9ca3d85ff4) 3.1.0 release (previous 3.0.12) + release notes updated by CI build 4214\n- [`e349807`](https://github.com/mockito/mockito/commit/e34980785cdbdce243aa33475767f4384ee2fd8f) Publish Mockito 3.1.0 to Maven Central\n- [`6dfd529`](https://github.com/mockito/mockito/commit/6dfd5294b2032dea7f77bfae16c8735bf1192ea2) 3.0.12 release (previous 3.0.11) + release notes updated by CI build 4211\n- [`30c50fa`](https://github.com/mockito/mockito/commit/30c50fa3442004996dc9c7b2bcfdae7aaaae3ce6) Merge pull request [#1789](https://github-redirect.dependabot.com/mockito/mockito/issues/1789) from mockito/sf\n- [`5ed8a07`](https://github.com/mockito/mockito/commit/5ed8a07f6ff4d9b5d3011e1891cf12119eb61684) Cleanup traversal of parent contexts\n- [`acce719`](https://github.com/mockito/mockito/commit/acce719fd0b0ab67ff0bea8125dd2056afef7cd5) Fixed JUnit Jupiter parallel issue\n- [`214d465`](https://github.com/mockito/mockito/commit/214d4652aa1971cb554c434b0ac13b376aea33a7) 3.0.11 release (previous 3.0.10) + release notes updated by CI build 4203\n- [`1129199`](https://github.com/mockito/mockito/commit/112919971c0a985b0918a2e0c29b145c14e0d7d8) Merge pull request [#1788](https://github-redirect.dependabot.com/mockito/mockito/issues/1788) from mockito/parallel\n- [`bcf41fd`](https://github.com/mockito/mockito/commit/bcf41fdf9c977eca75b96f49a1567052851434a7) 3.0.10 release (previous 3.0.9) + release notes updated by CI build 4201\n- [`f8581c6`](https://github.com/mockito/mockito/commit/f8581c6e875dc3fb587fe31e85d025ef4d110a3f) Fixes [#1786](https://github-redirect.dependabot.com/mockito/mockito/issues/1786) : Make differences between 'timeout' and 'after' more clear in Ja...\n- Additional commits viewable in [compare view](https://github.com/mockito/mockito/compare/v3.0.0...v3.1.0)\n
        \n
        \n\n[![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=org.mockito:mockito-core&package-manager=maven&previous-version=3.0.0&new-version=3.1.0)](https://dependabot.com/compatibility-score.html?dependency-name=org.mockito:mockito-core&package-manager=maven&previous-version=3.0.0&new-version=3.1.0)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
        \nDependabot commands and options\n
        \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language\n- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language\n- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language\n- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language\n- `@dependabot badge me` will comment on this PR with code to add a \"Dependabot enabled\" badge to your readme\n\nAdditionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com):\n- Update frequency (including time of day and day of week)\n- Pull request limits (per update run and/or open at any time)\n- Out-of-range updates (receive only lockfile updates, if desired)\n- Security updates (receive only security updates, if desired)\n\nFinally, you can contact us by mentioning @dependabot.\n\n
        " + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/556", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/556/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/556/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/556/events", + "html_url": "https://github.com/github-api/github-api/pull/556", + "id": 500133370, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzIyNjYzOTc2", + "number": 556, + "title": "Bump wiremock-jre8-standalone from 2.24.1 to 2.25.0", + "user": { + "login": "dependabot-preview[bot]", + "id": 27856297, + "node_id": "MDM6Qm90Mjc4NTYyOTc=", + "avatar_url": "https://avatars3.githubusercontent.com/in/2141?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dependabot-preview%5Bbot%5D", + "html_url": "https://github.com/apps/dependabot-preview", + "followers_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "labels": [ + { + "id": 1576019209, + "node_id": "MDU6TGFiZWwxNTc2MDE5MjA5", + "url": "https://api.github.com/repos/github-api/github-api/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-30T08:40:18Z", + "updated_at": "2019-09-30T16:13:10Z", + "closed_at": "2019-09-30T16:13:07Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/556", + "html_url": "https://github.com/github-api/github-api/pull/556", + "diff_url": "https://github.com/github-api/github-api/pull/556.diff", + "patch_url": "https://github.com/github-api/github-api/pull/556.patch" + }, + "body": "Bumps [wiremock-jre8-standalone](https://github.com/tomakehurst/wiremock) from 2.24.1 to 2.25.0.\n
        \nCommits\n\n- [`f7fbb84`](https://github.com/tomakehurst/wiremock/commit/f7fbb846cd7b259fddc16ae136056b6582ec47bf) Tweaked test logging in CI\n- [`a125dd9`](https://github.com/tomakehurst/wiremock/commit/a125dd914d2f5db79966bc5db9ebc8a040a700b1) Made junit a compileOnly (provided) dependency to avoid hamcrest class clashe...\n- [`89b9839`](https://github.com/tomakehurst/wiremock/commit/89b98398a29a68f3ac8fd14869f33bfdb10592ae) Jackson version bump (fixing multiple CVEs) ([#1191](https://github-redirect.dependabot.com/tomakehurst/wiremock/issues/1191))\n- [`b4013ff`](https://github.com/tomakehurst/wiremock/commit/b4013ffafc9d86ba0d3785dc05829fed054e2d48) Fixed java7 test broken by littleproxy version switching\n- [`a2014e3`](https://github.com/tomakehurst/wiremock/commit/a2014e3daa573a6eca59017f5e46f6c3215b592a) Added HTTP/2 support in the jre8 version\n- [`f5e3484`](https://github.com/tomakehurst/wiremock/commit/f5e34843cc78720bc9745ec4e7ca1832eb42a6ae) Fixed [#1175](https://github-redirect.dependabot.com/tomakehurst/wiremock/issues/1175) - unable to use absent() with matchesJsonPath due to serialisatio...\n- [`f0cd8f2`](https://github.com/tomakehurst/wiremock/commit/f0cd8f2d1614fbd332b07654e303707b77736fda) Added docs for request journal event removal\n- [`e0c18ef`](https://github.com/tomakehurst/wiremock/commit/e0c18ef70c9f6e8c2c7b48a0b20fe56c024a1099) Added ability to remove serve events by stub metadata\n- [`5b6a366`](https://github.com/tomakehurst/wiremock/commit/5b6a3666f3c04b8d6e99799a9d8ace09ab05cd64) Added ability to remove serve events (logged requests) via a request pattern\n- [`25b057a`](https://github.com/tomakehurst/wiremock/commit/25b057aac4083cf24cd75e87c76de16309cdaf98) Added ability to remove serve events (logged requests) by ID\n- Additional commits viewable in [compare view](https://github.com/tomakehurst/wiremock/compare/2.24.1...2.25.0)\n
        \n
        \n\n[![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=com.github.tomakehurst:wiremock-jre8-standalone&package-manager=maven&previous-version=2.24.1&new-version=2.25.0)](https://dependabot.com/compatibility-score.html?dependency-name=com.github.tomakehurst:wiremock-jre8-standalone&package-manager=maven&previous-version=2.24.1&new-version=2.25.0)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
        \nDependabot commands and options\n
        \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language\n- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language\n- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language\n- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language\n- `@dependabot badge me` will comment on this PR with code to add a \"Dependabot enabled\" badge to your readme\n\nAdditionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com):\n- Update frequency (including time of day and day of week)\n- Pull request limits (per update run and/or open at any time)\n- Out-of-range updates (receive only lockfile updates, if desired)\n- Security updates (receive only security updates, if desired)\n\nFinally, you can contact us by mentioning @dependabot.\n\n
        " + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/555", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/555/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/555/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/555/events", + "html_url": "https://github.com/github-api/github-api/pull/555", + "id": 498103643, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzIxMTAyNDE2", + "number": 555, + "title": "Bump commons-io from 1.4 to 2.6", + "user": { + "login": "dependabot-preview[bot]", + "id": 27856297, + "node_id": "MDM6Qm90Mjc4NTYyOTc=", + "avatar_url": "https://avatars3.githubusercontent.com/in/2141?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dependabot-preview%5Bbot%5D", + "html_url": "https://github.com/apps/dependabot-preview", + "followers_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "labels": [ + { + "id": 1576019209, + "node_id": "MDU6TGFiZWwxNTc2MDE5MjA5", + "url": "https://api.github.com/repos/github-api/github-api/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-25T07:33:23Z", + "updated_at": "2019-09-25T17:08:00Z", + "closed_at": "2019-09-25T17:07:45Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/555", + "html_url": "https://github.com/github-api/github-api/pull/555", + "diff_url": "https://github.com/github-api/github-api/pull/555.diff", + "patch_url": "https://github.com/github-api/github-api/pull/555.patch" + }, + "body": "Bumps commons-io from 1.4 to 2.6.\n\n[![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=commons-io:commons-io&package-manager=maven&previous-version=1.4&new-version=2.6)](https://dependabot.com/compatibility-score.html?dependency-name=commons-io:commons-io&package-manager=maven&previous-version=1.4&new-version=2.6)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n**Note:** This repo was added to Dependabot recently, so you'll receive a maximum of 5 PRs for your first few update runs. Once an update run creates fewer than 5 PRs we'll remove that limit.\n\nYou can always request more updates by clicking `Bump now` in your [Dependabot dashboard](https://app.dependabot.com).\n\n
        \nDependabot commands and options\n
        \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language\n- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language\n- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language\n- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language\n- `@dependabot badge me` will comment on this PR with code to add a \"Dependabot enabled\" badge to your readme\n\nAdditionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com):\n- Update frequency (including time of day and day of week)\n- Pull request limits (per update run and/or open at any time)\n- Out-of-range updates (receive only lockfile updates, if desired)\n- Security updates (receive only security updates, if desired)\n\nFinally, you can contact us by mentioning @dependabot.\n\n
        " + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/554", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/554/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/554/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/554/events", + "html_url": "https://github.com/github-api/github-api/pull/554", + "id": 498103478, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzIxMTAyMjkw", + "number": 554, + "title": "Bump maven-surefire-plugin from 2.22.1 to 2.22.2", + "user": { + "login": "dependabot-preview[bot]", + "id": 27856297, + "node_id": "MDM6Qm90Mjc4NTYyOTc=", + "avatar_url": "https://avatars3.githubusercontent.com/in/2141?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dependabot-preview%5Bbot%5D", + "html_url": "https://github.com/apps/dependabot-preview", + "followers_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "labels": [ + { + "id": 1576019209, + "node_id": "MDU6TGFiZWwxNTc2MDE5MjA5", + "url": "https://api.github.com/repos/github-api/github-api/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-25T07:33:00Z", + "updated_at": "2019-09-25T17:10:47Z", + "closed_at": "2019-09-25T17:10:03Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/554", + "html_url": "https://github.com/github-api/github-api/pull/554", + "diff_url": "https://github.com/github-api/github-api/pull/554.diff", + "patch_url": "https://github.com/github-api/github-api/pull/554.patch" + }, + "body": "Bumps [maven-surefire-plugin](https://github.com/apache/maven-surefire) from 2.22.1 to 2.22.2.\n
        \nCommits\n\n- [`d96b95c`](https://github.com/apache/maven-surefire/commit/d96b95c4bda73c4a93506db38b9ca76b4d7b5743) [maven-release-plugin] prepare release surefire-2.22.2\n- [`4a2aafc`](https://github.com/apache/maven-surefire/commit/4a2aafc516dd6e1db54548cedd0645ddeccc1dc2) Remove Travis file\n- [`7b9ec3f`](https://github.com/apache/maven-surefire/commit/7b9ec3fe7805ee6718b8efa41984127e0ceb17b1) Remove JUnit SNAPSHOT argument from IT\n- [`18b4078`](https://github.com/apache/maven-surefire/commit/18b4078de24a0cd69eb51cad4e793d4e51b26743) [SUREFIRE-1614] JUnit Runner that writes to System.out corrupts Surefire's ST...\n- [`af417b8`](https://github.com/apache/maven-surefire/commit/af417b88d59624165be6273a641c4848b8d5c09a) prepare for next development iteration\n- See full diff in [compare view](https://github.com/apache/maven-surefire/compare/surefire-2.22.1...surefire-2.22.2)\n
        \n
        \n\n[![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=org.apache.maven.plugins:maven-surefire-plugin&package-manager=maven&previous-version=2.22.1&new-version=2.22.2)](https://dependabot.com/compatibility-score.html?dependency-name=org.apache.maven.plugins:maven-surefire-plugin&package-manager=maven&previous-version=2.22.1&new-version=2.22.2)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n**Note:** This repo was added to Dependabot recently, so you'll receive a maximum of 5 PRs for your first few update runs. Once an update run creates fewer than 5 PRs we'll remove that limit.\n\nYou can always request more updates by clicking `Bump now` in your [Dependabot dashboard](https://app.dependabot.com).\n\n
        \nDependabot commands and options\n
        \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language\n- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language\n- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language\n- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language\n- `@dependabot badge me` will comment on this PR with code to add a \"Dependabot enabled\" badge to your readme\n\nAdditionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com):\n- Update frequency (including time of day and day of week)\n- Pull request limits (per update run and/or open at any time)\n- Out-of-range updates (receive only lockfile updates, if desired)\n- Security updates (receive only security updates, if desired)\n\nFinally, you can contact us by mentioning @dependabot.\n\n
        " + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/553", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/553/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/553/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/553/events", + "html_url": "https://github.com/github-api/github-api/pull/553", + "id": 498103214, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzIxMTAyMDkx", + "number": 553, + "title": "Bump okhttp-urlconnection from 3.9.0 to 4.2.0", + "user": { + "login": "dependabot-preview[bot]", + "id": 27856297, + "node_id": "MDM6Qm90Mjc4NTYyOTc=", + "avatar_url": "https://avatars3.githubusercontent.com/in/2141?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dependabot-preview%5Bbot%5D", + "html_url": "https://github.com/apps/dependabot-preview", + "followers_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "labels": [ + { + "id": 1576019209, + "node_id": "MDU6TGFiZWwxNTc2MDE5MjA5", + "url": "https://api.github.com/repos/github-api/github-api/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2019-09-25T07:32:25Z", + "updated_at": "2019-09-25T22:50:55Z", + "closed_at": "2019-09-25T22:50:51Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/553", + "html_url": "https://github.com/github-api/github-api/pull/553", + "diff_url": "https://github.com/github-api/github-api/pull/553.diff", + "patch_url": "https://github.com/github-api/github-api/pull/553.patch" + }, + "body": "Bumps [okhttp-urlconnection](https://github.com/square/okhttp) from 3.9.0 to 4.2.0.\n
        \nChangelog\n\n*Sourced from [okhttp-urlconnection's changelog](https://github.com/square/okhttp/blob/master/CHANGELOG.md).*\n\n> ## Version 4.2.0\n> \n> _2019-09-10_\n> \n> * New: API to decode a certificate and private key to create a `HeldCertificate`. This accepts a\n> string containing both a certificate and PKCS #8-encoded private key.\n> \n> ```kotlin\n> val heldCertificate = HeldCertificate.decode(\"\"\"\n> |-----BEGIN CERTIFICATE-----\n> |MIIBYTCCAQegAwIBAgIBKjAKBggqhkjOPQQDAjApMRQwEgYDVQQLEwtlbmdpbmVl\n> |cmluZzERMA8GA1UEAxMIY2FzaC5hcHAwHhcNNzAwMTAxMDAwMDA1WhcNNzAwMTAx\n> |MDAwMDEwWjApMRQwEgYDVQQLEwtlbmdpbmVlcmluZzERMA8GA1UEAxMIY2FzaC5h\n> |cHAwWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAASda8ChkQXxGELnrV/oBnIAx3dD\n> |ocUOJfdz4pOJTP6dVQB9U3UBiW5uSX/MoOD0LL5zG3bVyL3Y6pDwKuYvfLNhoyAw\n> |HjAcBgNVHREBAf8EEjAQhwQBAQEBgghjYXNoLmFwcDAKBggqhkjOPQQDAgNIADBF\n> |AiAyHHg1N6YDDQiY920+cnI5XSZwEGhAtb9PYWO8bLmkcQIhAI2CfEZf3V/obmdT\n> |yyaoEufLKVXhrTQhRfodTeigi4RX\n> |-----END CERTIFICATE-----\n> |-----BEGIN PRIVATE KEY-----\n> |MEECAQAwEwYHKoZIzj0CAQYIKoZIzj0DAQcEJzAlAgEBBCA7ODT0xhGSNn4ESj6J\n> |lu/GJQZoU9lDrCPeUcQ28tzOWw==\n> |-----END PRIVATE KEY-----\n> \"\"\".trimMargin())\n> val handshakeCertificates = HandshakeCertificates.Builder()\n> .heldCertificate(heldCertificate)\n> .build()\n> val server = MockWebServer()\n> server.useHttps(handshakeCertificates.sslSocketFactory(), false)\n> ```\n> \n> Get these strings with `HeldCertificate.certificatePem()` and `privateKeyPkcs8Pem()`.\n> \n> * Fix: Handshake now returns peer certificates in canonical order: each certificate is signed by\n> the certificate that follows and the last certificate is signed by a trusted root.\n> \n> * Fix: Don't lose HTTP/2 flow control bytes when incoming data races with a stream close. If this\n> happened enough then eventually the connection would stall.\n> \n> * Fix: Acknowledge and apply inbound HTTP/2 settings atomically. Previously we had a race where we\n> could use new flow control capacity before acknowledging it, causing strict HTTP/2 servers to\n> fail the call.\n> \n> \n> ## Version 4.1.1\n> \n> _2019-09-05_\n> \n> * Fix: Don't drop repeated headers when validating cached responses. In our Kotlin upgrade we\n> introduced a regression where we iterated the number of unique header names rather than then\n> ... (truncated)\n
        \n
        \nCommits\n\n- [`582f8ef`](https://github.com/square/okhttp/commit/582f8ef2f78cf001d479cb65831674289fd83af0) Prepare for release 4.2.0.\n- [`9b60ca8`](https://github.com/square/okhttp/commit/9b60ca8e88445de48997d3391ae15417a6ef5d90) Merge pull request [#5434](https://github-redirect.dependabot.com/square/okhttp/issues/5434) from square/jwilson.0909.race\n- [`510475a`](https://github.com/square/okhttp/commit/510475a21586fdf6010312a1950dca6e87cb6d2e) Don't leak incoming bytes when we race incoming data and close\n- [`2cdbbda`](https://github.com/square/okhttp/commit/2cdbbda64a8f01c48658a2101aca206389b50878) Hows My Ssl test for Android ([#5428](https://github-redirect.dependabot.com/square/okhttp/issues/5428))\n- [`3464ef3`](https://github.com/square/okhttp/commit/3464ef37e4fceb997df9c95cadce6fcc38102450) Merge pull request [#5431](https://github-redirect.dependabot.com/square/okhttp/issues/5431) from square/jwilson.0907.ack_apply_atomically\n- [`bd6a97a`](https://github.com/square/okhttp/commit/bd6a97a7200dda2127a0a6b7167fef0d09febf27) Acknowledge and apply inbound settings atomically\n- [`3490c7e`](https://github.com/square/okhttp/commit/3490c7ef9598e99bc298208f68022b36fecb21ce) Merge pull request [#5427](https://github-redirect.dependabot.com/square/okhttp/issues/5427) from square/jwilson.0905.decode_pems\n- [`ba2c676`](https://github.com/square/okhttp/commit/ba2c676aaf2b825528955f61dd43004a5bd9ca98) Handshake returns cleaned peer certificates ([#5311](https://github-redirect.dependabot.com/square/okhttp/issues/5311))\n- [`93c5bcc`](https://github.com/square/okhttp/commit/93c5bcc6cb46aef19b2f55e61c01f6b1bbccee70) Make it easier to decode PEM files\n- [`6f17886`](https://github.com/square/okhttp/commit/6f178869acc2a2a9a6882c49dfb5bcf7a43b3ddd) Merge pull request [#5423](https://github-redirect.dependabot.com/square/okhttp/issues/5423) from square/jwilson.0905.windows\n- Additional commits viewable in [compare view](https://github.com/square/okhttp/compare/parent-3.9.0...parent-4.2.0)\n
        \n
        \n\n[![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=com.squareup.okhttp3:okhttp-urlconnection&package-manager=maven&previous-version=3.9.0&new-version=4.2.0)](https://dependabot.com/compatibility-score.html?dependency-name=com.squareup.okhttp3:okhttp-urlconnection&package-manager=maven&previous-version=3.9.0&new-version=4.2.0)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n**Note:** This repo was added to Dependabot recently, so you'll receive a maximum of 5 PRs for your first few update runs. Once an update run creates fewer than 5 PRs we'll remove that limit.\n\nYou can always request more updates by clicking `Bump now` in your [Dependabot dashboard](https://app.dependabot.com).\n\n
        \nDependabot commands and options\n
        \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language\n- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language\n- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language\n- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language\n- `@dependabot badge me` will comment on this PR with code to add a \"Dependabot enabled\" badge to your readme\n\nAdditionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com):\n- Update frequency (including time of day and day of week)\n- Pull request limits (per update run and/or open at any time)\n- Out-of-range updates (receive only lockfile updates, if desired)\n- Security updates (receive only security updates, if desired)\n\nFinally, you can contact us by mentioning @dependabot.\n\n
        " + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/552", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/552/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/552/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/552/events", + "html_url": "https://github.com/github-api/github-api/pull/552", + "id": 498103027, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzIxMTAxOTUx", + "number": 552, + "title": "Bump commons-lang3 from 3.7 to 3.9", + "user": { + "login": "dependabot-preview[bot]", + "id": 27856297, + "node_id": "MDM6Qm90Mjc4NTYyOTc=", + "avatar_url": "https://avatars3.githubusercontent.com/in/2141?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dependabot-preview%5Bbot%5D", + "html_url": "https://github.com/apps/dependabot-preview", + "followers_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "labels": [ + { + "id": 1576019209, + "node_id": "MDU6TGFiZWwxNTc2MDE5MjA5", + "url": "https://api.github.com/repos/github-api/github-api/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-25T07:32:02Z", + "updated_at": "2019-09-25T17:09:55Z", + "closed_at": "2019-09-25T17:09:34Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/552", + "html_url": "https://github.com/github-api/github-api/pull/552", + "diff_url": "https://github.com/github-api/github-api/pull/552.diff", + "patch_url": "https://github.com/github-api/github-api/pull/552.patch" + }, + "body": "Bumps commons-lang3 from 3.7 to 3.9.\n\n[![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=org.apache.commons:commons-lang3&package-manager=maven&previous-version=3.7&new-version=3.9)](https://dependabot.com/compatibility-score.html?dependency-name=org.apache.commons:commons-lang3&package-manager=maven&previous-version=3.7&new-version=3.9)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n**Note:** This repo was added to Dependabot recently, so you'll receive a maximum of 5 PRs for your first few update runs. Once an update run creates fewer than 5 PRs we'll remove that limit.\n\nYou can always request more updates by clicking `Bump now` in your [Dependabot dashboard](https://app.dependabot.com).\n\n
        \nDependabot commands and options\n
        \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language\n- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language\n- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language\n- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language\n- `@dependabot badge me` will comment on this PR with code to add a \"Dependabot enabled\" badge to your readme\n\nAdditionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com):\n- Update frequency (including time of day and day of week)\n- Pull request limits (per update run and/or open at any time)\n- Out-of-range updates (receive only lockfile updates, if desired)\n- Security updates (receive only security updates, if desired)\n\nFinally, you can contact us by mentioning @dependabot.\n\n
        " + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/551", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/551/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/551/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/551/events", + "html_url": "https://github.com/github-api/github-api/pull/551", + "id": 497889106, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzIwOTM0MTU3", + "number": 551, + "title": "Bump commons-codec from 1.7 to 1.13", + "user": { + "login": "dependabot-preview[bot]", + "id": 27856297, + "node_id": "MDM6Qm90Mjc4NTYyOTc=", + "avatar_url": "https://avatars3.githubusercontent.com/in/2141?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dependabot-preview%5Bbot%5D", + "html_url": "https://github.com/apps/dependabot-preview", + "followers_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "labels": [ + { + "id": 1576019209, + "node_id": "MDU6TGFiZWwxNTc2MDE5MjA5", + "url": "https://api.github.com/repos/github-api/github-api/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-24T19:47:35Z", + "updated_at": "2019-09-24T21:25:05Z", + "closed_at": "2019-09-24T21:24:58Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/551", + "html_url": "https://github.com/github-api/github-api/pull/551", + "diff_url": "https://github.com/github-api/github-api/pull/551.diff", + "patch_url": "https://github.com/github-api/github-api/pull/551.patch" + }, + "body": "Bumps [commons-codec](https://github.com/apache/commons-codec) from 1.7 to 1.13.\n
        \nChangelog\n\n*Sourced from [commons-codec's changelog](https://github.com/apache/commons-codec/blob/master/RELEASE-NOTES.txt).*\n\n> Apache Apache Commons Codec 1.13 RELEASE NOTES\n> \n> The Apache Commons Codec package contains simple encoder and decoders for\n> various formats such as Base64 and Hexadecimal. In addition to these\n> widely used encoders and decoders, the codec package also maintains a\n> collection of phonetic encoding utilities.\n> \n> Feature and fix release.\n> \n> Changes in this version include:\n> \n> New features:\n> o CODEC-236: MurmurHash2 for 32-bit or 64-bit value. Thanks to Viliam Holub.\n> o CODEC-236: MurmurHash3 for 32-bit or 128-bit value. Thanks to Austin Appleby.\n> \n> Fixed Bugs:\n> o CODEC-255: ColognePhonetic handles x incorrectly Thanks to Holger Grote.\n> o CODEC-254: ColognePhonetic does not treat the letter H correctly Thanks to Holger Grote.\n> o CODEC-134: Reject any decode request for a value that is impossible to encode to for Base32/Base64 rather than blindly decoding.\n> \n> Changes:\n> o CODEC-236: Broken direct java.nio.ByteBuffer support in org.apache.commons.codec.binary.Hex. Thanks to Tomas Shestakov, Gary Gregory.\n> \n> \n> For complete information on Apache Commons Codec, including instructions on how to submit bug reports,\n> patches, or suggestions for improvement, see the Apache Apache Commons Codec website:\n> \n> Visit https://commons.apache.org/proper/commons-codec/\n> Download from https://commons.apache.org/proper/commons-codec/download_codec.cgi\n> \n> \n> -------------------------------------------------------------------------------\n> \n> Apache Commons Codec 1.12 RELEASE NOTES\n> \n> The Apache Commons Codec team is pleased to announce the commons-codec-1.12 release!\n> \n> The Apache Commons Codec package contains simple encoder and decoders for\n> various formats such as Base64 and Hexadecimal. In addition to these\n> widely used encoders and decoders, the codec package also maintains a\n> collection of phonetic encoding utilities.\n> \n> Changes in this version include:\n> \n> New features:\n> o Add Percent-Encoding Codec (described in RFC3986 and RFC7578) Issue: CODEC-240. Thanks to Ioannis Sermetziadis.\n> o Add SHA-3 methods in DigestUtils Issue: CODEC-251. Thanks to Gary Gregory.\n> \n> Fixed Bugs:\n> o B64 salt generator: Random -> ThreadLocalRandom Issue: CODEC-252.\n> ... (truncated)\n
        \n
        \nCommits\n\n- [`beafa49`](https://github.com/apache/commons-codec/commit/beafa49f88be397f89b78d125d2c7c52b0114006) Fix the site's source repository link.\n- [`4200d4d`](https://github.com/apache/commons-codec/commit/4200d4d9cbfb2cbfc7f6e783cceb06bb52963887) Fix the site's source repository link.\n- [`20dc3ec`](https://github.com/apache/commons-codec/commit/20dc3ec2c6b41f9412ecf4a1cbe9bba10e1498ed) Prepare for the next release.\n- [`7d309fc`](https://github.com/apache/commons-codec/commit/7d309fc952fa201c53ba277eee33b751f56cf50e) Update POM version numbers for Apache Commons Codec release 1.13\n- [`47a55d2`](https://github.com/apache/commons-codec/commit/47a55d21515bf2ec49d2c1b4f2f83bf66a09a7c5) Prepare for the next release.\n- [`3730126`](https://github.com/apache/commons-codec/commit/3730126d8a3fbf98533710e1c9f2ba18b91d53f2) Prepare for the next release.\n- [`9969e7b`](https://github.com/apache/commons-codec/commit/9969e7b317777e151646923d302e856b163ba224) Prepare for the next release.\n- [`fe39ffc`](https://github.com/apache/commons-codec/commit/fe39ffc076712fc8cd55c96fc5cb0eee2efe4847) Remove unnecessary type casts.\n- [`3e6fb93`](https://github.com/apache/commons-codec/commit/3e6fb93250fb951ccd3b9597cd19b1c2243a77b1) Use final.\n- [`9253700`](https://github.com/apache/commons-codec/commit/9253700b7308dc43f063c87014dce5ee80ee33e0) Remove trailing white spaces.\n- Additional commits viewable in [compare view](https://github.com/apache/commons-codec/compare/1.7...commons-codec-1.13)\n
        \n
        \n\n[![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=commons-codec:commons-codec&package-manager=maven&previous-version=1.7&new-version=1.13)](https://dependabot.com/compatibility-score.html?dependency-name=commons-codec:commons-codec&package-manager=maven&previous-version=1.7&new-version=1.13)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n**Note:** This repo was added to Dependabot recently, so you'll receive a maximum of 5 PRs for your first few update runs. Once an update run creates fewer than 5 PRs we'll remove that limit.\n\nYou can always request more updates by clicking `Bump now` in your [Dependabot dashboard](https://app.dependabot.com).\n\n
        \nDependabot commands and options\n
        \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language\n- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language\n- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language\n- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language\n- `@dependabot badge me` will comment on this PR with code to add a \"Dependabot enabled\" badge to your readme\n\nAdditionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com):\n- Update frequency (including time of day and day of week)\n- Pull request limits (per update run and/or open at any time)\n- Out-of-range updates (receive only lockfile updates, if desired)\n- Security updates (receive only security updates, if desired)\n\nFinally, you can contact us by mentioning @dependabot.\n\n
        " + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/550", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/550/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/550/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/550/events", + "html_url": "https://github.com/github-api/github-api/pull/550", + "id": 497888949, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzIwOTM0MDI5", + "number": 550, + "title": "Bump spotbugs-maven-plugin from 3.1.11 to 3.1.12.2", + "user": { + "login": "dependabot-preview[bot]", + "id": 27856297, + "node_id": "MDM6Qm90Mjc4NTYyOTc=", + "avatar_url": "https://avatars3.githubusercontent.com/in/2141?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dependabot-preview%5Bbot%5D", + "html_url": "https://github.com/apps/dependabot-preview", + "followers_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "labels": [ + { + "id": 1576019209, + "node_id": "MDU6TGFiZWwxNTc2MDE5MjA5", + "url": "https://api.github.com/repos/github-api/github-api/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-24T19:47:13Z", + "updated_at": "2019-09-24T21:21:54Z", + "closed_at": "2019-09-24T21:21:44Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/550", + "html_url": "https://github.com/github-api/github-api/pull/550", + "diff_url": "https://github.com/github-api/github-api/pull/550.diff", + "patch_url": "https://github.com/github-api/github-api/pull/550.patch" + }, + "body": "Bumps [spotbugs-maven-plugin](https://github.com/spotbugs/spotbugs-maven-plugin) from 3.1.11 to 3.1.12.2.\n
        \nRelease notes\n\n*Sourced from [spotbugs-maven-plugin's releases](https://github.com/spotbugs/spotbugs-maven-plugin/releases).*\n\n> ## 3.1.12.2 Release\n> - Configurable output filename added\r\n> - Added support for jdk 12 through 14\n> \n> ## Groovy Patch Release against 3.1.12 spotbugs\n> This release is against spotbugs 3.1.12 and includes a patch to groovy 3.0.0 beta 2. This ensures that java warnings on newer jdks are no longer presented to the user of spotbugs maven plugin.\r\n> \r\n> This release additionally contains updated third party software and fixes to ensure our site pages are properly released.\r\n> \r\n> Note: While support for spotbugs with source paths has been included here, that feature aligns with spotbugs 4.0.0. In order to utilize the feature, you will need to override spotbugs with the most recent spotbugs beta release '4.0.0-beta3'. See [here](https://github-redirect.dependabot.com/spotbugs/spotbugs/issues/694) for details on support.\n
        \n
        \nCommits\n\n- [`dd665f5`](https://github.com/spotbugs/spotbugs-maven-plugin/commit/dd665f585b26dc79bd55504911b4ebbbe2a1dc8f) [maven-release-plugin] prepare release spotbugs-maven-plugin-3.1.12.2\n- [`05de8a5`](https://github.com/spotbugs/spotbugs-maven-plugin/commit/05de8a5030309c5a21a438859470cf43b45c71a5) Merge pull request [#135](https://github-redirect.dependabot.com/spotbugs/spotbugs-maven-plugin/issues/135) from hazendaz/spotbugs\n- [`f162ac8`](https://github.com/spotbugs/spotbugs-maven-plugin/commit/f162ac8067553df9aa279f461b8d3c600e0b9520) [pom] Bump asm to 7.2-beta for jdk 14 support\n- [`9fcf700`](https://github.com/spotbugs/spotbugs-maven-plugin/commit/9fcf7009e921e84c7f815c6372f4067e58b82d80) [pom] Override asm to 7.1 for jdk 13 support\n- [`d4f8a77`](https://github.com/spotbugs/spotbugs-maven-plugin/commit/d4f8a7792aa0bb82ab7d3e4a06254aa58ec0ac0c) [travis] Try jdks 12 through 14\n- [`d7ab21f`](https://github.com/spotbugs/spotbugs-maven-plugin/commit/d7ab21f6d616e29daad875aec489891dfbd65b10) [ci] Change since '3.1.13' to 3.1.12.2'\n- [`ba47ced`](https://github.com/spotbugs/spotbugs-maven-plugin/commit/ba47ced7b8fcddaafde4c195ad8bab42fa83d4f4) [pom] Update base-parent to 23\n- [`c4c670d`](https://github.com/spotbugs/spotbugs-maven-plugin/commit/c4c670d45878fed45fbcd8231147c63145913713) Merge pull request [#133](https://github-redirect.dependabot.com/spotbugs/spotbugs-maven-plugin/issues/133) from spotbugs/dependabot/maven/commons-codec-commons-...\n- [`e3cea3c`](https://github.com/spotbugs/spotbugs-maven-plugin/commit/e3cea3c570ef1190d4747293313b9002bdbb67b8) Bump commons-codec from 1.12 to 1.13\n- [`932b294`](https://github.com/spotbugs/spotbugs-maven-plugin/commit/932b294abdca8294c1112edd6f0f59360e1bc709) Merge pull request [#131](https://github-redirect.dependabot.com/spotbugs/spotbugs-maven-plugin/issues/131) from hazendaz/spotbugs\n- Additional commits viewable in [compare view](https://github.com/spotbugs/spotbugs-maven-plugin/compare/spotbugs-maven-plugin-3.1.11...spotbugs-maven-plugin-3.1.12.2)\n
        \n
        \n\n[![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=com.github.spotbugs:spotbugs-maven-plugin&package-manager=maven&previous-version=3.1.11&new-version=3.1.12.2)](https://dependabot.com/compatibility-score.html?dependency-name=com.github.spotbugs:spotbugs-maven-plugin&package-manager=maven&previous-version=3.1.11&new-version=3.1.12.2)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n**Note:** This repo was added to Dependabot recently, so you'll receive a maximum of 5 PRs for your first few update runs. Once an update run creates fewer than 5 PRs we'll remove that limit.\n\nYou can always request more updates by clicking `Bump now` in your [Dependabot dashboard](https://app.dependabot.com).\n\n
        \nDependabot commands and options\n
        \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language\n- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language\n- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language\n- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language\n- `@dependabot badge me` will comment on this PR with code to add a \"Dependabot enabled\" badge to your readme\n\nAdditionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com):\n- Update frequency (including time of day and day of week)\n- Pull request limits (per update run and/or open at any time)\n- Out-of-range updates (receive only lockfile updates, if desired)\n- Security updates (receive only security updates, if desired)\n\nFinally, you can contact us by mentioning @dependabot.\n\n
        " + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/549", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/549/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/549/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/549/events", + "html_url": "https://github.com/github-api/github-api/pull/549", + "id": 497888811, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzIwOTMzOTE1", + "number": 549, + "title": "Bump bridge-method-annotation from 1.17 to 1.18", + "user": { + "login": "dependabot-preview[bot]", + "id": 27856297, + "node_id": "MDM6Qm90Mjc4NTYyOTc=", + "avatar_url": "https://avatars3.githubusercontent.com/in/2141?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dependabot-preview%5Bbot%5D", + "html_url": "https://github.com/apps/dependabot-preview", + "followers_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "labels": [ + { + "id": 1576019209, + "node_id": "MDU6TGFiZWwxNTc2MDE5MjA5", + "url": "https://api.github.com/repos/github-api/github-api/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-24T19:46:54Z", + "updated_at": "2019-09-24T21:29:12Z", + "closed_at": "2019-09-24T21:29:04Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/549", + "html_url": "https://github.com/github-api/github-api/pull/549", + "diff_url": "https://github.com/github-api/github-api/pull/549.diff", + "patch_url": "https://github.com/github-api/github-api/pull/549.patch" + }, + "body": "Bumps [bridge-method-annotation](https://github.com/infradna/bridge-method-injector) from 1.17 to 1.18.\n
        \nCommits\n\n- [`7639b42`](https://github.com/infradna/bridge-method-injector/commit/7639b42d29a9700d9a1b355510ab772d5fe41b2f) [maven-release-plugin] prepare release bridge-method-injector-parent-1.18\n- [`e2ddd0b`](https://github.com/infradna/bridge-method-injector/commit/e2ddd0b6462c3efff234000ed70e90441e23fa03) Fixed the adapting from int to long\n- [`2031ef8`](https://github.com/infradna/bridge-method-injector/commit/2031ef8bb8cd05bd9b36c04707e5bfff14c3239e) Test case to show a failure to bridge int to long\n- [`8fb551d`](https://github.com/infradna/bridge-method-injector/commit/8fb551d5c54de723dd11235a48600e49abbda174) [maven-release-plugin] prepare for next development iteration\n- See full diff in [compare view](https://github.com/infradna/bridge-method-injector/compare/bridge-method-injector-parent-1.17...bridge-method-injector-parent-1.18)\n
        \n
        \n\n[![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=com.infradna.tool:bridge-method-annotation&package-manager=maven&previous-version=1.17&new-version=1.18)](https://dependabot.com/compatibility-score.html?dependency-name=com.infradna.tool:bridge-method-annotation&package-manager=maven&previous-version=1.17&new-version=1.18)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n**Note:** This repo was added to Dependabot recently, so you'll receive a maximum of 5 PRs for your first few update runs. Once an update run creates fewer than 5 PRs we'll remove that limit.\n\nYou can always request more updates by clicking `Bump now` in your [Dependabot dashboard](https://app.dependabot.com).\n\n
        \nDependabot commands and options\n
        \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language\n- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language\n- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language\n- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language\n- `@dependabot badge me` will comment on this PR with code to add a \"Dependabot enabled\" badge to your readme\n\nAdditionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com):\n- Update frequency (including time of day and day of week)\n- Pull request limits (per update run and/or open at any time)\n- Out-of-range updates (receive only lockfile updates, if desired)\n- Security updates (receive only security updates, if desired)\n\nFinally, you can contact us by mentioning @dependabot.\n\n
        " + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/548", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/548/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/548/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/548/events", + "html_url": "https://github.com/github-api/github-api/pull/548", + "id": 497888644, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzIwOTMzNzc4", + "number": 548, + "title": "Bump jackson-databind from 2.9.10 to 2.10.0.pr3", + "user": { + "login": "dependabot-preview[bot]", + "id": 27856297, + "node_id": "MDM6Qm90Mjc4NTYyOTc=", + "avatar_url": "https://avatars3.githubusercontent.com/in/2141?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dependabot-preview%5Bbot%5D", + "html_url": "https://github.com/apps/dependabot-preview", + "followers_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "labels": [ + { + "id": 1576019209, + "node_id": "MDU6TGFiZWwxNTc2MDE5MjA5", + "url": "https://api.github.com/repos/github-api/github-api/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2019-09-24T19:46:30Z", + "updated_at": "2019-09-24T21:18:41Z", + "closed_at": "2019-09-24T21:18:34Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/548", + "html_url": "https://github.com/github-api/github-api/pull/548", + "diff_url": "https://github.com/github-api/github-api/pull/548.diff", + "patch_url": "https://github.com/github-api/github-api/pull/548.patch" + }, + "body": "[//]: # (dependabot-start)\n⚠️ **Dependabot is rebasing this PR** ⚠️ \n\nIf you make any changes to it yourself then they will take precedence over the rebase.\n\n---\n\n[//]: # (dependabot-end)\n\nBumps [jackson-databind](https://github.com/FasterXML/jackson) from 2.9.10 to 2.10.0.pr3.\n
        \nCommits\n\n- See full diff in [compare view](https://github.com/FasterXML/jackson/commits)\n
        \n
        \n\n[![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=com.fasterxml.jackson.core:jackson-databind&package-manager=maven&previous-version=2.9.10&new-version=2.10.0.pr3)](https://dependabot.com/compatibility-score.html?dependency-name=com.fasterxml.jackson.core:jackson-databind&package-manager=maven&previous-version=2.9.10&new-version=2.10.0.pr3)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n**Note:** This repo was added to Dependabot recently, so you'll receive a maximum of 5 PRs for your first few update runs. Once an update run creates fewer than 5 PRs we'll remove that limit.\n\nYou can always request more updates by clicking `Bump now` in your [Dependabot dashboard](https://app.dependabot.com).\n\n
        \nDependabot commands and options\n
        \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language\n- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language\n- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language\n- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language\n- `@dependabot badge me` will comment on this PR with code to add a \"Dependabot enabled\" badge to your readme\n\nAdditionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com):\n- Update frequency (including time of day and day of week)\n- Pull request limits (per update run and/or open at any time)\n- Out-of-range updates (receive only lockfile updates, if desired)\n- Security updates (receive only security updates, if desired)\n\nFinally, you can contact us by mentioning @dependabot.\n\n
        " + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/547", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/547/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/547/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/547/events", + "html_url": "https://github.com/github-api/github-api/pull/547", + "id": 497888492, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzIwOTMzNjUy", + "number": 547, + "title": "Bump org.eclipse.jgit from 4.9.0.201710071750-r to 5.5.0.201909110433-r", + "user": { + "login": "dependabot-preview[bot]", + "id": 27856297, + "node_id": "MDM6Qm90Mjc4NTYyOTc=", + "avatar_url": "https://avatars3.githubusercontent.com/in/2141?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dependabot-preview%5Bbot%5D", + "html_url": "https://github.com/apps/dependabot-preview", + "followers_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "labels": [ + { + "id": 1576019209, + "node_id": "MDU6TGFiZWwxNTc2MDE5MjA5", + "url": "https://api.github.com/repos/github-api/github-api/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-24T19:46:08Z", + "updated_at": "2019-09-24T21:17:40Z", + "closed_at": "2019-09-24T21:17:32Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/547", + "html_url": "https://github.com/github-api/github-api/pull/547", + "diff_url": "https://github.com/github-api/github-api/pull/547.diff", + "patch_url": "https://github.com/github-api/github-api/pull/547.patch" + }, + "body": "Bumps org.eclipse.jgit from 4.9.0.201710071750-r to 5.5.0.201909110433-r.\n\n[![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=org.eclipse.jgit:org.eclipse.jgit&package-manager=maven&previous-version=4.9.0.201710071750-r&new-version=5.5.0.201909110433-r)](https://dependabot.com/compatibility-score.html?dependency-name=org.eclipse.jgit:org.eclipse.jgit&package-manager=maven&previous-version=4.9.0.201710071750-r&new-version=5.5.0.201909110433-r)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n**Note:** This repo was added to Dependabot recently, so you'll receive a maximum of 5 PRs for your first few update runs. Once an update run creates fewer than 5 PRs we'll remove that limit.\n\nYou can always request more updates by clicking `Bump now` in your [Dependabot dashboard](https://app.dependabot.com).\n\n
        \nDependabot commands and options\n
        \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language\n- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language\n- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language\n- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language\n- `@dependabot badge me` will comment on this PR with code to add a \"Dependabot enabled\" badge to your readme\n\nAdditionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com):\n- Update frequency (including time of day and day of week)\n- Pull request limits (per update run and/or open at any time)\n- Out-of-range updates (receive only lockfile updates, if desired)\n- Security updates (receive only security updates, if desired)\n\nFinally, you can contact us by mentioning @dependabot.\n\n
        " + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/544", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/544/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/544/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/544/events", + "html_url": "https://github.com/github-api/github-api/pull/544", + "id": 494601895, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE4MzIxNjQx", + "number": 544, + "title": "Adding possiblity to get ssh keys", + "user": { + "login": "arngrimur-seal", + "id": 36759268, + "node_id": "MDQ6VXNlcjM2NzU5MjY4", + "avatar_url": "https://avatars3.githubusercontent.com/u/36759268?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/arngrimur-seal", + "html_url": "https://github.com/arngrimur-seal", + "followers_url": "https://api.github.com/users/arngrimur-seal/followers", + "following_url": "https://api.github.com/users/arngrimur-seal/following{/other_user}", + "gists_url": "https://api.github.com/users/arngrimur-seal/gists{/gist_id}", + "starred_url": "https://api.github.com/users/arngrimur-seal/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/arngrimur-seal/subscriptions", + "organizations_url": "https://api.github.com/users/arngrimur-seal/orgs", + "repos_url": "https://api.github.com/users/arngrimur-seal/repos", + "events_url": "https://api.github.com/users/arngrimur-seal/events{/privacy}", + "received_events_url": "https://api.github.com/users/arngrimur-seal/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-17T12:46:50Z", + "updated_at": "2019-09-30T01:33:46Z", + "closed_at": "2019-09-30T01:33:46Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/544", + "html_url": "https://github.com/github-api/github-api/pull/544", + "diff_url": "https://github.com/github-api/github-api/pull/544.diff", + "patch_url": "https://github.com/github-api/github-api/pull/544.patch" + }, + "body": "" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/543", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/543/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/543/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/543/events", + "html_url": "https://github.com/github-api/github-api/pull/543", + "id": 492513466, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE2NjczMDk0", + "number": 543, + "title": "Grammar", + "user": { + "login": "jsoref", + "id": 2119212, + "node_id": "MDQ6VXNlcjIxMTkyMTI=", + "avatar_url": "https://avatars0.githubusercontent.com/u/2119212?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jsoref", + "html_url": "https://github.com/jsoref", + "followers_url": "https://api.github.com/users/jsoref/followers", + "following_url": "https://api.github.com/users/jsoref/following{/other_user}", + "gists_url": "https://api.github.com/users/jsoref/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jsoref/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jsoref/subscriptions", + "organizations_url": "https://api.github.com/users/jsoref/orgs", + "repos_url": "https://api.github.com/users/jsoref/repos", + "events_url": "https://api.github.com/users/jsoref/events{/privacy}", + "received_events_url": "https://api.github.com/users/jsoref/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-11T23:30:25Z", + "updated_at": "2019-09-12T11:34:18Z", + "closed_at": "2019-09-12T03:48:29Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/543", + "html_url": "https://github.com/github-api/github-api/pull/543", + "diff_url": "https://github.com/github-api/github-api/pull/543.diff", + "patch_url": "https://github.com/github-api/github-api/pull/543.patch" + }, + "body": "(I wrote this a few weeks ago while trying to debug some github-branch-source-plugin stuff, I'm not done, but i might as well flush them)" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/542", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/542/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/542/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/542/events", + "html_url": "https://github.com/github-api/github-api/pull/542", + "id": 492329940, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE2NTIzODE2", + "number": 542, + "title": "Improved OkHttpConnector caching behavior", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 5, + "created_at": "2019-09-11T16:03:33Z", + "updated_at": "2019-10-01T20:11:32Z", + "closed_at": "2019-10-01T20:11:27Z", + "author_association": "MEMBER", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/542", + "html_url": "https://github.com/github-api/github-api/pull/542", + "diff_url": "https://github.com/github-api/github-api/pull/542.diff", + "patch_url": "https://github.com/github-api/github-api/pull/542.patch" + }, + "body": "In the Jenkins project we've seen a number of less than ideal behaviors by the OKHttp cache. \r\nSome instances it seems bad data gets in and then gets stuck in the cache. In other cases it appears the cache obey the `max-age=60` returned by GitHub and thus doesn't even look for new data from some requests. \r\n\r\nThe cache behavior is fine for client-side uses such as Android where optimizing for network usage is important. Users of this library are are generally less concerned with network usage - they turn on caching to avoid using up their itHub rate-limit budget.\r\n\r\nThis change modifies the default OkHttpConnect behavior to make OkHttp always check the cache against the GitHub site. OkHttp still sends the response `ETag` in the request which lets GitHub return a [`304 Not Modified`](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/304) if nothing has changed and does not count that request against the users rate-limit. OkHttp handles this response automatically and returns the cached data. \r\n\r\nThis means that by using a bit more network bandwidth, this change guarantees up-to-date data while keeping the same rate-limit savings. \r\n\r\nThis change has no effect outside the scenario where OkHttpConnector is used with caching.\r\n\r\nThis is basically the same behavior added to Jenkins [here](https://github.com/jenkinsci/github-branch-source-plugin/blob/e7ac121084bcdf1b5959668cea3fb3a22f380686/src/main/java/org/jenkinsci/plugins/github_branch_source/Connector.java#L726-L748)." + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/541", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/541/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/541/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/541/events", + "html_url": "https://github.com/github-api/github-api/pull/541", + "id": 492027372, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE2MjgwMDM2", + "number": 541, + "title": "Add GitHubApiWireMockRule", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-11T05:39:26Z", + "updated_at": "2019-09-11T05:54:34Z", + "closed_at": "2019-09-11T05:54:29Z", + "author_association": "MEMBER", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/541", + "html_url": "https://github.com/github-api/github-api/pull/541", + "diff_url": "https://github.com/github-api/github-api/pull/541.diff", + "patch_url": "https://github.com/github-api/github-api/pull/541.patch" + }, + "body": "Separates the WireMock and GitHub API info from project specific code." + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/540", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/540/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/540/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/540/events", + "html_url": "https://github.com/github-api/github-api/pull/540", + "id": 491417856, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1Nzg5MjI3", + "number": 540, + "title": "Working CI Build", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-10T02:37:28Z", + "updated_at": "2019-09-10T05:01:42Z", + "closed_at": "2019-09-10T05:01:34Z", + "author_association": "MEMBER", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/540", + "html_url": "https://github.com/github-api/github-api/pull/540", + "diff_url": "https://github.com/github-api/github-api/pull/540.diff", + "patch_url": "https://github.com/github-api/github-api/pull/540.patch" + }, + "body": "This change automatically turns off tests where we haven't had a chance to implement wiremocking.\r\nThey can still be run locally by setting test.github.useProxy (even though most of them do actually use the proxy).\r\n\r\nSimplifies added tests going forward - they will turn on automatically when they move from the old test base to wiremock." + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/538", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/538/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/538/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/538/events", + "html_url": "https://github.com/github-api/github-api/pull/538", + "id": 488722511, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzEzNjg2MDgy", + "number": 538, + "title": "Namespace PR head queries with repo's owner by default", + "user": { + "login": "ewiegs4", + "id": 24780711, + "node_id": "MDQ6VXNlcjI0NzgwNzEx", + "avatar_url": "https://avatars3.githubusercontent.com/u/24780711?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ewiegs4", + "html_url": "https://github.com/ewiegs4", + "followers_url": "https://api.github.com/users/ewiegs4/followers", + "following_url": "https://api.github.com/users/ewiegs4/following{/other_user}", + "gists_url": "https://api.github.com/users/ewiegs4/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ewiegs4/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ewiegs4/subscriptions", + "organizations_url": "https://api.github.com/users/ewiegs4/orgs", + "repos_url": "https://api.github.com/users/ewiegs4/repos", + "events_url": "https://api.github.com/users/ewiegs4/events{/privacy}", + "received_events_url": "https://api.github.com/users/ewiegs4/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 4, + "created_at": "2019-09-03T17:07:35Z", + "updated_at": "2019-09-09T23:31:22Z", + "closed_at": "2019-09-09T23:31:22Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/538", + "html_url": "https://github.com/github-api/github-api/pull/538", + "diff_url": "https://github.com/github-api/github-api/pull/538.diff", + "patch_url": "https://github.com/github-api/github-api/pull/538.patch" + }, + "body": "The [create a pull request API](https://developer.github.com/v3/pulls/#create-a-pull-request) does not require a namespace on the head branch when creating a pull request between two branches in the same repository.\r\n\r\nHowever, the [list pull requests API](https://developer.github.com/v3/pulls/#list-pull-requests) **does** require a namespace on the `head` value in order to work properly. If the namespace is omitted, the call _ignores_ the `head` parameter entirely, returning all pull requests that match on the other criteria.\r\n\r\nIn my opinion, this seems like an oversight in the API and creates quite a pitfall.\r\n\r\nFor example, creating a pull request between two branches in the same repository looks like:\r\n`repository.createPullRequest(\"title\", \"my-branch\", \"master\", null);`\r\nBut the query to pull back the newly created pull request must look like:\r\n`repository.queryPullRequests().state(GHIssueState.OPEN).head(\"my-org:my-branch\").base(\"master\").list();`\r\nForgetting the `my-org:` results in all open pull-requests into the master branch being returned, which is clearly not what was intended in the query.\r\n\r\nThis change causes the `head` value to be namespaced by default if a non-namespaced value is provided, given that providing a non-namespaced value is effectively the same as `null` and will never behave as the developer intended." + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/537", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/537/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/537/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/537/events", + "html_url": "https://github.com/github-api/github-api/pull/537", + "id": 487746664, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzEyOTQwNTA1", + "number": 537, + "title": "Add WireMock testing facility", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2019-08-31T08:36:33Z", + "updated_at": "2019-09-06T23:17:42Z", + "closed_at": "2019-09-06T23:17:37Z", + "author_association": "MEMBER", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/537", + "html_url": "https://github.com/github-api/github-api/pull/537", + "diff_url": "https://github.com/github-api/github-api/pull/537.diff", + "patch_url": "https://github.com/github-api/github-api/pull/537.patch" + }, + "body": "@kohsuke \r\nDoes this look reasonable to you? \r\n\r\nRelated to #316 and #382 " + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/535", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/535/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/535/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/535/events", + "html_url": "https://github.com/github-api/github-api/issues/535", + "id": 487214458, + "node_id": "MDU6SXNzdWU0ODcyMTQ0NTg=", + "number": 535, + "title": "GHRepository.listReleases() return empty always", + "user": { + "login": "zacker330", + "id": 3665451, + "node_id": "MDQ6VXNlcjM2NjU0NTE=", + "avatar_url": "https://avatars3.githubusercontent.com/u/3665451?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/zacker330", + "html_url": "https://github.com/zacker330", + "followers_url": "https://api.github.com/users/zacker330/followers", + "following_url": "https://api.github.com/users/zacker330/following{/other_user}", + "gists_url": "https://api.github.com/users/zacker330/gists{/gist_id}", + "starred_url": "https://api.github.com/users/zacker330/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/zacker330/subscriptions", + "organizations_url": "https://api.github.com/users/zacker330/orgs", + "repos_url": "https://api.github.com/users/zacker330/repos", + "events_url": "https://api.github.com/users/zacker330/events{/privacy}", + "received_events_url": "https://api.github.com/users/zacker330/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2019-08-29T23:12:20Z", + "updated_at": "2019-08-30T02:59:22Z", + "closed_at": "2019-08-30T00:50:16Z", + "author_association": "NONE", + "body": "I tried pull releases of redis(https://github.com/antirez/redis) and nginx, but GHRepository.listReleases() return empty always" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/534", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/534/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/534/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/534/events", + "html_url": "https://github.com/github-api/github-api/pull/534", + "id": 485551662, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzExMTc1MDY2", + "number": 534, + "title": "Swap to HTTPs", + "user": { + "login": "res0nance", + "id": 31362124, + "node_id": "MDQ6VXNlcjMxMzYyMTI0", + "avatar_url": "https://avatars3.githubusercontent.com/u/31362124?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/res0nance", + "html_url": "https://github.com/res0nance", + "followers_url": "https://api.github.com/users/res0nance/followers", + "following_url": "https://api.github.com/users/res0nance/following{/other_user}", + "gists_url": "https://api.github.com/users/res0nance/gists{/gist_id}", + "starred_url": "https://api.github.com/users/res0nance/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/res0nance/subscriptions", + "organizations_url": "https://api.github.com/users/res0nance/orgs", + "repos_url": "https://api.github.com/users/res0nance/repos", + "events_url": "https://api.github.com/users/res0nance/events{/privacy}", + "received_events_url": "https://api.github.com/users/res0nance/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2019-08-27T02:46:15Z", + "updated_at": "2019-09-04T09:13:41Z", + "closed_at": "2019-08-28T20:24:53Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/534", + "html_url": "https://github.com/github-api/github-api/pull/534", + "diff_url": "https://github.com/github-api/github-api/pull/534.diff", + "patch_url": "https://github.com/github-api/github-api/pull/534.patch" + }, + "body": "Swap to https where it makes sense.\r\n\r\nThe description should be updated as well." + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/533", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/533/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/533/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/533/events", + "html_url": "https://github.com/github-api/github-api/pull/533", + "id": 481300020, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzA3ODI2MjQ2", + "number": 533, + "title": "jackson-databind 2.9.9.3", + "user": { + "login": "sullis", + "id": 30938, + "node_id": "MDQ6VXNlcjMwOTM4", + "avatar_url": "https://avatars3.githubusercontent.com/u/30938?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/sullis", + "html_url": "https://github.com/sullis", + "followers_url": "https://api.github.com/users/sullis/followers", + "following_url": "https://api.github.com/users/sullis/following{/other_user}", + "gists_url": "https://api.github.com/users/sullis/gists{/gist_id}", + "starred_url": "https://api.github.com/users/sullis/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/sullis/subscriptions", + "organizations_url": "https://api.github.com/users/sullis/orgs", + "repos_url": "https://api.github.com/users/sullis/repos", + "events_url": "https://api.github.com/users/sullis/events{/privacy}", + "received_events_url": "https://api.github.com/users/sullis/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-08-15T19:24:09Z", + "updated_at": "2019-08-24T02:06:25Z", + "closed_at": "2019-08-24T02:06:25Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/533", + "html_url": "https://github.com/github-api/github-api/pull/533", + "diff_url": "https://github.com/github-api/github-api/pull/533.diff", + "patch_url": "https://github.com/github-api/github-api/pull/533.patch" + }, + "body": "" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/527", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/527/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/527/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/527/events", + "html_url": "https://github.com/github-api/github-api/pull/527", + "id": 467483053, + "node_id": "MDExOlB1bGxSZXF1ZXN0Mjk3MTI3MDQz", + "number": 527, + "title": "Remove unnessesairy \"throws\"", + "user": { + "login": "WouterG", + "id": 1137039, + "node_id": "MDQ6VXNlcjExMzcwMzk=", + "avatar_url": "https://avatars2.githubusercontent.com/u/1137039?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/WouterG", + "html_url": "https://github.com/WouterG", + "followers_url": "https://api.github.com/users/WouterG/followers", + "following_url": "https://api.github.com/users/WouterG/following{/other_user}", + "gists_url": "https://api.github.com/users/WouterG/gists{/gist_id}", + "starred_url": "https://api.github.com/users/WouterG/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/WouterG/subscriptions", + "organizations_url": "https://api.github.com/users/WouterG/orgs", + "repos_url": "https://api.github.com/users/WouterG/repos", + "events_url": "https://api.github.com/users/WouterG/events{/privacy}", + "received_events_url": "https://api.github.com/users/WouterG/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-07-12T15:46:43Z", + "updated_at": "2019-09-10T02:38:10Z", + "closed_at": "2019-09-10T02:38:09Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/527", + "html_url": "https://github.com/github-api/github-api/pull/527", + "diff_url": "https://github.com/github-api/github-api/pull/527.diff", + "patch_url": "https://github.com/github-api/github-api/pull/527.patch" + }, + "body": "All IOExceptions are already caught within the method itself." + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/526", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/526/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/526/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/526/events", + "html_url": "https://github.com/github-api/github-api/issues/526", + "id": 467332954, + "node_id": "MDU6SXNzdWU0NjczMzI5NTQ=", + "number": 526, + "title": "Malformed URL exception while accessing Enterprise Repository and fetching data", + "user": { + "login": "m00lecule", + "id": 33501567, + "node_id": "MDQ6VXNlcjMzNTAxNTY3", + "avatar_url": "https://avatars1.githubusercontent.com/u/33501567?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/m00lecule", + "html_url": "https://github.com/m00lecule", + "followers_url": "https://api.github.com/users/m00lecule/followers", + "following_url": "https://api.github.com/users/m00lecule/following{/other_user}", + "gists_url": "https://api.github.com/users/m00lecule/gists{/gist_id}", + "starred_url": "https://api.github.com/users/m00lecule/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/m00lecule/subscriptions", + "organizations_url": "https://api.github.com/users/m00lecule/orgs", + "repos_url": "https://api.github.com/users/m00lecule/repos", + "events_url": "https://api.github.com/users/m00lecule/events{/privacy}", + "received_events_url": "https://api.github.com/users/m00lecule/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-07-12T10:08:31Z", + "updated_at": "2019-07-12T10:53:47Z", + "closed_at": "2019-07-12T10:53:47Z", + "author_association": "NONE", + "body": "I am getting this exception, while trying to connect to remote repository. \r\n\r\n``Exception in thread \"main\" java.net.MalformedURLException: no protocol: github.XXXX.com/repos/ilmt/apar2github\r\n\tat java.net.URL.(URL.java:593)\r\n\tat java.net.URL.(URL.java:490)\r\n\tat java.net.URL.(URL.java:439)\r\n\tat org.kohsuke.github.GitHub.getApiURL(GitHub.java:302)\r\n\tat org.kohsuke.github.Requester._to(Requester.java:280)\r\n\tat org.kohsuke.github.Requester.to(Requester.java:247)\r\n\tat org.kohsuke.github.GitHub.getRepository(GitHub.java:475)\r\n``\r\n\r\nand here is url where it is available:\r\n\r\nhttps://github.XXXX.com/ilmt/apar2github\r\n\r\nand code:\r\n\r\n``\r\n\tGitHub gh = GitHub.connectToEnterpriseWithOAuth(apiUrl, login, oAuth);\r\n\tGHRepository repository = gh.getRepository(\"ilmt/apar2github\");\t\r\n\tSystem.out.println(repository.getName());\r\n``\r\n\r\nand im using 1.95 version" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/517", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/517/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/517/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/517/events", + "html_url": "https://github.com/github-api/github-api/pull/517", + "id": 437538406, + "node_id": "MDExOlB1bGxSZXF1ZXN0MjczNzkxNjMw", + "number": 517, + "title": "Adds the ability to get a repository by ID", + "user": { + "login": "jamesatha", + "id": 3318082, + "node_id": "MDQ6VXNlcjMzMTgwODI=", + "avatar_url": "https://avatars2.githubusercontent.com/u/3318082?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jamesatha", + "html_url": "https://github.com/jamesatha", + "followers_url": "https://api.github.com/users/jamesatha/followers", + "following_url": "https://api.github.com/users/jamesatha/following{/other_user}", + "gists_url": "https://api.github.com/users/jamesatha/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jamesatha/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jamesatha/subscriptions", + "organizations_url": "https://api.github.com/users/jamesatha/orgs", + "repos_url": "https://api.github.com/users/jamesatha/repos", + "events_url": "https://api.github.com/users/jamesatha/events{/privacy}", + "received_events_url": "https://api.github.com/users/jamesatha/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-04-26T07:33:34Z", + "updated_at": "2019-06-20T00:11:05Z", + "closed_at": "2019-06-20T00:11:05Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/517", + "html_url": "https://github.com/github-api/github-api/pull/517", + "diff_url": "https://github.com/github-api/github-api/pull/517.diff", + "patch_url": "https://github.com/github-api/github-api/pull/517.patch" + }, + "body": "Fixes: https://github.com/kohsuke/github-api/issues/515" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/516", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/516/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/516/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/516/events", + "html_url": "https://github.com/github-api/github-api/pull/516", + "id": 437535600, + "node_id": "MDExOlB1bGxSZXF1ZXN0MjczNzg5NjIx", + "number": 516, + "title": "Broken PR", + "user": { + "login": "jamesatha", + "id": 3318082, + "node_id": "MDQ6VXNlcjMzMTgwODI=", + "avatar_url": "https://avatars2.githubusercontent.com/u/3318082?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jamesatha", + "html_url": "https://github.com/jamesatha", + "followers_url": "https://api.github.com/users/jamesatha/followers", + "following_url": "https://api.github.com/users/jamesatha/following{/other_user}", + "gists_url": "https://api.github.com/users/jamesatha/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jamesatha/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jamesatha/subscriptions", + "organizations_url": "https://api.github.com/users/jamesatha/orgs", + "repos_url": "https://api.github.com/users/jamesatha/repos", + "events_url": "https://api.github.com/users/jamesatha/events{/privacy}", + "received_events_url": "https://api.github.com/users/jamesatha/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-04-26T07:25:48Z", + "updated_at": "2019-04-26T07:35:40Z", + "closed_at": "2019-04-26T07:32:00Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/516", + "html_url": "https://github.com/github-api/github-api/pull/516", + "diff_url": "https://github.com/github-api/github-api/pull/516.diff", + "patch_url": "https://github.com/github-api/github-api/pull/516.patch" + }, + "body": "My force push seems to have messed up the PR. Sorry, remaking" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/515", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/515/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/515/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/515/events", + "html_url": "https://github.com/github-api/github-api/issues/515", + "id": 437530259, + "node_id": "MDU6SXNzdWU0Mzc1MzAyNTk=", + "number": 515, + "title": "Allow getting a repository by ID", + "user": { + "login": "jamesatha", + "id": 3318082, + "node_id": "MDQ6VXNlcjMzMTgwODI=", + "avatar_url": "https://avatars2.githubusercontent.com/u/3318082?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jamesatha", + "html_url": "https://github.com/jamesatha", + "followers_url": "https://api.github.com/users/jamesatha/followers", + "following_url": "https://api.github.com/users/jamesatha/following{/other_user}", + "gists_url": "https://api.github.com/users/jamesatha/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jamesatha/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jamesatha/subscriptions", + "organizations_url": "https://api.github.com/users/jamesatha/orgs", + "repos_url": "https://api.github.com/users/jamesatha/repos", + "events_url": "https://api.github.com/users/jamesatha/events{/privacy}", + "received_events_url": "https://api.github.com/users/jamesatha/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-04-26T07:09:34Z", + "updated_at": "2019-06-20T00:11:04Z", + "closed_at": "2019-06-20T00:11:04Z", + "author_association": "CONTRIBUTOR", + "body": "Other clients use the undocumented api to get a repository by ID. Can we add that to this client as well?\r\n\r\nExamples:\r\nPHP: https://github.com/KnpLabs/php-github-api/pull/579\r\nPython: https://github.com/PyGithub/PyGithub/blob/b64b0d6942bb27095bd035b8c0db10ca35448be3/github/MainClass.py#L191\r\nOctoKit supports it: https://github.com/octokit/rest.js/issues/163#issuecomment-450007728\r\n\r\nAnd it seems to be sticking around indefinitely: https://github.com/piotrmurach/github/issues/283#issuecomment-249092851" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/509", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/509/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/509/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/509/events", + "html_url": "https://github.com/github-api/github-api/pull/509", + "id": 425311622, + "node_id": "MDExOlB1bGxSZXF1ZXN0MjY0NDM4NDc0", + "number": 509, + "title": "Fixed typo of ADMIN_HOOK variable", + "user": { + "login": "baymac", + "id": 23079344, + "node_id": "MDQ6VXNlcjIzMDc5MzQ0", + "avatar_url": "https://avatars3.githubusercontent.com/u/23079344?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/baymac", + "html_url": "https://github.com/baymac", + "followers_url": "https://api.github.com/users/baymac/followers", + "following_url": "https://api.github.com/users/baymac/following{/other_user}", + "gists_url": "https://api.github.com/users/baymac/gists{/gist_id}", + "starred_url": "https://api.github.com/users/baymac/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/baymac/subscriptions", + "organizations_url": "https://api.github.com/users/baymac/orgs", + "repos_url": "https://api.github.com/users/baymac/repos", + "events_url": "https://api.github.com/users/baymac/events{/privacy}", + "received_events_url": "https://api.github.com/users/baymac/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 3, + "created_at": "2019-03-26T09:36:49Z", + "updated_at": "2019-03-26T10:24:20Z", + "closed_at": "2019-03-26T10:22:57Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/509", + "html_url": "https://github.com/github-api/github-api/pull/509", + "diff_url": "https://github.com/github-api/github-api/pull/509.diff", + "patch_url": "https://github.com/github-api/github-api/pull/509.patch" + }, + "body": "Fixed the variable typo and also sending a PR to Github Plugin which uses this variable." + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/__files/repositories_617210_issues-46f0ca81-080b-419a-b494-df00573bd9aa.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/__files/repositories_617210_issues-46f0ca81-080b-419a-b494-df00573bd9aa.json new file mode 100644 index 0000000000..d0991d0514 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/__files/repositories_617210_issues-46f0ca81-080b-419a-b494-df00573bd9aa.json @@ -0,0 +1,1418 @@ +[ + { + "url": "https://api.github.com/repos/github-api/github-api/issues/112", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/112/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/112/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/112/events", + "html_url": "https://github.com/github-api/github-api/pull/112", + "id": 38606529, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTg4MjMxODU=", + "number": 112, + "title": "Get all orgs/teams/permissions in a single GitHub API call", + "user": { + "login": "lucamilanesio", + "id": 182893, + "node_id": "MDQ6VXNlcjE4Mjg5Mw==", + "avatar_url": "https://avatars3.githubusercontent.com/u/182893?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/lucamilanesio", + "html_url": "https://github.com/lucamilanesio", + "followers_url": "https://api.github.com/users/lucamilanesio/followers", + "following_url": "https://api.github.com/users/lucamilanesio/following{/other_user}", + "gists_url": "https://api.github.com/users/lucamilanesio/gists{/gist_id}", + "starred_url": "https://api.github.com/users/lucamilanesio/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/lucamilanesio/subscriptions", + "organizations_url": "https://api.github.com/users/lucamilanesio/orgs", + "repos_url": "https://api.github.com/users/lucamilanesio/repos", + "events_url": "https://api.github.com/users/lucamilanesio/events{/privacy}", + "received_events_url": "https://api.github.com/users/lucamilanesio/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 13, + "created_at": "2014-07-24T08:16:46Z", + "updated_at": "2014-08-20T09:59:14Z", + "closed_at": "2014-08-19T17:57:39Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/112", + "html_url": "https://github.com/github-api/github-api/pull/112", + "diff_url": "https://github.com/github-api/github-api/pull/112.diff", + "patch_url": "https://github.com/github-api/github-api/pull/112.patch" + }, + "body": "Exposes a new API call at GitHub root level to build the complete\nset of organisations and teams that current user belongs to.\n\nThis change allows to massively reduce the number of calls to GitHub \nespecially for people that belongs to multiple organisations with \nlots of teams and members.\n\nSigned-off-by: Luca Milanesio luca.milanesio@gmail.com\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/111", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/111/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/111/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/111/events", + "html_url": "https://github.com/github-api/github-api/issues/111", + "id": 38177752, + "node_id": "MDU6SXNzdWUzODE3Nzc1Mg==", + "number": 111, + "title": "NullPointerException in GHPerson", + "user": { + "login": "kuc", + "id": 1827393, + "node_id": "MDQ6VXNlcjE4MjczOTM=", + "avatar_url": "https://avatars1.githubusercontent.com/u/1827393?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kuc", + "html_url": "https://github.com/kuc", + "followers_url": "https://api.github.com/users/kuc/followers", + "following_url": "https://api.github.com/users/kuc/following{/other_user}", + "gists_url": "https://api.github.com/users/kuc/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kuc/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kuc/subscriptions", + "organizations_url": "https://api.github.com/users/kuc/orgs", + "repos_url": "https://api.github.com/users/kuc/repos", + "events_url": "https://api.github.com/users/kuc/events{/privacy}", + "received_events_url": "https://api.github.com/users/kuc/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 8, + "created_at": "2014-07-18T13:51:13Z", + "updated_at": "2015-04-07T07:48:21Z", + "closed_at": "2015-02-15T15:14:08Z", + "author_association": "NONE", + "body": "I'm not sure if I should report this here or to https://github.com/janinko/ghprb, but exception is thrown in `at org.kohsuke.github.GHPerson.populate(GHPerson.java:42)`.\n\nI use `GitHub API Plugin 1.55` and `GitHub Pull Request Builder 1.12`.\n\n```\nJul 14, 2014 6:54:53 PM WARNING org.jenkinsci.plugins.ghprb.GhprbPullRequest obtainAuthorEmail\nCouldn't obtain author email.\njava.lang.NullPointerException\n at org.kohsuke.github.GHPerson.populate(GHPerson.java:42)\n at org.kohsuke.github.GHPerson.getEmail(GHPerson.java:220)\n at org.jenkinsci.plugins.ghprb.GhprbPullRequest.obtainAuthorEmail(GhprbPullRequest.java:266)\n at org.jenkinsci.plugins.ghprb.GhprbPullRequest.tryBuild(GhprbPullRequest.java:161)\n at org.jenkinsci.plugins.ghprb.GhprbPullRequest.check(GhprbPullRequest.java:106)\n at org.jenkinsci.plugins.ghprb.GhprbRepository.onPullRequestHook(GhprbRepository.java:233)\n at org.jenkinsci.plugins.ghprb.GhprbRootAction.doIndex(GhprbRootAction.java:62)\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:483)\n at org.kohsuke.stapler.Function$InstanceFunction.invoke(Function.java:298)\n at org.kohsuke.stapler.Function.bindAndInvoke(Function.java:161)\n at org.kohsuke.stapler.Function.bindAndInvokeAndServeResponse(Function.java:96)\n at org.kohsuke.stapler.MetaClass$2.dispatch(MetaClass.java:164)\n at org.kohsuke.stapler.Stapler.tryInvoke(Stapler.java:728)\n at org.kohsuke.stapler.Stapler.invoke(Stapler.java:858)\n at org.kohsuke.stapler.MetaClass$12.dispatch(MetaClass.java:390)\n at org.kohsuke.stapler.Stapler.tryInvoke(Stapler.java:728)\n at org.kohsuke.stapler.Stapler.invoke(Stapler.java:858)\n at org.kohsuke.stapler.Stapler.invoke(Stapler.java:631)\n(...)\n```\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/110", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/110/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/110/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/110/events", + "html_url": "https://github.com/github-api/github-api/issues/110", + "id": 38099071, + "node_id": "MDU6SXNzdWUzODA5OTA3MQ==", + "number": 110, + "title": "Suggested enhancement: GHPerson#getAllRepositories()", + "user": { + "login": "alexrothenberg", + "id": 12577, + "node_id": "MDQ6VXNlcjEyNTc3", + "avatar_url": "https://avatars3.githubusercontent.com/u/12577?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/alexrothenberg", + "html_url": "https://github.com/alexrothenberg", + "followers_url": "https://api.github.com/users/alexrothenberg/followers", + "following_url": "https://api.github.com/users/alexrothenberg/following{/other_user}", + "gists_url": "https://api.github.com/users/alexrothenberg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/alexrothenberg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/alexrothenberg/subscriptions", + "organizations_url": "https://api.github.com/users/alexrothenberg/orgs", + "repos_url": "https://api.github.com/users/alexrothenberg/repos", + "events_url": "https://api.github.com/users/alexrothenberg/events{/privacy}", + "received_events_url": "https://api.github.com/users/alexrothenberg/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 3, + "created_at": "2014-07-17T16:18:32Z", + "updated_at": "2015-02-15T15:06:35Z", + "closed_at": "2015-02-15T15:06:35Z", + "author_association": "NONE", + "body": "Currently `GHPerson#getRepositories()` will only get the first 30 repositories. It would be useful (to me) to have a `getAllRepositories` that returns a map of all my repositories, if there are a lot it would follow pagination links making several github api requests.\n\nWould you be open to this enhancement? If so I'll work on a pull request.\n\nThanks\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/109", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/109/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/109/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/109/events", + "html_url": "https://github.com/github-api/github-api/issues/109", + "id": 37772481, + "node_id": "MDU6SXNzdWUzNzc3MjQ4MQ==", + "number": 109, + "title": "add support for proxy", + "user": { + "login": "layerssss", + "id": 1559832, + "node_id": "MDQ6VXNlcjE1NTk4MzI=", + "avatar_url": "https://avatars2.githubusercontent.com/u/1559832?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/layerssss", + "html_url": "https://github.com/layerssss", + "followers_url": "https://api.github.com/users/layerssss/followers", + "following_url": "https://api.github.com/users/layerssss/following{/other_user}", + "gists_url": "https://api.github.com/users/layerssss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/layerssss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/layerssss/subscriptions", + "organizations_url": "https://api.github.com/users/layerssss/orgs", + "repos_url": "https://api.github.com/users/layerssss/repos", + "events_url": "https://api.github.com/users/layerssss/events{/privacy}", + "received_events_url": "https://api.github.com/users/layerssss/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 3, + "created_at": "2014-07-14T09:50:13Z", + "updated_at": "2015-02-15T17:14:50Z", + "closed_at": "2015-02-15T15:03:41Z", + "author_association": "NONE", + "body": "Hi, I am using the github-oauth-plugin on my jenkins instances. And I need an https proxy to reach github.com access points. Recently the plugin [patched](https://github.com/jenkinsci/github-oauth-plugin/pull/15) its oauth part with support for setting an http proxy via `-Dhttps.proxyHost` & `-Dhttps.proxyPort` arguments.\n\nHowever, setting those is still not effective for retrieving user's github group list, which is backed by github-api. So is there a way can I set a proxy for github-api? or we need one\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/108", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/108/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/108/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/108/events", + "html_url": "https://github.com/github-api/github-api/issues/108", + "id": 37562777, + "node_id": "MDU6SXNzdWUzNzU2Mjc3Nw==", + "number": 108, + "title": "Error while accessing rate limit API - No subject alternative DNS name matching api.github.com found.", + "user": { + "login": "kuc", + "id": 1827393, + "node_id": "MDQ6VXNlcjE4MjczOTM=", + "avatar_url": "https://avatars1.githubusercontent.com/u/1827393?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kuc", + "html_url": "https://github.com/kuc", + "followers_url": "https://api.github.com/users/kuc/followers", + "following_url": "https://api.github.com/users/kuc/following{/other_user}", + "gists_url": "https://api.github.com/users/kuc/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kuc/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kuc/subscriptions", + "organizations_url": "https://api.github.com/users/kuc/orgs", + "repos_url": "https://api.github.com/users/kuc/repos", + "events_url": "https://api.github.com/users/kuc/events{/privacy}", + "received_events_url": "https://api.github.com/users/kuc/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2014-07-10T13:36:53Z", + "updated_at": "2015-02-15T14:58:08Z", + "closed_at": "2015-02-15T14:58:08Z", + "author_association": "NONE", + "body": "```\njavax.net.ssl.SSLHandshakeException: java.security.cert.CertificateException: No subject alternative DNS name matching api.github.com found.\n at sun.security.ssl.Alerts.getSSLException(Alerts.java:192)\n at sun.security.ssl.SSLSocketImpl.fatal(SSLSocketImpl.java:1917)\n at sun.security.ssl.Handshaker.fatalSE(Handshaker.java:301)\n at sun.security.ssl.Handshaker.fatalSE(Handshaker.java:295)\n at sun.security.ssl.ClientHandshaker.serverCertificate(ClientHandshaker.java:1369)\n at sun.security.ssl.ClientHandshaker.processMessage(ClientHandshaker.java:156)\n at sun.security.ssl.Handshaker.processLoop(Handshaker.java:925)\n at sun.security.ssl.Handshaker.process_record(Handshaker.java:860)\n at sun.security.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:1043)\n at sun.security.ssl.SSLSocketImpl.performInitialHandshake(SSLSocketImpl.java:1343)\n at sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:1371)\n at sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:1355)\n at sun.net.www.protocol.https.HttpsClient.afterConnect(HttpsClient.java:563)\n at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:185)\n at sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1511)\n at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1439)\n at sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(HttpsURLConnectionImpl.java:254)\n at org.kohsuke.github.Requester.parse(Requester.java:359)\n at org.kohsuke.github.Requester._to(Requester.java:180)\n at org.kohsuke.github.Requester.to(Requester.java:155)\n at org.kohsuke.github.GitHub.getRateLimit(GitHub.java:244)\n at org.jenkinsci.plugins.ghprb.GhprbRepository.initGhRepository(GhprbRepository.java:51)\n at org.jenkinsci.plugins.ghprb.GhprbRepository.check(GhprbRepository.java:73)\n at org.jenkinsci.plugins.ghprb.Ghprb.run(Ghprb.java:95)\n at org.jenkinsci.plugins.ghprb.GhprbTrigger.run(GhprbTrigger.java:124)\n at hudson.triggers.Trigger.checkTriggers(Trigger.java:266)\n at hudson.triggers.Trigger$Cron.doRun(Trigger.java:214)\n at hudson.triggers.SafeTimerTask.run(SafeTimerTask.java:54)\n at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)\n at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:308)\n at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:180)\n at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:294)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)\n at java.lang.Thread.run(Thread.java:745)\nCaused by: java.security.cert.CertificateException: No subject alternative DNS name matching api.github.com found.\n at sun.security.util.HostnameChecker.matchDNS(HostnameChecker.java:191)\n at sun.security.util.HostnameChecker.match(HostnameChecker.java:93)\n at sun.security.ssl.X509TrustManagerImpl.checkIdentity(X509TrustManagerImpl.java:455)\n at sun.security.ssl.X509TrustManagerImpl.checkIdentity(X509TrustManagerImpl.java:436)\n at sun.security.ssl.X509TrustManagerImpl.checkTrusted(X509TrustManagerImpl.java:200)\n at sun.security.ssl.X509TrustManagerImpl.checkServerTrusted(X509TrustManagerImpl.java:124)\n at sun.security.ssl.ClientHandshaker.serverCertificate(ClientHandshaker.java:1351)\n ... 30 more\n```\n\nI use Jenkins via HTTPS with self-signed certificate - maybe it's related to\nhttp://stackoverflow.com/questions/10258101/sslhandshakeexception-no-subject-alternative-names-present\nor\nhttp://stackoverflow.com/questions/8443081/how-are-ssl-certificate-server-names-resolved-can-i-add-alternative-names-using\n?\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/107", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/107/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/107/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/107/events", + "html_url": "https://github.com/github-api/github-api/pull/107", + "id": 37440591, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTgxNDU2MjA=", + "number": 107, + "title": "General pagination", + "user": { + "login": "msperisen", + "id": 2448228, + "node_id": "MDQ6VXNlcjI0NDgyMjg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/2448228?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/msperisen", + "html_url": "https://github.com/msperisen", + "followers_url": "https://api.github.com/users/msperisen/followers", + "following_url": "https://api.github.com/users/msperisen/following{/other_user}", + "gists_url": "https://api.github.com/users/msperisen/gists{/gist_id}", + "starred_url": "https://api.github.com/users/msperisen/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/msperisen/subscriptions", + "organizations_url": "https://api.github.com/users/msperisen/orgs", + "repos_url": "https://api.github.com/users/msperisen/repos", + "events_url": "https://api.github.com/users/msperisen/events{/privacy}", + "received_events_url": "https://api.github.com/users/msperisen/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2014-07-09T07:38:48Z", + "updated_at": "2014-08-30T20:52:36Z", + "closed_at": "2014-08-30T20:52:35Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/107", + "html_url": "https://github.com/github-api/github-api/pull/107", + "diff_url": "https://github.com/github-api/github-api/pull/107.diff", + "patch_url": "https://github.com/github-api/github-api/pull/107.patch" + }, + "body": "implementation of general pagination by evaluating link header field. as suggested by api the link for pagination is not constructed in code but taken out of the link field (rel=next).\nrefresh of cache to be able to reflect update operations on github without creating new GitHub instance.\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/106", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/106/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/106/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/106/events", + "html_url": "https://github.com/github-api/github-api/pull/106", + "id": 37058872, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTc5MzMwMjg=", + "number": 106, + "title": "Implement pagination on list of private+public repos of a user.", + "user": { + "login": "lucamilanesio", + "id": 182893, + "node_id": "MDQ6VXNlcjE4Mjg5Mw==", + "avatar_url": "https://avatars3.githubusercontent.com/u/182893?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/lucamilanesio", + "html_url": "https://github.com/lucamilanesio", + "followers_url": "https://api.github.com/users/lucamilanesio/followers", + "following_url": "https://api.github.com/users/lucamilanesio/following{/other_user}", + "gists_url": "https://api.github.com/users/lucamilanesio/gists{/gist_id}", + "starred_url": "https://api.github.com/users/lucamilanesio/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/lucamilanesio/subscriptions", + "organizations_url": "https://api.github.com/users/lucamilanesio/orgs", + "repos_url": "https://api.github.com/users/lucamilanesio/repos", + "events_url": "https://api.github.com/users/lucamilanesio/events{/privacy}", + "received_events_url": "https://api.github.com/users/lucamilanesio/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2014-07-03T09:08:01Z", + "updated_at": "2014-07-05T02:13:04Z", + "closed_at": "2014-07-05T02:13:04Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/106", + "html_url": "https://github.com/github-api/github-api/pull/106", + "diff_url": "https://github.com/github-api/github-api/pull/106.diff", + "patch_url": "https://github.com/github-api/github-api/pull/106.patch" + }, + "body": "The paginated version of listRepositories() was \nmissing at GHMyself: as side-effect of this bug\nwhen requesting a paginated list of repositories\nthe ones privately owned by a user were not shown.\n\nThis was caused by the missing override of the \nlistRepositories(final int pageSize) at GHMyself\nthat caused the GHPerson implementation to invoked.\n\nThe GHPerson version uses the /users/:org/repos?per_page=x\nURL which _works fine_ for organisations but unfortunately\n_does not return_ private repositories for users.\n\nIMHO GitHub API are quite inconsistent form this \npoint of view, but they are documented in this way\nso that work (inconsistently) as designed.\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/105", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/105/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/105/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/105/events", + "html_url": "https://github.com/github-api/github-api/issues/105", + "id": 36875199, + "node_id": "MDU6SXNzdWUzNjg3NTE5OQ==", + "number": 105, + "title": "Add support for retrieving repository available labels", + "user": { + "login": "idoganzer", + "id": 7049039, + "node_id": "MDQ6VXNlcjcwNDkwMzk=", + "avatar_url": "https://avatars0.githubusercontent.com/u/7049039?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/idoganzer", + "html_url": "https://github.com/idoganzer", + "followers_url": "https://api.github.com/users/idoganzer/followers", + "following_url": "https://api.github.com/users/idoganzer/following{/other_user}", + "gists_url": "https://api.github.com/users/idoganzer/gists{/gist_id}", + "starred_url": "https://api.github.com/users/idoganzer/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/idoganzer/subscriptions", + "organizations_url": "https://api.github.com/users/idoganzer/orgs", + "repos_url": "https://api.github.com/users/idoganzer/repos", + "events_url": "https://api.github.com/users/idoganzer/events{/privacy}", + "received_events_url": "https://api.github.com/users/idoganzer/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2014-07-01T09:18:49Z", + "updated_at": "2015-02-15T14:55:45Z", + "closed_at": "2015-02-15T14:55:45Z", + "author_association": "NONE", + "body": "Hi, this library is great!\ncan you add a support to retrieve all available labels for a repository?\nhttps://developer.github.com/v3/issues/labels/#list-all-labels-for-this-repository\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/104", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/104/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/104/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/104/events", + "html_url": "https://github.com/github-api/github-api/issues/104", + "id": 36722784, + "node_id": "MDU6SXNzdWUzNjcyMjc4NA==", + "number": 104, + "title": "Consider committing to using OkHttp in preference to HttpURLConnection", + "user": { + "login": "rtyley", + "id": 52038, + "node_id": "MDQ6VXNlcjUyMDM4", + "avatar_url": "https://avatars3.githubusercontent.com/u/52038?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rtyley", + "html_url": "https://github.com/rtyley", + "followers_url": "https://api.github.com/users/rtyley/followers", + "following_url": "https://api.github.com/users/rtyley/following{/other_user}", + "gists_url": "https://api.github.com/users/rtyley/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rtyley/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rtyley/subscriptions", + "organizations_url": "https://api.github.com/users/rtyley/orgs", + "repos_url": "https://api.github.com/users/rtyley/repos", + "events_url": "https://api.github.com/users/rtyley/events{/privacy}", + "received_events_url": "https://api.github.com/users/rtyley/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 4, + "created_at": "2014-06-28T10:37:56Z", + "updated_at": "2015-03-22T18:18:39Z", + "closed_at": "2015-03-22T18:18:39Z", + "author_association": "CONTRIBUTOR", + "body": "This blogpost explains the advantages of OkHttp's interface over `HttpURLConnection` - it neatly supports separation of [Request](https://github.com/square/okhttp/blob/parent-2.0.0/okhttp/src/main/java/com/squareup/okhttp/Request.java) and [Response](https://github.com/square/okhttp/blob/parent-2.0.0/okhttp/src/main/java/com/squareup/okhttp/Response.java), and offers an asynchronous [Call](https://github.com/square/okhttp/blob/parent-2.0.0/okhttp/src/main/java/com/squareup/okhttp/Call.java) interface:\n\nhttp://corner.squareup.com/2014/06/okhttp-2.html\n\nIn order for `github-api` to take full advantage of the superior OkHttp API - and to expose it to external users so that **users can do async calls to the GitHub API** - would probably require commiting to using OkHttp everywhere within the `github-api` library, removing all usage of HttpURLConnection. This might feel like a big change, but it's mostly an _internal_ one, so hopefully would not substantially impact consumers of the library, other than offering them additional functionality.\n\nAmongst it's many consumers, OkHttp is also the engine that powers [HttpUrlConnection as of Android 4.4](https://twitter.com/JakeWharton/status/482563299511250944), so it's a library that has a lot of traction and support.\n\nSee the OkHttp ['Recipes'](https://github.com/square/okhttp/wiki/Recipes) documentation for code usage examples.\n\nWould there be any interest in a pull-request that made this happen?\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/103", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/103/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/103/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/103/events", + "html_url": "https://github.com/github-api/github-api/pull/103", + "id": 36722392, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTc3MzY2ODg=", + "number": 103, + "title": "Update to OkHttp 2.0.0, which has a new OkUrlFactory", + "user": { + "login": "rtyley", + "id": 52038, + "node_id": "MDQ6VXNlcjUyMDM4", + "avatar_url": "https://avatars3.githubusercontent.com/u/52038?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rtyley", + "html_url": "https://github.com/rtyley", + "followers_url": "https://api.github.com/users/rtyley/followers", + "following_url": "https://api.github.com/users/rtyley/following{/other_user}", + "gists_url": "https://api.github.com/users/rtyley/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rtyley/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rtyley/subscriptions", + "organizations_url": "https://api.github.com/users/rtyley/orgs", + "repos_url": "https://api.github.com/users/rtyley/repos", + "events_url": "https://api.github.com/users/rtyley/events{/privacy}", + "received_events_url": "https://api.github.com/users/rtyley/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2014-06-28T10:13:09Z", + "updated_at": "2014-07-03T04:13:37Z", + "closed_at": "2014-07-03T04:13:37Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/103", + "html_url": "https://github.com/github-api/github-api/pull/103", + "diff_url": "https://github.com/github-api/github-api/pull/103.diff", + "patch_url": "https://github.com/github-api/github-api/pull/103.patch" + }, + "body": "OkHttp changed API with v2.0.0, and the `client.open(url)` method no longer exists:\n\n\"URLConnection support has moved to the okhttp-urlconnection module. If you're upgrading from 1.x, this change will impact you. You will need to add the okhttp-urlconnection module to your project and use\nthe OkUrlFactory to create new instances of HttpURLConnection\"\n\nhttps://github.com/square/okhttp/blob/master/CHANGELOG.md#version-200-rc1\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/102", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/102/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/102/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/102/events", + "html_url": "https://github.com/github-api/github-api/pull/102", + "id": 36390209, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTc1MzU0MTQ=", + "number": 102, + "title": "Better FNFE from delete()", + "user": { + "login": "jglick", + "id": 154109, + "node_id": "MDQ6VXNlcjE1NDEwOQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/154109?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jglick", + "html_url": "https://github.com/jglick", + "followers_url": "https://api.github.com/users/jglick/followers", + "following_url": "https://api.github.com/users/jglick/following{/other_user}", + "gists_url": "https://api.github.com/users/jglick/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jglick/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jglick/subscriptions", + "organizations_url": "https://api.github.com/users/jglick/orgs", + "repos_url": "https://api.github.com/users/jglick/repos", + "events_url": "https://api.github.com/users/jglick/events{/privacy}", + "received_events_url": "https://api.github.com/users/jglick/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2014-06-24T14:39:49Z", + "updated_at": "2014-08-27T20:11:12Z", + "closed_at": "2014-07-03T04:13:16Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/102", + "html_url": "https://github.com/github-api/github-api/pull/102", + "diff_url": "https://github.com/github-api/github-api/pull/102.diff", + "patch_url": "https://github.com/github-api/github-api/pull/102.patch" + }, + "body": "[Explanation](http://stackoverflow.com/a/19327004/12916)\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/101", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/101/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/101/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/101/events", + "html_url": "https://github.com/github-api/github-api/pull/101", + "id": 35738965, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTcxNDgxNTk=", + "number": 101, + "title": "Un-finalize a handful of classes.", + "user": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2014-06-14T23:35:45Z", + "updated_at": "2014-07-03T04:12:59Z", + "closed_at": "2014-07-03T04:12:59Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/101", + "html_url": "https://github.com/github-api/github-api/pull/101", + "diff_url": "https://github.com/github-api/github-api/pull/101.diff", + "patch_url": "https://github.com/github-api/github-api/pull/101.patch" + }, + "body": "Having final classes prevents consumers of the API from mocking those classes in testing. I've un-finalized a handful of classes in this PR such that they will mock correctly for those people who are doing mocking work for unit tests.\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/100", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/100/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/100/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/100/events", + "html_url": "https://github.com/github-api/github-api/issues/100", + "id": 35499313, + "node_id": "MDU6SXNzdWUzNTQ5OTMxMw==", + "number": 100, + "title": "Unable to access commit date through api.", + "user": { + "login": "shalecraig", + "id": 679197, + "node_id": "MDQ6VXNlcjY3OTE5Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/679197?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/shalecraig", + "html_url": "https://github.com/shalecraig", + "followers_url": "https://api.github.com/users/shalecraig/followers", + "following_url": "https://api.github.com/users/shalecraig/following{/other_user}", + "gists_url": "https://api.github.com/users/shalecraig/gists{/gist_id}", + "starred_url": "https://api.github.com/users/shalecraig/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/shalecraig/subscriptions", + "organizations_url": "https://api.github.com/users/shalecraig/orgs", + "repos_url": "https://api.github.com/users/shalecraig/repos", + "events_url": "https://api.github.com/users/shalecraig/events{/privacy}", + "received_events_url": "https://api.github.com/users/shalecraig/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2014-06-11T16:07:44Z", + "updated_at": "2014-06-11T16:22:18Z", + "closed_at": "2014-06-11T16:22:18Z", + "author_association": "NONE", + "body": "API Documentation is [here](https://developer.github.com/v3/git/commits/#get-a-commit)\n\nI expected a method of the form of [1], but it looks like `getCommitter` and `getAuthor` return a User. Similarly, I expected [2] when looking for the user.\n\nIf there's a way to do this that I'm not aware of, please let me know.\n\n[1] `myGHCommit.getCommitter().getDate()` and `myGHCommit.getAuthor().getDate()`\n[2] `myGHCommit.getCommitter().getUser()` and `myGHCommit.getAuthor().getUser()`\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/99", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/99/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/99/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/99/events", + "html_url": "https://github.com/github-api/github-api/issues/99", + "id": 35443082, + "node_id": "MDU6SXNzdWUzNTQ0MzA4Mg==", + "number": 99, + "title": "getReadme its outdated", + "user": { + "login": "patriq", + "id": 3120671, + "node_id": "MDQ6VXNlcjMxMjA2NzE=", + "avatar_url": "https://avatars0.githubusercontent.com/u/3120671?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/patriq", + "html_url": "https://github.com/patriq", + "followers_url": "https://api.github.com/users/patriq/followers", + "following_url": "https://api.github.com/users/patriq/following{/other_user}", + "gists_url": "https://api.github.com/users/patriq/gists{/gist_id}", + "starred_url": "https://api.github.com/users/patriq/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/patriq/subscriptions", + "organizations_url": "https://api.github.com/users/patriq/orgs", + "repos_url": "https://api.github.com/users/patriq/repos", + "events_url": "https://api.github.com/users/patriq/events{/privacy}", + "received_events_url": "https://api.github.com/users/patriq/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2014-06-11T01:43:57Z", + "updated_at": "2015-02-15T14:31:41Z", + "closed_at": "2015-02-15T14:31:41Z", + "author_association": "NONE", + "body": "You either use this:\n/repos/:owner/:repo/readme\n\nOr you just change it to this:\n\nGHContent getReadme(){\n return getFileContent(\"README.md\");\n}\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/98", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/98/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/98/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/98/events", + "html_url": "https://github.com/github-api/github-api/pull/98", + "id": 35416453, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTY5NjAyMDE=", + "number": 98, + "title": "Implemented New Method to Retrieve all Collaborators from a Repository", + "user": { + "login": "luciano-sabenca-movile", + "id": 1260136, + "node_id": "MDQ6VXNlcjEyNjAxMzY=", + "avatar_url": "https://avatars2.githubusercontent.com/u/1260136?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/luciano-sabenca-movile", + "html_url": "https://github.com/luciano-sabenca-movile", + "followers_url": "https://api.github.com/users/luciano-sabenca-movile/followers", + "following_url": "https://api.github.com/users/luciano-sabenca-movile/following{/other_user}", + "gists_url": "https://api.github.com/users/luciano-sabenca-movile/gists{/gist_id}", + "starred_url": "https://api.github.com/users/luciano-sabenca-movile/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/luciano-sabenca-movile/subscriptions", + "organizations_url": "https://api.github.com/users/luciano-sabenca-movile/orgs", + "repos_url": "https://api.github.com/users/luciano-sabenca-movile/repos", + "events_url": "https://api.github.com/users/luciano-sabenca-movile/events{/privacy}", + "received_events_url": "https://api.github.com/users/luciano-sabenca-movile/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 6, + "created_at": "2014-06-10T19:31:08Z", + "updated_at": "2014-07-03T13:02:42Z", + "closed_at": "2014-07-03T04:26:01Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/98", + "html_url": "https://github.com/github-api/github-api/pull/98", + "diff_url": "https://github.com/github-api/github-api/pull/98.diff", + "patch_url": "https://github.com/github-api/github-api/pull/98.patch" + }, + "body": "Hi. \n\nI have a very ordinary use-case: I need to check if a Github user has access to a repository. Unfortunately, the Github's API doesn't provide a way to do it directly. To do it, I need to get all repos and check in which repositories the user is in repository's collaborators list. I tried to implement it, but a found a little problem: the method getCollaborators just return the first 30th collaborators. So, I've implemented a new method to retrieve all collaborators from a repository doing pagination just like several other methods from this library. \n\nThere is also, in this pull-request, fixes to some formatting issues and a unitary test-case to the new method.\n\nAny question/suggestion, please, feel free to contact me.\n\nThanks in advance\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/97", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/97/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/97/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/97/events", + "html_url": "https://github.com/github-api/github-api/pull/97", + "id": 35216270, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTY4NTY5MzM=", + "number": 97, + "title": "Add support for adding context to commit status.", + "user": { + "login": "suryagaddipati", + "id": 64078, + "node_id": "MDQ6VXNlcjY0MDc4", + "avatar_url": "https://avatars3.githubusercontent.com/u/64078?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/suryagaddipati", + "html_url": "https://github.com/suryagaddipati", + "followers_url": "https://api.github.com/users/suryagaddipati/followers", + "following_url": "https://api.github.com/users/suryagaddipati/following{/other_user}", + "gists_url": "https://api.github.com/users/suryagaddipati/gists{/gist_id}", + "starred_url": "https://api.github.com/users/suryagaddipati/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/suryagaddipati/subscriptions", + "organizations_url": "https://api.github.com/users/suryagaddipati/orgs", + "repos_url": "https://api.github.com/users/suryagaddipati/repos", + "events_url": "https://api.github.com/users/suryagaddipati/events{/privacy}", + "received_events_url": "https://api.github.com/users/suryagaddipati/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 8, + "created_at": "2014-06-07T19:34:59Z", + "updated_at": "2014-06-13T17:30:26Z", + "closed_at": "2014-06-08T17:21:43Z", + "author_association": "COLLABORATOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/97", + "html_url": "https://github.com/github-api/github-api/pull/97", + "diff_url": "https://github.com/github-api/github-api/pull/97.diff", + "patch_url": "https://github.com/github-api/github-api/pull/97.patch" + }, + "body": "This groups statuses from multiple contexts to return single combined\nstatus. More information here:\nhttps://developer.github.com/changes/2014-03-27-combined-status-api/\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/96", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/96/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/96/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/96/events", + "html_url": "https://github.com/github-api/github-api/issues/96", + "id": 35063591, + "node_id": "MDU6SXNzdWUzNTA2MzU5MQ==", + "number": 96, + "title": "Add support for commit status contexts.", + "user": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 5, + "created_at": "2014-06-05T14:43:42Z", + "updated_at": "2014-06-14T23:40:29Z", + "closed_at": "2014-06-14T23:40:29Z", + "author_association": "CONTRIBUTOR", + "body": "The GitHub status API now supports the concept of optional contexts for commit statuses. It would be useful to be able to add those from the Java API for the benefit of things like the GitHub Pull Request builder.\n\nI'm going to try and find some time in the next week to actually work on this. If someone else starts tackling it before I get around to it, please comment here so we're not duplicating work! :)\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/95", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/95/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/95/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/95/events", + "html_url": "https://github.com/github-api/github-api/pull/95", + "id": 34998334, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTY3MzEyNzc=", + "number": 95, + "title": "Add support for retriving a single ref", + "user": { + "login": "suryagaddipati", + "id": 64078, + "node_id": "MDQ6VXNlcjY0MDc4", + "avatar_url": "https://avatars3.githubusercontent.com/u/64078?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/suryagaddipati", + "html_url": "https://github.com/suryagaddipati", + "followers_url": "https://api.github.com/users/suryagaddipati/followers", + "following_url": "https://api.github.com/users/suryagaddipati/following{/other_user}", + "gists_url": "https://api.github.com/users/suryagaddipati/gists{/gist_id}", + "starred_url": "https://api.github.com/users/suryagaddipati/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/suryagaddipati/subscriptions", + "organizations_url": "https://api.github.com/users/suryagaddipati/orgs", + "repos_url": "https://api.github.com/users/suryagaddipati/repos", + "events_url": "https://api.github.com/users/suryagaddipati/events{/privacy}", + "received_events_url": "https://api.github.com/users/suryagaddipati/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2014-06-04T20:12:42Z", + "updated_at": "2014-07-01T17:26:03Z", + "closed_at": "2014-06-05T17:27:42Z", + "author_association": "COLLABORATOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/95", + "html_url": "https://github.com/github-api/github-api/pull/95", + "diff_url": "https://github.com/github-api/github-api/pull/95.diff", + "patch_url": "https://github.com/github-api/github-api/pull/95.patch" + }, + "body": "Implements the following api method\nhttps://developer.github.com/v3/git/refs/#get-a-reference\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/94", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/94/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/94/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/94/events", + "html_url": "https://github.com/github-api/github-api/pull/94", + "id": 34901058, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTY2NzU5NzY=", + "number": 94, + "title": "Add support for adding deploykeys to repo", + "user": { + "login": "suryagaddipati", + "id": 64078, + "node_id": "MDQ6VXNlcjY0MDc4", + "avatar_url": "https://avatars3.githubusercontent.com/u/64078?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/suryagaddipati", + "html_url": "https://github.com/suryagaddipati", + "followers_url": "https://api.github.com/users/suryagaddipati/followers", + "following_url": "https://api.github.com/users/suryagaddipati/following{/other_user}", + "gists_url": "https://api.github.com/users/suryagaddipati/gists{/gist_id}", + "starred_url": "https://api.github.com/users/suryagaddipati/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/suryagaddipati/subscriptions", + "organizations_url": "https://api.github.com/users/suryagaddipati/orgs", + "repos_url": "https://api.github.com/users/suryagaddipati/repos", + "events_url": "https://api.github.com/users/suryagaddipati/events{/privacy}", + "received_events_url": "https://api.github.com/users/suryagaddipati/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2014-06-03T20:27:52Z", + "updated_at": "2014-06-19T13:30:25Z", + "closed_at": "2014-06-05T17:28:19Z", + "author_association": "COLLABORATOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/94", + "html_url": "https://github.com/github-api/github-api/pull/94", + "diff_url": "https://github.com/github-api/github-api/pull/94.diff", + "patch_url": "https://github.com/github-api/github-api/pull/94.patch" + }, + "body": "Implements https://developer.github.com/v3/repos/keys/\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/93", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/93/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/93/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/93/events", + "html_url": "https://github.com/github-api/github-api/pull/93", + "id": 34441274, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTY0MTIyMzg=", + "number": 93, + "title": "Upgrading to 1.12 version for bridge-method-annotation and bridge-method-injector - fix for #91", + "user": { + "login": "vr100", + "id": 6443683, + "node_id": "MDQ6VXNlcjY0NDM2ODM=", + "avatar_url": "https://avatars2.githubusercontent.com/u/6443683?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vr100", + "html_url": "https://github.com/vr100", + "followers_url": "https://api.github.com/users/vr100/followers", + "following_url": "https://api.github.com/users/vr100/following{/other_user}", + "gists_url": "https://api.github.com/users/vr100/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vr100/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vr100/subscriptions", + "organizations_url": "https://api.github.com/users/vr100/orgs", + "repos_url": "https://api.github.com/users/vr100/repos", + "events_url": "https://api.github.com/users/vr100/events{/privacy}", + "received_events_url": "https://api.github.com/users/vr100/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2014-05-28T07:13:32Z", + "updated_at": "2014-06-22T05:20:14Z", + "closed_at": "2014-05-29T03:52:07Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/93", + "html_url": "https://github.com/github-api/github-api/pull/93", + "diff_url": "https://github.com/github-api/github-api/pull/93.diff", + "patch_url": "https://github.com/github-api/github-api/pull/93.patch" + }, + "body": "" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/92", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/92/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/92/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/92/events", + "html_url": "https://github.com/github-api/github-api/issues/92", + "id": 34125291, + "node_id": "MDU6SXNzdWUzNDEyNTI5MQ==", + "number": 92, + "title": "getEvents fails periodically with odd exception", + "user": { + "login": "mebigfatguy", + "id": 170161, + "node_id": "MDQ6VXNlcjE3MDE2MQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/170161?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mebigfatguy", + "html_url": "https://github.com/mebigfatguy", + "followers_url": "https://api.github.com/users/mebigfatguy/followers", + "following_url": "https://api.github.com/users/mebigfatguy/following{/other_user}", + "gists_url": "https://api.github.com/users/mebigfatguy/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mebigfatguy/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mebigfatguy/subscriptions", + "organizations_url": "https://api.github.com/users/mebigfatguy/orgs", + "repos_url": "https://api.github.com/users/mebigfatguy/repos", + "events_url": "https://api.github.com/users/mebigfatguy/events{/privacy}", + "received_events_url": "https://api.github.com/users/mebigfatguy/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2014-05-22T21:48:49Z", + "updated_at": "2015-02-16T15:21:23Z", + "closed_at": "2015-02-16T15:21:23Z", + "author_association": "NONE", + "body": "Occasionally a call to getEvents will throw with the following exception. I'm assuming this is just the github rest layer being flaky or somethimg, but just posting it, in case there's something else going on\n\nERROR 21:37:25 Failed fetching events from github\njava.net.UnknownHostException: api.github.com\n at java.net.InetAddress.getAllByName0(InetAddress.java:1250) ~[na:1.7.0_55]\n at java.net.InetAddress.getAllByName(InetAddress.java:1162) ~[na:1.7.0_55]\n at java.net.InetAddress.getAllByName(InetAddress.java:1098) ~[na:1.7.0_55]\n at com.squareup.okhttp.internal.Dns$1.getAllByName(Dns.java:29) ~[okhttp-1.5.3.jar:na]\n at com.squareup.okhttp.internal.http.RouteSelector.resetNextInetSocketAddress(RouteSelector.java:232) ~[okhttp-1.5.3.jar:na]\n at com.squareup.okhttp.internal.http.RouteSelector.next(RouteSelector.java:124) ~[okhttp-1.5.3.jar:na]\n at com.squareup.okhttp.internal.http.HttpEngine.connect(HttpEngine.java:233) ~[okhttp-1.5.3.jar:na]\n at com.squareup.okhttp.internal.http.HttpEngine.sendRequest(HttpEngine.java:180) ~[okhttp-1.5.3.jar:na]\n at com.squareup.okhttp.internal.http.HttpURLConnectionImpl.execute(HttpURLConnectionImpl.java:366) ~[okhttp-1.5.3.jar:na]\n at com.squareup.okhttp.internal.http.HttpURLConnectionImpl.getResponse(HttpURLConnectionImpl.java:319) ~[okhttp-1.5.3.jar:na]\n at com.squareup.okhttp.internal.http.HttpURLConnectionImpl.getInputStream(HttpURLConnectionImpl.java:187) ~[okhttp-1.5.3.jar:na]\n at com.squareup.okhttp.internal.http.DelegatingHttpsURLConnection.getInputStream(DelegatingHttpsURLConnection.java:210) ~[okhttp-1.5.3.jar:na]\n at com.squareup.okhttp.internal.http.HttpsURLConnectionImpl.getInputStream(HttpsURLConnectionImpl.java:25) ~[okhttp-1.5.3.jar:na]\n at org.kohsuke.github.Requester.parse(Requester.java:359) ~[github-api-1.53.jar:na]\n at org.kohsuke.github.Requester._to(Requester.java:180) ~[github-api-1.53.jar:na]\n at org.kohsuke.github.Requester.to(Requester.java:155) ~[github-api-1.53.jar:na]\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/91", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/91/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/91/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/91/events", + "html_url": "https://github.com/github-api/github-api/issues/91", + "id": 33315322, + "node_id": "MDU6SXNzdWUzMzMxNTMyMg==", + "number": 91, + "title": "Version 1.8 of bridge-method-annotation not available in maven central", + "user": { + "login": "vr100", + "id": 6443683, + "node_id": "MDQ6VXNlcjY0NDM2ODM=", + "avatar_url": "https://avatars2.githubusercontent.com/u/6443683?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vr100", + "html_url": "https://github.com/vr100", + "followers_url": "https://api.github.com/users/vr100/followers", + "following_url": "https://api.github.com/users/vr100/following{/other_user}", + "gists_url": "https://api.github.com/users/vr100/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vr100/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vr100/subscriptions", + "organizations_url": "https://api.github.com/users/vr100/orgs", + "repos_url": "https://api.github.com/users/vr100/repos", + "events_url": "https://api.github.com/users/vr100/events{/privacy}", + "received_events_url": "https://api.github.com/users/vr100/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2014-05-12T14:59:28Z", + "updated_at": "2014-05-29T06:00:00Z", + "closed_at": "2014-05-29T06:00:00Z", + "author_association": "CONTRIBUTOR", + "body": "For your reference,\nhttp://search.maven.org/#search|gav|1|g%3A%22com.infradna.tool%22%20AND%20a%3A%22bridge-method-annotation%22\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/90", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/90/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/90/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/90/events", + "html_url": "https://github.com/github-api/github-api/issues/90", + "id": 33306759, + "node_id": "MDU6SXNzdWUzMzMwNjc1OQ==", + "number": 90, + "title": "Ability to specify both branch and sha parameters at same time in GHCommitQueryBuilder", + "user": { + "login": "vr100", + "id": 6443683, + "node_id": "MDQ6VXNlcjY0NDM2ODM=", + "avatar_url": "https://avatars2.githubusercontent.com/u/6443683?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vr100", + "html_url": "https://github.com/vr100", + "followers_url": "https://api.github.com/users/vr100/followers", + "following_url": "https://api.github.com/users/vr100/following{/other_user}", + "gists_url": "https://api.github.com/users/vr100/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vr100/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vr100/subscriptions", + "organizations_url": "https://api.github.com/users/vr100/orgs", + "repos_url": "https://api.github.com/users/vr100/repos", + "events_url": "https://api.github.com/users/vr100/events{/privacy}", + "received_events_url": "https://api.github.com/users/vr100/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2014-05-12T13:21:13Z", + "updated_at": "2014-05-28T08:10:38Z", + "closed_at": "2014-05-28T08:10:38Z", + "author_association": "CONTRIBUTOR", + "body": "Github allows you to specify \"sha\" parameter multiple times while querying for commits. For eg., the case where we need commits from branch x from commit sha y, we could specify sha query parameter twice in the github api url. The current code has no way to achieve this scenario.\n\n(This is related to Merge of pull request #86 . Commit : https://github.com/kohsuke/github-api/commit/a409b4f49c47e5c28c613e8bf9e9dd6831c78494)\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/89", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/89/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/89/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/89/events", + "html_url": "https://github.com/github-api/github-api/pull/89", + "id": 32707428, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTU0NDAwMTY=", + "number": 89, + "title": "add listTeams method on GHOrganization", + "user": { + "login": "echav", + "id": 6654524, + "node_id": "MDQ6VXNlcjY2NTQ1MjQ=", + "avatar_url": "https://avatars2.githubusercontent.com/u/6654524?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/echav", + "html_url": "https://github.com/echav", + "followers_url": "https://api.github.com/users/echav/followers", + "following_url": "https://api.github.com/users/echav/following{/other_user}", + "gists_url": "https://api.github.com/users/echav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/echav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/echav/subscriptions", + "organizations_url": "https://api.github.com/users/echav/orgs", + "repos_url": "https://api.github.com/users/echav/repos", + "events_url": "https://api.github.com/users/echav/events{/privacy}", + "received_events_url": "https://api.github.com/users/echav/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2014-05-02T16:57:01Z", + "updated_at": "2014-06-16T16:43:18Z", + "closed_at": "2014-05-10T00:56:53Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/89", + "html_url": "https://github.com/github-api/github-api/pull/89", + "diff_url": "https://github.com/github-api/github-api/pull/89.diff", + "patch_url": "https://github.com/github-api/github-api/pull/89.patch" + }, + "body": "The existing method getTeams does not retrieve all teams due to the paging of the REST API.\n\nSo I added a listTeams method in the GHOrganization API, using the same pattern as the existing listMembers (use of PagedIterable).\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/88", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/88/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/88/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/88/events", + "html_url": "https://github.com/github-api/github-api/issues/88", + "id": 32290166, + "node_id": "MDU6SXNzdWUzMjI5MDE2Ng==", + "number": 88, + "title": "GHUser.getRepositories() does not pull private repositories", + "user": { + "login": "anandcv", + "id": 6533835, + "node_id": "MDQ6VXNlcjY1MzM4MzU=", + "avatar_url": "https://avatars3.githubusercontent.com/u/6533835?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/anandcv", + "html_url": "https://github.com/anandcv", + "followers_url": "https://api.github.com/users/anandcv/followers", + "following_url": "https://api.github.com/users/anandcv/following{/other_user}", + "gists_url": "https://api.github.com/users/anandcv/gists{/gist_id}", + "starred_url": "https://api.github.com/users/anandcv/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/anandcv/subscriptions", + "organizations_url": "https://api.github.com/users/anandcv/orgs", + "repos_url": "https://api.github.com/users/anandcv/repos", + "events_url": "https://api.github.com/users/anandcv/events{/privacy}", + "received_events_url": "https://api.github.com/users/anandcv/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2014-04-26T14:28:02Z", + "updated_at": "2014-05-11T15:33:33Z", + "closed_at": "2014-05-10T22:17:19Z", + "author_association": "NONE", + "body": "When I tries to pull repositories of a user, I get all public repositories.\nBut the list does not show private repository at all.\n\n``` java\ngithub = GitHub.connectUsingOAuth(oAuthToken);\nuser = github.getMyself();\nMap repos = new HashMap();\nthis.repos = user.getRepositories();\nSystem.out.println(Repos.toString());\n```\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/87", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/87/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/87/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/87/events", + "html_url": "https://github.com/github-api/github-api/pull/87", + "id": 32280066, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTUxOTg2NjQ=", + "number": 87, + "title": "Fix bug in GHMyself.getEmails due to API change", + "user": { + "login": "kellycampbell", + "id": 625998, + "node_id": "MDQ6VXNlcjYyNTk5OA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/625998?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kellycampbell", + "html_url": "https://github.com/kellycampbell", + "followers_url": "https://api.github.com/users/kellycampbell/followers", + "following_url": "https://api.github.com/users/kellycampbell/following{/other_user}", + "gists_url": "https://api.github.com/users/kellycampbell/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kellycampbell/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kellycampbell/subscriptions", + "organizations_url": "https://api.github.com/users/kellycampbell/orgs", + "repos_url": "https://api.github.com/users/kellycampbell/repos", + "events_url": "https://api.github.com/users/kellycampbell/events{/privacy}", + "received_events_url": "https://api.github.com/users/kellycampbell/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2014-04-26T02:57:55Z", + "updated_at": "2014-07-01T17:26:05Z", + "closed_at": "2014-05-10T00:59:54Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/87", + "html_url": "https://github.com/github-api/github-api/pull/87", + "diff_url": "https://github.com/github-api/github-api/pull/87.diff", + "patch_url": "https://github.com/github-api/github-api/pull/87.patch" + }, + "body": "" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/86", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/86/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/86/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/86/events", + "html_url": "https://github.com/github-api/github-api/pull/86", + "id": 32031706, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTUwNDg1MDM=", + "number": 86, + "title": "Using builder pattern to list commits in a repo by author, branch, etc", + "user": { + "login": "vr100", + "id": 6443683, + "node_id": "MDQ6VXNlcjY0NDM2ODM=", + "avatar_url": "https://avatars2.githubusercontent.com/u/6443683?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vr100", + "html_url": "https://github.com/vr100", + "followers_url": "https://api.github.com/users/vr100/followers", + "following_url": "https://api.github.com/users/vr100/following{/other_user}", + "gists_url": "https://api.github.com/users/vr100/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vr100/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vr100/subscriptions", + "organizations_url": "https://api.github.com/users/vr100/orgs", + "repos_url": "https://api.github.com/users/vr100/repos", + "events_url": "https://api.github.com/users/vr100/events{/privacy}", + "received_events_url": "https://api.github.com/users/vr100/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 3, + "created_at": "2014-04-23T04:16:51Z", + "updated_at": "2014-07-01T17:26:05Z", + "closed_at": "2014-05-10T01:31:27Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/86", + "html_url": "https://github.com/github-api/github-api/pull/86", + "diff_url": "https://github.com/github-api/github-api/pull/86.diff", + "patch_url": "https://github.com/github-api/github-api/pull/86.patch" + }, + "body": "Reworked on my earlier request #77 \n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/85", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/85/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/85/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/85/events", + "html_url": "https://github.com/github-api/github-api/issues/85", + "id": 32020194, + "node_id": "MDU6SXNzdWUzMjAyMDE5NA==", + "number": 85, + "title": "File size limited to 1MB", + "user": { + "login": "ghost", + "id": 10137, + "node_id": "MDQ6VXNlcjEwMTM3", + "avatar_url": "https://avatars3.githubusercontent.com/u/10137?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ghost", + "html_url": "https://github.com/ghost", + "followers_url": "https://api.github.com/users/ghost/followers", + "following_url": "https://api.github.com/users/ghost/following{/other_user}", + "gists_url": "https://api.github.com/users/ghost/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ghost/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ghost/subscriptions", + "organizations_url": "https://api.github.com/users/ghost/orgs", + "repos_url": "https://api.github.com/users/ghost/repos", + "events_url": "https://api.github.com/users/ghost/events{/privacy}", + "received_events_url": "https://api.github.com/users/ghost/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2014-04-22T23:29:23Z", + "updated_at": "2014-04-23T17:19:15Z", + "closed_at": "2014-04-23T17:19:15Z", + "author_association": "NONE", + "body": "I tried to delete a file with 3MB from my repository. But to do that I need to call `GHRepository.getFileContent` first and that leads to the following error:\n\n```\nException: {\"message\":\"This API returns blobs up to 1 MB in size. The requested blob is too large to fetch via the API, but you can use the Git Data API to request blobs up to 100 MB in size.\",\"documentation_url\":\"https://developer.github.com/v3/repos/contents/#get-contents\",\"errors\":[{\"resource\":\"Blob\",\"field\":\"data\",\"code\":\"too_large\"}]}\n```\n\nThe same happens with `GHRepository.createContent`. \n\nIs there a way to use the git blobs api: https://developer.github.com/v3/git/blobs/?\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/84", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/84/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/84/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/84/events", + "html_url": "https://github.com/github-api/github-api/pull/84", + "id": 31886962, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTQ5NjIwMzM=", + "number": 84, + "title": "create a Release & Branch", + "user": { + "login": "fanfansama", + "id": 5654868, + "node_id": "MDQ6VXNlcjU2NTQ4Njg=", + "avatar_url": "https://avatars0.githubusercontent.com/u/5654868?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/fanfansama", + "html_url": "https://github.com/fanfansama", + "followers_url": "https://api.github.com/users/fanfansama/followers", + "following_url": "https://api.github.com/users/fanfansama/following{/other_user}", + "gists_url": "https://api.github.com/users/fanfansama/gists{/gist_id}", + "starred_url": "https://api.github.com/users/fanfansama/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/fanfansama/subscriptions", + "organizations_url": "https://api.github.com/users/fanfansama/orgs", + "repos_url": "https://api.github.com/users/fanfansama/repos", + "events_url": "https://api.github.com/users/fanfansama/events{/privacy}", + "received_events_url": "https://api.github.com/users/fanfansama/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2014-04-21T08:54:07Z", + "updated_at": "2014-07-01T17:26:05Z", + "closed_at": "2014-05-10T19:50:49Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/84", + "html_url": "https://github.com/github-api/github-api/pull/84", + "diff_url": "https://github.com/github-api/github-api/pull/84.diff", + "patch_url": "https://github.com/github-api/github-api/pull/84.patch" + }, + "body": "bonjour,\nJ'ai utilisé ta librairie pour automatiser la creation de release et de branche.\nJ'ai du adapter ton code en ajoutant quelques lignes.\n\nDu coup, je te pull mes ajouts.\n\nCoté Test Unitaires, je n'ai pas pris trop de temps pour comprendre pourquoi il ne passe pas tous.\nj'ai ajouté : testCreateRelease mais tu devras le retoucher.\n\nMerci pour ta librairie\n\nFrançois\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/83", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/83/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/83/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/83/events", + "html_url": "https://github.com/github-api/github-api/pull/83", + "id": 31801640, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTQ5MjAyMDg=", + "number": 83, + "title": "add tarball_url and zipball_url to GHRelease", + "user": { + "login": "antonkrasov", + "id": 3696113, + "node_id": "MDQ6VXNlcjM2OTYxMTM=", + "avatar_url": "https://avatars0.githubusercontent.com/u/3696113?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/antonkrasov", + "html_url": "https://github.com/antonkrasov", + "followers_url": "https://api.github.com/users/antonkrasov/followers", + "following_url": "https://api.github.com/users/antonkrasov/following{/other_user}", + "gists_url": "https://api.github.com/users/antonkrasov/gists{/gist_id}", + "starred_url": "https://api.github.com/users/antonkrasov/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/antonkrasov/subscriptions", + "organizations_url": "https://api.github.com/users/antonkrasov/orgs", + "repos_url": "https://api.github.com/users/antonkrasov/repos", + "events_url": "https://api.github.com/users/antonkrasov/events{/privacy}", + "received_events_url": "https://api.github.com/users/antonkrasov/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2014-04-18T14:29:51Z", + "updated_at": "2014-07-01T17:26:06Z", + "closed_at": "2014-04-19T18:50:39Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/83", + "html_url": "https://github.com/github-api/github-api/pull/83", + "diff_url": "https://github.com/github-api/github-api/pull/83.diff", + "patch_url": "https://github.com/github-api/github-api/pull/83.patch" + }, + "body": "tarball_url and zipball_url were misses in GHRelease\n" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/__files/repositories_617210_issues-5a770b70-ca92-478e-8bb5-c713553ddefb.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/__files/repositories_617210_issues-5a770b70-ca92-478e-8bb5-c713553ddefb.json new file mode 100644 index 0000000000..eec142f025 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/__files/repositories_617210_issues-5a770b70-ca92-478e-8bb5-c713553ddefb.json @@ -0,0 +1,1394 @@ +[ + { + "url": "https://api.github.com/repos/github-api/github-api/issues/299", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/299/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/299/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/299/events", + "html_url": "https://github.com/github-api/github-api/pull/299", + "id": 184520196, + "node_id": "MDExOlB1bGxSZXF1ZXN0OTA0MDg2MDc=", + "number": 299, + "title": "url encode hashes in ref names", + "user": { + "login": "bsheats", + "id": 515385, + "node_id": "MDQ6VXNlcjUxNTM4NQ==", + "avatar_url": "https://avatars0.githubusercontent.com/u/515385?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bsheats", + "html_url": "https://github.com/bsheats", + "followers_url": "https://api.github.com/users/bsheats/followers", + "following_url": "https://api.github.com/users/bsheats/following{/other_user}", + "gists_url": "https://api.github.com/users/bsheats/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bsheats/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bsheats/subscriptions", + "organizations_url": "https://api.github.com/users/bsheats/orgs", + "repos_url": "https://api.github.com/users/bsheats/repos", + "events_url": "https://api.github.com/users/bsheats/events{/privacy}", + "received_events_url": "https://api.github.com/users/bsheats/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 3, + "created_at": "2016-10-21T15:52:39Z", + "updated_at": "2016-10-25T02:15:54Z", + "closed_at": "2016-10-25T02:15:54Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/299", + "html_url": "https://github.com/github-api/github-api/pull/299", + "diff_url": "https://github.com/github-api/github-api/pull/299.diff", + "patch_url": "https://github.com/github-api/github-api/pull/299.patch" + }, + "body": "Without this fix, the following code:\n\n```\nGHRepository repo = gh.getRepository(\"iown/test\");\nString branch = \"heads/bsheats/#107-test-branch\";\nref = repo.getRef(branch);\n```\n\nwill fail with this exception:\n\n```\nException in thread \"main\" org.kohsuke.github.HttpException: Server returned HTTP response code: 200, message: 'OK' for URL: https://api.github.com/repos/iown/test/git/refs/heads/bsheats/#107-test-branch\n at org.kohsuke.github.Requester.parse(Requester.java:540)\n at org.kohsuke.github.Requester._to(Requester.java:251)\n at org.kohsuke.github.Requester.to(Requester.java:213)\n at org.kohsuke.github.GHRepository.getRef(GHRepository.java:770)\n at Foo.main(Foo.java:22)\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at com.intellij.rt.execution.application.AppMain.main(AppMain.java:147)\nCaused by: java.io.IOException: Failed to deserialize [{\"ref\":\"refs/heads/bsheats/test\",\"url\":\"https://api.github.com/repos/iown/test/git/refs/heads/bsheats/test\",\"object\":{\"sha\":\"7c4a0777bdbd76442ee98e54daee808a5ca0e211\",\"type\":\"commit\",\"url\":\"https://api.github.com/repos/iown/test/git/commits/7c4a0777bdbd76442ee98e54daee808a5ca0e211\"}},{\"ref\":\"refs/heads/bsheats/#107-test-branch\",\"url\":\"https://api.github.com/repos/iown/test/git/refs/heads/bsheats/%23107-test-branch\",\"object\":{\"sha\":\"fca609f46dbbee95170e8a1dc283329ea1c768f6\",\"type\":\"commit\",\"url\":\"https://api.github.com/repos/iown/test/git/commits/fca609f46dbbee95170e8a1dc283329ea1c768f6\"}}]\n at org.kohsuke.github.Requester.parse(Requester.java:530)\n ... 9 more\nCaused by: com.fasterxml.jackson.databind.JsonMappingException: Can not deserialize instance of org.kohsuke.github.GHRef out of START_ARRAY token\n at [Source: java.io.StringReader@e50a6f6; line: 1, column: 1]\n at com.fasterxml.jackson.databind.JsonMappingException.from(JsonMappingException.java:164)\n at com.fasterxml.jackson.databind.DeserializationContext.mappingException(DeserializationContext.java:575)\n at com.fasterxml.jackson.databind.DeserializationContext.mappingException(DeserializationContext.java:569)\n at com.fasterxml.jackson.databind.deser.BeanDeserializerBase.deserializeFromArray(BeanDeserializerBase.java:1121)\n at com.fasterxml.jackson.databind.deser.BeanDeserializer._deserializeOther(BeanDeserializer.java:148)\n at com.fasterxml.jackson.databind.deser.BeanDeserializer.deserialize(BeanDeserializer.java:123)\n at com.fasterxml.jackson.databind.ObjectMapper._readMapAndClose(ObjectMapper.java:2888)\n at com.fasterxml.jackson.databind.ObjectMapper.readValue(ObjectMapper.java:2034)\n at org.kohsuke.github.Requester.parse(Requester.java:528)\n ... 9 more\n```\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/298", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/298/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/298/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/298/events", + "html_url": "https://github.com/github-api/github-api/issues/298", + "id": 183381257, + "node_id": "MDU6SXNzdWUxODMzODEyNTc=", + "number": 298, + "title": "How to find a pull request using the Search API and get its details?", + "user": { + "login": "adamsiemion", + "id": 898997, + "node_id": "MDQ6VXNlcjg5ODk5Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/898997?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/adamsiemion", + "html_url": "https://github.com/adamsiemion", + "followers_url": "https://api.github.com/users/adamsiemion/followers", + "following_url": "https://api.github.com/users/adamsiemion/following{/other_user}", + "gists_url": "https://api.github.com/users/adamsiemion/gists{/gist_id}", + "starred_url": "https://api.github.com/users/adamsiemion/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/adamsiemion/subscriptions", + "organizations_url": "https://api.github.com/users/adamsiemion/orgs", + "repos_url": "https://api.github.com/users/adamsiemion/repos", + "events_url": "https://api.github.com/users/adamsiemion/events{/privacy}", + "received_events_url": "https://api.github.com/users/adamsiemion/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2016-10-17T10:35:35Z", + "updated_at": "2016-11-17T03:11:31Z", + "closed_at": "2016-11-17T03:11:31Z", + "author_association": "NONE", + "body": "Is there a quicker/better way to get a `GHPullRequest` instance from `searchIssues()` results?\n\nI have got`String sha1` and `GHRepository repository` instances and the following code:\n\n```\nfinal PagedSearchIterable list = githubClient.searchIssues().q(sha1).list();\nfinal GHIssue issue = list.iterator().next();\nfinal String pullRequestUrl = issue.getPullRequest().getUrl().toString();\nfinal int pullRequestNumber = Integer.valueOf(pullRequestUrl.substring(pullRequestUrl.lastIndexOf('/')+1));\nfinal GHPullRequest pullRequest = repository.getPullRequest(pullRequestNumber);\n```\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/297", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/297/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/297/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/297/events", + "html_url": "https://github.com/github-api/github-api/issues/297", + "id": 180104399, + "node_id": "MDU6SXNzdWUxODAxMDQzOTk=", + "number": 297, + "title": "Allow edit for maintainer support", + "user": { + "login": "qinfchen", + "id": 8294715, + "node_id": "MDQ6VXNlcjgyOTQ3MTU=", + "avatar_url": "https://avatars1.githubusercontent.com/u/8294715?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/qinfchen", + "html_url": "https://github.com/qinfchen", + "followers_url": "https://api.github.com/users/qinfchen/followers", + "following_url": "https://api.github.com/users/qinfchen/following{/other_user}", + "gists_url": "https://api.github.com/users/qinfchen/gists{/gist_id}", + "starred_url": "https://api.github.com/users/qinfchen/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/qinfchen/subscriptions", + "organizations_url": "https://api.github.com/users/qinfchen/orgs", + "repos_url": "https://api.github.com/users/qinfchen/repos", + "events_url": "https://api.github.com/users/qinfchen/events{/privacy}", + "received_events_url": "https://api.github.com/users/qinfchen/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2016-09-29T16:52:19Z", + "updated_at": "2016-10-03T15:01:31Z", + "closed_at": "2016-10-03T15:01:31Z", + "author_association": "NONE", + "body": "Is this supported? see details [here](https://github.com/blog/2247-improving-collaboration-with-forks)\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/296", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/296/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/296/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/296/events", + "html_url": "https://github.com/github-api/github-api/issues/296", + "id": 179131708, + "node_id": "MDU6SXNzdWUxNzkxMzE3MDg=", + "number": 296, + "title": "run mvn install fail! Failure to find org.jenkins-ci:jenkins:pom:1.26 ??", + "user": { + "login": "nj-mqzhang", + "id": 10613380, + "node_id": "MDQ6VXNlcjEwNjEzMzgw", + "avatar_url": "https://avatars0.githubusercontent.com/u/10613380?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nj-mqzhang", + "html_url": "https://github.com/nj-mqzhang", + "followers_url": "https://api.github.com/users/nj-mqzhang/followers", + "following_url": "https://api.github.com/users/nj-mqzhang/following{/other_user}", + "gists_url": "https://api.github.com/users/nj-mqzhang/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nj-mqzhang/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nj-mqzhang/subscriptions", + "organizations_url": "https://api.github.com/users/nj-mqzhang/orgs", + "repos_url": "https://api.github.com/users/nj-mqzhang/repos", + "events_url": "https://api.github.com/users/nj-mqzhang/events{/privacy}", + "received_events_url": "https://api.github.com/users/nj-mqzhang/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2016-09-26T03:22:25Z", + "updated_at": "2016-09-26T06:31:52Z", + "closed_at": "2016-09-26T06:30:14Z", + "author_association": "NONE", + "body": "Caused by: org.eclipse.aether.transfer.ArtifactNotFoundException: Failure to find org.jenkins-ci:jenkins:pom:1.26 in http://192.168.1.117:8081/nexus/content/groups/public was cached in the local repository, resolution will not be reattempted until the update interval of nexus has elapsed or updates are forced\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/295", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/295/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/295/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/295/events", + "html_url": "https://github.com/github-api/github-api/pull/295", + "id": 177837024, + "node_id": "MDExOlB1bGxSZXF1ZXN0ODU4Mjk0NTY=", + "number": 295, + "title": "Use maximum permitted page size", + "user": { + "login": "jglick", + "id": 154109, + "node_id": "MDQ6VXNlcjE1NDEwOQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/154109?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jglick", + "html_url": "https://github.com/jglick", + "followers_url": "https://api.github.com/users/jglick/followers", + "following_url": "https://api.github.com/users/jglick/following{/other_user}", + "gists_url": "https://api.github.com/users/jglick/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jglick/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jglick/subscriptions", + "organizations_url": "https://api.github.com/users/jglick/orgs", + "repos_url": "https://api.github.com/users/jglick/repos", + "events_url": "https://api.github.com/users/jglick/events{/privacy}", + "received_events_url": "https://api.github.com/users/jglick/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 7, + "created_at": "2016-09-19T16:49:56Z", + "updated_at": "2016-10-24T21:04:05Z", + "closed_at": "2016-10-24T21:04:05Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/295", + "html_url": "https://github.com/github-api/github-api/pull/295", + "diff_url": "https://github.com/github-api/github-api/pull/295.diff", + "patch_url": "https://github.com/github-api/github-api/pull/295.patch" + }, + "body": "Pending GraphQL, performance is going to be bad, but do what we can.\n\n@reviewbybees\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/294", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/294/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/294/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/294/events", + "html_url": "https://github.com/github-api/github-api/issues/294", + "id": 175312885, + "node_id": "MDU6SXNzdWUxNzUzMTI4ODU=", + "number": 294, + "title": "Multiple assignee support", + "user": { + "login": "wsorenson", + "id": 281687, + "node_id": "MDQ6VXNlcjI4MTY4Nw==", + "avatar_url": "https://avatars3.githubusercontent.com/u/281687?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/wsorenson", + "html_url": "https://github.com/wsorenson", + "followers_url": "https://api.github.com/users/wsorenson/followers", + "following_url": "https://api.github.com/users/wsorenson/following{/other_user}", + "gists_url": "https://api.github.com/users/wsorenson/gists{/gist_id}", + "starred_url": "https://api.github.com/users/wsorenson/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/wsorenson/subscriptions", + "organizations_url": "https://api.github.com/users/wsorenson/orgs", + "repos_url": "https://api.github.com/users/wsorenson/repos", + "events_url": "https://api.github.com/users/wsorenson/events{/privacy}", + "received_events_url": "https://api.github.com/users/wsorenson/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2016-09-06T18:08:20Z", + "updated_at": "2016-11-19T22:51:23Z", + "closed_at": "2016-11-19T22:51:23Z", + "author_association": "NONE", + "body": "Issue should return a list of assignees;\n\nhttps://developer.github.com/changes/2016-5-27-multiple-assignees/\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/293", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/293/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/293/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/293/events", + "html_url": "https://github.com/github-api/github-api/issues/293", + "id": 175306527, + "node_id": "MDU6SXNzdWUxNzUzMDY1Mjc=", + "number": 293, + "title": "Missing support for determining if authenticated user is organization owner", + "user": { + "login": "WesleyTrescott", + "id": 10776580, + "node_id": "MDQ6VXNlcjEwNzc2NTgw", + "avatar_url": "https://avatars2.githubusercontent.com/u/10776580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/WesleyTrescott", + "html_url": "https://github.com/WesleyTrescott", + "followers_url": "https://api.github.com/users/WesleyTrescott/followers", + "following_url": "https://api.github.com/users/WesleyTrescott/following{/other_user}", + "gists_url": "https://api.github.com/users/WesleyTrescott/gists{/gist_id}", + "starred_url": "https://api.github.com/users/WesleyTrescott/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/WesleyTrescott/subscriptions", + "organizations_url": "https://api.github.com/users/WesleyTrescott/orgs", + "repos_url": "https://api.github.com/users/WesleyTrescott/repos", + "events_url": "https://api.github.com/users/WesleyTrescott/events{/privacy}", + "received_events_url": "https://api.github.com/users/WesleyTrescott/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 3, + "created_at": "2016-09-06T17:38:38Z", + "updated_at": "2016-11-19T23:26:14Z", + "closed_at": "2016-11-19T23:26:14Z", + "author_association": "NONE", + "body": "Some operations involving teams within organizations require the authenticated user to be an organization owner. As far as I can tell, there is no way to get this information in the current implementation. The following stackoverflow answer illustrates the the information I am trying to retrieve: [http://stackoverflow.com/a/28190753](http://stackoverflow.com/a/28190753)\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/291", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/291/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/291/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/291/events", + "html_url": "https://github.com/github-api/github-api/issues/291", + "id": 169602557, + "node_id": "MDU6SXNzdWUxNjk2MDI1NTc=", + "number": 291, + "title": "weird format for get list of organizations", + "user": { + "login": "marti1125", + "id": 223240, + "node_id": "MDQ6VXNlcjIyMzI0MA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/223240?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/marti1125", + "html_url": "https://github.com/marti1125", + "followers_url": "https://api.github.com/users/marti1125/followers", + "following_url": "https://api.github.com/users/marti1125/following{/other_user}", + "gists_url": "https://api.github.com/users/marti1125/gists{/gist_id}", + "starred_url": "https://api.github.com/users/marti1125/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/marti1125/subscriptions", + "organizations_url": "https://api.github.com/users/marti1125/orgs", + "repos_url": "https://api.github.com/users/marti1125/repos", + "events_url": "https://api.github.com/users/marti1125/events{/privacy}", + "received_events_url": "https://api.github.com/users/marti1125/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 4, + "created_at": "2016-08-05T13:03:54Z", + "updated_at": "2016-08-06T15:20:23Z", + "closed_at": "2016-08-06T03:58:07Z", + "author_association": "NONE", + "body": "GitHub gh = GitHub.connect(\"login\", \"token\");\nSystem.out.println(gh.getMyOrganizations());\n\nHow to I can parse this? =/\n\n{mozillaperu=GHOrganization@29ba4338[login=mozillaperu,location=,blog=,email=,name=,company=,followers=0,following=0,url=https://api.github.com/orgs/mozillaperu,id=1221419], qillu=GHOrganization@57d5872c[login=qillu,location=,blog=,email=,name=,company=,followers=0,following=0,url=https://api.github.com/orgs/qillu,id=16871604], eknowit=GHOrganization@667a738[login=eknowit,location=,blog=,email=,name=,company=,followers=0,following=0,url=https://api.github.com/orgs/eknowit,id=1102009], VulpesTools=GHOrganization@36f0f1be[login=VulpesTools,location=,blog=,email=,name=,company=,followers=0,following=0,url=https://api.github.com/orgs/VulpesTools,id=8617634], GenerationOpen=GHOrganization@157632c9[login=GenerationOpen,location=,blog=,email=,name=,company=,followers=0,following=0,url=https://api.github.com/orgs/GenerationOpen,id=4251591], mozillahispano=GHOrganization@6ee12bac[login=mozillahispano,location=,blog=,email=,name=,company=,followers=0,following=0,url=https://api.github.com/orgs/mozillahispano,id=1511160], mozilla-appmaker=GHOrganization@55040f2f[login=mozilla-appmaker,location=,blog=,email=,name=,company=,followers=0,following=0,url=https://api.github.com/orgs/mozilla-appmaker,id=5852021]}\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/290", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/290/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/290/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/290/events", + "html_url": "https://github.com/github-api/github-api/issues/290", + "id": 166946455, + "node_id": "MDU6SXNzdWUxNjY5NDY0NTU=", + "number": 290, + "title": "OkHttp is out of date", + "user": { + "login": "mh-park", + "id": 10649298, + "node_id": "MDQ6VXNlcjEwNjQ5Mjk4", + "avatar_url": "https://avatars3.githubusercontent.com/u/10649298?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mh-park", + "html_url": "https://github.com/mh-park", + "followers_url": "https://api.github.com/users/mh-park/followers", + "following_url": "https://api.github.com/users/mh-park/following{/other_user}", + "gists_url": "https://api.github.com/users/mh-park/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mh-park/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mh-park/subscriptions", + "organizations_url": "https://api.github.com/users/mh-park/orgs", + "repos_url": "https://api.github.com/users/mh-park/repos", + "events_url": "https://api.github.com/users/mh-park/events{/privacy}", + "received_events_url": "https://api.github.com/users/mh-park/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 4, + "created_at": "2016-07-22T00:24:00Z", + "updated_at": "2016-08-06T04:04:37Z", + "closed_at": "2016-08-06T04:04:37Z", + "author_association": "NONE", + "body": "OkUrlFactory is deprecated, so using the Cache is not the same as described on homepage. \n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/289", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/289/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/289/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/289/events", + "html_url": "https://github.com/github-api/github-api/pull/289", + "id": 166917048, + "node_id": "MDExOlB1bGxSZXF1ZXN0NzgzODY4NjM=", + "number": 289, + "title": "Implement an abuse handler", + "user": { + "login": "mmitche", + "id": 8725170, + "node_id": "MDQ6VXNlcjg3MjUxNzA=", + "avatar_url": "https://avatars1.githubusercontent.com/u/8725170?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mmitche", + "html_url": "https://github.com/mmitche", + "followers_url": "https://api.github.com/users/mmitche/followers", + "following_url": "https://api.github.com/users/mmitche/following{/other_user}", + "gists_url": "https://api.github.com/users/mmitche/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mmitche/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mmitche/subscriptions", + "organizations_url": "https://api.github.com/users/mmitche/orgs", + "repos_url": "https://api.github.com/users/mmitche/repos", + "events_url": "https://api.github.com/users/mmitche/events{/privacy}", + "received_events_url": "https://api.github.com/users/mmitche/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2016-07-21T21:02:19Z", + "updated_at": "2016-08-06T02:59:02Z", + "closed_at": "2016-08-06T02:59:02Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/289", + "html_url": "https://github.com/github-api/github-api/pull/289", + "diff_url": "https://github.com/github-api/github-api/pull/289.diff", + "patch_url": "https://github.com/github-api/github-api/pull/289.patch" + }, + "body": "If too many requests are made within X amount of time (not the traditional hourly rate limit), github may begin returning 403. Then we should wait for a bit to attempt to access the API again. In this case, we parse out the Retry-After field returned and sleep until that (it's usually 60 seconds)\n\nFixes #285 \n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/288", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/288/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/288/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/288/events", + "html_url": "https://github.com/github-api/github-api/issues/288", + "id": 165158992, + "node_id": "MDU6SXNzdWUxNjUxNTg5OTI=", + "number": 288, + "title": "400 from OKHttp getInputStream", + "user": { + "login": "sbhaktha", + "id": 5631150, + "node_id": "MDQ6VXNlcjU2MzExNTA=", + "avatar_url": "https://avatars2.githubusercontent.com/u/5631150?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/sbhaktha", + "html_url": "https://github.com/sbhaktha", + "followers_url": "https://api.github.com/users/sbhaktha/followers", + "following_url": "https://api.github.com/users/sbhaktha/following{/other_user}", + "gists_url": "https://api.github.com/users/sbhaktha/gists{/gist_id}", + "starred_url": "https://api.github.com/users/sbhaktha/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/sbhaktha/subscriptions", + "organizations_url": "https://api.github.com/users/sbhaktha/orgs", + "repos_url": "https://api.github.com/users/sbhaktha/repos", + "events_url": "https://api.github.com/users/sbhaktha/events{/privacy}", + "received_events_url": "https://api.github.com/users/sbhaktha/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 10, + "created_at": "2016-07-12T19:23:10Z", + "updated_at": "2016-07-19T21:44:19Z", + "closed_at": "2016-07-19T15:00:30Z", + "author_association": "NONE", + "body": "Hello,\n\nI have built a tool using your API, which has been working for many months now, but suddenly fails due to a `FileNotFoundException` thrown by `getInputStrem` in OKHttp. When I paste the url it is trying to download, into my browser, it works perfectly fine. I can see the file contents. This is very strange. Do you have any clue about this?\n\nStack trace:\n\n```\ntables [ERROR] [07/12/2016 12:15:41.086] [TableService-akka.actor.default-dispatcher-8] [akka://TableService/user/simple-service-actor] Error during processing of request HttpRequest(POST,http://localhost:8084/api/metadata/list,List(Host: localhost:8084, Connection: keep-alive, Content-Length: 59, Origin: http://localhost:8084, X-Requested-With: XMLHttpRequest, User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.106 Safari/537.36 OPR/38.0.2220.41, Content-Type: application/json, Referer: http://localhost:8084/, Accept-Encoding: gzip, deflate, lzma, Accept-Language: en-US, en;q=0.8, Cookie: tablestore-data-git=eyJhY2Nlc3NUb2tlbiI6ImYyZDI1OTViNGQ4OTMwMjIwMGI2YjE2MjNhNzQ3ZjQ3MzI1ZWJkOWMifQ==; tablestore-data-git2=eyJhY2Nlc3NUb2tlbiI6ImZlYmMxYTRlYjA1MmI4OWJlNDQwOWFmODk3OGNkYWFhYWY1OWZlNWEifQ==),HttpEntity(application/json,{\"repo\":\"aristo-tables\",\"fork\":\"allenai\",\"branch\":\"master\"}),HTTP/1.1)\ntables java.io.FileNotFoundException: 400: Invalid request\ntables \ntables at org.kohsuke.github.Requester.handleApiError(Requester.java:527)\ntables at org.kohsuke.github.Requester.asStream(Requester.java:293)\ntables at org.kohsuke.github.GHContent.read(GHContent.java:118)\ntables at org.allenai.ari.tables.GitHubUtil$$anonfun$getCsvFileLocal$1.apply(GitHubUtil.scala:420)\ntables at org.allenai.ari.tables.GitHubUtil$$anonfun$getCsvFileLocal$1.apply(GitHubUtil.scala:417)\ntables at scala.Option.foreach(Option.scala:257)\ntables at org.allenai.ari.tables.GitHubUtil.getCsvFileLocal(GitHubUtil.scala:417)\ntables at org.allenai.ari.tables.GitHubUtil$$anonfun$7.apply(GitHubUtil.scala:239)\ntables at org.allenai.ari.tables.GitHubUtil$$anonfun$7.apply(GitHubUtil.scala:236)\ntables at scala.collection.parallel.mutable.ParArray$ParArrayIterator.flatmap2combiner(ParArray.scala:417)\ntables at scala.collection.parallel.ParIterableLike$FlatMap.leaf(ParIterableLike.scala:1072)\ntables at scala.collection.parallel.Task$$anonfun$tryLeaf$1.apply$mcV$sp(Tasks.scala:49)\ntables at scala.collection.parallel.Task$$anonfun$tryLeaf$1.apply(Tasks.scala:48)\ntables at scala.collection.parallel.Task$$anonfun$tryLeaf$1.apply(Tasks.scala:48)\ntables at scala.collection.parallel.Task$class.tryLeaf(Tasks.scala:51)\ntables at scala.collection.parallel.ParIterableLike$FlatMap.tryLeaf(ParIterableLike.scala:1068)\ntables at scala.collection.parallel.AdaptiveWorkStealingTasks$WrappedTask$class.internal(Tasks.scala:159)\ntables at scala.collection.parallel.AdaptiveWorkStealingForkJoinTasks$WrappedTask.internal(Tasks.scala:443)\ntables at scala.collection.parallel.AdaptiveWorkStealingTasks$WrappedTask$class.compute(Tasks.scala:149)\ntables at scala.collection.parallel.AdaptiveWorkStealingForkJoinTasks$WrappedTask.compute(Tasks.scala:443)\ntables at scala.concurrent.forkjoin.RecursiveAction.exec(RecursiveAction.java:160)\ntables at scala.concurrent.forkjoin.ForkJoinTask.doExec(ForkJoinTask.java:260)\ntables at scala.concurrent.forkjoin.ForkJoinTask.doJoin(ForkJoinTask.java:341)\ntables at scala.concurrent.forkjoin.ForkJoinTask.join(ForkJoinTask.java:673)\ntables at scala.collection.parallel.ForkJoinTasks$WrappedTask$class.sync(Tasks.scala:378)\ntables at scala.collection.parallel.AdaptiveWorkStealingForkJoinTasks$WrappedTask.sync(Tasks.scala:443)\ntables at scala.collection.parallel.ForkJoinTasks$class.executeAndWaitResult(Tasks.scala:426)\ntables at scala.collection.parallel.ForkJoinTaskSupport.executeAndWaitResult(TaskSupport.scala:56)\ntables at scala.collection.parallel.ExecutionContextTasks$class.executeAndWaitResult(Tasks.scala:558)\ntables at scala.collection.parallel.ExecutionContextTaskSupport.executeAndWaitResult(TaskSupport.scala:80)\ntables at scala.collection.parallel.ParIterableLike$ResultMapping.leaf(ParIterableLike.scala:958)\ntables at scala.collection.parallel.Task$$anonfun$tryLeaf$1.apply$mcV$sp(Tasks.scala:49)\ntables at scala.collection.parallel.Task$$anonfun$tryLeaf$1.apply(Tasks.scala:48)\ntables at scala.collection.parallel.Task$$anonfun$tryLeaf$1.apply(Tasks.scala:48)\ntables at scala.collection.parallel.Task$class.tryLeaf(Tasks.scala:51)\ntables at scala.collection.parallel.ParIterableLike$ResultMapping.tryLeaf(ParIterableLike.scala:953)\ntables at scala.collection.parallel.AdaptiveWorkStealingTasks$WrappedTask$class.compute(Tasks.scala:152)\ntables at scala.collection.parallel.AdaptiveWorkStealingForkJoinTasks$WrappedTask.compute(Tasks.scala:443)\ntables at scala.concurrent.forkjoin.RecursiveAction.exec(RecursiveAction.java:160)\ntables at scala.concurrent.forkjoin.ForkJoinTask.doExec(ForkJoinTask.java:260)\ntables at scala.concurrent.forkjoin.ForkJoinTask.doJoin(ForkJoinTask.java:341)\ntables at scala.concurrent.forkjoin.ForkJoinTask.join(ForkJoinTask.java:673)\ntables at scala.collection.parallel.ForkJoinTasks$WrappedTask$class.sync(Tasks.scala:378)\ntables at scala.collection.parallel.AdaptiveWorkStealingForkJoinTasks$WrappedTask.sync(Tasks.scala:443)\ntables at scala.collection.parallel.ForkJoinTasks$class.executeAndWaitResult(Tasks.scala:426)\ntables at scala.collection.parallel.ForkJoinTaskSupport.executeAndWaitResult(TaskSupport.scala:56)\ntables at scala.collection.parallel.ExecutionContextTasks$class.executeAndWaitResult(Tasks.scala:558)\ntables at scala.collection.parallel.ExecutionContextTaskSupport.executeAndWaitResult(TaskSupport.scala:80)\ntables at scala.collection.parallel.ParIterableLike$class.flatMap(ParIterableLike.scala:513)\ntables at scala.collection.parallel.mutable.ParArray.flatMap(ParArray.scala:56)\ntables at org.allenai.ari.tables.GitHubUtil.org$allenai$ari$tables$GitHubUtil$$getTableMetadata(GitHubUtil.scala:236)\ntables at org.allenai.ari.tables.GitHubUtil$$anonfun$getTableMetadata$2.apply(GitHubUtil.scala:229)\ntables at org.allenai.ari.tables.GitHubUtil$$anonfun$getTableMetadata$2.apply(GitHubUtil.scala:229)\ntables at scala.concurrent.Future$$anonfun$flatMap$1.apply(Future.scala:251)\ntables at scala.concurrent.Future$$anonfun$flatMap$1.apply(Future.scala:249)\ntables at scala.concurrent.impl.CallbackRunnable.run(Promise.scala:32)\ntables at akka.dispatch.BatchingExecutor$AbstractBatch.processBatch(BatchingExecutor.scala:55)\ntables at akka.dispatch.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply$mcV$sp(BatchingExecutor.scala:91)\ntables at akka.dispatch.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply(BatchingExecutor.scala:91)\ntables at akka.dispatch.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply(BatchingExecutor.scala:91)\ntables at scala.concurrent.BlockContext$.withBlockContext(BlockContext.scala:72)\ntables at akka.dispatch.BatchingExecutor$BlockableBatch.run(BatchingExecutor.scala:90)\ntables at akka.dispatch.TaskInvocation.run(AbstractDispatcher.scala:39)\ntables at akka.dispatch.ForkJoinExecutorConfigurator$AkkaForkJoinTask.exec(AbstractDispatcher.scala:399)\ntables at scala.concurrent.forkjoin.ForkJoinTask.doExec(ForkJoinTask.java:260)\ntables at scala.concurrent.forkjoin.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1339)\ntables at scala.concurrent.forkjoin.ForkJoinPool.runWorker(ForkJoinPool.java:1979)\ntables at scala.concurrent.forkjoin.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:107)\ntables Caused by: java.io.FileNotFoundException: https://raw.githubusercontent.com/allenai/aristo-tables/master/tables/abstract_concrete/abstract_concrete.csv?token=AFXsrivOTIoDru9Htw9aNTJbprmE5m0Gks5XhUHfwA%3D%3D\ntables at com.squareup.okhttp.internal.huc.HttpURLConnectionImpl.getInputStream(HttpURLConnectionImpl.java:228)\ntables at com.squareup.okhttp.internal.huc.DelegatingHttpsURLConnection.getInputStream(DelegatingHttpsURLConnection.java:210)\ntables at com.squareup.okhttp.internal.huc.HttpsURLConnectionImpl.getInputStream(HttpsURLConnectionImpl.java:25)\ntables at org.kohsuke.github.Requester.asStream(Requester.java:291)\ntables ... 66 more\n```\n\nYour help is greatly appreciated,\nSumithra\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/287", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/287/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/287/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/287/events", + "html_url": "https://github.com/github-api/github-api/issues/287", + "id": 163039212, + "node_id": "MDU6SXNzdWUxNjMwMzkyMTI=", + "number": 287, + "title": "pagination support search APIs", + "user": { + "login": "qinfchen", + "id": 8294715, + "node_id": "MDQ6VXNlcjgyOTQ3MTU=", + "avatar_url": "https://avatars1.githubusercontent.com/u/8294715?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/qinfchen", + "html_url": "https://github.com/qinfchen", + "followers_url": "https://api.github.com/users/qinfchen/followers", + "following_url": "https://api.github.com/users/qinfchen/following{/other_user}", + "gists_url": "https://api.github.com/users/qinfchen/gists{/gist_id}", + "starred_url": "https://api.github.com/users/qinfchen/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/qinfchen/subscriptions", + "organizations_url": "https://api.github.com/users/qinfchen/orgs", + "repos_url": "https://api.github.com/users/qinfchen/repos", + "events_url": "https://api.github.com/users/qinfchen/events{/privacy}", + "received_events_url": "https://api.github.com/users/qinfchen/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2016-06-29T22:14:18Z", + "updated_at": "2016-06-30T14:25:20Z", + "closed_at": "2016-06-30T14:25:20Z", + "author_association": "NONE", + "body": "It doesn't seem like there is a support pagination for search APIs. \n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/286", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/286/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/286/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/286/events", + "html_url": "https://github.com/github-api/github-api/issues/286", + "id": 162839227, + "node_id": "MDU6SXNzdWUxNjI4MzkyMjc=", + "number": 286, + "title": "significant more API calls for same code", + "user": { + "login": "aspyker", + "id": 260750, + "node_id": "MDQ6VXNlcjI2MDc1MA==", + "avatar_url": "https://avatars1.githubusercontent.com/u/260750?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/aspyker", + "html_url": "https://github.com/aspyker", + "followers_url": "https://api.github.com/users/aspyker/followers", + "following_url": "https://api.github.com/users/aspyker/following{/other_user}", + "gists_url": "https://api.github.com/users/aspyker/gists{/gist_id}", + "starred_url": "https://api.github.com/users/aspyker/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/aspyker/subscriptions", + "organizations_url": "https://api.github.com/users/aspyker/orgs", + "repos_url": "https://api.github.com/users/aspyker/repos", + "events_url": "https://api.github.com/users/aspyker/events{/privacy}", + "received_events_url": "https://api.github.com/users/aspyker/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 6, + "created_at": "2016-06-29T04:36:45Z", + "updated_at": "2016-08-09T01:25:00Z", + "closed_at": "2016-08-06T04:10:32Z", + "author_association": "NONE", + "body": "I'm researching deeper, but with 1.72 I get:\n\nremaining calls 4364\nabout to look up repo EVCache\n2016-06-28 21:28:20 INFO GithubAccess:53 - repo = EVCache, forks = 82, stars = 314\n2016-06-28 21:28:20 DEBUG GithubAccess:56 - openIssues = 0, openPullRequests = 0\n2016-06-28 21:28:22 DEBUG GithubAccess:107 - daysSinceLastCommit = 0\n2016-06-28 21:28:23 DEBUG GithubAccess:111 - numContribitors = 16, contributorEmails = ArrayBuffer(smadappa, senugula, jkschneider, vuzilla, ScottMansfield, rspieldenner, elandau, gitter-badger, rdegnan, nadavc, aspyker, trigan-d, pauloricardomg, kedargsm, quidryan, Randgalt)\n2016-06-28 21:28:24 DEBUG GithubAccess:146 - avg days to close 14 issues = 357 days\n2016-06-28 21:28:24 DEBUG GithubAccess:128 - avg days to close 13 pull requests = 185 days\n2016-06-28 21:28:24 DEBUG GithubAccess:96 - repo json = {\"asOfISO\":\"2016-06-29T04:27:43Z\",\"asOfYYYYMMDD\":\"2016-06-29\",\"repo_name\":\"EVCache\",\"public\":true,\"osslifecycle\":\"UNKNOWN\",\"forks\":82,\"stars\":314,\"numContributors\":16,\"issues\":{\"openCount\":0,\"closedCount\":14,\"avgTimeToCloseInDays\":357},\"pullRequests\":{\"openCount\":0,\"closedCount\":13,\"avgTimeToCloseInDays\":185},\"commits\":{\"daysSinceLastCommit\":0},\"contributors\":[\"smadappa\",\"senugula\",\"jkschneider\",\"vuzilla\",\"ScottMansfield\",\"rspieldenner\",\"elandau\",\"gitter-badger\",\"rdegnan\",\"nadavc\",\"aspyker\",\"trigan-d\",\"pauloricardomg\",\"kedargsm\",\"quidryan\",\"Randgalt\"]}\nremaining calls 4341\n\nresulting in 23 API calls\n\nwith 1.76, I get:\n\nremaining calls 4640\nabout to look up repo EVCache\n2016-06-28 21:22:22 INFO GithubAccess:53 - repo = EVCache, forks = 82, stars = 314\n2016-06-28 21:22:22 DEBUG GithubAccess:56 - openIssues = 0, openPullRequests = 0\n2016-06-28 21:23:01 DEBUG GithubAccess:107 - daysSinceLastCommit = 0\n2016-06-28 21:23:03 DEBUG GithubAccess:111 - numContribitors = 16, contributorEmails = ArrayBuffer(smadappa, senugula, jkschneider, vuzilla, ScottMansfield, rspieldenner, elandau, gitter-badger, rdegnan, nadavc, aspyker, trigan-d, pauloricardomg, kedargsm, quidryan, Randgalt)\n2016-06-28 21:23:04 DEBUG GithubAccess:146 - avg days to close 14 issues = 357 days\n2016-06-28 21:23:04 DEBUG GithubAccess:128 - avg days to close 13 pull requests = 185 days\n2016-06-28 21:23:04 DEBUG GithubAccess:96 - repo json = {\"asOfISO\":\"2016-06-29T04:20:26Z\",\"asOfYYYYMMDD\":\"2016-06-29\",\"repo_name\":\"EVCache\",\"public\":true,\"osslifecycle\":\"UNKNOWN\",\"forks\":82,\"stars\":314,\"numContributors\":16,\"issues\":{\"openCount\":0,\"closedCount\":14,\"avgTimeToCloseInDays\":357},\"pullRequests\":{\"openCount\":0,\"closedCount\":13,\"avgTimeToCloseInDays\":185},\"commits\":{\"daysSinceLastCommit\":0},\"contributors\":[\"smadappa\",\"senugula\",\"jkschneider\",\"vuzilla\",\"ScottMansfield\",\"rspieldenner\",\"elandau\",\"gitter-badger\",\"rdegnan\",\"nadavc\",\"aspyker\",\"trigan-d\",\"pauloricardomg\",\"kedargsm\",\"quidryan\",\"Randgalt\"]}\nremaining calls 4409\n\nresulting in 231 API calls\n\nThis is running this code:\n\nhttps://github.com/Netflix/osstracker/blob/master/osstracker-scraper/src/main/scala/com/netflix/oss/tools/osstrackerscraper/GithubAccess.scala#L52\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/285", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/285/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/285/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/285/events", + "html_url": "https://github.com/github-api/github-api/issues/285", + "id": 161777707, + "node_id": "MDU6SXNzdWUxNjE3Nzc3MDc=", + "number": 285, + "title": "Excessive concurrent request rate limit not handled", + "user": { + "login": "mmitche", + "id": 8725170, + "node_id": "MDQ6VXNlcjg3MjUxNzA=", + "avatar_url": "https://avatars1.githubusercontent.com/u/8725170?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mmitche", + "html_url": "https://github.com/mmitche", + "followers_url": "https://api.github.com/users/mmitche/followers", + "following_url": "https://api.github.com/users/mmitche/following{/other_user}", + "gists_url": "https://api.github.com/users/mmitche/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mmitche/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mmitche/subscriptions", + "organizations_url": "https://api.github.com/users/mmitche/orgs", + "repos_url": "https://api.github.com/users/mmitche/repos", + "events_url": "https://api.github.com/users/mmitche/events{/privacy}", + "received_events_url": "https://api.github.com/users/mmitche/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2016-06-22T20:27:32Z", + "updated_at": "2016-08-06T02:59:02Z", + "closed_at": "2016-08-06T02:59:02Z", + "author_association": "CONTRIBUTOR", + "body": "If the hourly rate limit is not hit, but the API abuse mechanism is triggered, the API won't handle this gracefully. Instead, it bails. I think the ideal case here would be to wait for a small random amount of time (< 5 seconds perhaps, with some backoff) and retry\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/284", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/284/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/284/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/284/events", + "html_url": "https://github.com/github-api/github-api/pull/284", + "id": 161052879, + "node_id": "MDExOlB1bGxSZXF1ZXN0NzQzNTI2NjA=", + "number": 284, + "title": "Addition of License API elements", + "user": { + "login": "dedickinson", + "id": 702835, + "node_id": "MDQ6VXNlcjcwMjgzNQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/702835?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dedickinson", + "html_url": "https://github.com/dedickinson", + "followers_url": "https://api.github.com/users/dedickinson/followers", + "following_url": "https://api.github.com/users/dedickinson/following{/other_user}", + "gists_url": "https://api.github.com/users/dedickinson/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dedickinson/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dedickinson/subscriptions", + "organizations_url": "https://api.github.com/users/dedickinson/orgs", + "repos_url": "https://api.github.com/users/dedickinson/repos", + "events_url": "https://api.github.com/users/dedickinson/events{/privacy}", + "received_events_url": "https://api.github.com/users/dedickinson/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2016-06-19T02:18:23Z", + "updated_at": "2016-08-06T03:56:00Z", + "closed_at": "2016-08-06T03:56:00Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/284", + "html_url": "https://github.com/github-api/github-api/pull/284", + "diff_url": "https://github.com/github-api/github-api/pull/284.diff", + "patch_url": "https://github.com/github-api/github-api/pull/284.patch" + }, + "body": "I've added in functionality to provide license information from https://developer.github.com/v3/licenses/:\n- Get list of GitHub licenses using `GitHub#listLicenses()`\n- Get the details for a specific license using `GitHub#getLicense(String key)`\n- For a `GHRepository`:\n - The basic license details are loaded with the repo information (`GHRepository#getLicense`)\n - `GHRepository#getFullLicense` will get the full license information (ala `GitHub#getLicense(String key)`)\n - `GHRepository#getLicenseContent()` will get the license content information for the repository\n\nAs this uses a preview API, access to the information requires the use of `application/vnd.github.drax-preview+json` in the HTTP connection's ACCEPT header. This is provided in `PreviewHttpConnector.java`.\n\nAll existing functionality appears to continue working with the normal connector - `PreviewHttpConnector` just opens up the extra data from the Licenses API.\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/283", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/283/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/283/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/283/events", + "html_url": "https://github.com/github-api/github-api/pull/283", + "id": 155117490, + "node_id": "MDExOlB1bGxSZXF1ZXN0NzAyNTgwNjA=", + "number": 283, + "title": "Add some level of synchronization to the root of the API", + "user": { + "login": "mmitche", + "id": 8725170, + "node_id": "MDQ6VXNlcjg3MjUxNzA=", + "avatar_url": "https://avatars1.githubusercontent.com/u/8725170?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mmitche", + "html_url": "https://github.com/mmitche", + "followers_url": "https://api.github.com/users/mmitche/followers", + "following_url": "https://api.github.com/users/mmitche/following{/other_user}", + "gists_url": "https://api.github.com/users/mmitche/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mmitche/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mmitche/subscriptions", + "organizations_url": "https://api.github.com/users/mmitche/orgs", + "repos_url": "https://api.github.com/users/mmitche/repos", + "events_url": "https://api.github.com/users/mmitche/events{/privacy}", + "received_events_url": "https://api.github.com/users/mmitche/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 6, + "created_at": "2016-05-16T20:43:48Z", + "updated_at": "2017-09-09T19:48:16Z", + "closed_at": "2017-09-09T19:48:15Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/283", + "html_url": "https://github.com/github-api/github-api/pull/283", + "diff_url": "https://github.com/github-api/github-api/pull/283.diff", + "patch_url": "https://github.com/github-api/github-api/pull/283.patch" + }, + "body": "This adds some synchronization to the maps at the root of the API to avoid duplicated calls to the actual GH REST API. Specifically this is targeted around the two maps, orgs and users. This fix makes the GHPRB jenkins plugin behave much better when there are lots of projects that could build for a specific repo (even if only a few are actually triggered)\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/282", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/282/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/282/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/282/events", + "html_url": "https://github.com/github-api/github-api/pull/282", + "id": 154882236, + "node_id": "MDExOlB1bGxSZXF1ZXN0NzAxMDc3NTg=", + "number": 282, + "title": "related to JENKINS-34834. updating test for similar condition", + "user": { + "login": "apemberton", + "id": 86439, + "node_id": "MDQ6VXNlcjg2NDM5", + "avatar_url": "https://avatars1.githubusercontent.com/u/86439?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/apemberton", + "html_url": "https://github.com/apemberton", + "followers_url": "https://api.github.com/users/apemberton/followers", + "following_url": "https://api.github.com/users/apemberton/following{/other_user}", + "gists_url": "https://api.github.com/users/apemberton/gists{/gist_id}", + "starred_url": "https://api.github.com/users/apemberton/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/apemberton/subscriptions", + "organizations_url": "https://api.github.com/users/apemberton/orgs", + "repos_url": "https://api.github.com/users/apemberton/repos", + "events_url": "https://api.github.com/users/apemberton/events{/privacy}", + "received_events_url": "https://api.github.com/users/apemberton/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2016-05-15T00:08:46Z", + "updated_at": "2016-06-03T04:52:26Z", + "closed_at": "2016-06-03T04:52:26Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/282", + "html_url": "https://github.com/github-api/github-api/pull/282", + "diff_url": "https://github.com/github-api/github-api/pull/282.diff", + "patch_url": "https://github.com/github-api/github-api/pull/282.patch" + }, + "body": "Since GitHub no longer creates a default team per organization (ie: no more default 'Owners' team), this test needs to be updated. \n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/281", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/281/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/281/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/281/events", + "html_url": "https://github.com/github-api/github-api/pull/281", + "id": 154852610, + "node_id": "MDExOlB1bGxSZXF1ZXN0NzAwOTE1MDg=", + "number": 281, + "title": "Add Slug to GHTeam per v3 API: https://developer.github.com/v3/orgs/t…", + "user": { + "login": "apemberton", + "id": 86439, + "node_id": "MDQ6VXNlcjg2NDM5", + "avatar_url": "https://avatars1.githubusercontent.com/u/86439?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/apemberton", + "html_url": "https://github.com/apemberton", + "followers_url": "https://api.github.com/users/apemberton/followers", + "following_url": "https://api.github.com/users/apemberton/following{/other_user}", + "gists_url": "https://api.github.com/users/apemberton/gists{/gist_id}", + "starred_url": "https://api.github.com/users/apemberton/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/apemberton/subscriptions", + "organizations_url": "https://api.github.com/users/apemberton/orgs", + "repos_url": "https://api.github.com/users/apemberton/repos", + "events_url": "https://api.github.com/users/apemberton/events{/privacy}", + "received_events_url": "https://api.github.com/users/apemberton/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 7, + "created_at": "2016-05-14T13:00:55Z", + "updated_at": "2016-06-15T14:35:12Z", + "closed_at": "2016-06-03T04:51:47Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/281", + "html_url": "https://github.com/github-api/github-api/pull/281", + "diff_url": "https://github.com/github-api/github-api/pull/281.diff", + "patch_url": "https://github.com/github-api/github-api/pull/281.patch" + }, + "body": "https://developer.github.com/v3/orgs/teams/ has a slug property for teams. This property is similar to the login property for users and organizations - a URL path friendly tokenized string (as opposed to free text in the name field). \n\nSlug is better suited for use in automated / scripting cases when dealing with the Team API.\n\nAdmittedly, I wrote a test but could not test as the project's test harness requires super powers which I do not possess.\n\n@reviewbybees\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/279", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/279/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/279/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/279/events", + "html_url": "https://github.com/github-api/github-api/issues/279", + "id": 153510442, + "node_id": "MDU6SXNzdWUxNTM1MTA0NDI=", + "number": 279, + "title": "team.add(repo) should accept permission flag", + "user": { + "login": "tomerd", + "id": 147247, + "node_id": "MDQ6VXNlcjE0NzI0Nw==", + "avatar_url": "https://avatars3.githubusercontent.com/u/147247?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/tomerd", + "html_url": "https://github.com/tomerd", + "followers_url": "https://api.github.com/users/tomerd/followers", + "following_url": "https://api.github.com/users/tomerd/following{/other_user}", + "gists_url": "https://api.github.com/users/tomerd/gists{/gist_id}", + "starred_url": "https://api.github.com/users/tomerd/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/tomerd/subscriptions", + "organizations_url": "https://api.github.com/users/tomerd/orgs", + "repos_url": "https://api.github.com/users/tomerd/repos", + "events_url": "https://api.github.com/users/tomerd/events{/privacy}", + "received_events_url": "https://api.github.com/users/tomerd/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2016-05-06T18:26:15Z", + "updated_at": "2016-06-04T03:56:12Z", + "closed_at": "2016-06-04T03:56:12Z", + "author_association": "NONE", + "body": "https://developer.github.com/v3/orgs/teams/#add-or-update-team-repository\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/278", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/278/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/278/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/278/events", + "html_url": "https://github.com/github-api/github-api/pull/278", + "id": 152887705, + "node_id": "MDExOlB1bGxSZXF1ZXN0Njg3ODQ3ODc=", + "number": 278, + "title": "Fixed broken link", + "user": { + "login": "jglick", + "id": 154109, + "node_id": "MDQ6VXNlcjE1NDEwOQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/154109?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jglick", + "html_url": "https://github.com/jglick", + "followers_url": "https://api.github.com/users/jglick/followers", + "following_url": "https://api.github.com/users/jglick/following{/other_user}", + "gists_url": "https://api.github.com/users/jglick/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jglick/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jglick/subscriptions", + "organizations_url": "https://api.github.com/users/jglick/orgs", + "repos_url": "https://api.github.com/users/jglick/repos", + "events_url": "https://api.github.com/users/jglick/events{/privacy}", + "received_events_url": "https://api.github.com/users/jglick/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 3, + "created_at": "2016-05-03T22:20:31Z", + "updated_at": "2016-06-03T04:50:38Z", + "closed_at": "2016-06-03T04:50:37Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/278", + "html_url": "https://github.com/github-api/github-api/pull/278", + "diff_url": "https://github.com/github-api/github-api/pull/278.diff", + "patch_url": "https://github.com/github-api/github-api/pull/278.patch" + }, + "body": "@reviewbybees\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/277", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/277/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/277/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/277/events", + "html_url": "https://github.com/github-api/github-api/pull/277", + "id": 152044790, + "node_id": "MDExOlB1bGxSZXF1ZXN0Njg0NzUwMDM=", + "number": 277, + "title": "Updated Date was wrong", + "user": { + "login": "KondaReddyR", + "id": 841750, + "node_id": "MDQ6VXNlcjg0MTc1MA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/841750?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/KondaReddyR", + "html_url": "https://github.com/KondaReddyR", + "followers_url": "https://api.github.com/users/KondaReddyR/followers", + "following_url": "https://api.github.com/users/KondaReddyR/following{/other_user}", + "gists_url": "https://api.github.com/users/KondaReddyR/gists{/gist_id}", + "starred_url": "https://api.github.com/users/KondaReddyR/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/KondaReddyR/subscriptions", + "organizations_url": "https://api.github.com/users/KondaReddyR/orgs", + "repos_url": "https://api.github.com/users/KondaReddyR/repos", + "events_url": "https://api.github.com/users/KondaReddyR/events{/privacy}", + "received_events_url": "https://api.github.com/users/KondaReddyR/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2016-04-30T18:20:58Z", + "updated_at": "2016-06-03T04:50:22Z", + "closed_at": "2016-06-03T04:50:22Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/277", + "html_url": "https://github.com/github-api/github-api/pull/277", + "diff_url": "https://github.com/github-api/github-api/pull/277.diff", + "patch_url": "https://github.com/github-api/github-api/pull/277.patch" + }, + "body": "" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/276", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/276/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/276/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/276/events", + "html_url": "https://github.com/github-api/github-api/pull/276", + "id": 151828897, + "node_id": "MDExOlB1bGxSZXF1ZXN0NjgzNDY2MTQ=", + "number": 276, + "title": "Add support to delete a team", + "user": { + "login": "thug-gamer", + "id": 15268260, + "node_id": "MDQ6VXNlcjE1MjY4MjYw", + "avatar_url": "https://avatars3.githubusercontent.com/u/15268260?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/thug-gamer", + "html_url": "https://github.com/thug-gamer", + "followers_url": "https://api.github.com/users/thug-gamer/followers", + "following_url": "https://api.github.com/users/thug-gamer/following{/other_user}", + "gists_url": "https://api.github.com/users/thug-gamer/gists{/gist_id}", + "starred_url": "https://api.github.com/users/thug-gamer/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/thug-gamer/subscriptions", + "organizations_url": "https://api.github.com/users/thug-gamer/orgs", + "repos_url": "https://api.github.com/users/thug-gamer/repos", + "events_url": "https://api.github.com/users/thug-gamer/events{/privacy}", + "received_events_url": "https://api.github.com/users/thug-gamer/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2016-04-29T09:42:45Z", + "updated_at": "2016-06-03T04:50:11Z", + "closed_at": "2016-06-03T04:50:11Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/276", + "html_url": "https://github.com/github-api/github-api/pull/276", + "diff_url": "https://github.com/github-api/github-api/pull/276.diff", + "patch_url": "https://github.com/github-api/github-api/pull/276.patch" + }, + "body": "Add a method to delete a team.\n\n@kohsuke @oleg-nenashev Could you please review this pull request?\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/275", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/275/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/275/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/275/events", + "html_url": "https://github.com/github-api/github-api/issues/275", + "id": 151167688, + "node_id": "MDU6SXNzdWUxNTExNjc2ODg=", + "number": 275, + "title": "Pull request mergeability is boolean but should be trinary", + "user": { + "login": "PerilousApricot", + "id": 93354, + "node_id": "MDQ6VXNlcjkzMzU0", + "avatar_url": "https://avatars0.githubusercontent.com/u/93354?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PerilousApricot", + "html_url": "https://github.com/PerilousApricot", + "followers_url": "https://api.github.com/users/PerilousApricot/followers", + "following_url": "https://api.github.com/users/PerilousApricot/following{/other_user}", + "gists_url": "https://api.github.com/users/PerilousApricot/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PerilousApricot/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PerilousApricot/subscriptions", + "organizations_url": "https://api.github.com/users/PerilousApricot/orgs", + "repos_url": "https://api.github.com/users/PerilousApricot/repos", + "events_url": "https://api.github.com/users/PerilousApricot/events{/privacy}", + "received_events_url": "https://api.github.com/users/PerilousApricot/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 6, + "created_at": "2016-04-26T15:36:39Z", + "updated_at": "2016-06-04T04:48:43Z", + "closed_at": "2016-06-04T03:52:27Z", + "author_association": "NONE", + "body": "According to the API docs: \n\n\"The value of the mergeable attribute can be true, false, or null. If the value is null, this means that the mergeability hasn't been computed yet, and a background job was started to compute it. Give the job a few moments to complete, and then submit the request again. When the job is complete, the response will include a non-null value for the mergeable attribute.\"\n\nThis casting currently treats \"null\" as \"can not merge\", which cascades down to other plugins. Should the returned type be expanded?\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/274", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/274/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/274/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/274/events", + "html_url": "https://github.com/github-api/github-api/issues/274", + "id": 150572526, + "node_id": "MDU6SXNzdWUxNTA1NzI1MjY=", + "number": 274, + "title": "Webhook with content type \"application/json\"", + "user": { + "login": "mlabouardy", + "id": 10320205, + "node_id": "MDQ6VXNlcjEwMzIwMjA1", + "avatar_url": "https://avatars3.githubusercontent.com/u/10320205?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mlabouardy", + "html_url": "https://github.com/mlabouardy", + "followers_url": "https://api.github.com/users/mlabouardy/followers", + "following_url": "https://api.github.com/users/mlabouardy/following{/other_user}", + "gists_url": "https://api.github.com/users/mlabouardy/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mlabouardy/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mlabouardy/subscriptions", + "organizations_url": "https://api.github.com/users/mlabouardy/orgs", + "repos_url": "https://api.github.com/users/mlabouardy/repos", + "events_url": "https://api.github.com/users/mlabouardy/events{/privacy}", + "received_events_url": "https://api.github.com/users/mlabouardy/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2016-04-23T16:36:02Z", + "updated_at": "2016-06-04T03:34:32Z", + "closed_at": "2016-06-04T03:34:32Z", + "author_association": "NONE", + "body": "How can I create a webhook with content type \"application/json\" ?\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/273", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/273/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/273/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/273/events", + "html_url": "https://github.com/github-api/github-api/issues/273", + "id": 149306560, + "node_id": "MDU6SXNzdWUxNDkzMDY1NjA=", + "number": 273, + "title": "Disable rate_limit check on GitHub Enterprise completely", + "user": { + "login": "djdefi", + "id": 3662109, + "node_id": "MDQ6VXNlcjM2NjIxMDk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/3662109?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/djdefi", + "html_url": "https://github.com/djdefi", + "followers_url": "https://api.github.com/users/djdefi/followers", + "following_url": "https://api.github.com/users/djdefi/following{/other_user}", + "gists_url": "https://api.github.com/users/djdefi/gists{/gist_id}", + "starred_url": "https://api.github.com/users/djdefi/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/djdefi/subscriptions", + "organizations_url": "https://api.github.com/users/djdefi/orgs", + "repos_url": "https://api.github.com/users/djdefi/repos", + "events_url": "https://api.github.com/users/djdefi/events{/privacy}", + "received_events_url": "https://api.github.com/users/djdefi/received_events", + "type": "User", + "site_admin": true + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 8, + "created_at": "2016-04-19T00:06:06Z", + "updated_at": "2017-07-18T19:35:31Z", + "closed_at": "2016-08-06T04:12:56Z", + "author_association": "NONE", + "body": " GitHub Enterprise prior to 2.10 does not have rate limiting, requests to `https://hostname/api/v3/rate_limit` will return a 404 Not Found status code. in 2.10+ rate limiting can be enabled, but is disabled by default.\r\n\r\n~~Based on the change in #78 there is a check for `rate_limit`, and then the rate limit is set to an arbitrary high number. On very busy systems this results in tens of thousands of requests per hour to the GitHub Enterprise appliance. Although returning a 404 is a relatively simple operation, there are other things such as logging that are impacted by the volume of requests.~~\r\n\r\n~~A better method would be to look for **/api/v3/** within the configured API URL, and then simply skip the rate limit check altogether. **/api/v3/** is unique to GitHub Enterprise, so this will not have any impact on the GitHub.com rate_limit endpoint of https://api.github.com/rate_limit~~\r\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/272", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/272/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/272/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/272/events", + "html_url": "https://github.com/github-api/github-api/pull/272", + "id": 148253949, + "node_id": "MDExOlB1bGxSZXF1ZXN0NjY0Mjk4Mjg=", + "number": 272, + "title": "Added support for the extended stargazers API in Github V3 API", + "user": { + "login": "noctarius", + "id": 1142801, + "node_id": "MDQ6VXNlcjExNDI4MDE=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1142801?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/noctarius", + "html_url": "https://github.com/noctarius", + "followers_url": "https://api.github.com/users/noctarius/followers", + "following_url": "https://api.github.com/users/noctarius/following{/other_user}", + "gists_url": "https://api.github.com/users/noctarius/gists{/gist_id}", + "starred_url": "https://api.github.com/users/noctarius/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/noctarius/subscriptions", + "organizations_url": "https://api.github.com/users/noctarius/orgs", + "repos_url": "https://api.github.com/users/noctarius/repos", + "events_url": "https://api.github.com/users/noctarius/events{/privacy}", + "received_events_url": "https://api.github.com/users/noctarius/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2016-04-14T05:10:20Z", + "updated_at": "2016-06-03T05:04:24Z", + "closed_at": "2016-06-03T05:04:24Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/272", + "html_url": "https://github.com/github-api/github-api/pull/272", + "diff_url": "https://github.com/github-api/github-api/pull/272.diff", + "patch_url": "https://github.com/github-api/github-api/pull/272.patch" + }, + "body": "Github has added starred_at date to stargazers when stargazers are requested with a special (new) version on the REST API. Added support for the version and a type representing the additional information.\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/271", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/271/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/271/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/271/events", + "html_url": "https://github.com/github-api/github-api/issues/271", + "id": 147374094, + "node_id": "MDU6SXNzdWUxNDczNzQwOTQ=", + "number": 271, + "title": "GitHub.getRateLimit hangs inside SocketInputStream.socketRead0", + "user": { + "login": "kiselev-dv", + "id": 674665, + "node_id": "MDQ6VXNlcjY3NDY2NQ==", + "avatar_url": "https://avatars0.githubusercontent.com/u/674665?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kiselev-dv", + "html_url": "https://github.com/kiselev-dv", + "followers_url": "https://api.github.com/users/kiselev-dv/followers", + "following_url": "https://api.github.com/users/kiselev-dv/following{/other_user}", + "gists_url": "https://api.github.com/users/kiselev-dv/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kiselev-dv/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kiselev-dv/subscriptions", + "organizations_url": "https://api.github.com/users/kiselev-dv/orgs", + "repos_url": "https://api.github.com/users/kiselev-dv/repos", + "events_url": "https://api.github.com/users/kiselev-dv/events{/privacy}", + "received_events_url": "https://api.github.com/users/kiselev-dv/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2016-04-11T09:50:02Z", + "updated_at": "2016-06-03T05:08:19Z", + "closed_at": "2016-06-03T05:08:19Z", + "author_association": "NONE", + "body": "We've run into an issue when GitHub.getRateLimit hangs the thread.\nHere is the thread stack trace:\n\n```\n\"jenkins.util.Timer [#4]\" Id=48 Group=main RUNNABLE (in native)\n at java.net.SocketInputStream.socketRead0(Native Method)\n at java.net.SocketInputStream.read(SocketInputStream.java:152)\n at java.net.SocketInputStream.read(SocketInputStream.java:122)\n at sun.security.ssl.InputRecord.readFully(InputRecord.java:442)\n at sun.security.ssl.InputRecord.read(InputRecord.java:480)\n at sun.security.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:946)\n - locked java.lang.Object@4be77f76\n at sun.security.ssl.SSLSocketImpl.readDataRecord(SSLSocketImpl.java:903)\n at sun.security.ssl.AppInputStream.read(AppInputStream.java:102)\n - locked sun.security.ssl.AppInputStream@5e6fb401\n at java.io.BufferedInputStream.fill(BufferedInputStream.java:235)\n at java.io.BufferedInputStream.read1(BufferedInputStream.java:275)\n at java.io.BufferedInputStream.read(BufferedInputStream.java:334)\n - locked java.io.BufferedInputStream@7792de16\n at sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:690)\n at sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:633)\n at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1325)\n - locked sun.net.www.protocol.https.DelegateHttpsURLConnection@6db28b13\n at java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:468)\n at sun.net.www.protocol.https.HttpsURLConnectionImpl.getResponseCode(HttpsURLConnectionImpl.java:338)\n at org.kohsuke.github.Requester.parse(Requester.java:454)\n at org.kohsuke.github.Requester._to(Requester.java:227)\n at org.kohsuke.github.Requester.to(Requester.java:194)\n at org.kohsuke.github.GitHub.getRateLimit(GitHub.java:245)\n at org.jenkinsci.plugins.ghprb.GhprbRepository.initGhRepository(GhprbRepository.java:66)\n at org.jenkinsci.plugins.ghprb.GhprbRepository.check(GhprbRepository.java:88)\n at org.jenkinsci.plugins.ghprb.Ghprb.run(Ghprb.java:119)\n at org.jenkinsci.plugins.ghprb.GhprbTrigger.run(GhprbTrigger.java:219)\n at hudson.triggers.Trigger.checkTriggers(Trigger.java:272)\n at hudson.triggers.Trigger$Cron.doRun(Trigger.java:221)\n at hudson.triggers.SafeTimerTask.run(SafeTimerTask.java:50)\n at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:471)\n at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:304)\n at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:178)\n at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)\n at java.lang.Thread.run(Thread.java:745)\n\n Number of locked synchronizers = 1\n - java.util.concurrent.ThreadPoolExecutor$Worker@6b1824c6\n```\n\nThere is a possibility that https://github.com/kohsuke/github-api/blob/master/src/main/java/org/kohsuke/github/Requester.java#L486 will never return an aswer.\n\nI think, `uc.setTimeout(60 * 1000);` here https://github.com/kohsuke/github-api/blob/master/src/main/java/org/kohsuke/github/Requester.java#L453 should fix the problem.\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/270", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/270/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/270/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/270/events", + "html_url": "https://github.com/github-api/github-api/pull/270", + "id": 145719545, + "node_id": "MDExOlB1bGxSZXF1ZXN0NjUxNjQ4ODY=", + "number": 270, + "title": "[#269] Add reopen method on GHMilestone", + "user": { + "login": "szpak", + "id": 148013, + "node_id": "MDQ6VXNlcjE0ODAxMw==", + "avatar_url": "https://avatars1.githubusercontent.com/u/148013?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/szpak", + "html_url": "https://github.com/szpak", + "followers_url": "https://api.github.com/users/szpak/followers", + "following_url": "https://api.github.com/users/szpak/following{/other_user}", + "gists_url": "https://api.github.com/users/szpak/gists{/gist_id}", + "starred_url": "https://api.github.com/users/szpak/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/szpak/subscriptions", + "organizations_url": "https://api.github.com/users/szpak/orgs", + "repos_url": "https://api.github.com/users/szpak/repos", + "events_url": "https://api.github.com/users/szpak/events{/privacy}", + "received_events_url": "https://api.github.com/users/szpak/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2016-04-04T15:31:55Z", + "updated_at": "2016-04-13T23:15:39Z", + "closed_at": "2016-04-13T23:15:39Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/270", + "html_url": "https://github.com/github-api/github-api/pull/270", + "diff_url": "https://github.com/github-api/github-api/pull/270.diff", + "patch_url": "https://github.com/github-api/github-api/pull/270.patch" + }, + "body": "Fixes #269.\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/269", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/269/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/269/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/269/events", + "html_url": "https://github.com/github-api/github-api/issues/269", + "id": 145718053, + "node_id": "MDU6SXNzdWUxNDU3MTgwNTM=", + "number": 269, + "title": "(re)open method on GHMilestone", + "user": { + "login": "szpak", + "id": 148013, + "node_id": "MDQ6VXNlcjE0ODAxMw==", + "avatar_url": "https://avatars1.githubusercontent.com/u/148013?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/szpak", + "html_url": "https://github.com/szpak", + "followers_url": "https://api.github.com/users/szpak/followers", + "following_url": "https://api.github.com/users/szpak/following{/other_user}", + "gists_url": "https://api.github.com/users/szpak/gists{/gist_id}", + "starred_url": "https://api.github.com/users/szpak/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/szpak/subscriptions", + "organizations_url": "https://api.github.com/users/szpak/orgs", + "repos_url": "https://api.github.com/users/szpak/repos", + "events_url": "https://api.github.com/users/szpak/events{/privacy}", + "received_events_url": "https://api.github.com/users/szpak/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2016-04-04T15:27:13Z", + "updated_at": "2016-04-13T23:15:39Z", + "closed_at": "2016-04-13T23:15:39Z", + "author_association": "CONTRIBUTOR", + "body": "In some cases (e.g. restoring state for functional tests with sanboxed GitHub project) it could be needed to reopen already closed milestone. Unfortunately currently there is only a `close()` method on `GHMilestone` and as a workaround a private method `edit()` has to be used.\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/268", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/268/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/268/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/268/events", + "html_url": "https://github.com/github-api/github-api/issues/268", + "id": 145666091, + "node_id": "MDU6SXNzdWUxNDU2NjYwOTE=", + "number": 268, + "title": "More meaning toString implementations", + "user": { + "login": "szpak", + "id": 148013, + "node_id": "MDQ6VXNlcjE0ODAxMw==", + "avatar_url": "https://avatars1.githubusercontent.com/u/148013?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/szpak", + "html_url": "https://github.com/szpak", + "followers_url": "https://api.github.com/users/szpak/followers", + "following_url": "https://api.github.com/users/szpak/following{/other_user}", + "gists_url": "https://api.github.com/users/szpak/gists{/gist_id}", + "starred_url": "https://api.github.com/users/szpak/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/szpak/subscriptions", + "organizations_url": "https://api.github.com/users/szpak/orgs", + "repos_url": "https://api.github.com/users/szpak/repos", + "events_url": "https://api.github.com/users/szpak/events{/privacy}", + "received_events_url": "https://api.github.com/users/szpak/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2016-04-04T12:11:11Z", + "updated_at": "2016-06-03T05:38:32Z", + "closed_at": "2016-06-03T05:38:32Z", + "author_association": "CONTRIBUTOR", + "body": "Currently many of the GH\\* objects don't have meaninful `toString()` implementation. As details seem to be already initialized in most cases it would be useful to see something like:\n\n```\nGHMIlestone: title=0.1.3, state=CLOSED, number=34\n```\n\ninstead of\n\n```\norg.kohsuke.github.GHMilestone@72d6b3ba\n```\n" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/__files/repositories_617210_issues-63d2db0d-08ce-498b-8c8d-903da44e2e94.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/__files/repositories_617210_issues-63d2db0d-08ce-498b-8c8d-903da44e2e94.json new file mode 100644 index 0000000000..8c01ca27bb --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/__files/repositories_617210_issues-63d2db0d-08ce-498b-8c8d-903da44e2e94.json @@ -0,0 +1,1451 @@ +[ + { + "url": "https://api.github.com/repos/github-api/github-api/issues/439", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/439/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/439/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/439/events", + "html_url": "https://github.com/github-api/github-api/pull/439", + "id": 329948790, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTkzMDc1ODcy", + "number": 439, + "title": "Add support for repository searching by \"topic\"", + "user": { + "login": "l3ender", + "id": 2243641, + "node_id": "MDQ6VXNlcjIyNDM2NDE=", + "avatar_url": "https://avatars0.githubusercontent.com/u/2243641?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/l3ender", + "html_url": "https://github.com/l3ender", + "followers_url": "https://api.github.com/users/l3ender/followers", + "following_url": "https://api.github.com/users/l3ender/following{/other_user}", + "gists_url": "https://api.github.com/users/l3ender/gists{/gist_id}", + "starred_url": "https://api.github.com/users/l3ender/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/l3ender/subscriptions", + "organizations_url": "https://api.github.com/users/l3ender/orgs", + "repos_url": "https://api.github.com/users/l3ender/repos", + "events_url": "https://api.github.com/users/l3ender/events{/privacy}", + "received_events_url": "https://api.github.com/users/l3ender/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 3, + "created_at": "2018-06-06T16:45:32Z", + "updated_at": "2018-08-30T03:20:04Z", + "closed_at": "2018-08-30T03:20:04Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/439", + "html_url": "https://github.com/github-api/github-api/pull/439", + "diff_url": "https://github.com/github-api/github-api/pull/439.diff", + "patch_url": "https://github.com/github-api/github-api/pull/439.patch" + }, + "body": "See https://help.github.com/articles/searching-repositories/#search-by-topic" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/438", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/438/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/438/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/438/events", + "html_url": "https://github.com/github-api/github-api/pull/438", + "id": 327753768, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTkxNDcwNDkz", + "number": 438, + "title": "- added overloaded 'uploadAsset' method", + "user": { + "login": "jgangemi", + "id": 1831839, + "node_id": "MDQ6VXNlcjE4MzE4Mzk=", + "avatar_url": "https://avatars0.githubusercontent.com/u/1831839?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jgangemi", + "html_url": "https://github.com/jgangemi", + "followers_url": "https://api.github.com/users/jgangemi/followers", + "following_url": "https://api.github.com/users/jgangemi/following{/other_user}", + "gists_url": "https://api.github.com/users/jgangemi/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jgangemi/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jgangemi/subscriptions", + "organizations_url": "https://api.github.com/users/jgangemi/orgs", + "repos_url": "https://api.github.com/users/jgangemi/repos", + "events_url": "https://api.github.com/users/jgangemi/events{/privacy}", + "received_events_url": "https://api.github.com/users/jgangemi/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2018-05-30T14:21:18Z", + "updated_at": "2018-08-30T03:18:52Z", + "closed_at": "2018-08-30T03:18:52Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/438", + "html_url": "https://github.com/github-api/github-api/pull/438", + "diff_url": "https://github.com/github-api/github-api/pull/438.diff", + "patch_url": "https://github.com/github-api/github-api/pull/438.patch" + }, + "body": "resolves #434 " + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/437", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/437/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/437/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/437/events", + "html_url": "https://github.com/github-api/github-api/pull/437", + "id": 327475726, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTkxMjYxMzM5", + "number": 437, + "title": "[feature] implement Repository Invitations API", + "user": { + "login": "Rechi", + "id": 5367567, + "node_id": "MDQ6VXNlcjUzNjc1Njc=", + "avatar_url": "https://avatars3.githubusercontent.com/u/5367567?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Rechi", + "html_url": "https://github.com/Rechi", + "followers_url": "https://api.github.com/users/Rechi/followers", + "following_url": "https://api.github.com/users/Rechi/following{/other_user}", + "gists_url": "https://api.github.com/users/Rechi/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Rechi/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Rechi/subscriptions", + "organizations_url": "https://api.github.com/users/Rechi/orgs", + "repos_url": "https://api.github.com/users/Rechi/repos", + "events_url": "https://api.github.com/users/Rechi/events{/privacy}", + "received_events_url": "https://api.github.com/users/Rechi/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2018-05-29T20:30:17Z", + "updated_at": "2018-08-30T06:19:16Z", + "closed_at": "2018-08-30T03:19:28Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/437", + "html_url": "https://github.com/github-api/github-api/pull/437", + "diff_url": "https://github.com/github-api/github-api/pull/437.diff", + "patch_url": "https://github.com/github-api/github-api/pull/437.patch" + }, + "body": "fixes #374" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/436", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/436/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/436/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/436/events", + "html_url": "https://github.com/github-api/github-api/pull/436", + "id": 327134134, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTkxMDA4Mzcy", + "number": 436, + "title": "- remove unthrown IOException", + "user": { + "login": "jgangemi", + "id": 1831839, + "node_id": "MDQ6VXNlcjE4MzE4Mzk=", + "avatar_url": "https://avatars0.githubusercontent.com/u/1831839?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jgangemi", + "html_url": "https://github.com/jgangemi", + "followers_url": "https://api.github.com/users/jgangemi/followers", + "following_url": "https://api.github.com/users/jgangemi/following{/other_user}", + "gists_url": "https://api.github.com/users/jgangemi/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jgangemi/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jgangemi/subscriptions", + "organizations_url": "https://api.github.com/users/jgangemi/orgs", + "repos_url": "https://api.github.com/users/jgangemi/repos", + "events_url": "https://api.github.com/users/jgangemi/events{/privacy}", + "received_events_url": "https://api.github.com/users/jgangemi/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2018-05-28T23:50:48Z", + "updated_at": "2018-08-30T03:16:29Z", + "closed_at": "2018-08-30T03:16:29Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/436", + "html_url": "https://github.com/github-api/github-api/pull/436", + "diff_url": "https://github.com/github-api/github-api/pull/436.diff", + "patch_url": "https://github.com/github-api/github-api/pull/436.patch" + }, + "body": "the corresponding method in the `GitHub` class does not throw this." + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/435", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/435/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/435/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/435/events", + "html_url": "https://github.com/github-api/github-api/pull/435", + "id": 326853173, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTkwODA3OTky", + "number": 435, + "title": "- branch protection enhancements", + "user": { + "login": "jgangemi", + "id": 1831839, + "node_id": "MDQ6VXNlcjE4MzE4Mzk=", + "avatar_url": "https://avatars0.githubusercontent.com/u/1831839?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jgangemi", + "html_url": "https://github.com/jgangemi", + "followers_url": "https://api.github.com/users/jgangemi/followers", + "following_url": "https://api.github.com/users/jgangemi/following{/other_user}", + "gists_url": "https://api.github.com/users/jgangemi/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jgangemi/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jgangemi/subscriptions", + "organizations_url": "https://api.github.com/users/jgangemi/orgs", + "repos_url": "https://api.github.com/users/jgangemi/repos", + "events_url": "https://api.github.com/users/jgangemi/events{/privacy}", + "received_events_url": "https://api.github.com/users/jgangemi/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2018-05-27T21:35:13Z", + "updated_at": "2018-08-30T03:16:03Z", + "closed_at": "2018-08-30T03:16:03Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/435", + "html_url": "https://github.com/github-api/github-api/pull/435", + "diff_url": "https://github.com/github-api/github-api/pull/435.diff", + "patch_url": "https://github.com/github-api/github-api/pull/435.patch" + }, + "body": "- add support for signed commits\r\n- add support for required number of reviews" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/434", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/434/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/434/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/434/events", + "html_url": "https://github.com/github-api/github-api/issues/434", + "id": 326823160, + "node_id": "MDU6SXNzdWUzMjY4MjMxNjA=", + "number": 434, + "title": "GHRelease.uploadAsset() that takes InputStream instead of File", + "user": { + "login": "gabrielittner", + "id": 1358105, + "node_id": "MDQ6VXNlcjEzNTgxMDU=", + "avatar_url": "https://avatars2.githubusercontent.com/u/1358105?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/gabrielittner", + "html_url": "https://github.com/gabrielittner", + "followers_url": "https://api.github.com/users/gabrielittner/followers", + "following_url": "https://api.github.com/users/gabrielittner/following{/other_user}", + "gists_url": "https://api.github.com/users/gabrielittner/gists{/gist_id}", + "starred_url": "https://api.github.com/users/gabrielittner/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/gabrielittner/subscriptions", + "organizations_url": "https://api.github.com/users/gabrielittner/orgs", + "repos_url": "https://api.github.com/users/gabrielittner/repos", + "events_url": "https://api.github.com/users/gabrielittner/events{/privacy}", + "received_events_url": "https://api.github.com/users/gabrielittner/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2018-05-27T14:59:36Z", + "updated_at": "2018-08-30T03:18:52Z", + "closed_at": "2018-08-30T03:18:52Z", + "author_association": "NONE", + "body": "It would be great if you could offer a `GHRelease.uploadAsset(InputStream, String)` overload. I've got something that is already in memory and in my environment it's not easy to create files. That overload would allow me to simply pass in a `ByteArrayInputStream`." + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/433", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/433/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/433/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/433/events", + "html_url": "https://github.com/github-api/github-api/issues/433", + "id": 323895407, + "node_id": "MDU6SXNzdWUzMjM4OTU0MDc=", + "number": 433, + "title": "GHRepository.listCommits() returns java.net.SocketTimeoutException: Read timed out", + "user": { + "login": "Zhang-Nick", + "id": 7865449, + "node_id": "MDQ6VXNlcjc4NjU0NDk=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7865449?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Zhang-Nick", + "html_url": "https://github.com/Zhang-Nick", + "followers_url": "https://api.github.com/users/Zhang-Nick/followers", + "following_url": "https://api.github.com/users/Zhang-Nick/following{/other_user}", + "gists_url": "https://api.github.com/users/Zhang-Nick/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Zhang-Nick/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Zhang-Nick/subscriptions", + "organizations_url": "https://api.github.com/users/Zhang-Nick/orgs", + "repos_url": "https://api.github.com/users/Zhang-Nick/repos", + "events_url": "https://api.github.com/users/Zhang-Nick/events{/privacy}", + "received_events_url": "https://api.github.com/users/Zhang-Nick/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2018-05-17T07:00:56Z", + "updated_at": "2018-08-30T14:59:04Z", + "closed_at": "2018-08-30T14:59:04Z", + "author_association": "NONE", + "body": "timed out accessing https://api.github.com/repositories/455600/commits?page=196; will try 2 more time(s)\r\n\r\nWhen I used the GHRepository.listCommits() to get all the commits from repo \" facebook/hhvm\",it returns me timed out" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/432", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/432/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/432/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/432/events", + "html_url": "https://github.com/github-api/github-api/pull/432", + "id": 319812606, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTg1NjM0NzE0", + "number": 432, + "title": "add minimal GitHub app support", + "user": { + "login": "sns-seb", + "id": 11717580, + "node_id": "MDQ6VXNlcjExNzE3NTgw", + "avatar_url": "https://avatars2.githubusercontent.com/u/11717580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/sns-seb", + "html_url": "https://github.com/sns-seb", + "followers_url": "https://api.github.com/users/sns-seb/followers", + "following_url": "https://api.github.com/users/sns-seb/following{/other_user}", + "gists_url": "https://api.github.com/users/sns-seb/gists{/gist_id}", + "starred_url": "https://api.github.com/users/sns-seb/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/sns-seb/subscriptions", + "organizations_url": "https://api.github.com/users/sns-seb/orgs", + "repos_url": "https://api.github.com/users/sns-seb/repos", + "events_url": "https://api.github.com/users/sns-seb/events{/privacy}", + "received_events_url": "https://api.github.com/users/sns-seb/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2018-05-03T07:26:36Z", + "updated_at": "2018-05-03T07:26:58Z", + "closed_at": "2018-05-03T07:26:58Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/432", + "html_url": "https://github.com/github-api/github-api/pull/432", + "diff_url": "https://github.com/github-api/github-api/pull/432.diff", + "patch_url": "https://github.com/github-api/github-api/pull/432.patch" + }, + "body": "" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/431", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/431/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/431/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/431/events", + "html_url": "https://github.com/github-api/github-api/pull/431", + "id": 311892810, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTc5ODg2MjIz", + "number": 431, + "title": "[fix] fetch labels with HTTP GET method", + "user": { + "login": "Rechi", + "id": 5367567, + "node_id": "MDQ6VXNlcjUzNjc1Njc=", + "avatar_url": "https://avatars3.githubusercontent.com/u/5367567?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Rechi", + "html_url": "https://github.com/Rechi", + "followers_url": "https://api.github.com/users/Rechi/followers", + "following_url": "https://api.github.com/users/Rechi/following{/other_user}", + "gists_url": "https://api.github.com/users/Rechi/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Rechi/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Rechi/subscriptions", + "organizations_url": "https://api.github.com/users/Rechi/orgs", + "repos_url": "https://api.github.com/users/Rechi/repos", + "events_url": "https://api.github.com/users/Rechi/events{/privacy}", + "received_events_url": "https://api.github.com/users/Rechi/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2018-04-06T08:40:26Z", + "updated_at": "2018-05-01T14:22:05Z", + "closed_at": "2018-05-01T14:18:44Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/431", + "html_url": "https://github.com/github-api/github-api/pull/431", + "diff_url": "https://github.com/github-api/github-api/pull/431.diff", + "patch_url": "https://github.com/github-api/github-api/pull/431.patch" + }, + "body": "Making this request (by calling `pr.getLabels()`) with POST method changed the updated date of a PR.\r\n\r\nBecause of that `sort:updated-desc` in the Pull request listing wasn't sorting in the expected order any more." + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/430", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/430/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/430/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/430/events", + "html_url": "https://github.com/github-api/github-api/pull/430", + "id": 309635204, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTc4MjM4MTgy", + "number": 430, + "title": "Added request reviewers function within GHPullRequest.", + "user": { + "login": "twcurrie", + "id": 6046907, + "node_id": "MDQ6VXNlcjYwNDY5MDc=", + "avatar_url": "https://avatars0.githubusercontent.com/u/6046907?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/twcurrie", + "html_url": "https://github.com/twcurrie", + "followers_url": "https://api.github.com/users/twcurrie/followers", + "following_url": "https://api.github.com/users/twcurrie/following{/other_user}", + "gists_url": "https://api.github.com/users/twcurrie/gists{/gist_id}", + "starred_url": "https://api.github.com/users/twcurrie/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/twcurrie/subscriptions", + "organizations_url": "https://api.github.com/users/twcurrie/orgs", + "repos_url": "https://api.github.com/users/twcurrie/repos", + "events_url": "https://api.github.com/users/twcurrie/events{/privacy}", + "received_events_url": "https://api.github.com/users/twcurrie/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 7, + "created_at": "2018-03-29T06:33:28Z", + "updated_at": "2018-05-01T21:35:35Z", + "closed_at": "2018-05-01T02:58:19Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/430", + "html_url": "https://github.com/github-api/github-api/pull/430", + "diff_url": "https://github.com/github-api/github-api/pull/430.diff", + "patch_url": "https://github.com/github-api/github-api/pull/430.patch" + }, + "body": "Low hanging fruit: https://developer.github.com/v3/pulls/review_requests/#create-a-review-request" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/428", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/428/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/428/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/428/events", + "html_url": "https://github.com/github-api/github-api/pull/428", + "id": 308792893, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTc3NjExMTIx", + "number": 428, + "title": "Fix imports for commons-lang3.", + "user": { + "login": "markwoon", + "id": 215141, + "node_id": "MDQ6VXNlcjIxNTE0MQ==", + "avatar_url": "https://avatars3.githubusercontent.com/u/215141?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/markwoon", + "html_url": "https://github.com/markwoon", + "followers_url": "https://api.github.com/users/markwoon/followers", + "following_url": "https://api.github.com/users/markwoon/following{/other_user}", + "gists_url": "https://api.github.com/users/markwoon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/markwoon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/markwoon/subscriptions", + "organizations_url": "https://api.github.com/users/markwoon/orgs", + "repos_url": "https://api.github.com/users/markwoon/repos", + "events_url": "https://api.github.com/users/markwoon/events{/privacy}", + "received_events_url": "https://api.github.com/users/markwoon/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2018-03-27T01:48:07Z", + "updated_at": "2018-05-01T14:05:09Z", + "closed_at": "2018-05-01T14:05:08Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/428", + "html_url": "https://github.com/github-api/github-api/pull/428", + "diff_url": "https://github.com/github-api/github-api/pull/428.diff", + "patch_url": "https://github.com/github-api/github-api/pull/428.patch" + }, + "body": "The last commit updated the commons-lang dependency to v3 but neglected to update the imports." + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/427", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/427/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/427/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/427/events", + "html_url": "https://github.com/github-api/github-api/pull/427", + "id": 307545165, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTc2NzAzOTQ5", + "number": 427, + "title": "Add support for previous_filename for file details in PR.", + "user": { + "login": "itepikin-smartling", + "id": 26928776, + "node_id": "MDQ6VXNlcjI2OTI4Nzc2", + "avatar_url": "https://avatars3.githubusercontent.com/u/26928776?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/itepikin-smartling", + "html_url": "https://github.com/itepikin-smartling", + "followers_url": "https://api.github.com/users/itepikin-smartling/followers", + "following_url": "https://api.github.com/users/itepikin-smartling/following{/other_user}", + "gists_url": "https://api.github.com/users/itepikin-smartling/gists{/gist_id}", + "starred_url": "https://api.github.com/users/itepikin-smartling/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/itepikin-smartling/subscriptions", + "organizations_url": "https://api.github.com/users/itepikin-smartling/orgs", + "repos_url": "https://api.github.com/users/itepikin-smartling/repos", + "events_url": "https://api.github.com/users/itepikin-smartling/events{/privacy}", + "received_events_url": "https://api.github.com/users/itepikin-smartling/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2018-03-22T08:22:46Z", + "updated_at": "2018-05-01T14:17:32Z", + "closed_at": "2018-05-01T14:17:32Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/427", + "html_url": "https://github.com/github-api/github-api/pull/427", + "diff_url": "https://github.com/github-api/github-api/pull/427.diff", + "patch_url": "https://github.com/github-api/github-api/pull/427.patch" + }, + "body": "In case, when PR contains file that was renamed, file details will look like this:\r\n```\r\n[\r\n {\r\n \"sha\": \"0000000000000000000001\",\r\n \"filename\": \"fileName.new\",\r\n \"status\": \"renamed\",\r\n \"additions\": 1,\r\n \"deletions\": 0,\r\n \"changes\": 1,\r\n \"blob_url\": \"https://github.com/...\",\r\n \"raw_url\": \"https://github.com/...\",\r\n \"contents_url\": \"https://api.github.com/repos/...\",\r\n \"patch\": \"...\",\r\n \"previous_filename\": \"fileName.prev\"\r\n }\r\n]\r\n```\r\nSo, there is need to support `previous_filename` field to know the previous file name." + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/424", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/424/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/424/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/424/events", + "html_url": "https://github.com/github-api/github-api/pull/424", + "id": 305655424, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTc1MzI5NTgz", + "number": 424, + "title": "Add sha1 to updateFiles ", + "user": { + "login": "onoguera-ob", + "id": 9931799, + "node_id": "MDQ6VXNlcjk5MzE3OTk=", + "avatar_url": "https://avatars0.githubusercontent.com/u/9931799?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/onoguera-ob", + "html_url": "https://github.com/onoguera-ob", + "followers_url": "https://api.github.com/users/onoguera-ob/followers", + "following_url": "https://api.github.com/users/onoguera-ob/following{/other_user}", + "gists_url": "https://api.github.com/users/onoguera-ob/gists{/gist_id}", + "starred_url": "https://api.github.com/users/onoguera-ob/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/onoguera-ob/subscriptions", + "organizations_url": "https://api.github.com/users/onoguera-ob/orgs", + "repos_url": "https://api.github.com/users/onoguera-ob/repos", + "events_url": "https://api.github.com/users/onoguera-ob/events{/privacy}", + "received_events_url": "https://api.github.com/users/onoguera-ob/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2018-03-15T17:46:43Z", + "updated_at": "2018-08-30T02:07:03Z", + "closed_at": "2018-08-30T02:07:03Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/424", + "html_url": "https://github.com/github-api/github-api/pull/424", + "diff_url": "https://github.com/github-api/github-api/pull/424.diff", + "patch_url": "https://github.com/github-api/github-api/pull/424.patch" + }, + "body": "see https://developer.github.com/v3/repos/contents/#update-a-file" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/422", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/422/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/422/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/422/events", + "html_url": "https://github.com/github-api/github-api/pull/422", + "id": 301800784, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTcyNTI4NjAx", + "number": 422, + "title": "Fixes #421 - Enum case doesn't match for Pull Request Reviews", + "user": { + "login": "ggrell", + "id": 107712, + "node_id": "MDQ6VXNlcjEwNzcxMg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/107712?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ggrell", + "html_url": "https://github.com/ggrell", + "followers_url": "https://api.github.com/users/ggrell/followers", + "following_url": "https://api.github.com/users/ggrell/following{/other_user}", + "gists_url": "https://api.github.com/users/ggrell/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ggrell/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ggrell/subscriptions", + "organizations_url": "https://api.github.com/users/ggrell/orgs", + "repos_url": "https://api.github.com/users/ggrell/repos", + "events_url": "https://api.github.com/users/ggrell/events{/privacy}", + "received_events_url": "https://api.github.com/users/ggrell/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2018-03-02T15:19:34Z", + "updated_at": "2018-05-01T14:19:43Z", + "closed_at": "2018-05-01T14:19:43Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/422", + "html_url": "https://github.com/github-api/github-api/pull/422", + "diff_url": "https://github.com/github-api/github-api/pull/422.diff", + "patch_url": "https://github.com/github-api/github-api/pull/422.patch" + }, + "body": "Fixes issue #421 by setting Jackson to ignore case differences in enums." + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/421", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/421/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/421/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/421/events", + "html_url": "https://github.com/github-api/github-api/issues/421", + "id": 301607044, + "node_id": "MDU6SXNzdWUzMDE2MDcwNDQ=", + "number": 421, + "title": "InvalidFormatException parsing GHEventPayload.PullRequestReview", + "user": { + "login": "ggrell", + "id": 107712, + "node_id": "MDQ6VXNlcjEwNzcxMg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/107712?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ggrell", + "html_url": "https://github.com/ggrell", + "followers_url": "https://api.github.com/users/ggrell/followers", + "following_url": "https://api.github.com/users/ggrell/following{/other_user}", + "gists_url": "https://api.github.com/users/ggrell/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ggrell/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ggrell/subscriptions", + "organizations_url": "https://api.github.com/users/ggrell/orgs", + "repos_url": "https://api.github.com/users/ggrell/repos", + "events_url": "https://api.github.com/users/ggrell/events{/privacy}", + "received_events_url": "https://api.github.com/users/ggrell/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2018-03-02T00:09:08Z", + "updated_at": "2018-05-01T14:19:45Z", + "closed_at": "2018-05-01T14:19:45Z", + "author_association": "CONTRIBUTOR", + "body": "I'm getting the following exception parsing a \"pull_request_review\" event on our GitHub Enterprise instance:\r\n```\r\ncom.fasterxml.jackson.databind.exc.InvalidFormatException: Cannot deserialize value of type `org.kohsuke.github.GHPullRequestReviewState` from String \"commented\": value not one of declared Enum instance names: [CHANGES_REQUESTED, REQUEST_CHANGES, PENDING, DISMISSED, COMMENTED, APPROVED]\r\n at [Source: (StringReader); line: 28, column: 14] (through reference chain: org.kohsuke.github.GHEventPayload$PullRequestReview[\"review\"]->org.kohsuke.github.GHPullRequestReview[\"state\"])\r\ncom.fasterxml.jackson.databind.exc.InvalidFormatException: Cannot deserialize value of type `org.kohsuke.github.GHPullRequestReviewState` from String \"commented\": value not one of declared Enum instance names: [CHANGES_REQUESTED, REQUEST_CHANGES, PENDING, DISMISSED, COMMENTED, APPROVED]\r\n at [Source: (StringReader); line: 28, column: 14] (through reference chain: org.kohsuke.github.GHEventPayload$PullRequestReview[\"review\"]->org.kohsuke.github.GHPullRequestReview[\"state\"])\r\n\tat com.fasterxml.jackson.databind.exc.InvalidFormatException.from(InvalidFormatException.java:67) ~[jackson-databind-2.9.4.jar:2.9.4]\r\n\tat com.fasterxml.jackson.databind.DeserializationContext.weirdStringException(DeserializationContext.java:1548) ~[jackson-databind-2.9.4.jar:2.9.4]\r\n\tat com.fasterxml.jackson.databind.DeserializationContext.handleWeirdStringValue(DeserializationContext.java:910) ~[jackson-databind-2.9.4.jar:2.9.4]\r\n\tat com.fasterxml.jackson.databind.deser.std.EnumDeserializer._deserializeAltString(EnumDeserializer.java:255) ~[jackson-databind-2.9.4.jar:2.9.4]\r\n\tat com.fasterxml.jackson.databind.deser.std.EnumDeserializer.deserialize(EnumDeserializer.java:179) ~[jackson-databind-2.9.4.jar:2.9.4]\r\n\tat com.fasterxml.jackson.databind.deser.impl.FieldProperty.deserializeAndSet(FieldProperty.java:136) ~[jackson-databind-2.9.4.jar:2.9.4]\r\n\tat com.fasterxml.jackson.databind.deser.BeanDeserializer.vanillaDeserialize(BeanDeserializer.java:288) ~[jackson-databind-2.9.4.jar:2.9.4]\r\n\tat com.fasterxml.jackson.databind.deser.BeanDeserializer.deserialize(BeanDeserializer.java:151) ~[jackson-databind-2.9.4.jar:2.9.4]\r\n\tat com.fasterxml.jackson.databind.deser.impl.FieldProperty.deserializeAndSet(FieldProperty.java:136) ~[jackson-databind-2.9.4.jar:2.9.4]\r\n\tat com.fasterxml.jackson.databind.deser.BeanDeserializer.vanillaDeserialize(BeanDeserializer.java:288) ~[jackson-databind-2.9.4.jar:2.9.4]\r\n\tat com.fasterxml.jackson.databind.deser.BeanDeserializer.deserialize(BeanDeserializer.java:151) ~[jackson-databind-2.9.4.jar:2.9.4]\r\n\tat com.fasterxml.jackson.databind.ObjectMapper._readMapAndClose(ObjectMapper.java:4001) ~[jackson-databind-2.9.4.jar:2.9.4]\r\n\tat com.fasterxml.jackson.databind.ObjectMapper.readValue(ObjectMapper.java:3037) ~[jackson-databind-2.9.4.jar:2.9.4]\r\n\tat org.kohsuke.github.GitHub.parseEventPayload(GitHub.java:600) ~[github-api-1.92.jar:na]\r\n```\r\nwhere the beginning of the JSON payload looks like this:\r\n```\r\n{\r\n \"action\": \"submitted\",\r\n \"review\": {\r\n \"id\": 33666,\r\n \"user\": {\r\n \"login\": \"REMOVED\",\r\n \"id\": 193,\r\n \"avatar_url\": \"REMOVED\",\r\n \"gravatar_id\": \"\",\r\n \"url\": \"REMOVED\",\r\n \"html_url\": \"REMOVED\",\r\n \"followers_url\": \"REMOVED\",\r\n \"following_url\": \"REMOVED\",\r\n \"gists_url\": \"REMOVED\",\r\n \"starred_url\": \"REMOVED\",\r\n \"subscriptions_url\": \"REMOVED\",\r\n \"organizations_url\": \"REMOVED\",\r\n \"repos_url\": \"REMOVED\",\r\n \"events_url\": \"REMOVED\",\r\n \"received_events_url\": \"REMOVED\",\r\n \"type\": \"User\",\r\n \"site_admin\": false,\r\n \"ldap_dn\": \"REMOVED\"\r\n },\r\n \"body\": \"Review test\",\r\n \"commit_id\": \"1348693c5fefd5dc58568b75ef69c81705bfb269\",\r\n \"submitted_at\": \"2018-03-01T23:41:54Z\",\r\n \"state\": \"commented\",\r\n...\r\n```" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/420", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/420/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/420/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/420/events", + "html_url": "https://github.com/github-api/github-api/pull/420", + "id": 300852281, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTcxODI5MjM3", + "number": 420, + "title": "OkHttpConnector: Enforce use of TLSv1.2 to match current Github and Github Enterprise TLS support.", + "user": { + "login": "randomvariable", + "id": 1441070, + "node_id": "MDQ6VXNlcjE0NDEwNzA=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1441070?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/randomvariable", + "html_url": "https://github.com/randomvariable", + "followers_url": "https://api.github.com/users/randomvariable/followers", + "following_url": "https://api.github.com/users/randomvariable/following{/other_user}", + "gists_url": "https://api.github.com/users/randomvariable/gists{/gist_id}", + "starred_url": "https://api.github.com/users/randomvariable/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/randomvariable/subscriptions", + "organizations_url": "https://api.github.com/users/randomvariable/orgs", + "repos_url": "https://api.github.com/users/randomvariable/repos", + "events_url": "https://api.github.com/users/randomvariable/events{/privacy}", + "received_events_url": "https://api.github.com/users/randomvariable/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 5, + "created_at": "2018-02-28T01:02:48Z", + "updated_at": "2018-03-06T17:21:51Z", + "closed_at": "2018-03-01T17:43:25Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/420", + "html_url": "https://github.com/github-api/github-api/pull/420", + "diff_url": "https://github.com/github-api/github-api/pull/420.diff", + "patch_url": "https://github.com/github-api/github-api/pull/420.patch" + }, + "body": "On Feb 8, 2018, Github changed their TLS settings to be 1.2 only.\r\nMost recent Jenkins installs are OK as Java 1.8 defaults to TLS 1.2, however some people see intermittent\r\nor continuous failures with connecting to Github in a variety of configurations:\r\n\r\ne.g. https://issues.jenkins-ci.org/browse/JENKINS-49761?jql=project%20%3D%20JENKINS%20AND%20component%20%3D%20github-api-plugin \r\n\r\nThis PR creates a new TLS v1.2 only SSLContext and attaches its socket factory to the urlFactory passed to OkHttpConnector, which is used by most Github plugins in Jenkins." + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/419", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/419/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/419/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/419/events", + "html_url": "https://github.com/github-api/github-api/issues/419", + "id": 299887267, + "node_id": "MDU6SXNzdWUyOTk4ODcyNjc=", + "number": 419, + "title": "java.lang.NoSuchMethodError: com.fasterxml.jackson.databind.deser.SettableBeanProperty.", + "user": { + "login": "Karpinchyk", + "id": 36778898, + "node_id": "MDQ6VXNlcjM2Nzc4ODk4", + "avatar_url": "https://avatars0.githubusercontent.com/u/36778898?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Karpinchyk", + "html_url": "https://github.com/Karpinchyk", + "followers_url": "https://api.github.com/users/Karpinchyk/followers", + "following_url": "https://api.github.com/users/Karpinchyk/following{/other_user}", + "gists_url": "https://api.github.com/users/Karpinchyk/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Karpinchyk/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Karpinchyk/subscriptions", + "organizations_url": "https://api.github.com/users/Karpinchyk/orgs", + "repos_url": "https://api.github.com/users/Karpinchyk/repos", + "events_url": "https://api.github.com/users/Karpinchyk/events{/privacy}", + "received_events_url": "https://api.github.com/users/Karpinchyk/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2018-02-24T00:00:13Z", + "updated_at": "2018-08-30T15:00:32Z", + "closed_at": "2018-08-30T15:00:32Z", + "author_association": "NONE", + "body": "I am very sorry if this issue has been already addressed somewhere. I tried to google but didn't find any references.\r\n\r\nStarting at version 1.90 of github-api a dropwizard app gives an exception when started. Previous versions of the lib (1 - 1.89) work fine.\r\n\r\nException in thread \"main\" java.lang.NoSuchMethodError: com.fasterxml.jackson.databind.deser.SettableBeanProperty.(Lcom/fasterxml/jackson/databind/deser/SettableBeanProperty;Lcom/fasterxml/jackson/databind/JsonDeserializer;)V\r\n\tat com.fasterxml.jackson.module.afterburner.deser.OptimizedSettableBeanProperty.(OptimizedSettableBeanProperty.java:50)\r\n\tat com.fasterxml.jackson.module.afterburner.deser.SettableObjectMethodProperty.(SettableObjectMethodProperty.java:21)\r\n\tat com.fasterxml.jackson.module.afterburner.deser.SettableObjectMethodProperty.withValueDeserializer(SettableObjectMethodProperty.java:38)\r\n\tat com.fasterxml.jackson.databind.deser.BeanDeserializerBase.resolve(BeanDeserializerBase.java:462)\r\n\tat com.fasterxml.jackson.module.afterburner.deser.SuperSonicBeanDeserializer.resolve(SuperSonicBeanDeserializer.java:79)\r\n\tat com.fasterxml.jackson.databind.deser.DeserializerCache._createAndCache2(DeserializerCache.java:293)\r\n\tat com.fasterxml.jackson.databind.deser.DeserializerCache._createAndCacheValueDeserializer(DeserializerCache.java:244)\r\n\tat com.fasterxml.jackson.databind.deser.DeserializerCache.findValueDeserializer(DeserializerCache.java:142)\r\n\tat com.fasterxml.jackson.databind.DeserializationContext.findRootValueDeserializer(DeserializationContext.java:477)\r\n\tat com.fasterxml.jackson.databind.ObjectMapper._findRootDeserializer(ObjectMapper.java:4178)\r\n\tat com.fasterxml.jackson.databind.ObjectMapper._readValue(ObjectMapper.java:3967)\r\n\tat com.fasterxml.jackson.databind.ObjectMapper.readValue(ObjectMapper.java:2264)\r\n\tat io.dropwizard.configuration.YamlConfigurationFactory.build(YamlConfigurationFactory.java:123)\r\n\tat io.dropwizard.configuration.YamlConfigurationFactory.build(YamlConfigurationFactory.java:87)\r\n\tat io.dropwizard.cli.ConfiguredCommand.parseConfiguration(ConfiguredCommand.java:124)\r\n\tat io.dropwizard.cli.ConfiguredCommand.run(ConfiguredCommand.java:72)\r\n\tat io.dropwizard.cli.Cli.run(Cli.java:75)\r\n..." + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/418", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/418/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/418/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/418/events", + "html_url": "https://github.com/github-api/github-api/issues/418", + "id": 299853104, + "node_id": "MDU6SXNzdWUyOTk4NTMxMDQ=", + "number": 418, + "title": "https://api.github.com/user response code -1", + "user": { + "login": "attti", + "id": 4491248, + "node_id": "MDQ6VXNlcjQ0OTEyNDg=", + "avatar_url": "https://avatars0.githubusercontent.com/u/4491248?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/attti", + "html_url": "https://github.com/attti", + "followers_url": "https://api.github.com/users/attti/followers", + "following_url": "https://api.github.com/users/attti/following{/other_user}", + "gists_url": "https://api.github.com/users/attti/gists{/gist_id}", + "starred_url": "https://api.github.com/users/attti/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/attti/subscriptions", + "organizations_url": "https://api.github.com/users/attti/orgs", + "repos_url": "https://api.github.com/users/attti/repos", + "events_url": "https://api.github.com/users/attti/events{/privacy}", + "received_events_url": "https://api.github.com/users/attti/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 4, + "created_at": "2018-02-23T21:17:39Z", + "updated_at": "2018-02-26T17:10:26Z", + "closed_at": "2018-02-26T17:04:52Z", + "author_association": "NONE", + "body": "got error when our pull request builder plugin trying to connect to github.\r\nFeb 23, 2018 4:08:00 PM SEVERE org.jenkinsci.plugins.ghprb.GhprbGitHubAuth buildConnection\r\nUnable to connect using credentials: ________________________________\r\norg.kohsuke.github.HttpException: Server returned HTTP response code: -1, message: 'null' for URL: https://api.github.com/user\r\n\tat org.kohsuke.github.Requester.parse(Requester.java:633)\r\n\tat org.kohsuke.github.Requester.parse(Requester.java:594)\r\n\tat org.kohsuke.github.Requester._to(Requester.java:272)\r\n\tat org.kohsuke.github.Requester.to(Requester.java:234)\r\n\tat org.kohsuke.github.GitHub.getMyself(GitHub.java:384)\r\n\tat org.kohsuke.github.GitHub.(GitHub.java:158)\r\n\tat org.kohsuke.github.GitHubBuilder.build(GitHubBuilder.java:207)\r\n\tat org.jenkinsci.plugins.ghprb.GhprbGitHubAuth.buildConnection(GhprbGitHubAuth.java:195)\r\n\tat org.jenkinsci.plugins.ghprb.GhprbGitHubAuth.getConnection(GhprbGitHubAuth.java:204)\r\n\tat org.jenkinsci.plugins.ghprb.GhprbTrigger.getGitHub(GhprbTrigger.java:431)\r\n\tat org.jenkinsci.plugins.ghprb.GhprbRepository.initGhRepository(GhprbRepository.java:86)\r\n\tat org.jenkinsci.plugins.ghprb.GhprbRepository.check(GhprbRepository.java:130)\r\n\tat org.jenkinsci.plugins.ghprb.GhprbTrigger.run(GhprbTrigger.java:300)\r\n\tat hudson.triggers.Trigger.checkTriggers(Trigger.java:272)\r\n\tat hudson.triggers.Trigger$Cron.doRun(Trigger.java:221)\r\n\tat hudson.triggers.SafeTimerTask.run(SafeTimerTask.java:50)\r\n\tat java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:471)\r\n\tat java.util.concurrent.FutureTask.runAndReset(FutureTask.java:304)\r\n\tat java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:178)\r\n\tat java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293)\r\n\tat java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)\r\n\tat java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)\r\n\tat java.lang.Thread.run(Thread.java:745)\r\nCaused by: javax.net.ssl.SSLException: Received fatal alert: protocol_version\r\n\tat sun.security.ssl.Alerts.getSSLException(Alerts.java:208)\r\n\tat sun.security.ssl.Alerts.getSSLException(Alerts.java:154)\r\n\tat sun.security.ssl.SSLSocketImpl.recvAlert(SSLSocketImpl.java:1979)\r\n\tat sun.security.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:1086)\r\n\tat sun.security.ssl.SSLSocketImpl.performInitialHandshake(SSLSocketImpl.java:1332)\r\n\tat sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:1359)\r\n\tat sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:1343)\r\n\tat sun.net.www.protocol.https.HttpsClient.afterConnect(HttpsClient.java:563)\r\n\tat sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:185)\r\n\tat sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1301)\r\n\tat java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:468)\r\n\tat sun.net.www.protocol.https.HttpsURLConnectionImpl.getResponseCode(HttpsURLConnectionImpl.java:338)\r\n\tat org.kohsuke.github.Requester.parse(Requester.java:602)\r\n\t... 22 more\r\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/417", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/417/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/417/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/417/events", + "html_url": "https://github.com/github-api/github-api/pull/417", + "id": 299444497, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTcwODE4NTUy", + "number": 417, + "title": "Added release payload.", + "user": { + "login": "twcurrie", + "id": 6046907, + "node_id": "MDQ6VXNlcjYwNDY5MDc=", + "avatar_url": "https://avatars0.githubusercontent.com/u/6046907?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/twcurrie", + "html_url": "https://github.com/twcurrie", + "followers_url": "https://api.github.com/users/twcurrie/followers", + "following_url": "https://api.github.com/users/twcurrie/following{/other_user}", + "gists_url": "https://api.github.com/users/twcurrie/gists{/gist_id}", + "starred_url": "https://api.github.com/users/twcurrie/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/twcurrie/subscriptions", + "organizations_url": "https://api.github.com/users/twcurrie/orgs", + "repos_url": "https://api.github.com/users/twcurrie/repos", + "events_url": "https://api.github.com/users/twcurrie/events{/privacy}", + "received_events_url": "https://api.github.com/users/twcurrie/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2018-02-22T17:39:26Z", + "updated_at": "2018-08-30T03:21:25Z", + "closed_at": "2018-08-30T03:21:25Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/417", + "html_url": "https://github.com/github-api/github-api/pull/417", + "diff_url": "https://github.com/github-api/github-api/pull/417.diff", + "patch_url": "https://github.com/github-api/github-api/pull/417.patch" + }, + "body": "" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/415", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/415/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/415/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/415/events", + "html_url": "https://github.com/github-api/github-api/issues/415", + "id": 298028849, + "node_id": "MDU6SXNzdWUyOTgwMjg4NDk=", + "number": 415, + "title": "mvn test fails to start on HEAD", + "user": { + "login": "gdgib", + "id": 801167, + "node_id": "MDQ6VXNlcjgwMTE2Nw==", + "avatar_url": "https://avatars0.githubusercontent.com/u/801167?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/gdgib", + "html_url": "https://github.com/gdgib", + "followers_url": "https://api.github.com/users/gdgib/followers", + "following_url": "https://api.github.com/users/gdgib/following{/other_user}", + "gists_url": "https://api.github.com/users/gdgib/gists{/gist_id}", + "starred_url": "https://api.github.com/users/gdgib/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/gdgib/subscriptions", + "organizations_url": "https://api.github.com/users/gdgib/orgs", + "repos_url": "https://api.github.com/users/gdgib/repos", + "events_url": "https://api.github.com/users/gdgib/events{/privacy}", + "received_events_url": "https://api.github.com/users/gdgib/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 8, + "created_at": "2018-02-17T19:14:28Z", + "updated_at": "2018-08-30T15:37:51Z", + "closed_at": "2018-08-30T15:37:50Z", + "author_association": "NONE", + "body": "If I checkout `192e21a9fcacf4dffc975156bcf5e8ff7bf297b1` (HEAD right now), and run `mvn test` I see a `ClassNotFoundException`. It cannot even report success or failure of individual tests.\r\n\r\nI believe this is related to https://github.com/kohsuke/github-api/pull/388 which upgraded jgit, but maybe not all of the unit tests. Specifically [`LifecycleTest`](https://github.com/kohsuke/github-api/blob/master/src/test/java/org/kohsuke/github/LifecycleTest.java) references `UsernamePasswordCredentialsProvider` which is no longer in the newer versions of jgit.\r\n\r\nI'll be honest, as I tried to fix this I kept getting some unexpected classpath errors related to jgit (first this one, then one about `GitAPIException`, etc), and much as I know my way around a super complex build, I didn't feel like learning about the maven plugin for bridge method generation, and everything else it might take me to sort this out. Is there something basic I missed for setting up a working development environment for this project? I feel like I must have missed something simple for `mvn test` not to work.\r\n\r\nThe surefire log shows:\r\n\r\n```\r\n-------------------------------------------------------\r\n T E S T S\r\n-------------------------------------------------------\r\norg.apache.maven.surefire.util.SurefireReflectionException: java.lang.reflect.InvocationTargetException; nested exception is java.lang.reflect.InvocationTargetException: null\r\njava.lang.reflect.InvocationTargetException\r\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\r\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\r\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n at java.lang.reflect.Method.invoke(Method.java:498)\r\n at org.apache.maven.surefire.util.ReflectionUtils.invokeMethodWithArray(ReflectionUtils.java:189)\r\n at org.apache.maven.surefire.booter.ProviderFactory$ProviderProxy.invoke(ProviderFactory.java:165)\r\n at org.apache.maven.surefire.booter.ProviderFactory.invokeProvider(ProviderFactory.java:85)\r\n at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:115)\r\n at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:75)\r\nCaused by: java.lang.NoClassDefFoundError: org/eclipse/jgit/transport/CredentialsProvider\r\n at java.lang.Class.getDeclaredMethods0(Native Method)\r\n at java.lang.Class.privateGetDeclaredMethods(Class.java:2701)\r\n at java.lang.Class.privateGetMethodRecursive(Class.java:3048)\r\n at java.lang.Class.getMethod0(Class.java:3018)\r\n at java.lang.Class.getMethod(Class.java:1784)\r\n at org.apache.maven.surefire.util.ReflectionUtils.tryGetMethod(ReflectionUtils.java:57)\r\n at org.apache.maven.surefire.common.junit3.JUnit3TestChecker.isSuiteOnly(JUnit3TestChecker.java:64)\r\n at org.apache.maven.surefire.common.junit3.JUnit3TestChecker.isValidJUnit3Test(JUnit3TestChecker.java:59)\r\n at org.apache.maven.surefire.common.junit3.JUnit3TestChecker.accept(JUnit3TestChecker.java:54)\r\n at org.apache.maven.surefire.common.junit4.JUnit4TestChecker.accept(JUnit4TestChecker.java:51)\r\n at org.apache.maven.surefire.util.DefaultScanResult.applyFilter(DefaultScanResult.java:97)\r\n at org.apache.maven.surefire.junit4.JUnit4Provider.scanClassPath(JUnit4Provider.java:194)\r\n at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:92)\r\n ... 9 more\r\nCaused by: java.lang.ClassNotFoundException: org.eclipse.jgit.transport.CredentialsProvider\r\n at java.net.URLClassLoader.findClass(URLClassLoader.java:381)\r\n at java.lang.ClassLoader.loadClass(ClassLoader.java:424)\r\n at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:331)\r\n at java.lang.ClassLoader.loadClass(ClassLoader.java:357)\r\n ... 22 more\r\n\r\nResults :\r\n\r\nTests run: 0, Failures: 0, Errors: 0, Skipped: 0\r\n```\r\n\r\n\r\nMaven version:\r\n```\r\nApache Maven 3.3.9 (bb52d8502b132ec0a5a3f4c09453c07478323dc5; 2015-11-10T08:41:47-08:00)\r\nMaven home: C:\\Program Files\\Maven\r\nJava version: 1.8.0_121, vendor: Oracle Corporation\r\nJava home: C:\\Program Files\\Java\\jdk1.8.0_121\\jre\r\nDefault locale: en_US, platform encoding: Cp1252\r\nOS name: \"windows nt (unknown)\", version: \"10.0\", arch: \"amd64\", family: \"dos\"\r\n```" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/414", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/414/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/414/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/414/events", + "html_url": "https://github.com/github-api/github-api/issues/414", + "id": 298019002, + "node_id": "MDU6SXNzdWUyOTgwMTkwMDI=", + "number": 414, + "title": "NullPointerException in org.kohsuke.github.GHContent.read", + "user": { + "login": "turbanoff", + "id": 741251, + "node_id": "MDQ6VXNlcjc0MTI1MQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/741251?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/turbanoff", + "html_url": "https://github.com/turbanoff", + "followers_url": "https://api.github.com/users/turbanoff/followers", + "following_url": "https://api.github.com/users/turbanoff/following{/other_user}", + "gists_url": "https://api.github.com/users/turbanoff/gists{/gist_id}", + "starred_url": "https://api.github.com/users/turbanoff/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/turbanoff/subscriptions", + "organizations_url": "https://api.github.com/users/turbanoff/orgs", + "repos_url": "https://api.github.com/users/turbanoff/repos", + "events_url": "https://api.github.com/users/turbanoff/events{/privacy}", + "received_events_url": "https://api.github.com/users/turbanoff/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2018-02-17T16:57:54Z", + "updated_at": "2018-08-30T15:05:36Z", + "closed_at": "2018-08-30T15:05:36Z", + "author_association": "CONTRIBUTOR", + "body": "Hello.\r\nI'm trying to use github search API and sometimes got NPE. (tailApiUrl is null)\r\n\r\n Exception in thread \"main\" java.lang.NullPointerException\r\n\tat org.kohsuke.github.GitHub.getApiURL(GitHub.java:297)\r\n\tat org.kohsuke.github.Requester.asStream(Requester.java:327)\r\n\tat org.kohsuke.github.GHContent.read(GHContent.java:117)\r\n\r\nUsed version: `org.kohsuke:github-api:1.92`\r\n\r\n![default](https://user-images.githubusercontent.com/741251/36343870-e114b9e4-1422-11e8-830a-907720878d38.png)\r\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/413", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/413/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/413/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/413/events", + "html_url": "https://github.com/github-api/github-api/pull/413", + "id": 297041651, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTY5MDY5OTIw", + "number": 413, + "title": "fix issues", + "user": { + "login": "eosmanov", + "id": 16746779, + "node_id": "MDQ6VXNlcjE2NzQ2Nzc5", + "avatar_url": "https://avatars1.githubusercontent.com/u/16746779?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eosmanov", + "html_url": "https://github.com/eosmanov", + "followers_url": "https://api.github.com/users/eosmanov/followers", + "following_url": "https://api.github.com/users/eosmanov/following{/other_user}", + "gists_url": "https://api.github.com/users/eosmanov/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eosmanov/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eosmanov/subscriptions", + "organizations_url": "https://api.github.com/users/eosmanov/orgs", + "repos_url": "https://api.github.com/users/eosmanov/repos", + "events_url": "https://api.github.com/users/eosmanov/events{/privacy}", + "received_events_url": "https://api.github.com/users/eosmanov/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2018-02-14T10:20:36Z", + "updated_at": "2019-06-20T00:12:00Z", + "closed_at": "2019-06-20T00:12:00Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/413", + "html_url": "https://github.com/github-api/github-api/pull/413", + "diff_url": "https://github.com/github-api/github-api/pull/413.diff", + "patch_url": "https://github.com/github-api/github-api/pull/413.patch" + }, + "body": "" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/411", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/411/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/411/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/411/events", + "html_url": "https://github.com/github-api/github-api/pull/411", + "id": 294566335, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTY3MjcyODUy", + "number": 411, + "title": "Add GHRepository.getRelease and GHRepository.getReleaseByTagName", + "user": { + "login": "tadfisher", + "id": 129148, + "node_id": "MDQ6VXNlcjEyOTE0OA==", + "avatar_url": "https://avatars3.githubusercontent.com/u/129148?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/tadfisher", + "html_url": "https://github.com/tadfisher", + "followers_url": "https://api.github.com/users/tadfisher/followers", + "following_url": "https://api.github.com/users/tadfisher/following{/other_user}", + "gists_url": "https://api.github.com/users/tadfisher/gists{/gist_id}", + "starred_url": "https://api.github.com/users/tadfisher/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/tadfisher/subscriptions", + "organizations_url": "https://api.github.com/users/tadfisher/orgs", + "repos_url": "https://api.github.com/users/tadfisher/repos", + "events_url": "https://api.github.com/users/tadfisher/events{/privacy}", + "received_events_url": "https://api.github.com/users/tadfisher/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2018-02-05T22:33:14Z", + "updated_at": "2018-08-30T03:22:27Z", + "closed_at": "2018-08-30T03:22:27Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/411", + "html_url": "https://github.com/github-api/github-api/pull/411", + "diff_url": "https://github.com/github-api/github-api/pull/411.diff", + "patch_url": "https://github.com/github-api/github-api/pull/411.patch" + }, + "body": "These implement the API endpoints for:\r\n\r\n- `GET /repos/:owner/:repo/releases/:id`\r\n- `GET /repos/:owner/:repo/releases/tags/:tag`" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/410", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/410/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/410/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/410/events", + "html_url": "https://github.com/github-api/github-api/pull/410", + "id": 290794329, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTY0NTQ0MDc4", + "number": 410, + "title": "Update commons-lang to 3.7", + "user": { + "login": "Limess", + "id": 3199181, + "node_id": "MDQ6VXNlcjMxOTkxODE=", + "avatar_url": "https://avatars1.githubusercontent.com/u/3199181?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Limess", + "html_url": "https://github.com/Limess", + "followers_url": "https://api.github.com/users/Limess/followers", + "following_url": "https://api.github.com/users/Limess/following{/other_user}", + "gists_url": "https://api.github.com/users/Limess/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Limess/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Limess/subscriptions", + "organizations_url": "https://api.github.com/users/Limess/orgs", + "repos_url": "https://api.github.com/users/Limess/repos", + "events_url": "https://api.github.com/users/Limess/events{/privacy}", + "received_events_url": "https://api.github.com/users/Limess/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2018-01-23T11:01:24Z", + "updated_at": "2018-03-01T17:45:16Z", + "closed_at": "2018-03-01T17:45:16Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/410", + "html_url": "https://github.com/github-api/github-api/pull/410", + "diff_url": "https://github.com/github-api/github-api/pull/410.diff", + "patch_url": "https://github.com/github-api/github-api/pull/410.patch" + }, + "body": "This fixes the issue in the dependency\r\n* https://issues.apache.org/jira/browse/LANG-805.\r\n\r\nFixes #409." + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/409", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/409/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/409/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/409/events", + "html_url": "https://github.com/github-api/github-api/issues/409", + "id": 290791927, + "node_id": "MDU6SXNzdWUyOTA3OTE5Mjc=", + "number": 409, + "title": "Update commons-lang version", + "user": { + "login": "Limess", + "id": 3199181, + "node_id": "MDQ6VXNlcjMxOTkxODE=", + "avatar_url": "https://avatars1.githubusercontent.com/u/3199181?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Limess", + "html_url": "https://github.com/Limess", + "followers_url": "https://api.github.com/users/Limess/followers", + "following_url": "https://api.github.com/users/Limess/following{/other_user}", + "gists_url": "https://api.github.com/users/Limess/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Limess/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Limess/subscriptions", + "organizations_url": "https://api.github.com/users/Limess/orgs", + "repos_url": "https://api.github.com/users/Limess/repos", + "events_url": "https://api.github.com/users/Limess/events{/privacy}", + "received_events_url": "https://api.github.com/users/Limess/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2018-01-23T10:53:29Z", + "updated_at": "2018-03-01T17:45:16Z", + "closed_at": "2018-03-01T17:45:16Z", + "author_association": "CONTRIBUTOR", + "body": "Apache commons-lang should be updated to mitigate the issue documented below:\r\n\r\nhttps://issues.apache.org/jira/browse/LANG-805\r\n\r\nThese are fixed in the latest version (note the new artifact name: https://mvnrepository.com/artifact/org.apache.commons/commons-lang3).\r\n\r\nThis is causing issues with our dependency scanning software (whitesource) as these issues are marked as blockers." + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/408", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/408/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/408/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/408/events", + "html_url": "https://github.com/github-api/github-api/pull/408", + "id": 288920702, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTYzMTg4NDI2", + "number": 408, + "title": "[JENKINS-48954] - Add the Jenkins-ClassFilter-Whitelisted manifest entry", + "user": { + "login": "oleg-nenashev", + "id": 3000480, + "node_id": "MDQ6VXNlcjMwMDA0ODA=", + "avatar_url": "https://avatars0.githubusercontent.com/u/3000480?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/oleg-nenashev", + "html_url": "https://github.com/oleg-nenashev", + "followers_url": "https://api.github.com/users/oleg-nenashev/followers", + "following_url": "https://api.github.com/users/oleg-nenashev/following{/other_user}", + "gists_url": "https://api.github.com/users/oleg-nenashev/gists{/gist_id}", + "starred_url": "https://api.github.com/users/oleg-nenashev/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/oleg-nenashev/subscriptions", + "organizations_url": "https://api.github.com/users/oleg-nenashev/orgs", + "repos_url": "https://api.github.com/users/oleg-nenashev/repos", + "events_url": "https://api.github.com/users/oleg-nenashev/events{/privacy}", + "received_events_url": "https://api.github.com/users/oleg-nenashev/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 265903461, + "node_id": "MDU6TGFiZWwyNjU5MDM0NjE=", + "url": "https://api.github.com/repos/github-api/github-api/labels/work-in-progress", + "name": "work-in-progress", + "color": "d4c5f9", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 6, + "created_at": "2018-01-16T14:12:32Z", + "updated_at": "2018-01-25T15:22:50Z", + "closed_at": "2018-01-25T15:22:50Z", + "author_association": "COLLABORATOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/408", + "html_url": "https://github.com/github-api/github-api/pull/408", + "diff_url": "https://github.com/github-api/github-api/pull/408.diff", + "patch_url": "https://github.com/github-api/github-api/pull/408.patch" + }, + "body": "In Jenkins project [JEP-200](https://jenkins.io/blog/2018/01/13/jep-200/) introduces serious changes in class serialization since 2.102. Some Jenkins plugins (e.g. GitHub Pull Request Builder) are affected by the change due to serialization of GitHub API (see [JENKINS-48950](https://issues.jenkins-ci.org/browse/JENKINS-48950)). It is still TBD whether such serialization is desirable, but I am putting this PR here just in case.\r\n\r\nPlease do not merge for now\r\n\r\n@reviewbybees @jglick \r\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/407", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/407/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/407/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/407/events", + "html_url": "https://github.com/github-api/github-api/pull/407", + "id": 287287644, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTYyMDE3NTkz", + "number": 407, + "title": "Adding merge settings to GHCreateRepositoryBuilder", + "user": { + "login": "notsudo", + "id": 1791046, + "node_id": "MDQ6VXNlcjE3OTEwNDY=", + "avatar_url": "https://avatars1.githubusercontent.com/u/1791046?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/notsudo", + "html_url": "https://github.com/notsudo", + "followers_url": "https://api.github.com/users/notsudo/followers", + "following_url": "https://api.github.com/users/notsudo/following{/other_user}", + "gists_url": "https://api.github.com/users/notsudo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/notsudo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/notsudo/subscriptions", + "organizations_url": "https://api.github.com/users/notsudo/orgs", + "repos_url": "https://api.github.com/users/notsudo/repos", + "events_url": "https://api.github.com/users/notsudo/events{/privacy}", + "received_events_url": "https://api.github.com/users/notsudo/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2018-01-10T01:36:18Z", + "updated_at": "2018-03-28T18:18:40Z", + "closed_at": "2018-01-13T03:39:04Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/407", + "html_url": "https://github.com/github-api/github-api/pull/407", + "diff_url": "https://github.com/github-api/github-api/pull/407.diff", + "patch_url": "https://github.com/github-api/github-api/pull/407.patch" + }, + "body": "I noticed that the settings for configuring the allowed merge strategies for pull requests were missing from the GHCreateRepositoryBuilder. This adds them." + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/406", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/406/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/406/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/406/events", + "html_url": "https://github.com/github-api/github-api/pull/406", + "id": 286765266, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTYxNjQzMzcw", + "number": 406, + "title": "Improved Pull Request review and comments support", + "user": { + "login": "sns-seb", + "id": 11717580, + "node_id": "MDQ6VXNlcjExNzE3NTgw", + "avatar_url": "https://avatars2.githubusercontent.com/u/11717580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/sns-seb", + "html_url": "https://github.com/sns-seb", + "followers_url": "https://api.github.com/users/sns-seb/followers", + "following_url": "https://api.github.com/users/sns-seb/following{/other_user}", + "gists_url": "https://api.github.com/users/sns-seb/gists{/gist_id}", + "starred_url": "https://api.github.com/users/sns-seb/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/sns-seb/subscriptions", + "organizations_url": "https://api.github.com/users/sns-seb/orgs", + "repos_url": "https://api.github.com/users/sns-seb/repos", + "events_url": "https://api.github.com/users/sns-seb/events{/privacy}", + "received_events_url": "https://api.github.com/users/sns-seb/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2018-01-08T14:40:23Z", + "updated_at": "2018-01-13T18:03:19Z", + "closed_at": "2018-01-13T18:03:19Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/406", + "html_url": "https://github.com/github-api/github-api/pull/406", + "diff_url": "https://github.com/github-api/github-api/pull/406.diff", + "patch_url": "https://github.com/github-api/github-api/pull/406.patch" + }, + "body": "At SonarSource, we have been using the Github API library for a while.\r\n\r\nUnfortunately to implement new features in SonarQube, we hit some limitations.\r\n\r\nSupport for Pull Request reviews is out of date. Only support for beta has been done, and things changed a bit when the feature got public:\r\n\r\n- review state and review event flag actually do not have the same values\r\n- the beta header are now useless\r\n- new review can now be posted in a single API call\r\n\r\nPull Request comment support has some limitations and bugs:\r\n\r\n- original_position field of review comments isn't parsed\r\n- a comment's position can actually be null, this indicates an out-of-date comment\r\n- the ability to create a reply hasn't been implemented yet\r\n\r\nSo we added it to an internal fork and are contributing it back to the community.\r\n\r\nUnit test coverage of the changes are far from SonarSource's standard, but we mostly failed at making existing unit tests run (mostly by a lack of the right Github credentials, it seems) so we barely added any new one.\r\n\r\nIf you have any direction to provide in order to successfully run the existing UTs, we will be happy to provide UT coverage on our new code.\r\n\r\nIn the mean time, rest assured that the new code has been field tested.\r\n\r\nPlease let us know if the contribution is acceptable in the shape below. We will be happy to drop our internal fork in favor of the original library when the changes are merged.\r\n\r\nCheers,\r\n \r\n " + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/405", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/405/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/405/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/405/events", + "html_url": "https://github.com/github-api/github-api/issues/405", + "id": 286270804, + "node_id": "MDU6SXNzdWUyODYyNzA4MDQ=", + "number": 405, + "title": "How to authenticate using oauth in code?", + "user": { + "login": "lukas2005", + "id": 13919176, + "node_id": "MDQ6VXNlcjEzOTE5MTc2", + "avatar_url": "https://avatars0.githubusercontent.com/u/13919176?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/lukas2005", + "html_url": "https://github.com/lukas2005", + "followers_url": "https://api.github.com/users/lukas2005/followers", + "following_url": "https://api.github.com/users/lukas2005/following{/other_user}", + "gists_url": "https://api.github.com/users/lukas2005/gists{/gist_id}", + "starred_url": "https://api.github.com/users/lukas2005/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/lukas2005/subscriptions", + "organizations_url": "https://api.github.com/users/lukas2005/orgs", + "repos_url": "https://api.github.com/users/lukas2005/repos", + "events_url": "https://api.github.com/users/lukas2005/events{/privacy}", + "received_events_url": "https://api.github.com/users/lukas2005/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2018-01-05T12:03:59Z", + "updated_at": "2018-01-13T05:27:45Z", + "closed_at": "2018-01-13T05:27:44Z", + "author_association": "NONE", + "body": "Hello I have 2fa auth enabled on my acc and because of that I need to auth using oauth (and I'd also like for the creds to be hard coded but I wont do that with my pass). This is what I have tried to do that:\r\n```java\r\n GitHub github = new GitHubBuilder().withOAuthToken(\"TOKEN\", \"EMAIL\").build();\r\n```\r\nbut it just thrown an error.\r\nPlease help\r\n\r\nEDIT:\r\nanother question:\r\nis it possible to auth using client secret and id? (https://developer.github.com/v3/#increasing-the-unauthenticated-rate-limit-for-oauth-applications)\r\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/404", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/404/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/404/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/404/events", + "html_url": "https://github.com/github-api/github-api/issues/404", + "id": 280136951, + "node_id": "MDU6SXNzdWUyODAxMzY5NTE=", + "number": 404, + "title": "It is possible to read a github project wiki ?", + "user": { + "login": "albertotn", + "id": 12526457, + "node_id": "MDQ6VXNlcjEyNTI2NDU3", + "avatar_url": "https://avatars3.githubusercontent.com/u/12526457?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/albertotn", + "html_url": "https://github.com/albertotn", + "followers_url": "https://api.github.com/users/albertotn/followers", + "following_url": "https://api.github.com/users/albertotn/following{/other_user}", + "gists_url": "https://api.github.com/users/albertotn/gists{/gist_id}", + "starred_url": "https://api.github.com/users/albertotn/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/albertotn/subscriptions", + "organizations_url": "https://api.github.com/users/albertotn/orgs", + "repos_url": "https://api.github.com/users/albertotn/repos", + "events_url": "https://api.github.com/users/albertotn/events{/privacy}", + "received_events_url": "https://api.github.com/users/albertotn/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2017-12-07T13:51:25Z", + "updated_at": "2018-01-13T05:27:52Z", + "closed_at": "2018-01-13T05:27:52Z", + "author_association": "NONE", + "body": "I don't find any documentation or example on that, there is a way to do it ?" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/__files/repositories_617210_issues-7d74dc71-0c93-4a0a-8f8e-c6a71027b219.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/__files/repositories_617210_issues-7d74dc71-0c93-4a0a-8f8e-c6a71027b219.json new file mode 100644 index 0000000000..610d00d021 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/__files/repositories_617210_issues-7d74dc71-0c93-4a0a-8f8e-c6a71027b219.json @@ -0,0 +1,1448 @@ +[ + { + "url": "https://api.github.com/repos/github-api/github-api/issues/52", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/52/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/52/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/52/events", + "html_url": "https://github.com/github-api/github-api/issues/52", + "id": 22112442, + "node_id": "MDU6SXNzdWUyMjExMjQ0Mg==", + "number": 52, + "title": "GHUser is missing a getHTMLURL() method", + "user": { + "login": "vmassol", + "id": 628267, + "node_id": "MDQ6VXNlcjYyODI2Nw==", + "avatar_url": "https://avatars3.githubusercontent.com/u/628267?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vmassol", + "html_url": "https://github.com/vmassol", + "followers_url": "https://api.github.com/users/vmassol/followers", + "following_url": "https://api.github.com/users/vmassol/following{/other_user}", + "gists_url": "https://api.github.com/users/vmassol/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vmassol/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vmassol/subscriptions", + "organizations_url": "https://api.github.com/users/vmassol/orgs", + "repos_url": "https://api.github.com/users/vmassol/repos", + "events_url": "https://api.github.com/users/vmassol/events{/privacy}", + "received_events_url": "https://api.github.com/users/vmassol/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2013-11-05T10:57:48Z", + "updated_at": "2014-05-10T20:34:25Z", + "closed_at": "2014-05-10T20:26:51Z", + "author_association": "NONE", + "body": "I'm using version 1.44 and in the code there's\n\n```\nprotected String html_url;\n```\n\nBut it doesn't seem to get populated and there's no getter method..\n\nThe GitHub API does return it though. For example: api.github.com/users/vmassol\n\nThanks\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/51", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/51/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/51/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/51/events", + "html_url": "https://github.com/github-api/github-api/pull/51", + "id": 22092496, + "node_id": "MDExOlB1bGxSZXF1ZXN0OTY2NDY4NQ==", + "number": 51, + "title": "add support (most of) the release-related endpoints", + "user": { + "login": "evanchooly", + "id": 195021, + "node_id": "MDQ6VXNlcjE5NTAyMQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/195021?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/evanchooly", + "html_url": "https://github.com/evanchooly", + "followers_url": "https://api.github.com/users/evanchooly/followers", + "following_url": "https://api.github.com/users/evanchooly/following{/other_user}", + "gists_url": "https://api.github.com/users/evanchooly/gists{/gist_id}", + "starred_url": "https://api.github.com/users/evanchooly/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/evanchooly/subscriptions", + "organizations_url": "https://api.github.com/users/evanchooly/orgs", + "repos_url": "https://api.github.com/users/evanchooly/repos", + "events_url": "https://api.github.com/users/evanchooly/events{/privacy}", + "received_events_url": "https://api.github.com/users/evanchooly/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2013-11-05T01:09:15Z", + "updated_at": "2014-06-16T23:16:44Z", + "closed_at": "2013-11-09T23:17:30Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/51", + "html_url": "https://github.com/github-api/github-api/pull/51", + "diff_url": "https://github.com/github-api/github-api/pull/51.diff", + "patch_url": "https://github.com/github-api/github-api/pull/51.patch" + }, + "body": "" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/50", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/50/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/50/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/50/events", + "html_url": "https://github.com/github-api/github-api/pull/50", + "id": 20215869, + "node_id": "MDExOlB1bGxSZXF1ZXN0ODY4NDYzMQ==", + "number": 50, + "title": "Updates Jackson to 2.2.3", + "user": { + "login": "pescuma", + "id": 207971, + "node_id": "MDQ6VXNlcjIwNzk3MQ==", + "avatar_url": "https://avatars0.githubusercontent.com/u/207971?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/pescuma", + "html_url": "https://github.com/pescuma", + "followers_url": "https://api.github.com/users/pescuma/followers", + "following_url": "https://api.github.com/users/pescuma/following{/other_user}", + "gists_url": "https://api.github.com/users/pescuma/gists{/gist_id}", + "starred_url": "https://api.github.com/users/pescuma/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/pescuma/subscriptions", + "organizations_url": "https://api.github.com/users/pescuma/orgs", + "repos_url": "https://api.github.com/users/pescuma/repos", + "events_url": "https://api.github.com/users/pescuma/events{/privacy}", + "received_events_url": "https://api.github.com/users/pescuma/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2013-09-28T17:36:07Z", + "updated_at": "2014-07-01T17:26:16Z", + "closed_at": "2013-10-02T15:31:42Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/50", + "html_url": "https://github.com/github-api/github-api/pull/50", + "diff_url": "https://github.com/github-api/github-api/pull/50.diff", + "patch_url": "https://github.com/github-api/github-api/pull/50.patch" + }, + "body": "This also depends on my other pull request that corrects the handling of labels.\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/49", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/49/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/49/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/49/events", + "html_url": "https://github.com/github-api/github-api/pull/49", + "id": 20215816, + "node_id": "MDExOlB1bGxSZXF1ZXN0ODY4NDYyMg==", + "number": 49, + "title": "Use a proper Label in GHIssues", + "user": { + "login": "pescuma", + "id": 207971, + "node_id": "MDQ6VXNlcjIwNzk3MQ==", + "avatar_url": "https://avatars0.githubusercontent.com/u/207971?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/pescuma", + "html_url": "https://github.com/pescuma", + "followers_url": "https://api.github.com/users/pescuma/followers", + "following_url": "https://api.github.com/users/pescuma/following{/other_user}", + "gists_url": "https://api.github.com/users/pescuma/gists{/gist_id}", + "starred_url": "https://api.github.com/users/pescuma/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/pescuma/subscriptions", + "organizations_url": "https://api.github.com/users/pescuma/orgs", + "repos_url": "https://api.github.com/users/pescuma/repos", + "events_url": "https://api.github.com/users/pescuma/events{/privacy}", + "received_events_url": "https://api.github.com/users/pescuma/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2013-09-28T17:34:50Z", + "updated_at": "2014-06-12T14:05:52Z", + "closed_at": "2013-10-02T15:31:43Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/49", + "html_url": "https://github.com/github-api/github-api/pull/49", + "diff_url": "https://github.com/github-api/github-api/pull/49.diff", + "patch_url": "https://github.com/github-api/github-api/pull/49.patch" + }, + "body": "The label isn't just a text, it's a json object with 3 fields:\n\n```\n \"labels\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"color\": \"f29513\"\n }\n ],\n```\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/48", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/48/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/48/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/48/events", + "html_url": "https://github.com/github-api/github-api/issues/48", + "id": 20204963, + "node_id": "MDU6SXNzdWUyMDIwNDk2Mw==", + "number": 48, + "title": "Issue labels have multiple fields now", + "user": { + "login": "pescuma", + "id": 207971, + "node_id": "MDQ6VXNlcjIwNzk3MQ==", + "avatar_url": "https://avatars0.githubusercontent.com/u/207971?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/pescuma", + "html_url": "https://github.com/pescuma", + "followers_url": "https://api.github.com/users/pescuma/followers", + "following_url": "https://api.github.com/users/pescuma/following{/other_user}", + "gists_url": "https://api.github.com/users/pescuma/gists{/gist_id}", + "starred_url": "https://api.github.com/users/pescuma/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/pescuma/subscriptions", + "organizations_url": "https://api.github.com/users/pescuma/orgs", + "repos_url": "https://api.github.com/users/pescuma/repos", + "events_url": "https://api.github.com/users/pescuma/events{/privacy}", + "received_events_url": "https://api.github.com/users/pescuma/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2013-09-28T02:43:04Z", + "updated_at": "2013-10-02T22:12:56Z", + "closed_at": "2013-10-02T22:12:56Z", + "author_association": "CONTRIBUTOR", + "body": "And calling `GHIssue.getLabels()` returns a list with a lot of pieces of the json text.\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/46", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/46/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/46/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/46/events", + "html_url": "https://github.com/github-api/github-api/issues/46", + "id": 19738846, + "node_id": "MDU6SXNzdWUxOTczODg0Ng==", + "number": 46, + "title": "Implement Contents API", + "user": { + "login": "acollign", + "id": 206320, + "node_id": "MDQ6VXNlcjIwNjMyMA==", + "avatar_url": "https://avatars3.githubusercontent.com/u/206320?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/acollign", + "html_url": "https://github.com/acollign", + "followers_url": "https://api.github.com/users/acollign/followers", + "following_url": "https://api.github.com/users/acollign/following{/other_user}", + "gists_url": "https://api.github.com/users/acollign/gists{/gist_id}", + "starred_url": "https://api.github.com/users/acollign/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/acollign/subscriptions", + "organizations_url": "https://api.github.com/users/acollign/orgs", + "repos_url": "https://api.github.com/users/acollign/repos", + "events_url": "https://api.github.com/users/acollign/events{/privacy}", + "received_events_url": "https://api.github.com/users/acollign/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 4, + "created_at": "2013-09-19T08:21:13Z", + "updated_at": "2014-01-02T18:32:44Z", + "closed_at": "2014-01-01T23:26:23Z", + "author_association": "CONTRIBUTOR", + "body": "GitHub provides a Contents API [0]. I started to implement those methods and domain objects in the contents-api branch of my fork [1]. I'll create a pull-request once I consider my work mergeable.\n\nbtw, feel free to comment commits. Feedback are always welcome.\n\n[0] http://developer.github.com/v3/repos/contents/\n[1] https://github.com/acollign/github-api/tree/contents-api\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/45", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/45/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/45/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/45/events", + "html_url": "https://github.com/github-api/github-api/pull/45", + "id": 19529050, + "node_id": "MDExOlB1bGxSZXF1ZXN0ODM0MDU5NA==", + "number": 45, + "title": "Allows to define page size for repository lists and other API enhancements", + "user": { + "login": "lucamilanesio", + "id": 182893, + "node_id": "MDQ6VXNlcjE4Mjg5Mw==", + "avatar_url": "https://avatars3.githubusercontent.com/u/182893?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/lucamilanesio", + "html_url": "https://github.com/lucamilanesio", + "followers_url": "https://api.github.com/users/lucamilanesio/followers", + "following_url": "https://api.github.com/users/lucamilanesio/following{/other_user}", + "gists_url": "https://api.github.com/users/lucamilanesio/gists{/gist_id}", + "starred_url": "https://api.github.com/users/lucamilanesio/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/lucamilanesio/subscriptions", + "organizations_url": "https://api.github.com/users/lucamilanesio/orgs", + "repos_url": "https://api.github.com/users/lucamilanesio/repos", + "events_url": "https://api.github.com/users/lucamilanesio/events{/privacy}", + "received_events_url": "https://api.github.com/users/lucamilanesio/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 5, + "created_at": "2013-09-15T23:43:16Z", + "updated_at": "2014-07-01T17:26:16Z", + "closed_at": "2013-11-03T01:15:56Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/45", + "html_url": "https://github.com/github-api/github-api/pull/45", + "diff_url": "https://github.com/github-api/github-api/pull/45.diff", + "patch_url": "https://github.com/github-api/github-api/pull/45.patch" + }, + "body": "Extension of the listRepositories() with the desired\npageSize. This allows to reduce the number of calls\nto GitHub API for fetching the entire set of repositories\nbrowsing all the pages.\n\nAdditionally allows to match the UX paging with the\nunderlying GitHub API paging, increasing performance\nand reducing hourly API allowance.\n\nLast addition was on the GitHub PullRequest object:\nallows to get the associated commits with their\ndetails (which is unfortunately NOT a GHCommit object)\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/44", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/44/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/44/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/44/events", + "html_url": "https://github.com/github-api/github-api/pull/44", + "id": 18730896, + "node_id": "MDExOlB1bGxSZXF1ZXN0Nzk1MjgyOA==", + "number": 44, + "title": "Provide a way to determine if the connection is anonymous", + "user": { + "login": "stephenc", + "id": 209336, + "node_id": "MDQ6VXNlcjIwOTMzNg==", + "avatar_url": "https://avatars2.githubusercontent.com/u/209336?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/stephenc", + "html_url": "https://github.com/stephenc", + "followers_url": "https://api.github.com/users/stephenc/followers", + "following_url": "https://api.github.com/users/stephenc/following{/other_user}", + "gists_url": "https://api.github.com/users/stephenc/gists{/gist_id}", + "starred_url": "https://api.github.com/users/stephenc/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/stephenc/subscriptions", + "organizations_url": "https://api.github.com/users/stephenc/orgs", + "repos_url": "https://api.github.com/users/stephenc/repos", + "events_url": "https://api.github.com/users/stephenc/events{/privacy}", + "received_events_url": "https://api.github.com/users/stephenc/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2013-08-29T13:33:45Z", + "updated_at": "2017-11-01T15:50:23Z", + "closed_at": "2013-09-07T12:18:30Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/44", + "html_url": "https://github.com/github-api/github-api/pull/44", + "diff_url": "https://github.com/github-api/github-api/pull/44.diff", + "patch_url": "https://github.com/github-api/github-api/pull/44.patch" + }, + "body": "" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/43", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/43/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/43/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/43/events", + "html_url": "https://github.com/github-api/github-api/pull/43", + "id": 18730738, + "node_id": "MDExOlB1bGxSZXF1ZXN0Nzk1Mjc0Ng==", + "number": 43, + "title": "GHMyself should allow accessing the private repos and orgs too", + "user": { + "login": "stephenc", + "id": 209336, + "node_id": "MDQ6VXNlcjIwOTMzNg==", + "avatar_url": "https://avatars2.githubusercontent.com/u/209336?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/stephenc", + "html_url": "https://github.com/stephenc", + "followers_url": "https://api.github.com/users/stephenc/followers", + "following_url": "https://api.github.com/users/stephenc/following{/other_user}", + "gists_url": "https://api.github.com/users/stephenc/gists{/gist_id}", + "starred_url": "https://api.github.com/users/stephenc/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/stephenc/subscriptions", + "organizations_url": "https://api.github.com/users/stephenc/orgs", + "repos_url": "https://api.github.com/users/stephenc/repos", + "events_url": "https://api.github.com/users/stephenc/events{/privacy}", + "received_events_url": "https://api.github.com/users/stephenc/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2013-08-29T13:30:25Z", + "updated_at": "2014-07-01T17:26:17Z", + "closed_at": "2013-09-07T12:18:01Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/43", + "html_url": "https://github.com/github-api/github-api/pull/43", + "diff_url": "https://github.com/github-api/github-api/pull/43.diff", + "patch_url": "https://github.com/github-api/github-api/pull/43.patch" + }, + "body": "" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/42", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/42/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/42/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/42/events", + "html_url": "https://github.com/github-api/github-api/pull/42", + "id": 18180686, + "node_id": "MDExOlB1bGxSZXF1ZXN0NzY3MjA0NQ==", + "number": 42, + "title": "Commit's short info model", + "user": { + "login": "paulbutenko", + "id": 5246804, + "node_id": "MDQ6VXNlcjUyNDY4MDQ=", + "avatar_url": "https://avatars0.githubusercontent.com/u/5246804?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/paulbutenko", + "html_url": "https://github.com/paulbutenko", + "followers_url": "https://api.github.com/users/paulbutenko/followers", + "following_url": "https://api.github.com/users/paulbutenko/following{/other_user}", + "gists_url": "https://api.github.com/users/paulbutenko/gists{/gist_id}", + "starred_url": "https://api.github.com/users/paulbutenko/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/paulbutenko/subscriptions", + "organizations_url": "https://api.github.com/users/paulbutenko/orgs", + "repos_url": "https://api.github.com/users/paulbutenko/repos", + "events_url": "https://api.github.com/users/paulbutenko/events{/privacy}", + "received_events_url": "https://api.github.com/users/paulbutenko/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2013-08-16T21:51:57Z", + "updated_at": "2014-07-01T17:26:17Z", + "closed_at": "2013-09-07T12:25:59Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/42", + "html_url": "https://github.com/github-api/github-api/pull/42", + "diff_url": "https://github.com/github-api/github-api/pull/42.diff", + "patch_url": "https://github.com/github-api/github-api/pull/42.patch" + }, + "body": "Github api returns commit info in this way:\n{\n \"sha\": \"c77360d6f2ff2c2e6dd11828ad5dccf72419fa1b\",\n \"commit\": {\n \"author\": {\n \"name\": \"Kohsuke Kawaguchi\",\n \"email\": \"kk@kohsuke.org\",\n \"date\": \"2012-04-11T16:23:37Z\"\n },\n \"committer\": {\n \"name\": \"Kohsuke Kawaguchi\",\n \"email\": \"kk@kohsuke.org\",\n \"date\": \"2012-04-11T16:23:37Z\"\n },\n \"message\": \"Added a file\",\n \"tree\": {\n \"sha\": \"496d6428b9cf92981dc9495211e6e1120fb6f2ba\",\n \"url\": \"https://api.github.com/repos/kohsuke/test/git/trees/496d6428b9cf92981dc9495211e6e1120fb6f2ba\"\n },\n \"url\": \"https://api.github.com/repos/kohsuke/test/git/commits/c77360d6f2ff2c2e6dd11828ad5dccf72419fa1b\",\n \"comment_count\": 0\n }, ...\n\ngithub-api updated wuth necessary models in order to wrap new info\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/41", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/41/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/41/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/41/events", + "html_url": "https://github.com/github-api/github-api/issues/41", + "id": 17685852, + "node_id": "MDU6SXNzdWUxNzY4NTg1Mg==", + "number": 41, + "title": "getMergeableState in GHPullRequest doesn't work", + "user": { + "login": "Memphiz", + "id": 701326, + "node_id": "MDQ6VXNlcjcwMTMyNg==", + "avatar_url": "https://avatars2.githubusercontent.com/u/701326?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Memphiz", + "html_url": "https://github.com/Memphiz", + "followers_url": "https://api.github.com/users/Memphiz/followers", + "following_url": "https://api.github.com/users/Memphiz/following{/other_user}", + "gists_url": "https://api.github.com/users/Memphiz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Memphiz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Memphiz/subscriptions", + "organizations_url": "https://api.github.com/users/Memphiz/orgs", + "repos_url": "https://api.github.com/users/Memphiz/repos", + "events_url": "https://api.github.com/users/Memphiz/events{/privacy}", + "received_events_url": "https://api.github.com/users/Memphiz/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2013-08-06T11:53:57Z", + "updated_at": "2013-08-07T13:33:25Z", + "closed_at": "2013-08-07T13:33:25Z", + "author_association": "NONE", + "body": "Hi there,\n\nit seems that the GHPullRequest.getMergeableState method doesn't work in current implementation. At least when i use the jenkins ghprb (github pull request builder plugin) it always builds the unmerged branch only because off the method returing false (though the pr is mergeable as confirmed in the github webinterface).\n\nBased on the github api v3 the needed field is called \"mergeable\" (and a boolean).\n\nIt seems that \"populate\" doesn't fill in the \"mergeable_state\" member. Though i didn't find the code where it really fills in the object members.\n\nAlso it looks like in GHPullRequest.populate() the call to root.retrieve().to(url, this); is issued with an empty url object. At least i didn't spot where the url member (its a member of the parent class GHIssue) is initialised.\n\nWould be great if you could comment on that one :o)\n\nthx\n\nMemphiz\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/40", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/40/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/40/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/40/events", + "html_url": "https://github.com/github-api/github-api/issues/40", + "id": 17506321, + "node_id": "MDU6SXNzdWUxNzUwNjMyMQ==", + "number": 40, + "title": "[Feature Request] get tags", + "user": { + "login": "dMitin", + "id": 1221847, + "node_id": "MDQ6VXNlcjEyMjE4NDc=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1221847?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dMitin", + "html_url": "https://github.com/dMitin", + "followers_url": "https://api.github.com/users/dMitin/followers", + "following_url": "https://api.github.com/users/dMitin/following{/other_user}", + "gists_url": "https://api.github.com/users/dMitin/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dMitin/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dMitin/subscriptions", + "organizations_url": "https://api.github.com/users/dMitin/orgs", + "repos_url": "https://api.github.com/users/dMitin/repos", + "events_url": "https://api.github.com/users/dMitin/events{/privacy}", + "received_events_url": "https://api.github.com/users/dMitin/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2013-08-01T13:13:34Z", + "updated_at": "2014-05-10T21:14:13Z", + "closed_at": "2014-05-10T21:14:13Z", + "author_association": "NONE", + "body": "Hi!\nCan you add to project function to get tags of github repository?\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/39", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/39/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/39/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/39/events", + "html_url": "https://github.com/github-api/github-api/issues/39", + "id": 14877909, + "node_id": "MDU6SXNzdWUxNDg3NzkwOQ==", + "number": 39, + "title": "GitHub.connectAnonymously() fails because of a lack of credentials.", + "user": { + "login": "Omertron", + "id": 1432853, + "node_id": "MDQ6VXNlcjE0MzI4NTM=", + "avatar_url": "https://avatars1.githubusercontent.com/u/1432853?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Omertron", + "html_url": "https://github.com/Omertron", + "followers_url": "https://api.github.com/users/Omertron/followers", + "following_url": "https://api.github.com/users/Omertron/following{/other_user}", + "gists_url": "https://api.github.com/users/Omertron/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Omertron/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Omertron/subscriptions", + "organizations_url": "https://api.github.com/users/Omertron/orgs", + "repos_url": "https://api.github.com/users/Omertron/repos", + "events_url": "https://api.github.com/users/Omertron/events{/privacy}", + "received_events_url": "https://api.github.com/users/Omertron/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2013-05-29T08:01:03Z", + "updated_at": "2014-05-10T21:15:15Z", + "closed_at": "2014-05-10T21:15:15Z", + "author_association": "NONE", + "body": "Using the following line:\n\n> GitHub github = GitHub.connectAnonymously();\n\nGenerates:\nException in thread \"main\" java.lang.IllegalStateException: This operation requires a credential but none is given to the GitHub constructor\n at org.kohsuke.github.GitHub.requireCredential(GitHub.java:197)\n at org.kohsuke.github.GitHub.getMyself(GitHub.java:228)\n at org.kohsuke.github.GitHub.(GitHub.java:127)\n at org.kohsuke.github.GitHub.(GitHub.java:74)\n at org.kohsuke.github.GitHub.connectAnonymously(GitHub.java:192)\n at com.omertron.githubtest.GitHubTest.(GitHubTest.java:16)\n at com.omertron.githubtest.App.main(App.java:8)\n\nNote: I do not have a \".github\" file in my user directory (nor do I want one, I just want to be able to access github anon from my code)\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/38", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/38/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/38/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/38/events", + "html_url": "https://github.com/github-api/github-api/pull/38", + "id": 13898390, + "node_id": "MDExOlB1bGxSZXF1ZXN0NTQ5NjUzNw==", + "number": 38, + "title": "add repository to Pull Request payload and wrap the PR with the repository", + "user": { + "login": "janinko", + "id": 644267, + "node_id": "MDQ6VXNlcjY0NDI2Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/644267?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/janinko", + "html_url": "https://github.com/janinko", + "followers_url": "https://api.github.com/users/janinko/followers", + "following_url": "https://api.github.com/users/janinko/following{/other_user}", + "gists_url": "https://api.github.com/users/janinko/gists{/gist_id}", + "starred_url": "https://api.github.com/users/janinko/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/janinko/subscriptions", + "organizations_url": "https://api.github.com/users/janinko/orgs", + "repos_url": "https://api.github.com/users/janinko/repos", + "events_url": "https://api.github.com/users/janinko/events{/privacy}", + "received_events_url": "https://api.github.com/users/janinko/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2013-05-02T16:13:51Z", + "updated_at": "2014-07-01T17:26:17Z", + "closed_at": "2013-05-06T21:32:11Z", + "author_association": "COLLABORATOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/38", + "html_url": "https://github.com/github-api/github-api/pull/38", + "diff_url": "https://github.com/github-api/github-api/pull/38.diff", + "patch_url": "https://github.com/github-api/github-api/pull/38.patch" + }, + "body": "" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/37", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/37/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/37/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/37/events", + "html_url": "https://github.com/github-api/github-api/pull/37", + "id": 13864794, + "node_id": "MDExOlB1bGxSZXF1ZXN0NTQ3ODkwMQ==", + "number": 37, + "title": "Force issues-based API route for PR comments", + "user": { + "login": "spiffxp", + "id": 49258, + "node_id": "MDQ6VXNlcjQ5MjU4", + "avatar_url": "https://avatars2.githubusercontent.com/u/49258?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/spiffxp", + "html_url": "https://github.com/spiffxp", + "followers_url": "https://api.github.com/users/spiffxp/followers", + "following_url": "https://api.github.com/users/spiffxp/following{/other_user}", + "gists_url": "https://api.github.com/users/spiffxp/gists{/gist_id}", + "starred_url": "https://api.github.com/users/spiffxp/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/spiffxp/subscriptions", + "organizations_url": "https://api.github.com/users/spiffxp/orgs", + "repos_url": "https://api.github.com/users/spiffxp/repos", + "events_url": "https://api.github.com/users/spiffxp/events{/privacy}", + "received_events_url": "https://api.github.com/users/spiffxp/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2013-05-01T20:33:10Z", + "updated_at": "2014-06-14T22:49:22Z", + "closed_at": "2013-05-06T21:33:29Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/37", + "html_url": "https://github.com/github-api/github-api/pull/37", + "diff_url": "https://github.com/github-api/github-api/pull/37.diff", + "patch_url": "https://github.com/github-api/github-api/pull/37.patch" + }, + "body": "beec605 caused `GHPullRequest.getComments()` to hit `pulls/:number/comments`, which correponds to inline review comments instead of regular issue comments\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/36", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/36/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/36/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/36/events", + "html_url": "https://github.com/github-api/github-api/pull/36", + "id": 13830885, + "node_id": "MDExOlB1bGxSZXF1ZXN0NTQ2MTY0MQ==", + "number": 36, + "title": "Allow oauthToken to be used without login", + "user": { + "login": "spiffxp", + "id": 49258, + "node_id": "MDQ6VXNlcjQ5MjU4", + "avatar_url": "https://avatars2.githubusercontent.com/u/49258?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/spiffxp", + "html_url": "https://github.com/spiffxp", + "followers_url": "https://api.github.com/users/spiffxp/followers", + "following_url": "https://api.github.com/users/spiffxp/following{/other_user}", + "gists_url": "https://api.github.com/users/spiffxp/gists{/gist_id}", + "starred_url": "https://api.github.com/users/spiffxp/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/spiffxp/subscriptions", + "organizations_url": "https://api.github.com/users/spiffxp/orgs", + "repos_url": "https://api.github.com/users/spiffxp/repos", + "events_url": "https://api.github.com/users/spiffxp/events{/privacy}", + "received_events_url": "https://api.github.com/users/spiffxp/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2013-04-30T22:42:04Z", + "updated_at": "2014-07-01T17:26:18Z", + "closed_at": "2013-05-06T21:34:06Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/36", + "html_url": "https://github.com/github-api/github-api/pull/36", + "diff_url": "https://github.com/github-api/github-api/pull/36.diff", + "patch_url": "https://github.com/github-api/github-api/pull/36.patch" + }, + "body": null + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/35", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/35/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/35/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/35/events", + "html_url": "https://github.com/github-api/github-api/pull/35", + "id": 13538659, + "node_id": "MDExOlB1bGxSZXF1ZXN0NTMxODc3Mg==", + "number": 35, + "title": "#34 use github v3 API, getting pulls using 'pulls' instead of 'issues'", + "user": { + "login": "mdelapenya", + "id": 951580, + "node_id": "MDQ6VXNlcjk1MTU4MA==", + "avatar_url": "https://avatars2.githubusercontent.com/u/951580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mdelapenya", + "html_url": "https://github.com/mdelapenya", + "followers_url": "https://api.github.com/users/mdelapenya/followers", + "following_url": "https://api.github.com/users/mdelapenya/following{/other_user}", + "gists_url": "https://api.github.com/users/mdelapenya/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mdelapenya/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mdelapenya/subscriptions", + "organizations_url": "https://api.github.com/users/mdelapenya/orgs", + "repos_url": "https://api.github.com/users/mdelapenya/repos", + "events_url": "https://api.github.com/users/mdelapenya/events{/privacy}", + "received_events_url": "https://api.github.com/users/mdelapenya/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2013-04-23T14:59:08Z", + "updated_at": "2014-07-01T17:26:18Z", + "closed_at": "2013-04-23T16:29:41Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/35", + "html_url": "https://github.com/github-api/github-api/pull/35", + "diff_url": "https://github.com/github-api/github-api/pull/35.diff", + "patch_url": "https://github.com/github-api/github-api/pull/35.patch" + }, + "body": "Please review my changes\n\nThanks!\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/34", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/34/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/34/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/34/events", + "html_url": "https://github.com/github-api/github-api/issues/34", + "id": 13538471, + "node_id": "MDU6SXNzdWUxMzUzODQ3MQ==", + "number": 34, + "title": "Closing pull request using Github API return FileNotFoundException", + "user": { + "login": "mdelapenya", + "id": 951580, + "node_id": "MDQ6VXNlcjk1MTU4MA==", + "avatar_url": "https://avatars2.githubusercontent.com/u/951580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mdelapenya", + "html_url": "https://github.com/mdelapenya", + "followers_url": "https://api.github.com/users/mdelapenya/followers", + "following_url": "https://api.github.com/users/mdelapenya/following{/other_user}", + "gists_url": "https://api.github.com/users/mdelapenya/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mdelapenya/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mdelapenya/subscriptions", + "organizations_url": "https://api.github.com/users/mdelapenya/orgs", + "repos_url": "https://api.github.com/users/mdelapenya/repos", + "events_url": "https://api.github.com/users/mdelapenya/events{/privacy}", + "received_events_url": "https://api.github.com/users/mdelapenya/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2013-04-23T14:55:44Z", + "updated_at": "2013-04-23T16:48:31Z", + "closed_at": "2013-04-23T16:29:12Z", + "author_association": "NONE", + "body": "Using ghprb plugin, we have discovered that closing pull request is not working:\n\nSEVERE: Couldn't close the pullrequest #10582: '\njava.io.FileNotFoundException: https://api.github.com/repos/USER/REPO/issues/10582\n\nAs Github API says, pull requests must be accesed in this way:\n\nGET /repos/:owner/:repo/pulls/:number\n\nUsing pulls intead of issues.\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/33", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/33/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/33/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/33/events", + "html_url": "https://github.com/github-api/github-api/pull/33", + "id": 13425473, + "node_id": "MDExOlB1bGxSZXF1ZXN0NTI3MTc5Mw==", + "number": 33, + "title": "Stop using deprecated API tokens for Enterprise", + "user": { + "login": "watsonian", + "id": 244, + "node_id": "MDQ6VXNlcjI0NA==", + "avatar_url": "https://avatars3.githubusercontent.com/u/244?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/watsonian", + "html_url": "https://github.com/watsonian", + "followers_url": "https://api.github.com/users/watsonian/followers", + "following_url": "https://api.github.com/users/watsonian/following{/other_user}", + "gists_url": "https://api.github.com/users/watsonian/gists{/gist_id}", + "starred_url": "https://api.github.com/users/watsonian/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/watsonian/subscriptions", + "organizations_url": "https://api.github.com/users/watsonian/orgs", + "repos_url": "https://api.github.com/users/watsonian/repos", + "events_url": "https://api.github.com/users/watsonian/events{/privacy}", + "received_events_url": "https://api.github.com/users/watsonian/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 4, + "created_at": "2013-04-19T23:32:47Z", + "updated_at": "2017-10-24T20:44:54Z", + "closed_at": "2013-04-23T17:29:05Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/33", + "html_url": "https://github.com/github-api/github-api/pull/33", + "diff_url": "https://github.com/github-api/github-api/pull/33.diff", + "patch_url": "https://github.com/github-api/github-api/pull/33.patch" + }, + "body": "Authentication by API token is deprecated and doesn't work anymore. Instead, authentication should be done via OAuth token now. This is causing the GitHub plugin to fail when trying to setup Jenkins to auto-manage web hooks and will just be breaking in general for anyone trying to use this with Enterprise.\n\nI'm not much of a Java guy, so I'd appreciate a look over this to make sure it works.\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/32", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/32/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/32/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/32/events", + "html_url": "https://github.com/github-api/github-api/pull/32", + "id": 13167366, + "node_id": "MDExOlB1bGxSZXF1ZXN0NTE0OTY5OA==", + "number": 32, + "title": "Implement GHEventPayload.IssueComment", + "user": { + "login": "janinko", + "id": 644267, + "node_id": "MDQ6VXNlcjY0NDI2Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/644267?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/janinko", + "html_url": "https://github.com/janinko", + "followers_url": "https://api.github.com/users/janinko/followers", + "following_url": "https://api.github.com/users/janinko/following{/other_user}", + "gists_url": "https://api.github.com/users/janinko/gists{/gist_id}", + "starred_url": "https://api.github.com/users/janinko/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/janinko/subscriptions", + "organizations_url": "https://api.github.com/users/janinko/orgs", + "repos_url": "https://api.github.com/users/janinko/repos", + "events_url": "https://api.github.com/users/janinko/events{/privacy}", + "received_events_url": "https://api.github.com/users/janinko/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2013-04-14T03:53:29Z", + "updated_at": "2014-07-01T17:26:19Z", + "closed_at": "2013-04-16T19:19:59Z", + "author_association": "COLLABORATOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/32", + "html_url": "https://github.com/github-api/github-api/pull/32", + "diff_url": "https://github.com/github-api/github-api/pull/32.diff", + "patch_url": "https://github.com/github-api/github-api/pull/32.patch" + }, + "body": "http://developer.github.com/v3/activity/events/types/#issuecommentevent\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/31", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/31/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/31/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/31/events", + "html_url": "https://github.com/github-api/github-api/pull/31", + "id": 13167355, + "node_id": "MDExOlB1bGxSZXF1ZXN0NTE0OTY5Ng==", + "number": 31, + "title": "implement retrieving of access token", + "user": { + "login": "janinko", + "id": 644267, + "node_id": "MDQ6VXNlcjY0NDI2Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/644267?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/janinko", + "html_url": "https://github.com/janinko", + "followers_url": "https://api.github.com/users/janinko/followers", + "following_url": "https://api.github.com/users/janinko/following{/other_user}", + "gists_url": "https://api.github.com/users/janinko/gists{/gist_id}", + "starred_url": "https://api.github.com/users/janinko/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/janinko/subscriptions", + "organizations_url": "https://api.github.com/users/janinko/orgs", + "repos_url": "https://api.github.com/users/janinko/repos", + "events_url": "https://api.github.com/users/janinko/events{/privacy}", + "received_events_url": "https://api.github.com/users/janinko/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2013-04-14T03:52:28Z", + "updated_at": "2014-07-01T17:26:20Z", + "closed_at": "2013-04-16T19:19:58Z", + "author_association": "COLLABORATOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/31", + "html_url": "https://github.com/github-api/github-api/pull/31", + "diff_url": "https://github.com/github-api/github-api/pull/31.diff", + "patch_url": "https://github.com/github-api/github-api/pull/31.patch" + }, + "body": "http://developer.github.com/v3/oauth/#create-a-new-authorization\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/30", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/30/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/30/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/30/events", + "html_url": "https://github.com/github-api/github-api/pull/30", + "id": 11057824, + "node_id": "MDExOlB1bGxSZXF1ZXN0NDE3NDcyNg==", + "number": 30, + "title": "Adding Compare and Refs commands to API", + "user": { + "login": "mc1arke", + "id": 1250331, + "node_id": "MDQ6VXNlcjEyNTAzMzE=", + "avatar_url": "https://avatars2.githubusercontent.com/u/1250331?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mc1arke", + "html_url": "https://github.com/mc1arke", + "followers_url": "https://api.github.com/users/mc1arke/followers", + "following_url": "https://api.github.com/users/mc1arke/following{/other_user}", + "gists_url": "https://api.github.com/users/mc1arke/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mc1arke/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mc1arke/subscriptions", + "organizations_url": "https://api.github.com/users/mc1arke/orgs", + "repos_url": "https://api.github.com/users/mc1arke/repos", + "events_url": "https://api.github.com/users/mc1arke/events{/privacy}", + "received_events_url": "https://api.github.com/users/mc1arke/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2013-02-16T00:00:35Z", + "updated_at": "2014-06-13T00:53:04Z", + "closed_at": "2013-03-15T02:02:54Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/30", + "html_url": "https://github.com/github-api/github-api/pull/30", + "diff_url": "https://github.com/github-api/github-api/pull/30.diff", + "patch_url": "https://github.com/github-api/github-api/pull/30.patch" + }, + "body": "Supporting http://developer.github.com/v3/git/refs/ and http://developer.github.com/v3/repos/commits/#compare-two-commits\n\nI've not checked in my unit tests for this since the current tests don't work properly (they perform actions not available to some users) and don't want to add further tests like this.\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/29", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/29/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/29/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/29/events", + "html_url": "https://github.com/github-api/github-api/issues/29", + "id": 10276391, + "node_id": "MDU6SXNzdWUxMDI3NjM5MQ==", + "number": 29, + "title": "Error 500 - No Protocol", + "user": { + "login": "bradgignac", + "id": 17019, + "node_id": "MDQ6VXNlcjE3MDE5", + "avatar_url": "https://avatars0.githubusercontent.com/u/17019?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bradgignac", + "html_url": "https://github.com/bradgignac", + "followers_url": "https://api.github.com/users/bradgignac/followers", + "following_url": "https://api.github.com/users/bradgignac/following{/other_user}", + "gists_url": "https://api.github.com/users/bradgignac/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bradgignac/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bradgignac/subscriptions", + "organizations_url": "https://api.github.com/users/bradgignac/orgs", + "repos_url": "https://api.github.com/users/bradgignac/repos", + "events_url": "https://api.github.com/users/bradgignac/events{/privacy}", + "received_events_url": "https://api.github.com/users/bradgignac/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 10, + "created_at": "2013-01-24T15:28:42Z", + "updated_at": "2013-03-30T06:33:56Z", + "closed_at": "2013-03-30T06:33:56Z", + "author_association": "NONE", + "body": "When attempting to use the GitHub OAuth plugin with GitHub Enterprise, I'm receiving a 500 status code after GitHub redirects back to Jenkins.\n\nURL: http://ci.canon.rackspace.com/securityRealm/finishLogin?code=REDACTED\nStacktrace: https://gist.github.com/4623038\n\nIt's unclear to me whether this is an issue in the Java API bindings or the GitHub OAuth plugin.\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/28", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/28/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/28/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/28/events", + "html_url": "https://github.com/github-api/github-api/pull/28", + "id": 9715785, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzU2MTk0NQ==", + "number": 28, + "title": "Added membership checks.", + "user": { + "login": "johnou", + "id": 323497, + "node_id": "MDQ6VXNlcjMyMzQ5Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/323497?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/johnou", + "html_url": "https://github.com/johnou", + "followers_url": "https://api.github.com/users/johnou/followers", + "following_url": "https://api.github.com/users/johnou/following{/other_user}", + "gists_url": "https://api.github.com/users/johnou/gists{/gist_id}", + "starred_url": "https://api.github.com/users/johnou/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/johnou/subscriptions", + "organizations_url": "https://api.github.com/users/johnou/orgs", + "repos_url": "https://api.github.com/users/johnou/repos", + "events_url": "https://api.github.com/users/johnou/events{/privacy}", + "received_events_url": "https://api.github.com/users/johnou/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 4, + "created_at": "2013-01-06T12:26:18Z", + "updated_at": "2014-06-14T04:55:17Z", + "closed_at": "2013-01-07T00:28:25Z", + "author_association": "COLLABORATOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/28", + "html_url": "https://github.com/github-api/github-api/pull/28", + "diff_url": "https://github.com/github-api/github-api/pull/28.diff", + "patch_url": "https://github.com/github-api/github-api/pull/28.patch" + }, + "body": "PR for https://github.com/kohsuke/github-api/issues/23\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/27", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/27/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/27/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/27/events", + "html_url": "https://github.com/github-api/github-api/pull/27", + "id": 9715684, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzU2MTkxNQ==", + "number": 27, + "title": "Password is no longer required for api usage and fix for broken base64 encoding.", + "user": { + "login": "johnou", + "id": 323497, + "node_id": "MDQ6VXNlcjMyMzQ5Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/323497?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/johnou", + "html_url": "https://github.com/johnou", + "followers_url": "https://api.github.com/users/johnou/followers", + "following_url": "https://api.github.com/users/johnou/following{/other_user}", + "gists_url": "https://api.github.com/users/johnou/gists{/gist_id}", + "starred_url": "https://api.github.com/users/johnou/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/johnou/subscriptions", + "organizations_url": "https://api.github.com/users/johnou/orgs", + "repos_url": "https://api.github.com/users/johnou/repos", + "events_url": "https://api.github.com/users/johnou/events{/privacy}", + "received_events_url": "https://api.github.com/users/johnou/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2013-01-06T12:09:14Z", + "updated_at": "2014-07-01T17:26:21Z", + "closed_at": "2013-01-07T00:14:15Z", + "author_association": "COLLABORATOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/27", + "html_url": "https://github.com/github-api/github-api/pull/27", + "diff_url": "https://github.com/github-api/github-api/pull/27.diff", + "patch_url": "https://github.com/github-api/github-api/pull/27.patch" + }, + "body": "" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/26", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/26/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/26/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/26/events", + "html_url": "https://github.com/github-api/github-api/pull/26", + "id": 9712489, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzU2MDkzNw==", + "number": 26, + "title": "Removed web client and proprietary api usage.", + "user": { + "login": "johnou", + "id": 323497, + "node_id": "MDQ6VXNlcjMyMzQ5Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/323497?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/johnou", + "html_url": "https://github.com/johnou", + "followers_url": "https://api.github.com/users/johnou/followers", + "following_url": "https://api.github.com/users/johnou/following{/other_user}", + "gists_url": "https://api.github.com/users/johnou/gists{/gist_id}", + "starred_url": "https://api.github.com/users/johnou/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/johnou/subscriptions", + "organizations_url": "https://api.github.com/users/johnou/orgs", + "repos_url": "https://api.github.com/users/johnou/repos", + "events_url": "https://api.github.com/users/johnou/events{/privacy}", + "received_events_url": "https://api.github.com/users/johnou/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2013-01-06T03:07:39Z", + "updated_at": "2014-07-01T17:26:21Z", + "closed_at": "2013-01-06T08:34:16Z", + "author_association": "COLLABORATOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/26", + "html_url": "https://github.com/github-api/github-api/pull/26", + "diff_url": "https://github.com/github-api/github-api/pull/26.diff", + "patch_url": "https://github.com/github-api/github-api/pull/26.patch" + }, + "body": "" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/25", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/25/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/25/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/25/events", + "html_url": "https://github.com/github-api/github-api/pull/25", + "id": 9711600, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzU2MDY1Ng==", + "number": 25, + "title": "Backward compat redundant.", + "user": { + "login": "johnou", + "id": 323497, + "node_id": "MDQ6VXNlcjMyMzQ5Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/323497?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/johnou", + "html_url": "https://github.com/johnou", + "followers_url": "https://api.github.com/users/johnou/followers", + "following_url": "https://api.github.com/users/johnou/following{/other_user}", + "gists_url": "https://api.github.com/users/johnou/gists{/gist_id}", + "starred_url": "https://api.github.com/users/johnou/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/johnou/subscriptions", + "organizations_url": "https://api.github.com/users/johnou/orgs", + "repos_url": "https://api.github.com/users/johnou/repos", + "events_url": "https://api.github.com/users/johnou/events{/privacy}", + "received_events_url": "https://api.github.com/users/johnou/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2013-01-06T00:56:18Z", + "updated_at": "2014-07-01T17:26:22Z", + "closed_at": "2013-01-06T01:10:54Z", + "author_association": "COLLABORATOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/25", + "html_url": "https://github.com/github-api/github-api/pull/25", + "diff_url": "https://github.com/github-api/github-api/pull/25.diff", + "patch_url": "https://github.com/github-api/github-api/pull/25.patch" + }, + "body": "As discussed, was never in use.\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/24", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/24/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/24/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/24/events", + "html_url": "https://github.com/github-api/github-api/pull/24", + "id": 9711114, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzU2MDQ5OA==", + "number": 24, + "title": "JENKINS-13726: Github plugin should work with Github enterprise by allowing for overriding the github URL.", + "user": { + "login": "johnou", + "id": 323497, + "node_id": "MDQ6VXNlcjMyMzQ5Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/323497?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/johnou", + "html_url": "https://github.com/johnou", + "followers_url": "https://api.github.com/users/johnou/followers", + "following_url": "https://api.github.com/users/johnou/following{/other_user}", + "gists_url": "https://api.github.com/users/johnou/gists{/gist_id}", + "starred_url": "https://api.github.com/users/johnou/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/johnou/subscriptions", + "organizations_url": "https://api.github.com/users/johnou/orgs", + "repos_url": "https://api.github.com/users/johnou/repos", + "events_url": "https://api.github.com/users/johnou/events{/privacy}", + "received_events_url": "https://api.github.com/users/johnou/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2013-01-05T23:49:23Z", + "updated_at": "2014-07-01T17:26:22Z", + "closed_at": "2013-01-05T23:59:45Z", + "author_association": "COLLABORATOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/24", + "html_url": "https://github.com/github-api/github-api/pull/24", + "diff_url": "https://github.com/github-api/github-api/pull/24.diff", + "patch_url": "https://github.com/github-api/github-api/pull/24.patch" + }, + "body": "For supporting standalone github enterprise servers.\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/23", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/23/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/23/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/23/events", + "html_url": "https://github.com/github-api/github-api/issues/23", + "id": 8502929, + "node_id": "MDU6SXNzdWU4NTAyOTI5", + "number": 23, + "title": "Support for organization check mebership", + "user": { + "login": "janinko", + "id": 644267, + "node_id": "MDQ6VXNlcjY0NDI2Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/644267?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/janinko", + "html_url": "https://github.com/janinko", + "followers_url": "https://api.github.com/users/janinko/followers", + "following_url": "https://api.github.com/users/janinko/following{/other_user}", + "gists_url": "https://api.github.com/users/janinko/gists{/gist_id}", + "starred_url": "https://api.github.com/users/janinko/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/janinko/subscriptions", + "organizations_url": "https://api.github.com/users/janinko/orgs", + "repos_url": "https://api.github.com/users/janinko/repos", + "events_url": "https://api.github.com/users/janinko/events{/privacy}", + "received_events_url": "https://api.github.com/users/janinko/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2012-11-20T12:43:39Z", + "updated_at": "2013-01-07T00:28:52Z", + "closed_at": "2013-01-07T00:28:52Z", + "author_association": "COLLABORATOR", + "body": "http://developer.github.com/v3/orgs/members/#check-membership\n\n`GET /orgs/:org/members/:user`\n204 -> true\n404 -> false\n\n302 -> `GET /orgs/:org/public_members/:user`\n204 -> true\n404 -> false\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/22", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/22/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/22/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/22/events", + "html_url": "https://github.com/github-api/github-api/pull/22", + "id": 7741541, + "node_id": "MDExOlB1bGxSZXF1ZXN0MjcxOTE2NQ==", + "number": 22, + "title": "Retrieve repository directly.", + "user": { + "login": "janinko", + "id": 644267, + "node_id": "MDQ6VXNlcjY0NDI2Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/644267?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/janinko", + "html_url": "https://github.com/janinko", + "followers_url": "https://api.github.com/users/janinko/followers", + "following_url": "https://api.github.com/users/janinko/following{/other_user}", + "gists_url": "https://api.github.com/users/janinko/gists{/gist_id}", + "starred_url": "https://api.github.com/users/janinko/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/janinko/subscriptions", + "organizations_url": "https://api.github.com/users/janinko/orgs", + "repos_url": "https://api.github.com/users/janinko/repos", + "events_url": "https://api.github.com/users/janinko/events{/privacy}", + "received_events_url": "https://api.github.com/users/janinko/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2012-10-20T21:27:45Z", + "updated_at": "2014-06-18T11:06:05Z", + "closed_at": "2013-01-06T01:12:58Z", + "author_association": "COLLABORATOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/22", + "html_url": "https://github.com/github-api/github-api/pull/22", + "diff_url": "https://github.com/github-api/github-api/pull/22.diff", + "patch_url": "https://github.com/github-api/github-api/pull/22.patch" + }, + "body": "" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/__files/repositories_617210_issues-9486f660-2139-4f84-ae0f-898d0369d061.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/__files/repositories_617210_issues-9486f660-2139-4f84-ae0f-898d0369d061.json new file mode 100644 index 0000000000..79787b9e7b --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/__files/repositories_617210_issues-9486f660-2139-4f84-ae0f-898d0369d061.json @@ -0,0 +1,1388 @@ +[ + { + "url": "https://api.github.com/repos/github-api/github-api/issues/174", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/174/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/174/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/174/events", + "html_url": "https://github.com/github-api/github-api/pull/174", + "id": 66146575, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzI1ODg2Nzg=", + "number": 174, + "title": "Add more binding for pull requests:", + "user": { + "login": "henryju", + "id": 281596, + "node_id": "MDQ6VXNlcjI4MTU5Ng==", + "avatar_url": "https://avatars3.githubusercontent.com/u/281596?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/henryju", + "html_url": "https://github.com/henryju", + "followers_url": "https://api.github.com/users/henryju/followers", + "following_url": "https://api.github.com/users/henryju/following{/other_user}", + "gists_url": "https://api.github.com/users/henryju/gists{/gist_id}", + "starred_url": "https://api.github.com/users/henryju/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/henryju/subscriptions", + "organizations_url": "https://api.github.com/users/henryju/orgs", + "repos_url": "https://api.github.com/users/henryju/repos", + "events_url": "https://api.github.com/users/henryju/events{/privacy}", + "received_events_url": "https://api.github.com/users/henryju/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 7, + "created_at": "2015-04-03T13:28:30Z", + "updated_at": "2015-04-20T00:22:54Z", + "closed_at": "2015-04-20T00:22:54Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/174", + "html_url": "https://github.com/github-api/github-api/pull/174", + "diff_url": "https://github.com/github-api/github-api/pull/174.diff", + "patch_url": "https://github.com/github-api/github-api/pull/174.patch" + }, + "body": "- ability to list files of a pull request\n- ability to add/remove/update PR review comment\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/173", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/173/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/173/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/173/events", + "html_url": "https://github.com/github-api/github-api/pull/173", + "id": 63813318, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE3NjY0MDY=", + "number": 173, + "title": "Removing mis-match of decorator and method defintions", + "user": { + "login": "madhephaestus", + "id": 1254726, + "node_id": "MDQ6VXNlcjEyNTQ3MjY=", + "avatar_url": "https://avatars2.githubusercontent.com/u/1254726?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/madhephaestus", + "html_url": "https://github.com/madhephaestus", + "followers_url": "https://api.github.com/users/madhephaestus/followers", + "following_url": "https://api.github.com/users/madhephaestus/following{/other_user}", + "gists_url": "https://api.github.com/users/madhephaestus/gists{/gist_id}", + "starred_url": "https://api.github.com/users/madhephaestus/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/madhephaestus/subscriptions", + "organizations_url": "https://api.github.com/users/madhephaestus/orgs", + "repos_url": "https://api.github.com/users/madhephaestus/repos", + "events_url": "https://api.github.com/users/madhephaestus/events{/privacy}", + "received_events_url": "https://api.github.com/users/madhephaestus/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 3, + "created_at": "2015-03-23T19:37:06Z", + "updated_at": "2015-04-20T00:41:25Z", + "closed_at": "2015-04-20T00:41:25Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/173", + "html_url": "https://github.com/github-api/github-api/pull/173", + "diff_url": "https://github.com/github-api/github-api/pull/173.diff", + "patch_url": "https://github.com/github-api/github-api/pull/173.patch" + }, + "body": "This addresses the issue #171 \n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/172", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/172/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/172/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/172/events", + "html_url": "https://github.com/github-api/github-api/issues/172", + "id": 63757226, + "node_id": "MDU6SXNzdWU2Mzc1NzIyNg==", + "number": 172, + "title": "Rate limiting causes silent freezing failures", + "user": { + "login": "madhephaestus", + "id": 1254726, + "node_id": "MDQ6VXNlcjEyNTQ3MjY=", + "avatar_url": "https://avatars2.githubusercontent.com/u/1254726?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/madhephaestus", + "html_url": "https://github.com/madhephaestus", + "followers_url": "https://api.github.com/users/madhephaestus/followers", + "following_url": "https://api.github.com/users/madhephaestus/following{/other_user}", + "gists_url": "https://api.github.com/users/madhephaestus/gists{/gist_id}", + "starred_url": "https://api.github.com/users/madhephaestus/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/madhephaestus/subscriptions", + "organizations_url": "https://api.github.com/users/madhephaestus/orgs", + "repos_url": "https://api.github.com/users/madhephaestus/repos", + "events_url": "https://api.github.com/users/madhephaestus/events{/privacy}", + "received_events_url": "https://api.github.com/users/madhephaestus/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2015-03-23T15:52:26Z", + "updated_at": "2015-03-23T15:59:43Z", + "closed_at": "2015-03-23T15:59:43Z", + "author_association": "NONE", + "body": "WHen Github rate limits the API will lock up until the rate limit is cleared (up to an hour!) A rate limit block should be shown as an exception and in a perfect world an event listener for remaining trys (in the API) \n\nI had to go in and manually print a stacktrace in RateLimitHandler.java that was being caught silently to even figure out what was happening. \n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/171", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/171/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/171/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/171/events", + "html_url": "https://github.com/github-api/github-api/issues/171", + "id": 63739705, + "node_id": "MDU6SXNzdWU2MzczOTcwNQ==", + "number": 171, + "title": "@WithBridgeMethods decorator in GHObject has no value adapterMethod", + "user": { + "login": "madhephaestus", + "id": 1254726, + "node_id": "MDQ6VXNlcjEyNTQ3MjY=", + "avatar_url": "https://avatars2.githubusercontent.com/u/1254726?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/madhephaestus", + "html_url": "https://github.com/madhephaestus", + "followers_url": "https://api.github.com/users/madhephaestus/followers", + "following_url": "https://api.github.com/users/madhephaestus/following{/other_user}", + "gists_url": "https://api.github.com/users/madhephaestus/gists{/gist_id}", + "starred_url": "https://api.github.com/users/madhephaestus/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/madhephaestus/subscriptions", + "organizations_url": "https://api.github.com/users/madhephaestus/orgs", + "repos_url": "https://api.github.com/users/madhephaestus/repos", + "events_url": "https://api.github.com/users/madhephaestus/events{/privacy}", + "received_events_url": "https://api.github.com/users/madhephaestus/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 11, + "created_at": "2015-03-23T14:40:53Z", + "updated_at": "2015-12-01T16:04:40Z", + "closed_at": "2015-12-01T16:04:39Z", + "author_association": "NONE", + "body": "When pulling the sources and building there is a build error in GHObject at each usage of adapterMethod. This is not a runtime problem, it will not even compile. \n\nPerhaps this is a problem with the decorator definition and the dependency version number problem?\n\nbuild 1.6.4-SNAPSHOT \nbridge-method-annotation-1.8.jar\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/170", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/170/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/170/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/170/events", + "html_url": "https://github.com/github-api/github-api/pull/170", + "id": 63589888, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE2OTc0NDk=", + "number": 170, + "title": "Improvements", + "user": { + "login": "KostyaSha", + "id": 231611, + "node_id": "MDQ6VXNlcjIzMTYxMQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/231611?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/KostyaSha", + "html_url": "https://github.com/KostyaSha", + "followers_url": "https://api.github.com/users/KostyaSha/followers", + "following_url": "https://api.github.com/users/KostyaSha/following{/other_user}", + "gists_url": "https://api.github.com/users/KostyaSha/gists{/gist_id}", + "starred_url": "https://api.github.com/users/KostyaSha/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/KostyaSha/subscriptions", + "organizations_url": "https://api.github.com/users/KostyaSha/orgs", + "repos_url": "https://api.github.com/users/KostyaSha/repos", + "events_url": "https://api.github.com/users/KostyaSha/events{/privacy}", + "received_events_url": "https://api.github.com/users/KostyaSha/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 4, + "created_at": "2015-03-22T23:25:31Z", + "updated_at": "2015-04-13T23:55:24Z", + "closed_at": "2015-04-13T23:55:24Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/170", + "html_url": "https://github.com/github-api/github-api/pull/170", + "diff_url": "https://github.com/github-api/github-api/pull/170.diff", + "patch_url": "https://github.com/github-api/github-api/pull/170.patch" + }, + "body": "Similar to other events\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/169", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/169/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/169/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/169/events", + "html_url": "https://github.com/github-api/github-api/pull/169", + "id": 63588706, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE2OTcxOTc=", + "number": 169, + "title": "Throw error for bad creds", + "user": { + "login": "KostyaSha", + "id": 231611, + "node_id": "MDQ6VXNlcjIzMTYxMQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/231611?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/KostyaSha", + "html_url": "https://github.com/KostyaSha", + "followers_url": "https://api.github.com/users/KostyaSha/followers", + "following_url": "https://api.github.com/users/KostyaSha/following{/other_user}", + "gists_url": "https://api.github.com/users/KostyaSha/gists{/gist_id}", + "starred_url": "https://api.github.com/users/KostyaSha/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/KostyaSha/subscriptions", + "organizations_url": "https://api.github.com/users/KostyaSha/orgs", + "repos_url": "https://api.github.com/users/KostyaSha/repos", + "events_url": "https://api.github.com/users/KostyaSha/events{/privacy}", + "received_events_url": "https://api.github.com/users/KostyaSha/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2015-03-22T23:10:10Z", + "updated_at": "2015-04-13T23:55:58Z", + "closed_at": "2015-04-13T23:55:58Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/169", + "html_url": "https://github.com/github-api/github-api/pull/169", + "diff_url": "https://github.com/github-api/github-api/pull/169.diff", + "patch_url": "https://github.com/github-api/github-api/pull/169.patch" + }, + "body": "PoC for https://github.com/kohsuke/github-api/pull/160#issuecomment-81986789\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/168", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/168/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/168/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/168/events", + "html_url": "https://github.com/github-api/github-api/issues/168", + "id": 63560074, + "node_id": "MDU6SXNzdWU2MzU2MDA3NA==", + "number": 168, + "title": "Pluggable persistent cache support", + "user": { + "login": "kohsuke", + "id": 50003, + "node_id": "MDQ6VXNlcjUwMDAz", + "avatar_url": "https://avatars1.githubusercontent.com/u/50003?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kohsuke", + "html_url": "https://github.com/kohsuke", + "followers_url": "https://api.github.com/users/kohsuke/followers", + "following_url": "https://api.github.com/users/kohsuke/following{/other_user}", + "gists_url": "https://api.github.com/users/kohsuke/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kohsuke/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kohsuke/subscriptions", + "organizations_url": "https://api.github.com/users/kohsuke/orgs", + "repos_url": "https://api.github.com/users/kohsuke/repos", + "events_url": "https://api.github.com/users/kohsuke/events{/privacy}", + "received_events_url": "https://api.github.com/users/kohsuke/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2015-03-22T18:17:37Z", + "updated_at": "2015-03-22T19:13:48Z", + "closed_at": "2015-03-22T19:13:48Z", + "author_association": "MEMBER", + "body": "This is a fall out from issue #104.\n\nIt would be nice to leverage [conditional get support in GitHub](https://developer.github.com/v3/#conditional-requests) by offering some kind of optional classes that adds persistent cache on the disk.\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/167", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/167/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/167/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/167/events", + "html_url": "https://github.com/github-api/github-api/issues/167", + "id": 63551821, + "node_id": "MDU6SXNzdWU2MzU1MTgyMQ==", + "number": 167, + "title": "SBT build is broken from version 1.53", + "user": { + "login": "lev4ik", + "id": 4324962, + "node_id": "MDQ6VXNlcjQzMjQ5NjI=", + "avatar_url": "https://avatars0.githubusercontent.com/u/4324962?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/lev4ik", + "html_url": "https://github.com/lev4ik", + "followers_url": "https://api.github.com/users/lev4ik/followers", + "following_url": "https://api.github.com/users/lev4ik/following{/other_user}", + "gists_url": "https://api.github.com/users/lev4ik/gists{/gist_id}", + "starred_url": "https://api.github.com/users/lev4ik/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/lev4ik/subscriptions", + "organizations_url": "https://api.github.com/users/lev4ik/orgs", + "repos_url": "https://api.github.com/users/lev4ik/repos", + "events_url": "https://api.github.com/users/lev4ik/events{/privacy}", + "received_events_url": "https://api.github.com/users/lev4ik/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 3, + "created_at": "2015-03-22T16:42:57Z", + "updated_at": "2016-03-08T21:37:14Z", + "closed_at": "2015-03-22T17:36:19Z", + "author_association": "NONE", + "body": "When adding \n\nlibraryDependencies += \"org.kohsuke\" % \"github-api\" % \"1.53\"\n\nor higher version to *.sbt files the build breaks with unresolved dependency of org.jenkins-ci#annotation-indexer, with the following error :\n\n```\n at sbt.IvyActions$$anonfun$update$1.apply(IvyActions.scala:126)\n at sbt.IvyActions$$anonfun$update$1.apply(IvyActions.scala:125)\n at sbt.IvySbt$$anon$3.call(Ivy.scala:57)\n at xsbt.boot.Locks$GlobalLock.withChannel$1(Locks.scala:98)\n at xsbt.boot.Locks$GlobalLock.xsbt$boot$Locks$GlobalLock$$withChannelRetries$1(Locks.scala:81)\n at xsbt.boot.Locks$GlobalLock$$anonfun$withFileLock$1.apply(Locks.scala:102)\n at xsbt.boot.Using$.withResource(Using.scala:11)\n at xsbt.boot.Using$.apply(Using.scala:10)\n at xsbt.boot.Locks$GlobalLock.ignoringDeadlockAvoided(Locks.scala:62)\n at xsbt.boot.Locks$GlobalLock.withLock(Locks.scala:52)\n at xsbt.boot.Locks$.apply0(Locks.scala:31)\n at xsbt.boot.Locks$.apply(Locks.scala:28)\n at sbt.IvySbt.withDefaultLogger(Ivy.scala:57)\n at sbt.IvySbt.withIvy(Ivy.scala:98)\n at sbt.IvySbt.withIvy(Ivy.scala:94)\n at sbt.IvySbt$Module.withModule(Ivy.scala:115)\n at sbt.IvyActions$.update(IvyActions.scala:125)\n at sbt.Classpaths$$anonfun$sbt$Classpaths$$work$1$1.apply(Defaults.scala:1223)\n at sbt.Classpaths$$anonfun$sbt$Classpaths$$work$1$1.apply(Defaults.scala:1221)\n at sbt.Classpaths$$anonfun$doWork$1$1$$anonfun$74.apply(Defaults.scala:1244)\n at sbt.Classpaths$$anonfun$doWork$1$1$$anonfun$74.apply(Defaults.scala:1242)\n at sbt.Tracked$$anonfun$lastOutput$1.apply(Tracked.scala:35)\n at sbt.Classpaths$$anonfun$doWork$1$1.apply(Defaults.scala:1246)\n at sbt.Classpaths$$anonfun$doWork$1$1.apply(Defaults.scala:1241)\n at sbt.Tracked$$anonfun$inputChanged$1.apply(Tracked.scala:45)\n at sbt.Classpaths$.cachedUpdate(Defaults.scala:1249)\n at sbt.Classpaths$$anonfun$updateTask$1.apply(Defaults.scala:1214)\n at sbt.Classpaths$$anonfun$updateTask$1.apply(Defaults.scala:1192)\n at scala.Function1$$anonfun$compose$1.apply(Function1.scala:47)\n at sbt.$tilde$greater$$anonfun$$u2219$1.apply(TypeFunctions.scala:42)\n at sbt.std.Transform$$anon$4.work(System.scala:64)\n at sbt.Execute$$anonfun$submit$1$$anonfun$apply$1.apply(Execute.scala:237)\n at sbt.Execute$$anonfun$submit$1$$anonfun$apply$1.apply(Execute.scala:237)\n at sbt.ErrorHandling$.wideConvert(ErrorHandling.scala:18)\n at sbt.Execute.work(Execute.scala:244)\n at sbt.Execute$$anonfun$submit$1.apply(Execute.scala:237)\n at sbt.Execute$$anonfun$submit$1.apply(Execute.scala:237)\n at sbt.ConcurrentRestrictions$$anon$4$$anonfun$1.apply(ConcurrentRestrictions.scala:160)\n at sbt.CompletionService$$anon$2.call(CompletionService.scala:30)\n at java.util.concurrent.FutureTask.run(FutureTask.java:262)\n at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:471)\n at java.util.concurrent.FutureTask.run(FutureTask.java:262)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)\n at java.lang.Thread.run(Thread.java:745)\n```\n\n[error] sbt.ResolveException: unresolved dependency: org.jenkins-ci#annotation-indexer;1.4: not found\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/166", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/166/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/166/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/166/events", + "html_url": "https://github.com/github-api/github-api/issues/166", + "id": 63492849, + "node_id": "MDU6SXNzdWU2MzQ5Mjg0OQ==", + "number": 166, + "title": "Reading a gist in anonymonous mode causes error", + "user": { + "login": "madhephaestus", + "id": 1254726, + "node_id": "MDQ6VXNlcjEyNTQ3MjY=", + "avatar_url": "https://avatars2.githubusercontent.com/u/1254726?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/madhephaestus", + "html_url": "https://github.com/madhephaestus", + "followers_url": "https://api.github.com/users/madhephaestus/followers", + "following_url": "https://api.github.com/users/madhephaestus/following{/other_user}", + "gists_url": "https://api.github.com/users/madhephaestus/gists{/gist_id}", + "starred_url": "https://api.github.com/users/madhephaestus/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/madhephaestus/subscriptions", + "organizations_url": "https://api.github.com/users/madhephaestus/orgs", + "repos_url": "https://api.github.com/users/madhephaestus/repos", + "events_url": "https://api.github.com/users/madhephaestus/events{/privacy}", + "received_events_url": "https://api.github.com/users/madhephaestus/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 6, + "created_at": "2015-03-22T05:48:49Z", + "updated_at": "2015-03-23T21:12:21Z", + "closed_at": "2015-03-22T17:39:08Z", + "author_association": "NONE", + "body": "When I run \n\n`GitHub github = GitHub.connectAnonymously();`\n\n`GHGist gist = github.getGist(currentGist);`\n\nI get the following exception: \n\njava.lang.NullPointerException\n at java.util.Hashtable.put(Hashtable.java:464)\n at org.kohsuke.github.GitHub.getUser(GitHub.java:293)\n at org.kohsuke.github.GHGist.wrapUp(GHGist.java:106)\n at org.kohsuke.github.GitHub.getGist(GitHub.java:370)\n at ...\n\nSInce i connected anynomously, why is it asking for the user? Is there something i can set to get it to ignore this? \n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/165", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/165/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/165/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/165/events", + "html_url": "https://github.com/github-api/github-api/issues/165", + "id": 63454342, + "node_id": "MDU6SXNzdWU2MzQ1NDM0Mg==", + "number": 165, + "title": "Add support for the Markdown API", + "user": { + "login": "s0undt3ch", + "id": 300048, + "node_id": "MDQ6VXNlcjMwMDA0OA==", + "avatar_url": "https://avatars3.githubusercontent.com/u/300048?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/s0undt3ch", + "html_url": "https://github.com/s0undt3ch", + "followers_url": "https://api.github.com/users/s0undt3ch/followers", + "following_url": "https://api.github.com/users/s0undt3ch/following{/other_user}", + "gists_url": "https://api.github.com/users/s0undt3ch/gists{/gist_id}", + "starred_url": "https://api.github.com/users/s0undt3ch/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/s0undt3ch/subscriptions", + "organizations_url": "https://api.github.com/users/s0undt3ch/orgs", + "repos_url": "https://api.github.com/users/s0undt3ch/repos", + "events_url": "https://api.github.com/users/s0undt3ch/events{/privacy}", + "received_events_url": "https://api.github.com/users/s0undt3ch/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2015-03-21T20:44:33Z", + "updated_at": "2015-03-22T19:34:36Z", + "closed_at": "2015-03-22T18:01:00Z", + "author_association": "NONE", + "body": "https://developer.github.com/v3/markdown/\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/164", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/164/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/164/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/164/events", + "html_url": "https://github.com/github-api/github-api/pull/164", + "id": 60742530, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzA5OTI3NzQ=", + "number": 164, + "title": "Add Delete Branch", + "user": { + "login": "DavidTanner", + "id": 368889, + "node_id": "MDQ6VXNlcjM2ODg4OQ==", + "avatar_url": "https://avatars0.githubusercontent.com/u/368889?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/DavidTanner", + "html_url": "https://github.com/DavidTanner", + "followers_url": "https://api.github.com/users/DavidTanner/followers", + "following_url": "https://api.github.com/users/DavidTanner/following{/other_user}", + "gists_url": "https://api.github.com/users/DavidTanner/gists{/gist_id}", + "starred_url": "https://api.github.com/users/DavidTanner/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/DavidTanner/subscriptions", + "organizations_url": "https://api.github.com/users/DavidTanner/orgs", + "repos_url": "https://api.github.com/users/DavidTanner/repos", + "events_url": "https://api.github.com/users/DavidTanner/events{/privacy}", + "received_events_url": "https://api.github.com/users/DavidTanner/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 4, + "created_at": "2015-03-11T22:42:19Z", + "updated_at": "2015-03-12T03:58:38Z", + "closed_at": "2015-03-12T03:58:38Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/164", + "html_url": "https://github.com/github-api/github-api/pull/164", + "diff_url": "https://github.com/github-api/github-api/pull/164.diff", + "patch_url": "https://github.com/github-api/github-api/pull/164.patch" + }, + "body": "Add the request to delete a branch. This is useful after merging a pull request.\n\nMy use case is in the Github Pull Request Builder plugin for Jenkins I would like to delete the branch after merging the pull request. \n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/163", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/163/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/163/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/163/events", + "html_url": "https://github.com/github-api/github-api/pull/163", + "id": 60603017, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzA5MTIxNDY=", + "number": 163, + "title": "merge", + "user": { + "login": "weijianzhenli", + "id": 10072397, + "node_id": "MDQ6VXNlcjEwMDcyMzk3", + "avatar_url": "https://avatars2.githubusercontent.com/u/10072397?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/weijianzhenli", + "html_url": "https://github.com/weijianzhenli", + "followers_url": "https://api.github.com/users/weijianzhenli/followers", + "following_url": "https://api.github.com/users/weijianzhenli/following{/other_user}", + "gists_url": "https://api.github.com/users/weijianzhenli/gists{/gist_id}", + "starred_url": "https://api.github.com/users/weijianzhenli/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/weijianzhenli/subscriptions", + "organizations_url": "https://api.github.com/users/weijianzhenli/orgs", + "repos_url": "https://api.github.com/users/weijianzhenli/repos", + "events_url": "https://api.github.com/users/weijianzhenli/events{/privacy}", + "received_events_url": "https://api.github.com/users/weijianzhenli/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2015-03-11T03:01:19Z", + "updated_at": "2015-03-11T03:05:33Z", + "closed_at": "2015-03-11T03:05:33Z", + "author_association": "FIRST_TIMER", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/163", + "html_url": "https://github.com/github-api/github-api/pull/163", + "diff_url": "https://github.com/github-api/github-api/pull/163.diff", + "patch_url": "https://github.com/github-api/github-api/pull/163.patch" + }, + "body": "" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/162", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/162/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/162/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/162/events", + "html_url": "https://github.com/github-api/github-api/issues/162", + "id": 59959411, + "node_id": "MDU6SXNzdWU1OTk1OTQxMQ==", + "number": 162, + "title": "GHContent#content always returns master version", + "user": { + "login": "tilayealemu", + "id": 11229217, + "node_id": "MDQ6VXNlcjExMjI5MjE3", + "avatar_url": "https://avatars3.githubusercontent.com/u/11229217?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/tilayealemu", + "html_url": "https://github.com/tilayealemu", + "followers_url": "https://api.github.com/users/tilayealemu/followers", + "following_url": "https://api.github.com/users/tilayealemu/following{/other_user}", + "gists_url": "https://api.github.com/users/tilayealemu/gists{/gist_id}", + "starred_url": "https://api.github.com/users/tilayealemu/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/tilayealemu/subscriptions", + "organizations_url": "https://api.github.com/users/tilayealemu/orgs", + "repos_url": "https://api.github.com/users/tilayealemu/repos", + "events_url": "https://api.github.com/users/tilayealemu/events{/privacy}", + "received_events_url": "https://api.github.com/users/tilayealemu/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 3, + "created_at": "2015-03-05T14:34:45Z", + "updated_at": "2015-03-22T17:21:23Z", + "closed_at": "2015-03-22T17:21:09Z", + "author_association": "NONE", + "body": "GHContent#content always returns content from the master branch. Included sample code. Content 1 comes from master and 2 from the specified branch. Using github-api 1.62.\n\n```\n@Test\npublic void github_api_issue() throws Exception {\n String branch = \"mybranch\";\n GitHub github = GitHub.connectUsingPassword(\"myyser\", \"mypassword\");\n GHRepository ghRepo = github.getRepository(\"myrepo\");\n List contents = ghRepo.getDirectoryContent(\"myfolder\", \"heads/\" + branch);\n for (GHContent content : contents) {\n String content1 = content.getContent();\n String content2 = ghRepo.getFileContent(content.getPath(), branch).getContent();\n // System.out.println(\"Contents of \" + content.getPath());\n // System.out.println(\"Content1\");\n // System.out.println(content1);\n // System.out.println(\"Content2\");\n // System.out.println(content2);\n }\n}\n```\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/161", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/161/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/161/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/161/events", + "html_url": "https://github.com/github-api/github-api/pull/161", + "id": 59922679, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzA1Mzk2NjI=", + "number": 161, + "title": "Add method to get the list of languages using in repository", + "user": { + "login": "khoa-nd", + "id": 1620282, + "node_id": "MDQ6VXNlcjE2MjAyODI=", + "avatar_url": "https://avatars2.githubusercontent.com/u/1620282?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/khoa-nd", + "html_url": "https://github.com/khoa-nd", + "followers_url": "https://api.github.com/users/khoa-nd/followers", + "following_url": "https://api.github.com/users/khoa-nd/following{/other_user}", + "gists_url": "https://api.github.com/users/khoa-nd/gists{/gist_id}", + "starred_url": "https://api.github.com/users/khoa-nd/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/khoa-nd/subscriptions", + "organizations_url": "https://api.github.com/users/khoa-nd/orgs", + "repos_url": "https://api.github.com/users/khoa-nd/repos", + "events_url": "https://api.github.com/users/khoa-nd/events{/privacy}", + "received_events_url": "https://api.github.com/users/khoa-nd/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 5, + "created_at": "2015-03-05T08:58:11Z", + "updated_at": "2015-03-13T14:58:09Z", + "closed_at": "2015-03-13T14:58:01Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/161", + "html_url": "https://github.com/github-api/github-api/pull/161", + "diff_url": "https://github.com/github-api/github-api/pull/161.diff", + "patch_url": "https://github.com/github-api/github-api/pull/161.patch" + }, + "body": "Hi kohsuke\nI used your API to call Github API but I found that there isn't any method lists all languages using in repository. Therefore, I ask you to add it into your master code.\nThanks\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/160", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/160/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/160/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/160/events", + "html_url": "https://github.com/github-api/github-api/pull/160", + "id": 59666318, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzAzODg0MjM=", + "number": 160, + "title": "Rate-Limit: Thread fix, reset date", + "user": { + "login": "KostyaSha", + "id": 231611, + "node_id": "MDQ6VXNlcjIzMTYxMQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/231611?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/KostyaSha", + "html_url": "https://github.com/KostyaSha", + "followers_url": "https://api.github.com/users/KostyaSha/followers", + "following_url": "https://api.github.com/users/KostyaSha/following{/other_user}", + "gists_url": "https://api.github.com/users/KostyaSha/gists{/gist_id}", + "starred_url": "https://api.github.com/users/KostyaSha/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/KostyaSha/subscriptions", + "organizations_url": "https://api.github.com/users/KostyaSha/orgs", + "repos_url": "https://api.github.com/users/KostyaSha/repos", + "events_url": "https://api.github.com/users/KostyaSha/events{/privacy}", + "received_events_url": "https://api.github.com/users/KostyaSha/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 11, + "created_at": "2015-03-03T16:25:50Z", + "updated_at": "2015-06-11T11:52:37Z", + "closed_at": "2015-03-17T14:46:28Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/160", + "html_url": "https://github.com/github-api/github-api/pull/160", + "diff_url": "https://github.com/github-api/github-api/pull/160.diff", + "patch_url": "https://github.com/github-api/github-api/pull/160.patch" + }, + "body": "for #159 \n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/159", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/159/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/159/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/159/events", + "html_url": "https://github.com/github-api/github-api/issues/159", + "id": 59493545, + "node_id": "MDU6SXNzdWU1OTQ5MzU0NQ==", + "number": 159, + "title": "infinite Thread usage loop with handleApiError", + "user": { + "login": "KostyaSha", + "id": 231611, + "node_id": "MDQ6VXNlcjIzMTYxMQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/231611?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/KostyaSha", + "html_url": "https://github.com/KostyaSha", + "followers_url": "https://api.github.com/users/KostyaSha/followers", + "following_url": "https://api.github.com/users/KostyaSha/following{/other_user}", + "gists_url": "https://api.github.com/users/KostyaSha/gists{/gist_id}", + "starred_url": "https://api.github.com/users/KostyaSha/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/KostyaSha/subscriptions", + "organizations_url": "https://api.github.com/users/KostyaSha/orgs", + "repos_url": "https://api.github.com/users/KostyaSha/repos", + "events_url": "https://api.github.com/users/KostyaSha/events{/privacy}", + "received_events_url": "https://api.github.com/users/KostyaSha/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2015-03-02T15:11:23Z", + "updated_at": "2015-03-17T15:07:14Z", + "closed_at": "2015-03-17T15:07:14Z", + "author_association": "CONTRIBUTOR", + "body": "https://github.com/kohsuke/github-api/blob/4b6981c2e7e60a510d5881e33f850aafa5bad25d/src/main/java/org/kohsuke/github/Requester.java#L191-L222\n+\nhttps://github.com/kohsuke/github-api/blob/4b6981c2e7e60a510d5881e33f850aafa5bad25d/src/main/java/org/kohsuke/github/Requester.java#L423-L428\nends with infinite loop that may lock all jenkins Timers\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/158", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/158/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/158/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/158/events", + "html_url": "https://github.com/github-api/github-api/issues/158", + "id": 59139665, + "node_id": "MDU6SXNzdWU1OTEzOTY2NQ==", + "number": 158, + "title": "Implement /search", + "user": { + "login": "bamos", + "id": 707462, + "node_id": "MDQ6VXNlcjcwNzQ2Mg==", + "avatar_url": "https://avatars1.githubusercontent.com/u/707462?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bamos", + "html_url": "https://github.com/bamos", + "followers_url": "https://api.github.com/users/bamos/followers", + "following_url": "https://api.github.com/users/bamos/following{/other_user}", + "gists_url": "https://api.github.com/users/bamos/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bamos/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bamos/subscriptions", + "organizations_url": "https://api.github.com/users/bamos/orgs", + "repos_url": "https://api.github.com/users/bamos/repos", + "events_url": "https://api.github.com/users/bamos/events{/privacy}", + "received_events_url": "https://api.github.com/users/bamos/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2015-02-26T20:39:49Z", + "updated_at": "2015-03-22T19:09:14Z", + "closed_at": "2015-03-22T19:09:14Z", + "author_association": "NONE", + "body": "https://developer.github.com/v3/search/\n\nHi, sorry for filing this and #157.\nI'd prefer to use the repository search api.\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/157", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/157/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/157/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/157/events", + "html_url": "https://github.com/github-api/github-api/issues/157", + "id": 59074623, + "node_id": "MDU6SXNzdWU1OTA3NDYyMw==", + "number": 157, + "title": "/repositories?", + "user": { + "login": "bamos", + "id": 707462, + "node_id": "MDQ6VXNlcjcwNzQ2Mg==", + "avatar_url": "https://avatars1.githubusercontent.com/u/707462?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bamos", + "html_url": "https://github.com/bamos", + "followers_url": "https://api.github.com/users/bamos/followers", + "following_url": "https://api.github.com/users/bamos/following{/other_user}", + "gists_url": "https://api.github.com/users/bamos/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bamos/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bamos/subscriptions", + "organizations_url": "https://api.github.com/users/bamos/orgs", + "repos_url": "https://api.github.com/users/bamos/repos", + "events_url": "https://api.github.com/users/bamos/events{/privacy}", + "received_events_url": "https://api.github.com/users/bamos/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 5, + "created_at": "2015-02-26T13:48:09Z", + "updated_at": "2015-03-21T23:35:40Z", + "closed_at": "2015-03-21T23:35:40Z", + "author_association": "NONE", + "body": "Hi, sorry if I'm overlooking something in the Javadoc or source,\nbut is the `/repositories` feature of the github API supported?\n\nhttps://developer.github.com/v3/repos/#list-all-public-repositories\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/156", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/156/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/156/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/156/events", + "html_url": "https://github.com/github-api/github-api/pull/156", + "id": 58489501, + "node_id": "MDExOlB1bGxSZXF1ZXN0Mjk3NjUzNDg=", + "number": 156, + "title": "Picking endpoint from the properties file and environment variables", + "user": { + "login": "ashwanthkumar", + "id": 600279, + "node_id": "MDQ6VXNlcjYwMDI3OQ==", + "avatar_url": "https://avatars0.githubusercontent.com/u/600279?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ashwanthkumar", + "html_url": "https://github.com/ashwanthkumar", + "followers_url": "https://api.github.com/users/ashwanthkumar/followers", + "following_url": "https://api.github.com/users/ashwanthkumar/following{/other_user}", + "gists_url": "https://api.github.com/users/ashwanthkumar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ashwanthkumar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ashwanthkumar/subscriptions", + "organizations_url": "https://api.github.com/users/ashwanthkumar/orgs", + "repos_url": "https://api.github.com/users/ashwanthkumar/repos", + "events_url": "https://api.github.com/users/ashwanthkumar/events{/privacy}", + "received_events_url": "https://api.github.com/users/ashwanthkumar/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2015-02-22T04:13:48Z", + "updated_at": "2015-03-15T19:55:32Z", + "closed_at": "2015-03-15T19:55:32Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/156", + "html_url": "https://github.com/github-api/github-api/pull/156", + "diff_url": "https://github.com/github-api/github-api/pull/156.diff", + "patch_url": "https://github.com/github-api/github-api/pull/156.patch" + }, + "body": "Helps seemless switching between public github and enterprise without any code changes. \n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/155", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/155/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/155/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/155/events", + "html_url": "https://github.com/github-api/github-api/pull/155", + "id": 58070943, + "node_id": "MDExOlB1bGxSZXF1ZXN0Mjk1MjcwMDA=", + "number": 155, + "title": "Implementing github trees", + "user": { + "login": "ddtxra", + "id": 3664331, + "node_id": "MDQ6VXNlcjM2NjQzMzE=", + "avatar_url": "https://avatars2.githubusercontent.com/u/3664331?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ddtxra", + "html_url": "https://github.com/ddtxra", + "followers_url": "https://api.github.com/users/ddtxra/followers", + "following_url": "https://api.github.com/users/ddtxra/following{/other_user}", + "gists_url": "https://api.github.com/users/ddtxra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ddtxra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ddtxra/subscriptions", + "organizations_url": "https://api.github.com/users/ddtxra/orgs", + "repos_url": "https://api.github.com/users/ddtxra/repos", + "events_url": "https://api.github.com/users/ddtxra/events{/privacy}", + "received_events_url": "https://api.github.com/users/ddtxra/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2015-02-18T14:01:06Z", + "updated_at": "2015-03-15T19:49:34Z", + "closed_at": "2015-03-15T19:49:33Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/155", + "html_url": "https://github.com/github-api/github-api/pull/155", + "diff_url": "https://github.com/github-api/github-api/pull/155.diff", + "patch_url": "https://github.com/github-api/github-api/pull/155.patch" + }, + "body": "Implementing GitHub Trees as described in https://developer.github.com/v3/git/trees/\nSupports getTree and getTreeRecursive method on the GHRepository class\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/154", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/154/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/154/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/154/events", + "html_url": "https://github.com/github-api/github-api/issues/154", + "id": 57630007, + "node_id": "MDU6SXNzdWU1NzYzMDAwNw==", + "number": 154, + "title": "\"Stars\" and \"Forks\" parameters for Gist", + "user": { + "login": "vbauer", + "id": 578021, + "node_id": "MDQ6VXNlcjU3ODAyMQ==", + "avatar_url": "https://avatars0.githubusercontent.com/u/578021?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vbauer", + "html_url": "https://github.com/vbauer", + "followers_url": "https://api.github.com/users/vbauer/followers", + "following_url": "https://api.github.com/users/vbauer/following{/other_user}", + "gists_url": "https://api.github.com/users/vbauer/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vbauer/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vbauer/subscriptions", + "organizations_url": "https://api.github.com/users/vbauer/orgs", + "repos_url": "https://api.github.com/users/vbauer/repos", + "events_url": "https://api.github.com/users/vbauer/events{/privacy}", + "received_events_url": "https://api.github.com/users/vbauer/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2015-02-13T17:43:20Z", + "updated_at": "2015-02-15T14:22:17Z", + "closed_at": "2015-02-15T14:22:17Z", + "author_association": "NONE", + "body": "It looks like we haven't got a way to fetch information about stars and forks from Gist.\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/153", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/153/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/153/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/153/events", + "html_url": "https://github.com/github-api/github-api/issues/153", + "id": 57621420, + "node_id": "MDU6SXNzdWU1NzYyMTQyMA==", + "number": 153, + "title": "Github Trees support", + "user": { + "login": "ddtxra", + "id": 3664331, + "node_id": "MDQ6VXNlcjM2NjQzMzE=", + "avatar_url": "https://avatars2.githubusercontent.com/u/3664331?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ddtxra", + "html_url": "https://github.com/ddtxra", + "followers_url": "https://api.github.com/users/ddtxra/followers", + "following_url": "https://api.github.com/users/ddtxra/following{/other_user}", + "gists_url": "https://api.github.com/users/ddtxra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ddtxra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ddtxra/subscriptions", + "organizations_url": "https://api.github.com/users/ddtxra/orgs", + "repos_url": "https://api.github.com/users/ddtxra/repos", + "events_url": "https://api.github.com/users/ddtxra/events{/privacy}", + "received_events_url": "https://api.github.com/users/ddtxra/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 3, + "created_at": "2015-02-13T16:38:16Z", + "updated_at": "2015-02-24T22:15:14Z", + "closed_at": "2015-02-24T22:15:14Z", + "author_association": "CONTRIBUTOR", + "body": "Hello,\nThanks for this wonderful library!\n\nI would like the library to support github trees, is it foreseen (https://developer.github.com/v3/git/trees/)?\nFor instance I need to retrieve this:\nhttps://api.github.com/repos/calipho-sib/nextprot-docs/git/trees/master?recursive=1\n\nIf you would like I can try to implement this feature and I make a pull request?\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/152", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/152/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/152/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/152/events", + "html_url": "https://github.com/github-api/github-api/issues/152", + "id": 56969535, + "node_id": "MDU6SXNzdWU1Njk2OTUzNQ==", + "number": 152, + "title": "NPE during tag.getCommit().getLastStatus()", + "user": { + "login": "vbauer", + "id": 578021, + "node_id": "MDQ6VXNlcjU3ODAyMQ==", + "avatar_url": "https://avatars0.githubusercontent.com/u/578021?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vbauer", + "html_url": "https://github.com/vbauer", + "followers_url": "https://api.github.com/users/vbauer/followers", + "following_url": "https://api.github.com/users/vbauer/following{/other_user}", + "gists_url": "https://api.github.com/users/vbauer/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vbauer/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vbauer/subscriptions", + "organizations_url": "https://api.github.com/users/vbauer/orgs", + "repos_url": "https://api.github.com/users/vbauer/repos", + "events_url": "https://api.github.com/users/vbauer/events{/privacy}", + "received_events_url": "https://api.github.com/users/vbauer/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2015-02-08T21:52:26Z", + "updated_at": "2015-02-15T17:06:06Z", + "closed_at": "2015-02-15T17:06:06Z", + "author_association": "NONE", + "body": "NPE on the line \"final GHCommitStatus lastStatus = commit.getLastStatus();\", because owner is null.\n\n``` java\n public Date getDate(final GHTag tag) throws Exception {\n final GHCommit commit = tag.getCommit();\n final GHCommitStatus lastStatus = commit.getLastStatus();\n return lastStatus.getCreatedAt();\n }\n```\n\nIt looks like there is no way to retrieve information about tag/commit date.\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/150", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/150/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/150/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/150/events", + "html_url": "https://github.com/github-api/github-api/issues/150", + "id": 55156508, + "node_id": "MDU6SXNzdWU1NTE1NjUwOA==", + "number": 150, + "title": "Incorrect behavior of GHRepository.getReadme", + "user": { + "login": "vbauer", + "id": 578021, + "node_id": "MDQ6VXNlcjU3ODAyMQ==", + "avatar_url": "https://avatars0.githubusercontent.com/u/578021?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vbauer", + "html_url": "https://github.com/vbauer", + "followers_url": "https://api.github.com/users/vbauer/followers", + "following_url": "https://api.github.com/users/vbauer/following{/other_user}", + "gists_url": "https://api.github.com/users/vbauer/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vbauer/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vbauer/subscriptions", + "organizations_url": "https://api.github.com/users/vbauer/orgs", + "repos_url": "https://api.github.com/users/vbauer/repos", + "events_url": "https://api.github.com/users/vbauer/events{/privacy}", + "received_events_url": "https://api.github.com/users/vbauer/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 3, + "created_at": "2015-01-22T14:05:12Z", + "updated_at": "2015-02-15T19:35:04Z", + "closed_at": "2015-02-15T14:32:04Z", + "author_association": "NONE", + "body": "I've got the following error, trying to fetch README file from https://github.com/matshofman/Android-RSS-Reader-Library:\n\n```\njava.io.FileNotFoundException: https://api.github.com/repos/matshofman/Android-RSS-Reader-Library/contents/readme\n at sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1834) ~[na:1.8.0_11]\n at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1439) ~[na:1.8.0_11]\n at sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(HttpsURLConnectionImpl.java:254) ~[na:1.8.0_11]\n at org.kohsuke.github.Requester.parse(Requester.java:383) ~[github-api-1.59.jar:na]\n at org.kohsuke.github.Requester._to(Requester.java:185) ~[github-api-1.59.jar:na]\n at org.kohsuke.github.Requester.to(Requester.java:160) ~[github-api-1.59.jar:na]\n at org.kohsuke.github.GHRepository.getFileContent(GHRepository.java:917) ~[github-api-1.59.jar:na]\n at org.kohsuke.github.GHRepository.getFileContent(GHRepository.java:907) ~[github-api-1.59.jar:na]\n at org.kohsuke.github.GHRepository.getReadme(GHRepository.java:939) ~[github-api-1.59.jar:na]\n at com.android.arsenal.service.impl.ConverterServiceImpl.convertRepository(ConverterServiceImpl.java:62) ~[classes/:na]\n at com.android.arsenal.service.impl.ProcessorServiceImpl.process(ProcessorServiceImpl.java:135) ~[classes/:na]\n at com.android.arsenal.service.impl.ProcessorServiceImpl.access$100(ProcessorServiceImpl.java:33) ~[classes/:na]\n at com.android.arsenal.service.impl.ProcessorServiceImpl$2.run(ProcessorServiceImpl.java:99) ~[classes/:na]\n at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) [na:1.8.0_11]\n at java.util.concurrent.FutureTask.run(FutureTask.java:266) [na:1.8.0_11]\n at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) [na:1.8.0_11]\n at java.util.concurrent.FutureTask.run(FutureTask.java:266) [na:1.8.0_11]\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142) [na:1.8.0_11]\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617) [na:1.8.0_11]\n at java.lang.Thread.run(Thread.java:745) [na:1.8.0_11]\n```\n\nThe reason of this problem that readme-file was called \"README.markdown\" and github-api doesn't use specific Github API to fetch info about README. It just tries to download \"readme\" file from repository.\n\nAdditional information could be found here: https://developer.github.com/v3/repos/contents/\n\nAPI call should be like this: `GET /repos/:owner/:repo/readme`\n\nUPD: It will be also useful to add method getReadmHtml and use 'application/vnd.github.VERSION.html' to retrieve HTML document.\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/149", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/149/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/149/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/149/events", + "html_url": "https://github.com/github-api/github-api/issues/149", + "id": 55059781, + "node_id": "MDU6SXNzdWU1NTA1OTc4MQ==", + "number": 149, + "title": "Make public GHRepository.getOwnerName", + "user": { + "login": "vbauer", + "id": 578021, + "node_id": "MDQ6VXNlcjU3ODAyMQ==", + "avatar_url": "https://avatars0.githubusercontent.com/u/578021?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vbauer", + "html_url": "https://github.com/vbauer", + "followers_url": "https://api.github.com/users/vbauer/followers", + "following_url": "https://api.github.com/users/vbauer/following{/other_user}", + "gists_url": "https://api.github.com/users/vbauer/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vbauer/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vbauer/subscriptions", + "organizations_url": "https://api.github.com/users/vbauer/orgs", + "repos_url": "https://api.github.com/users/vbauer/repos", + "events_url": "https://api.github.com/users/vbauer/events{/privacy}", + "received_events_url": "https://api.github.com/users/vbauer/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2015-01-21T18:45:49Z", + "updated_at": "2015-02-15T16:58:37Z", + "closed_at": "2015-02-15T16:58:37Z", + "author_association": "NONE", + "body": "" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/148", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/148/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/148/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/148/events", + "html_url": "https://github.com/github-api/github-api/issues/148", + "id": 54950934, + "node_id": "MDU6SXNzdWU1NDk1MDkzNA==", + "number": 148, + "title": "Add information about thread-safety in Javadoc", + "user": { + "login": "vbauer", + "id": 578021, + "node_id": "MDQ6VXNlcjU3ODAyMQ==", + "avatar_url": "https://avatars0.githubusercontent.com/u/578021?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vbauer", + "html_url": "https://github.com/vbauer", + "followers_url": "https://api.github.com/users/vbauer/followers", + "following_url": "https://api.github.com/users/vbauer/following{/other_user}", + "gists_url": "https://api.github.com/users/vbauer/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vbauer/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vbauer/subscriptions", + "organizations_url": "https://api.github.com/users/vbauer/orgs", + "repos_url": "https://api.github.com/users/vbauer/repos", + "events_url": "https://api.github.com/users/vbauer/events{/privacy}", + "received_events_url": "https://api.github.com/users/vbauer/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2015-01-20T22:37:55Z", + "updated_at": "2015-02-15T16:56:57Z", + "closed_at": "2015-02-15T16:56:57Z", + "author_association": "NONE", + "body": "Especially, it is interesting to know:\nIs it possible to use `GitHub` instance in the few concurrent threads?\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/147", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/147/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/147/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/147/events", + "html_url": "https://github.com/github-api/github-api/issues/147", + "id": 54937159, + "node_id": "MDU6SXNzdWU1NDkzNzE1OQ==", + "number": 147, + "title": "Add API to retrieve list of contributors", + "user": { + "login": "vbauer", + "id": 578021, + "node_id": "MDQ6VXNlcjU3ODAyMQ==", + "avatar_url": "https://avatars0.githubusercontent.com/u/578021?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vbauer", + "html_url": "https://github.com/vbauer", + "followers_url": "https://api.github.com/users/vbauer/followers", + "following_url": "https://api.github.com/users/vbauer/following{/other_user}", + "gists_url": "https://api.github.com/users/vbauer/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vbauer/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vbauer/subscriptions", + "organizations_url": "https://api.github.com/users/vbauer/orgs", + "repos_url": "https://api.github.com/users/vbauer/repos", + "events_url": "https://api.github.com/users/vbauer/events{/privacy}", + "received_events_url": "https://api.github.com/users/vbauer/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2015-01-20T20:46:49Z", + "updated_at": "2015-02-15T16:51:03Z", + "closed_at": "2015-02-15T16:51:03Z", + "author_association": "NONE", + "body": "Now, I'm using the following workaround:\n\njava\n\n```\n public GHUser[] getContributors(final GHRepository repository) throws Exception {\n final Field field = GHRepository.class.getDeclaredField(\"root\");\n field.setAccessible(true);\n final GitHub gitHub = (GitHub) field.get(repository);\n\n final GHUser owner = repository.getOwner();\n final String login = owner.getLogin();\n final String name = repository.getName();\n\n final Method retrieveMethod = GitHub.class.getDeclaredMethod(\"retrieve\");\n retrieveMethod.setAccessible(true);\n final Object request = retrieveMethod.invoke(gitHub);\n\n final Method toMethod = request.getClass().getDeclaredMethod(\"to\", String.class, Class.class);\n toMethod.setAccessible(true);\n return (GHUser[]) toMethod.invoke(request, \"/repos/\" + login + \"/\" + name + \"/contributors\", GHUser[].class);\n }\n```\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/146", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/146/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/146/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/146/events", + "html_url": "https://github.com/github-api/github-api/pull/146", + "id": 53012821, + "node_id": "MDExOlB1bGxSZXF1ZXN0MjY2MjkwMjE=", + "number": 146, + "title": "fix #145 GHTeam.getMembers() does not page properly", + "user": { + "login": "if6was9", + "id": 463742, + "node_id": "MDQ6VXNlcjQ2Mzc0Mg==", + "avatar_url": "https://avatars0.githubusercontent.com/u/463742?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/if6was9", + "html_url": "https://github.com/if6was9", + "followers_url": "https://api.github.com/users/if6was9/followers", + "following_url": "https://api.github.com/users/if6was9/following{/other_user}", + "gists_url": "https://api.github.com/users/if6was9/gists{/gist_id}", + "starred_url": "https://api.github.com/users/if6was9/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/if6was9/subscriptions", + "organizations_url": "https://api.github.com/users/if6was9/orgs", + "repos_url": "https://api.github.com/users/if6was9/repos", + "events_url": "https://api.github.com/users/if6was9/events{/privacy}", + "received_events_url": "https://api.github.com/users/if6was9/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 4, + "created_at": "2014-12-28T23:42:08Z", + "updated_at": "2015-02-14T14:41:28Z", + "closed_at": "2015-02-14T14:41:28Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/146", + "html_url": "https://github.com/github-api/github-api/pull/146", + "diff_url": "https://github.com/github-api/github-api/pull/146.diff", + "patch_url": "https://github.com/github-api/github-api/pull/146.patch" + }, + "body": "GHTeam.getMembers() would only return the first 30 members of an organization. This fixes that by reading each page of results.\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/145", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/145/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/145/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/145/events", + "html_url": "https://github.com/github-api/github-api/issues/145", + "id": 53006362, + "node_id": "MDU6SXNzdWU1MzAwNjM2Mg==", + "number": 145, + "title": "GHTeam.getMembers() response does not include all users if user count >30", + "user": { + "login": "if6was9", + "id": 463742, + "node_id": "MDQ6VXNlcjQ2Mzc0Mg==", + "avatar_url": "https://avatars0.githubusercontent.com/u/463742?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/if6was9", + "html_url": "https://github.com/if6was9", + "followers_url": "https://api.github.com/users/if6was9/followers", + "following_url": "https://api.github.com/users/if6was9/following{/other_user}", + "gists_url": "https://api.github.com/users/if6was9/gists{/gist_id}", + "starred_url": "https://api.github.com/users/if6was9/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/if6was9/subscriptions", + "organizations_url": "https://api.github.com/users/if6was9/orgs", + "repos_url": "https://api.github.com/users/if6was9/repos", + "events_url": "https://api.github.com/users/if6was9/events{/privacy}", + "received_events_url": "https://api.github.com/users/if6was9/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2014-12-28T18:24:18Z", + "updated_at": "2015-02-14T14:41:28Z", + "closed_at": "2015-02-14T14:41:28Z", + "author_association": "NONE", + "body": "I have not gotten to the bottom of why this is happening, but getMembers() returns at most 30 members, even if the team has more.\n\nI have a strong suspicion that the API is returning paged results but the response processing is not fetching the pages.\n\nWill submit a PR if I can get it fixed.\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/144", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/144/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/144/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/144/events", + "html_url": "https://github.com/github-api/github-api/issues/144", + "id": 52643220, + "node_id": "MDU6SXNzdWU1MjY0MzIyMA==", + "number": 144, + "title": "Parsing a push event payload doesn't get the repository", + "user": { + "login": "turt2live", + "id": 1190097, + "node_id": "MDQ6VXNlcjExOTAwOTc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/1190097?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/turt2live", + "html_url": "https://github.com/turt2live", + "followers_url": "https://api.github.com/users/turt2live/followers", + "following_url": "https://api.github.com/users/turt2live/following{/other_user}", + "gists_url": "https://api.github.com/users/turt2live/gists{/gist_id}", + "starred_url": "https://api.github.com/users/turt2live/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/turt2live/subscriptions", + "organizations_url": "https://api.github.com/users/turt2live/orgs", + "repos_url": "https://api.github.com/users/turt2live/repos", + "events_url": "https://api.github.com/users/turt2live/events{/privacy}", + "received_events_url": "https://api.github.com/users/turt2live/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2014-12-22T11:56:24Z", + "updated_at": "2015-02-15T16:42:40Z", + "closed_at": "2015-02-15T16:42:40Z", + "author_association": "NONE", + "body": "The `GHEventPayload.Push` class does not contain a way to get the `GHRepository` that was pushed to despite the [GitHub API sending it](https://developer.github.com/v3/activity/events/types/#pushevent). \n" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/__files/repositories_617210_issues-ab269330-3eb7-4ec1-9211-ecc8d0d70701.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/__files/repositories_617210_issues-ab269330-3eb7-4ec1-9211-ecc8d0d70701.json new file mode 100644 index 0000000000..8669e8b5f8 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/__files/repositories_617210_issues-ab269330-3eb7-4ec1-9211-ecc8d0d70701.json @@ -0,0 +1,1430 @@ +[ + { + "url": "https://api.github.com/repos/github-api/github-api/issues/206", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/206/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/206/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/206/events", + "html_url": "https://github.com/github-api/github-api/pull/206", + "id": 94849442, + "node_id": "MDExOlB1bGxSZXF1ZXN0Mzk4NzQ4MzQ=", + "number": 206, + "title": "Specified the GET", + "user": { + "login": "torodev", + "id": 12505974, + "node_id": "MDQ6VXNlcjEyNTA1OTc0", + "avatar_url": "https://avatars1.githubusercontent.com/u/12505974?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/torodev", + "html_url": "https://github.com/torodev", + "followers_url": "https://api.github.com/users/torodev/followers", + "following_url": "https://api.github.com/users/torodev/following{/other_user}", + "gists_url": "https://api.github.com/users/torodev/gists{/gist_id}", + "starred_url": "https://api.github.com/users/torodev/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/torodev/subscriptions", + "organizations_url": "https://api.github.com/users/torodev/orgs", + "repos_url": "https://api.github.com/users/torodev/repos", + "events_url": "https://api.github.com/users/torodev/events{/privacy}", + "received_events_url": "https://api.github.com/users/torodev/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2015-07-14T01:49:32Z", + "updated_at": "2015-07-17T10:24:48Z", + "closed_at": "2015-07-17T10:24:48Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/206", + "html_url": "https://github.com/github-api/github-api/pull/206", + "diff_url": "https://github.com/github-api/github-api/pull/206.diff", + "patch_url": "https://github.com/github-api/github-api/pull/206.patch" + }, + "body": "Previously doesn't specify the HTTP method to perform\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/205", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/205/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/205/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/205/events", + "html_url": "https://github.com/github-api/github-api/pull/205", + "id": 93239043, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzkyNTI3NDA=", + "number": 205, + "title": "Fix NPE found when resolving issues from search api", + "user": { + "login": "stephenc", + "id": 209336, + "node_id": "MDQ6VXNlcjIwOTMzNg==", + "avatar_url": "https://avatars2.githubusercontent.com/u/209336?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/stephenc", + "html_url": "https://github.com/stephenc", + "followers_url": "https://api.github.com/users/stephenc/followers", + "following_url": "https://api.github.com/users/stephenc/following{/other_user}", + "gists_url": "https://api.github.com/users/stephenc/gists{/gist_id}", + "starred_url": "https://api.github.com/users/stephenc/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/stephenc/subscriptions", + "organizations_url": "https://api.github.com/users/stephenc/orgs", + "repos_url": "https://api.github.com/users/stephenc/repos", + "events_url": "https://api.github.com/users/stephenc/events{/privacy}", + "received_events_url": "https://api.github.com/users/stephenc/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 6, + "created_at": "2015-07-06T10:07:32Z", + "updated_at": "2015-07-06T21:23:03Z", + "closed_at": "2015-07-06T21:22:46Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/205", + "html_url": "https://github.com/github-api/github-api/pull/205", + "diff_url": "https://github.com/github-api/github-api/pull/205.diff", + "patch_url": "https://github.com/github-api/github-api/pull/205.patch" + }, + "body": "@reviewbybees\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/204", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/204/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/204/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/204/events", + "html_url": "https://github.com/github-api/github-api/pull/204", + "id": 93124984, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzkyMjMzMDE=", + "number": 204, + "title": "add ping event to GH events enum", + "user": { + "login": "lanwen", + "id": 1964214, + "node_id": "MDQ6VXNlcjE5NjQyMTQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/1964214?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/lanwen", + "html_url": "https://github.com/lanwen", + "followers_url": "https://api.github.com/users/lanwen/followers", + "following_url": "https://api.github.com/users/lanwen/following{/other_user}", + "gists_url": "https://api.github.com/users/lanwen/gists{/gist_id}", + "starred_url": "https://api.github.com/users/lanwen/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/lanwen/subscriptions", + "organizations_url": "https://api.github.com/users/lanwen/orgs", + "repos_url": "https://api.github.com/users/lanwen/repos", + "events_url": "https://api.github.com/users/lanwen/events{/privacy}", + "received_events_url": "https://api.github.com/users/lanwen/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 3, + "created_at": "2015-07-05T16:38:37Z", + "updated_at": "2015-07-05T18:09:35Z", + "closed_at": "2015-07-05T16:57:20Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/204", + "html_url": "https://github.com/github-api/github-api/pull/204", + "diff_url": "https://github.com/github-api/github-api/pull/204.diff", + "patch_url": "https://github.com/github-api/github-api/pull/204.patch" + }, + "body": "https://developer.github.com/webhooks/#ping-event\n\n\n\n[\"Review](https://reviewable.io/reviews/kohsuke/github-api/204)\n\n\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/203", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/203/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/203/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/203/events", + "html_url": "https://github.com/github-api/github-api/pull/203", + "id": 91190898, + "node_id": "MDExOlB1bGxSZXF1ZXN0Mzg2MjgwNTM=", + "number": 203, + "title": "GitHub API have changed the semantics of /user/repos API", + "user": { + "login": "lucamilanesio", + "id": 182893, + "node_id": "MDQ6VXNlcjE4Mjg5Mw==", + "avatar_url": "https://avatars3.githubusercontent.com/u/182893?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/lucamilanesio", + "html_url": "https://github.com/lucamilanesio", + "followers_url": "https://api.github.com/users/lucamilanesio/followers", + "following_url": "https://api.github.com/users/lucamilanesio/following{/other_user}", + "gists_url": "https://api.github.com/users/lucamilanesio/gists{/gist_id}", + "starred_url": "https://api.github.com/users/lucamilanesio/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/lucamilanesio/subscriptions", + "organizations_url": "https://api.github.com/users/lucamilanesio/orgs", + "repos_url": "https://api.github.com/users/lucamilanesio/repos", + "events_url": "https://api.github.com/users/lucamilanesio/events{/privacy}", + "received_events_url": "https://api.github.com/users/lucamilanesio/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 5, + "created_at": "2015-06-26T08:39:09Z", + "updated_at": "2018-03-02T17:40:22Z", + "closed_at": "2015-07-17T10:52:46Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/203", + "html_url": "https://github.com/github-api/github-api/pull/203", + "diff_url": "https://github.com/github-api/github-api/pull/203.diff", + "patch_url": "https://github.com/github-api/github-api/pull/203.patch" + }, + "body": "It seems that since a couple of days (or weeks?) the /user/repos is returning\n ALL the repositories that the user has access or collaborates to whilst previously\n were only the ones that belong to him.\n\n```\nJavaDoc updated in order to avoid getting unwanted results and introduced as well\nthe possibility to filter a specific type of repository to be returned:\n- All (the GitHub's default)\n- Owner (the user's repos)\n- Public / Private (public or private repos)\n- Member (the user collaborates to)\n```\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/202", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/202/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/202/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/202/events", + "html_url": "https://github.com/github-api/github-api/issues/202", + "id": 90738294, + "node_id": "MDU6SXNzdWU5MDczODI5NA==", + "number": 202, + "title": "Some features of this plugin no longer work with the recent changes to api.github.com", + "user": { + "login": "neaket360pi", + "id": 4418194, + "node_id": "MDQ6VXNlcjQ0MTgxOTQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/4418194?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/neaket360pi", + "html_url": "https://github.com/neaket360pi", + "followers_url": "https://api.github.com/users/neaket360pi/followers", + "following_url": "https://api.github.com/users/neaket360pi/following{/other_user}", + "gists_url": "https://api.github.com/users/neaket360pi/gists{/gist_id}", + "starred_url": "https://api.github.com/users/neaket360pi/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/neaket360pi/subscriptions", + "organizations_url": "https://api.github.com/users/neaket360pi/orgs", + "repos_url": "https://api.github.com/users/neaket360pi/repos", + "events_url": "https://api.github.com/users/neaket360pi/events{/privacy}", + "received_events_url": "https://api.github.com/users/neaket360pi/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 3, + "created_at": "2015-06-24T17:27:04Z", + "updated_at": "2015-12-01T16:28:24Z", + "closed_at": "2015-12-01T16:28:24Z", + "author_association": "NONE", + "body": "On June 24th, GitHub made some breaking changes to the api. See https://developer.github.com/changes/2015-06-10-breaking-changes-to-organization-permissions-coming-on-june-24/\n\nI am currently using the Jenkins GitHub Oauth plugin which uses the `getMyOrganizations` method defined at https://github.com/kohsuke/github-api/blob/master/src/main/java/org/kohsuke/github/GitHub.java#L333 \n\nUnfortunately this method relies on the API endpoint https://api.github.com/users/orgs which no longer works. \n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/201", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/201/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/201/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/201/events", + "html_url": "https://github.com/github-api/github-api/pull/201", + "id": 88644891, + "node_id": "MDExOlB1bGxSZXF1ZXN0Mzc3NjY0NTY=", + "number": 201, + "title": "Add support for update/delete operations on issue comments", + "user": { + "login": "henryju", + "id": 281596, + "node_id": "MDQ6VXNlcjI4MTU5Ng==", + "avatar_url": "https://avatars3.githubusercontent.com/u/281596?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/henryju", + "html_url": "https://github.com/henryju", + "followers_url": "https://api.github.com/users/henryju/followers", + "following_url": "https://api.github.com/users/henryju/following{/other_user}", + "gists_url": "https://api.github.com/users/henryju/gists{/gist_id}", + "starred_url": "https://api.github.com/users/henryju/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/henryju/subscriptions", + "organizations_url": "https://api.github.com/users/henryju/orgs", + "repos_url": "https://api.github.com/users/henryju/repos", + "events_url": "https://api.github.com/users/henryju/events{/privacy}", + "received_events_url": "https://api.github.com/users/henryju/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2015-06-16T07:28:34Z", + "updated_at": "2015-07-17T10:29:49Z", + "closed_at": "2015-07-17T10:29:49Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/201", + "html_url": "https://github.com/github-api/github-api/pull/201", + "diff_url": "https://github.com/github-api/github-api/pull/201.diff", + "patch_url": "https://github.com/github-api/github-api/pull/201.patch" + }, + "body": "" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/200", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/200/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/200/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/200/events", + "html_url": "https://github.com/github-api/github-api/pull/200", + "id": 88450804, + "node_id": "MDExOlB1bGxSZXF1ZXN0Mzc3MDA0MjE=", + "number": 200, + "title": "fix for unused json map when method with body, but body is null", + "user": { + "login": "lanwen", + "id": 1964214, + "node_id": "MDQ6VXNlcjE5NjQyMTQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/1964214?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/lanwen", + "html_url": "https://github.com/lanwen", + "followers_url": "https://api.github.com/users/lanwen/followers", + "following_url": "https://api.github.com/users/lanwen/following{/other_user}", + "gists_url": "https://api.github.com/users/lanwen/gists{/gist_id}", + "starred_url": "https://api.github.com/users/lanwen/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/lanwen/subscriptions", + "organizations_url": "https://api.github.com/users/lanwen/orgs", + "repos_url": "https://api.github.com/users/lanwen/repos", + "events_url": "https://api.github.com/users/lanwen/events{/privacy}", + "received_events_url": "https://api.github.com/users/lanwen/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 3, + "created_at": "2015-06-15T14:57:52Z", + "updated_at": "2015-06-15T18:37:14Z", + "closed_at": "2015-06-15T17:38:14Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/200", + "html_url": "https://github.com/github-api/github-api/pull/200", + "diff_url": "https://github.com/github-api/github-api/pull/200.diff", + "patch_url": "https://github.com/github-api/github-api/pull/200.patch" + }, + "body": "fixes regression from b976e0ef4ef70f26b8d75a1a847b251f8c895e62\n\n\n\n[\"Review](https://reviewable.io/reviews/kohsuke/github-api/200)\n\n\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/199", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/199/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/199/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/199/events", + "html_url": "https://github.com/github-api/github-api/issues/199", + "id": 87809196, + "node_id": "MDU6SXNzdWU4NzgwOTE5Ng==", + "number": 199, + "title": "Add an option to get the id of an event", + "user": { + "login": "Techcable", + "id": 4615889, + "node_id": "MDQ6VXNlcjQ2MTU4ODk=", + "avatar_url": "https://avatars2.githubusercontent.com/u/4615889?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Techcable", + "html_url": "https://github.com/Techcable", + "followers_url": "https://api.github.com/users/Techcable/followers", + "following_url": "https://api.github.com/users/Techcable/following{/other_user}", + "gists_url": "https://api.github.com/users/Techcable/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Techcable/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Techcable/subscriptions", + "organizations_url": "https://api.github.com/users/Techcable/orgs", + "repos_url": "https://api.github.com/users/Techcable/repos", + "events_url": "https://api.github.com/users/Techcable/events{/privacy}", + "received_events_url": "https://api.github.com/users/Techcable/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2015-06-12T18:15:44Z", + "updated_at": "2015-12-01T16:03:56Z", + "closed_at": "2015-12-01T16:03:56Z", + "author_association": "NONE", + "body": "All events start with an 'event id' like this:\n\n``` json\n {\n \"id\": \"2834753425\",\n \"type\": \"ForkEvent\",\n \"actor\": {\n \"id\": 8795909,\n \"login\": \"Prismarine\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/Prismarine\",\n \"avatar_url\": \"https://avatars.githubusercontent.com/u/8795909?\"\n },\n \"repo\": {\n \"id\": 29747510,\n \"name\": \"Techcable/mc-dev\",\n \"url\": \"https://api.github.com/repos/Techcable/mc-dev\"\n },\n```\n\nCould you please add a method to get the event id from the api?\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/198", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/198/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/198/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/198/events", + "html_url": "https://github.com/github-api/github-api/pull/198", + "id": 87317875, + "node_id": "MDExOlB1bGxSZXF1ZXN0Mzc0NTUxNDE=", + "number": 198, + "title": "fix for GH Enterprise which does not have rate limit reset field", + "user": { + "login": "lanwen", + "id": 1964214, + "node_id": "MDQ6VXNlcjE5NjQyMTQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/1964214?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/lanwen", + "html_url": "https://github.com/lanwen", + "followers_url": "https://api.github.com/users/lanwen/followers", + "following_url": "https://api.github.com/users/lanwen/following{/other_user}", + "gists_url": "https://api.github.com/users/lanwen/gists{/gist_id}", + "starred_url": "https://api.github.com/users/lanwen/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/lanwen/subscriptions", + "organizations_url": "https://api.github.com/users/lanwen/orgs", + "repos_url": "https://api.github.com/users/lanwen/repos", + "events_url": "https://api.github.com/users/lanwen/events{/privacy}", + "received_events_url": "https://api.github.com/users/lanwen/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 4, + "created_at": "2015-06-11T11:50:08Z", + "updated_at": "2015-06-11T21:51:00Z", + "closed_at": "2015-06-11T17:53:11Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/198", + "html_url": "https://github.com/github-api/github-api/pull/198", + "diff_url": "https://github.com/github-api/github-api/pull/198.diff", + "patch_url": "https://github.com/github-api/github-api/pull/198.patch" + }, + "body": "\n\n[\"Review](https://reviewable.io/reviews/kohsuke/github-api/198)\n\n\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/197", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/197/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/197/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/197/events", + "html_url": "https://github.com/github-api/github-api/pull/197", + "id": 87135046, + "node_id": "MDExOlB1bGxSZXF1ZXN0Mzc0MTM0ODg=", + "number": 197, + "title": "added Page Build", + "user": { + "login": "treeduck", + "id": 7660871, + "node_id": "MDQ6VXNlcjc2NjA4NzE=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7660871?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/treeduck", + "html_url": "https://github.com/treeduck", + "followers_url": "https://api.github.com/users/treeduck/followers", + "following_url": "https://api.github.com/users/treeduck/following{/other_user}", + "gists_url": "https://api.github.com/users/treeduck/gists{/gist_id}", + "starred_url": "https://api.github.com/users/treeduck/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/treeduck/subscriptions", + "organizations_url": "https://api.github.com/users/treeduck/orgs", + "repos_url": "https://api.github.com/users/treeduck/repos", + "events_url": "https://api.github.com/users/treeduck/events{/privacy}", + "received_events_url": "https://api.github.com/users/treeduck/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2015-06-10T22:54:17Z", + "updated_at": "2015-07-17T15:55:46Z", + "closed_at": "2015-07-17T10:35:20Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/197", + "html_url": "https://github.com/github-api/github-api/pull/197", + "diff_url": "https://github.com/github-api/github-api/pull/197.diff", + "patch_url": "https://github.com/github-api/github-api/pull/197.patch" + }, + "body": "" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/196", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/196/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/196/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/196/events", + "html_url": "https://github.com/github-api/github-api/issues/196", + "id": 85801053, + "node_id": "MDU6SXNzdWU4NTgwMTA1Mw==", + "number": 196, + "title": "Need documentation for how to clone a git repo to the disk", + "user": { + "login": "madhephaestus", + "id": 1254726, + "node_id": "MDQ6VXNlcjEyNTQ3MjY=", + "avatar_url": "https://avatars2.githubusercontent.com/u/1254726?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/madhephaestus", + "html_url": "https://github.com/madhephaestus", + "followers_url": "https://api.github.com/users/madhephaestus/followers", + "following_url": "https://api.github.com/users/madhephaestus/following{/other_user}", + "gists_url": "https://api.github.com/users/madhephaestus/gists{/gist_id}", + "starred_url": "https://api.github.com/users/madhephaestus/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/madhephaestus/subscriptions", + "organizations_url": "https://api.github.com/users/madhephaestus/orgs", + "repos_url": "https://api.github.com/users/madhephaestus/repos", + "events_url": "https://api.github.com/users/madhephaestus/events{/privacy}", + "received_events_url": "https://api.github.com/users/madhephaestus/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 3, + "created_at": "2015-06-06T18:56:25Z", + "updated_at": "2015-12-01T16:27:12Z", + "closed_at": "2015-12-01T16:22:21Z", + "author_association": "NONE", + "body": "I can not find the API equivalent of 'git clone .git' to pull the full contents of a repository to the local disk. I would also like to read from the dist a repository for local caching of files. Is this possible with github-api?\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/194", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/194/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/194/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/194/events", + "html_url": "https://github.com/github-api/github-api/issues/194", + "id": 81613385, + "node_id": "MDU6SXNzdWU4MTYxMzM4NQ==", + "number": 194, + "title": "NullPointerException in Requester.java", + "user": { + "login": "anderssonjohan", + "id": 435885, + "node_id": "MDQ6VXNlcjQzNTg4NQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/435885?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/anderssonjohan", + "html_url": "https://github.com/anderssonjohan", + "followers_url": "https://api.github.com/users/anderssonjohan/followers", + "following_url": "https://api.github.com/users/anderssonjohan/following{/other_user}", + "gists_url": "https://api.github.com/users/anderssonjohan/gists{/gist_id}", + "starred_url": "https://api.github.com/users/anderssonjohan/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/anderssonjohan/subscriptions", + "organizations_url": "https://api.github.com/users/anderssonjohan/orgs", + "repos_url": "https://api.github.com/users/anderssonjohan/repos", + "events_url": "https://api.github.com/users/anderssonjohan/events{/privacy}", + "received_events_url": "https://api.github.com/users/anderssonjohan/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 6, + "created_at": "2015-05-27T20:35:27Z", + "updated_at": "2015-06-11T14:33:23Z", + "closed_at": "2015-06-11T14:33:23Z", + "author_association": "NONE", + "body": "I got this nasty stacktrace when trying to set up a Jenkins instance with GitHub OAuth login.\nEverything worked fine for starters, but then it just started to throw this at me.\nMaybe there is some API throttling going on that isn't handled thourougly?\n\nI'm using Jenkins v1.615.\n\n```\njavax.servlet.ServletException: java.lang.NullPointerException\n at org.kohsuke.stapler.Stapler.tryInvoke(Stapler.java:796)\n at org.kohsuke.stapler.Stapler.invoke(Stapler.java:876)\n at org.kohsuke.stapler.MetaClass$4.doDispatch(MetaClass.java:211)\n at org.kohsuke.stapler.NameBasedDispatcher.dispatch(NameBasedDispatcher.java:53)\n at org.kohsuke.stapler.Stapler.tryInvoke(Stapler.java:746)\n at org.kohsuke.stapler.Stapler.invoke(Stapler.java:876)\n at org.kohsuke.stapler.Stapler.invoke(Stapler.java:649)\n at org.kohsuke.stapler.Stapler.service(Stapler.java:238)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:848)\n at org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:686)\n at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1494)\n at hudson.util.PluginServletFilter$1.doFilter(PluginServletFilter.java:123)\n at net.bull.javamelody.MonitoringFilter.doFilter(MonitoringFilter.java:198)\n at net.bull.javamelody.MonitoringFilter.doFilter(MonitoringFilter.java:176)\n at net.bull.javamelody.PluginMonitoringFilter.doFilter(PluginMonitoringFilter.java:85)\n at org.jvnet.hudson.plugins.monitoring.HudsonMonitoringFilter.doFilter(HudsonMonitoringFilter.java:99)\n at hudson.util.PluginServletFilter$1.doFilter(PluginServletFilter.java:120)\n at hudson.plugins.greenballs.GreenBallFilter.doFilter(GreenBallFilter.java:58)\n at hudson.util.PluginServletFilter$1.doFilter(PluginServletFilter.java:120)\n at hudson.util.PluginServletFilter.doFilter(PluginServletFilter.java:114)\n at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1482)\n at hudson.security.csrf.CrumbFilter.doFilter(CrumbFilter.java:48)\n at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1482)\n at hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:84)\n at hudson.security.UnwrapSecurityExceptionFilter.doFilter(UnwrapSecurityExceptionFilter.java:51)\n at hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)\n at jenkins.security.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:117)\n at hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)\n at org.acegisecurity.providers.anonymous.AnonymousProcessingFilter.doFilter(AnonymousProcessingFilter.java:125)\n at hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)\n at org.acegisecurity.ui.rememberme.RememberMeProcessingFilter.doFilter(RememberMeProcessingFilter.java:135)\n at hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)\n at org.acegisecurity.ui.AbstractProcessingFilter.doFilter(AbstractProcessingFilter.java:271)\n at hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)\n at jenkins.security.BasicHeaderProcessor.doFilter(BasicHeaderProcessor.java:93)\n at hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)\n at org.acegisecurity.context.HttpSessionContextIntegrationFilter.doFilter(HttpSessionContextIntegrationFilter.java:249)\n at hudson.security.HttpSessionContextIntegrationFilter2.doFilter(HttpSessionContextIntegrationFilter2.java:67)\n at hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)\n at hudson.security.ChainedServletFilter.doFilter(ChainedServletFilter.java:76)\n at hudson.security.HudsonFilter.doFilter(HudsonFilter.java:171)\n at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1482)\n at org.kohsuke.stapler.compression.CompressionFilter.doFilter(CompressionFilter.java:49)\n at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1482)\n at hudson.util.CharacterEncodingFilter.doFilter(CharacterEncodingFilter.java:81)\n at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1482)\n at org.kohsuke.stapler.DiagnosticThreadNameFilter.doFilter(DiagnosticThreadNameFilter.java:30)\n at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1474)\n at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:499)\n at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:137)\n at org.eclipse.jetty.security.SecurityHandler.handle(SecurityHandler.java:533)\n at org.eclipse.jetty.server.session.SessionHandler.doHandle(SessionHandler.java:231)\n at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1086)\n at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:428)\n at org.eclipse.jetty.server.session.SessionHandler.doScope(SessionHandler.java:193)\n at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1020)\n at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:135)\n at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:116)\n at org.eclipse.jetty.server.Server.handle(Server.java:370)\n at org.eclipse.jetty.server.AbstractHttpConnection.handleRequest(AbstractHttpConnection.java:489)\n at org.eclipse.jetty.server.AbstractHttpConnection.headerComplete(AbstractHttpConnection.java:949)\n at org.eclipse.jetty.server.AbstractHttpConnection$RequestHandler.headerComplete(AbstractHttpConnection.java:1011)\n at org.eclipse.jetty.http.HttpParser.parseNext(HttpParser.java:644)\n at org.eclipse.jetty.http.HttpParser.parseAvailable(HttpParser.java:235)\n at org.eclipse.jetty.server.AsyncHttpConnection.handle(AsyncHttpConnection.java:82)\n at org.eclipse.jetty.io.nio.SelectChannelEndPoint.handle(SelectChannelEndPoint.java:668)\n at org.eclipse.jetty.io.nio.SelectChannelEndPoint$1.run(SelectChannelEndPoint.java:52)\n at winstone.BoundedExecutorService$1.run(BoundedExecutorService.java:77)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)\n at java.lang.Thread.run(Unknown Source)\nCaused by: java.lang.NullPointerException\n at org.kohsuke.github.Requester.handleApiError(Requester.java:486)\n at org.kohsuke.github.Requester._to(Requester.java:245)\n at org.kohsuke.github.Requester.to(Requester.java:191)\n at org.kohsuke.github.GitHub.getMyself(GitHub.java:261)\n at org.kohsuke.github.GitHub.(GitHub.java:137)\n at org.kohsuke.github.GitHubBuilder.build(GitHubBuilder.java:195)\n at org.kohsuke.github.GitHub.connectUsingOAuth(GitHub.java:187)\n at org.jenkinsci.plugins.GithubAuthenticationToken.(GithubAuthenticationToken.java:87)\n at org.jenkinsci.plugins.GithubSecurityRealm.doFinishLogin(GithubSecurityRealm.java:386)\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)\n at java.lang.reflect.Method.invoke(Unknown Source)\n at org.kohsuke.stapler.Function$InstanceFunction.invoke(Function.java:298)\n at org.kohsuke.stapler.Function.bindAndInvoke(Function.java:161)\n at org.kohsuke.stapler.Function.bindAndInvokeAndServeResponse(Function.java:96)\n at org.kohsuke.stapler.MetaClass$1.doDispatch(MetaClass.java:121)\n at org.kohsuke.stapler.NameBasedDispatcher.dispatch(NameBasedDispatcher.java:53)\n at org.kohsuke.stapler.Stapler.tryInvoke(Stapler.java:746)\n ... 70 more\n```\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/193", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/193/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/193/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/193/events", + "html_url": "https://github.com/github-api/github-api/pull/193", + "id": 81448719, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzYzMDM4NjE=", + "number": 193, + "title": "Fix bug in Requester. The body would never get assembled.", + "user": { + "login": "yegorius", + "id": 309959, + "node_id": "MDQ6VXNlcjMwOTk1OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/309959?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/yegorius", + "html_url": "https://github.com/yegorius", + "followers_url": "https://api.github.com/users/yegorius/followers", + "following_url": "https://api.github.com/users/yegorius/following{/other_user}", + "gists_url": "https://api.github.com/users/yegorius/gists{/gist_id}", + "starred_url": "https://api.github.com/users/yegorius/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/yegorius/subscriptions", + "organizations_url": "https://api.github.com/users/yegorius/orgs", + "repos_url": "https://api.github.com/users/yegorius/repos", + "events_url": "https://api.github.com/users/yegorius/events{/privacy}", + "received_events_url": "https://api.github.com/users/yegorius/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2015-05-27T13:34:25Z", + "updated_at": "2015-09-30T12:38:44Z", + "closed_at": "2015-07-17T10:38:23Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/193", + "html_url": "https://github.com/github-api/github-api/pull/193", + "diff_url": "https://github.com/github-api/github-api/pull/193.diff", + "patch_url": "https://github.com/github-api/github-api/pull/193.patch" + }, + "body": "Eliminate dead code branch in Requester::buildRequest().\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/192", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/192/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/192/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/192/events", + "html_url": "https://github.com/github-api/github-api/pull/192", + "id": 76848976, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzU1NDgwOTU=", + "number": 192, + "title": "Enable creation and retrieval of org webhooks", + "user": { + "login": "chrisrhut", + "id": 1924951, + "node_id": "MDQ6VXNlcjE5MjQ5NTE=", + "avatar_url": "https://avatars1.githubusercontent.com/u/1924951?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/chrisrhut", + "html_url": "https://github.com/chrisrhut", + "followers_url": "https://api.github.com/users/chrisrhut/followers", + "following_url": "https://api.github.com/users/chrisrhut/following{/other_user}", + "gists_url": "https://api.github.com/users/chrisrhut/gists{/gist_id}", + "starred_url": "https://api.github.com/users/chrisrhut/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/chrisrhut/subscriptions", + "organizations_url": "https://api.github.com/users/chrisrhut/orgs", + "repos_url": "https://api.github.com/users/chrisrhut/repos", + "events_url": "https://api.github.com/users/chrisrhut/events{/privacy}", + "received_events_url": "https://api.github.com/users/chrisrhut/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2015-05-15T20:31:02Z", + "updated_at": "2015-07-17T11:09:52Z", + "closed_at": "2015-07-17T11:09:52Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/192", + "html_url": "https://github.com/github-api/github-api/pull/192", + "diff_url": "https://github.com/github-api/github-api/pull/192.diff", + "patch_url": "https://github.com/github-api/github-api/pull/192.patch" + }, + "body": "made GHHook abstract and created two concrete subclasses for org\nand repo hooks. Created utility class GHHooks to manage creation\nand retrieval of org/repo hooks with minimal code duplication. These\nare invoked by GHOrganization and GHRepository respectively.\n\nAdditional info on org webhooks here: https://developer.github.com/v3/orgs/hooks/\n\nNote: requires #189 to test creation of org/repo hooks\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/191", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/191/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/191/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/191/events", + "html_url": "https://github.com/github-api/github-api/issues/191", + "id": 76350040, + "node_id": "MDU6SXNzdWU3NjM1MDA0MA==", + "number": 191, + "title": "Dependency problems", + "user": { + "login": "yanickrochon", + "id": 78461, + "node_id": "MDQ6VXNlcjc4NDYx", + "avatar_url": "https://avatars0.githubusercontent.com/u/78461?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/yanickrochon", + "html_url": "https://github.com/yanickrochon", + "followers_url": "https://api.github.com/users/yanickrochon/followers", + "following_url": "https://api.github.com/users/yanickrochon/following{/other_user}", + "gists_url": "https://api.github.com/users/yanickrochon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/yanickrochon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/yanickrochon/subscriptions", + "organizations_url": "https://api.github.com/users/yanickrochon/orgs", + "repos_url": "https://api.github.com/users/yanickrochon/repos", + "events_url": "https://api.github.com/users/yanickrochon/events{/privacy}", + "received_events_url": "https://api.github.com/users/yanickrochon/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2015-05-14T12:51:07Z", + "updated_at": "2015-05-15T00:01:01Z", + "closed_at": "2015-05-15T00:01:01Z", + "author_association": "NONE", + "body": "```\nThe type com.squareup.okhttp.OkUrlFactory cannot be resolved. It is indirectly referenced from required .class files\n```\n\nI'm not sure how I can resolve this. My project is new, I'm not familiar with Maven, and I'm not sure what am I missing....\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/190", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/190/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/190/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/190/events", + "html_url": "https://github.com/github-api/github-api/pull/190", + "id": 74618200, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzUwNjMzNjg=", + "number": 190, + "title": "allow default branch to be set", + "user": { + "login": "if6was9", + "id": 463742, + "node_id": "MDQ6VXNlcjQ2Mzc0Mg==", + "avatar_url": "https://avatars0.githubusercontent.com/u/463742?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/if6was9", + "html_url": "https://github.com/if6was9", + "followers_url": "https://api.github.com/users/if6was9/followers", + "following_url": "https://api.github.com/users/if6was9/following{/other_user}", + "gists_url": "https://api.github.com/users/if6was9/gists{/gist_id}", + "starred_url": "https://api.github.com/users/if6was9/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/if6was9/subscriptions", + "organizations_url": "https://api.github.com/users/if6was9/orgs", + "repos_url": "https://api.github.com/users/if6was9/repos", + "events_url": "https://api.github.com/users/if6was9/events{/privacy}", + "received_events_url": "https://api.github.com/users/if6was9/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2015-05-09T08:06:49Z", + "updated_at": "2015-07-17T10:45:40Z", + "closed_at": "2015-07-17T10:45:40Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/190", + "html_url": "https://github.com/github-api/github-api/pull/190", + "diff_url": "https://github.com/github-api/github-api/pull/190.diff", + "patch_url": "https://github.com/github-api/github-api/pull/190.patch" + }, + "body": "GHRepository did not provide a method to set the default branch. \n\nNote that https://github.com/kohsuke/github-api/pull/189 is required for this to work. \n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/189", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/189/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/189/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/189/events", + "html_url": "https://github.com/github-api/github-api/pull/189", + "id": 74617885, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzUwNjMzMzI=", + "number": 189, + "title": "fixed regression that caused POST operations to be sent as GET", + "user": { + "login": "if6was9", + "id": 463742, + "node_id": "MDQ6VXNlcjQ2Mzc0Mg==", + "avatar_url": "https://avatars0.githubusercontent.com/u/463742?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/if6was9", + "html_url": "https://github.com/if6was9", + "followers_url": "https://api.github.com/users/if6was9/followers", + "following_url": "https://api.github.com/users/if6was9/following{/other_user}", + "gists_url": "https://api.github.com/users/if6was9/gists{/gist_id}", + "starred_url": "https://api.github.com/users/if6was9/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/if6was9/subscriptions", + "organizations_url": "https://api.github.com/users/if6was9/orgs", + "repos_url": "https://api.github.com/users/if6was9/repos", + "events_url": "https://api.github.com/users/if6was9/events{/privacy}", + "received_events_url": "https://api.github.com/users/if6was9/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2015-05-09T08:03:24Z", + "updated_at": "2015-07-17T10:39:52Z", + "closed_at": "2015-07-17T10:39:52Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/189", + "html_url": "https://github.com/github-api/github-api/pull/189", + "diff_url": "https://github.com/github-api/github-api/pull/189.diff", + "patch_url": "https://github.com/github-api/github-api/pull/189.patch" + }, + "body": "This fixes a major regression where operations that are supposed to POST data to the server were actually just issuing GETs.\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/188", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/188/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/188/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/188/events", + "html_url": "https://github.com/github-api/github-api/issues/188", + "id": 73772045, + "node_id": "MDU6SXNzdWU3Mzc3MjA0NQ==", + "number": 188, + "title": "JDK Version", + "user": { + "login": "mohamed-ennahdi", + "id": 6767325, + "node_id": "MDQ6VXNlcjY3NjczMjU=", + "avatar_url": "https://avatars0.githubusercontent.com/u/6767325?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mohamed-ennahdi", + "html_url": "https://github.com/mohamed-ennahdi", + "followers_url": "https://api.github.com/users/mohamed-ennahdi/followers", + "following_url": "https://api.github.com/users/mohamed-ennahdi/following{/other_user}", + "gists_url": "https://api.github.com/users/mohamed-ennahdi/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mohamed-ennahdi/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mohamed-ennahdi/subscriptions", + "organizations_url": "https://api.github.com/users/mohamed-ennahdi/orgs", + "repos_url": "https://api.github.com/users/mohamed-ennahdi/repos", + "events_url": "https://api.github.com/users/mohamed-ennahdi/events{/privacy}", + "received_events_url": "https://api.github.com/users/mohamed-ennahdi/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2015-05-06T23:40:58Z", + "updated_at": "2017-05-04T20:01:46Z", + "closed_at": "2015-12-01T15:58:26Z", + "author_association": "NONE", + "body": "github-api was developed with JDK 1.4?\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/187", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/187/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/187/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/187/events", + "html_url": "https://github.com/github-api/github-api/pull/187", + "id": 72451044, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzQ1NDI2OTY=", + "number": 187, + "title": "Recognize previous_file field in GHCommit.File", + "user": { + "login": "yegorius", + "id": 309959, + "node_id": "MDQ6VXNlcjMwOTk1OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/309959?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/yegorius", + "html_url": "https://github.com/yegorius", + "followers_url": "https://api.github.com/users/yegorius/followers", + "following_url": "https://api.github.com/users/yegorius/following{/other_user}", + "gists_url": "https://api.github.com/users/yegorius/gists{/gist_id}", + "starred_url": "https://api.github.com/users/yegorius/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/yegorius/subscriptions", + "organizations_url": "https://api.github.com/users/yegorius/orgs", + "repos_url": "https://api.github.com/users/yegorius/repos", + "events_url": "https://api.github.com/users/yegorius/events{/privacy}", + "received_events_url": "https://api.github.com/users/yegorius/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2015-05-01T15:10:38Z", + "updated_at": "2015-07-17T10:46:21Z", + "closed_at": "2015-07-17T10:46:21Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/187", + "html_url": "https://github.com/github-api/github-api/pull/187", + "diff_url": "https://github.com/github-api/github-api/pull/187.diff", + "patch_url": "https://github.com/github-api/github-api/pull/187.patch" + }, + "body": "This field appears in API response in case file has moved.\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/186", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/186/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/186/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/186/events", + "html_url": "https://github.com/github-api/github-api/issues/186", + "id": 72300355, + "node_id": "MDU6SXNzdWU3MjMwMDM1NQ==", + "number": 186, + "title": "Obtain Pushed Commit using GitHub API", + "user": { + "login": "mohamed-ennahdi", + "id": 6767325, + "node_id": "MDQ6VXNlcjY3NjczMjU=", + "avatar_url": "https://avatars0.githubusercontent.com/u/6767325?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mohamed-ennahdi", + "html_url": "https://github.com/mohamed-ennahdi", + "followers_url": "https://api.github.com/users/mohamed-ennahdi/followers", + "following_url": "https://api.github.com/users/mohamed-ennahdi/following{/other_user}", + "gists_url": "https://api.github.com/users/mohamed-ennahdi/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mohamed-ennahdi/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mohamed-ennahdi/subscriptions", + "organizations_url": "https://api.github.com/users/mohamed-ennahdi/orgs", + "repos_url": "https://api.github.com/users/mohamed-ennahdi/repos", + "events_url": "https://api.github.com/users/mohamed-ennahdi/events{/privacy}", + "received_events_url": "https://api.github.com/users/mohamed-ennahdi/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2015-04-30T22:34:19Z", + "updated_at": "2015-12-01T16:06:15Z", + "closed_at": "2015-12-01T16:06:15Z", + "author_association": "NONE", + "body": "Is it enough to use repo.listCommits() to get \"pushed\" commits?\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/185", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/185/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/185/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/185/events", + "html_url": "https://github.com/github-api/github-api/pull/185", + "id": 72099945, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzQ0Mzg0MTU=", + "number": 185, + "title": "Fixes #183: added a method listForks() to GHRepository", + "user": { + "login": "marc-guenther", + "id": 393230, + "node_id": "MDQ6VXNlcjM5MzIzMA==", + "avatar_url": "https://avatars3.githubusercontent.com/u/393230?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/marc-guenther", + "html_url": "https://github.com/marc-guenther", + "followers_url": "https://api.github.com/users/marc-guenther/followers", + "following_url": "https://api.github.com/users/marc-guenther/following{/other_user}", + "gists_url": "https://api.github.com/users/marc-guenther/gists{/gist_id}", + "starred_url": "https://api.github.com/users/marc-guenther/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/marc-guenther/subscriptions", + "organizations_url": "https://api.github.com/users/marc-guenther/orgs", + "repos_url": "https://api.github.com/users/marc-guenther/repos", + "events_url": "https://api.github.com/users/marc-guenther/events{/privacy}", + "received_events_url": "https://api.github.com/users/marc-guenther/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 6, + "created_at": "2015-04-30T08:33:04Z", + "updated_at": "2015-07-17T10:48:29Z", + "closed_at": "2015-07-17T10:47:17Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/185", + "html_url": "https://github.com/github-api/github-api/pull/185", + "diff_url": "https://github.com/github-api/github-api/pull/185.diff", + "patch_url": "https://github.com/github-api/github-api/pull/185.patch" + }, + "body": "listForks() will list all forks of a repository.\n\nAn optional sort argument is also supported.\n\nI did not know if list\\* or get\\* is the way to go, but as getForks() is already taken (it returns the number of forks), I decided to use listForks(), with an optional sort argument.\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/184", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/184/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/184/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/184/events", + "html_url": "https://github.com/github-api/github-api/issues/184", + "id": 72098068, + "node_id": "MDU6SXNzdWU3MjA5ODA2OA==", + "number": 184, + "title": "Enable this to work with GitHub Enterprise", + "user": { + "login": "clancychilds", + "id": 8244623, + "node_id": "MDQ6VXNlcjgyNDQ2MjM=", + "avatar_url": "https://avatars0.githubusercontent.com/u/8244623?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/clancychilds", + "html_url": "https://github.com/clancychilds", + "followers_url": "https://api.github.com/users/clancychilds/followers", + "following_url": "https://api.github.com/users/clancychilds/following{/other_user}", + "gists_url": "https://api.github.com/users/clancychilds/gists{/gist_id}", + "starred_url": "https://api.github.com/users/clancychilds/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/clancychilds/subscriptions", + "organizations_url": "https://api.github.com/users/clancychilds/orgs", + "repos_url": "https://api.github.com/users/clancychilds/repos", + "events_url": "https://api.github.com/users/clancychilds/events{/privacy}", + "received_events_url": "https://api.github.com/users/clancychilds/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2015-04-30T08:24:05Z", + "updated_at": "2015-05-05T06:44:59Z", + "closed_at": "2015-05-05T06:44:59Z", + "author_association": "NONE", + "body": "Putting this out there without much knowledge about GitHub Enterprise APIs.\n\nOur organization uses GitHub Enterprise hosted internally. We would love to integrate Gerrit, which uses this package, with it, but the GitHub API in here is currently a static final string: https://github.com/kohsuke/github-api/blob/master/src/main/java/org/kohsuke/github/GitHub.java#L558\n\nWould be very nice if there was a way to use this with the apis for an internal Enterprise instance of github.\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/183", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/183/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/183/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/183/events", + "html_url": "https://github.com/github-api/github-api/issues/183", + "id": 71697591, + "node_id": "MDU6SXNzdWU3MTY5NzU5MQ==", + "number": 183, + "title": "no way to list forks of a repository", + "user": { + "login": "marc-guenther", + "id": 393230, + "node_id": "MDQ6VXNlcjM5MzIzMA==", + "avatar_url": "https://avatars3.githubusercontent.com/u/393230?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/marc-guenther", + "html_url": "https://github.com/marc-guenther", + "followers_url": "https://api.github.com/users/marc-guenther/followers", + "following_url": "https://api.github.com/users/marc-guenther/following{/other_user}", + "gists_url": "https://api.github.com/users/marc-guenther/gists{/gist_id}", + "starred_url": "https://api.github.com/users/marc-guenther/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/marc-guenther/subscriptions", + "organizations_url": "https://api.github.com/users/marc-guenther/orgs", + "repos_url": "https://api.github.com/users/marc-guenther/repos", + "events_url": "https://api.github.com/users/marc-guenther/events{/privacy}", + "received_events_url": "https://api.github.com/users/marc-guenther/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2015-04-28T20:42:11Z", + "updated_at": "2015-07-17T10:47:20Z", + "closed_at": "2015-07-17T10:47:20Z", + "author_association": "CONTRIBUTOR", + "body": "Seems there is no way to list all the forks of a GHRepository. I only find methods to count them(?), and to check if it is a fork, and look for parent/source, and to create a fork.\n\nGithub API supports to [list forks](https://developer.github.com/v3/repos/forks/)\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/182", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/182/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/182/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/182/events", + "html_url": "https://github.com/github-api/github-api/pull/182", + "id": 71288224, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzQxNjk1NjQ=", + "number": 182, + "title": "Fix invalid URL for pull request comments update/delete", + "user": { + "login": "henryju", + "id": 281596, + "node_id": "MDQ6VXNlcjI4MTU5Ng==", + "avatar_url": "https://avatars3.githubusercontent.com/u/281596?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/henryju", + "html_url": "https://github.com/henryju", + "followers_url": "https://api.github.com/users/henryju/followers", + "following_url": "https://api.github.com/users/henryju/following{/other_user}", + "gists_url": "https://api.github.com/users/henryju/gists{/gist_id}", + "starred_url": "https://api.github.com/users/henryju/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/henryju/subscriptions", + "organizations_url": "https://api.github.com/users/henryju/orgs", + "repos_url": "https://api.github.com/users/henryju/repos", + "events_url": "https://api.github.com/users/henryju/events{/privacy}", + "received_events_url": "https://api.github.com/users/henryju/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 14, + "created_at": "2015-04-27T13:42:15Z", + "updated_at": "2015-07-17T10:47:50Z", + "closed_at": "2015-07-17T10:47:43Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/182", + "html_url": "https://github.com/github-api/github-api/pull/182", + "diff_url": "https://github.com/github-api/github-api/pull/182.diff", + "patch_url": "https://github.com/github-api/github-api/pull/182.patch" + }, + "body": "" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/181", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/181/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/181/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/181/events", + "html_url": "https://github.com/github-api/github-api/issues/181", + "id": 70777432, + "node_id": "MDU6SXNzdWU3MDc3NzQzMg==", + "number": 181, + "title": "Nothing is Fetched when calling repo.listNotifications();", + "user": { + "login": "mohamed-ennahdi", + "id": 6767325, + "node_id": "MDQ6VXNlcjY3NjczMjU=", + "avatar_url": "https://avatars0.githubusercontent.com/u/6767325?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mohamed-ennahdi", + "html_url": "https://github.com/mohamed-ennahdi", + "followers_url": "https://api.github.com/users/mohamed-ennahdi/followers", + "following_url": "https://api.github.com/users/mohamed-ennahdi/following{/other_user}", + "gists_url": "https://api.github.com/users/mohamed-ennahdi/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mohamed-ennahdi/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mohamed-ennahdi/subscriptions", + "organizations_url": "https://api.github.com/users/mohamed-ennahdi/orgs", + "repos_url": "https://api.github.com/users/mohamed-ennahdi/repos", + "events_url": "https://api.github.com/users/mohamed-ennahdi/events{/privacy}", + "received_events_url": "https://api.github.com/users/mohamed-ennahdi/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 5, + "created_at": "2015-04-24T19:44:01Z", + "updated_at": "2015-04-30T22:31:11Z", + "closed_at": "2015-04-30T22:31:11Z", + "author_association": "NONE", + "body": "Hello,\n\nI try to fetch notifications of a specific repository, but nothing is retrieved (See code below).\n\nWhat am I missing ?\n\nGHRepository repo = gh.getUser(\"blueimp\").getRepository(\"jQuery-File-Upload\");\nSystem.out.println(\"Start\");\nfor (GHThread t : repo.listNotifications().nonBlocking(true)) {\n // System.out.println(t.getReason());\n}\nSystem.out.println(\"Finish\");\n\nThank you,\nMohamed Ennahdi El Idrissi\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/180", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/180/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/180/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/180/events", + "html_url": "https://github.com/github-api/github-api/issues/180", + "id": 70015991, + "node_id": "MDU6SXNzdWU3MDAxNTk5MQ==", + "number": 180, + "title": "java.net.ProtocolException: DELETE does not support writing", + "user": { + "login": "varis", + "id": 65634, + "node_id": "MDQ6VXNlcjY1NjM0", + "avatar_url": "https://avatars0.githubusercontent.com/u/65634?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/varis", + "html_url": "https://github.com/varis", + "followers_url": "https://api.github.com/users/varis/followers", + "following_url": "https://api.github.com/users/varis/following{/other_user}", + "gists_url": "https://api.github.com/users/varis/gists{/gist_id}", + "starred_url": "https://api.github.com/users/varis/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/varis/subscriptions", + "organizations_url": "https://api.github.com/users/varis/orgs", + "repos_url": "https://api.github.com/users/varis/repos", + "events_url": "https://api.github.com/users/varis/events{/privacy}", + "received_events_url": "https://api.github.com/users/varis/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2015-04-22T04:03:18Z", + "updated_at": "2015-04-26T17:52:58Z", + "closed_at": "2015-04-26T17:52:58Z", + "author_association": "NONE", + "body": "run example from http://github-api.kohsuke.org/\n\n```\nGitHub github = GitHub.connect();\nGHRepository repo = github.createRepository(\n \"new-repository\",\"this is my new repository\",\n \"http://www.kohsuke.org/\",true/*public*/);\nrepo.delete();\n```\n\non android 4.4.4 API 19 and on delete got error\n\n----- begin exception -----\n04-21 23:58:06.992 1823-1836/? I/TestRunner﹕ java.net.ProtocolException: DELETE does not support writing\n at com.android.okhttp.internal.http.HttpURLConnectionImpl.initHttpEngine(HttpURLConnectionImpl.java:258)\n at com.android.okhttp.internal.http.HttpURLConnectionImpl.connect(HttpURLConnectionImpl.java:86)\n at com.android.okhttp.internal.http.HttpURLConnectionImpl.getOutputStream(HttpURLConnectionImpl.java:197)\n at com.android.okhttp.internal.http.HttpsURLConnectionImpl.getOutputStream(HttpsURLConnectionImpl.java:254)\n at org.kohsuke.github.Requester.buildRequest(Requester.java:299)\n at org.kohsuke.github.Requester._to(Requester.java:221)\n at org.kohsuke.github.Requester.to(Requester.java:191)\n at org.kohsuke.github.Requester.to(Requester.java:179)\n at org.kohsuke.github.GHRepository.delete(GHRepository.java:502)\n at com.example.varis.githubtest.ApplicationTest.test(ApplicationTest.java:25)\n at java.lang.reflect.Method.invokeNative(Native Method)\n at java.lang.reflect.Method.invoke(Method.java:515)\n at junit.framework.TestCase.runTest(TestCase.java:168)\n at junit.framework.TestCase.runBare(TestCase.java:134)\n at junit.framework.TestResult$1.protect(TestResult.java:115)\n at junit.framework.TestResult.runProtected(TestResult.java:133)\n at junit.framework.TestResult.run(TestResult.java:118)\n at junit.framework.TestCase.run(TestCase.java:124)\n at android.test.AndroidTestRunner.runTest(AndroidTestRunner.java:191)\n at android.test.AndroidTestRunner.runTest(AndroidTestRunner.java:176)\n at android.test.InstrumentationTestRunner.onStart(InstrumentationTestRunner.java:554)\n at android.app.Instrumentation$InstrumentationThread.run(Instrumentation.java:1701)\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/179", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/179/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/179/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/179/events", + "html_url": "https://github.com/github-api/github-api/pull/179", + "id": 68386833, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzMyNjAzMjM=", + "number": 179, + "title": "Fix NullPointerException on RateLimitHandler when handling API errors.", + "user": { + "login": "lskillen", + "id": 2248287, + "node_id": "MDQ6VXNlcjIyNDgyODc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/2248287?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/lskillen", + "html_url": "https://github.com/lskillen", + "followers_url": "https://api.github.com/users/lskillen/followers", + "following_url": "https://api.github.com/users/lskillen/following{/other_user}", + "gists_url": "https://api.github.com/users/lskillen/gists{/gist_id}", + "starred_url": "https://api.github.com/users/lskillen/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/lskillen/subscriptions", + "organizations_url": "https://api.github.com/users/lskillen/orgs", + "repos_url": "https://api.github.com/users/lskillen/repos", + "events_url": "https://api.github.com/users/lskillen/events{/privacy}", + "received_events_url": "https://api.github.com/users/lskillen/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 3, + "created_at": "2015-04-14T14:06:00Z", + "updated_at": "2015-04-20T00:03:50Z", + "closed_at": "2015-04-20T00:03:50Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/179", + "html_url": "https://github.com/github-api/github-api/pull/179", + "diff_url": "https://github.com/github-api/github-api/pull/179.diff", + "patch_url": "https://github.com/github-api/github-api/pull/179.patch" + }, + "body": "Hello!\n\nWe encountered a NullPointerException after the upgrade to 1.67 when rate limited by the GitHub API. Essentially it is because the call to `getMyself().getLogin()` failed during the construction of the GitHub object due to being rate limited. However, the RateLimitHandler object had not yet been set at that point in time within the GitHub object constructor. Fix is a simple statement movement.\n\nError within GitHub::handleApiError():\n\n```\n if (\"0\".equals(uc.getHeaderField(\"X-RateLimit-Remaining\"))) {\n root.rateLimitHandler.onError(e,uc); // rateLimitHandler is null\n }\n```\n\nRan the test suite locally after setting github authentication details:\n\n```\nResults :\n\nFailed tests: setLabels(org.kohsuke.github.PullRequestTest): expected:<1> but was:<0>\n setAssignee(org.kohsuke.github.PullRequestTest): expected: but was:\n\nTests in error:\n testMembership(org.kohsuke.github.AppTest): {\"message\":\"Must have push access to view repository collaborators.\",\"documentation_url\":\"https://developer.github.com/v3\"}\n testListDeployments(org.kohsuke.github.AppTest): {\"message\":\"No ref found for: master\",\"documentation_url\":\"https://developer.github.com/v3\"}\n testCreateDeployment(org.kohsuke.github.AppTest): {\"message\":\"No ref found for: master\",\"documentation_url\":\"https://developer.github.com/v3\"}\n testMemberPagenation(org.kohsuke.github.AppTest): java.io.IOException: {\"message\":\"Must have admin rights to Repository.\",\"documentation_url\":\"https://developer.github.com/v3\"}\n testRepoLabel(org.kohsuke.github.AppTest): {\"message\":\"Not Found\",\"documentation_url\":\"https://developer.github.com/v3/issues/labels/#create-a-label\"}\n testGetDeploymentStatuses(org.kohsuke.github.AppTest): {\"message\":\"No ref found for: master\",\"documentation_url\":\"https://developer.github.com/v3\"}\n testCreateRepository(org.kohsuke.github.LifecycleTest): java.io.IOException: {\"message\":\"Must have admin rights to Repository.\",\"documentation_url\":\"https://developer.github.com/v3\"}\n\nTests run: 79, Failures: 2, Errors: 7, Skipped: 10\n```\n\nFailures seem to be mostly related to access to the github-api-test-org (which obviously I don't have any permissions for), and I had the same results before/after the change so it looks like they are unrelated to it - Hopefully that's acceptable!\n\nThanks,\nLee\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/177", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/177/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/177/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/177/events", + "html_url": "https://github.com/github-api/github-api/pull/177", + "id": 67965127, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzMxMjczNTU=", + "number": 177, + "title": "Added getters for the objects notifications refer to", + "user": { + "login": "syniuhin", + "id": 6153943, + "node_id": "MDQ6VXNlcjYxNTM5NDM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/6153943?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/syniuhin", + "html_url": "https://github.com/syniuhin", + "followers_url": "https://api.github.com/users/syniuhin/followers", + "following_url": "https://api.github.com/users/syniuhin/following{/other_user}", + "gists_url": "https://api.github.com/users/syniuhin/gists{/gist_id}", + "starred_url": "https://api.github.com/users/syniuhin/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/syniuhin/subscriptions", + "organizations_url": "https://api.github.com/users/syniuhin/orgs", + "repos_url": "https://api.github.com/users/syniuhin/repos", + "events_url": "https://api.github.com/users/syniuhin/events{/privacy}", + "received_events_url": "https://api.github.com/users/syniuhin/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2015-04-12T22:00:22Z", + "updated_at": "2015-04-13T23:38:22Z", + "closed_at": "2015-04-13T23:38:22Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/177", + "html_url": "https://github.com/github-api/github-api/pull/177", + "diff_url": "https://github.com/github-api/github-api/pull/177.diff", + "patch_url": "https://github.com/github-api/github-api/pull/177.patch" + }, + "body": "I'm using this wrapper primarily interacting with notifications, so I find these methods useful.\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/176", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/176/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/176/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/176/events", + "html_url": "https://github.com/github-api/github-api/issues/176", + "id": 67408401, + "node_id": "MDU6SXNzdWU2NzQwODQwMQ==", + "number": 176, + "title": "Merging with SHA1", + "user": { + "login": "sonOfRa", + "id": 1269520, + "node_id": "MDQ6VXNlcjEyNjk1MjA=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1269520?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/sonOfRa", + "html_url": "https://github.com/sonOfRa", + "followers_url": "https://api.github.com/users/sonOfRa/followers", + "following_url": "https://api.github.com/users/sonOfRa/following{/other_user}", + "gists_url": "https://api.github.com/users/sonOfRa/gists{/gist_id}", + "starred_url": "https://api.github.com/users/sonOfRa/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/sonOfRa/subscriptions", + "organizations_url": "https://api.github.com/users/sonOfRa/orgs", + "repos_url": "https://api.github.com/users/sonOfRa/repos", + "events_url": "https://api.github.com/users/sonOfRa/events{/privacy}", + "received_events_url": "https://api.github.com/users/sonOfRa/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2015-04-09T17:15:25Z", + "updated_at": "2015-04-20T00:25:32Z", + "closed_at": "2015-04-20T00:25:32Z", + "author_association": "NONE", + "body": "Does the current implementation use the SHA-1 head to check whether a merge of a Pull Request is good? https://developer.github.com/v3/pulls/#merge-a-pull-request-merge-button Describes that you can add a SHA-1 to the merge API call, which causes GitHub to check whether the SHA-1 and the current head of that Pull Request match.\n\nThis would be useful for security reasons in our application. We're building a review-tool-bot that merges Pull Requests for us after we signal (via a comment) that the Pull Request is OK to merge. Now, a malicious person could theoretically introduce a new commit to their Pull Request branch, while the Request to merge is still on the way (either from the GitHub comment webhook to the bot, or from the bot to the GitHub API). If the SHA-1 doesn't match, the merge should be denied by GitHub.\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/175", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/175/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/175/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/175/events", + "html_url": "https://github.com/github-api/github-api/pull/175", + "id": 66154677, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzI1OTEyNzU=", + "number": 175, + "title": "Added the source attribute to GHRepository", + "user": { + "login": "kickroot", + "id": 1015101, + "node_id": "MDQ6VXNlcjEwMTUxMDE=", + "avatar_url": "https://avatars0.githubusercontent.com/u/1015101?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kickroot", + "html_url": "https://github.com/kickroot", + "followers_url": "https://api.github.com/users/kickroot/followers", + "following_url": "https://api.github.com/users/kickroot/following{/other_user}", + "gists_url": "https://api.github.com/users/kickroot/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kickroot/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kickroot/subscriptions", + "organizations_url": "https://api.github.com/users/kickroot/orgs", + "repos_url": "https://api.github.com/users/kickroot/repos", + "events_url": "https://api.github.com/users/kickroot/events{/privacy}", + "received_events_url": "https://api.github.com/users/kickroot/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2015-04-03T14:18:37Z", + "updated_at": "2015-04-13T23:50:10Z", + "closed_at": "2015-04-13T23:50:10Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/175", + "html_url": "https://github.com/github-api/github-api/pull/175", + "diff_url": "https://github.com/github-api/github-api/pull/175.diff", + "patch_url": "https://github.com/github-api/github-api/pull/175.patch" + }, + "body": "Forked repositories have a 'source' attribute that specifies the repository they were forked from. The source attribute is itself a GHRepository instance. \n\nFor repos that were not forked, this field will be null.\n" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/__files/repositories_617210_issues-b2fa4ec1-c691-4d0a-a3b2-13e129aa1dea.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/__files/repositories_617210_issues-b2fa4ec1-c691-4d0a-a3b2-13e129aa1dea.json new file mode 100644 index 0000000000..55ca29f444 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/__files/repositories_617210_issues-b2fa4ec1-c691-4d0a-a3b2-13e129aa1dea.json @@ -0,0 +1,1430 @@ +[ + { + "url": "https://api.github.com/repos/github-api/github-api/issues/82", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/82/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/82/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/82/events", + "html_url": "https://github.com/github-api/github-api/pull/82", + "id": 31208218, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTQ1ODMzNTI=", + "number": 82, + "title": "Cast url.openConnection() to HttpURLConnection instead of HttpsURLConnec...", + "user": { + "login": "prazanna", + "id": 1994157, + "node_id": "MDQ6VXNlcjE5OTQxNTc=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1994157?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/prazanna", + "html_url": "https://github.com/prazanna", + "followers_url": "https://api.github.com/users/prazanna/followers", + "following_url": "https://api.github.com/users/prazanna/following{/other_user}", + "gists_url": "https://api.github.com/users/prazanna/gists{/gist_id}", + "starred_url": "https://api.github.com/users/prazanna/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/prazanna/subscriptions", + "organizations_url": "https://api.github.com/users/prazanna/orgs", + "repos_url": "https://api.github.com/users/prazanna/repos", + "events_url": "https://api.github.com/users/prazanna/events{/privacy}", + "received_events_url": "https://api.github.com/users/prazanna/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2014-04-10T01:15:31Z", + "updated_at": "2014-07-01T17:26:06Z", + "closed_at": "2014-04-13T15:22:00Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/82", + "html_url": "https://github.com/github-api/github-api/pull/82", + "diff_url": "https://github.com/github-api/github-api/pull/82.diff", + "patch_url": "https://github.com/github-api/github-api/pull/82.patch" + }, + "body": "...tion. Useful for enterprise githubs which does not have https set up.\n\nHi Koshuke,\n\nPlease accept this pull request if this makes sense to you.\n\nThanks\nPrasanna\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/81", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/81/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/81/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/81/events", + "html_url": "https://github.com/github-api/github-api/issues/81", + "id": 30787542, + "node_id": "MDU6SXNzdWUzMDc4NzU0Mg==", + "number": 81, + "title": "Add support for setting explicit connection timeouts", + "user": { + "login": "giladegozi", + "id": 3824338, + "node_id": "MDQ6VXNlcjM4MjQzMzg=", + "avatar_url": "https://avatars0.githubusercontent.com/u/3824338?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/giladegozi", + "html_url": "https://github.com/giladegozi", + "followers_url": "https://api.github.com/users/giladegozi/followers", + "following_url": "https://api.github.com/users/giladegozi/following{/other_user}", + "gists_url": "https://api.github.com/users/giladegozi/gists{/gist_id}", + "starred_url": "https://api.github.com/users/giladegozi/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/giladegozi/subscriptions", + "organizations_url": "https://api.github.com/users/giladegozi/orgs", + "repos_url": "https://api.github.com/users/giladegozi/repos", + "events_url": "https://api.github.com/users/giladegozi/events{/privacy}", + "received_events_url": "https://api.github.com/users/giladegozi/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2014-04-03T15:50:10Z", + "updated_at": "2014-04-13T15:52:24Z", + "closed_at": "2014-04-13T15:52:24Z", + "author_association": "NONE", + "body": "" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/80", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/80/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/80/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/80/events", + "html_url": "https://github.com/github-api/github-api/pull/80", + "id": 30709448, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTQyOTIxMTE=", + "number": 80, + "title": "Add support for removing a user from an Organisation", + "user": { + "login": "rtyley", + "id": 52038, + "node_id": "MDQ6VXNlcjUyMDM4", + "avatar_url": "https://avatars3.githubusercontent.com/u/52038?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rtyley", + "html_url": "https://github.com/rtyley", + "followers_url": "https://api.github.com/users/rtyley/followers", + "following_url": "https://api.github.com/users/rtyley/following{/other_user}", + "gists_url": "https://api.github.com/users/rtyley/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rtyley/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rtyley/subscriptions", + "organizations_url": "https://api.github.com/users/rtyley/orgs", + "repos_url": "https://api.github.com/users/rtyley/repos", + "events_url": "https://api.github.com/users/rtyley/events{/privacy}", + "received_events_url": "https://api.github.com/users/rtyley/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2014-04-02T17:48:28Z", + "updated_at": "2014-07-01T17:26:06Z", + "closed_at": "2014-04-13T15:22:23Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/80", + "html_url": "https://github.com/github-api/github-api/pull/80", + "diff_url": "https://github.com/github-api/github-api/pull/80.diff", + "patch_url": "https://github.com/github-api/github-api/pull/80.patch" + }, + "body": "https://developer.github.com/v3/orgs/members/#remove-a-member\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/79", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/79/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/79/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/79/events", + "html_url": "https://github.com/github-api/github-api/issues/79", + "id": 30269051, + "node_id": "MDU6SXNzdWUzMDI2OTA1MQ==", + "number": 79, + "title": "create pull requests?", + "user": { + "login": "dtoms", + "id": 5245557, + "node_id": "MDQ6VXNlcjUyNDU1NTc=", + "avatar_url": "https://avatars0.githubusercontent.com/u/5245557?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dtoms", + "html_url": "https://github.com/dtoms", + "followers_url": "https://api.github.com/users/dtoms/followers", + "following_url": "https://api.github.com/users/dtoms/following{/other_user}", + "gists_url": "https://api.github.com/users/dtoms/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dtoms/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dtoms/subscriptions", + "organizations_url": "https://api.github.com/users/dtoms/orgs", + "repos_url": "https://api.github.com/users/dtoms/repos", + "events_url": "https://api.github.com/users/dtoms/events{/privacy}", + "received_events_url": "https://api.github.com/users/dtoms/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2014-03-27T02:22:52Z", + "updated_at": "2014-05-10T22:06:58Z", + "closed_at": "2014-05-10T22:06:58Z", + "author_association": "NONE", + "body": "I dug around the source but from what I see there are currently only methods to get GHPullRequest's from github. I'm hoping that's not the case of course. Is there support for creating a new pull request for a branch?\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/78", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/78/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/78/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/78/events", + "html_url": "https://github.com/github-api/github-api/issues/78", + "id": 29715979, + "node_id": "MDU6SXNzdWUyOTcxNTk3OQ==", + "number": 78, + "title": "getRateLimit() fails for GitHub Enterprise", + "user": { + "login": "alexwhitman", + "id": 422013, + "node_id": "MDQ6VXNlcjQyMjAxMw==", + "avatar_url": "https://avatars3.githubusercontent.com/u/422013?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/alexwhitman", + "html_url": "https://github.com/alexwhitman", + "followers_url": "https://api.github.com/users/alexwhitman/followers", + "following_url": "https://api.github.com/users/alexwhitman/following{/other_user}", + "gists_url": "https://api.github.com/users/alexwhitman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/alexwhitman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/alexwhitman/subscriptions", + "organizations_url": "https://api.github.com/users/alexwhitman/orgs", + "repos_url": "https://api.github.com/users/alexwhitman/repos", + "events_url": "https://api.github.com/users/alexwhitman/events{/privacy}", + "received_events_url": "https://api.github.com/users/alexwhitman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 3, + "created_at": "2014-03-19T09:06:05Z", + "updated_at": "2014-05-10T22:31:37Z", + "closed_at": "2014-05-10T22:31:37Z", + "author_association": "NONE", + "body": "`getRateLimit()` at https://github.com/kohsuke/github-api/blob/master/src/main/java/org/kohsuke/github/GitHub.java#L228 fails for GitHub Enterprise with a 404 status code, body of\n\n``` json\n{\n \"message\": \"No rate limit for white listed users\"\n}\n```\n\nGitHub Enterprise users are considered white listed and so don't have rate limits.\n\nSee also janinko/ghprb#127\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/77", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/77/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/77/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/77/events", + "html_url": "https://github.com/github-api/github-api/pull/77", + "id": 29709117, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTM3MjE5ODQ=", + "number": 77, + "title": "Added apis to list commits by author and list the repos of an organization (including private ones)", + "user": { + "login": "vr100", + "id": 6443683, + "node_id": "MDQ6VXNlcjY0NDM2ODM=", + "avatar_url": "https://avatars2.githubusercontent.com/u/6443683?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vr100", + "html_url": "https://github.com/vr100", + "followers_url": "https://api.github.com/users/vr100/followers", + "following_url": "https://api.github.com/users/vr100/following{/other_user}", + "gists_url": "https://api.github.com/users/vr100/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vr100/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vr100/subscriptions", + "organizations_url": "https://api.github.com/users/vr100/orgs", + "repos_url": "https://api.github.com/users/vr100/repos", + "events_url": "https://api.github.com/users/vr100/events{/privacy}", + "received_events_url": "https://api.github.com/users/vr100/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 7, + "created_at": "2014-03-19T06:04:07Z", + "updated_at": "2014-07-01T17:26:07Z", + "closed_at": "2014-04-19T18:50:17Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/77", + "html_url": "https://github.com/github-api/github-api/pull/77", + "diff_url": "https://github.com/github-api/github-api/pull/77.diff", + "patch_url": "https://github.com/github-api/github-api/pull/77.patch" + }, + "body": "Hi,\n\nI have added apis for the following\n- List the repos of organization (including the private ones). The existing implementation does not list the private repos of an organization even with the appropriate scope permissions.\n- List the commits by author and branch. [Note that both branch and sha are given as sha parameters to the url. I verified this manually. Got this solution from stackoverflow : http://stackoverflow.com/questions/9179828/github-api-retrieve-all-commits-for-all-branches-for-a-repo \n\nThank you,\nvr100\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/76", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/76/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/76/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/76/events", + "html_url": "https://github.com/github-api/github-api/pull/76", + "id": 29397349, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTM1NTAwODc=", + "number": 76, + "title": "Add org public-members call, to complement the full members list", + "user": { + "login": "rtyley", + "id": 52038, + "node_id": "MDQ6VXNlcjUyMDM4", + "avatar_url": "https://avatars3.githubusercontent.com/u/52038?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rtyley", + "html_url": "https://github.com/rtyley", + "followers_url": "https://api.github.com/users/rtyley/followers", + "following_url": "https://api.github.com/users/rtyley/following{/other_user}", + "gists_url": "https://api.github.com/users/rtyley/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rtyley/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rtyley/subscriptions", + "organizations_url": "https://api.github.com/users/rtyley/orgs", + "repos_url": "https://api.github.com/users/rtyley/repos", + "events_url": "https://api.github.com/users/rtyley/events{/privacy}", + "received_events_url": "https://api.github.com/users/rtyley/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2014-03-13T22:59:43Z", + "updated_at": "2014-07-01T17:26:08Z", + "closed_at": "2014-03-28T16:35:52Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/76", + "html_url": "https://github.com/github-api/github-api/pull/76", + "diff_url": "https://github.com/github-api/github-api/pull/76.diff", + "patch_url": "https://github.com/github-api/github-api/pull/76.patch" + }, + "body": "http://developer.github.com/v3/orgs/members/#public-members-list\n\nThis PR sits on top of PRs #66 & #68, which is why it's a 3-commit pull request.\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/75", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/75/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/75/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/75/events", + "html_url": "https://github.com/github-api/github-api/pull/75", + "id": 29311067, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTM0OTg1MDY=", + "number": 75, + "title": "Support the check-user-team-membership API call", + "user": { + "login": "rtyley", + "id": 52038, + "node_id": "MDQ6VXNlcjUyMDM4", + "avatar_url": "https://avatars3.githubusercontent.com/u/52038?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rtyley", + "html_url": "https://github.com/rtyley", + "followers_url": "https://api.github.com/users/rtyley/followers", + "following_url": "https://api.github.com/users/rtyley/following{/other_user}", + "gists_url": "https://api.github.com/users/rtyley/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rtyley/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rtyley/subscriptions", + "organizations_url": "https://api.github.com/users/rtyley/orgs", + "repos_url": "https://api.github.com/users/rtyley/repos", + "events_url": "https://api.github.com/users/rtyley/events{/privacy}", + "received_events_url": "https://api.github.com/users/rtyley/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2014-03-12T22:44:04Z", + "updated_at": "2014-07-01T17:26:08Z", + "closed_at": "2014-03-28T17:24:18Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/75", + "html_url": "https://github.com/github-api/github-api/pull/75", + "diff_url": "https://github.com/github-api/github-api/pull/75.diff", + "patch_url": "https://github.com/github-api/github-api/pull/75.patch" + }, + "body": "http://developer.github.com/v3/orgs/teams/#get-team-member\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/74", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/74/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/74/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/74/events", + "html_url": "https://github.com/github-api/github-api/pull/74", + "id": 29254760, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTM0NjU0MTM=", + "number": 74, + "title": "Allow use of alternative HTTP client implementations", + "user": { + "login": "rtyley", + "id": 52038, + "node_id": "MDQ6VXNlcjUyMDM4", + "avatar_url": "https://avatars3.githubusercontent.com/u/52038?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rtyley", + "html_url": "https://github.com/rtyley", + "followers_url": "https://api.github.com/users/rtyley/followers", + "following_url": "https://api.github.com/users/rtyley/following{/other_user}", + "gists_url": "https://api.github.com/users/rtyley/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rtyley/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rtyley/subscriptions", + "organizations_url": "https://api.github.com/users/rtyley/orgs", + "repos_url": "https://api.github.com/users/rtyley/repos", + "events_url": "https://api.github.com/users/rtyley/events{/privacy}", + "received_events_url": "https://api.github.com/users/rtyley/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 5, + "created_at": "2014-03-12T11:21:19Z", + "updated_at": "2014-06-24T08:14:50Z", + "closed_at": "2014-04-13T15:49:14Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/74", + "html_url": "https://github.com/github-api/github-api/pull/74", + "diff_url": "https://github.com/github-api/github-api/pull/74.diff", + "patch_url": "https://github.com/github-api/github-api/pull/74.patch" + }, + "body": "In particular this means we can use OkHttp, so we can make use of it's HttpResponseCache/DiskLruCache. Making a conditional request against the GitHub API and receiving a 304 response does not count against the Rate Limit - very beneficial.\n\nhttp://developer.github.com/v3/#conditional-requests\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/73", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/73/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/73/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/73/events", + "html_url": "https://github.com/github-api/github-api/pull/73", + "id": 29024292, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTMzNDMwNzA=", + "number": 73, + "title": "Fix GHIssue.setLabels()", + "user": { + "login": "rtyley", + "id": 52038, + "node_id": "MDQ6VXNlcjUyMDM4", + "avatar_url": "https://avatars3.githubusercontent.com/u/52038?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rtyley", + "html_url": "https://github.com/rtyley", + "followers_url": "https://api.github.com/users/rtyley/followers", + "following_url": "https://api.github.com/users/rtyley/following{/other_user}", + "gists_url": "https://api.github.com/users/rtyley/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rtyley/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rtyley/subscriptions", + "organizations_url": "https://api.github.com/users/rtyley/orgs", + "repos_url": "https://api.github.com/users/rtyley/repos", + "events_url": "https://api.github.com/users/rtyley/events{/privacy}", + "received_events_url": "https://api.github.com/users/rtyley/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2014-03-08T16:06:36Z", + "updated_at": "2014-07-01T09:04:54Z", + "closed_at": "2014-03-28T17:23:15Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/73", + "html_url": "https://github.com/github-api/github-api/pull/73", + "diff_url": "https://github.com/github-api/github-api/pull/73.diff", + "patch_url": "https://github.com/github-api/github-api/pull/73.patch" + }, + "body": "..._don't_ set 'assignee' instead!\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/72", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/72/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/72/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/72/events", + "html_url": "https://github.com/github-api/github-api/pull/72", + "id": 29013881, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTMzMzg3MDk=", + "number": 72, + "title": "Un-finalize GHContent.", + "user": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2014-03-08T03:14:44Z", + "updated_at": "2014-07-01T17:26:10Z", + "closed_at": "2014-03-28T17:23:03Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/72", + "html_url": "https://github.com/github-api/github-api/pull/72", + "diff_url": "https://github.com/github-api/github-api/pull/72.diff", + "patch_url": "https://github.com/github-api/github-api/pull/72.patch" + }, + "body": "GHContent was declared as a final class, which makes it impossible to mock with libraries like Mockito.\n\nThis PR un-finalizes it so it's mock-able.\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/71", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/71/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/71/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/71/events", + "html_url": "https://github.com/github-api/github-api/pull/71", + "id": 28599079, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTMxMDA4NzY=", + "number": 71, + "title": "add support for getting issues by milestone and state", + "user": { + "login": "evanchooly", + "id": 195021, + "node_id": "MDQ6VXNlcjE5NTAyMQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/195021?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/evanchooly", + "html_url": "https://github.com/evanchooly", + "followers_url": "https://api.github.com/users/evanchooly/followers", + "following_url": "https://api.github.com/users/evanchooly/following{/other_user}", + "gists_url": "https://api.github.com/users/evanchooly/gists{/gist_id}", + "starred_url": "https://api.github.com/users/evanchooly/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/evanchooly/subscriptions", + "organizations_url": "https://api.github.com/users/evanchooly/orgs", + "repos_url": "https://api.github.com/users/evanchooly/repos", + "events_url": "https://api.github.com/users/evanchooly/events{/privacy}", + "received_events_url": "https://api.github.com/users/evanchooly/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 3, + "created_at": "2014-03-03T04:55:20Z", + "updated_at": "2014-07-01T17:26:10Z", + "closed_at": "2014-03-28T17:22:47Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/71", + "html_url": "https://github.com/github-api/github-api/pull/71", + "diff_url": "https://github.com/github-api/github-api/pull/71.diff", + "patch_url": "https://github.com/github-api/github-api/pull/71.patch" + }, + "body": "rework AppTest to work better for people other than kohsuke\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/70", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/70/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/70/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/70/events", + "html_url": "https://github.com/github-api/github-api/pull/70", + "id": 28519716, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTMwNjE2MjE=", + "number": 70, + "title": "BugFix when listing repositories of a GitHub Organisation", + "user": { + "login": "lucamilanesio", + "id": 182893, + "node_id": "MDQ6VXNlcjE4Mjg5Mw==", + "avatar_url": "https://avatars3.githubusercontent.com/u/182893?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/lucamilanesio", + "html_url": "https://github.com/lucamilanesio", + "followers_url": "https://api.github.com/users/lucamilanesio/followers", + "following_url": "https://api.github.com/users/lucamilanesio/following{/other_user}", + "gists_url": "https://api.github.com/users/lucamilanesio/gists{/gist_id}", + "starred_url": "https://api.github.com/users/lucamilanesio/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/lucamilanesio/subscriptions", + "organizations_url": "https://api.github.com/users/lucamilanesio/orgs", + "repos_url": "https://api.github.com/users/lucamilanesio/repos", + "events_url": "https://api.github.com/users/lucamilanesio/events{/privacy}", + "received_events_url": "https://api.github.com/users/lucamilanesio/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 3, + "created_at": "2014-02-28T17:47:17Z", + "updated_at": "2014-07-01T17:26:11Z", + "closed_at": "2014-03-28T16:50:33Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/70", + "html_url": "https://github.com/github-api/github-api/pull/70", + "diff_url": "https://github.com/github-api/github-api/pull/70.diff", + "patch_url": "https://github.com/github-api/github-api/pull/70.patch" + }, + "body": "Repositories of a GitHub Organisation are under \n/orgs/:org/repos as documented at:\nhttp://developer.github.com/v3/repos/#list-organization-repositories\n\nWe need then to override the GHPerson implementation\nwhich would have just returned the user's repositories.\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/69", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/69/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/69/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/69/events", + "html_url": "https://github.com/github-api/github-api/pull/69", + "id": 28154464, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTI4NDk1Nzc=", + "number": 69, + "title": "Created new method to automate the merge", + "user": { + "login": "vanjikumaran", + "id": 3397321, + "node_id": "MDQ6VXNlcjMzOTczMjE=", + "avatar_url": "https://avatars1.githubusercontent.com/u/3397321?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vanjikumaran", + "html_url": "https://github.com/vanjikumaran", + "followers_url": "https://api.github.com/users/vanjikumaran/followers", + "following_url": "https://api.github.com/users/vanjikumaran/following{/other_user}", + "gists_url": "https://api.github.com/users/vanjikumaran/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vanjikumaran/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vanjikumaran/subscriptions", + "organizations_url": "https://api.github.com/users/vanjikumaran/orgs", + "repos_url": "https://api.github.com/users/vanjikumaran/repos", + "events_url": "https://api.github.com/users/vanjikumaran/events{/privacy}", + "received_events_url": "https://api.github.com/users/vanjikumaran/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2014-02-24T11:31:02Z", + "updated_at": "2014-07-01T17:26:12Z", + "closed_at": "2014-03-28T16:42:16Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/69", + "html_url": "https://github.com/github-api/github-api/pull/69", + "diff_url": "https://github.com/github-api/github-api/pull/69.diff", + "patch_url": "https://github.com/github-api/github-api/pull/69.patch" + }, + "body": "This new method enables to call merge\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/68", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/68/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/68/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/68/events", + "html_url": "https://github.com/github-api/github-api/pull/68", + "id": 28039406, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTI3OTA1MjU=", + "number": 68, + "title": "Enable org member filtering", + "user": { + "login": "lindseydew", + "id": 1202622, + "node_id": "MDQ6VXNlcjEyMDI2MjI=", + "avatar_url": "https://avatars2.githubusercontent.com/u/1202622?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/lindseydew", + "html_url": "https://github.com/lindseydew", + "followers_url": "https://api.github.com/users/lindseydew/followers", + "following_url": "https://api.github.com/users/lindseydew/following{/other_user}", + "gists_url": "https://api.github.com/users/lindseydew/gists{/gist_id}", + "starred_url": "https://api.github.com/users/lindseydew/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/lindseydew/subscriptions", + "organizations_url": "https://api.github.com/users/lindseydew/orgs", + "repos_url": "https://api.github.com/users/lindseydew/repos", + "events_url": "https://api.github.com/users/lindseydew/events{/privacy}", + "received_events_url": "https://api.github.com/users/lindseydew/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2014-02-21T12:45:01Z", + "updated_at": "2014-07-01T17:26:13Z", + "closed_at": "2014-03-28T16:35:51Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/68", + "html_url": "https://github.com/github-api/github-api/pull/68", + "diff_url": "https://github.com/github-api/github-api/pull/68.diff", + "patch_url": "https://github.com/github-api/github-api/pull/68.patch" + }, + "body": "This adds an option of supplying a parameter to the get members method so that we can call the filter by two factor authentication method\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/67", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/67/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/67/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/67/events", + "html_url": "https://github.com/github-api/github-api/pull/67", + "id": 26860355, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTIxNjUwMDY=", + "number": 67, + "title": "add method to find issues by milestone", + "user": { + "login": "evanchooly", + "id": 195021, + "node_id": "MDQ6VXNlcjE5NTAyMQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/195021?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/evanchooly", + "html_url": "https://github.com/evanchooly", + "followers_url": "https://api.github.com/users/evanchooly/followers", + "following_url": "https://api.github.com/users/evanchooly/following{/other_user}", + "gists_url": "https://api.github.com/users/evanchooly/gists{/gist_id}", + "starred_url": "https://api.github.com/users/evanchooly/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/evanchooly/subscriptions", + "organizations_url": "https://api.github.com/users/evanchooly/orgs", + "repos_url": "https://api.github.com/users/evanchooly/repos", + "events_url": "https://api.github.com/users/evanchooly/events{/privacy}", + "received_events_url": "https://api.github.com/users/evanchooly/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2014-02-04T05:15:19Z", + "updated_at": "2014-07-01T17:26:13Z", + "closed_at": "2014-02-04T05:20:43Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/67", + "html_url": "https://github.com/github-api/github-api/pull/67", + "diff_url": "https://github.com/github-api/github-api/pull/67.diff", + "patch_url": "https://github.com/github-api/github-api/pull/67.patch" + }, + "body": "…\n\nslight refactoring of tests to use developer's github info rather than kohsuke's to avoid certain permissions problems on the repositories created\n\nIt _does_ change the name of the repository to something a bit more unique which might cause problems. I can go either way with that repo name but it is a bit less like to clash with any other repo/project naming.\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/66", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/66/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/66/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/66/events", + "html_url": "https://github.com/github-api/github-api/pull/66", + "id": 26108982, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTE3Njc1MDQ=", + "number": 66, + "title": "Support paging when fetching organization members", + "user": { + "login": "ryankennedy", + "id": 37302, + "node_id": "MDQ6VXNlcjM3MzAy", + "avatar_url": "https://avatars3.githubusercontent.com/u/37302?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ryankennedy", + "html_url": "https://github.com/ryankennedy", + "followers_url": "https://api.github.com/users/ryankennedy/followers", + "following_url": "https://api.github.com/users/ryankennedy/following{/other_user}", + "gists_url": "https://api.github.com/users/ryankennedy/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ryankennedy/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ryankennedy/subscriptions", + "organizations_url": "https://api.github.com/users/ryankennedy/orgs", + "repos_url": "https://api.github.com/users/ryankennedy/repos", + "events_url": "https://api.github.com/users/ryankennedy/events{/privacy}", + "received_events_url": "https://api.github.com/users/ryankennedy/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2014-01-22T17:56:21Z", + "updated_at": "2014-07-01T17:26:14Z", + "closed_at": "2014-03-28T16:35:51Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/66", + "html_url": "https://github.com/github-api/github-api/pull/66", + "diff_url": "https://github.com/github-api/github-api/pull/66.diff", + "patch_url": "https://github.com/github-api/github-api/pull/66.patch" + }, + "body": "Organization members are a paged list in the V3 GitHub API. Previously the code would fetch only the first page of ~30 members and return that. This change switches the return to a PagedIterable so clients can fetch the entire organization's member list.\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/65", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/65/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/65/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/65/events", + "html_url": "https://github.com/github-api/github-api/issues/65", + "id": 25697084, + "node_id": "MDU6SXNzdWUyNTY5NzA4NA==", + "number": 65, + "title": "Throwing an Error when an IOException occurs is overly fatal", + "user": { + "login": "ryankennedy", + "id": 37302, + "node_id": "MDQ6VXNlcjM3MzAy", + "avatar_url": "https://avatars3.githubusercontent.com/u/37302?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ryankennedy", + "html_url": "https://github.com/ryankennedy", + "followers_url": "https://api.github.com/users/ryankennedy/followers", + "following_url": "https://api.github.com/users/ryankennedy/following{/other_user}", + "gists_url": "https://api.github.com/users/ryankennedy/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ryankennedy/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ryankennedy/subscriptions", + "organizations_url": "https://api.github.com/users/ryankennedy/orgs", + "repos_url": "https://api.github.com/users/ryankennedy/repos", + "events_url": "https://api.github.com/users/ryankennedy/events{/privacy}", + "received_events_url": "https://api.github.com/users/ryankennedy/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 3, + "created_at": "2014-01-16T01:34:51Z", + "updated_at": "2016-02-12T18:35:43Z", + "closed_at": "2014-04-13T15:55:35Z", + "author_association": "CONTRIBUTOR", + "body": "https://github.com/kohsuke/github-api/blob/master/src/main/java/org/kohsuke/github/Requester.java#L268\n\nWhen attempting to get the details of an empty repository, the github enterprise server returns an HTTP 409. This, in turn, causes Requester to throw an Error…\n\nCaused by: java.io.IOException: Server returned HTTP response code: 409 for URL: \n\nAn Error, for those unfamiliar, is \"a subclass of Throwable that indicates serious problems that a reasonable application should not try to catch.\" I don't think an HTTP 409 response warrants throwing an Error, thereby dooming the client Java process to exit with status code 1.\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/64", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/64/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/64/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/64/events", + "html_url": "https://github.com/github-api/github-api/issues/64", + "id": 25693932, + "node_id": "MDU6SXNzdWUyNTY5MzkzMg==", + "number": 64, + "title": "GHRepository assumes public github.com, won't work with github enterprise", + "user": { + "login": "ryankennedy", + "id": 37302, + "node_id": "MDQ6VXNlcjM3MzAy", + "avatar_url": "https://avatars3.githubusercontent.com/u/37302?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ryankennedy", + "html_url": "https://github.com/ryankennedy", + "followers_url": "https://api.github.com/users/ryankennedy/followers", + "following_url": "https://api.github.com/users/ryankennedy/following{/other_user}", + "gists_url": "https://api.github.com/users/ryankennedy/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ryankennedy/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ryankennedy/subscriptions", + "organizations_url": "https://api.github.com/users/ryankennedy/orgs", + "repos_url": "https://api.github.com/users/ryankennedy/repos", + "events_url": "https://api.github.com/users/ryankennedy/events{/privacy}", + "received_events_url": "https://api.github.com/users/ryankennedy/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2014-01-16T00:21:32Z", + "updated_at": "2014-05-10T22:23:12Z", + "closed_at": "2014-05-10T22:23:12Z", + "author_association": "CONTRIBUTOR", + "body": "https://github.com/kohsuke/github-api/blob/master/src/main/java/org/kohsuke/github/GHRepository.java#L96\n\nGHRepository doesn't take into account whether or not the client is speaking with the public github.com or if it's talking to a github enterprise instance. Consequently, when you call getGitTransportUrl() or gitHttpTransportUrl() it only ever returns a github.com URL, which won't work for github enterprise hosted repositories.\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/63", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/63/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/63/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/63/events", + "html_url": "https://github.com/github-api/github-api/issues/63", + "id": 25598503, + "node_id": "MDU6SXNzdWUyNTU5ODUwMw==", + "number": 63, + "title": "publish 1.49 version to jenkins maven repo", + "user": { + "login": "suryagaddipati", + "id": 64078, + "node_id": "MDQ6VXNlcjY0MDc4", + "avatar_url": "https://avatars3.githubusercontent.com/u/64078?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/suryagaddipati", + "html_url": "https://github.com/suryagaddipati", + "followers_url": "https://api.github.com/users/suryagaddipati/followers", + "following_url": "https://api.github.com/users/suryagaddipati/following{/other_user}", + "gists_url": "https://api.github.com/users/suryagaddipati/gists{/gist_id}", + "starred_url": "https://api.github.com/users/suryagaddipati/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/suryagaddipati/subscriptions", + "organizations_url": "https://api.github.com/users/suryagaddipati/orgs", + "repos_url": "https://api.github.com/users/suryagaddipati/repos", + "events_url": "https://api.github.com/users/suryagaddipati/events{/privacy}", + "received_events_url": "https://api.github.com/users/suryagaddipati/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2014-01-14T19:28:32Z", + "updated_at": "2014-01-15T17:58:48Z", + "closed_at": "2014-01-15T17:58:48Z", + "author_association": "COLLABORATOR", + "body": "1.47 seems to be the latest version published here\nhttp://repo.jenkins-ci.org/public/org/kohsuke/github-api/\n\nWould it be possible to publish 1.49 on there.\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/62", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/62/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/62/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/62/events", + "html_url": "https://github.com/github-api/github-api/issues/62", + "id": 24261123, + "node_id": "MDU6SXNzdWUyNDI2MTEyMw==", + "number": 62, + "title": "Getting private repositories for a private organization", + "user": { + "login": "cwarren-mw", + "id": 4967481, + "node_id": "MDQ6VXNlcjQ5Njc0ODE=", + "avatar_url": "https://avatars2.githubusercontent.com/u/4967481?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cwarren-mw", + "html_url": "https://github.com/cwarren-mw", + "followers_url": "https://api.github.com/users/cwarren-mw/followers", + "following_url": "https://api.github.com/users/cwarren-mw/following{/other_user}", + "gists_url": "https://api.github.com/users/cwarren-mw/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cwarren-mw/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cwarren-mw/subscriptions", + "organizations_url": "https://api.github.com/users/cwarren-mw/orgs", + "repos_url": "https://api.github.com/users/cwarren-mw/repos", + "events_url": "https://api.github.com/users/cwarren-mw/events{/privacy}", + "received_events_url": "https://api.github.com/users/cwarren-mw/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2013-12-13T17:43:32Z", + "updated_at": "2014-05-10T22:19:49Z", + "closed_at": "2014-05-10T22:19:49Z", + "author_association": "NONE", + "body": "I've been able to list the repositories for a public organization:\n\n```\nGHOrganization org = gitHub.getOrganization(\"jenkinsci\");\nfor (GHRepository r : org.getRepositories().values()) {\n // System.out.println(\"Repo: \" + r.getName());\n}\n```\n\nAnd I've been able to list the users for a private organization (I believe this should prove I'm successfully authenticating against that organization):\n\n```\nGHOrganization org = gitHub.getOrganization(\"merchantwarehouse\");\nList users = org.getMembers();\nfor (GHUser user : users) {\n // System.out.println(\"User: \" + user.toString());\n}\n```\n\nBut when I try to list the repositories (all private) for the private organization, I get nothing. Have I missed a step?\n\nMy apologies if this is something that should have been obvious to me.\n\nThanks.\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/61", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/61/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/61/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/61/events", + "html_url": "https://github.com/github-api/github-api/pull/61", + "id": 24077446, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTA3MDk4OTM=", + "number": 61, + "title": "Fetching of user's verified keys through standard OAuth scope.", + "user": { + "login": "lucamilanesio", + "id": 182893, + "node_id": "MDQ6VXNlcjE4Mjg5Mw==", + "avatar_url": "https://avatars3.githubusercontent.com/u/182893?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/lucamilanesio", + "html_url": "https://github.com/lucamilanesio", + "followers_url": "https://api.github.com/users/lucamilanesio/followers", + "following_url": "https://api.github.com/users/lucamilanesio/following{/other_user}", + "gists_url": "https://api.github.com/users/lucamilanesio/gists{/gist_id}", + "starred_url": "https://api.github.com/users/lucamilanesio/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/lucamilanesio/subscriptions", + "organizations_url": "https://api.github.com/users/lucamilanesio/orgs", + "repos_url": "https://api.github.com/users/lucamilanesio/repos", + "events_url": "https://api.github.com/users/lucamilanesio/events{/privacy}", + "received_events_url": "https://api.github.com/users/lucamilanesio/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2013-12-11T00:32:34Z", + "updated_at": "2014-07-01T17:26:14Z", + "closed_at": "2014-01-01T23:26:58Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/61", + "html_url": "https://github.com/github-api/github-api/pull/61", + "diff_url": "https://github.com/github-api/github-api/pull/61.diff", + "patch_url": "https://github.com/github-api/github-api/pull/61.patch" + }, + "body": "Allow the fetching of a user's verified key list without\nrequiring to have an OAuth user scope (which implies\nuser's profile READ/WRITE permissions).\nThis would relax the requirements of GitHub OAuth scope\nwhen fetching public information such as their SSH\npublic keys.\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/60", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/60/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/60/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/60/events", + "html_url": "https://github.com/github-api/github-api/issues/60", + "id": 23731147, + "node_id": "MDU6SXNzdWUyMzczMTE0Nw==", + "number": 60, + "title": "ClosedBy returns nothing for closed issues", + "user": { + "login": "sura2k", + "id": 1226939, + "node_id": "MDQ6VXNlcjEyMjY5Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1226939?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/sura2k", + "html_url": "https://github.com/sura2k", + "followers_url": "https://api.github.com/users/sura2k/followers", + "following_url": "https://api.github.com/users/sura2k/following{/other_user}", + "gists_url": "https://api.github.com/users/sura2k/gists{/gist_id}", + "starred_url": "https://api.github.com/users/sura2k/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/sura2k/subscriptions", + "organizations_url": "https://api.github.com/users/sura2k/orgs", + "repos_url": "https://api.github.com/users/sura2k/repos", + "events_url": "https://api.github.com/users/sura2k/events{/privacy}", + "received_events_url": "https://api.github.com/users/sura2k/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2013-12-04T17:22:08Z", + "updated_at": "2014-08-03T18:04:58Z", + "closed_at": "2014-05-10T22:12:30Z", + "author_association": "NONE", + "body": "I wanted to export all the issues in to an excel.\nAPI returns everything except 'ClosedBy'.\nI'm using a private repository.\nI'm glad if you could look into this.\n\n(I Thank Kohsuke and all the contributors for making such a great API)\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/59", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/59/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/59/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/59/events", + "html_url": "https://github.com/github-api/github-api/pull/59", + "id": 23431637, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTAzNjIyMDQ=", + "number": 59, + "title": "Contents API", + "user": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 5, + "created_at": "2013-11-28T05:40:53Z", + "updated_at": "2014-07-01T17:26:15Z", + "closed_at": "2014-01-01T23:26:23Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/59", + "html_url": "https://github.com/github-api/github-api/pull/59", + "diff_url": "https://github.com/github-api/github-api/pull/59.diff", + "patch_url": "https://github.com/github-api/github-api/pull/59.patch" + }, + "body": "Hat tip to @acollign for the work that he did on this to start. I took what he did and essentially added the ability to mutate content using the content API. This still needs some tests added, I think, but I had issues getting them to run? (I think something was screwy with my network connection?)\n\nAnyway, I'm more than happy to add the tests, but I wanted to go ahead and start getting feedback on how this looks. :-)\n\nThis would resolve #46\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/58", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/58/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/58/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/58/events", + "html_url": "https://github.com/github-api/github-api/pull/58", + "id": 23345345, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTAzMTQyODM=", + "number": 58, + "title": "Add support for PULL_REQUEST_REVIEW_COMMENT event types.", + "user": { + "login": "rtholmes", + "id": 89003, + "node_id": "MDQ6VXNlcjg5MDAz", + "avatar_url": "https://avatars1.githubusercontent.com/u/89003?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rtholmes", + "html_url": "https://github.com/rtholmes", + "followers_url": "https://api.github.com/users/rtholmes/followers", + "following_url": "https://api.github.com/users/rtholmes/following{/other_user}", + "gists_url": "https://api.github.com/users/rtholmes/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rtholmes/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rtholmes/subscriptions", + "organizations_url": "https://api.github.com/users/rtholmes/orgs", + "repos_url": "https://api.github.com/users/rtholmes/repos", + "events_url": "https://api.github.com/users/rtholmes/events{/privacy}", + "received_events_url": "https://api.github.com/users/rtholmes/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2013-11-26T20:30:05Z", + "updated_at": "2014-07-01T17:26:15Z", + "closed_at": "2013-11-27T19:49:17Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/58", + "html_url": "https://github.com/github-api/github-api/pull/58", + "diff_url": "https://github.com/github-api/github-api/pull/58.diff", + "patch_url": "https://github.com/github-api/github-api/pull/58.patch" + }, + "body": "EventInfo.getType() would return a GHEvent with the GHEvent.type field set to \"PULL_REQUEST_REVIEW_COMMENT_EVENT\", but since PULL_REQUEST_REVIEW_COMMENT was not present in GHEvent, GHEvent.getType() would fail.\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/57", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/57/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/57/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/57/events", + "html_url": "https://github.com/github-api/github-api/issues/57", + "id": 23300463, + "node_id": "MDU6SXNzdWUyMzMwMDQ2Mw==", + "number": 57, + "title": "github /user/orgs fails", + "user": { + "login": "helmut-jacob", + "id": 3501725, + "node_id": "MDQ6VXNlcjM1MDE3MjU=", + "avatar_url": "https://avatars1.githubusercontent.com/u/3501725?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/helmut-jacob", + "html_url": "https://github.com/helmut-jacob", + "followers_url": "https://api.github.com/users/helmut-jacob/followers", + "following_url": "https://api.github.com/users/helmut-jacob/following{/other_user}", + "gists_url": "https://api.github.com/users/helmut-jacob/gists{/gist_id}", + "starred_url": "https://api.github.com/users/helmut-jacob/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/helmut-jacob/subscriptions", + "organizations_url": "https://api.github.com/users/helmut-jacob/orgs", + "repos_url": "https://api.github.com/users/helmut-jacob/repos", + "events_url": "https://api.github.com/users/helmut-jacob/events{/privacy}", + "received_events_url": "https://api.github.com/users/helmut-jacob/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 3, + "created_at": "2013-11-26T08:42:21Z", + "updated_at": "2013-11-26T12:50:09Z", + "closed_at": "2013-11-26T12:50:09Z", + "author_association": "NONE", + "body": "When using the github authentication plugin for jenkins I'm getting:\n\njava.io.FileNotFoundException: https://api.github.com/user/orgs\n at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1401)\n at sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(HttpsURLConnectionImpl.java:254)\n at org.kohsuke.github.Requester.parse(Requester.java:298)\n at org.kohsuke.github.Requester._to(Requester.java:175)\n at org.kohsuke.github.Requester.to(Requester.java:141)\n at org.kohsuke.github.GitHub.getMyOrganizations(GitHub.java:290)\n at org.jenkinsci.plugins.GithubAuthenticationToken.(GithubAuthenticationToken.java:89)\n at org.jenkinsci.plugins.GithubSecurityRealm.doFinishLogin(GithubSecurityRealm.java:366)\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:622)\n at org.kohsuke.stapler.Function$InstanceFunction.invoke(Function.java:298)\n at org.kohsuke.stapler.Function.bindAndInvoke(Function.java:161)\n at org.kohsuke.stapler.Function.bindAndInvokeAndServeResponse(Function.java:96)\n at org.kohsuke.stapler.MetaClass$1.doDispatch(MetaClass.java:120)\n at org.kohsuke.stapler.NameBasedDispatcher.dispatch(NameBasedDispatcher.java:53)\n at org.kohsuke.stapler.Stapler.tryInvoke(Stapler.java:728)\n at org.kohsuke.stapler.Stapler.invoke(Stapler.java:858)\n at org.kohsuke.stapler.MetaClass$4.doDispatch(MetaClass.java:210)\n at org.kohsuke.stapler.NameBasedDispatcher.dispatch(NameBasedDispatcher.java:53)\n at org.kohsuke.stapler.Stapler.tryInvoke(Stapler.java:728)\n at org.kohsuke.stapler.Stapler.invoke(Stapler.java:858)\n at org.kohsuke.stapler.Stapler.invoke(Stapler.java:631)\n at org.kohsuke.stapler.Stapler.service(Stapler.java:225)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:848)\n at org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:686)\n at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1494)\n at hudson.util.PluginServletFilter$1.doFilter(PluginServletFilter.java:96)\n at hudson.util.PluginServletFilter.doFilter(PluginServletFilter.java:88)\n at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1482)\n at hudson.security.csrf.CrumbFilter.doFilter(CrumbFilter.java:48)\n at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1482)\n at hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:84)\n at hudson.security.UnwrapSecurityExceptionFilter.doFilter(UnwrapSecurityExceptionFilter.java:51)\n at hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)\n at jenkins.security.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:117)\n at hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)\n at org.acegisecurity.providers.anonymous.AnonymousProcessingFilter.doFilter(AnonymousProcessingFilter.java:125)\n at hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)\n at org.acegisecurity.ui.rememberme.RememberMeProcessingFilter.doFilter(RememberMeProcessingFilter.java:135)\n at hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)\n at org.acegisecurity.ui.AbstractProcessingFilter.doFilter(AbstractProcessingFilter.java:271)\n at hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)\n at org.acegisecurity.ui.basicauth.BasicProcessingFilter.doFilter(BasicProcessingFilter.java:174)\n at hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)\n at jenkins.security.ApiTokenFilter.doFilter(ApiTokenFilter.java:64)\n at hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)\n at org.acegisecurity.context.HttpSessionContextIntegrationFilter.doFilter(HttpSessionContextIntegrationFilter.java:249)\n at hudson.security.HttpSessionContextIntegrationFilter2.doFilter(HttpSessionContextIntegrationFilter2.java:67)\n at hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)\n at hudson.security.ChainedServletFilter.doFilter(ChainedServletFilter.java:76)\n at hudson.security.HudsonFilter.doFilter(HudsonFilter.java:164)\n at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1482)\n at org.kohsuke.stapler.compression.CompressionFilter.doFilter(CompressionFilter.java:46)\n at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1482)\n at hudson.util.CharacterEncodingFilter.doFilter(CharacterEncodingFilter.java:81)\n at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1474)\n at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:499)\n at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:137)\n at org.eclipse.jetty.security.SecurityHandler.handle(SecurityHandler.java:533)\n at org.eclipse.jetty.server.session.SessionHandler.doHandle(SessionHandler.java:231)\n at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1086)\n at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:428)\n at org.eclipse.jetty.server.session.SessionHandler.doScope(SessionHandler.java:193)\n at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1020)\n at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:135)\n at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:116)\n at org.eclipse.jetty.server.Server.handle(Server.java:370)\n at org.eclipse.jetty.server.AbstractHttpConnection.handleRequest(AbstractHttpConnection.java:489)\n at org.eclipse.jetty.server.AbstractHttpConnection.headerComplete(AbstractHttpConnection.java:949)\n at org.eclipse.jetty.server.AbstractHttpConnection$RequestHandler.headerComplete(AbstractHttpConnection.java:1011)\n at org.eclipse.jetty.http.HttpParser.parseNext(HttpParser.java:644)\n at org.eclipse.jetty.http.HttpParser.parseAvailable(HttpParser.java:235)\n at org.eclipse.jetty.server.AsyncHttpConnection.handle(AsyncHttpConnection.java:82)\n at org.eclipse.jetty.io.nio.SelectChannelEndPoint.handle(SelectChannelEndPoint.java:668)\n at org.eclipse.jetty.io.nio.SelectChannelEndPoint$1.run(SelectChannelEndPoint.java:52)\n at winstone.BoundedExecutorService$1.run(BoundedExecutorService.java:77)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1146)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)\n at java.lang.Thread.run(Thread.java:701)\n\nIt seems as if github removed /user/orgs. /user/$user/orgs still works.\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/56", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/56/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/56/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/56/events", + "html_url": "https://github.com/github-api/github-api/pull/56", + "id": 23202159, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTAyNDA4NjA=", + "number": 56, + "title": "Use `PagedIterator` to retrieve repository issues", + "user": { + "login": "endeavor85", + "id": 1729092, + "node_id": "MDQ6VXNlcjE3MjkwOTI=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1729092?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/endeavor85", + "html_url": "https://github.com/endeavor85", + "followers_url": "https://api.github.com/users/endeavor85/followers", + "following_url": "https://api.github.com/users/endeavor85/following{/other_user}", + "gists_url": "https://api.github.com/users/endeavor85/gists{/gist_id}", + "starred_url": "https://api.github.com/users/endeavor85/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/endeavor85/subscriptions", + "organizations_url": "https://api.github.com/users/endeavor85/orgs", + "repos_url": "https://api.github.com/users/endeavor85/repos", + "events_url": "https://api.github.com/users/endeavor85/events{/privacy}", + "received_events_url": "https://api.github.com/users/endeavor85/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2013-11-24T08:55:42Z", + "updated_at": "2014-07-01T17:26:15Z", + "closed_at": "2013-11-27T19:49:44Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/56", + "html_url": "https://github.com/github-api/github-api/pull/56", + "diff_url": "https://github.com/github-api/github-api/pull/56.diff", + "patch_url": "https://github.com/github-api/github-api/pull/56.patch" + }, + "body": "Overcomes default 30 item page size limit.\n\nFixes #55 \n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/55", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/55/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/55/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/55/events", + "html_url": "https://github.com/github-api/github-api/issues/55", + "id": 23202105, + "node_id": "MDU6SXNzdWUyMzIwMjEwNQ==", + "number": 55, + "title": "GHRepository.getIssues() limited to 30 issues", + "user": { + "login": "endeavor85", + "id": 1729092, + "node_id": "MDQ6VXNlcjE3MjkwOTI=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1729092?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/endeavor85", + "html_url": "https://github.com/endeavor85", + "followers_url": "https://api.github.com/users/endeavor85/followers", + "following_url": "https://api.github.com/users/endeavor85/following{/other_user}", + "gists_url": "https://api.github.com/users/endeavor85/gists{/gist_id}", + "starred_url": "https://api.github.com/users/endeavor85/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/endeavor85/subscriptions", + "organizations_url": "https://api.github.com/users/endeavor85/orgs", + "repos_url": "https://api.github.com/users/endeavor85/repos", + "events_url": "https://api.github.com/users/endeavor85/events{/privacy}", + "received_events_url": "https://api.github.com/users/endeavor85/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2013-11-24T08:50:21Z", + "updated_at": "2013-11-27T19:49:44Z", + "closed_at": "2013-11-27T19:49:44Z", + "author_association": "CONTRIBUTOR", + "body": "According to the [GitHub API](http://developer.github.com/v3/#pagination):\n\n> Requests that return multiple items will be paginated to 30 items by default.\n\nNeed to use `PagedIterable<>` when retrieving repository issues in order to retrieve all issues.\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/54", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/54/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/54/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/54/events", + "html_url": "https://github.com/github-api/github-api/issues/54", + "id": 22125245, + "node_id": "MDU6SXNzdWUyMjEyNTI0NQ==", + "number": 54, + "title": "class file for com.infradna.tool.bridge_method_injector.WithBridgeMethods not found", + "user": { + "login": "yegor256", + "id": 526301, + "node_id": "MDQ6VXNlcjUyNjMwMQ==", + "avatar_url": "https://avatars3.githubusercontent.com/u/526301?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/yegor256", + "html_url": "https://github.com/yegor256", + "followers_url": "https://api.github.com/users/yegor256/followers", + "following_url": "https://api.github.com/users/yegor256/following{/other_user}", + "gists_url": "https://api.github.com/users/yegor256/gists{/gist_id}", + "starred_url": "https://api.github.com/users/yegor256/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/yegor256/subscriptions", + "organizations_url": "https://api.github.com/users/yegor256/orgs", + "repos_url": "https://api.github.com/users/yegor256/repos", + "events_url": "https://api.github.com/users/yegor256/events{/privacy}", + "received_events_url": "https://api.github.com/users/yegor256/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2013-11-05T15:00:59Z", + "updated_at": "2014-05-10T19:53:26Z", + "closed_at": "2014-05-10T19:53:26Z", + "author_association": "NONE", + "body": "I see this warning during compilation when `org.kohsuke:github-api:jar` is in classpath:\n\n```\n[WARNING] Cannot find annotation method 'value()' in type 'com.infradna.tool.bridge_method_injector.WithBridgeMethods': class file for com.infradna.tool.bridge_method_injector.WithBridgeMethods not found\n```\n\nWould be great to get rid of it\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/53", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/53/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/53/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/53/events", + "html_url": "https://github.com/github-api/github-api/issues/53", + "id": 22123377, + "node_id": "MDU6SXNzdWUyMjEyMzM3Nw==", + "number": 53, + "title": "add support of Gists", + "user": { + "login": "yegor256", + "id": 526301, + "node_id": "MDQ6VXNlcjUyNjMwMQ==", + "avatar_url": "https://avatars3.githubusercontent.com/u/526301?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/yegor256", + "html_url": "https://github.com/yegor256", + "followers_url": "https://api.github.com/users/yegor256/followers", + "following_url": "https://api.github.com/users/yegor256/following{/other_user}", + "gists_url": "https://api.github.com/users/yegor256/gists{/gist_id}", + "starred_url": "https://api.github.com/users/yegor256/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/yegor256/subscriptions", + "organizations_url": "https://api.github.com/users/yegor256/orgs", + "repos_url": "https://api.github.com/users/yegor256/repos", + "events_url": "https://api.github.com/users/yegor256/events{/privacy}", + "received_events_url": "https://api.github.com/users/yegor256/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2013-11-05T14:33:26Z", + "updated_at": "2014-05-10T21:13:13Z", + "closed_at": "2014-05-10T21:13:13Z", + "author_association": "NONE", + "body": "Would be great if the library would also support Gist API: http://developer.github.com/v3/gists/\n" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/__files/repositories_617210_issues-c66e220e-9138-4ead-92fb-7e882c71b9bf.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/__files/repositories_617210_issues-c66e220e-9138-4ead-92fb-7e882c71b9bf.json new file mode 100644 index 0000000000..6bae6215a2 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/__files/repositories_617210_issues-c66e220e-9138-4ead-92fb-7e882c71b9bf.json @@ -0,0 +1,1424 @@ +[ + { + "url": "https://api.github.com/repos/github-api/github-api/issues/367", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/367/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/367/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/367/events", + "html_url": "https://github.com/github-api/github-api/issues/367", + "id": 246406998, + "node_id": "MDU6SXNzdWUyNDY0MDY5OTg=", + "number": 367, + "title": "Cannot merge newly created GHPullRequest", + "user": { + "login": "jamesdh", + "id": 1085322, + "node_id": "MDQ6VXNlcjEwODUzMjI=", + "avatar_url": "https://avatars1.githubusercontent.com/u/1085322?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jamesdh", + "html_url": "https://github.com/jamesdh", + "followers_url": "https://api.github.com/users/jamesdh/followers", + "following_url": "https://api.github.com/users/jamesdh/following{/other_user}", + "gists_url": "https://api.github.com/users/jamesdh/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jamesdh/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jamesdh/subscriptions", + "organizations_url": "https://api.github.com/users/jamesdh/orgs", + "repos_url": "https://api.github.com/users/jamesdh/repos", + "events_url": "https://api.github.com/users/jamesdh/events{/privacy}", + "received_events_url": "https://api.github.com/users/jamesdh/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2017-07-28T17:10:49Z", + "updated_at": "2017-07-28T17:36:12Z", + "closed_at": "2017-07-28T17:35:59Z", + "author_association": "NONE", + "body": "```\r\nGHPullRequest pull = repo.createPullRequest(\"Release $version\", \"master\", \"production\", body)\r\nwhile(!pull.getMergeable()) {\r\n println \"PR not yet mergeable, retrying...\"\r\n sleep 2\r\n}\r\npull.merge(\"Merged via Jenkins\", pull.getHead().getSha())\r\n```\r\n\r\nThe `pull.merge(...)` seemingly results in a no-op. No error. No merge. \r\n\r\nGenerally it's not immediately mergeable via `pull.getMergeable()` and it must pause a moment before that passes. But even accounting for that, I still get nothing. " + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/366", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/366/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/366/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/366/events", + "html_url": "https://github.com/github-api/github-api/pull/366", + "id": 244219273, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTMxNDUyMDkw", + "number": 366, + "title": "Implement Pull request review feature", + "user": { + "login": "PauloMigAlmeida", + "id": 1011868, + "node_id": "MDQ6VXNlcjEwMTE4Njg=", + "avatar_url": "https://avatars1.githubusercontent.com/u/1011868?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PauloMigAlmeida", + "html_url": "https://github.com/PauloMigAlmeida", + "followers_url": "https://api.github.com/users/PauloMigAlmeida/followers", + "following_url": "https://api.github.com/users/PauloMigAlmeida/following{/other_user}", + "gists_url": "https://api.github.com/users/PauloMigAlmeida/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PauloMigAlmeida/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PauloMigAlmeida/subscriptions", + "organizations_url": "https://api.github.com/users/PauloMigAlmeida/orgs", + "repos_url": "https://api.github.com/users/PauloMigAlmeida/repos", + "events_url": "https://api.github.com/users/PauloMigAlmeida/events{/privacy}", + "received_events_url": "https://api.github.com/users/PauloMigAlmeida/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2017-07-20T01:23:23Z", + "updated_at": "2017-07-21T05:34:32Z", + "closed_at": "2017-07-21T05:34:32Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/366", + "html_url": "https://github.com/github-api/github-api/pull/366", + "diff_url": "https://github.com/github-api/github-api/pull/366.diff", + "patch_url": "https://github.com/github-api/github-api/pull/366.patch" + }, + "body": "Hi @kohsuke and github-api's contributors,\r\n\r\nI have been using github-api for a while now (BTW congrats for the high-quality SDK provided 👍) and recently, I have come to the conclusion that the ```Pull Request Review``` feature was needed to achieve the automation level the team and I are aiming for. Since it wasn't implemented at that time, I decided to implement it myself and to create a PR so other developers with the same need could benefit from it in the future.\r\n\r\n**Features implemented / Things done:**\r\n* Create Review\r\n* List Review\r\n* Submit Review\r\n* Delete Review\r\n* Unit tests implemented\r\n\r\nIf you think that this is good addition to your SDK, please accept this PR. In case you have any doubt about anything I have coded, just let me know.\r\n\r\nBest regards,\r\n\r\nPaulo Miguel Almeida " + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/365", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/365/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/365/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/365/events", + "html_url": "https://github.com/github-api/github-api/issues/365", + "id": 243315367, + "node_id": "MDU6SXNzdWUyNDMzMTUzNjc=", + "number": 365, + "title": "Unable to search thru search API", + "user": { + "login": "Rahamathulla", + "id": 23169170, + "node_id": "MDQ6VXNlcjIzMTY5MTcw", + "avatar_url": "https://avatars1.githubusercontent.com/u/23169170?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Rahamathulla", + "html_url": "https://github.com/Rahamathulla", + "followers_url": "https://api.github.com/users/Rahamathulla/followers", + "following_url": "https://api.github.com/users/Rahamathulla/following{/other_user}", + "gists_url": "https://api.github.com/users/Rahamathulla/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Rahamathulla/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Rahamathulla/subscriptions", + "organizations_url": "https://api.github.com/users/Rahamathulla/orgs", + "repos_url": "https://api.github.com/users/Rahamathulla/repos", + "events_url": "https://api.github.com/users/Rahamathulla/events{/privacy}", + "received_events_url": "https://api.github.com/users/Rahamathulla/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 4, + "created_at": "2017-07-17T07:34:13Z", + "updated_at": "2017-08-02T15:30:09Z", + "closed_at": "2017-08-02T15:30:09Z", + "author_association": "NONE", + "body": "I am getting the below error.\r\n\r\nINFO: timed out accessing https://api.github.com/search/issues?q=ArithmeticException+language%3AJava; will try 2 more time(s)\r\njava.net.SocketTimeoutException: connect timed out\r\n\r\nI am able to connect go github using password\r\n\r\ntry {\r\n\t\t\thub = GitHub.connectUsingPassword(\"username\", \"passwd\");\r\n\t\t\tSystem.out.println(\"Successfully connected\");\r\n\t\t} catch (IOException e) {\r\n\t\t\tSystem.out.println(\"failed to authenticate\");\r\n\t\t\te.printStackTrace();\r\n\t\t\tSystem.exit(1);\r\n\t\t}\r\n\r\n\r\nStack Trace:\r\n\r\nNFO: timed out accessing https://api.github.com/search/issues?q=ArithmeticException+language%3AJava; will try 2 more time(s)\r\njava.net.SocketTimeoutException: connect timed out\r\n\tat java.net.DualStackPlainSocketImpl.waitForConnect(Native Method)\r\n\tat java.net.DualStackPlainSocketImpl.socketConnect(DualStackPlainSocketImpl.java:85)\r\n\tat java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:350)\r\n\tat java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:206)\r\n\tat java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:188)\r\n\tat java.net.PlainSocketImpl.connect(PlainSocketImpl.java:172)\r\n\tat java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392)\r\n\tat java.net.Socket.connect(Socket.java:589)\r\n\tat sun.security.ssl.SSLSocketImpl.connect(SSLSocketImpl.java:668)\r\n\tat sun.net.NetworkClient.doConnect(NetworkClient.java:175)\r\n\tat sun.net.www.http.HttpClient.openServer(HttpClient.java:432)\r\n\tat sun.net.www.http.HttpClient.openServer(HttpClient.java:527)\r\n\tat sun.net.www.protocol.https.HttpsClient.(HttpsClient.java:264)\r\n\tat sun.net.www.protocol.https.HttpsClient.New(HttpsClient.java:367)\r\n\tat sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.getNewHttpClient(AbstractDelegateHttpsURLConnection.java:191)\r\n\tat sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1105)\r\n\tat sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:999)\r\n\tat sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:177)\r\n\tat sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1513)\r\n\tat sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1441)\r\n\tat java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:480)\r\n\tat sun.net.www.protocol.https.HttpsURLConnectionImpl.getResponseCode(HttpsURLConnectionImpl.java:338)\r\n\tat org.kohsuke.github.Requester.parse(Requester.java:592)\r\n\tat org.kohsuke.github.Requester.parse(Requester.java:584)\r\n\tat org.kohsuke.github.Requester.access$200(Requester.java:70)\r\n\tat org.kohsuke.github.Requester$PagingIterator.fetch(Requester.java:496)\r\n\tat org.kohsuke.github.Requester$PagingIterator.hasNext(Requester.java:472)\r\n\tat org.kohsuke.github.PagedSearchIterable$1.hasNext(PagedSearchIterable.java:56)\r\n\tat org.kohsuke.github.PagedIterator.fetch(PagedIterator.java:44)\r\n\tat org.kohsuke.github.PagedIterator.hasNext(PagedIterator.java:32)\r\n\tat org.kohsuke.github.PagedIterable.asList(PagedIterable.java:42)\r\n\tat org.kohsuke.github.GitHubSearchTest.search(GitHubSearchTest.java:55)\r\n\tat org.kohsuke.github.GitHubSearchTest.main(GitHubSearchTest.java:44)\r\n\r\nJul 17, 2017 12:57:17 PM org.kohsuke.github.Requester parse\r\nINFO: timed out accessing https://api.github.com/search/issues?q=ArithmeticException+language%3AJava; will try 1 more time(s)\r\njava.net.SocketTimeoutException: connect timed out\r\n\tat sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)\r\n\tat sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)\r\n\tat sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)\r\n\tat java.lang.reflect.Constructor.newInstance(Constructor.java:423)\r\n\tat sun.net.www.protocol.http.HttpURLConnection$10.run(HttpURLConnection.java:1890)\r\n\tat sun.net.www.protocol.http.HttpURLConnection$10.run(HttpURLConnection.java:1885)\r\n\tat java.security.AccessController.doPrivileged(Native Method)\r\n\tat sun.net.www.protocol.http.HttpURLConnection.getChainedException(HttpURLConnection.java:1884)\r\n\tat sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1457)\r\n\tat sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1441)\r\n\tat java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:480)\r\n\tat sun.net.www.protocol.https.HttpsURLConnectionImpl.getResponseCode(HttpsURLConnectionImpl.java:338)\r\n\tat org.kohsuke.github.Requester.parse(Requester.java:592)\r\n\tat org.kohsuke.github.Requester.parse(Requester.java:620)\r\n\tat org.kohsuke.github.Requester.parse(Requester.java:584)\r\n\tat org.kohsuke.github.Requester.access$200(Requester.java:70)\r\n\tat org.kohsuke.github.Requester$PagingIterator.fetch(Requester.java:496)\r\n\tat org.kohsuke.github.Requester$PagingIterator.hasNext(Requester.java:472)\r\n\tat org.kohsuke.github.PagedSearchIterable$1.hasNext(PagedSearchIterable.java:56)\r\n\tat org.kohsuke.github.PagedIterator.fetch(PagedIterator.java:44)\r\n\tat org.kohsuke.github.PagedIterator.hasNext(PagedIterator.java:32)\r\n\tat org.kohsuke.github.PagedIterable.asList(PagedIterable.java:42)\r\n\tat org.kohsuke.github.GitHubSearchTest.search(GitHubSearchTest.java:55)\r\n\tat org.kohsuke.github.GitHubSearchTest.main(GitHubSearchTest.java:44)\r\nCaused by: java.net.SocketTimeoutException: connect timed out\r\n\tat java.net.DualStackPlainSocketImpl.waitForConnect(Native Method)\r\n\tat java.net.DualStackPlainSocketImpl.socketConnect(DualStackPlainSocketImpl.java:85)\r\n\tat java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:350)\r\n\tat java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:206)\r\n\tat java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:188)\r\n\tat java.net.PlainSocketImpl.connect(PlainSocketImpl.java:172)\r\n\tat java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392)\r\n\tat java.net.Socket.connect(Socket.java:589)\r\n\tat sun.security.ssl.SSLSocketImpl.connect(SSLSocketImpl.java:668)\r\n\tat sun.net.NetworkClient.doConnect(NetworkClient.java:175)\r\n\tat sun.net.www.http.HttpClient.openServer(HttpClient.java:432)\r\n\tat sun.net.www.http.HttpClient.openServer(HttpClient.java:527)\r\n\tat sun.net.www.protocol.https.HttpsClient.(HttpsClient.java:264)\r\n\tat sun.net.www.protocol.https.HttpsClient.New(HttpsClient.java:367)\r\n\tat sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.getNewHttpClient(AbstractDelegateHttpsURLConnection.java:191)\r\n\tat sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1105)\r\n\tat sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:999)\r\n\tat sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:177)\r\n\tat sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1513)\r\n\tat sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1441)\r\n\tat java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:480)\r\n\tat sun.net.www.protocol.https.HttpsURLConnectionImpl.getResponseCode(HttpsURLConnectionImpl.java:338)\r\n\tat org.kohsuke.github.Requester.parse(Requester.java:592)\r\n\t... 10 more\r\n\r\nException in thread \"main\" java.lang.Error: org.kohsuke.github.HttpException: Server returned HTTP response code: -1, message: 'null' for URL: https://api.github.com/search/issues?q=ArithmeticException+language%3AJava\r\n\tat org.kohsuke.github.Requester$PagingIterator.fetch(Requester.java:507)\r\n\tat org.kohsuke.github.Requester$PagingIterator.hasNext(Requester.java:472)\r\n\tat org.kohsuke.github.PagedSearchIterable$1.hasNext(PagedSearchIterable.java:56)\r\n\tat org.kohsuke.github.PagedIterator.fetch(PagedIterator.java:44)\r\n\tat org.kohsuke.github.PagedIterator.hasNext(PagedIterator.java:32)\r\n\tat org.kohsuke.github.PagedIterable.asList(PagedIterable.java:42)\r\n\tat org.kohsuke.github.GitHubSearchTest.search(GitHubSearchTest.java:55)\r\n\tat org.kohsuke.github.GitHubSearchTest.main(GitHubSearchTest.java:44)\r\nCaused by: org.kohsuke.github.HttpException: Server returned HTTP response code: -1, message: 'null' for URL: https://api.github.com/search/issues?q=ArithmeticException+language%3AJava\r\n\tat org.kohsuke.github.Requester.parse(Requester.java:622)\r\n\tat org.kohsuke.github.Requester.parse(Requester.java:620)\r\n\tat org.kohsuke.github.Requester.parse(Requester.java:620)\r\n\tat org.kohsuke.github.Requester.parse(Requester.java:584)\r\n\tat org.kohsuke.github.Requester.access$200(Requester.java:70)\r\n\tat org.kohsuke.github.Requester$PagingIterator.fetch(Requester.java:496)\r\n\t... 7 more\r\nCaused by: java.net.SocketTimeoutException: connect timed out\r\n\tat sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)\r\n\tat sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)\r\n\tat sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)\r\n\tat java.lang.reflect.Constructor.newInstance(Constructor.java:423)\r\n\tat sun.net.www.protocol.http.HttpURLConnection$10.run(HttpURLConnection.java:1890)\r\n\tat sun.net.www.protocol.http.HttpURLConnection$10.run(HttpURLConnection.java:1885)\r\n\tat java.security.AccessController.doPrivileged(Native Method)\r\n\tat sun.net.www.protocol.http.HttpURLConnection.getChainedException(HttpURLConnection.java:1884)\r\n\tat sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1457)\r\n\tat sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1441)\r\n\tat java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:480)\r\n\tat sun.net.www.protocol.https.HttpsURLConnectionImpl.getResponseCode(HttpsURLConnectionImpl.java:338)\r\n\tat org.kohsuke.github.Requester.parse(Requester.java:592)\r\n\t... 12 more\r\nCaused by: java.net.SocketTimeoutException: connect timed out\r\n\tat java.net.DualStackPlainSocketImpl.waitForConnect(Native Method)\r\n\tat java.net.DualStackPlainSocketImpl.socketConnect(DualStackPlainSocketImpl.java:85)\r\n\tat java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:350)\r\n\tat java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:206)\r\n\tat java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:188)\r\n\tat java.net.PlainSocketImpl.connect(PlainSocketImpl.java:172)\r\n\tat java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392)\r\n\tat java.net.Socket.connect(Socket.java:589)\r\n\tat sun.security.ssl.SSLSocketImpl.connect(SSLSocketImpl.java:668)\r\n\tat sun.net.NetworkClient.doConnect(NetworkClient.java:175)\r\n\tat sun.net.www.http.HttpClient.openServer(HttpClient.java:432)\r\n\tat sun.net.www.http.HttpClient.openServer(HttpClient.java:527)\r\n\tat sun.net.www.protocol.https.HttpsClient.(HttpsClient.java:264)\r\n\tat sun.net.www.protocol.https.HttpsClient.New(HttpsClient.java:367)\r\n\tat sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.getNewHttpClient(AbstractDelegateHttpsURLConnection.java:191)\r\n\tat sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1105)\r\n\tat sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:999)\r\n\tat sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:177)\r\n\tat sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1513)\r\n\tat sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1441)\r\n\tat java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:480)\r\n\tat sun.net.www.protocol.https.HttpsURLConnectionImpl.getResponseCode(HttpsURLConnectionImpl.java:338)\r\n\tat org.kohsuke.github.Requester.parse(Requester.java:592)\r\n\t... 10 more" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/364", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/364/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/364/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/364/events", + "html_url": "https://github.com/github-api/github-api/issues/364", + "id": 243284423, + "node_id": "MDU6SXNzdWUyNDMyODQ0MjM=", + "number": 364, + "title": "Unable to find documentation for issue search", + "user": { + "login": "Rahamathulla", + "id": 23169170, + "node_id": "MDQ6VXNlcjIzMTY5MTcw", + "avatar_url": "https://avatars1.githubusercontent.com/u/23169170?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Rahamathulla", + "html_url": "https://github.com/Rahamathulla", + "followers_url": "https://api.github.com/users/Rahamathulla/followers", + "following_url": "https://api.github.com/users/Rahamathulla/following{/other_user}", + "gists_url": "https://api.github.com/users/Rahamathulla/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Rahamathulla/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Rahamathulla/subscriptions", + "organizations_url": "https://api.github.com/users/Rahamathulla/orgs", + "repos_url": "https://api.github.com/users/Rahamathulla/repos", + "events_url": "https://api.github.com/users/Rahamathulla/events{/privacy}", + "received_events_url": "https://api.github.com/users/Rahamathulla/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 4, + "created_at": "2017-07-17T02:18:45Z", + "updated_at": "2017-07-17T06:56:09Z", + "closed_at": "2017-07-17T06:56:09Z", + "author_association": "NONE", + "body": "I would like to see the documentation for sample issue search.\r\n\r\nCan you please help with it.\r\n\r\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/363", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/363/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/363/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/363/events", + "html_url": "https://github.com/github-api/github-api/pull/363", + "id": 242895852, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTMwNTE0NzU0", + "number": 363, + "title": "Add missing event types used by repository webhooks", + "user": { + "login": "PauloMigAlmeida", + "id": 1011868, + "node_id": "MDQ6VXNlcjEwMTE4Njg=", + "avatar_url": "https://avatars1.githubusercontent.com/u/1011868?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PauloMigAlmeida", + "html_url": "https://github.com/PauloMigAlmeida", + "followers_url": "https://api.github.com/users/PauloMigAlmeida/followers", + "following_url": "https://api.github.com/users/PauloMigAlmeida/following{/other_user}", + "gists_url": "https://api.github.com/users/PauloMigAlmeida/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PauloMigAlmeida/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PauloMigAlmeida/subscriptions", + "organizations_url": "https://api.github.com/users/PauloMigAlmeida/orgs", + "repos_url": "https://api.github.com/users/PauloMigAlmeida/repos", + "events_url": "https://api.github.com/users/PauloMigAlmeida/events{/privacy}", + "received_events_url": "https://api.github.com/users/PauloMigAlmeida/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2017-07-14T04:42:14Z", + "updated_at": "2017-09-08T17:36:34Z", + "closed_at": "2017-09-08T17:36:34Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/363", + "html_url": "https://github.com/github-api/github-api/pull/363", + "diff_url": "https://github.com/github-api/github-api/pull/363.diff", + "patch_url": "https://github.com/github-api/github-api/pull/363.patch" + }, + "body": "There are a few event types that were missing in the GHEvent file since the last time it was updated.\r\n\r\nSo I thought it would be nice to update it again with the most recent events.\r\n\r\nCheers,\r\n\r\nPaulo Almeida" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/362", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/362/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/362/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/362/events", + "html_url": "https://github.com/github-api/github-api/pull/362", + "id": 241568869, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTI5NTgzMDQ4", + "number": 362, + "title": "Add ping hook method", + "user": { + "login": "KostyaSha", + "id": 231611, + "node_id": "MDQ6VXNlcjIzMTYxMQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/231611?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/KostyaSha", + "html_url": "https://github.com/KostyaSha", + "followers_url": "https://api.github.com/users/KostyaSha/followers", + "following_url": "https://api.github.com/users/KostyaSha/following{/other_user}", + "gists_url": "https://api.github.com/users/KostyaSha/gists{/gist_id}", + "starred_url": "https://api.github.com/users/KostyaSha/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/KostyaSha/subscriptions", + "organizations_url": "https://api.github.com/users/KostyaSha/orgs", + "repos_url": "https://api.github.com/users/KostyaSha/repos", + "events_url": "https://api.github.com/users/KostyaSha/events{/privacy}", + "received_events_url": "https://api.github.com/users/KostyaSha/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 3, + "created_at": "2017-07-09T23:39:05Z", + "updated_at": "2017-09-08T17:34:46Z", + "closed_at": "2017-09-08T17:34:46Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/362", + "html_url": "https://github.com/github-api/github-api/pull/362", + "diff_url": "https://github.com/github-api/github-api/pull/362.diff", + "patch_url": "https://github.com/github-api/github-api/pull/362.patch" + }, + "body": "\n\n\nThis change is [\"Reviewable\"/](https://reviewable.io/reviews/kohsuke/github-api/362)\n\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/361", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/361/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/361/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/361/events", + "html_url": "https://github.com/github-api/github-api/pull/361", + "id": 241435089, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTI5NTIxNjI1", + "number": 361, + "title": "issue #360: Add support for committing multiple files", + "user": { + "login": "siordache", + "id": 1158863, + "node_id": "MDQ6VXNlcjExNTg4NjM=", + "avatar_url": "https://avatars1.githubusercontent.com/u/1158863?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/siordache", + "html_url": "https://github.com/siordache", + "followers_url": "https://api.github.com/users/siordache/followers", + "following_url": "https://api.github.com/users/siordache/following{/other_user}", + "gists_url": "https://api.github.com/users/siordache/gists{/gist_id}", + "starred_url": "https://api.github.com/users/siordache/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/siordache/subscriptions", + "organizations_url": "https://api.github.com/users/siordache/orgs", + "repos_url": "https://api.github.com/users/siordache/repos", + "events_url": "https://api.github.com/users/siordache/events{/privacy}", + "received_events_url": "https://api.github.com/users/siordache/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 6, + "created_at": "2017-07-08T08:10:29Z", + "updated_at": "2017-09-09T18:48:49Z", + "closed_at": "2017-09-09T18:48:49Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/361", + "html_url": "https://github.com/github-api/github-api/pull/361", + "diff_url": "https://github.com/github-api/github-api/pull/361.diff", + "patch_url": "https://github.com/github-api/github-api/pull/361.patch" + }, + "body": "Implement #360. New classes:\r\n- GHBlobBuilder - [create a blob](https://developer.github.com/v3/git/blobs/#create-a-blob)\r\n- GHTreeBuilder - [create a tree](https://developer.github.com/v3/git/trees/#create-a-tree)\r\n- GHCommitBuilder - [create a commit](https://developer.github.com/v3/git/commits/#create-a-commit)\r\n\r\n[This gist](https://gist.github.com/siordache/63b19f515e4db6944e2411265f89e92f) shows how to use the new classes." + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/360", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/360/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/360/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/360/events", + "html_url": "https://github.com/github-api/github-api/issues/360", + "id": 241250399, + "node_id": "MDU6SXNzdWUyNDEyNTAzOTk=", + "number": 360, + "title": "Add support for committing multiple files.", + "user": { + "login": "siordache", + "id": 1158863, + "node_id": "MDQ6VXNlcjExNTg4NjM=", + "avatar_url": "https://avatars1.githubusercontent.com/u/1158863?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/siordache", + "html_url": "https://github.com/siordache", + "followers_url": "https://api.github.com/users/siordache/followers", + "following_url": "https://api.github.com/users/siordache/following{/other_user}", + "gists_url": "https://api.github.com/users/siordache/gists{/gist_id}", + "starred_url": "https://api.github.com/users/siordache/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/siordache/subscriptions", + "organizations_url": "https://api.github.com/users/siordache/orgs", + "repos_url": "https://api.github.com/users/siordache/repos", + "events_url": "https://api.github.com/users/siordache/events{/privacy}", + "received_events_url": "https://api.github.com/users/siordache/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2017-07-07T12:33:46Z", + "updated_at": "2017-09-09T21:07:45Z", + "closed_at": "2017-09-09T21:07:45Z", + "author_association": "CONTRIBUTOR", + "body": "A single file can be committed by using one of the GHRepository.createContent() methods.\r\n\r\nIn order to commit multiple files, the following steps have to be taken:\r\n1. Get the SHA of the latest commit on the branch\r\n2. Get the tree information for that commit\r\n3. **Create a new tree for your commit**\r\n4. **Create the commit**\r\n5. Link commit to the reference\r\n\r\nThe operations in steps 3 and 4 are currently not suppported by github-api. They involve:\r\n- [creating a blob](https://developer.github.com/v3/git/blobs/#create-a-blob)\r\n- [creating a tree](https://developer.github.com/v3/git/trees/#create-a-tree)\r\n- [creating a commit](https://developer.github.com/v3/git/commits/#create-a-commit)\r\n\r\nDo you find the addition of these operations useful? If yes, I will create a PR for this.\r\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/359", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/359/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/359/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/359/events", + "html_url": "https://github.com/github-api/github-api/pull/359", + "id": 239298451, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTI4MDIxMDU2", + "number": 359, + "title": "[JENKINS-45142] Retry connections after getting SocketTimeoutException", + "user": { + "login": "jglick", + "id": 154109, + "node_id": "MDQ6VXNlcjE1NDEwOQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/154109?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jglick", + "html_url": "https://github.com/jglick", + "followers_url": "https://api.github.com/users/jglick/followers", + "following_url": "https://api.github.com/users/jglick/following{/other_user}", + "gists_url": "https://api.github.com/users/jglick/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jglick/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jglick/subscriptions", + "organizations_url": "https://api.github.com/users/jglick/orgs", + "repos_url": "https://api.github.com/users/jglick/repos", + "events_url": "https://api.github.com/users/jglick/events{/privacy}", + "received_events_url": "https://api.github.com/users/jglick/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 6, + "created_at": "2017-06-28T21:10:42Z", + "updated_at": "2017-07-03T13:41:45Z", + "closed_at": "2017-06-29T21:13:31Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/359", + "html_url": "https://github.com/github-api/github-api/pull/359", + "diff_url": "https://github.com/github-api/github-api/pull/359.diff", + "patch_url": "https://github.com/github-api/github-api/pull/359.patch" + }, + "body": "[JENKINS-45142](https://issues.jenkins-ci.org/browse/JENKINS-45142)\r\n\r\n@reviewbybees" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/358", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/358/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/358/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/358/events", + "html_url": "https://github.com/github-api/github-api/pull/358", + "id": 235251737, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTI1MTUwMTMy", + "number": 358, + "title": "[JENKINS-36240] /repos/:owner/:repo/collaborators/:username/permission no longer requires korra preview", + "user": { + "login": "jglick", + "id": 154109, + "node_id": "MDQ6VXNlcjE1NDEwOQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/154109?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jglick", + "html_url": "https://github.com/jglick", + "followers_url": "https://api.github.com/users/jglick/followers", + "following_url": "https://api.github.com/users/jglick/following{/other_user}", + "gists_url": "https://api.github.com/users/jglick/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jglick/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jglick/subscriptions", + "organizations_url": "https://api.github.com/users/jglick/orgs", + "repos_url": "https://api.github.com/users/jglick/repos", + "events_url": "https://api.github.com/users/jglick/events{/privacy}", + "received_events_url": "https://api.github.com/users/jglick/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 3, + "created_at": "2017-06-12T14:30:15Z", + "updated_at": "2017-10-04T21:14:56Z", + "closed_at": "2017-09-08T17:33:32Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/358", + "html_url": "https://github.com/github-api/github-api/pull/358", + "diff_url": "https://github.com/github-api/github-api/pull/358.diff", + "patch_url": "https://github.com/github-api/github-api/pull/358.patch" + }, + "body": "[JENKINS-36240](https://issues.jenkins-ci.org/browse/JENKINS-36240)\r\n\r\nAmends #324 (and its unfiled follow-ups). [This API](https://developer.github.com/v3/repos/collaborators/#review-a-users-permission-level) seems to now be official.\r\n\r\n@reviewbybees esp. @stephenc & @kohsuke" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/357", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/357/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/357/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/357/events", + "html_url": "https://github.com/github-api/github-api/issues/357", + "id": 226462677, + "node_id": "MDU6SXNzdWUyMjY0NjI2Nzc=", + "number": 357, + "title": "Update compiler", + "user": { + "login": "justin-wesley", + "id": 3708806, + "node_id": "MDQ6VXNlcjM3MDg4MDY=", + "avatar_url": "https://avatars1.githubusercontent.com/u/3708806?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/justin-wesley", + "html_url": "https://github.com/justin-wesley", + "followers_url": "https://api.github.com/users/justin-wesley/followers", + "following_url": "https://api.github.com/users/justin-wesley/following{/other_user}", + "gists_url": "https://api.github.com/users/justin-wesley/gists{/gist_id}", + "starred_url": "https://api.github.com/users/justin-wesley/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/justin-wesley/subscriptions", + "organizations_url": "https://api.github.com/users/justin-wesley/orgs", + "repos_url": "https://api.github.com/users/justin-wesley/repos", + "events_url": "https://api.github.com/users/justin-wesley/events{/privacy}", + "received_events_url": "https://api.github.com/users/justin-wesley/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 5, + "created_at": "2017-05-05T03:16:04Z", + "updated_at": "2017-09-09T21:09:16Z", + "closed_at": "2017-09-09T21:09:16Z", + "author_association": "NONE", + "body": "With JDK 5 being end of life for many many years, it is time to move to JDK 8. I think you should create a branch for JDK 8 and even JDK 9, so contributors can use the newer JDK." + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/356", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/356/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/356/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/356/events", + "html_url": "https://github.com/github-api/github-api/issues/356", + "id": 223539584, + "node_id": "MDU6SXNzdWUyMjM1Mzk1ODQ=", + "number": 356, + "title": "Extension mechanism?", + "user": { + "login": "vromero", + "id": 1119553, + "node_id": "MDQ6VXNlcjExMTk1NTM=", + "avatar_url": "https://avatars1.githubusercontent.com/u/1119553?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vromero", + "html_url": "https://github.com/vromero", + "followers_url": "https://api.github.com/users/vromero/followers", + "following_url": "https://api.github.com/users/vromero/following{/other_user}", + "gists_url": "https://api.github.com/users/vromero/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vromero/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vromero/subscriptions", + "organizations_url": "https://api.github.com/users/vromero/orgs", + "repos_url": "https://api.github.com/users/vromero/repos", + "events_url": "https://api.github.com/users/vromero/events{/privacy}", + "received_events_url": "https://api.github.com/users/vromero/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2017-04-22T04:37:16Z", + "updated_at": "2017-09-09T21:18:27Z", + "closed_at": "2017-09-09T21:18:27Z", + "author_association": "NONE", + "body": "I need to get direct collaborators only,\r\n\r\nhttps://developer.github.com/v3/repos/collaborators/\r\n\r\nseems the only way is to modify the library itself, privates and packages prevent me to extend" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/355", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/355/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/355/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/355/events", + "html_url": "https://github.com/github-api/github-api/issues/355", + "id": 222295800, + "node_id": "MDU6SXNzdWUyMjIyOTU4MDA=", + "number": 355, + "title": "Update GHPullRequest with missing properties", + "user": { + "login": "aaronjwhiteside", + "id": 1084153, + "node_id": "MDQ6VXNlcjEwODQxNTM=", + "avatar_url": "https://avatars2.githubusercontent.com/u/1084153?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/aaronjwhiteside", + "html_url": "https://github.com/aaronjwhiteside", + "followers_url": "https://api.github.com/users/aaronjwhiteside/followers", + "following_url": "https://api.github.com/users/aaronjwhiteside/following{/other_user}", + "gists_url": "https://api.github.com/users/aaronjwhiteside/gists{/gist_id}", + "starred_url": "https://api.github.com/users/aaronjwhiteside/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/aaronjwhiteside/subscriptions", + "organizations_url": "https://api.github.com/users/aaronjwhiteside/orgs", + "repos_url": "https://api.github.com/users/aaronjwhiteside/repos", + "events_url": "https://api.github.com/users/aaronjwhiteside/events{/privacy}", + "received_events_url": "https://api.github.com/users/aaronjwhiteside/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2017-04-18T04:06:08Z", + "updated_at": "2017-09-10T03:39:03Z", + "closed_at": "2017-09-10T03:39:03Z", + "author_association": "NONE", + "body": "As per https://developer.github.com/v3/pulls/#get-a-single-pull-request\r\n\r\n`locked` - read/write, https://developer.github.com/v3/issues/#unlock-an-issue\r\n`commits` - read only\r\n`maintainer_can_modify` - read/write, https://developer.github.com/v3/pulls/#update-a-pull-request" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/353", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/353/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/353/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/353/events", + "html_url": "https://github.com/github-api/github-api/issues/353", + "id": 218568283, + "node_id": "MDU6SXNzdWUyMTg1NjgyODM=", + "number": 353, + "title": "Refactor to allow for additional HTTP headers", + "user": { + "login": "cosmocracy", + "id": 10222432, + "node_id": "MDQ6VXNlcjEwMjIyNDMy", + "avatar_url": "https://avatars0.githubusercontent.com/u/10222432?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cosmocracy", + "html_url": "https://github.com/cosmocracy", + "followers_url": "https://api.github.com/users/cosmocracy/followers", + "following_url": "https://api.github.com/users/cosmocracy/following{/other_user}", + "gists_url": "https://api.github.com/users/cosmocracy/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cosmocracy/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cosmocracy/subscriptions", + "organizations_url": "https://api.github.com/users/cosmocracy/orgs", + "repos_url": "https://api.github.com/users/cosmocracy/repos", + "events_url": "https://api.github.com/users/cosmocracy/events{/privacy}", + "received_events_url": "https://api.github.com/users/cosmocracy/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2017-03-31T17:35:07Z", + "updated_at": "2017-09-09T21:12:33Z", + "closed_at": "2017-09-09T21:12:32Z", + "author_association": "NONE", + "body": "For new/experimental functionality, the GitHub API requires the submission of an additional header to enable features (see, for example, the [API documentation note](https://developer.github.com/v3/repos/) below related to the new Topics attributes):\r\n\r\n![image](https://cloud.githubusercontent.com/assets/10222432/24561770/15a10854-1616-11e7-97a3-cf9b61987b87.png)\r\n\r\nCurrently while the HTTP mechanisms are well-factored, they are only plugable via changes to the source code of this library. To ease extensibility (and meet the needs of additional headers), please consider either: \r\n - Implementing a Factory-style improvement that would allow for us to provide a ```Requester``` that could, for examlpe include the headers within the implementation of ```buildRequest```, or\r\n - Provide a pathway for injecting headers into the ```Requester```'s ```headers``` property, possibly via a static-level \"DefaultHeaders\" that is publicly available." + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/352", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/352/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/352/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/352/events", + "html_url": "https://github.com/github-api/github-api/pull/352", + "id": 218162682, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTEzNDAzNDQ0", + "number": 352, + "title": "Add support for PR reviews preview", + "user": { + "login": "stephenc", + "id": 209336, + "node_id": "MDQ6VXNlcjIwOTMzNg==", + "avatar_url": "https://avatars2.githubusercontent.com/u/209336?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/stephenc", + "html_url": "https://github.com/stephenc", + "followers_url": "https://api.github.com/users/stephenc/followers", + "following_url": "https://api.github.com/users/stephenc/following{/other_user}", + "gists_url": "https://api.github.com/users/stephenc/gists{/gist_id}", + "starred_url": "https://api.github.com/users/stephenc/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/stephenc/subscriptions", + "organizations_url": "https://api.github.com/users/stephenc/orgs", + "repos_url": "https://api.github.com/users/stephenc/repos", + "events_url": "https://api.github.com/users/stephenc/events{/privacy}", + "received_events_url": "https://api.github.com/users/stephenc/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 9, + "created_at": "2017-03-30T11:14:29Z", + "updated_at": "2017-11-01T15:50:05Z", + "closed_at": "2017-09-08T17:35:59Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/352", + "html_url": "https://github.com/github-api/github-api/pull/352", + "diff_url": "https://github.com/github-api/github-api/pull/352.diff", + "patch_url": "https://github.com/github-api/github-api/pull/352.patch" + }, + "body": "@reviewbybees" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/351", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/351/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/351/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/351/events", + "html_url": "https://github.com/github-api/github-api/pull/351", + "id": 218159611, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTEzNDAxMTgz", + "number": 351, + "title": "Add the Commit search API", + "user": { + "login": "mdeverdelhan", + "id": 856354, + "node_id": "MDQ6VXNlcjg1NjM1NA==", + "avatar_url": "https://avatars1.githubusercontent.com/u/856354?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mdeverdelhan", + "html_url": "https://github.com/mdeverdelhan", + "followers_url": "https://api.github.com/users/mdeverdelhan/followers", + "following_url": "https://api.github.com/users/mdeverdelhan/following{/other_user}", + "gists_url": "https://api.github.com/users/mdeverdelhan/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mdeverdelhan/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mdeverdelhan/subscriptions", + "organizations_url": "https://api.github.com/users/mdeverdelhan/orgs", + "repos_url": "https://api.github.com/users/mdeverdelhan/repos", + "events_url": "https://api.github.com/users/mdeverdelhan/events{/privacy}", + "received_events_url": "https://api.github.com/users/mdeverdelhan/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2017-03-30T11:01:05Z", + "updated_at": "2017-09-08T21:17:01Z", + "closed_at": "2017-09-08T21:17:01Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/351", + "html_url": "https://github.com/github-api/github-api/pull/351", + "diff_url": "https://github.com/github-api/github-api/pull/351.diff", + "patch_url": "https://github.com/github-api/github-api/pull/351.patch" + }, + "body": "Fix #345 - Add the Commit search API (still in preview in GitHub API v3)\r\n\r\nSee also: https://developer.github.com/v3/search/#search-commits" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/350", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/350/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/350/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/350/events", + "html_url": "https://github.com/github-api/github-api/pull/350", + "id": 217857146, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTEzMTgzOTQz", + "number": 350, + "title": "Add application/json header when sending json data.", + "user": { + "login": "kounoike", + "id": 6997928, + "node_id": "MDQ6VXNlcjY5OTc5Mjg=", + "avatar_url": "https://avatars1.githubusercontent.com/u/6997928?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kounoike", + "html_url": "https://github.com/kounoike", + "followers_url": "https://api.github.com/users/kounoike/followers", + "following_url": "https://api.github.com/users/kounoike/following{/other_user}", + "gists_url": "https://api.github.com/users/kounoike/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kounoike/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kounoike/subscriptions", + "organizations_url": "https://api.github.com/users/kounoike/orgs", + "repos_url": "https://api.github.com/users/kounoike/repos", + "events_url": "https://api.github.com/users/kounoike/events{/privacy}", + "received_events_url": "https://api.github.com/users/kounoike/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2017-03-29T12:18:55Z", + "updated_at": "2017-09-09T18:53:10Z", + "closed_at": "2017-09-09T18:53:10Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/350", + "html_url": "https://github.com/github-api/github-api/pull/350", + "diff_url": "https://github.com/github-api/github-api/pull/350.diff", + "patch_url": "https://github.com/github-api/github-api/pull/350.patch" + }, + "body": "I'm using Jenkins and SonarQube GitHub plugins with [GitBucket](https://github.com/gitbucket/gitbucket).\r\nGitBucket has GitHub-compatible API.\r\nBut it is not 100% compatible. This PR solves one of the differences between GitHub and GitBucket. And, it also solves header and body data format mismatch when sending json data.\r\n\r\nin current version's Requester.java [buildRequest](https://github.com/kohsuke/github-api/blob/2627dc5ee4ed60c0250ce5a9e99d586d480603f2/src/main/java/org/kohsuke/github/Requester.java#L385) sends json data with content-type: application/x-www-form-urlencoded.\r\nThis behavior is incorrect. data and header mismatch. Then, GitBucket was confused by how to handle data.\r\n\r\nIn GitHub API, GitHub parses this data as json (header content-type is ignored), but this behavior is not documented. In the future this behavior may change.\r\n\r\nI think that it is better to accept this modification to avoid future problems." + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/346", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/346/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/346/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/346/events", + "html_url": "https://github.com/github-api/github-api/pull/346", + "id": 209753433, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTA3NjE4NjQ3", + "number": 346, + "title": "Ensure that connections are closed for error responses", + "user": { + "login": "stephenc", + "id": 209336, + "node_id": "MDQ6VXNlcjIwOTMzNg==", + "avatar_url": "https://avatars2.githubusercontent.com/u/209336?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/stephenc", + "html_url": "https://github.com/stephenc", + "followers_url": "https://api.github.com/users/stephenc/followers", + "following_url": "https://api.github.com/users/stephenc/following{/other_user}", + "gists_url": "https://api.github.com/users/stephenc/gists{/gist_id}", + "starred_url": "https://api.github.com/users/stephenc/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/stephenc/subscriptions", + "organizations_url": "https://api.github.com/users/stephenc/orgs", + "repos_url": "https://api.github.com/users/stephenc/repos", + "events_url": "https://api.github.com/users/stephenc/events{/privacy}", + "received_events_url": "https://api.github.com/users/stephenc/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 6, + "created_at": "2017-02-23T12:54:15Z", + "updated_at": "2017-11-01T15:50:06Z", + "closed_at": "2017-02-27T20:33:19Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/346", + "html_url": "https://github.com/github-api/github-api/pull/346", + "diff_url": "https://github.com/github-api/github-api/pull/346.diff", + "patch_url": "https://github.com/github-api/github-api/pull/346.patch" + }, + "body": "- This was endless fun to trace, but I found it at last. This should\r\nstop the `WARNING: A connection to https://api.github.com/ was leaked.\r\nDid you forget to close a response body?` messages in the logs when\r\nusing the OkHttpConnector.\r\n\r\n@reviewbybees" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/345", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/345/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/345/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/345/events", + "html_url": "https://github.com/github-api/github-api/issues/345", + "id": 209735152, + "node_id": "MDU6SXNzdWUyMDk3MzUxNTI=", + "number": 345, + "title": "Commit Search API implemented or not?", + "user": { + "login": "mdeverdelhan", + "id": 856354, + "node_id": "MDQ6VXNlcjg1NjM1NA==", + "avatar_url": "https://avatars1.githubusercontent.com/u/856354?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mdeverdelhan", + "html_url": "https://github.com/mdeverdelhan", + "followers_url": "https://api.github.com/users/mdeverdelhan/followers", + "following_url": "https://api.github.com/users/mdeverdelhan/following{/other_user}", + "gists_url": "https://api.github.com/users/mdeverdelhan/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mdeverdelhan/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mdeverdelhan/subscriptions", + "organizations_url": "https://api.github.com/users/mdeverdelhan/orgs", + "repos_url": "https://api.github.com/users/mdeverdelhan/repos", + "events_url": "https://api.github.com/users/mdeverdelhan/events{/privacy}", + "received_events_url": "https://api.github.com/users/mdeverdelhan/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2017-02-23T11:26:52Z", + "updated_at": "2017-09-08T21:17:01Z", + "closed_at": "2017-09-08T21:17:01Z", + "author_association": "CONTRIBUTOR", + "body": "Hello,\r\n\r\nIs the [Commit Search API](https://developer.github.com/v3/search/#search-commits) (in preview) already implemented in the library?\r\n\r\nThank you." + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/344", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/344/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/344/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/344/events", + "html_url": "https://github.com/github-api/github-api/issues/344", + "id": 209519050, + "node_id": "MDU6SXNzdWUyMDk1MTkwNTA=", + "number": 344, + "title": "Building failing due problematic repository server", + "user": { + "login": "sergiofigueras", + "id": 1733227, + "node_id": "MDQ6VXNlcjE3MzMyMjc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/1733227?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/sergiofigueras", + "html_url": "https://github.com/sergiofigueras", + "followers_url": "https://api.github.com/users/sergiofigueras/followers", + "following_url": "https://api.github.com/users/sergiofigueras/following{/other_user}", + "gists_url": "https://api.github.com/users/sergiofigueras/gists{/gist_id}", + "starred_url": "https://api.github.com/users/sergiofigueras/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/sergiofigueras/subscriptions", + "organizations_url": "https://api.github.com/users/sergiofigueras/orgs", + "repos_url": "https://api.github.com/users/sergiofigueras/repos", + "events_url": "https://api.github.com/users/sergiofigueras/events{/privacy}", + "received_events_url": "https://api.github.com/users/sergiofigueras/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2017-02-22T17:08:48Z", + "updated_at": "2017-09-09T21:19:28Z", + "closed_at": "2017-09-09T21:19:28Z", + "author_association": "NONE", + "body": "Hello guys,\r\n\r\nOur build is failing due an bad repository. It started two days ago.\r\n\r\n```org.kohsuke:github-api:jar:1.77 -> com.infradna.tool:bridge-method-annotation:jar:1.14 -> org.jenkins-ci:annotation-indexer:jar:1.4: Failed to read artifact descriptor for org.jenkins-ci:annotation-indexer:jar:1.4: Could not transfer artifact org.jenkins-ci:jenkins:pom:1.26 from/to repo.jenkins-ci.org (http://repo.jenkins-ci.org/public/): Failed to transfer file: http://repo.jenkins-ci.org/public/org/jenkins-ci/jenkins/1.26/jenkins-1.26.pom. Return code is: 502 , ReasonPhrase:Bad Gateway. -> [Help 1]```\r\n\r\nI also checked https://repo.jenkins-ci.org/public/org/jenkins-ci/jenkins/1.26/jenkins-1.26.pom, but its giving 504 TIMEOUT.\r\nIs anybody facing this too?" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/343", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/343/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/343/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/343/events", + "html_url": "https://github.com/github-api/github-api/pull/343", + "id": 208729931, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTA2OTA4MDYw", + "number": 343, + "title": "add latest release", + "user": { + "login": "kamontat", + "id": 14089557, + "node_id": "MDQ6VXNlcjE0MDg5NTU3", + "avatar_url": "https://avatars2.githubusercontent.com/u/14089557?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kamontat", + "html_url": "https://github.com/kamontat", + "followers_url": "https://api.github.com/users/kamontat/followers", + "following_url": "https://api.github.com/users/kamontat/following{/other_user}", + "gists_url": "https://api.github.com/users/kamontat/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kamontat/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kamontat/subscriptions", + "organizations_url": "https://api.github.com/users/kamontat/orgs", + "repos_url": "https://api.github.com/users/kamontat/repos", + "events_url": "https://api.github.com/users/kamontat/events{/privacy}", + "received_events_url": "https://api.github.com/users/kamontat/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 5, + "created_at": "2017-02-19T17:04:31Z", + "updated_at": "2017-09-08T17:39:14Z", + "closed_at": "2017-09-08T17:39:13Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/343", + "html_url": "https://github.com/github-api/github-api/pull/343", + "diff_url": "https://github.com/github-api/github-api/pull/343.diff", + "patch_url": "https://github.com/github-api/github-api/pull/343.patch" + }, + "body": "I already add the latest release, so please add to master and update version so that I can use in my project\r\nFix #341 \r\n\r\nPS I don't know how to push my fixed module to the maven server so, please. @emlagowski \r\n\r\n\r\nThank you" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/342", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/342/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/342/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/342/events", + "html_url": "https://github.com/github-api/github-api/issues/342", + "id": 208728508, + "node_id": "MDU6SXNzdWUyMDg3Mjg1MDg=", + "number": 342, + "title": "getPusher() returns null in call to getPusher()", + "user": { + "login": "golharam", + "id": 671079, + "node_id": "MDQ6VXNlcjY3MTA3OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/671079?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/golharam", + "html_url": "https://github.com/golharam", + "followers_url": "https://api.github.com/users/golharam/followers", + "following_url": "https://api.github.com/users/golharam/following{/other_user}", + "gists_url": "https://api.github.com/users/golharam/gists{/gist_id}", + "starred_url": "https://api.github.com/users/golharam/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/golharam/subscriptions", + "organizations_url": "https://api.github.com/users/golharam/orgs", + "repos_url": "https://api.github.com/users/golharam/repos", + "events_url": "https://api.github.com/users/golharam/events{/privacy}", + "received_events_url": "https://api.github.com/users/golharam/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2017-02-19T16:41:23Z", + "updated_at": "2017-02-19T16:42:54Z", + "closed_at": "2017-02-19T16:42:53Z", + "author_association": "NONE", + "body": "I have a github enterprise installation. I'm trying to get Jenkins connected to it. When I set up a repo and turn on 'GitHub hook trigger for GITScm polling', I see the hook get created in my repo, however it has a Red Triangle icon. Hovering over it says 'Invalid HTTP Reponse: 0'.\r\n\r\nWhen I look at the Jenkins log, I see github tried to post an event, but I see the following error:\r\n\r\njava.lang.NullPointerException\r\n\tat org.jenkinsci.plugins.github.webhook.subscriber.DefaultPushGHEventSubscriber.onEvent(DefaultPushGHEventSubscriber.java:77)\r\n\tat org.jenkinsci.plugins.github.extension.GHEventsSubscriber$4.applyNullSafe(GHEventsSubscriber.java:240)\r\n\tat org.jenkinsci.plugins.github.extension.GHEventsSubscriber$4.applyNullSafe(GHEventsSubscriber.java:236)\r\n\tat org.jenkinsci.plugins.github.util.misc.NullSafeFunction.apply(NullSafeFunction.java:18)\r\n\tat com.google.common.collect.Iterators$8.next(Iterators.java:812)\r\n\tat com.google.common.collect.Lists.newArrayList(Lists.java:139)\r\n\tat com.google.common.collect.Lists.newArrayList(Lists.java:119)\r\n\tat org.jenkinsci.plugins.github.util.FluentIterableWrapper.toList(FluentIterableWrapper.java:147)\r\n\tat com.cloudbees.jenkins.GitHubWebHook.doIndex(GitHubWebHook.java:124)\r\n\tat java.lang.invoke.MethodHandle.invokeWithArguments(MethodHandle.java:627)\r\n\tat org.kohsuke.stapler.Function$MethodFunction.invoke(Function.java:343)\r\n\tat org.jenkinsci.plugins.github.webhook.RequirePostWithGHHookPayload$Processor.invoke(RequirePostWithGHHookPayload.java:76)\r\n\tat org.kohsuke.stapler.PreInvokeInterceptedFunction.invoke(PreInvokeInterceptedFunction.java:26)\r\n\tat org.kohsuke.stapler.Function.bindAndInvoke(Function.java:184)\r\n\tat org.kohsuke.stapler.Function.bindAndInvokeAndServeResponse(Function.java:117)\r\n\tat org.kohsuke.stapler.IndexDispatcher.dispatch(IndexDispatcher.java:26)\r\n\tat org.kohsuke.stapler.Stapler.tryInvoke(Stapler.java:715)\r\n\tat org.kohsuke.stapler.Stapler.invoke(Stapler.java:845)\r\n\tat org.kohsuke.stapler.MetaClass$10.dispatch(MetaClass.java:374)\r\n\tat org.kohsuke.stapler.Stapler.tryInvoke(Stapler.java:715)\r\n\tat org.kohsuke.stapler.Stapler.invoke(Stapler.java:845)\r\n\tat org.kohsuke.stapler.Stapler.invoke(Stapler.java:649)\r\n\tat org.kohsuke.stapler.Stapler.service(Stapler.java:238)\r\n\tat javax.servlet.http.HttpServlet.service(HttpServlet.java:790)\r\n\tat org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:812)\r\n\tat org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1669)\r\n\tat hudson.util.PluginServletFilter$1.doFilter(PluginServletFilter.java:135)\r\n\tat hudson.util.PluginServletFilter.doFilter(PluginServletFilter.java:126)\r\n\tat org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1652)\r\n\tat com.cloudbees.jenkins.GitHubWebHookCrumbExclusion.process(GitHubWebHookCrumbExclusion.java:29)\r\n\tat hudson.security.csrf.CrumbFilter.doFilter(CrumbFilter.java:58)\r\n\tat org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1652)\r\n\tat hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:84)\r\n\tat hudson.security.UnwrapSecurityExceptionFilter.doFilter(UnwrapSecurityExceptionFilter.java:51)\r\n\tat hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)\r\n\tat jenkins.security.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:117)\r\n\tat hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)\r\n\tat org.acegisecurity.providers.anonymous.AnonymousProcessingFilter.doFilter(AnonymousProcessingFilter.java:125)\r\n\tat hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)\r\n\tat org.acegisecurity.ui.rememberme.RememberMeProcessingFilter.doFilter(RememberMeProcessingFilter.java:135)\r\n\tat hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)\r\n\tat org.acegisecurity.ui.AbstractProcessingFilter.doFilter(AbstractProcessingFilter.java:271)\r\n\tat hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)\r\n\tat jenkins.security.BasicHeaderProcessor.doFilter(BasicHeaderProcessor.java:93)\r\n\tat hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)\r\n\tat org.acegisecurity.context.HttpSessionContextIntegrationFilter.doFilter(HttpSessionContextIntegrationFilter.java:249)\r\n\tat hudson.security.HttpSessionContextIntegrationFilter2.doFilter(HttpSessionContextIntegrationFilter2.java:67)\r\n\tat hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)\r\n\tat hudson.security.ChainedServletFilter.doFilter(ChainedServletFilter.java:76)\r\n\tat hudson.security.HudsonFilter.doFilter(HudsonFilter.java:171)\r\n\tat org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1652)\r\n\tat org.kohsuke.stapler.compression.CompressionFilter.doFilter(CompressionFilter.java:49)\r\n\tat org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1652)\r\n\tat hudson.util.CharacterEncodingFilter.doFilter(CharacterEncodingFilter.java:82)\r\n\tat org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1652)\r\n\tat org.kohsuke.stapler.DiagnosticThreadNameFilter.doFilter(DiagnosticThreadNameFilter.java:30)\r\n\tat org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1652)\r\n\tat org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:585)\r\n\tat org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:143)\r\n\tat org.eclipse.jetty.security.SecurityHandler.handle(SecurityHandler.java:553)\r\n\tat org.eclipse.jetty.server.session.SessionHandler.doHandle(SessionHandler.java:223)\r\n\tat org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1127)\r\n\tat org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:515)\r\n\tat org.eclipse.jetty.server.session.SessionHandler.doScope(SessionHandler.java:185)\r\n\tat org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1061)\r\n\tat org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:141)\r\n\tat org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:97)\r\n\tat org.eclipse.jetty.server.Server.handle(Server.java:499)\r\n\tat org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:311)\r\n\tat org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:257)\r\n\tat org.eclipse.jetty.io.AbstractConnection$2.run(AbstractConnection.java:544)\r\n\tat winstone.BoundedExecutorService$1.run(BoundedExecutorService.java:77)\r\n\tat java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)\r\n\tat java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)\r\n\tat java.lang.Thread.run(Thread.java:745)\r\n\r\n\r\nInterestingly enough, if I take the same payload and put it in a JSON, I can post the even manually using curl:\r\n$ curl -X POST --header \"Content-Type: application/json\" --header \"X-GitHub-Event: push\" -d @data.json http://XXX.XXX.XXX.XXX:8080/github-webhook/ -v\r\n* About to connect() to proxy proxy-server port 8080 (#0)\r\n* Trying XXX.XXX.XXX.XXX... connected\r\n* Connected to proxy-server (XXX.XXX.XXX.XXX) port 8080 (#0)\r\n> POST http://XXX.XXX.XXX.XXX:8080/github-webhook/ HTTP/1.1\r\n> User-Agent: curl/7.19.7 (x86_64-redhat-linux-gnu) libcurl/7.19.7 NSS/3.18 Basic ECC zlib/1.2.3 libidn/1.18 libssh2/1.4.2\r\n> Host: XXX.XXX.XXX.XXX:8080\r\n> Accept: */*\r\n> Proxy-Connection: Keep-Alive\r\n> Content-Type: application/json\r\n> X-GitHub-Event: push\r\n> Content-Length: 6983\r\n> Expect: 100-continue\r\n>\r\n< HTTP/1.1 100 Continue\r\n< HTTP/1.1 200 OK\r\n< Date: Sun, 19 Feb 2017 15:27:47 GMT\r\n< X-Content-Type-Options: nosniff\r\n< Content-Length: 0\r\n< Server: Jetty(9.2.z-SNAPSHOT)\r\n< Proxy-Connection: Keep-Alive\r\n< Connection: Keep-Alive\r\n<\r\n* Connection #0 to host proxy-server left intact\r\n* Closing connection #0\r\n\r\n\r\nLooking at the code in org.jenkinsci.plugins.github.webhook.subscriber.DefaultPushGHEventSubscriber.onEvent(DefaultPushGHEventSubscriber.java:77), it looks like the call to getPusher is null. \r\n\r\nIn deed, when I put the json in a unit test, getPusher returns null.\r\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/341", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/341/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/341/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/341/events", + "html_url": "https://github.com/github-api/github-api/issues/341", + "id": 208186510, + "node_id": "MDU6SXNzdWUyMDgxODY1MTA=", + "number": 341, + "title": "How can I get Latest Release of Repository?", + "user": { + "login": "kamontat", + "id": 14089557, + "node_id": "MDQ6VXNlcjE0MDg5NTU3", + "avatar_url": "https://avatars2.githubusercontent.com/u/14089557?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kamontat", + "html_url": "https://github.com/kamontat", + "followers_url": "https://api.github.com/users/kamontat/followers", + "following_url": "https://api.github.com/users/kamontat/following{/other_user}", + "gists_url": "https://api.github.com/users/kamontat/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kamontat/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kamontat/subscriptions", + "organizations_url": "https://api.github.com/users/kamontat/orgs", + "repos_url": "https://api.github.com/users/kamontat/repos", + "events_url": "https://api.github.com/users/kamontat/events{/privacy}", + "received_events_url": "https://api.github.com/users/kamontat/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 3, + "created_at": "2017-02-16T17:11:44Z", + "updated_at": "2017-09-08T17:39:13Z", + "closed_at": "2017-09-08T17:39:13Z", + "author_association": "CONTRIBUTOR", + "body": "" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/340", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/340/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/340/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/340/events", + "html_url": "https://github.com/github-api/github-api/pull/340", + "id": 207699761, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTA2MjM3MzU2", + "number": 340, + "title": "improved branch protection support", + "user": { + "login": "jgangemi", + "id": 1831839, + "node_id": "MDQ6VXNlcjE4MzE4Mzk=", + "avatar_url": "https://avatars0.githubusercontent.com/u/1831839?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jgangemi", + "html_url": "https://github.com/jgangemi", + "followers_url": "https://api.github.com/users/jgangemi/followers", + "following_url": "https://api.github.com/users/jgangemi/following{/other_user}", + "gists_url": "https://api.github.com/users/jgangemi/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jgangemi/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jgangemi/subscriptions", + "organizations_url": "https://api.github.com/users/jgangemi/orgs", + "repos_url": "https://api.github.com/users/jgangemi/repos", + "events_url": "https://api.github.com/users/jgangemi/events{/privacy}", + "received_events_url": "https://api.github.com/users/jgangemi/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2017-02-15T03:30:09Z", + "updated_at": "2017-08-08T20:37:46Z", + "closed_at": "2017-08-08T20:37:46Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/340", + "html_url": "https://github.com/github-api/github-api/pull/340", + "diff_url": "https://github.com/github-api/github-api/pull/340.diff", + "patch_url": "https://github.com/github-api/github-api/pull/340.patch" + }, + "body": "this PR will improves the support around protected branches and bring it inline w/ the current api. what is currently there doesn't work (properly at least) and given how i interpreted the `@Preview` docs, this seems inline." + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/339", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/339/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/339/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/339/events", + "html_url": "https://github.com/github-api/github-api/pull/339", + "id": 206673256, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTA1NTQ0NjI0", + "number": 339, + "title": "Expose Headers", + "user": { + "login": "KostyaSha", + "id": 231611, + "node_id": "MDQ6VXNlcjIzMTYxMQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/231611?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/KostyaSha", + "html_url": "https://github.com/KostyaSha", + "followers_url": "https://api.github.com/users/KostyaSha/followers", + "following_url": "https://api.github.com/users/KostyaSha/following{/other_user}", + "gists_url": "https://api.github.com/users/KostyaSha/gists{/gist_id}", + "starred_url": "https://api.github.com/users/KostyaSha/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/KostyaSha/subscriptions", + "organizations_url": "https://api.github.com/users/KostyaSha/orgs", + "repos_url": "https://api.github.com/users/KostyaSha/repos", + "events_url": "https://api.github.com/users/KostyaSha/events{/privacy}", + "received_events_url": "https://api.github.com/users/KostyaSha/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 5, + "created_at": "2017-02-10T00:38:32Z", + "updated_at": "2017-09-10T15:06:02Z", + "closed_at": "2017-09-09T20:07:59Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/339", + "html_url": "https://github.com/github-api/github-api/pull/339", + "diff_url": "https://github.com/github-api/github-api/pull/339.diff", + "patch_url": "https://github.com/github-api/github-api/pull/339.patch" + }, + "body": "Fixes #303 \r\n\r\nBit shocked with design, this info is needed for normal and failed requests, so added GHObject field injector and wrapped exceptions. Not sure only whether it possible to change throwing exception types without breaking compatibility.\r\n\r\ncc @stephenc your github-branch-org-source should be also affected if it close to non single admin token use case.\n\n\n---\nThis change is [\"Reviewable\"/](https://reviewable.io/reviews/kohsuke/github-api/339)\n\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/338", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/338/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/338/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/338/events", + "html_url": "https://github.com/github-api/github-api/pull/338", + "id": 206570864, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTA1NDczNDQz", + "number": 338, + "title": "Ignore eclipse files", + "user": { + "login": "sebkur", + "id": 1633488, + "node_id": "MDQ6VXNlcjE2MzM0ODg=", + "avatar_url": "https://avatars1.githubusercontent.com/u/1633488?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/sebkur", + "html_url": "https://github.com/sebkur", + "followers_url": "https://api.github.com/users/sebkur/followers", + "following_url": "https://api.github.com/users/sebkur/following{/other_user}", + "gists_url": "https://api.github.com/users/sebkur/gists{/gist_id}", + "starred_url": "https://api.github.com/users/sebkur/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/sebkur/subscriptions", + "organizations_url": "https://api.github.com/users/sebkur/orgs", + "repos_url": "https://api.github.com/users/sebkur/repos", + "events_url": "https://api.github.com/users/sebkur/events{/privacy}", + "received_events_url": "https://api.github.com/users/sebkur/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2017-02-09T17:20:08Z", + "updated_at": "2017-09-08T17:39:40Z", + "closed_at": "2017-09-08T17:39:40Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/338", + "html_url": "https://github.com/github-api/github-api/pull/338", + "diff_url": "https://github.com/github-api/github-api/pull/338.diff", + "patch_url": "https://github.com/github-api/github-api/pull/338.patch" + }, + "body": "Ignore the Eclipse files (can be generated with `mvn eclipse:eclipse`)" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/337", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/337/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/337/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/337/events", + "html_url": "https://github.com/github-api/github-api/pull/337", + "id": 206570656, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTA1NDczMjk4", + "number": 337, + "title": "Remove unused imports", + "user": { + "login": "sebkur", + "id": 1633488, + "node_id": "MDQ6VXNlcjE2MzM0ODg=", + "avatar_url": "https://avatars1.githubusercontent.com/u/1633488?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/sebkur", + "html_url": "https://github.com/sebkur", + "followers_url": "https://api.github.com/users/sebkur/followers", + "following_url": "https://api.github.com/users/sebkur/following{/other_user}", + "gists_url": "https://api.github.com/users/sebkur/gists{/gist_id}", + "starred_url": "https://api.github.com/users/sebkur/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/sebkur/subscriptions", + "organizations_url": "https://api.github.com/users/sebkur/orgs", + "repos_url": "https://api.github.com/users/sebkur/repos", + "events_url": "https://api.github.com/users/sebkur/events{/privacy}", + "received_events_url": "https://api.github.com/users/sebkur/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2017-02-09T17:19:25Z", + "updated_at": "2017-09-09T19:05:50Z", + "closed_at": "2017-09-09T19:05:50Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/337", + "html_url": "https://github.com/github-api/github-api/pull/337", + "diff_url": "https://github.com/github-api/github-api/pull/337.diff", + "patch_url": "https://github.com/github-api/github-api/pull/337.patch" + }, + "body": "Especially also remove the unsued import of\r\n`javax.xml.bind.DatatypeConverter` from `GHContent` which is non-public API\r\nas of Java 8" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/336", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/336/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/336/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/336/events", + "html_url": "https://github.com/github-api/github-api/pull/336", + "id": 205886553, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTA1MDA0NTIz", + "number": 336, + "title": "Fix #335", + "user": { + "login": "auchri", + "id": 5092164, + "node_id": "MDQ6VXNlcjUwOTIxNjQ=", + "avatar_url": "https://avatars2.githubusercontent.com/u/5092164?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/auchri", + "html_url": "https://github.com/auchri", + "followers_url": "https://api.github.com/users/auchri/followers", + "following_url": "https://api.github.com/users/auchri/following{/other_user}", + "gists_url": "https://api.github.com/users/auchri/gists{/gist_id}", + "starred_url": "https://api.github.com/users/auchri/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/auchri/subscriptions", + "organizations_url": "https://api.github.com/users/auchri/orgs", + "repos_url": "https://api.github.com/users/auchri/repos", + "events_url": "https://api.github.com/users/auchri/events{/privacy}", + "received_events_url": "https://api.github.com/users/auchri/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2017-02-07T13:26:58Z", + "updated_at": "2017-09-09T19:12:05Z", + "closed_at": "2017-09-09T19:12:05Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/336", + "html_url": "https://github.com/github-api/github-api/pull/336", + "diff_url": "https://github.com/github-api/github-api/pull/336.diff", + "patch_url": "https://github.com/github-api/github-api/pull/336.patch" + }, + "body": "Correct namespace\r\n\r\nFile: https://github.com/square/okhttp/blob/master/okhttp-urlconnection/src/main/java/okhttp3/OkUrlFactory.java\r\n\r\nFixes #335" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/335", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/335/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/335/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/335/events", + "html_url": "https://github.com/github-api/github-api/issues/335", + "id": 205885148, + "node_id": "MDU6SXNzdWUyMDU4ODUxNDg=", + "number": 335, + "title": "OkHttpConnector is broken", + "user": { + "login": "auchri", + "id": 5092164, + "node_id": "MDQ6VXNlcjUwOTIxNjQ=", + "avatar_url": "https://avatars2.githubusercontent.com/u/5092164?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/auchri", + "html_url": "https://github.com/auchri", + "followers_url": "https://api.github.com/users/auchri/followers", + "following_url": "https://api.github.com/users/auchri/following{/other_user}", + "gists_url": "https://api.github.com/users/auchri/gists{/gist_id}", + "starred_url": "https://api.github.com/users/auchri/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/auchri/subscriptions", + "organizations_url": "https://api.github.com/users/auchri/orgs", + "repos_url": "https://api.github.com/users/auchri/repos", + "events_url": "https://api.github.com/users/auchri/events{/privacy}", + "received_events_url": "https://api.github.com/users/auchri/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2017-02-07T13:21:05Z", + "updated_at": "2017-09-09T19:12:38Z", + "closed_at": "2017-09-09T19:12:38Z", + "author_association": "NONE", + "body": "The package was changed to `okhttp3.OkUrlFactory;`" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/333", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/333/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/333/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/333/events", + "html_url": "https://github.com/github-api/github-api/pull/333", + "id": 203787537, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTAzNjAwNzI5", + "number": 333, + "title": "Add support for MergeMethod on GHPullRequest", + "user": { + "login": "greggian", + "id": 107471, + "node_id": "MDQ6VXNlcjEwNzQ3MQ==", + "avatar_url": "https://avatars3.githubusercontent.com/u/107471?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/greggian", + "html_url": "https://github.com/greggian", + "followers_url": "https://api.github.com/users/greggian/followers", + "following_url": "https://api.github.com/users/greggian/following{/other_user}", + "gists_url": "https://api.github.com/users/greggian/gists{/gist_id}", + "starred_url": "https://api.github.com/users/greggian/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/greggian/subscriptions", + "organizations_url": "https://api.github.com/users/greggian/orgs", + "repos_url": "https://api.github.com/users/greggian/repos", + "events_url": "https://api.github.com/users/greggian/events{/privacy}", + "received_events_url": "https://api.github.com/users/greggian/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 3, + "created_at": "2017-01-28T04:42:21Z", + "updated_at": "2017-09-09T19:17:52Z", + "closed_at": "2017-09-09T19:17:52Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/333", + "html_url": "https://github.com/github-api/github-api/pull/333", + "diff_url": "https://github.com/github-api/github-api/pull/333.diff", + "patch_url": "https://github.com/github-api/github-api/pull/333.patch" + }, + "body": "- Add 'polaris' preview\r\n- Add MergeMethod Enum\r\n- Add merge method to GHPullRequest which takes a MergeMethod\r\n\r\nFixes #326" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/__files/repositories_617210_issues-c9e769fc-6556-4374-b397-244843a75000.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/__files/repositories_617210_issues-c9e769fc-6556-4374-b397-244843a75000.json new file mode 100644 index 0000000000..5712052249 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/__files/repositories_617210_issues-c9e769fc-6556-4374-b397-244843a75000.json @@ -0,0 +1,1460 @@ +[ + { + "url": "https://api.github.com/repos/github-api/github-api/issues/143", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/143/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/143/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/143/events", + "html_url": "https://github.com/github-api/github-api/pull/143", + "id": 52579692, + "node_id": "MDExOlB1bGxSZXF1ZXN0MjY0MjIwMTc=", + "number": 143, + "title": "Complete api implementation for the new github deployment api", + "user": { + "login": "suryagaddipati", + "id": 64078, + "node_id": "MDQ6VXNlcjY0MDc4", + "avatar_url": "https://avatars3.githubusercontent.com/u/64078?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/suryagaddipati", + "html_url": "https://github.com/suryagaddipati", + "followers_url": "https://api.github.com/users/suryagaddipati/followers", + "following_url": "https://api.github.com/users/suryagaddipati/following{/other_user}", + "gists_url": "https://api.github.com/users/suryagaddipati/gists{/gist_id}", + "starred_url": "https://api.github.com/users/suryagaddipati/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/suryagaddipati/subscriptions", + "organizations_url": "https://api.github.com/users/suryagaddipati/orgs", + "repos_url": "https://api.github.com/users/suryagaddipati/repos", + "events_url": "https://api.github.com/users/suryagaddipati/events{/privacy}", + "received_events_url": "https://api.github.com/users/suryagaddipati/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 5, + "created_at": "2014-12-20T23:11:46Z", + "updated_at": "2015-02-14T17:32:48Z", + "closed_at": "2015-02-14T17:32:48Z", + "author_association": "COLLABORATOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/143", + "html_url": "https://github.com/github-api/github-api/pull/143", + "diff_url": "https://github.com/github-api/github-api/pull/143.diff", + "patch_url": "https://github.com/github-api/github-api/pull/143.patch" + }, + "body": "https://developer.github.com/v3/repos/deployments/#create-a-deployment\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/142", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/142/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/142/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/142/events", + "html_url": "https://github.com/github-api/github-api/pull/142", + "id": 52515310, + "node_id": "MDExOlB1bGxSZXF1ZXN0MjYzOTA3NjA=", + "number": 142, + "title": "Add code for creating deployments for a repo", + "user": { + "login": "suryagaddipati", + "id": 64078, + "node_id": "MDQ6VXNlcjY0MDc4", + "avatar_url": "https://avatars3.githubusercontent.com/u/64078?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/suryagaddipati", + "html_url": "https://github.com/suryagaddipati", + "followers_url": "https://api.github.com/users/suryagaddipati/followers", + "following_url": "https://api.github.com/users/suryagaddipati/following{/other_user}", + "gists_url": "https://api.github.com/users/suryagaddipati/gists{/gist_id}", + "starred_url": "https://api.github.com/users/suryagaddipati/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/suryagaddipati/subscriptions", + "organizations_url": "https://api.github.com/users/suryagaddipati/orgs", + "repos_url": "https://api.github.com/users/suryagaddipati/repos", + "events_url": "https://api.github.com/users/suryagaddipati/events{/privacy}", + "received_events_url": "https://api.github.com/users/suryagaddipati/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2014-12-19T18:47:43Z", + "updated_at": "2014-12-19T19:45:15Z", + "closed_at": "2014-12-19T19:45:15Z", + "author_association": "COLLABORATOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/142", + "html_url": "https://github.com/github-api/github-api/pull/142", + "diff_url": "https://github.com/github-api/github-api/pull/142.diff", + "patch_url": "https://github.com/github-api/github-api/pull/142.patch" + }, + "body": "" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/141", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/141/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/141/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/141/events", + "html_url": "https://github.com/github-api/github-api/pull/141", + "id": 52449207, + "node_id": "MDExOlB1bGxSZXF1ZXN0MjYzNTIwMTE=", + "number": 141, + "title": "Trivial change to enable creating/updating binary content (files).", + "user": { + "login": "alvaro1728", + "id": 4854341, + "node_id": "MDQ6VXNlcjQ4NTQzNDE=", + "avatar_url": "https://avatars3.githubusercontent.com/u/4854341?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/alvaro1728", + "html_url": "https://github.com/alvaro1728", + "followers_url": "https://api.github.com/users/alvaro1728/followers", + "following_url": "https://api.github.com/users/alvaro1728/following{/other_user}", + "gists_url": "https://api.github.com/users/alvaro1728/gists{/gist_id}", + "starred_url": "https://api.github.com/users/alvaro1728/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/alvaro1728/subscriptions", + "organizations_url": "https://api.github.com/users/alvaro1728/orgs", + "repos_url": "https://api.github.com/users/alvaro1728/repos", + "events_url": "https://api.github.com/users/alvaro1728/events{/privacy}", + "received_events_url": "https://api.github.com/users/alvaro1728/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2014-12-19T05:25:15Z", + "updated_at": "2015-02-14T14:42:55Z", + "closed_at": "2015-02-14T14:42:55Z", + "author_association": "FIRST_TIMER", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/141", + "html_url": "https://github.com/github-api/github-api/pull/141", + "diff_url": "https://github.com/github-api/github-api/pull/141.diff", + "patch_url": "https://github.com/github-api/github-api/pull/141.patch" + }, + "body": "I need to use git as a file server for all kinds of files, including binary ones. This Java library is very nice but it's missing the ability to create or update binary files. Adding support for it was a trivial change that I would appreciate if you can merge ASAP. \n\nThanks!\nAlvaro\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/140", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/140/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/140/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/140/events", + "html_url": "https://github.com/github-api/github-api/pull/140", + "id": 49455075, + "node_id": "MDExOlB1bGxSZXF1ZXN0MjQ3MjIxMjM=", + "number": 140, + "title": "Update mockito-all to test scope", + "user": { + "login": "aslakknutsen", + "id": 132158, + "node_id": "MDQ6VXNlcjEzMjE1OA==", + "avatar_url": "https://avatars3.githubusercontent.com/u/132158?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/aslakknutsen", + "html_url": "https://github.com/aslakknutsen", + "followers_url": "https://api.github.com/users/aslakknutsen/followers", + "following_url": "https://api.github.com/users/aslakknutsen/following{/other_user}", + "gists_url": "https://api.github.com/users/aslakknutsen/gists{/gist_id}", + "starred_url": "https://api.github.com/users/aslakknutsen/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/aslakknutsen/subscriptions", + "organizations_url": "https://api.github.com/users/aslakknutsen/orgs", + "repos_url": "https://api.github.com/users/aslakknutsen/repos", + "events_url": "https://api.github.com/users/aslakknutsen/events{/privacy}", + "received_events_url": "https://api.github.com/users/aslakknutsen/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 3, + "created_at": "2014-11-19T21:22:24Z", + "updated_at": "2014-12-19T19:08:54Z", + "closed_at": "2014-12-19T18:54:00Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/140", + "html_url": "https://github.com/github-api/github-api/pull/140", + "diff_url": "https://github.com/github-api/github-api/pull/140.diff", + "patch_url": "https://github.com/github-api/github-api/pull/140.patch" + }, + "body": "Set scope to test for mockito-all to avoid forcing downstream projects\nto include it.\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/139", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/139/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/139/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/139/events", + "html_url": "https://github.com/github-api/github-api/pull/139", + "id": 49014696, + "node_id": "MDExOlB1bGxSZXF1ZXN0MjQ1MDY2NjU=", + "number": 139, + "title": "Put mockito in the test scope.", + "user": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2014-11-16T20:34:22Z", + "updated_at": "2014-12-19T18:57:12Z", + "closed_at": "2014-12-19T18:53:15Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/139", + "html_url": "https://github.com/github-api/github-api/pull/139", + "diff_url": "https://github.com/github-api/github-api/pull/139.diff", + "patch_url": "https://github.com/github-api/github-api/pull/139.patch" + }, + "body": "I was having issues in a downstream project from github-api where mockito was appearing on the classpath where it shouldn't. I ran some dependency analysis and found that the inclusion was because of its mention in github-api without the test scope designation.\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/138", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/138/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/138/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/138/events", + "html_url": "https://github.com/github-api/github-api/issues/138", + "id": 48047273, + "node_id": "MDU6SXNzdWU0ODA0NzI3Mw==", + "number": 138, + "title": "GHRelease issue", + "user": { + "login": "fred8", + "id": 2894520, + "node_id": "MDQ6VXNlcjI4OTQ1MjA=", + "avatar_url": "https://avatars3.githubusercontent.com/u/2894520?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/fred8", + "html_url": "https://github.com/fred8", + "followers_url": "https://api.github.com/users/fred8/followers", + "following_url": "https://api.github.com/users/fred8/following{/other_user}", + "gists_url": "https://api.github.com/users/fred8/gists{/gist_id}", + "starred_url": "https://api.github.com/users/fred8/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/fred8/subscriptions", + "organizations_url": "https://api.github.com/users/fred8/orgs", + "repos_url": "https://api.github.com/users/fred8/repos", + "events_url": "https://api.github.com/users/fred8/events{/privacy}", + "received_events_url": "https://api.github.com/users/fred8/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2014-11-07T04:34:53Z", + "updated_at": "2015-02-15T16:40:28Z", + "closed_at": "2015-02-15T16:40:28Z", + "author_association": "NONE", + "body": "Hey @kohsuke \n\nI'm using the api to create a tag from a commit, then I create a release from this tag, fill up the info, body and assets. When I use the release builder, I set the prerelease and draft parameter to true. I get everything set on my github account successfully. \nThat's said, when I press the button (on the github release page) to publish; all my info (title, body and files) disappear and I can just see the created tag. I'm wondering if I'm doing something wrong or if it is a bug from the library.\n\nHere is what I m basically doing : (I extracted the code in the exact same order all the library api call)\n\nGHRepository repository = api.getRepository(REPO_NAME);\nMap branches = repository.getBranches();\nGHBranch master = branches.get(RELEASE_BRANCH_NAME);\nString lastCommit = master.getSHA1();\nString refName = \"refs/tags/\" + tagName;\nGHRef ref = repository.createRef(refName, lastCommit);\n\nfinal GHReleaseBuilder releaseBuilder = repository.createRelease(refName); releaseBuilder.name(releaseName).body(body).prerelease(true).draft(true)\nfinal GHRelease release = releaseBuilder.create()\nand a bunch of release.uploadAsset(file, mimeType)\n\nThank you for your help!\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/137", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/137/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/137/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/137/events", + "html_url": "https://github.com/github-api/github-api/pull/137", + "id": 47951415, + "node_id": "MDExOlB1bGxSZXF1ZXN0MjM5NzQwMjg=", + "number": 137, + "title": "added 'diverged' constant to GHCompare.Status enum", + "user": { + "login": "simonecarriero", + "id": 1140899, + "node_id": "MDQ6VXNlcjExNDA4OTk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1140899?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/simonecarriero", + "html_url": "https://github.com/simonecarriero", + "followers_url": "https://api.github.com/users/simonecarriero/followers", + "following_url": "https://api.github.com/users/simonecarriero/following{/other_user}", + "gists_url": "https://api.github.com/users/simonecarriero/gists{/gist_id}", + "starred_url": "https://api.github.com/users/simonecarriero/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/simonecarriero/subscriptions", + "organizations_url": "https://api.github.com/users/simonecarriero/orgs", + "repos_url": "https://api.github.com/users/simonecarriero/repos", + "events_url": "https://api.github.com/users/simonecarriero/events{/privacy}", + "received_events_url": "https://api.github.com/users/simonecarriero/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2014-11-06T11:22:57Z", + "updated_at": "2014-12-19T19:44:10Z", + "closed_at": "2014-12-19T19:44:10Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/137", + "html_url": "https://github.com/github-api/github-api/pull/137", + "diff_url": "https://github.com/github-api/github-api/pull/137.diff", + "patch_url": "https://github.com/github-api/github-api/pull/137.patch" + }, + "body": "Hi, I was using using your project and I found this small issue.\n\nSimone Carriero\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/136", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/136/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/136/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/136/events", + "html_url": "https://github.com/github-api/github-api/pull/136", + "id": 47942662, + "node_id": "MDExOlB1bGxSZXF1ZXN0MjM5NjkzMzg=", + "number": 136, + "title": "Add paging support for Team's Repositories", + "user": { + "login": "rtyley", + "id": 52038, + "node_id": "MDQ6VXNlcjUyMDM4", + "avatar_url": "https://avatars3.githubusercontent.com/u/52038?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rtyley", + "html_url": "https://github.com/rtyley", + "followers_url": "https://api.github.com/users/rtyley/followers", + "following_url": "https://api.github.com/users/rtyley/following{/other_user}", + "gists_url": "https://api.github.com/users/rtyley/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rtyley/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rtyley/subscriptions", + "organizations_url": "https://api.github.com/users/rtyley/orgs", + "repos_url": "https://api.github.com/users/rtyley/repos", + "events_url": "https://api.github.com/users/rtyley/events{/privacy}", + "received_events_url": "https://api.github.com/users/rtyley/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2014-11-06T09:53:32Z", + "updated_at": "2014-12-19T19:43:56Z", + "closed_at": "2014-12-19T19:43:56Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/136", + "html_url": "https://github.com/github-api/github-api/pull/136", + "diff_url": "https://github.com/github-api/github-api/pull/136.diff", + "patch_url": "https://github.com/github-api/github-api/pull/136.patch" + }, + "body": "The team repositories endpoint does do paging, so gotta support that.\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/135", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/135/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/135/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/135/events", + "html_url": "https://github.com/github-api/github-api/issues/135", + "id": 47771404, + "node_id": "MDU6SXNzdWU0Nzc3MTQwNA==", + "number": 135, + "title": "502 Bad Gateway error from GHRelease.uploadAsset", + "user": { + "login": "rowanseymour", + "id": 675558, + "node_id": "MDQ6VXNlcjY3NTU1OA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/675558?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rowanseymour", + "html_url": "https://github.com/rowanseymour", + "followers_url": "https://api.github.com/users/rowanseymour/followers", + "following_url": "https://api.github.com/users/rowanseymour/following{/other_user}", + "gists_url": "https://api.github.com/users/rowanseymour/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rowanseymour/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rowanseymour/subscriptions", + "organizations_url": "https://api.github.com/users/rowanseymour/orgs", + "repos_url": "https://api.github.com/users/rowanseymour/repos", + "events_url": "https://api.github.com/users/rowanseymour/events{/privacy}", + "received_events_url": "https://api.github.com/users/rowanseymour/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2014-11-04T21:56:46Z", + "updated_at": "2015-03-21T23:24:33Z", + "closed_at": "2015-03-21T23:24:33Z", + "author_association": "NONE", + "body": "I'm using https://github.com/jutzig/github-release-plugin which is built on this library. Today I started getting this error anytime I try to make a release:\n\n```\n\n[INFO] [ERROR] 502 Bad Gateway\n[INFO] [ERROR] \n[INFO] [ERROR]

        Bad Gateway

        \n[INFO] [ERROR]

        The proxy server received an invalid\n[INFO] [ERROR] response from an upstream server.
        \n[INFO] [ERROR]

        \n[INFO] [ERROR] : Server returned HTTP response code: 502 for URL: https://uploads.github.com/repos/.........\n```\n\nMight be related to http://stackoverflow.com/questions/21698009/github-api-502-error\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/134", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/134/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/134/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/134/events", + "html_url": "https://github.com/github-api/github-api/issues/134", + "id": 45954028, + "node_id": "MDU6SXNzdWU0NTk1NDAyOA==", + "number": 134, + "title": "GHRepository.getIssues(GHIssueState.CLOSED) also return pull requests", + "user": { + "login": "phong1990", + "id": 9263147, + "node_id": "MDQ6VXNlcjkyNjMxNDc=", + "avatar_url": "https://avatars0.githubusercontent.com/u/9263147?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/phong1990", + "html_url": "https://github.com/phong1990", + "followers_url": "https://api.github.com/users/phong1990/followers", + "following_url": "https://api.github.com/users/phong1990/following{/other_user}", + "gists_url": "https://api.github.com/users/phong1990/gists{/gist_id}", + "starred_url": "https://api.github.com/users/phong1990/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/phong1990/subscriptions", + "organizations_url": "https://api.github.com/users/phong1990/orgs", + "repos_url": "https://api.github.com/users/phong1990/repos", + "events_url": "https://api.github.com/users/phong1990/events{/privacy}", + "received_events_url": "https://api.github.com/users/phong1990/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2014-10-16T06:50:01Z", + "updated_at": "2015-02-15T16:36:29Z", + "closed_at": "2015-02-15T16:36:29Z", + "author_association": "NONE", + "body": "Hi kohsuke,\n\nI was using your api, it was great but there is this bug I hope you can fix it soon:\nWhenever I call the function GHRepository.getIssues(GHIssueState.CLOSED), it returns a list of both issues and pull requests. \n\nI expect only issue though. Currently my work around is to call getPullRequests then for each issue from getIssues, I search in the whole list of pull requests to see if it is already there. Then I ignore it. But this makes my algorithm runs at O(n*m). \n\nPlease fix it soon.\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/133", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/133/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/133/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/133/events", + "html_url": "https://github.com/github-api/github-api/pull/133", + "id": 45275267, + "node_id": "MDExOlB1bGxSZXF1ZXN0MjI0NDE1NzM=", + "number": 133, + "title": "[INFRA-142] - Introduce a method, which utilizes \"add group membership\" API call", + "user": { + "login": "oleg-nenashev", + "id": 3000480, + "node_id": "MDQ6VXNlcjMwMDA0ODA=", + "avatar_url": "https://avatars0.githubusercontent.com/u/3000480?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/oleg-nenashev", + "html_url": "https://github.com/oleg-nenashev", + "followers_url": "https://api.github.com/users/oleg-nenashev/followers", + "following_url": "https://api.github.com/users/oleg-nenashev/following{/other_user}", + "gists_url": "https://api.github.com/users/oleg-nenashev/gists{/gist_id}", + "starred_url": "https://api.github.com/users/oleg-nenashev/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/oleg-nenashev/subscriptions", + "organizations_url": "https://api.github.com/users/oleg-nenashev/orgs", + "repos_url": "https://api.github.com/users/oleg-nenashev/repos", + "events_url": "https://api.github.com/users/oleg-nenashev/events{/privacy}", + "received_events_url": "https://api.github.com/users/oleg-nenashev/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2014-10-08T17:57:51Z", + "updated_at": "2014-10-08T18:29:04Z", + "closed_at": "2014-10-08T18:29:04Z", + "author_association": "COLLABORATOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/133", + "html_url": "https://github.com/github-api/github-api/pull/133", + "diff_url": "https://github.com/github-api/github-api/pull/133.diff", + "patch_url": "https://github.com/github-api/github-api/pull/133.patch" + }, + "body": "This API call allows to invite users to an organization on demand\n\nSigned-off-by: Oleg Nenashev o.v.nenashev@gmail.com\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/132", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/132/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/132/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/132/events", + "html_url": "https://github.com/github-api/github-api/pull/132", + "id": 44463904, + "node_id": "MDExOlB1bGxSZXF1ZXN0MjIwMTQzODY=", + "number": 132, + "title": "Add GHCompare.getFiles() method to be able to see the precise files chan...", + "user": { + "login": "mocleiri", + "id": 250942, + "node_id": "MDQ6VXNlcjI1MDk0Mg==", + "avatar_url": "https://avatars0.githubusercontent.com/u/250942?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mocleiri", + "html_url": "https://github.com/mocleiri", + "followers_url": "https://api.github.com/users/mocleiri/followers", + "following_url": "https://api.github.com/users/mocleiri/following{/other_user}", + "gists_url": "https://api.github.com/users/mocleiri/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mocleiri/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mocleiri/subscriptions", + "organizations_url": "https://api.github.com/users/mocleiri/orgs", + "repos_url": "https://api.github.com/users/mocleiri/repos", + "events_url": "https://api.github.com/users/mocleiri/events{/privacy}", + "received_events_url": "https://api.github.com/users/mocleiri/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2014-09-30T15:54:05Z", + "updated_at": "2014-09-30T16:03:54Z", + "closed_at": "2014-09-30T16:03:54Z", + "author_association": "COLLABORATOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/132", + "html_url": "https://github.com/github-api/github-api/pull/132", + "diff_url": "https://github.com/github-api/github-api/pull/132.diff", + "patch_url": "https://github.com/github-api/github-api/pull/132.patch" + }, + "body": "...ged.\n\nThere is a file field inside of GHCompare but no getter to extract the values\nfor analysis.\n\nThere are contents in that field so I've added a new get method so that they\ncan be extracted.\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/131", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/131/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/131/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/131/events", + "html_url": "https://github.com/github-api/github-api/pull/131", + "id": 44311431, + "node_id": "MDExOlB1bGxSZXF1ZXN0MjE5NDUyMjk=", + "number": 131, + "title": "Modify GitHubBuilder to resolve user credentials from the system environ...", + "user": { + "login": "mocleiri", + "id": 250942, + "node_id": "MDQ6VXNlcjI1MDk0Mg==", + "avatar_url": "https://avatars0.githubusercontent.com/u/250942?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mocleiri", + "html_url": "https://github.com/mocleiri", + "followers_url": "https://api.github.com/users/mocleiri/followers", + "following_url": "https://api.github.com/users/mocleiri/following{/other_user}", + "gists_url": "https://api.github.com/users/mocleiri/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mocleiri/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mocleiri/subscriptions", + "organizations_url": "https://api.github.com/users/mocleiri/orgs", + "repos_url": "https://api.github.com/users/mocleiri/repos", + "events_url": "https://api.github.com/users/mocleiri/events{/privacy}", + "received_events_url": "https://api.github.com/users/mocleiri/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 6, + "created_at": "2014-09-29T16:09:42Z", + "updated_at": "2014-09-30T18:07:35Z", + "closed_at": "2014-09-30T18:07:35Z", + "author_association": "COLLABORATOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/131", + "html_url": "https://github.com/github-api/github-api/pull/131", + "diff_url": "https://github.com/github-api/github-api/pull/131.diff", + "patch_url": "https://github.com/github-api/github-api/pull/131.patch" + }, + "body": "...ment\n\nUsing the Jenkins EnvInject or Credentials Binding Plugins its possible to\npass credentials as Environment Variables.\n\nIts useful for Github.connect() to be able to directly read the values of the\nlogin, password and oauth properties from the environment.\n\nThis commit modifies the base Github.connect() method to resolve credentials\nin two steps:\n1. ~/.github credentials file if it exists.\n2. login, password or oauth variables from the environment\n\nA further fromEnvironment() method is provided to support\nloading from non-standard variable names.\n\nThe old Github.connect() method would throw an IOException if the ~/.github file\ndid not exist. Now it will fail silently instead dropping back to the anonymous\nusers access level.\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/130", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/130/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/130/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/130/events", + "html_url": "https://github.com/github-api/github-api/issues/130", + "id": 44229217, + "node_id": "MDU6SXNzdWU0NDIyOTIxNw==", + "number": 130, + "title": "Feature: watched Repositories", + "user": { + "login": "amencarini", + "id": 1100003, + "node_id": "MDQ6VXNlcjExMDAwMDM=", + "avatar_url": "https://avatars1.githubusercontent.com/u/1100003?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/amencarini", + "html_url": "https://github.com/amencarini", + "followers_url": "https://api.github.com/users/amencarini/followers", + "following_url": "https://api.github.com/users/amencarini/following{/other_user}", + "gists_url": "https://api.github.com/users/amencarini/gists{/gist_id}", + "starred_url": "https://api.github.com/users/amencarini/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/amencarini/subscriptions", + "organizations_url": "https://api.github.com/users/amencarini/orgs", + "repos_url": "https://api.github.com/users/amencarini/repos", + "events_url": "https://api.github.com/users/amencarini/events{/privacy}", + "received_events_url": "https://api.github.com/users/amencarini/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2014-09-28T12:23:14Z", + "updated_at": "2015-02-15T16:32:12Z", + "closed_at": "2015-02-15T16:32:12Z", + "author_association": "NONE", + "body": "Hi,\nI'm trying to tie in to the \"Watching\" API (https://developer.github.com/v3/activity/watching/) but I can't find any hook to it. \nIs it already implemented but I can't see it? If not, would it be possible to implement it? I'm doing my first project in Java now so I'm not able to contribute just yet :(\n\nThanks in advance!\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/129", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/129/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/129/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/129/events", + "html_url": "https://github.com/github-api/github-api/pull/129", + "id": 43497749, + "node_id": "MDExOlB1bGxSZXF1ZXN0MjE1ODUxMzI=", + "number": 129, + "title": "Allow pullRequest.getHead().getRepository().getCommit(headSha1) to work", + "user": { + "login": "mocleiri", + "id": 250942, + "node_id": "MDQ6VXNlcjI1MDk0Mg==", + "avatar_url": "https://avatars0.githubusercontent.com/u/250942?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mocleiri", + "html_url": "https://github.com/mocleiri", + "followers_url": "https://api.github.com/users/mocleiri/followers", + "following_url": "https://api.github.com/users/mocleiri/following{/other_user}", + "gists_url": "https://api.github.com/users/mocleiri/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mocleiri/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mocleiri/subscriptions", + "organizations_url": "https://api.github.com/users/mocleiri/orgs", + "repos_url": "https://api.github.com/users/mocleiri/repos", + "events_url": "https://api.github.com/users/mocleiri/events{/privacy}", + "received_events_url": "https://api.github.com/users/mocleiri/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2014-09-22T15:00:54Z", + "updated_at": "2014-09-26T19:14:25Z", + "closed_at": "2014-09-26T19:14:25Z", + "author_association": "COLLABORATOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/129", + "html_url": "https://github.com/github-api/github-api/pull/129", + "diff_url": "https://github.com/github-api/github-api/pull/129.diff", + "patch_url": "https://github.com/github-api/github-api/pull/129.patch" + }, + "body": "The wrong .wrap method was used for pull requests initialized by state\n(GHRepository.getPullReqests).\n\nThe wrong wrap call was introduced in 9fd34aec7fe9fa1359418c92b0a14526f837a4a4\n\nThis commit sets it back to the .wrapUp method which makes sure the pull request\nsubstructure has the repo object set properly.\n\nWithout this change a NullPointerException is thrown on the last line of this\ncode because the repo object inside of the remoteRepository object is null:\n\nGHRepository repo = github.getRepository(targetRepository);\n\nList openPullRequests = repo.getPullRequests(GHIssueState.OPEN);\n\nfor (GHPullRequest pullRequest : openPullRequests) {\n\n```\nGHCommitPointer head = pullRequest.getHead();\n\nGHRepository remoteRepository = head.getRepository();\n\nString commitId = head.getSha();\n\nGHCommit headCommit = remoteRepository.getCommit(commitId);\n```\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/128", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/128/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/128/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/128/events", + "html_url": "https://github.com/github-api/github-api/pull/128", + "id": 42671618, + "node_id": "MDExOlB1bGxSZXF1ZXN0MjExNzk4MjA=", + "number": 128, + "title": "Update github scopes according to https://developer.github.com/v3/oauth/#scopes", + "user": { + "login": "ndeloof", + "id": 132757, + "node_id": "MDQ6VXNlcjEzMjc1Nw==", + "avatar_url": "https://avatars0.githubusercontent.com/u/132757?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ndeloof", + "html_url": "https://github.com/ndeloof", + "followers_url": "https://api.github.com/users/ndeloof/followers", + "following_url": "https://api.github.com/users/ndeloof/following{/other_user}", + "gists_url": "https://api.github.com/users/ndeloof/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ndeloof/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ndeloof/subscriptions", + "organizations_url": "https://api.github.com/users/ndeloof/orgs", + "repos_url": "https://api.github.com/users/ndeloof/repos", + "events_url": "https://api.github.com/users/ndeloof/events{/privacy}", + "received_events_url": "https://api.github.com/users/ndeloof/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2014-09-12T21:16:58Z", + "updated_at": "2014-09-27T01:10:15Z", + "closed_at": "2014-09-27T01:10:15Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/128", + "html_url": "https://github.com/github-api/github-api/pull/128", + "diff_url": "https://github.com/github-api/github-api/pull/128.diff", + "patch_url": "https://github.com/github-api/github-api/pull/128.patch" + }, + "body": "" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/127", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/127/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/127/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/127/events", + "html_url": "https://github.com/github-api/github-api/pull/127", + "id": 42192172, + "node_id": "MDExOlB1bGxSZXF1ZXN0MjA4ODY4MTk=", + "number": 127, + "title": "retrieve allUsers, allOrganizations with single API call", + "user": { + "login": "msperisen", + "id": 2448228, + "node_id": "MDQ6VXNlcjI0NDgyMjg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/2448228?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/msperisen", + "html_url": "https://github.com/msperisen", + "followers_url": "https://api.github.com/users/msperisen/followers", + "following_url": "https://api.github.com/users/msperisen/following{/other_user}", + "gists_url": "https://api.github.com/users/msperisen/gists{/gist_id}", + "starred_url": "https://api.github.com/users/msperisen/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/msperisen/subscriptions", + "organizations_url": "https://api.github.com/users/msperisen/orgs", + "repos_url": "https://api.github.com/users/msperisen/repos", + "events_url": "https://api.github.com/users/msperisen/events{/privacy}", + "received_events_url": "https://api.github.com/users/msperisen/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 4, + "created_at": "2014-09-08T12:46:46Z", + "updated_at": "2014-09-28T10:07:53Z", + "closed_at": "2014-09-28T10:07:53Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/127", + "html_url": "https://github.com/github-api/github-api/pull/127", + "diff_url": "https://github.com/github-api/github-api/pull/127.diff", + "patch_url": "https://github.com/github-api/github-api/pull/127.patch" + }, + "body": "- retrieves all users and all organisations by using the [/users api](https://developer.github.com//v3/users/#get-all-users) call.\u2028the resulting GHPerson list is available as well as the GHUser and GHOrganization list. call is used for GH enterprise integration into existing enterprise infrastructure.\n- Fix repository ownership to return GHUser or GHOrganization.\n- added suspend-at to GHUser\n- added guava dependency\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/125", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/125/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/125/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/125/events", + "html_url": "https://github.com/github-api/github-api/pull/125", + "id": 42022727, + "node_id": "MDExOlB1bGxSZXF1ZXN0MjA3OTMwMDI=", + "number": 125, + "title": "retrieve allUsers, allOrganizations with single API call", + "user": { + "login": "msperisen", + "id": 2448228, + "node_id": "MDQ6VXNlcjI0NDgyMjg=", + "avatar_url": "https://avatars2.githubusercontent.com/u/2448228?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/msperisen", + "html_url": "https://github.com/msperisen", + "followers_url": "https://api.github.com/users/msperisen/followers", + "following_url": "https://api.github.com/users/msperisen/following{/other_user}", + "gists_url": "https://api.github.com/users/msperisen/gists{/gist_id}", + "starred_url": "https://api.github.com/users/msperisen/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/msperisen/subscriptions", + "organizations_url": "https://api.github.com/users/msperisen/orgs", + "repos_url": "https://api.github.com/users/msperisen/repos", + "events_url": "https://api.github.com/users/msperisen/events{/privacy}", + "received_events_url": "https://api.github.com/users/msperisen/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 3, + "created_at": "2014-09-05T07:55:51Z", + "updated_at": "2014-09-05T14:38:37Z", + "closed_at": "2014-09-05T14:38:37Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/125", + "html_url": "https://github.com/github-api/github-api/pull/125", + "diff_url": "https://github.com/github-api/github-api/pull/125.diff", + "patch_url": "https://github.com/github-api/github-api/pull/125.patch" + }, + "body": "retrieves all users and all organisations by using the [/users api call](https://developer.github.com/v3/users/#get-all-users).\nthe resulting GHPerson list is available as well as the GHUser and GHOrganization list. call is used for GH enterprise integration into existing enterprise infrastructure.\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/124", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/124/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/124/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/124/events", + "html_url": "https://github.com/github-api/github-api/pull/124", + "id": 41894208, + "node_id": "MDExOlB1bGxSZXF1ZXN0MjA3MjE3NjI=", + "number": 124, + "title": "Allow to use custom HttpConnector when only OAuth token is given", + "user": { + "login": "ohtake", + "id": 1013655, + "node_id": "MDQ6VXNlcjEwMTM2NTU=", + "avatar_url": "https://avatars2.githubusercontent.com/u/1013655?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ohtake", + "html_url": "https://github.com/ohtake", + "followers_url": "https://api.github.com/users/ohtake/followers", + "following_url": "https://api.github.com/users/ohtake/following{/other_user}", + "gists_url": "https://api.github.com/users/ohtake/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ohtake/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ohtake/subscriptions", + "organizations_url": "https://api.github.com/users/ohtake/orgs", + "repos_url": "https://api.github.com/users/ohtake/repos", + "events_url": "https://api.github.com/users/ohtake/events{/privacy}", + "received_events_url": "https://api.github.com/users/ohtake/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2014-09-04T04:32:02Z", + "updated_at": "2014-09-25T13:07:49Z", + "closed_at": "2014-09-04T17:32:11Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/124", + "html_url": "https://github.com/github-api/github-api/pull/124", + "diff_url": "https://github.com/github-api/github-api/pull/124.diff", + "patch_url": "https://github.com/github-api/github-api/pull/124.patch" + }, + "body": "The old pull request is #120.\n\nIf you use `GitHub.connectUsingOAuth(String oauthAccessToken)` or `GitHub.connectUsingOAuth(String githubServer, String oauthAccessToken)`, the constructor of `GitHub` calls `#getMyself`.\nBecause there is no way to call `#setConnector` before the construction, `#getMyself` will fail if the server is behind proxies.\nThis pull request allows library users to use custom HttpConnector when only OAuth token is given.\n\nExample usage is:\n\n``` java\nGitHub gh = new GitHubBuilder()\n .withEndpoint(serverAPIUrl)\n .withOAuthToken(accessToken)\n .withConnector(new HttpConnectorWithJenkinsProxy())\n .build();\n```\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/123", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/123/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/123/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/123/events", + "html_url": "https://github.com/github-api/github-api/pull/123", + "id": 41876098, + "node_id": "MDExOlB1bGxSZXF1ZXN0MjA3MTEyMzE=", + "number": 123, + "title": "Use issues endpoints for pull requests", + "user": { + "login": "rtyley", + "id": 52038, + "node_id": "MDQ6VXNlcjUyMDM4", + "avatar_url": "https://avatars3.githubusercontent.com/u/52038?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rtyley", + "html_url": "https://github.com/rtyley", + "followers_url": "https://api.github.com/users/rtyley/followers", + "following_url": "https://api.github.com/users/rtyley/following{/other_user}", + "gists_url": "https://api.github.com/users/rtyley/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rtyley/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rtyley/subscriptions", + "organizations_url": "https://api.github.com/users/rtyley/orgs", + "repos_url": "https://api.github.com/users/rtyley/repos", + "events_url": "https://api.github.com/users/rtyley/events{/privacy}", + "received_events_url": "https://api.github.com/users/rtyley/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2014-09-03T22:36:52Z", + "updated_at": "2014-09-04T17:31:25Z", + "closed_at": "2014-09-04T17:31:25Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/123", + "html_url": "https://github.com/github-api/github-api/pull/123", + "diff_url": "https://github.com/github-api/github-api/pull/123.diff", + "patch_url": "https://github.com/github-api/github-api/pull/123.patch" + }, + "body": "Setting labels and assignee on Pull requests failed silently, because the API endpoint being hit contained '/pulls/' rather than '/issues/'.\n\n> \"Every pull request is an issue, but not every issue is a pull request. For this reason, “shared” actions for both features, like manipulating assignees, labels and milestones, are provided within the Issues API.\"\n\nhttps://developer.github.com/v3/pulls/#labels-assignees-and-milestones\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/122", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/122/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/122/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/122/events", + "html_url": "https://github.com/github-api/github-api/pull/122", + "id": 41859728, + "node_id": "MDExOlB1bGxSZXF1ZXN0MjA3MDIxODI=", + "number": 122, + "title": "Add missing field browser_download_url in GHAsset", + "user": { + "login": "tbruyelle", + "id": 92280, + "node_id": "MDQ6VXNlcjkyMjgw", + "avatar_url": "https://avatars0.githubusercontent.com/u/92280?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/tbruyelle", + "html_url": "https://github.com/tbruyelle", + "followers_url": "https://api.github.com/users/tbruyelle/followers", + "following_url": "https://api.github.com/users/tbruyelle/following{/other_user}", + "gists_url": "https://api.github.com/users/tbruyelle/gists{/gist_id}", + "starred_url": "https://api.github.com/users/tbruyelle/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/tbruyelle/subscriptions", + "organizations_url": "https://api.github.com/users/tbruyelle/orgs", + "repos_url": "https://api.github.com/users/tbruyelle/repos", + "events_url": "https://api.github.com/users/tbruyelle/events{/privacy}", + "received_events_url": "https://api.github.com/users/tbruyelle/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2014-09-03T20:04:30Z", + "updated_at": "2014-09-04T17:29:24Z", + "closed_at": "2014-09-04T17:29:23Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/122", + "html_url": "https://github.com/github-api/github-api/pull/122", + "diff_url": "https://github.com/github-api/github-api/pull/122.diff", + "patch_url": "https://github.com/github-api/github-api/pull/122.patch" + }, + "body": "See https://developer.github.com/v3/repos/releases/#get-a-single-release-asset\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/121", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/121/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/121/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/121/events", + "html_url": "https://github.com/github-api/github-api/pull/121", + "id": 41858982, + "node_id": "MDExOlB1bGxSZXF1ZXN0MjA3MDE3MTc=", + "number": 121, + "title": "Add missing field browser_download_url in GHAsset", + "user": { + "login": "tbruyelle", + "id": 92280, + "node_id": "MDQ6VXNlcjkyMjgw", + "avatar_url": "https://avatars0.githubusercontent.com/u/92280?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/tbruyelle", + "html_url": "https://github.com/tbruyelle", + "followers_url": "https://api.github.com/users/tbruyelle/followers", + "following_url": "https://api.github.com/users/tbruyelle/following{/other_user}", + "gists_url": "https://api.github.com/users/tbruyelle/gists{/gist_id}", + "starred_url": "https://api.github.com/users/tbruyelle/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/tbruyelle/subscriptions", + "organizations_url": "https://api.github.com/users/tbruyelle/orgs", + "repos_url": "https://api.github.com/users/tbruyelle/repos", + "events_url": "https://api.github.com/users/tbruyelle/events{/privacy}", + "received_events_url": "https://api.github.com/users/tbruyelle/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2014-09-03T19:56:11Z", + "updated_at": "2014-09-03T20:03:51Z", + "closed_at": "2014-09-03T20:03:51Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/121", + "html_url": "https://github.com/github-api/github-api/pull/121", + "diff_url": "https://github.com/github-api/github-api/pull/121.diff", + "patch_url": "https://github.com/github-api/github-api/pull/121.patch" + }, + "body": "See https://developer.github.com/v3/repos/releases/#get-a-single-release-asset\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/120", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/120/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/120/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/120/events", + "html_url": "https://github.com/github-api/github-api/pull/120", + "id": 41816523, + "node_id": "MDExOlB1bGxSZXF1ZXN0MjA2NzY2ODc=", + "number": 120, + "title": "Use custom HttpConnector when authentication", + "user": { + "login": "ohtake", + "id": 1013655, + "node_id": "MDQ6VXNlcjEwMTM2NTU=", + "avatar_url": "https://avatars2.githubusercontent.com/u/1013655?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ohtake", + "html_url": "https://github.com/ohtake", + "followers_url": "https://api.github.com/users/ohtake/followers", + "following_url": "https://api.github.com/users/ohtake/following{/other_user}", + "gists_url": "https://api.github.com/users/ohtake/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ohtake/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ohtake/subscriptions", + "organizations_url": "https://api.github.com/users/ohtake/orgs", + "repos_url": "https://api.github.com/users/ohtake/repos", + "events_url": "https://api.github.com/users/ohtake/events{/privacy}", + "received_events_url": "https://api.github.com/users/ohtake/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2014-09-03T13:35:11Z", + "updated_at": "2014-09-05T02:17:46Z", + "closed_at": "2014-09-03T15:32:00Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/120", + "html_url": "https://github.com/github-api/github-api/pull/120", + "diff_url": "https://github.com/github-api/github-api/pull/120.diff", + "patch_url": "https://github.com/github-api/github-api/pull/120.patch" + }, + "body": "I'm trying to modify ghprb-plugin so that it can work behind authentication proxies.\nI added a HttpConnector implementation to ghprb-plugin:\n\n``` java\npublic class HttpConnectorWithJenkinsProxy implements HttpConnector{\n public HttpURLConnection connect(URL url) throws IOException {\n return (HttpURLConnection)ProxyConfiguration.open(url);\n }\n}\n```\n\nSince all `GitHub` constructors are `private`, there is no way to call `#setConnector` before `GitHub(String, String, Sttring, String)` constructor calls `#getMyself`, nor to extend `GitHub` class.\nSo I added `HttpConnector` parameter to `connect*` methods, except `connectToEnterprise` which does not require proxies in most cases.\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/119", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/119/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/119/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/119/events", + "html_url": "https://github.com/github-api/github-api/issues/119", + "id": 41729156, + "node_id": "MDU6SXNzdWU0MTcyOTE1Ng==", + "number": 119, + "title": "Support notifications api", + "user": { + "login": "GUIpsp", + "id": 386686, + "node_id": "MDQ6VXNlcjM4NjY4Ng==", + "avatar_url": "https://avatars0.githubusercontent.com/u/386686?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/GUIpsp", + "html_url": "https://github.com/GUIpsp", + "followers_url": "https://api.github.com/users/GUIpsp/followers", + "following_url": "https://api.github.com/users/GUIpsp/following{/other_user}", + "gists_url": "https://api.github.com/users/GUIpsp/gists{/gist_id}", + "starred_url": "https://api.github.com/users/GUIpsp/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/GUIpsp/subscriptions", + "organizations_url": "https://api.github.com/users/GUIpsp/orgs", + "repos_url": "https://api.github.com/users/GUIpsp/repos", + "events_url": "https://api.github.com/users/GUIpsp/events{/privacy}", + "received_events_url": "https://api.github.com/users/GUIpsp/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2014-09-02T16:37:57Z", + "updated_at": "2015-03-23T12:46:47Z", + "closed_at": "2015-03-22T22:55:26Z", + "author_association": "NONE", + "body": "https://developer.github.com/v3/activity/notifications/\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/118", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/118/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/118/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/118/events", + "html_url": "https://github.com/github-api/github-api/issues/118", + "id": 41051615, + "node_id": "MDU6SXNzdWU0MTA1MTYxNQ==", + "number": 118, + "title": "Cannot create repository in organisation", + "user": { + "login": "Ryuinferno", + "id": 2844952, + "node_id": "MDQ6VXNlcjI4NDQ5NTI=", + "avatar_url": "https://avatars0.githubusercontent.com/u/2844952?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Ryuinferno", + "html_url": "https://github.com/Ryuinferno", + "followers_url": "https://api.github.com/users/Ryuinferno/followers", + "following_url": "https://api.github.com/users/Ryuinferno/following{/other_user}", + "gists_url": "https://api.github.com/users/Ryuinferno/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Ryuinferno/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Ryuinferno/subscriptions", + "organizations_url": "https://api.github.com/users/Ryuinferno/orgs", + "repos_url": "https://api.github.com/users/Ryuinferno/repos", + "events_url": "https://api.github.com/users/Ryuinferno/events{/privacy}", + "received_events_url": "https://api.github.com/users/Ryuinferno/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2014-08-25T11:04:09Z", + "updated_at": "2015-02-15T15:18:09Z", + "closed_at": "2015-02-15T15:18:09Z", + "author_association": "NONE", + "body": "Got this error:\n\n```\n{\"message\":\"Validation Failed\",\"documentation_url\":\"https://developer.github.com/v3/repos/#create\",\"errors\":[{\"value\":309572,\"resource\":\"Repo\",\"field\":\"team_id\",\"code\":\"invalid\"}]}\n```\n\nIs it due to an API update? Thank you.\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/117", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/117/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/117/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/117/events", + "html_url": "https://github.com/github-api/github-api/pull/117", + "id": 40966201, + "node_id": "MDExOlB1bGxSZXF1ZXN0MjAyMDYwNDQ=", + "number": 117, + "title": "All the refs worth knowing: Implementation of ref updating and deleting.", + "user": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2014-08-23T03:35:11Z", + "updated_at": "2014-08-30T21:04:00Z", + "closed_at": "2014-08-30T21:04:00Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/117", + "html_url": "https://github.com/github-api/github-api/pull/117", + "diff_url": "https://github.com/github-api/github-api/pull/117.diff", + "patch_url": "https://github.com/github-api/github-api/pull/117.patch" + }, + "body": "This PR implements the updating and deleting of refs according to the specification in the GitHub API.\n\nhttps://developer.github.com/v3/git/refs/#update-a-reference\nhttps://developer.github.com/v3/git/refs/#delete-a-reference\n\nLet me know if there are any changes that need to be made! :)\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/116", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/116/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/116/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/116/events", + "html_url": "https://github.com/github-api/github-api/pull/116", + "id": 40626957, + "node_id": "MDExOlB1bGxSZXF1ZXN0MjAwMDI4NjI=", + "number": 116, + "title": "Remove getPath()", + "user": { + "login": "DavidTanner", + "id": 368889, + "node_id": "MDQ6VXNlcjM2ODg4OQ==", + "avatar_url": "https://avatars0.githubusercontent.com/u/368889?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/DavidTanner", + "html_url": "https://github.com/DavidTanner", + "followers_url": "https://api.github.com/users/DavidTanner/followers", + "following_url": "https://api.github.com/users/DavidTanner/following{/other_user}", + "gists_url": "https://api.github.com/users/DavidTanner/gists{/gist_id}", + "starred_url": "https://api.github.com/users/DavidTanner/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/DavidTanner/subscriptions", + "organizations_url": "https://api.github.com/users/DavidTanner/orgs", + "repos_url": "https://api.github.com/users/DavidTanner/repos", + "events_url": "https://api.github.com/users/DavidTanner/events{/privacy}", + "received_events_url": "https://api.github.com/users/DavidTanner/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 10, + "created_at": "2014-08-19T19:22:33Z", + "updated_at": "2014-10-08T17:37:18Z", + "closed_at": "2014-08-30T20:54:05Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/116", + "html_url": "https://github.com/github-api/github-api/pull/116", + "diff_url": "https://github.com/github-api/github-api/pull/116.diff", + "patch_url": "https://github.com/github-api/github-api/pull/116.patch" + }, + "body": "When getting the path and providing an enterprise url for the apiUrl, the /api/v3 portion gets duplicated. Since they will be combined on line 231 of GitHub.java there is no point just grabbing the path. See https://github.com/janinko/ghprb/issues/178, and https://issues.jenkins-ci.org/browse/JENKINS-24145?focusedCommentId=208270#comment-208270\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/115", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/115/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/115/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/115/events", + "html_url": "https://github.com/github-api/github-api/pull/115", + "id": 40496844, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTk5MjI3Njk=", + "number": 115, + "title": "Add missing GitHub event types.", + "user": { + "login": "bernd", + "id": 461, + "node_id": "MDQ6VXNlcjQ2MQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/461?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bernd", + "html_url": "https://github.com/bernd", + "followers_url": "https://api.github.com/users/bernd/followers", + "following_url": "https://api.github.com/users/bernd/following{/other_user}", + "gists_url": "https://api.github.com/users/bernd/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bernd/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bernd/subscriptions", + "organizations_url": "https://api.github.com/users/bernd/orgs", + "repos_url": "https://api.github.com/users/bernd/repos", + "events_url": "https://api.github.com/users/bernd/events{/privacy}", + "received_events_url": "https://api.github.com/users/bernd/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2014-08-18T14:56:56Z", + "updated_at": "2014-08-30T20:53:24Z", + "closed_at": "2014-08-30T20:53:23Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/115", + "html_url": "https://github.com/github-api/github-api/pull/115", + "diff_url": "https://github.com/github-api/github-api/pull/115.diff", + "patch_url": "https://github.com/github-api/github-api/pull/115.patch" + }, + "body": "This adds the missing GitHub `DEPLOYMENT`, `DEPLOYMENT_STATUS`, `RELEASE` and `STATUS` events.\n\nI'm running into this:\n\n```\nException in thread \"main\" java.lang.IllegalArgumentException: No enum constant org.kohsuke.github.GHEvent.RELEASE\n```\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/114", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/114/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/114/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/114/events", + "html_url": "https://github.com/github-api/github-api/pull/114", + "id": 39584503, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTkzODE5NTA=", + "number": 114, + "title": "get repository full name (including owner)", + "user": { + "login": "ndeloof", + "id": 132757, + "node_id": "MDQ6VXNlcjEzMjc1Nw==", + "avatar_url": "https://avatars0.githubusercontent.com/u/132757?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ndeloof", + "html_url": "https://github.com/ndeloof", + "followers_url": "https://api.github.com/users/ndeloof/followers", + "following_url": "https://api.github.com/users/ndeloof/following{/other_user}", + "gists_url": "https://api.github.com/users/ndeloof/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ndeloof/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ndeloof/subscriptions", + "organizations_url": "https://api.github.com/users/ndeloof/orgs", + "repos_url": "https://api.github.com/users/ndeloof/repos", + "events_url": "https://api.github.com/users/ndeloof/events{/privacy}", + "received_events_url": "https://api.github.com/users/ndeloof/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2014-08-06T02:32:31Z", + "updated_at": "2014-08-30T20:53:02Z", + "closed_at": "2014-08-30T20:53:02Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/114", + "html_url": "https://github.com/github-api/github-api/pull/114", + "diff_url": "https://github.com/github-api/github-api/pull/114.diff", + "patch_url": "https://github.com/github-api/github-api/pull/114.patch" + }, + "body": "owner.login isn't set when owner is an organization\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/113", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/113/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/113/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/113/events", + "html_url": "https://github.com/github-api/github-api/issues/113", + "id": 38966208, + "node_id": "MDU6SXNzdWUzODk2NjIwOA==", + "number": 113, + "title": "Different ways of getting issue.getClosedby() return different results.", + "user": { + "login": "artfullyContrived", + "id": 445103, + "node_id": "MDQ6VXNlcjQ0NTEwMw==", + "avatar_url": "https://avatars1.githubusercontent.com/u/445103?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/artfullyContrived", + "html_url": "https://github.com/artfullyContrived", + "followers_url": "https://api.github.com/users/artfullyContrived/followers", + "following_url": "https://api.github.com/users/artfullyContrived/following{/other_user}", + "gists_url": "https://api.github.com/users/artfullyContrived/gists{/gist_id}", + "starred_url": "https://api.github.com/users/artfullyContrived/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/artfullyContrived/subscriptions", + "organizations_url": "https://api.github.com/users/artfullyContrived/orgs", + "repos_url": "https://api.github.com/users/artfullyContrived/repos", + "events_url": "https://api.github.com/users/artfullyContrived/events{/privacy}", + "received_events_url": "https://api.github.com/users/artfullyContrived/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2014-07-29T08:00:39Z", + "updated_at": "2015-02-15T15:16:33Z", + "closed_at": "2015-02-15T15:16:33Z", + "author_association": "NONE", + "body": "The following test case shows that calling `issue.getRepository().getIssue(issue.getNumber()) .getClosedBy()` at times yields different results from `issue.getClosedBy().`\n\nAlso not all closed issues return the `GHuser` who closed them whereas github shows the closer of the issue.\n\n```\nimport static org.junit.Assert.assertEquals;\n\nimport java.io.IOException;\n\nimport org.junit.BeforeClass;\nimport org.junit.Test;\nimport org.kohsuke.github.GHIssue;\nimport org.kohsuke.github.GHIssueState;\nimport org.kohsuke.github.GHRepository;\nimport org.kohsuke.github.GitHub;\n\npublic class IssueTester {\n\n private static GHRepository repo;\n\n @BeforeClass\n public static void setup() {\n try {\n repo = GitHub.connectAnonymously().getRepository(\n \"kohsuke/github-api\");\n } catch (IOException e) {\n e.printStackTrace();\n }\n }\n\n // These two ways of gettting closers must return same GHUser\n @Test\n public void testGetCloser() {\n try {\n for (GHIssue issue : repo.getIssues(GHIssueState.CLOSED)) {\n assertEquals(issue.getRepository().getIssue(issue.getNumber())\n .getClosedBy(), issue.getClosedBy());\n }\n } catch (IOException e) {\n e.printStackTrace();\n }\n }\n\n // Every closed issue must have been closed by someone\n @Test\n public void testClosedIssue() {\n try {\n for (GHIssue issue : repo.getIssues(GHIssueState.CLOSED)) {\n assert (issue.getClosedBy() != null);\n assert (issue.getRepository().getIssue(issue.getNumber())\n .getClosedBy() != null);\n }\n } catch (IOException e) {\n e.printStackTrace();\n }\n }\n}\n```\n" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/__files/repositories_617210_issues-d2dadb59-c855-4c32-8a98-5ed6992cf3ff.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/__files/repositories_617210_issues-d2dadb59-c855-4c32-8a98-5ed6992cf3ff.json new file mode 100644 index 0000000000..6695c497b7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/__files/repositories_617210_issues-d2dadb59-c855-4c32-8a98-5ed6992cf3ff.json @@ -0,0 +1,1454 @@ +[ + { + "url": "https://api.github.com/repos/github-api/github-api/issues/508", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/508/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/508/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/508/events", + "html_url": "https://github.com/github-api/github-api/pull/508", + "id": 424636064, + "node_id": "MDExOlB1bGxSZXF1ZXN0MjYzOTIwNjUw", + "number": 508, + "title": "Update maven dependency", + "user": { + "login": "blacelle", + "id": 2117911, + "node_id": "MDQ6VXNlcjIxMTc5MTE=", + "avatar_url": "https://avatars0.githubusercontent.com/u/2117911?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/blacelle", + "html_url": "https://github.com/blacelle", + "followers_url": "https://api.github.com/users/blacelle/followers", + "following_url": "https://api.github.com/users/blacelle/following{/other_user}", + "gists_url": "https://api.github.com/users/blacelle/gists{/gist_id}", + "starred_url": "https://api.github.com/users/blacelle/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/blacelle/subscriptions", + "organizations_url": "https://api.github.com/users/blacelle/orgs", + "repos_url": "https://api.github.com/users/blacelle/repos", + "events_url": "https://api.github.com/users/blacelle/events{/privacy}", + "received_events_url": "https://api.github.com/users/blacelle/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-03-24T17:06:29Z", + "updated_at": "2019-05-17T02:32:05Z", + "closed_at": "2019-05-17T02:32:05Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/508", + "html_url": "https://github.com/github-api/github-api/pull/508", + "diff_url": "https://github.com/github-api/github-api/pull/508.diff", + "patch_url": "https://github.com/github-api/github-api/pull/508.patch" + }, + "body": "Update of Maven dependency versions" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/507", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/507/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/507/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/507/events", + "html_url": "https://github.com/github-api/github-api/pull/507", + "id": 422211525, + "node_id": "MDExOlB1bGxSZXF1ZXN0MjYyMDUwNjE3", + "number": 507, + "title": "Add getTeam by id function", + "user": { + "login": "ingwarsw", + "id": 5390156, + "node_id": "MDQ6VXNlcjUzOTAxNTY=", + "avatar_url": "https://avatars2.githubusercontent.com/u/5390156?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ingwarsw", + "html_url": "https://github.com/ingwarsw", + "followers_url": "https://api.github.com/users/ingwarsw/followers", + "following_url": "https://api.github.com/users/ingwarsw/following{/other_user}", + "gists_url": "https://api.github.com/users/ingwarsw/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ingwarsw/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ingwarsw/subscriptions", + "organizations_url": "https://api.github.com/users/ingwarsw/orgs", + "repos_url": "https://api.github.com/users/ingwarsw/repos", + "events_url": "https://api.github.com/users/ingwarsw/events{/privacy}", + "received_events_url": "https://api.github.com/users/ingwarsw/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-03-18T13:15:56Z", + "updated_at": "2019-05-22T22:22:25Z", + "closed_at": "2019-05-22T22:22:25Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/507", + "html_url": "https://github.com/github-api/github-api/pull/507", + "diff_url": "https://github.com/github-api/github-api/pull/507.diff", + "patch_url": "https://github.com/github-api/github-api/pull/507.patch" + }, + "body": "" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/503", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/503/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/503/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/503/events", + "html_url": "https://github.com/github-api/github-api/pull/503", + "id": 419693453, + "node_id": "MDExOlB1bGxSZXF1ZXN0MjYwMTQzMTM5", + "number": 503, + "title": "add setPrivate functionality on repos", + "user": { + "login": "shirdoo", + "id": 30700223, + "node_id": "MDQ6VXNlcjMwNzAwMjIz", + "avatar_url": "https://avatars3.githubusercontent.com/u/30700223?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/shirdoo", + "html_url": "https://github.com/shirdoo", + "followers_url": "https://api.github.com/users/shirdoo/followers", + "following_url": "https://api.github.com/users/shirdoo/following{/other_user}", + "gists_url": "https://api.github.com/users/shirdoo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/shirdoo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/shirdoo/subscriptions", + "organizations_url": "https://api.github.com/users/shirdoo/orgs", + "repos_url": "https://api.github.com/users/shirdoo/repos", + "events_url": "https://api.github.com/users/shirdoo/events{/privacy}", + "received_events_url": "https://api.github.com/users/shirdoo/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2019-03-11T21:32:05Z", + "updated_at": "2019-10-03T21:40:04Z", + "closed_at": "2019-10-03T21:40:04Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/503", + "html_url": "https://github.com/github-api/github-api/pull/503", + "diff_url": "https://github.com/github-api/github-api/pull/503.diff", + "patch_url": "https://github.com/github-api/github-api/pull/503.patch" + }, + "body": "" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/502", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/502/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/502/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/502/events", + "html_url": "https://github.com/github-api/github-api/pull/502", + "id": 418068956, + "node_id": "MDExOlB1bGxSZXF1ZXN0MjU4OTI3ODgy", + "number": 502, + "title": "Added equals and hashcode", + "user": { + "login": "CodeAndChoke", + "id": 37987580, + "node_id": "MDQ6VXNlcjM3OTg3NTgw", + "avatar_url": "https://avatars2.githubusercontent.com/u/37987580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/CodeAndChoke", + "html_url": "https://github.com/CodeAndChoke", + "followers_url": "https://api.github.com/users/CodeAndChoke/followers", + "following_url": "https://api.github.com/users/CodeAndChoke/following{/other_user}", + "gists_url": "https://api.github.com/users/CodeAndChoke/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CodeAndChoke/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CodeAndChoke/subscriptions", + "organizations_url": "https://api.github.com/users/CodeAndChoke/orgs", + "repos_url": "https://api.github.com/users/CodeAndChoke/repos", + "events_url": "https://api.github.com/users/CodeAndChoke/events{/privacy}", + "received_events_url": "https://api.github.com/users/CodeAndChoke/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-03-07T00:14:23Z", + "updated_at": "2019-09-10T05:02:23Z", + "closed_at": "2019-09-10T05:02:23Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/502", + "html_url": "https://github.com/github-api/github-api/pull/502", + "diff_url": "https://github.com/github-api/github-api/pull/502.diff", + "patch_url": "https://github.com/github-api/github-api/pull/502.patch" + }, + "body": "I added the required methods from the following issue: https://github.com/kohsuke/github-api/issues/501" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/499", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/499/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/499/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/499/events", + "html_url": "https://github.com/github-api/github-api/pull/499", + "id": 412266342, + "node_id": "MDExOlB1bGxSZXF1ZXN0MjU0NTE1NzA1", + "number": 499, + "title": "Create PR from original repo to private org fork", + "user": { + "login": "anatolyD", + "id": 3054650, + "node_id": "MDQ6VXNlcjMwNTQ2NTA=", + "avatar_url": "https://avatars2.githubusercontent.com/u/3054650?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/anatolyD", + "html_url": "https://github.com/anatolyD", + "followers_url": "https://api.github.com/users/anatolyD/followers", + "following_url": "https://api.github.com/users/anatolyD/following{/other_user}", + "gists_url": "https://api.github.com/users/anatolyD/gists{/gist_id}", + "starred_url": "https://api.github.com/users/anatolyD/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/anatolyD/subscriptions", + "organizations_url": "https://api.github.com/users/anatolyD/orgs", + "repos_url": "https://api.github.com/users/anatolyD/repos", + "events_url": "https://api.github.com/users/anatolyD/events{/privacy}", + "received_events_url": "https://api.github.com/users/anatolyD/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2019-02-20T06:30:53Z", + "updated_at": "2019-05-22T21:55:53Z", + "closed_at": "2019-05-22T21:55:53Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/499", + "html_url": "https://github.com/github-api/github-api/pull/499", + "diff_url": "https://github.com/github-api/github-api/pull/499.diff", + "patch_url": "https://github.com/github-api/github-api/pull/499.patch" + }, + "body": "Use case: when fork is done into private organization then the original repo maintainer can't have any access there hence this field has to be set to `false` explicitly.\r\n\r\nAdded parameter: `maintainerCanModify` to `GHRepository.createPullRequest` method. \r\n\r\n- Indicates whether maintainers can modify the pull request\r\n\r\nOriginal method is kept for backward compatibility defaulting the parameter to `true`. " + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/498", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/498/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/498/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/498/events", + "html_url": "https://github.com/github-api/github-api/pull/498", + "id": 411819273, + "node_id": "MDExOlB1bGxSZXF1ZXN0MjU0MTcwODA1", + "number": 498, + "title": "Add GHPullRequestReview.submitted_at field", + "user": { + "login": "rmetzger", + "id": 89049, + "node_id": "MDQ6VXNlcjg5MDQ5", + "avatar_url": "https://avatars2.githubusercontent.com/u/89049?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rmetzger", + "html_url": "https://github.com/rmetzger", + "followers_url": "https://api.github.com/users/rmetzger/followers", + "following_url": "https://api.github.com/users/rmetzger/following{/other_user}", + "gists_url": "https://api.github.com/users/rmetzger/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rmetzger/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rmetzger/subscriptions", + "organizations_url": "https://api.github.com/users/rmetzger/orgs", + "repos_url": "https://api.github.com/users/rmetzger/repos", + "events_url": "https://api.github.com/users/rmetzger/events{/privacy}", + "received_events_url": "https://api.github.com/users/rmetzger/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 4, + "created_at": "2019-02-19T09:14:02Z", + "updated_at": "2019-07-01T18:42:17Z", + "closed_at": "2019-07-01T17:32:02Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/498", + "html_url": "https://github.com/github-api/github-api/pull/498", + "diff_url": "https://github.com/github-api/github-api/pull/498.diff", + "patch_url": "https://github.com/github-api/github-api/pull/498.patch" + }, + "body": "This is a fix for https://github.com/kohsuke/github-api/issues/450" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/493", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/493/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/493/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/493/events", + "html_url": "https://github.com/github-api/github-api/issues/493", + "id": 406537811, + "node_id": "MDU6SXNzdWU0MDY1Mzc4MTE=", + "number": 493, + "title": "GitHub.connectUsingOAuth() suddenly taking a really long time to connect", + "user": { + "login": "POE-Addon-Launcher", + "id": 42203962, + "node_id": "MDQ6VXNlcjQyMjAzOTYy", + "avatar_url": "https://avatars2.githubusercontent.com/u/42203962?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/POE-Addon-Launcher", + "html_url": "https://github.com/POE-Addon-Launcher", + "followers_url": "https://api.github.com/users/POE-Addon-Launcher/followers", + "following_url": "https://api.github.com/users/POE-Addon-Launcher/following{/other_user}", + "gists_url": "https://api.github.com/users/POE-Addon-Launcher/gists{/gist_id}", + "starred_url": "https://api.github.com/users/POE-Addon-Launcher/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/POE-Addon-Launcher/subscriptions", + "organizations_url": "https://api.github.com/users/POE-Addon-Launcher/orgs", + "repos_url": "https://api.github.com/users/POE-Addon-Launcher/repos", + "events_url": "https://api.github.com/users/POE-Addon-Launcher/events{/privacy}", + "received_events_url": "https://api.github.com/users/POE-Addon-Launcher/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2019-02-04T21:57:21Z", + "updated_at": "2019-02-05T09:53:59Z", + "closed_at": "2019-02-05T09:53:59Z", + "author_association": "NONE", + "body": "Hi I've been creating a program using GitHub.connectUsingOAuth(), however, suddenly it decided to take a really long time to connect to GitHub, (well over 30seconds), however, when I use connect anonymously it will connect instantly, is this a known issue / some random hiccup?" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/492", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/492/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/492/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/492/events", + "html_url": "https://github.com/github-api/github-api/pull/492", + "id": 405797832, + "node_id": "MDExOlB1bGxSZXF1ZXN0MjQ5Njc3OTU2", + "number": 492, + "title": "fixed membership role problem with case", + "user": { + "login": "arykov", + "id": 610108, + "node_id": "MDQ6VXNlcjYxMDEwOA==", + "avatar_url": "https://avatars2.githubusercontent.com/u/610108?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/arykov", + "html_url": "https://github.com/arykov", + "followers_url": "https://api.github.com/users/arykov/followers", + "following_url": "https://api.github.com/users/arykov/following{/other_user}", + "gists_url": "https://api.github.com/users/arykov/gists{/gist_id}", + "starred_url": "https://api.github.com/users/arykov/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/arykov/subscriptions", + "organizations_url": "https://api.github.com/users/arykov/orgs", + "repos_url": "https://api.github.com/users/arykov/repos", + "events_url": "https://api.github.com/users/arykov/events{/privacy}", + "received_events_url": "https://api.github.com/users/arykov/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 4, + "created_at": "2019-02-01T17:24:48Z", + "updated_at": "2019-05-17T21:03:44Z", + "closed_at": "2019-05-17T21:03:44Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/492", + "html_url": "https://github.com/github-api/github-api/pull/492", + "diff_url": "https://github.com/github-api/github-api/pull/492.diff", + "patch_url": "https://github.com/github-api/github-api/pull/492.patch" + }, + "body": "Fix for problem described in issue #491 " + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/490", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/490/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/490/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/490/events", + "html_url": "https://github.com/github-api/github-api/pull/490", + "id": 405495246, + "node_id": "MDExOlB1bGxSZXF1ZXN0MjQ5NDQ0Nzc1", + "number": 490, + "title": "proposed fix for GHTeam.add in issue #489", + "user": { + "login": "arykov", + "id": 610108, + "node_id": "MDQ6VXNlcjYxMDEwOA==", + "avatar_url": "https://avatars2.githubusercontent.com/u/610108?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/arykov", + "html_url": "https://github.com/arykov", + "followers_url": "https://api.github.com/users/arykov/followers", + "following_url": "https://api.github.com/users/arykov/following{/other_user}", + "gists_url": "https://api.github.com/users/arykov/gists{/gist_id}", + "starred_url": "https://api.github.com/users/arykov/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/arykov/subscriptions", + "organizations_url": "https://api.github.com/users/arykov/orgs", + "repos_url": "https://api.github.com/users/arykov/repos", + "events_url": "https://api.github.com/users/arykov/events{/privacy}", + "received_events_url": "https://api.github.com/users/arykov/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-02-01T00:04:46Z", + "updated_at": "2019-02-01T16:53:42Z", + "closed_at": "2019-02-01T16:53:42Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/490", + "html_url": "https://github.com/github-api/github-api/pull/490", + "diff_url": "https://github.com/github-api/github-api/pull/490.diff", + "patch_url": "https://github.com/github-api/github-api/pull/490.patch" + }, + "body": "This breaks library reverse compatibility for code that uses original GHTeam.Role.MEMBER and GHTeam.Role.MAINTAINER. Alternative is worse since reverse compatibility can only be preserved at expense of valueOf and using toString instead of name" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/489", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/489/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/489/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/489/events", + "html_url": "https://github.com/github-api/github-api/issues/489", + "id": 405490040, + "node_id": "MDU6SXNzdWU0MDU0OTAwNDA=", + "number": 489, + "title": "GHTeam.add does not due to GHTeam.Role(s) been capitalized", + "user": { + "login": "arykov", + "id": 610108, + "node_id": "MDQ6VXNlcjYxMDEwOA==", + "avatar_url": "https://avatars2.githubusercontent.com/u/610108?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/arykov", + "html_url": "https://github.com/arykov", + "followers_url": "https://api.github.com/users/arykov/followers", + "following_url": "https://api.github.com/users/arykov/following{/other_user}", + "gists_url": "https://api.github.com/users/arykov/gists{/gist_id}", + "starred_url": "https://api.github.com/users/arykov/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/arykov/subscriptions", + "organizations_url": "https://api.github.com/users/arykov/orgs", + "repos_url": "https://api.github.com/users/arykov/repos", + "events_url": "https://api.github.com/users/arykov/events{/privacy}", + "received_events_url": "https://api.github.com/users/arykov/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2019-01-31T23:43:18Z", + "updated_at": "2019-02-01T16:54:34Z", + "closed_at": "2019-02-01T16:54:34Z", + "author_association": "CONTRIBUTOR", + "body": "When trying to add a MAINTAINER or MEMBER to the team in GHE 2.16.1 org.kohsuke.github.HttpException: {\"message\":\"Invalid request.\\n\\nMEMBER is not a member of [\\\"member\\\", \\\"maintainer\\\"].\",\"documentation_url\":\"https://developer.github.com/enterprise/2.16/v3/teams/members/#add-or-update-team-membership\"} is thrown. It appears to be capitalization problem." + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/485", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/485/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/485/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/485/events", + "html_url": "https://github.com/github-api/github-api/pull/485", + "id": 393720107, + "node_id": "MDExOlB1bGxSZXF1ZXN0MjQwNjYzNTA2", + "number": 485, + "title": "remove system.out from listOrgs", + "user": { + "login": "scotty-g", + "id": 7861050, + "node_id": "MDQ6VXNlcjc4NjEwNTA=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7861050?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/scotty-g", + "html_url": "https://github.com/scotty-g", + "followers_url": "https://api.github.com/users/scotty-g/followers", + "following_url": "https://api.github.com/users/scotty-g/following{/other_user}", + "gists_url": "https://api.github.com/users/scotty-g/gists{/gist_id}", + "starred_url": "https://api.github.com/users/scotty-g/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/scotty-g/subscriptions", + "organizations_url": "https://api.github.com/users/scotty-g/orgs", + "repos_url": "https://api.github.com/users/scotty-g/repos", + "events_url": "https://api.github.com/users/scotty-g/events{/privacy}", + "received_events_url": "https://api.github.com/users/scotty-g/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2018-12-23T03:32:47Z", + "updated_at": "2019-06-21T14:21:02Z", + "closed_at": "2019-05-17T01:56:46Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/485", + "html_url": "https://github.com/github-api/github-api/pull/485", + "diff_url": "https://github.com/github-api/github-api/pull/485.diff", + "patch_url": "https://github.com/github-api/github-api/pull/485.patch" + }, + "body": "Removal of a `System.out` usage printing the pageSize on each iteration." + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/483", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/483/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/483/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/483/events", + "html_url": "https://github.com/github-api/github-api/pull/483", + "id": 391505519, + "node_id": "MDExOlB1bGxSZXF1ZXN0MjM4OTkwNTQz", + "number": 483, + "title": "Add support for projects", + "user": { + "login": "martinvanzijl", + "id": 24422213, + "node_id": "MDQ6VXNlcjI0NDIyMjEz", + "avatar_url": "https://avatars0.githubusercontent.com/u/24422213?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/martinvanzijl", + "html_url": "https://github.com/martinvanzijl", + "followers_url": "https://api.github.com/users/martinvanzijl/followers", + "following_url": "https://api.github.com/users/martinvanzijl/following{/other_user}", + "gists_url": "https://api.github.com/users/martinvanzijl/gists{/gist_id}", + "starred_url": "https://api.github.com/users/martinvanzijl/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/martinvanzijl/subscriptions", + "organizations_url": "https://api.github.com/users/martinvanzijl/orgs", + "repos_url": "https://api.github.com/users/martinvanzijl/repos", + "events_url": "https://api.github.com/users/martinvanzijl/events{/privacy}", + "received_events_url": "https://api.github.com/users/martinvanzijl/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 6, + "created_at": "2018-12-16T21:12:17Z", + "updated_at": "2019-09-26T03:07:29Z", + "closed_at": "2019-09-25T22:51:29Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/483", + "html_url": "https://github.com/github-api/github-api/pull/483", + "diff_url": "https://github.com/github-api/github-api/pull/483.diff", + "patch_url": "https://github.com/github-api/github-api/pull/483.patch" + }, + "body": "Fixes issue #425.\r\n\r\nAdded methods:\r\n\r\n- GitHub.getProject(int id)\r\n- GHRepository.createProject()\r\n- GHRepository.listProjects()\r\n- GHOrganization.createProject()\r\n- GHOrganization.listProjects()\r\n\r\nAdded the GHProject class.\r\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/480", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/480/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/480/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/480/events", + "html_url": "https://github.com/github-api/github-api/pull/480", + "id": 389070333, + "node_id": "MDExOlB1bGxSZXF1ZXN0MjM3MTYxMTU4", + "number": 480, + "title": "Escape special characters in branch URLs", + "user": { + "login": "martinvanzijl", + "id": 24422213, + "node_id": "MDQ6VXNlcjI0NDIyMjEz", + "avatar_url": "https://avatars0.githubusercontent.com/u/24422213?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/martinvanzijl", + "html_url": "https://github.com/martinvanzijl", + "followers_url": "https://api.github.com/users/martinvanzijl/followers", + "following_url": "https://api.github.com/users/martinvanzijl/following{/other_user}", + "gists_url": "https://api.github.com/users/martinvanzijl/gists{/gist_id}", + "starred_url": "https://api.github.com/users/martinvanzijl/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/martinvanzijl/subscriptions", + "organizations_url": "https://api.github.com/users/martinvanzijl/orgs", + "repos_url": "https://api.github.com/users/martinvanzijl/repos", + "events_url": "https://api.github.com/users/martinvanzijl/events{/privacy}", + "received_events_url": "https://api.github.com/users/martinvanzijl/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2018-12-09T22:14:42Z", + "updated_at": "2019-09-26T03:02:10Z", + "closed_at": "2019-09-26T00:15:51Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/480", + "html_url": "https://github.com/github-api/github-api/pull/480", + "diff_url": "https://github.com/github-api/github-api/pull/480.diff", + "patch_url": "https://github.com/github-api/github-api/pull/480.patch" + }, + "body": "Fix for issue #381." + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/476", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/476/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/476/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/476/events", + "html_url": "https://github.com/github-api/github-api/pull/476", + "id": 384125477, + "node_id": "MDExOlB1bGxSZXF1ZXN0MjMzNDA0OTM0", + "number": 476, + "title": "Provide more exception details", + "user": { + "login": "turbanoff", + "id": 741251, + "node_id": "MDQ6VXNlcjc0MTI1MQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/741251?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/turbanoff", + "html_url": "https://github.com/turbanoff", + "followers_url": "https://api.github.com/users/turbanoff/followers", + "following_url": "https://api.github.com/users/turbanoff/following{/other_user}", + "gists_url": "https://api.github.com/users/turbanoff/gists{/gist_id}", + "starred_url": "https://api.github.com/users/turbanoff/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/turbanoff/subscriptions", + "organizations_url": "https://api.github.com/users/turbanoff/orgs", + "repos_url": "https://api.github.com/users/turbanoff/repos", + "events_url": "https://api.github.com/users/turbanoff/events{/privacy}", + "received_events_url": "https://api.github.com/users/turbanoff/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2018-11-25T22:21:37Z", + "updated_at": "2019-08-24T01:12:35Z", + "closed_at": "2019-08-24T01:12:35Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/476", + "html_url": "https://github.com/github-api/github-api/pull/476", + "diff_url": "https://github.com/github-api/github-api/pull/476.diff", + "patch_url": "https://github.com/github-api/github-api/pull/476.patch" + }, + "body": "For now if invalid credentials used to search repositories, github-api throws following exception\r\n\r\n Exception in thread \"main\" org.kohsuke.github.GHException: Failed to retrieve https://api.github.com/search/repositories?q=vk+language%3Ajava+created%3A2015-11-26..2016-11-26\r\n\tat org.kohsuke.github.Requester$PagingIterator.fetch(Requester.java:529)\r\n\tat org.kohsuke.github.Requester$PagingIterator.hasNext(Requester.java:494)\r\n\tat org.kohsuke.github.PagedSearchIterable$1.hasNext(PagedSearchIterable.java:55)\r\n\tat org.kohsuke.github.PagedIterator.fetch(PagedIterator.java:44)\r\n\tat org.kohsuke.github.PagedIterator.hasNext(PagedIterator.java:32)\r\n\r\nThere is no mentions about credentials at all. Better to propagate exception to user to be able to deal with it." + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/473", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/473/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/473/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/473/events", + "html_url": "https://github.com/github-api/github-api/pull/473", + "id": 382639279, + "node_id": "MDExOlB1bGxSZXF1ZXN0MjMyMjk3OTgx", + "number": 473, + "title": "Implemented GitHub.doArchive", + "user": { + "login": "joaoe", + "id": 461983, + "node_id": "MDQ6VXNlcjQ2MTk4Mw==", + "avatar_url": "https://avatars3.githubusercontent.com/u/461983?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/joaoe", + "html_url": "https://github.com/joaoe", + "followers_url": "https://api.github.com/users/joaoe/followers", + "following_url": "https://api.github.com/users/joaoe/following{/other_user}", + "gists_url": "https://api.github.com/users/joaoe/gists{/gist_id}", + "starred_url": "https://api.github.com/users/joaoe/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/joaoe/subscriptions", + "organizations_url": "https://api.github.com/users/joaoe/orgs", + "repos_url": "https://api.github.com/users/joaoe/repos", + "events_url": "https://api.github.com/users/joaoe/events{/privacy}", + "received_events_url": "https://api.github.com/users/joaoe/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2018-11-20T12:22:45Z", + "updated_at": "2019-09-25T23:55:13Z", + "closed_at": "2019-09-25T23:55:13Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/473", + "html_url": "https://github.com/github-api/github-api/pull/473", + "diff_url": "https://github.com/github-api/github-api/pull/473.diff", + "patch_url": "https://github.com/github-api/github-api/pull/473.patch" + }, + "body": "`doArchive()` will mark a repository as archived.\r\n\r\nIssue #472" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/472", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/472/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/472/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/472/events", + "html_url": "https://github.com/github-api/github-api/issues/472", + "id": 382623408, + "node_id": "MDU6SXNzdWUzODI2MjM0MDg=", + "number": 472, + "title": "Implement archive/unarchive functionality", + "user": { + "login": "joaoe", + "id": 461983, + "node_id": "MDQ6VXNlcjQ2MTk4Mw==", + "avatar_url": "https://avatars3.githubusercontent.com/u/461983?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/joaoe", + "html_url": "https://github.com/joaoe", + "followers_url": "https://api.github.com/users/joaoe/followers", + "following_url": "https://api.github.com/users/joaoe/following{/other_user}", + "gists_url": "https://api.github.com/users/joaoe/gists{/gist_id}", + "starred_url": "https://api.github.com/users/joaoe/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/joaoe/subscriptions", + "organizations_url": "https://api.github.com/users/joaoe/orgs", + "repos_url": "https://api.github.com/users/joaoe/repos", + "events_url": "https://api.github.com/users/joaoe/events{/privacy}", + "received_events_url": "https://api.github.com/users/joaoe/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 8, + "created_at": "2018-11-20T11:37:36Z", + "updated_at": "2019-09-25T23:56:24Z", + "closed_at": "2019-09-25T23:56:24Z", + "author_association": "CONTRIBUTOR", + "body": "Howdy.\r\n\r\n`GHRepository` does not have an archive/unarchive feature.\r\n\r\nTo archive, a `GitHub.edit(\"archived\", \"true\")` call is enough.\r\n\r\nTo unarchive, it is not possible from the REST API and need to be done manually in the web UI.\r\n\r\nIn case someone wants to implement an unarchive API:\r\nsend a POST request to `https://github.com///settings/archive` or `https://github.com///settings/unarchive`. The POST body contains:\r\n`utf8=%E2%9C%93&authenticity_token=...&verify=`. The token `authenticity_token` is embedded in the HTML in the html form.\r\nThis will force to use a different set of URLs and scrape some HTML, so lets consider this out of scope." + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/470", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/470/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/470/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/470/events", + "html_url": "https://github.com/github-api/github-api/pull/470", + "id": 373857637, + "node_id": "MDExOlB1bGxSZXF1ZXN0MjI1Njg3ODU1", + "number": 470, + "title": "Added archived attribute in GHRepository", + "user": { + "login": "recena", + "id": 1021745, + "node_id": "MDQ6VXNlcjEwMjE3NDU=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1021745?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/recena", + "html_url": "https://github.com/recena", + "followers_url": "https://api.github.com/users/recena/followers", + "following_url": "https://api.github.com/users/recena/following{/other_user}", + "gists_url": "https://api.github.com/users/recena/gists{/gist_id}", + "starred_url": "https://api.github.com/users/recena/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/recena/subscriptions", + "organizations_url": "https://api.github.com/users/recena/orgs", + "repos_url": "https://api.github.com/users/recena/repos", + "events_url": "https://api.github.com/users/recena/events{/privacy}", + "received_events_url": "https://api.github.com/users/recena/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2018-10-25T09:35:39Z", + "updated_at": "2018-11-06T12:29:21Z", + "closed_at": "2018-10-29T15:28:01Z", + "author_association": "COLLABORATOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/470", + "html_url": "https://github.com/github-api/github-api/pull/470", + "diff_url": "https://github.com/github-api/github-api/pull/470.diff", + "patch_url": "https://github.com/github-api/github-api/pull/470.patch" + }, + "body": "- `archived` attribute was missed and can be interesting in many cases\r\n- Updated parent POM from [17 to 20](https://github.com/kohsuke/pom/compare/pom-17...pom-20)\r\n- Addressed a Apache Maven warning\r\n\r\n```\r\n[WARNING] \r\n[WARNING] Some problems were encountered while building the effective model for org.kohsuke:github-api:jar:1.95-SNAPSHOT\r\n[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-surefire-plugin is missing. @ line 37, column 15\r\n[WARNING] \r\n[WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.\r\n[WARNING] \r\n[WARNING] For this reason, future Maven versions might no longer support building such malformed projects.\r\n[WARNING] \r\n```\r\n\r\n@kohsuke, could you take a look? Thanks." + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/468", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/468/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/468/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/468/events", + "html_url": "https://github.com/github-api/github-api/pull/468", + "id": 372226450, + "node_id": "MDExOlB1bGxSZXF1ZXN0MjI0NDgzODY1", + "number": 468, + "title": "Fix memory leak.", + "user": { + "login": "KostyaSha", + "id": 231611, + "node_id": "MDQ6VXNlcjIzMTYxMQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/231611?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/KostyaSha", + "html_url": "https://github.com/KostyaSha", + "followers_url": "https://api.github.com/users/KostyaSha/followers", + "following_url": "https://api.github.com/users/KostyaSha/following{/other_user}", + "gists_url": "https://api.github.com/users/KostyaSha/gists{/gist_id}", + "starred_url": "https://api.github.com/users/KostyaSha/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/KostyaSha/subscriptions", + "organizations_url": "https://api.github.com/users/KostyaSha/orgs", + "repos_url": "https://api.github.com/users/KostyaSha/repos", + "events_url": "https://api.github.com/users/KostyaSha/events{/privacy}", + "received_events_url": "https://api.github.com/users/KostyaSha/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2018-10-20T16:10:20Z", + "updated_at": "2018-11-06T15:56:16Z", + "closed_at": "2018-11-06T15:56:16Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/468", + "html_url": "https://github.com/github-api/github-api/pull/468", + "diff_url": "https://github.com/github-api/github-api/pull/468.diff", + "patch_url": "https://github.com/github-api/github-api/pull/468.patch" + }, + "body": "While repository object is active and code requests commits they are stored in Map.\r\nGHCommit.files contains huge String[]/char[] amount of data.\r\nThe same could be applied to Milestones.\n\n\n---\nThis change is [\"Reviewable\"/](https://reviewable.io/reviews/kohsuke/github-api/468)\n\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/464", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/464/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/464/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/464/events", + "html_url": "https://github.com/github-api/github-api/pull/464", + "id": 369032760, + "node_id": "MDExOlB1bGxSZXF1ZXN0MjIyMDY3Njg2", + "number": 464, + "title": "add request reviewers as attribute of GHPullRequest", + "user": { + "login": "xeric", + "id": 190927, + "node_id": "MDQ6VXNlcjE5MDkyNw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/190927?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/xeric", + "html_url": "https://github.com/xeric", + "followers_url": "https://api.github.com/users/xeric/followers", + "following_url": "https://api.github.com/users/xeric/following{/other_user}", + "gists_url": "https://api.github.com/users/xeric/gists{/gist_id}", + "starred_url": "https://api.github.com/users/xeric/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/xeric/subscriptions", + "organizations_url": "https://api.github.com/users/xeric/orgs", + "repos_url": "https://api.github.com/users/xeric/repos", + "events_url": "https://api.github.com/users/xeric/events{/privacy}", + "received_events_url": "https://api.github.com/users/xeric/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2018-10-11T09:31:52Z", + "updated_at": "2018-11-06T15:49:36Z", + "closed_at": "2018-11-06T15:49:36Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/464", + "html_url": "https://github.com/github-api/github-api/pull/464", + "diff_url": "https://github.com/github-api/github-api/pull/464.diff", + "patch_url": "https://github.com/github-api/github-api/pull/464.patch" + }, + "body": "There's no request reviewers in GHPullRequest object, add it." + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/462", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/462/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/462/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/462/events", + "html_url": "https://github.com/github-api/github-api/pull/462", + "id": 367533312, + "node_id": "MDExOlB1bGxSZXF1ZXN0MjIwOTM0Njg5", + "number": 462, + "title": "Add archived flag for repository", + "user": { + "login": "ingwarsw", + "id": 5390156, + "node_id": "MDQ6VXNlcjUzOTAxNTY=", + "avatar_url": "https://avatars2.githubusercontent.com/u/5390156?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ingwarsw", + "html_url": "https://github.com/ingwarsw", + "followers_url": "https://api.github.com/users/ingwarsw/followers", + "following_url": "https://api.github.com/users/ingwarsw/following{/other_user}", + "gists_url": "https://api.github.com/users/ingwarsw/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ingwarsw/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ingwarsw/subscriptions", + "organizations_url": "https://api.github.com/users/ingwarsw/orgs", + "repos_url": "https://api.github.com/users/ingwarsw/repos", + "events_url": "https://api.github.com/users/ingwarsw/events{/privacy}", + "received_events_url": "https://api.github.com/users/ingwarsw/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2018-10-07T08:34:29Z", + "updated_at": "2018-11-10T11:32:32Z", + "closed_at": "2018-11-06T15:55:57Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/462", + "html_url": "https://github.com/github-api/github-api/pull/462", + "diff_url": "https://github.com/github-api/github-api/pull/462.diff", + "patch_url": "https://github.com/github-api/github-api/pull/462.patch" + }, + "body": "We have many repositories in our org that are archived..\r\nThat flag will allow us to skip them in processing.." + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/461", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/461/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/461/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/461/events", + "html_url": "https://github.com/github-api/github-api/pull/461", + "id": 365650610, + "node_id": "MDExOlB1bGxSZXF1ZXN0MjE5NTIxODQ0", + "number": 461, + "title": "Add methods for adding/removing labels to GHIssue", + "user": { + "login": "evenh", + "id": 2701536, + "node_id": "MDQ6VXNlcjI3MDE1MzY=", + "avatar_url": "https://avatars0.githubusercontent.com/u/2701536?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/evenh", + "html_url": "https://github.com/evenh", + "followers_url": "https://api.github.com/users/evenh/followers", + "following_url": "https://api.github.com/users/evenh/following{/other_user}", + "gists_url": "https://api.github.com/users/evenh/gists{/gist_id}", + "starred_url": "https://api.github.com/users/evenh/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/evenh/subscriptions", + "organizations_url": "https://api.github.com/users/evenh/orgs", + "repos_url": "https://api.github.com/users/evenh/repos", + "events_url": "https://api.github.com/users/evenh/events{/privacy}", + "received_events_url": "https://api.github.com/users/evenh/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2018-10-01T21:28:07Z", + "updated_at": "2018-11-06T16:18:29Z", + "closed_at": "2018-11-06T16:17:13Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/461", + "html_url": "https://github.com/github-api/github-api/pull/461", + "diff_url": "https://github.com/github-api/github-api/pull/461.diff", + "patch_url": "https://github.com/github-api/github-api/pull/461.patch" + }, + "body": "This PR adds the functionality required to add/remove labels individually from a `GHIssue` (implements #456). One thing I haven't quite understood yet, is how/whether the data in this object can be refreshed (e.g. after adding a label, I want to inspect the labels present for a given issue).\r\n\r\nI've never contributed to this project before, so please let me know if I have done something horribly wrong :-)" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/456", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/456/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/456/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/456/events", + "html_url": "https://github.com/github-api/github-api/issues/456", + "id": 362916530, + "node_id": "MDU6SXNzdWUzNjI5MTY1MzA=", + "number": 456, + "title": "Add ability to attach/detach issue label w/o side effects to other labels", + "user": { + "login": "basejumpa", + "id": 8762228, + "node_id": "MDQ6VXNlcjg3NjIyMjg=", + "avatar_url": "https://avatars3.githubusercontent.com/u/8762228?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/basejumpa", + "html_url": "https://github.com/basejumpa", + "followers_url": "https://api.github.com/users/basejumpa/followers", + "following_url": "https://api.github.com/users/basejumpa/following{/other_user}", + "gists_url": "https://api.github.com/users/basejumpa/gists{/gist_id}", + "starred_url": "https://api.github.com/users/basejumpa/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/basejumpa/subscriptions", + "organizations_url": "https://api.github.com/users/basejumpa/orgs", + "repos_url": "https://api.github.com/users/basejumpa/repos", + "events_url": "https://api.github.com/users/basejumpa/events{/privacy}", + "received_events_url": "https://api.github.com/users/basejumpa/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2018-09-23T05:58:33Z", + "updated_at": "2018-11-06T16:17:14Z", + "closed_at": "2018-11-06T16:17:13Z", + "author_association": "NONE", + "body": "Please improve usability for handling of issue labels. Current version `1.94`.\r\n\r\n### Current situation\r\nCurrently it is very tedious to attach or detach a single label and leave the other labels of the issue untouched. \r\n\r\nCurrention: Currently it is even *not possible*.\r\n\r\nIt is because `setLabels` affects the complete list of labels of the issue. \r\n\r\nThe procedure to attach a single label without side effects to possible other labels of the issue is\r\n* Use `getLabels` to retrieve collection of `GHLabel` objects\r\n* Create list of Strings from the collection\r\n* Add name of label to be attached to the list\r\n* Now `setLabels` needed to be used to apply the list to the issue. But the method offers variadic argument list only, cast not possible, data can not be conveyed.\r\n\r\nClass [`GHIssue`](http://github-api.kohsuke.org/apidocs/index.html) offers three methods for labels\r\n* `void setLabels(String... labels)`\r\n* `Collection | getLabels()`\r\n\r\n### Usecases\r\n* Attach a single label or a list of labels to an issue\r\n* Detach a single label or a list of labels to an issue\r\n\r\n\r\n\r\n### (Dirty) workaround\r\nThis is my workaround using in my groovy scripts currently:\r\n\r\n```\r\n// File kohsuke_github_workarounds.groovy\r\n// Use it with import kohsuke_github_workarounds\r\n\r\n@Grab(group='org.kohsuke', module='github-api', version='1.94')\r\nimport org.kohsuke.github.*\r\n\r\n// Works around https://github.com/kohsuke/github-api/issues/456 \r\nstatic void attachLabel (String token, GHIssue issue, String label_name) {\r\n def jsonString = \"[ \\\"$label_name\\\" ]\"\r\n def con = \"https://api.github.com${issue.getIssuesApiRoute()}/labels\".toURL().openConnection()\r\n con.setDoOutput(true)\r\n con.setDoInput(true)\r\n con.setRequestMethod(\"POST\")\r\n con.setRequestProperty(\"Authorization\", \"token $token\")\r\n con.setRequestProperty(\"Content-Type\", \"application/json\")\r\n con.outputStream.withWriter { writer ->\r\n writer << jsonString\r\n }\r\n String response = con.inputStream.withReader { Reader reader -> reader.text }\r\n}\r\n\r\n// Works around https://github.com/kohsuke/github-api/issues/456 \r\nstatic void detachLabel (String token, GHIssue issue, String label_name) {\r\n def con = \"https://api.github.com${issue.getIssuesApiRoute()}/labels/$label_name\".toURL().openConnection()\r\n con.setDoOutput(true)\r\n con.setDoInput(true)\r\n con.setRequestMethod(\"DELETE\")\r\n con.setRequestProperty(\"Authorization\", \"token $token\")\r\n con.setRequestProperty(\"Content-Type\", \"application/json\")\r\n con.connect()\r\n String response = con.inputStream.withReader { Reader reader -> reader.text }\r\n}\r\n```" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/454", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/454/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/454/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/454/events", + "html_url": "https://github.com/github-api/github-api/issues/454", + "id": 358392074, + "node_id": "MDU6SXNzdWUzNTgzOTIwNzQ=", + "number": 454, + "title": "[feature request] Add support to list commits that only affect a file path", + "user": { + "login": "higuaro", + "id": 2560573, + "node_id": "MDQ6VXNlcjI1NjA1NzM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/2560573?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/higuaro", + "html_url": "https://github.com/higuaro", + "followers_url": "https://api.github.com/users/higuaro/followers", + "following_url": "https://api.github.com/users/higuaro/following{/other_user}", + "gists_url": "https://api.github.com/users/higuaro/gists{/gist_id}", + "starred_url": "https://api.github.com/users/higuaro/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/higuaro/subscriptions", + "organizations_url": "https://api.github.com/users/higuaro/orgs", + "repos_url": "https://api.github.com/users/higuaro/repos", + "events_url": "https://api.github.com/users/higuaro/events{/privacy}", + "received_events_url": "https://api.github.com/users/higuaro/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2018-09-09T16:37:22Z", + "updated_at": "2018-09-09T16:42:44Z", + "closed_at": "2018-09-09T16:40:45Z", + "author_association": "NONE", + "body": "## Context\r\n\r\nThe GitHub API allows listing commits that only affect a file path:\r\n\r\nhttps://developer.github.com/v3/repos/commits/#list-commits-on-a-repository \r\n\r\nThis endpoint also allows further filtering using the `since` and `until` parameters:\r\n\r\n```bash\r\ncurl --include -H \"Authorization: token \" \\\r\n \"https://api.github.com/repos/USER/REPO/commits?path=/some/path.txt&since=2018-07-0100:00:00Z\"\r\n```\r\nNone of these are yet present in the library. Currently, listing commits is done thought the `listCommits` method, defined as:\r\n```java\r\npublic PagedIterable listCommits() { ... }\r\n```\r\nAnd can be used like:\r\n```java\r\nGitHub github = ...\r\nfor (GHCommit commit : github.getRepository(\"[some-repo]\").listCommits()) {\r\n // ...\r\n}\r\n``` \r\n## Request\r\nIdeally, something similar to the following is desireable: \r\n```java\r\npublic PagedIterable listCommits(String filePath, ZonedDateTime since, ZonedDateTime until) {\r\n```\r\nThat only lists commits within the specified date range that only affect the given file path." + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/451", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/451/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/451/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/451/events", + "html_url": "https://github.com/github-api/github-api/issues/451", + "id": 354016553, + "node_id": "MDU6SXNzdWUzNTQwMTY1NTM=", + "number": 451, + "title": "Attachment download from issues", + "user": { + "login": "c36x", + "id": 33650634, + "node_id": "MDQ6VXNlcjMzNjUwNjM0", + "avatar_url": "https://avatars1.githubusercontent.com/u/33650634?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/c36x", + "html_url": "https://github.com/c36x", + "followers_url": "https://api.github.com/users/c36x/followers", + "following_url": "https://api.github.com/users/c36x/following{/other_user}", + "gists_url": "https://api.github.com/users/c36x/gists{/gist_id}", + "starred_url": "https://api.github.com/users/c36x/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/c36x/subscriptions", + "organizations_url": "https://api.github.com/users/c36x/orgs", + "repos_url": "https://api.github.com/users/c36x/repos", + "events_url": "https://api.github.com/users/c36x/events{/privacy}", + "received_events_url": "https://api.github.com/users/c36x/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2018-08-25T14:26:53Z", + "updated_at": "2018-08-25T14:27:12Z", + "closed_at": "2018-08-25T14:27:12Z", + "author_association": "NONE", + "body": "I want to download attachments added to Github issue. \r\nUsually an attachment is added to in Issue into the body of the comment.\r\n\r\nMy problem is the GHIssueComment has a body as a String. So i can not get the attachments.\r\n\r\nI could see that the GHRepository has a method getBlob(String blobSha)\r\nBut I do not know that this is what i need, also i do not know the blobSha.\r\n\r\nHow could I get the attachments uploaded to issues?" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/449", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/449/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/449/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/449/events", + "html_url": "https://github.com/github-api/github-api/pull/449", + "id": 350162237, + "node_id": "MDExOlB1bGxSZXF1ZXN0MjA4MDc5Mzg4", + "number": 449, + "title": "Fix for issue #426. Fix null pointer when deleting refs.", + "user": { + "login": "martinvanzijl", + "id": 24422213, + "node_id": "MDQ6VXNlcjI0NDIyMjEz", + "avatar_url": "https://avatars0.githubusercontent.com/u/24422213?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/martinvanzijl", + "html_url": "https://github.com/martinvanzijl", + "followers_url": "https://api.github.com/users/martinvanzijl/followers", + "following_url": "https://api.github.com/users/martinvanzijl/following{/other_user}", + "gists_url": "https://api.github.com/users/martinvanzijl/gists{/gist_id}", + "starred_url": "https://api.github.com/users/martinvanzijl/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/martinvanzijl/subscriptions", + "organizations_url": "https://api.github.com/users/martinvanzijl/orgs", + "repos_url": "https://api.github.com/users/martinvanzijl/repos", + "events_url": "https://api.github.com/users/martinvanzijl/events{/privacy}", + "received_events_url": "https://api.github.com/users/martinvanzijl/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2018-08-13T19:31:15Z", + "updated_at": "2018-11-11T18:45:11Z", + "closed_at": "2018-08-30T03:21:09Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/449", + "html_url": "https://github.com/github-api/github-api/pull/449", + "diff_url": "https://github.com/github-api/github-api/pull/449.diff", + "patch_url": "https://github.com/github-api/github-api/pull/449.patch" + }, + "body": "Fix for issue #426. This assigns a root to the ref objects, avoiding the null pointer exception." + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/447", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/447/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/447/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/447/events", + "html_url": "https://github.com/github-api/github-api/issues/447", + "id": 346355382, + "node_id": "MDU6SXNzdWUzNDYzNTUzODI=", + "number": 447, + "title": "Rate limit - catch the exception", + "user": { + "login": "pkasson", + "id": 3072247, + "node_id": "MDQ6VXNlcjMwNzIyNDc=", + "avatar_url": "https://avatars1.githubusercontent.com/u/3072247?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/pkasson", + "html_url": "https://github.com/pkasson", + "followers_url": "https://api.github.com/users/pkasson/followers", + "following_url": "https://api.github.com/users/pkasson/following{/other_user}", + "gists_url": "https://api.github.com/users/pkasson/gists{/gist_id}", + "starred_url": "https://api.github.com/users/pkasson/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/pkasson/subscriptions", + "organizations_url": "https://api.github.com/users/pkasson/orgs", + "repos_url": "https://api.github.com/users/pkasson/repos", + "events_url": "https://api.github.com/users/pkasson/events{/privacy}", + "received_events_url": "https://api.github.com/users/pkasson/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 3, + "created_at": "2018-07-31T20:57:51Z", + "updated_at": "2018-08-30T14:56:51Z", + "closed_at": "2018-08-30T14:56:51Z", + "author_association": "NONE", + "body": "I don't see an obvious way to catch the process (when iterating repos from a search) to catch when a rate limit has been hit, to gracefully shutdown. Is there a way to catch this \"error\" ?\r\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/446", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/446/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/446/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/446/events", + "html_url": "https://github.com/github-api/github-api/pull/446", + "id": 341839698, + "node_id": "MDExOlB1bGxSZXF1ZXN0MjAxODc5NDAz", + "number": 446, + "title": "Fix pagination for APIs that supported it ad hoc", + "user": { + "login": "daniel-beck", + "id": 1831569, + "node_id": "MDQ6VXNlcjE4MzE1Njk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1831569?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/daniel-beck", + "html_url": "https://github.com/daniel-beck", + "followers_url": "https://api.github.com/users/daniel-beck/followers", + "following_url": "https://api.github.com/users/daniel-beck/following{/other_user}", + "gists_url": "https://api.github.com/users/daniel-beck/gists{/gist_id}", + "starred_url": "https://api.github.com/users/daniel-beck/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/daniel-beck/subscriptions", + "organizations_url": "https://api.github.com/users/daniel-beck/orgs", + "repos_url": "https://api.github.com/users/daniel-beck/repos", + "events_url": "https://api.github.com/users/daniel-beck/events{/privacy}", + "received_events_url": "https://api.github.com/users/daniel-beck/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2018-07-17T09:33:32Z", + "updated_at": "2018-08-30T03:20:53Z", + "closed_at": "2018-08-30T03:20:53Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/446", + "html_url": "https://github.com/github-api/github-api/pull/446", + "diff_url": "https://github.com/github-api/github-api/pull/446.diff", + "patch_url": "https://github.com/github-api/github-api/pull/446.patch" + }, + "body": "This apparently broke in github-api 1.72 due to new args shadowing `final int pageSize` e.g. at https://github.com/kohsuke/github-api/commit/dbddf5b9eb500221a4c6be1e523a138de74261c4#diff-0fdf88c5f013313a4d3b752c6ed0d3d4R247, so it's always the default of 0/30.\r\n\r\nWorkaround: `listRepositories().withPageSize(…)`.\r\n\r\n100% untested. All I know is that this compiles when skipping tests.\r\n\r\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/443", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/443/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/443/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/443/events", + "html_url": "https://github.com/github-api/github-api/pull/443", + "id": 337280725, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTk4NTE3ODQ4", + "number": 443, + "title": "Adds the GHEventPayload.Issue class", + "user": { + "login": "Arrow768", + "id": 1331699, + "node_id": "MDQ6VXNlcjEzMzE2OTk=", + "avatar_url": "https://avatars0.githubusercontent.com/u/1331699?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Arrow768", + "html_url": "https://github.com/Arrow768", + "followers_url": "https://api.github.com/users/Arrow768/followers", + "following_url": "https://api.github.com/users/Arrow768/following{/other_user}", + "gists_url": "https://api.github.com/users/Arrow768/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Arrow768/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Arrow768/subscriptions", + "organizations_url": "https://api.github.com/users/Arrow768/orgs", + "repos_url": "https://api.github.com/users/Arrow768/repos", + "events_url": "https://api.github.com/users/Arrow768/events{/privacy}", + "received_events_url": "https://api.github.com/users/Arrow768/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2018-07-01T10:32:02Z", + "updated_at": "2018-08-30T03:20:27Z", + "closed_at": "2018-08-30T03:20:27Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/443", + "html_url": "https://github.com/github-api/github-api/pull/443", + "diff_url": "https://github.com/github-api/github-api/pull/443.diff", + "patch_url": "https://github.com/github-api/github-api/pull/443.patch" + }, + "body": "Adds the GHEventPayload.Issue class and adds some basic tests for it (mostly the ones from IssueComment).\r\n\r\nFixes #442" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/442", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/442/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/442/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/442/events", + "html_url": "https://github.com/github-api/github-api/issues/442", + "id": 337279288, + "node_id": "MDU6SXNzdWUzMzcyNzkyODg=", + "number": 442, + "title": "GHEventPayload.Issue", + "user": { + "login": "Arrow768", + "id": 1331699, + "node_id": "MDQ6VXNlcjEzMzE2OTk=", + "avatar_url": "https://avatars0.githubusercontent.com/u/1331699?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Arrow768", + "html_url": "https://github.com/Arrow768", + "followers_url": "https://api.github.com/users/Arrow768/followers", + "following_url": "https://api.github.com/users/Arrow768/following{/other_user}", + "gists_url": "https://api.github.com/users/Arrow768/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Arrow768/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Arrow768/subscriptions", + "organizations_url": "https://api.github.com/users/Arrow768/orgs", + "repos_url": "https://api.github.com/users/Arrow768/repos", + "events_url": "https://api.github.com/users/Arrow768/events{/privacy}", + "received_events_url": "https://api.github.com/users/Arrow768/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2018-07-01T10:06:40Z", + "updated_at": "2018-08-30T03:20:27Z", + "closed_at": "2018-08-30T03:20:27Z", + "author_association": "CONTRIBUTOR", + "body": "I am trying to process the the milestoned and unmilestoned event for pull requests.\r\nHowever I have noticed that github sends those events as issue events and not as pull request events.\r\n\r\nMy expectation would be that there is a GHEventPayload.Issue class that can process issue updates sent via the webhook." + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/441", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/441/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/441/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/441/events", + "html_url": "https://github.com/github-api/github-api/pull/441", + "id": 331808914, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTk0NDQ4NzI1", + "number": 441, + "title": "support update content through createContent, passing sha of existing file", + "user": { + "login": "shirdoo", + "id": 30700223, + "node_id": "MDQ6VXNlcjMwNzAwMjIz", + "avatar_url": "https://avatars3.githubusercontent.com/u/30700223?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/shirdoo", + "html_url": "https://github.com/shirdoo", + "followers_url": "https://api.github.com/users/shirdoo/followers", + "following_url": "https://api.github.com/users/shirdoo/following{/other_user}", + "gists_url": "https://api.github.com/users/shirdoo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/shirdoo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/shirdoo/subscriptions", + "organizations_url": "https://api.github.com/users/shirdoo/orgs", + "repos_url": "https://api.github.com/users/shirdoo/repos", + "events_url": "https://api.github.com/users/shirdoo/events{/privacy}", + "received_events_url": "https://api.github.com/users/shirdoo/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2018-06-13T01:28:33Z", + "updated_at": "2019-04-24T16:05:54Z", + "closed_at": "2018-08-30T02:06:39Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/441", + "html_url": "https://github.com/github-api/github-api/pull/441", + "diff_url": "https://github.com/github-api/github-api/pull/441.diff", + "patch_url": "https://github.com/github-api/github-api/pull/441.patch" + }, + "body": "Following up from https://github.com/kohsuke/github-api/pull/424" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/__files/repositories_617210_issues-ddbca5ee-6c30-447d-8667-8c29c151e6d5.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/__files/repositories_617210_issues-ddbca5ee-6c30-447d-8667-8c29c151e6d5.json new file mode 100644 index 0000000000..54a533ebba --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/__files/repositories_617210_issues-ddbca5ee-6c30-447d-8667-8c29c151e6d5.json @@ -0,0 +1,1412 @@ +[ + { + "url": "https://api.github.com/repos/github-api/github-api/issues/332", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/332/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/332/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/332/events", + "html_url": "https://github.com/github-api/github-api/pull/332", + "id": 202508206, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTAyNzAwMTkw", + "number": 332, + "title": "Fix a bug in the Javadocs (due to copy and paste)", + "user": { + "login": "sebkur", + "id": 1633488, + "node_id": "MDQ6VXNlcjE2MzM0ODg=", + "avatar_url": "https://avatars1.githubusercontent.com/u/1633488?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/sebkur", + "html_url": "https://github.com/sebkur", + "followers_url": "https://api.github.com/users/sebkur/followers", + "following_url": "https://api.github.com/users/sebkur/following{/other_user}", + "gists_url": "https://api.github.com/users/sebkur/gists{/gist_id}", + "starred_url": "https://api.github.com/users/sebkur/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/sebkur/subscriptions", + "organizations_url": "https://api.github.com/users/sebkur/orgs", + "repos_url": "https://api.github.com/users/sebkur/repos", + "events_url": "https://api.github.com/users/sebkur/events{/privacy}", + "received_events_url": "https://api.github.com/users/sebkur/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2017-01-23T11:22:47Z", + "updated_at": "2017-09-08T17:39:59Z", + "closed_at": "2017-09-08T17:39:59Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/332", + "html_url": "https://github.com/github-api/github-api/pull/332", + "diff_url": "https://github.com/github-api/github-api/pull/332.diff", + "patch_url": "https://github.com/github-api/github-api/pull/332.patch" + }, + "body": "I found a typo in the Javadocs (looks like the comment has been copied along with the method but has not been updated after the method itself has been adapted)" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/331", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/331/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/331/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/331/events", + "html_url": "https://github.com/github-api/github-api/pull/331", + "id": 202201305, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTAyNTA2NDA0", + "number": 331, + "title": "add ability to utilitize the \"edit a release\" api via update() method", + "user": { + "login": "jeffnelson", + "id": 15911380, + "node_id": "MDQ6VXNlcjE1OTExMzgw", + "avatar_url": "https://avatars2.githubusercontent.com/u/15911380?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jeffnelson", + "html_url": "https://github.com/jeffnelson", + "followers_url": "https://api.github.com/users/jeffnelson/followers", + "following_url": "https://api.github.com/users/jeffnelson/following{/other_user}", + "gists_url": "https://api.github.com/users/jeffnelson/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jeffnelson/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jeffnelson/subscriptions", + "organizations_url": "https://api.github.com/users/jeffnelson/orgs", + "repos_url": "https://api.github.com/users/jeffnelson/repos", + "events_url": "https://api.github.com/users/jeffnelson/events{/privacy}", + "received_events_url": "https://api.github.com/users/jeffnelson/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2017-01-20T17:47:12Z", + "updated_at": "2017-09-09T19:31:29Z", + "closed_at": "2017-09-09T19:31:29Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/331", + "html_url": "https://github.com/github-api/github-api/pull/331", + "diff_url": "https://github.com/github-api/github-api/pull/331.diff", + "patch_url": "https://github.com/github-api/github-api/pull/331.patch" + }, + "body": "" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/329", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/329/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/329/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/329/events", + "html_url": "https://github.com/github-api/github-api/pull/329", + "id": 199781219, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTAwODQ0MzM5", + "number": 329, + "title": "Correct algebra in #327", + "user": { + "login": "stephenc", + "id": 209336, + "node_id": "MDQ6VXNlcjIwOTMzNg==", + "avatar_url": "https://avatars2.githubusercontent.com/u/209336?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/stephenc", + "html_url": "https://github.com/stephenc", + "followers_url": "https://api.github.com/users/stephenc/followers", + "following_url": "https://api.github.com/users/stephenc/following{/other_user}", + "gists_url": "https://api.github.com/users/stephenc/gists{/gist_id}", + "starred_url": "https://api.github.com/users/stephenc/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/stephenc/subscriptions", + "organizations_url": "https://api.github.com/users/stephenc/orgs", + "repos_url": "https://api.github.com/users/stephenc/repos", + "events_url": "https://api.github.com/users/stephenc/events{/privacy}", + "received_events_url": "https://api.github.com/users/stephenc/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 3, + "created_at": "2017-01-10T10:15:15Z", + "updated_at": "2017-11-01T15:50:07Z", + "closed_at": "2017-01-17T02:31:34Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/329", + "html_url": "https://github.com/github-api/github-api/pull/329", + "diff_url": "https://github.com/github-api/github-api/pull/329.diff", + "patch_url": "https://github.com/github-api/github-api/pull/329.patch" + }, + "body": "" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/328", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/328/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/328/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/328/events", + "html_url": "https://github.com/github-api/github-api/issues/328", + "id": 198980914, + "node_id": "MDU6SXNzdWUxOTg5ODA5MTQ=", + "number": 328, + "title": "Webhook creation response error", + "user": { + "login": "dieffrei", + "id": 3090010, + "node_id": "MDQ6VXNlcjMwOTAwMTA=", + "avatar_url": "https://avatars0.githubusercontent.com/u/3090010?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dieffrei", + "html_url": "https://github.com/dieffrei", + "followers_url": "https://api.github.com/users/dieffrei/followers", + "following_url": "https://api.github.com/users/dieffrei/following{/other_user}", + "gists_url": "https://api.github.com/users/dieffrei/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dieffrei/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dieffrei/subscriptions", + "organizations_url": "https://api.github.com/users/dieffrei/orgs", + "repos_url": "https://api.github.com/users/dieffrei/repos", + "events_url": "https://api.github.com/users/dieffrei/events{/privacy}", + "received_events_url": "https://api.github.com/users/dieffrei/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2017-01-05T15:23:12Z", + "updated_at": "2017-01-08T18:45:12Z", + "closed_at": "2017-01-08T18:45:12Z", + "author_association": "NONE", + "body": "Executing github.getRepository(\"user/repo\").createWebHook(new URL(\"someurl...\"));\r\nWebhook was created but a exception is throwed:\r\n\r\n2017-01-05T15:17:11.974971+00:00 app[web.1]: com.fasterxml.jackson.core.JsonParseException: Unrecognized token 'payload': was expecting ('true', 'false' or 'null')\r\n2017-01-05T15:17:11.975129+00:00 app[web.1]: at [Source: payload=%7B%22zen%22%3A%22Non-blocking+is+better+than+blocking.%22%2C%22hook_id%22%3A11405663%2C%22hook%22%3A%7B%22type%22%3A%22Repository%22%2C%22id%22%3A11405663%2C%22name%22%3A%22web%22%2C%22active%22%3Atrue%2C%22events%22%3A%5B%22push%22%5D%2C%22config%22%3A%7B%22url%22%3A%22https%3A%2F%2Fmorning-crag-16002.herokuapp.com%2Fapplication%2Fgithub%2Fwebhooks%22%7D%2C%22updated_at%22%3A%222017-01-05T15%3A17%3A11Z%22%2C%22created_at%22%3A%222017-01-05T15%3A17%3A11Z%22%2C%22url%22%3A%22https%3A%2F%2Fapi.github.com%2Frepos%2Fdieffrei%2Ffflib-apex-common%2Fhooks%2F11405663%22%2C%22test_url%22%3A%22https%3A%2F%2Fapi.github.com%2Frepos%2Fdieffrei%2Ffflib-apex-common%2Fhooks%2F11405663%2Ftest%22%2C%22ping_url%22%3A%22https%3A%2F%2Fapi.github.com%2Frepos%2Fdieffrei%2Ffflib-apex-common%2Fhooks%2F11405663%2Fpings%22%2C%22last_response%22%3A%7B%22code%22%3Anull%2C%22status%22%3A%22unused%22%2C%22message%22%3Anull%7D%7D%2C%22repository%22%3A%7B%22id%22%3A77337343%2C%22name%22%3A%22fflib-apex-common%22%2C%22full_name%22%3A%22dieffrei%2Ffflib-apex-common%22%2C%22owner%22%3A%7B%22login%22%3A%22dieffrei%22%2C%22id%22%3A3090010%2C%22avatar_url%22%3A%22https%3A%2F%2Favatars.githubusercontent.com%2Fu%2F3090010%3Fv%3D3%22%2C%22gravatar_id%22%3A%22%22%2C%22url%22%3A%22https%3A%2F%2Fapi.github.com%2Fusers%2Fdieffrei%22%2C%22html_url%22%3A%22https%3A%2F%2Fgithub.com%2Fdieffrei%22%2C%22followers_url%22%3A%22https%3A%2F%2Fapi.github.com%2Fusers%2Fdieffrei%2Ffollowers%22%2C%22following_url%22%3A%22https%3A%2F%2Fapi.github.com%2Fusers%2Fdieffrei%2Ffollowing%7B%2Fother_user%7D%22%2C%22gists_url%22%3A%22https%3A%2F%2Fapi.github.com%2Fusers%2Fdieffrei%2Fgists%7B%2Fgist_id%7D%22%2C%22starred_url%22%3A%22https%3A%2F%2Fapi.github.com%2Fusers%2Fdieffrei%2Fstarred%7B%2Fowner%7D%7B%2Frepo%7D%22%2C%22subscriptions_url%22%3A%22https%3A%2F%2Fapi.github.com%2Fusers%2Fdieffrei%2Fsubscriptions%22%2C%22organizations_url%22%3A%22https%3A%2F%2Fapi.github.com%2Fusers%2Fdieffrei%2Forgs%22%2C%22repos_url%22%3A%22https%3A%2F%2Fapi.github.com%2Fusers%2Fdieffrei%2Frepos%22%2C%22events_url%22%3A%22https%3A%2F%2Fapi.github.com%2Fusers%2Fdieffrei%2Fevents%7B%2Fprivacy%7D%22%2C%22received_events_url%22%3A%22https%3A%2F%2Fapi.github.com%2Fusers%2Fdieffrei%2Freceived_events%22%2C%22type%22%3A%22User%22%2C%22site_admin%22%3Afalse%7D%2C%22private%22%3Afalse%2C%22html_url%22%3A%22https%3A%2F%2Fgithub.com%2Fdieffrei%2Ffflib-apex-common%22%2C%22description%22%3A%22Common+Apex+Library+supporting+Apex+Enterprise+Patterns+and+much+more%21%22%2C%22fork%22%3Atrue%2C%22url%22%3A%22https%3A%2F%2Fapi.github.com%2Frepos%2Fdieffrei%2Ffflib-apex-common%22%2C%22forks_url%22%3A%22https%3A%2F%2Fapi.github.com%2Frepos%2Fdieffrei%2Ffflib-apex-common%2Fforks%22%2C%22keys_url%22%3A%22https%3A%2F%2Fapi.github.com%2Frepos%2Fdieffrei%2Ffflib-apex-common%2Fkeys%7B%2Fkey_id%7D%22%2C%22collaborators_url%22%3A%22https%3A%2F%2Fapi.github.com%2Frepos%2Fdieffrei%2Ffflib-apex-common%2Fcollaborators%7B%2Fcollaborator%7D%22%2C%22teams_url%22%3A%22https%3A%2F%2Fapi.github.com%2Frepos%2Fdieffrei%2Ffflib-apex-common%2Fteams%22%2C%22hooks_url%22%3A%22https%3A%2F%2Fapi.github.com%2Frepos%2Fdieffrei%2Ffflib-apex-common%2Fhooks%22%2C%22issue_events_url%22%3A%22https%3A%2F%2Fapi.github.com%2Frepos%2Fdieffrei%2Ffflib-apex-common%2Fissues%2Fevents%7B%2Fnumber%7D%22%2C%22events_url%22%3A%22https%3A%2F%2Fapi.github.com%2Frepos%2Fdieffrei%2Ffflib-apex-common%2Fevents%22%2C%22assignees_url%22%3A%22https%3A%2F%2Fapi.github.com%2Frepos%2Fdieffrei%2Ffflib-apex-common%2Fassignees%7B%2Fuser%7D%22%2C%22branches_url%22%3A%22https%3A%2F%2Fapi.github.com%2Frepos%2Fdieffrei%2Ffflib-apex-common%2Fbranches%7B%2Fbranch%7D%22%2C%22tags_url%22%3A%22https%3A%2F%2Fapi.github.com%2Frepos%2Fdieffrei%2Ffflib-apex-common%2Ftags%22%2C%22blobs_url%22%3A%22https%3A%2F%2Fapi.github.com%2Frepos%2Fdieffrei%2Ffflib-apex-common%2Fgit%2Fblobs%7B%2Fsha%7D%22%2C%22git_tags_url%22%3A%22https%3A%2F%2Fapi.github.com%2Frepos%2Fdieffrei%2Ffflib-apex-common%2Fgit%2Ftags%7B%2Fsha%7D%22%2C%22git_refs_url%22%3A%22https%3A%2F%2Fapi.github.com%2Frepos%2Fdieffrei%2Ffflib-apex-common%2Fgit%2Frefs%7B%2Fsha%7D%22%2C%22trees_url%22%3A%22https%3A%2F%2Fapi.github.com%2Frepos%2Fdieffrei%2Ffflib-apex-common%2Fgit%2Ftrees%7B%2Fsha%7D%22%2C%22statuses_url%22%3A%22https%3A%2F%2Fapi.github.com%2Frepos%2Fdieffrei%2Ffflib-apex-common%2Fstatuses%2F%7Bsha%7D%22%2C%22languages_url%22%3A%22https%3A%2F%2Fapi.github.com%2Frepos%2Fdieffrei%2Ffflib-apex-common%2Flanguages%22%2C%22stargazers_url%22%3A%22https%3A%2F%2Fapi.github.com%2Frepos%2Fdieffrei%2Ffflib-apex-common%2Fstargazers%22%2C%22contributors_url%22%3A%22https%3A%2F%2Fapi.github.com%2Frepos%2Fdieffrei%2Ffflib-apex-common%2Fcontributors%22%2C%22subscribers_url%22%3A%22https%3A%2F%2Fapi.github.com%2Frepos%2Fdieffrei%2Ffflib-apex-common%2Fsubscribers%22%2C%22subscription_url%22%3A%22https%3A%2F%2Fapi.github.com%2Frepos%2Fdieffrei%2Ffflib-apex-common%2Fsubscription%22%2C%22commits_url%22%3A%22https%3A%2F%2Fapi.github.com%2Frepos%2Fdieffrei%2Ffflib-apex-common%2Fcommits%7B%2Fsha%7D%22%2C%22git_commits_url%22%3A%22https%3A%2F%2Fapi.github.com%2Frepos%2Fdieffrei%2Ffflib-apex-common%2Fgit%2Fcommits%7B%2Fsha%7D%22%2C%22comments_url%22%3A%22https%3A%2F%2Fapi.github.com%2Frepos%2Fdieffrei%2Ffflib-apex-common%2Fcomments%7B%2Fnumber%7D%22%2C%22issue_comment_url%22%3A%22https%3A%2F%2Fapi.github.com%2Frepos%2Fdieffrei%2Ffflib-apex-common%2Fissues%2Fcomments%7B%2Fnumber%7D%22%2C%22contents_url%22%3A%22https%3A%2F%2Fapi.github.com%2Frepos%2Fdieffrei%2Ffflib-apex-common%2Fcontents%2F%7B%2Bpath%7D%22%2C%22compare_url%22%3A%22https%3A%2F%2Fapi.github.com%2Frepos%2Fdieffrei%2Ffflib-apex-common%2Fcompare%2F%7Bbase%7D...%7Bhead%7D%22%2C%22merges_url%22%3A%22https%3A%2F%2Fapi.github.com%2Frepos%2Fdieffrei%2Ffflib-apex-common%2Fmerges%22%2C%22archive_url%22%3A%22https%3A%2F%2Fapi.github.com%2Frepos%2Fdieffrei%2Ffflib-apex-common%2F%7Barchive_format%7D%7B%2Fref%7D%22%2C%22downloads_url%22%3A%22https%3A%2F%2Fapi.github.com%2Frepos%2Fdieffrei%2Ffflib-apex-common%2Fdownloads%22%2C%22issues_url%22%3A%22https%3A%2F%2Fapi.github.com%2Frepos%2Fdieffrei%2Ffflib-apex-common%2Fissues%7B%2Fnumber%7D%22%2C%22pulls_url%22%3A%22https%3A%2F%2Fapi.github.com%2Frepos%2Fdieffrei%2Ffflib-apex-common%2Fpulls%7B%2Fnumber%7D%22%2C%22milestones_url%22%3A%22https%3A%2F%2Fapi.github.com%2Frepos%2Fdieffrei%2Ffflib-apex-common%2Fmilestones%7B%2Fnumber%7D%22%2C%22notifications_url%22%3A%22https%3A%2F%2Fapi.github.com%2Frepos%2Fdieffrei%2Ffflib-apex-common%2Fnotifications%7B%3Fsince%2Call%2Cparticipating%7D%22%2C%22labels_url%22%3A%22https%3A%2F%2Fapi.github.com%2Frepos%2Fdieffrei%2Ffflib-apex-common%2Flabels%7B%2Fname%7D%22%2C%22releases_url%22%3A%22https%3A%2F%2Fapi.github.com%2Frepos%2Fdieffrei%2Ffflib-apex-common%2Freleases%7B%2Fid%7D%22%2C%22deployments_url%22%3A%22https%3A%2F%2Fapi.github.com%2Frepos%2Fdieffrei%2Ffflib-apex-common%2Fdeployments%22%2C%22created_at%22%3A%222016-12-25T18%3A07%3A36Z%22%2C%22updated_at%22%3A%222016-12-25T18%3A07%3A39Z%22%2C%22pushed_at%22%3A%222016-12-26T12%3A28%3A45Z%22%2C%22git_url%22%3A%22git%3A%2F%2Fgithub.com%2Fdieffrei%2Ffflib-apex-common.git%22%2C%22ssh_url%22%3A%22git%40github.com%3Adieffrei%2Ffflib-apex-common.git%22%2C%22clone_url%22%3A%22https%3A%2F%2Fgithub.com%2Fdieffrei%2Ffflib-apex-common.git%22%2C%22svn_url%22%3A%22https%3A%2F%2Fgithub.com%2Fdieffrei%2Ffflib-apex-common%22%2C%22homepage%22%3A%22%22%2C%22size%22%3A19892%2C%22stargazers_count%22%3A0%2C%22watchers_count%22%3A0%2C%22language%22%3A%22Apex%22%2C%22has_issues%22%3Afalse%2C%22has_downloads%22%3Atrue%2C%22has_wiki%22%3Atrue%2C%22has_pages%22%3Afalse%2C%22forks_count%22%3A0%2C%22mirror_url%22%3Anull%2C%22open_issues_count%22%3A1%2C%22forks%22%3A0%2C%22open_issues%22%3A1%2C%22watchers%22%3A0%2C%22default_branch%22%3A%22master%22%7D%2C%22sender%22%3A%7B%22login%22%3A%22dieffrei%22%2C%22id%22%3A3090010%2C%22avatar_url%22%3A%22https%3A%2F%2Favatars.githubusercontent.com%2Fu%2F3090010%3Fv%3D3%22%2C%22gravatar_id%22%3A%22%22%2C%22url%22%3A%22https%3A%2F%2Fapi.github.com%2Fusers%2Fdieffrei%22%2C%22html_url%22%3A%22https%3A%2F%2Fgithub.com%2Fdieffrei%22%2C%22followers_url%22%3A%22https%3A%2F%2Fapi.github.com%2Fusers%2Fdieffrei%2Ffollowers%22%2C%22following_url%22%3A%22https%3A%2F%2Fapi.github.com%2Fusers%2Fdieffrei%2Ffollowing%7B%2Fother_user%7D%22%2C%22gists_url%22%3A%22https%3A%2F%2Fapi.github.com%2Fusers%2Fdieffrei%2Fgists%7B%2Fgist_id%7D%22%2C%22starred_url%22%3A%22https%3A%2F%2Fapi.github.com%2Fusers%2Fdieffrei%2Fstarred%7B%2Fowner%7D%7B%2Frepo%7D%22%2C%22subscriptions_url%22%3A%22https%3A%2F%2Fapi.github.com%2Fusers%2Fdieffrei%2Fsubscriptions%22%2C%22organizations_url%22%3A%22https%3A%2F%2Fapi.github.com%2Fusers%2Fdieffrei%2Forgs%22%2C%22repos_url%22%3A%22https%3A%2F%2Fapi.github.com%2Fusers%2Fdieffrei%2Frepos%22%2C%22events_url%22%3A%22https%3A%2F%2Fapi.github.com%2Fusers%2Fdieffrei%2Fevents%7B%2Fprivacy%7D%22%2C%22received_events_url%22%3A%22https%3A%2F%2Fapi.github.com%2Fusers%2Fdieffrei%2Freceived_events%22%2C%22type%22%3A%22User%22%2C%22site_admin%22%3Afalse%7D%7D; line: 1, column: 8]\r\n2017-01-05T15:17:11.975376+00:00 app[web.1]: \tat com.fasterxml.jackson.core.JsonParser._constructError(JsonParser.java:1702)\r\n2017-01-05T15:17:11.975497+00:00 app[web.1]: \tat com.fasterxml.jackson.core.base.ParserMinimalBase._reportError(ParserMinimalBase.java:558)\r\n2017-01-05T15:17:11.975595+00:00 app[web.1]: \tat com.fasterxml.jackson.core.json.ReaderBasedJsonParser._reportInvalidToken(ReaderBasedJsonParser.java:2836)\r\n2017-01-05T15:17:11.975651+00:00 app[web.1]: \tat com.fasterxml.jackson.core.json.ReaderBasedJsonParser._handleOddValue(ReaderBasedJsonParser.java:1899)\r\n2017-01-05T15:17:11.975717+00:00 app[web.1]: \tat com.fasterxml.jackson.core.json.ReaderBasedJsonParser.nextToken(ReaderBasedJsonParser.java:749)\r\n2017-01-05T15:17:11.975791+00:00 app[web.1]: \tat com.fasterxml.jackson.databind.ObjectMapper._initForReading(ObjectMapper.java:3825)\r\n2017-01-05T15:17:11.975843+00:00 app[web.1]: \tat com.fasterxml.jackson.databind.ObjectMapper._readMapAndClose(ObjectMapper.java:3774)\r\n2017-01-05T15:17:11.975926+00:00 app[web.1]: \tat com.fasterxml.jackson.databind.ObjectMapper.readValue(ObjectMapper.java:2833)\r\n2017-01-05T15:17:11.975981+00:00 app[web.1]: \tat com.heroku.devcenter.GithubWebhookController.greeting(GithubWebhookController.java:26)\r\n2017-01-05T15:17:11.976065+00:00 app[web.1]: \tat sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\r\n2017-01-05T15:17:11.976126+00:00 app[web.1]: \tat sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\r\n2017-01-05T15:17:11.976184+00:00 app[web.1]: \tat sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n2017-01-05T15:17:11.976265+00:00 app[web.1]: \tat java.lang.reflect.Method.invoke(Method.java:498)\r\n2017-01-05T15:17:11.976337+00:00 app[web.1]: \tat org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:220)\r\n2017-01-05T15:17:11.976422+00:00 app[web.1]: \tat org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:134)\r\n2017-01-05T15:17:11.976483+00:00 app[web.1]: \tat org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:116)\r\n2017-01-05T15:17:11.976537+00:00 app[web.1]: \tat org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:827)\r\n2017-01-05T15:17:11.976623+00:00 app[web.1]: \tat org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:738)\r\n2017-01-05T15:17:11.976688+00:00 app[web.1]: \tat org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:85)\r\n2017-01-05T15:17:11.976787+00:00 app[web.1]: \tat org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:963)\r\n2017-01-05T15:17:11.976853+00:00 app[web.1]: \tat org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:897)\r\n2017-01-05T15:17:11.976957+00:00 app[web.1]: \tat org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)\r\n2017-01-05T15:17:11.977108+00:00 app[web.1]: \tat org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:872)\r\n2017-01-05T15:17:11.977153+00:00 app[web.1]: \tat javax.servlet.http.HttpServlet.service(HttpServlet.java:646)\r\n2017-01-05T15:17:11.977205+00:00 app[web.1]: \tat org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)\r\n2017-01-05T15:17:11.977311+00:00 app[web.1]: \tat javax.servlet.http.HttpServlet.service(HttpServlet.java:727)\r\n2017-01-05T15:17:11.977361+00:00 app[web.1]: \tat org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:303)\r\n2017-01-05T15:17:11.977449+00:00 app[web.1]: \tat org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)\r\n2017-01-05T15:17:11.977504+00:00 app[web.1]: \tat org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:220)\r\n2017-01-05T15:17:11.977592+00:00 app[web.1]: \tat org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:122)\r\n2017-01-05T15:17:11.977659+00:00 app[web.1]: \tat org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:503)\r\n2017-01-05T15:17:11.977706+00:00 app[web.1]: \tat org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:170)\r\n2017-01-05T15:17:11.977792+00:00 app[web.1]: \tat org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:103)\r\n2017-01-05T15:17:11.977836+00:00 app[web.1]: \tat org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:116)\r\n2017-01-05T15:17:11.977927+00:00 app[web.1]: \tat org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:421)\r\n2017-01-05T15:17:11.977984+00:00 app[web.1]: \tat org.apache.coyote.http11.AbstractHttp11Processor.process(AbstractHttp11Processor.java:1070)\r\n2017-01-05T15:17:11.978051+00:00 app[web.1]: \tat org.apache.coyote.AbstractProtocol$AbstractConnectionHandler.process(AbstractProtocol.java:611)\r\n2017-01-05T15:17:11.978136+00:00 app[web.1]: \tat org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1736)\r\n2017-01-05T15:17:11.978289+00:00 app[web.1]: \tat org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.run(NioEndpoint.java:1695)\r\n2017-01-05T15:17:11.978353+00:00 app[web.1]: \tat java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)\r\n2017-01-05T15:17:11.978551+00:00 app[web.1]: \tat java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)\r\n2017-01-05T15:17:11.978708+00:00 app[web.1]: \tat org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)\r\n2017-01-05T15:17:11.978863+00:00 app[web.1]: \tat java.lang.Thread.run(Thread.java:745)" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/327", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/327/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/327/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/327/events", + "html_url": "https://github.com/github-api/github-api/pull/327", + "id": 198909518, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTAwMjU2ODc3", + "number": 327, + "title": "Expose Rate Limit Headers", + "user": { + "login": "stephenc", + "id": 209336, + "node_id": "MDQ6VXNlcjIwOTMzNg==", + "avatar_url": "https://avatars2.githubusercontent.com/u/209336?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/stephenc", + "html_url": "https://github.com/stephenc", + "followers_url": "https://api.github.com/users/stephenc/followers", + "following_url": "https://api.github.com/users/stephenc/following{/other_user}", + "gists_url": "https://api.github.com/users/stephenc/gists{/gist_id}", + "starred_url": "https://api.github.com/users/stephenc/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/stephenc/subscriptions", + "organizations_url": "https://api.github.com/users/stephenc/orgs", + "repos_url": "https://api.github.com/users/stephenc/repos", + "events_url": "https://api.github.com/users/stephenc/events{/privacy}", + "received_events_url": "https://api.github.com/users/stephenc/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2017-01-05T09:22:06Z", + "updated_at": "2017-01-09T23:57:08Z", + "closed_at": "2017-01-09T23:57:08Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/327", + "html_url": "https://github.com/github-api/github-api/pull/327", + "diff_url": "https://github.com/github-api/github-api/pull/327.diff", + "patch_url": "https://github.com/github-api/github-api/pull/327.patch" + }, + "body": "Exposes the rate limit header responses so that consumers of the API can proactively tune their usage.\r\n\r\n@reviewbybees" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/326", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/326/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/326/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/326/events", + "html_url": "https://github.com/github-api/github-api/issues/326", + "id": 198777006, + "node_id": "MDU6SXNzdWUxOTg3NzcwMDY=", + "number": 326, + "title": "Support new merge methods (squash/rebase) for Github Pull Requests", + "user": { + "login": "NicholasBoll", + "id": 338257, + "node_id": "MDQ6VXNlcjMzODI1Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/338257?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/NicholasBoll", + "html_url": "https://github.com/NicholasBoll", + "followers_url": "https://api.github.com/users/NicholasBoll/followers", + "following_url": "https://api.github.com/users/NicholasBoll/following{/other_user}", + "gists_url": "https://api.github.com/users/NicholasBoll/gists{/gist_id}", + "starred_url": "https://api.github.com/users/NicholasBoll/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/NicholasBoll/subscriptions", + "organizations_url": "https://api.github.com/users/NicholasBoll/orgs", + "repos_url": "https://api.github.com/users/NicholasBoll/repos", + "events_url": "https://api.github.com/users/NicholasBoll/events{/privacy}", + "received_events_url": "https://api.github.com/users/NicholasBoll/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2017-01-04T18:28:26Z", + "updated_at": "2017-09-09T19:17:52Z", + "closed_at": "2017-09-09T19:17:52Z", + "author_association": "NONE", + "body": "**Note:** This is part of a developer preview, so it might be too early to implement.\r\n\r\nAccording the version 3 of the github API, new merge methods (`squash` and `rebase`) have been added, `merge` being the default: https://developer.github.com/v3/pulls/#merge-a-pull-request-merge-button\r\n\r\nIn [GHPullRequest#L294](https://github.com/kohsuke/github-api/blob/master/src/main/java/org/kohsuke/github/GHPullRequest.java#L294), `merge_method` could be added to support different merge methods. Either the `merge` method could be overloaded to support different merge methods or methods for squashing and rebasing could be added." + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/325", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/325/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/325/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/325/events", + "html_url": "https://github.com/github-api/github-api/pull/325", + "id": 197230642, + "node_id": "MDExOlB1bGxSZXF1ZXN0OTkxNDUyNTg=", + "number": 325, + "title": "Branch protection attrs", + "user": { + "login": "jeffnelson", + "id": 15911380, + "node_id": "MDQ6VXNlcjE1OTExMzgw", + "avatar_url": "https://avatars2.githubusercontent.com/u/15911380?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jeffnelson", + "html_url": "https://github.com/jeffnelson", + "followers_url": "https://api.github.com/users/jeffnelson/followers", + "following_url": "https://api.github.com/users/jeffnelson/following{/other_user}", + "gists_url": "https://api.github.com/users/jeffnelson/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jeffnelson/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jeffnelson/subscriptions", + "organizations_url": "https://api.github.com/users/jeffnelson/orgs", + "repos_url": "https://api.github.com/users/jeffnelson/repos", + "events_url": "https://api.github.com/users/jeffnelson/events{/privacy}", + "received_events_url": "https://api.github.com/users/jeffnelson/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2016-12-22T17:55:51Z", + "updated_at": "2017-01-10T00:06:33Z", + "closed_at": "2017-01-10T00:06:33Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/325", + "html_url": "https://github.com/github-api/github-api/pull/325", + "diff_url": "https://github.com/github-api/github-api/pull/325.diff", + "patch_url": "https://github.com/github-api/github-api/pull/325.patch" + }, + "body": "" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/324", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/324/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/324/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/324/events", + "html_url": "https://github.com/github-api/github-api/pull/324", + "id": 196173589, + "node_id": "MDExOlB1bGxSZXF1ZXN0OTg0MTc1MDk=", + "number": 324, + "title": "[JENKINS-36240] Added GHRepository.getPermission(String)", + "user": { + "login": "jglick", + "id": 154109, + "node_id": "MDQ6VXNlcjE1NDEwOQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/154109?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jglick", + "html_url": "https://github.com/jglick", + "followers_url": "https://api.github.com/users/jglick/followers", + "following_url": "https://api.github.com/users/jglick/following{/other_user}", + "gists_url": "https://api.github.com/users/jglick/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jglick/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jglick/subscriptions", + "organizations_url": "https://api.github.com/users/jglick/orgs", + "repos_url": "https://api.github.com/users/jglick/repos", + "events_url": "https://api.github.com/users/jglick/events{/privacy}", + "received_events_url": "https://api.github.com/users/jglick/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2016-12-16T23:04:20Z", + "updated_at": "2017-01-19T18:40:21Z", + "closed_at": "2017-01-10T00:19:06Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/324", + "html_url": "https://github.com/github-api/github-api/pull/324", + "diff_url": "https://github.com/github-api/github-api/pull/324.diff", + "patch_url": "https://github.com/github-api/github-api/pull/324.patch" + }, + "body": "[JENKINS-36240](https://issues.jenkins-ci.org/browse/JENKINS-36240)\r\n\r\nUsing a new API (currently still in preview) that fixes a longstanding issue.\r\n\r\n@reviewbybees" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/323", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/323/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/323/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/323/events", + "html_url": "https://github.com/github-api/github-api/pull/323", + "id": 196143348, + "node_id": "MDExOlB1bGxSZXF1ZXN0OTgzOTQ5Njc=", + "number": 323, + "title": "Fix syntactically malformed test JSON", + "user": { + "login": "jglick", + "id": 154109, + "node_id": "MDQ6VXNlcjE1NDEwOQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/154109?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jglick", + "html_url": "https://github.com/jglick", + "followers_url": "https://api.github.com/users/jglick/followers", + "following_url": "https://api.github.com/users/jglick/following{/other_user}", + "gists_url": "https://api.github.com/users/jglick/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jglick/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jglick/subscriptions", + "organizations_url": "https://api.github.com/users/jglick/orgs", + "repos_url": "https://api.github.com/users/jglick/repos", + "events_url": "https://api.github.com/users/jglick/events{/privacy}", + "received_events_url": "https://api.github.com/users/jglick/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2016-12-16T20:05:53Z", + "updated_at": "2016-12-17T14:24:44Z", + "closed_at": "2016-12-17T14:24:44Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/323", + "html_url": "https://github.com/github-api/github-api/pull/323", + "diff_url": "https://github.com/github-api/github-api/pull/323.diff", + "patch_url": "https://github.com/github-api/github-api/pull/323.patch" + }, + "body": "Fixes some bogus files added by @stephenc in #306.\r\n\r\n@reviewbybees" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/322", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/322/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/322/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/322/events", + "html_url": "https://github.com/github-api/github-api/issues/322", + "id": 195534561, + "node_id": "MDU6SXNzdWUxOTU1MzQ1NjE=", + "number": 322, + "title": "API response time", + "user": { + "login": "sergiofigueras", + "id": 1733227, + "node_id": "MDQ6VXNlcjE3MzMyMjc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/1733227?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/sergiofigueras", + "html_url": "https://github.com/sergiofigueras", + "followers_url": "https://api.github.com/users/sergiofigueras/followers", + "following_url": "https://api.github.com/users/sergiofigueras/following{/other_user}", + "gists_url": "https://api.github.com/users/sergiofigueras/gists{/gist_id}", + "starred_url": "https://api.github.com/users/sergiofigueras/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/sergiofigueras/subscriptions", + "organizations_url": "https://api.github.com/users/sergiofigueras/orgs", + "repos_url": "https://api.github.com/users/sergiofigueras/repos", + "events_url": "https://api.github.com/users/sergiofigueras/events{/privacy}", + "received_events_url": "https://api.github.com/users/sergiofigueras/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2016-12-14T13:46:20Z", + "updated_at": "2016-12-17T15:24:07Z", + "closed_at": "2016-12-17T15:24:07Z", + "author_association": "NONE", + "body": "Hello guys,\r\n\r\nI'm in a trouble here and I would like to know if some of you guys have passed through the same or if its something new.\r\n\r\nBasically after using some calls on GHRepository, with this operation:\r\n\r\n```\r\nfinal PagedSearchIterable list = githubClient.searchIssues()\r\n .q(\"type:pr\")\r\n .q(String.format(\"repo:%s\", githubRepoName(repoName)))\r\n .q(commitId)\r\n .list();\r\n```\r\n\r\nit seems that by some reason my request is queued, and it might take >10min to take the results, which is bringing me several timeout operations.\r\n\r\nDoes it happened with you before? Is that something that I must configure on github-api?" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/320", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/320/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/320/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/320/events", + "html_url": "https://github.com/github-api/github-api/pull/320", + "id": 195133678, + "node_id": "MDExOlB1bGxSZXF1ZXN0OTc2NjkxNjk=", + "number": 320, + "title": "Added ghRepo.getBlob(String) method", + "user": { + "login": "KostyaSha", + "id": 231611, + "node_id": "MDQ6VXNlcjIzMTYxMQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/231611?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/KostyaSha", + "html_url": "https://github.com/KostyaSha", + "followers_url": "https://api.github.com/users/KostyaSha/followers", + "following_url": "https://api.github.com/users/KostyaSha/following{/other_user}", + "gists_url": "https://api.github.com/users/KostyaSha/gists{/gist_id}", + "starred_url": "https://api.github.com/users/KostyaSha/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/KostyaSha/subscriptions", + "organizations_url": "https://api.github.com/users/KostyaSha/orgs", + "repos_url": "https://api.github.com/users/KostyaSha/repos", + "events_url": "https://api.github.com/users/KostyaSha/events{/privacy}", + "received_events_url": "https://api.github.com/users/KostyaSha/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 5, + "created_at": "2016-12-13T01:18:40Z", + "updated_at": "2016-12-17T14:56:58Z", + "closed_at": "2016-12-17T14:56:58Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/320", + "html_url": "https://github.com/github-api/github-api/pull/320", + "diff_url": "https://github.com/github-api/github-api/pull/320.diff", + "patch_url": "https://github.com/github-api/github-api/pull/320.patch" + }, + "body": "This method is called only when somebody really needs data, so no need/way with lazy InputStream reads.\r\n\r\nCC For review @stephenc @oleg-nenashev @atanasenko\r\n\r\n\r\n---\r\nThis change is [\"Reviewable\"/](https://reviewable.io/reviews/kohsuke/github-api/320)\r\n\r\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/319", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/319/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/319/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/319/events", + "html_url": "https://github.com/github-api/github-api/issues/319", + "id": 193406480, + "node_id": "MDU6SXNzdWUxOTM0MDY0ODA=", + "number": 319, + "title": "getLabels() call for a pull request results in downstream 404s", + "user": { + "login": "benpatterson", + "id": 2004678, + "node_id": "MDQ6VXNlcjIwMDQ2Nzg=", + "avatar_url": "https://avatars3.githubusercontent.com/u/2004678?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/benpatterson", + "html_url": "https://github.com/benpatterson", + "followers_url": "https://api.github.com/users/benpatterson/followers", + "following_url": "https://api.github.com/users/benpatterson/following{/other_user}", + "gists_url": "https://api.github.com/users/benpatterson/gists{/gist_id}", + "starred_url": "https://api.github.com/users/benpatterson/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/benpatterson/subscriptions", + "organizations_url": "https://api.github.com/users/benpatterson/orgs", + "repos_url": "https://api.github.com/users/benpatterson/repos", + "events_url": "https://api.github.com/users/benpatterson/events{/privacy}", + "received_events_url": "https://api.github.com/users/benpatterson/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2016-12-05T03:53:49Z", + "updated_at": "2016-12-19T12:19:43Z", + "closed_at": "2016-12-17T15:28:58Z", + "author_association": "NONE", + "body": "When calling `.getLabels()` with a pull request object, the pull request object's url is overridden to include `/issues/` in the path, rather than `/pulls/`. This can cause subsequent 404s when attempting to access pull request-specific API endpoints, like `getCommits()`, which require a pull request url.\r\n\r\nSee https://github.com/jenkinsci/ghprb-plugin/issues/441 for some backstory.\r\n\r\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/318", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/318/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/318/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/318/events", + "html_url": "https://github.com/github-api/github-api/issues/318", + "id": 193373986, + "node_id": "MDU6SXNzdWUxOTMzNzM5ODY=", + "number": 318, + "title": "Gist Searching", + "user": { + "login": "srepollock", + "id": 8965444, + "node_id": "MDQ6VXNlcjg5NjU0NDQ=", + "avatar_url": "https://avatars3.githubusercontent.com/u/8965444?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/srepollock", + "html_url": "https://github.com/srepollock", + "followers_url": "https://api.github.com/users/srepollock/followers", + "following_url": "https://api.github.com/users/srepollock/following{/other_user}", + "gists_url": "https://api.github.com/users/srepollock/gists{/gist_id}", + "starred_url": "https://api.github.com/users/srepollock/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/srepollock/subscriptions", + "organizations_url": "https://api.github.com/users/srepollock/orgs", + "repos_url": "https://api.github.com/users/srepollock/repos", + "events_url": "https://api.github.com/users/srepollock/events{/privacy}", + "received_events_url": "https://api.github.com/users/srepollock/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2016-12-04T20:38:37Z", + "updated_at": "2016-12-04T20:54:19Z", + "closed_at": "2016-12-04T20:54:19Z", + "author_association": "NONE", + "body": "Is there a way to use the API to search Gist's for keywords?\r\n\r\ni.e: keyword: `P45$w0rD` should find some results from @srsavage.\r\n\r\nI'm looking through the API and it looks like Gists are the same sort of search that GitHub is, but looking at the files on the repo here, you pass in the string `http://api.github.com/` as the main retriever." + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/317", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/317/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/317/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/317/events", + "html_url": "https://github.com/github-api/github-api/issues/317", + "id": 193057010, + "node_id": "MDU6SXNzdWUxOTMwNTcwMTA=", + "number": 317, + "title": "Adding users to organization-owned repos not possible", + "user": { + "login": "ToWi87", + "id": 19682656, + "node_id": "MDQ6VXNlcjE5NjgyNjU2", + "avatar_url": "https://avatars1.githubusercontent.com/u/19682656?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ToWi87", + "html_url": "https://github.com/ToWi87", + "followers_url": "https://api.github.com/users/ToWi87/followers", + "following_url": "https://api.github.com/users/ToWi87/following{/other_user}", + "gists_url": "https://api.github.com/users/ToWi87/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ToWi87/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ToWi87/subscriptions", + "organizations_url": "https://api.github.com/users/ToWi87/orgs", + "repos_url": "https://api.github.com/users/ToWi87/repos", + "events_url": "https://api.github.com/users/ToWi87/events{/privacy}", + "received_events_url": "https://api.github.com/users/ToWi87/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2016-12-02T08:07:42Z", + "updated_at": "2016-12-17T15:31:08Z", + "closed_at": "2016-12-17T15:31:08Z", + "author_association": "NONE", + "body": "Adding users to organization-owned repositories fails for me due to GHRepository#verifyMine() saying \"Operation not applicable to a repository owned by someone else\" which is quite correct, still not OK if the logged in user has respective privileges on the repository.\r\n\r\nProposal: remove this check and wait for GitHub to return HTTP 401/403." + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/315", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/315/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/315/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/315/events", + "html_url": "https://github.com/github-api/github-api/pull/315", + "id": 191788664, + "node_id": "MDExOlB1bGxSZXF1ZXN0OTUzNjIxNDg=", + "number": 315, + "title": "Fix typos in javadocs", + "user": { + "login": "davidxia", + "id": 480621, + "node_id": "MDQ6VXNlcjQ4MDYyMQ==", + "avatar_url": "https://avatars0.githubusercontent.com/u/480621?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/davidxia", + "html_url": "https://github.com/davidxia", + "followers_url": "https://api.github.com/users/davidxia/followers", + "following_url": "https://api.github.com/users/davidxia/following{/other_user}", + "gists_url": "https://api.github.com/users/davidxia/gists{/gist_id}", + "starred_url": "https://api.github.com/users/davidxia/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/davidxia/subscriptions", + "organizations_url": "https://api.github.com/users/davidxia/orgs", + "repos_url": "https://api.github.com/users/davidxia/repos", + "events_url": "https://api.github.com/users/davidxia/events{/privacy}", + "received_events_url": "https://api.github.com/users/davidxia/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2016-11-26T05:46:38Z", + "updated_at": "2016-11-26T22:38:49Z", + "closed_at": "2016-11-26T22:38:45Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/315", + "html_url": "https://github.com/github-api/github-api/pull/315", + "diff_url": "https://github.com/github-api/github-api/pull/315.diff", + "patch_url": "https://github.com/github-api/github-api/pull/315.patch" + }, + "body": "Replace \"pagenated\" with \"paginated\"." + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/314", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/314/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/314/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/314/events", + "html_url": "https://github.com/github-api/github-api/issues/314", + "id": 191765030, + "node_id": "MDU6SXNzdWUxOTE3NjUwMzA=", + "number": 314, + "title": "GHSearchBuilder terms are cumulative when I expected them to overwrite previous one", + "user": { + "login": "davidxia", + "id": 480621, + "node_id": "MDQ6VXNlcjQ4MDYyMQ==", + "avatar_url": "https://avatars0.githubusercontent.com/u/480621?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/davidxia", + "html_url": "https://github.com/davidxia", + "followers_url": "https://api.github.com/users/davidxia/followers", + "following_url": "https://api.github.com/users/davidxia/following{/other_user}", + "gists_url": "https://api.github.com/users/davidxia/gists{/gist_id}", + "starred_url": "https://api.github.com/users/davidxia/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/davidxia/subscriptions", + "organizations_url": "https://api.github.com/users/davidxia/orgs", + "repos_url": "https://api.github.com/users/davidxia/repos", + "events_url": "https://api.github.com/users/davidxia/events{/privacy}", + "received_events_url": "https://api.github.com/users/davidxia/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2016-11-25T21:05:44Z", + "updated_at": "2016-11-26T23:00:56Z", + "closed_at": "2016-11-26T22:52:03Z", + "author_association": "CONTRIBUTOR", + "body": "This isn't a huge deal, but I thought I'd point out something I didn't expect as a user.\r\n\r\nI thought that if I reused `GHContentSearchBuilder` which extends `GHSearchBuilder`, it's `repo()` method would overwrite previous calls of `repo()`. I was confused when my search results from the second call below was the same as the first.\r\n\r\n```java\r\nfinal GHContentSearchBuilder searcher;\r\nsearcher.repo(\"foo\").q(\"query1\").list(); // terms are repo:foo, query1\r\nsearcher.repo(\"bar\").q(\"query2\").list(); // terms are repo:foo, query1, repo:bar, query2\r\n```\r\n\r\nThe reason is because calling `repo()` (and other methods like `in()`, etc) add terms instead of overwriting previous ones. See above comments.\r\n\r\nConsider overwriting as that seems more intuitive?" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/313", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/313/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/313/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/313/events", + "html_url": "https://github.com/github-api/github-api/issues/313", + "id": 191752990, + "node_id": "MDU6SXNzdWUxOTE3NTI5OTA=", + "number": 313, + "title": "Support ordering in searches", + "user": { + "login": "davidxia", + "id": 480621, + "node_id": "MDQ6VXNlcjQ4MDYyMQ==", + "avatar_url": "https://avatars0.githubusercontent.com/u/480621?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/davidxia", + "html_url": "https://github.com/davidxia", + "followers_url": "https://api.github.com/users/davidxia/followers", + "following_url": "https://api.github.com/users/davidxia/following{/other_user}", + "gists_url": "https://api.github.com/users/davidxia/gists{/gist_id}", + "starred_url": "https://api.github.com/users/davidxia/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/davidxia/subscriptions", + "organizations_url": "https://api.github.com/users/davidxia/orgs", + "repos_url": "https://api.github.com/users/davidxia/repos", + "events_url": "https://api.github.com/users/davidxia/events{/privacy}", + "received_events_url": "https://api.github.com/users/davidxia/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2016-11-25T18:45:56Z", + "updated_at": "2016-11-26T22:45:40Z", + "closed_at": "2016-11-26T22:45:40Z", + "author_association": "CONTRIBUTOR", + "body": "As far as I can tell, there's no way to specify the `order` for a `sort` parameter in a search. See for example https://developer.github.com/enterprise/2.6/v3/search/#search-repositories. \r\n\r\nConsider supporting `order` for all the types of searches in the link above." + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/312", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/312/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/312/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/312/events", + "html_url": "https://github.com/github-api/github-api/issues/312", + "id": 190879419, + "node_id": "MDU6SXNzdWUxOTA4Nzk0MTk=", + "number": 312, + "title": "Update OkHttp usage", + "user": { + "login": "ScottPierce", + "id": 871169, + "node_id": "MDQ6VXNlcjg3MTE2OQ==", + "avatar_url": "https://avatars0.githubusercontent.com/u/871169?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ScottPierce", + "html_url": "https://github.com/ScottPierce", + "followers_url": "https://api.github.com/users/ScottPierce/followers", + "following_url": "https://api.github.com/users/ScottPierce/following{/other_user}", + "gists_url": "https://api.github.com/users/ScottPierce/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ScottPierce/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ScottPierce/subscriptions", + "organizations_url": "https://api.github.com/users/ScottPierce/orgs", + "repos_url": "https://api.github.com/users/ScottPierce/repos", + "events_url": "https://api.github.com/users/ScottPierce/events{/privacy}", + "received_events_url": "https://api.github.com/users/ScottPierce/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2016-11-22T00:56:55Z", + "updated_at": "2019-02-07T11:45:03Z", + "closed_at": "2016-11-26T23:13:39Z", + "author_association": "NONE", + "body": "`OkUrlFactory` is deprecated and will be removed in a newer version. It also seems you are using an old version of OkHttp in your `OkHttpConnector`, so it's not compatible." + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/311", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/311/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/311/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/311/events", + "html_url": "https://github.com/github-api/github-api/issues/311", + "id": 189918501, + "node_id": "MDU6SXNzdWUxODk5MTg1MDE=", + "number": 311, + "title": "Testing reaction", + "user": { + "login": "kohsuke", + "id": 50003, + "node_id": "MDQ6VXNlcjUwMDAz", + "avatar_url": "https://avatars1.githubusercontent.com/u/50003?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kohsuke", + "html_url": "https://github.com/kohsuke", + "followers_url": "https://api.github.com/users/kohsuke/followers", + "following_url": "https://api.github.com/users/kohsuke/following{/other_user}", + "gists_url": "https://api.github.com/users/kohsuke/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kohsuke/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kohsuke/subscriptions", + "organizations_url": "https://api.github.com/users/kohsuke/orgs", + "repos_url": "https://api.github.com/users/kohsuke/repos", + "events_url": "https://api.github.com/users/kohsuke/events{/privacy}", + "received_events_url": "https://api.github.com/users/kohsuke/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2016-11-17T02:40:08Z", + "updated_at": "2016-11-17T02:40:11Z", + "closed_at": "2016-11-17T02:40:11Z", + "author_association": "MEMBER", + "body": "" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/310", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/310/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/310/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/310/events", + "html_url": "https://github.com/github-api/github-api/issues/310", + "id": 189440232, + "node_id": "MDU6SXNzdWUxODk0NDAyMzI=", + "number": 310, + "title": "Is there a way to update contents in bulk?", + "user": { + "login": "qinfchen", + "id": 8294715, + "node_id": "MDQ6VXNlcjgyOTQ3MTU=", + "avatar_url": "https://avatars1.githubusercontent.com/u/8294715?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/qinfchen", + "html_url": "https://github.com/qinfchen", + "followers_url": "https://api.github.com/users/qinfchen/followers", + "following_url": "https://api.github.com/users/qinfchen/following{/other_user}", + "gists_url": "https://api.github.com/users/qinfchen/gists{/gist_id}", + "starred_url": "https://api.github.com/users/qinfchen/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/qinfchen/subscriptions", + "organizations_url": "https://api.github.com/users/qinfchen/orgs", + "repos_url": "https://api.github.com/users/qinfchen/repos", + "events_url": "https://api.github.com/users/qinfchen/events{/privacy}", + "received_events_url": "https://api.github.com/users/qinfchen/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2016-11-15T16:30:13Z", + "updated_at": "2016-11-17T02:21:15Z", + "closed_at": "2016-11-17T02:21:15Z", + "author_association": "NONE", + "body": "" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/309", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/309/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/309/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/309/events", + "html_url": "https://github.com/github-api/github-api/issues/309", + "id": 189359869, + "node_id": "MDU6SXNzdWUxODkzNTk4Njk=", + "number": 309, + "title": "GitHub#listAllUsers() demanded (enterprise use-case)", + "user": { + "login": "ToWi87", + "id": 19682656, + "node_id": "MDQ6VXNlcjE5NjgyNjU2", + "avatar_url": "https://avatars1.githubusercontent.com/u/19682656?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ToWi87", + "html_url": "https://github.com/ToWi87", + "followers_url": "https://api.github.com/users/ToWi87/followers", + "following_url": "https://api.github.com/users/ToWi87/following{/other_user}", + "gists_url": "https://api.github.com/users/ToWi87/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ToWi87/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ToWi87/subscriptions", + "organizations_url": "https://api.github.com/users/ToWi87/orgs", + "repos_url": "https://api.github.com/users/ToWi87/repos", + "events_url": "https://api.github.com/users/ToWi87/events{/privacy}", + "received_events_url": "https://api.github.com/users/ToWi87/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2016-11-15T10:54:26Z", + "updated_at": "2016-11-17T02:27:09Z", + "closed_at": "2016-11-17T02:27:09Z", + "author_association": "NONE", + "body": "I looked for a way to retrieve all users on our GitHub enterprise installation but could not find it where I looked for it first `GitHub.listAllUsers()`.\r\n\r\nSo I had to work around it like\r\n`GitHub.searchUsers().type(\"user\").list()`\r\nmaybe the same scenario is encountered by others and might be addressed in a general way." + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/308", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/308/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/308/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/308/events", + "html_url": "https://github.com/github-api/github-api/issues/308", + "id": 189320915, + "node_id": "MDU6SXNzdWUxODkzMjA5MTU=", + "number": 308, + "title": "Delete OAuth Token", + "user": { + "login": "srepollock", + "id": 8965444, + "node_id": "MDQ6VXNlcjg5NjU0NDQ=", + "avatar_url": "https://avatars3.githubusercontent.com/u/8965444?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/srepollock", + "html_url": "https://github.com/srepollock", + "followers_url": "https://api.github.com/users/srepollock/followers", + "following_url": "https://api.github.com/users/srepollock/following{/other_user}", + "gists_url": "https://api.github.com/users/srepollock/gists{/gist_id}", + "starred_url": "https://api.github.com/users/srepollock/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/srepollock/subscriptions", + "organizations_url": "https://api.github.com/users/srepollock/orgs", + "repos_url": "https://api.github.com/users/srepollock/repos", + "events_url": "https://api.github.com/users/srepollock/events{/privacy}", + "received_events_url": "https://api.github.com/users/srepollock/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 3, + "created_at": "2016-11-15T07:41:17Z", + "updated_at": "2016-11-25T02:27:18Z", + "closed_at": "2016-11-17T02:29:29Z", + "author_association": "NONE", + "body": "I'm creating a Gist manager Android application [GoodGists](https://github.com/srepollock/GoodGists) and I'm trying to get something working where I log out and delete the file where the OAuth key was saved. When I delete this and try to sign in again it's not allowing me to. Where do I delete the token created in the API?" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/307", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/307/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/307/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/307/events", + "html_url": "https://github.com/github-api/github-api/pull/307", + "id": 188261842, + "node_id": "MDExOlB1bGxSZXF1ZXN0OTI5NzM3MDI=", + "number": 307, + "title": "Add portion of auth/application API.", + "user": { + "login": "KostyaSha", + "id": 231611, + "node_id": "MDQ6VXNlcjIzMTYxMQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/231611?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/KostyaSha", + "html_url": "https://github.com/KostyaSha", + "followers_url": "https://api.github.com/users/KostyaSha/followers", + "following_url": "https://api.github.com/users/KostyaSha/following{/other_user}", + "gists_url": "https://api.github.com/users/KostyaSha/gists{/gist_id}", + "starred_url": "https://api.github.com/users/KostyaSha/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/KostyaSha/subscriptions", + "organizations_url": "https://api.github.com/users/KostyaSha/orgs", + "repos_url": "https://api.github.com/users/KostyaSha/repos", + "events_url": "https://api.github.com/users/KostyaSha/events{/privacy}", + "received_events_url": "https://api.github.com/users/KostyaSha/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 5, + "created_at": "2016-11-09T14:35:14Z", + "updated_at": "2016-11-11T14:58:47Z", + "closed_at": "2016-11-11T14:56:03Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/307", + "html_url": "https://github.com/github-api/github-api/pull/307", + "diff_url": "https://github.com/github-api/github-api/pull/307.diff", + "patch_url": "https://github.com/github-api/github-api/pull/307.patch" + }, + "body": "\n\n\nThis change is [\"Reviewable\"/](https://reviewable.io/reviews/kohsuke/github-api/307)\n\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/306", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/306/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/306/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/306/events", + "html_url": "https://github.com/github-api/github-api/pull/306", + "id": 187985258, + "node_id": "MDExOlB1bGxSZXF1ZXN0OTI3NzI4NTA=", + "number": 306, + "title": "Add offline support to the API to make parsing events easier", + "user": { + "login": "stephenc", + "id": 209336, + "node_id": "MDQ6VXNlcjIwOTMzNg==", + "avatar_url": "https://avatars2.githubusercontent.com/u/209336?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/stephenc", + "html_url": "https://github.com/stephenc", + "followers_url": "https://api.github.com/users/stephenc/followers", + "following_url": "https://api.github.com/users/stephenc/following{/other_user}", + "gists_url": "https://api.github.com/users/stephenc/gists{/gist_id}", + "starred_url": "https://api.github.com/users/stephenc/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/stephenc/subscriptions", + "organizations_url": "https://api.github.com/users/stephenc/orgs", + "repos_url": "https://api.github.com/users/stephenc/repos", + "events_url": "https://api.github.com/users/stephenc/events{/privacy}", + "received_events_url": "https://api.github.com/users/stephenc/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2016-11-08T12:58:01Z", + "updated_at": "2017-11-01T15:50:21Z", + "closed_at": "2016-11-17T02:12:39Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/306", + "html_url": "https://github.com/github-api/github-api/pull/306", + "diff_url": "https://github.com/github-api/github-api/pull/306.diff", + "patch_url": "https://github.com/github-api/github-api/pull/306.patch" + }, + "body": "- When we receive events from a webhook, it is non-trivial to determine which GitHub instance the event came from\r\n or for that matter even if the event actually came from GitHub or GitHub Enterprise.\r\n- In order to ensure that the logic for parsing events does not get replicated in clients, we need to be\r\n able to call `GitHub.parseEventPayload(Reader,Class)` without knowing which `GitHub` the event originates from\r\n and without the resulting objects triggering API calls back to a GitHub\r\n- Thus we add `GitHub.offline()` to provide an off-line connection\r\n- Thus we modify some of the object classes to return best-effort objects when off-line\r\n- Add support for more of the event types into `GHEventPayload`\r\n- Add tests of the event payload and accessing critical fields when using `GitHub.offline()`\r\n\r\n@reviewbybees" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/305", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/305/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/305/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/305/events", + "html_url": "https://github.com/github-api/github-api/issues/305", + "id": 187472945, + "node_id": "MDU6SXNzdWUxODc0NzI5NDU=", + "number": 305, + "title": "Pull Request Reviews API", + "user": { + "login": "masud-technope", + "id": 1852836, + "node_id": "MDQ6VXNlcjE4NTI4MzY=", + "avatar_url": "https://avatars0.githubusercontent.com/u/1852836?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/masud-technope", + "html_url": "https://github.com/masud-technope", + "followers_url": "https://api.github.com/users/masud-technope/followers", + "following_url": "https://api.github.com/users/masud-technope/following{/other_user}", + "gists_url": "https://api.github.com/users/masud-technope/gists{/gist_id}", + "starred_url": "https://api.github.com/users/masud-technope/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/masud-technope/subscriptions", + "organizations_url": "https://api.github.com/users/masud-technope/orgs", + "repos_url": "https://api.github.com/users/masud-technope/repos", + "events_url": "https://api.github.com/users/masud-technope/events{/privacy}", + "received_events_url": "https://api.github.com/users/masud-technope/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 3, + "created_at": "2016-11-05T03:01:44Z", + "updated_at": "2017-09-09T21:18:59Z", + "closed_at": "2017-09-09T21:18:59Z", + "author_association": "NONE", + "body": "Each PR review has three outcomes according to the documentation.\r\nhttps://help.github.com/articles/about-pull-request-reviews/\r\n- Comment:\r\n\r\n- Approve:\r\n\r\n- Request changes\r\n\r\nRight now, I can only see the review comments using this code with your API\r\n`request.listReviewComments().iterator();`\r\nCan I see the \"Approve\" and \"Request changes\" as well? Do you have a plan to add them?\r\n@kohsuke " + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/304", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/304/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/304/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/304/events", + "html_url": "https://github.com/github-api/github-api/pull/304", + "id": 187123932, + "node_id": "MDExOlB1bGxSZXF1ZXN0OTIxOTI3MDA=", + "number": 304, + "title": "Fix fields of GHRepository", + "user": { + "login": "wolfogre", + "id": 9418365, + "node_id": "MDQ6VXNlcjk0MTgzNjU=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9418365?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/wolfogre", + "html_url": "https://github.com/wolfogre", + "followers_url": "https://api.github.com/users/wolfogre/followers", + "following_url": "https://api.github.com/users/wolfogre/following{/other_user}", + "gists_url": "https://api.github.com/users/wolfogre/gists{/gist_id}", + "starred_url": "https://api.github.com/users/wolfogre/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/wolfogre/subscriptions", + "organizations_url": "https://api.github.com/users/wolfogre/orgs", + "repos_url": "https://api.github.com/users/wolfogre/repos", + "events_url": "https://api.github.com/users/wolfogre/events{/privacy}", + "received_events_url": "https://api.github.com/users/wolfogre/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2016-11-03T16:39:29Z", + "updated_at": "2016-11-17T02:19:38Z", + "closed_at": "2016-11-17T02:19:38Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/304", + "html_url": "https://github.com/github-api/github-api/pull/304", + "diff_url": "https://github.com/github-api/github-api/pull/304.diff", + "patch_url": "https://github.com/github-api/github-api/pull/304.patch" + }, + "body": "According to the lasted version of [https://developer.github.com/v3/repos/#get](https://developer.github.com/v3/repos/#get) , the fields of GHRepository need be fixed:\r\n\r\n- Add new field `has_pages` ;\r\n- Add new field `stargazers_count`, **Be careful, Pull request #301 did the same thing**\r\n- Rename `forks` to `forks_count`, `forks` still works, but you can't see it in the newest docs;\r\n- Rename `watchers` to `watchers_count`, `watchers` still works, but you can't see it in the newest docs;\r\n- Rename `open_issues` to `open_issues_count`, `open_issues` still works, but you can't see it in the newest docs;\r\n- Delete `network_count`, I am not sure what it means, but it is always same as forks_count, and of coursed you can't see it in the newest docs;\r\n\r\nI did some basic tests, this is the result:\r\n\r\n```\r\nkohsuke/github-api:\r\nhasPages:true\r\ngetForksCount:241\r\ngetStargazersCount:307\r\ngetWatchersCount:307\r\ngetOpenIssueCount:17\r\n```\r\n\r\nYou may notice that the `watchers_count` is same as `stargazers_count`, it is not a bug in my code, you can see the same situation in the docs, and the `subscribers_count` is the real watcher count." + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/303", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/303/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/303/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/303/events", + "html_url": "https://github.com/github-api/github-api/issues/303", + "id": 187055079, + "node_id": "MDU6SXNzdWUxODcwNTUwNzk=", + "number": 303, + "title": "Expose OAuth headers", + "user": { + "login": "KostyaSha", + "id": 231611, + "node_id": "MDQ6VXNlcjIzMTYxMQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/231611?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/KostyaSha", + "html_url": "https://github.com/KostyaSha", + "followers_url": "https://api.github.com/users/KostyaSha/followers", + "following_url": "https://api.github.com/users/KostyaSha/following{/other_user}", + "gists_url": "https://api.github.com/users/KostyaSha/gists{/gist_id}", + "starred_url": "https://api.github.com/users/KostyaSha/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/KostyaSha/subscriptions", + "organizations_url": "https://api.github.com/users/KostyaSha/orgs", + "repos_url": "https://api.github.com/users/KostyaSha/repos", + "events_url": "https://api.github.com/users/KostyaSha/events{/privacy}", + "received_events_url": "https://api.github.com/users/KostyaSha/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 3, + "created_at": "2016-11-03T13:09:07Z", + "updated_at": "2017-09-09T20:07:59Z", + "closed_at": "2017-09-09T20:07:59Z", + "author_association": "CONTRIBUTOR", + "body": "" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/302", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/302/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/302/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/302/events", + "html_url": "https://github.com/github-api/github-api/pull/302", + "id": 185434969, + "node_id": "MDExOlB1bGxSZXF1ZXN0OTEwMzM2MzM=", + "number": 302, + "title": "Add support to check permissions (admin, push & pull) over a repository", + "user": { + "login": "david26", + "id": 4146110, + "node_id": "MDQ6VXNlcjQxNDYxMTA=", + "avatar_url": "https://avatars1.githubusercontent.com/u/4146110?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/david26", + "html_url": "https://github.com/david26", + "followers_url": "https://api.github.com/users/david26/followers", + "following_url": "https://api.github.com/users/david26/following{/other_user}", + "gists_url": "https://api.github.com/users/david26/gists{/gist_id}", + "starred_url": "https://api.github.com/users/david26/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/david26/subscriptions", + "organizations_url": "https://api.github.com/users/david26/orgs", + "repos_url": "https://api.github.com/users/david26/repos", + "events_url": "https://api.github.com/users/david26/events{/privacy}", + "received_events_url": "https://api.github.com/users/david26/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 3, + "created_at": "2016-10-26T15:52:19Z", + "updated_at": "2016-12-17T15:22:50Z", + "closed_at": "2016-12-17T15:22:50Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/302", + "html_url": "https://github.com/github-api/github-api/pull/302", + "diff_url": "https://github.com/github-api/github-api/pull/302.diff", + "patch_url": "https://github.com/github-api/github-api/pull/302.patch" + }, + "body": "Now its possible to know if an user is admin, can push or pull over a\nrepository\n\n`.getPermissions().isAdmin();`\n`.getPermissions().isPush();`\n`.getPermissions().isPush();`\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/301", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/301/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/301/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/301/events", + "html_url": "https://github.com/github-api/github-api/pull/301", + "id": 185259472, + "node_id": "MDExOlB1bGxSZXF1ZXN0OTA5MTA1NjY=", + "number": 301, + "title": "Add stargarzer field to GHRepository", + "user": { + "login": "goneall", + "id": 378172, + "node_id": "MDQ6VXNlcjM3ODE3Mg==", + "avatar_url": "https://avatars0.githubusercontent.com/u/378172?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/goneall", + "html_url": "https://github.com/goneall", + "followers_url": "https://api.github.com/users/goneall/followers", + "following_url": "https://api.github.com/users/goneall/following{/other_user}", + "gists_url": "https://api.github.com/users/goneall/gists{/gist_id}", + "starred_url": "https://api.github.com/users/goneall/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/goneall/subscriptions", + "organizations_url": "https://api.github.com/users/goneall/orgs", + "repos_url": "https://api.github.com/users/goneall/repos", + "events_url": "https://api.github.com/users/goneall/events{/privacy}", + "received_events_url": "https://api.github.com/users/goneall/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2016-10-25T23:24:12Z", + "updated_at": "2016-11-17T02:20:06Z", + "closed_at": "2016-11-17T02:20:06Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/301", + "html_url": "https://github.com/github-api/github-api/pull/301", + "diff_url": "https://github.com/github-api/github-api/pull/301.diff", + "patch_url": "https://github.com/github-api/github-api/pull/301.patch" + }, + "body": "Signed-off-by: Gary O'Neall gary@sourceauditor.com\n\nPull request to add the stargazers field to the HGRepository object.\n\nLet me know if you have any questions on the request.\n\nThanks,\nGary\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/300", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/300/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/300/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/300/events", + "html_url": "https://github.com/github-api/github-api/pull/300", + "id": 184942594, + "node_id": "MDExOlB1bGxSZXF1ZXN0OTA2ODM4MzU=", + "number": 300, + "title": "Expose the commit dates", + "user": { + "login": "stephenc", + "id": 209336, + "node_id": "MDQ6VXNlcjIwOTMzNg==", + "avatar_url": "https://avatars2.githubusercontent.com/u/209336?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/stephenc", + "html_url": "https://github.com/stephenc", + "followers_url": "https://api.github.com/users/stephenc/followers", + "following_url": "https://api.github.com/users/stephenc/following{/other_user}", + "gists_url": "https://api.github.com/users/stephenc/gists{/gist_id}", + "starred_url": "https://api.github.com/users/stephenc/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/stephenc/subscriptions", + "organizations_url": "https://api.github.com/users/stephenc/orgs", + "repos_url": "https://api.github.com/users/stephenc/repos", + "events_url": "https://api.github.com/users/stephenc/events{/privacy}", + "received_events_url": "https://api.github.com/users/stephenc/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 6, + "created_at": "2016-10-24T20:13:33Z", + "updated_at": "2017-11-01T15:50:22Z", + "closed_at": "2016-10-24T21:03:14Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/300", + "html_url": "https://github.com/github-api/github-api/pull/300", + "diff_url": "https://github.com/github-api/github-api/pull/300.diff", + "patch_url": "https://github.com/github-api/github-api/pull/300.patch" + }, + "body": "I need this for SCM API stuff\n" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/__files/repositories_617210_issues-e04b8865-9ace-405a-b8d9-f8bcacb9bfa8.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/__files/repositories_617210_issues-e04b8865-9ace-405a-b8d9-f8bcacb9bfa8.json new file mode 100644 index 0000000000..e6f6f286f5 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/__files/repositories_617210_issues-e04b8865-9ace-405a-b8d9-f8bcacb9bfa8.json @@ -0,0 +1,1394 @@ +[ + { + "url": "https://api.github.com/repos/github-api/github-api/issues/267", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/267/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/267/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/267/events", + "html_url": "https://github.com/github-api/github-api/pull/267", + "id": 145607499, + "node_id": "MDExOlB1bGxSZXF1ZXN0NjUxMDUwNTc=", + "number": 267, + "title": "'uploadAsset()' method call for Github Enterprise", + "user": { + "login": "lwiechec", + "id": 376537, + "node_id": "MDQ6VXNlcjM3NjUzNw==", + "avatar_url": "https://avatars3.githubusercontent.com/u/376537?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/lwiechec", + "html_url": "https://github.com/lwiechec", + "followers_url": "https://api.github.com/users/lwiechec/followers", + "following_url": "https://api.github.com/users/lwiechec/following{/other_user}", + "gists_url": "https://api.github.com/users/lwiechec/gists{/gist_id}", + "starred_url": "https://api.github.com/users/lwiechec/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/lwiechec/subscriptions", + "organizations_url": "https://api.github.com/users/lwiechec/orgs", + "repos_url": "https://api.github.com/users/lwiechec/repos", + "events_url": "https://api.github.com/users/lwiechec/events{/privacy}", + "received_events_url": "https://api.github.com/users/lwiechec/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 11, + "created_at": "2016-04-04T07:30:21Z", + "updated_at": "2019-01-11T03:03:38Z", + "closed_at": "2017-09-09T19:33:01Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/267", + "html_url": "https://github.com/github-api/github-api/pull/267", + "diff_url": "https://github.com/github-api/github-api/pull/267.diff", + "patch_url": "https://github.com/github-api/github-api/pull/267.patch" + }, + "body": "I am not sure if it is possible to 'ask' the GitHub API for the default\nupload URL; that would be great but if not, we need to pass it somehow.\n\nrefs #266\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/265", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/265/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/265/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/265/events", + "html_url": "https://github.com/github-api/github-api/issues/265", + "id": 144923178, + "node_id": "MDU6SXNzdWUxNDQ5MjMxNzg=", + "number": 265, + "title": "java.lang.IllegalArgumentException: byteString == null", + "user": { + "login": "ligi", + "id": 111600, + "node_id": "MDQ6VXNlcjExMTYwMA==", + "avatar_url": "https://avatars2.githubusercontent.com/u/111600?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ligi", + "html_url": "https://github.com/ligi", + "followers_url": "https://api.github.com/users/ligi/followers", + "following_url": "https://api.github.com/users/ligi/following{/other_user}", + "gists_url": "https://api.github.com/users/ligi/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ligi/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ligi/subscriptions", + "organizations_url": "https://api.github.com/users/ligi/orgs", + "repos_url": "https://api.github.com/users/ligi/repos", + "events_url": "https://api.github.com/users/ligi/events{/privacy}", + "received_events_url": "https://api.github.com/users/ligi/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 15, + "created_at": "2016-03-31T14:47:24Z", + "updated_at": "2017-03-22T20:18:21Z", + "closed_at": "2016-06-04T03:43:53Z", + "author_association": "NONE", + "body": "I hope this is the right repo for this bug:\n\n```\nBranch Indexing Log\n\nStarted by timer\nFATAL: Failed to recompute children of PassAndroid\njava.lang.IllegalArgumentException: byteString == null\n at okio.Buffer.write(Buffer.java:787)\n at com.squareup.okhttp.Cache$Entry.readCertificateList(Cache.java:628)\n at com.squareup.okhttp.Cache$Entry.(Cache.java:555)\n at com.squareup.okhttp.Cache.get(Cache.java:194)\n at com.squareup.okhttp.Cache$1.get(Cache.java:139)\n at com.squareup.okhttp.internal.http.HttpEngine.sendRequest(HttpEngine.java:226)\n at com.squareup.okhttp.internal.huc.HttpURLConnectionImpl.execute(HttpURLConnectionImpl.java:438)\n at com.squareup.okhttp.internal.huc.HttpURLConnectionImpl.getResponse(HttpURLConnectionImpl.java:389)\n at com.squareup.okhttp.internal.huc.HttpURLConnectionImpl.getResponseCode(HttpURLConnectionImpl.java:502)\n at com.squareup.okhttp.internal.huc.DelegatingHttpsURLConnection.getResponseCode(DelegatingHttpsURLConnection.java:105)\n at com.squareup.okhttp.internal.huc.HttpsURLConnectionImpl.getResponseCode(HttpsURLConnectionImpl.java:25)\n at org.kohsuke.github.Requester.parse(Requester.java:479)\n at org.kohsuke.github.Requester._to(Requester.java:236)\n at org.kohsuke.github.Requester.to(Requester.java:203)\n at org.kohsuke.github.GitHub.isCredentialValid(GitHub.java:447)\n at org.jenkinsci.plugins.github_branch_source.GitHubSCMSource.retrieve(GitHubSCMSource.java:224)\n at jenkins.scm.api.SCMSource.fetch(SCMSource.java:146)\n at jenkins.branch.MultiBranchProject.computeChildren(MultiBranchProject.java:296)\n at com.cloudbees.hudson.plugins.folder.computed.ComputedFolder.updateChildren(ComputedFolder.java:151)\n at com.cloudbees.hudson.plugins.folder.computed.FolderComputation.run(FolderComputation.java:122)\n at hudson.model.ResourceController.execute(ResourceController.java:98)\n at hudson.model.Executor.run(Executor.java:410)\nFinished: FAILURE\n```\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/264", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/264/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/264/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/264/events", + "html_url": "https://github.com/github-api/github-api/issues/264", + "id": 144798110, + "node_id": "MDU6SXNzdWUxNDQ3OTgxMTA=", + "number": 264, + "title": "GHRepository.fork() does not block on the async operation until it's complete", + "user": { + "login": "ALRubinger", + "id": 199891, + "node_id": "MDQ6VXNlcjE5OTg5MQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/199891?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ALRubinger", + "html_url": "https://github.com/ALRubinger", + "followers_url": "https://api.github.com/users/ALRubinger/followers", + "following_url": "https://api.github.com/users/ALRubinger/following{/other_user}", + "gists_url": "https://api.github.com/users/ALRubinger/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ALRubinger/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ALRubinger/subscriptions", + "organizations_url": "https://api.github.com/users/ALRubinger/orgs", + "repos_url": "https://api.github.com/users/ALRubinger/repos", + "events_url": "https://api.github.com/users/ALRubinger/events{/privacy}", + "received_events_url": "https://api.github.com/users/ALRubinger/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2016-03-31T05:59:15Z", + "updated_at": "2016-06-03T06:50:17Z", + "closed_at": "2016-06-03T06:50:17Z", + "author_association": "NONE", + "body": "https://github.com/kohsuke/github-api/blob/master/src/main/java/org/kohsuke/github/GHRepository.java#L589\n\nThe \"forkTo\" method, however, does have some nice blocking in place.\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/263", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/263/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/263/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/263/events", + "html_url": "https://github.com/github-api/github-api/issues/263", + "id": 144734475, + "node_id": "MDU6SXNzdWUxNDQ3MzQ0NzU=", + "number": 263, + "title": "github.getRepository does not work for Enterprise github instance", + "user": { + "login": "ram-bakthavachalam", + "id": 7400573, + "node_id": "MDQ6VXNlcjc0MDA1NzM=", + "avatar_url": "https://avatars1.githubusercontent.com/u/7400573?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ram-bakthavachalam", + "html_url": "https://github.com/ram-bakthavachalam", + "followers_url": "https://api.github.com/users/ram-bakthavachalam/followers", + "following_url": "https://api.github.com/users/ram-bakthavachalam/following{/other_user}", + "gists_url": "https://api.github.com/users/ram-bakthavachalam/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ram-bakthavachalam/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ram-bakthavachalam/subscriptions", + "organizations_url": "https://api.github.com/users/ram-bakthavachalam/orgs", + "repos_url": "https://api.github.com/users/ram-bakthavachalam/repos", + "events_url": "https://api.github.com/users/ram-bakthavachalam/events{/privacy}", + "received_events_url": "https://api.github.com/users/ram-bakthavachalam/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 4, + "created_at": "2016-03-30T22:07:53Z", + "updated_at": "2016-11-26T23:14:39Z", + "closed_at": "2016-11-26T23:14:39Z", + "author_association": "NONE", + "body": "github.getRepository method appends /repos/ to the url which does not work for Enterprise github instance.\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/262", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/262/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/262/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/262/events", + "html_url": "https://github.com/github-api/github-api/issues/262", + "id": 143538004, + "node_id": "MDU6SXNzdWUxNDM1MzgwMDQ=", + "number": 262, + "title": "Add Support for the Protected Branches API", + "user": { + "login": "kmadel", + "id": 983526, + "node_id": "MDQ6VXNlcjk4MzUyNg==", + "avatar_url": "https://avatars2.githubusercontent.com/u/983526?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kmadel", + "html_url": "https://github.com/kmadel", + "followers_url": "https://api.github.com/users/kmadel/followers", + "following_url": "https://api.github.com/users/kmadel/following{/other_user}", + "gists_url": "https://api.github.com/users/kmadel/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kmadel/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kmadel/subscriptions", + "organizations_url": "https://api.github.com/users/kmadel/orgs", + "repos_url": "https://api.github.com/users/kmadel/repos", + "events_url": "https://api.github.com/users/kmadel/events{/privacy}", + "received_events_url": "https://api.github.com/users/kmadel/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2016-03-25T16:38:50Z", + "updated_at": "2016-06-03T06:40:46Z", + "closed_at": "2016-06-03T06:40:46Z", + "author_association": "NONE", + "body": "See https://developer.github.com/changes/2015-11-11-protected-branches-api/\nand\nhttps://developer.github.com/v3/repos/#enabling-and-disabling-branch-protection\n\nAdmittedly, this is a beta feature, but would certainly be nice to modify the protected status and protection context automatically from, say, a Jenkins job.\n\nThis is also available for GHE as of v2.5\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/261", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/261/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/261/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/261/events", + "html_url": "https://github.com/github-api/github-api/issues/261", + "id": 141710751, + "node_id": "MDU6SXNzdWUxNDE3MTA3NTE=", + "number": 261, + "title": "Failed to deserialize list of contributors when repo is empty", + "user": { + "login": "ctubbsii", + "id": 1280725, + "node_id": "MDQ6VXNlcjEyODA3MjU=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1280725?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ctubbsii", + "html_url": "https://github.com/ctubbsii", + "followers_url": "https://api.github.com/users/ctubbsii/followers", + "following_url": "https://api.github.com/users/ctubbsii/following{/other_user}", + "gists_url": "https://api.github.com/users/ctubbsii/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ctubbsii/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ctubbsii/subscriptions", + "organizations_url": "https://api.github.com/users/ctubbsii/orgs", + "repos_url": "https://api.github.com/users/ctubbsii/repos", + "events_url": "https://api.github.com/users/ctubbsii/events{/privacy}", + "received_events_url": "https://api.github.com/users/ctubbsii/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2016-03-17T21:26:11Z", + "updated_at": "2016-06-04T03:27:30Z", + "closed_at": "2016-06-04T03:27:30Z", + "author_association": "NONE", + "body": "Saw the following error when iterating over a list of contributors on a repository. My guess is that there's a user whose username isn't compatible with whatever encoding is being used here, because it's 100% reproducible at the exact same point in the iteration.\n\n```\nException in thread \"main\" java.lang.Error: java.io.IOException: Failed to deserialize \n at org.kohsuke.github.Requester$PagingIterator.fetch(Requester.java:422)\n at org.kohsuke.github.Requester$PagingIterator.hasNext(Requester.java:389)\n at org.kohsuke.github.PagedIterator.fetch(PagedIterator.java:44)\n at org.kohsuke.github.PagedIterator.hasNext(PagedIterator.java:32)\n at java.lang.Iterable.forEach(Iterable.java:74)\n ...\nCaused by: java.io.IOException: Failed to deserialize \n at org.kohsuke.github.Requester.parse(Requester.java:489)\n at org.kohsuke.github.Requester.access$200(Requester.java:65)\n at org.kohsuke.github.Requester$PagingIterator.fetch(Requester.java:413)\n ... 7 more\nCaused by: com.fasterxml.jackson.databind.JsonMappingException: No content to map due to end-of-input\n at [Source: java.io.StringReader@4f51b3e0; line: 1, column: 1]\n at com.fasterxml.jackson.databind.JsonMappingException.from(JsonMappingException.java:164)\n at com.fasterxml.jackson.databind.ObjectMapper._initForReading(ObjectMapper.java:2931)\n at com.fasterxml.jackson.databind.ObjectMapper._readMapAndClose(ObjectMapper.java:2873)\n at com.fasterxml.jackson.databind.ObjectMapper.readValue(ObjectMapper.java:2034)\n at org.kohsuke.github.Requester.parse(Requester.java:487)\n ... 9 more\n```\n\nIt looks like the problem is when the `PagedIterator.hasNext()` is called when the repo is empty and you try to list its contributors.\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/260", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/260/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/260/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/260/events", + "html_url": "https://github.com/github-api/github-api/issues/260", + "id": 141111049, + "node_id": "MDU6SXNzdWUxNDExMTEwNDk=", + "number": 260, + "title": "github-api does not distinguish between user and organisation", + "user": { + "login": "luizkowalski", + "id": 112706, + "node_id": "MDQ6VXNlcjExMjcwNg==", + "avatar_url": "https://avatars1.githubusercontent.com/u/112706?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/luizkowalski", + "html_url": "https://github.com/luizkowalski", + "followers_url": "https://api.github.com/users/luizkowalski/followers", + "following_url": "https://api.github.com/users/luizkowalski/following{/other_user}", + "gists_url": "https://api.github.com/users/luizkowalski/gists{/gist_id}", + "starred_url": "https://api.github.com/users/luizkowalski/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/luizkowalski/subscriptions", + "organizations_url": "https://api.github.com/users/luizkowalski/orgs", + "repos_url": "https://api.github.com/users/luizkowalski/repos", + "events_url": "https://api.github.com/users/luizkowalski/events{/privacy}", + "received_events_url": "https://api.github.com/users/luizkowalski/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2016-03-15T21:56:37Z", + "updated_at": "2016-06-04T03:28:16Z", + "closed_at": "2016-06-04T03:28:16Z", + "author_association": "NONE", + "body": "if you for example, call the API giving an user instead an organization login, the API can't distinguish between them and will return an \"empty\" organization with some user data\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/259", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/259/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/259/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/259/events", + "html_url": "https://github.com/github-api/github-api/pull/259", + "id": 140417082, + "node_id": "MDExOlB1bGxSZXF1ZXN0NjI2NTIzMTM=", + "number": 259, + "title": "Animal sniffer", + "user": { + "login": "Shredder121", + "id": 4105066, + "node_id": "MDQ6VXNlcjQxMDUwNjY=", + "avatar_url": "https://avatars2.githubusercontent.com/u/4105066?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Shredder121", + "html_url": "https://github.com/Shredder121", + "followers_url": "https://api.github.com/users/Shredder121/followers", + "following_url": "https://api.github.com/users/Shredder121/following{/other_user}", + "gists_url": "https://api.github.com/users/Shredder121/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Shredder121/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Shredder121/subscriptions", + "organizations_url": "https://api.github.com/users/Shredder121/orgs", + "repos_url": "https://api.github.com/users/Shredder121/repos", + "events_url": "https://api.github.com/users/Shredder121/events{/privacy}", + "received_events_url": "https://api.github.com/users/Shredder121/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2016-03-12T21:05:22Z", + "updated_at": "2016-03-19T01:27:22Z", + "closed_at": "2016-03-19T01:27:22Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/259", + "html_url": "https://github.com/github-api/github-api/pull/259", + "diff_url": "https://github.com/github-api/github-api/pull/259.diff", + "patch_url": "https://github.com/github-api/github-api/pull/259.patch" + }, + "body": "Hello @kohsuke.\n\nSeeing as you recently set the compiler target back to 5, I wanted to help you maintain this compatibility.\nThere is still one unresolved issue:\n\n```\n--- animal-sniffer-maven-plugin:1.15:check (ensure-java-1.5-class-library) @ github-api ---\nChecking unresolved references to org.codehaus.mojo.signature:java15:1.0\nX:\\Git\\github\\github-api\\src\\main\\java\\org\\kohsuke\\github\\GHContent.java:81: Undefined reference: byte[] javax.xml.bind.DatatypeConverter.parseBase64Binary(String)\nX:\\Git\\github\\github-api\\src\\main\\java\\org\\kohsuke\\github\\GHContent.java:182: Undefined reference: String javax.xml.bind.DatatypeConverter.printBase64Binary(byte[])\nX:\\Git\\github\\github-api\\src\\main\\java\\org\\kohsuke\\github\\GHRepository.java:1165: Undefined reference: String javax.xml.bind.DatatypeConverter.printBase64Binary(byte[])\n```\n\nHope that you can integrate this.\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/258", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/258/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/258/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/258/events", + "html_url": "https://github.com/github-api/github-api/issues/258", + "id": 140008036, + "node_id": "MDU6SXNzdWUxNDAwMDgwMzY=", + "number": 258, + "title": "API Rate Limit Exceeding", + "user": { + "login": "sbhaktha", + "id": 5631150, + "node_id": "MDQ6VXNlcjU2MzExNTA=", + "avatar_url": "https://avatars2.githubusercontent.com/u/5631150?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/sbhaktha", + "html_url": "https://github.com/sbhaktha", + "followers_url": "https://api.github.com/users/sbhaktha/followers", + "following_url": "https://api.github.com/users/sbhaktha/following{/other_user}", + "gists_url": "https://api.github.com/users/sbhaktha/gists{/gist_id}", + "starred_url": "https://api.github.com/users/sbhaktha/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/sbhaktha/subscriptions", + "organizations_url": "https://api.github.com/users/sbhaktha/orgs", + "repos_url": "https://api.github.com/users/sbhaktha/repos", + "events_url": "https://api.github.com/users/sbhaktha/events{/privacy}", + "received_events_url": "https://api.github.com/users/sbhaktha/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 4, + "created_at": "2016-03-10T21:02:05Z", + "updated_at": "2016-06-04T06:34:28Z", + "closed_at": "2016-06-04T03:31:19Z", + "author_association": "NONE", + "body": "Hi @kohsuke,\n\nI would appreciate your help on this.\n\nI have used the `HttpConnector` and have specified a cache directory in my server. I am using OAuth and it looks like my quota is 5000 requests, based on this sample cache file:\n\n```\nhttps://api.github.com/repos/allenai/aristo-tables/contents/tables/weather_terms?ref=master\nGET\n2\nAuthorization: token e381d0427927aef5e2858ac06b6cb01a34b0a603\nAccept-Encoding: gzip\nHTTP/1.1 200 OK\n30\nServer: GitHub.com\nDate: Thu, 10 Mar 2016 20:57:33 GMT\nContent-Type: application/json; charset=utf-8\nTransfer-Encoding: chunked\nStatus: 200 OK\n**X-RateLimit-Limit: 5000**\nX-RateLimit-Remaining: 4689\nX-RateLimit-Reset: 1457646852\nCache-Control: private, max-age=60, s-maxage=60\nVary: Accept, Authorization, Cookie, X-GitHub-OTP\nETag: W/\"c2dc693298f7806038e984d1ac857ffb\"\nLast-Modified: Tue, 08 Mar 2016 23:54:00 GMT\nX-OAuth-Scopes: read:repo_hook, repo\nX-Accepted-OAuth-Scopes:\nX-OAuth-Client-Id: 47355241bdf02ac9122d\nX-GitHub-Media-Type: github.v3; format=json\nAccess-Control-Expose-Headers: ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval\nAccess-Control-Allow-Origin: *\nContent-Security-Policy: default-src 'none'\nStrict-Transport-Security: max-age=31536000; includeSubdomains; preload\nX-Content-Type-Options: nosniff\nX-Frame-Options: deny\nX-XSS-Protection: 1; mode=block\nVary: Accept-Encoding\nX-Served-By: 01d096e6cfe28f8aea352e988c332cd3\nContent-Encoding: gzip\nX-GitHub-Request-Id: 36D5C9C0:101B5:A516A26:56E1DFBD\nOkHttp-Selected-Protocol: http/1.1\nOkHttp-Sent-Millis: 1457643453839\nOkHttp-Received-Millis: 1457643453959\n```\n\nMy client refreshes periodically to be in sync with the repo, however, even though there has been no change in the repo, I run out of API rate limit every now and then. I thought it should just be reading from the cache. \n\nThe following call gets executed on every refresh:\n\n```\n private def getTableDirs(\n oauthAccessToken: String,\n repo: GitRepoInfo,\n tableNamesFilter: Option[Seq[String]]\n ): Seq[GHContent] = {\n blocking {\n // Create a GitHubBuilder to be able to build a GitHub object with required\n // RateLimitHandler strategy and OAuth parameters. Instead of waiting, this will\n // throw an exception immediately if the request limit is exceeded.\n val gitHubBuilder =\n new GitHubBuilder()\n .withRateLimitHandler(RateLimitHandler.FAIL)\n .withOAuthToken(oauthAccessToken)\n .withConnector(\n new OkHttpConnector(\n new OkUrlFactory(\n new OkHttpClient().setCache(cache))))\n val github = gitHubBuilder.build()\n\n // Get the requested repo.\n val repoName = repo.fork + \"/\" + repo.repo\n val repository = github.getRepository(repoName)\n // Get all directories (expected to be Table directories) from the top level of the repo.\n val allTableDirs =\n repository.getDirectoryContent(\"tables\", repo.branch).asScala.filter(_.isDirectory)\n // If there is a filter, restrict returned table directories to that set, if not return all.\n tableNamesFilter match {\n case Some(filter) =>\n val tableSet = filter.map(_.toLowerCase).toSet\n allTableDirs.filter(d => tableSet.contains(d.getName.toLowerCase))\n case None =>\n allTableDirs\n }\n }\n }\n```\n\nFurther, there are other calls like `ghContent.read` -- is each of these a separate request to Git? Even so, I wouldn't think they would be called every time but just looked up from the cache.\n\nAny ideas?\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/257", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/257/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/257/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/257/events", + "html_url": "https://github.com/github-api/github-api/issues/257", + "id": 139401088, + "node_id": "MDU6SXNzdWUxMzk0MDEwODg=", + "number": 257, + "title": "missing maven central dependencies in 1.72", + "user": { + "login": "cvogt", + "id": 274947, + "node_id": "MDQ6VXNlcjI3NDk0Nw==", + "avatar_url": "https://avatars0.githubusercontent.com/u/274947?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cvogt", + "html_url": "https://github.com/cvogt", + "followers_url": "https://api.github.com/users/cvogt/followers", + "following_url": "https://api.github.com/users/cvogt/following{/other_user}", + "gists_url": "https://api.github.com/users/cvogt/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cvogt/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cvogt/subscriptions", + "organizations_url": "https://api.github.com/users/cvogt/orgs", + "repos_url": "https://api.github.com/users/cvogt/repos", + "events_url": "https://api.github.com/users/cvogt/events{/privacy}", + "received_events_url": "https://api.github.com/users/cvogt/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 7, + "created_at": "2016-03-08T21:38:27Z", + "updated_at": "2018-01-04T16:29:51Z", + "closed_at": "2016-03-08T23:01:24Z", + "author_association": "NONE", + "body": "also see #167\n\nsome jenkins packages aren't on maven central, so resolving from maven fails\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/256", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/256/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/256/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/256/events", + "html_url": "https://github.com/github-api/github-api/issues/256", + "id": 138918972, + "node_id": "MDU6SXNzdWUxMzg5MTg5NzI=", + "number": 256, + "title": "Not able to specify client Id and client secret to connect using OAuth", + "user": { + "login": "sbhaktha", + "id": 5631150, + "node_id": "MDQ6VXNlcjU2MzExNTA=", + "avatar_url": "https://avatars2.githubusercontent.com/u/5631150?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/sbhaktha", + "html_url": "https://github.com/sbhaktha", + "followers_url": "https://api.github.com/users/sbhaktha/followers", + "following_url": "https://api.github.com/users/sbhaktha/following{/other_user}", + "gists_url": "https://api.github.com/users/sbhaktha/gists{/gist_id}", + "starred_url": "https://api.github.com/users/sbhaktha/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/sbhaktha/subscriptions", + "organizations_url": "https://api.github.com/users/sbhaktha/orgs", + "repos_url": "https://api.github.com/users/sbhaktha/repos", + "events_url": "https://api.github.com/users/sbhaktha/events{/privacy}", + "received_events_url": "https://api.github.com/users/sbhaktha/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2016-03-07T08:34:15Z", + "updated_at": "2016-03-12T07:21:29Z", + "closed_at": "2016-03-12T07:21:29Z", + "author_association": "NONE", + "body": "Hi,\n\nI would like the 5000 requests rate limit / hour offered by GitHub for authenticated requests-- to do this if you're using OAuth you need to send the client Id and secret. Please see : https://developer.github.com/v3/#increasing-the-unauthenticated-rate-limit-for-oauth-applications . But I don't see a way to do that via your API. Looks like they take only the OAuth Access token. Is there a way to pass these? Or I am stuck with the 60 requests / hour limit.\n\nAppreciate your help!\nThanks,\nSumithra\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/255", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/255/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/255/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/255/events", + "html_url": "https://github.com/github-api/github-api/issues/255", + "id": 138903807, + "node_id": "MDU6SXNzdWUxMzg5MDM4MDc=", + "number": 255, + "title": "Stuck in Github connect", + "user": { + "login": "sbhaktha", + "id": 5631150, + "node_id": "MDQ6VXNlcjU2MzExNTA=", + "avatar_url": "https://avatars2.githubusercontent.com/u/5631150?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/sbhaktha", + "html_url": "https://github.com/sbhaktha", + "followers_url": "https://api.github.com/users/sbhaktha/followers", + "following_url": "https://api.github.com/users/sbhaktha/following{/other_user}", + "gists_url": "https://api.github.com/users/sbhaktha/gists{/gist_id}", + "starred_url": "https://api.github.com/users/sbhaktha/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/sbhaktha/subscriptions", + "organizations_url": "https://api.github.com/users/sbhaktha/orgs", + "repos_url": "https://api.github.com/users/sbhaktha/repos", + "events_url": "https://api.github.com/users/sbhaktha/events{/privacy}", + "received_events_url": "https://api.github.com/users/sbhaktha/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2016-03-07T06:56:28Z", + "updated_at": "2016-03-12T07:21:51Z", + "closed_at": "2016-03-12T07:21:51Z", + "author_association": "NONE", + "body": "Hello,\n\nEvery once in a while my call to `GitHub.connectUsingOAuth` gets stuck and won't come out. I have a web client that eventually times out, but this is an issue because this is a blocking call and I don't see a way to specify a timeout so it gets out and then the web client, could issue retries.\n\nAny idea what might be going on?\n\nThanks,\nSumithra\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/254", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/254/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/254/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/254/events", + "html_url": "https://github.com/github-api/github-api/pull/254", + "id": 138814521, + "node_id": "MDExOlB1bGxSZXF1ZXN0NjE4NDg5MjA=", + "number": 254, + "title": "Better error messages", + "user": { + "login": "cyrille-leclerc", + "id": 459691, + "node_id": "MDQ6VXNlcjQ1OTY5MQ==", + "avatar_url": "https://avatars3.githubusercontent.com/u/459691?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyrille-leclerc", + "html_url": "https://github.com/cyrille-leclerc", + "followers_url": "https://api.github.com/users/cyrille-leclerc/followers", + "following_url": "https://api.github.com/users/cyrille-leclerc/following{/other_user}", + "gists_url": "https://api.github.com/users/cyrille-leclerc/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyrille-leclerc/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyrille-leclerc/subscriptions", + "organizations_url": "https://api.github.com/users/cyrille-leclerc/orgs", + "repos_url": "https://api.github.com/users/cyrille-leclerc/repos", + "events_url": "https://api.github.com/users/cyrille-leclerc/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyrille-leclerc/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 3, + "created_at": "2016-03-06T17:36:54Z", + "updated_at": "2016-03-12T06:56:44Z", + "closed_at": "2016-03-12T06:56:44Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/254", + "html_url": "https://github.com/github-api/github-api/pull/254", + "diff_url": "https://github.com/github-api/github-api/pull/254.diff", + "patch_url": "https://github.com/github-api/github-api/pull/254.patch" + }, + "body": "Better error message: \n- Introduce HttpException, subclass of IOException with url, http responseCode and http responseMessage to help exception handling.\n- Add a `FINEST` log message in `GitHub.isCredentialsValid()` in case of exception as we silently swallow this exception.\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/253", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/253/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/253/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/253/events", + "html_url": "https://github.com/github-api/github-api/pull/253", + "id": 138813542, + "node_id": "MDExOlB1bGxSZXF1ZXN0NjE4NDg2Nzc=", + "number": 253, + "title": "Fix #252: infinite loop because the \"hypertext engine\" generates invalid URLs", + "user": { + "login": "cyrille-leclerc", + "id": 459691, + "node_id": "MDQ6VXNlcjQ1OTY5MQ==", + "avatar_url": "https://avatars3.githubusercontent.com/u/459691?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyrille-leclerc", + "html_url": "https://github.com/cyrille-leclerc", + "followers_url": "https://api.github.com/users/cyrille-leclerc/followers", + "following_url": "https://api.github.com/users/cyrille-leclerc/following{/other_user}", + "gists_url": "https://api.github.com/users/cyrille-leclerc/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyrille-leclerc/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyrille-leclerc/subscriptions", + "organizations_url": "https://api.github.com/users/cyrille-leclerc/orgs", + "repos_url": "https://api.github.com/users/cyrille-leclerc/repos", + "events_url": "https://api.github.com/users/cyrille-leclerc/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyrille-leclerc/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 4, + "created_at": "2016-03-06T17:28:50Z", + "updated_at": "2016-03-12T06:59:01Z", + "closed_at": "2016-03-12T06:59:01Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/253", + "html_url": "https://github.com/github-api/github-api/pull/253", + "diff_url": "https://github.com/github-api/github-api/pull/253.diff", + "patch_url": "https://github.com/github-api/github-api/pull/253.patch" + }, + "body": "Fix #252: infinite loop because the \"hypertext engine\" may duplicate the `?` char generating invalid `https://api.github.com/notifications?all=true&page=2?all=true` instead of `https://api.github.com/notifications?all=true&page=2&all=true`. \n\nA better fix will be to prevent duplication of parameters (`all=true` in this case).\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/252", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/252/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/252/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/252/events", + "html_url": "https://github.com/github-api/github-api/issues/252", + "id": 138804642, + "node_id": "MDU6SXNzdWUxMzg4MDQ2NDI=", + "number": 252, + "title": "Infinite loop in `GHNotificationStream$1.fetch()`", + "user": { + "login": "cyrille-leclerc", + "id": 459691, + "node_id": "MDQ6VXNlcjQ1OTY5MQ==", + "avatar_url": "https://avatars3.githubusercontent.com/u/459691?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyrille-leclerc", + "html_url": "https://github.com/cyrille-leclerc", + "followers_url": "https://api.github.com/users/cyrille-leclerc/followers", + "following_url": "https://api.github.com/users/cyrille-leclerc/following{/other_user}", + "gists_url": "https://api.github.com/users/cyrille-leclerc/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyrille-leclerc/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyrille-leclerc/subscriptions", + "organizations_url": "https://api.github.com/users/cyrille-leclerc/orgs", + "repos_url": "https://api.github.com/users/cyrille-leclerc/repos", + "events_url": "https://api.github.com/users/cyrille-leclerc/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyrille-leclerc/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2016-03-06T15:54:54Z", + "updated_at": "2016-03-12T06:59:00Z", + "closed_at": "2016-03-12T06:59:00Z", + "author_association": "CONTRIBUTOR", + "body": "When I run `mvn clean verify` I often get an infinite loop of `org.kohsuke.github.Requester._to(Requester.java:244)` in `org.kohsuke.github.GHNotificationStream$1.fetch(GHNotificationStream.java:161)`.\n\nThe `tailApiUrl` is invalid with 2 occurrences of `?`:\n\n```\n\n_to (\n tailApiUrl: \"https://api.github.com/notifications?all=true&page=2?all=true\", \n type: \"GHTThread\") {\n\n links= ; rel=\"next\", ; rel=\"last\"\n\n link=https://api.github.com/notifications?all=true&page=2?all=true\n}\n```\n\nStacktrace\n\n```\n\"main\" #1 prio=5 os_prio=31 tid=0x00007f9524000000 nid=0x1703 runnable [0x00007000001ff000]\n\n java.lang.Thread.State: RUNNABLE\n at java.net.SocketInputStream.socketRead0(Native Method)\n at java.net.SocketInputStream.socketRead(SocketInputStream.java:116)\n at java.net.SocketInputStream.read(SocketInputStream.java:170)\n at java.net.SocketInputStream.read(SocketInputStream.java:141)\n at sun.security.ssl.InputRecord.readFully(InputRecord.java:465)\n at sun.security.ssl.InputRecord.read(InputRecord.java:503)\n at sun.security.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:973)\n - locked <0x0000000795a7ea90> (a java.lang.Object)\n at sun.security.ssl.SSLSocketImpl.readDataRecord(SSLSocketImpl.java:930)\n at sun.security.ssl.AppInputStream.read(AppInputStream.java:105)\n - locked <0x0000000795a9cea0> (a sun.security.ssl.AppInputStream)\n at java.io.BufferedInputStream.fill(BufferedInputStream.java:246)\n at java.io.BufferedInputStream.read1(BufferedInputStream.java:286)\n at java.io.BufferedInputStream.read(BufferedInputStream.java:345)\n - locked <0x00000007963e8ae8> (a java.io.BufferedInputStream)\n at sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:704)\n at sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:647)\n at sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1536)\n - locked <0x00000007963e6548> (a sun.net.www.protocol.https.DelegateHttpsURLConnection)\n at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1441)\n - locked <0x00000007963e6548> (a sun.net.www.protocol.https.DelegateHttpsURLConnection)\n at java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:480)\n at sun.net.www.protocol.https.HttpsURLConnectionImpl.getResponseCode(HttpsURLConnectionImpl.java:338)\n at org.kohsuke.github.Requester.parse(Requester.java:478)\n at org.kohsuke.github.Requester._to(Requester.java:236)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester._to(Requester.java:244)\n at org.kohsuke.github.Requester.to(Requester.java:203)\n at org.kohsuke.github.GHNotificationStream$1.fetch(GHNotificationStream.java:161)\n at org.kohsuke.github.GHNotificationStream$1.hasNext(GHNotificationStream.java:130)\n at org.kohsuke.github.AppTest.notifications(AppTest.java:831)\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:497)\n at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:47)\n at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)\n at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:44)\n at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)\n at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26)\n at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:271)\n at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:70)\n at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:50)\n at org.junit.runners.ParentRunner$3.run(ParentRunner.java:238)\n at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:63)\n at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:236)\n at org.junit.runners.ParentRunner.access$000(ParentRunner.java:53)\n at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:229)\n at org.junit.runners.ParentRunner.run(ParentRunner.java:309)\n at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provider.java:252)\n at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:141)\n at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:112)\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:497)\n at org.apache.maven.surefire.util.ReflectionUtils.invokeMethodWithArray(ReflectionUtils.java:189)\n at org.apache.maven.surefire.booter.ProviderFactory$ProviderProxy.invoke(ProviderFactory.java:165)\n at org.apache.maven.surefire.booter.ProviderFactory.invokeProvider(ProviderFactory.java:85)\n at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:115)\n at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:75)\n\n Locked ownable synchronizers:\n - None\n```\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/251", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/251/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/251/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/251/events", + "html_url": "https://github.com/github-api/github-api/pull/251", + "id": 138696823, + "node_id": "MDExOlB1bGxSZXF1ZXN0NjE4MTY5NzQ=", + "number": 251, + "title": "Improve checkApiUrlValidity() method ", + "user": { + "login": "recena", + "id": 1021745, + "node_id": "MDQ6VXNlcjEwMjE3NDU=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1021745?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/recena", + "html_url": "https://github.com/recena", + "followers_url": "https://api.github.com/users/recena/followers", + "following_url": "https://api.github.com/users/recena/following{/other_user}", + "gists_url": "https://api.github.com/users/recena/gists{/gist_id}", + "starred_url": "https://api.github.com/users/recena/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/recena/subscriptions", + "organizations_url": "https://api.github.com/users/recena/orgs", + "repos_url": "https://api.github.com/users/recena/repos", + "events_url": "https://api.github.com/users/recena/events{/privacy}", + "received_events_url": "https://api.github.com/users/recena/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2016-03-05T16:46:13Z", + "updated_at": "2016-03-12T07:16:44Z", + "closed_at": "2016-03-12T07:16:44Z", + "author_association": "COLLABORATOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/251", + "html_url": "https://github.com/github-api/github-api/pull/251", + "diff_url": "https://github.com/github-api/github-api/pull/251.diff", + "patch_url": "https://github.com/github-api/github-api/pull/251.patch" + }, + "body": "Part of [JENKINS-33318](https://issues.jenkins-ci.org/browse/JENKINS-33318)\n\n@reviewbybees, specially @kohsuke and @cyrille-leclerc\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/250", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/250/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/250/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/250/events", + "html_url": "https://github.com/github-api/github-api/issues/250", + "id": 137319260, + "node_id": "MDU6SXNzdWUxMzczMTkyNjA=", + "number": 250, + "title": "traceback if webhook set to \"send me everything\".", + "user": { + "login": "kad", + "id": 41858, + "node_id": "MDQ6VXNlcjQxODU4", + "avatar_url": "https://avatars1.githubusercontent.com/u/41858?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kad", + "html_url": "https://github.com/kad", + "followers_url": "https://api.github.com/users/kad/followers", + "following_url": "https://api.github.com/users/kad/following{/other_user}", + "gists_url": "https://api.github.com/users/kad/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kad/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kad/subscriptions", + "organizations_url": "https://api.github.com/users/kad/orgs", + "repos_url": "https://api.github.com/users/kad/repos", + "events_url": "https://api.github.com/users/kad/events{/privacy}", + "received_events_url": "https://api.github.com/users/kad/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2016-02-29T17:31:05Z", + "updated_at": "2016-03-01T04:56:48Z", + "closed_at": "2016-03-01T04:56:48Z", + "author_association": "NONE", + "body": "If webhook is set to \"send me everything\" instead of just push events, then github-api would crash with something similar to this: \n\n```\nWARNING: Failed to add GitHub webhook for GitHubRepositoryName[host=github.com,username=xxxx,repository=zzzzzz]\njava.lang.IllegalArgumentException: No enum constant org.kohsuke.github.GHEvent.*\n at java.lang.Enum.valueOf(Enum.java:238)\n at org.kohsuke.github.GHHook.getEvents(GHHook.java:30)\n at org.jenkinsci.plugins.github.webhook.WebhookManager$7.applyNullSafe(WebhookManager.java:258)\n at org.jenkinsci.plugins.github.webhook.WebhookManager$7.applyNullSafe(WebhookManager.java:255)\n at org.jenkinsci.plugins.github.util.misc.NullSafeFunction.apply(NullSafeFunction.java:18)\n\n\n```\n\n``` json\n \"events\": [\n \"*\"\n ],\n```\n\nin theory, org.kohsuke.github.GHHook.getEvents should be able to see if \"e\" == \"*\", and skip it or add all known enums to return set... not sure about logic/usage of that function in different places.\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/249", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/249/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/249/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/249/events", + "html_url": "https://github.com/github-api/github-api/pull/249", + "id": 136320347, + "node_id": "MDExOlB1bGxSZXF1ZXN0NjA2NDM3OTM=", + "number": 249, + "title": "Added getHtmlUrl() to GHCommit", + "user": { + "login": "zapelin", + "id": 1540766, + "node_id": "MDQ6VXNlcjE1NDA3NjY=", + "avatar_url": "https://avatars0.githubusercontent.com/u/1540766?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/zapelin", + "html_url": "https://github.com/zapelin", + "followers_url": "https://api.github.com/users/zapelin/followers", + "following_url": "https://api.github.com/users/zapelin/following{/other_user}", + "gists_url": "https://api.github.com/users/zapelin/gists{/gist_id}", + "starred_url": "https://api.github.com/users/zapelin/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/zapelin/subscriptions", + "organizations_url": "https://api.github.com/users/zapelin/orgs", + "repos_url": "https://api.github.com/users/zapelin/repos", + "events_url": "https://api.github.com/users/zapelin/events{/privacy}", + "received_events_url": "https://api.github.com/users/zapelin/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 4, + "created_at": "2016-02-25T08:48:04Z", + "updated_at": "2016-03-01T04:48:19Z", + "closed_at": "2016-03-01T04:48:19Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/249", + "html_url": "https://github.com/github-api/github-api/pull/249", + "diff_url": "https://github.com/github-api/github-api/pull/249.diff", + "patch_url": "https://github.com/github-api/github-api/pull/249.patch" + }, + "body": "" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/248", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/248/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/248/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/248/events", + "html_url": "https://github.com/github-api/github-api/pull/248", + "id": 135138155, + "node_id": "MDExOlB1bGxSZXF1ZXN0NjAwNjYwODM=", + "number": 248, + "title": "Populate commit with data for getCommitShortInfo", + "user": { + "login": "daniel-beck", + "id": 1831569, + "node_id": "MDQ6VXNlcjE4MzE1Njk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1831569?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/daniel-beck", + "html_url": "https://github.com/daniel-beck", + "followers_url": "https://api.github.com/users/daniel-beck/followers", + "following_url": "https://api.github.com/users/daniel-beck/following{/other_user}", + "gists_url": "https://api.github.com/users/daniel-beck/gists{/gist_id}", + "starred_url": "https://api.github.com/users/daniel-beck/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/daniel-beck/subscriptions", + "organizations_url": "https://api.github.com/users/daniel-beck/orgs", + "repos_url": "https://api.github.com/users/daniel-beck/repos", + "events_url": "https://api.github.com/users/daniel-beck/events{/privacy}", + "received_events_url": "https://api.github.com/users/daniel-beck/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2016-02-21T00:27:43Z", + "updated_at": "2016-03-01T04:47:53Z", + "closed_at": "2016-03-01T04:47:53Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/248", + "html_url": "https://github.com/github-api/github-api/pull/248", + "diff_url": "https://github.com/github-api/github-api/pull/248.diff", + "patch_url": "https://github.com/github-api/github-api/pull/248.patch" + }, + "body": "" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/247", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/247/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/247/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/247/events", + "html_url": "https://github.com/github-api/github-api/pull/247", + "id": 132937659, + "node_id": "MDExOlB1bGxSZXF1ZXN0NTkwMTI4NjQ=", + "number": 247, + "title": "Use GET method to fetch the GHontent's content", + "user": { + "login": "Shredder121", + "id": 4105066, + "node_id": "MDQ6VXNlcjQxMDUwNjY=", + "avatar_url": "https://avatars2.githubusercontent.com/u/4105066?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Shredder121", + "html_url": "https://github.com/Shredder121", + "followers_url": "https://api.github.com/users/Shredder121/followers", + "following_url": "https://api.github.com/users/Shredder121/following{/other_user}", + "gists_url": "https://api.github.com/users/Shredder121/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Shredder121/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Shredder121/subscriptions", + "organizations_url": "https://api.github.com/users/Shredder121/orgs", + "repos_url": "https://api.github.com/users/Shredder121/repos", + "events_url": "https://api.github.com/users/Shredder121/events{/privacy}", + "received_events_url": "https://api.github.com/users/Shredder121/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 5, + "created_at": "2016-02-11T10:36:48Z", + "updated_at": "2016-04-01T07:43:13Z", + "closed_at": "2016-03-12T07:17:43Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/247", + "html_url": "https://github.com/github-api/github-api/pull/247", + "diff_url": "https://github.com/github-api/github-api/pull/247.diff", + "patch_url": "https://github.com/github-api/github-api/pull/247.patch" + }, + "body": "This is a little more cache-friendly.\n\nLet me know what you think.\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/246", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/246/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/246/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/246/events", + "html_url": "https://github.com/github-api/github-api/issues/246", + "id": 130609372, + "node_id": "MDU6SXNzdWUxMzA2MDkzNzI=", + "number": 246, + "title": "Error on github pull request populate", + "user": { + "login": "glebk", + "id": 4512057, + "node_id": "MDQ6VXNlcjQ1MTIwNTc=", + "avatar_url": "https://avatars0.githubusercontent.com/u/4512057?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/glebk", + "html_url": "https://github.com/glebk", + "followers_url": "https://api.github.com/users/glebk/followers", + "following_url": "https://api.github.com/users/glebk/following{/other_user}", + "gists_url": "https://api.github.com/users/glebk/gists{/gist_id}", + "starred_url": "https://api.github.com/users/glebk/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/glebk/subscriptions", + "organizations_url": "https://api.github.com/users/glebk/orgs", + "repos_url": "https://api.github.com/users/glebk/repos", + "events_url": "https://api.github.com/users/glebk/events{/privacy}", + "received_events_url": "https://api.github.com/users/glebk/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2016-02-02T08:20:15Z", + "updated_at": "2016-02-02T12:04:53Z", + "closed_at": "2016-02-02T12:04:53Z", + "author_association": "NONE", + "body": "Hi,\n\nWhile trying to use GitHub Pull Request Builder v1.30 with GitHub API Plugin v1.72 we are seeing the following error:\n\n```\nFeb 02, 2016 9:13:02 AM FINEST org.jenkinsci.plugins.ghprb.GhprbPullRequest Running the build\nFeb 02, 2016 9:13:02 AM FINEST org.jenkinsci.plugins.ghprb.GhprbPullRequest PR is not null, checking if mergable\nFeb 02, 2016 9:13:02 AM SEVERE org.jenkinsci.plugins.ghprb.GhprbPullRequest checkMergeable Couldn't obtain mergeable status.\n\ncom.fasterxml.jackson.databind.JsonMappingException: No content to map due to end-of-input\n at [Source: java.io.StringReader@3a506e2d; line: 1, column: 1]\n at com.fasterxml.jackson.databind.JsonMappingException.from(JsonMappingException.java:164)\n at com.fasterxml.jackson.databind.ObjectReader._initForReading(ObjectReader.java:1298)\n at com.fasterxml.jackson.databind.ObjectReader._bindAndClose(ObjectReader.java:1199)\n at com.fasterxml.jackson.databind.ObjectReader.readValue(ObjectReader.java:830)\n at org.kohsuke.github.Requester.parse(Requester.java:492)\n at org.kohsuke.github.Requester._to(Requester.java:236)\n at org.kohsuke.github.Requester.to(Requester.java:210)\n at org.kohsuke.github.GHPullRequest.populate(GHPullRequest.java:205)\n at org.kohsuke.github.GHPullRequest.getMergeable(GHPullRequest.java:170)\n at org.jenkinsci.plugins.ghprb.GhprbPullRequest.checkMergeable(GhprbPullRequest.java:396)\n at org.jenkinsci.plugins.ghprb.GhprbPullRequest.tryBuild(GhprbPullRequest.java:274)\n at org.jenkinsci.plugins.ghprb.GhprbPullRequest.check(GhprbPullRequest.java:150)\n at org.jenkinsci.plugins.ghprb.GhprbRepository.check(GhprbRepository.java:142)\n at org.jenkinsci.plugins.ghprb.GhprbRepository.check(GhprbRepository.java:126)\n at org.jenkinsci.plugins.ghprb.Ghprb.run(Ghprb.java:119)\n```\n\nWe are able to verify that the plugins have connectivity and permissions to the pull requests.\n\nPlease let me know what additional information I can provide to help debug this.\n\nThanks!\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/245", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/245/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/245/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/245/events", + "html_url": "https://github.com/github-api/github-api/pull/245", + "id": 127800177, + "node_id": "MDExOlB1bGxSZXF1ZXN0NTY2Nzc5NDA=", + "number": 245, + "title": "Fix error when creating email service hook", + "user": { + "login": "daniel-beck", + "id": 1831569, + "node_id": "MDQ6VXNlcjE4MzE1Njk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1831569?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/daniel-beck", + "html_url": "https://github.com/daniel-beck", + "followers_url": "https://api.github.com/users/daniel-beck/followers", + "following_url": "https://api.github.com/users/daniel-beck/following{/other_user}", + "gists_url": "https://api.github.com/users/daniel-beck/gists{/gist_id}", + "starred_url": "https://api.github.com/users/daniel-beck/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/daniel-beck/subscriptions", + "organizations_url": "https://api.github.com/users/daniel-beck/orgs", + "repos_url": "https://api.github.com/users/daniel-beck/repos", + "events_url": "https://api.github.com/users/daniel-beck/events{/privacy}", + "received_events_url": "https://api.github.com/users/daniel-beck/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2016-01-20T22:34:46Z", + "updated_at": "2016-04-04T22:12:41Z", + "closed_at": "2016-03-01T04:45:40Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/245", + "html_url": "https://github.com/github-api/github-api/pull/245", + "diff_url": "https://github.com/github-api/github-api/pull/245.diff", + "patch_url": "https://github.com/github-api/github-api/pull/245.patch" + }, + "body": "The Jenkins IRC bot started throwing \n\n`{\"message\":\"Invalid request.\\n\\nFor 'properties/active', \\\"true\\\" is not a boolean.\",\"documentation_url\":\"https://developer.github.com/v3/repos/hooks/#create-a-hook\"}`\n\nUntested.\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/244", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/244/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/244/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/244/events", + "html_url": "https://github.com/github-api/github-api/pull/244", + "id": 127320704, + "node_id": "MDExOlB1bGxSZXF1ZXN0NTYzOTcyNTE=", + "number": 244, + "title": "Minor amendment to the documentation", + "user": { + "login": "benbek", + "id": 6597271, + "node_id": "MDQ6VXNlcjY1OTcyNzE=", + "avatar_url": "https://avatars3.githubusercontent.com/u/6597271?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/benbek", + "html_url": "https://github.com/benbek", + "followers_url": "https://api.github.com/users/benbek/followers", + "following_url": "https://api.github.com/users/benbek/following{/other_user}", + "gists_url": "https://api.github.com/users/benbek/gists{/gist_id}", + "starred_url": "https://api.github.com/users/benbek/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/benbek/subscriptions", + "organizations_url": "https://api.github.com/users/benbek/orgs", + "repos_url": "https://api.github.com/users/benbek/repos", + "events_url": "https://api.github.com/users/benbek/events{/privacy}", + "received_events_url": "https://api.github.com/users/benbek/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2016-01-18T22:08:40Z", + "updated_at": "2016-03-01T03:57:47Z", + "closed_at": "2016-03-01T03:57:47Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/244", + "html_url": "https://github.com/github-api/github-api/pull/244", + "diff_url": "https://github.com/github-api/github-api/pull/244.diff", + "patch_url": "https://github.com/github-api/github-api/pull/244.patch" + }, + "body": "The status reported by GitHub for deleting a file is actually \"removed\", not \"deleted\".\nCan be see here:\n![Example](http://i.imgur.com/bKca1B1.png)\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/243", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/243/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/243/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/243/events", + "html_url": "https://github.com/github-api/github-api/issues/243", + "id": 125329450, + "node_id": "MDU6SXNzdWUxMjUzMjk0NTA=", + "number": 243, + "title": "How to avoid connection timeout while using github.listallpublicrepositories ", + "user": { + "login": "arjunvijayvargiya", + "id": 7685777, + "node_id": "MDQ6VXNlcjc2ODU3Nzc=", + "avatar_url": "https://avatars1.githubusercontent.com/u/7685777?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/arjunvijayvargiya", + "html_url": "https://github.com/arjunvijayvargiya", + "followers_url": "https://api.github.com/users/arjunvijayvargiya/followers", + "following_url": "https://api.github.com/users/arjunvijayvargiya/following{/other_user}", + "gists_url": "https://api.github.com/users/arjunvijayvargiya/gists{/gist_id}", + "starred_url": "https://api.github.com/users/arjunvijayvargiya/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/arjunvijayvargiya/subscriptions", + "organizations_url": "https://api.github.com/users/arjunvijayvargiya/orgs", + "repos_url": "https://api.github.com/users/arjunvijayvargiya/repos", + "events_url": "https://api.github.com/users/arjunvijayvargiya/events{/privacy}", + "received_events_url": "https://api.github.com/users/arjunvijayvargiya/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2016-01-07T06:04:15Z", + "updated_at": "2016-03-01T04:49:48Z", + "closed_at": "2016-03-01T04:49:48Z", + "author_association": "NONE", + "body": "" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/242", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/242/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/242/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/242/events", + "html_url": "https://github.com/github-api/github-api/issues/242", + "id": 125151547, + "node_id": "MDU6SXNzdWUxMjUxNTE1NDc=", + "number": 242, + "title": "myissues", + "user": { + "login": "lokies", + "id": 14835338, + "node_id": "MDQ6VXNlcjE0ODM1MzM4", + "avatar_url": "https://avatars2.githubusercontent.com/u/14835338?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/lokies", + "html_url": "https://github.com/lokies", + "followers_url": "https://api.github.com/users/lokies/followers", + "following_url": "https://api.github.com/users/lokies/following{/other_user}", + "gists_url": "https://api.github.com/users/lokies/gists{/gist_id}", + "starred_url": "https://api.github.com/users/lokies/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/lokies/subscriptions", + "organizations_url": "https://api.github.com/users/lokies/orgs", + "repos_url": "https://api.github.com/users/lokies/repos", + "events_url": "https://api.github.com/users/lokies/events{/privacy}", + "received_events_url": "https://api.github.com/users/lokies/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2016-01-06T10:34:05Z", + "updated_at": "2016-03-01T04:48:31Z", + "closed_at": "2016-03-01T04:48:31Z", + "author_association": "NONE", + "body": "myissues\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/241", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/241/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/241/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/241/events", + "html_url": "https://github.com/github-api/github-api/issues/241", + "id": 124748917, + "node_id": "MDU6SXNzdWUxMjQ3NDg5MTc=", + "number": 241, + "title": "How to get statistics using this library", + "user": { + "login": "arjunvijayvargiya", + "id": 7685777, + "node_id": "MDQ6VXNlcjc2ODU3Nzc=", + "avatar_url": "https://avatars1.githubusercontent.com/u/7685777?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/arjunvijayvargiya", + "html_url": "https://github.com/arjunvijayvargiya", + "followers_url": "https://api.github.com/users/arjunvijayvargiya/followers", + "following_url": "https://api.github.com/users/arjunvijayvargiya/following{/other_user}", + "gists_url": "https://api.github.com/users/arjunvijayvargiya/gists{/gist_id}", + "starred_url": "https://api.github.com/users/arjunvijayvargiya/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/arjunvijayvargiya/subscriptions", + "organizations_url": "https://api.github.com/users/arjunvijayvargiya/orgs", + "repos_url": "https://api.github.com/users/arjunvijayvargiya/repos", + "events_url": "https://api.github.com/users/arjunvijayvargiya/events{/privacy}", + "received_events_url": "https://api.github.com/users/arjunvijayvargiya/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2016-01-04T12:13:36Z", + "updated_at": "2016-03-12T07:22:15Z", + "closed_at": "2016-03-12T07:22:15Z", + "author_association": "NONE", + "body": "Hi @kohsuke ,\n I am using this library for long in implementing many of my projects. I am facing an issue as I am not able to get statistics of a particular user in a repo? How to do that?\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/240", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/240/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/240/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/240/events", + "html_url": "https://github.com/github-api/github-api/pull/240", + "id": 121940825, + "node_id": "MDExOlB1bGxSZXF1ZXN0NTM1MDgzNjA=", + "number": 240, + "title": "Support for auto_init", + "user": { + "login": "dlovera", + "id": 4728774, + "node_id": "MDQ6VXNlcjQ3Mjg3NzQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/4728774?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dlovera", + "html_url": "https://github.com/dlovera", + "followers_url": "https://api.github.com/users/dlovera/followers", + "following_url": "https://api.github.com/users/dlovera/following{/other_user}", + "gists_url": "https://api.github.com/users/dlovera/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dlovera/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dlovera/subscriptions", + "organizations_url": "https://api.github.com/users/dlovera/orgs", + "repos_url": "https://api.github.com/users/dlovera/repos", + "events_url": "https://api.github.com/users/dlovera/events{/privacy}", + "received_events_url": "https://api.github.com/users/dlovera/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2015-12-13T20:13:49Z", + "updated_at": "2016-03-01T03:57:31Z", + "closed_at": "2016-03-01T03:57:31Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/240", + "html_url": "https://github.com/github-api/github-api/pull/240", + "diff_url": "https://github.com/github-api/github-api/pull/240.diff", + "patch_url": "https://github.com/github-api/github-api/pull/240.patch" + }, + "body": "Add support for auto_init parameter in repository creation\nhttps://developer.github.com/changes/2012-09-28-auto-init-for-repositories/\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/239", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/239/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/239/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/239/events", + "html_url": "https://github.com/github-api/github-api/issues/239", + "id": 120577245, + "node_id": "MDU6SXNzdWUxMjA1NzcyNDU=", + "number": 239, + "title": "Question - Stargazers and stars release.", + "user": { + "login": "pedrovgs", + "id": 4030704, + "node_id": "MDQ6VXNlcjQwMzA3MDQ=", + "avatar_url": "https://avatars2.githubusercontent.com/u/4030704?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/pedrovgs", + "html_url": "https://github.com/pedrovgs", + "followers_url": "https://api.github.com/users/pedrovgs/followers", + "following_url": "https://api.github.com/users/pedrovgs/following{/other_user}", + "gists_url": "https://api.github.com/users/pedrovgs/gists{/gist_id}", + "starred_url": "https://api.github.com/users/pedrovgs/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/pedrovgs/subscriptions", + "organizations_url": "https://api.github.com/users/pedrovgs/orgs", + "repos_url": "https://api.github.com/users/pedrovgs/repos", + "events_url": "https://api.github.com/users/pedrovgs/events{/privacy}", + "received_events_url": "https://api.github.com/users/pedrovgs/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2015-12-05T18:13:51Z", + "updated_at": "2015-12-10T15:27:31Z", + "closed_at": "2015-12-10T15:27:31Z", + "author_association": "NONE", + "body": "Hi @kohsuke! First of all, thanks for this library it's really easy to use and really useful :)\n\nI'd like to know when you are going to publish [the last functionality you've added to the project](https://github.com/kohsuke/github-api/commit/2603b5a402a3f0669f5828c316c4d589cf1d1e1b). I'm working on a project where I need this awesome feature :).\n\nThanks!\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/238", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/238/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/238/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/238/events", + "html_url": "https://github.com/github-api/github-api/issues/238", + "id": 120195524, + "node_id": "MDU6SXNzdWUxMjAxOTU1MjQ=", + "number": 238, + "title": "GHEventInfo getPayload", + "user": { + "login": "dsafaric", + "id": 8641151, + "node_id": "MDQ6VXNlcjg2NDExNTE=", + "avatar_url": "https://avatars0.githubusercontent.com/u/8641151?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dsafaric", + "html_url": "https://github.com/dsafaric", + "followers_url": "https://api.github.com/users/dsafaric/followers", + "following_url": "https://api.github.com/users/dsafaric/following{/other_user}", + "gists_url": "https://api.github.com/users/dsafaric/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dsafaric/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dsafaric/subscriptions", + "organizations_url": "https://api.github.com/users/dsafaric/orgs", + "repos_url": "https://api.github.com/users/dsafaric/repos", + "events_url": "https://api.github.com/users/dsafaric/events{/privacy}", + "received_events_url": "https://api.github.com/users/dsafaric/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2015-12-03T15:24:17Z", + "updated_at": "2016-03-01T04:50:11Z", + "closed_at": "2016-03-01T04:50:11Z", + "author_association": "NONE", + "body": "The problem in the getPayload method when used in Scala e.g. is when we want to pattern match against a type.\n\nAs by definition, getPayload returns a derivate of a GHEventPayload abstract class. This derivates can either be of type Push, IssueComment or PullRequest.\n\nWhile in order to get the payload of an event we must provide the type of the derivate class such as Push, meaning that we cannot pattern match for the PushEvent type in order to extract the payload of the event. \n\nFor example:\n\n```\noverride def onNext(e : GHEventInfo) = e.getType match {\n case GHEvent.PUSH => PushEvent.handle(e)\n case _ => // All cases not supported yet\n}\n```\n\npattern matches against a type, in our case it can be an event of type Push. Once it is matched against this type, we cannot refer to getPayload because we do not know the type of it, hence we are unable to pattern match against it.\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/237", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/237/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/237/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/237/events", + "html_url": "https://github.com/github-api/github-api/pull/237", + "id": 119722892, + "node_id": "MDExOlB1bGxSZXF1ZXN0NTIyNjA4NDM=", + "number": 237, + "title": "Use default timeouts for URLConnections", + "user": { + "login": "olivergondza", + "id": 206841, + "node_id": "MDQ6VXNlcjIwNjg0MQ==", + "avatar_url": "https://avatars0.githubusercontent.com/u/206841?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/olivergondza", + "html_url": "https://github.com/olivergondza", + "followers_url": "https://api.github.com/users/olivergondza/followers", + "following_url": "https://api.github.com/users/olivergondza/following{/other_user}", + "gists_url": "https://api.github.com/users/olivergondza/gists{/gist_id}", + "starred_url": "https://api.github.com/users/olivergondza/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/olivergondza/subscriptions", + "organizations_url": "https://api.github.com/users/olivergondza/orgs", + "repos_url": "https://api.github.com/users/olivergondza/repos", + "events_url": "https://api.github.com/users/olivergondza/events{/privacy}", + "received_events_url": "https://api.github.com/users/olivergondza/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2015-12-01T14:00:29Z", + "updated_at": "2015-12-01T14:18:29Z", + "closed_at": "2015-12-01T14:18:29Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/237", + "html_url": "https://github.com/github-api/github-api/pull/237", + "diff_url": "https://github.com/github-api/github-api/pull/237.diff", + "patch_url": "https://github.com/github-api/github-api/pull/237.patch" + }, + "body": "[JENKINS-31827](https://issues.jenkins-ci.org/browse/JENKINS-31827)\n\nI suggest to fix it in github-api so all clients will be reasonably safe and it seems like the best place to maintain reasonable defaults for the service.\n" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/__files/repositories_617210_issues-e084b859-6ef7-4657-ad19-0c0b1a5f9e4d.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/__files/repositories_617210_issues-e084b859-6ef7-4657-ad19-0c0b1a5f9e4d.json new file mode 100644 index 0000000000..37afd142c2 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/__files/repositories_617210_issues-e084b859-6ef7-4657-ad19-0c0b1a5f9e4d.json @@ -0,0 +1,1436 @@ +[ + { + "url": "https://api.github.com/repos/github-api/github-api/issues/403", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/403/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/403/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/403/events", + "html_url": "https://github.com/github-api/github-api/issues/403", + "id": 279706121, + "node_id": "MDU6SXNzdWUyNzk3MDYxMjE=", + "number": 403, + "title": "gitHttpTransportUrl Rename", + "user": { + "login": "mhohmeier", + "id": 18189053, + "node_id": "MDQ6VXNlcjE4MTg5MDUz", + "avatar_url": "https://avatars0.githubusercontent.com/u/18189053?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mhohmeier", + "html_url": "https://github.com/mhohmeier", + "followers_url": "https://api.github.com/users/mhohmeier/followers", + "following_url": "https://api.github.com/users/mhohmeier/following{/other_user}", + "gists_url": "https://api.github.com/users/mhohmeier/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mhohmeier/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mhohmeier/subscriptions", + "organizations_url": "https://api.github.com/users/mhohmeier/orgs", + "repos_url": "https://api.github.com/users/mhohmeier/repos", + "events_url": "https://api.github.com/users/mhohmeier/events{/privacy}", + "received_events_url": "https://api.github.com/users/mhohmeier/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2017-12-06T10:45:34Z", + "updated_at": "2018-01-13T05:29:05Z", + "closed_at": "2018-01-13T05:29:05Z", + "author_association": "NONE", + "body": "Just wanted to mention that in GHRepository in line 176, the method is named \"gitHttpTransportUrl\" which is quite confusing given the other methods are named like \"getSvnUrl\", \"getGitTransportUrl\" etc.\r\nIf this is just a typo, i would recommend adding \"getHttpTransportUrl\" since i looked quite some time for that method..." + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/402", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/402/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/402/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/402/events", + "html_url": "https://github.com/github-api/github-api/pull/402", + "id": 279055786, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTU2MjQxMDA2", + "number": 402, + "title": "tune for sonarsource fork", + "user": { + "login": "sns-seb", + "id": 11717580, + "node_id": "MDQ6VXNlcjExNzE3NTgw", + "avatar_url": "https://avatars2.githubusercontent.com/u/11717580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/sns-seb", + "html_url": "https://github.com/sns-seb", + "followers_url": "https://api.github.com/users/sns-seb/followers", + "following_url": "https://api.github.com/users/sns-seb/following{/other_user}", + "gists_url": "https://api.github.com/users/sns-seb/gists{/gist_id}", + "starred_url": "https://api.github.com/users/sns-seb/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/sns-seb/subscriptions", + "organizations_url": "https://api.github.com/users/sns-seb/orgs", + "repos_url": "https://api.github.com/users/sns-seb/repos", + "events_url": "https://api.github.com/users/sns-seb/events{/privacy}", + "received_events_url": "https://api.github.com/users/sns-seb/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2017-12-04T16:20:29Z", + "updated_at": "2017-12-04T16:40:46Z", + "closed_at": "2017-12-04T16:40:46Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/402", + "html_url": "https://github.com/github-api/github-api/pull/402", + "diff_url": "https://github.com/github-api/github-api/pull/402.diff", + "patch_url": "https://github.com/github-api/github-api/pull/402.patch" + }, + "body": "" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/401", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/401/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/401/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/401/events", + "html_url": "https://github.com/github-api/github-api/pull/401", + "id": 275491005, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTUzNzI4NDg4", + "number": 401, + "title": "Replace \"new Error\" with GHException", + "user": { + "login": "bjoernhaeuser", + "id": 1449155, + "node_id": "MDQ6VXNlcjE0NDkxNTU=", + "avatar_url": "https://avatars1.githubusercontent.com/u/1449155?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bjoernhaeuser", + "html_url": "https://github.com/bjoernhaeuser", + "followers_url": "https://api.github.com/users/bjoernhaeuser/followers", + "following_url": "https://api.github.com/users/bjoernhaeuser/following{/other_user}", + "gists_url": "https://api.github.com/users/bjoernhaeuser/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bjoernhaeuser/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bjoernhaeuser/subscriptions", + "organizations_url": "https://api.github.com/users/bjoernhaeuser/orgs", + "repos_url": "https://api.github.com/users/bjoernhaeuser/repos", + "events_url": "https://api.github.com/users/bjoernhaeuser/events{/privacy}", + "received_events_url": "https://api.github.com/users/bjoernhaeuser/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2017-11-20T20:37:58Z", + "updated_at": "2018-01-13T09:50:35Z", + "closed_at": "2018-01-13T05:02:00Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/401", + "html_url": "https://github.com/github-api/github-api/pull/401", + "diff_url": "https://github.com/github-api/github-api/pull/401.diff", + "patch_url": "https://github.com/github-api/github-api/pull/401.patch" + }, + "body": "This is a possible fix for #400\r\n\r\nReasoning:\r\n\r\n`GHException` is used in other places for similar purposes, therefore I went down that road. Does the changes make sense?\r\n\r\nCloses #400" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/400", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/400/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/400/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/400/events", + "html_url": "https://github.com/github-api/github-api/issues/400", + "id": 275274520, + "node_id": "MDU6SXNzdWUyNzUyNzQ1MjA=", + "number": 400, + "title": "Do not throw new Error()", + "user": { + "login": "samrocketman", + "id": 875669, + "node_id": "MDQ6VXNlcjg3NTY2OQ==", + "avatar_url": "https://avatars0.githubusercontent.com/u/875669?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/samrocketman", + "html_url": "https://github.com/samrocketman", + "followers_url": "https://api.github.com/users/samrocketman/followers", + "following_url": "https://api.github.com/users/samrocketman/following{/other_user}", + "gists_url": "https://api.github.com/users/samrocketman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/samrocketman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/samrocketman/subscriptions", + "organizations_url": "https://api.github.com/users/samrocketman/orgs", + "repos_url": "https://api.github.com/users/samrocketman/repos", + "events_url": "https://api.github.com/users/samrocketman/events{/privacy}", + "received_events_url": "https://api.github.com/users/samrocketman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 5, + "created_at": "2017-11-20T08:38:20Z", + "updated_at": "2018-01-13T05:02:28Z", + "closed_at": "2018-01-13T05:02:28Z", + "author_association": "NONE", + "body": "https://github.com/kohsuke/github-api/search?utf8=%E2%9C%93&q=%22new+Error%22&type=\r\n\r\nIn general, this seems to be a bad idea. See also comments in https://github.com/jenkinsci/ghprb-plugin/pull/570. This PR for the GHPRB plugin is left with the dilemma of catching throwable because there's no other choice since this API throws `java.lang.Error`.\r\n\r\nA quote from `java.lang.Error` javadoc:\r\n\r\n> An `Error` is a subclass of `Throwable` that indicates serious problems that a reasonable application should not try to catch.\r\n\r\nInstead, consider throwing `IllegalStateException`." + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/399", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/399/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/399/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/399/events", + "html_url": "https://github.com/github-api/github-api/issues/399", + "id": 274607892, + "node_id": "MDU6SXNzdWUyNzQ2MDc4OTI=", + "number": 399, + "title": "GHPullRequest.getMergeable() never returns True", + "user": { + "login": "jamesdh", + "id": 1085322, + "node_id": "MDQ6VXNlcjEwODUzMjI=", + "avatar_url": "https://avatars1.githubusercontent.com/u/1085322?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jamesdh", + "html_url": "https://github.com/jamesdh", + "followers_url": "https://api.github.com/users/jamesdh/followers", + "following_url": "https://api.github.com/users/jamesdh/following{/other_user}", + "gists_url": "https://api.github.com/users/jamesdh/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jamesdh/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jamesdh/subscriptions", + "organizations_url": "https://api.github.com/users/jamesdh/orgs", + "repos_url": "https://api.github.com/users/jamesdh/repos", + "events_url": "https://api.github.com/users/jamesdh/events{/privacy}", + "received_events_url": "https://api.github.com/users/jamesdh/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 4, + "created_at": "2017-11-16T17:56:44Z", + "updated_at": "2018-02-07T08:40:41Z", + "closed_at": "2018-01-13T05:33:14Z", + "author_association": "NONE", + "body": "This used to work, but a change in the last couple months seems to have broken this for us. \r\n\r\nWe have some Jenkins Pipeline code that does some automatic PR creation + merging for specific use cases. Initially when creating the PR, GitHub isn't always immediately able to act on it, so we would check if it were mergeable before actually attempting to merge:\r\n\r\n```\r\nGHPullRequest pull = repo.createPullRequest(\"Release $version\", \"master\", \"production\", body)\r\nwhile(!pull.getMergeable()) {\r\n echo \"PR not yet mergeable, retrying...\"\r\n}\r\npull.merge(\"Merged & released via [${env.BUILD_NUMBER}](${env.BUILD_URL})\", pull.getHead().getSha())\r\n```\r\n\r\nNow however, pull.getMergeable() never returns true if it returns false the first time it is called (which is basically every time), so it just sits in that loop, retrying. \r\n\r\nAgain, this only broke after we recently updated all of our plugins on our Jenkins instance, so it seems a recent change is causing this but I've been unable to identify what it might be in the recent history. " + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/398", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/398/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/398/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/398/events", + "html_url": "https://github.com/github-api/github-api/pull/398", + "id": 274393782, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTUyOTUwNzEw", + "number": 398, + "title": "Fix: state for REQUEST_CHANGES is CHANGES_REQUESTED", + "user": { + "login": "ubolonton", + "id": 198359, + "node_id": "MDQ6VXNlcjE5ODM1OQ==", + "avatar_url": "https://avatars0.githubusercontent.com/u/198359?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ubolonton", + "html_url": "https://github.com/ubolonton", + "followers_url": "https://api.github.com/users/ubolonton/followers", + "following_url": "https://api.github.com/users/ubolonton/following{/other_user}", + "gists_url": "https://api.github.com/users/ubolonton/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ubolonton/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ubolonton/subscriptions", + "organizations_url": "https://api.github.com/users/ubolonton/orgs", + "repos_url": "https://api.github.com/users/ubolonton/repos", + "events_url": "https://api.github.com/users/ubolonton/events{/privacy}", + "received_events_url": "https://api.github.com/users/ubolonton/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2017-11-16T04:48:57Z", + "updated_at": "2018-01-13T18:03:41Z", + "closed_at": "2018-01-13T18:03:41Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/398", + "html_url": "https://github.com/github-api/github-api/pull/398", + "diff_url": "https://github.com/github-api/github-api/pull/398.diff", + "patch_url": "https://github.com/github-api/github-api/pull/398.patch" + }, + "body": "https://developer.github.com/v3/pulls/reviews/" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/397", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/397/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/397/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/397/events", + "html_url": "https://github.com/github-api/github-api/pull/397", + "id": 274385542, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTUyOTQ0ODk5", + "number": 397, + "title": "Add GHIssue#setMilestone", + "user": { + "login": "mizoguche", + "id": 1318463, + "node_id": "MDQ6VXNlcjEzMTg0NjM=", + "avatar_url": "https://avatars0.githubusercontent.com/u/1318463?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mizoguche", + "html_url": "https://github.com/mizoguche", + "followers_url": "https://api.github.com/users/mizoguche/followers", + "following_url": "https://api.github.com/users/mizoguche/following{/other_user}", + "gists_url": "https://api.github.com/users/mizoguche/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mizoguche/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mizoguche/subscriptions", + "organizations_url": "https://api.github.com/users/mizoguche/orgs", + "repos_url": "https://api.github.com/users/mizoguche/repos", + "events_url": "https://api.github.com/users/mizoguche/events{/privacy}", + "received_events_url": "https://api.github.com/users/mizoguche/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2017-11-16T03:46:36Z", + "updated_at": "2018-01-13T05:04:19Z", + "closed_at": "2018-01-13T05:04:19Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/397", + "html_url": "https://github.com/github-api/github-api/pull/397", + "diff_url": "https://github.com/github-api/github-api/pull/397.diff", + "patch_url": "https://github.com/github-api/github-api/pull/397.patch" + }, + "body": "Add setMilestone method to GHIssue class.\r\n\r\nIt seems that there is no method to update the milestone of an issue." + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/396", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/396/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/396/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/396/events", + "html_url": "https://github.com/github-api/github-api/pull/396", + "id": 272734975, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTUxNzcwODE4", + "number": 396, + "title": "[fix] GHPerson: check if root is null", + "user": { + "login": "Rechi", + "id": 5367567, + "node_id": "MDQ6VXNlcjUzNjc1Njc=", + "avatar_url": "https://avatars3.githubusercontent.com/u/5367567?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Rechi", + "html_url": "https://github.com/Rechi", + "followers_url": "https://api.github.com/users/Rechi/followers", + "following_url": "https://api.github.com/users/Rechi/following{/other_user}", + "gists_url": "https://api.github.com/users/Rechi/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Rechi/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Rechi/subscriptions", + "organizations_url": "https://api.github.com/users/Rechi/orgs", + "repos_url": "https://api.github.com/users/Rechi/repos", + "events_url": "https://api.github.com/users/Rechi/events{/privacy}", + "received_events_url": "https://api.github.com/users/Rechi/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 9, + "created_at": "2017-11-09T21:45:14Z", + "updated_at": "2018-04-14T04:20:22Z", + "closed_at": "2018-01-12T16:45:03Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/396", + "html_url": "https://github.com/github-api/github-api/pull/396", + "diff_url": "https://github.com/github-api/github-api/pull/396.diff", + "patch_url": "https://github.com/github-api/github-api/pull/396.patch" + }, + "body": "This might fix the issue I reported at https://issues.jenkins-ci.org/browse/JENKINS-47848" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/395", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/395/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/395/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/395/events", + "html_url": "https://github.com/github-api/github-api/issues/395", + "id": 271819106, + "node_id": "MDU6SXNzdWUyNzE4MTkxMDY=", + "number": 395, + "title": "NPE in GHPerson.populate", + "user": { + "login": "liborbitala", + "id": 17720012, + "node_id": "MDQ6VXNlcjE3NzIwMDEy", + "avatar_url": "https://avatars2.githubusercontent.com/u/17720012?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/liborbitala", + "html_url": "https://github.com/liborbitala", + "followers_url": "https://api.github.com/users/liborbitala/followers", + "following_url": "https://api.github.com/users/liborbitala/following{/other_user}", + "gists_url": "https://api.github.com/users/liborbitala/gists{/gist_id}", + "starred_url": "https://api.github.com/users/liborbitala/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/liborbitala/subscriptions", + "organizations_url": "https://api.github.com/users/liborbitala/orgs", + "repos_url": "https://api.github.com/users/liborbitala/repos", + "events_url": "https://api.github.com/users/liborbitala/events{/privacy}", + "received_events_url": "https://api.github.com/users/liborbitala/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 3, + "created_at": "2017-11-07T12:46:22Z", + "updated_at": "2018-01-13T05:34:34Z", + "closed_at": "2018-01-13T05:34:34Z", + "author_association": "NONE", + "body": "Hi, \r\n\r\nafter updating to version 1.90 of GitHub API in our Jenkins, we have a problem when getting info about author of PullRequest for some users. It is blocking our automation of Jenkins builds using Github Pull Request Builder plugin. Interesting thing is that the issue is happening only for some users' Pull Requests. For others everything works fine. We haven't found any suspicious pattern in users' settings.\r\n\r\nThe error looks as follows:\r\n\r\nUnable to handle comment for PR# 266904472, repo: xxx/xxx-xxx\r\njava.lang.NullPointerException\r\n at org.kohsuke.github.GHPerson.populate(GHPerson.java:44)\r\n at org.kohsuke.github.GHPerson.getEmail(GHPerson.java:231)\r\n at org.jenkinsci.plugins.ghprb.GhprbPullRequest.getAuthorEmail(GhprbPullRequest.java:726)\r\n at org.jenkinsci.plugins.ghprb.GhprbBuilds.build(GhprbBuilds.java:54)\r\n at org.jenkinsci.plugins.ghprb.GhprbPullRequest.build(GhprbPullRequest.java:417)\r\n at org.jenkinsci.plugins.ghprb.GhprbPullRequest.tryBuild(GhprbPullRequest.java:410)\r\n at org.jenkinsci.plugins.ghprb.GhprbPullRequest.check(GhprbPullRequest.java:244)\r\n at org.jenkinsci.plugins.ghprb.GhprbRepository.onIssueCommentHook(GhprbRepository.java:342)\r\n at org.jenkinsci.plugins.ghprb.GhprbTrigger.handleComment(GhprbTrigger.java:637)\r\n at org.jenkinsci.plugins.ghprb.GhprbRootAction$1.run(GhprbRootAction.java:233)\r\n\r\nAccording to report in Jenkins Jira (https://issues.jenkins-ci.org/browse/JENKINS-47848) it seems that downgrade to 1.86 should help, but we need to use 1.90 because of other issues.\r\n\r\nCould you look onto it or provide some workaround?\r\n\r\nThank you." + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/394", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/394/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/394/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/394/events", + "html_url": "https://github.com/github-api/github-api/pull/394", + "id": 271489685, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTUwODYyODM1", + "number": 394, + "title": "Populate the GHPullRequest if 'mergeable' is null", + "user": { + "login": "psiroky", + "id": 670547, + "node_id": "MDQ6VXNlcjY3MDU0Nw==", + "avatar_url": "https://avatars0.githubusercontent.com/u/670547?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/psiroky", + "html_url": "https://github.com/psiroky", + "followers_url": "https://api.github.com/users/psiroky/followers", + "following_url": "https://api.github.com/users/psiroky/following{/other_user}", + "gists_url": "https://api.github.com/users/psiroky/gists{/gist_id}", + "starred_url": "https://api.github.com/users/psiroky/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/psiroky/subscriptions", + "organizations_url": "https://api.github.com/users/psiroky/orgs", + "repos_url": "https://api.github.com/users/psiroky/repos", + "events_url": "https://api.github.com/users/psiroky/events{/privacy}", + "received_events_url": "https://api.github.com/users/psiroky/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2017-11-06T14:16:25Z", + "updated_at": "2018-01-13T13:14:06Z", + "closed_at": "2018-01-13T05:27:13Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/394", + "html_url": "https://github.com/github-api/github-api/pull/394", + "diff_url": "https://github.com/github-api/github-api/pull/394.diff", + "patch_url": "https://github.com/github-api/github-api/pull/394.patch" + }, + "body": "GitHub sometimes returns a response which has the 'mergeable_state' set\r\nto 'unknown' (ant thus non-null) and the 'mergable' is 'null'. 'isMergable()'\r\nthen returns 'null' instead of 'boolean'. This can to unexpected issues for\r\nthe caller.\r\n\r\nI am by far not sure that this is a good approach. It can definitely lead to more API calls, which may not be desired. Please let me know if you see a better alternative for this." + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/393", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/393/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/393/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/393/events", + "html_url": "https://github.com/github-api/github-api/issues/393", + "id": 270736846, + "node_id": "MDU6SXNzdWUyNzA3MzY4NDY=", + "number": 393, + "title": "64-bit id support", + "user": { + "login": "Raimmaster", + "id": 6061123, + "node_id": "MDQ6VXNlcjYwNjExMjM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/6061123?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Raimmaster", + "html_url": "https://github.com/Raimmaster", + "followers_url": "https://api.github.com/users/Raimmaster/followers", + "following_url": "https://api.github.com/users/Raimmaster/following{/other_user}", + "gists_url": "https://api.github.com/users/Raimmaster/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Raimmaster/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Raimmaster/subscriptions", + "organizations_url": "https://api.github.com/users/Raimmaster/orgs", + "repos_url": "https://api.github.com/users/Raimmaster/repos", + "events_url": "https://api.github.com/users/Raimmaster/events{/privacy}", + "received_events_url": "https://api.github.com/users/Raimmaster/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 7, + "created_at": "2017-11-02T17:17:57Z", + "updated_at": "2017-11-02T17:48:56Z", + "closed_at": "2017-11-02T17:48:55Z", + "author_association": "NONE", + "body": "When working with the GitHub statuses API, it appears that IDs that surpass the 32-bit mark it throws the following exception: \r\n`com.fasterxml.jackson.core.JsonParseException: Numeric value (x) out of range of int`. \r\nI haven't checked if it goes all the way to the [jackson-core](https://github.com/FasterXML/jackson-core) project, but the status IDs now generated have gone past 4294967295, which is the maximum uint value.\r\n\r\nIt'd be great if we could fix this, and I'd be happy to do the pull request if given some pointers and pairing. Thanks beforehand." + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/392", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/392/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/392/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/392/events", + "html_url": "https://github.com/github-api/github-api/pull/392", + "id": 270354129, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTUwMDcyNzQx", + "number": 392, + "title": "Now that getUser throws IOException, provide alternative for people who just want the username", + "user": { + "login": "stephenc", + "id": 209336, + "node_id": "MDQ6VXNlcjIwOTMzNg==", + "avatar_url": "https://avatars2.githubusercontent.com/u/209336?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/stephenc", + "html_url": "https://github.com/stephenc", + "followers_url": "https://api.github.com/users/stephenc/followers", + "following_url": "https://api.github.com/users/stephenc/following{/other_user}", + "gists_url": "https://api.github.com/users/stephenc/gists{/gist_id}", + "starred_url": "https://api.github.com/users/stephenc/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/stephenc/subscriptions", + "organizations_url": "https://api.github.com/users/stephenc/orgs", + "repos_url": "https://api.github.com/users/stephenc/repos", + "events_url": "https://api.github.com/users/stephenc/events{/privacy}", + "received_events_url": "https://api.github.com/users/stephenc/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 4, + "created_at": "2017-11-01T15:49:21Z", + "updated_at": "2018-11-16T11:34:44Z", + "closed_at": "2018-11-16T11:34:44Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/392", + "html_url": "https://github.com/github-api/github-api/pull/392", + "diff_url": "https://github.com/github-api/github-api/pull/392.diff", + "patch_url": "https://github.com/github-api/github-api/pull/392.patch" + }, + "body": null + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/391", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/391/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/391/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/391/events", + "html_url": "https://github.com/github-api/github-api/pull/391", + "id": 269745298, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTQ5NjMxMDEw", + "number": 391, + "title": "Add get for all organizations", + "user": { + "login": "scotty-g", + "id": 7861050, + "node_id": "MDQ6VXNlcjc4NjEwNTA=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7861050?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/scotty-g", + "html_url": "https://github.com/scotty-g", + "followers_url": "https://api.github.com/users/scotty-g/followers", + "following_url": "https://api.github.com/users/scotty-g/following{/other_user}", + "gists_url": "https://api.github.com/users/scotty-g/gists{/gist_id}", + "starred_url": "https://api.github.com/users/scotty-g/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/scotty-g/subscriptions", + "organizations_url": "https://api.github.com/users/scotty-g/orgs", + "repos_url": "https://api.github.com/users/scotty-g/repos", + "events_url": "https://api.github.com/users/scotty-g/events{/privacy}", + "received_events_url": "https://api.github.com/users/scotty-g/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2017-10-30T20:36:48Z", + "updated_at": "2018-01-13T05:07:21Z", + "closed_at": "2018-01-13T05:07:21Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/391", + "html_url": "https://github.com/github-api/github-api/pull/391", + "diff_url": "https://github.com/github-api/github-api/pull/391.diff", + "patch_url": "https://github.com/github-api/github-api/pull/391.patch" + }, + "body": "Add support for fetching all organizations using the [`/organizations`](https://developer.github.com/v3/orgs/#list-all-organizations) endpoint. Supports paging and allows for the page size to be specified." + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/390", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/390/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/390/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/390/events", + "html_url": "https://github.com/github-api/github-api/pull/390", + "id": 268372550, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTQ4NjQ4NjY4", + "number": 390, + "title": "Labels: add method to update color", + "user": { + "login": "batmat", + "id": 223853, + "node_id": "MDQ6VXNlcjIyMzg1Mw==", + "avatar_url": "https://avatars3.githubusercontent.com/u/223853?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/batmat", + "html_url": "https://github.com/batmat", + "followers_url": "https://api.github.com/users/batmat/followers", + "following_url": "https://api.github.com/users/batmat/following{/other_user}", + "gists_url": "https://api.github.com/users/batmat/gists{/gist_id}", + "starred_url": "https://api.github.com/users/batmat/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/batmat/subscriptions", + "organizations_url": "https://api.github.com/users/batmat/orgs", + "repos_url": "https://api.github.com/users/batmat/repos", + "events_url": "https://api.github.com/users/batmat/events{/privacy}", + "received_events_url": "https://api.github.com/users/batmat/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 4, + "created_at": "2017-10-25T12:08:04Z", + "updated_at": "2017-10-31T15:45:04Z", + "closed_at": "2017-10-28T14:45:37Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/390", + "html_url": "https://github.com/github-api/github-api/pull/390", + "diff_url": "https://github.com/github-api/github-api/pull/390.diff", + "patch_url": "https://github.com/github-api/github-api/pull/390.patch" + }, + "body": "Currently impossible to update a label, this PR adds this support.\r\n\r\n@kohsuke " + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/389", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/389/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/389/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/389/events", + "html_url": "https://github.com/github-api/github-api/pull/389", + "id": 268193269, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTQ4NTE4Njg1", + "number": 389, + "title": "Fixed OAuth connection to enterprise API", + "user": { + "login": "dorian808080", + "id": 9301649, + "node_id": "MDQ6VXNlcjkzMDE2NDk=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9301649?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dorian808080", + "html_url": "https://github.com/dorian808080", + "followers_url": "https://api.github.com/users/dorian808080/followers", + "following_url": "https://api.github.com/users/dorian808080/following{/other_user}", + "gists_url": "https://api.github.com/users/dorian808080/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dorian808080/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dorian808080/subscriptions", + "organizations_url": "https://api.github.com/users/dorian808080/orgs", + "repos_url": "https://api.github.com/users/dorian808080/repos", + "events_url": "https://api.github.com/users/dorian808080/events{/privacy}", + "received_events_url": "https://api.github.com/users/dorian808080/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2017-10-24T21:32:21Z", + "updated_at": "2017-10-28T14:55:00Z", + "closed_at": "2017-10-28T14:55:00Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/389", + "html_url": "https://github.com/github-api/github-api/pull/389", + "diff_url": "https://github.com/github-api/github-api/pull/389.diff", + "patch_url": "https://github.com/github-api/github-api/pull/389.patch" + }, + "body": "I see that the change to OAuth was made a long time ago. I just started using this library at work, and we use GitHub Enterprise. \r\n\r\nWhen connecting with OAuth, I was getting a failure on the connection when using `GitHub.connectToEnterprise(apiUrl, oauthAccessToken)` I noticed that there was no option to use login. I thought this was strange and tried to get to the bottom of it. \r\n\r\nThe reason I have proposed the fix in this way was so that I didn't break the existing functionality (I don't think it was functioning as intended, but if it has gone this long without fixing I have to assume it is working for someone). That is why I didn't touch the existing method.\r\n\r\nI am new to this project, so if there is more that I need to do for this to meet your requirements, please let me know." + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/388", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/388/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/388/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/388/events", + "html_url": "https://github.com/github-api/github-api/pull/388", + "id": 267704660, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTQ4MTU3NzEw", + "number": 388, + "title": "Fix for #387: numeric value out of range of int", + "user": { + "login": "aburmeis", + "id": 5594071, + "node_id": "MDQ6VXNlcjU1OTQwNzE=", + "avatar_url": "https://avatars0.githubusercontent.com/u/5594071?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/aburmeis", + "html_url": "https://github.com/aburmeis", + "followers_url": "https://api.github.com/users/aburmeis/followers", + "following_url": "https://api.github.com/users/aburmeis/following{/other_user}", + "gists_url": "https://api.github.com/users/aburmeis/gists{/gist_id}", + "starred_url": "https://api.github.com/users/aburmeis/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/aburmeis/subscriptions", + "organizations_url": "https://api.github.com/users/aburmeis/orgs", + "repos_url": "https://api.github.com/users/aburmeis/repos", + "events_url": "https://api.github.com/users/aburmeis/events{/privacy}", + "received_events_url": "https://api.github.com/users/aburmeis/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 24, + "created_at": "2017-10-23T15:06:34Z", + "updated_at": "2017-11-27T06:15:13Z", + "closed_at": "2017-10-28T16:01:16Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/388", + "html_url": "https://github.com/github-api/github-api/pull/388", + "diff_url": "https://github.com/github-api/github-api/pull/388.diff", + "patch_url": "https://github.com/github-api/github-api/pull/388.patch" + }, + "body": "fix for #387:\r\n* migrated int id to long\r\n* updated dependencies" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/387", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/387/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/387/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/387/events", + "html_url": "https://github.com/github-api/github-api/issues/387", + "id": 266555652, + "node_id": "MDU6SXNzdWUyNjY1NTU2NTI=", + "number": 387, + "title": "Numeric value out of range of int", + "user": { + "login": "ievgen-kolomiiets", + "id": 3626323, + "node_id": "MDQ6VXNlcjM2MjYzMjM=", + "avatar_url": "https://avatars2.githubusercontent.com/u/3626323?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ievgen-kolomiiets", + "html_url": "https://github.com/ievgen-kolomiiets", + "followers_url": "https://api.github.com/users/ievgen-kolomiiets/followers", + "following_url": "https://api.github.com/users/ievgen-kolomiiets/following{/other_user}", + "gists_url": "https://api.github.com/users/ievgen-kolomiiets/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ievgen-kolomiiets/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ievgen-kolomiiets/subscriptions", + "organizations_url": "https://api.github.com/users/ievgen-kolomiiets/orgs", + "repos_url": "https://api.github.com/users/ievgen-kolomiiets/repos", + "events_url": "https://api.github.com/users/ievgen-kolomiiets/events{/privacy}", + "received_events_url": "https://api.github.com/users/ievgen-kolomiiets/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 13, + "created_at": "2017-10-18T16:21:50Z", + "updated_at": "2017-11-09T14:38:14Z", + "closed_at": "2017-11-02T08:24:04Z", + "author_association": "NONE", + "body": "I use GitHub commit status plugin to set commit status at the end of the build and get next error:\r\n```\r\ncom.fasterxml.jackson.core.JsonParseException: Numeric value (4295001555) out of range of int\r\n at [Source: {\"url\":\"https://api.github.com/repos/organiztion/repo/statuses/120ba5d2a8719c59a8c5b28b116049330121349e\",\"id\":4295001555,\"state\":\"success\",\"description\":\"Build #4 succeeded in 1 min 8 sec\",\"target_url\":\"target_url\",\"context\":\"context\",\"created_at\":\"2017-10-18T14:36:05Z\",\"updated_at\":\"2017-10-18T14:36:05Z\"}; line: 1, column: 134]\r\n\tat com.fasterxml.jackson.core.JsonParser._constructError(JsonParser.java:1702)\r\n\tat com.fasterxml.jackson.core.base.ParserMinimalBase._reportError(ParserMinimalBase.java:558)\r\n\tat com.fasterxml.jackson.core.base.ParserBase.convertNumberToInt(ParserBase.java:928)\r\n\tat com.fasterxml.jackson.core.base.ParserBase._parseIntValue(ParserBase.java:866)\r\n\tat com.fasterxml.jackson.core.base.ParserBase.getIntValue(ParserBase.java:694)\r\n\tat com.fasterxml.jackson.databind.deser.std.NumberDeserializers$IntegerDeserializer.deserialize(NumberDeserializers.java:306)\r\n\tat com.fasterxml.jackson.databind.deser.std.NumberDeserializers$IntegerDeserializer.deserialize(NumberDeserializers.java:286)\r\n\tat com.fasterxml.jackson.databind.deser.SettableBeanProperty.deserialize(SettableBeanProperty.java:504)\r\n\tat com.fasterxml.jackson.databind.deser.impl.FieldProperty.deserializeAndSet(FieldProperty.java:108)\r\n\tat com.fasterxml.jackson.databind.deser.BeanDeserializer.vanillaDeserialize(BeanDeserializer.java:276)\r\nCaused: com.fasterxml.jackson.databind.JsonMappingException: Numeric value (4295001555) out of range of int\r\n at [Source: {\"url\":\"https://api.github.com/repos/organization/repo/statuses/120ba5d2a8719c59a8c5b28b116049330121349e\",\"id\":4295001555,\"state\":\"success\",\"description\":\"Build #4 succeeded in 1 min 8 sec\",\"target_url\":\"target_url\",\"context\":\"context\"}; line: 1, column: 134]\r\n at [Source: {\"url\":\"https://api.github.com/repos/organization/repo/statuses/120ba5d2a8719c59a8c5b28b116049330121349e\",\"id\":4295001555,\"state\":\"success\",\"description\":\"Build #4 succeeded in 1 min 8 sec\",\"target_url\":\"target_url\",\"context\":\"context\",\"created_at\":\"2017-10-18T14:36:05Z\",\"updated_at\":\"2017-10-18T14:36:05Z\"}; line: 1, column: 124] (through reference chain: org.kohsuke.github.GHCommitStatus[\"id\"])\r\n\tat com.fasterxml.jackson.databind.JsonMappingException.wrapWithPath(JsonMappingException.java:388)\r\n\tat com.fasterxml.jackson.databind.JsonMappingException.wrapWithPath(JsonMappingException.java:348)\r\n\tat com.fasterxml.jackson.databind.deser.BeanDeserializerBase.wrapAndThrow(BeanDeserializerBase.java:1607)\r\n\tat com.fasterxml.jackson.databind.deser.BeanDeserializer.vanillaDeserialize(BeanDeserializer.java:278)\r\n\tat com.fasterxml.jackson.databind.deser.BeanDeserializer.deserialize(BeanDeserializer.java:140)\r\n\tat com.fasterxml.jackson.databind.ObjectMapper._readMapAndClose(ObjectMapper.java:3798)\r\n\tat com.fasterxml.jackson.databind.ObjectMapper.readValue(ObjectMapper.java:2842)\r\n\tat org.kohsuke.github.Requester.parse(Requester.java:616)\r\nCaused: java.io.IOException: Failed to deserialize {\"url\":\"https://api.github.com/repos/organization/repo/statuses/120ba5d2a8719c59a8c5b28b116049330121349e\",\"id\":4295001555,\"state\":\"success\",\"description\":\"Build #4 succeeded in 1 min 8 sec\",\"target_url\":\"target_url\",\"context\":\"context\",\"created_at\":\"2017-10-18T14:36:05Z\",\"updated_at\":\"2017-10-18T14:36:05Z\"}\r\n\tat org.kohsuke.github.Requester.parse(Requester.java:618)\r\nCaused: org.kohsuke.github.HttpException: Server returned HTTP response code: 201, message: 'Created' for URL: https://api.github.com/repos/organization/repo/statuses/120ba5d2a8719c59a8c5b28b116049330121349e\r\n\tat org.kohsuke.github.Requester.parse(Requester.java:633)\r\n\tat org.kohsuke.github.Requester.parse(Requester.java:594)\r\n\tat org.kohsuke.github.Requester._to(Requester.java:272)\r\n\tat org.kohsuke.github.Requester.to(Requester.java:234)\r\n\tat org.kohsuke.github.GHRepository.createCommitStatus(GHRepository.java:1071)\r\n\tat org.jenkinsci.plugins.github.status.GitHubCommitStatusSetter.perform(GitHubCommitStatusSetter.java:160)\r\nCaused: org.jenkinsci.plugins.github.common.CombineErrorHandler$ErrorHandlingException\r\n\tat org.jenkinsci.plugins.github.common.CombineErrorHandler.handle(CombineErrorHandler.java:74)\r\n\tat org.jenkinsci.plugins.github.status.GitHubCommitStatusSetter.perform(GitHubCommitStatusSetter.java:164)\r\n\tat hudson.tasks.BuildStepCompatibilityLayer.perform(BuildStepCompatibilityLayer.java:81)\r\n\tat hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)\r\n\tat hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:736)\r\n\tat hudson.model.AbstractBuild$AbstractBuildExecution.performAllBuildSteps(AbstractBuild.java:682)\r\n\tat hudson.model.Build$BuildExecution.post2(Build.java:186)\r\n\tat hudson.model.AbstractBuild$AbstractBuildExecution.post(AbstractBuild.java:627)\r\n\tat hudson.model.Run.execute(Run.java:1762)\r\n\tat hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)\r\n\tat hudson.model.ResourceController.execute(ResourceController.java:97)\r\n\tat hudson.model.Executor.run(Executor.java:421)\r\n```\r\n\r\nIt looks like response from GitHub API contains `id` value `4295001555` that is bigger than `int`." + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/386", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/386/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/386/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/386/events", + "html_url": "https://github.com/github-api/github-api/issues/386", + "id": 264225277, + "node_id": "MDU6SXNzdWUyNjQyMjUyNzc=", + "number": 386, + "title": "Diff URL with auth", + "user": { + "login": "lwis", + "id": 873275, + "node_id": "MDQ6VXNlcjg3MzI3NQ==", + "avatar_url": "https://avatars0.githubusercontent.com/u/873275?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/lwis", + "html_url": "https://github.com/lwis", + "followers_url": "https://api.github.com/users/lwis/followers", + "following_url": "https://api.github.com/users/lwis/following{/other_user}", + "gists_url": "https://api.github.com/users/lwis/gists{/gist_id}", + "starred_url": "https://api.github.com/users/lwis/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/lwis/subscriptions", + "organizations_url": "https://api.github.com/users/lwis/orgs", + "repos_url": "https://api.github.com/users/lwis/repos", + "events_url": "https://api.github.com/users/lwis/events{/privacy}", + "received_events_url": "https://api.github.com/users/lwis/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2017-10-10T13:20:44Z", + "updated_at": "2018-01-13T05:33:52Z", + "closed_at": "2018-01-13T05:33:52Z", + "author_association": "NONE", + "body": "Hi,\r\n\r\nDoes the current API offer any way of retrieving a diff with auth? Diffs are currently represented as a URL within the API to my knowledge?" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/385", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/385/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/385/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/385/events", + "html_url": "https://github.com/github-api/github-api/pull/385", + "id": 263315104, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTQ1MDU3MzY2", + "number": 385, + "title": "Addressing issue #348. This will allow skipping to a page number for", + "user": { + "login": "nodoze", + "id": 2439314, + "node_id": "MDQ6VXNlcjI0MzkzMTQ=", + "avatar_url": "https://avatars2.githubusercontent.com/u/2439314?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nodoze", + "html_url": "https://github.com/nodoze", + "followers_url": "https://api.github.com/users/nodoze/followers", + "following_url": "https://api.github.com/users/nodoze/following{/other_user}", + "gists_url": "https://api.github.com/users/nodoze/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nodoze/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nodoze/subscriptions", + "organizations_url": "https://api.github.com/users/nodoze/orgs", + "repos_url": "https://api.github.com/users/nodoze/repos", + "events_url": "https://api.github.com/users/nodoze/events{/privacy}", + "received_events_url": "https://api.github.com/users/nodoze/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2017-10-06T01:47:26Z", + "updated_at": "2018-01-13T05:10:30Z", + "closed_at": "2018-01-13T05:10:30Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/385", + "html_url": "https://github.com/github-api/github-api/pull/385", + "diff_url": "https://github.com/github-api/github-api/pull/385.diff", + "patch_url": "https://github.com/github-api/github-api/pull/385.patch" + }, + "body": "the all the search builders . The alternative is to implement it at the page\r\nPagedIterable level which will require changes throughout all the\r\nclasses that reference it. Since this is primarily a search issue this\r\nsolution might suffice.\r\n\r\nAlso added support for the repository search parameter \"topic\"" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/384", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/384/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/384/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/384/events", + "html_url": "https://github.com/github-api/github-api/pull/384", + "id": 263295203, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTQ1MDQyODI0", + "number": 384, + "title": "Add support for pr review/review comment events", + "user": { + "login": "mattnelson", + "id": 1894657, + "node_id": "MDQ6VXNlcjE4OTQ2NTc=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1894657?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mattnelson", + "html_url": "https://github.com/mattnelson", + "followers_url": "https://api.github.com/users/mattnelson/followers", + "following_url": "https://api.github.com/users/mattnelson/following{/other_user}", + "gists_url": "https://api.github.com/users/mattnelson/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mattnelson/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mattnelson/subscriptions", + "organizations_url": "https://api.github.com/users/mattnelson/orgs", + "repos_url": "https://api.github.com/users/mattnelson/repos", + "events_url": "https://api.github.com/users/mattnelson/events{/privacy}", + "received_events_url": "https://api.github.com/users/mattnelson/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2017-10-05T23:17:15Z", + "updated_at": "2018-01-15T20:36:09Z", + "closed_at": "2018-01-13T18:31:39Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/384", + "html_url": "https://github.com/github-api/github-api/pull/384", + "diff_url": "https://github.com/github-api/github-api/pull/384.diff", + "patch_url": "https://github.com/github-api/github-api/pull/384.patch" + }, + "body": "Add support for pr review/review comment events building on #352 \r\n\r\nThere was one non-passive change with `GHPullRequestReviewState` the enum value did not match the value returned from the github API. I verified this on github.com and an enterprise instance." + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/381", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/381/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/381/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/381/events", + "html_url": "https://github.com/github-api/github-api/issues/381", + "id": 260249716, + "node_id": "MDU6SXNzdWUyNjAyNDk3MTY=", + "number": 381, + "title": "Branch name is not being correctly URL encoded", + "user": { + "login": "stephenc", + "id": 209336, + "node_id": "MDQ6VXNlcjIwOTMzNg==", + "avatar_url": "https://avatars2.githubusercontent.com/u/209336?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/stephenc", + "html_url": "https://github.com/stephenc", + "followers_url": "https://api.github.com/users/stephenc/followers", + "following_url": "https://api.github.com/users/stephenc/following{/other_user}", + "gists_url": "https://api.github.com/users/stephenc/gists{/gist_id}", + "starred_url": "https://api.github.com/users/stephenc/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/stephenc/subscriptions", + "organizations_url": "https://api.github.com/users/stephenc/orgs", + "repos_url": "https://api.github.com/users/stephenc/repos", + "events_url": "https://api.github.com/users/stephenc/events{/privacy}", + "received_events_url": "https://api.github.com/users/stephenc/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 3, + "created_at": "2017-09-25T11:59:12Z", + "updated_at": "2019-09-26T00:29:27Z", + "closed_at": "2019-09-26T00:29:27Z", + "author_association": "CONTRIBUTOR", + "body": "See https://issues.jenkins-ci.org/browse/JENKINS-46898\r\n\r\nSeems `#` is a valid character in a branch name but the URLs are not being correctly constructed causing it to be interpreted by GitHub as a document fragment identifier" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/380", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/380/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/380/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/380/events", + "html_url": "https://github.com/github-api/github-api/issues/380", + "id": 260080783, + "node_id": "MDU6SXNzdWUyNjAwODA3ODM=", + "number": 380, + "title": "add a comment to a pull Request", + "user": { + "login": "sbuisson", + "id": 10981701, + "node_id": "MDQ6VXNlcjEwOTgxNzAx", + "avatar_url": "https://avatars1.githubusercontent.com/u/10981701?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/sbuisson", + "html_url": "https://github.com/sbuisson", + "followers_url": "https://api.github.com/users/sbuisson/followers", + "following_url": "https://api.github.com/users/sbuisson/following{/other_user}", + "gists_url": "https://api.github.com/users/sbuisson/gists{/gist_id}", + "starred_url": "https://api.github.com/users/sbuisson/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/sbuisson/subscriptions", + "organizations_url": "https://api.github.com/users/sbuisson/orgs", + "repos_url": "https://api.github.com/users/sbuisson/repos", + "events_url": "https://api.github.com/users/sbuisson/events{/privacy}", + "received_events_url": "https://api.github.com/users/sbuisson/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2017-09-24T12:32:33Z", + "updated_at": "2018-01-21T19:57:52Z", + "closed_at": "2018-01-21T19:57:52Z", + "author_association": "NONE", + "body": "Hello,\r\nIt's seem that your api don't implement the creation of a comment for a pullRequest:\r\nPOST /repos/:owner/:repo/pulls/:number/comments\r\n\r\nthe doc here:\r\nhttps://developer.github.com/v3/pulls/comments/#create-a-comment" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/379", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/379/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/379/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/379/events", + "html_url": "https://github.com/github-api/github-api/pull/379", + "id": 259160221, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTQyMDk3Mzk3", + "number": 379, + "title": "Roles for team members", + "user": { + "login": "amberovsky", + "id": 477339, + "node_id": "MDQ6VXNlcjQ3NzMzOQ==", + "avatar_url": "https://avatars3.githubusercontent.com/u/477339?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/amberovsky", + "html_url": "https://github.com/amberovsky", + "followers_url": "https://api.github.com/users/amberovsky/followers", + "following_url": "https://api.github.com/users/amberovsky/following{/other_user}", + "gists_url": "https://api.github.com/users/amberovsky/gists{/gist_id}", + "starred_url": "https://api.github.com/users/amberovsky/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/amberovsky/subscriptions", + "organizations_url": "https://api.github.com/users/amberovsky/orgs", + "repos_url": "https://api.github.com/users/amberovsky/repos", + "events_url": "https://api.github.com/users/amberovsky/events{/privacy}", + "received_events_url": "https://api.github.com/users/amberovsky/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2017-09-20T13:19:40Z", + "updated_at": "2018-01-13T05:13:01Z", + "closed_at": "2018-01-13T05:13:01Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/379", + "html_url": "https://github.com/github-api/github-api/pull/379", + "diff_url": "https://github.com/github-api/github-api/pull/379.diff", + "patch_url": "https://github.com/github-api/github-api/pull/379.patch" + }, + "body": "" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/378", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/378/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/378/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/378/events", + "html_url": "https://github.com/github-api/github-api/pull/378", + "id": 257490943, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTQwOTA3NDM2", + "number": 378, + "title": "bridge-method-annotation should be an optional dep", + "user": { + "login": "jglick", + "id": 154109, + "node_id": "MDQ6VXNlcjE1NDEwOQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/154109?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jglick", + "html_url": "https://github.com/jglick", + "followers_url": "https://api.github.com/users/jglick/followers", + "following_url": "https://api.github.com/users/jglick/following{/other_user}", + "gists_url": "https://api.github.com/users/jglick/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jglick/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jglick/subscriptions", + "organizations_url": "https://api.github.com/users/jglick/orgs", + "repos_url": "https://api.github.com/users/jglick/repos", + "events_url": "https://api.github.com/users/jglick/events{/privacy}", + "received_events_url": "https://api.github.com/users/jglick/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 3, + "created_at": "2017-09-13T19:15:59Z", + "updated_at": "2018-01-17T16:49:26Z", + "closed_at": "2018-01-13T05:15:54Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/378", + "html_url": "https://github.com/github-api/github-api/pull/378", + "diff_url": "https://github.com/github-api/github-api/pull/378.diff", + "patch_url": "https://github.com/github-api/github-api/pull/378.patch" + }, + "body": "b6e48cc4f9c7b13895673a7b4aa6399b7e236b1f introduced a hard dep on a lib which is newer than that currently bundled in core, causing problems for `requireUpperBoundDeps`.\r\n\r\n@reviewbybees" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/375", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/375/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/375/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/375/events", + "html_url": "https://github.com/github-api/github-api/pull/375", + "id": 254618332, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTM4ODc0MzQy", + "number": 375, + "title": "Add basic support for tag objects", + "user": { + "login": "stephenc", + "id": 209336, + "node_id": "MDQ6VXNlcjIwOTMzNg==", + "avatar_url": "https://avatars2.githubusercontent.com/u/209336?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/stephenc", + "html_url": "https://github.com/stephenc", + "followers_url": "https://api.github.com/users/stephenc/followers", + "following_url": "https://api.github.com/users/stephenc/following{/other_user}", + "gists_url": "https://api.github.com/users/stephenc/gists{/gist_id}", + "starred_url": "https://api.github.com/users/stephenc/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/stephenc/subscriptions", + "organizations_url": "https://api.github.com/users/stephenc/orgs", + "repos_url": "https://api.github.com/users/stephenc/repos", + "events_url": "https://api.github.com/users/stephenc/events{/privacy}", + "received_events_url": "https://api.github.com/users/stephenc/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2017-09-01T11:53:04Z", + "updated_at": "2017-11-01T15:50:03Z", + "closed_at": "2017-09-08T22:49:34Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/375", + "html_url": "https://github.com/github-api/github-api/pull/375", + "diff_url": "https://github.com/github-api/github-api/pull/375.diff", + "patch_url": "https://github.com/github-api/github-api/pull/375.patch" + }, + "body": "@reviewbybees" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/374", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/374/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/374/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/374/events", + "html_url": "https://github.com/github-api/github-api/issues/374", + "id": 252585243, + "node_id": "MDU6SXNzdWUyNTI1ODUyNDM=", + "number": 374, + "title": "Implement the new invitations API", + "user": { + "login": "jdubois", + "id": 316835, + "node_id": "MDQ6VXNlcjMxNjgzNQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/316835?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jdubois", + "html_url": "https://github.com/jdubois", + "followers_url": "https://api.github.com/users/jdubois/followers", + "following_url": "https://api.github.com/users/jdubois/following{/other_user}", + "gists_url": "https://api.github.com/users/jdubois/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jdubois/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jdubois/subscriptions", + "organizations_url": "https://api.github.com/users/jdubois/orgs", + "repos_url": "https://api.github.com/users/jdubois/repos", + "events_url": "https://api.github.com/users/jdubois/events{/privacy}", + "received_events_url": "https://api.github.com/users/jdubois/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2017-08-24T12:27:31Z", + "updated_at": "2018-08-30T03:19:28Z", + "closed_at": "2018-08-30T03:19:28Z", + "author_association": "NONE", + "body": "Since yesterday the new invitations API is live:\r\nhttps://developer.github.com/changes/2017-08-23-repository-invitation-api/\r\n\r\nImplementing this API is necessary in order to be able to accept repository invitations." + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/373", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/373/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/373/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/373/events", + "html_url": "https://github.com/github-api/github-api/pull/373", + "id": 252322218, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTM3MjQ3NTc4", + "number": 373, + "title": "Retry all HttpException & SocketException in to methods (workaround http -1)", + "user": { + "login": "borgstrom", + "id": 1594130, + "node_id": "MDQ6VXNlcjE1OTQxMzA=", + "avatar_url": "https://avatars0.githubusercontent.com/u/1594130?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/borgstrom", + "html_url": "https://github.com/borgstrom", + "followers_url": "https://api.github.com/users/borgstrom/followers", + "following_url": "https://api.github.com/users/borgstrom/following{/other_user}", + "gists_url": "https://api.github.com/users/borgstrom/gists{/gist_id}", + "starred_url": "https://api.github.com/users/borgstrom/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/borgstrom/subscriptions", + "organizations_url": "https://api.github.com/users/borgstrom/orgs", + "repos_url": "https://api.github.com/users/borgstrom/repos", + "events_url": "https://api.github.com/users/borgstrom/events{/privacy}", + "received_events_url": "https://api.github.com/users/borgstrom/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 9, + "created_at": "2017-08-23T15:22:51Z", + "updated_at": "2019-06-25T18:56:08Z", + "closed_at": "2019-06-25T14:27:07Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/373", + "html_url": "https://github.com/github-api/github-api/pull/373", + "diff_url": "https://github.com/github-api/github-api/pull/373.diff", + "patch_url": "https://github.com/github-api/github-api/pull/373.patch" + }, + "body": "This PR is the result of needing to work around https://issues.jenkins-ci.org/browse/JENKINS-45142\r\n\r\nWe were seeing the following error quite frequently when scanning all repos in our github org:\r\n\r\n```\r\nERROR: Server returned HTTP response code: -1, message: 'null' for URL: https://api.github.com\r\njava.net.SocketException: Socket closed\r\n```\r\n\r\nThe retry code in parse was not working as expected, so this moves the retry code directly into the `to` methods." + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/372", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/372/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/372/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/372/events", + "html_url": "https://github.com/github-api/github-api/issues/372", + "id": 251837836, + "node_id": "MDU6SXNzdWUyNTE4Mzc4MzY=", + "number": 372, + "title": " fields yeld NPE on getX operations.", + "user": { + "login": "baranowb", + "id": 574886, + "node_id": "MDQ6VXNlcjU3NDg4Ng==", + "avatar_url": "https://avatars2.githubusercontent.com/u/574886?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/baranowb", + "html_url": "https://github.com/baranowb", + "followers_url": "https://api.github.com/users/baranowb/followers", + "following_url": "https://api.github.com/users/baranowb/following{/other_user}", + "gists_url": "https://api.github.com/users/baranowb/gists{/gist_id}", + "starred_url": "https://api.github.com/users/baranowb/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/baranowb/subscriptions", + "organizations_url": "https://api.github.com/users/baranowb/orgs", + "repos_url": "https://api.github.com/users/baranowb/repos", + "events_url": "https://api.github.com/users/baranowb/events{/privacy}", + "received_events_url": "https://api.github.com/users/baranowb/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2017-08-22T04:54:33Z", + "updated_at": "2017-11-23T10:16:36Z", + "closed_at": "2017-09-09T21:07:27Z", + "author_association": "NONE", + "body": "GHPullRequest@645aa696[base=org.kohsuke.github.GHCommitPointer@7ce026d3,head=org.kohsuke.github.GHCommitPointer@7ce69770,additions=1,merged=false,mergeable=,deletions=1,assignee=,state=open,number=1903,comments=2,labels=,title=XXXXX,milestone=,url=PR_URL,id=122473208]\r\n\r\n\r\nWill throw NPE on .getMergeable()\r\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/369", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/369/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/369/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/369/events", + "html_url": "https://github.com/github-api/github-api/pull/369", + "id": 248840471, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTM0NzU0MjE2", + "number": 369, + "title": "- improve branch protection support", + "user": { + "login": "jgangemi", + "id": 1831839, + "node_id": "MDQ6VXNlcjE4MzE4Mzk=", + "avatar_url": "https://avatars0.githubusercontent.com/u/1831839?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jgangemi", + "html_url": "https://github.com/jgangemi", + "followers_url": "https://api.github.com/users/jgangemi/followers", + "following_url": "https://api.github.com/users/jgangemi/following{/other_user}", + "gists_url": "https://api.github.com/users/jgangemi/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jgangemi/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jgangemi/subscriptions", + "organizations_url": "https://api.github.com/users/jgangemi/orgs", + "repos_url": "https://api.github.com/users/jgangemi/repos", + "events_url": "https://api.github.com/users/jgangemi/events{/privacy}", + "received_events_url": "https://api.github.com/users/jgangemi/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2017-08-08T20:43:36Z", + "updated_at": "2017-09-08T21:13:42Z", + "closed_at": "2017-09-08T21:13:41Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/369", + "html_url": "https://github.com/github-api/github-api/pull/369", + "diff_url": "https://github.com/github-api/github-api/pull/369.diff", + "patch_url": "https://github.com/github-api/github-api/pull/369.patch" + }, + "body": "this is a re-submission of #340. i'd like to see this get some traction and thought this the best way to grab attention.\r\n\r\nthe PR will improves the support around protected branches and bring it inline w/ the current experimental api. the current implementation doesn't work (properly at least) and given how i interpreted the @Preview docs, it did not seem i was bound to maintain existing method signatures.\r\n\r\ni'd like to be able to add some user/team restriction tests, but that requires a repository in an organization." + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/368", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/368/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/368/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/368/events", + "html_url": "https://github.com/github-api/github-api/pull/368", + "id": 246956376, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTMzMzg5MzA1", + "number": 368, + "title": "Added support for traffic statistics (number of views and clones)", + "user": { + "login": "adw1n", + "id": 8993001, + "node_id": "MDQ6VXNlcjg5OTMwMDE=", + "avatar_url": "https://avatars0.githubusercontent.com/u/8993001?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/adw1n", + "html_url": "https://github.com/adw1n", + "followers_url": "https://api.github.com/users/adw1n/followers", + "following_url": "https://api.github.com/users/adw1n/following{/other_user}", + "gists_url": "https://api.github.com/users/adw1n/gists{/gist_id}", + "starred_url": "https://api.github.com/users/adw1n/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/adw1n/subscriptions", + "organizations_url": "https://api.github.com/users/adw1n/orgs", + "repos_url": "https://api.github.com/users/adw1n/repos", + "events_url": "https://api.github.com/users/adw1n/events{/privacy}", + "received_events_url": "https://api.github.com/users/adw1n/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2017-08-01T05:08:45Z", + "updated_at": "2017-09-09T18:40:59Z", + "closed_at": "2017-09-09T18:40:59Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/368", + "html_url": "https://github.com/github-api/github-api/pull/368", + "diff_url": "https://github.com/github-api/github-api/pull/368.diff", + "patch_url": "https://github.com/github-api/github-api/pull/368.patch" + }, + "body": "Added support for:\r\n* https://developer.github.com/v3/repos/traffic/#views\r\n* https://developer.github.com/v3/repos/traffic/#clones\r\n\r\nby adding to the GHRepository class public methods:\r\n* getViews\r\n* getClones\r\n\r\nAlso introduced new public classes:\r\n* GHRepositoryViews\r\n* GHRepositoryClones\r\n* GHRepositoryTrafficInfo (do you want this one to be public?)" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/__files/repositories_617210_issues-e22232e4-eb5c-4657-b485-171936f6174e.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/__files/repositories_617210_issues-e22232e4-eb5c-4657-b485-171936f6174e.json new file mode 100644 index 0000000000..0ccbcc2dc6 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/__files/repositories_617210_issues-e22232e4-eb5c-4657-b485-171936f6174e.json @@ -0,0 +1,1004 @@ +[ + { + "url": "https://api.github.com/repos/github-api/github-api/issues/21", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/21/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/21/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/21/events", + "html_url": "https://github.com/github-api/github-api/pull/21", + "id": 7135183, + "node_id": "MDExOlB1bGxSZXF1ZXN0MjQ1MDAzMQ==", + "number": 21, + "title": "tweaks to enable access to github enterprise instances", + "user": { + "login": "toddtomkinson", + "id": 279614, + "node_id": "MDQ6VXNlcjI3OTYxNA==", + "avatar_url": "https://avatars3.githubusercontent.com/u/279614?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/toddtomkinson", + "html_url": "https://github.com/toddtomkinson", + "followers_url": "https://api.github.com/users/toddtomkinson/followers", + "following_url": "https://api.github.com/users/toddtomkinson/following{/other_user}", + "gists_url": "https://api.github.com/users/toddtomkinson/gists{/gist_id}", + "starred_url": "https://api.github.com/users/toddtomkinson/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/toddtomkinson/subscriptions", + "organizations_url": "https://api.github.com/users/toddtomkinson/orgs", + "repos_url": "https://api.github.com/users/toddtomkinson/repos", + "events_url": "https://api.github.com/users/toddtomkinson/events{/privacy}", + "received_events_url": "https://api.github.com/users/toddtomkinson/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 5, + "created_at": "2012-09-25T21:43:39Z", + "updated_at": "2014-07-01T17:26:23Z", + "closed_at": "2013-01-06T01:12:33Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/21", + "html_url": "https://github.com/github-api/github-api/pull/21", + "diff_url": "https://github.com/github-api/github-api/pull/21.diff", + "patch_url": "https://github.com/github-api/github-api/pull/21.patch" + }, + "body": "The api on github enterprise instances is available at /api/v3. This change looks at the githubServer parameter and sets the 'ApiURL' accordingly.\n\nAlso added another constructor that takes the githubServer as a parameter along with login, password, and apiToken.\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/20", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/20/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/20/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/20/events", + "html_url": "https://github.com/github-api/github-api/issues/20", + "id": 6760891, + "node_id": "MDU6SXNzdWU2NzYwODkx", + "number": 20, + "title": "GHIssue.getComments() throws NoSuchElementException when there are no comments", + "user": { + "login": "janinko", + "id": 644267, + "node_id": "MDQ6VXNlcjY0NDI2Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/644267?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/janinko", + "html_url": "https://github.com/janinko", + "followers_url": "https://api.github.com/users/janinko/followers", + "following_url": "https://api.github.com/users/janinko/following{/other_user}", + "gists_url": "https://api.github.com/users/janinko/gists{/gist_id}", + "starred_url": "https://api.github.com/users/janinko/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/janinko/subscriptions", + "organizations_url": "https://api.github.com/users/janinko/orgs", + "repos_url": "https://api.github.com/users/janinko/repos", + "events_url": "https://api.github.com/users/janinko/events{/privacy}", + "received_events_url": "https://api.github.com/users/janinko/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2012-09-10T12:48:54Z", + "updated_at": "2012-09-13T22:46:52Z", + "closed_at": "2012-09-13T22:46:52Z", + "author_association": "COLLABORATOR", + "body": "When trying to get comments for pull requests with no comments `NoSuchElementException` is thrown. \nI would except empty list instead.\n\n```\njava.util.NoSuchElementException\n at org.kohsuke.github.Requester$1.next(Requester.java:212)\n at org.kohsuke.github.PagedIterator.fetch(PagedIterator.java:42)\n at org.kohsuke.github.PagedIterator.nextPage(PagedIterator.java:57)\n at org.kohsuke.github.PagedIterable.asList(PagedIterable.java:20)\n at org.kohsuke.github.GHIssue.getComments(GHIssue.java:184)\n```\n\n---\n\n API response for `/repos/janinko/test/issues/7/comments` with no comments - there are no `Link` header and returns empty array:\n\n```\nHTTP/1.1 200 OK\nServer: nginx\nDate: Mon, 10 Sep 2012 12:11:37 GMT\nContent-Type: application/json; charset=utf-8\nConnection: keep-alive\nStatus: 200 OK\nCache-Control: max-age=0, private, must-revalidate\nX-Content-Type-Options: nosniff\nETag: \"a00049ba79152d03380c34652f2cb612\"\nContent-Length: 5\nX-RateLimit-Limit: 5000\nX-GitHub-Media-Type: github.beta\nX-RateLimit-Remaining: 4957\n\n[\n\n]\n```\n\nSo IMHO in `PagedIterable.asList()` `i.hasNext()` returns true because it has next (but empty) array. \n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/19", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/19/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/19/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/19/events", + "html_url": "https://github.com/github-api/github-api/pull/19", + "id": 6713330, + "node_id": "MDExOlB1bGxSZXF1ZXN0MjMyMDQyOA==", + "number": 19, + "title": "PagedIterable dosn't use authentication", + "user": { + "login": "janinko", + "id": 644267, + "node_id": "MDQ6VXNlcjY0NDI2Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/644267?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/janinko", + "html_url": "https://github.com/janinko", + "followers_url": "https://api.github.com/users/janinko/followers", + "following_url": "https://api.github.com/users/janinko/following{/other_user}", + "gists_url": "https://api.github.com/users/janinko/gists{/gist_id}", + "starred_url": "https://api.github.com/users/janinko/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/janinko/subscriptions", + "organizations_url": "https://api.github.com/users/janinko/orgs", + "repos_url": "https://api.github.com/users/janinko/repos", + "events_url": "https://api.github.com/users/janinko/events{/privacy}", + "received_events_url": "https://api.github.com/users/janinko/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 3, + "created_at": "2012-09-07T12:54:08Z", + "updated_at": "2014-06-17T16:32:24Z", + "closed_at": "2012-09-13T22:32:57Z", + "author_association": "COLLABORATOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/19", + "html_url": "https://github.com/github-api/github-api/pull/19", + "diff_url": "https://github.com/github-api/github-api/pull/19.diff", + "patch_url": "https://github.com/github-api/github-api/pull/19.patch" + }, + "body": "When retrieving eg. pull requests or comments, authentication isn't used. For public repositories it's ok, but for private it ends up with `java.io.FileNotFoundException`\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/18", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/18/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/18/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/18/events", + "html_url": "https://github.com/github-api/github-api/pull/18", + "id": 6685445, + "node_id": "MDExOlB1bGxSZXF1ZXN0MjI2MzA4MQ==", + "number": 18, + "title": "When using lazy population, this is not deprecated", + "user": { + "login": "janinko", + "id": 644267, + "node_id": "MDQ6VXNlcjY0NDI2Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/644267?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/janinko", + "html_url": "https://github.com/janinko", + "followers_url": "https://api.github.com/users/janinko/followers", + "following_url": "https://api.github.com/users/janinko/following{/other_user}", + "gists_url": "https://api.github.com/users/janinko/gists{/gist_id}", + "starred_url": "https://api.github.com/users/janinko/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/janinko/subscriptions", + "organizations_url": "https://api.github.com/users/janinko/orgs", + "repos_url": "https://api.github.com/users/janinko/repos", + "events_url": "https://api.github.com/users/janinko/events{/privacy}", + "received_events_url": "https://api.github.com/users/janinko/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2012-09-06T11:24:02Z", + "updated_at": "2014-07-01T17:26:24Z", + "closed_at": "2012-09-07T16:52:12Z", + "author_association": "COLLABORATOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/18", + "html_url": "https://github.com/github-api/github-api/pull/18", + "diff_url": "https://github.com/github-api/github-api/pull/18.diff", + "patch_url": "https://github.com/github-api/github-api/pull/18.patch" + }, + "body": "" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/17", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/17/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/17/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/17/events", + "html_url": "https://github.com/github-api/github-api/pull/17", + "id": 6579724, + "node_id": "MDExOlB1bGxSZXF1ZXN0MjIxNzc4Mg==", + "number": 17, + "title": "Issues pull requests apiv3", + "user": { + "login": "janinko", + "id": 644267, + "node_id": "MDQ6VXNlcjY0NDI2Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/644267?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/janinko", + "html_url": "https://github.com/janinko", + "followers_url": "https://api.github.com/users/janinko/followers", + "following_url": "https://api.github.com/users/janinko/following{/other_user}", + "gists_url": "https://api.github.com/users/janinko/gists{/gist_id}", + "starred_url": "https://api.github.com/users/janinko/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/janinko/subscriptions", + "organizations_url": "https://api.github.com/users/janinko/orgs", + "repos_url": "https://api.github.com/users/janinko/repos", + "events_url": "https://api.github.com/users/janinko/events{/privacy}", + "received_events_url": "https://api.github.com/users/janinko/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2012-08-31T14:11:53Z", + "updated_at": "2014-06-13T15:22:06Z", + "closed_at": "2012-09-06T02:27:56Z", + "author_association": "COLLABORATOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/17", + "html_url": "https://github.com/github-api/github-api/pull/17", + "diff_url": "https://github.com/github-api/github-api/pull/17.diff", + "patch_url": "https://github.com/github-api/github-api/pull/17.patch" + }, + "body": "**Overview**\nI cleaned up GHIssue and GHPullRequest and make them relevant to api v3\n\nAdded SmallUser representing reference to user. In api this user is represented by: \n\n```\n \"user\": {\n \"login\": \"janinko\",\n \"avatar_url\": \"https://secure.gravatar.com/avatar/bf8425ee432f7e9748f9e1c540a125ed?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png\",\n \"url\": \"https://api.github.com/users/janinko\",\n \"gravatar_id\": \"bf8425ee432f7e9748f9e1c540a125ed\",\n \"id\": 644267\n },\n```\n\nAdded DetailedPullRequest - when retrieving pull request by id, it has more attributes then pull requests obtained by GHRepository.getPullRequests(). The attributes are:\n\n```\nmerged_by - SmallUser\nreview_comments - int\nadditions - int\nmerged - boolean\nmergeable - Boolean\ndeletions - int\nmergeable_state - String (\"unknown\", \"dirty\", \"clean\")\nchanged_files - int\n```\n\n**Possible issues**\nI'm not sure if change in b40677a3ca5fe8f614c55e53ee12d1305e227352 is OK. I changed return value of GHRepository.getPullRequest(int) from `GHPullRequest` to its subclass `GHDetailedPullRequest`. IMO it shouldn't be causing any problems.\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/16", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/16/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/16/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/16/events", + "html_url": "https://github.com/github-api/github-api/pull/16", + "id": 6504839, + "node_id": "MDExOlB1bGxSZXF1ZXN0MjE4MzEyMg==", + "number": 16, + "title": "Fixes for github api v3", + "user": { + "login": "janinko", + "id": 644267, + "node_id": "MDQ6VXNlcjY0NDI2Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/644267?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/janinko", + "html_url": "https://github.com/janinko", + "followers_url": "https://api.github.com/users/janinko/followers", + "following_url": "https://api.github.com/users/janinko/following{/other_user}", + "gists_url": "https://api.github.com/users/janinko/gists{/gist_id}", + "starred_url": "https://api.github.com/users/janinko/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/janinko/subscriptions", + "organizations_url": "https://api.github.com/users/janinko/orgs", + "repos_url": "https://api.github.com/users/janinko/repos", + "events_url": "https://api.github.com/users/janinko/events{/privacy}", + "received_events_url": "https://api.github.com/users/janinko/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2012-08-28T17:22:13Z", + "updated_at": "2014-07-01T17:26:25Z", + "closed_at": "2012-08-28T18:02:11Z", + "author_association": "COLLABORATOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/16", + "html_url": "https://github.com/github-api/github-api/pull/16", + "diff_url": "https://github.com/github-api/github-api/pull/16.diff", + "patch_url": "https://github.com/github-api/github-api/pull/16.patch" + }, + "body": "I've made some fixes of problems I ran across.\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/15", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/15/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/15/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/15/events", + "html_url": "https://github.com/github-api/github-api/pull/15", + "id": 6176432, + "node_id": "MDExOlB1bGxSZXF1ZXN0MjAzNjExOA==", + "number": 15, + "title": "Using pagination when getting Pull Requests from a repository", + "user": { + "login": "athieriot", + "id": 661901, + "node_id": "MDQ6VXNlcjY2MTkwMQ==", + "avatar_url": "https://avatars3.githubusercontent.com/u/661901?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/athieriot", + "html_url": "https://github.com/athieriot", + "followers_url": "https://api.github.com/users/athieriot/followers", + "following_url": "https://api.github.com/users/athieriot/following{/other_user}", + "gists_url": "https://api.github.com/users/athieriot/gists{/gist_id}", + "starred_url": "https://api.github.com/users/athieriot/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/athieriot/subscriptions", + "organizations_url": "https://api.github.com/users/athieriot/orgs", + "repos_url": "https://api.github.com/users/athieriot/repos", + "events_url": "https://api.github.com/users/athieriot/events{/privacy}", + "received_events_url": "https://api.github.com/users/athieriot/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2012-08-12T11:06:37Z", + "updated_at": "2014-07-01T17:26:25Z", + "closed_at": "2012-08-28T16:42:14Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/15", + "html_url": "https://github.com/github-api/github-api/pull/15", + "diff_url": "https://github.com/github-api/github-api/pull/15.diff", + "patch_url": "https://github.com/github-api/github-api/pull/15.patch" + }, + "body": "Hi,\n\n As Pull Request API is paginate in the Github API v3, I propose to modify the GHPullRequest getter to return a PagedIterator instead of a simple List.\n\n I didn't knew if I need to maintain the List signature so, instead, I write a new method in PagedIterator that allow to fetch all items at once.\n\nI'll be happy if you can look a it :)\n\nThanks\n\nAurélien\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/14", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/14/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/14/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/14/events", + "html_url": "https://github.com/github-api/github-api/issues/14", + "id": 6027956, + "node_id": "MDU6SXNzdWU2MDI3OTU2", + "number": 14, + "title": "scm in pom.xml is incorrect", + "user": { + "login": "ianatha", + "id": 38443, + "node_id": "MDQ6VXNlcjM4NDQz", + "avatar_url": "https://avatars3.githubusercontent.com/u/38443?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ianatha", + "html_url": "https://github.com/ianatha", + "followers_url": "https://api.github.com/users/ianatha/followers", + "following_url": "https://api.github.com/users/ianatha/following{/other_user}", + "gists_url": "https://api.github.com/users/ianatha/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ianatha/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ianatha/subscriptions", + "organizations_url": "https://api.github.com/users/ianatha/orgs", + "repos_url": "https://api.github.com/users/ianatha/repos", + "events_url": "https://api.github.com/users/ianatha/events{/privacy}", + "received_events_url": "https://api.github.com/users/ianatha/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 3, + "created_at": "2012-08-04T04:21:24Z", + "updated_at": "2014-01-17T09:40:55Z", + "closed_at": "2012-09-13T22:47:16Z", + "author_association": "NONE", + "body": "It should be \"git@github.com:kohsuke/github-api.git\", it is \"git@github.com/kohsuke/github-api.git\".\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/13", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/13/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/13/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/13/events", + "html_url": "https://github.com/github-api/github-api/issues/13", + "id": 5757177, + "node_id": "MDU6SXNzdWU1NzU3MTc3", + "number": 13, + "title": "support for: Create an issue POST /repos/:user/:repo/issues", + "user": { + "login": "maciek-l", + "id": 2019014, + "node_id": "MDQ6VXNlcjIwMTkwMTQ=", + "avatar_url": "https://avatars3.githubusercontent.com/u/2019014?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maciek-l", + "html_url": "https://github.com/maciek-l", + "followers_url": "https://api.github.com/users/maciek-l/followers", + "following_url": "https://api.github.com/users/maciek-l/following{/other_user}", + "gists_url": "https://api.github.com/users/maciek-l/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maciek-l/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maciek-l/subscriptions", + "organizations_url": "https://api.github.com/users/maciek-l/orgs", + "repos_url": "https://api.github.com/users/maciek-l/repos", + "events_url": "https://api.github.com/users/maciek-l/events{/privacy}", + "received_events_url": "https://api.github.com/users/maciek-l/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2012-07-21T23:50:57Z", + "updated_at": "2012-09-13T23:24:20Z", + "closed_at": "2012-09-13T23:24:20Z", + "author_association": "NONE", + "body": "hi,\n\nI`ve noticed that there is no support for:\n\"Create an issue\"\n\"POST /repos/:user/:repo/issues\"\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/12", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/12/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/12/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/12/events", + "html_url": "https://github.com/github-api/github-api/issues/12", + "id": 5660479, + "node_id": "MDU6SXNzdWU1NjYwNDc5", + "number": 12, + "title": "Enterprise Github without HTTPS not supported", + "user": { + "login": "next2you", + "id": 20007, + "node_id": "MDQ6VXNlcjIwMDA3", + "avatar_url": "https://avatars0.githubusercontent.com/u/20007?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/next2you", + "html_url": "https://github.com/next2you", + "followers_url": "https://api.github.com/users/next2you/followers", + "following_url": "https://api.github.com/users/next2you/following{/other_user}", + "gists_url": "https://api.github.com/users/next2you/gists{/gist_id}", + "starred_url": "https://api.github.com/users/next2you/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/next2you/subscriptions", + "organizations_url": "https://api.github.com/users/next2you/orgs", + "repos_url": "https://api.github.com/users/next2you/repos", + "events_url": "https://api.github.com/users/next2you/events{/privacy}", + "received_events_url": "https://api.github.com/users/next2you/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 3, + "created_at": "2012-07-17T10:17:14Z", + "updated_at": "2013-01-06T01:13:18Z", + "closed_at": "2013-01-06T01:13:18Z", + "author_association": "NONE", + "body": "Hi,\n\njust tried your plugin on jenkins with our internal enterprise github. This is only accessible via http (not https). The code to access the api always adds the \"https://api\" prefix in front of it. \n\nGithub-api plugin: 1.28\nOauth plugin: 0.12\n\nIf I have time I'll try to find a workaround... Maybe someone knows quickly how this could be fixed :-)\n\nChristian\n\nBtw, the stacktrace says \"plain\" connection because I've entered the URL to github in jenkins to be http://github.internal.net:80\n\nStack trace is attached, \n\n
        \njavax.net.ssl.SSLException: Unrecognized SSL message, plaintext connection?\n    at com.sun.net.ssl.internal.ssl.InputRecord.handleUnknownRecord(InputRecord.java:523)\n    at com.sun.net.ssl.internal.ssl.InputRecord.read(InputRecord.java:355)\n    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:798)\n    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.performInitialHandshake(SSLSocketImpl.java:1138)\n    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:1165)\n    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:1149)\n    at sun.net.www.protocol.https.HttpsClient.afterConnect(HttpsClient.java:434)\n    at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:166)\n    at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1177)\n    at sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(HttpsURLConnectionImpl.java:234)\n    at org.kohsuke.github.GitHub.parse(GitHub.java:300)\n    at org.kohsuke.github.GitHub._retrieve(GitHub.java:186)\n    at org.kohsuke.github.GitHub.retrieveWithAuth(GitHub.java:175)\n    at org.kohsuke.github.GitHub.getMyself(GitHub.java:365)\n    at org.kohsuke.github.GitHub.(GitHub.java:114)\n    at org.kohsuke.github.GitHub.connectUsingOAuth(GitHub.java:145)\n    at org.jenkinsci.plugins.GithubAuthenticationToken.(GithubAuthenticationToken.java:68)\n    at org.jenkinsci.plugins.GithubSecurityRealm.doFinishLogin(GithubSecurityRealm.java:315)\n    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)\n    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)\n    at java.lang.reflect.Method.invoke(Method.java:597)\n    at org.kohsuke.stapler.Function$InstanceFunction.invoke(Function.java:288)\n    at org.kohsuke.stapler.Function.bindAndInvoke(Function.java:151)\n    at org.kohsuke.stapler.Function.bindAndInvokeAndServeResponse(Function.java:90)\n    at org.kohsuke.stapler.MetaClass$1.doDispatch(MetaClass.java:111)\n    at org.kohsuke.stapler.NameBasedDispatcher.dispatch(NameBasedDispatcher.java:53)\n    at org.kohsuke.stapler.Stapler.tryInvoke(Stapler.java:574)\n    at org.kohsuke.stapler.Stapler.invoke(Stapler.java:659)\n    at org.kohsuke.stapler.MetaClass$4.doDispatch(MetaClass.java:203)\n    at org.kohsuke.stapler.NameBasedDispatcher.dispatch(NameBasedDispatcher.java:53)\n    at org.kohsuke.stapler.Stapler.tryInvoke(Stapler.java:574)\n    at org.kohsuke.stapler.Stapler.invoke(Stapler.java:659)\n    at org.kohsuke.stapler.Stapler.invoke(Stapler.java:488)\n    at org.kohsuke.stapler.Stapler.service(Stapler.java:162)\n    at javax.servlet.http.HttpServlet.service(HttpServlet.java:45)\n    at winstone.ServletConfiguration.execute(ServletConfiguration.java:248)\n    at winstone.RequestDispatcher.forward(RequestDispatcher.java:333)\n    at winstone.RequestDispatcher.doFilter(RequestDispatcher.java:376)\n    at hudson.util.PluginServletFilter$1.doFilter(PluginServletFilter.java:95)\n
        \n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/11", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/11/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/11/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/11/events", + "html_url": "https://github.com/github-api/github-api/issues/11", + "id": 5039181, + "node_id": "MDU6SXNzdWU1MDM5MTgx", + "number": 11, + "title": "NPE Crash on 1.27", + "user": { + "login": "jcollas", + "id": 164569, + "node_id": "MDQ6VXNlcjE2NDU2OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/164569?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jcollas", + "html_url": "https://github.com/jcollas", + "followers_url": "https://api.github.com/users/jcollas/followers", + "following_url": "https://api.github.com/users/jcollas/following{/other_user}", + "gists_url": "https://api.github.com/users/jcollas/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jcollas/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jcollas/subscriptions", + "organizations_url": "https://api.github.com/users/jcollas/orgs", + "repos_url": "https://api.github.com/users/jcollas/repos", + "events_url": "https://api.github.com/users/jcollas/events{/privacy}", + "received_events_url": "https://api.github.com/users/jcollas/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2012-06-13T02:22:59Z", + "updated_at": "2012-06-14T16:25:59Z", + "closed_at": "2012-06-14T16:25:59Z", + "author_association": "NONE", + "body": "Just installed the latest version of the plugin from Jenkins to deal with v1 and v2 github going away, and got this:\n\njava.lang.NullPointerException\n at org.acegisecurity.GrantedAuthorityImpl.hashCode(GrantedAuthorityImpl.java:62)\n at org.acegisecurity.providers.AbstractAuthenticationToken.hashCode(AbstractAuthenticationToken.java:146)\n at hudson.security.NotSerilizableSecurityContext.hashCode(NotSerilizableSecurityContext.java:80)\n at org.acegisecurity.context.HttpSessionContextIntegrationFilter.storeSecurityContextInSession(HttpSessionContextIntegrationFilter.java:407)\n at org.acegisecurity.context.HttpSessionContextIntegrationFilter.doFilter(HttpSessionContextIntegrationFilter.java:264)\n at hudson.security.HttpSessionContextIntegrationFilter2.doFilter(HttpSessionContextIntegrationFilter2.java:66)\n at hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)\n at hudson.security.ChainedServletFilter.doFilter(ChainedServletFilter.java:76)\n at hudson.security.HudsonFilter.doFilter(HudsonFilter.java:164)\n at winstone.FilterConfiguration.execute(FilterConfiguration.java:194)\n at winstone.RequestDispatcher.doFilter(RequestDispatcher.java:366)\n at hudson.util.CharacterEncodingFilter.doFilter(CharacterEncodingFilter.java:81)\n at winstone.FilterConfiguration.execute(FilterConfiguration.java:194)\n at winstone.RequestDispatcher.doFilter(RequestDispatcher.java:366)\n at winstone.RequestDispatcher.forward(RequestDispatcher.java:331)\n at winstone.RequestHandlerThread.processRequest(RequestHandlerThread.java:215)\n at winstone.RequestHandlerThread.run(RequestHandlerThread.java:138)\n at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:441)\n at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)\n at java.util.concurrent.FutureTask.run(FutureTask.java:138)\n at winstone.BoundedExecutorService$1.run(BoundedExecutorService.java:77)\n at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)\n at java.lang.Thread.run(Thread.java:680)\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/10", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/10/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/10/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/10/events", + "html_url": "https://github.com/github-api/github-api/pull/10", + "id": 5035378, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTU1MDIzOA==", + "number": 10, + "title": "Fix getMyOrganizations to build hash on `login` instead of `name`", + "user": { + "login": "ryanbrainard", + "id": 966764, + "node_id": "MDQ6VXNlcjk2Njc2NA==", + "avatar_url": "https://avatars3.githubusercontent.com/u/966764?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ryanbrainard", + "html_url": "https://github.com/ryanbrainard", + "followers_url": "https://api.github.com/users/ryanbrainard/followers", + "following_url": "https://api.github.com/users/ryanbrainard/following{/other_user}", + "gists_url": "https://api.github.com/users/ryanbrainard/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ryanbrainard/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ryanbrainard/subscriptions", + "organizations_url": "https://api.github.com/users/ryanbrainard/orgs", + "repos_url": "https://api.github.com/users/ryanbrainard/repos", + "events_url": "https://api.github.com/users/ryanbrainard/events{/privacy}", + "received_events_url": "https://api.github.com/users/ryanbrainard/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2012-06-12T22:25:52Z", + "updated_at": "2014-07-01T17:26:25Z", + "closed_at": "2012-06-13T16:06:30Z", + "author_association": "COLLABORATOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/10", + "html_url": "https://github.com/github-api/github-api/pull/10", + "diff_url": "https://github.com/github-api/github-api/pull/10.diff", + "patch_url": "https://github.com/github-api/github-api/pull/10.patch" + }, + "body": "In v3, orgs always have a `login`, but the `name` is only returned on the detailed call. `getMyOrganizations()` was keying on `name`, but was always `null`. This is to change it to `login` as the unique id for orgs.\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/9", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/9/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/9/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/9/events", + "html_url": "https://github.com/github-api/github-api/pull/9", + "id": 5034613, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTU0OTk1Ng==", + "number": 9, + "title": "Using v3 for Organizations", + "user": { + "login": "johnnyhalife", + "id": 92490, + "node_id": "MDQ6VXNlcjkyNDkw", + "avatar_url": "https://avatars3.githubusercontent.com/u/92490?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/johnnyhalife", + "html_url": "https://github.com/johnnyhalife", + "followers_url": "https://api.github.com/users/johnnyhalife/followers", + "following_url": "https://api.github.com/users/johnnyhalife/following{/other_user}", + "gists_url": "https://api.github.com/users/johnnyhalife/gists{/gist_id}", + "starred_url": "https://api.github.com/users/johnnyhalife/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/johnnyhalife/subscriptions", + "organizations_url": "https://api.github.com/users/johnnyhalife/orgs", + "repos_url": "https://api.github.com/users/johnnyhalife/repos", + "events_url": "https://api.github.com/users/johnnyhalife/events{/privacy}", + "received_events_url": "https://api.github.com/users/johnnyhalife/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 3, + "created_at": "2012-06-12T21:57:00Z", + "updated_at": "2014-07-01T17:26:26Z", + "closed_at": "2012-06-13T16:07:28Z", + "author_association": "COLLABORATOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/9", + "html_url": "https://github.com/github-api/github-api/pull/9", + "diff_url": "https://github.com/github-api/github-api/pull/9.diff", + "patch_url": "https://github.com/github-api/github-api/pull/9.patch" + }, + "body": "Hi @kohsuke, \n\nWe're using your plugin on our Jenkins, we found that it's no longer working (since today v2 was deprecated). I don't know how to go through the hassel of creating a Jenkins plugin, so if you want to merge it and publish we'll be more than welcomed.\n\nthanks,\n~johnny (from Tactivos)\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/8", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/8/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/8/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/8/events", + "html_url": "https://github.com/github-api/github-api/issues/8", + "id": 5031458, + "node_id": "MDU6SXNzdWU1MDMxNDU4", + "number": 8, + "title": "Github API V2 shuts down", + "user": { + "login": "ywen", + "id": 22895, + "node_id": "MDQ6VXNlcjIyODk1", + "avatar_url": "https://avatars2.githubusercontent.com/u/22895?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ywen", + "html_url": "https://github.com/ywen", + "followers_url": "https://api.github.com/users/ywen/followers", + "following_url": "https://api.github.com/users/ywen/following{/other_user}", + "gists_url": "https://api.github.com/users/ywen/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ywen/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ywen/subscriptions", + "organizations_url": "https://api.github.com/users/ywen/orgs", + "repos_url": "https://api.github.com/users/ywen/repos", + "events_url": "https://api.github.com/users/ywen/events{/privacy}", + "received_events_url": "https://api.github.com/users/ywen/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 8, + "created_at": "2012-06-12T19:30:40Z", + "updated_at": "2012-06-14T08:26:37Z", + "closed_at": "2012-06-13T16:08:43Z", + "author_association": "NONE", + "body": "https://github.com/blog/1160-github-api-v2-end-of-life\n\nIt means a lot of stuff in the API using V2 are broken. :(\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/7", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/7/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/7/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/7/events", + "html_url": "https://github.com/github-api/github-api/pull/7", + "id": 3988943, + "node_id": "MDExOlB1bGxSZXF1ZXN0MTExMjUzNQ==", + "number": 7, + "title": "Listing of branches in a repository", + "user": { + "login": "derfred", + "id": 24133, + "node_id": "MDQ6VXNlcjI0MTMz", + "avatar_url": "https://avatars0.githubusercontent.com/u/24133?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/derfred", + "html_url": "https://github.com/derfred", + "followers_url": "https://api.github.com/users/derfred/followers", + "following_url": "https://api.github.com/users/derfred/following{/other_user}", + "gists_url": "https://api.github.com/users/derfred/gists{/gist_id}", + "starred_url": "https://api.github.com/users/derfred/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/derfred/subscriptions", + "organizations_url": "https://api.github.com/users/derfred/orgs", + "repos_url": "https://api.github.com/users/derfred/repos", + "events_url": "https://api.github.com/users/derfred/events{/privacy}", + "received_events_url": "https://api.github.com/users/derfred/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2012-04-05T14:23:46Z", + "updated_at": "2014-07-01T17:26:27Z", + "closed_at": "2012-04-06T15:25:00Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/7", + "html_url": "https://github.com/github-api/github-api/pull/7", + "diff_url": "https://github.com/github-api/github-api/pull/7.diff", + "patch_url": "https://github.com/github-api/github-api/pull/7.patch" + }, + "body": "I've implemented listing the branches in a repository like so:\n\n``` java\nList b = gitHub.getUser(\"jenkinsci\").getRepository(\"jenkins\").getBranches();\n```\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/6", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/6/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/6/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/6/events", + "html_url": "https://github.com/github-api/github-api/pull/6", + "id": 2827735, + "node_id": "MDExOlB1bGxSZXF1ZXN0Njg1NDQ3", + "number": 6, + "title": "milestone api via v3", + "user": { + "login": "YusukeKokubo", + "id": 74654, + "node_id": "MDQ6VXNlcjc0NjU0", + "avatar_url": "https://avatars0.githubusercontent.com/u/74654?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/YusukeKokubo", + "html_url": "https://github.com/YusukeKokubo", + "followers_url": "https://api.github.com/users/YusukeKokubo/followers", + "following_url": "https://api.github.com/users/YusukeKokubo/following{/other_user}", + "gists_url": "https://api.github.com/users/YusukeKokubo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/YusukeKokubo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/YusukeKokubo/subscriptions", + "organizations_url": "https://api.github.com/users/YusukeKokubo/orgs", + "repos_url": "https://api.github.com/users/YusukeKokubo/repos", + "events_url": "https://api.github.com/users/YusukeKokubo/events{/privacy}", + "received_events_url": "https://api.github.com/users/YusukeKokubo/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 3, + "created_at": "2012-01-13T05:39:08Z", + "updated_at": "2014-06-14T12:21:06Z", + "closed_at": "2012-03-08T20:50:19Z", + "author_association": "COLLABORATOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/6", + "html_url": "https://github.com/github-api/github-api/pull/6", + "diff_url": "https://github.com/github-api/github-api/pull/6.diff", + "patch_url": "https://github.com/github-api/github-api/pull/6.patch" + }, + "body": "please review my patch.\n\nthanks.\n### \n\nテストコードも書いた方が良いと思うのですがどう書くのが適切なのかちょっとわからないでいます…。\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/5", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/5/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/5/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/5/events", + "html_url": "https://github.com/github-api/github-api/issues/5", + "id": 2766701, + "node_id": "MDU6SXNzdWUyNzY2NzAx", + "number": 5, + "title": "error on getRepositories()", + "user": { + "login": "YusukeKokubo", + "id": 74654, + "node_id": "MDQ6VXNlcjc0NjU0", + "avatar_url": "https://avatars0.githubusercontent.com/u/74654?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/YusukeKokubo", + "html_url": "https://github.com/YusukeKokubo", + "followers_url": "https://api.github.com/users/YusukeKokubo/followers", + "following_url": "https://api.github.com/users/YusukeKokubo/following{/other_user}", + "gists_url": "https://api.github.com/users/YusukeKokubo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/YusukeKokubo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/YusukeKokubo/subscriptions", + "organizations_url": "https://api.github.com/users/YusukeKokubo/orgs", + "repos_url": "https://api.github.com/users/YusukeKokubo/repos", + "events_url": "https://api.github.com/users/YusukeKokubo/events{/privacy}", + "received_events_url": "https://api.github.com/users/YusukeKokubo/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 3, + "created_at": "2012-01-09T09:39:57Z", + "updated_at": "2012-01-10T02:21:42Z", + "closed_at": "2012-01-10T02:21:42Z", + "author_association": "COLLABORATOR", + "body": "I written like below;\n\nGitHub gh = GitHub.connect(\"YusukeKokubo\", \"xxx\", \"xxx\");\nGHUser user = gh.getMyself();\nuser.getRepositories();\n\nand got exception\n\nException in thread \"main\" java.io.FileNotFoundException: https://api.github.com/user/YusukeKokubo/repos?per_page=100&page=1\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/4", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/4/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/4/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/4/events", + "html_url": "https://github.com/github-api/github-api/issues/4", + "id": 2733631, + "node_id": "MDU6SXNzdWUyNzMzNjMx", + "number": 4, + "title": "Link to Javadoc incorrect at http://github-api.kohsuke.org/", + "user": { + "login": "andrewrjones", + "id": 140817, + "node_id": "MDQ6VXNlcjE0MDgxNw==", + "avatar_url": "https://avatars3.githubusercontent.com/u/140817?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/andrewrjones", + "html_url": "https://github.com/andrewrjones", + "followers_url": "https://api.github.com/users/andrewrjones/followers", + "following_url": "https://api.github.com/users/andrewrjones/following{/other_user}", + "gists_url": "https://api.github.com/users/andrewrjones/gists{/gist_id}", + "starred_url": "https://api.github.com/users/andrewrjones/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/andrewrjones/subscriptions", + "organizations_url": "https://api.github.com/users/andrewrjones/orgs", + "repos_url": "https://api.github.com/users/andrewrjones/repos", + "events_url": "https://api.github.com/users/andrewrjones/events{/privacy}", + "received_events_url": "https://api.github.com/users/andrewrjones/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2012-01-05T10:25:21Z", + "updated_at": "2012-04-11T17:04:51Z", + "closed_at": "2012-04-11T17:04:51Z", + "author_association": "NONE", + "body": "The link to Javadoc currently points at http://github-api.kohsuke.org/apidocs/index.html, which seems incorrect.\n\nThanks.\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/3", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/3/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/3/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/3/events", + "html_url": "https://github.com/github-api/github-api/pull/3", + "id": 2706585, + "node_id": "MDExOlB1bGxSZXF1ZXN0NjQ1NDI4", + "number": 3, + "title": "Fix for finding private repos on organizations", + "user": { + "login": "jkrall", + "id": 11402, + "node_id": "MDQ6VXNlcjExNDAy", + "avatar_url": "https://avatars0.githubusercontent.com/u/11402?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jkrall", + "html_url": "https://github.com/jkrall", + "followers_url": "https://api.github.com/users/jkrall/followers", + "following_url": "https://api.github.com/users/jkrall/following{/other_user}", + "gists_url": "https://api.github.com/users/jkrall/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jkrall/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jkrall/subscriptions", + "organizations_url": "https://api.github.com/users/jkrall/orgs", + "repos_url": "https://api.github.com/users/jkrall/repos", + "events_url": "https://api.github.com/users/jkrall/events{/privacy}", + "received_events_url": "https://api.github.com/users/jkrall/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2012-01-03T01:52:26Z", + "updated_at": "2014-07-01T17:26:27Z", + "closed_at": "2012-01-03T19:12:31Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/3", + "html_url": "https://github.com/github-api/github-api/pull/3", + "diff_url": "https://github.com/github-api/github-api/pull/3.diff", + "patch_url": "https://github.com/github-api/github-api/pull/3.patch" + }, + "body": "If you have a private repo on an organization, you need to access it via an authenticated API call. \n\nThis adds support for querying organization repos to GHOrganization.\n\n(I needed this for a fix to the jenkins github plugin... pull request for that one coming momentarily.)\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/2", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/2/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/2/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/2/events", + "html_url": "https://github.com/github-api/github-api/pull/2", + "id": 1576990, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzExMTA0", + "number": 2, + "title": "expose issue_updated_at. It looks like a better representation of update ", + "user": { + "login": "lacostej", + "id": 24282, + "node_id": "MDQ6VXNlcjI0Mjgy", + "avatar_url": "https://avatars2.githubusercontent.com/u/24282?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/lacostej", + "html_url": "https://github.com/lacostej", + "followers_url": "https://api.github.com/users/lacostej/followers", + "following_url": "https://api.github.com/users/lacostej/following{/other_user}", + "gists_url": "https://api.github.com/users/lacostej/gists{/gist_id}", + "starred_url": "https://api.github.com/users/lacostej/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/lacostej/subscriptions", + "organizations_url": "https://api.github.com/users/lacostej/orgs", + "repos_url": "https://api.github.com/users/lacostej/repos", + "events_url": "https://api.github.com/users/lacostej/events{/privacy}", + "received_events_url": "https://api.github.com/users/lacostej/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2011-09-06T11:21:44Z", + "updated_at": "2014-07-01T17:26:28Z", + "closed_at": "2011-09-06T20:28:30Z", + "author_association": "COLLABORATOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/2", + "html_url": "https://github.com/github-api/github-api/pull/2", + "diff_url": "https://github.com/github-api/github-api/pull/2.diff", + "patch_url": "https://github.com/github-api/github-api/pull/2.patch" + }, + "body": "expose issue_updated_at.\n\nIt looks like a better representation of update time for an pull request than updated_at\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/1", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/1/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/1/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/1/events", + "html_url": "https://github.com/github-api/github-api/pull/1", + "id": 1198638, + "node_id": "MDExOlB1bGxSZXF1ZXN0MjE2OTYy", + "number": 1, + "title": "Add support for oauth token and a way to see my organizations", + "user": { + "login": "mocleiri", + "id": 250942, + "node_id": "MDQ6VXNlcjI1MDk0Mg==", + "avatar_url": "https://avatars0.githubusercontent.com/u/250942?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mocleiri", + "html_url": "https://github.com/mocleiri", + "followers_url": "https://api.github.com/users/mocleiri/followers", + "following_url": "https://api.github.com/users/mocleiri/following{/other_user}", + "gists_url": "https://api.github.com/users/mocleiri/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mocleiri/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mocleiri/subscriptions", + "organizations_url": "https://api.github.com/users/mocleiri/orgs", + "repos_url": "https://api.github.com/users/mocleiri/repos", + "events_url": "https://api.github.com/users/mocleiri/events{/privacy}", + "received_events_url": "https://api.github.com/users/mocleiri/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2011-07-10T21:16:33Z", + "updated_at": "2014-07-01T17:26:28Z", + "closed_at": "2011-07-11T18:20:33Z", + "author_association": "COLLABORATOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/1", + "html_url": "https://github.com/github-api/github-api/pull/1", + "diff_url": "https://github.com/github-api/github-api/pull/1.diff", + "patch_url": "https://github.com/github-api/github-api/pull/1.patch" + }, + "body": "I've written a github oauth authentication plugin for jenkins and I used github-api for the interactions with github once I have the token.\n\nMy first pass implementation of the plugin works so I want to contribute the github-api changes back.\n\nChanges:\n1. setup the Github class using the oauth token.\n2. get a list of organizations that the **current** user belongs to.\n" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/__files/repositories_617210_issues-fe625e7c-4b31-4b30-bc77-a763a3774fdc.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/__files/repositories_617210_issues-fe625e7c-4b31-4b30-bc77-a763a3774fdc.json new file mode 100644 index 0000000000..45fc64cb38 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/__files/repositories_617210_issues-fe625e7c-4b31-4b30-bc77-a763a3774fdc.json @@ -0,0 +1,1465 @@ +[ + { + "url": "https://api.github.com/repos/github-api/github-api/issues/236", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/236/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/236/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/236/events", + "html_url": "https://github.com/github-api/github-api/pull/236", + "id": 118345436, + "node_id": "MDExOlB1bGxSZXF1ZXN0NTE1MDEzOTE=", + "number": 236, + "title": "Findbugs plugin has been upgraded", + "user": { + "login": "recena", + "id": 1021745, + "node_id": "MDQ6VXNlcjEwMjE3NDU=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1021745?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/recena", + "html_url": "https://github.com/recena", + "followers_url": "https://api.github.com/users/recena/followers", + "following_url": "https://api.github.com/users/recena/following{/other_user}", + "gists_url": "https://api.github.com/users/recena/gists{/gist_id}", + "starred_url": "https://api.github.com/users/recena/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/recena/subscriptions", + "organizations_url": "https://api.github.com/users/recena/orgs", + "repos_url": "https://api.github.com/users/recena/repos", + "events_url": "https://api.github.com/users/recena/events{/privacy}", + "received_events_url": "https://api.github.com/users/recena/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 3, + "created_at": "2015-11-23T09:32:40Z", + "updated_at": "2015-11-25T22:06:57Z", + "closed_at": "2015-11-25T22:06:57Z", + "author_association": "COLLABORATOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/236", + "html_url": "https://github.com/github-api/github-api/pull/236", + "diff_url": "https://github.com/github-api/github-api/pull/236.diff", + "patch_url": "https://github.com/github-api/github-api/pull/236.patch" + }, + "body": "@reviewbybees /cc @KostyaSha \n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/235", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/235/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/235/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/235/events", + "html_url": "https://github.com/github-api/github-api/issues/235", + "id": 118269610, + "node_id": "MDU6SXNzdWUxMTgyNjk2MTA=", + "number": 235, + "title": "Access to raw JSON for issues?", + "user": { + "login": "io7m", + "id": 612494, + "node_id": "MDQ6VXNlcjYxMjQ5NA==", + "avatar_url": "https://avatars1.githubusercontent.com/u/612494?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/io7m", + "html_url": "https://github.com/io7m", + "followers_url": "https://api.github.com/users/io7m/followers", + "following_url": "https://api.github.com/users/io7m/following{/other_user}", + "gists_url": "https://api.github.com/users/io7m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/io7m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/io7m/subscriptions", + "organizations_url": "https://api.github.com/users/io7m/orgs", + "repos_url": "https://api.github.com/users/io7m/repos", + "events_url": "https://api.github.com/users/io7m/events{/privacy}", + "received_events_url": "https://api.github.com/users/io7m/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2015-11-22T15:38:07Z", + "updated_at": "2015-12-02T15:14:46Z", + "closed_at": "2015-12-01T15:55:45Z", + "author_association": "NONE", + "body": "Hello.\n\nI currently use the `github-api` package to maintain a local mirror of my repositories. I would like to be able to maintain a local copy of all issues, open or closed. Right now, I could use the API to pull a list of GHIssue objects and then manually serialize them all. However, this suffers from two problems: It's a maintenance burden, and I'd need to constantly check the API to ensure that new fields haven't been added that my manual serialization would otherwise miss. The `github-api` package obviously has access to the raw JSON, so is there any way that it could expose it so that I could write it directly to disk?\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/234", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/234/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/234/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/234/events", + "html_url": "https://github.com/github-api/github-api/issues/234", + "id": 117996897, + "node_id": "MDU6SXNzdWUxMTc5OTY4OTc=", + "number": 234, + "title": "GHRepository.getPullRequests() / listPullRequests() does not support the sort parameter", + "user": { + "login": "jglazner", + "id": 1048033, + "node_id": "MDQ6VXNlcjEwNDgwMzM=", + "avatar_url": "https://avatars0.githubusercontent.com/u/1048033?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jglazner", + "html_url": "https://github.com/jglazner", + "followers_url": "https://api.github.com/users/jglazner/followers", + "following_url": "https://api.github.com/users/jglazner/following{/other_user}", + "gists_url": "https://api.github.com/users/jglazner/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jglazner/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jglazner/subscriptions", + "organizations_url": "https://api.github.com/users/jglazner/orgs", + "repos_url": "https://api.github.com/users/jglazner/repos", + "events_url": "https://api.github.com/users/jglazner/events{/privacy}", + "received_events_url": "https://api.github.com/users/jglazner/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2015-11-20T09:05:51Z", + "updated_at": "2015-12-10T14:34:25Z", + "closed_at": "2015-12-10T14:34:25Z", + "author_association": "NONE", + "body": "The github api allows for a sort parameter when iterating over pull requests, however the library does not support it.\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/233", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/233/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/233/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/233/events", + "html_url": "https://github.com/github-api/github-api/pull/233", + "id": 117781378, + "node_id": "MDExOlB1bGxSZXF1ZXN0NTEyMDI0MjM=", + "number": 233, + "title": "Add information about mirror url if it exist.", + "user": { + "login": "vparfonov", + "id": 1636592, + "node_id": "MDQ6VXNlcjE2MzY1OTI=", + "avatar_url": "https://avatars1.githubusercontent.com/u/1636592?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vparfonov", + "html_url": "https://github.com/vparfonov", + "followers_url": "https://api.github.com/users/vparfonov/followers", + "following_url": "https://api.github.com/users/vparfonov/following{/other_user}", + "gists_url": "https://api.github.com/users/vparfonov/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vparfonov/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vparfonov/subscriptions", + "organizations_url": "https://api.github.com/users/vparfonov/orgs", + "repos_url": "https://api.github.com/users/vparfonov/repos", + "events_url": "https://api.github.com/users/vparfonov/events{/privacy}", + "received_events_url": "https://api.github.com/users/vparfonov/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 4, + "created_at": "2015-11-19T10:10:03Z", + "updated_at": "2015-11-30T15:18:45Z", + "closed_at": "2015-11-30T15:18:44Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/233", + "html_url": "https://github.com/github-api/github-api/pull/233", + "diff_url": "https://github.com/github-api/github-api/pull/233.diff", + "patch_url": "https://github.com/github-api/github-api/pull/233.patch" + }, + "body": " Like https://github.com/apache/tomee\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/232", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/232/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/232/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/232/events", + "html_url": "https://github.com/github-api/github-api/pull/232", + "id": 116998367, + "node_id": "MDExOlB1bGxSZXF1ZXN0NTA3NDg5MTc=", + "number": 232, + "title": "Added a new method to validate the GitHub API URL", + "user": { + "login": "recena", + "id": 1021745, + "node_id": "MDQ6VXNlcjEwMjE3NDU=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1021745?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/recena", + "html_url": "https://github.com/recena", + "followers_url": "https://api.github.com/users/recena/followers", + "following_url": "https://api.github.com/users/recena/following{/other_user}", + "gists_url": "https://api.github.com/users/recena/gists{/gist_id}", + "starred_url": "https://api.github.com/users/recena/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/recena/subscriptions", + "organizations_url": "https://api.github.com/users/recena/orgs", + "repos_url": "https://api.github.com/users/recena/repos", + "events_url": "https://api.github.com/users/recena/events{/privacy}", + "received_events_url": "https://api.github.com/users/recena/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 265902955, + "node_id": "MDU6TGFiZWwyNjU5MDI5NTU=", + "url": "https://api.github.com/repos/github-api/github-api/labels/new%20feature", + "name": "new feature", + "color": "009800", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 6, + "created_at": "2015-11-15T15:37:18Z", + "updated_at": "2015-12-03T09:24:28Z", + "closed_at": "2015-12-01T15:06:12Z", + "author_association": "COLLABORATOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/232", + "html_url": "https://github.com/github-api/github-api/pull/232", + "diff_url": "https://github.com/github-api/github-api/pull/232.diff", + "patch_url": "https://github.com/github-api/github-api/pull/232.patch" + }, + "body": "@reviewbybees specially, @oleg-nenashev \n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/231", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/231/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/231/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/231/events", + "html_url": "https://github.com/github-api/github-api/pull/231", + "id": 116986700, + "node_id": "MDExOlB1bGxSZXF1ZXN0NTA3NDQzNTc=", + "number": 231, + "title": "Support for merge_commit_sha", + "user": { + "login": "recena", + "id": 1021745, + "node_id": "MDQ6VXNlcjEwMjE3NDU=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1021745?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/recena", + "html_url": "https://github.com/recena", + "followers_url": "https://api.github.com/users/recena/followers", + "following_url": "https://api.github.com/users/recena/following{/other_user}", + "gists_url": "https://api.github.com/users/recena/gists{/gist_id}", + "starred_url": "https://api.github.com/users/recena/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/recena/subscriptions", + "organizations_url": "https://api.github.com/users/recena/orgs", + "repos_url": "https://api.github.com/users/recena/repos", + "events_url": "https://api.github.com/users/recena/events{/privacy}", + "received_events_url": "https://api.github.com/users/recena/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 265902955, + "node_id": "MDU6TGFiZWwyNjU5MDI5NTU=", + "url": "https://api.github.com/repos/github-api/github-api/labels/new%20feature", + "name": "new feature", + "color": "009800", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 19, + "created_at": "2015-11-15T10:58:05Z", + "updated_at": "2016-02-25T22:02:28Z", + "closed_at": "2015-11-25T22:22:10Z", + "author_association": "COLLABORATOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/231", + "html_url": "https://github.com/github-api/github-api/pull/231", + "diff_url": "https://github.com/github-api/github-api/pull/231.diff", + "patch_url": "https://github.com/github-api/github-api/pull/231.patch" + }, + "body": "`GHPullRequest` object now includes `merge_commit_sha`\n\n@reviewbybees specially, @oleg-nenashev\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/230", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/230/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/230/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/230/events", + "html_url": "https://github.com/github-api/github-api/issues/230", + "id": 115517224, + "node_id": "MDU6SXNzdWUxMTU1MTcyMjQ=", + "number": 230, + "title": "Commit obtained by queryCommits does not contain files", + "user": { + "login": "SaintDubious", + "id": 14866211, + "node_id": "MDQ6VXNlcjE0ODY2MjEx", + "avatar_url": "https://avatars0.githubusercontent.com/u/14866211?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/SaintDubious", + "html_url": "https://github.com/SaintDubious", + "followers_url": "https://api.github.com/users/SaintDubious/followers", + "following_url": "https://api.github.com/users/SaintDubious/following{/other_user}", + "gists_url": "https://api.github.com/users/SaintDubious/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SaintDubious/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SaintDubious/subscriptions", + "organizations_url": "https://api.github.com/users/SaintDubious/orgs", + "repos_url": "https://api.github.com/users/SaintDubious/repos", + "events_url": "https://api.github.com/users/SaintDubious/events{/privacy}", + "received_events_url": "https://api.github.com/users/SaintDubious/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2015-11-06T14:41:24Z", + "updated_at": "2015-12-10T13:56:27Z", + "closed_at": "2015-12-10T13:56:27Z", + "author_association": "NONE", + "body": "If I use queryCommits to get a list of commits and then call getFiles() on any of the commits in the list, it will return 0 files. However if I instead directly get a commit by sha1 and then call getFiles() it will return the appropriate file count. Both commit objects represent the same commit, they should have the same file count:\n\n```\nPagedIterable commits = ghRepo.queryCommits().path( fullPath + \"/\" + fileName ).list();\nfor (GHCommit commit : commits) {\n GHCommit testing = ghRepo.getCommit( commit.getSHA1() );\n // System.out.println( \"FileCount = \" + commit.getFiles().size() );\n // System.out.println( \"FileCount = \" + testing.getFiles().size() );\n}\n```\n\nThis will print out:\n\n```\nFileCount = 0\nFileCount = 1\n```\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/229", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/229/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/229/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/229/events", + "html_url": "https://github.com/github-api/github-api/issues/229", + "id": 113329702, + "node_id": "MDU6SXNzdWUxMTMzMjk3MDI=", + "number": 229, + "title": "Push to repo", + "user": { + "login": "to2raja", + "id": 14906704, + "node_id": "MDQ6VXNlcjE0OTA2NzA0", + "avatar_url": "https://avatars2.githubusercontent.com/u/14906704?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/to2raja", + "html_url": "https://github.com/to2raja", + "followers_url": "https://api.github.com/users/to2raja/followers", + "following_url": "https://api.github.com/users/to2raja/following{/other_user}", + "gists_url": "https://api.github.com/users/to2raja/gists{/gist_id}", + "starred_url": "https://api.github.com/users/to2raja/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/to2raja/subscriptions", + "organizations_url": "https://api.github.com/users/to2raja/orgs", + "repos_url": "https://api.github.com/users/to2raja/repos", + "events_url": "https://api.github.com/users/to2raja/events{/privacy}", + "received_events_url": "https://api.github.com/users/to2raja/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2015-10-26T10:48:36Z", + "updated_at": "2015-10-26T11:33:43Z", + "closed_at": "2015-10-26T11:33:43Z", + "author_association": "NONE", + "body": "I am able to create repository in GitHub. it s going good.\n\nNow I want to push my local folder to this created repo. Is it possible to do using this library? I m using JGit to push now, which took too much time to push to the repo. I am able to push in 3 minutes via terminal, but JGit tooks 25 minutes to push the same folder.\n\nThanks in advance\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/228", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/228/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/228/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/228/events", + "html_url": "https://github.com/github-api/github-api/issues/228", + "id": 112212313, + "node_id": "MDU6SXNzdWUxMTIyMTIzMTM=", + "number": 228, + "title": "get starred projects by the user", + "user": { + "login": "anandasubedi", + "id": 7812091, + "node_id": "MDQ6VXNlcjc4MTIwOTE=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7812091?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/anandasubedi", + "html_url": "https://github.com/anandasubedi", + "followers_url": "https://api.github.com/users/anandasubedi/followers", + "following_url": "https://api.github.com/users/anandasubedi/following{/other_user}", + "gists_url": "https://api.github.com/users/anandasubedi/gists{/gist_id}", + "starred_url": "https://api.github.com/users/anandasubedi/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/anandasubedi/subscriptions", + "organizations_url": "https://api.github.com/users/anandasubedi/orgs", + "repos_url": "https://api.github.com/users/anandasubedi/repos", + "events_url": "https://api.github.com/users/anandasubedi/events{/privacy}", + "received_events_url": "https://api.github.com/users/anandasubedi/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2015-10-19T19:13:28Z", + "updated_at": "2015-12-03T16:55:39Z", + "closed_at": "2015-12-03T16:55:39Z", + "author_association": "NONE", + "body": "There is not any api available to get a user's starred projects. \n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/227", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/227/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/227/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/227/events", + "html_url": "https://github.com/github-api/github-api/issues/227", + "id": 111772512, + "node_id": "MDU6SXNzdWUxMTE3NzI1MTI=", + "number": 227, + "title": "update of file in github", + "user": { + "login": "iody", + "id": 4899483, + "node_id": "MDQ6VXNlcjQ4OTk0ODM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/4899483?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/iody", + "html_url": "https://github.com/iody", + "followers_url": "https://api.github.com/users/iody/followers", + "following_url": "https://api.github.com/users/iody/following{/other_user}", + "gists_url": "https://api.github.com/users/iody/gists{/gist_id}", + "starred_url": "https://api.github.com/users/iody/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/iody/subscriptions", + "organizations_url": "https://api.github.com/users/iody/orgs", + "repos_url": "https://api.github.com/users/iody/repos", + "events_url": "https://api.github.com/users/iody/events{/privacy}", + "received_events_url": "https://api.github.com/users/iody/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2015-10-16T06:53:07Z", + "updated_at": "2015-12-03T16:47:17Z", + "closed_at": "2015-12-03T16:47:17Z", + "author_association": "NONE", + "body": "missing sha to update content.\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/226", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/226/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/226/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/226/events", + "html_url": "https://github.com/github-api/github-api/pull/226", + "id": 110685198, + "node_id": "MDExOlB1bGxSZXF1ZXN0NDcyODc4MzA=", + "number": 226, + "title": "Check builder result to either be a token or a user", + "user": { + "login": "Shredder121", + "id": 4105066, + "node_id": "MDQ6VXNlcjQxMDUwNjY=", + "avatar_url": "https://avatars2.githubusercontent.com/u/4105066?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Shredder121", + "html_url": "https://github.com/Shredder121", + "followers_url": "https://api.github.com/users/Shredder121/followers", + "following_url": "https://api.github.com/users/Shredder121/following{/other_user}", + "gists_url": "https://api.github.com/users/Shredder121/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Shredder121/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Shredder121/subscriptions", + "organizations_url": "https://api.github.com/users/Shredder121/orgs", + "repos_url": "https://api.github.com/users/Shredder121/repos", + "events_url": "https://api.github.com/users/Shredder121/events{/privacy}", + "received_events_url": "https://api.github.com/users/Shredder121/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 3, + "created_at": "2015-10-09T15:47:12Z", + "updated_at": "2015-12-01T14:21:54Z", + "closed_at": "2015-12-01T13:54:35Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/226", + "html_url": "https://github.com/github-api/github-api/pull/226", + "diff_url": "https://github.com/github-api/github-api/pull/226.diff", + "patch_url": "https://github.com/github-api/github-api/pull/226.patch" + }, + "body": "Currently, a `user` property is always required (it not having content is also fine).\n\nThis adds support for only having the `oauth` key in the property file/environment.\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/225", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/225/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/225/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/225/events", + "html_url": "https://github.com/github-api/github-api/pull/225", + "id": 110500112, + "node_id": "MDExOlB1bGxSZXF1ZXN0NDcxNzk5MzE=", + "number": 225, + "title": "Overzealous FindBugs changes.", + "user": { + "login": "Shredder121", + "id": 4105066, + "node_id": "MDQ6VXNlcjQxMDUwNjY=", + "avatar_url": "https://avatars2.githubusercontent.com/u/4105066?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Shredder121", + "html_url": "https://github.com/Shredder121", + "followers_url": "https://api.github.com/users/Shredder121/followers", + "following_url": "https://api.github.com/users/Shredder121/following{/other_user}", + "gists_url": "https://api.github.com/users/Shredder121/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Shredder121/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Shredder121/subscriptions", + "organizations_url": "https://api.github.com/users/Shredder121/orgs", + "repos_url": "https://api.github.com/users/Shredder121/repos", + "events_url": "https://api.github.com/users/Shredder121/events{/privacy}", + "received_events_url": "https://api.github.com/users/Shredder121/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 3, + "created_at": "2015-10-08T17:08:49Z", + "updated_at": "2015-12-01T13:55:13Z", + "closed_at": "2015-12-01T13:51:53Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/225", + "html_url": "https://github.com/github-api/github-api/pull/225", + "diff_url": "https://github.com/github-api/github-api/pull/225.diff", + "patch_url": "https://github.com/github-api/github-api/pull/225.patch" + }, + "body": "Charsets that are standard on the JRE are try-lookuped,\nbridge methods were removed and a stream that would be closed later is closed explicitly\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/224", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/224/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/224/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/224/events", + "html_url": "https://github.com/github-api/github-api/pull/224", + "id": 109951571, + "node_id": "MDExOlB1bGxSZXF1ZXN0NDY4NzA3MzI=", + "number": 224, + "title": "Remove trailing slash when requesting directory content", + "user": { + "login": "Shredder121", + "id": 4105066, + "node_id": "MDQ6VXNlcjQxMDUwNjY=", + "avatar_url": "https://avatars2.githubusercontent.com/u/4105066?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Shredder121", + "html_url": "https://github.com/Shredder121", + "followers_url": "https://api.github.com/users/Shredder121/followers", + "following_url": "https://api.github.com/users/Shredder121/following{/other_user}", + "gists_url": "https://api.github.com/users/Shredder121/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Shredder121/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Shredder121/subscriptions", + "organizations_url": "https://api.github.com/users/Shredder121/orgs", + "repos_url": "https://api.github.com/users/Shredder121/repos", + "events_url": "https://api.github.com/users/Shredder121/events{/privacy}", + "received_events_url": "https://api.github.com/users/Shredder121/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 8, + "created_at": "2015-10-06T07:40:09Z", + "updated_at": "2015-12-01T13:54:59Z", + "closed_at": "2015-12-01T13:53:56Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/224", + "html_url": "https://github.com/github-api/github-api/pull/224", + "diff_url": "https://github.com/github-api/github-api/pull/224.diff", + "patch_url": "https://github.com/github-api/github-api/pull/224.patch" + }, + "body": "I noticed something strange on GitHub's end.\n\nWhen requesting content from a directory (with a specific ref), you get [ref-specific content](https://api.github.com/repos/github/developer.github.com/contents/lib/webhooks?ref=21295b477e6727ae09c6691e78fca7a33d28b54d).\n\nNow look closely what happens when you [add a trailing slash](https://api.github.com/repos/github/developer.github.com/contents/lib/webhooks/?ref=21295b477e6727ae09c6691e78fca7a33d28b54d).\n\nWhat is your view on this?\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/223", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/223/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/223/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/223/events", + "html_url": "https://github.com/github-api/github-api/issues/223", + "id": 109078490, + "node_id": "MDU6SXNzdWUxMDkwNzg0OTA=", + "number": 223, + "title": "Can not find the .github file", + "user": { + "login": "to2raja", + "id": 14906704, + "node_id": "MDQ6VXNlcjE0OTA2NzA0", + "avatar_url": "https://avatars2.githubusercontent.com/u/14906704?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/to2raja", + "html_url": "https://github.com/to2raja", + "followers_url": "https://api.github.com/users/to2raja/followers", + "following_url": "https://api.github.com/users/to2raja/following{/other_user}", + "gists_url": "https://api.github.com/users/to2raja/gists{/gist_id}", + "starred_url": "https://api.github.com/users/to2raja/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/to2raja/subscriptions", + "organizations_url": "https://api.github.com/users/to2raja/orgs", + "repos_url": "https://api.github.com/users/to2raja/repos", + "events_url": "https://api.github.com/users/to2raja/events{/privacy}", + "received_events_url": "https://api.github.com/users/to2raja/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 3, + "created_at": "2015-09-30T12:40:47Z", + "updated_at": "2015-10-04T04:13:00Z", + "closed_at": "2015-10-04T04:13:00Z", + "author_association": "NONE", + "body": "Hi,\n\nI am using this jar in my project. Happy to know that possible to create repo from java in GitHub. Thanks for your efforts..\n\nI just added jars and tried to test as a java application, but I got an error, which says .github folder is not available.\n\nHere is my code,\n\n```\npublic static void main(String[] args) throws IOException {\n // TODO Auto-generated method stub\n String name = \"name - new-repo\";\n String description = \"description - this is my new repository\";\n String homepage = \"homepage - http://www.kohsuke.org/\";\n boolean isPublic = true;\n\n GitHub github = GitHub.connectUsingPassword(\"myUserName\", \"password\");\n GHRepository repo = github.createRepository(name, description, homepage, isPublic);\n\n // System.out.println(repo.getOwner());\n // System.out.println(repo.getLanguage());\n\n}\n```\n\nAnd the exception is as follows,\n\nException in thread \"main\" java.io.FileNotFoundException: C:\\Users\\user\\ .github (The system cannot find the file specified)\n at java.io.FileInputStream.open(Native Method)\n at java.io.FileInputStream.(Unknown Source)\n at org.kohsuke.github.GitHub.connect(GitHub.java:144)\n at com.votsh.repository.GitRepo.main(GitRepo.java:28)\n\nThanks in advance\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/222", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/222/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/222/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/222/events", + "html_url": "https://github.com/github-api/github-api/issues/222", + "id": 109076410, + "node_id": "MDU6SXNzdWUxMDkwNzY0MTA=", + "number": 222, + "title": "Can not find the .github file", + "user": { + "login": "desingraj", + "id": 4374605, + "node_id": "MDQ6VXNlcjQzNzQ2MDU=", + "avatar_url": "https://avatars3.githubusercontent.com/u/4374605?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/desingraj", + "html_url": "https://github.com/desingraj", + "followers_url": "https://api.github.com/users/desingraj/followers", + "following_url": "https://api.github.com/users/desingraj/following{/other_user}", + "gists_url": "https://api.github.com/users/desingraj/gists{/gist_id}", + "starred_url": "https://api.github.com/users/desingraj/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/desingraj/subscriptions", + "organizations_url": "https://api.github.com/users/desingraj/orgs", + "repos_url": "https://api.github.com/users/desingraj/repos", + "events_url": "https://api.github.com/users/desingraj/events{/privacy}", + "received_events_url": "https://api.github.com/users/desingraj/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2015-09-30T12:27:02Z", + "updated_at": "2015-09-30T12:40:54Z", + "closed_at": "2015-09-30T12:40:54Z", + "author_association": "NONE", + "body": "" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/221", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/221/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/221/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/221/events", + "html_url": "https://github.com/github-api/github-api/issues/221", + "id": 108832355, + "node_id": "MDU6SXNzdWUxMDg4MzIzNTU=", + "number": 221, + "title": "Add per_page paramter to the search builders", + "user": { + "login": "anschwar", + "id": 10230934, + "node_id": "MDQ6VXNlcjEwMjMwOTM0", + "avatar_url": "https://avatars2.githubusercontent.com/u/10230934?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/anschwar", + "html_url": "https://github.com/anschwar", + "followers_url": "https://api.github.com/users/anschwar/followers", + "following_url": "https://api.github.com/users/anschwar/following{/other_user}", + "gists_url": "https://api.github.com/users/anschwar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/anschwar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/anschwar/subscriptions", + "organizations_url": "https://api.github.com/users/anschwar/orgs", + "repos_url": "https://api.github.com/users/anschwar/repos", + "events_url": "https://api.github.com/users/anschwar/events{/privacy}", + "received_events_url": "https://api.github.com/users/anschwar/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2015-09-29T09:38:58Z", + "updated_at": "2015-12-03T16:42:28Z", + "closed_at": "2015-12-03T16:42:28Z", + "author_association": "NONE", + "body": "would it be possible to provide a per_page parameter like the github api does?\n\nExample:\nhttps://api.github.com/search/code?q=in:file+language:js+repo:jquery/jquery&per_page=100\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/220", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/220/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/220/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/220/events", + "html_url": "https://github.com/github-api/github-api/issues/220", + "id": 108831491, + "node_id": "MDU6SXNzdWUxMDg4MzE0OTE=", + "number": 220, + "title": "RateLimitHandler Bug", + "user": { + "login": "anschwar", + "id": 10230934, + "node_id": "MDQ6VXNlcjEwMjMwOTM0", + "avatar_url": "https://avatars2.githubusercontent.com/u/10230934?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/anschwar", + "html_url": "https://github.com/anschwar", + "followers_url": "https://api.github.com/users/anschwar/followers", + "following_url": "https://api.github.com/users/anschwar/following{/other_user}", + "gists_url": "https://api.github.com/users/anschwar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/anschwar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/anschwar/subscriptions", + "organizations_url": "https://api.github.com/users/anschwar/orgs", + "repos_url": "https://api.github.com/users/anschwar/repos", + "events_url": "https://api.github.com/users/anschwar/events{/privacy}", + "received_events_url": "https://api.github.com/users/anschwar/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 11, + "created_at": "2015-09-29T09:32:51Z", + "updated_at": "2015-12-02T11:05:03Z", + "closed_at": "2015-12-02T11:05:03Z", + "author_association": "NONE", + "body": "Hi,\n\nthe RateLimitHandler does not to work as intended. \nIf using the WAIT implementation the API will still throw an exception and terminate.\n\nThe reason therefore is that there is no return statement after the handler execute its onError method.\nThe problem is allocated in the handleApiError method of the Requester.\n\nhttps://github.com/kohsuke/github-api/blob/master/src/main/java/org/kohsuke/github/Requester.java\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/219", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/219/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/219/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/219/events", + "html_url": "https://github.com/github-api/github-api/pull/219", + "id": 107443954, + "node_id": "MDExOlB1bGxSZXF1ZXN0NDU1MTQxNjM=", + "number": 219, + "title": "#218 enable cross fork compare", + "user": { + "login": "if6was9", + "id": 463742, + "node_id": "MDQ6VXNlcjQ2Mzc0Mg==", + "avatar_url": "https://avatars0.githubusercontent.com/u/463742?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/if6was9", + "html_url": "https://github.com/if6was9", + "followers_url": "https://api.github.com/users/if6was9/followers", + "following_url": "https://api.github.com/users/if6was9/following{/other_user}", + "gists_url": "https://api.github.com/users/if6was9/gists{/gist_id}", + "starred_url": "https://api.github.com/users/if6was9/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/if6was9/subscriptions", + "organizations_url": "https://api.github.com/users/if6was9/orgs", + "repos_url": "https://api.github.com/users/if6was9/repos", + "events_url": "https://api.github.com/users/if6was9/events{/privacy}", + "received_events_url": "https://api.github.com/users/if6was9/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 265902919, + "node_id": "MDU6TGFiZWwyNjU5MDI5MTk=", + "url": "https://api.github.com/repos/github-api/github-api/labels/bug", + "name": "bug", + "color": "e11d21", + "default": true + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 7, + "created_at": "2015-09-21T04:46:46Z", + "updated_at": "2015-12-01T14:04:50Z", + "closed_at": "2015-12-01T14:04:50Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/219", + "html_url": "https://github.com/github-api/github-api/pull/219", + "diff_url": "https://github.com/github-api/github-api/pull/219.diff", + "patch_url": "https://github.com/github-api/github-api/pull/219.patch" + }, + "body": "this addresses #218 \n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/218", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/218/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/218/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/218/events", + "html_url": "https://github.com/github-api/github-api/issues/218", + "id": 107440149, + "node_id": "MDU6SXNzdWUxMDc0NDAxNDk=", + "number": 218, + "title": "GHRepository.getCompare(GHBranch, GHBranch) does not allow for cross-fork compares", + "user": { + "login": "if6was9", + "id": 463742, + "node_id": "MDQ6VXNlcjQ2Mzc0Mg==", + "avatar_url": "https://avatars0.githubusercontent.com/u/463742?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/if6was9", + "html_url": "https://github.com/if6was9", + "followers_url": "https://api.github.com/users/if6was9/followers", + "following_url": "https://api.github.com/users/if6was9/following{/other_user}", + "gists_url": "https://api.github.com/users/if6was9/gists{/gist_id}", + "starred_url": "https://api.github.com/users/if6was9/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/if6was9/subscriptions", + "organizations_url": "https://api.github.com/users/if6was9/orgs", + "repos_url": "https://api.github.com/users/if6was9/repos", + "events_url": "https://api.github.com/users/if6was9/events{/privacy}", + "received_events_url": "https://api.github.com/users/if6was9/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 265902919, + "node_id": "MDU6TGFiZWwyNjU5MDI5MTk=", + "url": "https://api.github.com/repos/github-api/github-api/labels/bug", + "name": "bug", + "color": "e11d21", + "default": true + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2015-09-21T03:59:13Z", + "updated_at": "2015-12-03T16:42:58Z", + "closed_at": "2015-12-03T16:42:58Z", + "author_association": "NONE", + "body": "GHRepository.getCompare(String,String) supports cross-fork comparisons, but this does not:\n\nhttps://github.com/kohsuke/github-api/blob/master/src/main/java/org/kohsuke/github/GHRepository.java#L684-L686\n\nThis is a simple fix.\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/217", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/217/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/217/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/217/events", + "html_url": "https://github.com/github-api/github-api/pull/217", + "id": 106395338, + "node_id": "MDExOlB1bGxSZXF1ZXN0NDQ5NjAzMDE=", + "number": 217, + "title": "Support Milestone closed_at date", + "user": { + "login": "dblevins", + "id": 94926, + "node_id": "MDQ6VXNlcjk0OTI2", + "avatar_url": "https://avatars3.githubusercontent.com/u/94926?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dblevins", + "html_url": "https://github.com/dblevins", + "followers_url": "https://api.github.com/users/dblevins/followers", + "following_url": "https://api.github.com/users/dblevins/following{/other_user}", + "gists_url": "https://api.github.com/users/dblevins/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dblevins/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dblevins/subscriptions", + "organizations_url": "https://api.github.com/users/dblevins/orgs", + "repos_url": "https://api.github.com/users/dblevins/repos", + "events_url": "https://api.github.com/users/dblevins/events{/privacy}", + "received_events_url": "https://api.github.com/users/dblevins/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2015-09-14T17:56:10Z", + "updated_at": "2015-09-18T02:23:00Z", + "closed_at": "2015-09-18T02:23:00Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/217", + "html_url": "https://github.com/github-api/github-api/pull/217", + "diff_url": "https://github.com/github-api/github-api/pull/217.diff", + "patch_url": "https://github.com/github-api/github-api/pull/217.patch" + }, + "body": "" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/216", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/216/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/216/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/216/events", + "html_url": "https://github.com/github-api/github-api/pull/216", + "id": 104200497, + "node_id": "MDExOlB1bGxSZXF1ZXN0NDM4NDM0NDU=", + "number": 216, + "title": "#215 fix read() failure with private repos", + "user": { + "login": "if6was9", + "id": 463742, + "node_id": "MDQ6VXNlcjQ2Mzc0Mg==", + "avatar_url": "https://avatars0.githubusercontent.com/u/463742?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/if6was9", + "html_url": "https://github.com/if6was9", + "followers_url": "https://api.github.com/users/if6was9/followers", + "following_url": "https://api.github.com/users/if6was9/following{/other_user}", + "gists_url": "https://api.github.com/users/if6was9/gists{/gist_id}", + "starred_url": "https://api.github.com/users/if6was9/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/if6was9/subscriptions", + "organizations_url": "https://api.github.com/users/if6was9/orgs", + "repos_url": "https://api.github.com/users/if6was9/repos", + "events_url": "https://api.github.com/users/if6was9/events{/privacy}", + "received_events_url": "https://api.github.com/users/if6was9/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 265902919, + "node_id": "MDU6TGFiZWwyNjU5MDI5MTk=", + "url": "https://api.github.com/repos/github-api/github-api/labels/bug", + "name": "bug", + "color": "e11d21", + "default": true + }, + { + "id": 265903461, + "node_id": "MDU6TGFiZWwyNjU5MDM0NjE=", + "url": "https://api.github.com/repos/github-api/github-api/labels/work-in-progress", + "name": "work-in-progress", + "color": "d4c5f9", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 8, + "created_at": "2015-09-01T07:02:08Z", + "updated_at": "2015-12-01T13:56:49Z", + "closed_at": "2015-12-01T13:56:49Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/216", + "html_url": "https://github.com/github-api/github-api/pull/216", + "diff_url": "https://github.com/github-api/github-api/pull/216.diff", + "patch_url": "https://github.com/github-api/github-api/pull/216.patch" + }, + "body": "This fixes #215\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/215", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/215/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/215/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/215/events", + "html_url": "https://github.com/github-api/github-api/issues/215", + "id": 104197916, + "node_id": "MDU6SXNzdWUxMDQxOTc5MTY=", + "number": 215, + "title": "GHContent.read() is broken due to incorrect HTTP Method", + "user": { + "login": "if6was9", + "id": 463742, + "node_id": "MDQ6VXNlcjQ2Mzc0Mg==", + "avatar_url": "https://avatars0.githubusercontent.com/u/463742?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/if6was9", + "html_url": "https://github.com/if6was9", + "followers_url": "https://api.github.com/users/if6was9/followers", + "following_url": "https://api.github.com/users/if6was9/following{/other_user}", + "gists_url": "https://api.github.com/users/if6was9/gists{/gist_id}", + "starred_url": "https://api.github.com/users/if6was9/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/if6was9/subscriptions", + "organizations_url": "https://api.github.com/users/if6was9/orgs", + "repos_url": "https://api.github.com/users/if6was9/repos", + "events_url": "https://api.github.com/users/if6was9/events{/privacy}", + "received_events_url": "https://api.github.com/users/if6was9/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2015-09-01T06:47:37Z", + "updated_at": "2015-12-01T13:56:49Z", + "closed_at": "2015-12-01T13:56:49Z", + "author_association": "NONE", + "body": "`GHContent.read()` issues the request as POST rather than GET. This is fine for URLs that do not\nrequire authentication. However, when `download_url` links are returned that have tokens in the query string, the corresponding POST fails.\n\nPresumably it fails because on the remote end, the query string parameters of the POST request are not honored.\n\nThis issue would never be detected if testing happens against a public GitHub URL.\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/214", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/214/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/214/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/214/events", + "html_url": "https://github.com/github-api/github-api/pull/214", + "id": 102871801, + "node_id": "MDExOlB1bGxSZXF1ZXN0NDMyMTE1NjY=", + "number": 214, + "title": "Making Javadoc clarify a perhaps surprising behavior", + "user": { + "login": "jglick", + "id": 154109, + "node_id": "MDQ6VXNlcjE1NDEwOQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/154109?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jglick", + "html_url": "https://github.com/jglick", + "followers_url": "https://api.github.com/users/jglick/followers", + "following_url": "https://api.github.com/users/jglick/following{/other_user}", + "gists_url": "https://api.github.com/users/jglick/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jglick/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jglick/subscriptions", + "organizations_url": "https://api.github.com/users/jglick/orgs", + "repos_url": "https://api.github.com/users/jglick/repos", + "events_url": "https://api.github.com/users/jglick/events{/privacy}", + "received_events_url": "https://api.github.com/users/jglick/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 9, + "created_at": "2015-08-24T19:24:25Z", + "updated_at": "2015-09-16T22:33:35Z", + "closed_at": "2015-09-16T22:33:31Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/214", + "html_url": "https://github.com/github-api/github-api/pull/214", + "diff_url": "https://github.com/github-api/github-api/pull/214.diff", + "patch_url": "https://github.com/github-api/github-api/pull/214.patch" + }, + "body": "Was the cause of hours of confusion. Changing the behavior now might break existing clients, so just noting the better alternative.\n\n@reviewbybees\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/213", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/213/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/213/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/213/events", + "html_url": "https://github.com/github-api/github-api/issues/213", + "id": 100344664, + "node_id": "MDU6SXNzdWUxMDAzNDQ2NjQ=", + "number": 213, + "title": "Followers and following pagination", + "user": { + "login": "cezarykluczynski", + "id": 798827, + "node_id": "MDQ6VXNlcjc5ODgyNw==", + "avatar_url": "https://avatars0.githubusercontent.com/u/798827?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cezarykluczynski", + "html_url": "https://github.com/cezarykluczynski", + "followers_url": "https://api.github.com/users/cezarykluczynski/followers", + "following_url": "https://api.github.com/users/cezarykluczynski/following{/other_user}", + "gists_url": "https://api.github.com/users/cezarykluczynski/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cezarykluczynski/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cezarykluczynski/subscriptions", + "organizations_url": "https://api.github.com/users/cezarykluczynski/orgs", + "repos_url": "https://api.github.com/users/cezarykluczynski/repos", + "events_url": "https://api.github.com/users/cezarykluczynski/events{/privacy}", + "received_events_url": "https://api.github.com/users/cezarykluczynski/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 4, + "created_at": "2015-08-11T15:52:59Z", + "updated_at": "2015-12-02T10:54:58Z", + "closed_at": "2015-12-02T10:50:29Z", + "author_association": "NONE", + "body": "Is there any way to paginate over followers and following of a user?\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/212", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/212/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/212/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/212/events", + "html_url": "https://github.com/github-api/github-api/pull/212", + "id": 99436968, + "node_id": "MDExOlB1bGxSZXF1ZXN0NDE3ODg4MDA=", + "number": 212, + "title": "Added option to edit GitHub release once it is created", + "user": { + "login": "umajeric", + "id": 5724024, + "node_id": "MDQ6VXNlcjU3MjQwMjQ=", + "avatar_url": "https://avatars3.githubusercontent.com/u/5724024?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/umajeric", + "html_url": "https://github.com/umajeric", + "followers_url": "https://api.github.com/users/umajeric/followers", + "following_url": "https://api.github.com/users/umajeric/following{/other_user}", + "gists_url": "https://api.github.com/users/umajeric/gists{/gist_id}", + "starred_url": "https://api.github.com/users/umajeric/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/umajeric/subscriptions", + "organizations_url": "https://api.github.com/users/umajeric/orgs", + "repos_url": "https://api.github.com/users/umajeric/repos", + "events_url": "https://api.github.com/users/umajeric/events{/privacy}", + "received_events_url": "https://api.github.com/users/umajeric/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2015-08-06T13:43:24Z", + "updated_at": "2015-08-12T00:01:08Z", + "closed_at": "2015-08-11T07:24:30Z", + "author_association": "CONTRIBUTOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/212", + "html_url": "https://github.com/github-api/github-api/pull/212", + "diff_url": "https://github.com/github-api/github-api/pull/212.diff", + "patch_url": "https://github.com/github-api/github-api/pull/212.patch" + }, + "body": "" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/211", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/211/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/211/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/211/events", + "html_url": "https://github.com/github-api/github-api/issues/211", + "id": 96043529, + "node_id": "MDU6SXNzdWU5NjA0MzUyOQ==", + "number": 211, + "title": "How to search all repos based on a keyword?", + "user": { + "login": "KPRATIK", + "id": 4166562, + "node_id": "MDQ6VXNlcjQxNjY1NjI=", + "avatar_url": "https://avatars0.githubusercontent.com/u/4166562?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/KPRATIK", + "html_url": "https://github.com/KPRATIK", + "followers_url": "https://api.github.com/users/KPRATIK/followers", + "following_url": "https://api.github.com/users/KPRATIK/following{/other_user}", + "gists_url": "https://api.github.com/users/KPRATIK/gists{/gist_id}", + "starred_url": "https://api.github.com/users/KPRATIK/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/KPRATIK/subscriptions", + "organizations_url": "https://api.github.com/users/KPRATIK/orgs", + "repos_url": "https://api.github.com/users/KPRATIK/repos", + "events_url": "https://api.github.com/users/KPRATIK/events{/privacy}", + "received_events_url": "https://api.github.com/users/KPRATIK/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2015-07-20T11:24:20Z", + "updated_at": "2015-07-20T11:43:49Z", + "closed_at": "2015-07-20T11:43:49Z", + "author_association": "NONE", + "body": "I am trying to do something like this: \nhttps://api.github.com/search/repositories?q=tetris\n\nThis is the code I have now:\nGitHub github = GitHub.connectToEnterprise(\"https://github.corp..com/api/v3\", \"\", \"\");\nGHRepositorySearchBuilder search = github.searchRepositories();\nGHRepositorySearchBuilder s = search.q(\"audit\");\n\nPagedSearchIterable res = s.list();\n\nfor (GHRepository ghRepository : res) {\n // System.out.println(ghRepository.getFullName());;\n}\n\nAnd I get this error:\nException in thread \"main\" java.lang.Error: java.net.ConnectException: Operation timed out\n at org.kohsuke.github.Requester$1.fetch(Requester.java:396)\n at org.kohsuke.github.Requester$1.hasNext(Requester.java:363)\n at org.kohsuke.github.PagedSearchIterable$1.hasNext(PagedSearchIterable.java:46)\n at org.kohsuke.github.PagedIterator.fetch(PagedIterator.java:44)\n at org.kohsuke.github.PagedIterator.hasNext(PagedIterator.java:32)\n at com.inmobi.pratik.AppTest.main(AppTest.java:71)\n\nThanks,\nPratik\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/210", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/210/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/210/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/210/events", + "html_url": "https://github.com/github-api/github-api/pull/210", + "id": 95950080, + "node_id": "MDExOlB1bGxSZXF1ZXN0NDAzMTUyOTA=", + "number": 210, + "title": "Cleanup issues discovered by FindBugs", + "user": { + "login": "oleg-nenashev", + "id": 3000480, + "node_id": "MDQ6VXNlcjMwMDA0ODA=", + "avatar_url": "https://avatars0.githubusercontent.com/u/3000480?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/oleg-nenashev", + "html_url": "https://github.com/oleg-nenashev", + "followers_url": "https://api.github.com/users/oleg-nenashev/followers", + "following_url": "https://api.github.com/users/oleg-nenashev/following{/other_user}", + "gists_url": "https://api.github.com/users/oleg-nenashev/gists{/gist_id}", + "starred_url": "https://api.github.com/users/oleg-nenashev/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/oleg-nenashev/subscriptions", + "organizations_url": "https://api.github.com/users/oleg-nenashev/orgs", + "repos_url": "https://api.github.com/users/oleg-nenashev/repos", + "events_url": "https://api.github.com/users/oleg-nenashev/events{/privacy}", + "received_events_url": "https://api.github.com/users/oleg-nenashev/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 8, + "created_at": "2015-07-19T21:21:56Z", + "updated_at": "2015-10-06T09:22:42Z", + "closed_at": "2015-07-24T12:57:31Z", + "author_association": "COLLABORATOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/210", + "html_url": "https://github.com/github-api/github-api/pull/210", + "diff_url": "https://github.com/github-api/github-api/pull/210.diff", + "patch_url": "https://github.com/github-api/github-api/pull/210.patch" + }, + "body": "The change closes about 100 issues (mostly API ones), but there're also several changes for encodings and file streams\n\n@reviewbybees @lanwen @KostyaSha \n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/209", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/209/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/209/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/209/events", + "html_url": "https://github.com/github-api/github-api/issues/209", + "id": 95940471, + "node_id": "MDU6SXNzdWU5NTk0MDQ3MQ==", + "number": 209, + "title": "Missing: List private organizations a user belongs", + "user": { + "login": "samrocketman", + "id": 875669, + "node_id": "MDQ6VXNlcjg3NTY2OQ==", + "avatar_url": "https://avatars0.githubusercontent.com/u/875669?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/samrocketman", + "html_url": "https://github.com/samrocketman", + "followers_url": "https://api.github.com/users/samrocketman/followers", + "following_url": "https://api.github.com/users/samrocketman/following{/other_user}", + "gists_url": "https://api.github.com/users/samrocketman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/samrocketman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/samrocketman/subscriptions", + "organizations_url": "https://api.github.com/users/samrocketman/orgs", + "repos_url": "https://api.github.com/users/samrocketman/repos", + "events_url": "https://api.github.com/users/samrocketman/events{/privacy}", + "received_events_url": "https://api.github.com/users/samrocketman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2015-07-19T19:04:43Z", + "updated_at": "2015-07-21T02:52:59Z", + "closed_at": "2015-07-21T02:52:59Z", + "author_association": "NONE", + "body": "There's no way in this API to list private organization membership. Currently, one can [only fetch public membership](https://github.com/kohsuke/github-api/blob/2d45ac51efb4ad5f9121b328825e27067b7bad3c/src/main/java/org/kohsuke/github/GHUser.java#L121-L129) in this library. This is making use of the GitHub API to [list public organization memberships](https://developer.github.com/v3/orgs/#list-user-organizations).\n\nSolution: Make use of the GitHub API to [list my organization membership](https://developer.github.com/v3/orgs/#list-your-organizations).\n" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/208", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/208/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/208/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/208/events", + "html_url": "https://github.com/github-api/github-api/pull/208", + "id": 95638866, + "node_id": "MDExOlB1bGxSZXF1ZXN0NDAyMjIxNDg=", + "number": 208, + "title": "Fix potential NPE in the code", + "user": { + "login": "oleg-nenashev", + "id": 3000480, + "node_id": "MDQ6VXNlcjMwMDA0ODA=", + "avatar_url": "https://avatars0.githubusercontent.com/u/3000480?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/oleg-nenashev", + "html_url": "https://github.com/oleg-nenashev", + "followers_url": "https://api.github.com/users/oleg-nenashev/followers", + "following_url": "https://api.github.com/users/oleg-nenashev/following{/other_user}", + "gists_url": "https://api.github.com/users/oleg-nenashev/gists{/gist_id}", + "starred_url": "https://api.github.com/users/oleg-nenashev/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/oleg-nenashev/subscriptions", + "organizations_url": "https://api.github.com/users/oleg-nenashev/orgs", + "repos_url": "https://api.github.com/users/oleg-nenashev/repos", + "events_url": "https://api.github.com/users/oleg-nenashev/events{/privacy}", + "received_events_url": "https://api.github.com/users/oleg-nenashev/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2015-07-17T11:22:24Z", + "updated_at": "2015-07-17T11:31:44Z", + "closed_at": "2015-07-17T11:24:14Z", + "author_association": "COLLABORATOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/208", + "html_url": "https://github.com/github-api/github-api/pull/208", + "diff_url": "https://github.com/github-api/github-api/pull/208.diff", + "patch_url": "https://github.com/github-api/github-api/pull/208.patch" + }, + "body": "" + }, + { + "url": "https://api.github.com/repos/github-api/github-api/issues/207", + "repository_url": "https://api.github.com/repos/github-api/github-api", + "labels_url": "https://api.github.com/repos/github-api/github-api/issues/207/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api/github-api/issues/207/comments", + "events_url": "https://api.github.com/repos/github-api/github-api/issues/207/events", + "html_url": "https://github.com/github-api/github-api/pull/207", + "id": 95438991, + "node_id": "MDExOlB1bGxSZXF1ZXN0NDAxMzE3MTQ=", + "number": 207, + "title": "Enable FindBugs in the repo", + "user": { + "login": "oleg-nenashev", + "id": 3000480, + "node_id": "MDQ6VXNlcjMwMDA0ODA=", + "avatar_url": "https://avatars0.githubusercontent.com/u/3000480?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/oleg-nenashev", + "html_url": "https://github.com/oleg-nenashev", + "followers_url": "https://api.github.com/users/oleg-nenashev/followers", + "following_url": "https://api.github.com/users/oleg-nenashev/following{/other_user}", + "gists_url": "https://api.github.com/users/oleg-nenashev/gists{/gist_id}", + "starred_url": "https://api.github.com/users/oleg-nenashev/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/oleg-nenashev/subscriptions", + "organizations_url": "https://api.github.com/users/oleg-nenashev/orgs", + "repos_url": "https://api.github.com/users/oleg-nenashev/repos", + "events_url": "https://api.github.com/users/oleg-nenashev/events{/privacy}", + "received_events_url": "https://api.github.com/users/oleg-nenashev/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2015-07-16T13:56:56Z", + "updated_at": "2015-07-17T10:13:23Z", + "closed_at": "2015-07-17T10:13:23Z", + "author_association": "COLLABORATOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api/github-api/pulls/207", + "html_url": "https://github.com/github-api/github-api/pull/207", + "diff_url": "https://github.com/github-api/github-api/pull/207.diff", + "patch_url": "https://github.com/github-api/github-api/pull/207.patch" + }, + "body": "Intention - get automatic builds on https://buildhive.cloudbees.com/job/kohsuke/job/github-api\n" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/__files/user-7741e4f6-c93e-4760-bb92-070e61f5a475.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/__files/user-7741e4f6-c93e-4760-bb92-070e61f5a475.json new file mode 100644 index 0000000000..41fc9e3d00 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/__files/user-7741e4f6-c93e-4760-bb92-070e61f5a475.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 168, + "public_gists": 4, + "followers": 136, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/mappings/orgs_github-api-2-baecb5.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/mappings/orgs_github-api-2-baecb5.json new file mode 100644 index 0000000000..8ba4bf842d --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/mappings/orgs_github-api-2-baecb5.json @@ -0,0 +1,43 @@ +{ + "id": "baecb5db-6e9c-441b-8414-c8070d9bc0c2", + "name": "orgs_github-api", + "request": { + "url": "/orgs/github-api", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_github-api-baecb5db-6e9c-441b-8414-c8070d9bc0c2.json", + "headers": { + "Date": "Fri, 04 Oct 2019 00:17:11 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4936", + "X-RateLimit-Reset": "1570151182", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"a6ed96e50f24e7f2a58b04f0c4b657aa\"", + "Last-Modified": "Wed, 04 Sep 2019 18:12:34 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D5B9:6B2E:188E875:1D03B18:5D968F87" + } + }, + "uuid": "baecb5db-6e9c-441b-8414-c8070d9bc0c2", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/mappings/repos_github-api_github-api-3-891820.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/mappings/repos_github-api_github-api-3-891820.json new file mode 100644 index 0000000000..e1bfc7dcb7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/mappings/repos_github-api_github-api-3-891820.json @@ -0,0 +1,43 @@ +{ + "id": "891820f6-7cd7-437a-8ec1-16c3e76c53ec", + "name": "repos_github-api_github-api", + "request": { + "url": "/repos/github-api/github-api", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api_github-api-891820f6-7cd7-437a-8ec1-16c3e76c53ec.json", + "headers": { + "Date": "Fri, 04 Oct 2019 00:17:12 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4935", + "X-RateLimit-Reset": "1570151182", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"8cc495660ca67962319f24f12c386311\"", + "Last-Modified": "Thu, 03 Oct 2019 21:38:52 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D5B9:6B2E:188E889:1D03B86:5D968F87" + } + }, + "uuid": "891820f6-7cd7-437a-8ec1-16c3e76c53ec", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/mappings/repos_github-api_github-api_issues-4-a70d05.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/mappings/repos_github-api_github-api_issues-4-a70d05.json new file mode 100644 index 0000000000..dba789cdaa --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/mappings/repos_github-api_github-api_issues-4-a70d05.json @@ -0,0 +1,43 @@ +{ + "id": "a70d05ac-5820-4749-8318-e422f0f6eaf5", + "name": "repos_github-api_github-api_issues", + "request": { + "url": "/repos/github-api/github-api/issues?state=closed", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api_github-api_issues-a70d05ac-5820-4749-8318-e422f0f6eaf5.json", + "headers": { + "Date": "Fri, 04 Oct 2019 00:17:12 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4934", + "X-RateLimit-Reset": "1570151182", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"855067f1626a8814f2a51a24a505205e\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D5B9:6B2E:188E8DF:1D03BD4:5D968F88", + "Link": "; rel=\"next\", ; rel=\"last\"" + } + }, + "uuid": "a70d05ac-5820-4749-8318-e422f0f6eaf5", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/mappings/repositories_617210_issues-10-5a770b.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/mappings/repositories_617210_issues-10-5a770b.json new file mode 100644 index 0000000000..66bb51e225 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/mappings/repositories_617210_issues-10-5a770b.json @@ -0,0 +1,43 @@ +{ + "id": "5a770b70-ca92-478e-8bb5-c713553ddefb", + "name": "repositories_617210_issues", + "request": { + "url": "/repositories/617210/issues?state=closed&page=7", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repositories_617210_issues-5a770b70-ca92-478e-8bb5-c713553ddefb.json", + "headers": { + "Date": "Fri, 04 Oct 2019 00:17:16 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4928", + "X-RateLimit-Reset": "1570151182", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"21a365f7b4f8cdc2266c724c1edbdcc1\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D5B9:6B2E:188EACA:1D03E31:5D968F8B", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "5a770b70-ca92-478e-8bb5-c713553ddefb", + "persistent": true, + "insertionIndex": 10 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/mappings/repositories_617210_issues-11-e04b88.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/mappings/repositories_617210_issues-11-e04b88.json new file mode 100644 index 0000000000..a184aab9a5 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/mappings/repositories_617210_issues-11-e04b88.json @@ -0,0 +1,43 @@ +{ + "id": "e04b8865-9ace-405a-b8d9-f8bcacb9bfa8", + "name": "repositories_617210_issues", + "request": { + "url": "/repositories/617210/issues?state=closed&page=8", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repositories_617210_issues-e04b8865-9ace-405a-b8d9-f8bcacb9bfa8.json", + "headers": { + "Date": "Fri, 04 Oct 2019 00:17:16 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4927", + "X-RateLimit-Reset": "1570151182", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"6289958dc2a2cf6746b7d52c991da514\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D5B9:6B2E:188EB0E:1D03E6F:5D968F8C", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "e04b8865-9ace-405a-b8d9-f8bcacb9bfa8", + "persistent": true, + "insertionIndex": 11 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/mappings/repositories_617210_issues-12-fe625e.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/mappings/repositories_617210_issues-12-fe625e.json new file mode 100644 index 0000000000..1eee1e6906 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/mappings/repositories_617210_issues-12-fe625e.json @@ -0,0 +1,43 @@ +{ + "id": "fe625e7c-4b31-4b30-bc77-a763a3774fdc", + "name": "repositories_617210_issues", + "request": { + "url": "/repositories/617210/issues?state=closed&page=9", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repositories_617210_issues-fe625e7c-4b31-4b30-bc77-a763a3774fdc.json", + "headers": { + "Date": "Fri, 04 Oct 2019 00:17:17 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4926", + "X-RateLimit-Reset": "1570151182", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"89ba1bade058980eaa351f6cbc20e34b\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D5B9:6B2E:188EB42:1D03EC2:5D968F8C", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "fe625e7c-4b31-4b30-bc77-a763a3774fdc", + "persistent": true, + "insertionIndex": 12 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/mappings/repositories_617210_issues-13-ab2693.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/mappings/repositories_617210_issues-13-ab2693.json new file mode 100644 index 0000000000..d54c0c0896 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/mappings/repositories_617210_issues-13-ab2693.json @@ -0,0 +1,43 @@ +{ + "id": "ab269330-3eb7-4ec1-9211-ecc8d0d70701", + "name": "repositories_617210_issues", + "request": { + "url": "/repositories/617210/issues?state=closed&page=10", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repositories_617210_issues-ab269330-3eb7-4ec1-9211-ecc8d0d70701.json", + "headers": { + "Date": "Fri, 04 Oct 2019 00:17:17 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4925", + "X-RateLimit-Reset": "1570151182", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"0aab7458ec8b4a34267a9a02dcf45257\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D5B9:6B2E:188EB78:1D03EFD:5D968F8D", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "ab269330-3eb7-4ec1-9211-ecc8d0d70701", + "persistent": true, + "insertionIndex": 13 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/mappings/repositories_617210_issues-14-9486f6.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/mappings/repositories_617210_issues-14-9486f6.json new file mode 100644 index 0000000000..d851eaac66 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/mappings/repositories_617210_issues-14-9486f6.json @@ -0,0 +1,43 @@ +{ + "id": "9486f660-2139-4f84-ae0f-898d0369d061", + "name": "repositories_617210_issues", + "request": { + "url": "/repositories/617210/issues?state=closed&page=11", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repositories_617210_issues-9486f660-2139-4f84-ae0f-898d0369d061.json", + "headers": { + "Date": "Fri, 04 Oct 2019 00:17:18 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4924", + "X-RateLimit-Reset": "1570151182", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"1b595e98c0433d4a7bf72b76b2651c5a\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D5B9:6B2E:188EBC5:1D03F4F:5D968F8D", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "9486f660-2139-4f84-ae0f-898d0369d061", + "persistent": true, + "insertionIndex": 14 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/mappings/repositories_617210_issues-15-c9e769.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/mappings/repositories_617210_issues-15-c9e769.json new file mode 100644 index 0000000000..d0d9ac391b --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/mappings/repositories_617210_issues-15-c9e769.json @@ -0,0 +1,43 @@ +{ + "id": "c9e769fc-6556-4374-b397-244843a75000", + "name": "repositories_617210_issues", + "request": { + "url": "/repositories/617210/issues?state=closed&page=12", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repositories_617210_issues-c9e769fc-6556-4374-b397-244843a75000.json", + "headers": { + "Date": "Fri, 04 Oct 2019 00:17:18 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4923", + "X-RateLimit-Reset": "1570151182", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"2a137f52035a2a50858378f4f431c7fa\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D5B9:6B2E:188EC16:1D03F9E:5D968F8E", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "c9e769fc-6556-4374-b397-244843a75000", + "persistent": true, + "insertionIndex": 15 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/mappings/repositories_617210_issues-16-46f0ca.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/mappings/repositories_617210_issues-16-46f0ca.json new file mode 100644 index 0000000000..a272367377 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/mappings/repositories_617210_issues-16-46f0ca.json @@ -0,0 +1,43 @@ +{ + "id": "46f0ca81-080b-419a-b494-df00573bd9aa", + "name": "repositories_617210_issues", + "request": { + "url": "/repositories/617210/issues?state=closed&page=13", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repositories_617210_issues-46f0ca81-080b-419a-b494-df00573bd9aa.json", + "headers": { + "Date": "Fri, 04 Oct 2019 00:17:19 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4922", + "X-RateLimit-Reset": "1570151182", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"fca0e2c550900871b46d35b9a7986ebd\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D5B9:6B2E:188EC6C:1D04000:5D968F8E", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "46f0ca81-080b-419a-b494-df00573bd9aa", + "persistent": true, + "insertionIndex": 16 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/mappings/repositories_617210_issues-17-b2fa4e.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/mappings/repositories_617210_issues-17-b2fa4e.json new file mode 100644 index 0000000000..6569b11dbc --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/mappings/repositories_617210_issues-17-b2fa4e.json @@ -0,0 +1,43 @@ +{ + "id": "b2fa4ec1-c691-4d0a-a3b2-13e129aa1dea", + "name": "repositories_617210_issues", + "request": { + "url": "/repositories/617210/issues?state=closed&page=14", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repositories_617210_issues-b2fa4ec1-c691-4d0a-a3b2-13e129aa1dea.json", + "headers": { + "Date": "Fri, 04 Oct 2019 00:17:20 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4921", + "X-RateLimit-Reset": "1570151182", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"d913f1e895a7f1d9cec68d859ecfb154\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D5B9:6B2E:188ECBC:1D0405F:5D968F8F", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "b2fa4ec1-c691-4d0a-a3b2-13e129aa1dea", + "persistent": true, + "insertionIndex": 17 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/mappings/repositories_617210_issues-18-7d74dc.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/mappings/repositories_617210_issues-18-7d74dc.json new file mode 100644 index 0000000000..5844a87a1a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/mappings/repositories_617210_issues-18-7d74dc.json @@ -0,0 +1,43 @@ +{ + "id": "7d74dc71-0c93-4a0a-8f8e-c6a71027b219", + "name": "repositories_617210_issues", + "request": { + "url": "/repositories/617210/issues?state=closed&page=15", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repositories_617210_issues-7d74dc71-0c93-4a0a-8f8e-c6a71027b219.json", + "headers": { + "Date": "Fri, 04 Oct 2019 00:17:20 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4920", + "X-RateLimit-Reset": "1570151182", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"f48c2c1602e40e0a24b7f5f00c738816\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D5B9:6B2E:188ED11:1D040B9:5D968F90", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "7d74dc71-0c93-4a0a-8f8e-c6a71027b219", + "persistent": true, + "insertionIndex": 18 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/mappings/repositories_617210_issues-19-e22232.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/mappings/repositories_617210_issues-19-e22232.json new file mode 100644 index 0000000000..dbc98e3c82 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/mappings/repositories_617210_issues-19-e22232.json @@ -0,0 +1,43 @@ +{ + "id": "e22232e4-eb5c-4657-b485-171936f6174e", + "name": "repositories_617210_issues", + "request": { + "url": "/repositories/617210/issues?state=closed&page=16", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repositories_617210_issues-e22232e4-eb5c-4657-b485-171936f6174e.json", + "headers": { + "Date": "Fri, 04 Oct 2019 00:17:21 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4919", + "X-RateLimit-Reset": "1570151182", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"78757c423cf6a3177f5faeb7baeb7dfa\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D5B9:6B2E:188ED67:1D0412E:5D968F90", + "Link": "; rel=\"prev\", ; rel=\"first\"" + } + }, + "uuid": "e22232e4-eb5c-4657-b485-171936f6174e", + "persistent": true, + "insertionIndex": 19 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/mappings/repositories_617210_issues-5-d2dadb.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/mappings/repositories_617210_issues-5-d2dadb.json new file mode 100644 index 0000000000..028da6c5de --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/mappings/repositories_617210_issues-5-d2dadb.json @@ -0,0 +1,43 @@ +{ + "id": "d2dadb59-c855-4c32-8a98-5ed6992cf3ff", + "name": "repositories_617210_issues", + "request": { + "url": "/repositories/617210/issues?state=closed&page=2", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repositories_617210_issues-d2dadb59-c855-4c32-8a98-5ed6992cf3ff.json", + "headers": { + "Date": "Fri, 04 Oct 2019 00:17:13 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4933", + "X-RateLimit-Reset": "1570151182", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"d9810c203e11e0762c09af0278a0487d\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D5B9:6B2E:188E92A:1D03C1D:5D968F88", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "d2dadb59-c855-4c32-8a98-5ed6992cf3ff", + "persistent": true, + "insertionIndex": 5 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/mappings/repositories_617210_issues-6-63d2db.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/mappings/repositories_617210_issues-6-63d2db.json new file mode 100644 index 0000000000..7cc257be93 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/mappings/repositories_617210_issues-6-63d2db.json @@ -0,0 +1,43 @@ +{ + "id": "63d2db0d-08ce-498b-8c8d-903da44e2e94", + "name": "repositories_617210_issues", + "request": { + "url": "/repositories/617210/issues?state=closed&page=3", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repositories_617210_issues-63d2db0d-08ce-498b-8c8d-903da44e2e94.json", + "headers": { + "Date": "Fri, 04 Oct 2019 00:17:14 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4932", + "X-RateLimit-Reset": "1570151182", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"a99ea4578f06e3dfebbf0f3fa7caa317\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D5B9:6B2E:188E997:1D03C98:5D968F89", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "63d2db0d-08ce-498b-8c8d-903da44e2e94", + "persistent": true, + "insertionIndex": 6 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/mappings/repositories_617210_issues-7-e084b8.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/mappings/repositories_617210_issues-7-e084b8.json new file mode 100644 index 0000000000..f955db8e0d --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/mappings/repositories_617210_issues-7-e084b8.json @@ -0,0 +1,43 @@ +{ + "id": "e084b859-6ef7-4657-ad19-0c0b1a5f9e4d", + "name": "repositories_617210_issues", + "request": { + "url": "/repositories/617210/issues?state=closed&page=4", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repositories_617210_issues-e084b859-6ef7-4657-ad19-0c0b1a5f9e4d.json", + "headers": { + "Date": "Fri, 04 Oct 2019 00:17:14 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4931", + "X-RateLimit-Reset": "1570151182", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"8bf393addf678cc6709c672bab6ff47a\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D5B9:6B2E:188E9F3:1D03D0F:5D968F8A", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "e084b859-6ef7-4657-ad19-0c0b1a5f9e4d", + "persistent": true, + "insertionIndex": 7 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/mappings/repositories_617210_issues-8-c66e22.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/mappings/repositories_617210_issues-8-c66e22.json new file mode 100644 index 0000000000..2e2613d253 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/mappings/repositories_617210_issues-8-c66e22.json @@ -0,0 +1,43 @@ +{ + "id": "c66e220e-9138-4ead-92fb-7e882c71b9bf", + "name": "repositories_617210_issues", + "request": { + "url": "/repositories/617210/issues?state=closed&page=5", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repositories_617210_issues-c66e220e-9138-4ead-92fb-7e882c71b9bf.json", + "headers": { + "Date": "Fri, 04 Oct 2019 00:17:15 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4930", + "X-RateLimit-Reset": "1570151182", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"946f495592e92e6b57eb41cc2d83dc57\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D5B9:6B2E:188EA3E:1D03D75:5D968F8A", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "c66e220e-9138-4ead-92fb-7e882c71b9bf", + "persistent": true, + "insertionIndex": 8 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/mappings/repositories_617210_issues-9-ddbca5.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/mappings/repositories_617210_issues-9-ddbca5.json new file mode 100644 index 0000000000..7e3de47b68 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/mappings/repositories_617210_issues-9-ddbca5.json @@ -0,0 +1,43 @@ +{ + "id": "ddbca5ee-6c30-447d-8667-8c29c151e6d5", + "name": "repositories_617210_issues", + "request": { + "url": "/repositories/617210/issues?state=closed&page=6", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repositories_617210_issues-ddbca5ee-6c30-447d-8667-8c29c151e6d5.json", + "headers": { + "Date": "Fri, 04 Oct 2019 00:17:15 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4929", + "X-RateLimit-Reset": "1570151182", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"aa7271323603bc1deb4805eb7f3a39b7\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D5B9:6B2E:188EA71:1D03DC3:5D968F8B", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "ddbca5ee-6c30-447d-8667-8c29c151e6d5", + "persistent": true, + "insertionIndex": 9 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/mappings/user-1-7741e4.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/mappings/user-1-7741e4.json new file mode 100644 index 0000000000..6f9ad1993b --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/mappings/user-1-7741e4.json @@ -0,0 +1,43 @@ +{ + "id": "7741e4f6-c93e-4760-bb92-070e61f5a475", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-7741e4f6-c93e-4760-bb92-070e61f5a475.json", + "headers": { + "Date": "Fri, 04 Oct 2019 00:17:11 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4938", + "X-RateLimit-Reset": "1570151182", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"af0c41afcacb8ceee14b7d896719c3bd\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D5B9:6B2E:188E813:1D03B01:5D968F87" + } + }, + "uuid": "7741e4f6-c93e-4760-bb92-070e61f5a475", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetMyself/__files/user-f80e1f71-35ea-4c54-b6e4-529dd1bfb2ef.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetMyself/__files/user-f80e1f71-35ea-4c54-b6e4-529dd1bfb2ef.json new file mode 100644 index 0000000000..a4b576e8a7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetMyself/__files/user-f80e1f71-35ea-4c54-b6e4-529dd1bfb2ef.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 169, + "public_gists": 7, + "followers": 139, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetMyself/__files/user_repos-5f89ddd0-72f0-4e2a-9185-0828197b9350.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetMyself/__files/user_repos-5f89ddd0-72f0-4e2a-9185-0828197b9350.json new file mode 100644 index 0000000000..fe17b874e1 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetMyself/__files/user_repos-5f89ddd0-72f0-4e2a-9185-0828197b9350.json @@ -0,0 +1,3098 @@ +[ + { + "id": 162447426, + "node_id": "MDEwOlJlcG9zaXRvcnkxNjI0NDc0MjY=", + "name": "jx", + "full_name": "abayer/jx", + "private": false, + "owner": { + "login": "abayer", + "id": 120218, + "node_id": "MDQ6VXNlcjEyMDIxOA==", + "avatar_url": "https://avatars2.githubusercontent.com/u/120218?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/abayer", + "html_url": "https://github.com/abayer", + "followers_url": "https://api.github.com/users/abayer/followers", + "following_url": "https://api.github.com/users/abayer/following{/other_user}", + "gists_url": "https://api.github.com/users/abayer/gists{/gist_id}", + "starred_url": "https://api.github.com/users/abayer/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/abayer/subscriptions", + "organizations_url": "https://api.github.com/users/abayer/orgs", + "repos_url": "https://api.github.com/users/abayer/repos", + "events_url": "https://api.github.com/users/abayer/events{/privacy}", + "received_events_url": "https://api.github.com/users/abayer/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/abayer/jx", + "description": "Jenkins X provides automated CI+CD for Kubernetes with Preview Environments on Pull Requests using Jenkins, Knative Build, Prow, Skaffold and Helm", + "fork": true, + "url": "https://api.github.com/repos/abayer/jx", + "forks_url": "https://api.github.com/repos/abayer/jx/forks", + "keys_url": "https://api.github.com/repos/abayer/jx/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/abayer/jx/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/abayer/jx/teams", + "hooks_url": "https://api.github.com/repos/abayer/jx/hooks", + "issue_events_url": "https://api.github.com/repos/abayer/jx/issues/events{/number}", + "events_url": "https://api.github.com/repos/abayer/jx/events", + "assignees_url": "https://api.github.com/repos/abayer/jx/assignees{/user}", + "branches_url": "https://api.github.com/repos/abayer/jx/branches{/branch}", + "tags_url": "https://api.github.com/repos/abayer/jx/tags", + "blobs_url": "https://api.github.com/repos/abayer/jx/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/abayer/jx/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/abayer/jx/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/abayer/jx/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/abayer/jx/statuses/{sha}", + "languages_url": "https://api.github.com/repos/abayer/jx/languages", + "stargazers_url": "https://api.github.com/repos/abayer/jx/stargazers", + "contributors_url": "https://api.github.com/repos/abayer/jx/contributors", + "subscribers_url": "https://api.github.com/repos/abayer/jx/subscribers", + "subscription_url": "https://api.github.com/repos/abayer/jx/subscription", + "commits_url": "https://api.github.com/repos/abayer/jx/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/abayer/jx/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/abayer/jx/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/abayer/jx/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/abayer/jx/contents/{+path}", + "compare_url": "https://api.github.com/repos/abayer/jx/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/abayer/jx/merges", + "archive_url": "https://api.github.com/repos/abayer/jx/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/abayer/jx/downloads", + "issues_url": "https://api.github.com/repos/abayer/jx/issues{/number}", + "pulls_url": "https://api.github.com/repos/abayer/jx/pulls{/number}", + "milestones_url": "https://api.github.com/repos/abayer/jx/milestones{/number}", + "notifications_url": "https://api.github.com/repos/abayer/jx/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/abayer/jx/labels{/name}", + "releases_url": "https://api.github.com/repos/abayer/jx/releases{/id}", + "deployments_url": "https://api.github.com/repos/abayer/jx/deployments", + "created_at": "2018-12-19T14:16:52Z", + "updated_at": "2019-07-18T14:34:54Z", + "pushed_at": "2019-10-25T18:22:32Z", + "git_url": "git://github.com/abayer/jx.git", + "ssh_url": "git@github.com:abayer/jx.git", + "clone_url": "https://github.com/abayer/jx.git", + "svn_url": "https://github.com/abayer/jx", + "homepage": "https://jenkins-x.io/", + "size": 54280, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Go", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": true, + "pull": true + } + }, + { + "id": 50523518, + "node_id": "MDEwOlJlcG9zaXRvcnk1MDUyMzUxOA==", + "name": "jenkins.io", + "full_name": "alyssat/jenkins.io", + "private": false, + "owner": { + "login": "alyssat", + "id": 15133103, + "node_id": "MDQ6VXNlcjE1MTMzMTAz", + "avatar_url": "https://avatars1.githubusercontent.com/u/15133103?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/alyssat", + "html_url": "https://github.com/alyssat", + "followers_url": "https://api.github.com/users/alyssat/followers", + "following_url": "https://api.github.com/users/alyssat/following{/other_user}", + "gists_url": "https://api.github.com/users/alyssat/gists{/gist_id}", + "starred_url": "https://api.github.com/users/alyssat/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/alyssat/subscriptions", + "organizations_url": "https://api.github.com/users/alyssat/orgs", + "repos_url": "https://api.github.com/users/alyssat/repos", + "events_url": "https://api.github.com/users/alyssat/events{/privacy}", + "received_events_url": "https://api.github.com/users/alyssat/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/alyssat/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": true, + "url": "https://api.github.com/repos/alyssat/jenkins.io", + "forks_url": "https://api.github.com/repos/alyssat/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/alyssat/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/alyssat/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/alyssat/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/alyssat/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/alyssat/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/alyssat/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/alyssat/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/alyssat/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/alyssat/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/alyssat/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/alyssat/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/alyssat/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/alyssat/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/alyssat/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/alyssat/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/alyssat/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/alyssat/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/alyssat/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/alyssat/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/alyssat/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/alyssat/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/alyssat/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/alyssat/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/alyssat/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/alyssat/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/alyssat/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/alyssat/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/alyssat/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/alyssat/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/alyssat/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/alyssat/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/alyssat/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/alyssat/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/alyssat/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/alyssat/jenkins.io/deployments", + "created_at": "2016-01-27T17:10:00Z", + "updated_at": "2019-10-25T21:12:14Z", + "pushed_at": "2019-10-25T21:12:11Z", + "git_url": "git://github.com/alyssat/jenkins.io.git", + "ssh_url": "git@github.com:alyssat/jenkins.io.git", + "clone_url": "https://github.com/alyssat/jenkins.io.git", + "svn_url": "https://github.com/alyssat/jenkins.io", + "homepage": "https://jenkins-ci.org", + "size": 397725, + "stargazers_count": 0, + "watchers_count": 0, + "language": "HTML", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": true, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": true, + "pull": true + } + }, + { + "id": 74594771, + "node_id": "MDEwOlJlcG9zaXRvcnk3NDU5NDc3MQ==", + "name": "beautifier.io", + "full_name": "beautifier/beautifier.io", + "private": false, + "owner": { + "login": "beautifier", + "id": 22065016, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIyMDY1MDE2", + "avatar_url": "https://avatars1.githubusercontent.com/u/22065016?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/beautifier", + "html_url": "https://github.com/beautifier", + "followers_url": "https://api.github.com/users/beautifier/followers", + "following_url": "https://api.github.com/users/beautifier/following{/other_user}", + "gists_url": "https://api.github.com/users/beautifier/gists{/gist_id}", + "starred_url": "https://api.github.com/users/beautifier/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/beautifier/subscriptions", + "organizations_url": "https://api.github.com/users/beautifier/orgs", + "repos_url": "https://api.github.com/users/beautifier/repos", + "events_url": "https://api.github.com/users/beautifier/events{/privacy}", + "received_events_url": "https://api.github.com/users/beautifier/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/beautifier/beautifier.io", + "description": "Website for the beautifier project", + "fork": false, + "url": "https://api.github.com/repos/beautifier/beautifier.io", + "forks_url": "https://api.github.com/repos/beautifier/beautifier.io/forks", + "keys_url": "https://api.github.com/repos/beautifier/beautifier.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/beautifier/beautifier.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/beautifier/beautifier.io/teams", + "hooks_url": "https://api.github.com/repos/beautifier/beautifier.io/hooks", + "issue_events_url": "https://api.github.com/repos/beautifier/beautifier.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/beautifier/beautifier.io/events", + "assignees_url": "https://api.github.com/repos/beautifier/beautifier.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/beautifier/beautifier.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/beautifier/beautifier.io/tags", + "blobs_url": "https://api.github.com/repos/beautifier/beautifier.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/beautifier/beautifier.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/beautifier/beautifier.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/beautifier/beautifier.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/beautifier/beautifier.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/beautifier/beautifier.io/languages", + "stargazers_url": "https://api.github.com/repos/beautifier/beautifier.io/stargazers", + "contributors_url": "https://api.github.com/repos/beautifier/beautifier.io/contributors", + "subscribers_url": "https://api.github.com/repos/beautifier/beautifier.io/subscribers", + "subscription_url": "https://api.github.com/repos/beautifier/beautifier.io/subscription", + "commits_url": "https://api.github.com/repos/beautifier/beautifier.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/beautifier/beautifier.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/beautifier/beautifier.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/beautifier/beautifier.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/beautifier/beautifier.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/beautifier/beautifier.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/beautifier/beautifier.io/merges", + "archive_url": "https://api.github.com/repos/beautifier/beautifier.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/beautifier/beautifier.io/downloads", + "issues_url": "https://api.github.com/repos/beautifier/beautifier.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/beautifier/beautifier.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/beautifier/beautifier.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/beautifier/beautifier.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/beautifier/beautifier.io/labels{/name}", + "releases_url": "https://api.github.com/repos/beautifier/beautifier.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/beautifier/beautifier.io/deployments", + "created_at": "2016-11-23T16:30:01Z", + "updated_at": "2019-08-06T18:18:25Z", + "pushed_at": "2019-08-06T18:18:21Z", + "git_url": "git://github.com/beautifier/beautifier.io.git", + "ssh_url": "git@github.com:beautifier/beautifier.io.git", + "clone_url": "https://github.com/beautifier/beautifier.io.git", + "svn_url": "https://github.com/beautifier/beautifier.io", + "homepage": "https://beautifier.io", + "size": 8670, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": true, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": true, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 2, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 84822, + "node_id": "MDEwOlJlcG9zaXRvcnk4NDgyMg==", + "name": "js-beautify", + "full_name": "beautify-web/js-beautify", + "private": false, + "owner": { + "login": "beautify-web", + "id": 6538164, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjY1MzgxNjQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/6538164?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/beautify-web", + "html_url": "https://github.com/beautify-web", + "followers_url": "https://api.github.com/users/beautify-web/followers", + "following_url": "https://api.github.com/users/beautify-web/following{/other_user}", + "gists_url": "https://api.github.com/users/beautify-web/gists{/gist_id}", + "starred_url": "https://api.github.com/users/beautify-web/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/beautify-web/subscriptions", + "organizations_url": "https://api.github.com/users/beautify-web/orgs", + "repos_url": "https://api.github.com/users/beautify-web/repos", + "events_url": "https://api.github.com/users/beautify-web/events{/privacy}", + "received_events_url": "https://api.github.com/users/beautify-web/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/beautify-web/js-beautify", + "description": "Beautifier for javascript ", + "fork": false, + "url": "https://api.github.com/repos/beautify-web/js-beautify", + "forks_url": "https://api.github.com/repos/beautify-web/js-beautify/forks", + "keys_url": "https://api.github.com/repos/beautify-web/js-beautify/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/beautify-web/js-beautify/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/beautify-web/js-beautify/teams", + "hooks_url": "https://api.github.com/repos/beautify-web/js-beautify/hooks", + "issue_events_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/events{/number}", + "events_url": "https://api.github.com/repos/beautify-web/js-beautify/events", + "assignees_url": "https://api.github.com/repos/beautify-web/js-beautify/assignees{/user}", + "branches_url": "https://api.github.com/repos/beautify-web/js-beautify/branches{/branch}", + "tags_url": "https://api.github.com/repos/beautify-web/js-beautify/tags", + "blobs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/beautify-web/js-beautify/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/beautify-web/js-beautify/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/beautify-web/js-beautify/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/beautify-web/js-beautify/statuses/{sha}", + "languages_url": "https://api.github.com/repos/beautify-web/js-beautify/languages", + "stargazers_url": "https://api.github.com/repos/beautify-web/js-beautify/stargazers", + "contributors_url": "https://api.github.com/repos/beautify-web/js-beautify/contributors", + "subscribers_url": "https://api.github.com/repos/beautify-web/js-beautify/subscribers", + "subscription_url": "https://api.github.com/repos/beautify-web/js-beautify/subscription", + "commits_url": "https://api.github.com/repos/beautify-web/js-beautify/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/beautify-web/js-beautify/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/beautify-web/js-beautify/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/beautify-web/js-beautify/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/beautify-web/js-beautify/contents/{+path}", + "compare_url": "https://api.github.com/repos/beautify-web/js-beautify/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/beautify-web/js-beautify/merges", + "archive_url": "https://api.github.com/repos/beautify-web/js-beautify/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/beautify-web/js-beautify/downloads", + "issues_url": "https://api.github.com/repos/beautify-web/js-beautify/issues{/number}", + "pulls_url": "https://api.github.com/repos/beautify-web/js-beautify/pulls{/number}", + "milestones_url": "https://api.github.com/repos/beautify-web/js-beautify/milestones{/number}", + "notifications_url": "https://api.github.com/repos/beautify-web/js-beautify/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/beautify-web/js-beautify/labels{/name}", + "releases_url": "https://api.github.com/repos/beautify-web/js-beautify/releases{/id}", + "deployments_url": "https://api.github.com/repos/beautify-web/js-beautify/deployments", + "created_at": "2008-12-04T06:35:54Z", + "updated_at": "2019-10-25T18:27:59Z", + "pushed_at": "2019-10-21T18:44:46Z", + "git_url": "git://github.com/beautify-web/js-beautify.git", + "ssh_url": "git@github.com:beautify-web/js-beautify.git", + "clone_url": "https://github.com/beautify-web/js-beautify.git", + "svn_url": "https://github.com/beautify-web/js-beautify", + "homepage": "https://beautifier.io", + "size": 10033, + "stargazers_count": 6449, + "watchers_count": 6449, + "language": "JavaScript", + "has_issues": true, + "has_projects": true, + "has_downloads": false, + "has_wiki": true, + "has_pages": false, + "forks_count": 1133, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 295, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1133, + "open_issues": 295, + "watchers": 6449, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 174435995, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzQ0MzU5OTU=", + "name": "bdd-nh-1552001178", + "full_name": "bitwise-jenkins/bdd-nh-1552001178", + "private": false, + "owner": { + "login": "bitwise-jenkins", + "id": 24939347, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjI0OTM5MzQ3", + "avatar_url": "https://avatars2.githubusercontent.com/u/24939347?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwise-jenkins", + "html_url": "https://github.com/bitwise-jenkins", + "followers_url": "https://api.github.com/users/bitwise-jenkins/followers", + "following_url": "https://api.github.com/users/bitwise-jenkins/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwise-jenkins/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwise-jenkins/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwise-jenkins/subscriptions", + "organizations_url": "https://api.github.com/users/bitwise-jenkins/orgs", + "repos_url": "https://api.github.com/users/bitwise-jenkins/repos", + "events_url": "https://api.github.com/users/bitwise-jenkins/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwise-jenkins/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/bitwise-jenkins/bdd-nh-1552001178", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/bitwise-jenkins/bdd-nh-1552001178", + "forks_url": "https://api.github.com/repos/bitwise-jenkins/bdd-nh-1552001178/forks", + "keys_url": "https://api.github.com/repos/bitwise-jenkins/bdd-nh-1552001178/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwise-jenkins/bdd-nh-1552001178/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwise-jenkins/bdd-nh-1552001178/teams", + "hooks_url": "https://api.github.com/repos/bitwise-jenkins/bdd-nh-1552001178/hooks", + "issue_events_url": "https://api.github.com/repos/bitwise-jenkins/bdd-nh-1552001178/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwise-jenkins/bdd-nh-1552001178/events", + "assignees_url": "https://api.github.com/repos/bitwise-jenkins/bdd-nh-1552001178/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwise-jenkins/bdd-nh-1552001178/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwise-jenkins/bdd-nh-1552001178/tags", + "blobs_url": "https://api.github.com/repos/bitwise-jenkins/bdd-nh-1552001178/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwise-jenkins/bdd-nh-1552001178/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwise-jenkins/bdd-nh-1552001178/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwise-jenkins/bdd-nh-1552001178/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwise-jenkins/bdd-nh-1552001178/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwise-jenkins/bdd-nh-1552001178/languages", + "stargazers_url": "https://api.github.com/repos/bitwise-jenkins/bdd-nh-1552001178/stargazers", + "contributors_url": "https://api.github.com/repos/bitwise-jenkins/bdd-nh-1552001178/contributors", + "subscribers_url": "https://api.github.com/repos/bitwise-jenkins/bdd-nh-1552001178/subscribers", + "subscription_url": "https://api.github.com/repos/bitwise-jenkins/bdd-nh-1552001178/subscription", + "commits_url": "https://api.github.com/repos/bitwise-jenkins/bdd-nh-1552001178/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwise-jenkins/bdd-nh-1552001178/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwise-jenkins/bdd-nh-1552001178/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwise-jenkins/bdd-nh-1552001178/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwise-jenkins/bdd-nh-1552001178/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwise-jenkins/bdd-nh-1552001178/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwise-jenkins/bdd-nh-1552001178/merges", + "archive_url": "https://api.github.com/repos/bitwise-jenkins/bdd-nh-1552001178/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwise-jenkins/bdd-nh-1552001178/downloads", + "issues_url": "https://api.github.com/repos/bitwise-jenkins/bdd-nh-1552001178/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwise-jenkins/bdd-nh-1552001178/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwise-jenkins/bdd-nh-1552001178/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwise-jenkins/bdd-nh-1552001178/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwise-jenkins/bdd-nh-1552001178/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwise-jenkins/bdd-nh-1552001178/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwise-jenkins/bdd-nh-1552001178/deployments", + "created_at": "2019-03-07T23:26:40Z", + "updated_at": "2019-03-07T23:26:47Z", + "pushed_at": "2019-03-07T23:29:21Z", + "git_url": "git://github.com/bitwise-jenkins/bdd-nh-1552001178.git", + "ssh_url": "git@github.com:bitwise-jenkins/bdd-nh-1552001178.git", + "clone_url": "https://github.com/bitwise-jenkins/bdd-nh-1552001178.git", + "svn_url": "https://github.com/bitwise-jenkins/bdd-nh-1552001178", + "homepage": null, + "size": 12, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Makefile", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 174239189, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzQyMzkxODk=", + "name": "bdd-rh-1551916573", + "full_name": "bitwise-jenkins/bdd-rh-1551916573", + "private": false, + "owner": { + "login": "bitwise-jenkins", + "id": 24939347, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjI0OTM5MzQ3", + "avatar_url": "https://avatars2.githubusercontent.com/u/24939347?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwise-jenkins", + "html_url": "https://github.com/bitwise-jenkins", + "followers_url": "https://api.github.com/users/bitwise-jenkins/followers", + "following_url": "https://api.github.com/users/bitwise-jenkins/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwise-jenkins/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwise-jenkins/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwise-jenkins/subscriptions", + "organizations_url": "https://api.github.com/users/bitwise-jenkins/orgs", + "repos_url": "https://api.github.com/users/bitwise-jenkins/repos", + "events_url": "https://api.github.com/users/bitwise-jenkins/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwise-jenkins/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/bitwise-jenkins/bdd-rh-1551916573", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/bitwise-jenkins/bdd-rh-1551916573", + "forks_url": "https://api.github.com/repos/bitwise-jenkins/bdd-rh-1551916573/forks", + "keys_url": "https://api.github.com/repos/bitwise-jenkins/bdd-rh-1551916573/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwise-jenkins/bdd-rh-1551916573/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwise-jenkins/bdd-rh-1551916573/teams", + "hooks_url": "https://api.github.com/repos/bitwise-jenkins/bdd-rh-1551916573/hooks", + "issue_events_url": "https://api.github.com/repos/bitwise-jenkins/bdd-rh-1551916573/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwise-jenkins/bdd-rh-1551916573/events", + "assignees_url": "https://api.github.com/repos/bitwise-jenkins/bdd-rh-1551916573/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwise-jenkins/bdd-rh-1551916573/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwise-jenkins/bdd-rh-1551916573/tags", + "blobs_url": "https://api.github.com/repos/bitwise-jenkins/bdd-rh-1551916573/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwise-jenkins/bdd-rh-1551916573/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwise-jenkins/bdd-rh-1551916573/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwise-jenkins/bdd-rh-1551916573/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwise-jenkins/bdd-rh-1551916573/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwise-jenkins/bdd-rh-1551916573/languages", + "stargazers_url": "https://api.github.com/repos/bitwise-jenkins/bdd-rh-1551916573/stargazers", + "contributors_url": "https://api.github.com/repos/bitwise-jenkins/bdd-rh-1551916573/contributors", + "subscribers_url": "https://api.github.com/repos/bitwise-jenkins/bdd-rh-1551916573/subscribers", + "subscription_url": "https://api.github.com/repos/bitwise-jenkins/bdd-rh-1551916573/subscription", + "commits_url": "https://api.github.com/repos/bitwise-jenkins/bdd-rh-1551916573/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwise-jenkins/bdd-rh-1551916573/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwise-jenkins/bdd-rh-1551916573/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwise-jenkins/bdd-rh-1551916573/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwise-jenkins/bdd-rh-1551916573/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwise-jenkins/bdd-rh-1551916573/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwise-jenkins/bdd-rh-1551916573/merges", + "archive_url": "https://api.github.com/repos/bitwise-jenkins/bdd-rh-1551916573/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwise-jenkins/bdd-rh-1551916573/downloads", + "issues_url": "https://api.github.com/repos/bitwise-jenkins/bdd-rh-1551916573/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwise-jenkins/bdd-rh-1551916573/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwise-jenkins/bdd-rh-1551916573/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwise-jenkins/bdd-rh-1551916573/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwise-jenkins/bdd-rh-1551916573/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwise-jenkins/bdd-rh-1551916573/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwise-jenkins/bdd-rh-1551916573/deployments", + "created_at": "2019-03-06T23:56:33Z", + "updated_at": "2019-03-06T23:56:40Z", + "pushed_at": "2019-03-06T23:57:23Z", + "git_url": "git://github.com/bitwise-jenkins/bdd-rh-1551916573.git", + "ssh_url": "git@github.com:bitwise-jenkins/bdd-rh-1551916573.git", + "clone_url": "https://github.com/bitwise-jenkins/bdd-rh-1551916573.git", + "svn_url": "https://github.com/bitwise-jenkins/bdd-rh-1551916573", + "homepage": null, + "size": 11, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Makefile", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 174413360, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzQ0MTMzNjA=", + "name": "bdd-rh-1551989620", + "full_name": "bitwise-jenkins/bdd-rh-1551989620", + "private": false, + "owner": { + "login": "bitwise-jenkins", + "id": 24939347, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjI0OTM5MzQ3", + "avatar_url": "https://avatars2.githubusercontent.com/u/24939347?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwise-jenkins", + "html_url": "https://github.com/bitwise-jenkins", + "followers_url": "https://api.github.com/users/bitwise-jenkins/followers", + "following_url": "https://api.github.com/users/bitwise-jenkins/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwise-jenkins/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwise-jenkins/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwise-jenkins/subscriptions", + "organizations_url": "https://api.github.com/users/bitwise-jenkins/orgs", + "repos_url": "https://api.github.com/users/bitwise-jenkins/repos", + "events_url": "https://api.github.com/users/bitwise-jenkins/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwise-jenkins/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/bitwise-jenkins/bdd-rh-1551989620", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/bitwise-jenkins/bdd-rh-1551989620", + "forks_url": "https://api.github.com/repos/bitwise-jenkins/bdd-rh-1551989620/forks", + "keys_url": "https://api.github.com/repos/bitwise-jenkins/bdd-rh-1551989620/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwise-jenkins/bdd-rh-1551989620/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwise-jenkins/bdd-rh-1551989620/teams", + "hooks_url": "https://api.github.com/repos/bitwise-jenkins/bdd-rh-1551989620/hooks", + "issue_events_url": "https://api.github.com/repos/bitwise-jenkins/bdd-rh-1551989620/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwise-jenkins/bdd-rh-1551989620/events", + "assignees_url": "https://api.github.com/repos/bitwise-jenkins/bdd-rh-1551989620/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwise-jenkins/bdd-rh-1551989620/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwise-jenkins/bdd-rh-1551989620/tags", + "blobs_url": "https://api.github.com/repos/bitwise-jenkins/bdd-rh-1551989620/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwise-jenkins/bdd-rh-1551989620/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwise-jenkins/bdd-rh-1551989620/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwise-jenkins/bdd-rh-1551989620/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwise-jenkins/bdd-rh-1551989620/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwise-jenkins/bdd-rh-1551989620/languages", + "stargazers_url": "https://api.github.com/repos/bitwise-jenkins/bdd-rh-1551989620/stargazers", + "contributors_url": "https://api.github.com/repos/bitwise-jenkins/bdd-rh-1551989620/contributors", + "subscribers_url": "https://api.github.com/repos/bitwise-jenkins/bdd-rh-1551989620/subscribers", + "subscription_url": "https://api.github.com/repos/bitwise-jenkins/bdd-rh-1551989620/subscription", + "commits_url": "https://api.github.com/repos/bitwise-jenkins/bdd-rh-1551989620/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwise-jenkins/bdd-rh-1551989620/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwise-jenkins/bdd-rh-1551989620/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwise-jenkins/bdd-rh-1551989620/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwise-jenkins/bdd-rh-1551989620/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwise-jenkins/bdd-rh-1551989620/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwise-jenkins/bdd-rh-1551989620/merges", + "archive_url": "https://api.github.com/repos/bitwise-jenkins/bdd-rh-1551989620/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwise-jenkins/bdd-rh-1551989620/downloads", + "issues_url": "https://api.github.com/repos/bitwise-jenkins/bdd-rh-1551989620/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwise-jenkins/bdd-rh-1551989620/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwise-jenkins/bdd-rh-1551989620/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwise-jenkins/bdd-rh-1551989620/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwise-jenkins/bdd-rh-1551989620/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwise-jenkins/bdd-rh-1551989620/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwise-jenkins/bdd-rh-1551989620/deployments", + "created_at": "2019-03-07T20:14:00Z", + "updated_at": "2019-03-07T20:14:07Z", + "pushed_at": "2019-03-07T20:16:10Z", + "git_url": "git://github.com/bitwise-jenkins/bdd-rh-1551989620.git", + "ssh_url": "git@github.com:bitwise-jenkins/bdd-rh-1551989620.git", + "clone_url": "https://github.com/bitwise-jenkins/bdd-rh-1551989620.git", + "svn_url": "https://github.com/bitwise-jenkins/bdd-rh-1551989620", + "homepage": null, + "size": 11, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Makefile", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 125422367, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjU0MjIzNjc=", + "name": "environment-curtainpattern-production", + "full_name": "bitwise-jenkins/environment-curtainpattern-production", + "private": false, + "owner": { + "login": "bitwise-jenkins", + "id": 24939347, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjI0OTM5MzQ3", + "avatar_url": "https://avatars2.githubusercontent.com/u/24939347?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwise-jenkins", + "html_url": "https://github.com/bitwise-jenkins", + "followers_url": "https://api.github.com/users/bitwise-jenkins/followers", + "following_url": "https://api.github.com/users/bitwise-jenkins/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwise-jenkins/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwise-jenkins/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwise-jenkins/subscriptions", + "organizations_url": "https://api.github.com/users/bitwise-jenkins/orgs", + "repos_url": "https://api.github.com/users/bitwise-jenkins/repos", + "events_url": "https://api.github.com/users/bitwise-jenkins/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwise-jenkins/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/bitwise-jenkins/environment-curtainpattern-production", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/bitwise-jenkins/environment-curtainpattern-production", + "forks_url": "https://api.github.com/repos/bitwise-jenkins/environment-curtainpattern-production/forks", + "keys_url": "https://api.github.com/repos/bitwise-jenkins/environment-curtainpattern-production/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwise-jenkins/environment-curtainpattern-production/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwise-jenkins/environment-curtainpattern-production/teams", + "hooks_url": "https://api.github.com/repos/bitwise-jenkins/environment-curtainpattern-production/hooks", + "issue_events_url": "https://api.github.com/repos/bitwise-jenkins/environment-curtainpattern-production/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwise-jenkins/environment-curtainpattern-production/events", + "assignees_url": "https://api.github.com/repos/bitwise-jenkins/environment-curtainpattern-production/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwise-jenkins/environment-curtainpattern-production/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwise-jenkins/environment-curtainpattern-production/tags", + "blobs_url": "https://api.github.com/repos/bitwise-jenkins/environment-curtainpattern-production/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwise-jenkins/environment-curtainpattern-production/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwise-jenkins/environment-curtainpattern-production/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwise-jenkins/environment-curtainpattern-production/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwise-jenkins/environment-curtainpattern-production/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwise-jenkins/environment-curtainpattern-production/languages", + "stargazers_url": "https://api.github.com/repos/bitwise-jenkins/environment-curtainpattern-production/stargazers", + "contributors_url": "https://api.github.com/repos/bitwise-jenkins/environment-curtainpattern-production/contributors", + "subscribers_url": "https://api.github.com/repos/bitwise-jenkins/environment-curtainpattern-production/subscribers", + "subscription_url": "https://api.github.com/repos/bitwise-jenkins/environment-curtainpattern-production/subscription", + "commits_url": "https://api.github.com/repos/bitwise-jenkins/environment-curtainpattern-production/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwise-jenkins/environment-curtainpattern-production/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwise-jenkins/environment-curtainpattern-production/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwise-jenkins/environment-curtainpattern-production/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwise-jenkins/environment-curtainpattern-production/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwise-jenkins/environment-curtainpattern-production/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwise-jenkins/environment-curtainpattern-production/merges", + "archive_url": "https://api.github.com/repos/bitwise-jenkins/environment-curtainpattern-production/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwise-jenkins/environment-curtainpattern-production/downloads", + "issues_url": "https://api.github.com/repos/bitwise-jenkins/environment-curtainpattern-production/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwise-jenkins/environment-curtainpattern-production/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwise-jenkins/environment-curtainpattern-production/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwise-jenkins/environment-curtainpattern-production/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwise-jenkins/environment-curtainpattern-production/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwise-jenkins/environment-curtainpattern-production/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwise-jenkins/environment-curtainpattern-production/deployments", + "created_at": "2018-03-15T20:26:15Z", + "updated_at": "2018-03-15T20:26:22Z", + "pushed_at": "2018-03-15T20:26:20Z", + "git_url": "git://github.com/bitwise-jenkins/environment-curtainpattern-production.git", + "ssh_url": "git@github.com:bitwise-jenkins/environment-curtainpattern-production.git", + "clone_url": "https://github.com/bitwise-jenkins/environment-curtainpattern-production.git", + "svn_url": "https://github.com/bitwise-jenkins/environment-curtainpattern-production", + "homepage": null, + "size": 12, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Makefile", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 125422315, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjU0MjIzMTU=", + "name": "environment-curtainpattern-staging", + "full_name": "bitwise-jenkins/environment-curtainpattern-staging", + "private": false, + "owner": { + "login": "bitwise-jenkins", + "id": 24939347, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjI0OTM5MzQ3", + "avatar_url": "https://avatars2.githubusercontent.com/u/24939347?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwise-jenkins", + "html_url": "https://github.com/bitwise-jenkins", + "followers_url": "https://api.github.com/users/bitwise-jenkins/followers", + "following_url": "https://api.github.com/users/bitwise-jenkins/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwise-jenkins/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwise-jenkins/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwise-jenkins/subscriptions", + "organizations_url": "https://api.github.com/users/bitwise-jenkins/orgs", + "repos_url": "https://api.github.com/users/bitwise-jenkins/repos", + "events_url": "https://api.github.com/users/bitwise-jenkins/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwise-jenkins/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/bitwise-jenkins/environment-curtainpattern-staging", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/bitwise-jenkins/environment-curtainpattern-staging", + "forks_url": "https://api.github.com/repos/bitwise-jenkins/environment-curtainpattern-staging/forks", + "keys_url": "https://api.github.com/repos/bitwise-jenkins/environment-curtainpattern-staging/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwise-jenkins/environment-curtainpattern-staging/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwise-jenkins/environment-curtainpattern-staging/teams", + "hooks_url": "https://api.github.com/repos/bitwise-jenkins/environment-curtainpattern-staging/hooks", + "issue_events_url": "https://api.github.com/repos/bitwise-jenkins/environment-curtainpattern-staging/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwise-jenkins/environment-curtainpattern-staging/events", + "assignees_url": "https://api.github.com/repos/bitwise-jenkins/environment-curtainpattern-staging/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwise-jenkins/environment-curtainpattern-staging/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwise-jenkins/environment-curtainpattern-staging/tags", + "blobs_url": "https://api.github.com/repos/bitwise-jenkins/environment-curtainpattern-staging/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwise-jenkins/environment-curtainpattern-staging/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwise-jenkins/environment-curtainpattern-staging/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwise-jenkins/environment-curtainpattern-staging/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwise-jenkins/environment-curtainpattern-staging/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwise-jenkins/environment-curtainpattern-staging/languages", + "stargazers_url": "https://api.github.com/repos/bitwise-jenkins/environment-curtainpattern-staging/stargazers", + "contributors_url": "https://api.github.com/repos/bitwise-jenkins/environment-curtainpattern-staging/contributors", + "subscribers_url": "https://api.github.com/repos/bitwise-jenkins/environment-curtainpattern-staging/subscribers", + "subscription_url": "https://api.github.com/repos/bitwise-jenkins/environment-curtainpattern-staging/subscription", + "commits_url": "https://api.github.com/repos/bitwise-jenkins/environment-curtainpattern-staging/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwise-jenkins/environment-curtainpattern-staging/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwise-jenkins/environment-curtainpattern-staging/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwise-jenkins/environment-curtainpattern-staging/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwise-jenkins/environment-curtainpattern-staging/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwise-jenkins/environment-curtainpattern-staging/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwise-jenkins/environment-curtainpattern-staging/merges", + "archive_url": "https://api.github.com/repos/bitwise-jenkins/environment-curtainpattern-staging/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwise-jenkins/environment-curtainpattern-staging/downloads", + "issues_url": "https://api.github.com/repos/bitwise-jenkins/environment-curtainpattern-staging/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwise-jenkins/environment-curtainpattern-staging/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwise-jenkins/environment-curtainpattern-staging/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwise-jenkins/environment-curtainpattern-staging/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwise-jenkins/environment-curtainpattern-staging/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwise-jenkins/environment-curtainpattern-staging/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwise-jenkins/environment-curtainpattern-staging/deployments", + "created_at": "2018-03-15T20:25:44Z", + "updated_at": "2018-03-15T20:25:50Z", + "pushed_at": "2018-03-15T20:25:49Z", + "git_url": "git://github.com/bitwise-jenkins/environment-curtainpattern-staging.git", + "ssh_url": "git@github.com:bitwise-jenkins/environment-curtainpattern-staging.git", + "clone_url": "https://github.com/bitwise-jenkins/environment-curtainpattern-staging.git", + "svn_url": "https://github.com/bitwise-jenkins/environment-curtainpattern-staging", + "homepage": null, + "size": 12, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Makefile", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 174233164, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzQyMzMxNjQ=", + "name": "environment-wolverinewhip-production", + "full_name": "bitwise-jenkins/environment-wolverinewhip-production", + "private": false, + "owner": { + "login": "bitwise-jenkins", + "id": 24939347, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjI0OTM5MzQ3", + "avatar_url": "https://avatars2.githubusercontent.com/u/24939347?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwise-jenkins", + "html_url": "https://github.com/bitwise-jenkins", + "followers_url": "https://api.github.com/users/bitwise-jenkins/followers", + "following_url": "https://api.github.com/users/bitwise-jenkins/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwise-jenkins/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwise-jenkins/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwise-jenkins/subscriptions", + "organizations_url": "https://api.github.com/users/bitwise-jenkins/orgs", + "repos_url": "https://api.github.com/users/bitwise-jenkins/repos", + "events_url": "https://api.github.com/users/bitwise-jenkins/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwise-jenkins/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/bitwise-jenkins/environment-wolverinewhip-production", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/bitwise-jenkins/environment-wolverinewhip-production", + "forks_url": "https://api.github.com/repos/bitwise-jenkins/environment-wolverinewhip-production/forks", + "keys_url": "https://api.github.com/repos/bitwise-jenkins/environment-wolverinewhip-production/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwise-jenkins/environment-wolverinewhip-production/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwise-jenkins/environment-wolverinewhip-production/teams", + "hooks_url": "https://api.github.com/repos/bitwise-jenkins/environment-wolverinewhip-production/hooks", + "issue_events_url": "https://api.github.com/repos/bitwise-jenkins/environment-wolverinewhip-production/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwise-jenkins/environment-wolverinewhip-production/events", + "assignees_url": "https://api.github.com/repos/bitwise-jenkins/environment-wolverinewhip-production/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwise-jenkins/environment-wolverinewhip-production/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwise-jenkins/environment-wolverinewhip-production/tags", + "blobs_url": "https://api.github.com/repos/bitwise-jenkins/environment-wolverinewhip-production/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwise-jenkins/environment-wolverinewhip-production/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwise-jenkins/environment-wolverinewhip-production/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwise-jenkins/environment-wolverinewhip-production/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwise-jenkins/environment-wolverinewhip-production/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwise-jenkins/environment-wolverinewhip-production/languages", + "stargazers_url": "https://api.github.com/repos/bitwise-jenkins/environment-wolverinewhip-production/stargazers", + "contributors_url": "https://api.github.com/repos/bitwise-jenkins/environment-wolverinewhip-production/contributors", + "subscribers_url": "https://api.github.com/repos/bitwise-jenkins/environment-wolverinewhip-production/subscribers", + "subscription_url": "https://api.github.com/repos/bitwise-jenkins/environment-wolverinewhip-production/subscription", + "commits_url": "https://api.github.com/repos/bitwise-jenkins/environment-wolverinewhip-production/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwise-jenkins/environment-wolverinewhip-production/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwise-jenkins/environment-wolverinewhip-production/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwise-jenkins/environment-wolverinewhip-production/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwise-jenkins/environment-wolverinewhip-production/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwise-jenkins/environment-wolverinewhip-production/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwise-jenkins/environment-wolverinewhip-production/merges", + "archive_url": "https://api.github.com/repos/bitwise-jenkins/environment-wolverinewhip-production/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwise-jenkins/environment-wolverinewhip-production/downloads", + "issues_url": "https://api.github.com/repos/bitwise-jenkins/environment-wolverinewhip-production/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwise-jenkins/environment-wolverinewhip-production/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwise-jenkins/environment-wolverinewhip-production/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwise-jenkins/environment-wolverinewhip-production/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwise-jenkins/environment-wolverinewhip-production/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwise-jenkins/environment-wolverinewhip-production/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwise-jenkins/environment-wolverinewhip-production/deployments", + "created_at": "2019-03-06T22:50:52Z", + "updated_at": "2019-03-06T22:50:59Z", + "pushed_at": "2019-03-06T22:50:57Z", + "git_url": "git://github.com/bitwise-jenkins/environment-wolverinewhip-production.git", + "ssh_url": "git@github.com:bitwise-jenkins/environment-wolverinewhip-production.git", + "clone_url": "https://github.com/bitwise-jenkins/environment-wolverinewhip-production.git", + "svn_url": "https://github.com/bitwise-jenkins/environment-wolverinewhip-production", + "homepage": null, + "size": 21, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Makefile", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 174233152, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzQyMzMxNTI=", + "name": "environment-wolverinewhip-staging", + "full_name": "bitwise-jenkins/environment-wolverinewhip-staging", + "private": false, + "owner": { + "login": "bitwise-jenkins", + "id": 24939347, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjI0OTM5MzQ3", + "avatar_url": "https://avatars2.githubusercontent.com/u/24939347?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwise-jenkins", + "html_url": "https://github.com/bitwise-jenkins", + "followers_url": "https://api.github.com/users/bitwise-jenkins/followers", + "following_url": "https://api.github.com/users/bitwise-jenkins/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwise-jenkins/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwise-jenkins/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwise-jenkins/subscriptions", + "organizations_url": "https://api.github.com/users/bitwise-jenkins/orgs", + "repos_url": "https://api.github.com/users/bitwise-jenkins/repos", + "events_url": "https://api.github.com/users/bitwise-jenkins/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwise-jenkins/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/bitwise-jenkins/environment-wolverinewhip-staging", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/bitwise-jenkins/environment-wolverinewhip-staging", + "forks_url": "https://api.github.com/repos/bitwise-jenkins/environment-wolverinewhip-staging/forks", + "keys_url": "https://api.github.com/repos/bitwise-jenkins/environment-wolverinewhip-staging/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwise-jenkins/environment-wolverinewhip-staging/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwise-jenkins/environment-wolverinewhip-staging/teams", + "hooks_url": "https://api.github.com/repos/bitwise-jenkins/environment-wolverinewhip-staging/hooks", + "issue_events_url": "https://api.github.com/repos/bitwise-jenkins/environment-wolverinewhip-staging/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwise-jenkins/environment-wolverinewhip-staging/events", + "assignees_url": "https://api.github.com/repos/bitwise-jenkins/environment-wolverinewhip-staging/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwise-jenkins/environment-wolverinewhip-staging/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwise-jenkins/environment-wolverinewhip-staging/tags", + "blobs_url": "https://api.github.com/repos/bitwise-jenkins/environment-wolverinewhip-staging/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwise-jenkins/environment-wolverinewhip-staging/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwise-jenkins/environment-wolverinewhip-staging/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwise-jenkins/environment-wolverinewhip-staging/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwise-jenkins/environment-wolverinewhip-staging/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwise-jenkins/environment-wolverinewhip-staging/languages", + "stargazers_url": "https://api.github.com/repos/bitwise-jenkins/environment-wolverinewhip-staging/stargazers", + "contributors_url": "https://api.github.com/repos/bitwise-jenkins/environment-wolverinewhip-staging/contributors", + "subscribers_url": "https://api.github.com/repos/bitwise-jenkins/environment-wolverinewhip-staging/subscribers", + "subscription_url": "https://api.github.com/repos/bitwise-jenkins/environment-wolverinewhip-staging/subscription", + "commits_url": "https://api.github.com/repos/bitwise-jenkins/environment-wolverinewhip-staging/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwise-jenkins/environment-wolverinewhip-staging/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwise-jenkins/environment-wolverinewhip-staging/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwise-jenkins/environment-wolverinewhip-staging/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwise-jenkins/environment-wolverinewhip-staging/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwise-jenkins/environment-wolverinewhip-staging/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwise-jenkins/environment-wolverinewhip-staging/merges", + "archive_url": "https://api.github.com/repos/bitwise-jenkins/environment-wolverinewhip-staging/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwise-jenkins/environment-wolverinewhip-staging/downloads", + "issues_url": "https://api.github.com/repos/bitwise-jenkins/environment-wolverinewhip-staging/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwise-jenkins/environment-wolverinewhip-staging/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwise-jenkins/environment-wolverinewhip-staging/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwise-jenkins/environment-wolverinewhip-staging/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwise-jenkins/environment-wolverinewhip-staging/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwise-jenkins/environment-wolverinewhip-staging/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwise-jenkins/environment-wolverinewhip-staging/deployments", + "created_at": "2019-03-06T22:50:44Z", + "updated_at": "2019-03-06T23:41:55Z", + "pushed_at": "2019-03-06T23:41:54Z", + "git_url": "git://github.com/bitwise-jenkins/environment-wolverinewhip-staging.git", + "ssh_url": "git@github.com:bitwise-jenkins/environment-wolverinewhip-staging.git", + "clone_url": "https://github.com/bitwise-jenkins/environment-wolverinewhip-staging.git", + "svn_url": "https://github.com/bitwise-jenkins/environment-wolverinewhip-staging", + "homepage": null, + "size": 23, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Makefile", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 1, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 86498731, + "node_id": "MDEwOlJlcG9zaXRvcnk4NjQ5ODczMQ==", + "name": "git-plugin", + "full_name": "bitwise-jenkins/git-plugin", + "private": false, + "owner": { + "login": "bitwise-jenkins", + "id": 24939347, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjI0OTM5MzQ3", + "avatar_url": "https://avatars2.githubusercontent.com/u/24939347?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwise-jenkins", + "html_url": "https://github.com/bitwise-jenkins", + "followers_url": "https://api.github.com/users/bitwise-jenkins/followers", + "following_url": "https://api.github.com/users/bitwise-jenkins/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwise-jenkins/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwise-jenkins/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwise-jenkins/subscriptions", + "organizations_url": "https://api.github.com/users/bitwise-jenkins/orgs", + "repos_url": "https://api.github.com/users/bitwise-jenkins/repos", + "events_url": "https://api.github.com/users/bitwise-jenkins/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwise-jenkins/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/bitwise-jenkins/git-plugin", + "description": "Git plugin for Jenkins", + "fork": true, + "url": "https://api.github.com/repos/bitwise-jenkins/git-plugin", + "forks_url": "https://api.github.com/repos/bitwise-jenkins/git-plugin/forks", + "keys_url": "https://api.github.com/repos/bitwise-jenkins/git-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwise-jenkins/git-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwise-jenkins/git-plugin/teams", + "hooks_url": "https://api.github.com/repos/bitwise-jenkins/git-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/bitwise-jenkins/git-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwise-jenkins/git-plugin/events", + "assignees_url": "https://api.github.com/repos/bitwise-jenkins/git-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwise-jenkins/git-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwise-jenkins/git-plugin/tags", + "blobs_url": "https://api.github.com/repos/bitwise-jenkins/git-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwise-jenkins/git-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwise-jenkins/git-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwise-jenkins/git-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwise-jenkins/git-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwise-jenkins/git-plugin/languages", + "stargazers_url": "https://api.github.com/repos/bitwise-jenkins/git-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/bitwise-jenkins/git-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/bitwise-jenkins/git-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/bitwise-jenkins/git-plugin/subscription", + "commits_url": "https://api.github.com/repos/bitwise-jenkins/git-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwise-jenkins/git-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwise-jenkins/git-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwise-jenkins/git-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwise-jenkins/git-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwise-jenkins/git-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwise-jenkins/git-plugin/merges", + "archive_url": "https://api.github.com/repos/bitwise-jenkins/git-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwise-jenkins/git-plugin/downloads", + "issues_url": "https://api.github.com/repos/bitwise-jenkins/git-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwise-jenkins/git-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwise-jenkins/git-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwise-jenkins/git-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwise-jenkins/git-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwise-jenkins/git-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwise-jenkins/git-plugin/deployments", + "created_at": "2017-03-28T19:24:50Z", + "updated_at": "2017-03-28T19:24:54Z", + "pushed_at": "2017-03-28T11:20:43Z", + "git_url": "git://github.com/bitwise-jenkins/git-plugin.git", + "ssh_url": "git@github.com:bitwise-jenkins/git-plugin.git", + "clone_url": "https://github.com/bitwise-jenkins/git-plugin.git", + "svn_url": "https://github.com/bitwise-jenkins/git-plugin", + "homepage": "http://wiki.jenkins-ci.org/display/JENKINS/Git Plugin", + "size": 5047, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 86493596, + "node_id": "MDEwOlJlcG9zaXRvcnk4NjQ5MzU5Ng==", + "name": "hermann", + "full_name": "bitwise-jenkins/hermann", + "private": false, + "owner": { + "login": "bitwise-jenkins", + "id": 24939347, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjI0OTM5MzQ3", + "avatar_url": "https://avatars2.githubusercontent.com/u/24939347?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwise-jenkins", + "html_url": "https://github.com/bitwise-jenkins", + "followers_url": "https://api.github.com/users/bitwise-jenkins/followers", + "following_url": "https://api.github.com/users/bitwise-jenkins/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwise-jenkins/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwise-jenkins/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwise-jenkins/subscriptions", + "organizations_url": "https://api.github.com/users/bitwise-jenkins/orgs", + "repos_url": "https://api.github.com/users/bitwise-jenkins/repos", + "events_url": "https://api.github.com/users/bitwise-jenkins/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwise-jenkins/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/bitwise-jenkins/hermann", + "description": "A gem providing cross-platform Kafka producer and consumer support", + "fork": true, + "url": "https://api.github.com/repos/bitwise-jenkins/hermann", + "forks_url": "https://api.github.com/repos/bitwise-jenkins/hermann/forks", + "keys_url": "https://api.github.com/repos/bitwise-jenkins/hermann/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwise-jenkins/hermann/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwise-jenkins/hermann/teams", + "hooks_url": "https://api.github.com/repos/bitwise-jenkins/hermann/hooks", + "issue_events_url": "https://api.github.com/repos/bitwise-jenkins/hermann/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwise-jenkins/hermann/events", + "assignees_url": "https://api.github.com/repos/bitwise-jenkins/hermann/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwise-jenkins/hermann/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwise-jenkins/hermann/tags", + "blobs_url": "https://api.github.com/repos/bitwise-jenkins/hermann/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwise-jenkins/hermann/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwise-jenkins/hermann/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwise-jenkins/hermann/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwise-jenkins/hermann/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwise-jenkins/hermann/languages", + "stargazers_url": "https://api.github.com/repos/bitwise-jenkins/hermann/stargazers", + "contributors_url": "https://api.github.com/repos/bitwise-jenkins/hermann/contributors", + "subscribers_url": "https://api.github.com/repos/bitwise-jenkins/hermann/subscribers", + "subscription_url": "https://api.github.com/repos/bitwise-jenkins/hermann/subscription", + "commits_url": "https://api.github.com/repos/bitwise-jenkins/hermann/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwise-jenkins/hermann/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwise-jenkins/hermann/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwise-jenkins/hermann/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwise-jenkins/hermann/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwise-jenkins/hermann/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwise-jenkins/hermann/merges", + "archive_url": "https://api.github.com/repos/bitwise-jenkins/hermann/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwise-jenkins/hermann/downloads", + "issues_url": "https://api.github.com/repos/bitwise-jenkins/hermann/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwise-jenkins/hermann/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwise-jenkins/hermann/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwise-jenkins/hermann/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwise-jenkins/hermann/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwise-jenkins/hermann/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwise-jenkins/hermann/deployments", + "created_at": "2017-03-28T18:27:58Z", + "updated_at": "2017-03-28T18:28:00Z", + "pushed_at": "2017-03-28T18:45:03Z", + "git_url": "git://github.com/bitwise-jenkins/hermann.git", + "ssh_url": "git@github.com:bitwise-jenkins/hermann.git", + "clone_url": "https://github.com/bitwise-jenkins/hermann.git", + "svn_url": "https://github.com/bitwise-jenkins/hermann", + "homepage": "", + "size": 443, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Ruby", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 93899025, + "node_id": "MDEwOlJlcG9zaXRvcnk5Mzg5OTAyNQ==", + "name": "jhipster-sample-app", + "full_name": "bitwise-jenkins/jhipster-sample-app", + "private": false, + "owner": { + "login": "bitwise-jenkins", + "id": 24939347, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjI0OTM5MzQ3", + "avatar_url": "https://avatars2.githubusercontent.com/u/24939347?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwise-jenkins", + "html_url": "https://github.com/bitwise-jenkins", + "followers_url": "https://api.github.com/users/bitwise-jenkins/followers", + "following_url": "https://api.github.com/users/bitwise-jenkins/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwise-jenkins/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwise-jenkins/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwise-jenkins/subscriptions", + "organizations_url": "https://api.github.com/users/bitwise-jenkins/orgs", + "repos_url": "https://api.github.com/users/bitwise-jenkins/repos", + "events_url": "https://api.github.com/users/bitwise-jenkins/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwise-jenkins/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/bitwise-jenkins/jhipster-sample-app", + "description": "This is a sample application created with JHipster", + "fork": true, + "url": "https://api.github.com/repos/bitwise-jenkins/jhipster-sample-app", + "forks_url": "https://api.github.com/repos/bitwise-jenkins/jhipster-sample-app/forks", + "keys_url": "https://api.github.com/repos/bitwise-jenkins/jhipster-sample-app/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwise-jenkins/jhipster-sample-app/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwise-jenkins/jhipster-sample-app/teams", + "hooks_url": "https://api.github.com/repos/bitwise-jenkins/jhipster-sample-app/hooks", + "issue_events_url": "https://api.github.com/repos/bitwise-jenkins/jhipster-sample-app/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwise-jenkins/jhipster-sample-app/events", + "assignees_url": "https://api.github.com/repos/bitwise-jenkins/jhipster-sample-app/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwise-jenkins/jhipster-sample-app/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwise-jenkins/jhipster-sample-app/tags", + "blobs_url": "https://api.github.com/repos/bitwise-jenkins/jhipster-sample-app/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwise-jenkins/jhipster-sample-app/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwise-jenkins/jhipster-sample-app/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwise-jenkins/jhipster-sample-app/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwise-jenkins/jhipster-sample-app/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwise-jenkins/jhipster-sample-app/languages", + "stargazers_url": "https://api.github.com/repos/bitwise-jenkins/jhipster-sample-app/stargazers", + "contributors_url": "https://api.github.com/repos/bitwise-jenkins/jhipster-sample-app/contributors", + "subscribers_url": "https://api.github.com/repos/bitwise-jenkins/jhipster-sample-app/subscribers", + "subscription_url": "https://api.github.com/repos/bitwise-jenkins/jhipster-sample-app/subscription", + "commits_url": "https://api.github.com/repos/bitwise-jenkins/jhipster-sample-app/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwise-jenkins/jhipster-sample-app/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwise-jenkins/jhipster-sample-app/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwise-jenkins/jhipster-sample-app/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwise-jenkins/jhipster-sample-app/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwise-jenkins/jhipster-sample-app/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwise-jenkins/jhipster-sample-app/merges", + "archive_url": "https://api.github.com/repos/bitwise-jenkins/jhipster-sample-app/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwise-jenkins/jhipster-sample-app/downloads", + "issues_url": "https://api.github.com/repos/bitwise-jenkins/jhipster-sample-app/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwise-jenkins/jhipster-sample-app/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwise-jenkins/jhipster-sample-app/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwise-jenkins/jhipster-sample-app/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwise-jenkins/jhipster-sample-app/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwise-jenkins/jhipster-sample-app/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwise-jenkins/jhipster-sample-app/deployments", + "created_at": "2017-06-09T21:43:34Z", + "updated_at": "2018-05-23T18:49:45Z", + "pushed_at": "2018-05-23T18:49:43Z", + "git_url": "git://github.com/bitwise-jenkins/jhipster-sample-app.git", + "ssh_url": "git@github.com:bitwise-jenkins/jhipster-sample-app.git", + "clone_url": "https://github.com/bitwise-jenkins/jhipster-sample-app.git", + "svn_url": "https://github.com/bitwise-jenkins/jhipster-sample-app", + "homepage": "", + "size": 32240, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 12, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 12, + "open_issues": 0, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 78144731, + "node_id": "MDEwOlJlcG9zaXRvcnk3ODE0NDczMQ==", + "name": "JS-Nightwatch.js", + "full_name": "bitwise-jenkins/JS-Nightwatch.js", + "private": false, + "owner": { + "login": "bitwise-jenkins", + "id": 24939347, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjI0OTM5MzQ3", + "avatar_url": "https://avatars2.githubusercontent.com/u/24939347?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwise-jenkins", + "html_url": "https://github.com/bitwise-jenkins", + "followers_url": "https://api.github.com/users/bitwise-jenkins/followers", + "following_url": "https://api.github.com/users/bitwise-jenkins/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwise-jenkins/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwise-jenkins/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwise-jenkins/subscriptions", + "organizations_url": "https://api.github.com/users/bitwise-jenkins/orgs", + "repos_url": "https://api.github.com/users/bitwise-jenkins/repos", + "events_url": "https://api.github.com/users/bitwise-jenkins/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwise-jenkins/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/bitwise-jenkins/JS-Nightwatch.js", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/bitwise-jenkins/JS-Nightwatch.js", + "forks_url": "https://api.github.com/repos/bitwise-jenkins/JS-Nightwatch.js/forks", + "keys_url": "https://api.github.com/repos/bitwise-jenkins/JS-Nightwatch.js/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwise-jenkins/JS-Nightwatch.js/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwise-jenkins/JS-Nightwatch.js/teams", + "hooks_url": "https://api.github.com/repos/bitwise-jenkins/JS-Nightwatch.js/hooks", + "issue_events_url": "https://api.github.com/repos/bitwise-jenkins/JS-Nightwatch.js/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwise-jenkins/JS-Nightwatch.js/events", + "assignees_url": "https://api.github.com/repos/bitwise-jenkins/JS-Nightwatch.js/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwise-jenkins/JS-Nightwatch.js/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwise-jenkins/JS-Nightwatch.js/tags", + "blobs_url": "https://api.github.com/repos/bitwise-jenkins/JS-Nightwatch.js/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwise-jenkins/JS-Nightwatch.js/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwise-jenkins/JS-Nightwatch.js/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwise-jenkins/JS-Nightwatch.js/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwise-jenkins/JS-Nightwatch.js/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwise-jenkins/JS-Nightwatch.js/languages", + "stargazers_url": "https://api.github.com/repos/bitwise-jenkins/JS-Nightwatch.js/stargazers", + "contributors_url": "https://api.github.com/repos/bitwise-jenkins/JS-Nightwatch.js/contributors", + "subscribers_url": "https://api.github.com/repos/bitwise-jenkins/JS-Nightwatch.js/subscribers", + "subscription_url": "https://api.github.com/repos/bitwise-jenkins/JS-Nightwatch.js/subscription", + "commits_url": "https://api.github.com/repos/bitwise-jenkins/JS-Nightwatch.js/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwise-jenkins/JS-Nightwatch.js/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwise-jenkins/JS-Nightwatch.js/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwise-jenkins/JS-Nightwatch.js/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwise-jenkins/JS-Nightwatch.js/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwise-jenkins/JS-Nightwatch.js/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwise-jenkins/JS-Nightwatch.js/merges", + "archive_url": "https://api.github.com/repos/bitwise-jenkins/JS-Nightwatch.js/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwise-jenkins/JS-Nightwatch.js/downloads", + "issues_url": "https://api.github.com/repos/bitwise-jenkins/JS-Nightwatch.js/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwise-jenkins/JS-Nightwatch.js/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwise-jenkins/JS-Nightwatch.js/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwise-jenkins/JS-Nightwatch.js/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwise-jenkins/JS-Nightwatch.js/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwise-jenkins/JS-Nightwatch.js/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwise-jenkins/JS-Nightwatch.js/deployments", + "created_at": "2017-01-05T20:11:56Z", + "updated_at": "2017-01-05T20:11:59Z", + "pushed_at": "2017-01-06T20:47:23Z", + "git_url": "git://github.com/bitwise-jenkins/JS-Nightwatch.js.git", + "ssh_url": "git@github.com:bitwise-jenkins/JS-Nightwatch.js.git", + "clone_url": "https://github.com/bitwise-jenkins/JS-Nightwatch.js.git", + "svn_url": "https://github.com/bitwise-jenkins/JS-Nightwatch.js", + "homepage": null, + "size": 21, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 86499287, + "node_id": "MDEwOlJlcG9zaXRvcnk4NjQ5OTI4Nw==", + "name": "junit-plugin", + "full_name": "bitwise-jenkins/junit-plugin", + "private": false, + "owner": { + "login": "bitwise-jenkins", + "id": 24939347, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjI0OTM5MzQ3", + "avatar_url": "https://avatars2.githubusercontent.com/u/24939347?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwise-jenkins", + "html_url": "https://github.com/bitwise-jenkins", + "followers_url": "https://api.github.com/users/bitwise-jenkins/followers", + "following_url": "https://api.github.com/users/bitwise-jenkins/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwise-jenkins/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwise-jenkins/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwise-jenkins/subscriptions", + "organizations_url": "https://api.github.com/users/bitwise-jenkins/orgs", + "repos_url": "https://api.github.com/users/bitwise-jenkins/repos", + "events_url": "https://api.github.com/users/bitwise-jenkins/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwise-jenkins/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/bitwise-jenkins/junit-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/bitwise-jenkins/junit-plugin", + "forks_url": "https://api.github.com/repos/bitwise-jenkins/junit-plugin/forks", + "keys_url": "https://api.github.com/repos/bitwise-jenkins/junit-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwise-jenkins/junit-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwise-jenkins/junit-plugin/teams", + "hooks_url": "https://api.github.com/repos/bitwise-jenkins/junit-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/bitwise-jenkins/junit-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwise-jenkins/junit-plugin/events", + "assignees_url": "https://api.github.com/repos/bitwise-jenkins/junit-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwise-jenkins/junit-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwise-jenkins/junit-plugin/tags", + "blobs_url": "https://api.github.com/repos/bitwise-jenkins/junit-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwise-jenkins/junit-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwise-jenkins/junit-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwise-jenkins/junit-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwise-jenkins/junit-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwise-jenkins/junit-plugin/languages", + "stargazers_url": "https://api.github.com/repos/bitwise-jenkins/junit-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/bitwise-jenkins/junit-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/bitwise-jenkins/junit-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/bitwise-jenkins/junit-plugin/subscription", + "commits_url": "https://api.github.com/repos/bitwise-jenkins/junit-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwise-jenkins/junit-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwise-jenkins/junit-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwise-jenkins/junit-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwise-jenkins/junit-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwise-jenkins/junit-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwise-jenkins/junit-plugin/merges", + "archive_url": "https://api.github.com/repos/bitwise-jenkins/junit-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwise-jenkins/junit-plugin/downloads", + "issues_url": "https://api.github.com/repos/bitwise-jenkins/junit-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwise-jenkins/junit-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwise-jenkins/junit-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwise-jenkins/junit-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwise-jenkins/junit-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwise-jenkins/junit-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwise-jenkins/junit-plugin/deployments", + "created_at": "2017-03-28T19:31:23Z", + "updated_at": "2017-08-19T12:51:38Z", + "pushed_at": "2019-10-09T07:09:02Z", + "git_url": "git://github.com/bitwise-jenkins/junit-plugin.git", + "ssh_url": "git@github.com:bitwise-jenkins/junit-plugin.git", + "clone_url": "https://github.com/bitwise-jenkins/junit-plugin.git", + "svn_url": "https://github.com/bitwise-jenkins/junit-plugin", + "homepage": "http://wiki.jenkins-ci.org/display/JENKINS/JUnit+Plugin", + "size": 1414, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 13, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 13, + "open_issues": 1, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 86465465, + "node_id": "MDEwOlJlcG9zaXRvcnk4NjQ2NTQ2NQ==", + "name": "logstash-plugin", + "full_name": "bitwise-jenkins/logstash-plugin", + "private": false, + "owner": { + "login": "bitwise-jenkins", + "id": 24939347, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjI0OTM5MzQ3", + "avatar_url": "https://avatars2.githubusercontent.com/u/24939347?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwise-jenkins", + "html_url": "https://github.com/bitwise-jenkins", + "followers_url": "https://api.github.com/users/bitwise-jenkins/followers", + "following_url": "https://api.github.com/users/bitwise-jenkins/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwise-jenkins/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwise-jenkins/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwise-jenkins/subscriptions", + "organizations_url": "https://api.github.com/users/bitwise-jenkins/orgs", + "repos_url": "https://api.github.com/users/bitwise-jenkins/repos", + "events_url": "https://api.github.com/users/bitwise-jenkins/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwise-jenkins/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/bitwise-jenkins/logstash-plugin", + "description": "Jenkins plugin to ship the console log off to Logstash", + "fork": true, + "url": "https://api.github.com/repos/bitwise-jenkins/logstash-plugin", + "forks_url": "https://api.github.com/repos/bitwise-jenkins/logstash-plugin/forks", + "keys_url": "https://api.github.com/repos/bitwise-jenkins/logstash-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwise-jenkins/logstash-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwise-jenkins/logstash-plugin/teams", + "hooks_url": "https://api.github.com/repos/bitwise-jenkins/logstash-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/bitwise-jenkins/logstash-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwise-jenkins/logstash-plugin/events", + "assignees_url": "https://api.github.com/repos/bitwise-jenkins/logstash-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwise-jenkins/logstash-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwise-jenkins/logstash-plugin/tags", + "blobs_url": "https://api.github.com/repos/bitwise-jenkins/logstash-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwise-jenkins/logstash-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwise-jenkins/logstash-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwise-jenkins/logstash-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwise-jenkins/logstash-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwise-jenkins/logstash-plugin/languages", + "stargazers_url": "https://api.github.com/repos/bitwise-jenkins/logstash-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/bitwise-jenkins/logstash-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/bitwise-jenkins/logstash-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/bitwise-jenkins/logstash-plugin/subscription", + "commits_url": "https://api.github.com/repos/bitwise-jenkins/logstash-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwise-jenkins/logstash-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwise-jenkins/logstash-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwise-jenkins/logstash-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwise-jenkins/logstash-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwise-jenkins/logstash-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwise-jenkins/logstash-plugin/merges", + "archive_url": "https://api.github.com/repos/bitwise-jenkins/logstash-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwise-jenkins/logstash-plugin/downloads", + "issues_url": "https://api.github.com/repos/bitwise-jenkins/logstash-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwise-jenkins/logstash-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwise-jenkins/logstash-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwise-jenkins/logstash-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwise-jenkins/logstash-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwise-jenkins/logstash-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwise-jenkins/logstash-plugin/deployments", + "created_at": "2017-03-28T13:47:52Z", + "updated_at": "2017-03-28T13:47:53Z", + "pushed_at": "2017-08-18T08:34:55Z", + "git_url": "git://github.com/bitwise-jenkins/logstash-plugin.git", + "ssh_url": "git@github.com:bitwise-jenkins/logstash-plugin.git", + "clone_url": "https://github.com/bitwise-jenkins/logstash-plugin.git", + "svn_url": "https://github.com/bitwise-jenkins/logstash-plugin", + "homepage": null, + "size": 166, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 5, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 98378193, + "node_id": "MDEwOlJlcG9zaXRvcnk5ODM3ODE5Mw==", + "name": "pipeline-dockerfile-sample", + "full_name": "bitwise-jenkins/pipeline-dockerfile-sample", + "private": false, + "owner": { + "login": "bitwise-jenkins", + "id": 24939347, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjI0OTM5MzQ3", + "avatar_url": "https://avatars2.githubusercontent.com/u/24939347?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwise-jenkins", + "html_url": "https://github.com/bitwise-jenkins", + "followers_url": "https://api.github.com/users/bitwise-jenkins/followers", + "following_url": "https://api.github.com/users/bitwise-jenkins/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwise-jenkins/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwise-jenkins/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwise-jenkins/subscriptions", + "organizations_url": "https://api.github.com/users/bitwise-jenkins/orgs", + "repos_url": "https://api.github.com/users/bitwise-jenkins/repos", + "events_url": "https://api.github.com/users/bitwise-jenkins/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwise-jenkins/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/bitwise-jenkins/pipeline-dockerfile-sample", + "description": "An application that will need a custom environment to build and test", + "fork": false, + "url": "https://api.github.com/repos/bitwise-jenkins/pipeline-dockerfile-sample", + "forks_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-dockerfile-sample/forks", + "keys_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-dockerfile-sample/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-dockerfile-sample/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-dockerfile-sample/teams", + "hooks_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-dockerfile-sample/hooks", + "issue_events_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-dockerfile-sample/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-dockerfile-sample/events", + "assignees_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-dockerfile-sample/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-dockerfile-sample/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-dockerfile-sample/tags", + "blobs_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-dockerfile-sample/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-dockerfile-sample/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-dockerfile-sample/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-dockerfile-sample/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-dockerfile-sample/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-dockerfile-sample/languages", + "stargazers_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-dockerfile-sample/stargazers", + "contributors_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-dockerfile-sample/contributors", + "subscribers_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-dockerfile-sample/subscribers", + "subscription_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-dockerfile-sample/subscription", + "commits_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-dockerfile-sample/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-dockerfile-sample/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-dockerfile-sample/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-dockerfile-sample/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-dockerfile-sample/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-dockerfile-sample/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-dockerfile-sample/merges", + "archive_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-dockerfile-sample/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-dockerfile-sample/downloads", + "issues_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-dockerfile-sample/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-dockerfile-sample/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-dockerfile-sample/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-dockerfile-sample/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-dockerfile-sample/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-dockerfile-sample/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-dockerfile-sample/deployments", + "created_at": "2017-07-26T04:07:23Z", + "updated_at": "2017-07-26T14:58:18Z", + "pushed_at": "2017-12-05T22:02:41Z", + "git_url": "git://github.com/bitwise-jenkins/pipeline-dockerfile-sample.git", + "ssh_url": "git@github.com:bitwise-jenkins/pipeline-dockerfile-sample.git", + "clone_url": "https://github.com/bitwise-jenkins/pipeline-dockerfile-sample.git", + "svn_url": "https://github.com/bitwise-jenkins/pipeline-dockerfile-sample", + "homepage": "", + "size": 3, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 7, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 7, + "open_issues": 2, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 87983811, + "node_id": "MDEwOlJlcG9zaXRvcnk4Nzk4MzgxMQ==", + "name": "pipeline-library", + "full_name": "bitwise-jenkins/pipeline-library", + "private": false, + "owner": { + "login": "bitwise-jenkins", + "id": 24939347, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjI0OTM5MzQ3", + "avatar_url": "https://avatars2.githubusercontent.com/u/24939347?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwise-jenkins", + "html_url": "https://github.com/bitwise-jenkins", + "followers_url": "https://api.github.com/users/bitwise-jenkins/followers", + "following_url": "https://api.github.com/users/bitwise-jenkins/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwise-jenkins/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwise-jenkins/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwise-jenkins/subscriptions", + "organizations_url": "https://api.github.com/users/bitwise-jenkins/orgs", + "repos_url": "https://api.github.com/users/bitwise-jenkins/repos", + "events_url": "https://api.github.com/users/bitwise-jenkins/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwise-jenkins/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/bitwise-jenkins/pipeline-library", + "description": "Collection of custom steps and variables for our Jenkins instance(s)", + "fork": true, + "url": "https://api.github.com/repos/bitwise-jenkins/pipeline-library", + "forks_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-library/forks", + "keys_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-library/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-library/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-library/teams", + "hooks_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-library/hooks", + "issue_events_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-library/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-library/events", + "assignees_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-library/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-library/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-library/tags", + "blobs_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-library/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-library/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-library/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-library/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-library/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-library/languages", + "stargazers_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-library/stargazers", + "contributors_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-library/contributors", + "subscribers_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-library/subscribers", + "subscription_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-library/subscription", + "commits_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-library/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-library/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-library/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-library/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-library/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-library/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-library/merges", + "archive_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-library/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-library/downloads", + "issues_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-library/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-library/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-library/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-library/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-library/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-library/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-library/deployments", + "created_at": "2017-04-11T22:10:28Z", + "updated_at": "2017-04-11T22:10:30Z", + "pushed_at": "2017-02-28T14:30:32Z", + "git_url": "git://github.com/bitwise-jenkins/pipeline-library.git", + "ssh_url": "git@github.com:bitwise-jenkins/pipeline-library.git", + "clone_url": "https://github.com/bitwise-jenkins/pipeline-library.git", + "svn_url": "https://github.com/bitwise-jenkins/pipeline-library", + "homepage": null, + "size": 23, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Groovy", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 99041635, + "node_id": "MDEwOlJlcG9zaXRvcnk5OTA0MTYzNQ==", + "name": "pipeline-parameters-demo", + "full_name": "bitwise-jenkins/pipeline-parameters-demo", + "private": false, + "owner": { + "login": "bitwise-jenkins", + "id": 24939347, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjI0OTM5MzQ3", + "avatar_url": "https://avatars2.githubusercontent.com/u/24939347?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwise-jenkins", + "html_url": "https://github.com/bitwise-jenkins", + "followers_url": "https://api.github.com/users/bitwise-jenkins/followers", + "following_url": "https://api.github.com/users/bitwise-jenkins/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwise-jenkins/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwise-jenkins/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwise-jenkins/subscriptions", + "organizations_url": "https://api.github.com/users/bitwise-jenkins/orgs", + "repos_url": "https://api.github.com/users/bitwise-jenkins/repos", + "events_url": "https://api.github.com/users/bitwise-jenkins/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwise-jenkins/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/bitwise-jenkins/pipeline-parameters-demo", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/bitwise-jenkins/pipeline-parameters-demo", + "forks_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-parameters-demo/forks", + "keys_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-parameters-demo/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-parameters-demo/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-parameters-demo/teams", + "hooks_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-parameters-demo/hooks", + "issue_events_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-parameters-demo/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-parameters-demo/events", + "assignees_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-parameters-demo/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-parameters-demo/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-parameters-demo/tags", + "blobs_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-parameters-demo/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-parameters-demo/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-parameters-demo/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-parameters-demo/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-parameters-demo/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-parameters-demo/languages", + "stargazers_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-parameters-demo/stargazers", + "contributors_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-parameters-demo/contributors", + "subscribers_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-parameters-demo/subscribers", + "subscription_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-parameters-demo/subscription", + "commits_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-parameters-demo/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-parameters-demo/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-parameters-demo/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-parameters-demo/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-parameters-demo/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-parameters-demo/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-parameters-demo/merges", + "archive_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-parameters-demo/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-parameters-demo/downloads", + "issues_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-parameters-demo/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-parameters-demo/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-parameters-demo/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-parameters-demo/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-parameters-demo/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-parameters-demo/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-parameters-demo/deployments", + "created_at": "2017-08-01T20:43:37Z", + "updated_at": "2019-05-02T10:27:59Z", + "pushed_at": "2017-08-02T03:18:43Z", + "git_url": "git://github.com/bitwise-jenkins/pipeline-parameters-demo.git", + "ssh_url": "git@github.com:bitwise-jenkins/pipeline-parameters-demo.git", + "clone_url": "https://github.com/bitwise-jenkins/pipeline-parameters-demo.git", + "svn_url": "https://github.com/bitwise-jenkins/pipeline-parameters-demo", + "homepage": null, + "size": 2, + "stargazers_count": 2, + "watchers_count": 2, + "language": null, + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 14, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 14, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 114285727, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTQyODU3Mjc=", + "name": "pipeline-sample", + "full_name": "bitwise-jenkins/pipeline-sample", + "private": true, + "owner": { + "login": "bitwise-jenkins", + "id": 24939347, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjI0OTM5MzQ3", + "avatar_url": "https://avatars2.githubusercontent.com/u/24939347?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwise-jenkins", + "html_url": "https://github.com/bitwise-jenkins", + "followers_url": "https://api.github.com/users/bitwise-jenkins/followers", + "following_url": "https://api.github.com/users/bitwise-jenkins/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwise-jenkins/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwise-jenkins/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwise-jenkins/subscriptions", + "organizations_url": "https://api.github.com/users/bitwise-jenkins/orgs", + "repos_url": "https://api.github.com/users/bitwise-jenkins/repos", + "events_url": "https://api.github.com/users/bitwise-jenkins/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwise-jenkins/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/bitwise-jenkins/pipeline-sample", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/bitwise-jenkins/pipeline-sample", + "forks_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-sample/forks", + "keys_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-sample/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-sample/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-sample/teams", + "hooks_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-sample/hooks", + "issue_events_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-sample/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-sample/events", + "assignees_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-sample/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-sample/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-sample/tags", + "blobs_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-sample/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-sample/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-sample/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-sample/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-sample/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-sample/languages", + "stargazers_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-sample/stargazers", + "contributors_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-sample/contributors", + "subscribers_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-sample/subscribers", + "subscription_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-sample/subscription", + "commits_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-sample/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-sample/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-sample/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-sample/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-sample/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-sample/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-sample/merges", + "archive_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-sample/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-sample/downloads", + "issues_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-sample/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-sample/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-sample/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-sample/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-sample/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-sample/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwise-jenkins/pipeline-sample/deployments", + "created_at": "2017-12-14T18:56:33Z", + "updated_at": "2017-12-14T18:57:02Z", + "pushed_at": "2018-01-11T01:41:10Z", + "git_url": "git://github.com/bitwise-jenkins/pipeline-sample.git", + "ssh_url": "git@github.com:bitwise-jenkins/pipeline-sample.git", + "clone_url": "https://github.com/bitwise-jenkins/pipeline-sample.git", + "svn_url": "https://github.com/bitwise-jenkins/pipeline-sample", + "homepage": null, + "size": 30, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Shell", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 174237459, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzQyMzc0NTk=", + "name": "quickstart-1", + "full_name": "bitwise-jenkins/quickstart-1", + "private": false, + "owner": { + "login": "bitwise-jenkins", + "id": 24939347, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjI0OTM5MzQ3", + "avatar_url": "https://avatars2.githubusercontent.com/u/24939347?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwise-jenkins", + "html_url": "https://github.com/bitwise-jenkins", + "followers_url": "https://api.github.com/users/bitwise-jenkins/followers", + "following_url": "https://api.github.com/users/bitwise-jenkins/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwise-jenkins/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwise-jenkins/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwise-jenkins/subscriptions", + "organizations_url": "https://api.github.com/users/bitwise-jenkins/orgs", + "repos_url": "https://api.github.com/users/bitwise-jenkins/repos", + "events_url": "https://api.github.com/users/bitwise-jenkins/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwise-jenkins/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/bitwise-jenkins/quickstart-1", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/bitwise-jenkins/quickstart-1", + "forks_url": "https://api.github.com/repos/bitwise-jenkins/quickstart-1/forks", + "keys_url": "https://api.github.com/repos/bitwise-jenkins/quickstart-1/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwise-jenkins/quickstart-1/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwise-jenkins/quickstart-1/teams", + "hooks_url": "https://api.github.com/repos/bitwise-jenkins/quickstart-1/hooks", + "issue_events_url": "https://api.github.com/repos/bitwise-jenkins/quickstart-1/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwise-jenkins/quickstart-1/events", + "assignees_url": "https://api.github.com/repos/bitwise-jenkins/quickstart-1/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwise-jenkins/quickstart-1/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwise-jenkins/quickstart-1/tags", + "blobs_url": "https://api.github.com/repos/bitwise-jenkins/quickstart-1/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwise-jenkins/quickstart-1/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwise-jenkins/quickstart-1/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwise-jenkins/quickstart-1/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwise-jenkins/quickstart-1/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwise-jenkins/quickstart-1/languages", + "stargazers_url": "https://api.github.com/repos/bitwise-jenkins/quickstart-1/stargazers", + "contributors_url": "https://api.github.com/repos/bitwise-jenkins/quickstart-1/contributors", + "subscribers_url": "https://api.github.com/repos/bitwise-jenkins/quickstart-1/subscribers", + "subscription_url": "https://api.github.com/repos/bitwise-jenkins/quickstart-1/subscription", + "commits_url": "https://api.github.com/repos/bitwise-jenkins/quickstart-1/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwise-jenkins/quickstart-1/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwise-jenkins/quickstart-1/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwise-jenkins/quickstart-1/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwise-jenkins/quickstart-1/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwise-jenkins/quickstart-1/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwise-jenkins/quickstart-1/merges", + "archive_url": "https://api.github.com/repos/bitwise-jenkins/quickstart-1/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwise-jenkins/quickstart-1/downloads", + "issues_url": "https://api.github.com/repos/bitwise-jenkins/quickstart-1/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwise-jenkins/quickstart-1/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwise-jenkins/quickstart-1/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwise-jenkins/quickstart-1/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwise-jenkins/quickstart-1/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwise-jenkins/quickstart-1/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwise-jenkins/quickstart-1/deployments", + "created_at": "2019-03-06T23:36:46Z", + "updated_at": "2019-03-06T23:36:54Z", + "pushed_at": "2019-03-06T23:38:09Z", + "git_url": "git://github.com/bitwise-jenkins/quickstart-1.git", + "ssh_url": "git@github.com:bitwise-jenkins/quickstart-1.git", + "clone_url": "https://github.com/bitwise-jenkins/quickstart-1.git", + "svn_url": "https://github.com/bitwise-jenkins/quickstart-1", + "homepage": null, + "size": 12, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Makefile", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 118533315, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTg1MzMzMTU=", + "name": "simple-java-maven-app2", + "full_name": "bitwise-jenkins/simple-java-maven-app2", + "private": false, + "owner": { + "login": "bitwise-jenkins", + "id": 24939347, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjI0OTM5MzQ3", + "avatar_url": "https://avatars2.githubusercontent.com/u/24939347?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwise-jenkins", + "html_url": "https://github.com/bitwise-jenkins", + "followers_url": "https://api.github.com/users/bitwise-jenkins/followers", + "following_url": "https://api.github.com/users/bitwise-jenkins/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwise-jenkins/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwise-jenkins/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwise-jenkins/subscriptions", + "organizations_url": "https://api.github.com/users/bitwise-jenkins/orgs", + "repos_url": "https://api.github.com/users/bitwise-jenkins/repos", + "events_url": "https://api.github.com/users/bitwise-jenkins/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwise-jenkins/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/bitwise-jenkins/simple-java-maven-app2", + "description": "For an introductory tutorial on how to use Jenkins to build a simple Java application with Maven.", + "fork": true, + "url": "https://api.github.com/repos/bitwise-jenkins/simple-java-maven-app2", + "forks_url": "https://api.github.com/repos/bitwise-jenkins/simple-java-maven-app2/forks", + "keys_url": "https://api.github.com/repos/bitwise-jenkins/simple-java-maven-app2/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwise-jenkins/simple-java-maven-app2/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwise-jenkins/simple-java-maven-app2/teams", + "hooks_url": "https://api.github.com/repos/bitwise-jenkins/simple-java-maven-app2/hooks", + "issue_events_url": "https://api.github.com/repos/bitwise-jenkins/simple-java-maven-app2/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwise-jenkins/simple-java-maven-app2/events", + "assignees_url": "https://api.github.com/repos/bitwise-jenkins/simple-java-maven-app2/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwise-jenkins/simple-java-maven-app2/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwise-jenkins/simple-java-maven-app2/tags", + "blobs_url": "https://api.github.com/repos/bitwise-jenkins/simple-java-maven-app2/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwise-jenkins/simple-java-maven-app2/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwise-jenkins/simple-java-maven-app2/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwise-jenkins/simple-java-maven-app2/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwise-jenkins/simple-java-maven-app2/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwise-jenkins/simple-java-maven-app2/languages", + "stargazers_url": "https://api.github.com/repos/bitwise-jenkins/simple-java-maven-app2/stargazers", + "contributors_url": "https://api.github.com/repos/bitwise-jenkins/simple-java-maven-app2/contributors", + "subscribers_url": "https://api.github.com/repos/bitwise-jenkins/simple-java-maven-app2/subscribers", + "subscription_url": "https://api.github.com/repos/bitwise-jenkins/simple-java-maven-app2/subscription", + "commits_url": "https://api.github.com/repos/bitwise-jenkins/simple-java-maven-app2/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwise-jenkins/simple-java-maven-app2/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwise-jenkins/simple-java-maven-app2/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwise-jenkins/simple-java-maven-app2/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwise-jenkins/simple-java-maven-app2/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwise-jenkins/simple-java-maven-app2/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwise-jenkins/simple-java-maven-app2/merges", + "archive_url": "https://api.github.com/repos/bitwise-jenkins/simple-java-maven-app2/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwise-jenkins/simple-java-maven-app2/downloads", + "issues_url": "https://api.github.com/repos/bitwise-jenkins/simple-java-maven-app2/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwise-jenkins/simple-java-maven-app2/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwise-jenkins/simple-java-maven-app2/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwise-jenkins/simple-java-maven-app2/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwise-jenkins/simple-java-maven-app2/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwise-jenkins/simple-java-maven-app2/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwise-jenkins/simple-java-maven-app2/deployments", + "created_at": "2018-01-23T00:20:22Z", + "updated_at": "2018-02-15T23:51:56Z", + "pushed_at": "2018-01-23T00:28:11Z", + "git_url": "git://github.com/bitwise-jenkins/simple-java-maven-app2.git", + "ssh_url": "git@github.com:bitwise-jenkins/simple-java-maven-app2.git", + "clone_url": "https://github.com/bitwise-jenkins/simple-java-maven-app2.git", + "svn_url": "https://github.com/bitwise-jenkins/simple-java-maven-app2", + "homepage": "", + "size": 12, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 125426744, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjU0MjY3NDQ=", + "name": "spring-boot-web-q-1", + "full_name": "bitwise-jenkins/spring-boot-web-q-1", + "private": false, + "owner": { + "login": "bitwise-jenkins", + "id": 24939347, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjI0OTM5MzQ3", + "avatar_url": "https://avatars2.githubusercontent.com/u/24939347?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwise-jenkins", + "html_url": "https://github.com/bitwise-jenkins", + "followers_url": "https://api.github.com/users/bitwise-jenkins/followers", + "following_url": "https://api.github.com/users/bitwise-jenkins/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwise-jenkins/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwise-jenkins/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwise-jenkins/subscriptions", + "organizations_url": "https://api.github.com/users/bitwise-jenkins/orgs", + "repos_url": "https://api.github.com/users/bitwise-jenkins/repos", + "events_url": "https://api.github.com/users/bitwise-jenkins/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwise-jenkins/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/bitwise-jenkins/spring-boot-web-q-1", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/bitwise-jenkins/spring-boot-web-q-1", + "forks_url": "https://api.github.com/repos/bitwise-jenkins/spring-boot-web-q-1/forks", + "keys_url": "https://api.github.com/repos/bitwise-jenkins/spring-boot-web-q-1/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwise-jenkins/spring-boot-web-q-1/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwise-jenkins/spring-boot-web-q-1/teams", + "hooks_url": "https://api.github.com/repos/bitwise-jenkins/spring-boot-web-q-1/hooks", + "issue_events_url": "https://api.github.com/repos/bitwise-jenkins/spring-boot-web-q-1/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwise-jenkins/spring-boot-web-q-1/events", + "assignees_url": "https://api.github.com/repos/bitwise-jenkins/spring-boot-web-q-1/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwise-jenkins/spring-boot-web-q-1/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwise-jenkins/spring-boot-web-q-1/tags", + "blobs_url": "https://api.github.com/repos/bitwise-jenkins/spring-boot-web-q-1/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwise-jenkins/spring-boot-web-q-1/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwise-jenkins/spring-boot-web-q-1/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwise-jenkins/spring-boot-web-q-1/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwise-jenkins/spring-boot-web-q-1/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwise-jenkins/spring-boot-web-q-1/languages", + "stargazers_url": "https://api.github.com/repos/bitwise-jenkins/spring-boot-web-q-1/stargazers", + "contributors_url": "https://api.github.com/repos/bitwise-jenkins/spring-boot-web-q-1/contributors", + "subscribers_url": "https://api.github.com/repos/bitwise-jenkins/spring-boot-web-q-1/subscribers", + "subscription_url": "https://api.github.com/repos/bitwise-jenkins/spring-boot-web-q-1/subscription", + "commits_url": "https://api.github.com/repos/bitwise-jenkins/spring-boot-web-q-1/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwise-jenkins/spring-boot-web-q-1/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwise-jenkins/spring-boot-web-q-1/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwise-jenkins/spring-boot-web-q-1/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwise-jenkins/spring-boot-web-q-1/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwise-jenkins/spring-boot-web-q-1/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwise-jenkins/spring-boot-web-q-1/merges", + "archive_url": "https://api.github.com/repos/bitwise-jenkins/spring-boot-web-q-1/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwise-jenkins/spring-boot-web-q-1/downloads", + "issues_url": "https://api.github.com/repos/bitwise-jenkins/spring-boot-web-q-1/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwise-jenkins/spring-boot-web-q-1/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwise-jenkins/spring-boot-web-q-1/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwise-jenkins/spring-boot-web-q-1/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwise-jenkins/spring-boot-web-q-1/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwise-jenkins/spring-boot-web-q-1/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwise-jenkins/spring-boot-web-q-1/deployments", + "created_at": "2018-03-15T21:13:02Z", + "updated_at": "2018-03-15T21:13:09Z", + "pushed_at": "2018-03-15T21:14:47Z", + "git_url": "git://github.com/bitwise-jenkins/spring-boot-web-q-1.git", + "ssh_url": "git@github.com:bitwise-jenkins/spring-boot-web-q-1.git", + "clone_url": "https://github.com/bitwise-jenkins/spring-boot-web-q-1.git", + "svn_url": "https://github.com/bitwise-jenkins/spring-boot-web-q-1", + "homepage": null, + "size": 14, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Makefile", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 174237301, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzQyMzczMDE=", + "name": "spring-web-actuator-1", + "full_name": "bitwise-jenkins/spring-web-actuator-1", + "private": false, + "owner": { + "login": "bitwise-jenkins", + "id": 24939347, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjI0OTM5MzQ3", + "avatar_url": "https://avatars2.githubusercontent.com/u/24939347?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwise-jenkins", + "html_url": "https://github.com/bitwise-jenkins", + "followers_url": "https://api.github.com/users/bitwise-jenkins/followers", + "following_url": "https://api.github.com/users/bitwise-jenkins/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwise-jenkins/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwise-jenkins/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwise-jenkins/subscriptions", + "organizations_url": "https://api.github.com/users/bitwise-jenkins/orgs", + "repos_url": "https://api.github.com/users/bitwise-jenkins/repos", + "events_url": "https://api.github.com/users/bitwise-jenkins/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwise-jenkins/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/bitwise-jenkins/spring-web-actuator-1", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/bitwise-jenkins/spring-web-actuator-1", + "forks_url": "https://api.github.com/repos/bitwise-jenkins/spring-web-actuator-1/forks", + "keys_url": "https://api.github.com/repos/bitwise-jenkins/spring-web-actuator-1/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwise-jenkins/spring-web-actuator-1/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwise-jenkins/spring-web-actuator-1/teams", + "hooks_url": "https://api.github.com/repos/bitwise-jenkins/spring-web-actuator-1/hooks", + "issue_events_url": "https://api.github.com/repos/bitwise-jenkins/spring-web-actuator-1/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwise-jenkins/spring-web-actuator-1/events", + "assignees_url": "https://api.github.com/repos/bitwise-jenkins/spring-web-actuator-1/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwise-jenkins/spring-web-actuator-1/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwise-jenkins/spring-web-actuator-1/tags", + "blobs_url": "https://api.github.com/repos/bitwise-jenkins/spring-web-actuator-1/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwise-jenkins/spring-web-actuator-1/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwise-jenkins/spring-web-actuator-1/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwise-jenkins/spring-web-actuator-1/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwise-jenkins/spring-web-actuator-1/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwise-jenkins/spring-web-actuator-1/languages", + "stargazers_url": "https://api.github.com/repos/bitwise-jenkins/spring-web-actuator-1/stargazers", + "contributors_url": "https://api.github.com/repos/bitwise-jenkins/spring-web-actuator-1/contributors", + "subscribers_url": "https://api.github.com/repos/bitwise-jenkins/spring-web-actuator-1/subscribers", + "subscription_url": "https://api.github.com/repos/bitwise-jenkins/spring-web-actuator-1/subscription", + "commits_url": "https://api.github.com/repos/bitwise-jenkins/spring-web-actuator-1/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwise-jenkins/spring-web-actuator-1/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwise-jenkins/spring-web-actuator-1/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwise-jenkins/spring-web-actuator-1/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwise-jenkins/spring-web-actuator-1/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwise-jenkins/spring-web-actuator-1/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwise-jenkins/spring-web-actuator-1/merges", + "archive_url": "https://api.github.com/repos/bitwise-jenkins/spring-web-actuator-1/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwise-jenkins/spring-web-actuator-1/downloads", + "issues_url": "https://api.github.com/repos/bitwise-jenkins/spring-web-actuator-1/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwise-jenkins/spring-web-actuator-1/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwise-jenkins/spring-web-actuator-1/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwise-jenkins/spring-web-actuator-1/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwise-jenkins/spring-web-actuator-1/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwise-jenkins/spring-web-actuator-1/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwise-jenkins/spring-web-actuator-1/deployments", + "created_at": "2019-03-06T23:34:45Z", + "updated_at": "2019-03-06T23:34:54Z", + "pushed_at": "2019-03-06T23:36:20Z", + "git_url": "git://github.com/bitwise-jenkins/spring-web-actuator-1.git", + "ssh_url": "git@github.com:bitwise-jenkins/spring-web-actuator-1.git", + "clone_url": "https://github.com/bitwise-jenkins/spring-web-actuator-1.git", + "svn_url": "https://github.com/bitwise-jenkins/spring-web-actuator-1", + "homepage": null, + "size": 56, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Makefile", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 171946692, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzE5NDY2OTI=", + "name": "test-github-branch-plugin", + "full_name": "bitwise-jenkins/test-github-branch-plugin", + "private": false, + "owner": { + "login": "bitwise-jenkins", + "id": 24939347, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjI0OTM5MzQ3", + "avatar_url": "https://avatars2.githubusercontent.com/u/24939347?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwise-jenkins", + "html_url": "https://github.com/bitwise-jenkins", + "followers_url": "https://api.github.com/users/bitwise-jenkins/followers", + "following_url": "https://api.github.com/users/bitwise-jenkins/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwise-jenkins/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwise-jenkins/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwise-jenkins/subscriptions", + "organizations_url": "https://api.github.com/users/bitwise-jenkins/orgs", + "repos_url": "https://api.github.com/users/bitwise-jenkins/repos", + "events_url": "https://api.github.com/users/bitwise-jenkins/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwise-jenkins/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/bitwise-jenkins/test-github-branch-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/bitwise-jenkins/test-github-branch-plugin", + "forks_url": "https://api.github.com/repos/bitwise-jenkins/test-github-branch-plugin/forks", + "keys_url": "https://api.github.com/repos/bitwise-jenkins/test-github-branch-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwise-jenkins/test-github-branch-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwise-jenkins/test-github-branch-plugin/teams", + "hooks_url": "https://api.github.com/repos/bitwise-jenkins/test-github-branch-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/bitwise-jenkins/test-github-branch-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwise-jenkins/test-github-branch-plugin/events", + "assignees_url": "https://api.github.com/repos/bitwise-jenkins/test-github-branch-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwise-jenkins/test-github-branch-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwise-jenkins/test-github-branch-plugin/tags", + "blobs_url": "https://api.github.com/repos/bitwise-jenkins/test-github-branch-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwise-jenkins/test-github-branch-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwise-jenkins/test-github-branch-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwise-jenkins/test-github-branch-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwise-jenkins/test-github-branch-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwise-jenkins/test-github-branch-plugin/languages", + "stargazers_url": "https://api.github.com/repos/bitwise-jenkins/test-github-branch-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/bitwise-jenkins/test-github-branch-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/bitwise-jenkins/test-github-branch-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/bitwise-jenkins/test-github-branch-plugin/subscription", + "commits_url": "https://api.github.com/repos/bitwise-jenkins/test-github-branch-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwise-jenkins/test-github-branch-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwise-jenkins/test-github-branch-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwise-jenkins/test-github-branch-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwise-jenkins/test-github-branch-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwise-jenkins/test-github-branch-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwise-jenkins/test-github-branch-plugin/merges", + "archive_url": "https://api.github.com/repos/bitwise-jenkins/test-github-branch-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwise-jenkins/test-github-branch-plugin/downloads", + "issues_url": "https://api.github.com/repos/bitwise-jenkins/test-github-branch-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwise-jenkins/test-github-branch-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwise-jenkins/test-github-branch-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwise-jenkins/test-github-branch-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwise-jenkins/test-github-branch-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwise-jenkins/test-github-branch-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwise-jenkins/test-github-branch-plugin/deployments", + "created_at": "2019-02-21T21:16:31Z", + "updated_at": "2019-05-23T18:58:43Z", + "pushed_at": "2019-09-03T20:49:31Z", + "git_url": "git://github.com/bitwise-jenkins/test-github-branch-plugin.git", + "ssh_url": "git@github.com:bitwise-jenkins/test-github-branch-plugin.git", + "clone_url": "https://github.com/bitwise-jenkins/test-github-branch-plugin.git", + "svn_url": "https://github.com/bitwise-jenkins/test-github-branch-plugin", + "homepage": null, + "size": 19, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": null, + "forks": 1, + "open_issues": 3, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 130430005, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzA0MzAwMDU=", + "name": "100-days-of-code", + "full_name": "bitwiseman/100-days-of-code", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/100-days-of-code", + "description": "Fork this template for the 100 days journal - to keep yourself accountable (multiple languages available)", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/100-days-of-code", + "forks_url": "https://api.github.com/repos/bitwiseman/100-days-of-code/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/100-days-of-code/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/100-days-of-code/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/100-days-of-code/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/100-days-of-code/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/100-days-of-code/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/100-days-of-code/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/100-days-of-code/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/100-days-of-code/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/100-days-of-code/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/100-days-of-code/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/100-days-of-code/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/100-days-of-code/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/100-days-of-code/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/100-days-of-code/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/100-days-of-code/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/100-days-of-code/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/100-days-of-code/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/100-days-of-code/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/100-days-of-code/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/100-days-of-code/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/100-days-of-code/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/100-days-of-code/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/100-days-of-code/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/100-days-of-code/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/100-days-of-code/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/100-days-of-code/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/100-days-of-code/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/100-days-of-code/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/100-days-of-code/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/100-days-of-code/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/100-days-of-code/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/100-days-of-code/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/100-days-of-code/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/100-days-of-code/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/100-days-of-code/deployments", + "created_at": "2018-04-21T01:50:41Z", + "updated_at": "2018-04-21T01:50:42Z", + "pushed_at": "2018-04-19T21:11:55Z", + "git_url": "git://github.com/bitwiseman/100-days-of-code.git", + "ssh_url": "git@github.com:bitwiseman/100-days-of-code.git", + "clone_url": "https://github.com/bitwiseman/100-days-of-code.git", + "svn_url": "https://github.com/bitwiseman/100-days-of-code", + "homepage": "http://www.100daysofcode.com", + "size": 94, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 99378775, + "node_id": "MDEwOlJlcG9zaXRvcnk5OTM3ODc3NQ==", + "name": "Amethyst", + "full_name": "bitwiseman/Amethyst", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/Amethyst", + "description": "Automatic tiling window manager for macOS à la xmonad.", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/Amethyst", + "forks_url": "https://api.github.com/repos/bitwiseman/Amethyst/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/Amethyst/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/Amethyst/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/Amethyst/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/Amethyst/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/Amethyst/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/Amethyst/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/Amethyst/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/Amethyst/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/Amethyst/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/Amethyst/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/Amethyst/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/Amethyst/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/Amethyst/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/Amethyst/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/Amethyst/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/Amethyst/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/Amethyst/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/Amethyst/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/Amethyst/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/Amethyst/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/Amethyst/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/Amethyst/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/Amethyst/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/Amethyst/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/Amethyst/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/Amethyst/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/Amethyst/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/Amethyst/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/Amethyst/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/Amethyst/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/Amethyst/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/Amethyst/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/Amethyst/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/Amethyst/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/Amethyst/deployments", + "created_at": "2017-08-04T20:51:31Z", + "updated_at": "2017-08-04T20:51:32Z", + "pushed_at": "2018-01-24T21:08:00Z", + "git_url": "git://github.com/bitwiseman/Amethyst.git", + "ssh_url": "git@github.com:bitwiseman/Amethyst.git", + "clone_url": "https://github.com/bitwiseman/Amethyst.git", + "svn_url": "https://github.com/bitwiseman/Amethyst", + "homepage": "https://ianyh.com/amethyst/", + "size": 23036, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Swift", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "development", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 12600414, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjYwMDQxNA==", + "name": "ansible", + "full_name": "bitwiseman/ansible", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/ansible", + "description": "Ansible is a radically simple IT orchestration engine that makes your applications and systems easier to deploy. Avoid writing scripts or custom code to deploy and update your applications— automate in a language that approaches plain English, using SSH, with no agents to install on remote systems.", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/ansible", + "forks_url": "https://api.github.com/repos/bitwiseman/ansible/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/ansible/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/ansible/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/ansible/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/ansible/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/ansible/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/ansible/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/ansible/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/ansible/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/ansible/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/ansible/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/ansible/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/ansible/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/ansible/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/ansible/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/ansible/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/ansible/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/ansible/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/ansible/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/ansible/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/ansible/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/ansible/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/ansible/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/ansible/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/ansible/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/ansible/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/ansible/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/ansible/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/ansible/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/ansible/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/ansible/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/ansible/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/ansible/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/ansible/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/ansible/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/ansible/deployments", + "created_at": "2013-09-04T19:44:42Z", + "updated_at": "2015-04-12T20:19:02Z", + "pushed_at": "2013-09-04T16:27:39Z", + "git_url": "git://github.com/bitwiseman/ansible.git", + "ssh_url": "git@github.com:bitwiseman/ansible.git", + "clone_url": "https://github.com/bitwiseman/ansible.git", + "svn_url": "https://github.com/bitwiseman/ansible", + "homepage": "http://ansibleworks.com/", + "size": 12416, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Python", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "gpl-3.0", + "name": "GNU General Public License v3.0", + "spdx_id": "GPL-3.0", + "url": "https://api.github.com/licenses/gpl-3.0", + "node_id": "MDc6TGljZW5zZTk=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "devel", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 114016871, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTQwMTY4NzE=", + "name": "asciidoctor", + "full_name": "bitwiseman/asciidoctor", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/asciidoctor", + "description": ":gem: A fast, open source text processor and publishing toolchain, written in Ruby, for converting AsciiDoc content to HTML5, DocBook 5 (or 4.5) and other formats.", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/asciidoctor", + "forks_url": "https://api.github.com/repos/bitwiseman/asciidoctor/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/asciidoctor/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/asciidoctor/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/asciidoctor/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/asciidoctor/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/asciidoctor/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/asciidoctor/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/asciidoctor/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/asciidoctor/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/asciidoctor/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/asciidoctor/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/asciidoctor/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/asciidoctor/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/asciidoctor/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/asciidoctor/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/asciidoctor/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/asciidoctor/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/asciidoctor/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/asciidoctor/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/asciidoctor/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/asciidoctor/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/asciidoctor/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/asciidoctor/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/asciidoctor/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/asciidoctor/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/asciidoctor/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/asciidoctor/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/asciidoctor/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/asciidoctor/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/asciidoctor/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/asciidoctor/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/asciidoctor/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/asciidoctor/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/asciidoctor/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/asciidoctor/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/asciidoctor/deployments", + "created_at": "2017-12-12T17:02:26Z", + "updated_at": "2017-12-12T17:02:29Z", + "pushed_at": "2017-12-08T05:34:06Z", + "git_url": "git://github.com/bitwiseman/asciidoctor.git", + "ssh_url": "git@github.com:bitwiseman/asciidoctor.git", + "clone_url": "https://github.com/bitwiseman/asciidoctor.git", + "svn_url": "https://github.com/bitwiseman/asciidoctor", + "homepage": "http://asciidoctor.org", + "size": 9759, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Ruby", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetMyself/__files/users_bitwiseman-f759e6af-2c5c-46f3-be75-4f3ee733b018.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetMyself/__files/users_bitwiseman-f759e6af-2c5c-46f3-be75-4f3ee733b018.json new file mode 100644 index 0000000000..a4b576e8a7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetMyself/__files/users_bitwiseman-f759e6af-2c5c-46f3-be75-4f3ee733b018.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 169, + "public_gists": 7, + "followers": 139, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetMyself/mappings/user-1-f80e1f.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetMyself/mappings/user-1-f80e1f.json new file mode 100644 index 0000000000..60ed395132 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetMyself/mappings/user-1-f80e1f.json @@ -0,0 +1,43 @@ +{ + "id": "f80e1f71-35ea-4c54-b6e4-529dd1bfb2ef", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-f80e1f71-35ea-4c54-b6e4-529dd1bfb2ef.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:26:51 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4473", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"8c3d3dcf6fc5f9edaf26c902295396e5\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CA5F:9901:DFAD6F:107F0A6:5DB3A0DA" + } + }, + "uuid": "f80e1f71-35ea-4c54-b6e4-529dd1bfb2ef", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetMyself/mappings/user_repos-3-5f89dd.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetMyself/mappings/user_repos-3-5f89dd.json new file mode 100644 index 0000000000..964b527490 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetMyself/mappings/user_repos-3-5f89dd.json @@ -0,0 +1,43 @@ +{ + "id": "5f89ddd0-72f0-4e2a-9185-0828197b9350", + "name": "user_repos", + "request": { + "url": "/user/repos?type=all&per_page=30", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user_repos-5f89ddd0-72f0-4e2a-9185-0828197b9350.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:26:52 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4470", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"88171b7f02a11516bf8ceb87a7fea40e\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CA5F:9901:DFADAF:107F0ED:5DB3A0DB", + "Link": "; rel=\"next\", ; rel=\"last\"" + } + }, + "uuid": "5f89ddd0-72f0-4e2a-9185-0828197b9350", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetMyself/mappings/users_bitwiseman-2-f759e6.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetMyself/mappings/users_bitwiseman-2-f759e6.json new file mode 100644 index 0000000000..9b3ed883e1 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetMyself/mappings/users_bitwiseman-2-f759e6.json @@ -0,0 +1,43 @@ +{ + "id": "f759e6af-2c5c-46f3-be75-4f3ee733b018", + "name": "users_bitwiseman", + "request": { + "url": "/users/bitwiseman", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "users_bitwiseman-f759e6af-2c5c-46f3-be75-4f3ee733b018.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:26:51 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4471", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"8c3d3dcf6fc5f9edaf26c902295396e5\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CA5F:9901:DFAD9C:107F0B2:5DB3A0DB" + } + }, + "uuid": "f759e6af-2c5c-46f3-be75-4f3ee733b018", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetTeamsForRepo/__files/orgs_github-api-test-org-e1b27b93-da09-4f0e-a103-effeb87370a6.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetTeamsForRepo/__files/orgs_github-api-test-org-e1b27b93-da09-4f0e-a103-effeb87370a6.json new file mode 100644 index 0000000000..99b5920ccb --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetTeamsForRepo/__files/orgs_github-api-test-org-e1b27b93-da09-4f0e-a103-effeb87370a6.json @@ -0,0 +1,41 @@ +{ + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "url": "https://api.github.com/orgs/github-api-test-org", + "repos_url": "https://api.github.com/orgs/github-api-test-org/repos", + "events_url": "https://api.github.com/orgs/github-api-test-org/events", + "hooks_url": "https://api.github.com/orgs/github-api-test-org/hooks", + "issues_url": "https://api.github.com/orgs/github-api-test-org/issues", + "members_url": "https://api.github.com/orgs/github-api-test-org/members{/member}", + "public_members_url": "https://api.github.com/orgs/github-api-test-org/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "description": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 10, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/github-api-test-org", + "created_at": "2014-05-10T19:39:11Z", + "updated_at": "2015-04-20T00:42:30Z", + "type": "Organization", + "total_private_repos": 0, + "owned_private_repos": 0, + "private_gists": 0, + "disk_usage": 132, + "collaborators": 0, + "billing_email": "kk@kohsuke.org", + "default_repository_permission": "none", + "members_can_create_repositories": false, + "two_factor_requirement_enabled": false, + "plan": { + "name": "free", + "space": 976562499, + "private_repos": 0, + "filled_seats": 7, + "seats": 0 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetTeamsForRepo/__files/repos_github-api-test-org_testgetteamsforrepo-cf3c4969-2d22-4218-8665-164a9097d3c6.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetTeamsForRepo/__files/repos_github-api-test-org_testgetteamsforrepo-cf3c4969-2d22-4218-8665-164a9097d3c6.json new file mode 100644 index 0000000000..8b106caee6 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetTeamsForRepo/__files/repos_github-api-test-org_testgetteamsforrepo-cf3c4969-2d22-4218-8665-164a9097d3c6.json @@ -0,0 +1,124 @@ +{ + "id": 19650334, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTY1MDMzNA==", + "name": "testGetTeamsForRepo", + "full_name": "github-api-test-org/testGetTeamsForRepo", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/testGetTeamsForRepo", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/github-api-test-org/testGetTeamsForRepo", + "forks_url": "https://api.github.com/repos/github-api-test-org/testGetTeamsForRepo/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/testGetTeamsForRepo/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/testGetTeamsForRepo/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/testGetTeamsForRepo/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/testGetTeamsForRepo/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/testGetTeamsForRepo/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/testGetTeamsForRepo/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/testGetTeamsForRepo/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/testGetTeamsForRepo/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/testGetTeamsForRepo/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/testGetTeamsForRepo/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/testGetTeamsForRepo/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/testGetTeamsForRepo/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/testGetTeamsForRepo/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/testGetTeamsForRepo/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/testGetTeamsForRepo/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/testGetTeamsForRepo/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/testGetTeamsForRepo/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/testGetTeamsForRepo/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/testGetTeamsForRepo/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/testGetTeamsForRepo/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/testGetTeamsForRepo/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/testGetTeamsForRepo/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/testGetTeamsForRepo/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/testGetTeamsForRepo/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/testGetTeamsForRepo/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/testGetTeamsForRepo/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/testGetTeamsForRepo/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/testGetTeamsForRepo/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/testGetTeamsForRepo/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/testGetTeamsForRepo/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/testGetTeamsForRepo/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/testGetTeamsForRepo/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/testGetTeamsForRepo/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/testGetTeamsForRepo/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/testGetTeamsForRepo/deployments", + "created_at": "2014-05-10T19:42:15Z", + "updated_at": "2014-05-10T19:42:15Z", + "pushed_at": "2014-05-10T19:42:15Z", + "git_url": "git://github.com/github-api-test-org/testGetTeamsForRepo.git", + "ssh_url": "git@github.com:github-api-test-org/testGetTeamsForRepo.git", + "clone_url": "https://github.com/github-api-test-org/testGetTeamsForRepo.git", + "svn_url": "https://github.com/github-api-test-org/testGetTeamsForRepo", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "network_count": 0, + "subscribers_count": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetTeamsForRepo/__files/repos_github-api-test-org_testgetteamsforrepo_teams-1dd41f2e-d246-428c-8f65-045e5b885e86.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetTeamsForRepo/__files/repos_github-api-test-org_testgetteamsforrepo_teams-1dd41f2e-d246-428c-8f65-045e5b885e86.json new file mode 100644 index 0000000000..86e70a5912 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetTeamsForRepo/__files/repos_github-api-test-org_testgetteamsforrepo_teams-1dd41f2e-d246-428c-8f65-045e5b885e86.json @@ -0,0 +1,28 @@ +[ + { + "name": "Owners", + "id": 820404, + "node_id": "MDQ6VGVhbTgyMDQwNA==", + "slug": "owners", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/820404", + "html_url": "https://github.com/orgs/github-api-test-org/teams/owners", + "members_url": "https://api.github.com/teams/820404/members{/member}", + "repositories_url": "https://api.github.com/teams/820404/repos", + "permission": "admin" + }, + { + "name": "Core Developers", + "id": 820406, + "node_id": "MDQ6VGVhbTgyMDQwNg==", + "slug": "core-developers", + "description": "A random team", + "privacy": "secret", + "url": "https://api.github.com/teams/820406", + "html_url": "https://github.com/orgs/github-api-test-org/teams/core-developers", + "members_url": "https://api.github.com/teams/820406/members{/member}", + "repositories_url": "https://api.github.com/teams/820406/repos", + "permission": "pull" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetTeamsForRepo/__files/user-692ed5ba-d82c-446b-9cf6-8820491e366b.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetTeamsForRepo/__files/user-692ed5ba-d82c-446b-9cf6-8820491e366b.json new file mode 100644 index 0000000000..a4b576e8a7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetTeamsForRepo/__files/user-692ed5ba-d82c-446b-9cf6-8820491e366b.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 169, + "public_gists": 7, + "followers": 139, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetTeamsForRepo/mappings/orgs_github-api-test-org-2-e1b27b.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetTeamsForRepo/mappings/orgs_github-api-test-org-2-e1b27b.json new file mode 100644 index 0000000000..f2eda2f15a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetTeamsForRepo/mappings/orgs_github-api-test-org-2-e1b27b.json @@ -0,0 +1,43 @@ +{ + "id": "e1b27b93-da09-4f0e-a103-effeb87370a6", + "name": "orgs_github-api-test-org", + "request": { + "url": "/orgs/github-api-test-org", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_github-api-test-org-e1b27b93-da09-4f0e-a103-effeb87370a6.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:36 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4313", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"bbee0a14a82ca84871298052e1bcb545\"", + "Last-Modified": "Mon, 20 Apr 2015 00:42:30 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAE9:833C:55BE01:63F758:5DB3A144" + } + }, + "uuid": "e1b27b93-da09-4f0e-a103-effeb87370a6", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetTeamsForRepo/mappings/repos_github-api-test-org_testgetteamsforrepo-3-cf3c49.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetTeamsForRepo/mappings/repos_github-api-test-org_testgetteamsforrepo-3-cf3c49.json new file mode 100644 index 0000000000..b8631fa380 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetTeamsForRepo/mappings/repos_github-api-test-org_testgetteamsforrepo-3-cf3c49.json @@ -0,0 +1,43 @@ +{ + "id": "cf3c4969-2d22-4218-8665-164a9097d3c6", + "name": "repos_github-api-test-org_testgetteamsforrepo", + "request": { + "url": "/repos/github-api-test-org/testGetTeamsForRepo", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_testgetteamsforrepo-cf3c4969-2d22-4218-8665-164a9097d3c6.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:36 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4312", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"acb34fc073c50a347e3958cb13d21747\"", + "Last-Modified": "Sat, 10 May 2014 19:42:15 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAE9:833C:55BE06:63F75D:5DB3A144" + } + }, + "uuid": "cf3c4969-2d22-4218-8665-164a9097d3c6", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetTeamsForRepo/mappings/repos_github-api-test-org_testgetteamsforrepo_teams-4-1dd41f.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetTeamsForRepo/mappings/repos_github-api-test-org_testgetteamsforrepo_teams-4-1dd41f.json new file mode 100644 index 0000000000..57dda9e264 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetTeamsForRepo/mappings/repos_github-api-test-org_testgetteamsforrepo_teams-4-1dd41f.json @@ -0,0 +1,42 @@ +{ + "id": "1dd41f2e-d246-428c-8f65-045e5b885e86", + "name": "repos_github-api-test-org_testgetteamsforrepo_teams", + "request": { + "url": "/repos/github-api-test-org/testGetTeamsForRepo/teams", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_testgetteamsforrepo_teams-1dd41f2e-d246-428c-8f65-045e5b885e86.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:36 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4311", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"67966e090e6d1b149d83e98c21d76074\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAE9:833C:55BE0B:63F763:5DB3A144" + } + }, + "uuid": "1dd41f2e-d246-428c-8f65-045e5b885e86", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetTeamsForRepo/mappings/user-1-692ed5.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetTeamsForRepo/mappings/user-1-692ed5.json new file mode 100644 index 0000000000..a33f24c736 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetTeamsForRepo/mappings/user-1-692ed5.json @@ -0,0 +1,43 @@ +{ + "id": "692ed5ba-d82c-446b-9cf6-8820491e366b", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-692ed5ba-d82c-446b-9cf6-8820491e366b.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:36 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4315", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"8c3d3dcf6fc5f9edaf26c902295396e5\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAE9:833C:55BDFC:63F753:5DB3A144" + } + }, + "uuid": "692ed5ba-d82c-446b-9cf6-8820491e366b", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testIssueWithNoComment/__files/repos_kohsuke_test-5e93357f-40cc-49ad-90ca-355a4703de1e.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testIssueWithNoComment/__files/repos_kohsuke_test-5e93357f-40cc-49ad-90ca-355a4703de1e.json new file mode 100644 index 0000000000..dcc3c8df71 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testIssueWithNoComment/__files/repos_kohsuke_test-5e93357f-40cc-49ad-90ca-355a4703de1e.json @@ -0,0 +1,101 @@ +{ + "id": 3995528, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTk1NTI4", + "name": "test", + "full_name": "kohsuke/test", + "private": false, + "owner": { + "login": "kohsuke", + "id": 50003, + "node_id": "MDQ6VXNlcjUwMDAz", + "avatar_url": "https://avatars1.githubusercontent.com/u/50003?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kohsuke", + "html_url": "https://github.com/kohsuke", + "followers_url": "https://api.github.com/users/kohsuke/followers", + "following_url": "https://api.github.com/users/kohsuke/following{/other_user}", + "gists_url": "https://api.github.com/users/kohsuke/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kohsuke/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kohsuke/subscriptions", + "organizations_url": "https://api.github.com/users/kohsuke/orgs", + "repos_url": "https://api.github.com/users/kohsuke/repos", + "events_url": "https://api.github.com/users/kohsuke/events{/privacy}", + "received_events_url": "https://api.github.com/users/kohsuke/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/kohsuke/test", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/kohsuke/test", + "forks_url": "https://api.github.com/repos/kohsuke/test/forks", + "keys_url": "https://api.github.com/repos/kohsuke/test/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/kohsuke/test/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/kohsuke/test/teams", + "hooks_url": "https://api.github.com/repos/kohsuke/test/hooks", + "issue_events_url": "https://api.github.com/repos/kohsuke/test/issues/events{/number}", + "events_url": "https://api.github.com/repos/kohsuke/test/events", + "assignees_url": "https://api.github.com/repos/kohsuke/test/assignees{/user}", + "branches_url": "https://api.github.com/repos/kohsuke/test/branches{/branch}", + "tags_url": "https://api.github.com/repos/kohsuke/test/tags", + "blobs_url": "https://api.github.com/repos/kohsuke/test/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/kohsuke/test/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/kohsuke/test/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/kohsuke/test/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/kohsuke/test/statuses/{sha}", + "languages_url": "https://api.github.com/repos/kohsuke/test/languages", + "stargazers_url": "https://api.github.com/repos/kohsuke/test/stargazers", + "contributors_url": "https://api.github.com/repos/kohsuke/test/contributors", + "subscribers_url": "https://api.github.com/repos/kohsuke/test/subscribers", + "subscription_url": "https://api.github.com/repos/kohsuke/test/subscription", + "commits_url": "https://api.github.com/repos/kohsuke/test/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/kohsuke/test/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/kohsuke/test/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/kohsuke/test/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/kohsuke/test/contents/{+path}", + "compare_url": "https://api.github.com/repos/kohsuke/test/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/kohsuke/test/merges", + "archive_url": "https://api.github.com/repos/kohsuke/test/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/kohsuke/test/downloads", + "issues_url": "https://api.github.com/repos/kohsuke/test/issues{/number}", + "pulls_url": "https://api.github.com/repos/kohsuke/test/pulls{/number}", + "milestones_url": "https://api.github.com/repos/kohsuke/test/milestones{/number}", + "notifications_url": "https://api.github.com/repos/kohsuke/test/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/kohsuke/test/labels{/name}", + "releases_url": "https://api.github.com/repos/kohsuke/test/releases{/id}", + "deployments_url": "https://api.github.com/repos/kohsuke/test/deployments", + "created_at": "2012-04-11T16:23:11Z", + "updated_at": "2019-08-13T15:00:41Z", + "pushed_at": "2012-09-06T00:42:44Z", + "git_url": "git://github.com/kohsuke/test.git", + "ssh_url": "git@github.com:kohsuke/test.git", + "clone_url": "https://github.com/kohsuke/test.git", + "svn_url": "https://github.com/kohsuke/test", + "homepage": "", + "size": 128, + "stargazers_count": 2, + "watchers_count": 2, + "language": null, + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": null, + "forks": 0, + "open_issues": 3, + "watchers": 2, + "default_branch": "bar", + "permissions": { + "admin": false, + "push": false, + "pull": true + }, + "network_count": 0, + "subscribers_count": 0 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testIssueWithNoComment/__files/repos_kohsuke_test_issues_3-805b83e0-61e7-4dc4-844e-a834681cd311.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testIssueWithNoComment/__files/repos_kohsuke_test_issues_3-805b83e0-61e7-4dc4-844e-a834681cd311.json new file mode 100644 index 0000000000..ea3c7d5e7b --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testIssueWithNoComment/__files/repos_kohsuke_test_issues_3-805b83e0-61e7-4dc4-844e-a834681cd311.json @@ -0,0 +1,104 @@ +{ + "url": "https://api.github.com/repos/kohsuke/test/issues/3", + "repository_url": "https://api.github.com/repos/kohsuke/test", + "labels_url": "https://api.github.com/repos/kohsuke/test/issues/3/labels{/name}", + "comments_url": "https://api.github.com/repos/kohsuke/test/issues/3/comments", + "events_url": "https://api.github.com/repos/kohsuke/test/issues/3/events", + "html_url": "https://github.com/kohsuke/test/issues/3", + "id": 6863845, + "node_id": "MDU6SXNzdWU2ODYzODQ1", + "number": 3, + "title": "testing", + "user": { + "login": "kohsuke", + "id": 50003, + "node_id": "MDQ6VXNlcjUwMDAz", + "avatar_url": "https://avatars1.githubusercontent.com/u/50003?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kohsuke", + "html_url": "https://github.com/kohsuke", + "followers_url": "https://api.github.com/users/kohsuke/followers", + "following_url": "https://api.github.com/users/kohsuke/following{/other_user}", + "gists_url": "https://api.github.com/users/kohsuke/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kohsuke/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kohsuke/subscriptions", + "organizations_url": "https://api.github.com/users/kohsuke/orgs", + "repos_url": "https://api.github.com/users/kohsuke/repos", + "events_url": "https://api.github.com/users/kohsuke/events{/privacy}", + "received_events_url": "https://api.github.com/users/kohsuke/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": { + "login": "kohsuke", + "id": 50003, + "node_id": "MDQ6VXNlcjUwMDAz", + "avatar_url": "https://avatars1.githubusercontent.com/u/50003?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kohsuke", + "html_url": "https://github.com/kohsuke", + "followers_url": "https://api.github.com/users/kohsuke/followers", + "following_url": "https://api.github.com/users/kohsuke/following{/other_user}", + "gists_url": "https://api.github.com/users/kohsuke/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kohsuke/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kohsuke/subscriptions", + "organizations_url": "https://api.github.com/users/kohsuke/orgs", + "repos_url": "https://api.github.com/users/kohsuke/repos", + "events_url": "https://api.github.com/users/kohsuke/events{/privacy}", + "received_events_url": "https://api.github.com/users/kohsuke/received_events", + "type": "User", + "site_admin": false + }, + "assignees": [ + { + "login": "kohsuke", + "id": 50003, + "node_id": "MDQ6VXNlcjUwMDAz", + "avatar_url": "https://avatars1.githubusercontent.com/u/50003?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kohsuke", + "html_url": "https://github.com/kohsuke", + "followers_url": "https://api.github.com/users/kohsuke/followers", + "following_url": "https://api.github.com/users/kohsuke/following{/other_user}", + "gists_url": "https://api.github.com/users/kohsuke/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kohsuke/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kohsuke/subscriptions", + "organizations_url": "https://api.github.com/users/kohsuke/orgs", + "repos_url": "https://api.github.com/users/kohsuke/repos", + "events_url": "https://api.github.com/users/kohsuke/events{/privacy}", + "received_events_url": "https://api.github.com/users/kohsuke/received_events", + "type": "User", + "site_admin": false + } + ], + "milestone": null, + "comments": 3, + "created_at": "2012-09-13T22:59:40Z", + "updated_at": "2012-09-13T23:27:38Z", + "closed_at": "2012-09-13T22:59:41Z", + "author_association": "OWNER", + "body": "this is body\n", + "closed_by": { + "login": "kohsuke", + "id": 50003, + "node_id": "MDQ6VXNlcjUwMDAz", + "avatar_url": "https://avatars1.githubusercontent.com/u/50003?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kohsuke", + "html_url": "https://github.com/kohsuke", + "followers_url": "https://api.github.com/users/kohsuke/followers", + "following_url": "https://api.github.com/users/kohsuke/following{/other_user}", + "gists_url": "https://api.github.com/users/kohsuke/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kohsuke/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kohsuke/subscriptions", + "organizations_url": "https://api.github.com/users/kohsuke/orgs", + "repos_url": "https://api.github.com/users/kohsuke/repos", + "events_url": "https://api.github.com/users/kohsuke/events{/privacy}", + "received_events_url": "https://api.github.com/users/kohsuke/received_events", + "type": "User", + "site_admin": false + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testIssueWithNoComment/__files/repos_kohsuke_test_issues_3_comments-83d2db1f-2c02-4f03-9bb0-668774dd4f8d.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testIssueWithNoComment/__files/repos_kohsuke_test_issues_3_comments-83d2db1f-2c02-4f03-9bb0-668774dd4f8d.json new file mode 100644 index 0000000000..af36cc57c3 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testIssueWithNoComment/__files/repos_kohsuke_test_issues_3_comments-83d2db1f-2c02-4f03-9bb0-668774dd4f8d.json @@ -0,0 +1,95 @@ +[ + { + "url": "https://api.github.com/repos/kohsuke/test/issues/comments/8547249", + "html_url": "https://github.com/kohsuke/test/issues/3#issuecomment-8547249", + "issue_url": "https://api.github.com/repos/kohsuke/test/issues/3", + "id": 8547249, + "node_id": "MDEyOklzc3VlQ29tbWVudDg1NDcyNDk=", + "user": { + "login": "kohsuke", + "id": 50003, + "node_id": "MDQ6VXNlcjUwMDAz", + "avatar_url": "https://avatars1.githubusercontent.com/u/50003?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kohsuke", + "html_url": "https://github.com/kohsuke", + "followers_url": "https://api.github.com/users/kohsuke/followers", + "following_url": "https://api.github.com/users/kohsuke/following{/other_user}", + "gists_url": "https://api.github.com/users/kohsuke/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kohsuke/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kohsuke/subscriptions", + "organizations_url": "https://api.github.com/users/kohsuke/orgs", + "repos_url": "https://api.github.com/users/kohsuke/repos", + "events_url": "https://api.github.com/users/kohsuke/events{/privacy}", + "received_events_url": "https://api.github.com/users/kohsuke/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2012-09-13T23:27:33Z", + "updated_at": "2012-09-13T23:27:33Z", + "author_association": "OWNER", + "body": "aaa\n" + }, + { + "url": "https://api.github.com/repos/kohsuke/test/issues/comments/8547251", + "html_url": "https://github.com/kohsuke/test/issues/3#issuecomment-8547251", + "issue_url": "https://api.github.com/repos/kohsuke/test/issues/3", + "id": 8547251, + "node_id": "MDEyOklzc3VlQ29tbWVudDg1NDcyNTE=", + "user": { + "login": "kohsuke", + "id": 50003, + "node_id": "MDQ6VXNlcjUwMDAz", + "avatar_url": "https://avatars1.githubusercontent.com/u/50003?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kohsuke", + "html_url": "https://github.com/kohsuke", + "followers_url": "https://api.github.com/users/kohsuke/followers", + "following_url": "https://api.github.com/users/kohsuke/following{/other_user}", + "gists_url": "https://api.github.com/users/kohsuke/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kohsuke/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kohsuke/subscriptions", + "organizations_url": "https://api.github.com/users/kohsuke/orgs", + "repos_url": "https://api.github.com/users/kohsuke/repos", + "events_url": "https://api.github.com/users/kohsuke/events{/privacy}", + "received_events_url": "https://api.github.com/users/kohsuke/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2012-09-13T23:27:35Z", + "updated_at": "2012-09-13T23:27:35Z", + "author_association": "OWNER", + "body": "bbb\n" + }, + { + "url": "https://api.github.com/repos/kohsuke/test/issues/comments/8547253", + "html_url": "https://github.com/kohsuke/test/issues/3#issuecomment-8547253", + "issue_url": "https://api.github.com/repos/kohsuke/test/issues/3", + "id": 8547253, + "node_id": "MDEyOklzc3VlQ29tbWVudDg1NDcyNTM=", + "user": { + "login": "kohsuke", + "id": 50003, + "node_id": "MDQ6VXNlcjUwMDAz", + "avatar_url": "https://avatars1.githubusercontent.com/u/50003?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kohsuke", + "html_url": "https://github.com/kohsuke", + "followers_url": "https://api.github.com/users/kohsuke/followers", + "following_url": "https://api.github.com/users/kohsuke/following{/other_user}", + "gists_url": "https://api.github.com/users/kohsuke/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kohsuke/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kohsuke/subscriptions", + "organizations_url": "https://api.github.com/users/kohsuke/orgs", + "repos_url": "https://api.github.com/users/kohsuke/repos", + "events_url": "https://api.github.com/users/kohsuke/events{/privacy}", + "received_events_url": "https://api.github.com/users/kohsuke/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2012-09-13T23:27:38Z", + "updated_at": "2012-09-13T23:27:38Z", + "author_association": "OWNER", + "body": "ccc\n" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testIssueWithNoComment/__files/repos_kohsuke_test_issues_4-d90a1a3e-5992-44bd-bb74-2122878d2da5.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testIssueWithNoComment/__files/repos_kohsuke_test_issues_4-d90a1a3e-5992-44bd-bb74-2122878d2da5.json new file mode 100644 index 0000000000..ff206ede2a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testIssueWithNoComment/__files/repos_kohsuke_test_issues_4-d90a1a3e-5992-44bd-bb74-2122878d2da5.json @@ -0,0 +1,149 @@ +{ + "url": "https://api.github.com/repos/kohsuke/test/issues/4", + "repository_url": "https://api.github.com/repos/kohsuke/test", + "labels_url": "https://api.github.com/repos/kohsuke/test/issues/4/labels{/name}", + "comments_url": "https://api.github.com/repos/kohsuke/test/issues/4/comments", + "events_url": "https://api.github.com/repos/kohsuke/test/issues/4/events", + "html_url": "https://github.com/kohsuke/test/issues/4", + "id": 6863872, + "node_id": "MDU6SXNzdWU2ODYzODcy", + "number": 4, + "title": "testing", + "user": { + "login": "kohsuke", + "id": 50003, + "node_id": "MDQ6VXNlcjUwMDAz", + "avatar_url": "https://avatars1.githubusercontent.com/u/50003?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kohsuke", + "html_url": "https://github.com/kohsuke", + "followers_url": "https://api.github.com/users/kohsuke/followers", + "following_url": "https://api.github.com/users/kohsuke/following{/other_user}", + "gists_url": "https://api.github.com/users/kohsuke/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kohsuke/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kohsuke/subscriptions", + "organizations_url": "https://api.github.com/users/kohsuke/orgs", + "repos_url": "https://api.github.com/users/kohsuke/repos", + "events_url": "https://api.github.com/users/kohsuke/events{/privacy}", + "received_events_url": "https://api.github.com/users/kohsuke/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 3004520, + "node_id": "MDU6TGFiZWwzMDA0NTIw", + "url": "https://api.github.com/repos/kohsuke/test/labels/bug", + "name": "bug", + "color": "fc2929", + "default": true + } + ], + "state": "closed", + "locked": false, + "assignee": { + "login": "kohsuke", + "id": 50003, + "node_id": "MDQ6VXNlcjUwMDAz", + "avatar_url": "https://avatars1.githubusercontent.com/u/50003?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kohsuke", + "html_url": "https://github.com/kohsuke", + "followers_url": "https://api.github.com/users/kohsuke/followers", + "following_url": "https://api.github.com/users/kohsuke/following{/other_user}", + "gists_url": "https://api.github.com/users/kohsuke/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kohsuke/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kohsuke/subscriptions", + "organizations_url": "https://api.github.com/users/kohsuke/orgs", + "repos_url": "https://api.github.com/users/kohsuke/repos", + "events_url": "https://api.github.com/users/kohsuke/events{/privacy}", + "received_events_url": "https://api.github.com/users/kohsuke/received_events", + "type": "User", + "site_admin": false + }, + "assignees": [ + { + "login": "kohsuke", + "id": 50003, + "node_id": "MDQ6VXNlcjUwMDAz", + "avatar_url": "https://avatars1.githubusercontent.com/u/50003?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kohsuke", + "html_url": "https://github.com/kohsuke", + "followers_url": "https://api.github.com/users/kohsuke/followers", + "following_url": "https://api.github.com/users/kohsuke/following{/other_user}", + "gists_url": "https://api.github.com/users/kohsuke/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kohsuke/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kohsuke/subscriptions", + "organizations_url": "https://api.github.com/users/kohsuke/orgs", + "repos_url": "https://api.github.com/users/kohsuke/repos", + "events_url": "https://api.github.com/users/kohsuke/events{/privacy}", + "received_events_url": "https://api.github.com/users/kohsuke/received_events", + "type": "User", + "site_admin": false + } + ], + "milestone": { + "url": "https://api.github.com/repos/kohsuke/test/milestones/1", + "html_url": "https://github.com/kohsuke/test/milestone/1", + "labels_url": "https://api.github.com/repos/kohsuke/test/milestones/1/labels", + "id": 174781, + "node_id": "MDk6TWlsZXN0b25lMTc0Nzgx", + "number": 1, + "title": "milestone1", + "description": "test", + "creator": { + "login": "kohsuke", + "id": 50003, + "node_id": "MDQ6VXNlcjUwMDAz", + "avatar_url": "https://avatars1.githubusercontent.com/u/50003?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kohsuke", + "html_url": "https://github.com/kohsuke", + "followers_url": "https://api.github.com/users/kohsuke/followers", + "following_url": "https://api.github.com/users/kohsuke/following{/other_user}", + "gists_url": "https://api.github.com/users/kohsuke/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kohsuke/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kohsuke/subscriptions", + "organizations_url": "https://api.github.com/users/kohsuke/orgs", + "repos_url": "https://api.github.com/users/kohsuke/repos", + "events_url": "https://api.github.com/users/kohsuke/events{/privacy}", + "received_events_url": "https://api.github.com/users/kohsuke/received_events", + "type": "User", + "site_admin": false + }, + "open_issues": 0, + "closed_issues": 65, + "state": "closed", + "created_at": "2012-09-13T23:00:22Z", + "updated_at": "2014-01-08T04:02:27Z", + "due_on": null, + "closed_at": "2013-05-07T18:10:48Z" + }, + "comments": 0, + "created_at": "2012-09-13T23:01:47Z", + "updated_at": "2012-09-13T23:01:48Z", + "closed_at": "2012-09-13T23:01:48Z", + "author_association": "OWNER", + "body": "this is body\n", + "closed_by": { + "login": "kohsuke", + "id": 50003, + "node_id": "MDQ6VXNlcjUwMDAz", + "avatar_url": "https://avatars1.githubusercontent.com/u/50003?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kohsuke", + "html_url": "https://github.com/kohsuke", + "followers_url": "https://api.github.com/users/kohsuke/followers", + "following_url": "https://api.github.com/users/kohsuke/following{/other_user}", + "gists_url": "https://api.github.com/users/kohsuke/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kohsuke/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kohsuke/subscriptions", + "organizations_url": "https://api.github.com/users/kohsuke/orgs", + "repos_url": "https://api.github.com/users/kohsuke/repos", + "events_url": "https://api.github.com/users/kohsuke/events{/privacy}", + "received_events_url": "https://api.github.com/users/kohsuke/received_events", + "type": "User", + "site_admin": false + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testIssueWithNoComment/__files/user-0d50edb7-4ca2-4877-83d1-1617ed206128.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testIssueWithNoComment/__files/user-0d50edb7-4ca2-4877-83d1-1617ed206128.json new file mode 100644 index 0000000000..39d6c8353e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testIssueWithNoComment/__files/user-0d50edb7-4ca2-4877-83d1-1617ed206128.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 167, + "public_gists": 4, + "followers": 136, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testIssueWithNoComment/mappings/repos_kohsuke_test-1-5e9335.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testIssueWithNoComment/mappings/repos_kohsuke_test-1-5e9335.json new file mode 100644 index 0000000000..c24814bc61 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testIssueWithNoComment/mappings/repos_kohsuke_test-1-5e9335.json @@ -0,0 +1,43 @@ +{ + "id": "5e93357f-40cc-49ad-90ca-355a4703de1e", + "name": "repos_kohsuke_test", + "request": { + "url": "/repos/kohsuke/test", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_kohsuke_test-5e93357f-40cc-49ad-90ca-355a4703de1e.json", + "headers": { + "Date": "Wed, 02 Oct 2019 21:39:58 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4963", + "X-RateLimit-Reset": "1570055937", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"6e8e35b2d1bc3903a3fb21af412df7f3\"", + "Last-Modified": "Tue, 13 Aug 2019 15:00:41 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C2BE:67D1:895A2:A8453:5D95192D" + } + }, + "uuid": "5e93357f-40cc-49ad-90ca-355a4703de1e", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testIssueWithNoComment/mappings/repos_kohsuke_test_issues_3-4-805b83.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testIssueWithNoComment/mappings/repos_kohsuke_test_issues_3-4-805b83.json new file mode 100644 index 0000000000..46492fe969 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testIssueWithNoComment/mappings/repos_kohsuke_test_issues_3-4-805b83.json @@ -0,0 +1,43 @@ +{ + "id": "805b83e0-61e7-4dc4-844e-a834681cd311", + "name": "repos_kohsuke_test_issues_3", + "request": { + "url": "/repos/kohsuke/test/issues/3", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_kohsuke_test_issues_3-805b83e0-61e7-4dc4-844e-a834681cd311.json", + "headers": { + "Date": "Wed, 02 Oct 2019 21:39:58 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4960", + "X-RateLimit-Reset": "1570055937", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"f772a61584fe7a0fe7718e12f57c311f\"", + "Last-Modified": "Wed, 02 Oct 2019 19:54:16 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C2BE:67D1:895A8:A8459:5D95192E" + } + }, + "uuid": "805b83e0-61e7-4dc4-844e-a834681cd311", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testIssueWithNoComment/mappings/repos_kohsuke_test_issues_3_comments-5-83d2db.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testIssueWithNoComment/mappings/repos_kohsuke_test_issues_3_comments-5-83d2db.json new file mode 100644 index 0000000000..9457e16bea --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testIssueWithNoComment/mappings/repos_kohsuke_test_issues_3_comments-5-83d2db.json @@ -0,0 +1,42 @@ +{ + "id": "83d2db1f-2c02-4f03-9bb0-668774dd4f8d", + "name": "repos_kohsuke_test_issues_3_comments", + "request": { + "url": "/repos/kohsuke/test/issues/3/comments", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_kohsuke_test_issues_3_comments-83d2db1f-2c02-4f03-9bb0-668774dd4f8d.json", + "headers": { + "Date": "Wed, 02 Oct 2019 21:39:58 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4959", + "X-RateLimit-Reset": "1570055937", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"cc05c56cc032f7cc1c2a98e60bd9d8d7\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C2BE:67D1:895A9:A845A:5D95192E" + } + }, + "uuid": "83d2db1f-2c02-4f03-9bb0-668774dd4f8d", + "persistent": true, + "insertionIndex": 5 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testIssueWithNoComment/mappings/repos_kohsuke_test_issues_4-2-d90a1a.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testIssueWithNoComment/mappings/repos_kohsuke_test_issues_4-2-d90a1a.json new file mode 100644 index 0000000000..fd0226bda4 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testIssueWithNoComment/mappings/repos_kohsuke_test_issues_4-2-d90a1a.json @@ -0,0 +1,43 @@ +{ + "id": "d90a1a3e-5992-44bd-bb74-2122878d2da5", + "name": "repos_kohsuke_test_issues_4", + "request": { + "url": "/repos/kohsuke/test/issues/4", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_kohsuke_test_issues_4-d90a1a3e-5992-44bd-bb74-2122878d2da5.json", + "headers": { + "Date": "Wed, 02 Oct 2019 21:39:58 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4962", + "X-RateLimit-Reset": "1570055937", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"1ce4fd2aa953afa3a39653232b50942e\"", + "Last-Modified": "Wed, 02 Oct 2019 19:54:16 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C2BE:67D1:895A4:A8455:5D95192E" + } + }, + "uuid": "d90a1a3e-5992-44bd-bb74-2122878d2da5", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testIssueWithNoComment/mappings/repos_kohsuke_test_issues_4_comments-3-648b70.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testIssueWithNoComment/mappings/repos_kohsuke_test_issues_4_comments-3-648b70.json new file mode 100644 index 0000000000..a6aa02e252 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testIssueWithNoComment/mappings/repos_kohsuke_test_issues_4_comments-3-648b70.json @@ -0,0 +1,42 @@ +{ + "id": "648b70f1-64eb-413b-9f5d-ebf563d8b5e8", + "name": "repos_kohsuke_test_issues_4_comments", + "request": { + "url": "/repos/kohsuke/test/issues/4/comments", + "method": "GET" + }, + "response": { + "status": 200, + "body": "[]", + "headers": { + "Date": "Wed, 02 Oct 2019 21:39:58 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4961", + "X-RateLimit-Reset": "1570055937", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"ad5808b0a5d75d70a16a73b8e9763e19\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C2BE:67D1:895A6:A8458:5D95192E" + } + }, + "uuid": "648b70f1-64eb-413b-9f5d-ebf563d8b5e8", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testIssueWithNoComment/mappings/user-6-0d50ed.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testIssueWithNoComment/mappings/user-6-0d50ed.json new file mode 100644 index 0000000000..895649df5d --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testIssueWithNoComment/mappings/user-6-0d50ed.json @@ -0,0 +1,43 @@ +{ + "id": "0d50edb7-4ca2-4877-83d1-1617ed206128", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-0d50edb7-4ca2-4877-83d1-1617ed206128.json", + "headers": { + "Date": "Thu, 03 Oct 2019 18:57:33 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4798", + "X-RateLimit-Reset": "1570132527", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"cf6199fecf47b59c42190e1e11147ee2\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F394:361D:FE035C:12E86B2:5D96449D" + } + }, + "uuid": "0d50edb7-4ca2-4877-83d1-1617ed206128", + "persistent": true, + "insertionIndex": 6 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testListCommits/__files/repos_kohsuke_empty-commit-486d8363-a1b1-4e0c-8039-7c760428cddd.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testListCommits/__files/repos_kohsuke_empty-commit-486d8363-a1b1-4e0c-8039-7c760428cddd.json new file mode 100644 index 0000000000..31d15233f0 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testListCommits/__files/repos_kohsuke_empty-commit-486d8363-a1b1-4e0c-8039-7c760428cddd.json @@ -0,0 +1,101 @@ +{ + "id": 1908434, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTA4NDM0", + "name": "empty-commit", + "full_name": "kohsuke/empty-commit", + "private": false, + "owner": { + "login": "kohsuke", + "id": 50003, + "node_id": "MDQ6VXNlcjUwMDAz", + "avatar_url": "https://avatars1.githubusercontent.com/u/50003?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kohsuke", + "html_url": "https://github.com/kohsuke", + "followers_url": "https://api.github.com/users/kohsuke/followers", + "following_url": "https://api.github.com/users/kohsuke/following{/other_user}", + "gists_url": "https://api.github.com/users/kohsuke/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kohsuke/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kohsuke/subscriptions", + "organizations_url": "https://api.github.com/users/kohsuke/orgs", + "repos_url": "https://api.github.com/users/kohsuke/repos", + "events_url": "https://api.github.com/users/kohsuke/events{/privacy}", + "received_events_url": "https://api.github.com/users/kohsuke/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/kohsuke/empty-commit", + "description": "Repository that hosts empty commit so that I can create empty gh-pages branch elsewhere easily by fetch.", + "fork": false, + "url": "https://api.github.com/repos/kohsuke/empty-commit", + "forks_url": "https://api.github.com/repos/kohsuke/empty-commit/forks", + "keys_url": "https://api.github.com/repos/kohsuke/empty-commit/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/kohsuke/empty-commit/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/kohsuke/empty-commit/teams", + "hooks_url": "https://api.github.com/repos/kohsuke/empty-commit/hooks", + "issue_events_url": "https://api.github.com/repos/kohsuke/empty-commit/issues/events{/number}", + "events_url": "https://api.github.com/repos/kohsuke/empty-commit/events", + "assignees_url": "https://api.github.com/repos/kohsuke/empty-commit/assignees{/user}", + "branches_url": "https://api.github.com/repos/kohsuke/empty-commit/branches{/branch}", + "tags_url": "https://api.github.com/repos/kohsuke/empty-commit/tags", + "blobs_url": "https://api.github.com/repos/kohsuke/empty-commit/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/kohsuke/empty-commit/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/kohsuke/empty-commit/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/kohsuke/empty-commit/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/kohsuke/empty-commit/statuses/{sha}", + "languages_url": "https://api.github.com/repos/kohsuke/empty-commit/languages", + "stargazers_url": "https://api.github.com/repos/kohsuke/empty-commit/stargazers", + "contributors_url": "https://api.github.com/repos/kohsuke/empty-commit/contributors", + "subscribers_url": "https://api.github.com/repos/kohsuke/empty-commit/subscribers", + "subscription_url": "https://api.github.com/repos/kohsuke/empty-commit/subscription", + "commits_url": "https://api.github.com/repos/kohsuke/empty-commit/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/kohsuke/empty-commit/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/kohsuke/empty-commit/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/kohsuke/empty-commit/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/kohsuke/empty-commit/contents/{+path}", + "compare_url": "https://api.github.com/repos/kohsuke/empty-commit/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/kohsuke/empty-commit/merges", + "archive_url": "https://api.github.com/repos/kohsuke/empty-commit/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/kohsuke/empty-commit/downloads", + "issues_url": "https://api.github.com/repos/kohsuke/empty-commit/issues{/number}", + "pulls_url": "https://api.github.com/repos/kohsuke/empty-commit/pulls{/number}", + "milestones_url": "https://api.github.com/repos/kohsuke/empty-commit/milestones{/number}", + "notifications_url": "https://api.github.com/repos/kohsuke/empty-commit/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/kohsuke/empty-commit/labels{/name}", + "releases_url": "https://api.github.com/repos/kohsuke/empty-commit/releases{/id}", + "deployments_url": "https://api.github.com/repos/kohsuke/empty-commit/deployments", + "created_at": "2011-06-16T23:08:39Z", + "updated_at": "2019-08-13T14:46:42Z", + "pushed_at": "2011-06-16T23:08:57Z", + "git_url": "git://github.com/kohsuke/empty-commit.git", + "ssh_url": "git@github.com:kohsuke/empty-commit.git", + "clone_url": "https://github.com/kohsuke/empty-commit.git", + "svn_url": "https://github.com/kohsuke/empty-commit", + "homepage": "", + "size": 88, + "stargazers_count": 2, + "watchers_count": 2, + "language": null, + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + }, + "network_count": 0, + "subscribers_count": 0 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testListCommits/__files/repos_kohsuke_empty-commit_commits-82c5e19d-5418-414e-a21e-0325daf45e7b.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testListCommits/__files/repos_kohsuke_empty-commit_commits-82c5e19d-5418-414e-a21e-0325daf45e7b.json new file mode 100644 index 0000000000..042c59095b --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testListCommits/__files/repos_kohsuke_empty-commit_commits-82c5e19d-5418-414e-a21e-0325daf45e7b.json @@ -0,0 +1,75 @@ +[ + { + "sha": "fdfad6be4db6f96faea1f153fb447b479a7a9cb7", + "node_id": "MDY6Q29tbWl0MTkwODQzNDpmZGZhZDZiZTRkYjZmOTZmYWVhMWYxNTNmYjQ0N2I0NzlhN2E5Y2I3", + "commit": { + "author": { + "name": "Kohsuke Kawaguchi", + "email": "kk@kohsuke.org", + "date": "2011-06-16T23:03:19Z" + }, + "committer": { + "name": "Kohsuke Kawaguchi", + "email": "kk@kohsuke.org", + "date": "2011-06-16T23:07:37Z" + }, + "message": "", + "tree": { + "sha": "4b825dc642cb6eb9a060e54bf8d69288fbee4904", + "url": "https://api.github.com/repos/kohsuke/empty-commit/git/trees/4b825dc642cb6eb9a060e54bf8d69288fbee4904" + }, + "url": "https://api.github.com/repos/kohsuke/empty-commit/git/commits/fdfad6be4db6f96faea1f153fb447b479a7a9cb7", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/kohsuke/empty-commit/commits/fdfad6be4db6f96faea1f153fb447b479a7a9cb7", + "html_url": "https://github.com/kohsuke/empty-commit/commit/fdfad6be4db6f96faea1f153fb447b479a7a9cb7", + "comments_url": "https://api.github.com/repos/kohsuke/empty-commit/commits/fdfad6be4db6f96faea1f153fb447b479a7a9cb7/comments", + "author": { + "login": "kohsuke", + "id": 50003, + "node_id": "MDQ6VXNlcjUwMDAz", + "avatar_url": "https://avatars1.githubusercontent.com/u/50003?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kohsuke", + "html_url": "https://github.com/kohsuke", + "followers_url": "https://api.github.com/users/kohsuke/followers", + "following_url": "https://api.github.com/users/kohsuke/following{/other_user}", + "gists_url": "https://api.github.com/users/kohsuke/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kohsuke/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kohsuke/subscriptions", + "organizations_url": "https://api.github.com/users/kohsuke/orgs", + "repos_url": "https://api.github.com/users/kohsuke/repos", + "events_url": "https://api.github.com/users/kohsuke/events{/privacy}", + "received_events_url": "https://api.github.com/users/kohsuke/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "kohsuke", + "id": 50003, + "node_id": "MDQ6VXNlcjUwMDAz", + "avatar_url": "https://avatars1.githubusercontent.com/u/50003?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kohsuke", + "html_url": "https://github.com/kohsuke", + "followers_url": "https://api.github.com/users/kohsuke/followers", + "following_url": "https://api.github.com/users/kohsuke/following{/other_user}", + "gists_url": "https://api.github.com/users/kohsuke/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kohsuke/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kohsuke/subscriptions", + "organizations_url": "https://api.github.com/users/kohsuke/orgs", + "repos_url": "https://api.github.com/users/kohsuke/repos", + "events_url": "https://api.github.com/users/kohsuke/events{/privacy}", + "received_events_url": "https://api.github.com/users/kohsuke/received_events", + "type": "User", + "site_admin": false + }, + "parents": [] + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testListCommits/__files/user-3c7e63cf-9abe-4572-a0c0-d6a0d416e7e7.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testListCommits/__files/user-3c7e63cf-9abe-4572-a0c0-d6a0d416e7e7.json new file mode 100644 index 0000000000..a4b576e8a7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testListCommits/__files/user-3c7e63cf-9abe-4572-a0c0-d6a0d416e7e7.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 169, + "public_gists": 7, + "followers": 139, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testListCommits/__files/users_kohsuke-8e500715-ba22-4a3d-823c-3be6c7ceb8ec.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testListCommits/__files/users_kohsuke-8e500715-ba22-4a3d-823c-3be6c7ceb8ec.json new file mode 100644 index 0000000000..f0eb753281 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testListCommits/__files/users_kohsuke-8e500715-ba22-4a3d-823c-3be6c7ceb8ec.json @@ -0,0 +1,33 @@ +{ + "login": "kohsuke", + "id": 50003, + "node_id": "MDQ6VXNlcjUwMDAz", + "avatar_url": "https://avatars1.githubusercontent.com/u/50003?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kohsuke", + "html_url": "https://github.com/kohsuke", + "followers_url": "https://api.github.com/users/kohsuke/followers", + "following_url": "https://api.github.com/users/kohsuke/following{/other_user}", + "gists_url": "https://api.github.com/users/kohsuke/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kohsuke/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kohsuke/subscriptions", + "organizations_url": "https://api.github.com/users/kohsuke/orgs", + "repos_url": "https://api.github.com/users/kohsuke/repos", + "events_url": "https://api.github.com/users/kohsuke/events{/privacy}", + "received_events_url": "https://api.github.com/users/kohsuke/received_events", + "type": "User", + "site_admin": false, + "name": "Kohsuke Kawaguchi", + "company": "CloudBees, Inc.", + "blog": "http://www.kohsuke.org/", + "location": "San Jose, California", + "email": "kk@kohsuke.org", + "hireable": null, + "bio": null, + "public_repos": 257, + "public_gists": 109, + "followers": 1692, + "following": 3, + "created_at": "2009-01-28T18:53:21Z", + "updated_at": "2019-10-25T16:53:26Z" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testListCommits/mappings/repos_kohsuke_empty-commit-3-486d83.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testListCommits/mappings/repos_kohsuke_empty-commit-3-486d83.json new file mode 100644 index 0000000000..bf27aeb9a5 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testListCommits/mappings/repos_kohsuke_empty-commit-3-486d83.json @@ -0,0 +1,43 @@ +{ + "id": "486d8363-a1b1-4e0c-8039-7c760428cddd", + "name": "repos_kohsuke_empty-commit", + "request": { + "url": "/repos/kohsuke/empty-commit", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_kohsuke_empty-commit-486d8363-a1b1-4e0c-8039-7c760428cddd.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:35 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4317", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"8f2f23c22e05347497f450553c321265\"", + "Last-Modified": "Tue, 13 Aug 2019 14:46:42 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAE5:05A2:A65AA5:C49F7A:5DB3A143" + } + }, + "uuid": "486d8363-a1b1-4e0c-8039-7c760428cddd", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testListCommits/mappings/repos_kohsuke_empty-commit_commits-4-82c5e1.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testListCommits/mappings/repos_kohsuke_empty-commit_commits-4-82c5e1.json new file mode 100644 index 0000000000..003d8c3190 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testListCommits/mappings/repos_kohsuke_empty-commit_commits-4-82c5e1.json @@ -0,0 +1,43 @@ +{ + "id": "82c5e19d-5418-414e-a21e-0325daf45e7b", + "name": "repos_kohsuke_empty-commit_commits", + "request": { + "url": "/repos/kohsuke/empty-commit/commits", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_kohsuke_empty-commit_commits-82c5e19d-5418-414e-a21e-0325daf45e7b.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:35 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4316", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"b0c2674ef4695ab083023ca04029a25c\"", + "Last-Modified": "Thu, 16 Jun 2011 23:07:37 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAE5:05A2:A65AAA:C49F80:5DB3A143" + } + }, + "uuid": "82c5e19d-5418-414e-a21e-0325daf45e7b", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testListCommits/mappings/user-1-3c7e63.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testListCommits/mappings/user-1-3c7e63.json new file mode 100644 index 0000000000..40c71198dd --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testListCommits/mappings/user-1-3c7e63.json @@ -0,0 +1,43 @@ +{ + "id": "3c7e63cf-9abe-4572-a0c0-d6a0d416e7e7", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-3c7e63cf-9abe-4572-a0c0-d6a0d416e7e7.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:35 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4320", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"8c3d3dcf6fc5f9edaf26c902295396e5\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAE5:05A2:A65A8D:C49F61:5DB3A143" + } + }, + "uuid": "3c7e63cf-9abe-4572-a0c0-d6a0d416e7e7", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testListCommits/mappings/users_kohsuke-2-8e5007.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testListCommits/mappings/users_kohsuke-2-8e5007.json new file mode 100644 index 0000000000..4262f7e8bb --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testListCommits/mappings/users_kohsuke-2-8e5007.json @@ -0,0 +1,43 @@ +{ + "id": "8e500715-ba22-4a3d-823c-3be6c7ceb8ec", + "name": "users_kohsuke", + "request": { + "url": "/users/kohsuke", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "users_kohsuke-8e500715-ba22-4a3d-823c-3be6c7ceb8ec.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:35 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4318", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"99c27226f3b6139ef2af80ccbcd5d252\"", + "Last-Modified": "Fri, 25 Oct 2019 16:53:26 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAE5:05A2:A65A9D:C49F6C:5DB3A143" + } + }, + "uuid": "8e500715-ba22-4a3d-823c-3be6c7ceb8ec", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/__files/orgs_cloudbeers-4936bdf6-0a61-48e7-a883-8da9517a5c45.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/__files/orgs_cloudbeers-4936bdf6-0a61-48e7-a883-8da9517a5c45.json new file mode 100644 index 0000000000..8ba7a24c34 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/__files/orgs_cloudbeers-4936bdf6-0a61-48e7-a883-8da9517a5c45.json @@ -0,0 +1,30 @@ +{ + "login": "cloudbeers", + "id": 4181899, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjQxODE4OTk=", + "url": "https://api.github.com/orgs/cloudbeers", + "repos_url": "https://api.github.com/orgs/cloudbeers/repos", + "events_url": "https://api.github.com/orgs/cloudbeers/events", + "hooks_url": "https://api.github.com/orgs/cloudbeers/hooks", + "issues_url": "https://api.github.com/orgs/cloudbeers/issues", + "members_url": "https://api.github.com/orgs/cloudbeers/members{/member}", + "public_members_url": "https://api.github.com/orgs/cloudbeers/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/4181899?v=4", + "description": "", + "name": "CloudBeers", + "company": null, + "blog": "cloudbeers.github.io", + "location": null, + "email": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 44, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/cloudbeers", + "created_at": "2013-04-17T13:52:33Z", + "updated_at": "2017-02-06T13:02:10Z", + "type": "Organization" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/__files/orgs_cloudbees-769fb685-65e4-479b-9708-73495d1c9493.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/__files/orgs_cloudbees-769fb685-65e4-479b-9708-73495d1c9493.json new file mode 100644 index 0000000000..1ae20d9ac6 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/__files/orgs_cloudbees-769fb685-65e4-479b-9708-73495d1c9493.json @@ -0,0 +1,46 @@ +{ + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "url": "https://api.github.com/orgs/cloudbees", + "repos_url": "https://api.github.com/orgs/cloudbees/repos", + "events_url": "https://api.github.com/orgs/cloudbees/events", + "hooks_url": "https://api.github.com/orgs/cloudbees/hooks", + "issues_url": "https://api.github.com/orgs/cloudbees/issues", + "members_url": "https://api.github.com/orgs/cloudbees/members{/member}", + "public_members_url": "https://api.github.com/orgs/cloudbees/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "description": "", + "name": "CloudBees", + "company": null, + "blog": "https://www.cloudbees.com/", + "location": null, + "email": null, + "is_verified": true, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 130, + "public_gists": 4, + "followers": 0, + "following": 0, + "html_url": "https://github.com/cloudbees", + "created_at": "2010-04-02T07:24:48Z", + "updated_at": "2018-07-26T22:36:42Z", + "type": "Organization", + "total_private_repos": 758, + "owned_private_repos": 749, + "private_gists": null, + "disk_usage": null, + "collaborators": null, + "billing_email": null, + "default_repository_permission": null, + "members_can_create_repositories": true, + "two_factor_requirement_enabled": null, + "plan": { + "name": "einsteinium", + "space": 976562499, + "private_repos": 750, + "filled_seats": 365, + "seats": 0 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/__files/orgs_cloudbees-community-cce9ba85-74cd-435a-82aa-0bd7d00c604e.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/__files/orgs_cloudbees-community-cce9ba85-74cd-435a-82aa-0bd7d00c604e.json new file mode 100644 index 0000000000..103f1a232f --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/__files/orgs_cloudbees-community-cce9ba85-74cd-435a-82aa-0bd7d00c604e.json @@ -0,0 +1,30 @@ +{ + "login": "CloudBees-community", + "id": 1225740, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEyMjU3NDA=", + "url": "https://api.github.com/orgs/CloudBees-community", + "repos_url": "https://api.github.com/orgs/CloudBees-community/repos", + "events_url": "https://api.github.com/orgs/CloudBees-community/events", + "hooks_url": "https://api.github.com/orgs/CloudBees-community/hooks", + "issues_url": "https://api.github.com/orgs/CloudBees-community/issues", + "members_url": "https://api.github.com/orgs/CloudBees-community/members{/member}", + "public_members_url": "https://api.github.com/orgs/CloudBees-community/public_members{/member}", + "avatar_url": "https://avatars0.githubusercontent.com/u/1225740?v=4", + "description": "", + "name": "CloudBees Community", + "company": null, + "blog": "https://go.cloudbees.com", + "location": null, + "email": "support@cloudbees.com", + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 49, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/CloudBees-community", + "created_at": "2011-11-28T16:17:43Z", + "updated_at": "2018-03-14T02:36:46Z", + "type": "Organization" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/__files/orgs_infradna-af7edd31-d299-40d9-ae36-c8560bd60268.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/__files/orgs_infradna-af7edd31-d299-40d9-ae36-c8560bd60268.json new file mode 100644 index 0000000000..f8bb668d95 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/__files/orgs_infradna-af7edd31-d299-40d9-ae36-c8560bd60268.json @@ -0,0 +1,30 @@ +{ + "login": "infradna", + "id": 266075, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjI2NjA3NQ==", + "url": "https://api.github.com/orgs/infradna", + "repos_url": "https://api.github.com/orgs/infradna/repos", + "events_url": "https://api.github.com/orgs/infradna/events", + "hooks_url": "https://api.github.com/orgs/infradna/hooks", + "issues_url": "https://api.github.com/orgs/infradna/issues", + "members_url": "https://api.github.com/orgs/infradna/members{/member}", + "public_members_url": "https://api.github.com/orgs/infradna/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/266075?v=4", + "description": null, + "name": "InfraDNA, Inc.", + "company": null, + "blog": "http://infradna.com/", + "location": "San Jose, California", + "email": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 4, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/infradna", + "created_at": "2010-05-06T01:33:53Z", + "updated_at": "2016-02-26T23:08:44Z", + "type": "Organization" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/__files/orgs_java-schema-utilities-89ed2c06-4671-48e6-bb63-79188b413e58.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/__files/orgs_java-schema-utilities-89ed2c06-4671-48e6-bb63-79188b413e58.json new file mode 100644 index 0000000000..2f7c94e118 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/__files/orgs_java-schema-utilities-89ed2c06-4671-48e6-bb63-79188b413e58.json @@ -0,0 +1,30 @@ +{ + "login": "java-schema-utilities", + "id": 709081, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjcwOTA4MQ==", + "url": "https://api.github.com/orgs/java-schema-utilities", + "repos_url": "https://api.github.com/orgs/java-schema-utilities/repos", + "events_url": "https://api.github.com/orgs/java-schema-utilities/events", + "hooks_url": "https://api.github.com/orgs/java-schema-utilities/hooks", + "issues_url": "https://api.github.com/orgs/java-schema-utilities/issues", + "members_url": "https://api.github.com/orgs/java-schema-utilities/members{/member}", + "public_members_url": "https://api.github.com/orgs/java-schema-utilities/public_members{/member}", + "avatar_url": "https://avatars0.githubusercontent.com/u/709081?v=4", + "description": null, + "name": "java-schema-utilities", + "company": null, + "blog": null, + "location": null, + "email": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 5, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/java-schema-utilities", + "created_at": "2011-04-04T18:34:27Z", + "updated_at": "2016-02-27T00:05:01Z", + "type": "Organization" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/__files/orgs_jenkins-infra-30e7c1b4-bf52-4737-8229-71038769bfae.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/__files/orgs_jenkins-infra-30e7c1b4-bf52-4737-8229-71038769bfae.json new file mode 100644 index 0000000000..ae559864e9 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/__files/orgs_jenkins-infra-30e7c1b4-bf52-4737-8229-71038769bfae.json @@ -0,0 +1,46 @@ +{ + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "url": "https://api.github.com/orgs/jenkins-infra", + "repos_url": "https://api.github.com/orgs/jenkins-infra/repos", + "events_url": "https://api.github.com/orgs/jenkins-infra/events", + "hooks_url": "https://api.github.com/orgs/jenkins-infra/hooks", + "issues_url": "https://api.github.com/orgs/jenkins-infra/issues", + "members_url": "https://api.github.com/orgs/jenkins-infra/members{/member}", + "public_members_url": "https://api.github.com/orgs/jenkins-infra/public_members{/member}", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "description": "Repositories owned by the Jenkins project infrastructure team", + "name": "Jenkins Infra", + "company": null, + "blog": null, + "location": null, + "email": "infra@lists.jenkins-ci.org", + "is_verified": false, + "has_organization_projects": false, + "has_repository_projects": false, + "public_repos": 76, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/jenkins-infra", + "created_at": "2014-04-27T19:47:26Z", + "updated_at": "2018-08-07T02:50:50Z", + "type": "Organization", + "total_private_repos": 5, + "owned_private_repos": 5, + "private_gists": null, + "disk_usage": null, + "collaborators": null, + "billing_email": null, + "default_repository_permission": null, + "members_can_create_repositories": true, + "two_factor_requirement_enabled": null, + "plan": { + "name": "bronze", + "space": 976562499, + "private_repos": 10, + "filled_seats": 44, + "seats": 0 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/__files/orgs_jenkinsci-100ade7d-2083-4ff9-8b1b-2d8648c60b65.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/__files/orgs_jenkinsci-100ade7d-2083-4ff9-8b1b-2d8648c60b65.json new file mode 100644 index 0000000000..81befff424 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/__files/orgs_jenkinsci-100ade7d-2083-4ff9-8b1b-2d8648c60b65.json @@ -0,0 +1,46 @@ +{ + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "url": "https://api.github.com/orgs/jenkinsci", + "repos_url": "https://api.github.com/orgs/jenkinsci/repos", + "events_url": "https://api.github.com/orgs/jenkinsci/events", + "hooks_url": "https://api.github.com/orgs/jenkinsci/hooks", + "issues_url": "https://api.github.com/orgs/jenkinsci/issues", + "members_url": "https://api.github.com/orgs/jenkinsci/members{/member}", + "public_members_url": "https://api.github.com/orgs/jenkinsci/public_members{/member}", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "description": "Jenkins is an open source automation server with an unparalleled plugin ecosystem to support practically every tool as part of your delivery pipelines", + "name": "Jenkins", + "company": null, + "blog": "https://jenkins.io", + "location": "Santa Clara, CA", + "email": "jenkinsci-users@googlegroups.com", + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 2204, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/jenkinsci", + "created_at": "2009-07-21T21:03:50Z", + "updated_at": "2019-02-25T15:26:10Z", + "type": "Organization", + "total_private_repos": 0, + "owned_private_repos": 0, + "private_gists": null, + "disk_usage": null, + "collaborators": null, + "billing_email": null, + "default_repository_permission": null, + "members_can_create_repositories": false, + "two_factor_requirement_enabled": null, + "plan": { + "name": "free", + "space": 976562499, + "private_repos": 0, + "filled_seats": 2065, + "seats": 0 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/__files/orgs_jenkinsci-cert-0a4422be-27ec-4110-9599-166bc51809f2.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/__files/orgs_jenkinsci-cert-0a4422be-27ec-4110-9599-166bc51809f2.json new file mode 100644 index 0000000000..db1b79ac2e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/__files/orgs_jenkinsci-cert-0a4422be-27ec-4110-9599-166bc51809f2.json @@ -0,0 +1,30 @@ +{ + "login": "jenkinsci-cert", + "id": 9285726, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjkyODU3MjY=", + "url": "https://api.github.com/orgs/jenkinsci-cert", + "repos_url": "https://api.github.com/orgs/jenkinsci-cert/repos", + "events_url": "https://api.github.com/orgs/jenkinsci-cert/events", + "hooks_url": "https://api.github.com/orgs/jenkinsci-cert/hooks", + "issues_url": "https://api.github.com/orgs/jenkinsci-cert/issues", + "members_url": "https://api.github.com/orgs/jenkinsci-cert/members{/member}", + "public_members_url": "https://api.github.com/orgs/jenkinsci-cert/public_members{/member}", + "avatar_url": "https://avatars2.githubusercontent.com/u/9285726?v=4", + "description": "Private repositories for the Jenkins CERT team", + "name": "Jenkins CERT team", + "company": null, + "blog": "https://jenkins.io/security/", + "location": "Around the world", + "email": null, + "is_verified": false, + "has_organization_projects": false, + "has_repository_projects": false, + "public_repos": 5, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/jenkinsci-cert", + "created_at": "2014-10-17T16:35:51Z", + "updated_at": "2018-08-06T23:15:59Z", + "type": "Organization" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/__files/orgs_legomatterhorn-26ad87d6-e506-4c98-8890-c81a9551aebf.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/__files/orgs_legomatterhorn-26ad87d6-e506-4c98-8890-c81a9551aebf.json new file mode 100644 index 0000000000..c9d9ce56be --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/__files/orgs_legomatterhorn-26ad87d6-e506-4c98-8890-c81a9551aebf.json @@ -0,0 +1,30 @@ +{ + "login": "LegoMatterhorn", + "id": 9170491, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjkxNzA0OTE=", + "url": "https://api.github.com/orgs/LegoMatterhorn", + "repos_url": "https://api.github.com/orgs/LegoMatterhorn/repos", + "events_url": "https://api.github.com/orgs/LegoMatterhorn/events", + "hooks_url": "https://api.github.com/orgs/LegoMatterhorn/hooks", + "issues_url": "https://api.github.com/orgs/LegoMatterhorn/issues", + "members_url": "https://api.github.com/orgs/LegoMatterhorn/members{/member}", + "public_members_url": "https://api.github.com/orgs/LegoMatterhorn/public_members{/member}", + "avatar_url": "https://avatars2.githubusercontent.com/u/9170491?v=4", + "description": "", + "name": null, + "company": null, + "blog": null, + "location": null, + "email": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 2, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/LegoMatterhorn", + "created_at": "2014-10-13T00:32:31Z", + "updated_at": "2014-10-13T00:54:56Z", + "type": "Organization" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/__files/orgs_stapler-e0ce2766-9611-4f1a-91fe-8f53a32132ae.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/__files/orgs_stapler-e0ce2766-9611-4f1a-91fe-8f53a32132ae.json new file mode 100644 index 0000000000..4075e174c4 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/__files/orgs_stapler-e0ce2766-9611-4f1a-91fe-8f53a32132ae.json @@ -0,0 +1,30 @@ +{ + "login": "stapler", + "id": 700341, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjcwMDM0MQ==", + "url": "https://api.github.com/orgs/stapler", + "repos_url": "https://api.github.com/orgs/stapler/repos", + "events_url": "https://api.github.com/orgs/stapler/events", + "hooks_url": "https://api.github.com/orgs/stapler/hooks", + "issues_url": "https://api.github.com/orgs/stapler/issues", + "members_url": "https://api.github.com/orgs/stapler/members{/member}", + "public_members_url": "https://api.github.com/orgs/stapler/public_members{/member}", + "avatar_url": "https://avatars1.githubusercontent.com/u/700341?v=4", + "description": null, + "name": "Stapler Web Framework", + "company": null, + "blog": null, + "location": null, + "email": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 25, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/stapler", + "created_at": "2011-03-30T22:33:10Z", + "updated_at": "2016-10-14T18:26:44Z", + "type": "Organization" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/__files/user-f4bfaca9-99e6-47db-9d5c-00a803146d56.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/__files/user-f4bfaca9-99e6-47db-9d5c-00a803146d56.json new file mode 100644 index 0000000000..a4b576e8a7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/__files/user-f4bfaca9-99e6-47db-9d5c-00a803146d56.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 169, + "public_gists": 7, + "followers": 139, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/__files/users_kohsuke-0e40390e-60c3-4161-864a-2587a9b75e8e.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/__files/users_kohsuke-0e40390e-60c3-4161-864a-2587a9b75e8e.json new file mode 100644 index 0000000000..f0eb753281 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/__files/users_kohsuke-0e40390e-60c3-4161-864a-2587a9b75e8e.json @@ -0,0 +1,33 @@ +{ + "login": "kohsuke", + "id": 50003, + "node_id": "MDQ6VXNlcjUwMDAz", + "avatar_url": "https://avatars1.githubusercontent.com/u/50003?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kohsuke", + "html_url": "https://github.com/kohsuke", + "followers_url": "https://api.github.com/users/kohsuke/followers", + "following_url": "https://api.github.com/users/kohsuke/following{/other_user}", + "gists_url": "https://api.github.com/users/kohsuke/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kohsuke/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kohsuke/subscriptions", + "organizations_url": "https://api.github.com/users/kohsuke/orgs", + "repos_url": "https://api.github.com/users/kohsuke/repos", + "events_url": "https://api.github.com/users/kohsuke/events{/privacy}", + "received_events_url": "https://api.github.com/users/kohsuke/received_events", + "type": "User", + "site_admin": false, + "name": "Kohsuke Kawaguchi", + "company": "CloudBees, Inc.", + "blog": "http://www.kohsuke.org/", + "location": "San Jose, California", + "email": "kk@kohsuke.org", + "hireable": null, + "bio": null, + "public_repos": 257, + "public_gists": 109, + "followers": 1692, + "following": 3, + "created_at": "2009-01-28T18:53:21Z", + "updated_at": "2019-10-25T16:53:26Z" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/__files/users_kohsuke_orgs-e6c67f05-5a96-4afb-8e7a-030b55572966.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/__files/users_kohsuke_orgs-e6c67f05-5a96-4afb-8e7a-030b55572966.json new file mode 100644 index 0000000000..e6d9bd6288 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/__files/users_kohsuke_orgs-e6c67f05-5a96-4afb-8e7a-030b55572966.json @@ -0,0 +1,142 @@ +[ + { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "url": "https://api.github.com/orgs/jenkinsci", + "repos_url": "https://api.github.com/orgs/jenkinsci/repos", + "events_url": "https://api.github.com/orgs/jenkinsci/events", + "hooks_url": "https://api.github.com/orgs/jenkinsci/hooks", + "issues_url": "https://api.github.com/orgs/jenkinsci/issues", + "members_url": "https://api.github.com/orgs/jenkinsci/members{/member}", + "public_members_url": "https://api.github.com/orgs/jenkinsci/public_members{/member}", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "description": "Jenkins is an open source automation server with an unparalleled plugin ecosystem to support practically every tool as part of your delivery pipelines" + }, + { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "url": "https://api.github.com/orgs/cloudbees", + "repos_url": "https://api.github.com/orgs/cloudbees/repos", + "events_url": "https://api.github.com/orgs/cloudbees/events", + "hooks_url": "https://api.github.com/orgs/cloudbees/hooks", + "issues_url": "https://api.github.com/orgs/cloudbees/issues", + "members_url": "https://api.github.com/orgs/cloudbees/members{/member}", + "public_members_url": "https://api.github.com/orgs/cloudbees/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "description": "" + }, + { + "login": "infradna", + "id": 266075, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjI2NjA3NQ==", + "url": "https://api.github.com/orgs/infradna", + "repos_url": "https://api.github.com/orgs/infradna/repos", + "events_url": "https://api.github.com/orgs/infradna/events", + "hooks_url": "https://api.github.com/orgs/infradna/hooks", + "issues_url": "https://api.github.com/orgs/infradna/issues", + "members_url": "https://api.github.com/orgs/infradna/members{/member}", + "public_members_url": "https://api.github.com/orgs/infradna/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/266075?v=4", + "description": null + }, + { + "login": "stapler", + "id": 700341, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjcwMDM0MQ==", + "url": "https://api.github.com/orgs/stapler", + "repos_url": "https://api.github.com/orgs/stapler/repos", + "events_url": "https://api.github.com/orgs/stapler/events", + "hooks_url": "https://api.github.com/orgs/stapler/hooks", + "issues_url": "https://api.github.com/orgs/stapler/issues", + "members_url": "https://api.github.com/orgs/stapler/members{/member}", + "public_members_url": "https://api.github.com/orgs/stapler/public_members{/member}", + "avatar_url": "https://avatars1.githubusercontent.com/u/700341?v=4", + "description": null + }, + { + "login": "java-schema-utilities", + "id": 709081, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjcwOTA4MQ==", + "url": "https://api.github.com/orgs/java-schema-utilities", + "repos_url": "https://api.github.com/orgs/java-schema-utilities/repos", + "events_url": "https://api.github.com/orgs/java-schema-utilities/events", + "hooks_url": "https://api.github.com/orgs/java-schema-utilities/hooks", + "issues_url": "https://api.github.com/orgs/java-schema-utilities/issues", + "members_url": "https://api.github.com/orgs/java-schema-utilities/members{/member}", + "public_members_url": "https://api.github.com/orgs/java-schema-utilities/public_members{/member}", + "avatar_url": "https://avatars0.githubusercontent.com/u/709081?v=4", + "description": null + }, + { + "login": "CloudBees-community", + "id": 1225740, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEyMjU3NDA=", + "url": "https://api.github.com/orgs/CloudBees-community", + "repos_url": "https://api.github.com/orgs/CloudBees-community/repos", + "events_url": "https://api.github.com/orgs/CloudBees-community/events", + "hooks_url": "https://api.github.com/orgs/CloudBees-community/hooks", + "issues_url": "https://api.github.com/orgs/CloudBees-community/issues", + "members_url": "https://api.github.com/orgs/CloudBees-community/members{/member}", + "public_members_url": "https://api.github.com/orgs/CloudBees-community/public_members{/member}", + "avatar_url": "https://avatars0.githubusercontent.com/u/1225740?v=4", + "description": "" + }, + { + "login": "cloudbeers", + "id": 4181899, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjQxODE4OTk=", + "url": "https://api.github.com/orgs/cloudbeers", + "repos_url": "https://api.github.com/orgs/cloudbeers/repos", + "events_url": "https://api.github.com/orgs/cloudbeers/events", + "hooks_url": "https://api.github.com/orgs/cloudbeers/hooks", + "issues_url": "https://api.github.com/orgs/cloudbeers/issues", + "members_url": "https://api.github.com/orgs/cloudbeers/members{/member}", + "public_members_url": "https://api.github.com/orgs/cloudbeers/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/4181899?v=4", + "description": "" + }, + { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "url": "https://api.github.com/orgs/jenkins-infra", + "repos_url": "https://api.github.com/orgs/jenkins-infra/repos", + "events_url": "https://api.github.com/orgs/jenkins-infra/events", + "hooks_url": "https://api.github.com/orgs/jenkins-infra/hooks", + "issues_url": "https://api.github.com/orgs/jenkins-infra/issues", + "members_url": "https://api.github.com/orgs/jenkins-infra/members{/member}", + "public_members_url": "https://api.github.com/orgs/jenkins-infra/public_members{/member}", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "description": "Repositories owned by the Jenkins project infrastructure team" + }, + { + "login": "LegoMatterhorn", + "id": 9170491, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjkxNzA0OTE=", + "url": "https://api.github.com/orgs/LegoMatterhorn", + "repos_url": "https://api.github.com/orgs/LegoMatterhorn/repos", + "events_url": "https://api.github.com/orgs/LegoMatterhorn/events", + "hooks_url": "https://api.github.com/orgs/LegoMatterhorn/hooks", + "issues_url": "https://api.github.com/orgs/LegoMatterhorn/issues", + "members_url": "https://api.github.com/orgs/LegoMatterhorn/members{/member}", + "public_members_url": "https://api.github.com/orgs/LegoMatterhorn/public_members{/member}", + "avatar_url": "https://avatars2.githubusercontent.com/u/9170491?v=4", + "description": "" + }, + { + "login": "jenkinsci-cert", + "id": 9285726, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjkyODU3MjY=", + "url": "https://api.github.com/orgs/jenkinsci-cert", + "repos_url": "https://api.github.com/orgs/jenkinsci-cert/repos", + "events_url": "https://api.github.com/orgs/jenkinsci-cert/events", + "hooks_url": "https://api.github.com/orgs/jenkinsci-cert/hooks", + "issues_url": "https://api.github.com/orgs/jenkinsci-cert/issues", + "members_url": "https://api.github.com/orgs/jenkinsci-cert/members{/member}", + "public_members_url": "https://api.github.com/orgs/jenkinsci-cert/public_members{/member}", + "avatar_url": "https://avatars2.githubusercontent.com/u/9285726?v=4", + "description": "Private repositories for the Jenkins CERT team" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/mappings/orgs_cloudbeers-10-4936bd.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/mappings/orgs_cloudbeers-10-4936bd.json new file mode 100644 index 0000000000..dc515813d7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/mappings/orgs_cloudbeers-10-4936bd.json @@ -0,0 +1,43 @@ +{ + "id": "4936bdf6-0a61-48e7-a883-8da9517a5c45", + "name": "orgs_cloudbeers", + "request": { + "url": "/orgs/cloudbeers", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_cloudbeers-4936bdf6-0a61-48e7-a883-8da9517a5c45.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:27:29 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4445", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"b8a422575e4c0e9c443f2fce88ee64bd\"", + "Last-Modified": "Mon, 06 Feb 2017 13:02:10 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CA87:98FB:1E22DF:2393B9:5DB3A101" + } + }, + "uuid": "4936bdf6-0a61-48e7-a883-8da9517a5c45", + "persistent": true, + "insertionIndex": 10 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/mappings/orgs_cloudbees-5-769fb6.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/mappings/orgs_cloudbees-5-769fb6.json new file mode 100644 index 0000000000..40a58306b3 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/mappings/orgs_cloudbees-5-769fb6.json @@ -0,0 +1,43 @@ +{ + "id": "769fb685-65e4-479b-9708-73495d1c9493", + "name": "orgs_cloudbees", + "request": { + "url": "/orgs/cloudbees", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_cloudbees-769fb685-65e4-479b-9708-73495d1c9493.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:27:28 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4450", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"45f4f0823d2f616b5ba0534d081ab4ed\"", + "Last-Modified": "Thu, 26 Jul 2018 22:36:42 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CA87:98FB:1E22D6:2393B0:5DB3A100" + } + }, + "uuid": "769fb685-65e4-479b-9708-73495d1c9493", + "persistent": true, + "insertionIndex": 5 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/mappings/orgs_cloudbees-community-9-cce9ba.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/mappings/orgs_cloudbees-community-9-cce9ba.json new file mode 100644 index 0000000000..2f8f7d366b --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/mappings/orgs_cloudbees-community-9-cce9ba.json @@ -0,0 +1,43 @@ +{ + "id": "cce9ba85-74cd-435a-82aa-0bd7d00c604e", + "name": "orgs_cloudbees-community", + "request": { + "url": "/orgs/CloudBees-community", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_cloudbees-community-cce9ba85-74cd-435a-82aa-0bd7d00c604e.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:27:29 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4446", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"d6241ae59bfbb03c1b325e0d0986ab72\"", + "Last-Modified": "Wed, 14 Mar 2018 02:36:46 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CA87:98FB:1E22DE:2393B8:5DB3A101" + } + }, + "uuid": "cce9ba85-74cd-435a-82aa-0bd7d00c604e", + "persistent": true, + "insertionIndex": 9 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/mappings/orgs_infradna-6-af7edd.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/mappings/orgs_infradna-6-af7edd.json new file mode 100644 index 0000000000..74f54d26f5 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/mappings/orgs_infradna-6-af7edd.json @@ -0,0 +1,43 @@ +{ + "id": "af7edd31-d299-40d9-ae36-c8560bd60268", + "name": "orgs_infradna", + "request": { + "url": "/orgs/infradna", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_infradna-af7edd31-d299-40d9-ae36-c8560bd60268.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:27:29 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4449", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"55bbf93ab6648efea71c848db783547a\"", + "Last-Modified": "Fri, 26 Feb 2016 23:08:44 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CA87:98FB:1E22D9:2393B4:5DB3A100" + } + }, + "uuid": "af7edd31-d299-40d9-ae36-c8560bd60268", + "persistent": true, + "insertionIndex": 6 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/mappings/orgs_java-schema-utilities-8-89ed2c.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/mappings/orgs_java-schema-utilities-8-89ed2c.json new file mode 100644 index 0000000000..a9f2ec6a2e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/mappings/orgs_java-schema-utilities-8-89ed2c.json @@ -0,0 +1,43 @@ +{ + "id": "89ed2c06-4671-48e6-bb63-79188b413e58", + "name": "orgs_java-schema-utilities", + "request": { + "url": "/orgs/java-schema-utilities", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_java-schema-utilities-89ed2c06-4671-48e6-bb63-79188b413e58.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:27:29 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4447", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"83d640f7b4f728b6df80f65de2e1878b\"", + "Last-Modified": "Sat, 27 Feb 2016 00:05:01 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CA87:98FB:1E22DD:2393B7:5DB3A101" + } + }, + "uuid": "89ed2c06-4671-48e6-bb63-79188b413e58", + "persistent": true, + "insertionIndex": 8 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/mappings/orgs_jenkins-infra-11-30e7c1.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/mappings/orgs_jenkins-infra-11-30e7c1.json new file mode 100644 index 0000000000..6233c01365 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/mappings/orgs_jenkins-infra-11-30e7c1.json @@ -0,0 +1,43 @@ +{ + "id": "30e7c1b4-bf52-4737-8229-71038769bfae", + "name": "orgs_jenkins-infra", + "request": { + "url": "/orgs/jenkins-infra", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_jenkins-infra-30e7c1b4-bf52-4737-8229-71038769bfae.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:27:29 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4444", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"f4df9562660e78d2434cb3b20ec6b4be\"", + "Last-Modified": "Tue, 07 Aug 2018 02:50:50 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CA87:98FB:1E22E1:2393BB:5DB3A101" + } + }, + "uuid": "30e7c1b4-bf52-4737-8229-71038769bfae", + "persistent": true, + "insertionIndex": 11 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/mappings/orgs_jenkinsci-4-100ade.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/mappings/orgs_jenkinsci-4-100ade.json new file mode 100644 index 0000000000..9b5f0a25c4 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/mappings/orgs_jenkinsci-4-100ade.json @@ -0,0 +1,43 @@ +{ + "id": "100ade7d-2083-4ff9-8b1b-2d8648c60b65", + "name": "orgs_jenkinsci", + "request": { + "url": "/orgs/jenkinsci", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_jenkinsci-100ade7d-2083-4ff9-8b1b-2d8648c60b65.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:27:28 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4451", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"ee1dcb6549b6c8fc14267ae3abde8f38\"", + "Last-Modified": "Mon, 25 Feb 2019 15:26:10 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CA87:98FB:1E22D5:2393AE:5DB3A100" + } + }, + "uuid": "100ade7d-2083-4ff9-8b1b-2d8648c60b65", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/mappings/orgs_jenkinsci-cert-13-0a4422.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/mappings/orgs_jenkinsci-cert-13-0a4422.json new file mode 100644 index 0000000000..384bdb94c4 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/mappings/orgs_jenkinsci-cert-13-0a4422.json @@ -0,0 +1,43 @@ +{ + "id": "0a4422be-27ec-4110-9599-166bc51809f2", + "name": "orgs_jenkinsci-cert", + "request": { + "url": "/orgs/jenkinsci-cert", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_jenkinsci-cert-0a4422be-27ec-4110-9599-166bc51809f2.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:27:30 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4442", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"aa87936d6efa4071fe65702573059bc4\"", + "Last-Modified": "Mon, 06 Aug 2018 23:15:59 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CA87:98FB:1E22E3:2393BE:5DB3A102" + } + }, + "uuid": "0a4422be-27ec-4110-9599-166bc51809f2", + "persistent": true, + "insertionIndex": 13 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/mappings/orgs_legomatterhorn-12-26ad87.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/mappings/orgs_legomatterhorn-12-26ad87.json new file mode 100644 index 0000000000..f4d0aa9b90 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/mappings/orgs_legomatterhorn-12-26ad87.json @@ -0,0 +1,43 @@ +{ + "id": "26ad87d6-e506-4c98-8890-c81a9551aebf", + "name": "orgs_legomatterhorn", + "request": { + "url": "/orgs/LegoMatterhorn", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_legomatterhorn-26ad87d6-e506-4c98-8890-c81a9551aebf.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:27:30 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4443", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"e61206a0e061642c3fa40d78af7c58ec\"", + "Last-Modified": "Mon, 13 Oct 2014 00:54:56 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CA87:98FB:1E22E2:2393BD:5DB3A101" + } + }, + "uuid": "26ad87d6-e506-4c98-8890-c81a9551aebf", + "persistent": true, + "insertionIndex": 12 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/mappings/orgs_stapler-7-e0ce27.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/mappings/orgs_stapler-7-e0ce27.json new file mode 100644 index 0000000000..6a99a6de29 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/mappings/orgs_stapler-7-e0ce27.json @@ -0,0 +1,43 @@ +{ + "id": "e0ce2766-9611-4f1a-91fe-8f53a32132ae", + "name": "orgs_stapler", + "request": { + "url": "/orgs/stapler", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_stapler-e0ce2766-9611-4f1a-91fe-8f53a32132ae.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:27:29 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4448", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"d5477d2560a350d4f7dc24afc705f3cb\"", + "Last-Modified": "Fri, 14 Oct 2016 18:26:44 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CA87:98FB:1E22DB:2393B5:5DB3A101" + } + }, + "uuid": "e0ce2766-9611-4f1a-91fe-8f53a32132ae", + "persistent": true, + "insertionIndex": 7 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/mappings/user-1-f4bfac.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/mappings/user-1-f4bfac.json new file mode 100644 index 0000000000..e02ef1a334 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/mappings/user-1-f4bfac.json @@ -0,0 +1,43 @@ +{ + "id": "f4bfaca9-99e6-47db-9d5c-00a803146d56", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-f4bfaca9-99e6-47db-9d5c-00a803146d56.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:27:27 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4455", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"8c3d3dcf6fc5f9edaf26c902295396e5\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CA87:98FB:1E22CE:2393A5:5DB3A0FF" + } + }, + "uuid": "f4bfaca9-99e6-47db-9d5c-00a803146d56", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/mappings/users_kohsuke-2-0e4039.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/mappings/users_kohsuke-2-0e4039.json new file mode 100644 index 0000000000..d84cbf2b9e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/mappings/users_kohsuke-2-0e4039.json @@ -0,0 +1,43 @@ +{ + "id": "0e40390e-60c3-4161-864a-2587a9b75e8e", + "name": "users_kohsuke", + "request": { + "url": "/users/kohsuke", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "users_kohsuke-0e40390e-60c3-4161-864a-2587a9b75e8e.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:27:28 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4453", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"99c27226f3b6139ef2af80ccbcd5d252\"", + "Last-Modified": "Fri, 25 Oct 2019 16:53:26 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CA87:98FB:1E22CF:2393A7:5DB3A0FF" + } + }, + "uuid": "0e40390e-60c3-4161-864a-2587a9b75e8e", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/mappings/users_kohsuke_orgs-3-e6c67f.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/mappings/users_kohsuke_orgs-3-e6c67f.json new file mode 100644 index 0000000000..95b8efccb3 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMemberOrgs/mappings/users_kohsuke_orgs-3-e6c67f.json @@ -0,0 +1,42 @@ +{ + "id": "e6c67f05-5a96-4afb-8e7a-030b55572966", + "name": "users_kohsuke_orgs", + "request": { + "url": "/users/kohsuke/orgs", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "users_kohsuke_orgs-e6c67f05-5a96-4afb-8e7a-030b55572966.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:27:28 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4452", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"96c0169e1c02716469175c8dc90085ed\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CA87:98FB:1E22D2:2393AB:5DB3A100" + } + }, + "uuid": "e6c67f05-5a96-4afb-8e7a-030b55572966", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMembership/__files/orgs_github-api-test-org-f298a1b9-4064-46ad-928a-10ea257461d9.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMembership/__files/orgs_github-api-test-org-f298a1b9-4064-46ad-928a-10ea257461d9.json new file mode 100644 index 0000000000..99b5920ccb --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMembership/__files/orgs_github-api-test-org-f298a1b9-4064-46ad-928a-10ea257461d9.json @@ -0,0 +1,41 @@ +{ + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "url": "https://api.github.com/orgs/github-api-test-org", + "repos_url": "https://api.github.com/orgs/github-api-test-org/repos", + "events_url": "https://api.github.com/orgs/github-api-test-org/events", + "hooks_url": "https://api.github.com/orgs/github-api-test-org/hooks", + "issues_url": "https://api.github.com/orgs/github-api-test-org/issues", + "members_url": "https://api.github.com/orgs/github-api-test-org/members{/member}", + "public_members_url": "https://api.github.com/orgs/github-api-test-org/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "description": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 10, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/github-api-test-org", + "created_at": "2014-05-10T19:39:11Z", + "updated_at": "2015-04-20T00:42:30Z", + "type": "Organization", + "total_private_repos": 0, + "owned_private_repos": 0, + "private_gists": 0, + "disk_usage": 132, + "collaborators": 0, + "billing_email": "kk@kohsuke.org", + "default_repository_permission": "none", + "members_can_create_repositories": false, + "two_factor_requirement_enabled": false, + "plan": { + "name": "free", + "space": 976562499, + "private_repos": 0, + "filled_seats": 7, + "seats": 0 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMembership/__files/repos_github-api-test-org_jenkins-e9db4f2d-55a2-498e-b3eb-d66b87b7b86b.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMembership/__files/repos_github-api-test-org_jenkins-e9db4f2d-55a2-498e-b3eb-d66b87b7b86b.json new file mode 100644 index 0000000000..4f05dc457f --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMembership/__files/repos_github-api-test-org_jenkins-e9db4f2d-55a2-498e-b3eb-d66b87b7b86b.json @@ -0,0 +1,330 @@ +{ + "id": 19650295, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTY1MDI5NQ==", + "name": "jenkins", + "full_name": "github-api-test-org/jenkins", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/jenkins", + "description": "Jenkins Continuous Integration Server", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/jenkins", + "forks_url": "https://api.github.com/repos/github-api-test-org/jenkins/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/jenkins/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/jenkins/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/jenkins/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/jenkins/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/jenkins/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/jenkins/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/jenkins/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/jenkins/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/jenkins/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/jenkins/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/jenkins/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/jenkins/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/jenkins/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/jenkins/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/jenkins/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/jenkins/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/jenkins/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/jenkins/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/jenkins/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/jenkins/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/jenkins/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/jenkins/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/jenkins/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/jenkins/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/jenkins/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/jenkins/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/jenkins/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/jenkins/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/jenkins/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/jenkins/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/jenkins/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/jenkins/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/jenkins/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/jenkins/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/jenkins/deployments", + "created_at": "2014-05-10T19:40:19Z", + "updated_at": "2019-09-06T23:21:35Z", + "pushed_at": "2019-09-06T23:21:43Z", + "git_url": "git://github.com/github-api-test-org/jenkins.git", + "ssh_url": "git@github.com:github-api-test-org/jenkins.git", + "clone_url": "https://github.com/github-api-test-org/jenkins.git", + "svn_url": "https://github.com/github-api-test-org/jenkins", + "homepage": "http://jenkins-ci.org/", + "size": 76586, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": false, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 3, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "parent": { + "id": 1103607, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTAzNjA3", + "name": "jenkins", + "full_name": "jenkinsci/jenkins", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jenkins", + "description": "Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jenkins", + "forks_url": "https://api.github.com/repos/jenkinsci/jenkins/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jenkins/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jenkins/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jenkins/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jenkins/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jenkins/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jenkins/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jenkins/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jenkins/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jenkins/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jenkins/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jenkins/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jenkins/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jenkins/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jenkins/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jenkins/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jenkins/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jenkins/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jenkins/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jenkins/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jenkins/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jenkins/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jenkins/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jenkins/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jenkins/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jenkins/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jenkins/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jenkins/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jenkins/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jenkins/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jenkins/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jenkins/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jenkins/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jenkins/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jenkins/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jenkins/deployments", + "created_at": "2010-11-22T21:21:23Z", + "updated_at": "2019-10-26T01:07:22Z", + "pushed_at": "2019-10-25T16:17:56Z", + "git_url": "git://github.com/jenkinsci/jenkins.git", + "ssh_url": "git@github.com:jenkinsci/jenkins.git", + "clone_url": "https://github.com/jenkinsci/jenkins.git", + "svn_url": "https://github.com/jenkinsci/jenkins", + "homepage": "https://jenkins.io/", + "size": 113287, + "stargazers_count": 14167, + "watchers_count": 14167, + "language": "Java", + "has_issues": false, + "has_projects": false, + "has_downloads": false, + "has_wiki": false, + "has_pages": false, + "forks_count": 5807, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 74, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 5807, + "open_issues": 74, + "watchers": 14167, + "default_branch": "master" + }, + "source": { + "id": 1103607, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTAzNjA3", + "name": "jenkins", + "full_name": "jenkinsci/jenkins", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jenkins", + "description": "Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jenkins", + "forks_url": "https://api.github.com/repos/jenkinsci/jenkins/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jenkins/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jenkins/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jenkins/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jenkins/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jenkins/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jenkins/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jenkins/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jenkins/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jenkins/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jenkins/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jenkins/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jenkins/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jenkins/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jenkins/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jenkins/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jenkins/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jenkins/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jenkins/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jenkins/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jenkins/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jenkins/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jenkins/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jenkins/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jenkins/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jenkins/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jenkins/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jenkins/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jenkins/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jenkins/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jenkins/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jenkins/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jenkins/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jenkins/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jenkins/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jenkins/deployments", + "created_at": "2010-11-22T21:21:23Z", + "updated_at": "2019-10-26T01:07:22Z", + "pushed_at": "2019-10-25T16:17:56Z", + "git_url": "git://github.com/jenkinsci/jenkins.git", + "ssh_url": "git@github.com:jenkinsci/jenkins.git", + "clone_url": "https://github.com/jenkinsci/jenkins.git", + "svn_url": "https://github.com/jenkinsci/jenkins", + "homepage": "https://jenkins.io/", + "size": 113287, + "stargazers_count": 14167, + "watchers_count": 14167, + "language": "Java", + "has_issues": false, + "has_projects": false, + "has_downloads": false, + "has_wiki": false, + "has_pages": false, + "forks_count": 5807, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 74, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 5807, + "open_issues": 74, + "watchers": 14167, + "default_branch": "master" + }, + "network_count": 5807, + "subscribers_count": 0 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMembership/__files/repos_github-api-test-org_jenkins_collaborators-bce97482-6a11-44e5-a112-29230b142636.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMembership/__files/repos_github-api-test-org_jenkins_collaborators-bce97482-6a11-44e5-a112-29230b142636.json new file mode 100644 index 0000000000..c46b751a5e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMembership/__files/repos_github-api-test-org_jenkins_collaborators-bce97482-6a11-44e5-a112-29230b142636.json @@ -0,0 +1,152 @@ +[ + { + "login": "kohsuke", + "id": 50003, + "node_id": "MDQ6VXNlcjUwMDAz", + "avatar_url": "https://avatars1.githubusercontent.com/u/50003?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kohsuke", + "html_url": "https://github.com/kohsuke", + "followers_url": "https://api.github.com/users/kohsuke/followers", + "following_url": "https://api.github.com/users/kohsuke/following{/other_user}", + "gists_url": "https://api.github.com/users/kohsuke/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kohsuke/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kohsuke/subscriptions", + "organizations_url": "https://api.github.com/users/kohsuke/orgs", + "repos_url": "https://api.github.com/users/kohsuke/repos", + "events_url": "https://api.github.com/users/kohsuke/events{/privacy}", + "received_events_url": "https://api.github.com/users/kohsuke/received_events", + "type": "User", + "site_admin": false, + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false, + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "login": "kohsuke2", + "id": 1329242, + "node_id": "MDQ6VXNlcjEzMjkyNDI=", + "avatar_url": "https://avatars2.githubusercontent.com/u/1329242?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kohsuke2", + "html_url": "https://github.com/kohsuke2", + "followers_url": "https://api.github.com/users/kohsuke2/followers", + "following_url": "https://api.github.com/users/kohsuke2/following{/other_user}", + "gists_url": "https://api.github.com/users/kohsuke2/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kohsuke2/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kohsuke2/subscriptions", + "organizations_url": "https://api.github.com/users/kohsuke2/orgs", + "repos_url": "https://api.github.com/users/kohsuke2/repos", + "events_url": "https://api.github.com/users/kohsuke2/events{/privacy}", + "received_events_url": "https://api.github.com/users/kohsuke2/received_events", + "type": "User", + "site_admin": false, + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "login": "jberglund-BSFT", + "id": 19560713, + "node_id": "MDQ6VXNlcjE5NTYwNzEz", + "avatar_url": "https://avatars3.githubusercontent.com/u/19560713?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jberglund-BSFT", + "html_url": "https://github.com/jberglund-BSFT", + "followers_url": "https://api.github.com/users/jberglund-BSFT/followers", + "following_url": "https://api.github.com/users/jberglund-BSFT/following{/other_user}", + "gists_url": "https://api.github.com/users/jberglund-BSFT/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jberglund-BSFT/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jberglund-BSFT/subscriptions", + "organizations_url": "https://api.github.com/users/jberglund-BSFT/orgs", + "repos_url": "https://api.github.com/users/jberglund-BSFT/repos", + "events_url": "https://api.github.com/users/jberglund-BSFT/events{/privacy}", + "received_events_url": "https://api.github.com/users/jberglund-BSFT/received_events", + "type": "User", + "site_admin": false, + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "login": "martinvanzijl", + "id": 24422213, + "node_id": "MDQ6VXNlcjI0NDIyMjEz", + "avatar_url": "https://avatars0.githubusercontent.com/u/24422213?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/martinvanzijl", + "html_url": "https://github.com/martinvanzijl", + "followers_url": "https://api.github.com/users/martinvanzijl/followers", + "following_url": "https://api.github.com/users/martinvanzijl/following{/other_user}", + "gists_url": "https://api.github.com/users/martinvanzijl/gists{/gist_id}", + "starred_url": "https://api.github.com/users/martinvanzijl/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/martinvanzijl/subscriptions", + "organizations_url": "https://api.github.com/users/martinvanzijl/orgs", + "repos_url": "https://api.github.com/users/martinvanzijl/repos", + "events_url": "https://api.github.com/users/martinvanzijl/events{/privacy}", + "received_events_url": "https://api.github.com/users/martinvanzijl/received_events", + "type": "User", + "site_admin": false, + "permissions": { + "admin": true, + "push": true, + "pull": true + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMembership/__files/user-4457eef8-0cad-4b2e-9639-85d62c8c474a.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMembership/__files/user-4457eef8-0cad-4b2e-9639-85d62c8c474a.json new file mode 100644 index 0000000000..a4b576e8a7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMembership/__files/user-4457eef8-0cad-4b2e-9639-85d62c8c474a.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 169, + "public_gists": 7, + "followers": 139, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMembership/mappings/orgs_github-api-test-org-2-f298a1.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMembership/mappings/orgs_github-api-test-org-2-f298a1.json new file mode 100644 index 0000000000..e982623e17 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMembership/mappings/orgs_github-api-test-org-2-f298a1.json @@ -0,0 +1,43 @@ +{ + "id": "f298a1b9-4064-46ad-928a-10ea257461d9", + "name": "orgs_github-api-test-org", + "request": { + "url": "/orgs/github-api-test-org", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_github-api-test-org-f298a1b9-4064-46ad-928a-10ea257461d9.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:27:30 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4439", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"bbee0a14a82ca84871298052e1bcb545\"", + "Last-Modified": "Mon, 20 Apr 2015 00:42:30 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CA8B:8340:ED0A49:116E03D:5DB3A102" + } + }, + "uuid": "f298a1b9-4064-46ad-928a-10ea257461d9", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMembership/mappings/repos_github-api-test-org_jenkins-3-e9db4f.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMembership/mappings/repos_github-api-test-org_jenkins-3-e9db4f.json new file mode 100644 index 0000000000..accc598a6d --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMembership/mappings/repos_github-api-test-org_jenkins-3-e9db4f.json @@ -0,0 +1,43 @@ +{ + "id": "e9db4f2d-55a2-498e-b3eb-d66b87b7b86b", + "name": "repos_github-api-test-org_jenkins", + "request": { + "url": "/repos/github-api-test-org/jenkins", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_jenkins-e9db4f2d-55a2-498e-b3eb-d66b87b7b86b.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:27:31 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4438", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"25c097d06bcfe5d2ac907141b83b63cd\"", + "Last-Modified": "Fri, 06 Sep 2019 23:21:35 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CA8B:8340:ED0A5D:116E05D:5DB3A102" + } + }, + "uuid": "e9db4f2d-55a2-498e-b3eb-d66b87b7b86b", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMembership/mappings/repos_github-api-test-org_jenkins_collaborators-4-bce974.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMembership/mappings/repos_github-api-test-org_jenkins_collaborators-4-bce974.json new file mode 100644 index 0000000000..1a8cea8b51 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMembership/mappings/repos_github-api-test-org_jenkins_collaborators-4-bce974.json @@ -0,0 +1,42 @@ +{ + "id": "bce97482-6a11-44e5-a112-29230b142636", + "name": "repos_github-api-test-org_jenkins_collaborators", + "request": { + "url": "/repos/github-api-test-org/jenkins/collaborators", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_jenkins_collaborators-bce97482-6a11-44e5-a112-29230b142636.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:27:31 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4437", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"a3be6bffa37c14d7f0232419d0357c86\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CA8B:8340:ED0A75:116E074:5DB3A103" + } + }, + "uuid": "bce97482-6a11-44e5-a112-29230b142636", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMembership/mappings/user-1-4457ee.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMembership/mappings/user-1-4457ee.json new file mode 100644 index 0000000000..216e02b60c --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMembership/mappings/user-1-4457ee.json @@ -0,0 +1,43 @@ +{ + "id": "4457eef8-0cad-4b2e-9639-85d62c8c474a", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-4457eef8-0cad-4b2e-9639-85d62c8c474a.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:27:30 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4441", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"8c3d3dcf6fc5f9edaf26c902295396e5\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CA8B:8340:ED0A37:116E02E:5DB3A102" + } + }, + "uuid": "4457eef8-0cad-4b2e-9639-85d62c8c474a", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyOrganizations/__files/user-a4cacc2c-726b-499a-bfdc-302f729fe6c2.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyOrganizations/__files/user-a4cacc2c-726b-499a-bfdc-302f729fe6c2.json new file mode 100644 index 0000000000..39d6c8353e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyOrganizations/__files/user-a4cacc2c-726b-499a-bfdc-302f729fe6c2.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 167, + "public_gists": 4, + "followers": 136, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyOrganizations/__files/user_orgs-2985ea8b-b43b-45ab-b2ce-162ca7bdb55f.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyOrganizations/__files/user_orgs-2985ea8b-b43b-45ab-b2ce-162ca7bdb55f.json new file mode 100644 index 0000000000..c4f218ad01 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyOrganizations/__files/user_orgs-2985ea8b-b43b-45ab-b2ce-162ca7bdb55f.json @@ -0,0 +1,142 @@ +[ + { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "url": "https://api.github.com/orgs/jenkinsci", + "repos_url": "https://api.github.com/orgs/jenkinsci/repos", + "events_url": "https://api.github.com/orgs/jenkinsci/events", + "hooks_url": "https://api.github.com/orgs/jenkinsci/hooks", + "issues_url": "https://api.github.com/orgs/jenkinsci/issues", + "members_url": "https://api.github.com/orgs/jenkinsci/members{/member}", + "public_members_url": "https://api.github.com/orgs/jenkinsci/public_members{/member}", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "description": "Jenkins is an open source automation server with an unparalleled plugin ecosystem to support practically every tool as part of your delivery pipelines" + }, + { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "url": "https://api.github.com/orgs/cloudbees", + "repos_url": "https://api.github.com/orgs/cloudbees/repos", + "events_url": "https://api.github.com/orgs/cloudbees/events", + "hooks_url": "https://api.github.com/orgs/cloudbees/hooks", + "issues_url": "https://api.github.com/orgs/cloudbees/issues", + "members_url": "https://api.github.com/orgs/cloudbees/members{/member}", + "public_members_url": "https://api.github.com/orgs/cloudbees/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "description": "" + }, + { + "login": "beautify-web", + "id": 6538164, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjY1MzgxNjQ=", + "url": "https://api.github.com/orgs/beautify-web", + "repos_url": "https://api.github.com/orgs/beautify-web/repos", + "events_url": "https://api.github.com/orgs/beautify-web/events", + "hooks_url": "https://api.github.com/orgs/beautify-web/hooks", + "issues_url": "https://api.github.com/orgs/beautify-web/issues", + "members_url": "https://api.github.com/orgs/beautify-web/members{/member}", + "public_members_url": "https://api.github.com/orgs/beautify-web/public_members{/member}", + "avatar_url": "https://avatars1.githubusercontent.com/u/6538164?v=4", + "description": null + }, + { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "url": "https://api.github.com/orgs/jenkins-infra", + "repos_url": "https://api.github.com/orgs/jenkins-infra/repos", + "events_url": "https://api.github.com/orgs/jenkins-infra/events", + "hooks_url": "https://api.github.com/orgs/jenkins-infra/hooks", + "issues_url": "https://api.github.com/orgs/jenkins-infra/issues", + "members_url": "https://api.github.com/orgs/jenkins-infra/members{/member}", + "public_members_url": "https://api.github.com/orgs/jenkins-infra/public_members{/member}", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "description": "Repositories owned by the Jenkins project infrastructure team" + }, + { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "url": "https://api.github.com/orgs/github-api-test-org", + "repos_url": "https://api.github.com/orgs/github-api-test-org/repos", + "events_url": "https://api.github.com/orgs/github-api-test-org/events", + "hooks_url": "https://api.github.com/orgs/github-api-test-org/hooks", + "issues_url": "https://api.github.com/orgs/github-api-test-org/issues", + "members_url": "https://api.github.com/orgs/github-api-test-org/members{/member}", + "public_members_url": "https://api.github.com/orgs/github-api-test-org/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "description": null + }, + { + "login": "jenkins-inc", + "id": 17552794, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE3NTUyNzk0", + "url": "https://api.github.com/orgs/jenkins-inc", + "repos_url": "https://api.github.com/orgs/jenkins-inc/repos", + "events_url": "https://api.github.com/orgs/jenkins-inc/events", + "hooks_url": "https://api.github.com/orgs/jenkins-inc/hooks", + "issues_url": "https://api.github.com/orgs/jenkins-inc/issues", + "members_url": "https://api.github.com/orgs/jenkins-inc/members{/member}", + "public_members_url": "https://api.github.com/orgs/jenkins-inc/public_members{/member}", + "avatar_url": "https://avatars0.githubusercontent.com/u/17552794?v=4", + "description": "A fictional company to demonstrate Jenkins capabilities" + }, + { + "login": "beautifier", + "id": 22065016, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIyMDY1MDE2", + "url": "https://api.github.com/orgs/beautifier", + "repos_url": "https://api.github.com/orgs/beautifier/repos", + "events_url": "https://api.github.com/orgs/beautifier/events", + "hooks_url": "https://api.github.com/orgs/beautifier/hooks", + "issues_url": "https://api.github.com/orgs/beautifier/issues", + "members_url": "https://api.github.com/orgs/beautifier/members{/member}", + "public_members_url": "https://api.github.com/orgs/beautifier/public_members{/member}", + "avatar_url": "https://avatars1.githubusercontent.com/u/22065016?v=4", + "description": null + }, + { + "login": "jenkins-docs", + "id": 24830755, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjI0ODMwNzU1", + "url": "https://api.github.com/orgs/jenkins-docs", + "repos_url": "https://api.github.com/orgs/jenkins-docs/repos", + "events_url": "https://api.github.com/orgs/jenkins-docs/events", + "hooks_url": "https://api.github.com/orgs/jenkins-docs/hooks", + "issues_url": "https://api.github.com/orgs/jenkins-docs/issues", + "members_url": "https://api.github.com/orgs/jenkins-docs/members{/member}", + "public_members_url": "https://api.github.com/orgs/jenkins-docs/public_members{/member}", + "avatar_url": "https://avatars1.githubusercontent.com/u/24830755?v=4", + "description": "Collection of docs, tutorials and relevant repositories" + }, + { + "login": "bitwise-jenkins", + "id": 24939347, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjI0OTM5MzQ3", + "url": "https://api.github.com/orgs/bitwise-jenkins", + "repos_url": "https://api.github.com/orgs/bitwise-jenkins/repos", + "events_url": "https://api.github.com/orgs/bitwise-jenkins/events", + "hooks_url": "https://api.github.com/orgs/bitwise-jenkins/hooks", + "issues_url": "https://api.github.com/orgs/bitwise-jenkins/issues", + "members_url": "https://api.github.com/orgs/bitwise-jenkins/members{/member}", + "public_members_url": "https://api.github.com/orgs/bitwise-jenkins/public_members{/member}", + "avatar_url": "https://avatars2.githubusercontent.com/u/24939347?v=4", + "description": null + }, + { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "url": "https://api.github.com/orgs/github-api", + "repos_url": "https://api.github.com/orgs/github-api/repos", + "events_url": "https://api.github.com/orgs/github-api/events", + "hooks_url": "https://api.github.com/orgs/github-api/hooks", + "issues_url": "https://api.github.com/orgs/github-api/issues", + "members_url": "https://api.github.com/orgs/github-api/members{/member}", + "public_members_url": "https://api.github.com/orgs/github-api/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "description": null + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyOrganizations/mappings/user-2-a4cacc.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyOrganizations/mappings/user-2-a4cacc.json new file mode 100644 index 0000000000..7ed6e74a17 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyOrganizations/mappings/user-2-a4cacc.json @@ -0,0 +1,43 @@ +{ + "id": "a4cacc2c-726b-499a-bfdc-302f729fe6c2", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-a4cacc2c-726b-499a-bfdc-302f729fe6c2.json", + "headers": { + "Date": "Thu, 03 Oct 2019 18:57:32 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4801", + "X-RateLimit-Reset": "1570132527", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"cf6199fecf47b59c42190e1e11147ee2\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F38E:78ED:14A4A9D:1891143:5D96449C" + } + }, + "uuid": "a4cacc2c-726b-499a-bfdc-302f729fe6c2", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyOrganizations/mappings/user_orgs-1-2985ea.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyOrganizations/mappings/user_orgs-1-2985ea.json new file mode 100644 index 0000000000..14ce685fba --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyOrganizations/mappings/user_orgs-1-2985ea.json @@ -0,0 +1,42 @@ +{ + "id": "2985ea8b-b43b-45ab-b2ce-162ca7bdb55f", + "name": "user_orgs", + "request": { + "url": "/user/orgs", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user_orgs-2985ea8b-b43b-45ab-b2ce-162ca7bdb55f.json", + "headers": { + "Date": "Wed, 02 Oct 2019 21:39:57 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4965", + "X-RateLimit-Reset": "1570055937", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"03bf52007c5043e8a9dc44a8d12582b8\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C2B6:957A:C7FCCC:EECC87:5D95192C" + } + }, + "uuid": "2985ea8b-b43b-45ab-b2ce-162ca7bdb55f", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyOrganizationsContainMyTeams/__files/user-fd1c2585-40a5-4ae9-85b5-5ab28ed9379e.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyOrganizationsContainMyTeams/__files/user-fd1c2585-40a5-4ae9-85b5-5ab28ed9379e.json new file mode 100644 index 0000000000..39d6c8353e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyOrganizationsContainMyTeams/__files/user-fd1c2585-40a5-4ae9-85b5-5ab28ed9379e.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 167, + "public_gists": 4, + "followers": 136, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyOrganizationsContainMyTeams/__files/user_orgs-f3813253-5f7d-47c0-91e0-35803e96fe36.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyOrganizationsContainMyTeams/__files/user_orgs-f3813253-5f7d-47c0-91e0-35803e96fe36.json new file mode 100644 index 0000000000..c4f218ad01 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyOrganizationsContainMyTeams/__files/user_orgs-f3813253-5f7d-47c0-91e0-35803e96fe36.json @@ -0,0 +1,142 @@ +[ + { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "url": "https://api.github.com/orgs/jenkinsci", + "repos_url": "https://api.github.com/orgs/jenkinsci/repos", + "events_url": "https://api.github.com/orgs/jenkinsci/events", + "hooks_url": "https://api.github.com/orgs/jenkinsci/hooks", + "issues_url": "https://api.github.com/orgs/jenkinsci/issues", + "members_url": "https://api.github.com/orgs/jenkinsci/members{/member}", + "public_members_url": "https://api.github.com/orgs/jenkinsci/public_members{/member}", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "description": "Jenkins is an open source automation server with an unparalleled plugin ecosystem to support practically every tool as part of your delivery pipelines" + }, + { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "url": "https://api.github.com/orgs/cloudbees", + "repos_url": "https://api.github.com/orgs/cloudbees/repos", + "events_url": "https://api.github.com/orgs/cloudbees/events", + "hooks_url": "https://api.github.com/orgs/cloudbees/hooks", + "issues_url": "https://api.github.com/orgs/cloudbees/issues", + "members_url": "https://api.github.com/orgs/cloudbees/members{/member}", + "public_members_url": "https://api.github.com/orgs/cloudbees/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "description": "" + }, + { + "login": "beautify-web", + "id": 6538164, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjY1MzgxNjQ=", + "url": "https://api.github.com/orgs/beautify-web", + "repos_url": "https://api.github.com/orgs/beautify-web/repos", + "events_url": "https://api.github.com/orgs/beautify-web/events", + "hooks_url": "https://api.github.com/orgs/beautify-web/hooks", + "issues_url": "https://api.github.com/orgs/beautify-web/issues", + "members_url": "https://api.github.com/orgs/beautify-web/members{/member}", + "public_members_url": "https://api.github.com/orgs/beautify-web/public_members{/member}", + "avatar_url": "https://avatars1.githubusercontent.com/u/6538164?v=4", + "description": null + }, + { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "url": "https://api.github.com/orgs/jenkins-infra", + "repos_url": "https://api.github.com/orgs/jenkins-infra/repos", + "events_url": "https://api.github.com/orgs/jenkins-infra/events", + "hooks_url": "https://api.github.com/orgs/jenkins-infra/hooks", + "issues_url": "https://api.github.com/orgs/jenkins-infra/issues", + "members_url": "https://api.github.com/orgs/jenkins-infra/members{/member}", + "public_members_url": "https://api.github.com/orgs/jenkins-infra/public_members{/member}", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "description": "Repositories owned by the Jenkins project infrastructure team" + }, + { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "url": "https://api.github.com/orgs/github-api-test-org", + "repos_url": "https://api.github.com/orgs/github-api-test-org/repos", + "events_url": "https://api.github.com/orgs/github-api-test-org/events", + "hooks_url": "https://api.github.com/orgs/github-api-test-org/hooks", + "issues_url": "https://api.github.com/orgs/github-api-test-org/issues", + "members_url": "https://api.github.com/orgs/github-api-test-org/members{/member}", + "public_members_url": "https://api.github.com/orgs/github-api-test-org/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "description": null + }, + { + "login": "jenkins-inc", + "id": 17552794, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE3NTUyNzk0", + "url": "https://api.github.com/orgs/jenkins-inc", + "repos_url": "https://api.github.com/orgs/jenkins-inc/repos", + "events_url": "https://api.github.com/orgs/jenkins-inc/events", + "hooks_url": "https://api.github.com/orgs/jenkins-inc/hooks", + "issues_url": "https://api.github.com/orgs/jenkins-inc/issues", + "members_url": "https://api.github.com/orgs/jenkins-inc/members{/member}", + "public_members_url": "https://api.github.com/orgs/jenkins-inc/public_members{/member}", + "avatar_url": "https://avatars0.githubusercontent.com/u/17552794?v=4", + "description": "A fictional company to demonstrate Jenkins capabilities" + }, + { + "login": "beautifier", + "id": 22065016, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIyMDY1MDE2", + "url": "https://api.github.com/orgs/beautifier", + "repos_url": "https://api.github.com/orgs/beautifier/repos", + "events_url": "https://api.github.com/orgs/beautifier/events", + "hooks_url": "https://api.github.com/orgs/beautifier/hooks", + "issues_url": "https://api.github.com/orgs/beautifier/issues", + "members_url": "https://api.github.com/orgs/beautifier/members{/member}", + "public_members_url": "https://api.github.com/orgs/beautifier/public_members{/member}", + "avatar_url": "https://avatars1.githubusercontent.com/u/22065016?v=4", + "description": null + }, + { + "login": "jenkins-docs", + "id": 24830755, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjI0ODMwNzU1", + "url": "https://api.github.com/orgs/jenkins-docs", + "repos_url": "https://api.github.com/orgs/jenkins-docs/repos", + "events_url": "https://api.github.com/orgs/jenkins-docs/events", + "hooks_url": "https://api.github.com/orgs/jenkins-docs/hooks", + "issues_url": "https://api.github.com/orgs/jenkins-docs/issues", + "members_url": "https://api.github.com/orgs/jenkins-docs/members{/member}", + "public_members_url": "https://api.github.com/orgs/jenkins-docs/public_members{/member}", + "avatar_url": "https://avatars1.githubusercontent.com/u/24830755?v=4", + "description": "Collection of docs, tutorials and relevant repositories" + }, + { + "login": "bitwise-jenkins", + "id": 24939347, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjI0OTM5MzQ3", + "url": "https://api.github.com/orgs/bitwise-jenkins", + "repos_url": "https://api.github.com/orgs/bitwise-jenkins/repos", + "events_url": "https://api.github.com/orgs/bitwise-jenkins/events", + "hooks_url": "https://api.github.com/orgs/bitwise-jenkins/hooks", + "issues_url": "https://api.github.com/orgs/bitwise-jenkins/issues", + "members_url": "https://api.github.com/orgs/bitwise-jenkins/members{/member}", + "public_members_url": "https://api.github.com/orgs/bitwise-jenkins/public_members{/member}", + "avatar_url": "https://avatars2.githubusercontent.com/u/24939347?v=4", + "description": null + }, + { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "url": "https://api.github.com/orgs/github-api", + "repos_url": "https://api.github.com/orgs/github-api/repos", + "events_url": "https://api.github.com/orgs/github-api/events", + "hooks_url": "https://api.github.com/orgs/github-api/hooks", + "issues_url": "https://api.github.com/orgs/github-api/issues", + "members_url": "https://api.github.com/orgs/github-api/members{/member}", + "public_members_url": "https://api.github.com/orgs/github-api/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "description": null + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyOrganizationsContainMyTeams/__files/user_teams-49ff8dab-d286-4880-8c78-367cb7c360a2.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyOrganizationsContainMyTeams/__files/user_teams-49ff8dab-d286-4880-8c78-367cb7c360a2.json new file mode 100644 index 0000000000..019f45baa1 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyOrganizationsContainMyTeams/__files/user_teams-49ff8dab-d286-4880-8c78-367cb7c360a2.json @@ -0,0 +1,1214 @@ +[ + { + "name": "scm-api-plugin Developers", + "id": 496711, + "node_id": "MDQ6VGVhbTQ5NjcxMQ==", + "slug": "scm-api-plugin-developers", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/496711", + "html_url": "https://github.com/orgs/jenkinsci/teams/scm-api-plugin-developers", + "members_url": "https://api.github.com/teams/496711/members{/member}", + "repositories_url": "https://api.github.com/teams/496711/repos", + "permission": "pull", + "created_at": "2013-09-09T21:29:09Z", + "updated_at": "2015-12-15T16:43:11Z", + "members_count": 4, + "repos_count": 1, + "organization": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "url": "https://api.github.com/orgs/jenkinsci", + "repos_url": "https://api.github.com/orgs/jenkinsci/repos", + "events_url": "https://api.github.com/orgs/jenkinsci/events", + "hooks_url": "https://api.github.com/orgs/jenkinsci/hooks", + "issues_url": "https://api.github.com/orgs/jenkinsci/issues", + "members_url": "https://api.github.com/orgs/jenkinsci/members{/member}", + "public_members_url": "https://api.github.com/orgs/jenkinsci/public_members{/member}", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "description": "Jenkins is an open source automation server with an unparalleled plugin ecosystem to support practically every tool as part of your delivery pipelines", + "name": "Jenkins", + "company": null, + "blog": "https://jenkins.io", + "location": "Santa Clara, CA", + "email": "jenkinsci-users@googlegroups.com", + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 2192, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/jenkinsci", + "created_at": "2009-07-21T21:03:50Z", + "updated_at": "2019-02-25T15:26:10Z", + "type": "Organization" + } + }, + { + "name": "Owners", + "id": 663296, + "node_id": "MDQ6VGVhbTY2MzI5Ng==", + "slug": "owners", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/663296", + "html_url": "https://github.com/orgs/beautify-web/teams/owners", + "members_url": "https://api.github.com/teams/663296/members{/member}", + "repositories_url": "https://api.github.com/teams/663296/repos", + "permission": "admin", + "created_at": "2014-01-29T19:42:53Z", + "updated_at": "2014-01-29T19:42:53Z", + "members_count": 2, + "repos_count": 1, + "organization": { + "login": "beautify-web", + "id": 6538164, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjY1MzgxNjQ=", + "url": "https://api.github.com/orgs/beautify-web", + "repos_url": "https://api.github.com/orgs/beautify-web/repos", + "events_url": "https://api.github.com/orgs/beautify-web/events", + "hooks_url": "https://api.github.com/orgs/beautify-web/hooks", + "issues_url": "https://api.github.com/orgs/beautify-web/issues", + "members_url": "https://api.github.com/orgs/beautify-web/members{/member}", + "public_members_url": "https://api.github.com/orgs/beautify-web/public_members{/member}", + "avatar_url": "https://avatars1.githubusercontent.com/u/6538164?v=4", + "description": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 1, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/beautify-web", + "created_at": "2014-01-29T19:42:53Z", + "updated_at": "2019-09-20T14:31:51Z", + "type": "Organization" + } + }, + { + "name": "script-security-plugin Developers", + "id": 711073, + "node_id": "MDQ6VGVhbTcxMTA3Mw==", + "slug": "script-security-plugin-developers", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/711073", + "html_url": "https://github.com/orgs/jenkinsci/teams/script-security-plugin-developers", + "members_url": "https://api.github.com/teams/711073/members{/member}", + "repositories_url": "https://api.github.com/teams/711073/repos", + "permission": "pull", + "created_at": "2014-02-28T22:18:37Z", + "updated_at": "2015-12-15T16:43:11Z", + "members_count": 6, + "repos_count": 1, + "organization": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "url": "https://api.github.com/orgs/jenkinsci", + "repos_url": "https://api.github.com/orgs/jenkinsci/repos", + "events_url": "https://api.github.com/orgs/jenkinsci/events", + "hooks_url": "https://api.github.com/orgs/jenkinsci/hooks", + "issues_url": "https://api.github.com/orgs/jenkinsci/issues", + "members_url": "https://api.github.com/orgs/jenkinsci/members{/member}", + "public_members_url": "https://api.github.com/orgs/jenkinsci/public_members{/member}", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "description": "Jenkins is an open source automation server with an unparalleled plugin ecosystem to support practically every tool as part of your delivery pipelines", + "name": "Jenkins", + "company": null, + "blog": "https://jenkins.io", + "location": "Santa Clara, CA", + "email": "jenkinsci-users@googlegroups.com", + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 2192, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/jenkinsci", + "created_at": "2009-07-21T21:03:50Z", + "updated_at": "2019-02-25T15:26:10Z", + "type": "Organization" + } + }, + { + "name": "Owners", + "id": 820404, + "node_id": "MDQ6VGVhbTgyMDQwNA==", + "slug": "owners", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/820404", + "html_url": "https://github.com/orgs/github-api-test-org/teams/owners", + "members_url": "https://api.github.com/teams/820404/members{/member}", + "repositories_url": "https://api.github.com/teams/820404/repos", + "permission": "admin", + "created_at": "2014-05-10T19:39:11Z", + "updated_at": "2014-05-10T19:39:11Z", + "members_count": 3, + "repos_count": 6, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "url": "https://api.github.com/orgs/github-api-test-org", + "repos_url": "https://api.github.com/orgs/github-api-test-org/repos", + "events_url": "https://api.github.com/orgs/github-api-test-org/events", + "hooks_url": "https://api.github.com/orgs/github-api-test-org/hooks", + "issues_url": "https://api.github.com/orgs/github-api-test-org/issues", + "members_url": "https://api.github.com/orgs/github-api-test-org/members{/member}", + "public_members_url": "https://api.github.com/orgs/github-api-test-org/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "description": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 10, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/github-api-test-org", + "created_at": "2014-05-10T19:39:11Z", + "updated_at": "2015-04-20T00:42:30Z", + "type": "Organization" + } + }, + { + "name": "team-documentation", + "id": 879403, + "node_id": "MDQ6VGVhbTg3OTQwMw==", + "slug": "team-documentation", + "description": "People who can contribute to documentation", + "privacy": "closed", + "url": "https://api.github.com/teams/879403", + "html_url": "https://github.com/orgs/cloudbees/teams/team-documentation", + "members_url": "https://api.github.com/teams/879403/members{/member}", + "repositories_url": "https://api.github.com/teams/879403/repos", + "permission": "push", + "created_at": "2014-06-19T14:19:24Z", + "updated_at": "2015-08-20T05:46:39Z", + "members_count": 49, + "repos_count": 13, + "organization": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "url": "https://api.github.com/orgs/cloudbees", + "repos_url": "https://api.github.com/orgs/cloudbees/repos", + "events_url": "https://api.github.com/orgs/cloudbees/events", + "hooks_url": "https://api.github.com/orgs/cloudbees/hooks", + "issues_url": "https://api.github.com/orgs/cloudbees/issues", + "members_url": "https://api.github.com/orgs/cloudbees/members{/member}", + "public_members_url": "https://api.github.com/orgs/cloudbees/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "description": "", + "name": "CloudBees", + "company": null, + "blog": "https://www.cloudbees.com/", + "location": null, + "email": null, + "is_verified": true, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 130, + "public_gists": 4, + "followers": 0, + "following": 0, + "html_url": "https://github.com/cloudbees", + "created_at": "2010-04-02T07:24:48Z", + "updated_at": "2018-07-26T22:36:42Z", + "type": "Organization" + } + }, + { + "name": "team-infra-cloudbees-employees", + "id": 1450069, + "node_id": "MDQ6VGVhbTE0NTAwNjk=", + "slug": "team-infra-cloudbees-employees", + "description": "CloudBees employees - simple group that grants read access.", + "privacy": "closed", + "url": "https://api.github.com/teams/1450069", + "html_url": "https://github.com/orgs/cloudbees/teams/team-infra-cloudbees-employees", + "members_url": "https://api.github.com/teams/1450069/members{/member}", + "repositories_url": "https://api.github.com/teams/1450069/repos", + "permission": "pull", + "created_at": "2015-04-20T12:49:53Z", + "updated_at": "2015-09-26T22:31:23Z", + "members_count": 298, + "repos_count": 579, + "organization": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "url": "https://api.github.com/orgs/cloudbees", + "repos_url": "https://api.github.com/orgs/cloudbees/repos", + "events_url": "https://api.github.com/orgs/cloudbees/events", + "hooks_url": "https://api.github.com/orgs/cloudbees/hooks", + "issues_url": "https://api.github.com/orgs/cloudbees/issues", + "members_url": "https://api.github.com/orgs/cloudbees/members{/member}", + "public_members_url": "https://api.github.com/orgs/cloudbees/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "description": "", + "name": "CloudBees", + "company": null, + "blog": "https://www.cloudbees.com/", + "location": null, + "email": null, + "is_verified": true, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 130, + "public_gists": 4, + "followers": 0, + "following": 0, + "html_url": "https://github.com/cloudbees", + "created_at": "2010-04-02T07:24:48Z", + "updated_at": "2018-07-26T22:36:42Z", + "type": "Organization" + } + }, + { + "name": "github-branch-source-plugin Developers", + "id": 1809126, + "node_id": "MDQ6VGVhbTE4MDkxMjY=", + "slug": "github-branch-source-plugin-developers", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/1809126", + "html_url": "https://github.com/orgs/jenkinsci/teams/github-branch-source-plugin-developers", + "members_url": "https://api.github.com/teams/1809126/members{/member}", + "repositories_url": "https://api.github.com/teams/1809126/repos", + "permission": "pull", + "created_at": "2015-10-08T16:52:29Z", + "updated_at": "2015-12-15T16:43:08Z", + "members_count": 6, + "repos_count": 1, + "organization": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "url": "https://api.github.com/orgs/jenkinsci", + "repos_url": "https://api.github.com/orgs/jenkinsci/repos", + "events_url": "https://api.github.com/orgs/jenkinsci/events", + "hooks_url": "https://api.github.com/orgs/jenkinsci/hooks", + "issues_url": "https://api.github.com/orgs/jenkinsci/issues", + "members_url": "https://api.github.com/orgs/jenkinsci/members{/member}", + "public_members_url": "https://api.github.com/orgs/jenkinsci/public_members{/member}", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "description": "Jenkins is an open source automation server with an unparalleled plugin ecosystem to support practically every tool as part of your delivery pipelines", + "name": "Jenkins", + "company": null, + "blog": "https://jenkins.io", + "location": "Santa Clara, CA", + "email": "jenkinsci-users@googlegroups.com", + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 2192, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/jenkinsci", + "created_at": "2009-07-21T21:03:50Z", + "updated_at": "2019-02-25T15:26:10Z", + "type": "Organization" + } + }, + { + "name": "Copy Editors", + "id": 1882929, + "node_id": "MDQ6VGVhbTE4ODI5Mjk=", + "slug": "copy-editors", + "description": "Team of contributors who can act as reviewers and editors for content", + "privacy": "closed", + "url": "https://api.github.com/teams/1882929", + "html_url": "https://github.com/orgs/jenkins-infra/teams/copy-editors", + "members_url": "https://api.github.com/teams/1882929/members{/member}", + "repositories_url": "https://api.github.com/teams/1882929/repos", + "permission": "pull", + "created_at": "2016-01-04T18:02:41Z", + "updated_at": "2016-01-04T18:02:41Z", + "members_count": 12, + "repos_count": 2, + "organization": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "url": "https://api.github.com/orgs/jenkins-infra", + "repos_url": "https://api.github.com/orgs/jenkins-infra/repos", + "events_url": "https://api.github.com/orgs/jenkins-infra/events", + "hooks_url": "https://api.github.com/orgs/jenkins-infra/hooks", + "issues_url": "https://api.github.com/orgs/jenkins-infra/issues", + "members_url": "https://api.github.com/orgs/jenkins-infra/members{/member}", + "public_members_url": "https://api.github.com/orgs/jenkins-infra/public_members{/member}", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "description": "Repositories owned by the Jenkins project infrastructure team", + "name": "Jenkins Infra", + "company": null, + "blog": null, + "location": null, + "email": "infra@lists.jenkins-ci.org", + "is_verified": false, + "has_organization_projects": false, + "has_repository_projects": false, + "public_repos": 75, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/jenkins-infra", + "created_at": "2014-04-27T19:47:26Z", + "updated_at": "2018-08-07T02:50:50Z", + "type": "Organization" + } + }, + { + "name": "Engineering", + "id": 1941826, + "node_id": "MDQ6VGVhbTE5NDE4MjY=", + "slug": "engineering", + "description": "Jenkins, Inc. engineering team", + "privacy": "closed", + "url": "https://api.github.com/teams/1941826", + "html_url": "https://github.com/orgs/jenkins-inc/teams/engineering", + "members_url": "https://api.github.com/teams/1941826/members{/member}", + "repositories_url": "https://api.github.com/teams/1941826/repos", + "permission": "pull", + "created_at": "2016-02-29T18:10:14Z", + "updated_at": "2016-02-29T18:10:14Z", + "members_count": 9, + "repos_count": 4, + "organization": { + "login": "jenkins-inc", + "id": 17552794, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE3NTUyNzk0", + "url": "https://api.github.com/orgs/jenkins-inc", + "repos_url": "https://api.github.com/orgs/jenkins-inc/repos", + "events_url": "https://api.github.com/orgs/jenkins-inc/events", + "hooks_url": "https://api.github.com/orgs/jenkins-inc/hooks", + "issues_url": "https://api.github.com/orgs/jenkins-inc/issues", + "members_url": "https://api.github.com/orgs/jenkins-inc/members{/member}", + "public_members_url": "https://api.github.com/orgs/jenkins-inc/public_members{/member}", + "avatar_url": "https://avatars0.githubusercontent.com/u/17552794?v=4", + "description": "A fictional company to demonstrate Jenkins capabilities", + "name": "Jenkins, Inc.", + "company": null, + "blog": "http://demo.jenkins-ci.org/", + "location": "Everywhere", + "email": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 7, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/jenkins-inc", + "created_at": "2016-02-29T18:02:13Z", + "updated_at": "2016-02-29T18:11:10Z", + "type": "Organization" + } + }, + { + "name": "workflow-cps-plugin Developers", + "id": 1986920, + "node_id": "MDQ6VGVhbTE5ODY5MjA=", + "slug": "workflow-cps-plugin-developers", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/1986920", + "html_url": "https://github.com/orgs/jenkinsci/teams/workflow-cps-plugin-developers", + "members_url": "https://api.github.com/teams/1986920/members{/member}", + "repositories_url": "https://api.github.com/teams/1986920/repos", + "permission": "pull", + "created_at": "2016-04-05T20:24:45Z", + "updated_at": "2016-09-21T17:56:50Z", + "members_count": 7, + "repos_count": 1, + "organization": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "url": "https://api.github.com/orgs/jenkinsci", + "repos_url": "https://api.github.com/orgs/jenkinsci/repos", + "events_url": "https://api.github.com/orgs/jenkinsci/events", + "hooks_url": "https://api.github.com/orgs/jenkinsci/hooks", + "issues_url": "https://api.github.com/orgs/jenkinsci/issues", + "members_url": "https://api.github.com/orgs/jenkinsci/members{/member}", + "public_members_url": "https://api.github.com/orgs/jenkinsci/public_members{/member}", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "description": "Jenkins is an open source automation server with an unparalleled plugin ecosystem to support practically every tool as part of your delivery pipelines", + "name": "Jenkins", + "company": null, + "blog": "https://jenkins.io", + "location": "Santa Clara, CA", + "email": "jenkinsci-users@googlegroups.com", + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 2192, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/jenkinsci", + "created_at": "2009-07-21T21:03:50Z", + "updated_at": "2019-02-25T15:26:10Z", + "type": "Organization" + } + }, + { + "name": "Legacy Training Contributors", + "id": 2070581, + "node_id": "MDQ6VGVhbTIwNzA1ODE=", + "slug": "legacy-training-contributors", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2070581", + "html_url": "https://github.com/orgs/cloudbees/teams/legacy-training-contributors", + "members_url": "https://api.github.com/teams/2070581/members{/member}", + "repositories_url": "https://api.github.com/teams/2070581/repos", + "permission": "pull", + "created_at": "2016-07-11T05:03:26Z", + "updated_at": "2019-01-08T18:15:21Z", + "members_count": 12, + "repos_count": 23, + "organization": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "url": "https://api.github.com/orgs/cloudbees", + "repos_url": "https://api.github.com/orgs/cloudbees/repos", + "events_url": "https://api.github.com/orgs/cloudbees/events", + "hooks_url": "https://api.github.com/orgs/cloudbees/hooks", + "issues_url": "https://api.github.com/orgs/cloudbees/issues", + "members_url": "https://api.github.com/orgs/cloudbees/members{/member}", + "public_members_url": "https://api.github.com/orgs/cloudbees/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "description": "", + "name": "CloudBees", + "company": null, + "blog": "https://www.cloudbees.com/", + "location": null, + "email": null, + "is_verified": true, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 130, + "public_gists": 4, + "followers": 0, + "following": 0, + "html_url": "https://github.com/cloudbees", + "created_at": "2010-04-02T07:24:48Z", + "updated_at": "2018-07-26T22:36:42Z", + "type": "Organization" + } + }, + { + "name": "pipeline-model-definition-plugin Developers", + "id": 2185547, + "node_id": "MDQ6VGVhbTIxODU1NDc=", + "slug": "pipeline-model-definition-plugin-developers", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/2185547", + "html_url": "https://github.com/orgs/jenkinsci/teams/pipeline-model-definition-plugin-developers", + "members_url": "https://api.github.com/teams/2185547/members{/member}", + "repositories_url": "https://api.github.com/teams/2185547/repos", + "permission": "pull", + "created_at": "2016-11-11T21:47:47Z", + "updated_at": "2016-11-25T18:50:15Z", + "members_count": 6, + "repos_count": 1, + "organization": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "url": "https://api.github.com/orgs/jenkinsci", + "repos_url": "https://api.github.com/orgs/jenkinsci/repos", + "events_url": "https://api.github.com/orgs/jenkinsci/events", + "hooks_url": "https://api.github.com/orgs/jenkinsci/hooks", + "issues_url": "https://api.github.com/orgs/jenkinsci/issues", + "members_url": "https://api.github.com/orgs/jenkinsci/members{/member}", + "public_members_url": "https://api.github.com/orgs/jenkinsci/public_members{/member}", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "description": "Jenkins is an open source automation server with an unparalleled plugin ecosystem to support practically every tool as part of your delivery pipelines", + "name": "Jenkins", + "company": null, + "blog": "https://jenkins.io", + "location": "Santa Clara, CA", + "email": "jenkinsci-users@googlegroups.com", + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 2192, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/jenkinsci", + "created_at": "2009-07-21T21:03:50Z", + "updated_at": "2019-02-25T15:26:10Z", + "type": "Organization" + } + }, + { + "name": "docs", + "id": 2188150, + "node_id": "MDQ6VGVhbTIxODgxNTA=", + "slug": "docs", + "description": "Documentation team", + "privacy": "closed", + "url": "https://api.github.com/teams/2188150", + "html_url": "https://github.com/orgs/jenkins-infra/teams/docs", + "members_url": "https://api.github.com/teams/2188150/members{/member}", + "repositories_url": "https://api.github.com/teams/2188150/repos", + "permission": "pull", + "created_at": "2016-11-15T17:53:23Z", + "updated_at": "2016-11-15T17:53:23Z", + "members_count": 5, + "repos_count": 3, + "organization": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "url": "https://api.github.com/orgs/jenkins-infra", + "repos_url": "https://api.github.com/orgs/jenkins-infra/repos", + "events_url": "https://api.github.com/orgs/jenkins-infra/events", + "hooks_url": "https://api.github.com/orgs/jenkins-infra/hooks", + "issues_url": "https://api.github.com/orgs/jenkins-infra/issues", + "members_url": "https://api.github.com/orgs/jenkins-infra/members{/member}", + "public_members_url": "https://api.github.com/orgs/jenkins-infra/public_members{/member}", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "description": "Repositories owned by the Jenkins project infrastructure team", + "name": "Jenkins Infra", + "company": null, + "blog": null, + "location": null, + "email": "infra@lists.jenkins-ci.org", + "is_verified": false, + "has_organization_projects": false, + "has_repository_projects": false, + "public_repos": 75, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/jenkins-infra", + "created_at": "2014-04-27T19:47:26Z", + "updated_at": "2018-08-07T02:50:50Z", + "type": "Organization" + } + }, + { + "name": "site-authors", + "id": 2278154, + "node_id": "MDQ6VGVhbTIyNzgxNTQ=", + "slug": "site-authors", + "description": "Collection of people who work on or write portions of jenkins.io", + "privacy": "closed", + "url": "https://api.github.com/teams/2278154", + "html_url": "https://github.com/orgs/jenkins-infra/teams/site-authors", + "members_url": "https://api.github.com/teams/2278154/members{/member}", + "repositories_url": "https://api.github.com/teams/2278154/repos", + "permission": "pull", + "created_at": "2017-02-21T15:40:21Z", + "updated_at": "2017-02-21T15:40:21Z", + "members_count": 5, + "repos_count": 1, + "organization": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "url": "https://api.github.com/orgs/jenkins-infra", + "repos_url": "https://api.github.com/orgs/jenkins-infra/repos", + "events_url": "https://api.github.com/orgs/jenkins-infra/events", + "hooks_url": "https://api.github.com/orgs/jenkins-infra/hooks", + "issues_url": "https://api.github.com/orgs/jenkins-infra/issues", + "members_url": "https://api.github.com/orgs/jenkins-infra/members{/member}", + "public_members_url": "https://api.github.com/orgs/jenkins-infra/public_members{/member}", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "description": "Repositories owned by the Jenkins project infrastructure team", + "name": "Jenkins Infra", + "company": null, + "blog": null, + "location": null, + "email": "infra@lists.jenkins-ci.org", + "is_verified": false, + "has_organization_projects": false, + "has_repository_projects": false, + "public_repos": 75, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/jenkins-infra", + "created_at": "2014-04-27T19:47:26Z", + "updated_at": "2018-08-07T02:50:50Z", + "type": "Organization" + } + }, + { + "name": "declarative-rfc-reviewers", + "id": 2300722, + "node_id": "MDQ6VGVhbTIzMDA3MjI=", + "slug": "declarative-rfc-reviewers", + "description": "Declarative RFC Reviewers", + "privacy": "closed", + "url": "https://api.github.com/teams/2300722", + "html_url": "https://github.com/orgs/jenkinsci/teams/declarative-rfc-reviewers", + "members_url": "https://api.github.com/teams/2300722/members{/member}", + "repositories_url": "https://api.github.com/teams/2300722/repos", + "permission": "pull", + "created_at": "2017-03-14T17:26:30Z", + "updated_at": "2017-03-14T17:26:30Z", + "members_count": 8, + "repos_count": 1, + "organization": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "url": "https://api.github.com/orgs/jenkinsci", + "repos_url": "https://api.github.com/orgs/jenkinsci/repos", + "events_url": "https://api.github.com/orgs/jenkinsci/events", + "hooks_url": "https://api.github.com/orgs/jenkinsci/hooks", + "issues_url": "https://api.github.com/orgs/jenkinsci/issues", + "members_url": "https://api.github.com/orgs/jenkinsci/members{/member}", + "public_members_url": "https://api.github.com/orgs/jenkinsci/public_members{/member}", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "description": "Jenkins is an open source automation server with an unparalleled plugin ecosystem to support practically every tool as part of your delivery pipelines", + "name": "Jenkins", + "company": null, + "blog": "https://jenkins.io", + "location": "Santa Clara, CA", + "email": "jenkinsci-users@googlegroups.com", + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 2192, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/jenkinsci", + "created_at": "2009-07-21T21:03:50Z", + "updated_at": "2019-02-25T15:26:10Z", + "type": "Organization" + } + }, + { + "name": "cje-reviewers", + "id": 2384898, + "node_id": "MDQ6VGVhbTIzODQ4OTg=", + "slug": "cje-reviewers", + "description": "CJE Reviewers", + "privacy": "closed", + "url": "https://api.github.com/teams/2384898", + "html_url": "https://github.com/orgs/cloudbees/teams/cje-reviewers", + "members_url": "https://api.github.com/teams/2384898/members{/member}", + "repositories_url": "https://api.github.com/teams/2384898/repos", + "permission": "pull", + "created_at": "2017-06-09T00:06:12Z", + "updated_at": "2017-06-09T00:09:45Z", + "members_count": 9, + "repos_count": 3, + "organization": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "url": "https://api.github.com/orgs/cloudbees", + "repos_url": "https://api.github.com/orgs/cloudbees/repos", + "events_url": "https://api.github.com/orgs/cloudbees/events", + "hooks_url": "https://api.github.com/orgs/cloudbees/hooks", + "issues_url": "https://api.github.com/orgs/cloudbees/issues", + "members_url": "https://api.github.com/orgs/cloudbees/members{/member}", + "public_members_url": "https://api.github.com/orgs/cloudbees/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "description": "", + "name": "CloudBees", + "company": null, + "blog": "https://www.cloudbees.com/", + "location": null, + "email": null, + "is_verified": true, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 130, + "public_gists": 4, + "followers": 0, + "following": 0, + "html_url": "https://github.com/cloudbees", + "created_at": "2010-04-02T07:24:48Z", + "updated_at": "2018-07-26T22:36:42Z", + "type": "Organization" + } + }, + { + "name": "Legacy Training Reviewers", + "id": 2384906, + "node_id": "MDQ6VGVhbTIzODQ5MDY=", + "slug": "legacy-training-reviewers", + "description": "Training Reviewers", + "privacy": "closed", + "url": "https://api.github.com/teams/2384906", + "html_url": "https://github.com/orgs/cloudbees/teams/legacy-training-reviewers", + "members_url": "https://api.github.com/teams/2384906/members{/member}", + "repositories_url": "https://api.github.com/teams/2384906/repos", + "permission": "pull", + "created_at": "2017-06-09T00:13:17Z", + "updated_at": "2019-01-08T18:15:24Z", + "members_count": 10, + "repos_count": 27, + "organization": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "url": "https://api.github.com/orgs/cloudbees", + "repos_url": "https://api.github.com/orgs/cloudbees/repos", + "events_url": "https://api.github.com/orgs/cloudbees/events", + "hooks_url": "https://api.github.com/orgs/cloudbees/hooks", + "issues_url": "https://api.github.com/orgs/cloudbees/issues", + "members_url": "https://api.github.com/orgs/cloudbees/members{/member}", + "public_members_url": "https://api.github.com/orgs/cloudbees/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "description": "", + "name": "CloudBees", + "company": null, + "blog": "https://www.cloudbees.com/", + "location": null, + "email": null, + "is_verified": true, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 130, + "public_gists": 4, + "followers": 0, + "following": 0, + "html_url": "https://github.com/cloudbees", + "created_at": "2010-04-02T07:24:48Z", + "updated_at": "2018-07-26T22:36:42Z", + "type": "Organization" + } + }, + { + "name": "JEP Editors", + "id": 2478842, + "node_id": "MDQ6VGVhbTI0Nzg4NDI=", + "slug": "jep-editors", + "description": "Editors for Jenkins Enhancement Proposals", + "privacy": "closed", + "url": "https://api.github.com/teams/2478842", + "html_url": "https://github.com/orgs/jenkinsci/teams/jep-editors", + "members_url": "https://api.github.com/teams/2478842/members{/member}", + "repositories_url": "https://api.github.com/teams/2478842/repos", + "permission": "pull", + "created_at": "2017-09-12T17:49:24Z", + "updated_at": "2017-09-12T17:49:24Z", + "members_count": 5, + "repos_count": 1, + "organization": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "url": "https://api.github.com/orgs/jenkinsci", + "repos_url": "https://api.github.com/orgs/jenkinsci/repos", + "events_url": "https://api.github.com/orgs/jenkinsci/events", + "hooks_url": "https://api.github.com/orgs/jenkinsci/hooks", + "issues_url": "https://api.github.com/orgs/jenkinsci/issues", + "members_url": "https://api.github.com/orgs/jenkinsci/members{/member}", + "public_members_url": "https://api.github.com/orgs/jenkinsci/public_members{/member}", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "description": "Jenkins is an open source automation server with an unparalleled plugin ecosystem to support practically every tool as part of your delivery pipelines", + "name": "Jenkins", + "company": null, + "blog": "https://jenkins.io", + "location": "Santa Clara, CA", + "email": "jenkinsci-users@googlegroups.com", + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 2192, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/jenkinsci", + "created_at": "2009-07-21T21:03:50Z", + "updated_at": "2019-02-25T15:26:10Z", + "type": "Organization" + } + }, + { + "name": "hacktoberfest", + "id": 2510135, + "node_id": "MDQ6VGVhbTI1MTAxMzU=", + "slug": "hacktoberfest", + "description": "Jenkins Hacktoberfest Team (reviewers and organizers)", + "privacy": "closed", + "url": "https://api.github.com/teams/2510135", + "html_url": "https://github.com/orgs/jenkins-infra/teams/hacktoberfest", + "members_url": "https://api.github.com/teams/2510135/members{/member}", + "repositories_url": "https://api.github.com/teams/2510135/repos", + "permission": "pull", + "created_at": "2017-10-06T18:42:56Z", + "updated_at": "2019-10-02T09:47:48Z", + "members_count": 8, + "repos_count": 3, + "organization": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "url": "https://api.github.com/orgs/jenkins-infra", + "repos_url": "https://api.github.com/orgs/jenkins-infra/repos", + "events_url": "https://api.github.com/orgs/jenkins-infra/events", + "hooks_url": "https://api.github.com/orgs/jenkins-infra/hooks", + "issues_url": "https://api.github.com/orgs/jenkins-infra/issues", + "members_url": "https://api.github.com/orgs/jenkins-infra/members{/member}", + "public_members_url": "https://api.github.com/orgs/jenkins-infra/public_members{/member}", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "description": "Repositories owned by the Jenkins project infrastructure team", + "name": "Jenkins Infra", + "company": null, + "blog": null, + "location": null, + "email": "infra@lists.jenkins-ci.org", + "is_verified": false, + "has_organization_projects": false, + "has_repository_projects": false, + "public_repos": 75, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/jenkins-infra", + "created_at": "2014-04-27T19:47:26Z", + "updated_at": "2018-08-07T02:50:50Z", + "type": "Organization" + } + }, + { + "name": "cn.jenkins.io", + "id": 2658933, + "node_id": "MDQ6VGVhbTI2NTg5MzM=", + "slug": "cn-jenkins-io", + "description": "People who work on Chinese website", + "privacy": "closed", + "url": "https://api.github.com/teams/2658933", + "html_url": "https://github.com/orgs/jenkins-infra/teams/cn-jenkins-io", + "members_url": "https://api.github.com/teams/2658933/members{/member}", + "repositories_url": "https://api.github.com/teams/2658933/repos", + "permission": "pull", + "created_at": "2018-02-20T17:36:21Z", + "updated_at": "2018-02-20T17:36:21Z", + "members_count": 5, + "repos_count": 1, + "organization": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "url": "https://api.github.com/orgs/jenkins-infra", + "repos_url": "https://api.github.com/orgs/jenkins-infra/repos", + "events_url": "https://api.github.com/orgs/jenkins-infra/events", + "hooks_url": "https://api.github.com/orgs/jenkins-infra/hooks", + "issues_url": "https://api.github.com/orgs/jenkins-infra/issues", + "members_url": "https://api.github.com/orgs/jenkins-infra/members{/member}", + "public_members_url": "https://api.github.com/orgs/jenkins-infra/public_members{/member}", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "description": "Repositories owned by the Jenkins project infrastructure team", + "name": "Jenkins Infra", + "company": null, + "blog": null, + "location": null, + "email": "infra@lists.jenkins-ci.org", + "is_verified": false, + "has_organization_projects": false, + "has_repository_projects": false, + "public_repos": 75, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/jenkins-infra", + "created_at": "2014-04-27T19:47:26Z", + "updated_at": "2018-08-07T02:50:50Z", + "type": "Organization" + } + }, + { + "name": "JEP Sponsors", + "id": 2832516, + "node_id": "MDQ6VGVhbTI4MzI1MTY=", + "slug": "jep-sponsors", + "description": "JEP Sponsors ", + "privacy": "closed", + "url": "https://api.github.com/teams/2832516", + "html_url": "https://github.com/orgs/jenkinsci/teams/jep-sponsors", + "members_url": "https://api.github.com/teams/2832516/members{/member}", + "repositories_url": "https://api.github.com/teams/2832516/repos", + "permission": "pull", + "created_at": "2018-07-21T01:31:23Z", + "updated_at": "2018-07-21T01:32:40Z", + "members_count": 9, + "repos_count": 1, + "organization": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "url": "https://api.github.com/orgs/jenkinsci", + "repos_url": "https://api.github.com/orgs/jenkinsci/repos", + "events_url": "https://api.github.com/orgs/jenkinsci/events", + "hooks_url": "https://api.github.com/orgs/jenkinsci/hooks", + "issues_url": "https://api.github.com/orgs/jenkinsci/issues", + "members_url": "https://api.github.com/orgs/jenkinsci/members{/member}", + "public_members_url": "https://api.github.com/orgs/jenkinsci/public_members{/member}", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "description": "Jenkins is an open source automation server with an unparalleled plugin ecosystem to support practically every tool as part of your delivery pipelines", + "name": "Jenkins", + "company": null, + "blog": "https://jenkins.io", + "location": "Santa Clara, CA", + "email": "jenkinsci-users@googlegroups.com", + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 2192, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/jenkinsci", + "created_at": "2009-07-21T21:03:50Z", + "updated_at": "2019-02-25T15:26:10Z", + "type": "Organization" + } + }, + { + "name": "JEP BDFL Delegates", + "id": 2832517, + "node_id": "MDQ6VGVhbTI4MzI1MTc=", + "slug": "jep-bdfl-delegates", + "description": "JEP BDFL Delegates", + "privacy": "closed", + "url": "https://api.github.com/teams/2832517", + "html_url": "https://github.com/orgs/jenkinsci/teams/jep-bdfl-delegates", + "members_url": "https://api.github.com/teams/2832517/members{/member}", + "repositories_url": "https://api.github.com/teams/2832517/repos", + "permission": "pull", + "created_at": "2018-07-21T01:33:45Z", + "updated_at": "2018-07-21T01:33:45Z", + "members_count": 2, + "repos_count": 1, + "organization": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "url": "https://api.github.com/orgs/jenkinsci", + "repos_url": "https://api.github.com/orgs/jenkinsci/repos", + "events_url": "https://api.github.com/orgs/jenkinsci/events", + "hooks_url": "https://api.github.com/orgs/jenkinsci/hooks", + "issues_url": "https://api.github.com/orgs/jenkinsci/issues", + "members_url": "https://api.github.com/orgs/jenkinsci/members{/member}", + "public_members_url": "https://api.github.com/orgs/jenkinsci/public_members{/member}", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "description": "Jenkins is an open source automation server with an unparalleled plugin ecosystem to support practically every tool as part of your delivery pipelines", + "name": "Jenkins", + "company": null, + "blog": "https://jenkins.io", + "location": "Santa Clara, CA", + "email": "jenkinsci-users@googlegroups.com", + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 2192, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/jenkinsci", + "created_at": "2009-07-21T21:03:50Z", + "updated_at": "2019-02-25T15:26:10Z", + "type": "Organization" + } + }, + { + "name": "pipeline-team", + "id": 2915408, + "node_id": "MDQ6VGVhbTI5MTU0MDg=", + "slug": "pipeline-team", + "description": "pipeline team", + "privacy": "closed", + "url": "https://api.github.com/teams/2915408", + "html_url": "https://github.com/orgs/cloudbees/teams/pipeline-team", + "members_url": "https://api.github.com/teams/2915408/members{/member}", + "repositories_url": "https://api.github.com/teams/2915408/repos", + "permission": "pull", + "created_at": "2018-09-12T08:09:16Z", + "updated_at": "2018-09-12T08:09:16Z", + "members_count": 10, + "repos_count": 11, + "organization": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "url": "https://api.github.com/orgs/cloudbees", + "repos_url": "https://api.github.com/orgs/cloudbees/repos", + "events_url": "https://api.github.com/orgs/cloudbees/events", + "hooks_url": "https://api.github.com/orgs/cloudbees/hooks", + "issues_url": "https://api.github.com/orgs/cloudbees/issues", + "members_url": "https://api.github.com/orgs/cloudbees/members{/member}", + "public_members_url": "https://api.github.com/orgs/cloudbees/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "description": "", + "name": "CloudBees", + "company": null, + "blog": "https://www.cloudbees.com/", + "location": null, + "email": null, + "is_verified": true, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 130, + "public_gists": 4, + "followers": 0, + "following": 0, + "html_url": "https://github.com/cloudbees", + "created_at": "2010-04-02T07:24:48Z", + "updated_at": "2018-07-26T22:36:42Z", + "type": "Organization" + } + }, + { + "name": "branch-api-plugin Developers", + "id": 2934265, + "node_id": "MDQ6VGVhbTI5MzQyNjU=", + "slug": "branch-api-plugin-developers", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/2934265", + "html_url": "https://github.com/orgs/jenkinsci/teams/branch-api-plugin-developers", + "members_url": "https://api.github.com/teams/2934265/members{/member}", + "repositories_url": "https://api.github.com/teams/2934265/repos", + "permission": "pull", + "created_at": "2018-09-25T19:59:22Z", + "updated_at": "2018-09-25T19:59:22Z", + "members_count": 4, + "repos_count": 1, + "organization": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "url": "https://api.github.com/orgs/jenkinsci", + "repos_url": "https://api.github.com/orgs/jenkinsci/repos", + "events_url": "https://api.github.com/orgs/jenkinsci/events", + "hooks_url": "https://api.github.com/orgs/jenkinsci/hooks", + "issues_url": "https://api.github.com/orgs/jenkinsci/issues", + "members_url": "https://api.github.com/orgs/jenkinsci/members{/member}", + "public_members_url": "https://api.github.com/orgs/jenkinsci/public_members{/member}", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "description": "Jenkins is an open source automation server with an unparalleled plugin ecosystem to support practically every tool as part of your delivery pipelines", + "name": "Jenkins", + "company": null, + "blog": "https://jenkins.io", + "location": "Santa Clara, CA", + "email": "jenkinsci-users@googlegroups.com", + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 2192, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/jenkinsci", + "created_at": "2009-07-21T21:03:50Z", + "updated_at": "2019-02-25T15:26:10Z", + "type": "Organization" + } + }, + { + "name": "audit-log-plugin Developers", + "id": 3023453, + "node_id": "MDQ6VGVhbTMwMjM0NTM=", + "slug": "audit-log-plugin-developers", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/3023453", + "html_url": "https://github.com/orgs/jenkinsci/teams/audit-log-plugin-developers", + "members_url": "https://api.github.com/teams/3023453/members{/member}", + "repositories_url": "https://api.github.com/teams/3023453/repos", + "permission": "pull", + "created_at": "2018-11-29T15:16:26Z", + "updated_at": "2018-11-29T15:16:26Z", + "members_count": 7, + "repos_count": 1, + "organization": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "url": "https://api.github.com/orgs/jenkinsci", + "repos_url": "https://api.github.com/orgs/jenkinsci/repos", + "events_url": "https://api.github.com/orgs/jenkinsci/events", + "hooks_url": "https://api.github.com/orgs/jenkinsci/hooks", + "issues_url": "https://api.github.com/orgs/jenkinsci/issues", + "members_url": "https://api.github.com/orgs/jenkinsci/members{/member}", + "public_members_url": "https://api.github.com/orgs/jenkinsci/public_members{/member}", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "description": "Jenkins is an open source automation server with an unparalleled plugin ecosystem to support practically every tool as part of your delivery pipelines", + "name": "Jenkins", + "company": null, + "blog": "https://jenkins.io", + "location": "Santa Clara, CA", + "email": "jenkinsci-users@googlegroups.com", + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 2192, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/jenkinsci", + "created_at": "2009-07-21T21:03:50Z", + "updated_at": "2019-02-25T15:26:10Z", + "type": "Organization" + } + }, + { + "name": "Certification Reviewers", + "id": 3136781, + "node_id": "MDQ6VGVhbTMxMzY3ODE=", + "slug": "certification-reviewers", + "description": "Group for all those associated with the Certification Review process", + "privacy": "closed", + "url": "https://api.github.com/teams/3136781", + "html_url": "https://github.com/orgs/cloudbees/teams/certification-reviewers", + "members_url": "https://api.github.com/teams/3136781/members{/member}", + "repositories_url": "https://api.github.com/teams/3136781/repos", + "permission": "pull", + "created_at": "2019-02-25T14:47:52Z", + "updated_at": "2019-02-25T14:47:52Z", + "members_count": 75, + "repos_count": 1, + "organization": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "url": "https://api.github.com/orgs/cloudbees", + "repos_url": "https://api.github.com/orgs/cloudbees/repos", + "events_url": "https://api.github.com/orgs/cloudbees/events", + "hooks_url": "https://api.github.com/orgs/cloudbees/hooks", + "issues_url": "https://api.github.com/orgs/cloudbees/issues", + "members_url": "https://api.github.com/orgs/cloudbees/members{/member}", + "public_members_url": "https://api.github.com/orgs/cloudbees/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "description": "", + "name": "CloudBees", + "company": null, + "blog": "https://www.cloudbees.com/", + "location": null, + "email": null, + "is_verified": true, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 130, + "public_gists": 4, + "followers": 0, + "following": 0, + "html_url": "https://github.com/cloudbees", + "created_at": "2010-04-02T07:24:48Z", + "updated_at": "2018-07-26T22:36:42Z", + "type": "Organization" + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyOrganizationsContainMyTeams/mappings/user-1-fd1c25.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyOrganizationsContainMyTeams/mappings/user-1-fd1c25.json new file mode 100644 index 0000000000..ecbe99a927 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyOrganizationsContainMyTeams/mappings/user-1-fd1c25.json @@ -0,0 +1,43 @@ +{ + "id": "fd1c2585-40a5-4ae9-85b5-5ab28ed9379e", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-fd1c2585-40a5-4ae9-85b5-5ab28ed9379e.json", + "headers": { + "Date": "Thu, 03 Oct 2019 18:57:39 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4788", + "X-RateLimit-Reset": "1570132527", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"cf6199fecf47b59c42190e1e11147ee2\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F39B:78ED:14A4DF4:1891567:5D9644A3" + } + }, + "uuid": "fd1c2585-40a5-4ae9-85b5-5ab28ed9379e", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyOrganizationsContainMyTeams/mappings/user_orgs-3-f38132.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyOrganizationsContainMyTeams/mappings/user_orgs-3-f38132.json new file mode 100644 index 0000000000..eb2feb3ea2 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyOrganizationsContainMyTeams/mappings/user_orgs-3-f38132.json @@ -0,0 +1,42 @@ +{ + "id": "f3813253-5f7d-47c0-91e0-35803e96fe36", + "name": "user_orgs", + "request": { + "url": "/user/orgs", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user_orgs-f3813253-5f7d-47c0-91e0-35803e96fe36.json", + "headers": { + "Date": "Thu, 03 Oct 2019 18:57:40 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4785", + "X-RateLimit-Reset": "1570132527", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"03bf52007c5043e8a9dc44a8d12582b8\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F39B:78ED:14A4E5F:18915DF:5D9644A4" + } + }, + "uuid": "f3813253-5f7d-47c0-91e0-35803e96fe36", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyOrganizationsContainMyTeams/mappings/user_teams-2-49ff8d.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyOrganizationsContainMyTeams/mappings/user_teams-2-49ff8d.json new file mode 100644 index 0000000000..9799b6c9be --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyOrganizationsContainMyTeams/mappings/user_teams-2-49ff8d.json @@ -0,0 +1,42 @@ +{ + "id": "49ff8dab-d286-4880-8c78-367cb7c360a2", + "name": "user_teams", + "request": { + "url": "/user/teams", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user_teams-49ff8dab-d286-4880-8c78-367cb7c360a2.json", + "headers": { + "Date": "Thu, 03 Oct 2019 18:57:40 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4786", + "X-RateLimit-Reset": "1570132527", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"323b6d9443fc5dc67ac0a417d0d0e4bf\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F39B:78ED:14A4E1D:189157C:5D9644A3" + } + }, + "uuid": "49ff8dab-d286-4880-8c78-367cb7c360a2", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/organizations_107424_teams-2fdc0562-25ee-4ff7-8207-444ebbc94abd.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/organizations_107424_teams-2fdc0562-25ee-4ff7-8207-444ebbc94abd.json new file mode 100644 index 0000000000..c2ff66ebdb --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/organizations_107424_teams-2fdc0562-25ee-4ff7-8207-444ebbc94abd.json @@ -0,0 +1,327 @@ +[ + { + "name": "Cloud Native SIG", + "id": 2823398, + "node_id": "MDQ6VGVhbTI4MjMzOTg=", + "slug": "cloud-native-sig", + "description": "https://jenkins.io/sigs/cloud-native", + "privacy": "closed", + "url": "https://api.github.com/teams/2823398", + "html_url": "https://github.com/orgs/jenkinsci/teams/cloud-native-sig", + "members_url": "https://api.github.com/teams/2823398/members{/member}", + "repositories_url": "https://api.github.com/teams/2823398/repos", + "permission": "pull" + }, + { + "name": "JEP Sponsors", + "id": 2832516, + "node_id": "MDQ6VGVhbTI4MzI1MTY=", + "slug": "jep-sponsors", + "description": "JEP Sponsors ", + "privacy": "closed", + "url": "https://api.github.com/teams/2832516", + "html_url": "https://github.com/orgs/jenkinsci/teams/jep-sponsors", + "members_url": "https://api.github.com/teams/2832516/members{/member}", + "repositories_url": "https://api.github.com/teams/2832516/repos", + "permission": "pull" + }, + { + "name": "JEP BDFL Delegates", + "id": 2832517, + "node_id": "MDQ6VGVhbTI4MzI1MTc=", + "slug": "jep-bdfl-delegates", + "description": "JEP BDFL Delegates", + "privacy": "closed", + "url": "https://api.github.com/teams/2832517", + "html_url": "https://github.com/orgs/jenkinsci/teams/jep-bdfl-delegates", + "members_url": "https://api.github.com/teams/2832517/members{/member}", + "repositories_url": "https://api.github.com/teams/2832517/repos", + "permission": "pull" + }, + { + "name": "Chinese Localization SIG", + "id": 2873273, + "node_id": "MDQ6VGVhbTI4NzMyNzM=", + "slug": "chinese-localization-sig", + "description": "https://jenkins.io/sigs/chinese-localization/", + "privacy": "closed", + "url": "https://api.github.com/teams/2873273", + "html_url": "https://github.com/orgs/jenkinsci/teams/chinese-localization-sig", + "members_url": "https://api.github.com/teams/2873273/members{/member}", + "repositories_url": "https://api.github.com/teams/2873273/repos", + "permission": "pull" + }, + { + "name": "branch-api-plugin Developers", + "id": 2934265, + "node_id": "MDQ6VGVhbTI5MzQyNjU=", + "slug": "branch-api-plugin-developers", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/2934265", + "html_url": "https://github.com/orgs/jenkinsci/teams/branch-api-plugin-developers", + "members_url": "https://api.github.com/teams/2934265/members{/member}", + "repositories_url": "https://api.github.com/teams/2934265/repos", + "permission": "pull" + }, + { + "name": "Java11 support", + "id": 2991889, + "node_id": "MDQ6VGVhbTI5OTE4ODk=", + "slug": "java11-support", + "description": "Java 11 Support Team (JEP-211)", + "privacy": "closed", + "url": "https://api.github.com/teams/2991889", + "html_url": "https://github.com/orgs/jenkinsci/teams/java11-support", + "members_url": "https://api.github.com/teams/2991889/members{/member}", + "repositories_url": "https://api.github.com/teams/2991889/repos", + "permission": "pull" + }, + { + "name": "audit-log-plugin Developers", + "id": 3023453, + "node_id": "MDQ6VGVhbTMwMjM0NTM=", + "slug": "audit-log-plugin-developers", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/3023453", + "html_url": "https://github.com/orgs/jenkinsci/teams/audit-log-plugin-developers", + "members_url": "https://api.github.com/teams/3023453/members{/member}", + "repositories_url": "https://api.github.com/teams/3023453/repos", + "permission": "pull" + }, + { + "name": "SIG GSoC", + "id": 3055916, + "node_id": "MDQ6VGVhbTMwNTU5MTY=", + "slug": "sig-gsoc", + "description": "Google Summer if Code Special Ineterst Group", + "privacy": "closed", + "url": "https://api.github.com/teams/3055916", + "html_url": "https://github.com/orgs/jenkinsci/teams/sig-gsoc", + "members_url": "https://api.github.com/teams/3055916/members{/member}", + "repositories_url": "https://api.github.com/teams/3055916/repos", + "permission": "pull" + }, + { + "name": "DockerHub Admins", + "id": 3126598, + "node_id": "MDQ6VGVhbTMxMjY1OTg=", + "slug": "dockerhub-admins", + "description": "Team of DockerHub admins. Allows managing integrations and autobuilds in repos", + "privacy": "closed", + "url": "https://api.github.com/teams/3126598", + "html_url": "https://github.com/orgs/jenkinsci/teams/dockerhub-admins", + "members_url": "https://api.github.com/teams/3126598/members{/member}", + "repositories_url": "https://api.github.com/teams/3126598/repos", + "permission": "pull" + }, + { + "name": "netsparker-cloud-scan-plugin Admins", + "id": 3173032, + "node_id": "MDQ6VGVhbTMxNzMwMzI=", + "slug": "netsparker-cloud-scan-plugin-admins", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/3173032", + "html_url": "https://github.com/orgs/jenkinsci/teams/netsparker-cloud-scan-plugin-admins", + "members_url": "https://api.github.com/teams/3173032/members{/member}", + "repositories_url": "https://api.github.com/teams/3173032/repos", + "permission": "pull" + }, + { + "name": "github-admins", + "id": 3254222, + "node_id": "MDQ6VGVhbTMyNTQyMjI=", + "slug": "github-admins", + "description": "Administrators of the jenkinsci GitHub organization", + "privacy": "closed", + "url": "https://api.github.com/teams/3254222", + "html_url": "https://github.com/orgs/jenkinsci/teams/github-admins", + "members_url": "https://api.github.com/teams/3254222/members{/member}", + "repositories_url": "https://api.github.com/teams/3254222/repos", + "permission": "pull" + }, + { + "name": "gsoc2019-remoting", + "id": 3256632, + "node_id": "MDQ6VGVhbTMyNTY2MzI=", + "slug": "gsoc2019-remoting", + "description": "https://jenkins.io/projects/gsoc/2019/remoting-over-apache-kafka-docker-k8s-features/", + "privacy": "closed", + "url": "https://api.github.com/teams/3256632", + "html_url": "https://github.com/orgs/jenkinsci/teams/gsoc2019-remoting", + "members_url": "https://api.github.com/teams/3256632/members{/member}", + "repositories_url": "https://api.github.com/teams/3256632/repos", + "permission": "pull" + }, + { + "name": "Azure Devops Team", + "id": 3261120, + "node_id": "MDQ6VGVhbTMyNjExMjA=", + "slug": "azure-devops-team", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/3261120", + "html_url": "https://github.com/orgs/jenkinsci/teams/azure-devops-team", + "members_url": "https://api.github.com/teams/3261120/members{/member}", + "repositories_url": "https://api.github.com/teams/3261120/repos", + "permission": "pull" + }, + { + "name": "gsoc2019-all", + "id": 3261644, + "node_id": "MDQ6VGVhbTMyNjE2NDQ=", + "slug": "gsoc2019-all", + "description": "GSoC 2019 Students and Mentors", + "privacy": "closed", + "url": "https://api.github.com/teams/3261644", + "html_url": "https://github.com/orgs/jenkinsci/teams/gsoc2019-all", + "members_url": "https://api.github.com/teams/3261644/members{/member}", + "repositories_url": "https://api.github.com/teams/3261644/repos", + "permission": "pull" + }, + { + "name": "gsoc2019-role-strategy", + "id": 3267262, + "node_id": "MDQ6VGVhbTMyNjcyNjI=", + "slug": "gsoc2019-role-strategy", + "description": "GSoC 2019: Role Strategy Performance improvements project members", + "privacy": "closed", + "url": "https://api.github.com/teams/3267262", + "html_url": "https://github.com/orgs/jenkinsci/teams/gsoc2019-role-strategy", + "members_url": "https://api.github.com/teams/3267262/members{/member}", + "repositories_url": "https://api.github.com/teams/3267262/repos", + "permission": "pull" + }, + { + "name": "gsoc2019-promotion-for-pipeline", + "id": 3276774, + "node_id": "MDQ6VGVhbTMyNzY3NzQ=", + "slug": "gsoc2019-promotion-for-pipeline", + "description": "GSoC 2019 project members. Artifact promotion for Jenkins Pipeline. https://jenkins.io/projects/gsoc/2019/artifact-promotion-plugin-for-jenkins-pipeline/. ", + "privacy": "closed", + "url": "https://api.github.com/teams/3276774", + "html_url": "https://github.com/orgs/jenkinsci/teams/gsoc2019-promotion-for-pipeline", + "members_url": "https://api.github.com/teams/3276774/members{/member}", + "repositories_url": "https://api.github.com/teams/3276774/repos", + "permission": "pull" + }, + { + "name": "gsoc2019-ext-workspace-manager-cloud-features", + "id": 3276806, + "node_id": "MDQ6VGVhbTMyNzY4MDY=", + "slug": "gsoc2019-ext-workspace-manager-cloud-features", + "description": "GSoC 2019 team for https://jenkins.io/projects/gsoc/2019/ext-workspace-manager-cloud-features/", + "privacy": "closed", + "url": "https://api.github.com/teams/3276806", + "html_url": "https://github.com/orgs/jenkinsci/teams/gsoc2019-ext-workspace-manager-cloud-features", + "members_url": "https://api.github.com/teams/3276806/members{/member}", + "repositories_url": "https://api.github.com/teams/3276806/repos", + "permission": "pull" + }, + { + "name": "gsoc2019-gitlab-multibranch-pipeline", + "id": 3276812, + "node_id": "MDQ6VGVhbTMyNzY4MTI=", + "slug": "gsoc2019-gitlab-multibranch-pipeline", + "description": "GSoC 2019 project. Multibranch Pipeline support for GitLab SCM. https://jenkins.io/projects/gsoc/2019/gitlab-support-for-multibranch-pipeline/", + "privacy": "closed", + "url": "https://api.github.com/teams/3276812", + "html_url": "https://github.com/orgs/jenkinsci/teams/gsoc2019-gitlab-multibranch-pipeline", + "members_url": "https://api.github.com/teams/3276812/members{/member}", + "repositories_url": "https://api.github.com/teams/3276812/repos", + "permission": "pull" + }, + { + "name": "gsoc2019-plugin-installation-manager", + "id": 3276815, + "node_id": "MDQ6VGVhbTMyNzY4MTU=", + "slug": "gsoc2019-plugin-installation-manager", + "description": "GSoC 2019 Project: Plugin Installation Manager CLI Tool / Library. https://jenkins.io/projects/gsoc/2019/plugin-installation-manager-tool-cli/", + "privacy": "closed", + "url": "https://api.github.com/teams/3276815", + "html_url": "https://github.com/orgs/jenkinsci/teams/gsoc2019-plugin-installation-manager", + "members_url": "https://api.github.com/teams/3276815/members{/member}", + "repositories_url": "https://api.github.com/teams/3276815/repos", + "permission": "pull" + }, + { + "name": "gsoc2019-working-hours", + "id": 3276817, + "node_id": "MDQ6VGVhbTMyNzY4MTc=", + "slug": "gsoc2019-working-hours", + "description": "GSoC 2019 project: Working Hours Plugin - UI Improvements. https://jenkins.io/projects/gsoc/2019/working-hours-improvements/", + "privacy": "closed", + "url": "https://api.github.com/teams/3276817", + "html_url": "https://github.com/orgs/jenkinsci/teams/gsoc2019-working-hours", + "members_url": "https://api.github.com/teams/3276817/members{/member}", + "repositories_url": "https://api.github.com/teams/3276817/repos", + "permission": "pull" + }, + { + "name": "Checkmarx developers", + "id": 3296900, + "node_id": "MDQ6VGVhbTMyOTY5MDA=", + "slug": "checkmarx-developers", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/3296900", + "html_url": "https://github.com/orgs/jenkinsci/teams/checkmarx-developers", + "members_url": "https://api.github.com/teams/3296900/members{/member}", + "repositories_url": "https://api.github.com/teams/3296900/repos", + "permission": "pull" + }, + { + "name": "configuration-as-code-devtools-project-team", + "id": 3346208, + "node_id": "MDQ6VGVhbTMzNDYyMDg=", + "slug": "configuration-as-code-devtools-project-team", + "description": "Community Bridge project: Jenkins Configuation-as-Code developer tools (Autumn 2019)", + "privacy": "closed", + "url": "https://api.github.com/teams/3346208", + "html_url": "https://github.com/orgs/jenkinsci/teams/configuration-as-code-devtools-project-team", + "members_url": "https://api.github.com/teams/3346208/members{/member}", + "repositories_url": "https://api.github.com/teams/3346208/repos", + "permission": "pull" + }, + { + "name": "Devs", + "id": 3373539, + "node_id": "MDQ6VGVhbTMzNzM1Mzk=", + "slug": "devs", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/3373539", + "html_url": "https://github.com/orgs/jenkinsci/teams/devs", + "members_url": "https://api.github.com/teams/3373539/members{/member}", + "repositories_url": "https://api.github.com/teams/3373539/repos", + "permission": "pull" + }, + { + "name": "DevOpsInsights", + "id": 3422181, + "node_id": "MDQ6VGVhbTM0MjIxODE=", + "slug": "devopsinsights", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/3422181", + "html_url": "https://github.com/orgs/jenkinsci/teams/devopsinsights", + "members_url": "https://api.github.com/teams/3422181/members{/member}", + "repositories_url": "https://api.github.com/teams/3422181/repos", + "permission": "pull" + }, + { + "name": "Core PR Reviewers", + "id": 3428777, + "node_id": "MDQ6VGVhbTM0Mjg3Nzc=", + "slug": "core-pr-reviewers", + "description": "Jenkins Core Pull Request Reviewers. The team has Triage permissions in core repos", + "privacy": "closed", + "url": "https://api.github.com/teams/3428777", + "html_url": "https://github.com/orgs/jenkinsci/teams/core-pr-reviewers", + "members_url": "https://api.github.com/teams/3428777/members{/member}", + "repositories_url": "https://api.github.com/teams/3428777/repos", + "permission": "pull" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/organizations_107424_teams-864a80f6-b8f4-4a01-bf1b-06d0977753da.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/organizations_107424_teams-864a80f6-b8f4-4a01-bf1b-06d0977753da.json new file mode 100644 index 0000000000..c2ff66ebdb --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/organizations_107424_teams-864a80f6-b8f4-4a01-bf1b-06d0977753da.json @@ -0,0 +1,327 @@ +[ + { + "name": "Cloud Native SIG", + "id": 2823398, + "node_id": "MDQ6VGVhbTI4MjMzOTg=", + "slug": "cloud-native-sig", + "description": "https://jenkins.io/sigs/cloud-native", + "privacy": "closed", + "url": "https://api.github.com/teams/2823398", + "html_url": "https://github.com/orgs/jenkinsci/teams/cloud-native-sig", + "members_url": "https://api.github.com/teams/2823398/members{/member}", + "repositories_url": "https://api.github.com/teams/2823398/repos", + "permission": "pull" + }, + { + "name": "JEP Sponsors", + "id": 2832516, + "node_id": "MDQ6VGVhbTI4MzI1MTY=", + "slug": "jep-sponsors", + "description": "JEP Sponsors ", + "privacy": "closed", + "url": "https://api.github.com/teams/2832516", + "html_url": "https://github.com/orgs/jenkinsci/teams/jep-sponsors", + "members_url": "https://api.github.com/teams/2832516/members{/member}", + "repositories_url": "https://api.github.com/teams/2832516/repos", + "permission": "pull" + }, + { + "name": "JEP BDFL Delegates", + "id": 2832517, + "node_id": "MDQ6VGVhbTI4MzI1MTc=", + "slug": "jep-bdfl-delegates", + "description": "JEP BDFL Delegates", + "privacy": "closed", + "url": "https://api.github.com/teams/2832517", + "html_url": "https://github.com/orgs/jenkinsci/teams/jep-bdfl-delegates", + "members_url": "https://api.github.com/teams/2832517/members{/member}", + "repositories_url": "https://api.github.com/teams/2832517/repos", + "permission": "pull" + }, + { + "name": "Chinese Localization SIG", + "id": 2873273, + "node_id": "MDQ6VGVhbTI4NzMyNzM=", + "slug": "chinese-localization-sig", + "description": "https://jenkins.io/sigs/chinese-localization/", + "privacy": "closed", + "url": "https://api.github.com/teams/2873273", + "html_url": "https://github.com/orgs/jenkinsci/teams/chinese-localization-sig", + "members_url": "https://api.github.com/teams/2873273/members{/member}", + "repositories_url": "https://api.github.com/teams/2873273/repos", + "permission": "pull" + }, + { + "name": "branch-api-plugin Developers", + "id": 2934265, + "node_id": "MDQ6VGVhbTI5MzQyNjU=", + "slug": "branch-api-plugin-developers", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/2934265", + "html_url": "https://github.com/orgs/jenkinsci/teams/branch-api-plugin-developers", + "members_url": "https://api.github.com/teams/2934265/members{/member}", + "repositories_url": "https://api.github.com/teams/2934265/repos", + "permission": "pull" + }, + { + "name": "Java11 support", + "id": 2991889, + "node_id": "MDQ6VGVhbTI5OTE4ODk=", + "slug": "java11-support", + "description": "Java 11 Support Team (JEP-211)", + "privacy": "closed", + "url": "https://api.github.com/teams/2991889", + "html_url": "https://github.com/orgs/jenkinsci/teams/java11-support", + "members_url": "https://api.github.com/teams/2991889/members{/member}", + "repositories_url": "https://api.github.com/teams/2991889/repos", + "permission": "pull" + }, + { + "name": "audit-log-plugin Developers", + "id": 3023453, + "node_id": "MDQ6VGVhbTMwMjM0NTM=", + "slug": "audit-log-plugin-developers", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/3023453", + "html_url": "https://github.com/orgs/jenkinsci/teams/audit-log-plugin-developers", + "members_url": "https://api.github.com/teams/3023453/members{/member}", + "repositories_url": "https://api.github.com/teams/3023453/repos", + "permission": "pull" + }, + { + "name": "SIG GSoC", + "id": 3055916, + "node_id": "MDQ6VGVhbTMwNTU5MTY=", + "slug": "sig-gsoc", + "description": "Google Summer if Code Special Ineterst Group", + "privacy": "closed", + "url": "https://api.github.com/teams/3055916", + "html_url": "https://github.com/orgs/jenkinsci/teams/sig-gsoc", + "members_url": "https://api.github.com/teams/3055916/members{/member}", + "repositories_url": "https://api.github.com/teams/3055916/repos", + "permission": "pull" + }, + { + "name": "DockerHub Admins", + "id": 3126598, + "node_id": "MDQ6VGVhbTMxMjY1OTg=", + "slug": "dockerhub-admins", + "description": "Team of DockerHub admins. Allows managing integrations and autobuilds in repos", + "privacy": "closed", + "url": "https://api.github.com/teams/3126598", + "html_url": "https://github.com/orgs/jenkinsci/teams/dockerhub-admins", + "members_url": "https://api.github.com/teams/3126598/members{/member}", + "repositories_url": "https://api.github.com/teams/3126598/repos", + "permission": "pull" + }, + { + "name": "netsparker-cloud-scan-plugin Admins", + "id": 3173032, + "node_id": "MDQ6VGVhbTMxNzMwMzI=", + "slug": "netsparker-cloud-scan-plugin-admins", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/3173032", + "html_url": "https://github.com/orgs/jenkinsci/teams/netsparker-cloud-scan-plugin-admins", + "members_url": "https://api.github.com/teams/3173032/members{/member}", + "repositories_url": "https://api.github.com/teams/3173032/repos", + "permission": "pull" + }, + { + "name": "github-admins", + "id": 3254222, + "node_id": "MDQ6VGVhbTMyNTQyMjI=", + "slug": "github-admins", + "description": "Administrators of the jenkinsci GitHub organization", + "privacy": "closed", + "url": "https://api.github.com/teams/3254222", + "html_url": "https://github.com/orgs/jenkinsci/teams/github-admins", + "members_url": "https://api.github.com/teams/3254222/members{/member}", + "repositories_url": "https://api.github.com/teams/3254222/repos", + "permission": "pull" + }, + { + "name": "gsoc2019-remoting", + "id": 3256632, + "node_id": "MDQ6VGVhbTMyNTY2MzI=", + "slug": "gsoc2019-remoting", + "description": "https://jenkins.io/projects/gsoc/2019/remoting-over-apache-kafka-docker-k8s-features/", + "privacy": "closed", + "url": "https://api.github.com/teams/3256632", + "html_url": "https://github.com/orgs/jenkinsci/teams/gsoc2019-remoting", + "members_url": "https://api.github.com/teams/3256632/members{/member}", + "repositories_url": "https://api.github.com/teams/3256632/repos", + "permission": "pull" + }, + { + "name": "Azure Devops Team", + "id": 3261120, + "node_id": "MDQ6VGVhbTMyNjExMjA=", + "slug": "azure-devops-team", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/3261120", + "html_url": "https://github.com/orgs/jenkinsci/teams/azure-devops-team", + "members_url": "https://api.github.com/teams/3261120/members{/member}", + "repositories_url": "https://api.github.com/teams/3261120/repos", + "permission": "pull" + }, + { + "name": "gsoc2019-all", + "id": 3261644, + "node_id": "MDQ6VGVhbTMyNjE2NDQ=", + "slug": "gsoc2019-all", + "description": "GSoC 2019 Students and Mentors", + "privacy": "closed", + "url": "https://api.github.com/teams/3261644", + "html_url": "https://github.com/orgs/jenkinsci/teams/gsoc2019-all", + "members_url": "https://api.github.com/teams/3261644/members{/member}", + "repositories_url": "https://api.github.com/teams/3261644/repos", + "permission": "pull" + }, + { + "name": "gsoc2019-role-strategy", + "id": 3267262, + "node_id": "MDQ6VGVhbTMyNjcyNjI=", + "slug": "gsoc2019-role-strategy", + "description": "GSoC 2019: Role Strategy Performance improvements project members", + "privacy": "closed", + "url": "https://api.github.com/teams/3267262", + "html_url": "https://github.com/orgs/jenkinsci/teams/gsoc2019-role-strategy", + "members_url": "https://api.github.com/teams/3267262/members{/member}", + "repositories_url": "https://api.github.com/teams/3267262/repos", + "permission": "pull" + }, + { + "name": "gsoc2019-promotion-for-pipeline", + "id": 3276774, + "node_id": "MDQ6VGVhbTMyNzY3NzQ=", + "slug": "gsoc2019-promotion-for-pipeline", + "description": "GSoC 2019 project members. Artifact promotion for Jenkins Pipeline. https://jenkins.io/projects/gsoc/2019/artifact-promotion-plugin-for-jenkins-pipeline/. ", + "privacy": "closed", + "url": "https://api.github.com/teams/3276774", + "html_url": "https://github.com/orgs/jenkinsci/teams/gsoc2019-promotion-for-pipeline", + "members_url": "https://api.github.com/teams/3276774/members{/member}", + "repositories_url": "https://api.github.com/teams/3276774/repos", + "permission": "pull" + }, + { + "name": "gsoc2019-ext-workspace-manager-cloud-features", + "id": 3276806, + "node_id": "MDQ6VGVhbTMyNzY4MDY=", + "slug": "gsoc2019-ext-workspace-manager-cloud-features", + "description": "GSoC 2019 team for https://jenkins.io/projects/gsoc/2019/ext-workspace-manager-cloud-features/", + "privacy": "closed", + "url": "https://api.github.com/teams/3276806", + "html_url": "https://github.com/orgs/jenkinsci/teams/gsoc2019-ext-workspace-manager-cloud-features", + "members_url": "https://api.github.com/teams/3276806/members{/member}", + "repositories_url": "https://api.github.com/teams/3276806/repos", + "permission": "pull" + }, + { + "name": "gsoc2019-gitlab-multibranch-pipeline", + "id": 3276812, + "node_id": "MDQ6VGVhbTMyNzY4MTI=", + "slug": "gsoc2019-gitlab-multibranch-pipeline", + "description": "GSoC 2019 project. Multibranch Pipeline support for GitLab SCM. https://jenkins.io/projects/gsoc/2019/gitlab-support-for-multibranch-pipeline/", + "privacy": "closed", + "url": "https://api.github.com/teams/3276812", + "html_url": "https://github.com/orgs/jenkinsci/teams/gsoc2019-gitlab-multibranch-pipeline", + "members_url": "https://api.github.com/teams/3276812/members{/member}", + "repositories_url": "https://api.github.com/teams/3276812/repos", + "permission": "pull" + }, + { + "name": "gsoc2019-plugin-installation-manager", + "id": 3276815, + "node_id": "MDQ6VGVhbTMyNzY4MTU=", + "slug": "gsoc2019-plugin-installation-manager", + "description": "GSoC 2019 Project: Plugin Installation Manager CLI Tool / Library. https://jenkins.io/projects/gsoc/2019/plugin-installation-manager-tool-cli/", + "privacy": "closed", + "url": "https://api.github.com/teams/3276815", + "html_url": "https://github.com/orgs/jenkinsci/teams/gsoc2019-plugin-installation-manager", + "members_url": "https://api.github.com/teams/3276815/members{/member}", + "repositories_url": "https://api.github.com/teams/3276815/repos", + "permission": "pull" + }, + { + "name": "gsoc2019-working-hours", + "id": 3276817, + "node_id": "MDQ6VGVhbTMyNzY4MTc=", + "slug": "gsoc2019-working-hours", + "description": "GSoC 2019 project: Working Hours Plugin - UI Improvements. https://jenkins.io/projects/gsoc/2019/working-hours-improvements/", + "privacy": "closed", + "url": "https://api.github.com/teams/3276817", + "html_url": "https://github.com/orgs/jenkinsci/teams/gsoc2019-working-hours", + "members_url": "https://api.github.com/teams/3276817/members{/member}", + "repositories_url": "https://api.github.com/teams/3276817/repos", + "permission": "pull" + }, + { + "name": "Checkmarx developers", + "id": 3296900, + "node_id": "MDQ6VGVhbTMyOTY5MDA=", + "slug": "checkmarx-developers", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/3296900", + "html_url": "https://github.com/orgs/jenkinsci/teams/checkmarx-developers", + "members_url": "https://api.github.com/teams/3296900/members{/member}", + "repositories_url": "https://api.github.com/teams/3296900/repos", + "permission": "pull" + }, + { + "name": "configuration-as-code-devtools-project-team", + "id": 3346208, + "node_id": "MDQ6VGVhbTMzNDYyMDg=", + "slug": "configuration-as-code-devtools-project-team", + "description": "Community Bridge project: Jenkins Configuation-as-Code developer tools (Autumn 2019)", + "privacy": "closed", + "url": "https://api.github.com/teams/3346208", + "html_url": "https://github.com/orgs/jenkinsci/teams/configuration-as-code-devtools-project-team", + "members_url": "https://api.github.com/teams/3346208/members{/member}", + "repositories_url": "https://api.github.com/teams/3346208/repos", + "permission": "pull" + }, + { + "name": "Devs", + "id": 3373539, + "node_id": "MDQ6VGVhbTMzNzM1Mzk=", + "slug": "devs", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/3373539", + "html_url": "https://github.com/orgs/jenkinsci/teams/devs", + "members_url": "https://api.github.com/teams/3373539/members{/member}", + "repositories_url": "https://api.github.com/teams/3373539/repos", + "permission": "pull" + }, + { + "name": "DevOpsInsights", + "id": 3422181, + "node_id": "MDQ6VGVhbTM0MjIxODE=", + "slug": "devopsinsights", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/3422181", + "html_url": "https://github.com/orgs/jenkinsci/teams/devopsinsights", + "members_url": "https://api.github.com/teams/3422181/members{/member}", + "repositories_url": "https://api.github.com/teams/3422181/repos", + "permission": "pull" + }, + { + "name": "Core PR Reviewers", + "id": 3428777, + "node_id": "MDQ6VGVhbTM0Mjg3Nzc=", + "slug": "core-pr-reviewers", + "description": "Jenkins Core Pull Request Reviewers. The team has Triage permissions in core repos", + "privacy": "closed", + "url": "https://api.github.com/teams/3428777", + "html_url": "https://github.com/orgs/jenkinsci/teams/core-pr-reviewers", + "members_url": "https://api.github.com/teams/3428777/members{/member}", + "repositories_url": "https://api.github.com/teams/3428777/repos", + "permission": "pull" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/organizations_107424_teams-881e0897-44cd-42c4-88c4-50046ee19a18.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/organizations_107424_teams-881e0897-44cd-42c4-88c4-50046ee19a18.json new file mode 100644 index 0000000000..c2ff66ebdb --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/organizations_107424_teams-881e0897-44cd-42c4-88c4-50046ee19a18.json @@ -0,0 +1,327 @@ +[ + { + "name": "Cloud Native SIG", + "id": 2823398, + "node_id": "MDQ6VGVhbTI4MjMzOTg=", + "slug": "cloud-native-sig", + "description": "https://jenkins.io/sigs/cloud-native", + "privacy": "closed", + "url": "https://api.github.com/teams/2823398", + "html_url": "https://github.com/orgs/jenkinsci/teams/cloud-native-sig", + "members_url": "https://api.github.com/teams/2823398/members{/member}", + "repositories_url": "https://api.github.com/teams/2823398/repos", + "permission": "pull" + }, + { + "name": "JEP Sponsors", + "id": 2832516, + "node_id": "MDQ6VGVhbTI4MzI1MTY=", + "slug": "jep-sponsors", + "description": "JEP Sponsors ", + "privacy": "closed", + "url": "https://api.github.com/teams/2832516", + "html_url": "https://github.com/orgs/jenkinsci/teams/jep-sponsors", + "members_url": "https://api.github.com/teams/2832516/members{/member}", + "repositories_url": "https://api.github.com/teams/2832516/repos", + "permission": "pull" + }, + { + "name": "JEP BDFL Delegates", + "id": 2832517, + "node_id": "MDQ6VGVhbTI4MzI1MTc=", + "slug": "jep-bdfl-delegates", + "description": "JEP BDFL Delegates", + "privacy": "closed", + "url": "https://api.github.com/teams/2832517", + "html_url": "https://github.com/orgs/jenkinsci/teams/jep-bdfl-delegates", + "members_url": "https://api.github.com/teams/2832517/members{/member}", + "repositories_url": "https://api.github.com/teams/2832517/repos", + "permission": "pull" + }, + { + "name": "Chinese Localization SIG", + "id": 2873273, + "node_id": "MDQ6VGVhbTI4NzMyNzM=", + "slug": "chinese-localization-sig", + "description": "https://jenkins.io/sigs/chinese-localization/", + "privacy": "closed", + "url": "https://api.github.com/teams/2873273", + "html_url": "https://github.com/orgs/jenkinsci/teams/chinese-localization-sig", + "members_url": "https://api.github.com/teams/2873273/members{/member}", + "repositories_url": "https://api.github.com/teams/2873273/repos", + "permission": "pull" + }, + { + "name": "branch-api-plugin Developers", + "id": 2934265, + "node_id": "MDQ6VGVhbTI5MzQyNjU=", + "slug": "branch-api-plugin-developers", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/2934265", + "html_url": "https://github.com/orgs/jenkinsci/teams/branch-api-plugin-developers", + "members_url": "https://api.github.com/teams/2934265/members{/member}", + "repositories_url": "https://api.github.com/teams/2934265/repos", + "permission": "pull" + }, + { + "name": "Java11 support", + "id": 2991889, + "node_id": "MDQ6VGVhbTI5OTE4ODk=", + "slug": "java11-support", + "description": "Java 11 Support Team (JEP-211)", + "privacy": "closed", + "url": "https://api.github.com/teams/2991889", + "html_url": "https://github.com/orgs/jenkinsci/teams/java11-support", + "members_url": "https://api.github.com/teams/2991889/members{/member}", + "repositories_url": "https://api.github.com/teams/2991889/repos", + "permission": "pull" + }, + { + "name": "audit-log-plugin Developers", + "id": 3023453, + "node_id": "MDQ6VGVhbTMwMjM0NTM=", + "slug": "audit-log-plugin-developers", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/3023453", + "html_url": "https://github.com/orgs/jenkinsci/teams/audit-log-plugin-developers", + "members_url": "https://api.github.com/teams/3023453/members{/member}", + "repositories_url": "https://api.github.com/teams/3023453/repos", + "permission": "pull" + }, + { + "name": "SIG GSoC", + "id": 3055916, + "node_id": "MDQ6VGVhbTMwNTU5MTY=", + "slug": "sig-gsoc", + "description": "Google Summer if Code Special Ineterst Group", + "privacy": "closed", + "url": "https://api.github.com/teams/3055916", + "html_url": "https://github.com/orgs/jenkinsci/teams/sig-gsoc", + "members_url": "https://api.github.com/teams/3055916/members{/member}", + "repositories_url": "https://api.github.com/teams/3055916/repos", + "permission": "pull" + }, + { + "name": "DockerHub Admins", + "id": 3126598, + "node_id": "MDQ6VGVhbTMxMjY1OTg=", + "slug": "dockerhub-admins", + "description": "Team of DockerHub admins. Allows managing integrations and autobuilds in repos", + "privacy": "closed", + "url": "https://api.github.com/teams/3126598", + "html_url": "https://github.com/orgs/jenkinsci/teams/dockerhub-admins", + "members_url": "https://api.github.com/teams/3126598/members{/member}", + "repositories_url": "https://api.github.com/teams/3126598/repos", + "permission": "pull" + }, + { + "name": "netsparker-cloud-scan-plugin Admins", + "id": 3173032, + "node_id": "MDQ6VGVhbTMxNzMwMzI=", + "slug": "netsparker-cloud-scan-plugin-admins", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/3173032", + "html_url": "https://github.com/orgs/jenkinsci/teams/netsparker-cloud-scan-plugin-admins", + "members_url": "https://api.github.com/teams/3173032/members{/member}", + "repositories_url": "https://api.github.com/teams/3173032/repos", + "permission": "pull" + }, + { + "name": "github-admins", + "id": 3254222, + "node_id": "MDQ6VGVhbTMyNTQyMjI=", + "slug": "github-admins", + "description": "Administrators of the jenkinsci GitHub organization", + "privacy": "closed", + "url": "https://api.github.com/teams/3254222", + "html_url": "https://github.com/orgs/jenkinsci/teams/github-admins", + "members_url": "https://api.github.com/teams/3254222/members{/member}", + "repositories_url": "https://api.github.com/teams/3254222/repos", + "permission": "pull" + }, + { + "name": "gsoc2019-remoting", + "id": 3256632, + "node_id": "MDQ6VGVhbTMyNTY2MzI=", + "slug": "gsoc2019-remoting", + "description": "https://jenkins.io/projects/gsoc/2019/remoting-over-apache-kafka-docker-k8s-features/", + "privacy": "closed", + "url": "https://api.github.com/teams/3256632", + "html_url": "https://github.com/orgs/jenkinsci/teams/gsoc2019-remoting", + "members_url": "https://api.github.com/teams/3256632/members{/member}", + "repositories_url": "https://api.github.com/teams/3256632/repos", + "permission": "pull" + }, + { + "name": "Azure Devops Team", + "id": 3261120, + "node_id": "MDQ6VGVhbTMyNjExMjA=", + "slug": "azure-devops-team", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/3261120", + "html_url": "https://github.com/orgs/jenkinsci/teams/azure-devops-team", + "members_url": "https://api.github.com/teams/3261120/members{/member}", + "repositories_url": "https://api.github.com/teams/3261120/repos", + "permission": "pull" + }, + { + "name": "gsoc2019-all", + "id": 3261644, + "node_id": "MDQ6VGVhbTMyNjE2NDQ=", + "slug": "gsoc2019-all", + "description": "GSoC 2019 Students and Mentors", + "privacy": "closed", + "url": "https://api.github.com/teams/3261644", + "html_url": "https://github.com/orgs/jenkinsci/teams/gsoc2019-all", + "members_url": "https://api.github.com/teams/3261644/members{/member}", + "repositories_url": "https://api.github.com/teams/3261644/repos", + "permission": "pull" + }, + { + "name": "gsoc2019-role-strategy", + "id": 3267262, + "node_id": "MDQ6VGVhbTMyNjcyNjI=", + "slug": "gsoc2019-role-strategy", + "description": "GSoC 2019: Role Strategy Performance improvements project members", + "privacy": "closed", + "url": "https://api.github.com/teams/3267262", + "html_url": "https://github.com/orgs/jenkinsci/teams/gsoc2019-role-strategy", + "members_url": "https://api.github.com/teams/3267262/members{/member}", + "repositories_url": "https://api.github.com/teams/3267262/repos", + "permission": "pull" + }, + { + "name": "gsoc2019-promotion-for-pipeline", + "id": 3276774, + "node_id": "MDQ6VGVhbTMyNzY3NzQ=", + "slug": "gsoc2019-promotion-for-pipeline", + "description": "GSoC 2019 project members. Artifact promotion for Jenkins Pipeline. https://jenkins.io/projects/gsoc/2019/artifact-promotion-plugin-for-jenkins-pipeline/. ", + "privacy": "closed", + "url": "https://api.github.com/teams/3276774", + "html_url": "https://github.com/orgs/jenkinsci/teams/gsoc2019-promotion-for-pipeline", + "members_url": "https://api.github.com/teams/3276774/members{/member}", + "repositories_url": "https://api.github.com/teams/3276774/repos", + "permission": "pull" + }, + { + "name": "gsoc2019-ext-workspace-manager-cloud-features", + "id": 3276806, + "node_id": "MDQ6VGVhbTMyNzY4MDY=", + "slug": "gsoc2019-ext-workspace-manager-cloud-features", + "description": "GSoC 2019 team for https://jenkins.io/projects/gsoc/2019/ext-workspace-manager-cloud-features/", + "privacy": "closed", + "url": "https://api.github.com/teams/3276806", + "html_url": "https://github.com/orgs/jenkinsci/teams/gsoc2019-ext-workspace-manager-cloud-features", + "members_url": "https://api.github.com/teams/3276806/members{/member}", + "repositories_url": "https://api.github.com/teams/3276806/repos", + "permission": "pull" + }, + { + "name": "gsoc2019-gitlab-multibranch-pipeline", + "id": 3276812, + "node_id": "MDQ6VGVhbTMyNzY4MTI=", + "slug": "gsoc2019-gitlab-multibranch-pipeline", + "description": "GSoC 2019 project. Multibranch Pipeline support for GitLab SCM. https://jenkins.io/projects/gsoc/2019/gitlab-support-for-multibranch-pipeline/", + "privacy": "closed", + "url": "https://api.github.com/teams/3276812", + "html_url": "https://github.com/orgs/jenkinsci/teams/gsoc2019-gitlab-multibranch-pipeline", + "members_url": "https://api.github.com/teams/3276812/members{/member}", + "repositories_url": "https://api.github.com/teams/3276812/repos", + "permission": "pull" + }, + { + "name": "gsoc2019-plugin-installation-manager", + "id": 3276815, + "node_id": "MDQ6VGVhbTMyNzY4MTU=", + "slug": "gsoc2019-plugin-installation-manager", + "description": "GSoC 2019 Project: Plugin Installation Manager CLI Tool / Library. https://jenkins.io/projects/gsoc/2019/plugin-installation-manager-tool-cli/", + "privacy": "closed", + "url": "https://api.github.com/teams/3276815", + "html_url": "https://github.com/orgs/jenkinsci/teams/gsoc2019-plugin-installation-manager", + "members_url": "https://api.github.com/teams/3276815/members{/member}", + "repositories_url": "https://api.github.com/teams/3276815/repos", + "permission": "pull" + }, + { + "name": "gsoc2019-working-hours", + "id": 3276817, + "node_id": "MDQ6VGVhbTMyNzY4MTc=", + "slug": "gsoc2019-working-hours", + "description": "GSoC 2019 project: Working Hours Plugin - UI Improvements. https://jenkins.io/projects/gsoc/2019/working-hours-improvements/", + "privacy": "closed", + "url": "https://api.github.com/teams/3276817", + "html_url": "https://github.com/orgs/jenkinsci/teams/gsoc2019-working-hours", + "members_url": "https://api.github.com/teams/3276817/members{/member}", + "repositories_url": "https://api.github.com/teams/3276817/repos", + "permission": "pull" + }, + { + "name": "Checkmarx developers", + "id": 3296900, + "node_id": "MDQ6VGVhbTMyOTY5MDA=", + "slug": "checkmarx-developers", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/3296900", + "html_url": "https://github.com/orgs/jenkinsci/teams/checkmarx-developers", + "members_url": "https://api.github.com/teams/3296900/members{/member}", + "repositories_url": "https://api.github.com/teams/3296900/repos", + "permission": "pull" + }, + { + "name": "configuration-as-code-devtools-project-team", + "id": 3346208, + "node_id": "MDQ6VGVhbTMzNDYyMDg=", + "slug": "configuration-as-code-devtools-project-team", + "description": "Community Bridge project: Jenkins Configuation-as-Code developer tools (Autumn 2019)", + "privacy": "closed", + "url": "https://api.github.com/teams/3346208", + "html_url": "https://github.com/orgs/jenkinsci/teams/configuration-as-code-devtools-project-team", + "members_url": "https://api.github.com/teams/3346208/members{/member}", + "repositories_url": "https://api.github.com/teams/3346208/repos", + "permission": "pull" + }, + { + "name": "Devs", + "id": 3373539, + "node_id": "MDQ6VGVhbTMzNzM1Mzk=", + "slug": "devs", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/3373539", + "html_url": "https://github.com/orgs/jenkinsci/teams/devs", + "members_url": "https://api.github.com/teams/3373539/members{/member}", + "repositories_url": "https://api.github.com/teams/3373539/repos", + "permission": "pull" + }, + { + "name": "DevOpsInsights", + "id": 3422181, + "node_id": "MDQ6VGVhbTM0MjIxODE=", + "slug": "devopsinsights", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/3422181", + "html_url": "https://github.com/orgs/jenkinsci/teams/devopsinsights", + "members_url": "https://api.github.com/teams/3422181/members{/member}", + "repositories_url": "https://api.github.com/teams/3422181/repos", + "permission": "pull" + }, + { + "name": "Core PR Reviewers", + "id": 3428777, + "node_id": "MDQ6VGVhbTM0Mjg3Nzc=", + "slug": "core-pr-reviewers", + "description": "Jenkins Core Pull Request Reviewers. The team has Triage permissions in core repos", + "privacy": "closed", + "url": "https://api.github.com/teams/3428777", + "html_url": "https://github.com/orgs/jenkinsci/teams/core-pr-reviewers", + "members_url": "https://api.github.com/teams/3428777/members{/member}", + "repositories_url": "https://api.github.com/teams/3428777/repos", + "permission": "pull" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/organizations_107424_teams-bed0fcfe-7ccc-4b9c-aa07-32e6f68f2b74.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/organizations_107424_teams-bed0fcfe-7ccc-4b9c-aa07-32e6f68f2b74.json new file mode 100644 index 0000000000..c2ff66ebdb --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/organizations_107424_teams-bed0fcfe-7ccc-4b9c-aa07-32e6f68f2b74.json @@ -0,0 +1,327 @@ +[ + { + "name": "Cloud Native SIG", + "id": 2823398, + "node_id": "MDQ6VGVhbTI4MjMzOTg=", + "slug": "cloud-native-sig", + "description": "https://jenkins.io/sigs/cloud-native", + "privacy": "closed", + "url": "https://api.github.com/teams/2823398", + "html_url": "https://github.com/orgs/jenkinsci/teams/cloud-native-sig", + "members_url": "https://api.github.com/teams/2823398/members{/member}", + "repositories_url": "https://api.github.com/teams/2823398/repos", + "permission": "pull" + }, + { + "name": "JEP Sponsors", + "id": 2832516, + "node_id": "MDQ6VGVhbTI4MzI1MTY=", + "slug": "jep-sponsors", + "description": "JEP Sponsors ", + "privacy": "closed", + "url": "https://api.github.com/teams/2832516", + "html_url": "https://github.com/orgs/jenkinsci/teams/jep-sponsors", + "members_url": "https://api.github.com/teams/2832516/members{/member}", + "repositories_url": "https://api.github.com/teams/2832516/repos", + "permission": "pull" + }, + { + "name": "JEP BDFL Delegates", + "id": 2832517, + "node_id": "MDQ6VGVhbTI4MzI1MTc=", + "slug": "jep-bdfl-delegates", + "description": "JEP BDFL Delegates", + "privacy": "closed", + "url": "https://api.github.com/teams/2832517", + "html_url": "https://github.com/orgs/jenkinsci/teams/jep-bdfl-delegates", + "members_url": "https://api.github.com/teams/2832517/members{/member}", + "repositories_url": "https://api.github.com/teams/2832517/repos", + "permission": "pull" + }, + { + "name": "Chinese Localization SIG", + "id": 2873273, + "node_id": "MDQ6VGVhbTI4NzMyNzM=", + "slug": "chinese-localization-sig", + "description": "https://jenkins.io/sigs/chinese-localization/", + "privacy": "closed", + "url": "https://api.github.com/teams/2873273", + "html_url": "https://github.com/orgs/jenkinsci/teams/chinese-localization-sig", + "members_url": "https://api.github.com/teams/2873273/members{/member}", + "repositories_url": "https://api.github.com/teams/2873273/repos", + "permission": "pull" + }, + { + "name": "branch-api-plugin Developers", + "id": 2934265, + "node_id": "MDQ6VGVhbTI5MzQyNjU=", + "slug": "branch-api-plugin-developers", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/2934265", + "html_url": "https://github.com/orgs/jenkinsci/teams/branch-api-plugin-developers", + "members_url": "https://api.github.com/teams/2934265/members{/member}", + "repositories_url": "https://api.github.com/teams/2934265/repos", + "permission": "pull" + }, + { + "name": "Java11 support", + "id": 2991889, + "node_id": "MDQ6VGVhbTI5OTE4ODk=", + "slug": "java11-support", + "description": "Java 11 Support Team (JEP-211)", + "privacy": "closed", + "url": "https://api.github.com/teams/2991889", + "html_url": "https://github.com/orgs/jenkinsci/teams/java11-support", + "members_url": "https://api.github.com/teams/2991889/members{/member}", + "repositories_url": "https://api.github.com/teams/2991889/repos", + "permission": "pull" + }, + { + "name": "audit-log-plugin Developers", + "id": 3023453, + "node_id": "MDQ6VGVhbTMwMjM0NTM=", + "slug": "audit-log-plugin-developers", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/3023453", + "html_url": "https://github.com/orgs/jenkinsci/teams/audit-log-plugin-developers", + "members_url": "https://api.github.com/teams/3023453/members{/member}", + "repositories_url": "https://api.github.com/teams/3023453/repos", + "permission": "pull" + }, + { + "name": "SIG GSoC", + "id": 3055916, + "node_id": "MDQ6VGVhbTMwNTU5MTY=", + "slug": "sig-gsoc", + "description": "Google Summer if Code Special Ineterst Group", + "privacy": "closed", + "url": "https://api.github.com/teams/3055916", + "html_url": "https://github.com/orgs/jenkinsci/teams/sig-gsoc", + "members_url": "https://api.github.com/teams/3055916/members{/member}", + "repositories_url": "https://api.github.com/teams/3055916/repos", + "permission": "pull" + }, + { + "name": "DockerHub Admins", + "id": 3126598, + "node_id": "MDQ6VGVhbTMxMjY1OTg=", + "slug": "dockerhub-admins", + "description": "Team of DockerHub admins. Allows managing integrations and autobuilds in repos", + "privacy": "closed", + "url": "https://api.github.com/teams/3126598", + "html_url": "https://github.com/orgs/jenkinsci/teams/dockerhub-admins", + "members_url": "https://api.github.com/teams/3126598/members{/member}", + "repositories_url": "https://api.github.com/teams/3126598/repos", + "permission": "pull" + }, + { + "name": "netsparker-cloud-scan-plugin Admins", + "id": 3173032, + "node_id": "MDQ6VGVhbTMxNzMwMzI=", + "slug": "netsparker-cloud-scan-plugin-admins", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/3173032", + "html_url": "https://github.com/orgs/jenkinsci/teams/netsparker-cloud-scan-plugin-admins", + "members_url": "https://api.github.com/teams/3173032/members{/member}", + "repositories_url": "https://api.github.com/teams/3173032/repos", + "permission": "pull" + }, + { + "name": "github-admins", + "id": 3254222, + "node_id": "MDQ6VGVhbTMyNTQyMjI=", + "slug": "github-admins", + "description": "Administrators of the jenkinsci GitHub organization", + "privacy": "closed", + "url": "https://api.github.com/teams/3254222", + "html_url": "https://github.com/orgs/jenkinsci/teams/github-admins", + "members_url": "https://api.github.com/teams/3254222/members{/member}", + "repositories_url": "https://api.github.com/teams/3254222/repos", + "permission": "pull" + }, + { + "name": "gsoc2019-remoting", + "id": 3256632, + "node_id": "MDQ6VGVhbTMyNTY2MzI=", + "slug": "gsoc2019-remoting", + "description": "https://jenkins.io/projects/gsoc/2019/remoting-over-apache-kafka-docker-k8s-features/", + "privacy": "closed", + "url": "https://api.github.com/teams/3256632", + "html_url": "https://github.com/orgs/jenkinsci/teams/gsoc2019-remoting", + "members_url": "https://api.github.com/teams/3256632/members{/member}", + "repositories_url": "https://api.github.com/teams/3256632/repos", + "permission": "pull" + }, + { + "name": "Azure Devops Team", + "id": 3261120, + "node_id": "MDQ6VGVhbTMyNjExMjA=", + "slug": "azure-devops-team", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/3261120", + "html_url": "https://github.com/orgs/jenkinsci/teams/azure-devops-team", + "members_url": "https://api.github.com/teams/3261120/members{/member}", + "repositories_url": "https://api.github.com/teams/3261120/repos", + "permission": "pull" + }, + { + "name": "gsoc2019-all", + "id": 3261644, + "node_id": "MDQ6VGVhbTMyNjE2NDQ=", + "slug": "gsoc2019-all", + "description": "GSoC 2019 Students and Mentors", + "privacy": "closed", + "url": "https://api.github.com/teams/3261644", + "html_url": "https://github.com/orgs/jenkinsci/teams/gsoc2019-all", + "members_url": "https://api.github.com/teams/3261644/members{/member}", + "repositories_url": "https://api.github.com/teams/3261644/repos", + "permission": "pull" + }, + { + "name": "gsoc2019-role-strategy", + "id": 3267262, + "node_id": "MDQ6VGVhbTMyNjcyNjI=", + "slug": "gsoc2019-role-strategy", + "description": "GSoC 2019: Role Strategy Performance improvements project members", + "privacy": "closed", + "url": "https://api.github.com/teams/3267262", + "html_url": "https://github.com/orgs/jenkinsci/teams/gsoc2019-role-strategy", + "members_url": "https://api.github.com/teams/3267262/members{/member}", + "repositories_url": "https://api.github.com/teams/3267262/repos", + "permission": "pull" + }, + { + "name": "gsoc2019-promotion-for-pipeline", + "id": 3276774, + "node_id": "MDQ6VGVhbTMyNzY3NzQ=", + "slug": "gsoc2019-promotion-for-pipeline", + "description": "GSoC 2019 project members. Artifact promotion for Jenkins Pipeline. https://jenkins.io/projects/gsoc/2019/artifact-promotion-plugin-for-jenkins-pipeline/. ", + "privacy": "closed", + "url": "https://api.github.com/teams/3276774", + "html_url": "https://github.com/orgs/jenkinsci/teams/gsoc2019-promotion-for-pipeline", + "members_url": "https://api.github.com/teams/3276774/members{/member}", + "repositories_url": "https://api.github.com/teams/3276774/repos", + "permission": "pull" + }, + { + "name": "gsoc2019-ext-workspace-manager-cloud-features", + "id": 3276806, + "node_id": "MDQ6VGVhbTMyNzY4MDY=", + "slug": "gsoc2019-ext-workspace-manager-cloud-features", + "description": "GSoC 2019 team for https://jenkins.io/projects/gsoc/2019/ext-workspace-manager-cloud-features/", + "privacy": "closed", + "url": "https://api.github.com/teams/3276806", + "html_url": "https://github.com/orgs/jenkinsci/teams/gsoc2019-ext-workspace-manager-cloud-features", + "members_url": "https://api.github.com/teams/3276806/members{/member}", + "repositories_url": "https://api.github.com/teams/3276806/repos", + "permission": "pull" + }, + { + "name": "gsoc2019-gitlab-multibranch-pipeline", + "id": 3276812, + "node_id": "MDQ6VGVhbTMyNzY4MTI=", + "slug": "gsoc2019-gitlab-multibranch-pipeline", + "description": "GSoC 2019 project. Multibranch Pipeline support for GitLab SCM. https://jenkins.io/projects/gsoc/2019/gitlab-support-for-multibranch-pipeline/", + "privacy": "closed", + "url": "https://api.github.com/teams/3276812", + "html_url": "https://github.com/orgs/jenkinsci/teams/gsoc2019-gitlab-multibranch-pipeline", + "members_url": "https://api.github.com/teams/3276812/members{/member}", + "repositories_url": "https://api.github.com/teams/3276812/repos", + "permission": "pull" + }, + { + "name": "gsoc2019-plugin-installation-manager", + "id": 3276815, + "node_id": "MDQ6VGVhbTMyNzY4MTU=", + "slug": "gsoc2019-plugin-installation-manager", + "description": "GSoC 2019 Project: Plugin Installation Manager CLI Tool / Library. https://jenkins.io/projects/gsoc/2019/plugin-installation-manager-tool-cli/", + "privacy": "closed", + "url": "https://api.github.com/teams/3276815", + "html_url": "https://github.com/orgs/jenkinsci/teams/gsoc2019-plugin-installation-manager", + "members_url": "https://api.github.com/teams/3276815/members{/member}", + "repositories_url": "https://api.github.com/teams/3276815/repos", + "permission": "pull" + }, + { + "name": "gsoc2019-working-hours", + "id": 3276817, + "node_id": "MDQ6VGVhbTMyNzY4MTc=", + "slug": "gsoc2019-working-hours", + "description": "GSoC 2019 project: Working Hours Plugin - UI Improvements. https://jenkins.io/projects/gsoc/2019/working-hours-improvements/", + "privacy": "closed", + "url": "https://api.github.com/teams/3276817", + "html_url": "https://github.com/orgs/jenkinsci/teams/gsoc2019-working-hours", + "members_url": "https://api.github.com/teams/3276817/members{/member}", + "repositories_url": "https://api.github.com/teams/3276817/repos", + "permission": "pull" + }, + { + "name": "Checkmarx developers", + "id": 3296900, + "node_id": "MDQ6VGVhbTMyOTY5MDA=", + "slug": "checkmarx-developers", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/3296900", + "html_url": "https://github.com/orgs/jenkinsci/teams/checkmarx-developers", + "members_url": "https://api.github.com/teams/3296900/members{/member}", + "repositories_url": "https://api.github.com/teams/3296900/repos", + "permission": "pull" + }, + { + "name": "configuration-as-code-devtools-project-team", + "id": 3346208, + "node_id": "MDQ6VGVhbTMzNDYyMDg=", + "slug": "configuration-as-code-devtools-project-team", + "description": "Community Bridge project: Jenkins Configuation-as-Code developer tools (Autumn 2019)", + "privacy": "closed", + "url": "https://api.github.com/teams/3346208", + "html_url": "https://github.com/orgs/jenkinsci/teams/configuration-as-code-devtools-project-team", + "members_url": "https://api.github.com/teams/3346208/members{/member}", + "repositories_url": "https://api.github.com/teams/3346208/repos", + "permission": "pull" + }, + { + "name": "Devs", + "id": 3373539, + "node_id": "MDQ6VGVhbTMzNzM1Mzk=", + "slug": "devs", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/3373539", + "html_url": "https://github.com/orgs/jenkinsci/teams/devs", + "members_url": "https://api.github.com/teams/3373539/members{/member}", + "repositories_url": "https://api.github.com/teams/3373539/repos", + "permission": "pull" + }, + { + "name": "DevOpsInsights", + "id": 3422181, + "node_id": "MDQ6VGVhbTM0MjIxODE=", + "slug": "devopsinsights", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/3422181", + "html_url": "https://github.com/orgs/jenkinsci/teams/devopsinsights", + "members_url": "https://api.github.com/teams/3422181/members{/member}", + "repositories_url": "https://api.github.com/teams/3422181/repos", + "permission": "pull" + }, + { + "name": "Core PR Reviewers", + "id": 3428777, + "node_id": "MDQ6VGVhbTM0Mjg3Nzc=", + "slug": "core-pr-reviewers", + "description": "Jenkins Core Pull Request Reviewers. The team has Triage permissions in core repos", + "privacy": "closed", + "url": "https://api.github.com/teams/3428777", + "html_url": "https://github.com/orgs/jenkinsci/teams/core-pr-reviewers", + "members_url": "https://api.github.com/teams/3428777/members{/member}", + "repositories_url": "https://api.github.com/teams/3428777/repos", + "permission": "pull" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/organizations_235526_teams-3945b427-290f-4fa2-a720-79cb00ba290e.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/organizations_235526_teams-3945b427-290f-4fa2-a720-79cb00ba290e.json new file mode 100644 index 0000000000..1f3e086149 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/organizations_235526_teams-3945b427-290f-4fa2-a720-79cb00ba290e.json @@ -0,0 +1,392 @@ +[ + { + "name": "cjt-reviewers", + "id": 2384901, + "node_id": "MDQ6VGVhbTIzODQ5MDE=", + "slug": "cjt-reviewers", + "description": "CJT Reviewers", + "privacy": "closed", + "url": "https://api.github.com/teams/2384901", + "html_url": "https://github.com/orgs/cloudbees/teams/cjt-reviewers", + "members_url": "https://api.github.com/teams/2384901/members{/member}", + "repositories_url": "https://api.github.com/teams/2384901/repos", + "permission": "pull" + }, + { + "name": "Legacy Training Reviewers", + "id": 2384906, + "node_id": "MDQ6VGVhbTIzODQ5MDY=", + "slug": "legacy-training-reviewers", + "description": "Training Reviewers", + "privacy": "closed", + "url": "https://api.github.com/teams/2384906", + "html_url": "https://github.com/orgs/cloudbees/teams/legacy-training-reviewers", + "members_url": "https://api.github.com/teams/2384906/members{/member}", + "repositories_url": "https://api.github.com/teams/2384906/repos", + "permission": "pull" + }, + { + "name": "team-jarvis", + "id": 2418831, + "node_id": "MDQ6VGVhbTI0MTg4MzE=", + "slug": "team-jarvis", + "description": "JARVIS team", + "privacy": "closed", + "url": "https://api.github.com/teams/2418831", + "html_url": "https://github.com/orgs/cloudbees/teams/team-jarvis", + "members_url": "https://api.github.com/teams/2418831/members{/member}", + "repositories_url": "https://api.github.com/teams/2418831/repos", + "permission": "pull" + }, + { + "name": "team-csm", + "id": 2520559, + "node_id": "MDQ6VGVhbTI1MjA1NTk=", + "slug": "team-csm", + "description": "Customer Success Mhrrmrmrms", + "privacy": "closed", + "url": "https://api.github.com/teams/2520559", + "html_url": "https://github.com/orgs/cloudbees/teams/team-csm", + "members_url": "https://api.github.com/teams/2520559/members{/member}", + "repositories_url": "https://api.github.com/teams/2520559/repos", + "permission": "pull" + }, + { + "name": "team-design", + "id": 2601805, + "node_id": "MDQ6VGVhbTI2MDE4MDU=", + "slug": "team-design", + "description": "Product Design Team", + "privacy": "closed", + "url": "https://api.github.com/teams/2601805", + "html_url": "https://github.com/orgs/cloudbees/teams/team-design", + "members_url": "https://api.github.com/teams/2601805/members{/member}", + "repositories_url": "https://api.github.com/teams/2601805/repos", + "permission": "pull" + }, + { + "name": "team-cloud-cd", + "id": 2628091, + "node_id": "MDQ6VGVhbTI2MjgwOTE=", + "slug": "team-cloud-cd", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2628091", + "html_url": "https://github.com/orgs/cloudbees/teams/team-cloud-cd", + "members_url": "https://api.github.com/teams/2628091/members{/member}", + "repositories_url": "https://api.github.com/teams/2628091/repos", + "permission": "pull" + }, + { + "name": "team-arc", + "id": 2655014, + "node_id": "MDQ6VGVhbTI2NTUwMTQ=", + "slug": "team-arc", + "description": "ARC team members", + "privacy": "closed", + "url": "https://api.github.com/teams/2655014", + "html_url": "https://github.com/orgs/cloudbees/teams/team-arc", + "members_url": "https://api.github.com/teams/2655014/members{/member}", + "repositories_url": "https://api.github.com/teams/2655014/repos", + "permission": "pull" + }, + { + "name": "team-cjp", + "id": 2703359, + "node_id": "MDQ6VGVhbTI3MDMzNTk=", + "slug": "team-cjp", + "description": "Members of a new CJP Team working on CJP product", + "privacy": "closed", + "url": "https://api.github.com/teams/2703359", + "html_url": "https://github.com/orgs/cloudbees/teams/team-cjp", + "members_url": "https://api.github.com/teams/2703359/members{/member}", + "repositories_url": "https://api.github.com/teams/2703359/repos", + "permission": "pull" + }, + { + "name": "Architecture Team Bots", + "id": 2729438, + "node_id": "MDQ6VGVhbTI3Mjk0Mzg=", + "slug": "architecture-team-bots", + "description": "Bots being used by Architecture team in its repos", + "privacy": "closed", + "url": "https://api.github.com/teams/2729438", + "html_url": "https://github.com/orgs/cloudbees/teams/architecture-team-bots", + "members_url": "https://api.github.com/teams/2729438/members{/member}", + "repositories_url": "https://api.github.com/teams/2729438/repos", + "permission": "pull" + }, + { + "name": "team-release-administrators", + "id": 2790066, + "node_id": "MDQ6VGVhbTI3OTAwNjY=", + "slug": "team-release-administrators", + "description": "Senior Release Team Members", + "privacy": "closed", + "url": "https://api.github.com/teams/2790066", + "html_url": "https://github.com/orgs/cloudbees/teams/team-release-administrators", + "members_url": "https://api.github.com/teams/2790066/members{/member}", + "repositories_url": "https://api.github.com/teams/2790066/repos", + "permission": "pull" + }, + { + "name": "core-ux", + "id": 2793992, + "node_id": "MDQ6VGVhbTI3OTM5OTI=", + "slug": "core-ux", + "description": "Core UX", + "privacy": "closed", + "url": "https://api.github.com/teams/2793992", + "html_url": "https://github.com/orgs/cloudbees/teams/core-ux", + "members_url": "https://api.github.com/teams/2793992/members{/member}", + "repositories_url": "https://api.github.com/teams/2793992/repos", + "permission": "pull" + }, + { + "name": "team-cloudbeesdotcom", + "id": 2798267, + "node_id": "MDQ6VGVhbTI3OTgyNjc=", + "slug": "team-cloudbeesdotcom", + "description": "team-cloudbeesdotcom", + "privacy": "closed", + "url": "https://api.github.com/teams/2798267", + "html_url": "https://github.com/orgs/cloudbees/teams/team-cloudbeesdotcom", + "members_url": "https://api.github.com/teams/2798267/members{/member}", + "repositories_url": "https://api.github.com/teams/2798267/repos", + "permission": "pull" + }, + { + "name": "Team Foundation", + "id": 2809309, + "node_id": "MDQ6VGVhbTI4MDkzMDk=", + "slug": "team-foundation", + "description": "Jenkins Foundation Team", + "privacy": "closed", + "url": "https://api.github.com/teams/2809309", + "html_url": "https://github.com/orgs/cloudbees/teams/team-foundation", + "members_url": "https://api.github.com/teams/2809309/members{/member}", + "repositories_url": "https://api.github.com/teams/2809309/repos", + "permission": "pull" + }, + { + "name": "codeship", + "id": 2879573, + "node_id": "MDQ6VGVhbTI4Nzk1NzM=", + "slug": "codeship", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2879573", + "html_url": "https://github.com/orgs/cloudbees/teams/codeship", + "members_url": "https://api.github.com/teams/2879573/members{/member}", + "repositories_url": "https://api.github.com/teams/2879573/repos", + "permission": "pull" + }, + { + "name": "pipeline-team", + "id": 2915408, + "node_id": "MDQ6VGVhbTI5MTU0MDg=", + "slug": "pipeline-team", + "description": "pipeline team", + "privacy": "closed", + "url": "https://api.github.com/teams/2915408", + "html_url": "https://github.com/orgs/cloudbees/teams/pipeline-team", + "members_url": "https://api.github.com/teams/2915408/members{/member}", + "repositories_url": "https://api.github.com/teams/2915408/repos", + "permission": "pull" + }, + { + "name": "team-docs", + "id": 2924752, + "node_id": "MDQ6VGVhbTI5MjQ3NTI=", + "slug": "team-docs", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2924752", + "html_url": "https://github.com/orgs/cloudbees/teams/team-docs", + "members_url": "https://api.github.com/teams/2924752/members{/member}", + "repositories_url": "https://api.github.com/teams/2924752/repos", + "permission": "pull" + }, + { + "name": "team-cd-process", + "id": 2974003, + "node_id": "MDQ6VGVhbTI5NzQwMDM=", + "slug": "team-cd-process", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2974003", + "html_url": "https://github.com/orgs/cloudbees/teams/team-cd-process", + "members_url": "https://api.github.com/teams/2974003/members{/member}", + "repositories_url": "https://api.github.com/teams/2974003/repos", + "permission": "pull" + }, + { + "name": "team-apps", + "id": 3033568, + "node_id": "MDQ6VGVhbTMwMzM1Njg=", + "slug": "team-apps", + "description": "CloudBees Apps team", + "privacy": "closed", + "url": "https://api.github.com/teams/3033568", + "html_url": "https://github.com/orgs/cloudbees/teams/team-apps", + "members_url": "https://api.github.com/teams/3033568/members{/member}", + "repositories_url": "https://api.github.com/teams/3033568/repos", + "permission": "pull" + }, + { + "name": "test-romen", + "id": 3049841, + "node_id": "MDQ6VGVhbTMwNDk4NDE=", + "slug": "test-romen", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/3049841", + "html_url": "https://github.com/orgs/cloudbees/teams/test-romen", + "members_url": "https://api.github.com/teams/3049841/members{/member}", + "repositories_url": "https://api.github.com/teams/3049841/repos", + "permission": "pull" + }, + { + "name": "Training Organization", + "id": 3052519, + "node_id": "MDQ6VGVhbTMwNTI1MTk=", + "slug": "training-organization", + "description": "\"Parent\" group for the Training Organization. This group only defines which the shared repositories are.", + "privacy": "closed", + "url": "https://api.github.com/teams/3052519", + "html_url": "https://github.com/orgs/cloudbees/teams/training-organization", + "members_url": "https://api.github.com/teams/3052519/members{/member}", + "repositories_url": "https://api.github.com/teams/3052519/repos", + "permission": "pull" + }, + { + "name": "Training Internals", + "id": 3052521, + "node_id": "MDQ6VGVhbTMwNTI1MjE=", + "slug": "training-internals", + "description": "Group to define permissions over repositories for training admins. Members defined in subgroups.", + "privacy": "closed", + "url": "https://api.github.com/teams/3052521", + "html_url": "https://github.com/orgs/cloudbees/teams/training-internals", + "members_url": "https://api.github.com/teams/3052521/members{/member}", + "repositories_url": "https://api.github.com/teams/3052521/repos", + "permission": "pull" + }, + { + "name": "Training Contributors", + "id": 3052522, + "node_id": "MDQ6VGVhbTMwNTI1MjI=", + "slug": "training-contributors", + "description": "Group to define permissions over repositories for training contributors. Members defined in subgroups.", + "privacy": "closed", + "url": "https://api.github.com/teams/3052522", + "html_url": "https://github.com/orgs/cloudbees/teams/training-contributors", + "members_url": "https://api.github.com/teams/3052522/members{/member}", + "repositories_url": "https://api.github.com/teams/3052522/repos", + "permission": "pull" + }, + { + "name": "Training Reviewers", + "id": 3052609, + "node_id": "MDQ6VGVhbTMwNTI2MDk=", + "slug": "training-reviewers", + "description": "Group to define permissions over repositories for training reviewers. Members defined in subgroups.", + "privacy": "closed", + "url": "https://api.github.com/teams/3052609", + "html_url": "https://github.com/orgs/cloudbees/teams/training-reviewers", + "members_url": "https://api.github.com/teams/3052609/members{/member}", + "repositories_url": "https://api.github.com/teams/3052609/repos", + "permission": "pull" + }, + { + "name": "Training Internals Admins", + "id": 3052615, + "node_id": "MDQ6VGVhbTMwNTI2MTU=", + "slug": "training-internals-admins", + "description": "Members of CloudBees Training Team. Admins of Training Repositories", + "privacy": "closed", + "url": "https://api.github.com/teams/3052615", + "html_url": "https://github.com/orgs/cloudbees/teams/training-internals-admins", + "members_url": "https://api.github.com/teams/3052615/members{/member}", + "repositories_url": "https://api.github.com/teams/3052615/repos", + "permission": "pull" + }, + { + "name": "Training Reviewers CloudBees", + "id": 3066889, + "node_id": "MDQ6VGVhbTMwNjY4ODk=", + "slug": "training-reviewers-cloudbees", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/3066889", + "html_url": "https://github.com/orgs/cloudbees/teams/training-reviewers-cloudbees", + "members_url": "https://api.github.com/teams/3066889/members{/member}", + "repositories_url": "https://api.github.com/teams/3066889/repos", + "permission": "pull" + }, + { + "name": "Training Internals Reviewers", + "id": 3066904, + "node_id": "MDQ6VGVhbTMwNjY5MDQ=", + "slug": "training-internals-reviewers", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/3066904", + "html_url": "https://github.com/orgs/cloudbees/teams/training-internals-reviewers", + "members_url": "https://api.github.com/teams/3066904/members{/member}", + "repositories_url": "https://api.github.com/teams/3066904/repos", + "permission": "pull" + }, + { + "name": "Training Contributors CloudBees", + "id": 3075591, + "node_id": "MDQ6VGVhbTMwNzU1OTE=", + "slug": "training-contributors-cloudbees", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/3075591", + "html_url": "https://github.com/orgs/cloudbees/teams/training-contributors-cloudbees", + "members_url": "https://api.github.com/teams/3075591/members{/member}", + "repositories_url": "https://api.github.com/teams/3075591/repos", + "permission": "pull" + }, + { + "name": "Training Reviewers Partners", + "id": 3075793, + "node_id": "MDQ6VGVhbTMwNzU3OTM=", + "slug": "training-reviewers-partners", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/3075793", + "html_url": "https://github.com/orgs/cloudbees/teams/training-reviewers-partners", + "members_url": "https://api.github.com/teams/3075793/members{/member}", + "repositories_url": "https://api.github.com/teams/3075793/repos", + "permission": "pull" + }, + { + "name": "Certification Reviewers", + "id": 3136781, + "node_id": "MDQ6VGVhbTMxMzY3ODE=", + "slug": "certification-reviewers", + "description": "Group for all those associated with the Certification Review process", + "privacy": "closed", + "url": "https://api.github.com/teams/3136781", + "html_url": "https://github.com/orgs/cloudbees/teams/certification-reviewers", + "members_url": "https://api.github.com/teams/3136781/members{/member}", + "repositories_url": "https://api.github.com/teams/3136781/repos", + "permission": "pull" + }, + { + "name": "team-tsm", + "id": 3198019, + "node_id": "MDQ6VGVhbTMxOTgwMTk=", + "slug": "team-tsm", + "description": "Support TSMs", + "privacy": "closed", + "url": "https://api.github.com/teams/3198019", + "html_url": "https://github.com/orgs/cloudbees/teams/team-tsm", + "members_url": "https://api.github.com/teams/3198019/members{/member}", + "repositories_url": "https://api.github.com/teams/3198019/repos", + "permission": "pull" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/organizations_235526_teams-8591cc9c-9c1f-46ab-980f-784ed7ad2b54.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/organizations_235526_teams-8591cc9c-9c1f-46ab-980f-784ed7ad2b54.json new file mode 100644 index 0000000000..1f3e086149 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/organizations_235526_teams-8591cc9c-9c1f-46ab-980f-784ed7ad2b54.json @@ -0,0 +1,392 @@ +[ + { + "name": "cjt-reviewers", + "id": 2384901, + "node_id": "MDQ6VGVhbTIzODQ5MDE=", + "slug": "cjt-reviewers", + "description": "CJT Reviewers", + "privacy": "closed", + "url": "https://api.github.com/teams/2384901", + "html_url": "https://github.com/orgs/cloudbees/teams/cjt-reviewers", + "members_url": "https://api.github.com/teams/2384901/members{/member}", + "repositories_url": "https://api.github.com/teams/2384901/repos", + "permission": "pull" + }, + { + "name": "Legacy Training Reviewers", + "id": 2384906, + "node_id": "MDQ6VGVhbTIzODQ5MDY=", + "slug": "legacy-training-reviewers", + "description": "Training Reviewers", + "privacy": "closed", + "url": "https://api.github.com/teams/2384906", + "html_url": "https://github.com/orgs/cloudbees/teams/legacy-training-reviewers", + "members_url": "https://api.github.com/teams/2384906/members{/member}", + "repositories_url": "https://api.github.com/teams/2384906/repos", + "permission": "pull" + }, + { + "name": "team-jarvis", + "id": 2418831, + "node_id": "MDQ6VGVhbTI0MTg4MzE=", + "slug": "team-jarvis", + "description": "JARVIS team", + "privacy": "closed", + "url": "https://api.github.com/teams/2418831", + "html_url": "https://github.com/orgs/cloudbees/teams/team-jarvis", + "members_url": "https://api.github.com/teams/2418831/members{/member}", + "repositories_url": "https://api.github.com/teams/2418831/repos", + "permission": "pull" + }, + { + "name": "team-csm", + "id": 2520559, + "node_id": "MDQ6VGVhbTI1MjA1NTk=", + "slug": "team-csm", + "description": "Customer Success Mhrrmrmrms", + "privacy": "closed", + "url": "https://api.github.com/teams/2520559", + "html_url": "https://github.com/orgs/cloudbees/teams/team-csm", + "members_url": "https://api.github.com/teams/2520559/members{/member}", + "repositories_url": "https://api.github.com/teams/2520559/repos", + "permission": "pull" + }, + { + "name": "team-design", + "id": 2601805, + "node_id": "MDQ6VGVhbTI2MDE4MDU=", + "slug": "team-design", + "description": "Product Design Team", + "privacy": "closed", + "url": "https://api.github.com/teams/2601805", + "html_url": "https://github.com/orgs/cloudbees/teams/team-design", + "members_url": "https://api.github.com/teams/2601805/members{/member}", + "repositories_url": "https://api.github.com/teams/2601805/repos", + "permission": "pull" + }, + { + "name": "team-cloud-cd", + "id": 2628091, + "node_id": "MDQ6VGVhbTI2MjgwOTE=", + "slug": "team-cloud-cd", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2628091", + "html_url": "https://github.com/orgs/cloudbees/teams/team-cloud-cd", + "members_url": "https://api.github.com/teams/2628091/members{/member}", + "repositories_url": "https://api.github.com/teams/2628091/repos", + "permission": "pull" + }, + { + "name": "team-arc", + "id": 2655014, + "node_id": "MDQ6VGVhbTI2NTUwMTQ=", + "slug": "team-arc", + "description": "ARC team members", + "privacy": "closed", + "url": "https://api.github.com/teams/2655014", + "html_url": "https://github.com/orgs/cloudbees/teams/team-arc", + "members_url": "https://api.github.com/teams/2655014/members{/member}", + "repositories_url": "https://api.github.com/teams/2655014/repos", + "permission": "pull" + }, + { + "name": "team-cjp", + "id": 2703359, + "node_id": "MDQ6VGVhbTI3MDMzNTk=", + "slug": "team-cjp", + "description": "Members of a new CJP Team working on CJP product", + "privacy": "closed", + "url": "https://api.github.com/teams/2703359", + "html_url": "https://github.com/orgs/cloudbees/teams/team-cjp", + "members_url": "https://api.github.com/teams/2703359/members{/member}", + "repositories_url": "https://api.github.com/teams/2703359/repos", + "permission": "pull" + }, + { + "name": "Architecture Team Bots", + "id": 2729438, + "node_id": "MDQ6VGVhbTI3Mjk0Mzg=", + "slug": "architecture-team-bots", + "description": "Bots being used by Architecture team in its repos", + "privacy": "closed", + "url": "https://api.github.com/teams/2729438", + "html_url": "https://github.com/orgs/cloudbees/teams/architecture-team-bots", + "members_url": "https://api.github.com/teams/2729438/members{/member}", + "repositories_url": "https://api.github.com/teams/2729438/repos", + "permission": "pull" + }, + { + "name": "team-release-administrators", + "id": 2790066, + "node_id": "MDQ6VGVhbTI3OTAwNjY=", + "slug": "team-release-administrators", + "description": "Senior Release Team Members", + "privacy": "closed", + "url": "https://api.github.com/teams/2790066", + "html_url": "https://github.com/orgs/cloudbees/teams/team-release-administrators", + "members_url": "https://api.github.com/teams/2790066/members{/member}", + "repositories_url": "https://api.github.com/teams/2790066/repos", + "permission": "pull" + }, + { + "name": "core-ux", + "id": 2793992, + "node_id": "MDQ6VGVhbTI3OTM5OTI=", + "slug": "core-ux", + "description": "Core UX", + "privacy": "closed", + "url": "https://api.github.com/teams/2793992", + "html_url": "https://github.com/orgs/cloudbees/teams/core-ux", + "members_url": "https://api.github.com/teams/2793992/members{/member}", + "repositories_url": "https://api.github.com/teams/2793992/repos", + "permission": "pull" + }, + { + "name": "team-cloudbeesdotcom", + "id": 2798267, + "node_id": "MDQ6VGVhbTI3OTgyNjc=", + "slug": "team-cloudbeesdotcom", + "description": "team-cloudbeesdotcom", + "privacy": "closed", + "url": "https://api.github.com/teams/2798267", + "html_url": "https://github.com/orgs/cloudbees/teams/team-cloudbeesdotcom", + "members_url": "https://api.github.com/teams/2798267/members{/member}", + "repositories_url": "https://api.github.com/teams/2798267/repos", + "permission": "pull" + }, + { + "name": "Team Foundation", + "id": 2809309, + "node_id": "MDQ6VGVhbTI4MDkzMDk=", + "slug": "team-foundation", + "description": "Jenkins Foundation Team", + "privacy": "closed", + "url": "https://api.github.com/teams/2809309", + "html_url": "https://github.com/orgs/cloudbees/teams/team-foundation", + "members_url": "https://api.github.com/teams/2809309/members{/member}", + "repositories_url": "https://api.github.com/teams/2809309/repos", + "permission": "pull" + }, + { + "name": "codeship", + "id": 2879573, + "node_id": "MDQ6VGVhbTI4Nzk1NzM=", + "slug": "codeship", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2879573", + "html_url": "https://github.com/orgs/cloudbees/teams/codeship", + "members_url": "https://api.github.com/teams/2879573/members{/member}", + "repositories_url": "https://api.github.com/teams/2879573/repos", + "permission": "pull" + }, + { + "name": "pipeline-team", + "id": 2915408, + "node_id": "MDQ6VGVhbTI5MTU0MDg=", + "slug": "pipeline-team", + "description": "pipeline team", + "privacy": "closed", + "url": "https://api.github.com/teams/2915408", + "html_url": "https://github.com/orgs/cloudbees/teams/pipeline-team", + "members_url": "https://api.github.com/teams/2915408/members{/member}", + "repositories_url": "https://api.github.com/teams/2915408/repos", + "permission": "pull" + }, + { + "name": "team-docs", + "id": 2924752, + "node_id": "MDQ6VGVhbTI5MjQ3NTI=", + "slug": "team-docs", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2924752", + "html_url": "https://github.com/orgs/cloudbees/teams/team-docs", + "members_url": "https://api.github.com/teams/2924752/members{/member}", + "repositories_url": "https://api.github.com/teams/2924752/repos", + "permission": "pull" + }, + { + "name": "team-cd-process", + "id": 2974003, + "node_id": "MDQ6VGVhbTI5NzQwMDM=", + "slug": "team-cd-process", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2974003", + "html_url": "https://github.com/orgs/cloudbees/teams/team-cd-process", + "members_url": "https://api.github.com/teams/2974003/members{/member}", + "repositories_url": "https://api.github.com/teams/2974003/repos", + "permission": "pull" + }, + { + "name": "team-apps", + "id": 3033568, + "node_id": "MDQ6VGVhbTMwMzM1Njg=", + "slug": "team-apps", + "description": "CloudBees Apps team", + "privacy": "closed", + "url": "https://api.github.com/teams/3033568", + "html_url": "https://github.com/orgs/cloudbees/teams/team-apps", + "members_url": "https://api.github.com/teams/3033568/members{/member}", + "repositories_url": "https://api.github.com/teams/3033568/repos", + "permission": "pull" + }, + { + "name": "test-romen", + "id": 3049841, + "node_id": "MDQ6VGVhbTMwNDk4NDE=", + "slug": "test-romen", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/3049841", + "html_url": "https://github.com/orgs/cloudbees/teams/test-romen", + "members_url": "https://api.github.com/teams/3049841/members{/member}", + "repositories_url": "https://api.github.com/teams/3049841/repos", + "permission": "pull" + }, + { + "name": "Training Organization", + "id": 3052519, + "node_id": "MDQ6VGVhbTMwNTI1MTk=", + "slug": "training-organization", + "description": "\"Parent\" group for the Training Organization. This group only defines which the shared repositories are.", + "privacy": "closed", + "url": "https://api.github.com/teams/3052519", + "html_url": "https://github.com/orgs/cloudbees/teams/training-organization", + "members_url": "https://api.github.com/teams/3052519/members{/member}", + "repositories_url": "https://api.github.com/teams/3052519/repos", + "permission": "pull" + }, + { + "name": "Training Internals", + "id": 3052521, + "node_id": "MDQ6VGVhbTMwNTI1MjE=", + "slug": "training-internals", + "description": "Group to define permissions over repositories for training admins. Members defined in subgroups.", + "privacy": "closed", + "url": "https://api.github.com/teams/3052521", + "html_url": "https://github.com/orgs/cloudbees/teams/training-internals", + "members_url": "https://api.github.com/teams/3052521/members{/member}", + "repositories_url": "https://api.github.com/teams/3052521/repos", + "permission": "pull" + }, + { + "name": "Training Contributors", + "id": 3052522, + "node_id": "MDQ6VGVhbTMwNTI1MjI=", + "slug": "training-contributors", + "description": "Group to define permissions over repositories for training contributors. Members defined in subgroups.", + "privacy": "closed", + "url": "https://api.github.com/teams/3052522", + "html_url": "https://github.com/orgs/cloudbees/teams/training-contributors", + "members_url": "https://api.github.com/teams/3052522/members{/member}", + "repositories_url": "https://api.github.com/teams/3052522/repos", + "permission": "pull" + }, + { + "name": "Training Reviewers", + "id": 3052609, + "node_id": "MDQ6VGVhbTMwNTI2MDk=", + "slug": "training-reviewers", + "description": "Group to define permissions over repositories for training reviewers. Members defined in subgroups.", + "privacy": "closed", + "url": "https://api.github.com/teams/3052609", + "html_url": "https://github.com/orgs/cloudbees/teams/training-reviewers", + "members_url": "https://api.github.com/teams/3052609/members{/member}", + "repositories_url": "https://api.github.com/teams/3052609/repos", + "permission": "pull" + }, + { + "name": "Training Internals Admins", + "id": 3052615, + "node_id": "MDQ6VGVhbTMwNTI2MTU=", + "slug": "training-internals-admins", + "description": "Members of CloudBees Training Team. Admins of Training Repositories", + "privacy": "closed", + "url": "https://api.github.com/teams/3052615", + "html_url": "https://github.com/orgs/cloudbees/teams/training-internals-admins", + "members_url": "https://api.github.com/teams/3052615/members{/member}", + "repositories_url": "https://api.github.com/teams/3052615/repos", + "permission": "pull" + }, + { + "name": "Training Reviewers CloudBees", + "id": 3066889, + "node_id": "MDQ6VGVhbTMwNjY4ODk=", + "slug": "training-reviewers-cloudbees", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/3066889", + "html_url": "https://github.com/orgs/cloudbees/teams/training-reviewers-cloudbees", + "members_url": "https://api.github.com/teams/3066889/members{/member}", + "repositories_url": "https://api.github.com/teams/3066889/repos", + "permission": "pull" + }, + { + "name": "Training Internals Reviewers", + "id": 3066904, + "node_id": "MDQ6VGVhbTMwNjY5MDQ=", + "slug": "training-internals-reviewers", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/3066904", + "html_url": "https://github.com/orgs/cloudbees/teams/training-internals-reviewers", + "members_url": "https://api.github.com/teams/3066904/members{/member}", + "repositories_url": "https://api.github.com/teams/3066904/repos", + "permission": "pull" + }, + { + "name": "Training Contributors CloudBees", + "id": 3075591, + "node_id": "MDQ6VGVhbTMwNzU1OTE=", + "slug": "training-contributors-cloudbees", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/3075591", + "html_url": "https://github.com/orgs/cloudbees/teams/training-contributors-cloudbees", + "members_url": "https://api.github.com/teams/3075591/members{/member}", + "repositories_url": "https://api.github.com/teams/3075591/repos", + "permission": "pull" + }, + { + "name": "Training Reviewers Partners", + "id": 3075793, + "node_id": "MDQ6VGVhbTMwNzU3OTM=", + "slug": "training-reviewers-partners", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/3075793", + "html_url": "https://github.com/orgs/cloudbees/teams/training-reviewers-partners", + "members_url": "https://api.github.com/teams/3075793/members{/member}", + "repositories_url": "https://api.github.com/teams/3075793/repos", + "permission": "pull" + }, + { + "name": "Certification Reviewers", + "id": 3136781, + "node_id": "MDQ6VGVhbTMxMzY3ODE=", + "slug": "certification-reviewers", + "description": "Group for all those associated with the Certification Review process", + "privacy": "closed", + "url": "https://api.github.com/teams/3136781", + "html_url": "https://github.com/orgs/cloudbees/teams/certification-reviewers", + "members_url": "https://api.github.com/teams/3136781/members{/member}", + "repositories_url": "https://api.github.com/teams/3136781/repos", + "permission": "pull" + }, + { + "name": "team-tsm", + "id": 3198019, + "node_id": "MDQ6VGVhbTMxOTgwMTk=", + "slug": "team-tsm", + "description": "Support TSMs", + "privacy": "closed", + "url": "https://api.github.com/teams/3198019", + "html_url": "https://github.com/orgs/cloudbees/teams/team-tsm", + "members_url": "https://api.github.com/teams/3198019/members{/member}", + "repositories_url": "https://api.github.com/teams/3198019/repos", + "permission": "pull" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/organizations_235526_teams-bed3177f-0cd7-4ebb-acff-67cc43fd2504.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/organizations_235526_teams-bed3177f-0cd7-4ebb-acff-67cc43fd2504.json new file mode 100644 index 0000000000..1f3e086149 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/organizations_235526_teams-bed3177f-0cd7-4ebb-acff-67cc43fd2504.json @@ -0,0 +1,392 @@ +[ + { + "name": "cjt-reviewers", + "id": 2384901, + "node_id": "MDQ6VGVhbTIzODQ5MDE=", + "slug": "cjt-reviewers", + "description": "CJT Reviewers", + "privacy": "closed", + "url": "https://api.github.com/teams/2384901", + "html_url": "https://github.com/orgs/cloudbees/teams/cjt-reviewers", + "members_url": "https://api.github.com/teams/2384901/members{/member}", + "repositories_url": "https://api.github.com/teams/2384901/repos", + "permission": "pull" + }, + { + "name": "Legacy Training Reviewers", + "id": 2384906, + "node_id": "MDQ6VGVhbTIzODQ5MDY=", + "slug": "legacy-training-reviewers", + "description": "Training Reviewers", + "privacy": "closed", + "url": "https://api.github.com/teams/2384906", + "html_url": "https://github.com/orgs/cloudbees/teams/legacy-training-reviewers", + "members_url": "https://api.github.com/teams/2384906/members{/member}", + "repositories_url": "https://api.github.com/teams/2384906/repos", + "permission": "pull" + }, + { + "name": "team-jarvis", + "id": 2418831, + "node_id": "MDQ6VGVhbTI0MTg4MzE=", + "slug": "team-jarvis", + "description": "JARVIS team", + "privacy": "closed", + "url": "https://api.github.com/teams/2418831", + "html_url": "https://github.com/orgs/cloudbees/teams/team-jarvis", + "members_url": "https://api.github.com/teams/2418831/members{/member}", + "repositories_url": "https://api.github.com/teams/2418831/repos", + "permission": "pull" + }, + { + "name": "team-csm", + "id": 2520559, + "node_id": "MDQ6VGVhbTI1MjA1NTk=", + "slug": "team-csm", + "description": "Customer Success Mhrrmrmrms", + "privacy": "closed", + "url": "https://api.github.com/teams/2520559", + "html_url": "https://github.com/orgs/cloudbees/teams/team-csm", + "members_url": "https://api.github.com/teams/2520559/members{/member}", + "repositories_url": "https://api.github.com/teams/2520559/repos", + "permission": "pull" + }, + { + "name": "team-design", + "id": 2601805, + "node_id": "MDQ6VGVhbTI2MDE4MDU=", + "slug": "team-design", + "description": "Product Design Team", + "privacy": "closed", + "url": "https://api.github.com/teams/2601805", + "html_url": "https://github.com/orgs/cloudbees/teams/team-design", + "members_url": "https://api.github.com/teams/2601805/members{/member}", + "repositories_url": "https://api.github.com/teams/2601805/repos", + "permission": "pull" + }, + { + "name": "team-cloud-cd", + "id": 2628091, + "node_id": "MDQ6VGVhbTI2MjgwOTE=", + "slug": "team-cloud-cd", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2628091", + "html_url": "https://github.com/orgs/cloudbees/teams/team-cloud-cd", + "members_url": "https://api.github.com/teams/2628091/members{/member}", + "repositories_url": "https://api.github.com/teams/2628091/repos", + "permission": "pull" + }, + { + "name": "team-arc", + "id": 2655014, + "node_id": "MDQ6VGVhbTI2NTUwMTQ=", + "slug": "team-arc", + "description": "ARC team members", + "privacy": "closed", + "url": "https://api.github.com/teams/2655014", + "html_url": "https://github.com/orgs/cloudbees/teams/team-arc", + "members_url": "https://api.github.com/teams/2655014/members{/member}", + "repositories_url": "https://api.github.com/teams/2655014/repos", + "permission": "pull" + }, + { + "name": "team-cjp", + "id": 2703359, + "node_id": "MDQ6VGVhbTI3MDMzNTk=", + "slug": "team-cjp", + "description": "Members of a new CJP Team working on CJP product", + "privacy": "closed", + "url": "https://api.github.com/teams/2703359", + "html_url": "https://github.com/orgs/cloudbees/teams/team-cjp", + "members_url": "https://api.github.com/teams/2703359/members{/member}", + "repositories_url": "https://api.github.com/teams/2703359/repos", + "permission": "pull" + }, + { + "name": "Architecture Team Bots", + "id": 2729438, + "node_id": "MDQ6VGVhbTI3Mjk0Mzg=", + "slug": "architecture-team-bots", + "description": "Bots being used by Architecture team in its repos", + "privacy": "closed", + "url": "https://api.github.com/teams/2729438", + "html_url": "https://github.com/orgs/cloudbees/teams/architecture-team-bots", + "members_url": "https://api.github.com/teams/2729438/members{/member}", + "repositories_url": "https://api.github.com/teams/2729438/repos", + "permission": "pull" + }, + { + "name": "team-release-administrators", + "id": 2790066, + "node_id": "MDQ6VGVhbTI3OTAwNjY=", + "slug": "team-release-administrators", + "description": "Senior Release Team Members", + "privacy": "closed", + "url": "https://api.github.com/teams/2790066", + "html_url": "https://github.com/orgs/cloudbees/teams/team-release-administrators", + "members_url": "https://api.github.com/teams/2790066/members{/member}", + "repositories_url": "https://api.github.com/teams/2790066/repos", + "permission": "pull" + }, + { + "name": "core-ux", + "id": 2793992, + "node_id": "MDQ6VGVhbTI3OTM5OTI=", + "slug": "core-ux", + "description": "Core UX", + "privacy": "closed", + "url": "https://api.github.com/teams/2793992", + "html_url": "https://github.com/orgs/cloudbees/teams/core-ux", + "members_url": "https://api.github.com/teams/2793992/members{/member}", + "repositories_url": "https://api.github.com/teams/2793992/repos", + "permission": "pull" + }, + { + "name": "team-cloudbeesdotcom", + "id": 2798267, + "node_id": "MDQ6VGVhbTI3OTgyNjc=", + "slug": "team-cloudbeesdotcom", + "description": "team-cloudbeesdotcom", + "privacy": "closed", + "url": "https://api.github.com/teams/2798267", + "html_url": "https://github.com/orgs/cloudbees/teams/team-cloudbeesdotcom", + "members_url": "https://api.github.com/teams/2798267/members{/member}", + "repositories_url": "https://api.github.com/teams/2798267/repos", + "permission": "pull" + }, + { + "name": "Team Foundation", + "id": 2809309, + "node_id": "MDQ6VGVhbTI4MDkzMDk=", + "slug": "team-foundation", + "description": "Jenkins Foundation Team", + "privacy": "closed", + "url": "https://api.github.com/teams/2809309", + "html_url": "https://github.com/orgs/cloudbees/teams/team-foundation", + "members_url": "https://api.github.com/teams/2809309/members{/member}", + "repositories_url": "https://api.github.com/teams/2809309/repos", + "permission": "pull" + }, + { + "name": "codeship", + "id": 2879573, + "node_id": "MDQ6VGVhbTI4Nzk1NzM=", + "slug": "codeship", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2879573", + "html_url": "https://github.com/orgs/cloudbees/teams/codeship", + "members_url": "https://api.github.com/teams/2879573/members{/member}", + "repositories_url": "https://api.github.com/teams/2879573/repos", + "permission": "pull" + }, + { + "name": "pipeline-team", + "id": 2915408, + "node_id": "MDQ6VGVhbTI5MTU0MDg=", + "slug": "pipeline-team", + "description": "pipeline team", + "privacy": "closed", + "url": "https://api.github.com/teams/2915408", + "html_url": "https://github.com/orgs/cloudbees/teams/pipeline-team", + "members_url": "https://api.github.com/teams/2915408/members{/member}", + "repositories_url": "https://api.github.com/teams/2915408/repos", + "permission": "pull" + }, + { + "name": "team-docs", + "id": 2924752, + "node_id": "MDQ6VGVhbTI5MjQ3NTI=", + "slug": "team-docs", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2924752", + "html_url": "https://github.com/orgs/cloudbees/teams/team-docs", + "members_url": "https://api.github.com/teams/2924752/members{/member}", + "repositories_url": "https://api.github.com/teams/2924752/repos", + "permission": "pull" + }, + { + "name": "team-cd-process", + "id": 2974003, + "node_id": "MDQ6VGVhbTI5NzQwMDM=", + "slug": "team-cd-process", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2974003", + "html_url": "https://github.com/orgs/cloudbees/teams/team-cd-process", + "members_url": "https://api.github.com/teams/2974003/members{/member}", + "repositories_url": "https://api.github.com/teams/2974003/repos", + "permission": "pull" + }, + { + "name": "team-apps", + "id": 3033568, + "node_id": "MDQ6VGVhbTMwMzM1Njg=", + "slug": "team-apps", + "description": "CloudBees Apps team", + "privacy": "closed", + "url": "https://api.github.com/teams/3033568", + "html_url": "https://github.com/orgs/cloudbees/teams/team-apps", + "members_url": "https://api.github.com/teams/3033568/members{/member}", + "repositories_url": "https://api.github.com/teams/3033568/repos", + "permission": "pull" + }, + { + "name": "test-romen", + "id": 3049841, + "node_id": "MDQ6VGVhbTMwNDk4NDE=", + "slug": "test-romen", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/3049841", + "html_url": "https://github.com/orgs/cloudbees/teams/test-romen", + "members_url": "https://api.github.com/teams/3049841/members{/member}", + "repositories_url": "https://api.github.com/teams/3049841/repos", + "permission": "pull" + }, + { + "name": "Training Organization", + "id": 3052519, + "node_id": "MDQ6VGVhbTMwNTI1MTk=", + "slug": "training-organization", + "description": "\"Parent\" group for the Training Organization. This group only defines which the shared repositories are.", + "privacy": "closed", + "url": "https://api.github.com/teams/3052519", + "html_url": "https://github.com/orgs/cloudbees/teams/training-organization", + "members_url": "https://api.github.com/teams/3052519/members{/member}", + "repositories_url": "https://api.github.com/teams/3052519/repos", + "permission": "pull" + }, + { + "name": "Training Internals", + "id": 3052521, + "node_id": "MDQ6VGVhbTMwNTI1MjE=", + "slug": "training-internals", + "description": "Group to define permissions over repositories for training admins. Members defined in subgroups.", + "privacy": "closed", + "url": "https://api.github.com/teams/3052521", + "html_url": "https://github.com/orgs/cloudbees/teams/training-internals", + "members_url": "https://api.github.com/teams/3052521/members{/member}", + "repositories_url": "https://api.github.com/teams/3052521/repos", + "permission": "pull" + }, + { + "name": "Training Contributors", + "id": 3052522, + "node_id": "MDQ6VGVhbTMwNTI1MjI=", + "slug": "training-contributors", + "description": "Group to define permissions over repositories for training contributors. Members defined in subgroups.", + "privacy": "closed", + "url": "https://api.github.com/teams/3052522", + "html_url": "https://github.com/orgs/cloudbees/teams/training-contributors", + "members_url": "https://api.github.com/teams/3052522/members{/member}", + "repositories_url": "https://api.github.com/teams/3052522/repos", + "permission": "pull" + }, + { + "name": "Training Reviewers", + "id": 3052609, + "node_id": "MDQ6VGVhbTMwNTI2MDk=", + "slug": "training-reviewers", + "description": "Group to define permissions over repositories for training reviewers. Members defined in subgroups.", + "privacy": "closed", + "url": "https://api.github.com/teams/3052609", + "html_url": "https://github.com/orgs/cloudbees/teams/training-reviewers", + "members_url": "https://api.github.com/teams/3052609/members{/member}", + "repositories_url": "https://api.github.com/teams/3052609/repos", + "permission": "pull" + }, + { + "name": "Training Internals Admins", + "id": 3052615, + "node_id": "MDQ6VGVhbTMwNTI2MTU=", + "slug": "training-internals-admins", + "description": "Members of CloudBees Training Team. Admins of Training Repositories", + "privacy": "closed", + "url": "https://api.github.com/teams/3052615", + "html_url": "https://github.com/orgs/cloudbees/teams/training-internals-admins", + "members_url": "https://api.github.com/teams/3052615/members{/member}", + "repositories_url": "https://api.github.com/teams/3052615/repos", + "permission": "pull" + }, + { + "name": "Training Reviewers CloudBees", + "id": 3066889, + "node_id": "MDQ6VGVhbTMwNjY4ODk=", + "slug": "training-reviewers-cloudbees", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/3066889", + "html_url": "https://github.com/orgs/cloudbees/teams/training-reviewers-cloudbees", + "members_url": "https://api.github.com/teams/3066889/members{/member}", + "repositories_url": "https://api.github.com/teams/3066889/repos", + "permission": "pull" + }, + { + "name": "Training Internals Reviewers", + "id": 3066904, + "node_id": "MDQ6VGVhbTMwNjY5MDQ=", + "slug": "training-internals-reviewers", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/3066904", + "html_url": "https://github.com/orgs/cloudbees/teams/training-internals-reviewers", + "members_url": "https://api.github.com/teams/3066904/members{/member}", + "repositories_url": "https://api.github.com/teams/3066904/repos", + "permission": "pull" + }, + { + "name": "Training Contributors CloudBees", + "id": 3075591, + "node_id": "MDQ6VGVhbTMwNzU1OTE=", + "slug": "training-contributors-cloudbees", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/3075591", + "html_url": "https://github.com/orgs/cloudbees/teams/training-contributors-cloudbees", + "members_url": "https://api.github.com/teams/3075591/members{/member}", + "repositories_url": "https://api.github.com/teams/3075591/repos", + "permission": "pull" + }, + { + "name": "Training Reviewers Partners", + "id": 3075793, + "node_id": "MDQ6VGVhbTMwNzU3OTM=", + "slug": "training-reviewers-partners", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/3075793", + "html_url": "https://github.com/orgs/cloudbees/teams/training-reviewers-partners", + "members_url": "https://api.github.com/teams/3075793/members{/member}", + "repositories_url": "https://api.github.com/teams/3075793/repos", + "permission": "pull" + }, + { + "name": "Certification Reviewers", + "id": 3136781, + "node_id": "MDQ6VGVhbTMxMzY3ODE=", + "slug": "certification-reviewers", + "description": "Group for all those associated with the Certification Review process", + "privacy": "closed", + "url": "https://api.github.com/teams/3136781", + "html_url": "https://github.com/orgs/cloudbees/teams/certification-reviewers", + "members_url": "https://api.github.com/teams/3136781/members{/member}", + "repositories_url": "https://api.github.com/teams/3136781/repos", + "permission": "pull" + }, + { + "name": "team-tsm", + "id": 3198019, + "node_id": "MDQ6VGVhbTMxOTgwMTk=", + "slug": "team-tsm", + "description": "Support TSMs", + "privacy": "closed", + "url": "https://api.github.com/teams/3198019", + "html_url": "https://github.com/orgs/cloudbees/teams/team-tsm", + "members_url": "https://api.github.com/teams/3198019/members{/member}", + "repositories_url": "https://api.github.com/teams/3198019/repos", + "permission": "pull" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_beautify-web-62298d74-fe3c-459d-9f70-450e80247969.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_beautify-web-62298d74-fe3c-459d-9f70-450e80247969.json new file mode 100644 index 0000000000..af890f8e14 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_beautify-web-62298d74-fe3c-459d-9f70-450e80247969.json @@ -0,0 +1,41 @@ +{ + "login": "beautify-web", + "id": 6538164, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjY1MzgxNjQ=", + "url": "https://api.github.com/orgs/beautify-web", + "repos_url": "https://api.github.com/orgs/beautify-web/repos", + "events_url": "https://api.github.com/orgs/beautify-web/events", + "hooks_url": "https://api.github.com/orgs/beautify-web/hooks", + "issues_url": "https://api.github.com/orgs/beautify-web/issues", + "members_url": "https://api.github.com/orgs/beautify-web/members{/member}", + "public_members_url": "https://api.github.com/orgs/beautify-web/public_members{/member}", + "avatar_url": "https://avatars1.githubusercontent.com/u/6538164?v=4", + "description": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 1, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/beautify-web", + "created_at": "2014-01-29T19:42:53Z", + "updated_at": "2019-09-20T14:31:51Z", + "type": "Organization", + "total_private_repos": 0, + "owned_private_repos": 0, + "private_gists": 0, + "disk_usage": 9969, + "collaborators": 0, + "billing_email": "bitwiseman@gmail.com", + "default_repository_permission": "none", + "members_can_create_repositories": false, + "two_factor_requirement_enabled": false, + "plan": { + "name": "free", + "space": 976562499, + "private_repos": 0, + "filled_seats": 2, + "seats": 0 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_beautify-web_teams-58684478-ae6b-43c2-b30c-af37aeb81621.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_beautify-web_teams-58684478-ae6b-43c2-b30c-af37aeb81621.json new file mode 100644 index 0000000000..2803a9bac9 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_beautify-web_teams-58684478-ae6b-43c2-b30c-af37aeb81621.json @@ -0,0 +1,15 @@ +[ + { + "name": "Owners", + "id": 663296, + "node_id": "MDQ6VGVhbTY2MzI5Ng==", + "slug": "owners", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/663296", + "html_url": "https://github.com/orgs/beautify-web/teams/owners", + "members_url": "https://api.github.com/teams/663296/members{/member}", + "repositories_url": "https://api.github.com/teams/663296/repos", + "permission": "admin" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_cloudbees-ce8716a4-ec25-4626-9a3a-205e5558bd39.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_cloudbees-ce8716a4-ec25-4626-9a3a-205e5558bd39.json new file mode 100644 index 0000000000..a613ea268f --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_cloudbees-ce8716a4-ec25-4626-9a3a-205e5558bd39.json @@ -0,0 +1,46 @@ +{ + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "url": "https://api.github.com/orgs/cloudbees", + "repos_url": "https://api.github.com/orgs/cloudbees/repos", + "events_url": "https://api.github.com/orgs/cloudbees/events", + "hooks_url": "https://api.github.com/orgs/cloudbees/hooks", + "issues_url": "https://api.github.com/orgs/cloudbees/issues", + "members_url": "https://api.github.com/orgs/cloudbees/members{/member}", + "public_members_url": "https://api.github.com/orgs/cloudbees/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "description": "", + "name": "CloudBees", + "company": null, + "blog": "https://www.cloudbees.com/", + "location": null, + "email": null, + "is_verified": true, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 130, + "public_gists": 4, + "followers": 0, + "following": 0, + "html_url": "https://github.com/cloudbees", + "created_at": "2010-04-02T07:24:48Z", + "updated_at": "2018-07-26T22:36:42Z", + "type": "Organization", + "total_private_repos": 761, + "owned_private_repos": 750, + "private_gists": null, + "disk_usage": null, + "collaborators": null, + "billing_email": null, + "default_repository_permission": null, + "members_can_create_repositories": true, + "two_factor_requirement_enabled": null, + "plan": { + "name": "einsteinium", + "space": 976562499, + "private_repos": 750, + "filled_seats": 357, + "seats": 0 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_cloudbees_teams-1d3fc4da-c320-4621-bf6c-4fa95aeb487e.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_cloudbees_teams-1d3fc4da-c320-4621-bf6c-4fa95aeb487e.json new file mode 100644 index 0000000000..e9477419e6 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_cloudbees_teams-1d3fc4da-c320-4621-bf6c-4fa95aeb487e.json @@ -0,0 +1,392 @@ +[ + { + "name": "team-core", + "id": 48329, + "node_id": "MDQ6VGVhbTQ4MzI5", + "slug": "team-core", + "description": null, + "privacy": "closed", + "url": "https://api.github.com/teams/48329", + "html_url": "https://github.com/orgs/cloudbees/teams/team-core", + "members_url": "https://api.github.com/teams/48329/members{/member}", + "repositories_url": "https://api.github.com/teams/48329/repos", + "permission": "pull" + }, + { + "name": "Legacy Training Admins", + "id": 48354, + "node_id": "MDQ6VGVhbTQ4MzU0", + "slug": "legacy-training-admins", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/48354", + "html_url": "https://github.com/orgs/cloudbees/teams/legacy-training-admins", + "members_url": "https://api.github.com/teams/48354/members{/member}", + "repositories_url": "https://api.github.com/teams/48354/repos", + "permission": "push" + }, + { + "name": "cloudbees-ci", + "id": 49163, + "node_id": "MDQ6VGVhbTQ5MTYz", + "slug": "cloudbees-ci", + "description": "Shared account for granting CI systems access to code.", + "privacy": "closed", + "url": "https://api.github.com/teams/49163", + "html_url": "https://github.com/orgs/cloudbees/teams/cloudbees-ci", + "members_url": "https://api.github.com/teams/49163/members{/member}", + "repositories_url": "https://api.github.com/teams/49163/repos", + "permission": "push" + }, + { + "name": "team-dev-at-cloud", + "id": 70229, + "node_id": "MDQ6VGVhbTcwMjI5", + "slug": "team-dev-at-cloud", + "description": "DEV@cloud team", + "privacy": "closed", + "url": "https://api.github.com/teams/70229", + "html_url": "https://github.com/orgs/cloudbees/teams/team-dev-at-cloud", + "members_url": "https://api.github.com/teams/70229/members{/member}", + "repositories_url": "https://api.github.com/teams/70229/repos", + "permission": "push" + }, + { + "name": "team-support", + "id": 199796, + "node_id": "MDQ6VGVhbTE5OTc5Ng==", + "slug": "team-support", + "description": "Customer Support Engineers - DSE", + "privacy": "closed", + "url": "https://api.github.com/teams/199796", + "html_url": "https://github.com/orgs/cloudbees/teams/team-support", + "members_url": "https://api.github.com/teams/199796/members{/member}", + "repositories_url": "https://api.github.com/teams/199796/repos", + "permission": "pull" + }, + { + "name": "docker-image-builders", + "id": 873357, + "node_id": "MDQ6VGVhbTg3MzM1Nw==", + "slug": "docker-image-builders", + "description": "For building docker images", + "privacy": "closed", + "url": "https://api.github.com/teams/873357", + "html_url": "https://github.com/orgs/cloudbees/teams/docker-image-builders", + "members_url": "https://api.github.com/teams/873357/members{/member}", + "repositories_url": "https://api.github.com/teams/873357/repos", + "permission": "pull" + }, + { + "name": "team-documentation", + "id": 879403, + "node_id": "MDQ6VGVhbTg3OTQwMw==", + "slug": "team-documentation", + "description": "People who can contribute to documentation", + "privacy": "closed", + "url": "https://api.github.com/teams/879403", + "html_url": "https://github.com/orgs/cloudbees/teams/team-documentation", + "members_url": "https://api.github.com/teams/879403/members{/member}", + "repositories_url": "https://api.github.com/teams/879403/repos", + "permission": "push" + }, + { + "name": "Jenkins Enterprise", + "id": 994169, + "node_id": "MDQ6VGVhbTk5NDE2OQ==", + "slug": "jenkins-enterprise", + "description": "Jenkins Enterprise and Jenkins Operations Center sources", + "privacy": "closed", + "url": "https://api.github.com/teams/994169", + "html_url": "https://github.com/orgs/cloudbees/teams/jenkins-enterprise", + "members_url": "https://api.github.com/teams/994169/members{/member}", + "repositories_url": "https://api.github.com/teams/994169/repos", + "permission": "push" + }, + { + "name": "Jenkins Enterprise RO", + "id": 1076175, + "node_id": "MDQ6VGVhbTEwNzYxNzU=", + "slug": "jenkins-enterprise-ro", + "description": "Jenkins Enterprise and Jenkins Operations Center sources - Read-Only", + "privacy": "closed", + "url": "https://api.github.com/teams/1076175", + "html_url": "https://github.com/orgs/cloudbees/teams/jenkins-enterprise-ro", + "members_url": "https://api.github.com/teams/1076175/members{/member}", + "repositories_url": "https://api.github.com/teams/1076175/repos", + "permission": "pull" + }, + { + "name": "team-infra-operations", + "id": 1310418, + "node_id": "MDQ6VGVhbTEzMTA0MTg=", + "slug": "team-infra-operations", + "description": "Operations Team", + "privacy": "closed", + "url": "https://api.github.com/teams/1310418", + "html_url": "https://github.com/orgs/cloudbees/teams/team-infra-operations", + "members_url": "https://api.github.com/teams/1310418/members{/member}", + "repositories_url": "https://api.github.com/teams/1310418/repos", + "permission": "push" + }, + { + "name": "team-support-admin", + "id": 1336857, + "node_id": "MDQ6VGVhbTEzMzY4NTc=", + "slug": "team-support-admin", + "description": "Support Admin", + "privacy": "closed", + "url": "https://api.github.com/teams/1336857", + "html_url": "https://github.com/orgs/cloudbees/teams/team-support-admin", + "members_url": "https://api.github.com/teams/1336857/members{/member}", + "repositories_url": "https://api.github.com/teams/1336857/repos", + "permission": "pull" + }, + { + "name": "docker-team-admin", + "id": 1354803, + "node_id": "MDQ6VGVhbTEzNTQ4MDM=", + "slug": "docker-team-admin", + "description": "Docker team Admin", + "privacy": "closed", + "url": "https://api.github.com/teams/1354803", + "html_url": "https://github.com/orgs/cloudbees/teams/docker-team-admin", + "members_url": "https://api.github.com/teams/1354803/members{/member}", + "repositories_url": "https://api.github.com/teams/1354803/repos", + "permission": "pull" + }, + { + "name": "team-cloud-platform", + "id": 1427758, + "node_id": "MDQ6VGVhbTE0Mjc3NTg=", + "slug": "team-cloud-platform", + "description": "Engineers working on the Cloud Platform", + "privacy": "closed", + "url": "https://api.github.com/teams/1427758", + "html_url": "https://github.com/orgs/cloudbees/teams/team-cloud-platform", + "members_url": "https://api.github.com/teams/1427758/members{/member}", + "repositories_url": "https://api.github.com/teams/1427758/repos", + "permission": "push" + }, + { + "name": "team-infra-engineering-senior", + "id": 1427781, + "node_id": "MDQ6VGVhbTE0Mjc3ODE=", + "slug": "team-infra-engineering-senior", + "description": "Senior engineers - defined arbitrarily based on tenure, and seniority, and usually just asking for access.", + "privacy": "closed", + "url": "https://api.github.com/teams/1427781", + "html_url": "https://github.com/orgs/cloudbees/teams/team-infra-engineering-senior", + "members_url": "https://api.github.com/teams/1427781/members{/member}", + "repositories_url": "https://api.github.com/teams/1427781/repos", + "permission": "pull" + }, + { + "name": "team-infra-operations-senior", + "id": 1449146, + "node_id": "MDQ6VGVhbTE0NDkxNDY=", + "slug": "team-infra-operations-senior", + "description": "Senior operations team - admin access to non-specific admin repositories", + "privacy": "closed", + "url": "https://api.github.com/teams/1449146", + "html_url": "https://github.com/orgs/cloudbees/teams/team-infra-operations-senior", + "members_url": "https://api.github.com/teams/1449146/members{/member}", + "repositories_url": "https://api.github.com/teams/1449146/repos", + "permission": "pull" + }, + { + "name": "team-infra-cloudbees-employees", + "id": 1450069, + "node_id": "MDQ6VGVhbTE0NTAwNjk=", + "slug": "team-infra-cloudbees-employees", + "description": "CloudBees employees - simple group that grants read access.", + "privacy": "closed", + "url": "https://api.github.com/teams/1450069", + "html_url": "https://github.com/orgs/cloudbees/teams/team-infra-cloudbees-employees", + "members_url": "https://api.github.com/teams/1450069/members{/member}", + "repositories_url": "https://api.github.com/teams/1450069/repos", + "permission": "pull" + }, + { + "name": "team-sa-admin", + "id": 1565127, + "node_id": "MDQ6VGVhbTE1NjUxMjc=", + "slug": "team-sa-admin", + "description": "Solution Arch admins", + "privacy": "closed", + "url": "https://api.github.com/teams/1565127", + "html_url": "https://github.com/orgs/cloudbees/teams/team-sa-admin", + "members_url": "https://api.github.com/teams/1565127/members{/member}", + "repositories_url": "https://api.github.com/teams/1565127/repos", + "permission": "pull" + }, + { + "name": "cloudbees-blueocean-ux", + "id": 1905178, + "node_id": "MDQ6VGVhbTE5MDUxNzg=", + "slug": "cloudbees-blueocean-ux", + "description": "BlueOcean UX project ", + "privacy": "closed", + "url": "https://api.github.com/teams/1905178", + "html_url": "https://github.com/orgs/cloudbees/teams/cloudbees-blueocean-ux", + "members_url": "https://api.github.com/teams/1905178/members{/member}", + "repositories_url": "https://api.github.com/teams/1905178/repos", + "permission": "pull" + }, + { + "name": "team-professional-services", + "id": 1914484, + "node_id": "MDQ6VGVhbTE5MTQ0ODQ=", + "slug": "team-professional-services", + "description": "Professional Services", + "privacy": "closed", + "url": "https://api.github.com/teams/1914484", + "html_url": "https://github.com/orgs/cloudbees/teams/team-professional-services", + "members_url": "https://api.github.com/teams/1914484/members{/member}", + "repositories_url": "https://api.github.com/teams/1914484/repos", + "permission": "pull" + }, + { + "name": "team-cjp-onboarding", + "id": 1939111, + "node_id": "MDQ6VGVhbTE5MzkxMTE=", + "slug": "team-cjp-onboarding", + "description": "for GC/SF/License work", + "privacy": "closed", + "url": "https://api.github.com/teams/1939111", + "html_url": "https://github.com/orgs/cloudbees/teams/team-cjp-onboarding", + "members_url": "https://api.github.com/teams/1939111/members{/member}", + "repositories_url": "https://api.github.com/teams/1939111/repos", + "permission": "pull" + }, + { + "name": "team-alliances", + "id": 1991918, + "node_id": "MDQ6VGVhbTE5OTE5MTg=", + "slug": "team-alliances", + "description": "Alliances team", + "privacy": "closed", + "url": "https://api.github.com/teams/1991918", + "html_url": "https://github.com/orgs/cloudbees/teams/team-alliances", + "members_url": "https://api.github.com/teams/1991918/members{/member}", + "repositories_url": "https://api.github.com/teams/1991918/repos", + "permission": "pull" + }, + { + "name": "Legacy Training Contributors", + "id": 2070581, + "node_id": "MDQ6VGVhbTIwNzA1ODE=", + "slug": "legacy-training-contributors", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2070581", + "html_url": "https://github.com/orgs/cloudbees/teams/legacy-training-contributors", + "members_url": "https://api.github.com/teams/2070581/members{/member}", + "repositories_url": "https://api.github.com/teams/2070581/repos", + "permission": "pull" + }, + { + "name": "team-productivity", + "id": 2187916, + "node_id": "MDQ6VGVhbTIxODc5MTY=", + "slug": "team-productivity", + "description": "Members of Productivity Team", + "privacy": "closed", + "url": "https://api.github.com/teams/2187916", + "html_url": "https://github.com/orgs/cloudbees/teams/team-productivity", + "members_url": "https://api.github.com/teams/2187916/members{/member}", + "repositories_url": "https://api.github.com/teams/2187916/repos", + "permission": "pull" + }, + { + "name": "knowledge", + "id": 2269997, + "node_id": "MDQ6VGVhbTIyNjk5OTc=", + "slug": "knowledge", + "description": "Knowledge n' stuff", + "privacy": "closed", + "url": "https://api.github.com/teams/2269997", + "html_url": "https://github.com/orgs/cloudbees/teams/knowledge", + "members_url": "https://api.github.com/teams/2269997/members{/member}", + "repositories_url": "https://api.github.com/teams/2269997/repos", + "permission": "pull" + }, + { + "name": "team-qa", + "id": 2283650, + "node_id": "MDQ6VGVhbTIyODM2NTA=", + "slug": "team-qa", + "description": "team-qa", + "privacy": "closed", + "url": "https://api.github.com/teams/2283650", + "html_url": "https://github.com/orgs/cloudbees/teams/team-qa", + "members_url": "https://api.github.com/teams/2283650/members{/member}", + "repositories_url": "https://api.github.com/teams/2283650/repos", + "permission": "pull" + }, + { + "name": "team-core-traditional", + "id": 2286168, + "node_id": "MDQ6VGVhbTIyODYxNjg=", + "slug": "team-core-traditional", + "description": "Team Core Traditional is the new Team Core Platform is the new Team Astro is the new Team CJP.", + "privacy": "closed", + "url": "https://api.github.com/teams/2286168", + "html_url": "https://github.com/orgs/cloudbees/teams/team-core-traditional", + "members_url": "https://api.github.com/teams/2286168/members{/member}", + "repositories_url": "https://api.github.com/teams/2286168/repos", + "permission": "pull" + }, + { + "name": "OSS Team", + "id": 2295003, + "node_id": "MDQ6VGVhbTIyOTUwMDM=", + "slug": "oss-team", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2295003", + "html_url": "https://github.com/orgs/cloudbees/teams/oss-team", + "members_url": "https://api.github.com/teams/2295003/members{/member}", + "repositories_url": "https://api.github.com/teams/2295003/repos", + "permission": "pull" + }, + { + "name": "team-analytics", + "id": 2316328, + "node_id": "MDQ6VGVhbTIzMTYzMjg=", + "slug": "team-analytics", + "description": "DevOptics team", + "privacy": "closed", + "url": "https://api.github.com/teams/2316328", + "html_url": "https://github.com/orgs/cloudbees/teams/team-analytics", + "members_url": "https://api.github.com/teams/2316328/members{/member}", + "repositories_url": "https://api.github.com/teams/2316328/repos", + "permission": "pull" + }, + { + "name": "team-infra-cloudbees-interns", + "id": 2377437, + "node_id": "MDQ6VGVhbTIzNzc0Mzc=", + "slug": "team-infra-cloudbees-interns", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2377437", + "html_url": "https://github.com/orgs/cloudbees/teams/team-infra-cloudbees-interns", + "members_url": "https://api.github.com/teams/2377437/members{/member}", + "repositories_url": "https://api.github.com/teams/2377437/repos", + "permission": "pull" + }, + { + "name": "cje-reviewers", + "id": 2384898, + "node_id": "MDQ6VGVhbTIzODQ4OTg=", + "slug": "cje-reviewers", + "description": "CJE Reviewers", + "privacy": "closed", + "url": "https://api.github.com/teams/2384898", + "html_url": "https://github.com/orgs/cloudbees/teams/cje-reviewers", + "members_url": "https://api.github.com/teams/2384898/members{/member}", + "repositories_url": "https://api.github.com/teams/2384898/repos", + "permission": "pull" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_cloudbees_teams-35c47636-9b2c-4e43-866a-62d34ddf04fb.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_cloudbees_teams-35c47636-9b2c-4e43-866a-62d34ddf04fb.json new file mode 100644 index 0000000000..e9477419e6 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_cloudbees_teams-35c47636-9b2c-4e43-866a-62d34ddf04fb.json @@ -0,0 +1,392 @@ +[ + { + "name": "team-core", + "id": 48329, + "node_id": "MDQ6VGVhbTQ4MzI5", + "slug": "team-core", + "description": null, + "privacy": "closed", + "url": "https://api.github.com/teams/48329", + "html_url": "https://github.com/orgs/cloudbees/teams/team-core", + "members_url": "https://api.github.com/teams/48329/members{/member}", + "repositories_url": "https://api.github.com/teams/48329/repos", + "permission": "pull" + }, + { + "name": "Legacy Training Admins", + "id": 48354, + "node_id": "MDQ6VGVhbTQ4MzU0", + "slug": "legacy-training-admins", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/48354", + "html_url": "https://github.com/orgs/cloudbees/teams/legacy-training-admins", + "members_url": "https://api.github.com/teams/48354/members{/member}", + "repositories_url": "https://api.github.com/teams/48354/repos", + "permission": "push" + }, + { + "name": "cloudbees-ci", + "id": 49163, + "node_id": "MDQ6VGVhbTQ5MTYz", + "slug": "cloudbees-ci", + "description": "Shared account for granting CI systems access to code.", + "privacy": "closed", + "url": "https://api.github.com/teams/49163", + "html_url": "https://github.com/orgs/cloudbees/teams/cloudbees-ci", + "members_url": "https://api.github.com/teams/49163/members{/member}", + "repositories_url": "https://api.github.com/teams/49163/repos", + "permission": "push" + }, + { + "name": "team-dev-at-cloud", + "id": 70229, + "node_id": "MDQ6VGVhbTcwMjI5", + "slug": "team-dev-at-cloud", + "description": "DEV@cloud team", + "privacy": "closed", + "url": "https://api.github.com/teams/70229", + "html_url": "https://github.com/orgs/cloudbees/teams/team-dev-at-cloud", + "members_url": "https://api.github.com/teams/70229/members{/member}", + "repositories_url": "https://api.github.com/teams/70229/repos", + "permission": "push" + }, + { + "name": "team-support", + "id": 199796, + "node_id": "MDQ6VGVhbTE5OTc5Ng==", + "slug": "team-support", + "description": "Customer Support Engineers - DSE", + "privacy": "closed", + "url": "https://api.github.com/teams/199796", + "html_url": "https://github.com/orgs/cloudbees/teams/team-support", + "members_url": "https://api.github.com/teams/199796/members{/member}", + "repositories_url": "https://api.github.com/teams/199796/repos", + "permission": "pull" + }, + { + "name": "docker-image-builders", + "id": 873357, + "node_id": "MDQ6VGVhbTg3MzM1Nw==", + "slug": "docker-image-builders", + "description": "For building docker images", + "privacy": "closed", + "url": "https://api.github.com/teams/873357", + "html_url": "https://github.com/orgs/cloudbees/teams/docker-image-builders", + "members_url": "https://api.github.com/teams/873357/members{/member}", + "repositories_url": "https://api.github.com/teams/873357/repos", + "permission": "pull" + }, + { + "name": "team-documentation", + "id": 879403, + "node_id": "MDQ6VGVhbTg3OTQwMw==", + "slug": "team-documentation", + "description": "People who can contribute to documentation", + "privacy": "closed", + "url": "https://api.github.com/teams/879403", + "html_url": "https://github.com/orgs/cloudbees/teams/team-documentation", + "members_url": "https://api.github.com/teams/879403/members{/member}", + "repositories_url": "https://api.github.com/teams/879403/repos", + "permission": "push" + }, + { + "name": "Jenkins Enterprise", + "id": 994169, + "node_id": "MDQ6VGVhbTk5NDE2OQ==", + "slug": "jenkins-enterprise", + "description": "Jenkins Enterprise and Jenkins Operations Center sources", + "privacy": "closed", + "url": "https://api.github.com/teams/994169", + "html_url": "https://github.com/orgs/cloudbees/teams/jenkins-enterprise", + "members_url": "https://api.github.com/teams/994169/members{/member}", + "repositories_url": "https://api.github.com/teams/994169/repos", + "permission": "push" + }, + { + "name": "Jenkins Enterprise RO", + "id": 1076175, + "node_id": "MDQ6VGVhbTEwNzYxNzU=", + "slug": "jenkins-enterprise-ro", + "description": "Jenkins Enterprise and Jenkins Operations Center sources - Read-Only", + "privacy": "closed", + "url": "https://api.github.com/teams/1076175", + "html_url": "https://github.com/orgs/cloudbees/teams/jenkins-enterprise-ro", + "members_url": "https://api.github.com/teams/1076175/members{/member}", + "repositories_url": "https://api.github.com/teams/1076175/repos", + "permission": "pull" + }, + { + "name": "team-infra-operations", + "id": 1310418, + "node_id": "MDQ6VGVhbTEzMTA0MTg=", + "slug": "team-infra-operations", + "description": "Operations Team", + "privacy": "closed", + "url": "https://api.github.com/teams/1310418", + "html_url": "https://github.com/orgs/cloudbees/teams/team-infra-operations", + "members_url": "https://api.github.com/teams/1310418/members{/member}", + "repositories_url": "https://api.github.com/teams/1310418/repos", + "permission": "push" + }, + { + "name": "team-support-admin", + "id": 1336857, + "node_id": "MDQ6VGVhbTEzMzY4NTc=", + "slug": "team-support-admin", + "description": "Support Admin", + "privacy": "closed", + "url": "https://api.github.com/teams/1336857", + "html_url": "https://github.com/orgs/cloudbees/teams/team-support-admin", + "members_url": "https://api.github.com/teams/1336857/members{/member}", + "repositories_url": "https://api.github.com/teams/1336857/repos", + "permission": "pull" + }, + { + "name": "docker-team-admin", + "id": 1354803, + "node_id": "MDQ6VGVhbTEzNTQ4MDM=", + "slug": "docker-team-admin", + "description": "Docker team Admin", + "privacy": "closed", + "url": "https://api.github.com/teams/1354803", + "html_url": "https://github.com/orgs/cloudbees/teams/docker-team-admin", + "members_url": "https://api.github.com/teams/1354803/members{/member}", + "repositories_url": "https://api.github.com/teams/1354803/repos", + "permission": "pull" + }, + { + "name": "team-cloud-platform", + "id": 1427758, + "node_id": "MDQ6VGVhbTE0Mjc3NTg=", + "slug": "team-cloud-platform", + "description": "Engineers working on the Cloud Platform", + "privacy": "closed", + "url": "https://api.github.com/teams/1427758", + "html_url": "https://github.com/orgs/cloudbees/teams/team-cloud-platform", + "members_url": "https://api.github.com/teams/1427758/members{/member}", + "repositories_url": "https://api.github.com/teams/1427758/repos", + "permission": "push" + }, + { + "name": "team-infra-engineering-senior", + "id": 1427781, + "node_id": "MDQ6VGVhbTE0Mjc3ODE=", + "slug": "team-infra-engineering-senior", + "description": "Senior engineers - defined arbitrarily based on tenure, and seniority, and usually just asking for access.", + "privacy": "closed", + "url": "https://api.github.com/teams/1427781", + "html_url": "https://github.com/orgs/cloudbees/teams/team-infra-engineering-senior", + "members_url": "https://api.github.com/teams/1427781/members{/member}", + "repositories_url": "https://api.github.com/teams/1427781/repos", + "permission": "pull" + }, + { + "name": "team-infra-operations-senior", + "id": 1449146, + "node_id": "MDQ6VGVhbTE0NDkxNDY=", + "slug": "team-infra-operations-senior", + "description": "Senior operations team - admin access to non-specific admin repositories", + "privacy": "closed", + "url": "https://api.github.com/teams/1449146", + "html_url": "https://github.com/orgs/cloudbees/teams/team-infra-operations-senior", + "members_url": "https://api.github.com/teams/1449146/members{/member}", + "repositories_url": "https://api.github.com/teams/1449146/repos", + "permission": "pull" + }, + { + "name": "team-infra-cloudbees-employees", + "id": 1450069, + "node_id": "MDQ6VGVhbTE0NTAwNjk=", + "slug": "team-infra-cloudbees-employees", + "description": "CloudBees employees - simple group that grants read access.", + "privacy": "closed", + "url": "https://api.github.com/teams/1450069", + "html_url": "https://github.com/orgs/cloudbees/teams/team-infra-cloudbees-employees", + "members_url": "https://api.github.com/teams/1450069/members{/member}", + "repositories_url": "https://api.github.com/teams/1450069/repos", + "permission": "pull" + }, + { + "name": "team-sa-admin", + "id": 1565127, + "node_id": "MDQ6VGVhbTE1NjUxMjc=", + "slug": "team-sa-admin", + "description": "Solution Arch admins", + "privacy": "closed", + "url": "https://api.github.com/teams/1565127", + "html_url": "https://github.com/orgs/cloudbees/teams/team-sa-admin", + "members_url": "https://api.github.com/teams/1565127/members{/member}", + "repositories_url": "https://api.github.com/teams/1565127/repos", + "permission": "pull" + }, + { + "name": "cloudbees-blueocean-ux", + "id": 1905178, + "node_id": "MDQ6VGVhbTE5MDUxNzg=", + "slug": "cloudbees-blueocean-ux", + "description": "BlueOcean UX project ", + "privacy": "closed", + "url": "https://api.github.com/teams/1905178", + "html_url": "https://github.com/orgs/cloudbees/teams/cloudbees-blueocean-ux", + "members_url": "https://api.github.com/teams/1905178/members{/member}", + "repositories_url": "https://api.github.com/teams/1905178/repos", + "permission": "pull" + }, + { + "name": "team-professional-services", + "id": 1914484, + "node_id": "MDQ6VGVhbTE5MTQ0ODQ=", + "slug": "team-professional-services", + "description": "Professional Services", + "privacy": "closed", + "url": "https://api.github.com/teams/1914484", + "html_url": "https://github.com/orgs/cloudbees/teams/team-professional-services", + "members_url": "https://api.github.com/teams/1914484/members{/member}", + "repositories_url": "https://api.github.com/teams/1914484/repos", + "permission": "pull" + }, + { + "name": "team-cjp-onboarding", + "id": 1939111, + "node_id": "MDQ6VGVhbTE5MzkxMTE=", + "slug": "team-cjp-onboarding", + "description": "for GC/SF/License work", + "privacy": "closed", + "url": "https://api.github.com/teams/1939111", + "html_url": "https://github.com/orgs/cloudbees/teams/team-cjp-onboarding", + "members_url": "https://api.github.com/teams/1939111/members{/member}", + "repositories_url": "https://api.github.com/teams/1939111/repos", + "permission": "pull" + }, + { + "name": "team-alliances", + "id": 1991918, + "node_id": "MDQ6VGVhbTE5OTE5MTg=", + "slug": "team-alliances", + "description": "Alliances team", + "privacy": "closed", + "url": "https://api.github.com/teams/1991918", + "html_url": "https://github.com/orgs/cloudbees/teams/team-alliances", + "members_url": "https://api.github.com/teams/1991918/members{/member}", + "repositories_url": "https://api.github.com/teams/1991918/repos", + "permission": "pull" + }, + { + "name": "Legacy Training Contributors", + "id": 2070581, + "node_id": "MDQ6VGVhbTIwNzA1ODE=", + "slug": "legacy-training-contributors", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2070581", + "html_url": "https://github.com/orgs/cloudbees/teams/legacy-training-contributors", + "members_url": "https://api.github.com/teams/2070581/members{/member}", + "repositories_url": "https://api.github.com/teams/2070581/repos", + "permission": "pull" + }, + { + "name": "team-productivity", + "id": 2187916, + "node_id": "MDQ6VGVhbTIxODc5MTY=", + "slug": "team-productivity", + "description": "Members of Productivity Team", + "privacy": "closed", + "url": "https://api.github.com/teams/2187916", + "html_url": "https://github.com/orgs/cloudbees/teams/team-productivity", + "members_url": "https://api.github.com/teams/2187916/members{/member}", + "repositories_url": "https://api.github.com/teams/2187916/repos", + "permission": "pull" + }, + { + "name": "knowledge", + "id": 2269997, + "node_id": "MDQ6VGVhbTIyNjk5OTc=", + "slug": "knowledge", + "description": "Knowledge n' stuff", + "privacy": "closed", + "url": "https://api.github.com/teams/2269997", + "html_url": "https://github.com/orgs/cloudbees/teams/knowledge", + "members_url": "https://api.github.com/teams/2269997/members{/member}", + "repositories_url": "https://api.github.com/teams/2269997/repos", + "permission": "pull" + }, + { + "name": "team-qa", + "id": 2283650, + "node_id": "MDQ6VGVhbTIyODM2NTA=", + "slug": "team-qa", + "description": "team-qa", + "privacy": "closed", + "url": "https://api.github.com/teams/2283650", + "html_url": "https://github.com/orgs/cloudbees/teams/team-qa", + "members_url": "https://api.github.com/teams/2283650/members{/member}", + "repositories_url": "https://api.github.com/teams/2283650/repos", + "permission": "pull" + }, + { + "name": "team-core-traditional", + "id": 2286168, + "node_id": "MDQ6VGVhbTIyODYxNjg=", + "slug": "team-core-traditional", + "description": "Team Core Traditional is the new Team Core Platform is the new Team Astro is the new Team CJP.", + "privacy": "closed", + "url": "https://api.github.com/teams/2286168", + "html_url": "https://github.com/orgs/cloudbees/teams/team-core-traditional", + "members_url": "https://api.github.com/teams/2286168/members{/member}", + "repositories_url": "https://api.github.com/teams/2286168/repos", + "permission": "pull" + }, + { + "name": "OSS Team", + "id": 2295003, + "node_id": "MDQ6VGVhbTIyOTUwMDM=", + "slug": "oss-team", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2295003", + "html_url": "https://github.com/orgs/cloudbees/teams/oss-team", + "members_url": "https://api.github.com/teams/2295003/members{/member}", + "repositories_url": "https://api.github.com/teams/2295003/repos", + "permission": "pull" + }, + { + "name": "team-analytics", + "id": 2316328, + "node_id": "MDQ6VGVhbTIzMTYzMjg=", + "slug": "team-analytics", + "description": "DevOptics team", + "privacy": "closed", + "url": "https://api.github.com/teams/2316328", + "html_url": "https://github.com/orgs/cloudbees/teams/team-analytics", + "members_url": "https://api.github.com/teams/2316328/members{/member}", + "repositories_url": "https://api.github.com/teams/2316328/repos", + "permission": "pull" + }, + { + "name": "team-infra-cloudbees-interns", + "id": 2377437, + "node_id": "MDQ6VGVhbTIzNzc0Mzc=", + "slug": "team-infra-cloudbees-interns", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2377437", + "html_url": "https://github.com/orgs/cloudbees/teams/team-infra-cloudbees-interns", + "members_url": "https://api.github.com/teams/2377437/members{/member}", + "repositories_url": "https://api.github.com/teams/2377437/repos", + "permission": "pull" + }, + { + "name": "cje-reviewers", + "id": 2384898, + "node_id": "MDQ6VGVhbTIzODQ4OTg=", + "slug": "cje-reviewers", + "description": "CJE Reviewers", + "privacy": "closed", + "url": "https://api.github.com/teams/2384898", + "html_url": "https://github.com/orgs/cloudbees/teams/cje-reviewers", + "members_url": "https://api.github.com/teams/2384898/members{/member}", + "repositories_url": "https://api.github.com/teams/2384898/repos", + "permission": "pull" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_cloudbees_teams-4d6d15f8-8345-4ce7-af12-dcd50335d2c0.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_cloudbees_teams-4d6d15f8-8345-4ce7-af12-dcd50335d2c0.json new file mode 100644 index 0000000000..e9477419e6 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_cloudbees_teams-4d6d15f8-8345-4ce7-af12-dcd50335d2c0.json @@ -0,0 +1,392 @@ +[ + { + "name": "team-core", + "id": 48329, + "node_id": "MDQ6VGVhbTQ4MzI5", + "slug": "team-core", + "description": null, + "privacy": "closed", + "url": "https://api.github.com/teams/48329", + "html_url": "https://github.com/orgs/cloudbees/teams/team-core", + "members_url": "https://api.github.com/teams/48329/members{/member}", + "repositories_url": "https://api.github.com/teams/48329/repos", + "permission": "pull" + }, + { + "name": "Legacy Training Admins", + "id": 48354, + "node_id": "MDQ6VGVhbTQ4MzU0", + "slug": "legacy-training-admins", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/48354", + "html_url": "https://github.com/orgs/cloudbees/teams/legacy-training-admins", + "members_url": "https://api.github.com/teams/48354/members{/member}", + "repositories_url": "https://api.github.com/teams/48354/repos", + "permission": "push" + }, + { + "name": "cloudbees-ci", + "id": 49163, + "node_id": "MDQ6VGVhbTQ5MTYz", + "slug": "cloudbees-ci", + "description": "Shared account for granting CI systems access to code.", + "privacy": "closed", + "url": "https://api.github.com/teams/49163", + "html_url": "https://github.com/orgs/cloudbees/teams/cloudbees-ci", + "members_url": "https://api.github.com/teams/49163/members{/member}", + "repositories_url": "https://api.github.com/teams/49163/repos", + "permission": "push" + }, + { + "name": "team-dev-at-cloud", + "id": 70229, + "node_id": "MDQ6VGVhbTcwMjI5", + "slug": "team-dev-at-cloud", + "description": "DEV@cloud team", + "privacy": "closed", + "url": "https://api.github.com/teams/70229", + "html_url": "https://github.com/orgs/cloudbees/teams/team-dev-at-cloud", + "members_url": "https://api.github.com/teams/70229/members{/member}", + "repositories_url": "https://api.github.com/teams/70229/repos", + "permission": "push" + }, + { + "name": "team-support", + "id": 199796, + "node_id": "MDQ6VGVhbTE5OTc5Ng==", + "slug": "team-support", + "description": "Customer Support Engineers - DSE", + "privacy": "closed", + "url": "https://api.github.com/teams/199796", + "html_url": "https://github.com/orgs/cloudbees/teams/team-support", + "members_url": "https://api.github.com/teams/199796/members{/member}", + "repositories_url": "https://api.github.com/teams/199796/repos", + "permission": "pull" + }, + { + "name": "docker-image-builders", + "id": 873357, + "node_id": "MDQ6VGVhbTg3MzM1Nw==", + "slug": "docker-image-builders", + "description": "For building docker images", + "privacy": "closed", + "url": "https://api.github.com/teams/873357", + "html_url": "https://github.com/orgs/cloudbees/teams/docker-image-builders", + "members_url": "https://api.github.com/teams/873357/members{/member}", + "repositories_url": "https://api.github.com/teams/873357/repos", + "permission": "pull" + }, + { + "name": "team-documentation", + "id": 879403, + "node_id": "MDQ6VGVhbTg3OTQwMw==", + "slug": "team-documentation", + "description": "People who can contribute to documentation", + "privacy": "closed", + "url": "https://api.github.com/teams/879403", + "html_url": "https://github.com/orgs/cloudbees/teams/team-documentation", + "members_url": "https://api.github.com/teams/879403/members{/member}", + "repositories_url": "https://api.github.com/teams/879403/repos", + "permission": "push" + }, + { + "name": "Jenkins Enterprise", + "id": 994169, + "node_id": "MDQ6VGVhbTk5NDE2OQ==", + "slug": "jenkins-enterprise", + "description": "Jenkins Enterprise and Jenkins Operations Center sources", + "privacy": "closed", + "url": "https://api.github.com/teams/994169", + "html_url": "https://github.com/orgs/cloudbees/teams/jenkins-enterprise", + "members_url": "https://api.github.com/teams/994169/members{/member}", + "repositories_url": "https://api.github.com/teams/994169/repos", + "permission": "push" + }, + { + "name": "Jenkins Enterprise RO", + "id": 1076175, + "node_id": "MDQ6VGVhbTEwNzYxNzU=", + "slug": "jenkins-enterprise-ro", + "description": "Jenkins Enterprise and Jenkins Operations Center sources - Read-Only", + "privacy": "closed", + "url": "https://api.github.com/teams/1076175", + "html_url": "https://github.com/orgs/cloudbees/teams/jenkins-enterprise-ro", + "members_url": "https://api.github.com/teams/1076175/members{/member}", + "repositories_url": "https://api.github.com/teams/1076175/repos", + "permission": "pull" + }, + { + "name": "team-infra-operations", + "id": 1310418, + "node_id": "MDQ6VGVhbTEzMTA0MTg=", + "slug": "team-infra-operations", + "description": "Operations Team", + "privacy": "closed", + "url": "https://api.github.com/teams/1310418", + "html_url": "https://github.com/orgs/cloudbees/teams/team-infra-operations", + "members_url": "https://api.github.com/teams/1310418/members{/member}", + "repositories_url": "https://api.github.com/teams/1310418/repos", + "permission": "push" + }, + { + "name": "team-support-admin", + "id": 1336857, + "node_id": "MDQ6VGVhbTEzMzY4NTc=", + "slug": "team-support-admin", + "description": "Support Admin", + "privacy": "closed", + "url": "https://api.github.com/teams/1336857", + "html_url": "https://github.com/orgs/cloudbees/teams/team-support-admin", + "members_url": "https://api.github.com/teams/1336857/members{/member}", + "repositories_url": "https://api.github.com/teams/1336857/repos", + "permission": "pull" + }, + { + "name": "docker-team-admin", + "id": 1354803, + "node_id": "MDQ6VGVhbTEzNTQ4MDM=", + "slug": "docker-team-admin", + "description": "Docker team Admin", + "privacy": "closed", + "url": "https://api.github.com/teams/1354803", + "html_url": "https://github.com/orgs/cloudbees/teams/docker-team-admin", + "members_url": "https://api.github.com/teams/1354803/members{/member}", + "repositories_url": "https://api.github.com/teams/1354803/repos", + "permission": "pull" + }, + { + "name": "team-cloud-platform", + "id": 1427758, + "node_id": "MDQ6VGVhbTE0Mjc3NTg=", + "slug": "team-cloud-platform", + "description": "Engineers working on the Cloud Platform", + "privacy": "closed", + "url": "https://api.github.com/teams/1427758", + "html_url": "https://github.com/orgs/cloudbees/teams/team-cloud-platform", + "members_url": "https://api.github.com/teams/1427758/members{/member}", + "repositories_url": "https://api.github.com/teams/1427758/repos", + "permission": "push" + }, + { + "name": "team-infra-engineering-senior", + "id": 1427781, + "node_id": "MDQ6VGVhbTE0Mjc3ODE=", + "slug": "team-infra-engineering-senior", + "description": "Senior engineers - defined arbitrarily based on tenure, and seniority, and usually just asking for access.", + "privacy": "closed", + "url": "https://api.github.com/teams/1427781", + "html_url": "https://github.com/orgs/cloudbees/teams/team-infra-engineering-senior", + "members_url": "https://api.github.com/teams/1427781/members{/member}", + "repositories_url": "https://api.github.com/teams/1427781/repos", + "permission": "pull" + }, + { + "name": "team-infra-operations-senior", + "id": 1449146, + "node_id": "MDQ6VGVhbTE0NDkxNDY=", + "slug": "team-infra-operations-senior", + "description": "Senior operations team - admin access to non-specific admin repositories", + "privacy": "closed", + "url": "https://api.github.com/teams/1449146", + "html_url": "https://github.com/orgs/cloudbees/teams/team-infra-operations-senior", + "members_url": "https://api.github.com/teams/1449146/members{/member}", + "repositories_url": "https://api.github.com/teams/1449146/repos", + "permission": "pull" + }, + { + "name": "team-infra-cloudbees-employees", + "id": 1450069, + "node_id": "MDQ6VGVhbTE0NTAwNjk=", + "slug": "team-infra-cloudbees-employees", + "description": "CloudBees employees - simple group that grants read access.", + "privacy": "closed", + "url": "https://api.github.com/teams/1450069", + "html_url": "https://github.com/orgs/cloudbees/teams/team-infra-cloudbees-employees", + "members_url": "https://api.github.com/teams/1450069/members{/member}", + "repositories_url": "https://api.github.com/teams/1450069/repos", + "permission": "pull" + }, + { + "name": "team-sa-admin", + "id": 1565127, + "node_id": "MDQ6VGVhbTE1NjUxMjc=", + "slug": "team-sa-admin", + "description": "Solution Arch admins", + "privacy": "closed", + "url": "https://api.github.com/teams/1565127", + "html_url": "https://github.com/orgs/cloudbees/teams/team-sa-admin", + "members_url": "https://api.github.com/teams/1565127/members{/member}", + "repositories_url": "https://api.github.com/teams/1565127/repos", + "permission": "pull" + }, + { + "name": "cloudbees-blueocean-ux", + "id": 1905178, + "node_id": "MDQ6VGVhbTE5MDUxNzg=", + "slug": "cloudbees-blueocean-ux", + "description": "BlueOcean UX project ", + "privacy": "closed", + "url": "https://api.github.com/teams/1905178", + "html_url": "https://github.com/orgs/cloudbees/teams/cloudbees-blueocean-ux", + "members_url": "https://api.github.com/teams/1905178/members{/member}", + "repositories_url": "https://api.github.com/teams/1905178/repos", + "permission": "pull" + }, + { + "name": "team-professional-services", + "id": 1914484, + "node_id": "MDQ6VGVhbTE5MTQ0ODQ=", + "slug": "team-professional-services", + "description": "Professional Services", + "privacy": "closed", + "url": "https://api.github.com/teams/1914484", + "html_url": "https://github.com/orgs/cloudbees/teams/team-professional-services", + "members_url": "https://api.github.com/teams/1914484/members{/member}", + "repositories_url": "https://api.github.com/teams/1914484/repos", + "permission": "pull" + }, + { + "name": "team-cjp-onboarding", + "id": 1939111, + "node_id": "MDQ6VGVhbTE5MzkxMTE=", + "slug": "team-cjp-onboarding", + "description": "for GC/SF/License work", + "privacy": "closed", + "url": "https://api.github.com/teams/1939111", + "html_url": "https://github.com/orgs/cloudbees/teams/team-cjp-onboarding", + "members_url": "https://api.github.com/teams/1939111/members{/member}", + "repositories_url": "https://api.github.com/teams/1939111/repos", + "permission": "pull" + }, + { + "name": "team-alliances", + "id": 1991918, + "node_id": "MDQ6VGVhbTE5OTE5MTg=", + "slug": "team-alliances", + "description": "Alliances team", + "privacy": "closed", + "url": "https://api.github.com/teams/1991918", + "html_url": "https://github.com/orgs/cloudbees/teams/team-alliances", + "members_url": "https://api.github.com/teams/1991918/members{/member}", + "repositories_url": "https://api.github.com/teams/1991918/repos", + "permission": "pull" + }, + { + "name": "Legacy Training Contributors", + "id": 2070581, + "node_id": "MDQ6VGVhbTIwNzA1ODE=", + "slug": "legacy-training-contributors", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2070581", + "html_url": "https://github.com/orgs/cloudbees/teams/legacy-training-contributors", + "members_url": "https://api.github.com/teams/2070581/members{/member}", + "repositories_url": "https://api.github.com/teams/2070581/repos", + "permission": "pull" + }, + { + "name": "team-productivity", + "id": 2187916, + "node_id": "MDQ6VGVhbTIxODc5MTY=", + "slug": "team-productivity", + "description": "Members of Productivity Team", + "privacy": "closed", + "url": "https://api.github.com/teams/2187916", + "html_url": "https://github.com/orgs/cloudbees/teams/team-productivity", + "members_url": "https://api.github.com/teams/2187916/members{/member}", + "repositories_url": "https://api.github.com/teams/2187916/repos", + "permission": "pull" + }, + { + "name": "knowledge", + "id": 2269997, + "node_id": "MDQ6VGVhbTIyNjk5OTc=", + "slug": "knowledge", + "description": "Knowledge n' stuff", + "privacy": "closed", + "url": "https://api.github.com/teams/2269997", + "html_url": "https://github.com/orgs/cloudbees/teams/knowledge", + "members_url": "https://api.github.com/teams/2269997/members{/member}", + "repositories_url": "https://api.github.com/teams/2269997/repos", + "permission": "pull" + }, + { + "name": "team-qa", + "id": 2283650, + "node_id": "MDQ6VGVhbTIyODM2NTA=", + "slug": "team-qa", + "description": "team-qa", + "privacy": "closed", + "url": "https://api.github.com/teams/2283650", + "html_url": "https://github.com/orgs/cloudbees/teams/team-qa", + "members_url": "https://api.github.com/teams/2283650/members{/member}", + "repositories_url": "https://api.github.com/teams/2283650/repos", + "permission": "pull" + }, + { + "name": "team-core-traditional", + "id": 2286168, + "node_id": "MDQ6VGVhbTIyODYxNjg=", + "slug": "team-core-traditional", + "description": "Team Core Traditional is the new Team Core Platform is the new Team Astro is the new Team CJP.", + "privacy": "closed", + "url": "https://api.github.com/teams/2286168", + "html_url": "https://github.com/orgs/cloudbees/teams/team-core-traditional", + "members_url": "https://api.github.com/teams/2286168/members{/member}", + "repositories_url": "https://api.github.com/teams/2286168/repos", + "permission": "pull" + }, + { + "name": "OSS Team", + "id": 2295003, + "node_id": "MDQ6VGVhbTIyOTUwMDM=", + "slug": "oss-team", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2295003", + "html_url": "https://github.com/orgs/cloudbees/teams/oss-team", + "members_url": "https://api.github.com/teams/2295003/members{/member}", + "repositories_url": "https://api.github.com/teams/2295003/repos", + "permission": "pull" + }, + { + "name": "team-analytics", + "id": 2316328, + "node_id": "MDQ6VGVhbTIzMTYzMjg=", + "slug": "team-analytics", + "description": "DevOptics team", + "privacy": "closed", + "url": "https://api.github.com/teams/2316328", + "html_url": "https://github.com/orgs/cloudbees/teams/team-analytics", + "members_url": "https://api.github.com/teams/2316328/members{/member}", + "repositories_url": "https://api.github.com/teams/2316328/repos", + "permission": "pull" + }, + { + "name": "team-infra-cloudbees-interns", + "id": 2377437, + "node_id": "MDQ6VGVhbTIzNzc0Mzc=", + "slug": "team-infra-cloudbees-interns", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2377437", + "html_url": "https://github.com/orgs/cloudbees/teams/team-infra-cloudbees-interns", + "members_url": "https://api.github.com/teams/2377437/members{/member}", + "repositories_url": "https://api.github.com/teams/2377437/repos", + "permission": "pull" + }, + { + "name": "cje-reviewers", + "id": 2384898, + "node_id": "MDQ6VGVhbTIzODQ4OTg=", + "slug": "cje-reviewers", + "description": "CJE Reviewers", + "privacy": "closed", + "url": "https://api.github.com/teams/2384898", + "html_url": "https://github.com/orgs/cloudbees/teams/cje-reviewers", + "members_url": "https://api.github.com/teams/2384898/members{/member}", + "repositories_url": "https://api.github.com/teams/2384898/repos", + "permission": "pull" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_cloudbees_teams-57f5eb24-dd30-4d2c-9e6a-90dcd973e21f.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_cloudbees_teams-57f5eb24-dd30-4d2c-9e6a-90dcd973e21f.json new file mode 100644 index 0000000000..e9477419e6 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_cloudbees_teams-57f5eb24-dd30-4d2c-9e6a-90dcd973e21f.json @@ -0,0 +1,392 @@ +[ + { + "name": "team-core", + "id": 48329, + "node_id": "MDQ6VGVhbTQ4MzI5", + "slug": "team-core", + "description": null, + "privacy": "closed", + "url": "https://api.github.com/teams/48329", + "html_url": "https://github.com/orgs/cloudbees/teams/team-core", + "members_url": "https://api.github.com/teams/48329/members{/member}", + "repositories_url": "https://api.github.com/teams/48329/repos", + "permission": "pull" + }, + { + "name": "Legacy Training Admins", + "id": 48354, + "node_id": "MDQ6VGVhbTQ4MzU0", + "slug": "legacy-training-admins", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/48354", + "html_url": "https://github.com/orgs/cloudbees/teams/legacy-training-admins", + "members_url": "https://api.github.com/teams/48354/members{/member}", + "repositories_url": "https://api.github.com/teams/48354/repos", + "permission": "push" + }, + { + "name": "cloudbees-ci", + "id": 49163, + "node_id": "MDQ6VGVhbTQ5MTYz", + "slug": "cloudbees-ci", + "description": "Shared account for granting CI systems access to code.", + "privacy": "closed", + "url": "https://api.github.com/teams/49163", + "html_url": "https://github.com/orgs/cloudbees/teams/cloudbees-ci", + "members_url": "https://api.github.com/teams/49163/members{/member}", + "repositories_url": "https://api.github.com/teams/49163/repos", + "permission": "push" + }, + { + "name": "team-dev-at-cloud", + "id": 70229, + "node_id": "MDQ6VGVhbTcwMjI5", + "slug": "team-dev-at-cloud", + "description": "DEV@cloud team", + "privacy": "closed", + "url": "https://api.github.com/teams/70229", + "html_url": "https://github.com/orgs/cloudbees/teams/team-dev-at-cloud", + "members_url": "https://api.github.com/teams/70229/members{/member}", + "repositories_url": "https://api.github.com/teams/70229/repos", + "permission": "push" + }, + { + "name": "team-support", + "id": 199796, + "node_id": "MDQ6VGVhbTE5OTc5Ng==", + "slug": "team-support", + "description": "Customer Support Engineers - DSE", + "privacy": "closed", + "url": "https://api.github.com/teams/199796", + "html_url": "https://github.com/orgs/cloudbees/teams/team-support", + "members_url": "https://api.github.com/teams/199796/members{/member}", + "repositories_url": "https://api.github.com/teams/199796/repos", + "permission": "pull" + }, + { + "name": "docker-image-builders", + "id": 873357, + "node_id": "MDQ6VGVhbTg3MzM1Nw==", + "slug": "docker-image-builders", + "description": "For building docker images", + "privacy": "closed", + "url": "https://api.github.com/teams/873357", + "html_url": "https://github.com/orgs/cloudbees/teams/docker-image-builders", + "members_url": "https://api.github.com/teams/873357/members{/member}", + "repositories_url": "https://api.github.com/teams/873357/repos", + "permission": "pull" + }, + { + "name": "team-documentation", + "id": 879403, + "node_id": "MDQ6VGVhbTg3OTQwMw==", + "slug": "team-documentation", + "description": "People who can contribute to documentation", + "privacy": "closed", + "url": "https://api.github.com/teams/879403", + "html_url": "https://github.com/orgs/cloudbees/teams/team-documentation", + "members_url": "https://api.github.com/teams/879403/members{/member}", + "repositories_url": "https://api.github.com/teams/879403/repos", + "permission": "push" + }, + { + "name": "Jenkins Enterprise", + "id": 994169, + "node_id": "MDQ6VGVhbTk5NDE2OQ==", + "slug": "jenkins-enterprise", + "description": "Jenkins Enterprise and Jenkins Operations Center sources", + "privacy": "closed", + "url": "https://api.github.com/teams/994169", + "html_url": "https://github.com/orgs/cloudbees/teams/jenkins-enterprise", + "members_url": "https://api.github.com/teams/994169/members{/member}", + "repositories_url": "https://api.github.com/teams/994169/repos", + "permission": "push" + }, + { + "name": "Jenkins Enterprise RO", + "id": 1076175, + "node_id": "MDQ6VGVhbTEwNzYxNzU=", + "slug": "jenkins-enterprise-ro", + "description": "Jenkins Enterprise and Jenkins Operations Center sources - Read-Only", + "privacy": "closed", + "url": "https://api.github.com/teams/1076175", + "html_url": "https://github.com/orgs/cloudbees/teams/jenkins-enterprise-ro", + "members_url": "https://api.github.com/teams/1076175/members{/member}", + "repositories_url": "https://api.github.com/teams/1076175/repos", + "permission": "pull" + }, + { + "name": "team-infra-operations", + "id": 1310418, + "node_id": "MDQ6VGVhbTEzMTA0MTg=", + "slug": "team-infra-operations", + "description": "Operations Team", + "privacy": "closed", + "url": "https://api.github.com/teams/1310418", + "html_url": "https://github.com/orgs/cloudbees/teams/team-infra-operations", + "members_url": "https://api.github.com/teams/1310418/members{/member}", + "repositories_url": "https://api.github.com/teams/1310418/repos", + "permission": "push" + }, + { + "name": "team-support-admin", + "id": 1336857, + "node_id": "MDQ6VGVhbTEzMzY4NTc=", + "slug": "team-support-admin", + "description": "Support Admin", + "privacy": "closed", + "url": "https://api.github.com/teams/1336857", + "html_url": "https://github.com/orgs/cloudbees/teams/team-support-admin", + "members_url": "https://api.github.com/teams/1336857/members{/member}", + "repositories_url": "https://api.github.com/teams/1336857/repos", + "permission": "pull" + }, + { + "name": "docker-team-admin", + "id": 1354803, + "node_id": "MDQ6VGVhbTEzNTQ4MDM=", + "slug": "docker-team-admin", + "description": "Docker team Admin", + "privacy": "closed", + "url": "https://api.github.com/teams/1354803", + "html_url": "https://github.com/orgs/cloudbees/teams/docker-team-admin", + "members_url": "https://api.github.com/teams/1354803/members{/member}", + "repositories_url": "https://api.github.com/teams/1354803/repos", + "permission": "pull" + }, + { + "name": "team-cloud-platform", + "id": 1427758, + "node_id": "MDQ6VGVhbTE0Mjc3NTg=", + "slug": "team-cloud-platform", + "description": "Engineers working on the Cloud Platform", + "privacy": "closed", + "url": "https://api.github.com/teams/1427758", + "html_url": "https://github.com/orgs/cloudbees/teams/team-cloud-platform", + "members_url": "https://api.github.com/teams/1427758/members{/member}", + "repositories_url": "https://api.github.com/teams/1427758/repos", + "permission": "push" + }, + { + "name": "team-infra-engineering-senior", + "id": 1427781, + "node_id": "MDQ6VGVhbTE0Mjc3ODE=", + "slug": "team-infra-engineering-senior", + "description": "Senior engineers - defined arbitrarily based on tenure, and seniority, and usually just asking for access.", + "privacy": "closed", + "url": "https://api.github.com/teams/1427781", + "html_url": "https://github.com/orgs/cloudbees/teams/team-infra-engineering-senior", + "members_url": "https://api.github.com/teams/1427781/members{/member}", + "repositories_url": "https://api.github.com/teams/1427781/repos", + "permission": "pull" + }, + { + "name": "team-infra-operations-senior", + "id": 1449146, + "node_id": "MDQ6VGVhbTE0NDkxNDY=", + "slug": "team-infra-operations-senior", + "description": "Senior operations team - admin access to non-specific admin repositories", + "privacy": "closed", + "url": "https://api.github.com/teams/1449146", + "html_url": "https://github.com/orgs/cloudbees/teams/team-infra-operations-senior", + "members_url": "https://api.github.com/teams/1449146/members{/member}", + "repositories_url": "https://api.github.com/teams/1449146/repos", + "permission": "pull" + }, + { + "name": "team-infra-cloudbees-employees", + "id": 1450069, + "node_id": "MDQ6VGVhbTE0NTAwNjk=", + "slug": "team-infra-cloudbees-employees", + "description": "CloudBees employees - simple group that grants read access.", + "privacy": "closed", + "url": "https://api.github.com/teams/1450069", + "html_url": "https://github.com/orgs/cloudbees/teams/team-infra-cloudbees-employees", + "members_url": "https://api.github.com/teams/1450069/members{/member}", + "repositories_url": "https://api.github.com/teams/1450069/repos", + "permission": "pull" + }, + { + "name": "team-sa-admin", + "id": 1565127, + "node_id": "MDQ6VGVhbTE1NjUxMjc=", + "slug": "team-sa-admin", + "description": "Solution Arch admins", + "privacy": "closed", + "url": "https://api.github.com/teams/1565127", + "html_url": "https://github.com/orgs/cloudbees/teams/team-sa-admin", + "members_url": "https://api.github.com/teams/1565127/members{/member}", + "repositories_url": "https://api.github.com/teams/1565127/repos", + "permission": "pull" + }, + { + "name": "cloudbees-blueocean-ux", + "id": 1905178, + "node_id": "MDQ6VGVhbTE5MDUxNzg=", + "slug": "cloudbees-blueocean-ux", + "description": "BlueOcean UX project ", + "privacy": "closed", + "url": "https://api.github.com/teams/1905178", + "html_url": "https://github.com/orgs/cloudbees/teams/cloudbees-blueocean-ux", + "members_url": "https://api.github.com/teams/1905178/members{/member}", + "repositories_url": "https://api.github.com/teams/1905178/repos", + "permission": "pull" + }, + { + "name": "team-professional-services", + "id": 1914484, + "node_id": "MDQ6VGVhbTE5MTQ0ODQ=", + "slug": "team-professional-services", + "description": "Professional Services", + "privacy": "closed", + "url": "https://api.github.com/teams/1914484", + "html_url": "https://github.com/orgs/cloudbees/teams/team-professional-services", + "members_url": "https://api.github.com/teams/1914484/members{/member}", + "repositories_url": "https://api.github.com/teams/1914484/repos", + "permission": "pull" + }, + { + "name": "team-cjp-onboarding", + "id": 1939111, + "node_id": "MDQ6VGVhbTE5MzkxMTE=", + "slug": "team-cjp-onboarding", + "description": "for GC/SF/License work", + "privacy": "closed", + "url": "https://api.github.com/teams/1939111", + "html_url": "https://github.com/orgs/cloudbees/teams/team-cjp-onboarding", + "members_url": "https://api.github.com/teams/1939111/members{/member}", + "repositories_url": "https://api.github.com/teams/1939111/repos", + "permission": "pull" + }, + { + "name": "team-alliances", + "id": 1991918, + "node_id": "MDQ6VGVhbTE5OTE5MTg=", + "slug": "team-alliances", + "description": "Alliances team", + "privacy": "closed", + "url": "https://api.github.com/teams/1991918", + "html_url": "https://github.com/orgs/cloudbees/teams/team-alliances", + "members_url": "https://api.github.com/teams/1991918/members{/member}", + "repositories_url": "https://api.github.com/teams/1991918/repos", + "permission": "pull" + }, + { + "name": "Legacy Training Contributors", + "id": 2070581, + "node_id": "MDQ6VGVhbTIwNzA1ODE=", + "slug": "legacy-training-contributors", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2070581", + "html_url": "https://github.com/orgs/cloudbees/teams/legacy-training-contributors", + "members_url": "https://api.github.com/teams/2070581/members{/member}", + "repositories_url": "https://api.github.com/teams/2070581/repos", + "permission": "pull" + }, + { + "name": "team-productivity", + "id": 2187916, + "node_id": "MDQ6VGVhbTIxODc5MTY=", + "slug": "team-productivity", + "description": "Members of Productivity Team", + "privacy": "closed", + "url": "https://api.github.com/teams/2187916", + "html_url": "https://github.com/orgs/cloudbees/teams/team-productivity", + "members_url": "https://api.github.com/teams/2187916/members{/member}", + "repositories_url": "https://api.github.com/teams/2187916/repos", + "permission": "pull" + }, + { + "name": "knowledge", + "id": 2269997, + "node_id": "MDQ6VGVhbTIyNjk5OTc=", + "slug": "knowledge", + "description": "Knowledge n' stuff", + "privacy": "closed", + "url": "https://api.github.com/teams/2269997", + "html_url": "https://github.com/orgs/cloudbees/teams/knowledge", + "members_url": "https://api.github.com/teams/2269997/members{/member}", + "repositories_url": "https://api.github.com/teams/2269997/repos", + "permission": "pull" + }, + { + "name": "team-qa", + "id": 2283650, + "node_id": "MDQ6VGVhbTIyODM2NTA=", + "slug": "team-qa", + "description": "team-qa", + "privacy": "closed", + "url": "https://api.github.com/teams/2283650", + "html_url": "https://github.com/orgs/cloudbees/teams/team-qa", + "members_url": "https://api.github.com/teams/2283650/members{/member}", + "repositories_url": "https://api.github.com/teams/2283650/repos", + "permission": "pull" + }, + { + "name": "team-core-traditional", + "id": 2286168, + "node_id": "MDQ6VGVhbTIyODYxNjg=", + "slug": "team-core-traditional", + "description": "Team Core Traditional is the new Team Core Platform is the new Team Astro is the new Team CJP.", + "privacy": "closed", + "url": "https://api.github.com/teams/2286168", + "html_url": "https://github.com/orgs/cloudbees/teams/team-core-traditional", + "members_url": "https://api.github.com/teams/2286168/members{/member}", + "repositories_url": "https://api.github.com/teams/2286168/repos", + "permission": "pull" + }, + { + "name": "OSS Team", + "id": 2295003, + "node_id": "MDQ6VGVhbTIyOTUwMDM=", + "slug": "oss-team", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2295003", + "html_url": "https://github.com/orgs/cloudbees/teams/oss-team", + "members_url": "https://api.github.com/teams/2295003/members{/member}", + "repositories_url": "https://api.github.com/teams/2295003/repos", + "permission": "pull" + }, + { + "name": "team-analytics", + "id": 2316328, + "node_id": "MDQ6VGVhbTIzMTYzMjg=", + "slug": "team-analytics", + "description": "DevOptics team", + "privacy": "closed", + "url": "https://api.github.com/teams/2316328", + "html_url": "https://github.com/orgs/cloudbees/teams/team-analytics", + "members_url": "https://api.github.com/teams/2316328/members{/member}", + "repositories_url": "https://api.github.com/teams/2316328/repos", + "permission": "pull" + }, + { + "name": "team-infra-cloudbees-interns", + "id": 2377437, + "node_id": "MDQ6VGVhbTIzNzc0Mzc=", + "slug": "team-infra-cloudbees-interns", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2377437", + "html_url": "https://github.com/orgs/cloudbees/teams/team-infra-cloudbees-interns", + "members_url": "https://api.github.com/teams/2377437/members{/member}", + "repositories_url": "https://api.github.com/teams/2377437/repos", + "permission": "pull" + }, + { + "name": "cje-reviewers", + "id": 2384898, + "node_id": "MDQ6VGVhbTIzODQ4OTg=", + "slug": "cje-reviewers", + "description": "CJE Reviewers", + "privacy": "closed", + "url": "https://api.github.com/teams/2384898", + "html_url": "https://github.com/orgs/cloudbees/teams/cje-reviewers", + "members_url": "https://api.github.com/teams/2384898/members{/member}", + "repositories_url": "https://api.github.com/teams/2384898/repos", + "permission": "pull" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_cloudbees_teams-632605dd-2411-4c5d-8fd0-7d57f23cb0a5.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_cloudbees_teams-632605dd-2411-4c5d-8fd0-7d57f23cb0a5.json new file mode 100644 index 0000000000..e9477419e6 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_cloudbees_teams-632605dd-2411-4c5d-8fd0-7d57f23cb0a5.json @@ -0,0 +1,392 @@ +[ + { + "name": "team-core", + "id": 48329, + "node_id": "MDQ6VGVhbTQ4MzI5", + "slug": "team-core", + "description": null, + "privacy": "closed", + "url": "https://api.github.com/teams/48329", + "html_url": "https://github.com/orgs/cloudbees/teams/team-core", + "members_url": "https://api.github.com/teams/48329/members{/member}", + "repositories_url": "https://api.github.com/teams/48329/repos", + "permission": "pull" + }, + { + "name": "Legacy Training Admins", + "id": 48354, + "node_id": "MDQ6VGVhbTQ4MzU0", + "slug": "legacy-training-admins", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/48354", + "html_url": "https://github.com/orgs/cloudbees/teams/legacy-training-admins", + "members_url": "https://api.github.com/teams/48354/members{/member}", + "repositories_url": "https://api.github.com/teams/48354/repos", + "permission": "push" + }, + { + "name": "cloudbees-ci", + "id": 49163, + "node_id": "MDQ6VGVhbTQ5MTYz", + "slug": "cloudbees-ci", + "description": "Shared account for granting CI systems access to code.", + "privacy": "closed", + "url": "https://api.github.com/teams/49163", + "html_url": "https://github.com/orgs/cloudbees/teams/cloudbees-ci", + "members_url": "https://api.github.com/teams/49163/members{/member}", + "repositories_url": "https://api.github.com/teams/49163/repos", + "permission": "push" + }, + { + "name": "team-dev-at-cloud", + "id": 70229, + "node_id": "MDQ6VGVhbTcwMjI5", + "slug": "team-dev-at-cloud", + "description": "DEV@cloud team", + "privacy": "closed", + "url": "https://api.github.com/teams/70229", + "html_url": "https://github.com/orgs/cloudbees/teams/team-dev-at-cloud", + "members_url": "https://api.github.com/teams/70229/members{/member}", + "repositories_url": "https://api.github.com/teams/70229/repos", + "permission": "push" + }, + { + "name": "team-support", + "id": 199796, + "node_id": "MDQ6VGVhbTE5OTc5Ng==", + "slug": "team-support", + "description": "Customer Support Engineers - DSE", + "privacy": "closed", + "url": "https://api.github.com/teams/199796", + "html_url": "https://github.com/orgs/cloudbees/teams/team-support", + "members_url": "https://api.github.com/teams/199796/members{/member}", + "repositories_url": "https://api.github.com/teams/199796/repos", + "permission": "pull" + }, + { + "name": "docker-image-builders", + "id": 873357, + "node_id": "MDQ6VGVhbTg3MzM1Nw==", + "slug": "docker-image-builders", + "description": "For building docker images", + "privacy": "closed", + "url": "https://api.github.com/teams/873357", + "html_url": "https://github.com/orgs/cloudbees/teams/docker-image-builders", + "members_url": "https://api.github.com/teams/873357/members{/member}", + "repositories_url": "https://api.github.com/teams/873357/repos", + "permission": "pull" + }, + { + "name": "team-documentation", + "id": 879403, + "node_id": "MDQ6VGVhbTg3OTQwMw==", + "slug": "team-documentation", + "description": "People who can contribute to documentation", + "privacy": "closed", + "url": "https://api.github.com/teams/879403", + "html_url": "https://github.com/orgs/cloudbees/teams/team-documentation", + "members_url": "https://api.github.com/teams/879403/members{/member}", + "repositories_url": "https://api.github.com/teams/879403/repos", + "permission": "push" + }, + { + "name": "Jenkins Enterprise", + "id": 994169, + "node_id": "MDQ6VGVhbTk5NDE2OQ==", + "slug": "jenkins-enterprise", + "description": "Jenkins Enterprise and Jenkins Operations Center sources", + "privacy": "closed", + "url": "https://api.github.com/teams/994169", + "html_url": "https://github.com/orgs/cloudbees/teams/jenkins-enterprise", + "members_url": "https://api.github.com/teams/994169/members{/member}", + "repositories_url": "https://api.github.com/teams/994169/repos", + "permission": "push" + }, + { + "name": "Jenkins Enterprise RO", + "id": 1076175, + "node_id": "MDQ6VGVhbTEwNzYxNzU=", + "slug": "jenkins-enterprise-ro", + "description": "Jenkins Enterprise and Jenkins Operations Center sources - Read-Only", + "privacy": "closed", + "url": "https://api.github.com/teams/1076175", + "html_url": "https://github.com/orgs/cloudbees/teams/jenkins-enterprise-ro", + "members_url": "https://api.github.com/teams/1076175/members{/member}", + "repositories_url": "https://api.github.com/teams/1076175/repos", + "permission": "pull" + }, + { + "name": "team-infra-operations", + "id": 1310418, + "node_id": "MDQ6VGVhbTEzMTA0MTg=", + "slug": "team-infra-operations", + "description": "Operations Team", + "privacy": "closed", + "url": "https://api.github.com/teams/1310418", + "html_url": "https://github.com/orgs/cloudbees/teams/team-infra-operations", + "members_url": "https://api.github.com/teams/1310418/members{/member}", + "repositories_url": "https://api.github.com/teams/1310418/repos", + "permission": "push" + }, + { + "name": "team-support-admin", + "id": 1336857, + "node_id": "MDQ6VGVhbTEzMzY4NTc=", + "slug": "team-support-admin", + "description": "Support Admin", + "privacy": "closed", + "url": "https://api.github.com/teams/1336857", + "html_url": "https://github.com/orgs/cloudbees/teams/team-support-admin", + "members_url": "https://api.github.com/teams/1336857/members{/member}", + "repositories_url": "https://api.github.com/teams/1336857/repos", + "permission": "pull" + }, + { + "name": "docker-team-admin", + "id": 1354803, + "node_id": "MDQ6VGVhbTEzNTQ4MDM=", + "slug": "docker-team-admin", + "description": "Docker team Admin", + "privacy": "closed", + "url": "https://api.github.com/teams/1354803", + "html_url": "https://github.com/orgs/cloudbees/teams/docker-team-admin", + "members_url": "https://api.github.com/teams/1354803/members{/member}", + "repositories_url": "https://api.github.com/teams/1354803/repos", + "permission": "pull" + }, + { + "name": "team-cloud-platform", + "id": 1427758, + "node_id": "MDQ6VGVhbTE0Mjc3NTg=", + "slug": "team-cloud-platform", + "description": "Engineers working on the Cloud Platform", + "privacy": "closed", + "url": "https://api.github.com/teams/1427758", + "html_url": "https://github.com/orgs/cloudbees/teams/team-cloud-platform", + "members_url": "https://api.github.com/teams/1427758/members{/member}", + "repositories_url": "https://api.github.com/teams/1427758/repos", + "permission": "push" + }, + { + "name": "team-infra-engineering-senior", + "id": 1427781, + "node_id": "MDQ6VGVhbTE0Mjc3ODE=", + "slug": "team-infra-engineering-senior", + "description": "Senior engineers - defined arbitrarily based on tenure, and seniority, and usually just asking for access.", + "privacy": "closed", + "url": "https://api.github.com/teams/1427781", + "html_url": "https://github.com/orgs/cloudbees/teams/team-infra-engineering-senior", + "members_url": "https://api.github.com/teams/1427781/members{/member}", + "repositories_url": "https://api.github.com/teams/1427781/repos", + "permission": "pull" + }, + { + "name": "team-infra-operations-senior", + "id": 1449146, + "node_id": "MDQ6VGVhbTE0NDkxNDY=", + "slug": "team-infra-operations-senior", + "description": "Senior operations team - admin access to non-specific admin repositories", + "privacy": "closed", + "url": "https://api.github.com/teams/1449146", + "html_url": "https://github.com/orgs/cloudbees/teams/team-infra-operations-senior", + "members_url": "https://api.github.com/teams/1449146/members{/member}", + "repositories_url": "https://api.github.com/teams/1449146/repos", + "permission": "pull" + }, + { + "name": "team-infra-cloudbees-employees", + "id": 1450069, + "node_id": "MDQ6VGVhbTE0NTAwNjk=", + "slug": "team-infra-cloudbees-employees", + "description": "CloudBees employees - simple group that grants read access.", + "privacy": "closed", + "url": "https://api.github.com/teams/1450069", + "html_url": "https://github.com/orgs/cloudbees/teams/team-infra-cloudbees-employees", + "members_url": "https://api.github.com/teams/1450069/members{/member}", + "repositories_url": "https://api.github.com/teams/1450069/repos", + "permission": "pull" + }, + { + "name": "team-sa-admin", + "id": 1565127, + "node_id": "MDQ6VGVhbTE1NjUxMjc=", + "slug": "team-sa-admin", + "description": "Solution Arch admins", + "privacy": "closed", + "url": "https://api.github.com/teams/1565127", + "html_url": "https://github.com/orgs/cloudbees/teams/team-sa-admin", + "members_url": "https://api.github.com/teams/1565127/members{/member}", + "repositories_url": "https://api.github.com/teams/1565127/repos", + "permission": "pull" + }, + { + "name": "cloudbees-blueocean-ux", + "id": 1905178, + "node_id": "MDQ6VGVhbTE5MDUxNzg=", + "slug": "cloudbees-blueocean-ux", + "description": "BlueOcean UX project ", + "privacy": "closed", + "url": "https://api.github.com/teams/1905178", + "html_url": "https://github.com/orgs/cloudbees/teams/cloudbees-blueocean-ux", + "members_url": "https://api.github.com/teams/1905178/members{/member}", + "repositories_url": "https://api.github.com/teams/1905178/repos", + "permission": "pull" + }, + { + "name": "team-professional-services", + "id": 1914484, + "node_id": "MDQ6VGVhbTE5MTQ0ODQ=", + "slug": "team-professional-services", + "description": "Professional Services", + "privacy": "closed", + "url": "https://api.github.com/teams/1914484", + "html_url": "https://github.com/orgs/cloudbees/teams/team-professional-services", + "members_url": "https://api.github.com/teams/1914484/members{/member}", + "repositories_url": "https://api.github.com/teams/1914484/repos", + "permission": "pull" + }, + { + "name": "team-cjp-onboarding", + "id": 1939111, + "node_id": "MDQ6VGVhbTE5MzkxMTE=", + "slug": "team-cjp-onboarding", + "description": "for GC/SF/License work", + "privacy": "closed", + "url": "https://api.github.com/teams/1939111", + "html_url": "https://github.com/orgs/cloudbees/teams/team-cjp-onboarding", + "members_url": "https://api.github.com/teams/1939111/members{/member}", + "repositories_url": "https://api.github.com/teams/1939111/repos", + "permission": "pull" + }, + { + "name": "team-alliances", + "id": 1991918, + "node_id": "MDQ6VGVhbTE5OTE5MTg=", + "slug": "team-alliances", + "description": "Alliances team", + "privacy": "closed", + "url": "https://api.github.com/teams/1991918", + "html_url": "https://github.com/orgs/cloudbees/teams/team-alliances", + "members_url": "https://api.github.com/teams/1991918/members{/member}", + "repositories_url": "https://api.github.com/teams/1991918/repos", + "permission": "pull" + }, + { + "name": "Legacy Training Contributors", + "id": 2070581, + "node_id": "MDQ6VGVhbTIwNzA1ODE=", + "slug": "legacy-training-contributors", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2070581", + "html_url": "https://github.com/orgs/cloudbees/teams/legacy-training-contributors", + "members_url": "https://api.github.com/teams/2070581/members{/member}", + "repositories_url": "https://api.github.com/teams/2070581/repos", + "permission": "pull" + }, + { + "name": "team-productivity", + "id": 2187916, + "node_id": "MDQ6VGVhbTIxODc5MTY=", + "slug": "team-productivity", + "description": "Members of Productivity Team", + "privacy": "closed", + "url": "https://api.github.com/teams/2187916", + "html_url": "https://github.com/orgs/cloudbees/teams/team-productivity", + "members_url": "https://api.github.com/teams/2187916/members{/member}", + "repositories_url": "https://api.github.com/teams/2187916/repos", + "permission": "pull" + }, + { + "name": "knowledge", + "id": 2269997, + "node_id": "MDQ6VGVhbTIyNjk5OTc=", + "slug": "knowledge", + "description": "Knowledge n' stuff", + "privacy": "closed", + "url": "https://api.github.com/teams/2269997", + "html_url": "https://github.com/orgs/cloudbees/teams/knowledge", + "members_url": "https://api.github.com/teams/2269997/members{/member}", + "repositories_url": "https://api.github.com/teams/2269997/repos", + "permission": "pull" + }, + { + "name": "team-qa", + "id": 2283650, + "node_id": "MDQ6VGVhbTIyODM2NTA=", + "slug": "team-qa", + "description": "team-qa", + "privacy": "closed", + "url": "https://api.github.com/teams/2283650", + "html_url": "https://github.com/orgs/cloudbees/teams/team-qa", + "members_url": "https://api.github.com/teams/2283650/members{/member}", + "repositories_url": "https://api.github.com/teams/2283650/repos", + "permission": "pull" + }, + { + "name": "team-core-traditional", + "id": 2286168, + "node_id": "MDQ6VGVhbTIyODYxNjg=", + "slug": "team-core-traditional", + "description": "Team Core Traditional is the new Team Core Platform is the new Team Astro is the new Team CJP.", + "privacy": "closed", + "url": "https://api.github.com/teams/2286168", + "html_url": "https://github.com/orgs/cloudbees/teams/team-core-traditional", + "members_url": "https://api.github.com/teams/2286168/members{/member}", + "repositories_url": "https://api.github.com/teams/2286168/repos", + "permission": "pull" + }, + { + "name": "OSS Team", + "id": 2295003, + "node_id": "MDQ6VGVhbTIyOTUwMDM=", + "slug": "oss-team", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2295003", + "html_url": "https://github.com/orgs/cloudbees/teams/oss-team", + "members_url": "https://api.github.com/teams/2295003/members{/member}", + "repositories_url": "https://api.github.com/teams/2295003/repos", + "permission": "pull" + }, + { + "name": "team-analytics", + "id": 2316328, + "node_id": "MDQ6VGVhbTIzMTYzMjg=", + "slug": "team-analytics", + "description": "DevOptics team", + "privacy": "closed", + "url": "https://api.github.com/teams/2316328", + "html_url": "https://github.com/orgs/cloudbees/teams/team-analytics", + "members_url": "https://api.github.com/teams/2316328/members{/member}", + "repositories_url": "https://api.github.com/teams/2316328/repos", + "permission": "pull" + }, + { + "name": "team-infra-cloudbees-interns", + "id": 2377437, + "node_id": "MDQ6VGVhbTIzNzc0Mzc=", + "slug": "team-infra-cloudbees-interns", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2377437", + "html_url": "https://github.com/orgs/cloudbees/teams/team-infra-cloudbees-interns", + "members_url": "https://api.github.com/teams/2377437/members{/member}", + "repositories_url": "https://api.github.com/teams/2377437/repos", + "permission": "pull" + }, + { + "name": "cje-reviewers", + "id": 2384898, + "node_id": "MDQ6VGVhbTIzODQ4OTg=", + "slug": "cje-reviewers", + "description": "CJE Reviewers", + "privacy": "closed", + "url": "https://api.github.com/teams/2384898", + "html_url": "https://github.com/orgs/cloudbees/teams/cje-reviewers", + "members_url": "https://api.github.com/teams/2384898/members{/member}", + "repositories_url": "https://api.github.com/teams/2384898/repos", + "permission": "pull" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_cloudbees_teams-c3bba3a6-1c09-4663-bbd5-61f4184faffa.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_cloudbees_teams-c3bba3a6-1c09-4663-bbd5-61f4184faffa.json new file mode 100644 index 0000000000..e9477419e6 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_cloudbees_teams-c3bba3a6-1c09-4663-bbd5-61f4184faffa.json @@ -0,0 +1,392 @@ +[ + { + "name": "team-core", + "id": 48329, + "node_id": "MDQ6VGVhbTQ4MzI5", + "slug": "team-core", + "description": null, + "privacy": "closed", + "url": "https://api.github.com/teams/48329", + "html_url": "https://github.com/orgs/cloudbees/teams/team-core", + "members_url": "https://api.github.com/teams/48329/members{/member}", + "repositories_url": "https://api.github.com/teams/48329/repos", + "permission": "pull" + }, + { + "name": "Legacy Training Admins", + "id": 48354, + "node_id": "MDQ6VGVhbTQ4MzU0", + "slug": "legacy-training-admins", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/48354", + "html_url": "https://github.com/orgs/cloudbees/teams/legacy-training-admins", + "members_url": "https://api.github.com/teams/48354/members{/member}", + "repositories_url": "https://api.github.com/teams/48354/repos", + "permission": "push" + }, + { + "name": "cloudbees-ci", + "id": 49163, + "node_id": "MDQ6VGVhbTQ5MTYz", + "slug": "cloudbees-ci", + "description": "Shared account for granting CI systems access to code.", + "privacy": "closed", + "url": "https://api.github.com/teams/49163", + "html_url": "https://github.com/orgs/cloudbees/teams/cloudbees-ci", + "members_url": "https://api.github.com/teams/49163/members{/member}", + "repositories_url": "https://api.github.com/teams/49163/repos", + "permission": "push" + }, + { + "name": "team-dev-at-cloud", + "id": 70229, + "node_id": "MDQ6VGVhbTcwMjI5", + "slug": "team-dev-at-cloud", + "description": "DEV@cloud team", + "privacy": "closed", + "url": "https://api.github.com/teams/70229", + "html_url": "https://github.com/orgs/cloudbees/teams/team-dev-at-cloud", + "members_url": "https://api.github.com/teams/70229/members{/member}", + "repositories_url": "https://api.github.com/teams/70229/repos", + "permission": "push" + }, + { + "name": "team-support", + "id": 199796, + "node_id": "MDQ6VGVhbTE5OTc5Ng==", + "slug": "team-support", + "description": "Customer Support Engineers - DSE", + "privacy": "closed", + "url": "https://api.github.com/teams/199796", + "html_url": "https://github.com/orgs/cloudbees/teams/team-support", + "members_url": "https://api.github.com/teams/199796/members{/member}", + "repositories_url": "https://api.github.com/teams/199796/repos", + "permission": "pull" + }, + { + "name": "docker-image-builders", + "id": 873357, + "node_id": "MDQ6VGVhbTg3MzM1Nw==", + "slug": "docker-image-builders", + "description": "For building docker images", + "privacy": "closed", + "url": "https://api.github.com/teams/873357", + "html_url": "https://github.com/orgs/cloudbees/teams/docker-image-builders", + "members_url": "https://api.github.com/teams/873357/members{/member}", + "repositories_url": "https://api.github.com/teams/873357/repos", + "permission": "pull" + }, + { + "name": "team-documentation", + "id": 879403, + "node_id": "MDQ6VGVhbTg3OTQwMw==", + "slug": "team-documentation", + "description": "People who can contribute to documentation", + "privacy": "closed", + "url": "https://api.github.com/teams/879403", + "html_url": "https://github.com/orgs/cloudbees/teams/team-documentation", + "members_url": "https://api.github.com/teams/879403/members{/member}", + "repositories_url": "https://api.github.com/teams/879403/repos", + "permission": "push" + }, + { + "name": "Jenkins Enterprise", + "id": 994169, + "node_id": "MDQ6VGVhbTk5NDE2OQ==", + "slug": "jenkins-enterprise", + "description": "Jenkins Enterprise and Jenkins Operations Center sources", + "privacy": "closed", + "url": "https://api.github.com/teams/994169", + "html_url": "https://github.com/orgs/cloudbees/teams/jenkins-enterprise", + "members_url": "https://api.github.com/teams/994169/members{/member}", + "repositories_url": "https://api.github.com/teams/994169/repos", + "permission": "push" + }, + { + "name": "Jenkins Enterprise RO", + "id": 1076175, + "node_id": "MDQ6VGVhbTEwNzYxNzU=", + "slug": "jenkins-enterprise-ro", + "description": "Jenkins Enterprise and Jenkins Operations Center sources - Read-Only", + "privacy": "closed", + "url": "https://api.github.com/teams/1076175", + "html_url": "https://github.com/orgs/cloudbees/teams/jenkins-enterprise-ro", + "members_url": "https://api.github.com/teams/1076175/members{/member}", + "repositories_url": "https://api.github.com/teams/1076175/repos", + "permission": "pull" + }, + { + "name": "team-infra-operations", + "id": 1310418, + "node_id": "MDQ6VGVhbTEzMTA0MTg=", + "slug": "team-infra-operations", + "description": "Operations Team", + "privacy": "closed", + "url": "https://api.github.com/teams/1310418", + "html_url": "https://github.com/orgs/cloudbees/teams/team-infra-operations", + "members_url": "https://api.github.com/teams/1310418/members{/member}", + "repositories_url": "https://api.github.com/teams/1310418/repos", + "permission": "push" + }, + { + "name": "team-support-admin", + "id": 1336857, + "node_id": "MDQ6VGVhbTEzMzY4NTc=", + "slug": "team-support-admin", + "description": "Support Admin", + "privacy": "closed", + "url": "https://api.github.com/teams/1336857", + "html_url": "https://github.com/orgs/cloudbees/teams/team-support-admin", + "members_url": "https://api.github.com/teams/1336857/members{/member}", + "repositories_url": "https://api.github.com/teams/1336857/repos", + "permission": "pull" + }, + { + "name": "docker-team-admin", + "id": 1354803, + "node_id": "MDQ6VGVhbTEzNTQ4MDM=", + "slug": "docker-team-admin", + "description": "Docker team Admin", + "privacy": "closed", + "url": "https://api.github.com/teams/1354803", + "html_url": "https://github.com/orgs/cloudbees/teams/docker-team-admin", + "members_url": "https://api.github.com/teams/1354803/members{/member}", + "repositories_url": "https://api.github.com/teams/1354803/repos", + "permission": "pull" + }, + { + "name": "team-cloud-platform", + "id": 1427758, + "node_id": "MDQ6VGVhbTE0Mjc3NTg=", + "slug": "team-cloud-platform", + "description": "Engineers working on the Cloud Platform", + "privacy": "closed", + "url": "https://api.github.com/teams/1427758", + "html_url": "https://github.com/orgs/cloudbees/teams/team-cloud-platform", + "members_url": "https://api.github.com/teams/1427758/members{/member}", + "repositories_url": "https://api.github.com/teams/1427758/repos", + "permission": "push" + }, + { + "name": "team-infra-engineering-senior", + "id": 1427781, + "node_id": "MDQ6VGVhbTE0Mjc3ODE=", + "slug": "team-infra-engineering-senior", + "description": "Senior engineers - defined arbitrarily based on tenure, and seniority, and usually just asking for access.", + "privacy": "closed", + "url": "https://api.github.com/teams/1427781", + "html_url": "https://github.com/orgs/cloudbees/teams/team-infra-engineering-senior", + "members_url": "https://api.github.com/teams/1427781/members{/member}", + "repositories_url": "https://api.github.com/teams/1427781/repos", + "permission": "pull" + }, + { + "name": "team-infra-operations-senior", + "id": 1449146, + "node_id": "MDQ6VGVhbTE0NDkxNDY=", + "slug": "team-infra-operations-senior", + "description": "Senior operations team - admin access to non-specific admin repositories", + "privacy": "closed", + "url": "https://api.github.com/teams/1449146", + "html_url": "https://github.com/orgs/cloudbees/teams/team-infra-operations-senior", + "members_url": "https://api.github.com/teams/1449146/members{/member}", + "repositories_url": "https://api.github.com/teams/1449146/repos", + "permission": "pull" + }, + { + "name": "team-infra-cloudbees-employees", + "id": 1450069, + "node_id": "MDQ6VGVhbTE0NTAwNjk=", + "slug": "team-infra-cloudbees-employees", + "description": "CloudBees employees - simple group that grants read access.", + "privacy": "closed", + "url": "https://api.github.com/teams/1450069", + "html_url": "https://github.com/orgs/cloudbees/teams/team-infra-cloudbees-employees", + "members_url": "https://api.github.com/teams/1450069/members{/member}", + "repositories_url": "https://api.github.com/teams/1450069/repos", + "permission": "pull" + }, + { + "name": "team-sa-admin", + "id": 1565127, + "node_id": "MDQ6VGVhbTE1NjUxMjc=", + "slug": "team-sa-admin", + "description": "Solution Arch admins", + "privacy": "closed", + "url": "https://api.github.com/teams/1565127", + "html_url": "https://github.com/orgs/cloudbees/teams/team-sa-admin", + "members_url": "https://api.github.com/teams/1565127/members{/member}", + "repositories_url": "https://api.github.com/teams/1565127/repos", + "permission": "pull" + }, + { + "name": "cloudbees-blueocean-ux", + "id": 1905178, + "node_id": "MDQ6VGVhbTE5MDUxNzg=", + "slug": "cloudbees-blueocean-ux", + "description": "BlueOcean UX project ", + "privacy": "closed", + "url": "https://api.github.com/teams/1905178", + "html_url": "https://github.com/orgs/cloudbees/teams/cloudbees-blueocean-ux", + "members_url": "https://api.github.com/teams/1905178/members{/member}", + "repositories_url": "https://api.github.com/teams/1905178/repos", + "permission": "pull" + }, + { + "name": "team-professional-services", + "id": 1914484, + "node_id": "MDQ6VGVhbTE5MTQ0ODQ=", + "slug": "team-professional-services", + "description": "Professional Services", + "privacy": "closed", + "url": "https://api.github.com/teams/1914484", + "html_url": "https://github.com/orgs/cloudbees/teams/team-professional-services", + "members_url": "https://api.github.com/teams/1914484/members{/member}", + "repositories_url": "https://api.github.com/teams/1914484/repos", + "permission": "pull" + }, + { + "name": "team-cjp-onboarding", + "id": 1939111, + "node_id": "MDQ6VGVhbTE5MzkxMTE=", + "slug": "team-cjp-onboarding", + "description": "for GC/SF/License work", + "privacy": "closed", + "url": "https://api.github.com/teams/1939111", + "html_url": "https://github.com/orgs/cloudbees/teams/team-cjp-onboarding", + "members_url": "https://api.github.com/teams/1939111/members{/member}", + "repositories_url": "https://api.github.com/teams/1939111/repos", + "permission": "pull" + }, + { + "name": "team-alliances", + "id": 1991918, + "node_id": "MDQ6VGVhbTE5OTE5MTg=", + "slug": "team-alliances", + "description": "Alliances team", + "privacy": "closed", + "url": "https://api.github.com/teams/1991918", + "html_url": "https://github.com/orgs/cloudbees/teams/team-alliances", + "members_url": "https://api.github.com/teams/1991918/members{/member}", + "repositories_url": "https://api.github.com/teams/1991918/repos", + "permission": "pull" + }, + { + "name": "Legacy Training Contributors", + "id": 2070581, + "node_id": "MDQ6VGVhbTIwNzA1ODE=", + "slug": "legacy-training-contributors", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2070581", + "html_url": "https://github.com/orgs/cloudbees/teams/legacy-training-contributors", + "members_url": "https://api.github.com/teams/2070581/members{/member}", + "repositories_url": "https://api.github.com/teams/2070581/repos", + "permission": "pull" + }, + { + "name": "team-productivity", + "id": 2187916, + "node_id": "MDQ6VGVhbTIxODc5MTY=", + "slug": "team-productivity", + "description": "Members of Productivity Team", + "privacy": "closed", + "url": "https://api.github.com/teams/2187916", + "html_url": "https://github.com/orgs/cloudbees/teams/team-productivity", + "members_url": "https://api.github.com/teams/2187916/members{/member}", + "repositories_url": "https://api.github.com/teams/2187916/repos", + "permission": "pull" + }, + { + "name": "knowledge", + "id": 2269997, + "node_id": "MDQ6VGVhbTIyNjk5OTc=", + "slug": "knowledge", + "description": "Knowledge n' stuff", + "privacy": "closed", + "url": "https://api.github.com/teams/2269997", + "html_url": "https://github.com/orgs/cloudbees/teams/knowledge", + "members_url": "https://api.github.com/teams/2269997/members{/member}", + "repositories_url": "https://api.github.com/teams/2269997/repos", + "permission": "pull" + }, + { + "name": "team-qa", + "id": 2283650, + "node_id": "MDQ6VGVhbTIyODM2NTA=", + "slug": "team-qa", + "description": "team-qa", + "privacy": "closed", + "url": "https://api.github.com/teams/2283650", + "html_url": "https://github.com/orgs/cloudbees/teams/team-qa", + "members_url": "https://api.github.com/teams/2283650/members{/member}", + "repositories_url": "https://api.github.com/teams/2283650/repos", + "permission": "pull" + }, + { + "name": "team-core-traditional", + "id": 2286168, + "node_id": "MDQ6VGVhbTIyODYxNjg=", + "slug": "team-core-traditional", + "description": "Team Core Traditional is the new Team Core Platform is the new Team Astro is the new Team CJP.", + "privacy": "closed", + "url": "https://api.github.com/teams/2286168", + "html_url": "https://github.com/orgs/cloudbees/teams/team-core-traditional", + "members_url": "https://api.github.com/teams/2286168/members{/member}", + "repositories_url": "https://api.github.com/teams/2286168/repos", + "permission": "pull" + }, + { + "name": "OSS Team", + "id": 2295003, + "node_id": "MDQ6VGVhbTIyOTUwMDM=", + "slug": "oss-team", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2295003", + "html_url": "https://github.com/orgs/cloudbees/teams/oss-team", + "members_url": "https://api.github.com/teams/2295003/members{/member}", + "repositories_url": "https://api.github.com/teams/2295003/repos", + "permission": "pull" + }, + { + "name": "team-analytics", + "id": 2316328, + "node_id": "MDQ6VGVhbTIzMTYzMjg=", + "slug": "team-analytics", + "description": "DevOptics team", + "privacy": "closed", + "url": "https://api.github.com/teams/2316328", + "html_url": "https://github.com/orgs/cloudbees/teams/team-analytics", + "members_url": "https://api.github.com/teams/2316328/members{/member}", + "repositories_url": "https://api.github.com/teams/2316328/repos", + "permission": "pull" + }, + { + "name": "team-infra-cloudbees-interns", + "id": 2377437, + "node_id": "MDQ6VGVhbTIzNzc0Mzc=", + "slug": "team-infra-cloudbees-interns", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2377437", + "html_url": "https://github.com/orgs/cloudbees/teams/team-infra-cloudbees-interns", + "members_url": "https://api.github.com/teams/2377437/members{/member}", + "repositories_url": "https://api.github.com/teams/2377437/repos", + "permission": "pull" + }, + { + "name": "cje-reviewers", + "id": 2384898, + "node_id": "MDQ6VGVhbTIzODQ4OTg=", + "slug": "cje-reviewers", + "description": "CJE Reviewers", + "privacy": "closed", + "url": "https://api.github.com/teams/2384898", + "html_url": "https://github.com/orgs/cloudbees/teams/cje-reviewers", + "members_url": "https://api.github.com/teams/2384898/members{/member}", + "repositories_url": "https://api.github.com/teams/2384898/repos", + "permission": "pull" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_cloudbees_teams-fbf640ca-c41a-4e82-9c5a-75ba2175bc0c.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_cloudbees_teams-fbf640ca-c41a-4e82-9c5a-75ba2175bc0c.json new file mode 100644 index 0000000000..e9477419e6 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_cloudbees_teams-fbf640ca-c41a-4e82-9c5a-75ba2175bc0c.json @@ -0,0 +1,392 @@ +[ + { + "name": "team-core", + "id": 48329, + "node_id": "MDQ6VGVhbTQ4MzI5", + "slug": "team-core", + "description": null, + "privacy": "closed", + "url": "https://api.github.com/teams/48329", + "html_url": "https://github.com/orgs/cloudbees/teams/team-core", + "members_url": "https://api.github.com/teams/48329/members{/member}", + "repositories_url": "https://api.github.com/teams/48329/repos", + "permission": "pull" + }, + { + "name": "Legacy Training Admins", + "id": 48354, + "node_id": "MDQ6VGVhbTQ4MzU0", + "slug": "legacy-training-admins", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/48354", + "html_url": "https://github.com/orgs/cloudbees/teams/legacy-training-admins", + "members_url": "https://api.github.com/teams/48354/members{/member}", + "repositories_url": "https://api.github.com/teams/48354/repos", + "permission": "push" + }, + { + "name": "cloudbees-ci", + "id": 49163, + "node_id": "MDQ6VGVhbTQ5MTYz", + "slug": "cloudbees-ci", + "description": "Shared account for granting CI systems access to code.", + "privacy": "closed", + "url": "https://api.github.com/teams/49163", + "html_url": "https://github.com/orgs/cloudbees/teams/cloudbees-ci", + "members_url": "https://api.github.com/teams/49163/members{/member}", + "repositories_url": "https://api.github.com/teams/49163/repos", + "permission": "push" + }, + { + "name": "team-dev-at-cloud", + "id": 70229, + "node_id": "MDQ6VGVhbTcwMjI5", + "slug": "team-dev-at-cloud", + "description": "DEV@cloud team", + "privacy": "closed", + "url": "https://api.github.com/teams/70229", + "html_url": "https://github.com/orgs/cloudbees/teams/team-dev-at-cloud", + "members_url": "https://api.github.com/teams/70229/members{/member}", + "repositories_url": "https://api.github.com/teams/70229/repos", + "permission": "push" + }, + { + "name": "team-support", + "id": 199796, + "node_id": "MDQ6VGVhbTE5OTc5Ng==", + "slug": "team-support", + "description": "Customer Support Engineers - DSE", + "privacy": "closed", + "url": "https://api.github.com/teams/199796", + "html_url": "https://github.com/orgs/cloudbees/teams/team-support", + "members_url": "https://api.github.com/teams/199796/members{/member}", + "repositories_url": "https://api.github.com/teams/199796/repos", + "permission": "pull" + }, + { + "name": "docker-image-builders", + "id": 873357, + "node_id": "MDQ6VGVhbTg3MzM1Nw==", + "slug": "docker-image-builders", + "description": "For building docker images", + "privacy": "closed", + "url": "https://api.github.com/teams/873357", + "html_url": "https://github.com/orgs/cloudbees/teams/docker-image-builders", + "members_url": "https://api.github.com/teams/873357/members{/member}", + "repositories_url": "https://api.github.com/teams/873357/repos", + "permission": "pull" + }, + { + "name": "team-documentation", + "id": 879403, + "node_id": "MDQ6VGVhbTg3OTQwMw==", + "slug": "team-documentation", + "description": "People who can contribute to documentation", + "privacy": "closed", + "url": "https://api.github.com/teams/879403", + "html_url": "https://github.com/orgs/cloudbees/teams/team-documentation", + "members_url": "https://api.github.com/teams/879403/members{/member}", + "repositories_url": "https://api.github.com/teams/879403/repos", + "permission": "push" + }, + { + "name": "Jenkins Enterprise", + "id": 994169, + "node_id": "MDQ6VGVhbTk5NDE2OQ==", + "slug": "jenkins-enterprise", + "description": "Jenkins Enterprise and Jenkins Operations Center sources", + "privacy": "closed", + "url": "https://api.github.com/teams/994169", + "html_url": "https://github.com/orgs/cloudbees/teams/jenkins-enterprise", + "members_url": "https://api.github.com/teams/994169/members{/member}", + "repositories_url": "https://api.github.com/teams/994169/repos", + "permission": "push" + }, + { + "name": "Jenkins Enterprise RO", + "id": 1076175, + "node_id": "MDQ6VGVhbTEwNzYxNzU=", + "slug": "jenkins-enterprise-ro", + "description": "Jenkins Enterprise and Jenkins Operations Center sources - Read-Only", + "privacy": "closed", + "url": "https://api.github.com/teams/1076175", + "html_url": "https://github.com/orgs/cloudbees/teams/jenkins-enterprise-ro", + "members_url": "https://api.github.com/teams/1076175/members{/member}", + "repositories_url": "https://api.github.com/teams/1076175/repos", + "permission": "pull" + }, + { + "name": "team-infra-operations", + "id": 1310418, + "node_id": "MDQ6VGVhbTEzMTA0MTg=", + "slug": "team-infra-operations", + "description": "Operations Team", + "privacy": "closed", + "url": "https://api.github.com/teams/1310418", + "html_url": "https://github.com/orgs/cloudbees/teams/team-infra-operations", + "members_url": "https://api.github.com/teams/1310418/members{/member}", + "repositories_url": "https://api.github.com/teams/1310418/repos", + "permission": "push" + }, + { + "name": "team-support-admin", + "id": 1336857, + "node_id": "MDQ6VGVhbTEzMzY4NTc=", + "slug": "team-support-admin", + "description": "Support Admin", + "privacy": "closed", + "url": "https://api.github.com/teams/1336857", + "html_url": "https://github.com/orgs/cloudbees/teams/team-support-admin", + "members_url": "https://api.github.com/teams/1336857/members{/member}", + "repositories_url": "https://api.github.com/teams/1336857/repos", + "permission": "pull" + }, + { + "name": "docker-team-admin", + "id": 1354803, + "node_id": "MDQ6VGVhbTEzNTQ4MDM=", + "slug": "docker-team-admin", + "description": "Docker team Admin", + "privacy": "closed", + "url": "https://api.github.com/teams/1354803", + "html_url": "https://github.com/orgs/cloudbees/teams/docker-team-admin", + "members_url": "https://api.github.com/teams/1354803/members{/member}", + "repositories_url": "https://api.github.com/teams/1354803/repos", + "permission": "pull" + }, + { + "name": "team-cloud-platform", + "id": 1427758, + "node_id": "MDQ6VGVhbTE0Mjc3NTg=", + "slug": "team-cloud-platform", + "description": "Engineers working on the Cloud Platform", + "privacy": "closed", + "url": "https://api.github.com/teams/1427758", + "html_url": "https://github.com/orgs/cloudbees/teams/team-cloud-platform", + "members_url": "https://api.github.com/teams/1427758/members{/member}", + "repositories_url": "https://api.github.com/teams/1427758/repos", + "permission": "push" + }, + { + "name": "team-infra-engineering-senior", + "id": 1427781, + "node_id": "MDQ6VGVhbTE0Mjc3ODE=", + "slug": "team-infra-engineering-senior", + "description": "Senior engineers - defined arbitrarily based on tenure, and seniority, and usually just asking for access.", + "privacy": "closed", + "url": "https://api.github.com/teams/1427781", + "html_url": "https://github.com/orgs/cloudbees/teams/team-infra-engineering-senior", + "members_url": "https://api.github.com/teams/1427781/members{/member}", + "repositories_url": "https://api.github.com/teams/1427781/repos", + "permission": "pull" + }, + { + "name": "team-infra-operations-senior", + "id": 1449146, + "node_id": "MDQ6VGVhbTE0NDkxNDY=", + "slug": "team-infra-operations-senior", + "description": "Senior operations team - admin access to non-specific admin repositories", + "privacy": "closed", + "url": "https://api.github.com/teams/1449146", + "html_url": "https://github.com/orgs/cloudbees/teams/team-infra-operations-senior", + "members_url": "https://api.github.com/teams/1449146/members{/member}", + "repositories_url": "https://api.github.com/teams/1449146/repos", + "permission": "pull" + }, + { + "name": "team-infra-cloudbees-employees", + "id": 1450069, + "node_id": "MDQ6VGVhbTE0NTAwNjk=", + "slug": "team-infra-cloudbees-employees", + "description": "CloudBees employees - simple group that grants read access.", + "privacy": "closed", + "url": "https://api.github.com/teams/1450069", + "html_url": "https://github.com/orgs/cloudbees/teams/team-infra-cloudbees-employees", + "members_url": "https://api.github.com/teams/1450069/members{/member}", + "repositories_url": "https://api.github.com/teams/1450069/repos", + "permission": "pull" + }, + { + "name": "team-sa-admin", + "id": 1565127, + "node_id": "MDQ6VGVhbTE1NjUxMjc=", + "slug": "team-sa-admin", + "description": "Solution Arch admins", + "privacy": "closed", + "url": "https://api.github.com/teams/1565127", + "html_url": "https://github.com/orgs/cloudbees/teams/team-sa-admin", + "members_url": "https://api.github.com/teams/1565127/members{/member}", + "repositories_url": "https://api.github.com/teams/1565127/repos", + "permission": "pull" + }, + { + "name": "cloudbees-blueocean-ux", + "id": 1905178, + "node_id": "MDQ6VGVhbTE5MDUxNzg=", + "slug": "cloudbees-blueocean-ux", + "description": "BlueOcean UX project ", + "privacy": "closed", + "url": "https://api.github.com/teams/1905178", + "html_url": "https://github.com/orgs/cloudbees/teams/cloudbees-blueocean-ux", + "members_url": "https://api.github.com/teams/1905178/members{/member}", + "repositories_url": "https://api.github.com/teams/1905178/repos", + "permission": "pull" + }, + { + "name": "team-professional-services", + "id": 1914484, + "node_id": "MDQ6VGVhbTE5MTQ0ODQ=", + "slug": "team-professional-services", + "description": "Professional Services", + "privacy": "closed", + "url": "https://api.github.com/teams/1914484", + "html_url": "https://github.com/orgs/cloudbees/teams/team-professional-services", + "members_url": "https://api.github.com/teams/1914484/members{/member}", + "repositories_url": "https://api.github.com/teams/1914484/repos", + "permission": "pull" + }, + { + "name": "team-cjp-onboarding", + "id": 1939111, + "node_id": "MDQ6VGVhbTE5MzkxMTE=", + "slug": "team-cjp-onboarding", + "description": "for GC/SF/License work", + "privacy": "closed", + "url": "https://api.github.com/teams/1939111", + "html_url": "https://github.com/orgs/cloudbees/teams/team-cjp-onboarding", + "members_url": "https://api.github.com/teams/1939111/members{/member}", + "repositories_url": "https://api.github.com/teams/1939111/repos", + "permission": "pull" + }, + { + "name": "team-alliances", + "id": 1991918, + "node_id": "MDQ6VGVhbTE5OTE5MTg=", + "slug": "team-alliances", + "description": "Alliances team", + "privacy": "closed", + "url": "https://api.github.com/teams/1991918", + "html_url": "https://github.com/orgs/cloudbees/teams/team-alliances", + "members_url": "https://api.github.com/teams/1991918/members{/member}", + "repositories_url": "https://api.github.com/teams/1991918/repos", + "permission": "pull" + }, + { + "name": "Legacy Training Contributors", + "id": 2070581, + "node_id": "MDQ6VGVhbTIwNzA1ODE=", + "slug": "legacy-training-contributors", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2070581", + "html_url": "https://github.com/orgs/cloudbees/teams/legacy-training-contributors", + "members_url": "https://api.github.com/teams/2070581/members{/member}", + "repositories_url": "https://api.github.com/teams/2070581/repos", + "permission": "pull" + }, + { + "name": "team-productivity", + "id": 2187916, + "node_id": "MDQ6VGVhbTIxODc5MTY=", + "slug": "team-productivity", + "description": "Members of Productivity Team", + "privacy": "closed", + "url": "https://api.github.com/teams/2187916", + "html_url": "https://github.com/orgs/cloudbees/teams/team-productivity", + "members_url": "https://api.github.com/teams/2187916/members{/member}", + "repositories_url": "https://api.github.com/teams/2187916/repos", + "permission": "pull" + }, + { + "name": "knowledge", + "id": 2269997, + "node_id": "MDQ6VGVhbTIyNjk5OTc=", + "slug": "knowledge", + "description": "Knowledge n' stuff", + "privacy": "closed", + "url": "https://api.github.com/teams/2269997", + "html_url": "https://github.com/orgs/cloudbees/teams/knowledge", + "members_url": "https://api.github.com/teams/2269997/members{/member}", + "repositories_url": "https://api.github.com/teams/2269997/repos", + "permission": "pull" + }, + { + "name": "team-qa", + "id": 2283650, + "node_id": "MDQ6VGVhbTIyODM2NTA=", + "slug": "team-qa", + "description": "team-qa", + "privacy": "closed", + "url": "https://api.github.com/teams/2283650", + "html_url": "https://github.com/orgs/cloudbees/teams/team-qa", + "members_url": "https://api.github.com/teams/2283650/members{/member}", + "repositories_url": "https://api.github.com/teams/2283650/repos", + "permission": "pull" + }, + { + "name": "team-core-traditional", + "id": 2286168, + "node_id": "MDQ6VGVhbTIyODYxNjg=", + "slug": "team-core-traditional", + "description": "Team Core Traditional is the new Team Core Platform is the new Team Astro is the new Team CJP.", + "privacy": "closed", + "url": "https://api.github.com/teams/2286168", + "html_url": "https://github.com/orgs/cloudbees/teams/team-core-traditional", + "members_url": "https://api.github.com/teams/2286168/members{/member}", + "repositories_url": "https://api.github.com/teams/2286168/repos", + "permission": "pull" + }, + { + "name": "OSS Team", + "id": 2295003, + "node_id": "MDQ6VGVhbTIyOTUwMDM=", + "slug": "oss-team", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2295003", + "html_url": "https://github.com/orgs/cloudbees/teams/oss-team", + "members_url": "https://api.github.com/teams/2295003/members{/member}", + "repositories_url": "https://api.github.com/teams/2295003/repos", + "permission": "pull" + }, + { + "name": "team-analytics", + "id": 2316328, + "node_id": "MDQ6VGVhbTIzMTYzMjg=", + "slug": "team-analytics", + "description": "DevOptics team", + "privacy": "closed", + "url": "https://api.github.com/teams/2316328", + "html_url": "https://github.com/orgs/cloudbees/teams/team-analytics", + "members_url": "https://api.github.com/teams/2316328/members{/member}", + "repositories_url": "https://api.github.com/teams/2316328/repos", + "permission": "pull" + }, + { + "name": "team-infra-cloudbees-interns", + "id": 2377437, + "node_id": "MDQ6VGVhbTIzNzc0Mzc=", + "slug": "team-infra-cloudbees-interns", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2377437", + "html_url": "https://github.com/orgs/cloudbees/teams/team-infra-cloudbees-interns", + "members_url": "https://api.github.com/teams/2377437/members{/member}", + "repositories_url": "https://api.github.com/teams/2377437/repos", + "permission": "pull" + }, + { + "name": "cje-reviewers", + "id": 2384898, + "node_id": "MDQ6VGVhbTIzODQ4OTg=", + "slug": "cje-reviewers", + "description": "CJE Reviewers", + "privacy": "closed", + "url": "https://api.github.com/teams/2384898", + "html_url": "https://github.com/orgs/cloudbees/teams/cje-reviewers", + "members_url": "https://api.github.com/teams/2384898/members{/member}", + "repositories_url": "https://api.github.com/teams/2384898/repos", + "permission": "pull" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_github-api-test-org-a529986c-70bb-4329-9816-ec1f75673e9c.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_github-api-test-org-a529986c-70bb-4329-9816-ec1f75673e9c.json new file mode 100644 index 0000000000..d4c06c4749 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_github-api-test-org-a529986c-70bb-4329-9816-ec1f75673e9c.json @@ -0,0 +1,41 @@ +{ + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "url": "https://api.github.com/orgs/github-api-test-org", + "repos_url": "https://api.github.com/orgs/github-api-test-org/repos", + "events_url": "https://api.github.com/orgs/github-api-test-org/events", + "hooks_url": "https://api.github.com/orgs/github-api-test-org/hooks", + "issues_url": "https://api.github.com/orgs/github-api-test-org/issues", + "members_url": "https://api.github.com/orgs/github-api-test-org/members{/member}", + "public_members_url": "https://api.github.com/orgs/github-api-test-org/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "description": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 9, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/github-api-test-org", + "created_at": "2014-05-10T19:39:11Z", + "updated_at": "2015-04-20T00:42:30Z", + "type": "Organization", + "total_private_repos": 0, + "owned_private_repos": 0, + "private_gists": 0, + "disk_usage": 132, + "collaborators": 0, + "billing_email": "kk@kohsuke.org", + "default_repository_permission": "none", + "members_can_create_repositories": false, + "two_factor_requirement_enabled": false, + "plan": { + "name": "free", + "space": 976562499, + "private_repos": 0, + "filled_seats": 4, + "seats": 0 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_github-api-test-org_teams-4eeff351-c1bd-449c-bf07-0cd3d013dc9b.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_github-api-test-org_teams-4eeff351-c1bd-449c-bf07-0cd3d013dc9b.json new file mode 100644 index 0000000000..735846096f --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_github-api-test-org_teams-4eeff351-c1bd-449c-bf07-0cd3d013dc9b.json @@ -0,0 +1,41 @@ +[ + { + "name": "Owners", + "id": 820404, + "node_id": "MDQ6VGVhbTgyMDQwNA==", + "slug": "owners", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/820404", + "html_url": "https://github.com/orgs/github-api-test-org/teams/owners", + "members_url": "https://api.github.com/teams/820404/members{/member}", + "repositories_url": "https://api.github.com/teams/820404/repos", + "permission": "admin" + }, + { + "name": "Core Developers", + "id": 820406, + "node_id": "MDQ6VGVhbTgyMDQwNg==", + "slug": "core-developers", + "description": "A random team", + "privacy": "secret", + "url": "https://api.github.com/teams/820406", + "html_url": "https://github.com/orgs/github-api-test-org/teams/core-developers", + "members_url": "https://api.github.com/teams/820406/members{/member}", + "repositories_url": "https://api.github.com/teams/820406/repos", + "permission": "pull" + }, + { + "name": "dummy-team", + "id": 3451996, + "node_id": "MDQ6VGVhbTM0NTE5OTY=", + "slug": "dummy-team", + "description": "Updated by API TestModified", + "privacy": "closed", + "url": "https://api.github.com/teams/3451996", + "html_url": "https://github.com/orgs/github-api-test-org/teams/dummy-team", + "members_url": "https://api.github.com/teams/3451996/members{/member}", + "repositories_url": "https://api.github.com/teams/3451996/repos", + "permission": "pull" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_github-api-test-org_teams-c4dada63-33ed-4ac0-856c-e35d466ac7f8.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_github-api-test-org_teams-c4dada63-33ed-4ac0-856c-e35d466ac7f8.json new file mode 100644 index 0000000000..735846096f --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_github-api-test-org_teams-c4dada63-33ed-4ac0-856c-e35d466ac7f8.json @@ -0,0 +1,41 @@ +[ + { + "name": "Owners", + "id": 820404, + "node_id": "MDQ6VGVhbTgyMDQwNA==", + "slug": "owners", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/820404", + "html_url": "https://github.com/orgs/github-api-test-org/teams/owners", + "members_url": "https://api.github.com/teams/820404/members{/member}", + "repositories_url": "https://api.github.com/teams/820404/repos", + "permission": "admin" + }, + { + "name": "Core Developers", + "id": 820406, + "node_id": "MDQ6VGVhbTgyMDQwNg==", + "slug": "core-developers", + "description": "A random team", + "privacy": "secret", + "url": "https://api.github.com/teams/820406", + "html_url": "https://github.com/orgs/github-api-test-org/teams/core-developers", + "members_url": "https://api.github.com/teams/820406/members{/member}", + "repositories_url": "https://api.github.com/teams/820406/repos", + "permission": "pull" + }, + { + "name": "dummy-team", + "id": 3451996, + "node_id": "MDQ6VGVhbTM0NTE5OTY=", + "slug": "dummy-team", + "description": "Updated by API TestModified", + "privacy": "closed", + "url": "https://api.github.com/teams/3451996", + "html_url": "https://github.com/orgs/github-api-test-org/teams/dummy-team", + "members_url": "https://api.github.com/teams/3451996/members{/member}", + "repositories_url": "https://api.github.com/teams/3451996/repos", + "permission": "pull" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkins-inc-e0b11bd2-736d-44c8-aa64-f5848d4691f6.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkins-inc-e0b11bd2-736d-44c8-aa64-f5848d4691f6.json new file mode 100644 index 0000000000..94e545df92 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkins-inc-e0b11bd2-736d-44c8-aa64-f5848d4691f6.json @@ -0,0 +1,46 @@ +{ + "login": "jenkins-inc", + "id": 17552794, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE3NTUyNzk0", + "url": "https://api.github.com/orgs/jenkins-inc", + "repos_url": "https://api.github.com/orgs/jenkins-inc/repos", + "events_url": "https://api.github.com/orgs/jenkins-inc/events", + "hooks_url": "https://api.github.com/orgs/jenkins-inc/hooks", + "issues_url": "https://api.github.com/orgs/jenkins-inc/issues", + "members_url": "https://api.github.com/orgs/jenkins-inc/members{/member}", + "public_members_url": "https://api.github.com/orgs/jenkins-inc/public_members{/member}", + "avatar_url": "https://avatars0.githubusercontent.com/u/17552794?v=4", + "description": "A fictional company to demonstrate Jenkins capabilities", + "name": "Jenkins, Inc.", + "company": null, + "blog": "http://demo.jenkins-ci.org/", + "location": "Everywhere", + "email": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 7, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/jenkins-inc", + "created_at": "2016-02-29T18:02:13Z", + "updated_at": "2016-02-29T18:11:10Z", + "type": "Organization", + "total_private_repos": 0, + "owned_private_repos": 0, + "private_gists": 0, + "disk_usage": 862, + "collaborators": 0, + "billing_email": "kk@kohsuke.org", + "default_repository_permission": "write", + "members_can_create_repositories": true, + "two_factor_requirement_enabled": false, + "plan": { + "name": "free", + "space": 976562499, + "private_repos": 0, + "filled_seats": 9, + "seats": 0 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkins-inc_teams-383d61fc-1c69-4ae1-919a-b98b678b47cd.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkins-inc_teams-383d61fc-1c69-4ae1-919a-b98b678b47cd.json new file mode 100644 index 0000000000..8cfdb451c0 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkins-inc_teams-383d61fc-1c69-4ae1-919a-b98b678b47cd.json @@ -0,0 +1,15 @@ +[ + { + "name": "Engineering", + "id": 1941826, + "node_id": "MDQ6VGVhbTE5NDE4MjY=", + "slug": "engineering", + "description": "Jenkins, Inc. engineering team", + "privacy": "closed", + "url": "https://api.github.com/teams/1941826", + "html_url": "https://github.com/orgs/jenkins-inc/teams/engineering", + "members_url": "https://api.github.com/teams/1941826/members{/member}", + "repositories_url": "https://api.github.com/teams/1941826/repos", + "permission": "pull" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkins-infra-b7c4f477-4e3a-4505-874e-dd816080c7f4.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkins-infra-b7c4f477-4e3a-4505-874e-dd816080c7f4.json new file mode 100644 index 0000000000..da44f65091 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkins-infra-b7c4f477-4e3a-4505-874e-dd816080c7f4.json @@ -0,0 +1,46 @@ +{ + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "url": "https://api.github.com/orgs/jenkins-infra", + "repos_url": "https://api.github.com/orgs/jenkins-infra/repos", + "events_url": "https://api.github.com/orgs/jenkins-infra/events", + "hooks_url": "https://api.github.com/orgs/jenkins-infra/hooks", + "issues_url": "https://api.github.com/orgs/jenkins-infra/issues", + "members_url": "https://api.github.com/orgs/jenkins-infra/members{/member}", + "public_members_url": "https://api.github.com/orgs/jenkins-infra/public_members{/member}", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "description": "Repositories owned by the Jenkins project infrastructure team", + "name": "Jenkins Infra", + "company": null, + "blog": null, + "location": null, + "email": "infra@lists.jenkins-ci.org", + "is_verified": false, + "has_organization_projects": false, + "has_repository_projects": false, + "public_repos": 75, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/jenkins-infra", + "created_at": "2014-04-27T19:47:26Z", + "updated_at": "2018-08-07T02:50:50Z", + "type": "Organization", + "total_private_repos": 5, + "owned_private_repos": 5, + "private_gists": null, + "disk_usage": null, + "collaborators": null, + "billing_email": null, + "default_repository_permission": null, + "members_can_create_repositories": true, + "two_factor_requirement_enabled": null, + "plan": { + "name": "bronze", + "space": 976562499, + "private_repos": 10, + "filled_seats": 44, + "seats": 0 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkins-infra_teams-196db464-b833-490c-97e4-79f79fe29f07.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkins-infra_teams-196db464-b833-490c-97e4-79f79fe29f07.json new file mode 100644 index 0000000000..54b8b4040d --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkins-infra_teams-196db464-b833-490c-97e4-79f79fe29f07.json @@ -0,0 +1,249 @@ +[ + { + "name": "tools", + "id": 1878034, + "node_id": "MDQ6VGVhbTE4NzgwMzQ=", + "slug": "tools", + "description": "Contributors responsible for internal tooling", + "privacy": "closed", + "url": "https://api.github.com/teams/1878034", + "html_url": "https://github.com/orgs/jenkins-infra/teams/tools", + "members_url": "https://api.github.com/teams/1878034/members{/member}", + "repositories_url": "https://api.github.com/teams/1878034/repos", + "permission": "pull" + }, + { + "name": "Copy Editors", + "id": 1882929, + "node_id": "MDQ6VGVhbTE4ODI5Mjk=", + "slug": "copy-editors", + "description": "Team of contributors who can act as reviewers and editors for content", + "privacy": "closed", + "url": "https://api.github.com/teams/1882929", + "html_url": "https://github.com/orgs/jenkins-infra/teams/copy-editors", + "members_url": "https://api.github.com/teams/1882929/members{/member}", + "repositories_url": "https://api.github.com/teams/1882929/repos", + "permission": "pull" + }, + { + "name": "frontenders", + "id": 1976871, + "node_id": "MDQ6VGVhbTE5NzY4NzE=", + "slug": "frontenders", + "description": "People who are adept at reviewing CSS/JS code", + "privacy": "closed", + "url": "https://api.github.com/teams/1976871", + "html_url": "https://github.com/orgs/jenkins-infra/teams/frontenders", + "members_url": "https://api.github.com/teams/1976871/members{/member}", + "repositories_url": "https://api.github.com/teams/1976871/repos", + "permission": "pull" + }, + { + "name": "Oncall", + "id": 2006380, + "node_id": "MDQ6VGVhbTIwMDYzODA=", + "slug": "oncall", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2006380", + "html_url": "https://github.com/orgs/jenkins-infra/teams/oncall", + "members_url": "https://api.github.com/teams/2006380/members{/member}", + "repositories_url": "https://api.github.com/teams/2006380/repos", + "permission": "pull" + }, + { + "name": "plugin-site", + "id": 2175393, + "node_id": "MDQ6VGVhbTIxNzUzOTM=", + "slug": "plugin-site", + "description": "Developers of the plugin site", + "privacy": "closed", + "url": "https://api.github.com/teams/2175393", + "html_url": "https://github.com/orgs/jenkins-infra/teams/plugin-site", + "members_url": "https://api.github.com/teams/2175393/members{/member}", + "repositories_url": "https://api.github.com/teams/2175393/repos", + "permission": "pull" + }, + { + "name": "docs", + "id": 2188150, + "node_id": "MDQ6VGVhbTIxODgxNTA=", + "slug": "docs", + "description": "Documentation team", + "privacy": "closed", + "url": "https://api.github.com/teams/2188150", + "html_url": "https://github.com/orgs/jenkins-infra/teams/docs", + "members_url": "https://api.github.com/teams/2188150/members{/member}", + "repositories_url": "https://api.github.com/teams/2188150/repos", + "permission": "pull" + }, + { + "name": "azure", + "id": 2216148, + "node_id": "MDQ6VGVhbTIyMTYxNDg=", + "slug": "azure", + "description": "Contributors helping migrate to Azure", + "privacy": "closed", + "url": "https://api.github.com/teams/2216148", + "html_url": "https://github.com/orgs/jenkins-infra/teams/azure", + "members_url": "https://api.github.com/teams/2216148/members{/member}", + "repositories_url": "https://api.github.com/teams/2216148/repos", + "permission": "pull" + }, + { + "name": "site-authors", + "id": 2278154, + "node_id": "MDQ6VGVhbTIyNzgxNTQ=", + "slug": "site-authors", + "description": "Collection of people who work on or write portions of jenkins.io", + "privacy": "closed", + "url": "https://api.github.com/teams/2278154", + "html_url": "https://github.com/orgs/jenkins-infra/teams/site-authors", + "members_url": "https://api.github.com/teams/2278154/members{/member}", + "repositories_url": "https://api.github.com/teams/2278154/repos", + "permission": "pull" + }, + { + "name": "hacktoberfest", + "id": 2510135, + "node_id": "MDQ6VGVhbTI1MTAxMzU=", + "slug": "hacktoberfest", + "description": "Jenkins Hacktoberfest Team (reviewers and organizers)", + "privacy": "closed", + "url": "https://api.github.com/teams/2510135", + "html_url": "https://github.com/orgs/jenkins-infra/teams/hacktoberfest", + "members_url": "https://api.github.com/teams/2510135/members{/member}", + "repositories_url": "https://api.github.com/teams/2510135/repos", + "permission": "pull" + }, + { + "name": "cn.jenkins.io", + "id": 2658933, + "node_id": "MDQ6VGVhbTI2NTg5MzM=", + "slug": "cn-jenkins-io", + "description": "People who work on Chinese website", + "privacy": "closed", + "url": "https://api.github.com/teams/2658933", + "html_url": "https://github.com/orgs/jenkins-infra/teams/cn-jenkins-io", + "members_url": "https://api.github.com/teams/2658933/members{/member}", + "repositories_url": "https://api.github.com/teams/2658933/repos", + "permission": "pull" + }, + { + "name": "team-evergreen", + "id": 2670699, + "node_id": "MDQ6VGVhbTI2NzA2OTk=", + "slug": "team-evergreen", + "description": "Team responsible for Jenkins Evergreen distribution system", + "privacy": "closed", + "url": "https://api.github.com/teams/2670699", + "html_url": "https://github.com/orgs/jenkins-infra/teams/team-evergreen", + "members_url": "https://api.github.com/teams/2670699/members{/member}", + "repositories_url": "https://api.github.com/teams/2670699/repos", + "permission": "pull" + }, + { + "name": "ci-maintainers", + "id": 2744724, + "node_id": "MDQ6VGVhbTI3NDQ3MjQ=", + "slug": "ci-maintainers", + "description": "Folks responsible for maintaining ci/cd infrastructure.", + "privacy": "closed", + "url": "https://api.github.com/teams/2744724", + "html_url": "https://github.com/orgs/jenkins-infra/teams/ci-maintainers", + "members_url": "https://api.github.com/teams/2744724/members{/member}", + "repositories_url": "https://api.github.com/teams/2744724/repos", + "permission": "pull" + }, + { + "name": "chinese-localization-sig", + "id": 2970826, + "node_id": "MDQ6VGVhbTI5NzA4MjY=", + "slug": "chinese-localization-sig", + "description": "This team represents main chinese-localization-sig contributors. By default they have github 'read' permission.", + "privacy": "closed", + "url": "https://api.github.com/teams/2970826", + "html_url": "https://github.com/orgs/jenkins-infra/teams/chinese-localization-sig", + "members_url": "https://api.github.com/teams/2970826/members{/member}", + "repositories_url": "https://api.github.com/teams/2970826/repos", + "permission": "pull" + }, + { + "name": "gsoc", + "id": 3017249, + "node_id": "MDQ6VGVhbTMwMTcyNDk=", + "slug": "gsoc", + "description": "Google Summer of Code coordinators", + "privacy": "closed", + "url": "https://api.github.com/teams/3017249", + "html_url": "https://github.com/orgs/jenkins-infra/teams/gsoc", + "members_url": "https://api.github.com/teams/3017249/members{/member}", + "repositories_url": "https://api.github.com/teams/3017249/repos", + "permission": "pull" + }, + { + "name": "monitoring", + "id": 3023638, + "node_id": "MDQ6VGVhbTMwMjM2Mzg=", + "slug": "monitoring", + "description": "Jenkins Infrastructure Monitoring", + "privacy": "closed", + "url": "https://api.github.com/teams/3023638", + "html_url": "https://github.com/orgs/jenkins-infra/teams/monitoring", + "members_url": "https://api.github.com/teams/3023638/members{/member}", + "repositories_url": "https://api.github.com/teams/3023638/repos", + "permission": "pull" + }, + { + "name": "java11-support", + "id": 3049682, + "node_id": "MDQ6VGVhbTMwNDk2ODI=", + "slug": "java11-support", + "description": "Java 11 Support Team (JEP-211)", + "privacy": "closed", + "url": "https://api.github.com/teams/3049682", + "html_url": "https://github.com/orgs/jenkins-infra/teams/java11-support", + "members_url": "https://api.github.com/teams/3049682/members{/member}", + "repositories_url": "https://api.github.com/teams/3049682/repos", + "permission": "pull" + }, + { + "name": "java11-support-reviewer", + "id": 3049687, + "node_id": "MDQ6VGVhbTMwNDk2ODc=", + "slug": "java11-support-reviewer", + "description": "This team represents every contributors with reviewers permissions", + "privacy": "closed", + "url": "https://api.github.com/teams/3049687", + "html_url": "https://github.com/orgs/jenkins-infra/teams/java11-support-reviewer", + "members_url": "https://api.github.com/teams/3049687/members{/member}", + "repositories_url": "https://api.github.com/teams/3049687/repos", + "permission": "pull" + }, + { + "name": "java11-support-maintainer", + "id": 3049911, + "node_id": "MDQ6VGVhbTMwNDk5MTE=", + "slug": "java11-support-maintainer", + "description": "This team represents every java11 contributors with write permissions", + "privacy": "closed", + "url": "https://api.github.com/teams/3049911", + "html_url": "https://github.com/orgs/jenkins-infra/teams/java11-support-maintainer", + "members_url": "https://api.github.com/teams/3049911/members{/member}", + "repositories_url": "https://api.github.com/teams/3049911/repos", + "permission": "pull" + }, + { + "name": "docker", + "id": 3434214, + "node_id": "MDQ6VGVhbTM0MzQyMTQ=", + "slug": "docker", + "description": "This team represents everybody interested to review jenkins infrastructure docker images ", + "privacy": "closed", + "url": "https://api.github.com/teams/3434214", + "html_url": "https://github.com/orgs/jenkins-infra/teams/docker", + "members_url": "https://api.github.com/teams/3434214/members{/member}", + "repositories_url": "https://api.github.com/teams/3434214/repos", + "permission": "pull" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkins-infra_teams-a7f22b01-940f-40f5-9496-f3e0bd87dbf8.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkins-infra_teams-a7f22b01-940f-40f5-9496-f3e0bd87dbf8.json new file mode 100644 index 0000000000..54b8b4040d --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkins-infra_teams-a7f22b01-940f-40f5-9496-f3e0bd87dbf8.json @@ -0,0 +1,249 @@ +[ + { + "name": "tools", + "id": 1878034, + "node_id": "MDQ6VGVhbTE4NzgwMzQ=", + "slug": "tools", + "description": "Contributors responsible for internal tooling", + "privacy": "closed", + "url": "https://api.github.com/teams/1878034", + "html_url": "https://github.com/orgs/jenkins-infra/teams/tools", + "members_url": "https://api.github.com/teams/1878034/members{/member}", + "repositories_url": "https://api.github.com/teams/1878034/repos", + "permission": "pull" + }, + { + "name": "Copy Editors", + "id": 1882929, + "node_id": "MDQ6VGVhbTE4ODI5Mjk=", + "slug": "copy-editors", + "description": "Team of contributors who can act as reviewers and editors for content", + "privacy": "closed", + "url": "https://api.github.com/teams/1882929", + "html_url": "https://github.com/orgs/jenkins-infra/teams/copy-editors", + "members_url": "https://api.github.com/teams/1882929/members{/member}", + "repositories_url": "https://api.github.com/teams/1882929/repos", + "permission": "pull" + }, + { + "name": "frontenders", + "id": 1976871, + "node_id": "MDQ6VGVhbTE5NzY4NzE=", + "slug": "frontenders", + "description": "People who are adept at reviewing CSS/JS code", + "privacy": "closed", + "url": "https://api.github.com/teams/1976871", + "html_url": "https://github.com/orgs/jenkins-infra/teams/frontenders", + "members_url": "https://api.github.com/teams/1976871/members{/member}", + "repositories_url": "https://api.github.com/teams/1976871/repos", + "permission": "pull" + }, + { + "name": "Oncall", + "id": 2006380, + "node_id": "MDQ6VGVhbTIwMDYzODA=", + "slug": "oncall", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2006380", + "html_url": "https://github.com/orgs/jenkins-infra/teams/oncall", + "members_url": "https://api.github.com/teams/2006380/members{/member}", + "repositories_url": "https://api.github.com/teams/2006380/repos", + "permission": "pull" + }, + { + "name": "plugin-site", + "id": 2175393, + "node_id": "MDQ6VGVhbTIxNzUzOTM=", + "slug": "plugin-site", + "description": "Developers of the plugin site", + "privacy": "closed", + "url": "https://api.github.com/teams/2175393", + "html_url": "https://github.com/orgs/jenkins-infra/teams/plugin-site", + "members_url": "https://api.github.com/teams/2175393/members{/member}", + "repositories_url": "https://api.github.com/teams/2175393/repos", + "permission": "pull" + }, + { + "name": "docs", + "id": 2188150, + "node_id": "MDQ6VGVhbTIxODgxNTA=", + "slug": "docs", + "description": "Documentation team", + "privacy": "closed", + "url": "https://api.github.com/teams/2188150", + "html_url": "https://github.com/orgs/jenkins-infra/teams/docs", + "members_url": "https://api.github.com/teams/2188150/members{/member}", + "repositories_url": "https://api.github.com/teams/2188150/repos", + "permission": "pull" + }, + { + "name": "azure", + "id": 2216148, + "node_id": "MDQ6VGVhbTIyMTYxNDg=", + "slug": "azure", + "description": "Contributors helping migrate to Azure", + "privacy": "closed", + "url": "https://api.github.com/teams/2216148", + "html_url": "https://github.com/orgs/jenkins-infra/teams/azure", + "members_url": "https://api.github.com/teams/2216148/members{/member}", + "repositories_url": "https://api.github.com/teams/2216148/repos", + "permission": "pull" + }, + { + "name": "site-authors", + "id": 2278154, + "node_id": "MDQ6VGVhbTIyNzgxNTQ=", + "slug": "site-authors", + "description": "Collection of people who work on or write portions of jenkins.io", + "privacy": "closed", + "url": "https://api.github.com/teams/2278154", + "html_url": "https://github.com/orgs/jenkins-infra/teams/site-authors", + "members_url": "https://api.github.com/teams/2278154/members{/member}", + "repositories_url": "https://api.github.com/teams/2278154/repos", + "permission": "pull" + }, + { + "name": "hacktoberfest", + "id": 2510135, + "node_id": "MDQ6VGVhbTI1MTAxMzU=", + "slug": "hacktoberfest", + "description": "Jenkins Hacktoberfest Team (reviewers and organizers)", + "privacy": "closed", + "url": "https://api.github.com/teams/2510135", + "html_url": "https://github.com/orgs/jenkins-infra/teams/hacktoberfest", + "members_url": "https://api.github.com/teams/2510135/members{/member}", + "repositories_url": "https://api.github.com/teams/2510135/repos", + "permission": "pull" + }, + { + "name": "cn.jenkins.io", + "id": 2658933, + "node_id": "MDQ6VGVhbTI2NTg5MzM=", + "slug": "cn-jenkins-io", + "description": "People who work on Chinese website", + "privacy": "closed", + "url": "https://api.github.com/teams/2658933", + "html_url": "https://github.com/orgs/jenkins-infra/teams/cn-jenkins-io", + "members_url": "https://api.github.com/teams/2658933/members{/member}", + "repositories_url": "https://api.github.com/teams/2658933/repos", + "permission": "pull" + }, + { + "name": "team-evergreen", + "id": 2670699, + "node_id": "MDQ6VGVhbTI2NzA2OTk=", + "slug": "team-evergreen", + "description": "Team responsible for Jenkins Evergreen distribution system", + "privacy": "closed", + "url": "https://api.github.com/teams/2670699", + "html_url": "https://github.com/orgs/jenkins-infra/teams/team-evergreen", + "members_url": "https://api.github.com/teams/2670699/members{/member}", + "repositories_url": "https://api.github.com/teams/2670699/repos", + "permission": "pull" + }, + { + "name": "ci-maintainers", + "id": 2744724, + "node_id": "MDQ6VGVhbTI3NDQ3MjQ=", + "slug": "ci-maintainers", + "description": "Folks responsible for maintaining ci/cd infrastructure.", + "privacy": "closed", + "url": "https://api.github.com/teams/2744724", + "html_url": "https://github.com/orgs/jenkins-infra/teams/ci-maintainers", + "members_url": "https://api.github.com/teams/2744724/members{/member}", + "repositories_url": "https://api.github.com/teams/2744724/repos", + "permission": "pull" + }, + { + "name": "chinese-localization-sig", + "id": 2970826, + "node_id": "MDQ6VGVhbTI5NzA4MjY=", + "slug": "chinese-localization-sig", + "description": "This team represents main chinese-localization-sig contributors. By default they have github 'read' permission.", + "privacy": "closed", + "url": "https://api.github.com/teams/2970826", + "html_url": "https://github.com/orgs/jenkins-infra/teams/chinese-localization-sig", + "members_url": "https://api.github.com/teams/2970826/members{/member}", + "repositories_url": "https://api.github.com/teams/2970826/repos", + "permission": "pull" + }, + { + "name": "gsoc", + "id": 3017249, + "node_id": "MDQ6VGVhbTMwMTcyNDk=", + "slug": "gsoc", + "description": "Google Summer of Code coordinators", + "privacy": "closed", + "url": "https://api.github.com/teams/3017249", + "html_url": "https://github.com/orgs/jenkins-infra/teams/gsoc", + "members_url": "https://api.github.com/teams/3017249/members{/member}", + "repositories_url": "https://api.github.com/teams/3017249/repos", + "permission": "pull" + }, + { + "name": "monitoring", + "id": 3023638, + "node_id": "MDQ6VGVhbTMwMjM2Mzg=", + "slug": "monitoring", + "description": "Jenkins Infrastructure Monitoring", + "privacy": "closed", + "url": "https://api.github.com/teams/3023638", + "html_url": "https://github.com/orgs/jenkins-infra/teams/monitoring", + "members_url": "https://api.github.com/teams/3023638/members{/member}", + "repositories_url": "https://api.github.com/teams/3023638/repos", + "permission": "pull" + }, + { + "name": "java11-support", + "id": 3049682, + "node_id": "MDQ6VGVhbTMwNDk2ODI=", + "slug": "java11-support", + "description": "Java 11 Support Team (JEP-211)", + "privacy": "closed", + "url": "https://api.github.com/teams/3049682", + "html_url": "https://github.com/orgs/jenkins-infra/teams/java11-support", + "members_url": "https://api.github.com/teams/3049682/members{/member}", + "repositories_url": "https://api.github.com/teams/3049682/repos", + "permission": "pull" + }, + { + "name": "java11-support-reviewer", + "id": 3049687, + "node_id": "MDQ6VGVhbTMwNDk2ODc=", + "slug": "java11-support-reviewer", + "description": "This team represents every contributors with reviewers permissions", + "privacy": "closed", + "url": "https://api.github.com/teams/3049687", + "html_url": "https://github.com/orgs/jenkins-infra/teams/java11-support-reviewer", + "members_url": "https://api.github.com/teams/3049687/members{/member}", + "repositories_url": "https://api.github.com/teams/3049687/repos", + "permission": "pull" + }, + { + "name": "java11-support-maintainer", + "id": 3049911, + "node_id": "MDQ6VGVhbTMwNDk5MTE=", + "slug": "java11-support-maintainer", + "description": "This team represents every java11 contributors with write permissions", + "privacy": "closed", + "url": "https://api.github.com/teams/3049911", + "html_url": "https://github.com/orgs/jenkins-infra/teams/java11-support-maintainer", + "members_url": "https://api.github.com/teams/3049911/members{/member}", + "repositories_url": "https://api.github.com/teams/3049911/repos", + "permission": "pull" + }, + { + "name": "docker", + "id": 3434214, + "node_id": "MDQ6VGVhbTM0MzQyMTQ=", + "slug": "docker", + "description": "This team represents everybody interested to review jenkins infrastructure docker images ", + "privacy": "closed", + "url": "https://api.github.com/teams/3434214", + "html_url": "https://github.com/orgs/jenkins-infra/teams/docker", + "members_url": "https://api.github.com/teams/3434214/members{/member}", + "repositories_url": "https://api.github.com/teams/3434214/repos", + "permission": "pull" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkins-infra_teams-b5053ddf-d2f8-4ea4-a246-1118f02f3ac7.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkins-infra_teams-b5053ddf-d2f8-4ea4-a246-1118f02f3ac7.json new file mode 100644 index 0000000000..54b8b4040d --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkins-infra_teams-b5053ddf-d2f8-4ea4-a246-1118f02f3ac7.json @@ -0,0 +1,249 @@ +[ + { + "name": "tools", + "id": 1878034, + "node_id": "MDQ6VGVhbTE4NzgwMzQ=", + "slug": "tools", + "description": "Contributors responsible for internal tooling", + "privacy": "closed", + "url": "https://api.github.com/teams/1878034", + "html_url": "https://github.com/orgs/jenkins-infra/teams/tools", + "members_url": "https://api.github.com/teams/1878034/members{/member}", + "repositories_url": "https://api.github.com/teams/1878034/repos", + "permission": "pull" + }, + { + "name": "Copy Editors", + "id": 1882929, + "node_id": "MDQ6VGVhbTE4ODI5Mjk=", + "slug": "copy-editors", + "description": "Team of contributors who can act as reviewers and editors for content", + "privacy": "closed", + "url": "https://api.github.com/teams/1882929", + "html_url": "https://github.com/orgs/jenkins-infra/teams/copy-editors", + "members_url": "https://api.github.com/teams/1882929/members{/member}", + "repositories_url": "https://api.github.com/teams/1882929/repos", + "permission": "pull" + }, + { + "name": "frontenders", + "id": 1976871, + "node_id": "MDQ6VGVhbTE5NzY4NzE=", + "slug": "frontenders", + "description": "People who are adept at reviewing CSS/JS code", + "privacy": "closed", + "url": "https://api.github.com/teams/1976871", + "html_url": "https://github.com/orgs/jenkins-infra/teams/frontenders", + "members_url": "https://api.github.com/teams/1976871/members{/member}", + "repositories_url": "https://api.github.com/teams/1976871/repos", + "permission": "pull" + }, + { + "name": "Oncall", + "id": 2006380, + "node_id": "MDQ6VGVhbTIwMDYzODA=", + "slug": "oncall", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2006380", + "html_url": "https://github.com/orgs/jenkins-infra/teams/oncall", + "members_url": "https://api.github.com/teams/2006380/members{/member}", + "repositories_url": "https://api.github.com/teams/2006380/repos", + "permission": "pull" + }, + { + "name": "plugin-site", + "id": 2175393, + "node_id": "MDQ6VGVhbTIxNzUzOTM=", + "slug": "plugin-site", + "description": "Developers of the plugin site", + "privacy": "closed", + "url": "https://api.github.com/teams/2175393", + "html_url": "https://github.com/orgs/jenkins-infra/teams/plugin-site", + "members_url": "https://api.github.com/teams/2175393/members{/member}", + "repositories_url": "https://api.github.com/teams/2175393/repos", + "permission": "pull" + }, + { + "name": "docs", + "id": 2188150, + "node_id": "MDQ6VGVhbTIxODgxNTA=", + "slug": "docs", + "description": "Documentation team", + "privacy": "closed", + "url": "https://api.github.com/teams/2188150", + "html_url": "https://github.com/orgs/jenkins-infra/teams/docs", + "members_url": "https://api.github.com/teams/2188150/members{/member}", + "repositories_url": "https://api.github.com/teams/2188150/repos", + "permission": "pull" + }, + { + "name": "azure", + "id": 2216148, + "node_id": "MDQ6VGVhbTIyMTYxNDg=", + "slug": "azure", + "description": "Contributors helping migrate to Azure", + "privacy": "closed", + "url": "https://api.github.com/teams/2216148", + "html_url": "https://github.com/orgs/jenkins-infra/teams/azure", + "members_url": "https://api.github.com/teams/2216148/members{/member}", + "repositories_url": "https://api.github.com/teams/2216148/repos", + "permission": "pull" + }, + { + "name": "site-authors", + "id": 2278154, + "node_id": "MDQ6VGVhbTIyNzgxNTQ=", + "slug": "site-authors", + "description": "Collection of people who work on or write portions of jenkins.io", + "privacy": "closed", + "url": "https://api.github.com/teams/2278154", + "html_url": "https://github.com/orgs/jenkins-infra/teams/site-authors", + "members_url": "https://api.github.com/teams/2278154/members{/member}", + "repositories_url": "https://api.github.com/teams/2278154/repos", + "permission": "pull" + }, + { + "name": "hacktoberfest", + "id": 2510135, + "node_id": "MDQ6VGVhbTI1MTAxMzU=", + "slug": "hacktoberfest", + "description": "Jenkins Hacktoberfest Team (reviewers and organizers)", + "privacy": "closed", + "url": "https://api.github.com/teams/2510135", + "html_url": "https://github.com/orgs/jenkins-infra/teams/hacktoberfest", + "members_url": "https://api.github.com/teams/2510135/members{/member}", + "repositories_url": "https://api.github.com/teams/2510135/repos", + "permission": "pull" + }, + { + "name": "cn.jenkins.io", + "id": 2658933, + "node_id": "MDQ6VGVhbTI2NTg5MzM=", + "slug": "cn-jenkins-io", + "description": "People who work on Chinese website", + "privacy": "closed", + "url": "https://api.github.com/teams/2658933", + "html_url": "https://github.com/orgs/jenkins-infra/teams/cn-jenkins-io", + "members_url": "https://api.github.com/teams/2658933/members{/member}", + "repositories_url": "https://api.github.com/teams/2658933/repos", + "permission": "pull" + }, + { + "name": "team-evergreen", + "id": 2670699, + "node_id": "MDQ6VGVhbTI2NzA2OTk=", + "slug": "team-evergreen", + "description": "Team responsible for Jenkins Evergreen distribution system", + "privacy": "closed", + "url": "https://api.github.com/teams/2670699", + "html_url": "https://github.com/orgs/jenkins-infra/teams/team-evergreen", + "members_url": "https://api.github.com/teams/2670699/members{/member}", + "repositories_url": "https://api.github.com/teams/2670699/repos", + "permission": "pull" + }, + { + "name": "ci-maintainers", + "id": 2744724, + "node_id": "MDQ6VGVhbTI3NDQ3MjQ=", + "slug": "ci-maintainers", + "description": "Folks responsible for maintaining ci/cd infrastructure.", + "privacy": "closed", + "url": "https://api.github.com/teams/2744724", + "html_url": "https://github.com/orgs/jenkins-infra/teams/ci-maintainers", + "members_url": "https://api.github.com/teams/2744724/members{/member}", + "repositories_url": "https://api.github.com/teams/2744724/repos", + "permission": "pull" + }, + { + "name": "chinese-localization-sig", + "id": 2970826, + "node_id": "MDQ6VGVhbTI5NzA4MjY=", + "slug": "chinese-localization-sig", + "description": "This team represents main chinese-localization-sig contributors. By default they have github 'read' permission.", + "privacy": "closed", + "url": "https://api.github.com/teams/2970826", + "html_url": "https://github.com/orgs/jenkins-infra/teams/chinese-localization-sig", + "members_url": "https://api.github.com/teams/2970826/members{/member}", + "repositories_url": "https://api.github.com/teams/2970826/repos", + "permission": "pull" + }, + { + "name": "gsoc", + "id": 3017249, + "node_id": "MDQ6VGVhbTMwMTcyNDk=", + "slug": "gsoc", + "description": "Google Summer of Code coordinators", + "privacy": "closed", + "url": "https://api.github.com/teams/3017249", + "html_url": "https://github.com/orgs/jenkins-infra/teams/gsoc", + "members_url": "https://api.github.com/teams/3017249/members{/member}", + "repositories_url": "https://api.github.com/teams/3017249/repos", + "permission": "pull" + }, + { + "name": "monitoring", + "id": 3023638, + "node_id": "MDQ6VGVhbTMwMjM2Mzg=", + "slug": "monitoring", + "description": "Jenkins Infrastructure Monitoring", + "privacy": "closed", + "url": "https://api.github.com/teams/3023638", + "html_url": "https://github.com/orgs/jenkins-infra/teams/monitoring", + "members_url": "https://api.github.com/teams/3023638/members{/member}", + "repositories_url": "https://api.github.com/teams/3023638/repos", + "permission": "pull" + }, + { + "name": "java11-support", + "id": 3049682, + "node_id": "MDQ6VGVhbTMwNDk2ODI=", + "slug": "java11-support", + "description": "Java 11 Support Team (JEP-211)", + "privacy": "closed", + "url": "https://api.github.com/teams/3049682", + "html_url": "https://github.com/orgs/jenkins-infra/teams/java11-support", + "members_url": "https://api.github.com/teams/3049682/members{/member}", + "repositories_url": "https://api.github.com/teams/3049682/repos", + "permission": "pull" + }, + { + "name": "java11-support-reviewer", + "id": 3049687, + "node_id": "MDQ6VGVhbTMwNDk2ODc=", + "slug": "java11-support-reviewer", + "description": "This team represents every contributors with reviewers permissions", + "privacy": "closed", + "url": "https://api.github.com/teams/3049687", + "html_url": "https://github.com/orgs/jenkins-infra/teams/java11-support-reviewer", + "members_url": "https://api.github.com/teams/3049687/members{/member}", + "repositories_url": "https://api.github.com/teams/3049687/repos", + "permission": "pull" + }, + { + "name": "java11-support-maintainer", + "id": 3049911, + "node_id": "MDQ6VGVhbTMwNDk5MTE=", + "slug": "java11-support-maintainer", + "description": "This team represents every java11 contributors with write permissions", + "privacy": "closed", + "url": "https://api.github.com/teams/3049911", + "html_url": "https://github.com/orgs/jenkins-infra/teams/java11-support-maintainer", + "members_url": "https://api.github.com/teams/3049911/members{/member}", + "repositories_url": "https://api.github.com/teams/3049911/repos", + "permission": "pull" + }, + { + "name": "docker", + "id": 3434214, + "node_id": "MDQ6VGVhbTM0MzQyMTQ=", + "slug": "docker", + "description": "This team represents everybody interested to review jenkins infrastructure docker images ", + "privacy": "closed", + "url": "https://api.github.com/teams/3434214", + "html_url": "https://github.com/orgs/jenkins-infra/teams/docker", + "members_url": "https://api.github.com/teams/3434214/members{/member}", + "repositories_url": "https://api.github.com/teams/3434214/repos", + "permission": "pull" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkins-infra_teams-b6bb7856-85f0-4bcb-9c9c-5ab9c1be8e74.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkins-infra_teams-b6bb7856-85f0-4bcb-9c9c-5ab9c1be8e74.json new file mode 100644 index 0000000000..54b8b4040d --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkins-infra_teams-b6bb7856-85f0-4bcb-9c9c-5ab9c1be8e74.json @@ -0,0 +1,249 @@ +[ + { + "name": "tools", + "id": 1878034, + "node_id": "MDQ6VGVhbTE4NzgwMzQ=", + "slug": "tools", + "description": "Contributors responsible for internal tooling", + "privacy": "closed", + "url": "https://api.github.com/teams/1878034", + "html_url": "https://github.com/orgs/jenkins-infra/teams/tools", + "members_url": "https://api.github.com/teams/1878034/members{/member}", + "repositories_url": "https://api.github.com/teams/1878034/repos", + "permission": "pull" + }, + { + "name": "Copy Editors", + "id": 1882929, + "node_id": "MDQ6VGVhbTE4ODI5Mjk=", + "slug": "copy-editors", + "description": "Team of contributors who can act as reviewers and editors for content", + "privacy": "closed", + "url": "https://api.github.com/teams/1882929", + "html_url": "https://github.com/orgs/jenkins-infra/teams/copy-editors", + "members_url": "https://api.github.com/teams/1882929/members{/member}", + "repositories_url": "https://api.github.com/teams/1882929/repos", + "permission": "pull" + }, + { + "name": "frontenders", + "id": 1976871, + "node_id": "MDQ6VGVhbTE5NzY4NzE=", + "slug": "frontenders", + "description": "People who are adept at reviewing CSS/JS code", + "privacy": "closed", + "url": "https://api.github.com/teams/1976871", + "html_url": "https://github.com/orgs/jenkins-infra/teams/frontenders", + "members_url": "https://api.github.com/teams/1976871/members{/member}", + "repositories_url": "https://api.github.com/teams/1976871/repos", + "permission": "pull" + }, + { + "name": "Oncall", + "id": 2006380, + "node_id": "MDQ6VGVhbTIwMDYzODA=", + "slug": "oncall", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2006380", + "html_url": "https://github.com/orgs/jenkins-infra/teams/oncall", + "members_url": "https://api.github.com/teams/2006380/members{/member}", + "repositories_url": "https://api.github.com/teams/2006380/repos", + "permission": "pull" + }, + { + "name": "plugin-site", + "id": 2175393, + "node_id": "MDQ6VGVhbTIxNzUzOTM=", + "slug": "plugin-site", + "description": "Developers of the plugin site", + "privacy": "closed", + "url": "https://api.github.com/teams/2175393", + "html_url": "https://github.com/orgs/jenkins-infra/teams/plugin-site", + "members_url": "https://api.github.com/teams/2175393/members{/member}", + "repositories_url": "https://api.github.com/teams/2175393/repos", + "permission": "pull" + }, + { + "name": "docs", + "id": 2188150, + "node_id": "MDQ6VGVhbTIxODgxNTA=", + "slug": "docs", + "description": "Documentation team", + "privacy": "closed", + "url": "https://api.github.com/teams/2188150", + "html_url": "https://github.com/orgs/jenkins-infra/teams/docs", + "members_url": "https://api.github.com/teams/2188150/members{/member}", + "repositories_url": "https://api.github.com/teams/2188150/repos", + "permission": "pull" + }, + { + "name": "azure", + "id": 2216148, + "node_id": "MDQ6VGVhbTIyMTYxNDg=", + "slug": "azure", + "description": "Contributors helping migrate to Azure", + "privacy": "closed", + "url": "https://api.github.com/teams/2216148", + "html_url": "https://github.com/orgs/jenkins-infra/teams/azure", + "members_url": "https://api.github.com/teams/2216148/members{/member}", + "repositories_url": "https://api.github.com/teams/2216148/repos", + "permission": "pull" + }, + { + "name": "site-authors", + "id": 2278154, + "node_id": "MDQ6VGVhbTIyNzgxNTQ=", + "slug": "site-authors", + "description": "Collection of people who work on or write portions of jenkins.io", + "privacy": "closed", + "url": "https://api.github.com/teams/2278154", + "html_url": "https://github.com/orgs/jenkins-infra/teams/site-authors", + "members_url": "https://api.github.com/teams/2278154/members{/member}", + "repositories_url": "https://api.github.com/teams/2278154/repos", + "permission": "pull" + }, + { + "name": "hacktoberfest", + "id": 2510135, + "node_id": "MDQ6VGVhbTI1MTAxMzU=", + "slug": "hacktoberfest", + "description": "Jenkins Hacktoberfest Team (reviewers and organizers)", + "privacy": "closed", + "url": "https://api.github.com/teams/2510135", + "html_url": "https://github.com/orgs/jenkins-infra/teams/hacktoberfest", + "members_url": "https://api.github.com/teams/2510135/members{/member}", + "repositories_url": "https://api.github.com/teams/2510135/repos", + "permission": "pull" + }, + { + "name": "cn.jenkins.io", + "id": 2658933, + "node_id": "MDQ6VGVhbTI2NTg5MzM=", + "slug": "cn-jenkins-io", + "description": "People who work on Chinese website", + "privacy": "closed", + "url": "https://api.github.com/teams/2658933", + "html_url": "https://github.com/orgs/jenkins-infra/teams/cn-jenkins-io", + "members_url": "https://api.github.com/teams/2658933/members{/member}", + "repositories_url": "https://api.github.com/teams/2658933/repos", + "permission": "pull" + }, + { + "name": "team-evergreen", + "id": 2670699, + "node_id": "MDQ6VGVhbTI2NzA2OTk=", + "slug": "team-evergreen", + "description": "Team responsible for Jenkins Evergreen distribution system", + "privacy": "closed", + "url": "https://api.github.com/teams/2670699", + "html_url": "https://github.com/orgs/jenkins-infra/teams/team-evergreen", + "members_url": "https://api.github.com/teams/2670699/members{/member}", + "repositories_url": "https://api.github.com/teams/2670699/repos", + "permission": "pull" + }, + { + "name": "ci-maintainers", + "id": 2744724, + "node_id": "MDQ6VGVhbTI3NDQ3MjQ=", + "slug": "ci-maintainers", + "description": "Folks responsible for maintaining ci/cd infrastructure.", + "privacy": "closed", + "url": "https://api.github.com/teams/2744724", + "html_url": "https://github.com/orgs/jenkins-infra/teams/ci-maintainers", + "members_url": "https://api.github.com/teams/2744724/members{/member}", + "repositories_url": "https://api.github.com/teams/2744724/repos", + "permission": "pull" + }, + { + "name": "chinese-localization-sig", + "id": 2970826, + "node_id": "MDQ6VGVhbTI5NzA4MjY=", + "slug": "chinese-localization-sig", + "description": "This team represents main chinese-localization-sig contributors. By default they have github 'read' permission.", + "privacy": "closed", + "url": "https://api.github.com/teams/2970826", + "html_url": "https://github.com/orgs/jenkins-infra/teams/chinese-localization-sig", + "members_url": "https://api.github.com/teams/2970826/members{/member}", + "repositories_url": "https://api.github.com/teams/2970826/repos", + "permission": "pull" + }, + { + "name": "gsoc", + "id": 3017249, + "node_id": "MDQ6VGVhbTMwMTcyNDk=", + "slug": "gsoc", + "description": "Google Summer of Code coordinators", + "privacy": "closed", + "url": "https://api.github.com/teams/3017249", + "html_url": "https://github.com/orgs/jenkins-infra/teams/gsoc", + "members_url": "https://api.github.com/teams/3017249/members{/member}", + "repositories_url": "https://api.github.com/teams/3017249/repos", + "permission": "pull" + }, + { + "name": "monitoring", + "id": 3023638, + "node_id": "MDQ6VGVhbTMwMjM2Mzg=", + "slug": "monitoring", + "description": "Jenkins Infrastructure Monitoring", + "privacy": "closed", + "url": "https://api.github.com/teams/3023638", + "html_url": "https://github.com/orgs/jenkins-infra/teams/monitoring", + "members_url": "https://api.github.com/teams/3023638/members{/member}", + "repositories_url": "https://api.github.com/teams/3023638/repos", + "permission": "pull" + }, + { + "name": "java11-support", + "id": 3049682, + "node_id": "MDQ6VGVhbTMwNDk2ODI=", + "slug": "java11-support", + "description": "Java 11 Support Team (JEP-211)", + "privacy": "closed", + "url": "https://api.github.com/teams/3049682", + "html_url": "https://github.com/orgs/jenkins-infra/teams/java11-support", + "members_url": "https://api.github.com/teams/3049682/members{/member}", + "repositories_url": "https://api.github.com/teams/3049682/repos", + "permission": "pull" + }, + { + "name": "java11-support-reviewer", + "id": 3049687, + "node_id": "MDQ6VGVhbTMwNDk2ODc=", + "slug": "java11-support-reviewer", + "description": "This team represents every contributors with reviewers permissions", + "privacy": "closed", + "url": "https://api.github.com/teams/3049687", + "html_url": "https://github.com/orgs/jenkins-infra/teams/java11-support-reviewer", + "members_url": "https://api.github.com/teams/3049687/members{/member}", + "repositories_url": "https://api.github.com/teams/3049687/repos", + "permission": "pull" + }, + { + "name": "java11-support-maintainer", + "id": 3049911, + "node_id": "MDQ6VGVhbTMwNDk5MTE=", + "slug": "java11-support-maintainer", + "description": "This team represents every java11 contributors with write permissions", + "privacy": "closed", + "url": "https://api.github.com/teams/3049911", + "html_url": "https://github.com/orgs/jenkins-infra/teams/java11-support-maintainer", + "members_url": "https://api.github.com/teams/3049911/members{/member}", + "repositories_url": "https://api.github.com/teams/3049911/repos", + "permission": "pull" + }, + { + "name": "docker", + "id": 3434214, + "node_id": "MDQ6VGVhbTM0MzQyMTQ=", + "slug": "docker", + "description": "This team represents everybody interested to review jenkins infrastructure docker images ", + "privacy": "closed", + "url": "https://api.github.com/teams/3434214", + "html_url": "https://github.com/orgs/jenkins-infra/teams/docker", + "members_url": "https://api.github.com/teams/3434214/members{/member}", + "repositories_url": "https://api.github.com/teams/3434214/repos", + "permission": "pull" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkins-infra_teams-f8bd811b-e074-4e0a-b2f3-dc3f749b5c07.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkins-infra_teams-f8bd811b-e074-4e0a-b2f3-dc3f749b5c07.json new file mode 100644 index 0000000000..54b8b4040d --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkins-infra_teams-f8bd811b-e074-4e0a-b2f3-dc3f749b5c07.json @@ -0,0 +1,249 @@ +[ + { + "name": "tools", + "id": 1878034, + "node_id": "MDQ6VGVhbTE4NzgwMzQ=", + "slug": "tools", + "description": "Contributors responsible for internal tooling", + "privacy": "closed", + "url": "https://api.github.com/teams/1878034", + "html_url": "https://github.com/orgs/jenkins-infra/teams/tools", + "members_url": "https://api.github.com/teams/1878034/members{/member}", + "repositories_url": "https://api.github.com/teams/1878034/repos", + "permission": "pull" + }, + { + "name": "Copy Editors", + "id": 1882929, + "node_id": "MDQ6VGVhbTE4ODI5Mjk=", + "slug": "copy-editors", + "description": "Team of contributors who can act as reviewers and editors for content", + "privacy": "closed", + "url": "https://api.github.com/teams/1882929", + "html_url": "https://github.com/orgs/jenkins-infra/teams/copy-editors", + "members_url": "https://api.github.com/teams/1882929/members{/member}", + "repositories_url": "https://api.github.com/teams/1882929/repos", + "permission": "pull" + }, + { + "name": "frontenders", + "id": 1976871, + "node_id": "MDQ6VGVhbTE5NzY4NzE=", + "slug": "frontenders", + "description": "People who are adept at reviewing CSS/JS code", + "privacy": "closed", + "url": "https://api.github.com/teams/1976871", + "html_url": "https://github.com/orgs/jenkins-infra/teams/frontenders", + "members_url": "https://api.github.com/teams/1976871/members{/member}", + "repositories_url": "https://api.github.com/teams/1976871/repos", + "permission": "pull" + }, + { + "name": "Oncall", + "id": 2006380, + "node_id": "MDQ6VGVhbTIwMDYzODA=", + "slug": "oncall", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2006380", + "html_url": "https://github.com/orgs/jenkins-infra/teams/oncall", + "members_url": "https://api.github.com/teams/2006380/members{/member}", + "repositories_url": "https://api.github.com/teams/2006380/repos", + "permission": "pull" + }, + { + "name": "plugin-site", + "id": 2175393, + "node_id": "MDQ6VGVhbTIxNzUzOTM=", + "slug": "plugin-site", + "description": "Developers of the plugin site", + "privacy": "closed", + "url": "https://api.github.com/teams/2175393", + "html_url": "https://github.com/orgs/jenkins-infra/teams/plugin-site", + "members_url": "https://api.github.com/teams/2175393/members{/member}", + "repositories_url": "https://api.github.com/teams/2175393/repos", + "permission": "pull" + }, + { + "name": "docs", + "id": 2188150, + "node_id": "MDQ6VGVhbTIxODgxNTA=", + "slug": "docs", + "description": "Documentation team", + "privacy": "closed", + "url": "https://api.github.com/teams/2188150", + "html_url": "https://github.com/orgs/jenkins-infra/teams/docs", + "members_url": "https://api.github.com/teams/2188150/members{/member}", + "repositories_url": "https://api.github.com/teams/2188150/repos", + "permission": "pull" + }, + { + "name": "azure", + "id": 2216148, + "node_id": "MDQ6VGVhbTIyMTYxNDg=", + "slug": "azure", + "description": "Contributors helping migrate to Azure", + "privacy": "closed", + "url": "https://api.github.com/teams/2216148", + "html_url": "https://github.com/orgs/jenkins-infra/teams/azure", + "members_url": "https://api.github.com/teams/2216148/members{/member}", + "repositories_url": "https://api.github.com/teams/2216148/repos", + "permission": "pull" + }, + { + "name": "site-authors", + "id": 2278154, + "node_id": "MDQ6VGVhbTIyNzgxNTQ=", + "slug": "site-authors", + "description": "Collection of people who work on or write portions of jenkins.io", + "privacy": "closed", + "url": "https://api.github.com/teams/2278154", + "html_url": "https://github.com/orgs/jenkins-infra/teams/site-authors", + "members_url": "https://api.github.com/teams/2278154/members{/member}", + "repositories_url": "https://api.github.com/teams/2278154/repos", + "permission": "pull" + }, + { + "name": "hacktoberfest", + "id": 2510135, + "node_id": "MDQ6VGVhbTI1MTAxMzU=", + "slug": "hacktoberfest", + "description": "Jenkins Hacktoberfest Team (reviewers and organizers)", + "privacy": "closed", + "url": "https://api.github.com/teams/2510135", + "html_url": "https://github.com/orgs/jenkins-infra/teams/hacktoberfest", + "members_url": "https://api.github.com/teams/2510135/members{/member}", + "repositories_url": "https://api.github.com/teams/2510135/repos", + "permission": "pull" + }, + { + "name": "cn.jenkins.io", + "id": 2658933, + "node_id": "MDQ6VGVhbTI2NTg5MzM=", + "slug": "cn-jenkins-io", + "description": "People who work on Chinese website", + "privacy": "closed", + "url": "https://api.github.com/teams/2658933", + "html_url": "https://github.com/orgs/jenkins-infra/teams/cn-jenkins-io", + "members_url": "https://api.github.com/teams/2658933/members{/member}", + "repositories_url": "https://api.github.com/teams/2658933/repos", + "permission": "pull" + }, + { + "name": "team-evergreen", + "id": 2670699, + "node_id": "MDQ6VGVhbTI2NzA2OTk=", + "slug": "team-evergreen", + "description": "Team responsible for Jenkins Evergreen distribution system", + "privacy": "closed", + "url": "https://api.github.com/teams/2670699", + "html_url": "https://github.com/orgs/jenkins-infra/teams/team-evergreen", + "members_url": "https://api.github.com/teams/2670699/members{/member}", + "repositories_url": "https://api.github.com/teams/2670699/repos", + "permission": "pull" + }, + { + "name": "ci-maintainers", + "id": 2744724, + "node_id": "MDQ6VGVhbTI3NDQ3MjQ=", + "slug": "ci-maintainers", + "description": "Folks responsible for maintaining ci/cd infrastructure.", + "privacy": "closed", + "url": "https://api.github.com/teams/2744724", + "html_url": "https://github.com/orgs/jenkins-infra/teams/ci-maintainers", + "members_url": "https://api.github.com/teams/2744724/members{/member}", + "repositories_url": "https://api.github.com/teams/2744724/repos", + "permission": "pull" + }, + { + "name": "chinese-localization-sig", + "id": 2970826, + "node_id": "MDQ6VGVhbTI5NzA4MjY=", + "slug": "chinese-localization-sig", + "description": "This team represents main chinese-localization-sig contributors. By default they have github 'read' permission.", + "privacy": "closed", + "url": "https://api.github.com/teams/2970826", + "html_url": "https://github.com/orgs/jenkins-infra/teams/chinese-localization-sig", + "members_url": "https://api.github.com/teams/2970826/members{/member}", + "repositories_url": "https://api.github.com/teams/2970826/repos", + "permission": "pull" + }, + { + "name": "gsoc", + "id": 3017249, + "node_id": "MDQ6VGVhbTMwMTcyNDk=", + "slug": "gsoc", + "description": "Google Summer of Code coordinators", + "privacy": "closed", + "url": "https://api.github.com/teams/3017249", + "html_url": "https://github.com/orgs/jenkins-infra/teams/gsoc", + "members_url": "https://api.github.com/teams/3017249/members{/member}", + "repositories_url": "https://api.github.com/teams/3017249/repos", + "permission": "pull" + }, + { + "name": "monitoring", + "id": 3023638, + "node_id": "MDQ6VGVhbTMwMjM2Mzg=", + "slug": "monitoring", + "description": "Jenkins Infrastructure Monitoring", + "privacy": "closed", + "url": "https://api.github.com/teams/3023638", + "html_url": "https://github.com/orgs/jenkins-infra/teams/monitoring", + "members_url": "https://api.github.com/teams/3023638/members{/member}", + "repositories_url": "https://api.github.com/teams/3023638/repos", + "permission": "pull" + }, + { + "name": "java11-support", + "id": 3049682, + "node_id": "MDQ6VGVhbTMwNDk2ODI=", + "slug": "java11-support", + "description": "Java 11 Support Team (JEP-211)", + "privacy": "closed", + "url": "https://api.github.com/teams/3049682", + "html_url": "https://github.com/orgs/jenkins-infra/teams/java11-support", + "members_url": "https://api.github.com/teams/3049682/members{/member}", + "repositories_url": "https://api.github.com/teams/3049682/repos", + "permission": "pull" + }, + { + "name": "java11-support-reviewer", + "id": 3049687, + "node_id": "MDQ6VGVhbTMwNDk2ODc=", + "slug": "java11-support-reviewer", + "description": "This team represents every contributors with reviewers permissions", + "privacy": "closed", + "url": "https://api.github.com/teams/3049687", + "html_url": "https://github.com/orgs/jenkins-infra/teams/java11-support-reviewer", + "members_url": "https://api.github.com/teams/3049687/members{/member}", + "repositories_url": "https://api.github.com/teams/3049687/repos", + "permission": "pull" + }, + { + "name": "java11-support-maintainer", + "id": 3049911, + "node_id": "MDQ6VGVhbTMwNDk5MTE=", + "slug": "java11-support-maintainer", + "description": "This team represents every java11 contributors with write permissions", + "privacy": "closed", + "url": "https://api.github.com/teams/3049911", + "html_url": "https://github.com/orgs/jenkins-infra/teams/java11-support-maintainer", + "members_url": "https://api.github.com/teams/3049911/members{/member}", + "repositories_url": "https://api.github.com/teams/3049911/repos", + "permission": "pull" + }, + { + "name": "docker", + "id": 3434214, + "node_id": "MDQ6VGVhbTM0MzQyMTQ=", + "slug": "docker", + "description": "This team represents everybody interested to review jenkins infrastructure docker images ", + "privacy": "closed", + "url": "https://api.github.com/teams/3434214", + "html_url": "https://github.com/orgs/jenkins-infra/teams/docker", + "members_url": "https://api.github.com/teams/3434214/members{/member}", + "repositories_url": "https://api.github.com/teams/3434214/repos", + "permission": "pull" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkinsci-eac3f0df-0404-4c43-9864-bf3d6f249294.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkinsci-eac3f0df-0404-4c43-9864-bf3d6f249294.json new file mode 100644 index 0000000000..4ebe57eec6 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkinsci-eac3f0df-0404-4c43-9864-bf3d6f249294.json @@ -0,0 +1,46 @@ +{ + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "url": "https://api.github.com/orgs/jenkinsci", + "repos_url": "https://api.github.com/orgs/jenkinsci/repos", + "events_url": "https://api.github.com/orgs/jenkinsci/events", + "hooks_url": "https://api.github.com/orgs/jenkinsci/hooks", + "issues_url": "https://api.github.com/orgs/jenkinsci/issues", + "members_url": "https://api.github.com/orgs/jenkinsci/members{/member}", + "public_members_url": "https://api.github.com/orgs/jenkinsci/public_members{/member}", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "description": "Jenkins is an open source automation server with an unparalleled plugin ecosystem to support practically every tool as part of your delivery pipelines", + "name": "Jenkins", + "company": null, + "blog": "https://jenkins.io", + "location": "Santa Clara, CA", + "email": "jenkinsci-users@googlegroups.com", + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 2192, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/jenkinsci", + "created_at": "2009-07-21T21:03:50Z", + "updated_at": "2019-02-25T15:26:10Z", + "type": "Organization", + "total_private_repos": 0, + "owned_private_repos": 0, + "private_gists": null, + "disk_usage": null, + "collaborators": null, + "billing_email": null, + "default_repository_permission": null, + "members_can_create_repositories": false, + "two_factor_requirement_enabled": null, + "plan": { + "name": "free", + "space": 976562499, + "private_repos": 0, + "filled_seats": 2052, + "seats": 0 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkinsci_teams-0aaf0590-1a5b-4323-8dbc-8fc63b3c5775.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkinsci_teams-0aaf0590-1a5b-4323-8dbc-8fc63b3c5775.json new file mode 100644 index 0000000000..1d8d4c56aa --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkinsci_teams-0aaf0590-1a5b-4323-8dbc-8fc63b3c5775.json @@ -0,0 +1,392 @@ +[ + { + "name": "Core", + "id": 25280, + "node_id": "MDQ6VGVhbTI1Mjgw", + "slug": "core", + "description": "Group of Jenkins core contributors with Merge permissions", + "privacy": "closed", + "url": "https://api.github.com/teams/25280", + "html_url": "https://github.com/orgs/jenkinsci/teams/core", + "members_url": "https://api.github.com/teams/25280/members{/member}", + "repositories_url": "https://api.github.com/teams/25280/repos", + "permission": "pull" + }, + { + "name": "ghprb-plugin Developers", + "id": 239968, + "node_id": "MDQ6VGVhbTIzOTk2OA==", + "slug": "ghprb-plugin-developers", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/239968", + "html_url": "https://github.com/orgs/jenkinsci/teams/ghprb-plugin-developers", + "members_url": "https://api.github.com/teams/239968/members{/member}", + "repositories_url": "https://api.github.com/teams/239968/repos", + "permission": "pull" + }, + { + "name": "scm-api-plugin Developers", + "id": 496711, + "node_id": "MDQ6VGVhbTQ5NjcxMQ==", + "slug": "scm-api-plugin-developers", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/496711", + "html_url": "https://github.com/orgs/jenkinsci/teams/scm-api-plugin-developers", + "members_url": "https://api.github.com/teams/496711/members{/member}", + "repositories_url": "https://api.github.com/teams/496711/repos", + "permission": "pull" + }, + { + "name": "script-security-plugin Developers", + "id": 711073, + "node_id": "MDQ6VGVhbTcxMTA3Mw==", + "slug": "script-security-plugin-developers", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/711073", + "html_url": "https://github.com/orgs/jenkinsci/teams/script-security-plugin-developers", + "members_url": "https://api.github.com/teams/711073/members{/member}", + "repositories_url": "https://api.github.com/teams/711073/repos", + "permission": "pull" + }, + { + "name": "github-branch-source-plugin Developers", + "id": 1809126, + "node_id": "MDQ6VGVhbTE4MDkxMjY=", + "slug": "github-branch-source-plugin-developers", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/1809126", + "html_url": "https://github.com/orgs/jenkinsci/teams/github-branch-source-plugin-developers", + "members_url": "https://api.github.com/teams/1809126/members{/member}", + "repositories_url": "https://api.github.com/teams/1809126/repos", + "permission": "pull" + }, + { + "name": "Code Reviewers", + "id": 1885543, + "node_id": "MDQ6VGVhbTE4ODU1NDM=", + "slug": "code-reviewers", + "description": "Volunteers who review code in core or any plugin hosted in the jenkinsci organization when requested – used for notifications only, no associated repos.", + "privacy": "closed", + "url": "https://api.github.com/teams/1885543", + "html_url": "https://github.com/orgs/jenkinsci/teams/code-reviewers", + "members_url": "https://api.github.com/teams/1885543/members{/member}", + "repositories_url": "https://api.github.com/teams/1885543/repos", + "permission": "pull" + }, + { + "name": "Translators", + "id": 1900343, + "node_id": "MDQ6VGVhbTE5MDAzNDM=", + "slug": "translators", + "description": "Volunteers contributing to localization of Jenkins and plugins. Mention this team whever you add or change localizable resources.", + "privacy": "closed", + "url": "https://api.github.com/teams/1900343", + "html_url": "https://github.com/orgs/jenkinsci/teams/translators", + "members_url": "https://api.github.com/teams/1900343/members{/member}", + "repositories_url": "https://api.github.com/teams/1900343/repos", + "permission": "pull" + }, + { + "name": "one-shot-executor-plugin", + "id": 1946159, + "node_id": "MDQ6VGVhbTE5NDYxNTk=", + "slug": "one-shot-executor-plugin", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/1946159", + "html_url": "https://github.com/orgs/jenkinsci/teams/one-shot-executor-plugin", + "members_url": "https://api.github.com/teams/1946159/members{/member}", + "repositories_url": "https://api.github.com/teams/1946159/repos", + "permission": "pull" + }, + { + "name": "cloud-stats-plugin Developers", + "id": 1972502, + "node_id": "MDQ6VGVhbTE5NzI1MDI=", + "slug": "cloud-stats-plugin-developers", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/1972502", + "html_url": "https://github.com/orgs/jenkinsci/teams/cloud-stats-plugin-developers", + "members_url": "https://api.github.com/teams/1972502/members{/member}", + "repositories_url": "https://api.github.com/teams/1972502/repos", + "permission": "pull" + }, + { + "name": "workflow-step-api-plugin Developers", + "id": 1986665, + "node_id": "MDQ6VGVhbTE5ODY2NjU=", + "slug": "workflow-step-api-plugin-developers", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/1986665", + "html_url": "https://github.com/orgs/jenkinsci/teams/workflow-step-api-plugin-developers", + "members_url": "https://api.github.com/teams/1986665/members{/member}", + "repositories_url": "https://api.github.com/teams/1986665/repos", + "permission": "pull" + }, + { + "name": "workflow-cps-plugin Developers", + "id": 1986920, + "node_id": "MDQ6VGVhbTE5ODY5MjA=", + "slug": "workflow-cps-plugin-developers", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/1986920", + "html_url": "https://github.com/orgs/jenkinsci/teams/workflow-cps-plugin-developers", + "members_url": "https://api.github.com/teams/1986920/members{/member}", + "repositories_url": "https://api.github.com/teams/1986920/repos", + "permission": "pull" + }, + { + "name": "GSoC 2016 Org Admins", + "id": 2030027, + "node_id": "MDQ6VGVhbTIwMzAwMjc=", + "slug": "gsoc-2016-org-admins", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2030027", + "html_url": "https://github.com/orgs/jenkinsci/teams/gsoc-2016-org-admins", + "members_url": "https://api.github.com/teams/2030027/members{/member}", + "repositories_url": "https://api.github.com/teams/2030027/repos", + "permission": "pull" + }, + { + "name": "board", + "id": 2063624, + "node_id": "MDQ6VGVhbTIwNjM2MjQ=", + "slug": "board", + "description": "Jenkins governance board", + "privacy": "closed", + "url": "https://api.github.com/teams/2063624", + "html_url": "https://github.com/orgs/jenkinsci/teams/board", + "members_url": "https://api.github.com/teams/2063624/members{/member}", + "repositories_url": "https://api.github.com/teams/2063624/repos", + "permission": "pull" + }, + { + "name": "docker", + "id": 2097811, + "node_id": "MDQ6VGVhbTIwOTc4MTE=", + "slug": "docker", + "description": "Official Docker image maintainers", + "privacy": "closed", + "url": "https://api.github.com/teams/2097811", + "html_url": "https://github.com/orgs/jenkinsci/teams/docker", + "members_url": "https://api.github.com/teams/2097811/members{/member}", + "repositories_url": "https://api.github.com/teams/2097811/repos", + "permission": "pull" + }, + { + "name": "pipeline-model-definition-plugin Developers", + "id": 2185547, + "node_id": "MDQ6VGVhbTIxODU1NDc=", + "slug": "pipeline-model-definition-plugin-developers", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/2185547", + "html_url": "https://github.com/orgs/jenkinsci/teams/pipeline-model-definition-plugin-developers", + "members_url": "https://api.github.com/teams/2185547/members{/member}", + "repositories_url": "https://api.github.com/teams/2185547/repos", + "permission": "pull" + }, + { + "name": "zanata plugin", + "id": 2250908, + "node_id": "MDQ6VGVhbTIyNTA5MDg=", + "slug": "zanata-plugin", + "description": "zanata.org", + "privacy": "closed", + "url": "https://api.github.com/teams/2250908", + "html_url": "https://github.com/orgs/jenkinsci/teams/zanata-plugin", + "members_url": "https://api.github.com/teams/2250908/members{/member}", + "repositories_url": "https://api.github.com/teams/2250908/repos", + "permission": "pull" + }, + { + "name": "docker-packaging-team", + "id": 2277925, + "node_id": "MDQ6VGVhbTIyNzc5MjU=", + "slug": "docker-packaging-team", + "description": "Docker Packaging Team", + "privacy": "closed", + "url": "https://api.github.com/teams/2277925", + "html_url": "https://github.com/orgs/jenkinsci/teams/docker-packaging-team", + "members_url": "https://api.github.com/teams/2277925/members{/member}", + "repositories_url": "https://api.github.com/teams/2277925/repos", + "permission": "pull" + }, + { + "name": "declarative-rfc-reviewers", + "id": 2300722, + "node_id": "MDQ6VGVhbTIzMDA3MjI=", + "slug": "declarative-rfc-reviewers", + "description": "Declarative RFC Reviewers", + "privacy": "closed", + "url": "https://api.github.com/teams/2300722", + "html_url": "https://github.com/orgs/jenkinsci/teams/declarative-rfc-reviewers", + "members_url": "https://api.github.com/teams/2300722/members{/member}", + "repositories_url": "https://api.github.com/teams/2300722/repos", + "permission": "pull" + }, + { + "name": "Connectors", + "id": 2449807, + "node_id": "MDQ6VGVhbTI0NDk4MDc=", + "slug": "connectors", + "description": "The team to look into office 365 connector", + "privacy": "closed", + "url": "https://api.github.com/teams/2449807", + "html_url": "https://github.com/orgs/jenkinsci/teams/connectors", + "members_url": "https://api.github.com/teams/2449807/members{/member}", + "repositories_url": "https://api.github.com/teams/2449807/repos", + "permission": "pull" + }, + { + "name": "sentry-plugin-team Developers", + "id": 2465032, + "node_id": "MDQ6VGVhbTI0NjUwMzI=", + "slug": "sentry-plugin-team-developers", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2465032", + "html_url": "https://github.com/orgs/jenkinsci/teams/sentry-plugin-team-developers", + "members_url": "https://api.github.com/teams/2465032/members{/member}", + "repositories_url": "https://api.github.com/teams/2465032/repos", + "permission": "pull" + }, + { + "name": "JEP Editors", + "id": 2478842, + "node_id": "MDQ6VGVhbTI0Nzg4NDI=", + "slug": "jep-editors", + "description": "Editors for Jenkins Enhancement Proposals", + "privacy": "closed", + "url": "https://api.github.com/teams/2478842", + "html_url": "https://github.com/orgs/jenkinsci/teams/jep-editors", + "members_url": "https://api.github.com/teams/2478842/members{/member}", + "repositories_url": "https://api.github.com/teams/2478842/repos", + "permission": "pull" + }, + { + "name": "compuware-common-configuration-plugin Developers", + "id": 2491391, + "node_id": "MDQ6VGVhbTI0OTEzOTE=", + "slug": "compuware-common-configuration-plugin-developers", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2491391", + "html_url": "https://github.com/orgs/jenkinsci/teams/compuware-common-configuration-plugin-developers", + "members_url": "https://api.github.com/teams/2491391/members{/member}", + "repositories_url": "https://api.github.com/teams/2491391/repos", + "permission": "pull" + }, + { + "name": "pipeline-unit Developers", + "id": 2507119, + "node_id": "MDQ6VGVhbTI1MDcxMTk=", + "slug": "pipeline-unit-developers", + "description": "Pipeline Unit Developers", + "privacy": "closed", + "url": "https://api.github.com/teams/2507119", + "html_url": "https://github.com/orgs/jenkinsci/teams/pipeline-unit-developers", + "members_url": "https://api.github.com/teams/2507119/members{/member}", + "repositories_url": "https://api.github.com/teams/2507119/repos", + "permission": "pull" + }, + { + "name": "hacktoberfest", + "id": 2509105, + "node_id": "MDQ6VGVhbTI1MDkxMDU=", + "slug": "hacktoberfest", + "description": "Hacktoberfest Support Team (ping for code reviews, etc.)", + "privacy": "closed", + "url": "https://api.github.com/teams/2509105", + "html_url": "https://github.com/orgs/jenkinsci/teams/hacktoberfest", + "members_url": "https://api.github.com/teams/2509105/members{/member}", + "repositories_url": "https://api.github.com/teams/2509105/repos", + "permission": "pull" + }, + { + "name": "elastest-plugin ci", + "id": 2643393, + "node_id": "MDQ6VGVhbTI2NDMzOTM=", + "slug": "elastest-plugin-ci", + "description": "Team for the user elastestci.", + "privacy": "closed", + "url": "https://api.github.com/teams/2643393", + "html_url": "https://github.com/orgs/jenkinsci/teams/elastest-plugin-ci", + "members_url": "https://api.github.com/teams/2643393/members{/member}", + "repositories_url": "https://api.github.com/teams/2643393/repos", + "permission": "pull" + }, + { + "name": "ISPW Operations Plugin Team", + "id": 2679176, + "node_id": "MDQ6VGVhbTI2NzkxNzY=", + "slug": "ispw-operations-plugin-team", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2679176", + "html_url": "https://github.com/orgs/jenkinsci/teams/ispw-operations-plugin-team", + "members_url": "https://api.github.com/teams/2679176/members{/member}", + "repositories_url": "https://api.github.com/teams/2679176/repos", + "permission": "pull" + }, + { + "name": "git-changelog-plugin contributors", + "id": 2733849, + "node_id": "MDQ6VGVhbTI3MzM4NDk=", + "slug": "git-changelog-plugin-contributors", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2733849", + "html_url": "https://github.com/orgs/jenkinsci/teams/git-changelog-plugin-contributors", + "members_url": "https://api.github.com/teams/2733849/members{/member}", + "repositories_url": "https://api.github.com/teams/2733849/repos", + "permission": "pull" + }, + { + "name": "fireline-dev", + "id": 2776183, + "node_id": "MDQ6VGVhbTI3NzYxODM=", + "slug": "fireline-dev", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2776183", + "html_url": "https://github.com/orgs/jenkinsci/teams/fireline-dev", + "members_url": "https://api.github.com/teams/2776183/members{/member}", + "repositories_url": "https://api.github.com/teams/2776183/repos", + "permission": "pull" + }, + { + "name": "fireline-plugin-jenkins-team", + "id": 2777910, + "node_id": "MDQ6VGVhbTI3Nzc5MTA=", + "slug": "fireline-plugin-jenkins-team", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2777910", + "html_url": "https://github.com/orgs/jenkinsci/teams/fireline-plugin-jenkins-team", + "members_url": "https://api.github.com/teams/2777910/members{/member}", + "repositories_url": "https://api.github.com/teams/2777910/repos", + "permission": "pull" + }, + { + "name": "SIG Platform", + "id": 2796281, + "node_id": "MDQ6VGVhbTI3OTYyODE=", + "slug": "sig-platform", + "description": "Platform SIG: Java 11 support, OS support and packaging", + "privacy": "closed", + "url": "https://api.github.com/teams/2796281", + "html_url": "https://github.com/orgs/jenkinsci/teams/sig-platform", + "members_url": "https://api.github.com/teams/2796281/members{/member}", + "repositories_url": "https://api.github.com/teams/2796281/repos", + "permission": "pull" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkinsci_teams-2832b4d6-9274-4137-9421-4855660803ec.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkinsci_teams-2832b4d6-9274-4137-9421-4855660803ec.json new file mode 100644 index 0000000000..1d8d4c56aa --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkinsci_teams-2832b4d6-9274-4137-9421-4855660803ec.json @@ -0,0 +1,392 @@ +[ + { + "name": "Core", + "id": 25280, + "node_id": "MDQ6VGVhbTI1Mjgw", + "slug": "core", + "description": "Group of Jenkins core contributors with Merge permissions", + "privacy": "closed", + "url": "https://api.github.com/teams/25280", + "html_url": "https://github.com/orgs/jenkinsci/teams/core", + "members_url": "https://api.github.com/teams/25280/members{/member}", + "repositories_url": "https://api.github.com/teams/25280/repos", + "permission": "pull" + }, + { + "name": "ghprb-plugin Developers", + "id": 239968, + "node_id": "MDQ6VGVhbTIzOTk2OA==", + "slug": "ghprb-plugin-developers", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/239968", + "html_url": "https://github.com/orgs/jenkinsci/teams/ghprb-plugin-developers", + "members_url": "https://api.github.com/teams/239968/members{/member}", + "repositories_url": "https://api.github.com/teams/239968/repos", + "permission": "pull" + }, + { + "name": "scm-api-plugin Developers", + "id": 496711, + "node_id": "MDQ6VGVhbTQ5NjcxMQ==", + "slug": "scm-api-plugin-developers", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/496711", + "html_url": "https://github.com/orgs/jenkinsci/teams/scm-api-plugin-developers", + "members_url": "https://api.github.com/teams/496711/members{/member}", + "repositories_url": "https://api.github.com/teams/496711/repos", + "permission": "pull" + }, + { + "name": "script-security-plugin Developers", + "id": 711073, + "node_id": "MDQ6VGVhbTcxMTA3Mw==", + "slug": "script-security-plugin-developers", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/711073", + "html_url": "https://github.com/orgs/jenkinsci/teams/script-security-plugin-developers", + "members_url": "https://api.github.com/teams/711073/members{/member}", + "repositories_url": "https://api.github.com/teams/711073/repos", + "permission": "pull" + }, + { + "name": "github-branch-source-plugin Developers", + "id": 1809126, + "node_id": "MDQ6VGVhbTE4MDkxMjY=", + "slug": "github-branch-source-plugin-developers", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/1809126", + "html_url": "https://github.com/orgs/jenkinsci/teams/github-branch-source-plugin-developers", + "members_url": "https://api.github.com/teams/1809126/members{/member}", + "repositories_url": "https://api.github.com/teams/1809126/repos", + "permission": "pull" + }, + { + "name": "Code Reviewers", + "id": 1885543, + "node_id": "MDQ6VGVhbTE4ODU1NDM=", + "slug": "code-reviewers", + "description": "Volunteers who review code in core or any plugin hosted in the jenkinsci organization when requested – used for notifications only, no associated repos.", + "privacy": "closed", + "url": "https://api.github.com/teams/1885543", + "html_url": "https://github.com/orgs/jenkinsci/teams/code-reviewers", + "members_url": "https://api.github.com/teams/1885543/members{/member}", + "repositories_url": "https://api.github.com/teams/1885543/repos", + "permission": "pull" + }, + { + "name": "Translators", + "id": 1900343, + "node_id": "MDQ6VGVhbTE5MDAzNDM=", + "slug": "translators", + "description": "Volunteers contributing to localization of Jenkins and plugins. Mention this team whever you add or change localizable resources.", + "privacy": "closed", + "url": "https://api.github.com/teams/1900343", + "html_url": "https://github.com/orgs/jenkinsci/teams/translators", + "members_url": "https://api.github.com/teams/1900343/members{/member}", + "repositories_url": "https://api.github.com/teams/1900343/repos", + "permission": "pull" + }, + { + "name": "one-shot-executor-plugin", + "id": 1946159, + "node_id": "MDQ6VGVhbTE5NDYxNTk=", + "slug": "one-shot-executor-plugin", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/1946159", + "html_url": "https://github.com/orgs/jenkinsci/teams/one-shot-executor-plugin", + "members_url": "https://api.github.com/teams/1946159/members{/member}", + "repositories_url": "https://api.github.com/teams/1946159/repos", + "permission": "pull" + }, + { + "name": "cloud-stats-plugin Developers", + "id": 1972502, + "node_id": "MDQ6VGVhbTE5NzI1MDI=", + "slug": "cloud-stats-plugin-developers", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/1972502", + "html_url": "https://github.com/orgs/jenkinsci/teams/cloud-stats-plugin-developers", + "members_url": "https://api.github.com/teams/1972502/members{/member}", + "repositories_url": "https://api.github.com/teams/1972502/repos", + "permission": "pull" + }, + { + "name": "workflow-step-api-plugin Developers", + "id": 1986665, + "node_id": "MDQ6VGVhbTE5ODY2NjU=", + "slug": "workflow-step-api-plugin-developers", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/1986665", + "html_url": "https://github.com/orgs/jenkinsci/teams/workflow-step-api-plugin-developers", + "members_url": "https://api.github.com/teams/1986665/members{/member}", + "repositories_url": "https://api.github.com/teams/1986665/repos", + "permission": "pull" + }, + { + "name": "workflow-cps-plugin Developers", + "id": 1986920, + "node_id": "MDQ6VGVhbTE5ODY5MjA=", + "slug": "workflow-cps-plugin-developers", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/1986920", + "html_url": "https://github.com/orgs/jenkinsci/teams/workflow-cps-plugin-developers", + "members_url": "https://api.github.com/teams/1986920/members{/member}", + "repositories_url": "https://api.github.com/teams/1986920/repos", + "permission": "pull" + }, + { + "name": "GSoC 2016 Org Admins", + "id": 2030027, + "node_id": "MDQ6VGVhbTIwMzAwMjc=", + "slug": "gsoc-2016-org-admins", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2030027", + "html_url": "https://github.com/orgs/jenkinsci/teams/gsoc-2016-org-admins", + "members_url": "https://api.github.com/teams/2030027/members{/member}", + "repositories_url": "https://api.github.com/teams/2030027/repos", + "permission": "pull" + }, + { + "name": "board", + "id": 2063624, + "node_id": "MDQ6VGVhbTIwNjM2MjQ=", + "slug": "board", + "description": "Jenkins governance board", + "privacy": "closed", + "url": "https://api.github.com/teams/2063624", + "html_url": "https://github.com/orgs/jenkinsci/teams/board", + "members_url": "https://api.github.com/teams/2063624/members{/member}", + "repositories_url": "https://api.github.com/teams/2063624/repos", + "permission": "pull" + }, + { + "name": "docker", + "id": 2097811, + "node_id": "MDQ6VGVhbTIwOTc4MTE=", + "slug": "docker", + "description": "Official Docker image maintainers", + "privacy": "closed", + "url": "https://api.github.com/teams/2097811", + "html_url": "https://github.com/orgs/jenkinsci/teams/docker", + "members_url": "https://api.github.com/teams/2097811/members{/member}", + "repositories_url": "https://api.github.com/teams/2097811/repos", + "permission": "pull" + }, + { + "name": "pipeline-model-definition-plugin Developers", + "id": 2185547, + "node_id": "MDQ6VGVhbTIxODU1NDc=", + "slug": "pipeline-model-definition-plugin-developers", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/2185547", + "html_url": "https://github.com/orgs/jenkinsci/teams/pipeline-model-definition-plugin-developers", + "members_url": "https://api.github.com/teams/2185547/members{/member}", + "repositories_url": "https://api.github.com/teams/2185547/repos", + "permission": "pull" + }, + { + "name": "zanata plugin", + "id": 2250908, + "node_id": "MDQ6VGVhbTIyNTA5MDg=", + "slug": "zanata-plugin", + "description": "zanata.org", + "privacy": "closed", + "url": "https://api.github.com/teams/2250908", + "html_url": "https://github.com/orgs/jenkinsci/teams/zanata-plugin", + "members_url": "https://api.github.com/teams/2250908/members{/member}", + "repositories_url": "https://api.github.com/teams/2250908/repos", + "permission": "pull" + }, + { + "name": "docker-packaging-team", + "id": 2277925, + "node_id": "MDQ6VGVhbTIyNzc5MjU=", + "slug": "docker-packaging-team", + "description": "Docker Packaging Team", + "privacy": "closed", + "url": "https://api.github.com/teams/2277925", + "html_url": "https://github.com/orgs/jenkinsci/teams/docker-packaging-team", + "members_url": "https://api.github.com/teams/2277925/members{/member}", + "repositories_url": "https://api.github.com/teams/2277925/repos", + "permission": "pull" + }, + { + "name": "declarative-rfc-reviewers", + "id": 2300722, + "node_id": "MDQ6VGVhbTIzMDA3MjI=", + "slug": "declarative-rfc-reviewers", + "description": "Declarative RFC Reviewers", + "privacy": "closed", + "url": "https://api.github.com/teams/2300722", + "html_url": "https://github.com/orgs/jenkinsci/teams/declarative-rfc-reviewers", + "members_url": "https://api.github.com/teams/2300722/members{/member}", + "repositories_url": "https://api.github.com/teams/2300722/repos", + "permission": "pull" + }, + { + "name": "Connectors", + "id": 2449807, + "node_id": "MDQ6VGVhbTI0NDk4MDc=", + "slug": "connectors", + "description": "The team to look into office 365 connector", + "privacy": "closed", + "url": "https://api.github.com/teams/2449807", + "html_url": "https://github.com/orgs/jenkinsci/teams/connectors", + "members_url": "https://api.github.com/teams/2449807/members{/member}", + "repositories_url": "https://api.github.com/teams/2449807/repos", + "permission": "pull" + }, + { + "name": "sentry-plugin-team Developers", + "id": 2465032, + "node_id": "MDQ6VGVhbTI0NjUwMzI=", + "slug": "sentry-plugin-team-developers", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2465032", + "html_url": "https://github.com/orgs/jenkinsci/teams/sentry-plugin-team-developers", + "members_url": "https://api.github.com/teams/2465032/members{/member}", + "repositories_url": "https://api.github.com/teams/2465032/repos", + "permission": "pull" + }, + { + "name": "JEP Editors", + "id": 2478842, + "node_id": "MDQ6VGVhbTI0Nzg4NDI=", + "slug": "jep-editors", + "description": "Editors for Jenkins Enhancement Proposals", + "privacy": "closed", + "url": "https://api.github.com/teams/2478842", + "html_url": "https://github.com/orgs/jenkinsci/teams/jep-editors", + "members_url": "https://api.github.com/teams/2478842/members{/member}", + "repositories_url": "https://api.github.com/teams/2478842/repos", + "permission": "pull" + }, + { + "name": "compuware-common-configuration-plugin Developers", + "id": 2491391, + "node_id": "MDQ6VGVhbTI0OTEzOTE=", + "slug": "compuware-common-configuration-plugin-developers", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2491391", + "html_url": "https://github.com/orgs/jenkinsci/teams/compuware-common-configuration-plugin-developers", + "members_url": "https://api.github.com/teams/2491391/members{/member}", + "repositories_url": "https://api.github.com/teams/2491391/repos", + "permission": "pull" + }, + { + "name": "pipeline-unit Developers", + "id": 2507119, + "node_id": "MDQ6VGVhbTI1MDcxMTk=", + "slug": "pipeline-unit-developers", + "description": "Pipeline Unit Developers", + "privacy": "closed", + "url": "https://api.github.com/teams/2507119", + "html_url": "https://github.com/orgs/jenkinsci/teams/pipeline-unit-developers", + "members_url": "https://api.github.com/teams/2507119/members{/member}", + "repositories_url": "https://api.github.com/teams/2507119/repos", + "permission": "pull" + }, + { + "name": "hacktoberfest", + "id": 2509105, + "node_id": "MDQ6VGVhbTI1MDkxMDU=", + "slug": "hacktoberfest", + "description": "Hacktoberfest Support Team (ping for code reviews, etc.)", + "privacy": "closed", + "url": "https://api.github.com/teams/2509105", + "html_url": "https://github.com/orgs/jenkinsci/teams/hacktoberfest", + "members_url": "https://api.github.com/teams/2509105/members{/member}", + "repositories_url": "https://api.github.com/teams/2509105/repos", + "permission": "pull" + }, + { + "name": "elastest-plugin ci", + "id": 2643393, + "node_id": "MDQ6VGVhbTI2NDMzOTM=", + "slug": "elastest-plugin-ci", + "description": "Team for the user elastestci.", + "privacy": "closed", + "url": "https://api.github.com/teams/2643393", + "html_url": "https://github.com/orgs/jenkinsci/teams/elastest-plugin-ci", + "members_url": "https://api.github.com/teams/2643393/members{/member}", + "repositories_url": "https://api.github.com/teams/2643393/repos", + "permission": "pull" + }, + { + "name": "ISPW Operations Plugin Team", + "id": 2679176, + "node_id": "MDQ6VGVhbTI2NzkxNzY=", + "slug": "ispw-operations-plugin-team", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2679176", + "html_url": "https://github.com/orgs/jenkinsci/teams/ispw-operations-plugin-team", + "members_url": "https://api.github.com/teams/2679176/members{/member}", + "repositories_url": "https://api.github.com/teams/2679176/repos", + "permission": "pull" + }, + { + "name": "git-changelog-plugin contributors", + "id": 2733849, + "node_id": "MDQ6VGVhbTI3MzM4NDk=", + "slug": "git-changelog-plugin-contributors", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2733849", + "html_url": "https://github.com/orgs/jenkinsci/teams/git-changelog-plugin-contributors", + "members_url": "https://api.github.com/teams/2733849/members{/member}", + "repositories_url": "https://api.github.com/teams/2733849/repos", + "permission": "pull" + }, + { + "name": "fireline-dev", + "id": 2776183, + "node_id": "MDQ6VGVhbTI3NzYxODM=", + "slug": "fireline-dev", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2776183", + "html_url": "https://github.com/orgs/jenkinsci/teams/fireline-dev", + "members_url": "https://api.github.com/teams/2776183/members{/member}", + "repositories_url": "https://api.github.com/teams/2776183/repos", + "permission": "pull" + }, + { + "name": "fireline-plugin-jenkins-team", + "id": 2777910, + "node_id": "MDQ6VGVhbTI3Nzc5MTA=", + "slug": "fireline-plugin-jenkins-team", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2777910", + "html_url": "https://github.com/orgs/jenkinsci/teams/fireline-plugin-jenkins-team", + "members_url": "https://api.github.com/teams/2777910/members{/member}", + "repositories_url": "https://api.github.com/teams/2777910/repos", + "permission": "pull" + }, + { + "name": "SIG Platform", + "id": 2796281, + "node_id": "MDQ6VGVhbTI3OTYyODE=", + "slug": "sig-platform", + "description": "Platform SIG: Java 11 support, OS support and packaging", + "privacy": "closed", + "url": "https://api.github.com/teams/2796281", + "html_url": "https://github.com/orgs/jenkinsci/teams/sig-platform", + "members_url": "https://api.github.com/teams/2796281/members{/member}", + "repositories_url": "https://api.github.com/teams/2796281/repos", + "permission": "pull" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkinsci_teams-421fa98d-71d5-4c1c-a6cb-4f7f301668c7.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkinsci_teams-421fa98d-71d5-4c1c-a6cb-4f7f301668c7.json new file mode 100644 index 0000000000..1d8d4c56aa --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkinsci_teams-421fa98d-71d5-4c1c-a6cb-4f7f301668c7.json @@ -0,0 +1,392 @@ +[ + { + "name": "Core", + "id": 25280, + "node_id": "MDQ6VGVhbTI1Mjgw", + "slug": "core", + "description": "Group of Jenkins core contributors with Merge permissions", + "privacy": "closed", + "url": "https://api.github.com/teams/25280", + "html_url": "https://github.com/orgs/jenkinsci/teams/core", + "members_url": "https://api.github.com/teams/25280/members{/member}", + "repositories_url": "https://api.github.com/teams/25280/repos", + "permission": "pull" + }, + { + "name": "ghprb-plugin Developers", + "id": 239968, + "node_id": "MDQ6VGVhbTIzOTk2OA==", + "slug": "ghprb-plugin-developers", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/239968", + "html_url": "https://github.com/orgs/jenkinsci/teams/ghprb-plugin-developers", + "members_url": "https://api.github.com/teams/239968/members{/member}", + "repositories_url": "https://api.github.com/teams/239968/repos", + "permission": "pull" + }, + { + "name": "scm-api-plugin Developers", + "id": 496711, + "node_id": "MDQ6VGVhbTQ5NjcxMQ==", + "slug": "scm-api-plugin-developers", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/496711", + "html_url": "https://github.com/orgs/jenkinsci/teams/scm-api-plugin-developers", + "members_url": "https://api.github.com/teams/496711/members{/member}", + "repositories_url": "https://api.github.com/teams/496711/repos", + "permission": "pull" + }, + { + "name": "script-security-plugin Developers", + "id": 711073, + "node_id": "MDQ6VGVhbTcxMTA3Mw==", + "slug": "script-security-plugin-developers", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/711073", + "html_url": "https://github.com/orgs/jenkinsci/teams/script-security-plugin-developers", + "members_url": "https://api.github.com/teams/711073/members{/member}", + "repositories_url": "https://api.github.com/teams/711073/repos", + "permission": "pull" + }, + { + "name": "github-branch-source-plugin Developers", + "id": 1809126, + "node_id": "MDQ6VGVhbTE4MDkxMjY=", + "slug": "github-branch-source-plugin-developers", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/1809126", + "html_url": "https://github.com/orgs/jenkinsci/teams/github-branch-source-plugin-developers", + "members_url": "https://api.github.com/teams/1809126/members{/member}", + "repositories_url": "https://api.github.com/teams/1809126/repos", + "permission": "pull" + }, + { + "name": "Code Reviewers", + "id": 1885543, + "node_id": "MDQ6VGVhbTE4ODU1NDM=", + "slug": "code-reviewers", + "description": "Volunteers who review code in core or any plugin hosted in the jenkinsci organization when requested – used for notifications only, no associated repos.", + "privacy": "closed", + "url": "https://api.github.com/teams/1885543", + "html_url": "https://github.com/orgs/jenkinsci/teams/code-reviewers", + "members_url": "https://api.github.com/teams/1885543/members{/member}", + "repositories_url": "https://api.github.com/teams/1885543/repos", + "permission": "pull" + }, + { + "name": "Translators", + "id": 1900343, + "node_id": "MDQ6VGVhbTE5MDAzNDM=", + "slug": "translators", + "description": "Volunteers contributing to localization of Jenkins and plugins. Mention this team whever you add or change localizable resources.", + "privacy": "closed", + "url": "https://api.github.com/teams/1900343", + "html_url": "https://github.com/orgs/jenkinsci/teams/translators", + "members_url": "https://api.github.com/teams/1900343/members{/member}", + "repositories_url": "https://api.github.com/teams/1900343/repos", + "permission": "pull" + }, + { + "name": "one-shot-executor-plugin", + "id": 1946159, + "node_id": "MDQ6VGVhbTE5NDYxNTk=", + "slug": "one-shot-executor-plugin", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/1946159", + "html_url": "https://github.com/orgs/jenkinsci/teams/one-shot-executor-plugin", + "members_url": "https://api.github.com/teams/1946159/members{/member}", + "repositories_url": "https://api.github.com/teams/1946159/repos", + "permission": "pull" + }, + { + "name": "cloud-stats-plugin Developers", + "id": 1972502, + "node_id": "MDQ6VGVhbTE5NzI1MDI=", + "slug": "cloud-stats-plugin-developers", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/1972502", + "html_url": "https://github.com/orgs/jenkinsci/teams/cloud-stats-plugin-developers", + "members_url": "https://api.github.com/teams/1972502/members{/member}", + "repositories_url": "https://api.github.com/teams/1972502/repos", + "permission": "pull" + }, + { + "name": "workflow-step-api-plugin Developers", + "id": 1986665, + "node_id": "MDQ6VGVhbTE5ODY2NjU=", + "slug": "workflow-step-api-plugin-developers", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/1986665", + "html_url": "https://github.com/orgs/jenkinsci/teams/workflow-step-api-plugin-developers", + "members_url": "https://api.github.com/teams/1986665/members{/member}", + "repositories_url": "https://api.github.com/teams/1986665/repos", + "permission": "pull" + }, + { + "name": "workflow-cps-plugin Developers", + "id": 1986920, + "node_id": "MDQ6VGVhbTE5ODY5MjA=", + "slug": "workflow-cps-plugin-developers", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/1986920", + "html_url": "https://github.com/orgs/jenkinsci/teams/workflow-cps-plugin-developers", + "members_url": "https://api.github.com/teams/1986920/members{/member}", + "repositories_url": "https://api.github.com/teams/1986920/repos", + "permission": "pull" + }, + { + "name": "GSoC 2016 Org Admins", + "id": 2030027, + "node_id": "MDQ6VGVhbTIwMzAwMjc=", + "slug": "gsoc-2016-org-admins", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2030027", + "html_url": "https://github.com/orgs/jenkinsci/teams/gsoc-2016-org-admins", + "members_url": "https://api.github.com/teams/2030027/members{/member}", + "repositories_url": "https://api.github.com/teams/2030027/repos", + "permission": "pull" + }, + { + "name": "board", + "id": 2063624, + "node_id": "MDQ6VGVhbTIwNjM2MjQ=", + "slug": "board", + "description": "Jenkins governance board", + "privacy": "closed", + "url": "https://api.github.com/teams/2063624", + "html_url": "https://github.com/orgs/jenkinsci/teams/board", + "members_url": "https://api.github.com/teams/2063624/members{/member}", + "repositories_url": "https://api.github.com/teams/2063624/repos", + "permission": "pull" + }, + { + "name": "docker", + "id": 2097811, + "node_id": "MDQ6VGVhbTIwOTc4MTE=", + "slug": "docker", + "description": "Official Docker image maintainers", + "privacy": "closed", + "url": "https://api.github.com/teams/2097811", + "html_url": "https://github.com/orgs/jenkinsci/teams/docker", + "members_url": "https://api.github.com/teams/2097811/members{/member}", + "repositories_url": "https://api.github.com/teams/2097811/repos", + "permission": "pull" + }, + { + "name": "pipeline-model-definition-plugin Developers", + "id": 2185547, + "node_id": "MDQ6VGVhbTIxODU1NDc=", + "slug": "pipeline-model-definition-plugin-developers", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/2185547", + "html_url": "https://github.com/orgs/jenkinsci/teams/pipeline-model-definition-plugin-developers", + "members_url": "https://api.github.com/teams/2185547/members{/member}", + "repositories_url": "https://api.github.com/teams/2185547/repos", + "permission": "pull" + }, + { + "name": "zanata plugin", + "id": 2250908, + "node_id": "MDQ6VGVhbTIyNTA5MDg=", + "slug": "zanata-plugin", + "description": "zanata.org", + "privacy": "closed", + "url": "https://api.github.com/teams/2250908", + "html_url": "https://github.com/orgs/jenkinsci/teams/zanata-plugin", + "members_url": "https://api.github.com/teams/2250908/members{/member}", + "repositories_url": "https://api.github.com/teams/2250908/repos", + "permission": "pull" + }, + { + "name": "docker-packaging-team", + "id": 2277925, + "node_id": "MDQ6VGVhbTIyNzc5MjU=", + "slug": "docker-packaging-team", + "description": "Docker Packaging Team", + "privacy": "closed", + "url": "https://api.github.com/teams/2277925", + "html_url": "https://github.com/orgs/jenkinsci/teams/docker-packaging-team", + "members_url": "https://api.github.com/teams/2277925/members{/member}", + "repositories_url": "https://api.github.com/teams/2277925/repos", + "permission": "pull" + }, + { + "name": "declarative-rfc-reviewers", + "id": 2300722, + "node_id": "MDQ6VGVhbTIzMDA3MjI=", + "slug": "declarative-rfc-reviewers", + "description": "Declarative RFC Reviewers", + "privacy": "closed", + "url": "https://api.github.com/teams/2300722", + "html_url": "https://github.com/orgs/jenkinsci/teams/declarative-rfc-reviewers", + "members_url": "https://api.github.com/teams/2300722/members{/member}", + "repositories_url": "https://api.github.com/teams/2300722/repos", + "permission": "pull" + }, + { + "name": "Connectors", + "id": 2449807, + "node_id": "MDQ6VGVhbTI0NDk4MDc=", + "slug": "connectors", + "description": "The team to look into office 365 connector", + "privacy": "closed", + "url": "https://api.github.com/teams/2449807", + "html_url": "https://github.com/orgs/jenkinsci/teams/connectors", + "members_url": "https://api.github.com/teams/2449807/members{/member}", + "repositories_url": "https://api.github.com/teams/2449807/repos", + "permission": "pull" + }, + { + "name": "sentry-plugin-team Developers", + "id": 2465032, + "node_id": "MDQ6VGVhbTI0NjUwMzI=", + "slug": "sentry-plugin-team-developers", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2465032", + "html_url": "https://github.com/orgs/jenkinsci/teams/sentry-plugin-team-developers", + "members_url": "https://api.github.com/teams/2465032/members{/member}", + "repositories_url": "https://api.github.com/teams/2465032/repos", + "permission": "pull" + }, + { + "name": "JEP Editors", + "id": 2478842, + "node_id": "MDQ6VGVhbTI0Nzg4NDI=", + "slug": "jep-editors", + "description": "Editors for Jenkins Enhancement Proposals", + "privacy": "closed", + "url": "https://api.github.com/teams/2478842", + "html_url": "https://github.com/orgs/jenkinsci/teams/jep-editors", + "members_url": "https://api.github.com/teams/2478842/members{/member}", + "repositories_url": "https://api.github.com/teams/2478842/repos", + "permission": "pull" + }, + { + "name": "compuware-common-configuration-plugin Developers", + "id": 2491391, + "node_id": "MDQ6VGVhbTI0OTEzOTE=", + "slug": "compuware-common-configuration-plugin-developers", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2491391", + "html_url": "https://github.com/orgs/jenkinsci/teams/compuware-common-configuration-plugin-developers", + "members_url": "https://api.github.com/teams/2491391/members{/member}", + "repositories_url": "https://api.github.com/teams/2491391/repos", + "permission": "pull" + }, + { + "name": "pipeline-unit Developers", + "id": 2507119, + "node_id": "MDQ6VGVhbTI1MDcxMTk=", + "slug": "pipeline-unit-developers", + "description": "Pipeline Unit Developers", + "privacy": "closed", + "url": "https://api.github.com/teams/2507119", + "html_url": "https://github.com/orgs/jenkinsci/teams/pipeline-unit-developers", + "members_url": "https://api.github.com/teams/2507119/members{/member}", + "repositories_url": "https://api.github.com/teams/2507119/repos", + "permission": "pull" + }, + { + "name": "hacktoberfest", + "id": 2509105, + "node_id": "MDQ6VGVhbTI1MDkxMDU=", + "slug": "hacktoberfest", + "description": "Hacktoberfest Support Team (ping for code reviews, etc.)", + "privacy": "closed", + "url": "https://api.github.com/teams/2509105", + "html_url": "https://github.com/orgs/jenkinsci/teams/hacktoberfest", + "members_url": "https://api.github.com/teams/2509105/members{/member}", + "repositories_url": "https://api.github.com/teams/2509105/repos", + "permission": "pull" + }, + { + "name": "elastest-plugin ci", + "id": 2643393, + "node_id": "MDQ6VGVhbTI2NDMzOTM=", + "slug": "elastest-plugin-ci", + "description": "Team for the user elastestci.", + "privacy": "closed", + "url": "https://api.github.com/teams/2643393", + "html_url": "https://github.com/orgs/jenkinsci/teams/elastest-plugin-ci", + "members_url": "https://api.github.com/teams/2643393/members{/member}", + "repositories_url": "https://api.github.com/teams/2643393/repos", + "permission": "pull" + }, + { + "name": "ISPW Operations Plugin Team", + "id": 2679176, + "node_id": "MDQ6VGVhbTI2NzkxNzY=", + "slug": "ispw-operations-plugin-team", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2679176", + "html_url": "https://github.com/orgs/jenkinsci/teams/ispw-operations-plugin-team", + "members_url": "https://api.github.com/teams/2679176/members{/member}", + "repositories_url": "https://api.github.com/teams/2679176/repos", + "permission": "pull" + }, + { + "name": "git-changelog-plugin contributors", + "id": 2733849, + "node_id": "MDQ6VGVhbTI3MzM4NDk=", + "slug": "git-changelog-plugin-contributors", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2733849", + "html_url": "https://github.com/orgs/jenkinsci/teams/git-changelog-plugin-contributors", + "members_url": "https://api.github.com/teams/2733849/members{/member}", + "repositories_url": "https://api.github.com/teams/2733849/repos", + "permission": "pull" + }, + { + "name": "fireline-dev", + "id": 2776183, + "node_id": "MDQ6VGVhbTI3NzYxODM=", + "slug": "fireline-dev", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2776183", + "html_url": "https://github.com/orgs/jenkinsci/teams/fireline-dev", + "members_url": "https://api.github.com/teams/2776183/members{/member}", + "repositories_url": "https://api.github.com/teams/2776183/repos", + "permission": "pull" + }, + { + "name": "fireline-plugin-jenkins-team", + "id": 2777910, + "node_id": "MDQ6VGVhbTI3Nzc5MTA=", + "slug": "fireline-plugin-jenkins-team", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2777910", + "html_url": "https://github.com/orgs/jenkinsci/teams/fireline-plugin-jenkins-team", + "members_url": "https://api.github.com/teams/2777910/members{/member}", + "repositories_url": "https://api.github.com/teams/2777910/repos", + "permission": "pull" + }, + { + "name": "SIG Platform", + "id": 2796281, + "node_id": "MDQ6VGVhbTI3OTYyODE=", + "slug": "sig-platform", + "description": "Platform SIG: Java 11 support, OS support and packaging", + "privacy": "closed", + "url": "https://api.github.com/teams/2796281", + "html_url": "https://github.com/orgs/jenkinsci/teams/sig-platform", + "members_url": "https://api.github.com/teams/2796281/members{/member}", + "repositories_url": "https://api.github.com/teams/2796281/repos", + "permission": "pull" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkinsci_teams-4922cdbe-d115-4bb4-94be-4f75c07fc45d.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkinsci_teams-4922cdbe-d115-4bb4-94be-4f75c07fc45d.json new file mode 100644 index 0000000000..1d8d4c56aa --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkinsci_teams-4922cdbe-d115-4bb4-94be-4f75c07fc45d.json @@ -0,0 +1,392 @@ +[ + { + "name": "Core", + "id": 25280, + "node_id": "MDQ6VGVhbTI1Mjgw", + "slug": "core", + "description": "Group of Jenkins core contributors with Merge permissions", + "privacy": "closed", + "url": "https://api.github.com/teams/25280", + "html_url": "https://github.com/orgs/jenkinsci/teams/core", + "members_url": "https://api.github.com/teams/25280/members{/member}", + "repositories_url": "https://api.github.com/teams/25280/repos", + "permission": "pull" + }, + { + "name": "ghprb-plugin Developers", + "id": 239968, + "node_id": "MDQ6VGVhbTIzOTk2OA==", + "slug": "ghprb-plugin-developers", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/239968", + "html_url": "https://github.com/orgs/jenkinsci/teams/ghprb-plugin-developers", + "members_url": "https://api.github.com/teams/239968/members{/member}", + "repositories_url": "https://api.github.com/teams/239968/repos", + "permission": "pull" + }, + { + "name": "scm-api-plugin Developers", + "id": 496711, + "node_id": "MDQ6VGVhbTQ5NjcxMQ==", + "slug": "scm-api-plugin-developers", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/496711", + "html_url": "https://github.com/orgs/jenkinsci/teams/scm-api-plugin-developers", + "members_url": "https://api.github.com/teams/496711/members{/member}", + "repositories_url": "https://api.github.com/teams/496711/repos", + "permission": "pull" + }, + { + "name": "script-security-plugin Developers", + "id": 711073, + "node_id": "MDQ6VGVhbTcxMTA3Mw==", + "slug": "script-security-plugin-developers", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/711073", + "html_url": "https://github.com/orgs/jenkinsci/teams/script-security-plugin-developers", + "members_url": "https://api.github.com/teams/711073/members{/member}", + "repositories_url": "https://api.github.com/teams/711073/repos", + "permission": "pull" + }, + { + "name": "github-branch-source-plugin Developers", + "id": 1809126, + "node_id": "MDQ6VGVhbTE4MDkxMjY=", + "slug": "github-branch-source-plugin-developers", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/1809126", + "html_url": "https://github.com/orgs/jenkinsci/teams/github-branch-source-plugin-developers", + "members_url": "https://api.github.com/teams/1809126/members{/member}", + "repositories_url": "https://api.github.com/teams/1809126/repos", + "permission": "pull" + }, + { + "name": "Code Reviewers", + "id": 1885543, + "node_id": "MDQ6VGVhbTE4ODU1NDM=", + "slug": "code-reviewers", + "description": "Volunteers who review code in core or any plugin hosted in the jenkinsci organization when requested – used for notifications only, no associated repos.", + "privacy": "closed", + "url": "https://api.github.com/teams/1885543", + "html_url": "https://github.com/orgs/jenkinsci/teams/code-reviewers", + "members_url": "https://api.github.com/teams/1885543/members{/member}", + "repositories_url": "https://api.github.com/teams/1885543/repos", + "permission": "pull" + }, + { + "name": "Translators", + "id": 1900343, + "node_id": "MDQ6VGVhbTE5MDAzNDM=", + "slug": "translators", + "description": "Volunteers contributing to localization of Jenkins and plugins. Mention this team whever you add or change localizable resources.", + "privacy": "closed", + "url": "https://api.github.com/teams/1900343", + "html_url": "https://github.com/orgs/jenkinsci/teams/translators", + "members_url": "https://api.github.com/teams/1900343/members{/member}", + "repositories_url": "https://api.github.com/teams/1900343/repos", + "permission": "pull" + }, + { + "name": "one-shot-executor-plugin", + "id": 1946159, + "node_id": "MDQ6VGVhbTE5NDYxNTk=", + "slug": "one-shot-executor-plugin", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/1946159", + "html_url": "https://github.com/orgs/jenkinsci/teams/one-shot-executor-plugin", + "members_url": "https://api.github.com/teams/1946159/members{/member}", + "repositories_url": "https://api.github.com/teams/1946159/repos", + "permission": "pull" + }, + { + "name": "cloud-stats-plugin Developers", + "id": 1972502, + "node_id": "MDQ6VGVhbTE5NzI1MDI=", + "slug": "cloud-stats-plugin-developers", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/1972502", + "html_url": "https://github.com/orgs/jenkinsci/teams/cloud-stats-plugin-developers", + "members_url": "https://api.github.com/teams/1972502/members{/member}", + "repositories_url": "https://api.github.com/teams/1972502/repos", + "permission": "pull" + }, + { + "name": "workflow-step-api-plugin Developers", + "id": 1986665, + "node_id": "MDQ6VGVhbTE5ODY2NjU=", + "slug": "workflow-step-api-plugin-developers", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/1986665", + "html_url": "https://github.com/orgs/jenkinsci/teams/workflow-step-api-plugin-developers", + "members_url": "https://api.github.com/teams/1986665/members{/member}", + "repositories_url": "https://api.github.com/teams/1986665/repos", + "permission": "pull" + }, + { + "name": "workflow-cps-plugin Developers", + "id": 1986920, + "node_id": "MDQ6VGVhbTE5ODY5MjA=", + "slug": "workflow-cps-plugin-developers", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/1986920", + "html_url": "https://github.com/orgs/jenkinsci/teams/workflow-cps-plugin-developers", + "members_url": "https://api.github.com/teams/1986920/members{/member}", + "repositories_url": "https://api.github.com/teams/1986920/repos", + "permission": "pull" + }, + { + "name": "GSoC 2016 Org Admins", + "id": 2030027, + "node_id": "MDQ6VGVhbTIwMzAwMjc=", + "slug": "gsoc-2016-org-admins", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2030027", + "html_url": "https://github.com/orgs/jenkinsci/teams/gsoc-2016-org-admins", + "members_url": "https://api.github.com/teams/2030027/members{/member}", + "repositories_url": "https://api.github.com/teams/2030027/repos", + "permission": "pull" + }, + { + "name": "board", + "id": 2063624, + "node_id": "MDQ6VGVhbTIwNjM2MjQ=", + "slug": "board", + "description": "Jenkins governance board", + "privacy": "closed", + "url": "https://api.github.com/teams/2063624", + "html_url": "https://github.com/orgs/jenkinsci/teams/board", + "members_url": "https://api.github.com/teams/2063624/members{/member}", + "repositories_url": "https://api.github.com/teams/2063624/repos", + "permission": "pull" + }, + { + "name": "docker", + "id": 2097811, + "node_id": "MDQ6VGVhbTIwOTc4MTE=", + "slug": "docker", + "description": "Official Docker image maintainers", + "privacy": "closed", + "url": "https://api.github.com/teams/2097811", + "html_url": "https://github.com/orgs/jenkinsci/teams/docker", + "members_url": "https://api.github.com/teams/2097811/members{/member}", + "repositories_url": "https://api.github.com/teams/2097811/repos", + "permission": "pull" + }, + { + "name": "pipeline-model-definition-plugin Developers", + "id": 2185547, + "node_id": "MDQ6VGVhbTIxODU1NDc=", + "slug": "pipeline-model-definition-plugin-developers", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/2185547", + "html_url": "https://github.com/orgs/jenkinsci/teams/pipeline-model-definition-plugin-developers", + "members_url": "https://api.github.com/teams/2185547/members{/member}", + "repositories_url": "https://api.github.com/teams/2185547/repos", + "permission": "pull" + }, + { + "name": "zanata plugin", + "id": 2250908, + "node_id": "MDQ6VGVhbTIyNTA5MDg=", + "slug": "zanata-plugin", + "description": "zanata.org", + "privacy": "closed", + "url": "https://api.github.com/teams/2250908", + "html_url": "https://github.com/orgs/jenkinsci/teams/zanata-plugin", + "members_url": "https://api.github.com/teams/2250908/members{/member}", + "repositories_url": "https://api.github.com/teams/2250908/repos", + "permission": "pull" + }, + { + "name": "docker-packaging-team", + "id": 2277925, + "node_id": "MDQ6VGVhbTIyNzc5MjU=", + "slug": "docker-packaging-team", + "description": "Docker Packaging Team", + "privacy": "closed", + "url": "https://api.github.com/teams/2277925", + "html_url": "https://github.com/orgs/jenkinsci/teams/docker-packaging-team", + "members_url": "https://api.github.com/teams/2277925/members{/member}", + "repositories_url": "https://api.github.com/teams/2277925/repos", + "permission": "pull" + }, + { + "name": "declarative-rfc-reviewers", + "id": 2300722, + "node_id": "MDQ6VGVhbTIzMDA3MjI=", + "slug": "declarative-rfc-reviewers", + "description": "Declarative RFC Reviewers", + "privacy": "closed", + "url": "https://api.github.com/teams/2300722", + "html_url": "https://github.com/orgs/jenkinsci/teams/declarative-rfc-reviewers", + "members_url": "https://api.github.com/teams/2300722/members{/member}", + "repositories_url": "https://api.github.com/teams/2300722/repos", + "permission": "pull" + }, + { + "name": "Connectors", + "id": 2449807, + "node_id": "MDQ6VGVhbTI0NDk4MDc=", + "slug": "connectors", + "description": "The team to look into office 365 connector", + "privacy": "closed", + "url": "https://api.github.com/teams/2449807", + "html_url": "https://github.com/orgs/jenkinsci/teams/connectors", + "members_url": "https://api.github.com/teams/2449807/members{/member}", + "repositories_url": "https://api.github.com/teams/2449807/repos", + "permission": "pull" + }, + { + "name": "sentry-plugin-team Developers", + "id": 2465032, + "node_id": "MDQ6VGVhbTI0NjUwMzI=", + "slug": "sentry-plugin-team-developers", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2465032", + "html_url": "https://github.com/orgs/jenkinsci/teams/sentry-plugin-team-developers", + "members_url": "https://api.github.com/teams/2465032/members{/member}", + "repositories_url": "https://api.github.com/teams/2465032/repos", + "permission": "pull" + }, + { + "name": "JEP Editors", + "id": 2478842, + "node_id": "MDQ6VGVhbTI0Nzg4NDI=", + "slug": "jep-editors", + "description": "Editors for Jenkins Enhancement Proposals", + "privacy": "closed", + "url": "https://api.github.com/teams/2478842", + "html_url": "https://github.com/orgs/jenkinsci/teams/jep-editors", + "members_url": "https://api.github.com/teams/2478842/members{/member}", + "repositories_url": "https://api.github.com/teams/2478842/repos", + "permission": "pull" + }, + { + "name": "compuware-common-configuration-plugin Developers", + "id": 2491391, + "node_id": "MDQ6VGVhbTI0OTEzOTE=", + "slug": "compuware-common-configuration-plugin-developers", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2491391", + "html_url": "https://github.com/orgs/jenkinsci/teams/compuware-common-configuration-plugin-developers", + "members_url": "https://api.github.com/teams/2491391/members{/member}", + "repositories_url": "https://api.github.com/teams/2491391/repos", + "permission": "pull" + }, + { + "name": "pipeline-unit Developers", + "id": 2507119, + "node_id": "MDQ6VGVhbTI1MDcxMTk=", + "slug": "pipeline-unit-developers", + "description": "Pipeline Unit Developers", + "privacy": "closed", + "url": "https://api.github.com/teams/2507119", + "html_url": "https://github.com/orgs/jenkinsci/teams/pipeline-unit-developers", + "members_url": "https://api.github.com/teams/2507119/members{/member}", + "repositories_url": "https://api.github.com/teams/2507119/repos", + "permission": "pull" + }, + { + "name": "hacktoberfest", + "id": 2509105, + "node_id": "MDQ6VGVhbTI1MDkxMDU=", + "slug": "hacktoberfest", + "description": "Hacktoberfest Support Team (ping for code reviews, etc.)", + "privacy": "closed", + "url": "https://api.github.com/teams/2509105", + "html_url": "https://github.com/orgs/jenkinsci/teams/hacktoberfest", + "members_url": "https://api.github.com/teams/2509105/members{/member}", + "repositories_url": "https://api.github.com/teams/2509105/repos", + "permission": "pull" + }, + { + "name": "elastest-plugin ci", + "id": 2643393, + "node_id": "MDQ6VGVhbTI2NDMzOTM=", + "slug": "elastest-plugin-ci", + "description": "Team for the user elastestci.", + "privacy": "closed", + "url": "https://api.github.com/teams/2643393", + "html_url": "https://github.com/orgs/jenkinsci/teams/elastest-plugin-ci", + "members_url": "https://api.github.com/teams/2643393/members{/member}", + "repositories_url": "https://api.github.com/teams/2643393/repos", + "permission": "pull" + }, + { + "name": "ISPW Operations Plugin Team", + "id": 2679176, + "node_id": "MDQ6VGVhbTI2NzkxNzY=", + "slug": "ispw-operations-plugin-team", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2679176", + "html_url": "https://github.com/orgs/jenkinsci/teams/ispw-operations-plugin-team", + "members_url": "https://api.github.com/teams/2679176/members{/member}", + "repositories_url": "https://api.github.com/teams/2679176/repos", + "permission": "pull" + }, + { + "name": "git-changelog-plugin contributors", + "id": 2733849, + "node_id": "MDQ6VGVhbTI3MzM4NDk=", + "slug": "git-changelog-plugin-contributors", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2733849", + "html_url": "https://github.com/orgs/jenkinsci/teams/git-changelog-plugin-contributors", + "members_url": "https://api.github.com/teams/2733849/members{/member}", + "repositories_url": "https://api.github.com/teams/2733849/repos", + "permission": "pull" + }, + { + "name": "fireline-dev", + "id": 2776183, + "node_id": "MDQ6VGVhbTI3NzYxODM=", + "slug": "fireline-dev", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2776183", + "html_url": "https://github.com/orgs/jenkinsci/teams/fireline-dev", + "members_url": "https://api.github.com/teams/2776183/members{/member}", + "repositories_url": "https://api.github.com/teams/2776183/repos", + "permission": "pull" + }, + { + "name": "fireline-plugin-jenkins-team", + "id": 2777910, + "node_id": "MDQ6VGVhbTI3Nzc5MTA=", + "slug": "fireline-plugin-jenkins-team", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2777910", + "html_url": "https://github.com/orgs/jenkinsci/teams/fireline-plugin-jenkins-team", + "members_url": "https://api.github.com/teams/2777910/members{/member}", + "repositories_url": "https://api.github.com/teams/2777910/repos", + "permission": "pull" + }, + { + "name": "SIG Platform", + "id": 2796281, + "node_id": "MDQ6VGVhbTI3OTYyODE=", + "slug": "sig-platform", + "description": "Platform SIG: Java 11 support, OS support and packaging", + "privacy": "closed", + "url": "https://api.github.com/teams/2796281", + "html_url": "https://github.com/orgs/jenkinsci/teams/sig-platform", + "members_url": "https://api.github.com/teams/2796281/members{/member}", + "repositories_url": "https://api.github.com/teams/2796281/repos", + "permission": "pull" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkinsci_teams-4b9e6062-54b4-41b5-ba0d-9c891b471122.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkinsci_teams-4b9e6062-54b4-41b5-ba0d-9c891b471122.json new file mode 100644 index 0000000000..1d8d4c56aa --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkinsci_teams-4b9e6062-54b4-41b5-ba0d-9c891b471122.json @@ -0,0 +1,392 @@ +[ + { + "name": "Core", + "id": 25280, + "node_id": "MDQ6VGVhbTI1Mjgw", + "slug": "core", + "description": "Group of Jenkins core contributors with Merge permissions", + "privacy": "closed", + "url": "https://api.github.com/teams/25280", + "html_url": "https://github.com/orgs/jenkinsci/teams/core", + "members_url": "https://api.github.com/teams/25280/members{/member}", + "repositories_url": "https://api.github.com/teams/25280/repos", + "permission": "pull" + }, + { + "name": "ghprb-plugin Developers", + "id": 239968, + "node_id": "MDQ6VGVhbTIzOTk2OA==", + "slug": "ghprb-plugin-developers", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/239968", + "html_url": "https://github.com/orgs/jenkinsci/teams/ghprb-plugin-developers", + "members_url": "https://api.github.com/teams/239968/members{/member}", + "repositories_url": "https://api.github.com/teams/239968/repos", + "permission": "pull" + }, + { + "name": "scm-api-plugin Developers", + "id": 496711, + "node_id": "MDQ6VGVhbTQ5NjcxMQ==", + "slug": "scm-api-plugin-developers", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/496711", + "html_url": "https://github.com/orgs/jenkinsci/teams/scm-api-plugin-developers", + "members_url": "https://api.github.com/teams/496711/members{/member}", + "repositories_url": "https://api.github.com/teams/496711/repos", + "permission": "pull" + }, + { + "name": "script-security-plugin Developers", + "id": 711073, + "node_id": "MDQ6VGVhbTcxMTA3Mw==", + "slug": "script-security-plugin-developers", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/711073", + "html_url": "https://github.com/orgs/jenkinsci/teams/script-security-plugin-developers", + "members_url": "https://api.github.com/teams/711073/members{/member}", + "repositories_url": "https://api.github.com/teams/711073/repos", + "permission": "pull" + }, + { + "name": "github-branch-source-plugin Developers", + "id": 1809126, + "node_id": "MDQ6VGVhbTE4MDkxMjY=", + "slug": "github-branch-source-plugin-developers", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/1809126", + "html_url": "https://github.com/orgs/jenkinsci/teams/github-branch-source-plugin-developers", + "members_url": "https://api.github.com/teams/1809126/members{/member}", + "repositories_url": "https://api.github.com/teams/1809126/repos", + "permission": "pull" + }, + { + "name": "Code Reviewers", + "id": 1885543, + "node_id": "MDQ6VGVhbTE4ODU1NDM=", + "slug": "code-reviewers", + "description": "Volunteers who review code in core or any plugin hosted in the jenkinsci organization when requested – used for notifications only, no associated repos.", + "privacy": "closed", + "url": "https://api.github.com/teams/1885543", + "html_url": "https://github.com/orgs/jenkinsci/teams/code-reviewers", + "members_url": "https://api.github.com/teams/1885543/members{/member}", + "repositories_url": "https://api.github.com/teams/1885543/repos", + "permission": "pull" + }, + { + "name": "Translators", + "id": 1900343, + "node_id": "MDQ6VGVhbTE5MDAzNDM=", + "slug": "translators", + "description": "Volunteers contributing to localization of Jenkins and plugins. Mention this team whever you add or change localizable resources.", + "privacy": "closed", + "url": "https://api.github.com/teams/1900343", + "html_url": "https://github.com/orgs/jenkinsci/teams/translators", + "members_url": "https://api.github.com/teams/1900343/members{/member}", + "repositories_url": "https://api.github.com/teams/1900343/repos", + "permission": "pull" + }, + { + "name": "one-shot-executor-plugin", + "id": 1946159, + "node_id": "MDQ6VGVhbTE5NDYxNTk=", + "slug": "one-shot-executor-plugin", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/1946159", + "html_url": "https://github.com/orgs/jenkinsci/teams/one-shot-executor-plugin", + "members_url": "https://api.github.com/teams/1946159/members{/member}", + "repositories_url": "https://api.github.com/teams/1946159/repos", + "permission": "pull" + }, + { + "name": "cloud-stats-plugin Developers", + "id": 1972502, + "node_id": "MDQ6VGVhbTE5NzI1MDI=", + "slug": "cloud-stats-plugin-developers", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/1972502", + "html_url": "https://github.com/orgs/jenkinsci/teams/cloud-stats-plugin-developers", + "members_url": "https://api.github.com/teams/1972502/members{/member}", + "repositories_url": "https://api.github.com/teams/1972502/repos", + "permission": "pull" + }, + { + "name": "workflow-step-api-plugin Developers", + "id": 1986665, + "node_id": "MDQ6VGVhbTE5ODY2NjU=", + "slug": "workflow-step-api-plugin-developers", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/1986665", + "html_url": "https://github.com/orgs/jenkinsci/teams/workflow-step-api-plugin-developers", + "members_url": "https://api.github.com/teams/1986665/members{/member}", + "repositories_url": "https://api.github.com/teams/1986665/repos", + "permission": "pull" + }, + { + "name": "workflow-cps-plugin Developers", + "id": 1986920, + "node_id": "MDQ6VGVhbTE5ODY5MjA=", + "slug": "workflow-cps-plugin-developers", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/1986920", + "html_url": "https://github.com/orgs/jenkinsci/teams/workflow-cps-plugin-developers", + "members_url": "https://api.github.com/teams/1986920/members{/member}", + "repositories_url": "https://api.github.com/teams/1986920/repos", + "permission": "pull" + }, + { + "name": "GSoC 2016 Org Admins", + "id": 2030027, + "node_id": "MDQ6VGVhbTIwMzAwMjc=", + "slug": "gsoc-2016-org-admins", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2030027", + "html_url": "https://github.com/orgs/jenkinsci/teams/gsoc-2016-org-admins", + "members_url": "https://api.github.com/teams/2030027/members{/member}", + "repositories_url": "https://api.github.com/teams/2030027/repos", + "permission": "pull" + }, + { + "name": "board", + "id": 2063624, + "node_id": "MDQ6VGVhbTIwNjM2MjQ=", + "slug": "board", + "description": "Jenkins governance board", + "privacy": "closed", + "url": "https://api.github.com/teams/2063624", + "html_url": "https://github.com/orgs/jenkinsci/teams/board", + "members_url": "https://api.github.com/teams/2063624/members{/member}", + "repositories_url": "https://api.github.com/teams/2063624/repos", + "permission": "pull" + }, + { + "name": "docker", + "id": 2097811, + "node_id": "MDQ6VGVhbTIwOTc4MTE=", + "slug": "docker", + "description": "Official Docker image maintainers", + "privacy": "closed", + "url": "https://api.github.com/teams/2097811", + "html_url": "https://github.com/orgs/jenkinsci/teams/docker", + "members_url": "https://api.github.com/teams/2097811/members{/member}", + "repositories_url": "https://api.github.com/teams/2097811/repos", + "permission": "pull" + }, + { + "name": "pipeline-model-definition-plugin Developers", + "id": 2185547, + "node_id": "MDQ6VGVhbTIxODU1NDc=", + "slug": "pipeline-model-definition-plugin-developers", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/2185547", + "html_url": "https://github.com/orgs/jenkinsci/teams/pipeline-model-definition-plugin-developers", + "members_url": "https://api.github.com/teams/2185547/members{/member}", + "repositories_url": "https://api.github.com/teams/2185547/repos", + "permission": "pull" + }, + { + "name": "zanata plugin", + "id": 2250908, + "node_id": "MDQ6VGVhbTIyNTA5MDg=", + "slug": "zanata-plugin", + "description": "zanata.org", + "privacy": "closed", + "url": "https://api.github.com/teams/2250908", + "html_url": "https://github.com/orgs/jenkinsci/teams/zanata-plugin", + "members_url": "https://api.github.com/teams/2250908/members{/member}", + "repositories_url": "https://api.github.com/teams/2250908/repos", + "permission": "pull" + }, + { + "name": "docker-packaging-team", + "id": 2277925, + "node_id": "MDQ6VGVhbTIyNzc5MjU=", + "slug": "docker-packaging-team", + "description": "Docker Packaging Team", + "privacy": "closed", + "url": "https://api.github.com/teams/2277925", + "html_url": "https://github.com/orgs/jenkinsci/teams/docker-packaging-team", + "members_url": "https://api.github.com/teams/2277925/members{/member}", + "repositories_url": "https://api.github.com/teams/2277925/repos", + "permission": "pull" + }, + { + "name": "declarative-rfc-reviewers", + "id": 2300722, + "node_id": "MDQ6VGVhbTIzMDA3MjI=", + "slug": "declarative-rfc-reviewers", + "description": "Declarative RFC Reviewers", + "privacy": "closed", + "url": "https://api.github.com/teams/2300722", + "html_url": "https://github.com/orgs/jenkinsci/teams/declarative-rfc-reviewers", + "members_url": "https://api.github.com/teams/2300722/members{/member}", + "repositories_url": "https://api.github.com/teams/2300722/repos", + "permission": "pull" + }, + { + "name": "Connectors", + "id": 2449807, + "node_id": "MDQ6VGVhbTI0NDk4MDc=", + "slug": "connectors", + "description": "The team to look into office 365 connector", + "privacy": "closed", + "url": "https://api.github.com/teams/2449807", + "html_url": "https://github.com/orgs/jenkinsci/teams/connectors", + "members_url": "https://api.github.com/teams/2449807/members{/member}", + "repositories_url": "https://api.github.com/teams/2449807/repos", + "permission": "pull" + }, + { + "name": "sentry-plugin-team Developers", + "id": 2465032, + "node_id": "MDQ6VGVhbTI0NjUwMzI=", + "slug": "sentry-plugin-team-developers", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2465032", + "html_url": "https://github.com/orgs/jenkinsci/teams/sentry-plugin-team-developers", + "members_url": "https://api.github.com/teams/2465032/members{/member}", + "repositories_url": "https://api.github.com/teams/2465032/repos", + "permission": "pull" + }, + { + "name": "JEP Editors", + "id": 2478842, + "node_id": "MDQ6VGVhbTI0Nzg4NDI=", + "slug": "jep-editors", + "description": "Editors for Jenkins Enhancement Proposals", + "privacy": "closed", + "url": "https://api.github.com/teams/2478842", + "html_url": "https://github.com/orgs/jenkinsci/teams/jep-editors", + "members_url": "https://api.github.com/teams/2478842/members{/member}", + "repositories_url": "https://api.github.com/teams/2478842/repos", + "permission": "pull" + }, + { + "name": "compuware-common-configuration-plugin Developers", + "id": 2491391, + "node_id": "MDQ6VGVhbTI0OTEzOTE=", + "slug": "compuware-common-configuration-plugin-developers", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2491391", + "html_url": "https://github.com/orgs/jenkinsci/teams/compuware-common-configuration-plugin-developers", + "members_url": "https://api.github.com/teams/2491391/members{/member}", + "repositories_url": "https://api.github.com/teams/2491391/repos", + "permission": "pull" + }, + { + "name": "pipeline-unit Developers", + "id": 2507119, + "node_id": "MDQ6VGVhbTI1MDcxMTk=", + "slug": "pipeline-unit-developers", + "description": "Pipeline Unit Developers", + "privacy": "closed", + "url": "https://api.github.com/teams/2507119", + "html_url": "https://github.com/orgs/jenkinsci/teams/pipeline-unit-developers", + "members_url": "https://api.github.com/teams/2507119/members{/member}", + "repositories_url": "https://api.github.com/teams/2507119/repos", + "permission": "pull" + }, + { + "name": "hacktoberfest", + "id": 2509105, + "node_id": "MDQ6VGVhbTI1MDkxMDU=", + "slug": "hacktoberfest", + "description": "Hacktoberfest Support Team (ping for code reviews, etc.)", + "privacy": "closed", + "url": "https://api.github.com/teams/2509105", + "html_url": "https://github.com/orgs/jenkinsci/teams/hacktoberfest", + "members_url": "https://api.github.com/teams/2509105/members{/member}", + "repositories_url": "https://api.github.com/teams/2509105/repos", + "permission": "pull" + }, + { + "name": "elastest-plugin ci", + "id": 2643393, + "node_id": "MDQ6VGVhbTI2NDMzOTM=", + "slug": "elastest-plugin-ci", + "description": "Team for the user elastestci.", + "privacy": "closed", + "url": "https://api.github.com/teams/2643393", + "html_url": "https://github.com/orgs/jenkinsci/teams/elastest-plugin-ci", + "members_url": "https://api.github.com/teams/2643393/members{/member}", + "repositories_url": "https://api.github.com/teams/2643393/repos", + "permission": "pull" + }, + { + "name": "ISPW Operations Plugin Team", + "id": 2679176, + "node_id": "MDQ6VGVhbTI2NzkxNzY=", + "slug": "ispw-operations-plugin-team", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2679176", + "html_url": "https://github.com/orgs/jenkinsci/teams/ispw-operations-plugin-team", + "members_url": "https://api.github.com/teams/2679176/members{/member}", + "repositories_url": "https://api.github.com/teams/2679176/repos", + "permission": "pull" + }, + { + "name": "git-changelog-plugin contributors", + "id": 2733849, + "node_id": "MDQ6VGVhbTI3MzM4NDk=", + "slug": "git-changelog-plugin-contributors", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2733849", + "html_url": "https://github.com/orgs/jenkinsci/teams/git-changelog-plugin-contributors", + "members_url": "https://api.github.com/teams/2733849/members{/member}", + "repositories_url": "https://api.github.com/teams/2733849/repos", + "permission": "pull" + }, + { + "name": "fireline-dev", + "id": 2776183, + "node_id": "MDQ6VGVhbTI3NzYxODM=", + "slug": "fireline-dev", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2776183", + "html_url": "https://github.com/orgs/jenkinsci/teams/fireline-dev", + "members_url": "https://api.github.com/teams/2776183/members{/member}", + "repositories_url": "https://api.github.com/teams/2776183/repos", + "permission": "pull" + }, + { + "name": "fireline-plugin-jenkins-team", + "id": 2777910, + "node_id": "MDQ6VGVhbTI3Nzc5MTA=", + "slug": "fireline-plugin-jenkins-team", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2777910", + "html_url": "https://github.com/orgs/jenkinsci/teams/fireline-plugin-jenkins-team", + "members_url": "https://api.github.com/teams/2777910/members{/member}", + "repositories_url": "https://api.github.com/teams/2777910/repos", + "permission": "pull" + }, + { + "name": "SIG Platform", + "id": 2796281, + "node_id": "MDQ6VGVhbTI3OTYyODE=", + "slug": "sig-platform", + "description": "Platform SIG: Java 11 support, OS support and packaging", + "privacy": "closed", + "url": "https://api.github.com/teams/2796281", + "html_url": "https://github.com/orgs/jenkinsci/teams/sig-platform", + "members_url": "https://api.github.com/teams/2796281/members{/member}", + "repositories_url": "https://api.github.com/teams/2796281/repos", + "permission": "pull" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkinsci_teams-51a481cc-1f18-4eae-a2c7-3835859468b4.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkinsci_teams-51a481cc-1f18-4eae-a2c7-3835859468b4.json new file mode 100644 index 0000000000..1d8d4c56aa --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkinsci_teams-51a481cc-1f18-4eae-a2c7-3835859468b4.json @@ -0,0 +1,392 @@ +[ + { + "name": "Core", + "id": 25280, + "node_id": "MDQ6VGVhbTI1Mjgw", + "slug": "core", + "description": "Group of Jenkins core contributors with Merge permissions", + "privacy": "closed", + "url": "https://api.github.com/teams/25280", + "html_url": "https://github.com/orgs/jenkinsci/teams/core", + "members_url": "https://api.github.com/teams/25280/members{/member}", + "repositories_url": "https://api.github.com/teams/25280/repos", + "permission": "pull" + }, + { + "name": "ghprb-plugin Developers", + "id": 239968, + "node_id": "MDQ6VGVhbTIzOTk2OA==", + "slug": "ghprb-plugin-developers", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/239968", + "html_url": "https://github.com/orgs/jenkinsci/teams/ghprb-plugin-developers", + "members_url": "https://api.github.com/teams/239968/members{/member}", + "repositories_url": "https://api.github.com/teams/239968/repos", + "permission": "pull" + }, + { + "name": "scm-api-plugin Developers", + "id": 496711, + "node_id": "MDQ6VGVhbTQ5NjcxMQ==", + "slug": "scm-api-plugin-developers", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/496711", + "html_url": "https://github.com/orgs/jenkinsci/teams/scm-api-plugin-developers", + "members_url": "https://api.github.com/teams/496711/members{/member}", + "repositories_url": "https://api.github.com/teams/496711/repos", + "permission": "pull" + }, + { + "name": "script-security-plugin Developers", + "id": 711073, + "node_id": "MDQ6VGVhbTcxMTA3Mw==", + "slug": "script-security-plugin-developers", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/711073", + "html_url": "https://github.com/orgs/jenkinsci/teams/script-security-plugin-developers", + "members_url": "https://api.github.com/teams/711073/members{/member}", + "repositories_url": "https://api.github.com/teams/711073/repos", + "permission": "pull" + }, + { + "name": "github-branch-source-plugin Developers", + "id": 1809126, + "node_id": "MDQ6VGVhbTE4MDkxMjY=", + "slug": "github-branch-source-plugin-developers", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/1809126", + "html_url": "https://github.com/orgs/jenkinsci/teams/github-branch-source-plugin-developers", + "members_url": "https://api.github.com/teams/1809126/members{/member}", + "repositories_url": "https://api.github.com/teams/1809126/repos", + "permission": "pull" + }, + { + "name": "Code Reviewers", + "id": 1885543, + "node_id": "MDQ6VGVhbTE4ODU1NDM=", + "slug": "code-reviewers", + "description": "Volunteers who review code in core or any plugin hosted in the jenkinsci organization when requested – used for notifications only, no associated repos.", + "privacy": "closed", + "url": "https://api.github.com/teams/1885543", + "html_url": "https://github.com/orgs/jenkinsci/teams/code-reviewers", + "members_url": "https://api.github.com/teams/1885543/members{/member}", + "repositories_url": "https://api.github.com/teams/1885543/repos", + "permission": "pull" + }, + { + "name": "Translators", + "id": 1900343, + "node_id": "MDQ6VGVhbTE5MDAzNDM=", + "slug": "translators", + "description": "Volunteers contributing to localization of Jenkins and plugins. Mention this team whever you add or change localizable resources.", + "privacy": "closed", + "url": "https://api.github.com/teams/1900343", + "html_url": "https://github.com/orgs/jenkinsci/teams/translators", + "members_url": "https://api.github.com/teams/1900343/members{/member}", + "repositories_url": "https://api.github.com/teams/1900343/repos", + "permission": "pull" + }, + { + "name": "one-shot-executor-plugin", + "id": 1946159, + "node_id": "MDQ6VGVhbTE5NDYxNTk=", + "slug": "one-shot-executor-plugin", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/1946159", + "html_url": "https://github.com/orgs/jenkinsci/teams/one-shot-executor-plugin", + "members_url": "https://api.github.com/teams/1946159/members{/member}", + "repositories_url": "https://api.github.com/teams/1946159/repos", + "permission": "pull" + }, + { + "name": "cloud-stats-plugin Developers", + "id": 1972502, + "node_id": "MDQ6VGVhbTE5NzI1MDI=", + "slug": "cloud-stats-plugin-developers", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/1972502", + "html_url": "https://github.com/orgs/jenkinsci/teams/cloud-stats-plugin-developers", + "members_url": "https://api.github.com/teams/1972502/members{/member}", + "repositories_url": "https://api.github.com/teams/1972502/repos", + "permission": "pull" + }, + { + "name": "workflow-step-api-plugin Developers", + "id": 1986665, + "node_id": "MDQ6VGVhbTE5ODY2NjU=", + "slug": "workflow-step-api-plugin-developers", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/1986665", + "html_url": "https://github.com/orgs/jenkinsci/teams/workflow-step-api-plugin-developers", + "members_url": "https://api.github.com/teams/1986665/members{/member}", + "repositories_url": "https://api.github.com/teams/1986665/repos", + "permission": "pull" + }, + { + "name": "workflow-cps-plugin Developers", + "id": 1986920, + "node_id": "MDQ6VGVhbTE5ODY5MjA=", + "slug": "workflow-cps-plugin-developers", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/1986920", + "html_url": "https://github.com/orgs/jenkinsci/teams/workflow-cps-plugin-developers", + "members_url": "https://api.github.com/teams/1986920/members{/member}", + "repositories_url": "https://api.github.com/teams/1986920/repos", + "permission": "pull" + }, + { + "name": "GSoC 2016 Org Admins", + "id": 2030027, + "node_id": "MDQ6VGVhbTIwMzAwMjc=", + "slug": "gsoc-2016-org-admins", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2030027", + "html_url": "https://github.com/orgs/jenkinsci/teams/gsoc-2016-org-admins", + "members_url": "https://api.github.com/teams/2030027/members{/member}", + "repositories_url": "https://api.github.com/teams/2030027/repos", + "permission": "pull" + }, + { + "name": "board", + "id": 2063624, + "node_id": "MDQ6VGVhbTIwNjM2MjQ=", + "slug": "board", + "description": "Jenkins governance board", + "privacy": "closed", + "url": "https://api.github.com/teams/2063624", + "html_url": "https://github.com/orgs/jenkinsci/teams/board", + "members_url": "https://api.github.com/teams/2063624/members{/member}", + "repositories_url": "https://api.github.com/teams/2063624/repos", + "permission": "pull" + }, + { + "name": "docker", + "id": 2097811, + "node_id": "MDQ6VGVhbTIwOTc4MTE=", + "slug": "docker", + "description": "Official Docker image maintainers", + "privacy": "closed", + "url": "https://api.github.com/teams/2097811", + "html_url": "https://github.com/orgs/jenkinsci/teams/docker", + "members_url": "https://api.github.com/teams/2097811/members{/member}", + "repositories_url": "https://api.github.com/teams/2097811/repos", + "permission": "pull" + }, + { + "name": "pipeline-model-definition-plugin Developers", + "id": 2185547, + "node_id": "MDQ6VGVhbTIxODU1NDc=", + "slug": "pipeline-model-definition-plugin-developers", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/2185547", + "html_url": "https://github.com/orgs/jenkinsci/teams/pipeline-model-definition-plugin-developers", + "members_url": "https://api.github.com/teams/2185547/members{/member}", + "repositories_url": "https://api.github.com/teams/2185547/repos", + "permission": "pull" + }, + { + "name": "zanata plugin", + "id": 2250908, + "node_id": "MDQ6VGVhbTIyNTA5MDg=", + "slug": "zanata-plugin", + "description": "zanata.org", + "privacy": "closed", + "url": "https://api.github.com/teams/2250908", + "html_url": "https://github.com/orgs/jenkinsci/teams/zanata-plugin", + "members_url": "https://api.github.com/teams/2250908/members{/member}", + "repositories_url": "https://api.github.com/teams/2250908/repos", + "permission": "pull" + }, + { + "name": "docker-packaging-team", + "id": 2277925, + "node_id": "MDQ6VGVhbTIyNzc5MjU=", + "slug": "docker-packaging-team", + "description": "Docker Packaging Team", + "privacy": "closed", + "url": "https://api.github.com/teams/2277925", + "html_url": "https://github.com/orgs/jenkinsci/teams/docker-packaging-team", + "members_url": "https://api.github.com/teams/2277925/members{/member}", + "repositories_url": "https://api.github.com/teams/2277925/repos", + "permission": "pull" + }, + { + "name": "declarative-rfc-reviewers", + "id": 2300722, + "node_id": "MDQ6VGVhbTIzMDA3MjI=", + "slug": "declarative-rfc-reviewers", + "description": "Declarative RFC Reviewers", + "privacy": "closed", + "url": "https://api.github.com/teams/2300722", + "html_url": "https://github.com/orgs/jenkinsci/teams/declarative-rfc-reviewers", + "members_url": "https://api.github.com/teams/2300722/members{/member}", + "repositories_url": "https://api.github.com/teams/2300722/repos", + "permission": "pull" + }, + { + "name": "Connectors", + "id": 2449807, + "node_id": "MDQ6VGVhbTI0NDk4MDc=", + "slug": "connectors", + "description": "The team to look into office 365 connector", + "privacy": "closed", + "url": "https://api.github.com/teams/2449807", + "html_url": "https://github.com/orgs/jenkinsci/teams/connectors", + "members_url": "https://api.github.com/teams/2449807/members{/member}", + "repositories_url": "https://api.github.com/teams/2449807/repos", + "permission": "pull" + }, + { + "name": "sentry-plugin-team Developers", + "id": 2465032, + "node_id": "MDQ6VGVhbTI0NjUwMzI=", + "slug": "sentry-plugin-team-developers", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2465032", + "html_url": "https://github.com/orgs/jenkinsci/teams/sentry-plugin-team-developers", + "members_url": "https://api.github.com/teams/2465032/members{/member}", + "repositories_url": "https://api.github.com/teams/2465032/repos", + "permission": "pull" + }, + { + "name": "JEP Editors", + "id": 2478842, + "node_id": "MDQ6VGVhbTI0Nzg4NDI=", + "slug": "jep-editors", + "description": "Editors for Jenkins Enhancement Proposals", + "privacy": "closed", + "url": "https://api.github.com/teams/2478842", + "html_url": "https://github.com/orgs/jenkinsci/teams/jep-editors", + "members_url": "https://api.github.com/teams/2478842/members{/member}", + "repositories_url": "https://api.github.com/teams/2478842/repos", + "permission": "pull" + }, + { + "name": "compuware-common-configuration-plugin Developers", + "id": 2491391, + "node_id": "MDQ6VGVhbTI0OTEzOTE=", + "slug": "compuware-common-configuration-plugin-developers", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2491391", + "html_url": "https://github.com/orgs/jenkinsci/teams/compuware-common-configuration-plugin-developers", + "members_url": "https://api.github.com/teams/2491391/members{/member}", + "repositories_url": "https://api.github.com/teams/2491391/repos", + "permission": "pull" + }, + { + "name": "pipeline-unit Developers", + "id": 2507119, + "node_id": "MDQ6VGVhbTI1MDcxMTk=", + "slug": "pipeline-unit-developers", + "description": "Pipeline Unit Developers", + "privacy": "closed", + "url": "https://api.github.com/teams/2507119", + "html_url": "https://github.com/orgs/jenkinsci/teams/pipeline-unit-developers", + "members_url": "https://api.github.com/teams/2507119/members{/member}", + "repositories_url": "https://api.github.com/teams/2507119/repos", + "permission": "pull" + }, + { + "name": "hacktoberfest", + "id": 2509105, + "node_id": "MDQ6VGVhbTI1MDkxMDU=", + "slug": "hacktoberfest", + "description": "Hacktoberfest Support Team (ping for code reviews, etc.)", + "privacy": "closed", + "url": "https://api.github.com/teams/2509105", + "html_url": "https://github.com/orgs/jenkinsci/teams/hacktoberfest", + "members_url": "https://api.github.com/teams/2509105/members{/member}", + "repositories_url": "https://api.github.com/teams/2509105/repos", + "permission": "pull" + }, + { + "name": "elastest-plugin ci", + "id": 2643393, + "node_id": "MDQ6VGVhbTI2NDMzOTM=", + "slug": "elastest-plugin-ci", + "description": "Team for the user elastestci.", + "privacy": "closed", + "url": "https://api.github.com/teams/2643393", + "html_url": "https://github.com/orgs/jenkinsci/teams/elastest-plugin-ci", + "members_url": "https://api.github.com/teams/2643393/members{/member}", + "repositories_url": "https://api.github.com/teams/2643393/repos", + "permission": "pull" + }, + { + "name": "ISPW Operations Plugin Team", + "id": 2679176, + "node_id": "MDQ6VGVhbTI2NzkxNzY=", + "slug": "ispw-operations-plugin-team", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2679176", + "html_url": "https://github.com/orgs/jenkinsci/teams/ispw-operations-plugin-team", + "members_url": "https://api.github.com/teams/2679176/members{/member}", + "repositories_url": "https://api.github.com/teams/2679176/repos", + "permission": "pull" + }, + { + "name": "git-changelog-plugin contributors", + "id": 2733849, + "node_id": "MDQ6VGVhbTI3MzM4NDk=", + "slug": "git-changelog-plugin-contributors", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2733849", + "html_url": "https://github.com/orgs/jenkinsci/teams/git-changelog-plugin-contributors", + "members_url": "https://api.github.com/teams/2733849/members{/member}", + "repositories_url": "https://api.github.com/teams/2733849/repos", + "permission": "pull" + }, + { + "name": "fireline-dev", + "id": 2776183, + "node_id": "MDQ6VGVhbTI3NzYxODM=", + "slug": "fireline-dev", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2776183", + "html_url": "https://github.com/orgs/jenkinsci/teams/fireline-dev", + "members_url": "https://api.github.com/teams/2776183/members{/member}", + "repositories_url": "https://api.github.com/teams/2776183/repos", + "permission": "pull" + }, + { + "name": "fireline-plugin-jenkins-team", + "id": 2777910, + "node_id": "MDQ6VGVhbTI3Nzc5MTA=", + "slug": "fireline-plugin-jenkins-team", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2777910", + "html_url": "https://github.com/orgs/jenkinsci/teams/fireline-plugin-jenkins-team", + "members_url": "https://api.github.com/teams/2777910/members{/member}", + "repositories_url": "https://api.github.com/teams/2777910/repos", + "permission": "pull" + }, + { + "name": "SIG Platform", + "id": 2796281, + "node_id": "MDQ6VGVhbTI3OTYyODE=", + "slug": "sig-platform", + "description": "Platform SIG: Java 11 support, OS support and packaging", + "privacy": "closed", + "url": "https://api.github.com/teams/2796281", + "html_url": "https://github.com/orgs/jenkinsci/teams/sig-platform", + "members_url": "https://api.github.com/teams/2796281/members{/member}", + "repositories_url": "https://api.github.com/teams/2796281/repos", + "permission": "pull" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkinsci_teams-7e7d35f3-0e07-4cbb-a814-e363eca72d3d.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkinsci_teams-7e7d35f3-0e07-4cbb-a814-e363eca72d3d.json new file mode 100644 index 0000000000..1d8d4c56aa --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkinsci_teams-7e7d35f3-0e07-4cbb-a814-e363eca72d3d.json @@ -0,0 +1,392 @@ +[ + { + "name": "Core", + "id": 25280, + "node_id": "MDQ6VGVhbTI1Mjgw", + "slug": "core", + "description": "Group of Jenkins core contributors with Merge permissions", + "privacy": "closed", + "url": "https://api.github.com/teams/25280", + "html_url": "https://github.com/orgs/jenkinsci/teams/core", + "members_url": "https://api.github.com/teams/25280/members{/member}", + "repositories_url": "https://api.github.com/teams/25280/repos", + "permission": "pull" + }, + { + "name": "ghprb-plugin Developers", + "id": 239968, + "node_id": "MDQ6VGVhbTIzOTk2OA==", + "slug": "ghprb-plugin-developers", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/239968", + "html_url": "https://github.com/orgs/jenkinsci/teams/ghprb-plugin-developers", + "members_url": "https://api.github.com/teams/239968/members{/member}", + "repositories_url": "https://api.github.com/teams/239968/repos", + "permission": "pull" + }, + { + "name": "scm-api-plugin Developers", + "id": 496711, + "node_id": "MDQ6VGVhbTQ5NjcxMQ==", + "slug": "scm-api-plugin-developers", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/496711", + "html_url": "https://github.com/orgs/jenkinsci/teams/scm-api-plugin-developers", + "members_url": "https://api.github.com/teams/496711/members{/member}", + "repositories_url": "https://api.github.com/teams/496711/repos", + "permission": "pull" + }, + { + "name": "script-security-plugin Developers", + "id": 711073, + "node_id": "MDQ6VGVhbTcxMTA3Mw==", + "slug": "script-security-plugin-developers", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/711073", + "html_url": "https://github.com/orgs/jenkinsci/teams/script-security-plugin-developers", + "members_url": "https://api.github.com/teams/711073/members{/member}", + "repositories_url": "https://api.github.com/teams/711073/repos", + "permission": "pull" + }, + { + "name": "github-branch-source-plugin Developers", + "id": 1809126, + "node_id": "MDQ6VGVhbTE4MDkxMjY=", + "slug": "github-branch-source-plugin-developers", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/1809126", + "html_url": "https://github.com/orgs/jenkinsci/teams/github-branch-source-plugin-developers", + "members_url": "https://api.github.com/teams/1809126/members{/member}", + "repositories_url": "https://api.github.com/teams/1809126/repos", + "permission": "pull" + }, + { + "name": "Code Reviewers", + "id": 1885543, + "node_id": "MDQ6VGVhbTE4ODU1NDM=", + "slug": "code-reviewers", + "description": "Volunteers who review code in core or any plugin hosted in the jenkinsci organization when requested – used for notifications only, no associated repos.", + "privacy": "closed", + "url": "https://api.github.com/teams/1885543", + "html_url": "https://github.com/orgs/jenkinsci/teams/code-reviewers", + "members_url": "https://api.github.com/teams/1885543/members{/member}", + "repositories_url": "https://api.github.com/teams/1885543/repos", + "permission": "pull" + }, + { + "name": "Translators", + "id": 1900343, + "node_id": "MDQ6VGVhbTE5MDAzNDM=", + "slug": "translators", + "description": "Volunteers contributing to localization of Jenkins and plugins. Mention this team whever you add or change localizable resources.", + "privacy": "closed", + "url": "https://api.github.com/teams/1900343", + "html_url": "https://github.com/orgs/jenkinsci/teams/translators", + "members_url": "https://api.github.com/teams/1900343/members{/member}", + "repositories_url": "https://api.github.com/teams/1900343/repos", + "permission": "pull" + }, + { + "name": "one-shot-executor-plugin", + "id": 1946159, + "node_id": "MDQ6VGVhbTE5NDYxNTk=", + "slug": "one-shot-executor-plugin", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/1946159", + "html_url": "https://github.com/orgs/jenkinsci/teams/one-shot-executor-plugin", + "members_url": "https://api.github.com/teams/1946159/members{/member}", + "repositories_url": "https://api.github.com/teams/1946159/repos", + "permission": "pull" + }, + { + "name": "cloud-stats-plugin Developers", + "id": 1972502, + "node_id": "MDQ6VGVhbTE5NzI1MDI=", + "slug": "cloud-stats-plugin-developers", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/1972502", + "html_url": "https://github.com/orgs/jenkinsci/teams/cloud-stats-plugin-developers", + "members_url": "https://api.github.com/teams/1972502/members{/member}", + "repositories_url": "https://api.github.com/teams/1972502/repos", + "permission": "pull" + }, + { + "name": "workflow-step-api-plugin Developers", + "id": 1986665, + "node_id": "MDQ6VGVhbTE5ODY2NjU=", + "slug": "workflow-step-api-plugin-developers", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/1986665", + "html_url": "https://github.com/orgs/jenkinsci/teams/workflow-step-api-plugin-developers", + "members_url": "https://api.github.com/teams/1986665/members{/member}", + "repositories_url": "https://api.github.com/teams/1986665/repos", + "permission": "pull" + }, + { + "name": "workflow-cps-plugin Developers", + "id": 1986920, + "node_id": "MDQ6VGVhbTE5ODY5MjA=", + "slug": "workflow-cps-plugin-developers", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/1986920", + "html_url": "https://github.com/orgs/jenkinsci/teams/workflow-cps-plugin-developers", + "members_url": "https://api.github.com/teams/1986920/members{/member}", + "repositories_url": "https://api.github.com/teams/1986920/repos", + "permission": "pull" + }, + { + "name": "GSoC 2016 Org Admins", + "id": 2030027, + "node_id": "MDQ6VGVhbTIwMzAwMjc=", + "slug": "gsoc-2016-org-admins", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2030027", + "html_url": "https://github.com/orgs/jenkinsci/teams/gsoc-2016-org-admins", + "members_url": "https://api.github.com/teams/2030027/members{/member}", + "repositories_url": "https://api.github.com/teams/2030027/repos", + "permission": "pull" + }, + { + "name": "board", + "id": 2063624, + "node_id": "MDQ6VGVhbTIwNjM2MjQ=", + "slug": "board", + "description": "Jenkins governance board", + "privacy": "closed", + "url": "https://api.github.com/teams/2063624", + "html_url": "https://github.com/orgs/jenkinsci/teams/board", + "members_url": "https://api.github.com/teams/2063624/members{/member}", + "repositories_url": "https://api.github.com/teams/2063624/repos", + "permission": "pull" + }, + { + "name": "docker", + "id": 2097811, + "node_id": "MDQ6VGVhbTIwOTc4MTE=", + "slug": "docker", + "description": "Official Docker image maintainers", + "privacy": "closed", + "url": "https://api.github.com/teams/2097811", + "html_url": "https://github.com/orgs/jenkinsci/teams/docker", + "members_url": "https://api.github.com/teams/2097811/members{/member}", + "repositories_url": "https://api.github.com/teams/2097811/repos", + "permission": "pull" + }, + { + "name": "pipeline-model-definition-plugin Developers", + "id": 2185547, + "node_id": "MDQ6VGVhbTIxODU1NDc=", + "slug": "pipeline-model-definition-plugin-developers", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/2185547", + "html_url": "https://github.com/orgs/jenkinsci/teams/pipeline-model-definition-plugin-developers", + "members_url": "https://api.github.com/teams/2185547/members{/member}", + "repositories_url": "https://api.github.com/teams/2185547/repos", + "permission": "pull" + }, + { + "name": "zanata plugin", + "id": 2250908, + "node_id": "MDQ6VGVhbTIyNTA5MDg=", + "slug": "zanata-plugin", + "description": "zanata.org", + "privacy": "closed", + "url": "https://api.github.com/teams/2250908", + "html_url": "https://github.com/orgs/jenkinsci/teams/zanata-plugin", + "members_url": "https://api.github.com/teams/2250908/members{/member}", + "repositories_url": "https://api.github.com/teams/2250908/repos", + "permission": "pull" + }, + { + "name": "docker-packaging-team", + "id": 2277925, + "node_id": "MDQ6VGVhbTIyNzc5MjU=", + "slug": "docker-packaging-team", + "description": "Docker Packaging Team", + "privacy": "closed", + "url": "https://api.github.com/teams/2277925", + "html_url": "https://github.com/orgs/jenkinsci/teams/docker-packaging-team", + "members_url": "https://api.github.com/teams/2277925/members{/member}", + "repositories_url": "https://api.github.com/teams/2277925/repos", + "permission": "pull" + }, + { + "name": "declarative-rfc-reviewers", + "id": 2300722, + "node_id": "MDQ6VGVhbTIzMDA3MjI=", + "slug": "declarative-rfc-reviewers", + "description": "Declarative RFC Reviewers", + "privacy": "closed", + "url": "https://api.github.com/teams/2300722", + "html_url": "https://github.com/orgs/jenkinsci/teams/declarative-rfc-reviewers", + "members_url": "https://api.github.com/teams/2300722/members{/member}", + "repositories_url": "https://api.github.com/teams/2300722/repos", + "permission": "pull" + }, + { + "name": "Connectors", + "id": 2449807, + "node_id": "MDQ6VGVhbTI0NDk4MDc=", + "slug": "connectors", + "description": "The team to look into office 365 connector", + "privacy": "closed", + "url": "https://api.github.com/teams/2449807", + "html_url": "https://github.com/orgs/jenkinsci/teams/connectors", + "members_url": "https://api.github.com/teams/2449807/members{/member}", + "repositories_url": "https://api.github.com/teams/2449807/repos", + "permission": "pull" + }, + { + "name": "sentry-plugin-team Developers", + "id": 2465032, + "node_id": "MDQ6VGVhbTI0NjUwMzI=", + "slug": "sentry-plugin-team-developers", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2465032", + "html_url": "https://github.com/orgs/jenkinsci/teams/sentry-plugin-team-developers", + "members_url": "https://api.github.com/teams/2465032/members{/member}", + "repositories_url": "https://api.github.com/teams/2465032/repos", + "permission": "pull" + }, + { + "name": "JEP Editors", + "id": 2478842, + "node_id": "MDQ6VGVhbTI0Nzg4NDI=", + "slug": "jep-editors", + "description": "Editors for Jenkins Enhancement Proposals", + "privacy": "closed", + "url": "https://api.github.com/teams/2478842", + "html_url": "https://github.com/orgs/jenkinsci/teams/jep-editors", + "members_url": "https://api.github.com/teams/2478842/members{/member}", + "repositories_url": "https://api.github.com/teams/2478842/repos", + "permission": "pull" + }, + { + "name": "compuware-common-configuration-plugin Developers", + "id": 2491391, + "node_id": "MDQ6VGVhbTI0OTEzOTE=", + "slug": "compuware-common-configuration-plugin-developers", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2491391", + "html_url": "https://github.com/orgs/jenkinsci/teams/compuware-common-configuration-plugin-developers", + "members_url": "https://api.github.com/teams/2491391/members{/member}", + "repositories_url": "https://api.github.com/teams/2491391/repos", + "permission": "pull" + }, + { + "name": "pipeline-unit Developers", + "id": 2507119, + "node_id": "MDQ6VGVhbTI1MDcxMTk=", + "slug": "pipeline-unit-developers", + "description": "Pipeline Unit Developers", + "privacy": "closed", + "url": "https://api.github.com/teams/2507119", + "html_url": "https://github.com/orgs/jenkinsci/teams/pipeline-unit-developers", + "members_url": "https://api.github.com/teams/2507119/members{/member}", + "repositories_url": "https://api.github.com/teams/2507119/repos", + "permission": "pull" + }, + { + "name": "hacktoberfest", + "id": 2509105, + "node_id": "MDQ6VGVhbTI1MDkxMDU=", + "slug": "hacktoberfest", + "description": "Hacktoberfest Support Team (ping for code reviews, etc.)", + "privacy": "closed", + "url": "https://api.github.com/teams/2509105", + "html_url": "https://github.com/orgs/jenkinsci/teams/hacktoberfest", + "members_url": "https://api.github.com/teams/2509105/members{/member}", + "repositories_url": "https://api.github.com/teams/2509105/repos", + "permission": "pull" + }, + { + "name": "elastest-plugin ci", + "id": 2643393, + "node_id": "MDQ6VGVhbTI2NDMzOTM=", + "slug": "elastest-plugin-ci", + "description": "Team for the user elastestci.", + "privacy": "closed", + "url": "https://api.github.com/teams/2643393", + "html_url": "https://github.com/orgs/jenkinsci/teams/elastest-plugin-ci", + "members_url": "https://api.github.com/teams/2643393/members{/member}", + "repositories_url": "https://api.github.com/teams/2643393/repos", + "permission": "pull" + }, + { + "name": "ISPW Operations Plugin Team", + "id": 2679176, + "node_id": "MDQ6VGVhbTI2NzkxNzY=", + "slug": "ispw-operations-plugin-team", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2679176", + "html_url": "https://github.com/orgs/jenkinsci/teams/ispw-operations-plugin-team", + "members_url": "https://api.github.com/teams/2679176/members{/member}", + "repositories_url": "https://api.github.com/teams/2679176/repos", + "permission": "pull" + }, + { + "name": "git-changelog-plugin contributors", + "id": 2733849, + "node_id": "MDQ6VGVhbTI3MzM4NDk=", + "slug": "git-changelog-plugin-contributors", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2733849", + "html_url": "https://github.com/orgs/jenkinsci/teams/git-changelog-plugin-contributors", + "members_url": "https://api.github.com/teams/2733849/members{/member}", + "repositories_url": "https://api.github.com/teams/2733849/repos", + "permission": "pull" + }, + { + "name": "fireline-dev", + "id": 2776183, + "node_id": "MDQ6VGVhbTI3NzYxODM=", + "slug": "fireline-dev", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2776183", + "html_url": "https://github.com/orgs/jenkinsci/teams/fireline-dev", + "members_url": "https://api.github.com/teams/2776183/members{/member}", + "repositories_url": "https://api.github.com/teams/2776183/repos", + "permission": "pull" + }, + { + "name": "fireline-plugin-jenkins-team", + "id": 2777910, + "node_id": "MDQ6VGVhbTI3Nzc5MTA=", + "slug": "fireline-plugin-jenkins-team", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2777910", + "html_url": "https://github.com/orgs/jenkinsci/teams/fireline-plugin-jenkins-team", + "members_url": "https://api.github.com/teams/2777910/members{/member}", + "repositories_url": "https://api.github.com/teams/2777910/repos", + "permission": "pull" + }, + { + "name": "SIG Platform", + "id": 2796281, + "node_id": "MDQ6VGVhbTI3OTYyODE=", + "slug": "sig-platform", + "description": "Platform SIG: Java 11 support, OS support and packaging", + "privacy": "closed", + "url": "https://api.github.com/teams/2796281", + "html_url": "https://github.com/orgs/jenkinsci/teams/sig-platform", + "members_url": "https://api.github.com/teams/2796281/members{/member}", + "repositories_url": "https://api.github.com/teams/2796281/repos", + "permission": "pull" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkinsci_teams-90bfe4fd-6ad3-429d-b35d-2cac4f0c83f4.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkinsci_teams-90bfe4fd-6ad3-429d-b35d-2cac4f0c83f4.json new file mode 100644 index 0000000000..1d8d4c56aa --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkinsci_teams-90bfe4fd-6ad3-429d-b35d-2cac4f0c83f4.json @@ -0,0 +1,392 @@ +[ + { + "name": "Core", + "id": 25280, + "node_id": "MDQ6VGVhbTI1Mjgw", + "slug": "core", + "description": "Group of Jenkins core contributors with Merge permissions", + "privacy": "closed", + "url": "https://api.github.com/teams/25280", + "html_url": "https://github.com/orgs/jenkinsci/teams/core", + "members_url": "https://api.github.com/teams/25280/members{/member}", + "repositories_url": "https://api.github.com/teams/25280/repos", + "permission": "pull" + }, + { + "name": "ghprb-plugin Developers", + "id": 239968, + "node_id": "MDQ6VGVhbTIzOTk2OA==", + "slug": "ghprb-plugin-developers", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/239968", + "html_url": "https://github.com/orgs/jenkinsci/teams/ghprb-plugin-developers", + "members_url": "https://api.github.com/teams/239968/members{/member}", + "repositories_url": "https://api.github.com/teams/239968/repos", + "permission": "pull" + }, + { + "name": "scm-api-plugin Developers", + "id": 496711, + "node_id": "MDQ6VGVhbTQ5NjcxMQ==", + "slug": "scm-api-plugin-developers", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/496711", + "html_url": "https://github.com/orgs/jenkinsci/teams/scm-api-plugin-developers", + "members_url": "https://api.github.com/teams/496711/members{/member}", + "repositories_url": "https://api.github.com/teams/496711/repos", + "permission": "pull" + }, + { + "name": "script-security-plugin Developers", + "id": 711073, + "node_id": "MDQ6VGVhbTcxMTA3Mw==", + "slug": "script-security-plugin-developers", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/711073", + "html_url": "https://github.com/orgs/jenkinsci/teams/script-security-plugin-developers", + "members_url": "https://api.github.com/teams/711073/members{/member}", + "repositories_url": "https://api.github.com/teams/711073/repos", + "permission": "pull" + }, + { + "name": "github-branch-source-plugin Developers", + "id": 1809126, + "node_id": "MDQ6VGVhbTE4MDkxMjY=", + "slug": "github-branch-source-plugin-developers", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/1809126", + "html_url": "https://github.com/orgs/jenkinsci/teams/github-branch-source-plugin-developers", + "members_url": "https://api.github.com/teams/1809126/members{/member}", + "repositories_url": "https://api.github.com/teams/1809126/repos", + "permission": "pull" + }, + { + "name": "Code Reviewers", + "id": 1885543, + "node_id": "MDQ6VGVhbTE4ODU1NDM=", + "slug": "code-reviewers", + "description": "Volunteers who review code in core or any plugin hosted in the jenkinsci organization when requested – used for notifications only, no associated repos.", + "privacy": "closed", + "url": "https://api.github.com/teams/1885543", + "html_url": "https://github.com/orgs/jenkinsci/teams/code-reviewers", + "members_url": "https://api.github.com/teams/1885543/members{/member}", + "repositories_url": "https://api.github.com/teams/1885543/repos", + "permission": "pull" + }, + { + "name": "Translators", + "id": 1900343, + "node_id": "MDQ6VGVhbTE5MDAzNDM=", + "slug": "translators", + "description": "Volunteers contributing to localization of Jenkins and plugins. Mention this team whever you add or change localizable resources.", + "privacy": "closed", + "url": "https://api.github.com/teams/1900343", + "html_url": "https://github.com/orgs/jenkinsci/teams/translators", + "members_url": "https://api.github.com/teams/1900343/members{/member}", + "repositories_url": "https://api.github.com/teams/1900343/repos", + "permission": "pull" + }, + { + "name": "one-shot-executor-plugin", + "id": 1946159, + "node_id": "MDQ6VGVhbTE5NDYxNTk=", + "slug": "one-shot-executor-plugin", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/1946159", + "html_url": "https://github.com/orgs/jenkinsci/teams/one-shot-executor-plugin", + "members_url": "https://api.github.com/teams/1946159/members{/member}", + "repositories_url": "https://api.github.com/teams/1946159/repos", + "permission": "pull" + }, + { + "name": "cloud-stats-plugin Developers", + "id": 1972502, + "node_id": "MDQ6VGVhbTE5NzI1MDI=", + "slug": "cloud-stats-plugin-developers", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/1972502", + "html_url": "https://github.com/orgs/jenkinsci/teams/cloud-stats-plugin-developers", + "members_url": "https://api.github.com/teams/1972502/members{/member}", + "repositories_url": "https://api.github.com/teams/1972502/repos", + "permission": "pull" + }, + { + "name": "workflow-step-api-plugin Developers", + "id": 1986665, + "node_id": "MDQ6VGVhbTE5ODY2NjU=", + "slug": "workflow-step-api-plugin-developers", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/1986665", + "html_url": "https://github.com/orgs/jenkinsci/teams/workflow-step-api-plugin-developers", + "members_url": "https://api.github.com/teams/1986665/members{/member}", + "repositories_url": "https://api.github.com/teams/1986665/repos", + "permission": "pull" + }, + { + "name": "workflow-cps-plugin Developers", + "id": 1986920, + "node_id": "MDQ6VGVhbTE5ODY5MjA=", + "slug": "workflow-cps-plugin-developers", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/1986920", + "html_url": "https://github.com/orgs/jenkinsci/teams/workflow-cps-plugin-developers", + "members_url": "https://api.github.com/teams/1986920/members{/member}", + "repositories_url": "https://api.github.com/teams/1986920/repos", + "permission": "pull" + }, + { + "name": "GSoC 2016 Org Admins", + "id": 2030027, + "node_id": "MDQ6VGVhbTIwMzAwMjc=", + "slug": "gsoc-2016-org-admins", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2030027", + "html_url": "https://github.com/orgs/jenkinsci/teams/gsoc-2016-org-admins", + "members_url": "https://api.github.com/teams/2030027/members{/member}", + "repositories_url": "https://api.github.com/teams/2030027/repos", + "permission": "pull" + }, + { + "name": "board", + "id": 2063624, + "node_id": "MDQ6VGVhbTIwNjM2MjQ=", + "slug": "board", + "description": "Jenkins governance board", + "privacy": "closed", + "url": "https://api.github.com/teams/2063624", + "html_url": "https://github.com/orgs/jenkinsci/teams/board", + "members_url": "https://api.github.com/teams/2063624/members{/member}", + "repositories_url": "https://api.github.com/teams/2063624/repos", + "permission": "pull" + }, + { + "name": "docker", + "id": 2097811, + "node_id": "MDQ6VGVhbTIwOTc4MTE=", + "slug": "docker", + "description": "Official Docker image maintainers", + "privacy": "closed", + "url": "https://api.github.com/teams/2097811", + "html_url": "https://github.com/orgs/jenkinsci/teams/docker", + "members_url": "https://api.github.com/teams/2097811/members{/member}", + "repositories_url": "https://api.github.com/teams/2097811/repos", + "permission": "pull" + }, + { + "name": "pipeline-model-definition-plugin Developers", + "id": 2185547, + "node_id": "MDQ6VGVhbTIxODU1NDc=", + "slug": "pipeline-model-definition-plugin-developers", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/2185547", + "html_url": "https://github.com/orgs/jenkinsci/teams/pipeline-model-definition-plugin-developers", + "members_url": "https://api.github.com/teams/2185547/members{/member}", + "repositories_url": "https://api.github.com/teams/2185547/repos", + "permission": "pull" + }, + { + "name": "zanata plugin", + "id": 2250908, + "node_id": "MDQ6VGVhbTIyNTA5MDg=", + "slug": "zanata-plugin", + "description": "zanata.org", + "privacy": "closed", + "url": "https://api.github.com/teams/2250908", + "html_url": "https://github.com/orgs/jenkinsci/teams/zanata-plugin", + "members_url": "https://api.github.com/teams/2250908/members{/member}", + "repositories_url": "https://api.github.com/teams/2250908/repos", + "permission": "pull" + }, + { + "name": "docker-packaging-team", + "id": 2277925, + "node_id": "MDQ6VGVhbTIyNzc5MjU=", + "slug": "docker-packaging-team", + "description": "Docker Packaging Team", + "privacy": "closed", + "url": "https://api.github.com/teams/2277925", + "html_url": "https://github.com/orgs/jenkinsci/teams/docker-packaging-team", + "members_url": "https://api.github.com/teams/2277925/members{/member}", + "repositories_url": "https://api.github.com/teams/2277925/repos", + "permission": "pull" + }, + { + "name": "declarative-rfc-reviewers", + "id": 2300722, + "node_id": "MDQ6VGVhbTIzMDA3MjI=", + "slug": "declarative-rfc-reviewers", + "description": "Declarative RFC Reviewers", + "privacy": "closed", + "url": "https://api.github.com/teams/2300722", + "html_url": "https://github.com/orgs/jenkinsci/teams/declarative-rfc-reviewers", + "members_url": "https://api.github.com/teams/2300722/members{/member}", + "repositories_url": "https://api.github.com/teams/2300722/repos", + "permission": "pull" + }, + { + "name": "Connectors", + "id": 2449807, + "node_id": "MDQ6VGVhbTI0NDk4MDc=", + "slug": "connectors", + "description": "The team to look into office 365 connector", + "privacy": "closed", + "url": "https://api.github.com/teams/2449807", + "html_url": "https://github.com/orgs/jenkinsci/teams/connectors", + "members_url": "https://api.github.com/teams/2449807/members{/member}", + "repositories_url": "https://api.github.com/teams/2449807/repos", + "permission": "pull" + }, + { + "name": "sentry-plugin-team Developers", + "id": 2465032, + "node_id": "MDQ6VGVhbTI0NjUwMzI=", + "slug": "sentry-plugin-team-developers", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2465032", + "html_url": "https://github.com/orgs/jenkinsci/teams/sentry-plugin-team-developers", + "members_url": "https://api.github.com/teams/2465032/members{/member}", + "repositories_url": "https://api.github.com/teams/2465032/repos", + "permission": "pull" + }, + { + "name": "JEP Editors", + "id": 2478842, + "node_id": "MDQ6VGVhbTI0Nzg4NDI=", + "slug": "jep-editors", + "description": "Editors for Jenkins Enhancement Proposals", + "privacy": "closed", + "url": "https://api.github.com/teams/2478842", + "html_url": "https://github.com/orgs/jenkinsci/teams/jep-editors", + "members_url": "https://api.github.com/teams/2478842/members{/member}", + "repositories_url": "https://api.github.com/teams/2478842/repos", + "permission": "pull" + }, + { + "name": "compuware-common-configuration-plugin Developers", + "id": 2491391, + "node_id": "MDQ6VGVhbTI0OTEzOTE=", + "slug": "compuware-common-configuration-plugin-developers", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2491391", + "html_url": "https://github.com/orgs/jenkinsci/teams/compuware-common-configuration-plugin-developers", + "members_url": "https://api.github.com/teams/2491391/members{/member}", + "repositories_url": "https://api.github.com/teams/2491391/repos", + "permission": "pull" + }, + { + "name": "pipeline-unit Developers", + "id": 2507119, + "node_id": "MDQ6VGVhbTI1MDcxMTk=", + "slug": "pipeline-unit-developers", + "description": "Pipeline Unit Developers", + "privacy": "closed", + "url": "https://api.github.com/teams/2507119", + "html_url": "https://github.com/orgs/jenkinsci/teams/pipeline-unit-developers", + "members_url": "https://api.github.com/teams/2507119/members{/member}", + "repositories_url": "https://api.github.com/teams/2507119/repos", + "permission": "pull" + }, + { + "name": "hacktoberfest", + "id": 2509105, + "node_id": "MDQ6VGVhbTI1MDkxMDU=", + "slug": "hacktoberfest", + "description": "Hacktoberfest Support Team (ping for code reviews, etc.)", + "privacy": "closed", + "url": "https://api.github.com/teams/2509105", + "html_url": "https://github.com/orgs/jenkinsci/teams/hacktoberfest", + "members_url": "https://api.github.com/teams/2509105/members{/member}", + "repositories_url": "https://api.github.com/teams/2509105/repos", + "permission": "pull" + }, + { + "name": "elastest-plugin ci", + "id": 2643393, + "node_id": "MDQ6VGVhbTI2NDMzOTM=", + "slug": "elastest-plugin-ci", + "description": "Team for the user elastestci.", + "privacy": "closed", + "url": "https://api.github.com/teams/2643393", + "html_url": "https://github.com/orgs/jenkinsci/teams/elastest-plugin-ci", + "members_url": "https://api.github.com/teams/2643393/members{/member}", + "repositories_url": "https://api.github.com/teams/2643393/repos", + "permission": "pull" + }, + { + "name": "ISPW Operations Plugin Team", + "id": 2679176, + "node_id": "MDQ6VGVhbTI2NzkxNzY=", + "slug": "ispw-operations-plugin-team", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2679176", + "html_url": "https://github.com/orgs/jenkinsci/teams/ispw-operations-plugin-team", + "members_url": "https://api.github.com/teams/2679176/members{/member}", + "repositories_url": "https://api.github.com/teams/2679176/repos", + "permission": "pull" + }, + { + "name": "git-changelog-plugin contributors", + "id": 2733849, + "node_id": "MDQ6VGVhbTI3MzM4NDk=", + "slug": "git-changelog-plugin-contributors", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2733849", + "html_url": "https://github.com/orgs/jenkinsci/teams/git-changelog-plugin-contributors", + "members_url": "https://api.github.com/teams/2733849/members{/member}", + "repositories_url": "https://api.github.com/teams/2733849/repos", + "permission": "pull" + }, + { + "name": "fireline-dev", + "id": 2776183, + "node_id": "MDQ6VGVhbTI3NzYxODM=", + "slug": "fireline-dev", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2776183", + "html_url": "https://github.com/orgs/jenkinsci/teams/fireline-dev", + "members_url": "https://api.github.com/teams/2776183/members{/member}", + "repositories_url": "https://api.github.com/teams/2776183/repos", + "permission": "pull" + }, + { + "name": "fireline-plugin-jenkins-team", + "id": 2777910, + "node_id": "MDQ6VGVhbTI3Nzc5MTA=", + "slug": "fireline-plugin-jenkins-team", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2777910", + "html_url": "https://github.com/orgs/jenkinsci/teams/fireline-plugin-jenkins-team", + "members_url": "https://api.github.com/teams/2777910/members{/member}", + "repositories_url": "https://api.github.com/teams/2777910/repos", + "permission": "pull" + }, + { + "name": "SIG Platform", + "id": 2796281, + "node_id": "MDQ6VGVhbTI3OTYyODE=", + "slug": "sig-platform", + "description": "Platform SIG: Java 11 support, OS support and packaging", + "privacy": "closed", + "url": "https://api.github.com/teams/2796281", + "html_url": "https://github.com/orgs/jenkinsci/teams/sig-platform", + "members_url": "https://api.github.com/teams/2796281/members{/member}", + "repositories_url": "https://api.github.com/teams/2796281/repos", + "permission": "pull" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkinsci_teams-a9e65166-cb20-4ab8-ac9d-3ef6b07ecf08.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkinsci_teams-a9e65166-cb20-4ab8-ac9d-3ef6b07ecf08.json new file mode 100644 index 0000000000..1d8d4c56aa --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkinsci_teams-a9e65166-cb20-4ab8-ac9d-3ef6b07ecf08.json @@ -0,0 +1,392 @@ +[ + { + "name": "Core", + "id": 25280, + "node_id": "MDQ6VGVhbTI1Mjgw", + "slug": "core", + "description": "Group of Jenkins core contributors with Merge permissions", + "privacy": "closed", + "url": "https://api.github.com/teams/25280", + "html_url": "https://github.com/orgs/jenkinsci/teams/core", + "members_url": "https://api.github.com/teams/25280/members{/member}", + "repositories_url": "https://api.github.com/teams/25280/repos", + "permission": "pull" + }, + { + "name": "ghprb-plugin Developers", + "id": 239968, + "node_id": "MDQ6VGVhbTIzOTk2OA==", + "slug": "ghprb-plugin-developers", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/239968", + "html_url": "https://github.com/orgs/jenkinsci/teams/ghprb-plugin-developers", + "members_url": "https://api.github.com/teams/239968/members{/member}", + "repositories_url": "https://api.github.com/teams/239968/repos", + "permission": "pull" + }, + { + "name": "scm-api-plugin Developers", + "id": 496711, + "node_id": "MDQ6VGVhbTQ5NjcxMQ==", + "slug": "scm-api-plugin-developers", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/496711", + "html_url": "https://github.com/orgs/jenkinsci/teams/scm-api-plugin-developers", + "members_url": "https://api.github.com/teams/496711/members{/member}", + "repositories_url": "https://api.github.com/teams/496711/repos", + "permission": "pull" + }, + { + "name": "script-security-plugin Developers", + "id": 711073, + "node_id": "MDQ6VGVhbTcxMTA3Mw==", + "slug": "script-security-plugin-developers", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/711073", + "html_url": "https://github.com/orgs/jenkinsci/teams/script-security-plugin-developers", + "members_url": "https://api.github.com/teams/711073/members{/member}", + "repositories_url": "https://api.github.com/teams/711073/repos", + "permission": "pull" + }, + { + "name": "github-branch-source-plugin Developers", + "id": 1809126, + "node_id": "MDQ6VGVhbTE4MDkxMjY=", + "slug": "github-branch-source-plugin-developers", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/1809126", + "html_url": "https://github.com/orgs/jenkinsci/teams/github-branch-source-plugin-developers", + "members_url": "https://api.github.com/teams/1809126/members{/member}", + "repositories_url": "https://api.github.com/teams/1809126/repos", + "permission": "pull" + }, + { + "name": "Code Reviewers", + "id": 1885543, + "node_id": "MDQ6VGVhbTE4ODU1NDM=", + "slug": "code-reviewers", + "description": "Volunteers who review code in core or any plugin hosted in the jenkinsci organization when requested – used for notifications only, no associated repos.", + "privacy": "closed", + "url": "https://api.github.com/teams/1885543", + "html_url": "https://github.com/orgs/jenkinsci/teams/code-reviewers", + "members_url": "https://api.github.com/teams/1885543/members{/member}", + "repositories_url": "https://api.github.com/teams/1885543/repos", + "permission": "pull" + }, + { + "name": "Translators", + "id": 1900343, + "node_id": "MDQ6VGVhbTE5MDAzNDM=", + "slug": "translators", + "description": "Volunteers contributing to localization of Jenkins and plugins. Mention this team whever you add or change localizable resources.", + "privacy": "closed", + "url": "https://api.github.com/teams/1900343", + "html_url": "https://github.com/orgs/jenkinsci/teams/translators", + "members_url": "https://api.github.com/teams/1900343/members{/member}", + "repositories_url": "https://api.github.com/teams/1900343/repos", + "permission": "pull" + }, + { + "name": "one-shot-executor-plugin", + "id": 1946159, + "node_id": "MDQ6VGVhbTE5NDYxNTk=", + "slug": "one-shot-executor-plugin", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/1946159", + "html_url": "https://github.com/orgs/jenkinsci/teams/one-shot-executor-plugin", + "members_url": "https://api.github.com/teams/1946159/members{/member}", + "repositories_url": "https://api.github.com/teams/1946159/repos", + "permission": "pull" + }, + { + "name": "cloud-stats-plugin Developers", + "id": 1972502, + "node_id": "MDQ6VGVhbTE5NzI1MDI=", + "slug": "cloud-stats-plugin-developers", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/1972502", + "html_url": "https://github.com/orgs/jenkinsci/teams/cloud-stats-plugin-developers", + "members_url": "https://api.github.com/teams/1972502/members{/member}", + "repositories_url": "https://api.github.com/teams/1972502/repos", + "permission": "pull" + }, + { + "name": "workflow-step-api-plugin Developers", + "id": 1986665, + "node_id": "MDQ6VGVhbTE5ODY2NjU=", + "slug": "workflow-step-api-plugin-developers", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/1986665", + "html_url": "https://github.com/orgs/jenkinsci/teams/workflow-step-api-plugin-developers", + "members_url": "https://api.github.com/teams/1986665/members{/member}", + "repositories_url": "https://api.github.com/teams/1986665/repos", + "permission": "pull" + }, + { + "name": "workflow-cps-plugin Developers", + "id": 1986920, + "node_id": "MDQ6VGVhbTE5ODY5MjA=", + "slug": "workflow-cps-plugin-developers", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/1986920", + "html_url": "https://github.com/orgs/jenkinsci/teams/workflow-cps-plugin-developers", + "members_url": "https://api.github.com/teams/1986920/members{/member}", + "repositories_url": "https://api.github.com/teams/1986920/repos", + "permission": "pull" + }, + { + "name": "GSoC 2016 Org Admins", + "id": 2030027, + "node_id": "MDQ6VGVhbTIwMzAwMjc=", + "slug": "gsoc-2016-org-admins", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2030027", + "html_url": "https://github.com/orgs/jenkinsci/teams/gsoc-2016-org-admins", + "members_url": "https://api.github.com/teams/2030027/members{/member}", + "repositories_url": "https://api.github.com/teams/2030027/repos", + "permission": "pull" + }, + { + "name": "board", + "id": 2063624, + "node_id": "MDQ6VGVhbTIwNjM2MjQ=", + "slug": "board", + "description": "Jenkins governance board", + "privacy": "closed", + "url": "https://api.github.com/teams/2063624", + "html_url": "https://github.com/orgs/jenkinsci/teams/board", + "members_url": "https://api.github.com/teams/2063624/members{/member}", + "repositories_url": "https://api.github.com/teams/2063624/repos", + "permission": "pull" + }, + { + "name": "docker", + "id": 2097811, + "node_id": "MDQ6VGVhbTIwOTc4MTE=", + "slug": "docker", + "description": "Official Docker image maintainers", + "privacy": "closed", + "url": "https://api.github.com/teams/2097811", + "html_url": "https://github.com/orgs/jenkinsci/teams/docker", + "members_url": "https://api.github.com/teams/2097811/members{/member}", + "repositories_url": "https://api.github.com/teams/2097811/repos", + "permission": "pull" + }, + { + "name": "pipeline-model-definition-plugin Developers", + "id": 2185547, + "node_id": "MDQ6VGVhbTIxODU1NDc=", + "slug": "pipeline-model-definition-plugin-developers", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/2185547", + "html_url": "https://github.com/orgs/jenkinsci/teams/pipeline-model-definition-plugin-developers", + "members_url": "https://api.github.com/teams/2185547/members{/member}", + "repositories_url": "https://api.github.com/teams/2185547/repos", + "permission": "pull" + }, + { + "name": "zanata plugin", + "id": 2250908, + "node_id": "MDQ6VGVhbTIyNTA5MDg=", + "slug": "zanata-plugin", + "description": "zanata.org", + "privacy": "closed", + "url": "https://api.github.com/teams/2250908", + "html_url": "https://github.com/orgs/jenkinsci/teams/zanata-plugin", + "members_url": "https://api.github.com/teams/2250908/members{/member}", + "repositories_url": "https://api.github.com/teams/2250908/repos", + "permission": "pull" + }, + { + "name": "docker-packaging-team", + "id": 2277925, + "node_id": "MDQ6VGVhbTIyNzc5MjU=", + "slug": "docker-packaging-team", + "description": "Docker Packaging Team", + "privacy": "closed", + "url": "https://api.github.com/teams/2277925", + "html_url": "https://github.com/orgs/jenkinsci/teams/docker-packaging-team", + "members_url": "https://api.github.com/teams/2277925/members{/member}", + "repositories_url": "https://api.github.com/teams/2277925/repos", + "permission": "pull" + }, + { + "name": "declarative-rfc-reviewers", + "id": 2300722, + "node_id": "MDQ6VGVhbTIzMDA3MjI=", + "slug": "declarative-rfc-reviewers", + "description": "Declarative RFC Reviewers", + "privacy": "closed", + "url": "https://api.github.com/teams/2300722", + "html_url": "https://github.com/orgs/jenkinsci/teams/declarative-rfc-reviewers", + "members_url": "https://api.github.com/teams/2300722/members{/member}", + "repositories_url": "https://api.github.com/teams/2300722/repos", + "permission": "pull" + }, + { + "name": "Connectors", + "id": 2449807, + "node_id": "MDQ6VGVhbTI0NDk4MDc=", + "slug": "connectors", + "description": "The team to look into office 365 connector", + "privacy": "closed", + "url": "https://api.github.com/teams/2449807", + "html_url": "https://github.com/orgs/jenkinsci/teams/connectors", + "members_url": "https://api.github.com/teams/2449807/members{/member}", + "repositories_url": "https://api.github.com/teams/2449807/repos", + "permission": "pull" + }, + { + "name": "sentry-plugin-team Developers", + "id": 2465032, + "node_id": "MDQ6VGVhbTI0NjUwMzI=", + "slug": "sentry-plugin-team-developers", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2465032", + "html_url": "https://github.com/orgs/jenkinsci/teams/sentry-plugin-team-developers", + "members_url": "https://api.github.com/teams/2465032/members{/member}", + "repositories_url": "https://api.github.com/teams/2465032/repos", + "permission": "pull" + }, + { + "name": "JEP Editors", + "id": 2478842, + "node_id": "MDQ6VGVhbTI0Nzg4NDI=", + "slug": "jep-editors", + "description": "Editors for Jenkins Enhancement Proposals", + "privacy": "closed", + "url": "https://api.github.com/teams/2478842", + "html_url": "https://github.com/orgs/jenkinsci/teams/jep-editors", + "members_url": "https://api.github.com/teams/2478842/members{/member}", + "repositories_url": "https://api.github.com/teams/2478842/repos", + "permission": "pull" + }, + { + "name": "compuware-common-configuration-plugin Developers", + "id": 2491391, + "node_id": "MDQ6VGVhbTI0OTEzOTE=", + "slug": "compuware-common-configuration-plugin-developers", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2491391", + "html_url": "https://github.com/orgs/jenkinsci/teams/compuware-common-configuration-plugin-developers", + "members_url": "https://api.github.com/teams/2491391/members{/member}", + "repositories_url": "https://api.github.com/teams/2491391/repos", + "permission": "pull" + }, + { + "name": "pipeline-unit Developers", + "id": 2507119, + "node_id": "MDQ6VGVhbTI1MDcxMTk=", + "slug": "pipeline-unit-developers", + "description": "Pipeline Unit Developers", + "privacy": "closed", + "url": "https://api.github.com/teams/2507119", + "html_url": "https://github.com/orgs/jenkinsci/teams/pipeline-unit-developers", + "members_url": "https://api.github.com/teams/2507119/members{/member}", + "repositories_url": "https://api.github.com/teams/2507119/repos", + "permission": "pull" + }, + { + "name": "hacktoberfest", + "id": 2509105, + "node_id": "MDQ6VGVhbTI1MDkxMDU=", + "slug": "hacktoberfest", + "description": "Hacktoberfest Support Team (ping for code reviews, etc.)", + "privacy": "closed", + "url": "https://api.github.com/teams/2509105", + "html_url": "https://github.com/orgs/jenkinsci/teams/hacktoberfest", + "members_url": "https://api.github.com/teams/2509105/members{/member}", + "repositories_url": "https://api.github.com/teams/2509105/repos", + "permission": "pull" + }, + { + "name": "elastest-plugin ci", + "id": 2643393, + "node_id": "MDQ6VGVhbTI2NDMzOTM=", + "slug": "elastest-plugin-ci", + "description": "Team for the user elastestci.", + "privacy": "closed", + "url": "https://api.github.com/teams/2643393", + "html_url": "https://github.com/orgs/jenkinsci/teams/elastest-plugin-ci", + "members_url": "https://api.github.com/teams/2643393/members{/member}", + "repositories_url": "https://api.github.com/teams/2643393/repos", + "permission": "pull" + }, + { + "name": "ISPW Operations Plugin Team", + "id": 2679176, + "node_id": "MDQ6VGVhbTI2NzkxNzY=", + "slug": "ispw-operations-plugin-team", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2679176", + "html_url": "https://github.com/orgs/jenkinsci/teams/ispw-operations-plugin-team", + "members_url": "https://api.github.com/teams/2679176/members{/member}", + "repositories_url": "https://api.github.com/teams/2679176/repos", + "permission": "pull" + }, + { + "name": "git-changelog-plugin contributors", + "id": 2733849, + "node_id": "MDQ6VGVhbTI3MzM4NDk=", + "slug": "git-changelog-plugin-contributors", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2733849", + "html_url": "https://github.com/orgs/jenkinsci/teams/git-changelog-plugin-contributors", + "members_url": "https://api.github.com/teams/2733849/members{/member}", + "repositories_url": "https://api.github.com/teams/2733849/repos", + "permission": "pull" + }, + { + "name": "fireline-dev", + "id": 2776183, + "node_id": "MDQ6VGVhbTI3NzYxODM=", + "slug": "fireline-dev", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2776183", + "html_url": "https://github.com/orgs/jenkinsci/teams/fireline-dev", + "members_url": "https://api.github.com/teams/2776183/members{/member}", + "repositories_url": "https://api.github.com/teams/2776183/repos", + "permission": "pull" + }, + { + "name": "fireline-plugin-jenkins-team", + "id": 2777910, + "node_id": "MDQ6VGVhbTI3Nzc5MTA=", + "slug": "fireline-plugin-jenkins-team", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2777910", + "html_url": "https://github.com/orgs/jenkinsci/teams/fireline-plugin-jenkins-team", + "members_url": "https://api.github.com/teams/2777910/members{/member}", + "repositories_url": "https://api.github.com/teams/2777910/repos", + "permission": "pull" + }, + { + "name": "SIG Platform", + "id": 2796281, + "node_id": "MDQ6VGVhbTI3OTYyODE=", + "slug": "sig-platform", + "description": "Platform SIG: Java 11 support, OS support and packaging", + "privacy": "closed", + "url": "https://api.github.com/teams/2796281", + "html_url": "https://github.com/orgs/jenkinsci/teams/sig-platform", + "members_url": "https://api.github.com/teams/2796281/members{/member}", + "repositories_url": "https://api.github.com/teams/2796281/repos", + "permission": "pull" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkinsci_teams-acf98bee-b6c1-4f33-b62e-f86b8d5445fe.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkinsci_teams-acf98bee-b6c1-4f33-b62e-f86b8d5445fe.json new file mode 100644 index 0000000000..1d8d4c56aa --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkinsci_teams-acf98bee-b6c1-4f33-b62e-f86b8d5445fe.json @@ -0,0 +1,392 @@ +[ + { + "name": "Core", + "id": 25280, + "node_id": "MDQ6VGVhbTI1Mjgw", + "slug": "core", + "description": "Group of Jenkins core contributors with Merge permissions", + "privacy": "closed", + "url": "https://api.github.com/teams/25280", + "html_url": "https://github.com/orgs/jenkinsci/teams/core", + "members_url": "https://api.github.com/teams/25280/members{/member}", + "repositories_url": "https://api.github.com/teams/25280/repos", + "permission": "pull" + }, + { + "name": "ghprb-plugin Developers", + "id": 239968, + "node_id": "MDQ6VGVhbTIzOTk2OA==", + "slug": "ghprb-plugin-developers", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/239968", + "html_url": "https://github.com/orgs/jenkinsci/teams/ghprb-plugin-developers", + "members_url": "https://api.github.com/teams/239968/members{/member}", + "repositories_url": "https://api.github.com/teams/239968/repos", + "permission": "pull" + }, + { + "name": "scm-api-plugin Developers", + "id": 496711, + "node_id": "MDQ6VGVhbTQ5NjcxMQ==", + "slug": "scm-api-plugin-developers", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/496711", + "html_url": "https://github.com/orgs/jenkinsci/teams/scm-api-plugin-developers", + "members_url": "https://api.github.com/teams/496711/members{/member}", + "repositories_url": "https://api.github.com/teams/496711/repos", + "permission": "pull" + }, + { + "name": "script-security-plugin Developers", + "id": 711073, + "node_id": "MDQ6VGVhbTcxMTA3Mw==", + "slug": "script-security-plugin-developers", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/711073", + "html_url": "https://github.com/orgs/jenkinsci/teams/script-security-plugin-developers", + "members_url": "https://api.github.com/teams/711073/members{/member}", + "repositories_url": "https://api.github.com/teams/711073/repos", + "permission": "pull" + }, + { + "name": "github-branch-source-plugin Developers", + "id": 1809126, + "node_id": "MDQ6VGVhbTE4MDkxMjY=", + "slug": "github-branch-source-plugin-developers", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/1809126", + "html_url": "https://github.com/orgs/jenkinsci/teams/github-branch-source-plugin-developers", + "members_url": "https://api.github.com/teams/1809126/members{/member}", + "repositories_url": "https://api.github.com/teams/1809126/repos", + "permission": "pull" + }, + { + "name": "Code Reviewers", + "id": 1885543, + "node_id": "MDQ6VGVhbTE4ODU1NDM=", + "slug": "code-reviewers", + "description": "Volunteers who review code in core or any plugin hosted in the jenkinsci organization when requested – used for notifications only, no associated repos.", + "privacy": "closed", + "url": "https://api.github.com/teams/1885543", + "html_url": "https://github.com/orgs/jenkinsci/teams/code-reviewers", + "members_url": "https://api.github.com/teams/1885543/members{/member}", + "repositories_url": "https://api.github.com/teams/1885543/repos", + "permission": "pull" + }, + { + "name": "Translators", + "id": 1900343, + "node_id": "MDQ6VGVhbTE5MDAzNDM=", + "slug": "translators", + "description": "Volunteers contributing to localization of Jenkins and plugins. Mention this team whever you add or change localizable resources.", + "privacy": "closed", + "url": "https://api.github.com/teams/1900343", + "html_url": "https://github.com/orgs/jenkinsci/teams/translators", + "members_url": "https://api.github.com/teams/1900343/members{/member}", + "repositories_url": "https://api.github.com/teams/1900343/repos", + "permission": "pull" + }, + { + "name": "one-shot-executor-plugin", + "id": 1946159, + "node_id": "MDQ6VGVhbTE5NDYxNTk=", + "slug": "one-shot-executor-plugin", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/1946159", + "html_url": "https://github.com/orgs/jenkinsci/teams/one-shot-executor-plugin", + "members_url": "https://api.github.com/teams/1946159/members{/member}", + "repositories_url": "https://api.github.com/teams/1946159/repos", + "permission": "pull" + }, + { + "name": "cloud-stats-plugin Developers", + "id": 1972502, + "node_id": "MDQ6VGVhbTE5NzI1MDI=", + "slug": "cloud-stats-plugin-developers", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/1972502", + "html_url": "https://github.com/orgs/jenkinsci/teams/cloud-stats-plugin-developers", + "members_url": "https://api.github.com/teams/1972502/members{/member}", + "repositories_url": "https://api.github.com/teams/1972502/repos", + "permission": "pull" + }, + { + "name": "workflow-step-api-plugin Developers", + "id": 1986665, + "node_id": "MDQ6VGVhbTE5ODY2NjU=", + "slug": "workflow-step-api-plugin-developers", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/1986665", + "html_url": "https://github.com/orgs/jenkinsci/teams/workflow-step-api-plugin-developers", + "members_url": "https://api.github.com/teams/1986665/members{/member}", + "repositories_url": "https://api.github.com/teams/1986665/repos", + "permission": "pull" + }, + { + "name": "workflow-cps-plugin Developers", + "id": 1986920, + "node_id": "MDQ6VGVhbTE5ODY5MjA=", + "slug": "workflow-cps-plugin-developers", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/1986920", + "html_url": "https://github.com/orgs/jenkinsci/teams/workflow-cps-plugin-developers", + "members_url": "https://api.github.com/teams/1986920/members{/member}", + "repositories_url": "https://api.github.com/teams/1986920/repos", + "permission": "pull" + }, + { + "name": "GSoC 2016 Org Admins", + "id": 2030027, + "node_id": "MDQ6VGVhbTIwMzAwMjc=", + "slug": "gsoc-2016-org-admins", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2030027", + "html_url": "https://github.com/orgs/jenkinsci/teams/gsoc-2016-org-admins", + "members_url": "https://api.github.com/teams/2030027/members{/member}", + "repositories_url": "https://api.github.com/teams/2030027/repos", + "permission": "pull" + }, + { + "name": "board", + "id": 2063624, + "node_id": "MDQ6VGVhbTIwNjM2MjQ=", + "slug": "board", + "description": "Jenkins governance board", + "privacy": "closed", + "url": "https://api.github.com/teams/2063624", + "html_url": "https://github.com/orgs/jenkinsci/teams/board", + "members_url": "https://api.github.com/teams/2063624/members{/member}", + "repositories_url": "https://api.github.com/teams/2063624/repos", + "permission": "pull" + }, + { + "name": "docker", + "id": 2097811, + "node_id": "MDQ6VGVhbTIwOTc4MTE=", + "slug": "docker", + "description": "Official Docker image maintainers", + "privacy": "closed", + "url": "https://api.github.com/teams/2097811", + "html_url": "https://github.com/orgs/jenkinsci/teams/docker", + "members_url": "https://api.github.com/teams/2097811/members{/member}", + "repositories_url": "https://api.github.com/teams/2097811/repos", + "permission": "pull" + }, + { + "name": "pipeline-model-definition-plugin Developers", + "id": 2185547, + "node_id": "MDQ6VGVhbTIxODU1NDc=", + "slug": "pipeline-model-definition-plugin-developers", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/2185547", + "html_url": "https://github.com/orgs/jenkinsci/teams/pipeline-model-definition-plugin-developers", + "members_url": "https://api.github.com/teams/2185547/members{/member}", + "repositories_url": "https://api.github.com/teams/2185547/repos", + "permission": "pull" + }, + { + "name": "zanata plugin", + "id": 2250908, + "node_id": "MDQ6VGVhbTIyNTA5MDg=", + "slug": "zanata-plugin", + "description": "zanata.org", + "privacy": "closed", + "url": "https://api.github.com/teams/2250908", + "html_url": "https://github.com/orgs/jenkinsci/teams/zanata-plugin", + "members_url": "https://api.github.com/teams/2250908/members{/member}", + "repositories_url": "https://api.github.com/teams/2250908/repos", + "permission": "pull" + }, + { + "name": "docker-packaging-team", + "id": 2277925, + "node_id": "MDQ6VGVhbTIyNzc5MjU=", + "slug": "docker-packaging-team", + "description": "Docker Packaging Team", + "privacy": "closed", + "url": "https://api.github.com/teams/2277925", + "html_url": "https://github.com/orgs/jenkinsci/teams/docker-packaging-team", + "members_url": "https://api.github.com/teams/2277925/members{/member}", + "repositories_url": "https://api.github.com/teams/2277925/repos", + "permission": "pull" + }, + { + "name": "declarative-rfc-reviewers", + "id": 2300722, + "node_id": "MDQ6VGVhbTIzMDA3MjI=", + "slug": "declarative-rfc-reviewers", + "description": "Declarative RFC Reviewers", + "privacy": "closed", + "url": "https://api.github.com/teams/2300722", + "html_url": "https://github.com/orgs/jenkinsci/teams/declarative-rfc-reviewers", + "members_url": "https://api.github.com/teams/2300722/members{/member}", + "repositories_url": "https://api.github.com/teams/2300722/repos", + "permission": "pull" + }, + { + "name": "Connectors", + "id": 2449807, + "node_id": "MDQ6VGVhbTI0NDk4MDc=", + "slug": "connectors", + "description": "The team to look into office 365 connector", + "privacy": "closed", + "url": "https://api.github.com/teams/2449807", + "html_url": "https://github.com/orgs/jenkinsci/teams/connectors", + "members_url": "https://api.github.com/teams/2449807/members{/member}", + "repositories_url": "https://api.github.com/teams/2449807/repos", + "permission": "pull" + }, + { + "name": "sentry-plugin-team Developers", + "id": 2465032, + "node_id": "MDQ6VGVhbTI0NjUwMzI=", + "slug": "sentry-plugin-team-developers", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2465032", + "html_url": "https://github.com/orgs/jenkinsci/teams/sentry-plugin-team-developers", + "members_url": "https://api.github.com/teams/2465032/members{/member}", + "repositories_url": "https://api.github.com/teams/2465032/repos", + "permission": "pull" + }, + { + "name": "JEP Editors", + "id": 2478842, + "node_id": "MDQ6VGVhbTI0Nzg4NDI=", + "slug": "jep-editors", + "description": "Editors for Jenkins Enhancement Proposals", + "privacy": "closed", + "url": "https://api.github.com/teams/2478842", + "html_url": "https://github.com/orgs/jenkinsci/teams/jep-editors", + "members_url": "https://api.github.com/teams/2478842/members{/member}", + "repositories_url": "https://api.github.com/teams/2478842/repos", + "permission": "pull" + }, + { + "name": "compuware-common-configuration-plugin Developers", + "id": 2491391, + "node_id": "MDQ6VGVhbTI0OTEzOTE=", + "slug": "compuware-common-configuration-plugin-developers", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2491391", + "html_url": "https://github.com/orgs/jenkinsci/teams/compuware-common-configuration-plugin-developers", + "members_url": "https://api.github.com/teams/2491391/members{/member}", + "repositories_url": "https://api.github.com/teams/2491391/repos", + "permission": "pull" + }, + { + "name": "pipeline-unit Developers", + "id": 2507119, + "node_id": "MDQ6VGVhbTI1MDcxMTk=", + "slug": "pipeline-unit-developers", + "description": "Pipeline Unit Developers", + "privacy": "closed", + "url": "https://api.github.com/teams/2507119", + "html_url": "https://github.com/orgs/jenkinsci/teams/pipeline-unit-developers", + "members_url": "https://api.github.com/teams/2507119/members{/member}", + "repositories_url": "https://api.github.com/teams/2507119/repos", + "permission": "pull" + }, + { + "name": "hacktoberfest", + "id": 2509105, + "node_id": "MDQ6VGVhbTI1MDkxMDU=", + "slug": "hacktoberfest", + "description": "Hacktoberfest Support Team (ping for code reviews, etc.)", + "privacy": "closed", + "url": "https://api.github.com/teams/2509105", + "html_url": "https://github.com/orgs/jenkinsci/teams/hacktoberfest", + "members_url": "https://api.github.com/teams/2509105/members{/member}", + "repositories_url": "https://api.github.com/teams/2509105/repos", + "permission": "pull" + }, + { + "name": "elastest-plugin ci", + "id": 2643393, + "node_id": "MDQ6VGVhbTI2NDMzOTM=", + "slug": "elastest-plugin-ci", + "description": "Team for the user elastestci.", + "privacy": "closed", + "url": "https://api.github.com/teams/2643393", + "html_url": "https://github.com/orgs/jenkinsci/teams/elastest-plugin-ci", + "members_url": "https://api.github.com/teams/2643393/members{/member}", + "repositories_url": "https://api.github.com/teams/2643393/repos", + "permission": "pull" + }, + { + "name": "ISPW Operations Plugin Team", + "id": 2679176, + "node_id": "MDQ6VGVhbTI2NzkxNzY=", + "slug": "ispw-operations-plugin-team", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2679176", + "html_url": "https://github.com/orgs/jenkinsci/teams/ispw-operations-plugin-team", + "members_url": "https://api.github.com/teams/2679176/members{/member}", + "repositories_url": "https://api.github.com/teams/2679176/repos", + "permission": "pull" + }, + { + "name": "git-changelog-plugin contributors", + "id": 2733849, + "node_id": "MDQ6VGVhbTI3MzM4NDk=", + "slug": "git-changelog-plugin-contributors", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2733849", + "html_url": "https://github.com/orgs/jenkinsci/teams/git-changelog-plugin-contributors", + "members_url": "https://api.github.com/teams/2733849/members{/member}", + "repositories_url": "https://api.github.com/teams/2733849/repos", + "permission": "pull" + }, + { + "name": "fireline-dev", + "id": 2776183, + "node_id": "MDQ6VGVhbTI3NzYxODM=", + "slug": "fireline-dev", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2776183", + "html_url": "https://github.com/orgs/jenkinsci/teams/fireline-dev", + "members_url": "https://api.github.com/teams/2776183/members{/member}", + "repositories_url": "https://api.github.com/teams/2776183/repos", + "permission": "pull" + }, + { + "name": "fireline-plugin-jenkins-team", + "id": 2777910, + "node_id": "MDQ6VGVhbTI3Nzc5MTA=", + "slug": "fireline-plugin-jenkins-team", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2777910", + "html_url": "https://github.com/orgs/jenkinsci/teams/fireline-plugin-jenkins-team", + "members_url": "https://api.github.com/teams/2777910/members{/member}", + "repositories_url": "https://api.github.com/teams/2777910/repos", + "permission": "pull" + }, + { + "name": "SIG Platform", + "id": 2796281, + "node_id": "MDQ6VGVhbTI3OTYyODE=", + "slug": "sig-platform", + "description": "Platform SIG: Java 11 support, OS support and packaging", + "privacy": "closed", + "url": "https://api.github.com/teams/2796281", + "html_url": "https://github.com/orgs/jenkinsci/teams/sig-platform", + "members_url": "https://api.github.com/teams/2796281/members{/member}", + "repositories_url": "https://api.github.com/teams/2796281/repos", + "permission": "pull" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkinsci_teams-bedcaedb-24fc-4a6e-a099-b64fd26d4e97.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkinsci_teams-bedcaedb-24fc-4a6e-a099-b64fd26d4e97.json new file mode 100644 index 0000000000..1d8d4c56aa --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkinsci_teams-bedcaedb-24fc-4a6e-a099-b64fd26d4e97.json @@ -0,0 +1,392 @@ +[ + { + "name": "Core", + "id": 25280, + "node_id": "MDQ6VGVhbTI1Mjgw", + "slug": "core", + "description": "Group of Jenkins core contributors with Merge permissions", + "privacy": "closed", + "url": "https://api.github.com/teams/25280", + "html_url": "https://github.com/orgs/jenkinsci/teams/core", + "members_url": "https://api.github.com/teams/25280/members{/member}", + "repositories_url": "https://api.github.com/teams/25280/repos", + "permission": "pull" + }, + { + "name": "ghprb-plugin Developers", + "id": 239968, + "node_id": "MDQ6VGVhbTIzOTk2OA==", + "slug": "ghprb-plugin-developers", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/239968", + "html_url": "https://github.com/orgs/jenkinsci/teams/ghprb-plugin-developers", + "members_url": "https://api.github.com/teams/239968/members{/member}", + "repositories_url": "https://api.github.com/teams/239968/repos", + "permission": "pull" + }, + { + "name": "scm-api-plugin Developers", + "id": 496711, + "node_id": "MDQ6VGVhbTQ5NjcxMQ==", + "slug": "scm-api-plugin-developers", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/496711", + "html_url": "https://github.com/orgs/jenkinsci/teams/scm-api-plugin-developers", + "members_url": "https://api.github.com/teams/496711/members{/member}", + "repositories_url": "https://api.github.com/teams/496711/repos", + "permission": "pull" + }, + { + "name": "script-security-plugin Developers", + "id": 711073, + "node_id": "MDQ6VGVhbTcxMTA3Mw==", + "slug": "script-security-plugin-developers", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/711073", + "html_url": "https://github.com/orgs/jenkinsci/teams/script-security-plugin-developers", + "members_url": "https://api.github.com/teams/711073/members{/member}", + "repositories_url": "https://api.github.com/teams/711073/repos", + "permission": "pull" + }, + { + "name": "github-branch-source-plugin Developers", + "id": 1809126, + "node_id": "MDQ6VGVhbTE4MDkxMjY=", + "slug": "github-branch-source-plugin-developers", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/1809126", + "html_url": "https://github.com/orgs/jenkinsci/teams/github-branch-source-plugin-developers", + "members_url": "https://api.github.com/teams/1809126/members{/member}", + "repositories_url": "https://api.github.com/teams/1809126/repos", + "permission": "pull" + }, + { + "name": "Code Reviewers", + "id": 1885543, + "node_id": "MDQ6VGVhbTE4ODU1NDM=", + "slug": "code-reviewers", + "description": "Volunteers who review code in core or any plugin hosted in the jenkinsci organization when requested – used for notifications only, no associated repos.", + "privacy": "closed", + "url": "https://api.github.com/teams/1885543", + "html_url": "https://github.com/orgs/jenkinsci/teams/code-reviewers", + "members_url": "https://api.github.com/teams/1885543/members{/member}", + "repositories_url": "https://api.github.com/teams/1885543/repos", + "permission": "pull" + }, + { + "name": "Translators", + "id": 1900343, + "node_id": "MDQ6VGVhbTE5MDAzNDM=", + "slug": "translators", + "description": "Volunteers contributing to localization of Jenkins and plugins. Mention this team whever you add or change localizable resources.", + "privacy": "closed", + "url": "https://api.github.com/teams/1900343", + "html_url": "https://github.com/orgs/jenkinsci/teams/translators", + "members_url": "https://api.github.com/teams/1900343/members{/member}", + "repositories_url": "https://api.github.com/teams/1900343/repos", + "permission": "pull" + }, + { + "name": "one-shot-executor-plugin", + "id": 1946159, + "node_id": "MDQ6VGVhbTE5NDYxNTk=", + "slug": "one-shot-executor-plugin", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/1946159", + "html_url": "https://github.com/orgs/jenkinsci/teams/one-shot-executor-plugin", + "members_url": "https://api.github.com/teams/1946159/members{/member}", + "repositories_url": "https://api.github.com/teams/1946159/repos", + "permission": "pull" + }, + { + "name": "cloud-stats-plugin Developers", + "id": 1972502, + "node_id": "MDQ6VGVhbTE5NzI1MDI=", + "slug": "cloud-stats-plugin-developers", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/1972502", + "html_url": "https://github.com/orgs/jenkinsci/teams/cloud-stats-plugin-developers", + "members_url": "https://api.github.com/teams/1972502/members{/member}", + "repositories_url": "https://api.github.com/teams/1972502/repos", + "permission": "pull" + }, + { + "name": "workflow-step-api-plugin Developers", + "id": 1986665, + "node_id": "MDQ6VGVhbTE5ODY2NjU=", + "slug": "workflow-step-api-plugin-developers", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/1986665", + "html_url": "https://github.com/orgs/jenkinsci/teams/workflow-step-api-plugin-developers", + "members_url": "https://api.github.com/teams/1986665/members{/member}", + "repositories_url": "https://api.github.com/teams/1986665/repos", + "permission": "pull" + }, + { + "name": "workflow-cps-plugin Developers", + "id": 1986920, + "node_id": "MDQ6VGVhbTE5ODY5MjA=", + "slug": "workflow-cps-plugin-developers", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/1986920", + "html_url": "https://github.com/orgs/jenkinsci/teams/workflow-cps-plugin-developers", + "members_url": "https://api.github.com/teams/1986920/members{/member}", + "repositories_url": "https://api.github.com/teams/1986920/repos", + "permission": "pull" + }, + { + "name": "GSoC 2016 Org Admins", + "id": 2030027, + "node_id": "MDQ6VGVhbTIwMzAwMjc=", + "slug": "gsoc-2016-org-admins", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2030027", + "html_url": "https://github.com/orgs/jenkinsci/teams/gsoc-2016-org-admins", + "members_url": "https://api.github.com/teams/2030027/members{/member}", + "repositories_url": "https://api.github.com/teams/2030027/repos", + "permission": "pull" + }, + { + "name": "board", + "id": 2063624, + "node_id": "MDQ6VGVhbTIwNjM2MjQ=", + "slug": "board", + "description": "Jenkins governance board", + "privacy": "closed", + "url": "https://api.github.com/teams/2063624", + "html_url": "https://github.com/orgs/jenkinsci/teams/board", + "members_url": "https://api.github.com/teams/2063624/members{/member}", + "repositories_url": "https://api.github.com/teams/2063624/repos", + "permission": "pull" + }, + { + "name": "docker", + "id": 2097811, + "node_id": "MDQ6VGVhbTIwOTc4MTE=", + "slug": "docker", + "description": "Official Docker image maintainers", + "privacy": "closed", + "url": "https://api.github.com/teams/2097811", + "html_url": "https://github.com/orgs/jenkinsci/teams/docker", + "members_url": "https://api.github.com/teams/2097811/members{/member}", + "repositories_url": "https://api.github.com/teams/2097811/repos", + "permission": "pull" + }, + { + "name": "pipeline-model-definition-plugin Developers", + "id": 2185547, + "node_id": "MDQ6VGVhbTIxODU1NDc=", + "slug": "pipeline-model-definition-plugin-developers", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/2185547", + "html_url": "https://github.com/orgs/jenkinsci/teams/pipeline-model-definition-plugin-developers", + "members_url": "https://api.github.com/teams/2185547/members{/member}", + "repositories_url": "https://api.github.com/teams/2185547/repos", + "permission": "pull" + }, + { + "name": "zanata plugin", + "id": 2250908, + "node_id": "MDQ6VGVhbTIyNTA5MDg=", + "slug": "zanata-plugin", + "description": "zanata.org", + "privacy": "closed", + "url": "https://api.github.com/teams/2250908", + "html_url": "https://github.com/orgs/jenkinsci/teams/zanata-plugin", + "members_url": "https://api.github.com/teams/2250908/members{/member}", + "repositories_url": "https://api.github.com/teams/2250908/repos", + "permission": "pull" + }, + { + "name": "docker-packaging-team", + "id": 2277925, + "node_id": "MDQ6VGVhbTIyNzc5MjU=", + "slug": "docker-packaging-team", + "description": "Docker Packaging Team", + "privacy": "closed", + "url": "https://api.github.com/teams/2277925", + "html_url": "https://github.com/orgs/jenkinsci/teams/docker-packaging-team", + "members_url": "https://api.github.com/teams/2277925/members{/member}", + "repositories_url": "https://api.github.com/teams/2277925/repos", + "permission": "pull" + }, + { + "name": "declarative-rfc-reviewers", + "id": 2300722, + "node_id": "MDQ6VGVhbTIzMDA3MjI=", + "slug": "declarative-rfc-reviewers", + "description": "Declarative RFC Reviewers", + "privacy": "closed", + "url": "https://api.github.com/teams/2300722", + "html_url": "https://github.com/orgs/jenkinsci/teams/declarative-rfc-reviewers", + "members_url": "https://api.github.com/teams/2300722/members{/member}", + "repositories_url": "https://api.github.com/teams/2300722/repos", + "permission": "pull" + }, + { + "name": "Connectors", + "id": 2449807, + "node_id": "MDQ6VGVhbTI0NDk4MDc=", + "slug": "connectors", + "description": "The team to look into office 365 connector", + "privacy": "closed", + "url": "https://api.github.com/teams/2449807", + "html_url": "https://github.com/orgs/jenkinsci/teams/connectors", + "members_url": "https://api.github.com/teams/2449807/members{/member}", + "repositories_url": "https://api.github.com/teams/2449807/repos", + "permission": "pull" + }, + { + "name": "sentry-plugin-team Developers", + "id": 2465032, + "node_id": "MDQ6VGVhbTI0NjUwMzI=", + "slug": "sentry-plugin-team-developers", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2465032", + "html_url": "https://github.com/orgs/jenkinsci/teams/sentry-plugin-team-developers", + "members_url": "https://api.github.com/teams/2465032/members{/member}", + "repositories_url": "https://api.github.com/teams/2465032/repos", + "permission": "pull" + }, + { + "name": "JEP Editors", + "id": 2478842, + "node_id": "MDQ6VGVhbTI0Nzg4NDI=", + "slug": "jep-editors", + "description": "Editors for Jenkins Enhancement Proposals", + "privacy": "closed", + "url": "https://api.github.com/teams/2478842", + "html_url": "https://github.com/orgs/jenkinsci/teams/jep-editors", + "members_url": "https://api.github.com/teams/2478842/members{/member}", + "repositories_url": "https://api.github.com/teams/2478842/repos", + "permission": "pull" + }, + { + "name": "compuware-common-configuration-plugin Developers", + "id": 2491391, + "node_id": "MDQ6VGVhbTI0OTEzOTE=", + "slug": "compuware-common-configuration-plugin-developers", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2491391", + "html_url": "https://github.com/orgs/jenkinsci/teams/compuware-common-configuration-plugin-developers", + "members_url": "https://api.github.com/teams/2491391/members{/member}", + "repositories_url": "https://api.github.com/teams/2491391/repos", + "permission": "pull" + }, + { + "name": "pipeline-unit Developers", + "id": 2507119, + "node_id": "MDQ6VGVhbTI1MDcxMTk=", + "slug": "pipeline-unit-developers", + "description": "Pipeline Unit Developers", + "privacy": "closed", + "url": "https://api.github.com/teams/2507119", + "html_url": "https://github.com/orgs/jenkinsci/teams/pipeline-unit-developers", + "members_url": "https://api.github.com/teams/2507119/members{/member}", + "repositories_url": "https://api.github.com/teams/2507119/repos", + "permission": "pull" + }, + { + "name": "hacktoberfest", + "id": 2509105, + "node_id": "MDQ6VGVhbTI1MDkxMDU=", + "slug": "hacktoberfest", + "description": "Hacktoberfest Support Team (ping for code reviews, etc.)", + "privacy": "closed", + "url": "https://api.github.com/teams/2509105", + "html_url": "https://github.com/orgs/jenkinsci/teams/hacktoberfest", + "members_url": "https://api.github.com/teams/2509105/members{/member}", + "repositories_url": "https://api.github.com/teams/2509105/repos", + "permission": "pull" + }, + { + "name": "elastest-plugin ci", + "id": 2643393, + "node_id": "MDQ6VGVhbTI2NDMzOTM=", + "slug": "elastest-plugin-ci", + "description": "Team for the user elastestci.", + "privacy": "closed", + "url": "https://api.github.com/teams/2643393", + "html_url": "https://github.com/orgs/jenkinsci/teams/elastest-plugin-ci", + "members_url": "https://api.github.com/teams/2643393/members{/member}", + "repositories_url": "https://api.github.com/teams/2643393/repos", + "permission": "pull" + }, + { + "name": "ISPW Operations Plugin Team", + "id": 2679176, + "node_id": "MDQ6VGVhbTI2NzkxNzY=", + "slug": "ispw-operations-plugin-team", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2679176", + "html_url": "https://github.com/orgs/jenkinsci/teams/ispw-operations-plugin-team", + "members_url": "https://api.github.com/teams/2679176/members{/member}", + "repositories_url": "https://api.github.com/teams/2679176/repos", + "permission": "pull" + }, + { + "name": "git-changelog-plugin contributors", + "id": 2733849, + "node_id": "MDQ6VGVhbTI3MzM4NDk=", + "slug": "git-changelog-plugin-contributors", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2733849", + "html_url": "https://github.com/orgs/jenkinsci/teams/git-changelog-plugin-contributors", + "members_url": "https://api.github.com/teams/2733849/members{/member}", + "repositories_url": "https://api.github.com/teams/2733849/repos", + "permission": "pull" + }, + { + "name": "fireline-dev", + "id": 2776183, + "node_id": "MDQ6VGVhbTI3NzYxODM=", + "slug": "fireline-dev", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2776183", + "html_url": "https://github.com/orgs/jenkinsci/teams/fireline-dev", + "members_url": "https://api.github.com/teams/2776183/members{/member}", + "repositories_url": "https://api.github.com/teams/2776183/repos", + "permission": "pull" + }, + { + "name": "fireline-plugin-jenkins-team", + "id": 2777910, + "node_id": "MDQ6VGVhbTI3Nzc5MTA=", + "slug": "fireline-plugin-jenkins-team", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2777910", + "html_url": "https://github.com/orgs/jenkinsci/teams/fireline-plugin-jenkins-team", + "members_url": "https://api.github.com/teams/2777910/members{/member}", + "repositories_url": "https://api.github.com/teams/2777910/repos", + "permission": "pull" + }, + { + "name": "SIG Platform", + "id": 2796281, + "node_id": "MDQ6VGVhbTI3OTYyODE=", + "slug": "sig-platform", + "description": "Platform SIG: Java 11 support, OS support and packaging", + "privacy": "closed", + "url": "https://api.github.com/teams/2796281", + "html_url": "https://github.com/orgs/jenkinsci/teams/sig-platform", + "members_url": "https://api.github.com/teams/2796281/members{/member}", + "repositories_url": "https://api.github.com/teams/2796281/repos", + "permission": "pull" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/user-9a793342-57f8-4135-bd51-f0f96e57d45b.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/user-9a793342-57f8-4135-bd51-f0f96e57d45b.json new file mode 100644 index 0000000000..41fc9e3d00 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/user-9a793342-57f8-4135-bd51-f0f96e57d45b.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 168, + "public_gists": 4, + "followers": 136, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/user_teams-d60dafe1-79c4-4212-9544-739b7ee976b9.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/user_teams-d60dafe1-79c4-4212-9544-739b7ee976b9.json new file mode 100644 index 0000000000..4081f5b6d9 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/user_teams-d60dafe1-79c4-4212-9544-739b7ee976b9.json @@ -0,0 +1,1256 @@ +[ + { + "name": "scm-api-plugin Developers", + "id": 496711, + "node_id": "MDQ6VGVhbTQ5NjcxMQ==", + "slug": "scm-api-plugin-developers", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/496711", + "html_url": "https://github.com/orgs/jenkinsci/teams/scm-api-plugin-developers", + "members_url": "https://api.github.com/teams/496711/members{/member}", + "repositories_url": "https://api.github.com/teams/496711/repos", + "permission": "pull", + "created_at": "2013-09-09T21:29:09Z", + "updated_at": "2015-12-15T16:43:11Z", + "members_count": 4, + "repos_count": 1, + "organization": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "url": "https://api.github.com/orgs/jenkinsci", + "repos_url": "https://api.github.com/orgs/jenkinsci/repos", + "events_url": "https://api.github.com/orgs/jenkinsci/events", + "hooks_url": "https://api.github.com/orgs/jenkinsci/hooks", + "issues_url": "https://api.github.com/orgs/jenkinsci/issues", + "members_url": "https://api.github.com/orgs/jenkinsci/members{/member}", + "public_members_url": "https://api.github.com/orgs/jenkinsci/public_members{/member}", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "description": "Jenkins is an open source automation server with an unparalleled plugin ecosystem to support practically every tool as part of your delivery pipelines", + "name": "Jenkins", + "company": null, + "blog": "https://jenkins.io", + "location": "Santa Clara, CA", + "email": "jenkinsci-users@googlegroups.com", + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 2192, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/jenkinsci", + "created_at": "2009-07-21T21:03:50Z", + "updated_at": "2019-02-25T15:26:10Z", + "type": "Organization" + } + }, + { + "name": "Owners", + "id": 663296, + "node_id": "MDQ6VGVhbTY2MzI5Ng==", + "slug": "owners", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/663296", + "html_url": "https://github.com/orgs/beautify-web/teams/owners", + "members_url": "https://api.github.com/teams/663296/members{/member}", + "repositories_url": "https://api.github.com/teams/663296/repos", + "permission": "admin", + "created_at": "2014-01-29T19:42:53Z", + "updated_at": "2014-01-29T19:42:53Z", + "members_count": 2, + "repos_count": 1, + "organization": { + "login": "beautify-web", + "id": 6538164, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjY1MzgxNjQ=", + "url": "https://api.github.com/orgs/beautify-web", + "repos_url": "https://api.github.com/orgs/beautify-web/repos", + "events_url": "https://api.github.com/orgs/beautify-web/events", + "hooks_url": "https://api.github.com/orgs/beautify-web/hooks", + "issues_url": "https://api.github.com/orgs/beautify-web/issues", + "members_url": "https://api.github.com/orgs/beautify-web/members{/member}", + "public_members_url": "https://api.github.com/orgs/beautify-web/public_members{/member}", + "avatar_url": "https://avatars1.githubusercontent.com/u/6538164?v=4", + "description": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 1, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/beautify-web", + "created_at": "2014-01-29T19:42:53Z", + "updated_at": "2019-09-20T14:31:51Z", + "type": "Organization" + } + }, + { + "name": "script-security-plugin Developers", + "id": 711073, + "node_id": "MDQ6VGVhbTcxMTA3Mw==", + "slug": "script-security-plugin-developers", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/711073", + "html_url": "https://github.com/orgs/jenkinsci/teams/script-security-plugin-developers", + "members_url": "https://api.github.com/teams/711073/members{/member}", + "repositories_url": "https://api.github.com/teams/711073/repos", + "permission": "pull", + "created_at": "2014-02-28T22:18:37Z", + "updated_at": "2015-12-15T16:43:11Z", + "members_count": 6, + "repos_count": 1, + "organization": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "url": "https://api.github.com/orgs/jenkinsci", + "repos_url": "https://api.github.com/orgs/jenkinsci/repos", + "events_url": "https://api.github.com/orgs/jenkinsci/events", + "hooks_url": "https://api.github.com/orgs/jenkinsci/hooks", + "issues_url": "https://api.github.com/orgs/jenkinsci/issues", + "members_url": "https://api.github.com/orgs/jenkinsci/members{/member}", + "public_members_url": "https://api.github.com/orgs/jenkinsci/public_members{/member}", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "description": "Jenkins is an open source automation server with an unparalleled plugin ecosystem to support practically every tool as part of your delivery pipelines", + "name": "Jenkins", + "company": null, + "blog": "https://jenkins.io", + "location": "Santa Clara, CA", + "email": "jenkinsci-users@googlegroups.com", + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 2192, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/jenkinsci", + "created_at": "2009-07-21T21:03:50Z", + "updated_at": "2019-02-25T15:26:10Z", + "type": "Organization" + } + }, + { + "name": "Owners", + "id": 820404, + "node_id": "MDQ6VGVhbTgyMDQwNA==", + "slug": "owners", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/820404", + "html_url": "https://github.com/orgs/github-api-test-org/teams/owners", + "members_url": "https://api.github.com/teams/820404/members{/member}", + "repositories_url": "https://api.github.com/teams/820404/repos", + "permission": "admin", + "created_at": "2014-05-10T19:39:11Z", + "updated_at": "2014-05-10T19:39:11Z", + "members_count": 3, + "repos_count": 6, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "url": "https://api.github.com/orgs/github-api-test-org", + "repos_url": "https://api.github.com/orgs/github-api-test-org/repos", + "events_url": "https://api.github.com/orgs/github-api-test-org/events", + "hooks_url": "https://api.github.com/orgs/github-api-test-org/hooks", + "issues_url": "https://api.github.com/orgs/github-api-test-org/issues", + "members_url": "https://api.github.com/orgs/github-api-test-org/members{/member}", + "public_members_url": "https://api.github.com/orgs/github-api-test-org/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "description": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 9, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/github-api-test-org", + "created_at": "2014-05-10T19:39:11Z", + "updated_at": "2015-04-20T00:42:30Z", + "type": "Organization" + } + }, + { + "name": "team-documentation", + "id": 879403, + "node_id": "MDQ6VGVhbTg3OTQwMw==", + "slug": "team-documentation", + "description": "People who can contribute to documentation", + "privacy": "closed", + "url": "https://api.github.com/teams/879403", + "html_url": "https://github.com/orgs/cloudbees/teams/team-documentation", + "members_url": "https://api.github.com/teams/879403/members{/member}", + "repositories_url": "https://api.github.com/teams/879403/repos", + "permission": "push", + "created_at": "2014-06-19T14:19:24Z", + "updated_at": "2015-08-20T05:46:39Z", + "members_count": 49, + "repos_count": 13, + "organization": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "url": "https://api.github.com/orgs/cloudbees", + "repos_url": "https://api.github.com/orgs/cloudbees/repos", + "events_url": "https://api.github.com/orgs/cloudbees/events", + "hooks_url": "https://api.github.com/orgs/cloudbees/hooks", + "issues_url": "https://api.github.com/orgs/cloudbees/issues", + "members_url": "https://api.github.com/orgs/cloudbees/members{/member}", + "public_members_url": "https://api.github.com/orgs/cloudbees/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "description": "", + "name": "CloudBees", + "company": null, + "blog": "https://www.cloudbees.com/", + "location": null, + "email": null, + "is_verified": true, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 130, + "public_gists": 4, + "followers": 0, + "following": 0, + "html_url": "https://github.com/cloudbees", + "created_at": "2010-04-02T07:24:48Z", + "updated_at": "2018-07-26T22:36:42Z", + "type": "Organization" + } + }, + { + "name": "team-infra-cloudbees-employees", + "id": 1450069, + "node_id": "MDQ6VGVhbTE0NTAwNjk=", + "slug": "team-infra-cloudbees-employees", + "description": "CloudBees employees - simple group that grants read access.", + "privacy": "closed", + "url": "https://api.github.com/teams/1450069", + "html_url": "https://github.com/orgs/cloudbees/teams/team-infra-cloudbees-employees", + "members_url": "https://api.github.com/teams/1450069/members{/member}", + "repositories_url": "https://api.github.com/teams/1450069/repos", + "permission": "pull", + "created_at": "2015-04-20T12:49:53Z", + "updated_at": "2015-09-26T22:31:23Z", + "members_count": 298, + "repos_count": 579, + "organization": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "url": "https://api.github.com/orgs/cloudbees", + "repos_url": "https://api.github.com/orgs/cloudbees/repos", + "events_url": "https://api.github.com/orgs/cloudbees/events", + "hooks_url": "https://api.github.com/orgs/cloudbees/hooks", + "issues_url": "https://api.github.com/orgs/cloudbees/issues", + "members_url": "https://api.github.com/orgs/cloudbees/members{/member}", + "public_members_url": "https://api.github.com/orgs/cloudbees/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "description": "", + "name": "CloudBees", + "company": null, + "blog": "https://www.cloudbees.com/", + "location": null, + "email": null, + "is_verified": true, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 130, + "public_gists": 4, + "followers": 0, + "following": 0, + "html_url": "https://github.com/cloudbees", + "created_at": "2010-04-02T07:24:48Z", + "updated_at": "2018-07-26T22:36:42Z", + "type": "Organization" + } + }, + { + "name": "github-branch-source-plugin Developers", + "id": 1809126, + "node_id": "MDQ6VGVhbTE4MDkxMjY=", + "slug": "github-branch-source-plugin-developers", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/1809126", + "html_url": "https://github.com/orgs/jenkinsci/teams/github-branch-source-plugin-developers", + "members_url": "https://api.github.com/teams/1809126/members{/member}", + "repositories_url": "https://api.github.com/teams/1809126/repos", + "permission": "pull", + "created_at": "2015-10-08T16:52:29Z", + "updated_at": "2015-12-15T16:43:08Z", + "members_count": 6, + "repos_count": 1, + "organization": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "url": "https://api.github.com/orgs/jenkinsci", + "repos_url": "https://api.github.com/orgs/jenkinsci/repos", + "events_url": "https://api.github.com/orgs/jenkinsci/events", + "hooks_url": "https://api.github.com/orgs/jenkinsci/hooks", + "issues_url": "https://api.github.com/orgs/jenkinsci/issues", + "members_url": "https://api.github.com/orgs/jenkinsci/members{/member}", + "public_members_url": "https://api.github.com/orgs/jenkinsci/public_members{/member}", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "description": "Jenkins is an open source automation server with an unparalleled plugin ecosystem to support practically every tool as part of your delivery pipelines", + "name": "Jenkins", + "company": null, + "blog": "https://jenkins.io", + "location": "Santa Clara, CA", + "email": "jenkinsci-users@googlegroups.com", + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 2192, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/jenkinsci", + "created_at": "2009-07-21T21:03:50Z", + "updated_at": "2019-02-25T15:26:10Z", + "type": "Organization" + } + }, + { + "name": "Copy Editors", + "id": 1882929, + "node_id": "MDQ6VGVhbTE4ODI5Mjk=", + "slug": "copy-editors", + "description": "Team of contributors who can act as reviewers and editors for content", + "privacy": "closed", + "url": "https://api.github.com/teams/1882929", + "html_url": "https://github.com/orgs/jenkins-infra/teams/copy-editors", + "members_url": "https://api.github.com/teams/1882929/members{/member}", + "repositories_url": "https://api.github.com/teams/1882929/repos", + "permission": "pull", + "created_at": "2016-01-04T18:02:41Z", + "updated_at": "2016-01-04T18:02:41Z", + "members_count": 12, + "repos_count": 2, + "organization": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "url": "https://api.github.com/orgs/jenkins-infra", + "repos_url": "https://api.github.com/orgs/jenkins-infra/repos", + "events_url": "https://api.github.com/orgs/jenkins-infra/events", + "hooks_url": "https://api.github.com/orgs/jenkins-infra/hooks", + "issues_url": "https://api.github.com/orgs/jenkins-infra/issues", + "members_url": "https://api.github.com/orgs/jenkins-infra/members{/member}", + "public_members_url": "https://api.github.com/orgs/jenkins-infra/public_members{/member}", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "description": "Repositories owned by the Jenkins project infrastructure team", + "name": "Jenkins Infra", + "company": null, + "blog": null, + "location": null, + "email": "infra@lists.jenkins-ci.org", + "is_verified": false, + "has_organization_projects": false, + "has_repository_projects": false, + "public_repos": 75, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/jenkins-infra", + "created_at": "2014-04-27T19:47:26Z", + "updated_at": "2018-08-07T02:50:50Z", + "type": "Organization" + } + }, + { + "name": "Engineering", + "id": 1941826, + "node_id": "MDQ6VGVhbTE5NDE4MjY=", + "slug": "engineering", + "description": "Jenkins, Inc. engineering team", + "privacy": "closed", + "url": "https://api.github.com/teams/1941826", + "html_url": "https://github.com/orgs/jenkins-inc/teams/engineering", + "members_url": "https://api.github.com/teams/1941826/members{/member}", + "repositories_url": "https://api.github.com/teams/1941826/repos", + "permission": "pull", + "created_at": "2016-02-29T18:10:14Z", + "updated_at": "2016-02-29T18:10:14Z", + "members_count": 9, + "repos_count": 4, + "organization": { + "login": "jenkins-inc", + "id": 17552794, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE3NTUyNzk0", + "url": "https://api.github.com/orgs/jenkins-inc", + "repos_url": "https://api.github.com/orgs/jenkins-inc/repos", + "events_url": "https://api.github.com/orgs/jenkins-inc/events", + "hooks_url": "https://api.github.com/orgs/jenkins-inc/hooks", + "issues_url": "https://api.github.com/orgs/jenkins-inc/issues", + "members_url": "https://api.github.com/orgs/jenkins-inc/members{/member}", + "public_members_url": "https://api.github.com/orgs/jenkins-inc/public_members{/member}", + "avatar_url": "https://avatars0.githubusercontent.com/u/17552794?v=4", + "description": "A fictional company to demonstrate Jenkins capabilities", + "name": "Jenkins, Inc.", + "company": null, + "blog": "http://demo.jenkins-ci.org/", + "location": "Everywhere", + "email": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 7, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/jenkins-inc", + "created_at": "2016-02-29T18:02:13Z", + "updated_at": "2016-02-29T18:11:10Z", + "type": "Organization" + } + }, + { + "name": "workflow-cps-plugin Developers", + "id": 1986920, + "node_id": "MDQ6VGVhbTE5ODY5MjA=", + "slug": "workflow-cps-plugin-developers", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/1986920", + "html_url": "https://github.com/orgs/jenkinsci/teams/workflow-cps-plugin-developers", + "members_url": "https://api.github.com/teams/1986920/members{/member}", + "repositories_url": "https://api.github.com/teams/1986920/repos", + "permission": "pull", + "created_at": "2016-04-05T20:24:45Z", + "updated_at": "2016-09-21T17:56:50Z", + "members_count": 7, + "repos_count": 1, + "organization": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "url": "https://api.github.com/orgs/jenkinsci", + "repos_url": "https://api.github.com/orgs/jenkinsci/repos", + "events_url": "https://api.github.com/orgs/jenkinsci/events", + "hooks_url": "https://api.github.com/orgs/jenkinsci/hooks", + "issues_url": "https://api.github.com/orgs/jenkinsci/issues", + "members_url": "https://api.github.com/orgs/jenkinsci/members{/member}", + "public_members_url": "https://api.github.com/orgs/jenkinsci/public_members{/member}", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "description": "Jenkins is an open source automation server with an unparalleled plugin ecosystem to support practically every tool as part of your delivery pipelines", + "name": "Jenkins", + "company": null, + "blog": "https://jenkins.io", + "location": "Santa Clara, CA", + "email": "jenkinsci-users@googlegroups.com", + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 2192, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/jenkinsci", + "created_at": "2009-07-21T21:03:50Z", + "updated_at": "2019-02-25T15:26:10Z", + "type": "Organization" + } + }, + { + "name": "Legacy Training Contributors", + "id": 2070581, + "node_id": "MDQ6VGVhbTIwNzA1ODE=", + "slug": "legacy-training-contributors", + "description": "", + "privacy": "closed", + "url": "https://api.github.com/teams/2070581", + "html_url": "https://github.com/orgs/cloudbees/teams/legacy-training-contributors", + "members_url": "https://api.github.com/teams/2070581/members{/member}", + "repositories_url": "https://api.github.com/teams/2070581/repos", + "permission": "pull", + "created_at": "2016-07-11T05:03:26Z", + "updated_at": "2019-01-08T18:15:21Z", + "members_count": 12, + "repos_count": 23, + "organization": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "url": "https://api.github.com/orgs/cloudbees", + "repos_url": "https://api.github.com/orgs/cloudbees/repos", + "events_url": "https://api.github.com/orgs/cloudbees/events", + "hooks_url": "https://api.github.com/orgs/cloudbees/hooks", + "issues_url": "https://api.github.com/orgs/cloudbees/issues", + "members_url": "https://api.github.com/orgs/cloudbees/members{/member}", + "public_members_url": "https://api.github.com/orgs/cloudbees/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "description": "", + "name": "CloudBees", + "company": null, + "blog": "https://www.cloudbees.com/", + "location": null, + "email": null, + "is_verified": true, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 130, + "public_gists": 4, + "followers": 0, + "following": 0, + "html_url": "https://github.com/cloudbees", + "created_at": "2010-04-02T07:24:48Z", + "updated_at": "2018-07-26T22:36:42Z", + "type": "Organization" + } + }, + { + "name": "pipeline-model-definition-plugin Developers", + "id": 2185547, + "node_id": "MDQ6VGVhbTIxODU1NDc=", + "slug": "pipeline-model-definition-plugin-developers", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/2185547", + "html_url": "https://github.com/orgs/jenkinsci/teams/pipeline-model-definition-plugin-developers", + "members_url": "https://api.github.com/teams/2185547/members{/member}", + "repositories_url": "https://api.github.com/teams/2185547/repos", + "permission": "pull", + "created_at": "2016-11-11T21:47:47Z", + "updated_at": "2016-11-25T18:50:15Z", + "members_count": 6, + "repos_count": 1, + "organization": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "url": "https://api.github.com/orgs/jenkinsci", + "repos_url": "https://api.github.com/orgs/jenkinsci/repos", + "events_url": "https://api.github.com/orgs/jenkinsci/events", + "hooks_url": "https://api.github.com/orgs/jenkinsci/hooks", + "issues_url": "https://api.github.com/orgs/jenkinsci/issues", + "members_url": "https://api.github.com/orgs/jenkinsci/members{/member}", + "public_members_url": "https://api.github.com/orgs/jenkinsci/public_members{/member}", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "description": "Jenkins is an open source automation server with an unparalleled plugin ecosystem to support practically every tool as part of your delivery pipelines", + "name": "Jenkins", + "company": null, + "blog": "https://jenkins.io", + "location": "Santa Clara, CA", + "email": "jenkinsci-users@googlegroups.com", + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 2192, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/jenkinsci", + "created_at": "2009-07-21T21:03:50Z", + "updated_at": "2019-02-25T15:26:10Z", + "type": "Organization" + } + }, + { + "name": "docs", + "id": 2188150, + "node_id": "MDQ6VGVhbTIxODgxNTA=", + "slug": "docs", + "description": "Documentation team", + "privacy": "closed", + "url": "https://api.github.com/teams/2188150", + "html_url": "https://github.com/orgs/jenkins-infra/teams/docs", + "members_url": "https://api.github.com/teams/2188150/members{/member}", + "repositories_url": "https://api.github.com/teams/2188150/repos", + "permission": "pull", + "created_at": "2016-11-15T17:53:23Z", + "updated_at": "2016-11-15T17:53:23Z", + "members_count": 5, + "repos_count": 3, + "organization": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "url": "https://api.github.com/orgs/jenkins-infra", + "repos_url": "https://api.github.com/orgs/jenkins-infra/repos", + "events_url": "https://api.github.com/orgs/jenkins-infra/events", + "hooks_url": "https://api.github.com/orgs/jenkins-infra/hooks", + "issues_url": "https://api.github.com/orgs/jenkins-infra/issues", + "members_url": "https://api.github.com/orgs/jenkins-infra/members{/member}", + "public_members_url": "https://api.github.com/orgs/jenkins-infra/public_members{/member}", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "description": "Repositories owned by the Jenkins project infrastructure team", + "name": "Jenkins Infra", + "company": null, + "blog": null, + "location": null, + "email": "infra@lists.jenkins-ci.org", + "is_verified": false, + "has_organization_projects": false, + "has_repository_projects": false, + "public_repos": 75, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/jenkins-infra", + "created_at": "2014-04-27T19:47:26Z", + "updated_at": "2018-08-07T02:50:50Z", + "type": "Organization" + } + }, + { + "name": "site-authors", + "id": 2278154, + "node_id": "MDQ6VGVhbTIyNzgxNTQ=", + "slug": "site-authors", + "description": "Collection of people who work on or write portions of jenkins.io", + "privacy": "closed", + "url": "https://api.github.com/teams/2278154", + "html_url": "https://github.com/orgs/jenkins-infra/teams/site-authors", + "members_url": "https://api.github.com/teams/2278154/members{/member}", + "repositories_url": "https://api.github.com/teams/2278154/repos", + "permission": "pull", + "created_at": "2017-02-21T15:40:21Z", + "updated_at": "2017-02-21T15:40:21Z", + "members_count": 5, + "repos_count": 1, + "organization": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "url": "https://api.github.com/orgs/jenkins-infra", + "repos_url": "https://api.github.com/orgs/jenkins-infra/repos", + "events_url": "https://api.github.com/orgs/jenkins-infra/events", + "hooks_url": "https://api.github.com/orgs/jenkins-infra/hooks", + "issues_url": "https://api.github.com/orgs/jenkins-infra/issues", + "members_url": "https://api.github.com/orgs/jenkins-infra/members{/member}", + "public_members_url": "https://api.github.com/orgs/jenkins-infra/public_members{/member}", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "description": "Repositories owned by the Jenkins project infrastructure team", + "name": "Jenkins Infra", + "company": null, + "blog": null, + "location": null, + "email": "infra@lists.jenkins-ci.org", + "is_verified": false, + "has_organization_projects": false, + "has_repository_projects": false, + "public_repos": 75, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/jenkins-infra", + "created_at": "2014-04-27T19:47:26Z", + "updated_at": "2018-08-07T02:50:50Z", + "type": "Organization" + } + }, + { + "name": "declarative-rfc-reviewers", + "id": 2300722, + "node_id": "MDQ6VGVhbTIzMDA3MjI=", + "slug": "declarative-rfc-reviewers", + "description": "Declarative RFC Reviewers", + "privacy": "closed", + "url": "https://api.github.com/teams/2300722", + "html_url": "https://github.com/orgs/jenkinsci/teams/declarative-rfc-reviewers", + "members_url": "https://api.github.com/teams/2300722/members{/member}", + "repositories_url": "https://api.github.com/teams/2300722/repos", + "permission": "pull", + "created_at": "2017-03-14T17:26:30Z", + "updated_at": "2017-03-14T17:26:30Z", + "members_count": 8, + "repos_count": 1, + "organization": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "url": "https://api.github.com/orgs/jenkinsci", + "repos_url": "https://api.github.com/orgs/jenkinsci/repos", + "events_url": "https://api.github.com/orgs/jenkinsci/events", + "hooks_url": "https://api.github.com/orgs/jenkinsci/hooks", + "issues_url": "https://api.github.com/orgs/jenkinsci/issues", + "members_url": "https://api.github.com/orgs/jenkinsci/members{/member}", + "public_members_url": "https://api.github.com/orgs/jenkinsci/public_members{/member}", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "description": "Jenkins is an open source automation server with an unparalleled plugin ecosystem to support practically every tool as part of your delivery pipelines", + "name": "Jenkins", + "company": null, + "blog": "https://jenkins.io", + "location": "Santa Clara, CA", + "email": "jenkinsci-users@googlegroups.com", + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 2192, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/jenkinsci", + "created_at": "2009-07-21T21:03:50Z", + "updated_at": "2019-02-25T15:26:10Z", + "type": "Organization" + } + }, + { + "name": "cje-reviewers", + "id": 2384898, + "node_id": "MDQ6VGVhbTIzODQ4OTg=", + "slug": "cje-reviewers", + "description": "CJE Reviewers", + "privacy": "closed", + "url": "https://api.github.com/teams/2384898", + "html_url": "https://github.com/orgs/cloudbees/teams/cje-reviewers", + "members_url": "https://api.github.com/teams/2384898/members{/member}", + "repositories_url": "https://api.github.com/teams/2384898/repos", + "permission": "pull", + "created_at": "2017-06-09T00:06:12Z", + "updated_at": "2017-06-09T00:09:45Z", + "members_count": 9, + "repos_count": 3, + "organization": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "url": "https://api.github.com/orgs/cloudbees", + "repos_url": "https://api.github.com/orgs/cloudbees/repos", + "events_url": "https://api.github.com/orgs/cloudbees/events", + "hooks_url": "https://api.github.com/orgs/cloudbees/hooks", + "issues_url": "https://api.github.com/orgs/cloudbees/issues", + "members_url": "https://api.github.com/orgs/cloudbees/members{/member}", + "public_members_url": "https://api.github.com/orgs/cloudbees/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "description": "", + "name": "CloudBees", + "company": null, + "blog": "https://www.cloudbees.com/", + "location": null, + "email": null, + "is_verified": true, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 130, + "public_gists": 4, + "followers": 0, + "following": 0, + "html_url": "https://github.com/cloudbees", + "created_at": "2010-04-02T07:24:48Z", + "updated_at": "2018-07-26T22:36:42Z", + "type": "Organization" + } + }, + { + "name": "Legacy Training Reviewers", + "id": 2384906, + "node_id": "MDQ6VGVhbTIzODQ5MDY=", + "slug": "legacy-training-reviewers", + "description": "Training Reviewers", + "privacy": "closed", + "url": "https://api.github.com/teams/2384906", + "html_url": "https://github.com/orgs/cloudbees/teams/legacy-training-reviewers", + "members_url": "https://api.github.com/teams/2384906/members{/member}", + "repositories_url": "https://api.github.com/teams/2384906/repos", + "permission": "pull", + "created_at": "2017-06-09T00:13:17Z", + "updated_at": "2019-01-08T18:15:24Z", + "members_count": 10, + "repos_count": 27, + "organization": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "url": "https://api.github.com/orgs/cloudbees", + "repos_url": "https://api.github.com/orgs/cloudbees/repos", + "events_url": "https://api.github.com/orgs/cloudbees/events", + "hooks_url": "https://api.github.com/orgs/cloudbees/hooks", + "issues_url": "https://api.github.com/orgs/cloudbees/issues", + "members_url": "https://api.github.com/orgs/cloudbees/members{/member}", + "public_members_url": "https://api.github.com/orgs/cloudbees/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "description": "", + "name": "CloudBees", + "company": null, + "blog": "https://www.cloudbees.com/", + "location": null, + "email": null, + "is_verified": true, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 130, + "public_gists": 4, + "followers": 0, + "following": 0, + "html_url": "https://github.com/cloudbees", + "created_at": "2010-04-02T07:24:48Z", + "updated_at": "2018-07-26T22:36:42Z", + "type": "Organization" + } + }, + { + "name": "JEP Editors", + "id": 2478842, + "node_id": "MDQ6VGVhbTI0Nzg4NDI=", + "slug": "jep-editors", + "description": "Editors for Jenkins Enhancement Proposals", + "privacy": "closed", + "url": "https://api.github.com/teams/2478842", + "html_url": "https://github.com/orgs/jenkinsci/teams/jep-editors", + "members_url": "https://api.github.com/teams/2478842/members{/member}", + "repositories_url": "https://api.github.com/teams/2478842/repos", + "permission": "pull", + "created_at": "2017-09-12T17:49:24Z", + "updated_at": "2017-09-12T17:49:24Z", + "members_count": 5, + "repos_count": 1, + "organization": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "url": "https://api.github.com/orgs/jenkinsci", + "repos_url": "https://api.github.com/orgs/jenkinsci/repos", + "events_url": "https://api.github.com/orgs/jenkinsci/events", + "hooks_url": "https://api.github.com/orgs/jenkinsci/hooks", + "issues_url": "https://api.github.com/orgs/jenkinsci/issues", + "members_url": "https://api.github.com/orgs/jenkinsci/members{/member}", + "public_members_url": "https://api.github.com/orgs/jenkinsci/public_members{/member}", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "description": "Jenkins is an open source automation server with an unparalleled plugin ecosystem to support practically every tool as part of your delivery pipelines", + "name": "Jenkins", + "company": null, + "blog": "https://jenkins.io", + "location": "Santa Clara, CA", + "email": "jenkinsci-users@googlegroups.com", + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 2192, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/jenkinsci", + "created_at": "2009-07-21T21:03:50Z", + "updated_at": "2019-02-25T15:26:10Z", + "type": "Organization" + } + }, + { + "name": "hacktoberfest", + "id": 2510135, + "node_id": "MDQ6VGVhbTI1MTAxMzU=", + "slug": "hacktoberfest", + "description": "Jenkins Hacktoberfest Team (reviewers and organizers)", + "privacy": "closed", + "url": "https://api.github.com/teams/2510135", + "html_url": "https://github.com/orgs/jenkins-infra/teams/hacktoberfest", + "members_url": "https://api.github.com/teams/2510135/members{/member}", + "repositories_url": "https://api.github.com/teams/2510135/repos", + "permission": "pull", + "created_at": "2017-10-06T18:42:56Z", + "updated_at": "2019-10-02T09:47:48Z", + "members_count": 8, + "repos_count": 3, + "organization": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "url": "https://api.github.com/orgs/jenkins-infra", + "repos_url": "https://api.github.com/orgs/jenkins-infra/repos", + "events_url": "https://api.github.com/orgs/jenkins-infra/events", + "hooks_url": "https://api.github.com/orgs/jenkins-infra/hooks", + "issues_url": "https://api.github.com/orgs/jenkins-infra/issues", + "members_url": "https://api.github.com/orgs/jenkins-infra/members{/member}", + "public_members_url": "https://api.github.com/orgs/jenkins-infra/public_members{/member}", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "description": "Repositories owned by the Jenkins project infrastructure team", + "name": "Jenkins Infra", + "company": null, + "blog": null, + "location": null, + "email": "infra@lists.jenkins-ci.org", + "is_verified": false, + "has_organization_projects": false, + "has_repository_projects": false, + "public_repos": 75, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/jenkins-infra", + "created_at": "2014-04-27T19:47:26Z", + "updated_at": "2018-08-07T02:50:50Z", + "type": "Organization" + } + }, + { + "name": "cn.jenkins.io", + "id": 2658933, + "node_id": "MDQ6VGVhbTI2NTg5MzM=", + "slug": "cn-jenkins-io", + "description": "People who work on Chinese website", + "privacy": "closed", + "url": "https://api.github.com/teams/2658933", + "html_url": "https://github.com/orgs/jenkins-infra/teams/cn-jenkins-io", + "members_url": "https://api.github.com/teams/2658933/members{/member}", + "repositories_url": "https://api.github.com/teams/2658933/repos", + "permission": "pull", + "created_at": "2018-02-20T17:36:21Z", + "updated_at": "2018-02-20T17:36:21Z", + "members_count": 5, + "repos_count": 1, + "organization": { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "url": "https://api.github.com/orgs/jenkins-infra", + "repos_url": "https://api.github.com/orgs/jenkins-infra/repos", + "events_url": "https://api.github.com/orgs/jenkins-infra/events", + "hooks_url": "https://api.github.com/orgs/jenkins-infra/hooks", + "issues_url": "https://api.github.com/orgs/jenkins-infra/issues", + "members_url": "https://api.github.com/orgs/jenkins-infra/members{/member}", + "public_members_url": "https://api.github.com/orgs/jenkins-infra/public_members{/member}", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "description": "Repositories owned by the Jenkins project infrastructure team", + "name": "Jenkins Infra", + "company": null, + "blog": null, + "location": null, + "email": "infra@lists.jenkins-ci.org", + "is_verified": false, + "has_organization_projects": false, + "has_repository_projects": false, + "public_repos": 75, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/jenkins-infra", + "created_at": "2014-04-27T19:47:26Z", + "updated_at": "2018-08-07T02:50:50Z", + "type": "Organization" + } + }, + { + "name": "JEP Sponsors", + "id": 2832516, + "node_id": "MDQ6VGVhbTI4MzI1MTY=", + "slug": "jep-sponsors", + "description": "JEP Sponsors ", + "privacy": "closed", + "url": "https://api.github.com/teams/2832516", + "html_url": "https://github.com/orgs/jenkinsci/teams/jep-sponsors", + "members_url": "https://api.github.com/teams/2832516/members{/member}", + "repositories_url": "https://api.github.com/teams/2832516/repos", + "permission": "pull", + "created_at": "2018-07-21T01:31:23Z", + "updated_at": "2018-07-21T01:32:40Z", + "members_count": 9, + "repos_count": 1, + "organization": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "url": "https://api.github.com/orgs/jenkinsci", + "repos_url": "https://api.github.com/orgs/jenkinsci/repos", + "events_url": "https://api.github.com/orgs/jenkinsci/events", + "hooks_url": "https://api.github.com/orgs/jenkinsci/hooks", + "issues_url": "https://api.github.com/orgs/jenkinsci/issues", + "members_url": "https://api.github.com/orgs/jenkinsci/members{/member}", + "public_members_url": "https://api.github.com/orgs/jenkinsci/public_members{/member}", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "description": "Jenkins is an open source automation server with an unparalleled plugin ecosystem to support practically every tool as part of your delivery pipelines", + "name": "Jenkins", + "company": null, + "blog": "https://jenkins.io", + "location": "Santa Clara, CA", + "email": "jenkinsci-users@googlegroups.com", + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 2192, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/jenkinsci", + "created_at": "2009-07-21T21:03:50Z", + "updated_at": "2019-02-25T15:26:10Z", + "type": "Organization" + } + }, + { + "name": "JEP BDFL Delegates", + "id": 2832517, + "node_id": "MDQ6VGVhbTI4MzI1MTc=", + "slug": "jep-bdfl-delegates", + "description": "JEP BDFL Delegates", + "privacy": "closed", + "url": "https://api.github.com/teams/2832517", + "html_url": "https://github.com/orgs/jenkinsci/teams/jep-bdfl-delegates", + "members_url": "https://api.github.com/teams/2832517/members{/member}", + "repositories_url": "https://api.github.com/teams/2832517/repos", + "permission": "pull", + "created_at": "2018-07-21T01:33:45Z", + "updated_at": "2018-07-21T01:33:45Z", + "members_count": 2, + "repos_count": 1, + "organization": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "url": "https://api.github.com/orgs/jenkinsci", + "repos_url": "https://api.github.com/orgs/jenkinsci/repos", + "events_url": "https://api.github.com/orgs/jenkinsci/events", + "hooks_url": "https://api.github.com/orgs/jenkinsci/hooks", + "issues_url": "https://api.github.com/orgs/jenkinsci/issues", + "members_url": "https://api.github.com/orgs/jenkinsci/members{/member}", + "public_members_url": "https://api.github.com/orgs/jenkinsci/public_members{/member}", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "description": "Jenkins is an open source automation server with an unparalleled plugin ecosystem to support practically every tool as part of your delivery pipelines", + "name": "Jenkins", + "company": null, + "blog": "https://jenkins.io", + "location": "Santa Clara, CA", + "email": "jenkinsci-users@googlegroups.com", + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 2192, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/jenkinsci", + "created_at": "2009-07-21T21:03:50Z", + "updated_at": "2019-02-25T15:26:10Z", + "type": "Organization" + } + }, + { + "name": "pipeline-team", + "id": 2915408, + "node_id": "MDQ6VGVhbTI5MTU0MDg=", + "slug": "pipeline-team", + "description": "pipeline team", + "privacy": "closed", + "url": "https://api.github.com/teams/2915408", + "html_url": "https://github.com/orgs/cloudbees/teams/pipeline-team", + "members_url": "https://api.github.com/teams/2915408/members{/member}", + "repositories_url": "https://api.github.com/teams/2915408/repos", + "permission": "pull", + "created_at": "2018-09-12T08:09:16Z", + "updated_at": "2018-09-12T08:09:16Z", + "members_count": 10, + "repos_count": 11, + "organization": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "url": "https://api.github.com/orgs/cloudbees", + "repos_url": "https://api.github.com/orgs/cloudbees/repos", + "events_url": "https://api.github.com/orgs/cloudbees/events", + "hooks_url": "https://api.github.com/orgs/cloudbees/hooks", + "issues_url": "https://api.github.com/orgs/cloudbees/issues", + "members_url": "https://api.github.com/orgs/cloudbees/members{/member}", + "public_members_url": "https://api.github.com/orgs/cloudbees/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "description": "", + "name": "CloudBees", + "company": null, + "blog": "https://www.cloudbees.com/", + "location": null, + "email": null, + "is_verified": true, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 130, + "public_gists": 4, + "followers": 0, + "following": 0, + "html_url": "https://github.com/cloudbees", + "created_at": "2010-04-02T07:24:48Z", + "updated_at": "2018-07-26T22:36:42Z", + "type": "Organization" + } + }, + { + "name": "branch-api-plugin Developers", + "id": 2934265, + "node_id": "MDQ6VGVhbTI5MzQyNjU=", + "slug": "branch-api-plugin-developers", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/2934265", + "html_url": "https://github.com/orgs/jenkinsci/teams/branch-api-plugin-developers", + "members_url": "https://api.github.com/teams/2934265/members{/member}", + "repositories_url": "https://api.github.com/teams/2934265/repos", + "permission": "pull", + "created_at": "2018-09-25T19:59:22Z", + "updated_at": "2018-09-25T19:59:22Z", + "members_count": 4, + "repos_count": 1, + "organization": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "url": "https://api.github.com/orgs/jenkinsci", + "repos_url": "https://api.github.com/orgs/jenkinsci/repos", + "events_url": "https://api.github.com/orgs/jenkinsci/events", + "hooks_url": "https://api.github.com/orgs/jenkinsci/hooks", + "issues_url": "https://api.github.com/orgs/jenkinsci/issues", + "members_url": "https://api.github.com/orgs/jenkinsci/members{/member}", + "public_members_url": "https://api.github.com/orgs/jenkinsci/public_members{/member}", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "description": "Jenkins is an open source automation server with an unparalleled plugin ecosystem to support practically every tool as part of your delivery pipelines", + "name": "Jenkins", + "company": null, + "blog": "https://jenkins.io", + "location": "Santa Clara, CA", + "email": "jenkinsci-users@googlegroups.com", + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 2192, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/jenkinsci", + "created_at": "2009-07-21T21:03:50Z", + "updated_at": "2019-02-25T15:26:10Z", + "type": "Organization" + } + }, + { + "name": "audit-log-plugin Developers", + "id": 3023453, + "node_id": "MDQ6VGVhbTMwMjM0NTM=", + "slug": "audit-log-plugin-developers", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/3023453", + "html_url": "https://github.com/orgs/jenkinsci/teams/audit-log-plugin-developers", + "members_url": "https://api.github.com/teams/3023453/members{/member}", + "repositories_url": "https://api.github.com/teams/3023453/repos", + "permission": "pull", + "created_at": "2018-11-29T15:16:26Z", + "updated_at": "2018-11-29T15:16:26Z", + "members_count": 7, + "repos_count": 1, + "organization": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "url": "https://api.github.com/orgs/jenkinsci", + "repos_url": "https://api.github.com/orgs/jenkinsci/repos", + "events_url": "https://api.github.com/orgs/jenkinsci/events", + "hooks_url": "https://api.github.com/orgs/jenkinsci/hooks", + "issues_url": "https://api.github.com/orgs/jenkinsci/issues", + "members_url": "https://api.github.com/orgs/jenkinsci/members{/member}", + "public_members_url": "https://api.github.com/orgs/jenkinsci/public_members{/member}", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "description": "Jenkins is an open source automation server with an unparalleled plugin ecosystem to support practically every tool as part of your delivery pipelines", + "name": "Jenkins", + "company": null, + "blog": "https://jenkins.io", + "location": "Santa Clara, CA", + "email": "jenkinsci-users@googlegroups.com", + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 2192, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/jenkinsci", + "created_at": "2009-07-21T21:03:50Z", + "updated_at": "2019-02-25T15:26:10Z", + "type": "Organization" + } + }, + { + "name": "Certification Reviewers", + "id": 3136781, + "node_id": "MDQ6VGVhbTMxMzY3ODE=", + "slug": "certification-reviewers", + "description": "Group for all those associated with the Certification Review process", + "privacy": "closed", + "url": "https://api.github.com/teams/3136781", + "html_url": "https://github.com/orgs/cloudbees/teams/certification-reviewers", + "members_url": "https://api.github.com/teams/3136781/members{/member}", + "repositories_url": "https://api.github.com/teams/3136781/repos", + "permission": "pull", + "created_at": "2019-02-25T14:47:52Z", + "updated_at": "2019-02-25T14:47:52Z", + "members_count": 75, + "repos_count": 1, + "organization": { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "url": "https://api.github.com/orgs/cloudbees", + "repos_url": "https://api.github.com/orgs/cloudbees/repos", + "events_url": "https://api.github.com/orgs/cloudbees/events", + "hooks_url": "https://api.github.com/orgs/cloudbees/hooks", + "issues_url": "https://api.github.com/orgs/cloudbees/issues", + "members_url": "https://api.github.com/orgs/cloudbees/members{/member}", + "public_members_url": "https://api.github.com/orgs/cloudbees/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "description": "", + "name": "CloudBees", + "company": null, + "blog": "https://www.cloudbees.com/", + "location": null, + "email": null, + "is_verified": true, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 130, + "public_gists": 4, + "followers": 0, + "following": 0, + "html_url": "https://github.com/cloudbees", + "created_at": "2010-04-02T07:24:48Z", + "updated_at": "2018-07-26T22:36:42Z", + "type": "Organization" + } + }, + { + "name": "dummy-team", + "id": 3451996, + "node_id": "MDQ6VGVhbTM0NTE5OTY=", + "slug": "dummy-team", + "description": "Updated by API TestModified", + "privacy": "closed", + "url": "https://api.github.com/teams/3451996", + "html_url": "https://github.com/orgs/github-api-test-org/teams/dummy-team", + "members_url": "https://api.github.com/teams/3451996/members{/member}", + "repositories_url": "https://api.github.com/teams/3451996/repos", + "permission": "pull", + "created_at": "2019-10-03T21:46:12Z", + "updated_at": "2019-10-03T21:51:11Z", + "members_count": 1, + "repos_count": 0, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "url": "https://api.github.com/orgs/github-api-test-org", + "repos_url": "https://api.github.com/orgs/github-api-test-org/repos", + "events_url": "https://api.github.com/orgs/github-api-test-org/events", + "hooks_url": "https://api.github.com/orgs/github-api-test-org/hooks", + "issues_url": "https://api.github.com/orgs/github-api-test-org/issues", + "members_url": "https://api.github.com/orgs/github-api-test-org/members{/member}", + "public_members_url": "https://api.github.com/orgs/github-api-test-org/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "description": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 9, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/github-api-test-org", + "created_at": "2014-05-10T19:39:11Z", + "updated_at": "2015-04-20T00:42:30Z", + "type": "Organization" + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/organizations_107424_teams-11-bed0fc.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/organizations_107424_teams-11-bed0fc.json new file mode 100644 index 0000000000..0903062128 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/organizations_107424_teams-11-bed0fc.json @@ -0,0 +1,46 @@ +{ + "id": "bed0fcfe-7ccc-4b9c-aa07-32e6f68f2b74", + "name": "organizations_107424_teams", + "request": { + "url": "/organizations/107424/teams?page=2", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "organizations_107424_teams-bed0fcfe-7ccc-4b9c-aa07-32e6f68f2b74.json", + "headers": { + "Date": "Fri, 04 Oct 2019 00:21:31 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4907", + "X-RateLimit-Reset": "1570151182", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"6cacce55e59a3baa70e145476fe3279a\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D601:78E9:1113533:145BEB3:5D96908B", + "Link": "; rel=\"prev\", ; rel=\"first\"" + } + }, + "uuid": "bed0fcfe-7ccc-4b9c-aa07-32e6f68f2b74", + "persistent": true, + "scenarioName": "scenario-2-organizations-107424-teams", + "requiredScenarioState": "Started", + "newScenarioState": "scenario-2-organizations-107424-teams-2", + "insertionIndex": 11 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/organizations_107424_teams-20-2fdc05.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/organizations_107424_teams-20-2fdc05.json new file mode 100644 index 0000000000..eaa5eaaff3 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/organizations_107424_teams-20-2fdc05.json @@ -0,0 +1,46 @@ +{ + "id": "2fdc0562-25ee-4ff7-8207-444ebbc94abd", + "name": "organizations_107424_teams", + "request": { + "url": "/organizations/107424/teams?page=2", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "organizations_107424_teams-2fdc0562-25ee-4ff7-8207-444ebbc94abd.json", + "headers": { + "Date": "Fri, 04 Oct 2019 00:21:32 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4898", + "X-RateLimit-Reset": "1570151182", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"6cacce55e59a3baa70e145476fe3279a\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D601:78E9:11135DF:145BF77:5D96908C", + "Link": "; rel=\"prev\", ; rel=\"first\"" + } + }, + "uuid": "2fdc0562-25ee-4ff7-8207-444ebbc94abd", + "persistent": true, + "scenarioName": "scenario-2-organizations-107424-teams", + "requiredScenarioState": "scenario-2-organizations-107424-teams-2", + "newScenarioState": "scenario-2-organizations-107424-teams-3", + "insertionIndex": 20 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/organizations_107424_teams-23-864a80.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/organizations_107424_teams-23-864a80.json new file mode 100644 index 0000000000..a6841a3702 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/organizations_107424_teams-23-864a80.json @@ -0,0 +1,46 @@ +{ + "id": "864a80f6-b8f4-4a01-bf1b-06d0977753da", + "name": "organizations_107424_teams", + "request": { + "url": "/organizations/107424/teams?page=2", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "organizations_107424_teams-864a80f6-b8f4-4a01-bf1b-06d0977753da.json", + "headers": { + "Date": "Fri, 04 Oct 2019 00:21:33 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4895", + "X-RateLimit-Reset": "1570151182", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"6cacce55e59a3baa70e145476fe3279a\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D601:78E9:1113607:145BFB3:5D96908D", + "Link": "; rel=\"prev\", ; rel=\"first\"" + } + }, + "uuid": "864a80f6-b8f4-4a01-bf1b-06d0977753da", + "persistent": true, + "scenarioName": "scenario-2-organizations-107424-teams", + "requiredScenarioState": "scenario-2-organizations-107424-teams-3", + "newScenarioState": "scenario-2-organizations-107424-teams-4", + "insertionIndex": 23 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/organizations_107424_teams-26-881e08.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/organizations_107424_teams-26-881e08.json new file mode 100644 index 0000000000..b6308f6add --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/organizations_107424_teams-26-881e08.json @@ -0,0 +1,45 @@ +{ + "id": "881e0897-44cd-42c4-88c4-50046ee19a18", + "name": "organizations_107424_teams", + "request": { + "url": "/organizations/107424/teams?page=2", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "organizations_107424_teams-881e0897-44cd-42c4-88c4-50046ee19a18.json", + "headers": { + "Date": "Fri, 04 Oct 2019 00:21:33 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4892", + "X-RateLimit-Reset": "1570151182", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"6cacce55e59a3baa70e145476fe3279a\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D601:78E9:1113637:145BFE7:5D96908D", + "Link": "; rel=\"prev\", ; rel=\"first\"" + } + }, + "uuid": "881e0897-44cd-42c4-88c4-50046ee19a18", + "persistent": true, + "scenarioName": "scenario-2-organizations-107424-teams", + "requiredScenarioState": "scenario-2-organizations-107424-teams-4", + "insertionIndex": 26 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/organizations_235526_teams-35-8591cc.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/organizations_235526_teams-35-8591cc.json new file mode 100644 index 0000000000..6024ba4730 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/organizations_235526_teams-35-8591cc.json @@ -0,0 +1,46 @@ +{ + "id": "8591cc9c-9c1f-46ab-980f-784ed7ad2b54", + "name": "organizations_235526_teams", + "request": { + "url": "/organizations/235526/teams?page=2", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "organizations_235526_teams-8591cc9c-9c1f-46ab-980f-784ed7ad2b54.json", + "headers": { + "Date": "Fri, 04 Oct 2019 00:21:34 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4883", + "X-RateLimit-Reset": "1570151182", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"44c9656011c8da0be5bb1fe95ef18a44\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D601:78E9:11136B6:145C080:5D96908E", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "8591cc9c-9c1f-46ab-980f-784ed7ad2b54", + "persistent": true, + "scenarioName": "scenario-4-organizations-235526-teams", + "requiredScenarioState": "Started", + "newScenarioState": "scenario-4-organizations-235526-teams-2", + "insertionIndex": 35 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/organizations_235526_teams-44-3945b4.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/organizations_235526_teams-44-3945b4.json new file mode 100644 index 0000000000..343a409c83 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/organizations_235526_teams-44-3945b4.json @@ -0,0 +1,46 @@ +{ + "id": "3945b427-290f-4fa2-a720-79cb00ba290e", + "name": "organizations_235526_teams", + "request": { + "url": "/organizations/235526/teams?page=2", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "organizations_235526_teams-3945b427-290f-4fa2-a720-79cb00ba290e.json", + "headers": { + "Date": "Fri, 04 Oct 2019 00:21:36 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4874", + "X-RateLimit-Reset": "1570151182", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"44c9656011c8da0be5bb1fe95ef18a44\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D601:78E9:1113733:145C11E:5D969090", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "3945b427-290f-4fa2-a720-79cb00ba290e", + "persistent": true, + "scenarioName": "scenario-4-organizations-235526-teams", + "requiredScenarioState": "scenario-4-organizations-235526-teams-2", + "newScenarioState": "scenario-4-organizations-235526-teams-3", + "insertionIndex": 44 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/organizations_235526_teams-47-bed317.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/organizations_235526_teams-47-bed317.json new file mode 100644 index 0000000000..de2c847a58 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/organizations_235526_teams-47-bed317.json @@ -0,0 +1,45 @@ +{ + "id": "bed3177f-0cd7-4ebb-acff-67cc43fd2504", + "name": "organizations_235526_teams", + "request": { + "url": "/organizations/235526/teams?page=2", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "organizations_235526_teams-bed3177f-0cd7-4ebb-acff-67cc43fd2504.json", + "headers": { + "Date": "Fri, 04 Oct 2019 00:21:36 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4871", + "X-RateLimit-Reset": "1570151182", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"44c9656011c8da0be5bb1fe95ef18a44\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D601:78E9:1113764:145C156:5D969090", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "bed3177f-0cd7-4ebb-acff-67cc43fd2504", + "persistent": true, + "scenarioName": "scenario-4-organizations-235526-teams", + "requiredScenarioState": "scenario-4-organizations-235526-teams-3", + "insertionIndex": 47 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_beautify-web-67-62298d.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_beautify-web-67-62298d.json new file mode 100644 index 0000000000..2eecc0c07f --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_beautify-web-67-62298d.json @@ -0,0 +1,43 @@ +{ + "id": "62298d74-fe3c-459d-9f70-450e80247969", + "name": "orgs_beautify-web", + "request": { + "url": "/orgs/beautify-web", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_beautify-web-62298d74-fe3c-459d-9f70-450e80247969.json", + "headers": { + "Date": "Fri, 04 Oct 2019 00:21:39 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4851", + "X-RateLimit-Reset": "1570151182", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"dd4a06709596dc92c3149f801079e32f\"", + "Last-Modified": "Fri, 20 Sep 2019 14:31:51 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D601:78E9:111388D:145C2C6:5D969093" + } + }, + "uuid": "62298d74-fe3c-459d-9f70-450e80247969", + "persistent": true, + "insertionIndex": 67 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_beautify-web_teams-68-586844.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_beautify-web_teams-68-586844.json new file mode 100644 index 0000000000..68fd97a0fd --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_beautify-web_teams-68-586844.json @@ -0,0 +1,42 @@ +{ + "id": "58684478-ae6b-43c2-b30c-af37aeb81621", + "name": "orgs_beautify-web_teams", + "request": { + "url": "/orgs/beautify-web/teams", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_beautify-web_teams-58684478-ae6b-43c2-b30c-af37aeb81621.json", + "headers": { + "Date": "Fri, 04 Oct 2019 00:21:39 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4850", + "X-RateLimit-Reset": "1570151182", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"cae953250c5fce5fb3d69d903faf89ce\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D601:78E9:1113899:145C2D6:5D969093" + } + }, + "uuid": "58684478-ae6b-43c2-b30c-af37aeb81621", + "persistent": true, + "insertionIndex": 68 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_cloudbees-33-ce8716.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_cloudbees-33-ce8716.json new file mode 100644 index 0000000000..509206ee64 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_cloudbees-33-ce8716.json @@ -0,0 +1,43 @@ +{ + "id": "ce8716a4-ec25-4626-9a3a-205e5558bd39", + "name": "orgs_cloudbees", + "request": { + "url": "/orgs/cloudbees", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_cloudbees-ce8716a4-ec25-4626-9a3a-205e5558bd39.json", + "headers": { + "Date": "Fri, 04 Oct 2019 00:21:34 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4885", + "X-RateLimit-Reset": "1570151182", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"87dc367baf67ce7b49c7e6bf733e9e47\"", + "Last-Modified": "Thu, 26 Jul 2018 22:36:42 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D601:78E9:1113690:145C054:5D96908E" + } + }, + "uuid": "ce8716a4-ec25-4626-9a3a-205e5558bd39", + "persistent": true, + "insertionIndex": 33 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_cloudbees_teams-34-57f5eb.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_cloudbees_teams-34-57f5eb.json new file mode 100644 index 0000000000..636488acb5 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_cloudbees_teams-34-57f5eb.json @@ -0,0 +1,46 @@ +{ + "id": "57f5eb24-dd30-4d2c-9e6a-90dcd973e21f", + "name": "orgs_cloudbees_teams", + "request": { + "url": "/orgs/cloudbees/teams", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_cloudbees_teams-57f5eb24-dd30-4d2c-9e6a-90dcd973e21f.json", + "headers": { + "Date": "Fri, 04 Oct 2019 00:21:34 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4884", + "X-RateLimit-Reset": "1570151182", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"f1a9b7148b69e264c0591450e5f2a207\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D601:78E9:11136A4:145C06D:5D96908E", + "Link": "; rel=\"next\", ; rel=\"last\"" + } + }, + "uuid": "57f5eb24-dd30-4d2c-9e6a-90dcd973e21f", + "persistent": true, + "scenarioName": "scenario-3-orgs-cloudbees-teams", + "requiredScenarioState": "Started", + "newScenarioState": "scenario-3-orgs-cloudbees-teams-2", + "insertionIndex": 34 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_cloudbees_teams-37-632605.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_cloudbees_teams-37-632605.json new file mode 100644 index 0000000000..e9ffceaef6 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_cloudbees_teams-37-632605.json @@ -0,0 +1,46 @@ +{ + "id": "632605dd-2411-4c5d-8fd0-7d57f23cb0a5", + "name": "orgs_cloudbees_teams", + "request": { + "url": "/orgs/cloudbees/teams", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_cloudbees_teams-632605dd-2411-4c5d-8fd0-7d57f23cb0a5.json", + "headers": { + "Date": "Fri, 04 Oct 2019 00:21:35 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4881", + "X-RateLimit-Reset": "1570151182", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"f1a9b7148b69e264c0591450e5f2a207\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D601:78E9:11136D0:145C09C:5D96908F", + "Link": "; rel=\"next\", ; rel=\"last\"" + } + }, + "uuid": "632605dd-2411-4c5d-8fd0-7d57f23cb0a5", + "persistent": true, + "scenarioName": "scenario-3-orgs-cloudbees-teams", + "requiredScenarioState": "scenario-3-orgs-cloudbees-teams-2", + "newScenarioState": "scenario-3-orgs-cloudbees-teams-3", + "insertionIndex": 37 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_cloudbees_teams-39-fbf640.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_cloudbees_teams-39-fbf640.json new file mode 100644 index 0000000000..a8427db800 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_cloudbees_teams-39-fbf640.json @@ -0,0 +1,46 @@ +{ + "id": "fbf640ca-c41a-4e82-9c5a-75ba2175bc0c", + "name": "orgs_cloudbees_teams", + "request": { + "url": "/orgs/cloudbees/teams", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_cloudbees_teams-fbf640ca-c41a-4e82-9c5a-75ba2175bc0c.json", + "headers": { + "Date": "Fri, 04 Oct 2019 00:21:35 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4879", + "X-RateLimit-Reset": "1570151182", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"f1a9b7148b69e264c0591450e5f2a207\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D601:78E9:11136F4:145C0CB:5D96908F", + "Link": "; rel=\"next\", ; rel=\"last\"" + } + }, + "uuid": "fbf640ca-c41a-4e82-9c5a-75ba2175bc0c", + "persistent": true, + "scenarioName": "scenario-3-orgs-cloudbees-teams", + "requiredScenarioState": "scenario-3-orgs-cloudbees-teams-3", + "newScenarioState": "scenario-3-orgs-cloudbees-teams-4", + "insertionIndex": 39 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_cloudbees_teams-41-c3bba3.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_cloudbees_teams-41-c3bba3.json new file mode 100644 index 0000000000..7d1f37026a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_cloudbees_teams-41-c3bba3.json @@ -0,0 +1,46 @@ +{ + "id": "c3bba3a6-1c09-4663-bbd5-61f4184faffa", + "name": "orgs_cloudbees_teams", + "request": { + "url": "/orgs/cloudbees/teams", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_cloudbees_teams-c3bba3a6-1c09-4663-bbd5-61f4184faffa.json", + "headers": { + "Date": "Fri, 04 Oct 2019 00:21:35 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4877", + "X-RateLimit-Reset": "1570151182", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"f1a9b7148b69e264c0591450e5f2a207\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D601:78E9:111370E:145C0ED:5D96908F", + "Link": "; rel=\"next\", ; rel=\"last\"" + } + }, + "uuid": "c3bba3a6-1c09-4663-bbd5-61f4184faffa", + "persistent": true, + "scenarioName": "scenario-3-orgs-cloudbees-teams", + "requiredScenarioState": "scenario-3-orgs-cloudbees-teams-4", + "newScenarioState": "scenario-3-orgs-cloudbees-teams-5", + "insertionIndex": 41 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_cloudbees_teams-43-1d3fc4.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_cloudbees_teams-43-1d3fc4.json new file mode 100644 index 0000000000..4f2a2e4fb5 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_cloudbees_teams-43-1d3fc4.json @@ -0,0 +1,46 @@ +{ + "id": "1d3fc4da-c320-4621-bf6c-4fa95aeb487e", + "name": "orgs_cloudbees_teams", + "request": { + "url": "/orgs/cloudbees/teams", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_cloudbees_teams-1d3fc4da-c320-4621-bf6c-4fa95aeb487e.json", + "headers": { + "Date": "Fri, 04 Oct 2019 00:21:36 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4875", + "X-RateLimit-Reset": "1570151182", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"f1a9b7148b69e264c0591450e5f2a207\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D601:78E9:1113722:145C107:5D96908F", + "Link": "; rel=\"next\", ; rel=\"last\"" + } + }, + "uuid": "1d3fc4da-c320-4621-bf6c-4fa95aeb487e", + "persistent": true, + "scenarioName": "scenario-3-orgs-cloudbees-teams", + "requiredScenarioState": "scenario-3-orgs-cloudbees-teams-5", + "newScenarioState": "scenario-3-orgs-cloudbees-teams-6", + "insertionIndex": 43 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_cloudbees_teams-46-4d6d15.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_cloudbees_teams-46-4d6d15.json new file mode 100644 index 0000000000..e9328864db --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_cloudbees_teams-46-4d6d15.json @@ -0,0 +1,46 @@ +{ + "id": "4d6d15f8-8345-4ce7-af12-dcd50335d2c0", + "name": "orgs_cloudbees_teams", + "request": { + "url": "/orgs/cloudbees/teams", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_cloudbees_teams-4d6d15f8-8345-4ce7-af12-dcd50335d2c0.json", + "headers": { + "Date": "Fri, 04 Oct 2019 00:21:36 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4872", + "X-RateLimit-Reset": "1570151182", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"f1a9b7148b69e264c0591450e5f2a207\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D601:78E9:1113752:145C13F:5D969090", + "Link": "; rel=\"next\", ; rel=\"last\"" + } + }, + "uuid": "4d6d15f8-8345-4ce7-af12-dcd50335d2c0", + "persistent": true, + "scenarioName": "scenario-3-orgs-cloudbees-teams", + "requiredScenarioState": "scenario-3-orgs-cloudbees-teams-6", + "newScenarioState": "scenario-3-orgs-cloudbees-teams-7", + "insertionIndex": 46 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_cloudbees_teams-49-35c476.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_cloudbees_teams-49-35c476.json new file mode 100644 index 0000000000..d4acdf13ea --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_cloudbees_teams-49-35c476.json @@ -0,0 +1,45 @@ +{ + "id": "35c47636-9b2c-4e43-866a-62d34ddf04fb", + "name": "orgs_cloudbees_teams", + "request": { + "url": "/orgs/cloudbees/teams", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_cloudbees_teams-35c47636-9b2c-4e43-866a-62d34ddf04fb.json", + "headers": { + "Date": "Fri, 04 Oct 2019 00:21:36 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4869", + "X-RateLimit-Reset": "1570151182", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"f1a9b7148b69e264c0591450e5f2a207\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D601:78E9:1113780:145C17A:5D969090", + "Link": "; rel=\"next\", ; rel=\"last\"" + } + }, + "uuid": "35c47636-9b2c-4e43-866a-62d34ddf04fb", + "persistent": true, + "scenarioName": "scenario-3-orgs-cloudbees-teams", + "requiredScenarioState": "scenario-3-orgs-cloudbees-teams-7", + "insertionIndex": 49 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_github-api-test-org-51-a52998.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_github-api-test-org-51-a52998.json new file mode 100644 index 0000000000..86c21f1d4d --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_github-api-test-org-51-a52998.json @@ -0,0 +1,43 @@ +{ + "id": "a529986c-70bb-4329-9816-ec1f75673e9c", + "name": "orgs_github-api-test-org", + "request": { + "url": "/orgs/github-api-test-org", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_github-api-test-org-a529986c-70bb-4329-9816-ec1f75673e9c.json", + "headers": { + "Date": "Fri, 04 Oct 2019 00:21:37 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4867", + "X-RateLimit-Reset": "1570151182", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"9f594020395ec69662bd8dc1ceecdc09\"", + "Last-Modified": "Mon, 20 Apr 2015 00:42:30 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D601:78E9:111379D:145C1A3:5D969091" + } + }, + "uuid": "a529986c-70bb-4329-9816-ec1f75673e9c", + "persistent": true, + "insertionIndex": 51 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_github-api-test-org_teams-52-c4dada.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_github-api-test-org_teams-52-c4dada.json new file mode 100644 index 0000000000..118e07a04b --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_github-api-test-org_teams-52-c4dada.json @@ -0,0 +1,45 @@ +{ + "id": "c4dada63-33ed-4ac0-856c-e35d466ac7f8", + "name": "orgs_github-api-test-org_teams", + "request": { + "url": "/orgs/github-api-test-org/teams", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_github-api-test-org_teams-c4dada63-33ed-4ac0-856c-e35d466ac7f8.json", + "headers": { + "Date": "Fri, 04 Oct 2019 00:21:37 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4866", + "X-RateLimit-Reset": "1570151182", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"d73a82173554b9946f9c6dc2ec80456a\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D601:78E9:11137AF:145C1B9:5D969091" + } + }, + "uuid": "c4dada63-33ed-4ac0-856c-e35d466ac7f8", + "persistent": true, + "scenarioName": "scenario-5-orgs-github-api-test-org-teams", + "requiredScenarioState": "Started", + "newScenarioState": "scenario-5-orgs-github-api-test-org-teams-2", + "insertionIndex": 52 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_github-api-test-org_teams-54-4eeff3.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_github-api-test-org_teams-54-4eeff3.json new file mode 100644 index 0000000000..d2f4833e91 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_github-api-test-org_teams-54-4eeff3.json @@ -0,0 +1,44 @@ +{ + "id": "4eeff351-c1bd-449c-bf07-0cd3d013dc9b", + "name": "orgs_github-api-test-org_teams", + "request": { + "url": "/orgs/github-api-test-org/teams", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_github-api-test-org_teams-4eeff351-c1bd-449c-bf07-0cd3d013dc9b.json", + "headers": { + "Date": "Fri, 04 Oct 2019 00:21:37 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4864", + "X-RateLimit-Reset": "1570151182", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"d73a82173554b9946f9c6dc2ec80456a\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D601:78E9:11137C9:145C1DA:5D969091" + } + }, + "uuid": "4eeff351-c1bd-449c-bf07-0cd3d013dc9b", + "persistent": true, + "scenarioName": "scenario-5-orgs-github-api-test-org-teams", + "requiredScenarioState": "scenario-5-orgs-github-api-test-org-teams-2", + "insertionIndex": 54 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkins-inc-30-e0b11b.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkins-inc-30-e0b11b.json new file mode 100644 index 0000000000..7973e820de --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkins-inc-30-e0b11b.json @@ -0,0 +1,43 @@ +{ + "id": "e0b11bd2-736d-44c8-aa64-f5848d4691f6", + "name": "orgs_jenkins-inc", + "request": { + "url": "/orgs/jenkins-inc", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_jenkins-inc-e0b11bd2-736d-44c8-aa64-f5848d4691f6.json", + "headers": { + "Date": "Fri, 04 Oct 2019 00:21:34 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4888", + "X-RateLimit-Reset": "1570151182", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"f514ef373296505e38cb2f238f243f40\"", + "Last-Modified": "Mon, 29 Feb 2016 18:11:10 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D601:78E9:1113667:145C025:5D96908E" + } + }, + "uuid": "e0b11bd2-736d-44c8-aa64-f5848d4691f6", + "persistent": true, + "insertionIndex": 30 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkins-inc_teams-31-383d61.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkins-inc_teams-31-383d61.json new file mode 100644 index 0000000000..95f45b5ea4 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkins-inc_teams-31-383d61.json @@ -0,0 +1,42 @@ +{ + "id": "383d61fc-1c69-4ae1-919a-b98b678b47cd", + "name": "orgs_jenkins-inc_teams", + "request": { + "url": "/orgs/jenkins-inc/teams", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_jenkins-inc_teams-383d61fc-1c69-4ae1-919a-b98b678b47cd.json", + "headers": { + "Date": "Fri, 04 Oct 2019 00:21:34 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4887", + "X-RateLimit-Reset": "1570151182", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"b99e79ef4aad1bb4dcbadfc02fb41347\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D601:78E9:1113677:145C036:5D96908E" + } + }, + "uuid": "383d61fc-1c69-4ae1-919a-b98b678b47cd", + "persistent": true, + "insertionIndex": 31 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkins-infra-56-b7c4f4.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkins-infra-56-b7c4f4.json new file mode 100644 index 0000000000..3e1f34e0e2 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkins-infra-56-b7c4f4.json @@ -0,0 +1,43 @@ +{ + "id": "b7c4f477-4e3a-4505-874e-dd816080c7f4", + "name": "orgs_jenkins-infra", + "request": { + "url": "/orgs/jenkins-infra", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_jenkins-infra-b7c4f477-4e3a-4505-874e-dd816080c7f4.json", + "headers": { + "Date": "Fri, 04 Oct 2019 00:21:37 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4862", + "X-RateLimit-Reset": "1570151182", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"e48a304b3abd03ef2d3c449670e6e818\"", + "Last-Modified": "Tue, 07 Aug 2018 02:50:50 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D601:78E9:11137E5:145C1F5:5D969091" + } + }, + "uuid": "b7c4f477-4e3a-4505-874e-dd816080c7f4", + "persistent": true, + "insertionIndex": 56 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkins-infra_teams-57-196db4.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkins-infra_teams-57-196db4.json new file mode 100644 index 0000000000..066b8389d9 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkins-infra_teams-57-196db4.json @@ -0,0 +1,45 @@ +{ + "id": "196db464-b833-490c-97e4-79f79fe29f07", + "name": "orgs_jenkins-infra_teams", + "request": { + "url": "/orgs/jenkins-infra/teams", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_jenkins-infra_teams-196db464-b833-490c-97e4-79f79fe29f07.json", + "headers": { + "Date": "Fri, 04 Oct 2019 00:21:37 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4861", + "X-RateLimit-Reset": "1570151182", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"d1b2884c6058f8b6c4e0fdd1271df48a\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D601:78E9:11137F3:145C204:5D969091" + } + }, + "uuid": "196db464-b833-490c-97e4-79f79fe29f07", + "persistent": true, + "scenarioName": "scenario-6-orgs-jenkins-infra-teams", + "requiredScenarioState": "Started", + "newScenarioState": "scenario-6-orgs-jenkins-infra-teams-2", + "insertionIndex": 57 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkins-infra_teams-59-b6bb78.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkins-infra_teams-59-b6bb78.json new file mode 100644 index 0000000000..4fbe1b0ca8 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkins-infra_teams-59-b6bb78.json @@ -0,0 +1,45 @@ +{ + "id": "b6bb7856-85f0-4bcb-9c9c-5ab9c1be8e74", + "name": "orgs_jenkins-infra_teams", + "request": { + "url": "/orgs/jenkins-infra/teams", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_jenkins-infra_teams-b6bb7856-85f0-4bcb-9c9c-5ab9c1be8e74.json", + "headers": { + "Date": "Fri, 04 Oct 2019 00:21:38 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4859", + "X-RateLimit-Reset": "1570151182", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"d1b2884c6058f8b6c4e0fdd1271df48a\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D601:78E9:1113828:145C237:5D969092" + } + }, + "uuid": "b6bb7856-85f0-4bcb-9c9c-5ab9c1be8e74", + "persistent": true, + "scenarioName": "scenario-6-orgs-jenkins-infra-teams", + "requiredScenarioState": "scenario-6-orgs-jenkins-infra-teams-2", + "newScenarioState": "scenario-6-orgs-jenkins-infra-teams-3", + "insertionIndex": 59 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkins-infra_teams-61-a7f22b.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkins-infra_teams-61-a7f22b.json new file mode 100644 index 0000000000..5b605a23a5 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkins-infra_teams-61-a7f22b.json @@ -0,0 +1,45 @@ +{ + "id": "a7f22b01-940f-40f5-9496-f3e0bd87dbf8", + "name": "orgs_jenkins-infra_teams", + "request": { + "url": "/orgs/jenkins-infra/teams", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_jenkins-infra_teams-a7f22b01-940f-40f5-9496-f3e0bd87dbf8.json", + "headers": { + "Date": "Fri, 04 Oct 2019 00:21:38 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4857", + "X-RateLimit-Reset": "1570151182", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"d1b2884c6058f8b6c4e0fdd1271df48a\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D601:78E9:1113845:145C269:5D969092" + } + }, + "uuid": "a7f22b01-940f-40f5-9496-f3e0bd87dbf8", + "persistent": true, + "scenarioName": "scenario-6-orgs-jenkins-infra-teams", + "requiredScenarioState": "scenario-6-orgs-jenkins-infra-teams-3", + "newScenarioState": "scenario-6-orgs-jenkins-infra-teams-4", + "insertionIndex": 61 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkins-infra_teams-63-b5053d.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkins-infra_teams-63-b5053d.json new file mode 100644 index 0000000000..17e61fa77a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkins-infra_teams-63-b5053d.json @@ -0,0 +1,45 @@ +{ + "id": "b5053ddf-d2f8-4ea4-a246-1118f02f3ac7", + "name": "orgs_jenkins-infra_teams", + "request": { + "url": "/orgs/jenkins-infra/teams", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_jenkins-infra_teams-b5053ddf-d2f8-4ea4-a246-1118f02f3ac7.json", + "headers": { + "Date": "Fri, 04 Oct 2019 00:21:39 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4855", + "X-RateLimit-Reset": "1570151182", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"d1b2884c6058f8b6c4e0fdd1271df48a\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D601:78E9:111385C:145C285:5D969092" + } + }, + "uuid": "b5053ddf-d2f8-4ea4-a246-1118f02f3ac7", + "persistent": true, + "scenarioName": "scenario-6-orgs-jenkins-infra-teams", + "requiredScenarioState": "scenario-6-orgs-jenkins-infra-teams-4", + "newScenarioState": "scenario-6-orgs-jenkins-infra-teams-5", + "insertionIndex": 63 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkins-infra_teams-65-f8bd81.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkins-infra_teams-65-f8bd81.json new file mode 100644 index 0000000000..6c24e97410 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkins-infra_teams-65-f8bd81.json @@ -0,0 +1,44 @@ +{ + "id": "f8bd811b-e074-4e0a-b2f3-dc3f749b5c07", + "name": "orgs_jenkins-infra_teams", + "request": { + "url": "/orgs/jenkins-infra/teams", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_jenkins-infra_teams-f8bd811b-e074-4e0a-b2f3-dc3f749b5c07.json", + "headers": { + "Date": "Fri, 04 Oct 2019 00:21:39 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4853", + "X-RateLimit-Reset": "1570151182", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"d1b2884c6058f8b6c4e0fdd1271df48a\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D601:78E9:1113870:145C2A0:5D969093" + } + }, + "uuid": "f8bd811b-e074-4e0a-b2f3-dc3f749b5c07", + "persistent": true, + "scenarioName": "scenario-6-orgs-jenkins-infra-teams", + "requiredScenarioState": "scenario-6-orgs-jenkins-infra-teams-5", + "insertionIndex": 65 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkinsci-3-eac3f0.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkinsci-3-eac3f0.json new file mode 100644 index 0000000000..41eb80fe8b --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkinsci-3-eac3f0.json @@ -0,0 +1,43 @@ +{ + "id": "eac3f0df-0404-4c43-9864-bf3d6f249294", + "name": "orgs_jenkinsci", + "request": { + "url": "/orgs/jenkinsci", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_jenkinsci-eac3f0df-0404-4c43-9864-bf3d6f249294.json", + "headers": { + "Date": "Fri, 04 Oct 2019 00:21:30 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4915", + "X-RateLimit-Reset": "1570151182", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"e3ef1784e60d0e3be8d29d643279e4ad\"", + "Last-Modified": "Mon, 25 Feb 2019 15:26:10 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D601:78E9:11134B4:145BE13:5D969089" + } + }, + "uuid": "eac3f0df-0404-4c43-9864-bf3d6f249294", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkinsci_teams-10-bedcae.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkinsci_teams-10-bedcae.json new file mode 100644 index 0000000000..89774743a1 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkinsci_teams-10-bedcae.json @@ -0,0 +1,46 @@ +{ + "id": "bedcaedb-24fc-4a6e-a099-b64fd26d4e97", + "name": "orgs_jenkinsci_teams", + "request": { + "url": "/orgs/jenkinsci/teams", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_jenkinsci_teams-bedcaedb-24fc-4a6e-a099-b64fd26d4e97.json", + "headers": { + "Date": "Fri, 04 Oct 2019 00:21:31 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4908", + "X-RateLimit-Reset": "1570151182", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"22fea8e6d0291a5332cbfaed016d7bab\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D601:78E9:111351E:145BE99:5D96908B", + "Link": "; rel=\"next\", ; rel=\"last\"" + } + }, + "uuid": "bedcaedb-24fc-4a6e-a099-b64fd26d4e97", + "persistent": true, + "scenarioName": "scenario-1-orgs-jenkinsci-teams", + "requiredScenarioState": "scenario-1-orgs-jenkinsci-teams-4", + "newScenarioState": "scenario-1-orgs-jenkinsci-teams-5", + "insertionIndex": 10 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkinsci_teams-13-acf98b.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkinsci_teams-13-acf98b.json new file mode 100644 index 0000000000..8d2f10d96f --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkinsci_teams-13-acf98b.json @@ -0,0 +1,46 @@ +{ + "id": "acf98bee-b6c1-4f33-b62e-f86b8d5445fe", + "name": "orgs_jenkinsci_teams", + "request": { + "url": "/orgs/jenkinsci/teams", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_jenkinsci_teams-acf98bee-b6c1-4f33-b62e-f86b8d5445fe.json", + "headers": { + "Date": "Fri, 04 Oct 2019 00:21:31 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4905", + "X-RateLimit-Reset": "1570151182", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"22fea8e6d0291a5332cbfaed016d7bab\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D601:78E9:1113554:145BED5:5D96908B", + "Link": "; rel=\"next\", ; rel=\"last\"" + } + }, + "uuid": "acf98bee-b6c1-4f33-b62e-f86b8d5445fe", + "persistent": true, + "scenarioName": "scenario-1-orgs-jenkinsci-teams", + "requiredScenarioState": "scenario-1-orgs-jenkinsci-teams-5", + "newScenarioState": "scenario-1-orgs-jenkinsci-teams-6", + "insertionIndex": 13 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkinsci_teams-15-0aaf05.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkinsci_teams-15-0aaf05.json new file mode 100644 index 0000000000..cb0bc9c002 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkinsci_teams-15-0aaf05.json @@ -0,0 +1,46 @@ +{ + "id": "0aaf0590-1a5b-4323-8dbc-8fc63b3c5775", + "name": "orgs_jenkinsci_teams", + "request": { + "url": "/orgs/jenkinsci/teams", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_jenkinsci_teams-0aaf0590-1a5b-4323-8dbc-8fc63b3c5775.json", + "headers": { + "Date": "Fri, 04 Oct 2019 00:21:32 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4903", + "X-RateLimit-Reset": "1570151182", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"22fea8e6d0291a5332cbfaed016d7bab\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D601:78E9:1113572:145BEF8:5D96908B", + "Link": "; rel=\"next\", ; rel=\"last\"" + } + }, + "uuid": "0aaf0590-1a5b-4323-8dbc-8fc63b3c5775", + "persistent": true, + "scenarioName": "scenario-1-orgs-jenkinsci-teams", + "requiredScenarioState": "scenario-1-orgs-jenkinsci-teams-6", + "newScenarioState": "scenario-1-orgs-jenkinsci-teams-7", + "insertionIndex": 15 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkinsci_teams-17-90bfe4.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkinsci_teams-17-90bfe4.json new file mode 100644 index 0000000000..bb0c8ba9f3 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkinsci_teams-17-90bfe4.json @@ -0,0 +1,46 @@ +{ + "id": "90bfe4fd-6ad3-429d-b35d-2cac4f0c83f4", + "name": "orgs_jenkinsci_teams", + "request": { + "url": "/orgs/jenkinsci/teams", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_jenkinsci_teams-90bfe4fd-6ad3-429d-b35d-2cac4f0c83f4.json", + "headers": { + "Date": "Fri, 04 Oct 2019 00:21:32 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4901", + "X-RateLimit-Reset": "1570151182", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"22fea8e6d0291a5332cbfaed016d7bab\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D601:78E9:11135B4:145BF49:5D96908C", + "Link": "; rel=\"next\", ; rel=\"last\"" + } + }, + "uuid": "90bfe4fd-6ad3-429d-b35d-2cac4f0c83f4", + "persistent": true, + "scenarioName": "scenario-1-orgs-jenkinsci-teams", + "requiredScenarioState": "scenario-1-orgs-jenkinsci-teams-7", + "newScenarioState": "scenario-1-orgs-jenkinsci-teams-8", + "insertionIndex": 17 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkinsci_teams-19-4922cd.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkinsci_teams-19-4922cd.json new file mode 100644 index 0000000000..3586ff5c23 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkinsci_teams-19-4922cd.json @@ -0,0 +1,46 @@ +{ + "id": "4922cdbe-d115-4bb4-94be-4f75c07fc45d", + "name": "orgs_jenkinsci_teams", + "request": { + "url": "/orgs/jenkinsci/teams", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_jenkinsci_teams-4922cdbe-d115-4bb4-94be-4f75c07fc45d.json", + "headers": { + "Date": "Fri, 04 Oct 2019 00:21:32 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4899", + "X-RateLimit-Reset": "1570151182", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"22fea8e6d0291a5332cbfaed016d7bab\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D601:78E9:11135CC:145BF66:5D96908C", + "Link": "; rel=\"next\", ; rel=\"last\"" + } + }, + "uuid": "4922cdbe-d115-4bb4-94be-4f75c07fc45d", + "persistent": true, + "scenarioName": "scenario-1-orgs-jenkinsci-teams", + "requiredScenarioState": "scenario-1-orgs-jenkinsci-teams-8", + "newScenarioState": "scenario-1-orgs-jenkinsci-teams-9", + "insertionIndex": 19 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkinsci_teams-22-4b9e60.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkinsci_teams-22-4b9e60.json new file mode 100644 index 0000000000..df9cae1a5c --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkinsci_teams-22-4b9e60.json @@ -0,0 +1,46 @@ +{ + "id": "4b9e6062-54b4-41b5-ba0d-9c891b471122", + "name": "orgs_jenkinsci_teams", + "request": { + "url": "/orgs/jenkinsci/teams", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_jenkinsci_teams-4b9e6062-54b4-41b5-ba0d-9c891b471122.json", + "headers": { + "Date": "Fri, 04 Oct 2019 00:21:33 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4896", + "X-RateLimit-Reset": "1570151182", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"22fea8e6d0291a5332cbfaed016d7bab\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D601:78E9:11135F5:145BF9A:5D96908C", + "Link": "; rel=\"next\", ; rel=\"last\"" + } + }, + "uuid": "4b9e6062-54b4-41b5-ba0d-9c891b471122", + "persistent": true, + "scenarioName": "scenario-1-orgs-jenkinsci-teams", + "requiredScenarioState": "scenario-1-orgs-jenkinsci-teams-9", + "newScenarioState": "scenario-1-orgs-jenkinsci-teams-10", + "insertionIndex": 22 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkinsci_teams-25-51a481.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkinsci_teams-25-51a481.json new file mode 100644 index 0000000000..289dc326d7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkinsci_teams-25-51a481.json @@ -0,0 +1,46 @@ +{ + "id": "51a481cc-1f18-4eae-a2c7-3835859468b4", + "name": "orgs_jenkinsci_teams", + "request": { + "url": "/orgs/jenkinsci/teams", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_jenkinsci_teams-51a481cc-1f18-4eae-a2c7-3835859468b4.json", + "headers": { + "Date": "Fri, 04 Oct 2019 00:21:33 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4893", + "X-RateLimit-Reset": "1570151182", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"22fea8e6d0291a5332cbfaed016d7bab\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D601:78E9:1113624:145BFD2:5D96908D", + "Link": "; rel=\"next\", ; rel=\"last\"" + } + }, + "uuid": "51a481cc-1f18-4eae-a2c7-3835859468b4", + "persistent": true, + "scenarioName": "scenario-1-orgs-jenkinsci-teams", + "requiredScenarioState": "scenario-1-orgs-jenkinsci-teams-10", + "newScenarioState": "scenario-1-orgs-jenkinsci-teams-11", + "insertionIndex": 25 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkinsci_teams-28-a9e651.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkinsci_teams-28-a9e651.json new file mode 100644 index 0000000000..864c2cbe88 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkinsci_teams-28-a9e651.json @@ -0,0 +1,45 @@ +{ + "id": "a9e65166-cb20-4ab8-ac9d-3ef6b07ecf08", + "name": "orgs_jenkinsci_teams", + "request": { + "url": "/orgs/jenkinsci/teams", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_jenkinsci_teams-a9e65166-cb20-4ab8-ac9d-3ef6b07ecf08.json", + "headers": { + "Date": "Fri, 04 Oct 2019 00:21:33 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4890", + "X-RateLimit-Reset": "1570151182", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"22fea8e6d0291a5332cbfaed016d7bab\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D601:78E9:1113656:145C00C:5D96908D", + "Link": "; rel=\"next\", ; rel=\"last\"" + } + }, + "uuid": "a9e65166-cb20-4ab8-ac9d-3ef6b07ecf08", + "persistent": true, + "scenarioName": "scenario-1-orgs-jenkinsci-teams", + "requiredScenarioState": "scenario-1-orgs-jenkinsci-teams-11", + "insertionIndex": 28 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkinsci_teams-4-421fa9.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkinsci_teams-4-421fa9.json new file mode 100644 index 0000000000..f33564ee61 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkinsci_teams-4-421fa9.json @@ -0,0 +1,46 @@ +{ + "id": "421fa98d-71d5-4c1c-a6cb-4f7f301668c7", + "name": "orgs_jenkinsci_teams", + "request": { + "url": "/orgs/jenkinsci/teams", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_jenkinsci_teams-421fa98d-71d5-4c1c-a6cb-4f7f301668c7.json", + "headers": { + "Date": "Fri, 04 Oct 2019 00:21:30 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4914", + "X-RateLimit-Reset": "1570151182", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"22fea8e6d0291a5332cbfaed016d7bab\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D601:78E9:11134C3:145BE2C:5D96908A", + "Link": "; rel=\"next\", ; rel=\"last\"" + } + }, + "uuid": "421fa98d-71d5-4c1c-a6cb-4f7f301668c7", + "persistent": true, + "scenarioName": "scenario-1-orgs-jenkinsci-teams", + "requiredScenarioState": "Started", + "newScenarioState": "scenario-1-orgs-jenkinsci-teams-2", + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkinsci_teams-6-7e7d35.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkinsci_teams-6-7e7d35.json new file mode 100644 index 0000000000..20b1e61e0c --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkinsci_teams-6-7e7d35.json @@ -0,0 +1,46 @@ +{ + "id": "7e7d35f3-0e07-4cbb-a814-e363eca72d3d", + "name": "orgs_jenkinsci_teams", + "request": { + "url": "/orgs/jenkinsci/teams", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_jenkinsci_teams-7e7d35f3-0e07-4cbb-a814-e363eca72d3d.json", + "headers": { + "Date": "Fri, 04 Oct 2019 00:21:30 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4912", + "X-RateLimit-Reset": "1570151182", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"22fea8e6d0291a5332cbfaed016d7bab\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D601:78E9:11134E3:145BE50:5D96908A", + "Link": "; rel=\"next\", ; rel=\"last\"" + } + }, + "uuid": "7e7d35f3-0e07-4cbb-a814-e363eca72d3d", + "persistent": true, + "scenarioName": "scenario-1-orgs-jenkinsci-teams", + "requiredScenarioState": "scenario-1-orgs-jenkinsci-teams-2", + "newScenarioState": "scenario-1-orgs-jenkinsci-teams-3", + "insertionIndex": 6 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkinsci_teams-8-2832b4.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkinsci_teams-8-2832b4.json new file mode 100644 index 0000000000..68af53e5cf --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkinsci_teams-8-2832b4.json @@ -0,0 +1,46 @@ +{ + "id": "2832b4d6-9274-4137-9421-4855660803ec", + "name": "orgs_jenkinsci_teams", + "request": { + "url": "/orgs/jenkinsci/teams", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_jenkinsci_teams-2832b4d6-9274-4137-9421-4855660803ec.json", + "headers": { + "Date": "Fri, 04 Oct 2019 00:21:30 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4910", + "X-RateLimit-Reset": "1570151182", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"22fea8e6d0291a5332cbfaed016d7bab\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D601:78E9:1113501:145BE77:5D96908A", + "Link": "; rel=\"next\", ; rel=\"last\"" + } + }, + "uuid": "2832b4d6-9274-4137-9421-4855660803ec", + "persistent": true, + "scenarioName": "scenario-1-orgs-jenkinsci-teams", + "requiredScenarioState": "scenario-1-orgs-jenkinsci-teams-3", + "newScenarioState": "scenario-1-orgs-jenkinsci-teams-4", + "insertionIndex": 8 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_1450069_members_bitwiseman-50-4957ae.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_1450069_members_bitwiseman-50-4957ae.json new file mode 100644 index 0000000000..18d71043cc --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_1450069_members_bitwiseman-50-4957ae.json @@ -0,0 +1,35 @@ +{ + "id": "4957aebb-5d50-4bd0-9940-eb1d306ce903", + "name": "teams_1450069_members_bitwiseman", + "request": { + "url": "/teams/1450069/members/bitwiseman", + "method": "GET" + }, + "response": { + "status": 204, + "headers": { + "Date": "Fri, 04 Oct 2019 00:21:37 GMT", + "Server": "GitHub.com", + "Status": "204 No Content", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4868", + "X-RateLimit-Reset": "1570151182", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "D601:78E9:1113790:145C193:5D969090" + } + }, + "uuid": "4957aebb-5d50-4bd0-9940-eb1d306ce903", + "persistent": true, + "insertionIndex": 50 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_1809126_members_bitwiseman-18-242ec4.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_1809126_members_bitwiseman-18-242ec4.json new file mode 100644 index 0000000000..5c40dc2f07 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_1809126_members_bitwiseman-18-242ec4.json @@ -0,0 +1,35 @@ +{ + "id": "242ec43b-8f06-48af-bc39-3846b930a448", + "name": "teams_1809126_members_bitwiseman", + "request": { + "url": "/teams/1809126/members/bitwiseman", + "method": "GET" + }, + "response": { + "status": 204, + "headers": { + "Date": "Fri, 04 Oct 2019 00:21:32 GMT", + "Server": "GitHub.com", + "Status": "204 No Content", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4900", + "X-RateLimit-Reset": "1570151182", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "D601:78E9:11135BE:145BF57:5D96908C" + } + }, + "uuid": "242ec43b-8f06-48af-bc39-3846b930a448", + "persistent": true, + "insertionIndex": 18 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_1882929_members_bitwiseman-66-285fc3.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_1882929_members_bitwiseman-66-285fc3.json new file mode 100644 index 0000000000..b92c69fda7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_1882929_members_bitwiseman-66-285fc3.json @@ -0,0 +1,35 @@ +{ + "id": "285fc382-082e-418b-818a-bd0910f734b2", + "name": "teams_1882929_members_bitwiseman", + "request": { + "url": "/teams/1882929/members/bitwiseman", + "method": "GET" + }, + "response": { + "status": 204, + "headers": { + "Date": "Fri, 04 Oct 2019 00:21:39 GMT", + "Server": "GitHub.com", + "Status": "204 No Content", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4852", + "X-RateLimit-Reset": "1570151182", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "D601:78E9:111387C:145C2B0:5D969093" + } + }, + "uuid": "285fc382-082e-418b-818a-bd0910f734b2", + "persistent": true, + "insertionIndex": 66 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_1941826_members_bitwiseman-32-094e4d.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_1941826_members_bitwiseman-32-094e4d.json new file mode 100644 index 0000000000..70ed3af277 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_1941826_members_bitwiseman-32-094e4d.json @@ -0,0 +1,35 @@ +{ + "id": "094e4d6c-83dc-46cb-9ad3-587e52fd380d", + "name": "teams_1941826_members_bitwiseman", + "request": { + "url": "/teams/1941826/members/bitwiseman", + "method": "GET" + }, + "response": { + "status": 204, + "headers": { + "Date": "Fri, 04 Oct 2019 00:21:34 GMT", + "Server": "GitHub.com", + "Status": "204 No Content", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4886", + "X-RateLimit-Reset": "1570151182", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "D601:78E9:1113681:145C043:5D96908E" + } + }, + "uuid": "094e4d6c-83dc-46cb-9ad3-587e52fd380d", + "persistent": true, + "insertionIndex": 32 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_1986920_members_bitwiseman-29-0dd3d9.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_1986920_members_bitwiseman-29-0dd3d9.json new file mode 100644 index 0000000000..15c22b373b --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_1986920_members_bitwiseman-29-0dd3d9.json @@ -0,0 +1,35 @@ +{ + "id": "0dd3d927-287e-4a21-8977-d4f9d7d6cc49", + "name": "teams_1986920_members_bitwiseman", + "request": { + "url": "/teams/1986920/members/bitwiseman", + "method": "GET" + }, + "response": { + "status": 204, + "headers": { + "Date": "Fri, 04 Oct 2019 00:21:34 GMT", + "Server": "GitHub.com", + "Status": "204 No Content", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4889", + "X-RateLimit-Reset": "1570151182", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "D601:78E9:111365E:145C016:5D96908D" + } + }, + "uuid": "0dd3d927-287e-4a21-8977-d4f9d7d6cc49", + "persistent": true, + "insertionIndex": 29 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_2070581_members_bitwiseman-42-e22d18.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_2070581_members_bitwiseman-42-e22d18.json new file mode 100644 index 0000000000..044d16e558 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_2070581_members_bitwiseman-42-e22d18.json @@ -0,0 +1,35 @@ +{ + "id": "e22d18c0-2633-451c-a9cf-75bd37883fe1", + "name": "teams_2070581_members_bitwiseman", + "request": { + "url": "/teams/2070581/members/bitwiseman", + "method": "GET" + }, + "response": { + "status": 204, + "headers": { + "Date": "Fri, 04 Oct 2019 00:21:35 GMT", + "Server": "GitHub.com", + "Status": "204 No Content", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4876", + "X-RateLimit-Reset": "1570151182", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "D601:78E9:1113717:145C0F7:5D96908F" + } + }, + "uuid": "e22d18c0-2633-451c-a9cf-75bd37883fe1", + "persistent": true, + "insertionIndex": 42 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_2185547_members_bitwiseman-14-301ee9.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_2185547_members_bitwiseman-14-301ee9.json new file mode 100644 index 0000000000..9b8c9ca97e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_2185547_members_bitwiseman-14-301ee9.json @@ -0,0 +1,35 @@ +{ + "id": "301ee9c8-0469-4653-a4b6-3e3965388517", + "name": "teams_2185547_members_bitwiseman", + "request": { + "url": "/teams/2185547/members/bitwiseman", + "method": "GET" + }, + "response": { + "status": 204, + "headers": { + "Date": "Fri, 04 Oct 2019 00:21:31 GMT", + "Server": "GitHub.com", + "Status": "204 No Content", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4904", + "X-RateLimit-Reset": "1570151182", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "D601:78E9:111356A:145BEEC:5D96908B" + } + }, + "uuid": "301ee9c8-0469-4653-a4b6-3e3965388517", + "persistent": true, + "insertionIndex": 14 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_2188150_members_bitwiseman-58-1a21b5.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_2188150_members_bitwiseman-58-1a21b5.json new file mode 100644 index 0000000000..9609790609 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_2188150_members_bitwiseman-58-1a21b5.json @@ -0,0 +1,35 @@ +{ + "id": "1a21b5fd-a5dc-4149-a06a-f1184cb2e2a7", + "name": "teams_2188150_members_bitwiseman", + "request": { + "url": "/teams/2188150/members/bitwiseman", + "method": "GET" + }, + "response": { + "status": 204, + "headers": { + "Date": "Fri, 04 Oct 2019 00:21:38 GMT", + "Server": "GitHub.com", + "Status": "204 No Content", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4860", + "X-RateLimit-Reset": "1570151182", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "D601:78E9:11137FC:145C213:5D969091" + } + }, + "uuid": "1a21b5fd-a5dc-4149-a06a-f1184cb2e2a7", + "persistent": true, + "insertionIndex": 58 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_2278154_members_bitwiseman-60-2a2981.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_2278154_members_bitwiseman-60-2a2981.json new file mode 100644 index 0000000000..d8daf063c9 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_2278154_members_bitwiseman-60-2a2981.json @@ -0,0 +1,35 @@ +{ + "id": "2a2981c6-834d-4cfd-8a8b-5d163d398316", + "name": "teams_2278154_members_bitwiseman", + "request": { + "url": "/teams/2278154/members/bitwiseman", + "method": "GET" + }, + "response": { + "status": 204, + "headers": { + "Date": "Fri, 04 Oct 2019 00:21:38 GMT", + "Server": "GitHub.com", + "Status": "204 No Content", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4858", + "X-RateLimit-Reset": "1570151182", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "D601:78E9:1113834:145C257:5D969092" + } + }, + "uuid": "2a2981c6-834d-4cfd-8a8b-5d163d398316", + "persistent": true, + "insertionIndex": 60 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_2300722_members_bitwiseman-7-9bec56.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_2300722_members_bitwiseman-7-9bec56.json new file mode 100644 index 0000000000..5d50f8a0db --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_2300722_members_bitwiseman-7-9bec56.json @@ -0,0 +1,35 @@ +{ + "id": "9bec5681-b961-4122-b399-39d654daf95a", + "name": "teams_2300722_members_bitwiseman", + "request": { + "url": "/teams/2300722/members/bitwiseman", + "method": "GET" + }, + "response": { + "status": 204, + "headers": { + "Date": "Fri, 04 Oct 2019 00:21:30 GMT", + "Server": "GitHub.com", + "Status": "204 No Content", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4911", + "X-RateLimit-Reset": "1570151182", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "D601:78E9:11134F4:145BE63:5D96908A" + } + }, + "uuid": "9bec5681-b961-4122-b399-39d654daf95a", + "persistent": true, + "insertionIndex": 7 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_2384898_members_bitwiseman-40-95da17.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_2384898_members_bitwiseman-40-95da17.json new file mode 100644 index 0000000000..a5883f2b10 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_2384898_members_bitwiseman-40-95da17.json @@ -0,0 +1,35 @@ +{ + "id": "95da1778-ddf4-4040-8777-5110e25a7615", + "name": "teams_2384898_members_bitwiseman", + "request": { + "url": "/teams/2384898/members/bitwiseman", + "method": "GET" + }, + "response": { + "status": 204, + "headers": { + "Date": "Fri, 04 Oct 2019 00:21:35 GMT", + "Server": "GitHub.com", + "Status": "204 No Content", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4878", + "X-RateLimit-Reset": "1570151182", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "D601:78E9:1113703:145C0E0:5D96908F" + } + }, + "uuid": "95da1778-ddf4-4040-8777-5110e25a7615", + "persistent": true, + "insertionIndex": 40 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_2384906_members_bitwiseman-36-f56cc4.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_2384906_members_bitwiseman-36-f56cc4.json new file mode 100644 index 0000000000..fb0470334d --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_2384906_members_bitwiseman-36-f56cc4.json @@ -0,0 +1,35 @@ +{ + "id": "f56cc484-a4ed-4467-908d-8bcd914912b2", + "name": "teams_2384906_members_bitwiseman", + "request": { + "url": "/teams/2384906/members/bitwiseman", + "method": "GET" + }, + "response": { + "status": 204, + "headers": { + "Date": "Fri, 04 Oct 2019 00:21:35 GMT", + "Server": "GitHub.com", + "Status": "204 No Content", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4882", + "X-RateLimit-Reset": "1570151182", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "D601:78E9:11136C7:145C091:5D96908E" + } + }, + "uuid": "f56cc484-a4ed-4467-908d-8bcd914912b2", + "persistent": true, + "insertionIndex": 36 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_2478842_members_bitwiseman-16-89727f.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_2478842_members_bitwiseman-16-89727f.json new file mode 100644 index 0000000000..30da85237a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_2478842_members_bitwiseman-16-89727f.json @@ -0,0 +1,35 @@ +{ + "id": "89727f43-cf60-42af-bf7f-c5016281db3b", + "name": "teams_2478842_members_bitwiseman", + "request": { + "url": "/teams/2478842/members/bitwiseman", + "method": "GET" + }, + "response": { + "status": 204, + "headers": { + "Date": "Fri, 04 Oct 2019 00:21:32 GMT", + "Server": "GitHub.com", + "Status": "204 No Content", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4902", + "X-RateLimit-Reset": "1570151182", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "D601:78E9:11135A6:145BF1D:5D96908C" + } + }, + "uuid": "89727f43-cf60-42af-bf7f-c5016281db3b", + "persistent": true, + "insertionIndex": 16 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_2510135_members_bitwiseman-62-0a3910.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_2510135_members_bitwiseman-62-0a3910.json new file mode 100644 index 0000000000..0d802f75c1 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_2510135_members_bitwiseman-62-0a3910.json @@ -0,0 +1,35 @@ +{ + "id": "0a39104c-3aa9-4b48-a988-87fc0323775e", + "name": "teams_2510135_members_bitwiseman", + "request": { + "url": "/teams/2510135/members/bitwiseman", + "method": "GET" + }, + "response": { + "status": 204, + "headers": { + "Date": "Fri, 04 Oct 2019 00:21:38 GMT", + "Server": "GitHub.com", + "Status": "204 No Content", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4856", + "X-RateLimit-Reset": "1570151182", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "D601:78E9:111384F:145C279:5D969092" + } + }, + "uuid": "0a39104c-3aa9-4b48-a988-87fc0323775e", + "persistent": true, + "insertionIndex": 62 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_2658933_members_bitwiseman-64-23b3d8.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_2658933_members_bitwiseman-64-23b3d8.json new file mode 100644 index 0000000000..da949fe0d3 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_2658933_members_bitwiseman-64-23b3d8.json @@ -0,0 +1,35 @@ +{ + "id": "23b3d855-2f24-4554-8643-cb24e153b67d", + "name": "teams_2658933_members_bitwiseman", + "request": { + "url": "/teams/2658933/members/bitwiseman", + "method": "GET" + }, + "response": { + "status": 204, + "headers": { + "Date": "Fri, 04 Oct 2019 00:21:39 GMT", + "Server": "GitHub.com", + "Status": "204 No Content", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4854", + "X-RateLimit-Reset": "1570151182", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "D601:78E9:1113865:145C291:5D969093" + } + }, + "uuid": "23b3d855-2f24-4554-8643-cb24e153b67d", + "persistent": true, + "insertionIndex": 64 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_2832516_members_bitwiseman-27-01adc0.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_2832516_members_bitwiseman-27-01adc0.json new file mode 100644 index 0000000000..75b9e141d7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_2832516_members_bitwiseman-27-01adc0.json @@ -0,0 +1,35 @@ +{ + "id": "01adc070-798a-4862-b0cf-6d96ca6ac5e2", + "name": "teams_2832516_members_bitwiseman", + "request": { + "url": "/teams/2832516/members/bitwiseman", + "method": "GET" + }, + "response": { + "status": 204, + "headers": { + "Date": "Fri, 04 Oct 2019 00:21:33 GMT", + "Server": "GitHub.com", + "Status": "204 No Content", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4891", + "X-RateLimit-Reset": "1570151182", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "D601:78E9:111364C:145BFFE:5D96908D" + } + }, + "uuid": "01adc070-798a-4862-b0cf-6d96ca6ac5e2", + "persistent": true, + "insertionIndex": 27 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_2832517_members_bitwiseman-21-bd3f96.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_2832517_members_bitwiseman-21-bd3f96.json new file mode 100644 index 0000000000..45f08f13ed --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_2832517_members_bitwiseman-21-bd3f96.json @@ -0,0 +1,35 @@ +{ + "id": "bd3f9695-f9e7-43e5-af7b-aeb5f71e352e", + "name": "teams_2832517_members_bitwiseman", + "request": { + "url": "/teams/2832517/members/bitwiseman", + "method": "GET" + }, + "response": { + "status": 204, + "headers": { + "Date": "Fri, 04 Oct 2019 00:21:32 GMT", + "Server": "GitHub.com", + "Status": "204 No Content", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4897", + "X-RateLimit-Reset": "1570151182", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "D601:78E9:11135E7:145BF8B:5D96908C" + } + }, + "uuid": "bd3f9695-f9e7-43e5-af7b-aeb5f71e352e", + "persistent": true, + "insertionIndex": 21 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_2915408_members_bitwiseman-45-b4fb18.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_2915408_members_bitwiseman-45-b4fb18.json new file mode 100644 index 0000000000..8c82e9db9b --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_2915408_members_bitwiseman-45-b4fb18.json @@ -0,0 +1,35 @@ +{ + "id": "b4fb1896-a01e-49a3-873b-2b8712decd5b", + "name": "teams_2915408_members_bitwiseman", + "request": { + "url": "/teams/2915408/members/bitwiseman", + "method": "GET" + }, + "response": { + "status": 204, + "headers": { + "Date": "Fri, 04 Oct 2019 00:21:36 GMT", + "Server": "GitHub.com", + "Status": "204 No Content", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4873", + "X-RateLimit-Reset": "1570151182", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "D601:78E9:1113749:145C133:5D969090" + } + }, + "uuid": "b4fb1896-a01e-49a3-873b-2b8712decd5b", + "persistent": true, + "insertionIndex": 45 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_2934265_members_bitwiseman-24-f07c2b.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_2934265_members_bitwiseman-24-f07c2b.json new file mode 100644 index 0000000000..a9004fd598 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_2934265_members_bitwiseman-24-f07c2b.json @@ -0,0 +1,35 @@ +{ + "id": "f07c2ba7-3b7a-43df-ba10-8ac877892c1f", + "name": "teams_2934265_members_bitwiseman", + "request": { + "url": "/teams/2934265/members/bitwiseman", + "method": "GET" + }, + "response": { + "status": 204, + "headers": { + "Date": "Fri, 04 Oct 2019 00:21:33 GMT", + "Server": "GitHub.com", + "Status": "204 No Content", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4894", + "X-RateLimit-Reset": "1570151182", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "D601:78E9:1113619:145BFC2:5D96908D" + } + }, + "uuid": "f07c2ba7-3b7a-43df-ba10-8ac877892c1f", + "persistent": true, + "insertionIndex": 24 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_3023453_members_bitwiseman-12-2724fa.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_3023453_members_bitwiseman-12-2724fa.json new file mode 100644 index 0000000000..483a48957c --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_3023453_members_bitwiseman-12-2724fa.json @@ -0,0 +1,35 @@ +{ + "id": "2724fa0c-cdc2-4977-85de-0d3022e0680f", + "name": "teams_3023453_members_bitwiseman", + "request": { + "url": "/teams/3023453/members/bitwiseman", + "method": "GET" + }, + "response": { + "status": 204, + "headers": { + "Date": "Fri, 04 Oct 2019 00:21:31 GMT", + "Server": "GitHub.com", + "Status": "204 No Content", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4906", + "X-RateLimit-Reset": "1570151182", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "D601:78E9:111354A:145BECD:5D96908B" + } + }, + "uuid": "2724fa0c-cdc2-4977-85de-0d3022e0680f", + "persistent": true, + "insertionIndex": 12 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_3136781_members_bitwiseman-48-ea7a1b.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_3136781_members_bitwiseman-48-ea7a1b.json new file mode 100644 index 0000000000..6b4856a81d --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_3136781_members_bitwiseman-48-ea7a1b.json @@ -0,0 +1,35 @@ +{ + "id": "ea7a1b90-f299-4265-a22d-ef286bb1229e", + "name": "teams_3136781_members_bitwiseman", + "request": { + "url": "/teams/3136781/members/bitwiseman", + "method": "GET" + }, + "response": { + "status": 204, + "headers": { + "Date": "Fri, 04 Oct 2019 00:21:36 GMT", + "Server": "GitHub.com", + "Status": "204 No Content", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4870", + "X-RateLimit-Reset": "1570151182", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "D601:78E9:1113776:145C16F:5D969090" + } + }, + "uuid": "ea7a1b90-f299-4265-a22d-ef286bb1229e", + "persistent": true, + "insertionIndex": 48 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_3451996_members_bitwiseman-55-0e9309.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_3451996_members_bitwiseman-55-0e9309.json new file mode 100644 index 0000000000..2d88728db5 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_3451996_members_bitwiseman-55-0e9309.json @@ -0,0 +1,35 @@ +{ + "id": "0e9309e5-a4ff-464d-9fff-eae6c4a28df2", + "name": "teams_3451996_members_bitwiseman", + "request": { + "url": "/teams/3451996/members/bitwiseman", + "method": "GET" + }, + "response": { + "status": 204, + "headers": { + "Date": "Fri, 04 Oct 2019 00:21:37 GMT", + "Server": "GitHub.com", + "Status": "204 No Content", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4863", + "X-RateLimit-Reset": "1570151182", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "D601:78E9:11137D3:145C1E7:5D969091" + } + }, + "uuid": "0e9309e5-a4ff-464d-9fff-eae6c4a28df2", + "persistent": true, + "insertionIndex": 55 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_496711_members_bitwiseman-9-9e90f9.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_496711_members_bitwiseman-9-9e90f9.json new file mode 100644 index 0000000000..9bef3a928e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_496711_members_bitwiseman-9-9e90f9.json @@ -0,0 +1,35 @@ +{ + "id": "9e90f95d-7856-4183-9623-3187ae8ff3bd", + "name": "teams_496711_members_bitwiseman", + "request": { + "url": "/teams/496711/members/bitwiseman", + "method": "GET" + }, + "response": { + "status": 204, + "headers": { + "Date": "Fri, 04 Oct 2019 00:21:31 GMT", + "Server": "GitHub.com", + "Status": "204 No Content", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4909", + "X-RateLimit-Reset": "1570151182", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "D601:78E9:1113512:145BE8B:5D96908A" + } + }, + "uuid": "9e90f95d-7856-4183-9623-3187ae8ff3bd", + "persistent": true, + "insertionIndex": 9 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_663296_members_bitwiseman-69-a75539.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_663296_members_bitwiseman-69-a75539.json new file mode 100644 index 0000000000..590b0c6042 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_663296_members_bitwiseman-69-a75539.json @@ -0,0 +1,35 @@ +{ + "id": "a7553907-7516-490b-be55-84fad2f47610", + "name": "teams_663296_members_bitwiseman", + "request": { + "url": "/teams/663296/members/bitwiseman", + "method": "GET" + }, + "response": { + "status": 204, + "headers": { + "Date": "Fri, 04 Oct 2019 00:21:39 GMT", + "Server": "GitHub.com", + "Status": "204 No Content", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4849", + "X-RateLimit-Reset": "1570151182", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "D601:78E9:11138A2:145C2E0:5D969093" + } + }, + "uuid": "a7553907-7516-490b-be55-84fad2f47610", + "persistent": true, + "insertionIndex": 69 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_711073_members_bitwiseman-5-9723ac.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_711073_members_bitwiseman-5-9723ac.json new file mode 100644 index 0000000000..520729d7d9 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_711073_members_bitwiseman-5-9723ac.json @@ -0,0 +1,35 @@ +{ + "id": "9723ac0d-e1c9-462f-b1fc-f10acb89629d", + "name": "teams_711073_members_bitwiseman", + "request": { + "url": "/teams/711073/members/bitwiseman", + "method": "GET" + }, + "response": { + "status": 204, + "headers": { + "Date": "Fri, 04 Oct 2019 00:21:30 GMT", + "Server": "GitHub.com", + "Status": "204 No Content", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4913", + "X-RateLimit-Reset": "1570151182", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "D601:78E9:11134D9:145BE41:5D96908A" + } + }, + "uuid": "9723ac0d-e1c9-462f-b1fc-f10acb89629d", + "persistent": true, + "insertionIndex": 5 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_820404_members_bitwiseman-53-be6df5.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_820404_members_bitwiseman-53-be6df5.json new file mode 100644 index 0000000000..f34d277545 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_820404_members_bitwiseman-53-be6df5.json @@ -0,0 +1,35 @@ +{ + "id": "be6df5bf-2958-4489-bf5c-ce8c65cb84d2", + "name": "teams_820404_members_bitwiseman", + "request": { + "url": "/teams/820404/members/bitwiseman", + "method": "GET" + }, + "response": { + "status": 204, + "headers": { + "Date": "Fri, 04 Oct 2019 00:21:37 GMT", + "Server": "GitHub.com", + "Status": "204 No Content", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4865", + "X-RateLimit-Reset": "1570151182", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "D601:78E9:11137BC:145C1C8:5D969091" + } + }, + "uuid": "be6df5bf-2958-4489-bf5c-ce8c65cb84d2", + "persistent": true, + "insertionIndex": 53 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_879403_members_bitwiseman-38-189224.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_879403_members_bitwiseman-38-189224.json new file mode 100644 index 0000000000..c41d9d1901 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_879403_members_bitwiseman-38-189224.json @@ -0,0 +1,35 @@ +{ + "id": "189224de-792d-45ba-993a-878171e9a63f", + "name": "teams_879403_members_bitwiseman", + "request": { + "url": "/teams/879403/members/bitwiseman", + "method": "GET" + }, + "response": { + "status": 204, + "headers": { + "Date": "Fri, 04 Oct 2019 00:21:35 GMT", + "Server": "GitHub.com", + "Status": "204 No Content", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4880", + "X-RateLimit-Reset": "1570151182", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "D601:78E9:11136E6:145C0B8:5D96908F" + } + }, + "uuid": "189224de-792d-45ba-993a-878171e9a63f", + "persistent": true, + "insertionIndex": 38 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/user-1-9a7933.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/user-1-9a7933.json new file mode 100644 index 0000000000..57d193d01e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/user-1-9a7933.json @@ -0,0 +1,43 @@ +{ + "id": "9a793342-57f8-4135-bd51-f0f96e57d45b", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-9a793342-57f8-4135-bd51-f0f96e57d45b.json", + "headers": { + "Date": "Fri, 04 Oct 2019 00:21:28 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4918", + "X-RateLimit-Reset": "1570151182", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"af0c41afcacb8ceee14b7d896719c3bd\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D601:78E9:111343F:145BD84:5D969088" + } + }, + "uuid": "9a793342-57f8-4135-bd51-f0f96e57d45b", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/user_teams-2-d60daf.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/user_teams-2-d60daf.json new file mode 100644 index 0000000000..6f26ced847 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/user_teams-2-d60daf.json @@ -0,0 +1,42 @@ +{ + "id": "d60dafe1-79c4-4212-9544-739b7ee976b9", + "name": "user_teams", + "request": { + "url": "/user/teams", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user_teams-d60dafe1-79c4-4212-9544-739b7ee976b9.json", + "headers": { + "Date": "Fri, 04 Oct 2019 00:21:29 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4916", + "X-RateLimit-Reset": "1570151182", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"06e08fc04ec1c6d8e8b878742cc2c972\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D601:78E9:1113466:145BD95:5D969088" + } + }, + "uuid": "d60dafe1-79c4-4212-9544-739b7ee976b9", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/__files/organizations_107424_repos-0e04a7f4-8a85-40ec-b90d-faf2822b648f.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/__files/organizations_107424_repos-0e04a7f4-8a85-40ec-b90d-faf2822b648f.json new file mode 100644 index 0000000000..c412bb8550 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/__files/organizations_107424_repos-0e04a7f4-8a85-40ec-b90d-faf2822b648f.json @@ -0,0 +1,10376 @@ +[ + { + "id": 64232273, + "node_id": "MDEwOlJlcG9zaXRvcnk2NDIzMjI3Mw==", + "name": "statistics-gatherer-plugin", + "full_name": "jenkinsci/statistics-gatherer-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/statistics-gatherer-plugin", + "description": "Jenkins plugin to capture queue and build statistics", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/statistics-gatherer-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/statistics-gatherer-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/statistics-gatherer-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/statistics-gatherer-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/statistics-gatherer-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/statistics-gatherer-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/statistics-gatherer-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/statistics-gatherer-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/statistics-gatherer-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/statistics-gatherer-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/statistics-gatherer-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/statistics-gatherer-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/statistics-gatherer-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/statistics-gatherer-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/statistics-gatherer-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/statistics-gatherer-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/statistics-gatherer-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/statistics-gatherer-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/statistics-gatherer-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/statistics-gatherer-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/statistics-gatherer-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/statistics-gatherer-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/statistics-gatherer-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/statistics-gatherer-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/statistics-gatherer-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/statistics-gatherer-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/statistics-gatherer-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/statistics-gatherer-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/statistics-gatherer-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/statistics-gatherer-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/statistics-gatherer-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/statistics-gatherer-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/statistics-gatherer-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/statistics-gatherer-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/statistics-gatherer-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/statistics-gatherer-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/statistics-gatherer-plugin/deployments", + "created_at": "2016-07-26T15:23:38Z", + "updated_at": "2019-10-04T08:18:09Z", + "pushed_at": "2019-09-15T09:16:01Z", + "git_url": "git://github.com/jenkinsci/statistics-gatherer-plugin.git", + "ssh_url": "git@github.com:jenkinsci/statistics-gatherer-plugin.git", + "clone_url": "https://github.com/jenkinsci/statistics-gatherer-plugin.git", + "svn_url": "https://github.com/jenkinsci/statistics-gatherer-plugin", + "homepage": null, + "size": 241, + "stargazers_count": 29, + "watchers_count": 29, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 30, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 12, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 30, + "open_issues": 12, + "watchers": 29, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 64232401, + "node_id": "MDEwOlJlcG9zaXRvcnk2NDIzMjQwMQ==", + "name": "unleash-plugin", + "full_name": "jenkinsci/unleash-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/unleash-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/unleash-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/unleash-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/unleash-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/unleash-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/unleash-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/unleash-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/unleash-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/unleash-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/unleash-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/unleash-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/unleash-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/unleash-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/unleash-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/unleash-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/unleash-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/unleash-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/unleash-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/unleash-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/unleash-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/unleash-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/unleash-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/unleash-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/unleash-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/unleash-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/unleash-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/unleash-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/unleash-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/unleash-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/unleash-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/unleash-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/unleash-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/unleash-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/unleash-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/unleash-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/unleash-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/unleash-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/unleash-plugin/deployments", + "created_at": "2016-07-26T15:25:17Z", + "updated_at": "2019-10-10T06:20:12Z", + "pushed_at": "2019-10-10T06:20:10Z", + "git_url": "git://github.com/jenkinsci/unleash-plugin.git", + "ssh_url": "git@github.com:jenkinsci/unleash-plugin.git", + "clone_url": "https://github.com/jenkinsci/unleash-plugin.git", + "svn_url": "https://github.com/jenkinsci/unleash-plugin", + "homepage": null, + "size": 172, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 7, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 7, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 64247276, + "node_id": "MDEwOlJlcG9zaXRvcnk2NDI0NzI3Ng==", + "name": "hashicorp-vault-plugin", + "full_name": "jenkinsci/hashicorp-vault-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/hashicorp-vault-plugin", + "description": "Jenkins plugin to populate environment variables from secrets stored in HashiCorp's Vault.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/hashicorp-vault-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/hashicorp-vault-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/hashicorp-vault-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/hashicorp-vault-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/hashicorp-vault-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/hashicorp-vault-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/hashicorp-vault-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/hashicorp-vault-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/hashicorp-vault-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/hashicorp-vault-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/hashicorp-vault-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/hashicorp-vault-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/hashicorp-vault-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/hashicorp-vault-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/hashicorp-vault-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/hashicorp-vault-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/hashicorp-vault-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/hashicorp-vault-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/hashicorp-vault-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/hashicorp-vault-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/hashicorp-vault-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/hashicorp-vault-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/hashicorp-vault-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/hashicorp-vault-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/hashicorp-vault-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/hashicorp-vault-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/hashicorp-vault-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/hashicorp-vault-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/hashicorp-vault-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/hashicorp-vault-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/hashicorp-vault-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/hashicorp-vault-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/hashicorp-vault-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/hashicorp-vault-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/hashicorp-vault-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/hashicorp-vault-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/hashicorp-vault-plugin/deployments", + "created_at": "2016-07-26T19:07:44Z", + "updated_at": "2019-10-24T20:52:01Z", + "pushed_at": "2019-10-16T21:10:15Z", + "git_url": "git://github.com/jenkinsci/hashicorp-vault-plugin.git", + "ssh_url": "git@github.com:jenkinsci/hashicorp-vault-plugin.git", + "clone_url": "https://github.com/jenkinsci/hashicorp-vault-plugin.git", + "svn_url": "https://github.com/jenkinsci/hashicorp-vault-plugin", + "homepage": null, + "size": 1772, + "stargazers_count": 136, + "watchers_count": 136, + "language": "Java", + "has_issues": false, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 70, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 70, + "open_issues": 3, + "watchers": 136, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 64346195, + "node_id": "MDEwOlJlcG9zaXRvcnk2NDM0NjE5NQ==", + "name": "policycenter-gate-validator-plugin", + "full_name": "jenkinsci/policycenter-gate-validator-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/policycenter-gate-validator-plugin", + "description": "The Policy Center Gate Validator, a jenkins plugin, is to abort or continue the automated build and deployment pipeline based on the status of policy gates that have been configured inside of Policy Center. This allows Jenkins to automate the continuous release / continuous deployment pipeline with acceptance policies defined in Policy Center for each step along the way.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/policycenter-gate-validator-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/policycenter-gate-validator-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/policycenter-gate-validator-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/policycenter-gate-validator-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/policycenter-gate-validator-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/policycenter-gate-validator-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/policycenter-gate-validator-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/policycenter-gate-validator-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/policycenter-gate-validator-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/policycenter-gate-validator-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/policycenter-gate-validator-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/policycenter-gate-validator-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/policycenter-gate-validator-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/policycenter-gate-validator-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/policycenter-gate-validator-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/policycenter-gate-validator-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/policycenter-gate-validator-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/policycenter-gate-validator-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/policycenter-gate-validator-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/policycenter-gate-validator-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/policycenter-gate-validator-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/policycenter-gate-validator-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/policycenter-gate-validator-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/policycenter-gate-validator-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/policycenter-gate-validator-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/policycenter-gate-validator-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/policycenter-gate-validator-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/policycenter-gate-validator-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/policycenter-gate-validator-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/policycenter-gate-validator-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/policycenter-gate-validator-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/policycenter-gate-validator-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/policycenter-gate-validator-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/policycenter-gate-validator-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/policycenter-gate-validator-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/policycenter-gate-validator-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/policycenter-gate-validator-plugin/deployments", + "created_at": "2016-07-27T22:36:34Z", + "updated_at": "2016-08-18T04:30:04Z", + "pushed_at": "2016-08-02T22:57:23Z", + "git_url": "git://github.com/jenkinsci/policycenter-gate-validator-plugin.git", + "ssh_url": "git@github.com:jenkinsci/policycenter-gate-validator-plugin.git", + "clone_url": "https://github.com/jenkinsci/policycenter-gate-validator-plugin.git", + "svn_url": "https://github.com/jenkinsci/policycenter-gate-validator-plugin", + "homepage": null, + "size": 50, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 4, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 64493153, + "node_id": "MDEwOlJlcG9zaXRvcnk2NDQ5MzE1Mw==", + "name": "ibm-security-appscanstandard-scanner-plugin", + "full_name": "jenkinsci/ibm-security-appscanstandard-scanner-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/ibm-security-appscanstandard-scanner-plugin", + "description": "IBM's AppScan Standard Plugin for Jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/ibm-security-appscanstandard-scanner-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/ibm-security-appscanstandard-scanner-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/ibm-security-appscanstandard-scanner-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/ibm-security-appscanstandard-scanner-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/ibm-security-appscanstandard-scanner-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/ibm-security-appscanstandard-scanner-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/ibm-security-appscanstandard-scanner-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/ibm-security-appscanstandard-scanner-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/ibm-security-appscanstandard-scanner-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/ibm-security-appscanstandard-scanner-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/ibm-security-appscanstandard-scanner-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/ibm-security-appscanstandard-scanner-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/ibm-security-appscanstandard-scanner-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/ibm-security-appscanstandard-scanner-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/ibm-security-appscanstandard-scanner-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/ibm-security-appscanstandard-scanner-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/ibm-security-appscanstandard-scanner-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/ibm-security-appscanstandard-scanner-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/ibm-security-appscanstandard-scanner-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/ibm-security-appscanstandard-scanner-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/ibm-security-appscanstandard-scanner-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/ibm-security-appscanstandard-scanner-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/ibm-security-appscanstandard-scanner-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/ibm-security-appscanstandard-scanner-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/ibm-security-appscanstandard-scanner-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/ibm-security-appscanstandard-scanner-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/ibm-security-appscanstandard-scanner-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/ibm-security-appscanstandard-scanner-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/ibm-security-appscanstandard-scanner-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/ibm-security-appscanstandard-scanner-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/ibm-security-appscanstandard-scanner-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/ibm-security-appscanstandard-scanner-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/ibm-security-appscanstandard-scanner-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/ibm-security-appscanstandard-scanner-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/ibm-security-appscanstandard-scanner-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/ibm-security-appscanstandard-scanner-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/ibm-security-appscanstandard-scanner-plugin/deployments", + "created_at": "2016-07-29T16:01:22Z", + "updated_at": "2019-08-27T16:00:18Z", + "pushed_at": "2017-08-11T09:15:53Z", + "git_url": "git://github.com/jenkinsci/ibm-security-appscanstandard-scanner-plugin.git", + "ssh_url": "git@github.com:jenkinsci/ibm-security-appscanstandard-scanner-plugin.git", + "clone_url": "https://github.com/jenkinsci/ibm-security-appscanstandard-scanner-plugin.git", + "svn_url": "https://github.com/jenkinsci/ibm-security-appscanstandard-scanner-plugin", + "homepage": "https://wiki.jenkins.io/display/JENKINS/IBM+Security+AppScan+Standard+Scanner+Plugin", + "size": 72, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 10, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 10, + "open_issues": 0, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 64769870, + "node_id": "MDEwOlJlcG9zaXRvcnk2NDc2OTg3MA==", + "name": "release-helper-plugin", + "full_name": "jenkinsci/release-helper-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/release-helper-plugin", + "description": "This repository contains the Jenkins Plugin to automate tasks of the inspectIT release build. The plugin is able to interact with Atlassian Confluence and Jira as well as GitHub. ", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/release-helper-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/release-helper-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/release-helper-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/release-helper-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/release-helper-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/release-helper-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/release-helper-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/release-helper-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/release-helper-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/release-helper-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/release-helper-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/release-helper-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/release-helper-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/release-helper-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/release-helper-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/release-helper-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/release-helper-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/release-helper-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/release-helper-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/release-helper-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/release-helper-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/release-helper-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/release-helper-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/release-helper-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/release-helper-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/release-helper-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/release-helper-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/release-helper-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/release-helper-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/release-helper-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/release-helper-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/release-helper-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/release-helper-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/release-helper-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/release-helper-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/release-helper-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/release-helper-plugin/deployments", + "created_at": "2016-08-02T15:40:43Z", + "updated_at": "2019-09-22T04:21:54Z", + "pushed_at": "2018-07-05T13:25:58Z", + "git_url": "git://github.com/jenkinsci/release-helper-plugin.git", + "ssh_url": "git@github.com:jenkinsci/release-helper-plugin.git", + "clone_url": "https://github.com/jenkinsci/release-helper-plugin.git", + "svn_url": "https://github.com/jenkinsci/release-helper-plugin", + "homepage": "http://www.inspectit.rocks", + "size": 196, + "stargazers_count": 7, + "watchers_count": 7, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 10, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "agpl-3.0", + "name": "GNU Affero General Public License v3.0", + "spdx_id": "AGPL-3.0", + "url": "https://api.github.com/licenses/agpl-3.0", + "node_id": "MDc6TGljZW5zZTE=" + }, + "forks": 10, + "open_issues": 0, + "watchers": 7, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 65086205, + "node_id": "MDEwOlJlcG9zaXRvcnk2NTA4NjIwNQ==", + "name": "pipeline-graph-analysis-plugin", + "full_name": "jenkinsci/pipeline-graph-analysis-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pipeline-graph-analysis-plugin", + "description": "Plugin for analyzing jenkins", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/pipeline-graph-analysis-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pipeline-graph-analysis-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pipeline-graph-analysis-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pipeline-graph-analysis-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pipeline-graph-analysis-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pipeline-graph-analysis-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pipeline-graph-analysis-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pipeline-graph-analysis-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pipeline-graph-analysis-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pipeline-graph-analysis-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pipeline-graph-analysis-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pipeline-graph-analysis-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pipeline-graph-analysis-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pipeline-graph-analysis-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pipeline-graph-analysis-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pipeline-graph-analysis-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pipeline-graph-analysis-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pipeline-graph-analysis-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pipeline-graph-analysis-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pipeline-graph-analysis-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pipeline-graph-analysis-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pipeline-graph-analysis-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pipeline-graph-analysis-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pipeline-graph-analysis-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pipeline-graph-analysis-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pipeline-graph-analysis-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pipeline-graph-analysis-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pipeline-graph-analysis-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pipeline-graph-analysis-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pipeline-graph-analysis-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pipeline-graph-analysis-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pipeline-graph-analysis-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pipeline-graph-analysis-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pipeline-graph-analysis-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pipeline-graph-analysis-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pipeline-graph-analysis-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pipeline-graph-analysis-plugin/deployments", + "created_at": "2016-08-06T14:27:26Z", + "updated_at": "2019-07-22T13:21:21Z", + "pushed_at": "2019-08-19T17:04:31Z", + "git_url": "git://github.com/jenkinsci/pipeline-graph-analysis-plugin.git", + "ssh_url": "git@github.com:jenkinsci/pipeline-graph-analysis-plugin.git", + "clone_url": "https://github.com/jenkinsci/pipeline-graph-analysis-plugin.git", + "svn_url": "https://github.com/jenkinsci/pipeline-graph-analysis-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Pipeline+Graph+Analysis+Plugin", + "size": 239, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 23, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 23, + "open_issues": 2, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 65211724, + "node_id": "MDEwOlJlcG9zaXRvcnk2NTIxMTcyNA==", + "name": "help-editor-plugin", + "full_name": "jenkinsci/help-editor-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/help-editor-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/help-editor-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/help-editor-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/help-editor-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/help-editor-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/help-editor-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/help-editor-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/help-editor-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/help-editor-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/help-editor-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/help-editor-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/help-editor-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/help-editor-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/help-editor-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/help-editor-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/help-editor-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/help-editor-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/help-editor-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/help-editor-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/help-editor-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/help-editor-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/help-editor-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/help-editor-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/help-editor-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/help-editor-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/help-editor-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/help-editor-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/help-editor-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/help-editor-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/help-editor-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/help-editor-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/help-editor-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/help-editor-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/help-editor-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/help-editor-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/help-editor-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/help-editor-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/help-editor-plugin/deployments", + "created_at": "2016-08-08T14:36:35Z", + "updated_at": "2016-08-19T22:23:54Z", + "pushed_at": "2016-08-23T11:06:15Z", + "git_url": "git://github.com/jenkinsci/help-editor-plugin.git", + "ssh_url": "git@github.com:jenkinsci/help-editor-plugin.git", + "clone_url": "https://github.com/jenkinsci/help-editor-plugin.git", + "svn_url": "https://github.com/jenkinsci/help-editor-plugin", + "homepage": null, + "size": 41, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 65222738, + "node_id": "MDEwOlJlcG9zaXRvcnk2NTIyMjczOA==", + "name": "pipeline-classpath-step-plugin", + "full_name": "jenkinsci/pipeline-classpath-step-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pipeline-classpath-step-plugin", + "description": "A plugin for Jenkins Pipeline DSL that allows you to add entries to the groovy classpath", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/pipeline-classpath-step-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pipeline-classpath-step-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pipeline-classpath-step-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pipeline-classpath-step-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pipeline-classpath-step-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pipeline-classpath-step-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pipeline-classpath-step-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pipeline-classpath-step-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pipeline-classpath-step-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pipeline-classpath-step-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pipeline-classpath-step-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pipeline-classpath-step-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pipeline-classpath-step-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pipeline-classpath-step-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pipeline-classpath-step-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pipeline-classpath-step-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pipeline-classpath-step-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pipeline-classpath-step-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pipeline-classpath-step-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pipeline-classpath-step-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pipeline-classpath-step-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pipeline-classpath-step-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pipeline-classpath-step-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pipeline-classpath-step-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pipeline-classpath-step-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pipeline-classpath-step-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pipeline-classpath-step-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pipeline-classpath-step-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pipeline-classpath-step-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pipeline-classpath-step-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pipeline-classpath-step-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pipeline-classpath-step-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pipeline-classpath-step-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pipeline-classpath-step-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pipeline-classpath-step-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pipeline-classpath-step-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pipeline-classpath-step-plugin/deployments", + "created_at": "2016-08-08T16:59:57Z", + "updated_at": "2016-11-10T18:31:09Z", + "pushed_at": "2016-10-25T18:23:44Z", + "git_url": "git://github.com/jenkinsci/pipeline-classpath-step-plugin.git", + "ssh_url": "git@github.com:jenkinsci/pipeline-classpath-step-plugin.git", + "clone_url": "https://github.com/jenkinsci/pipeline-classpath-step-plugin.git", + "svn_url": "https://github.com/jenkinsci/pipeline-classpath-step-plugin", + "homepage": null, + "size": 14, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 6, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 65223117, + "node_id": "MDEwOlJlcG9zaXRvcnk2NTIyMzExNw==", + "name": "build-steps-from-json-plugin", + "full_name": "jenkinsci/build-steps-from-json-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/build-steps-from-json-plugin", + "description": "This plugin enables a builder which takes buildsteps from json and executes them in freestyle project", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/build-steps-from-json-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/build-steps-from-json-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/build-steps-from-json-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/build-steps-from-json-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/build-steps-from-json-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/build-steps-from-json-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/build-steps-from-json-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/build-steps-from-json-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/build-steps-from-json-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/build-steps-from-json-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/build-steps-from-json-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/build-steps-from-json-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/build-steps-from-json-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/build-steps-from-json-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/build-steps-from-json-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/build-steps-from-json-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/build-steps-from-json-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/build-steps-from-json-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/build-steps-from-json-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/build-steps-from-json-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/build-steps-from-json-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/build-steps-from-json-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/build-steps-from-json-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/build-steps-from-json-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/build-steps-from-json-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/build-steps-from-json-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/build-steps-from-json-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/build-steps-from-json-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/build-steps-from-json-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/build-steps-from-json-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/build-steps-from-json-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/build-steps-from-json-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/build-steps-from-json-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/build-steps-from-json-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/build-steps-from-json-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/build-steps-from-json-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/build-steps-from-json-plugin/deployments", + "created_at": "2016-08-08T17:05:23Z", + "updated_at": "2018-07-25T13:06:08Z", + "pushed_at": "2019-10-08T16:31:19Z", + "git_url": "git://github.com/jenkinsci/build-steps-from-json-plugin.git", + "ssh_url": "git@github.com:jenkinsci/build-steps-from-json-plugin.git", + "clone_url": "https://github.com/jenkinsci/build-steps-from-json-plugin.git", + "svn_url": "https://github.com/jenkinsci/build-steps-from-json-plugin", + "homepage": "", + "size": 17, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 6, + "open_issues": 1, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 65475327, + "node_id": "MDEwOlJlcG9zaXRvcnk2NTQ3NTMyNw==", + "name": "mentor-questa-vrm-plugin", + "full_name": "jenkinsci/mentor-questa-vrm-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/mentor-questa-vrm-plugin", + "description": "This Jenkins plugin adds the ability to publish results from Mentor Graphics Questa Verification Run Manager (VRM).", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/mentor-questa-vrm-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/mentor-questa-vrm-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/mentor-questa-vrm-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/mentor-questa-vrm-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/mentor-questa-vrm-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/mentor-questa-vrm-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/mentor-questa-vrm-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/mentor-questa-vrm-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/mentor-questa-vrm-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/mentor-questa-vrm-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/mentor-questa-vrm-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/mentor-questa-vrm-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/mentor-questa-vrm-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/mentor-questa-vrm-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/mentor-questa-vrm-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/mentor-questa-vrm-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/mentor-questa-vrm-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/mentor-questa-vrm-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/mentor-questa-vrm-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/mentor-questa-vrm-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/mentor-questa-vrm-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/mentor-questa-vrm-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/mentor-questa-vrm-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/mentor-questa-vrm-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/mentor-questa-vrm-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/mentor-questa-vrm-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/mentor-questa-vrm-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/mentor-questa-vrm-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/mentor-questa-vrm-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/mentor-questa-vrm-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/mentor-questa-vrm-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/mentor-questa-vrm-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/mentor-questa-vrm-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/mentor-questa-vrm-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/mentor-questa-vrm-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/mentor-questa-vrm-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/mentor-questa-vrm-plugin/deployments", + "created_at": "2016-08-11T14:18:35Z", + "updated_at": "2019-07-24T16:28:30Z", + "pushed_at": "2019-07-24T16:28:28Z", + "git_url": "git://github.com/jenkinsci/mentor-questa-vrm-plugin.git", + "ssh_url": "git@github.com:jenkinsci/mentor-questa-vrm-plugin.git", + "clone_url": "https://github.com/jenkinsci/mentor-questa-vrm-plugin.git", + "svn_url": "https://github.com/jenkinsci/mentor-questa-vrm-plugin", + "homepage": null, + "size": 6050, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 65831741, + "node_id": "MDEwOlJlcG9zaXRvcnk2NTgzMTc0MQ==", + "name": "aliyun-container-service-deploy-plugin", + "full_name": "jenkinsci/aliyun-container-service-deploy-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/aliyun-container-service-deploy-plugin", + "description": "Aliyun-Container-Service-plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/aliyun-container-service-deploy-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/aliyun-container-service-deploy-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/aliyun-container-service-deploy-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/aliyun-container-service-deploy-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/aliyun-container-service-deploy-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/aliyun-container-service-deploy-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/aliyun-container-service-deploy-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/aliyun-container-service-deploy-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/aliyun-container-service-deploy-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/aliyun-container-service-deploy-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/aliyun-container-service-deploy-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/aliyun-container-service-deploy-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/aliyun-container-service-deploy-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/aliyun-container-service-deploy-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/aliyun-container-service-deploy-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/aliyun-container-service-deploy-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/aliyun-container-service-deploy-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/aliyun-container-service-deploy-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/aliyun-container-service-deploy-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/aliyun-container-service-deploy-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/aliyun-container-service-deploy-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/aliyun-container-service-deploy-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/aliyun-container-service-deploy-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/aliyun-container-service-deploy-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/aliyun-container-service-deploy-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/aliyun-container-service-deploy-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/aliyun-container-service-deploy-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/aliyun-container-service-deploy-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/aliyun-container-service-deploy-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/aliyun-container-service-deploy-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/aliyun-container-service-deploy-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/aliyun-container-service-deploy-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/aliyun-container-service-deploy-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/aliyun-container-service-deploy-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/aliyun-container-service-deploy-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/aliyun-container-service-deploy-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/aliyun-container-service-deploy-plugin/deployments", + "created_at": "2016-08-16T15:30:11Z", + "updated_at": "2018-12-07T16:26:31Z", + "pushed_at": "2017-02-15T05:45:11Z", + "git_url": "git://github.com/jenkinsci/aliyun-container-service-deploy-plugin.git", + "ssh_url": "git@github.com:jenkinsci/aliyun-container-service-deploy-plugin.git", + "clone_url": "https://github.com/jenkinsci/aliyun-container-service-deploy-plugin.git", + "svn_url": "https://github.com/jenkinsci/aliyun-container-service-deploy-plugin", + "homepage": null, + "size": 383, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 2, + "open_issues": 1, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 65836936, + "node_id": "MDEwOlJlcG9zaXRvcnk2NTgzNjkzNg==", + "name": "absint-a3-plugin", + "full_name": "jenkinsci/absint-a3-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/absint-a3-plugin", + "description": "Jenkins Plugin for a³", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/absint-a3-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/absint-a3-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/absint-a3-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/absint-a3-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/absint-a3-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/absint-a3-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/absint-a3-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/absint-a3-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/absint-a3-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/absint-a3-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/absint-a3-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/absint-a3-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/absint-a3-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/absint-a3-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/absint-a3-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/absint-a3-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/absint-a3-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/absint-a3-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/absint-a3-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/absint-a3-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/absint-a3-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/absint-a3-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/absint-a3-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/absint-a3-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/absint-a3-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/absint-a3-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/absint-a3-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/absint-a3-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/absint-a3-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/absint-a3-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/absint-a3-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/absint-a3-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/absint-a3-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/absint-a3-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/absint-a3-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/absint-a3-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/absint-a3-plugin/deployments", + "created_at": "2016-08-16T16:42:53Z", + "updated_at": "2018-09-25T14:01:28Z", + "pushed_at": "2018-09-25T14:01:26Z", + "git_url": "git://github.com/jenkinsci/absint-a3-plugin.git", + "ssh_url": "git@github.com:jenkinsci/absint-a3-plugin.git", + "clone_url": "https://github.com/jenkinsci/absint-a3-plugin.git", + "svn_url": "https://github.com/jenkinsci/absint-a3-plugin", + "homepage": null, + "size": 75, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 65841778, + "node_id": "MDEwOlJlcG9zaXRvcnk2NTg0MTc3OA==", + "name": "worksoft-certify-dashboard-plugin", + "full_name": "jenkinsci/worksoft-certify-dashboard-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/worksoft-certify-dashboard-plugin", + "description": "Certify plugins are available in the repository", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/worksoft-certify-dashboard-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-dashboard-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-dashboard-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-dashboard-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-dashboard-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-dashboard-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-dashboard-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-dashboard-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-dashboard-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-dashboard-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-dashboard-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-dashboard-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-dashboard-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-dashboard-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-dashboard-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-dashboard-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-dashboard-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-dashboard-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-dashboard-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-dashboard-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-dashboard-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-dashboard-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-dashboard-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-dashboard-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-dashboard-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-dashboard-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-dashboard-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-dashboard-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-dashboard-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-dashboard-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-dashboard-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-dashboard-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-dashboard-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-dashboard-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-dashboard-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-dashboard-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-dashboard-plugin/deployments", + "created_at": "2016-08-16T17:55:37Z", + "updated_at": "2016-08-18T10:22:40Z", + "pushed_at": "2016-11-07T09:30:27Z", + "git_url": "git://github.com/jenkinsci/worksoft-certify-dashboard-plugin.git", + "ssh_url": "git@github.com:jenkinsci/worksoft-certify-dashboard-plugin.git", + "clone_url": "https://github.com/jenkinsci/worksoft-certify-dashboard-plugin.git", + "svn_url": "https://github.com/jenkinsci/worksoft-certify-dashboard-plugin", + "homepage": null, + "size": 19, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 65841954, + "node_id": "MDEwOlJlcG9zaXRvcnk2NTg0MTk1NA==", + "name": "microdocs-integration-plugin", + "full_name": "jenkinsci/microdocs-integration-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/microdocs-integration-plugin", + "description": "Microdocs integration plugin for Jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/microdocs-integration-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/microdocs-integration-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/microdocs-integration-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/microdocs-integration-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/microdocs-integration-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/microdocs-integration-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/microdocs-integration-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/microdocs-integration-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/microdocs-integration-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/microdocs-integration-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/microdocs-integration-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/microdocs-integration-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/microdocs-integration-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/microdocs-integration-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/microdocs-integration-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/microdocs-integration-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/microdocs-integration-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/microdocs-integration-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/microdocs-integration-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/microdocs-integration-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/microdocs-integration-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/microdocs-integration-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/microdocs-integration-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/microdocs-integration-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/microdocs-integration-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/microdocs-integration-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/microdocs-integration-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/microdocs-integration-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/microdocs-integration-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/microdocs-integration-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/microdocs-integration-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/microdocs-integration-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/microdocs-integration-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/microdocs-integration-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/microdocs-integration-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/microdocs-integration-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/microdocs-integration-plugin/deployments", + "created_at": "2016-08-16T17:57:50Z", + "updated_at": "2016-08-22T06:38:45Z", + "pushed_at": "2017-01-06T12:06:42Z", + "git_url": "git://github.com/jenkinsci/microdocs-integration-plugin.git", + "ssh_url": "git@github.com:jenkinsci/microdocs-integration-plugin.git", + "clone_url": "https://github.com/jenkinsci/microdocs-integration-plugin.git", + "svn_url": "https://github.com/jenkinsci/microdocs-integration-plugin", + "homepage": null, + "size": 20, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 65918099, + "node_id": "MDEwOlJlcG9zaXRvcnk2NTkxODA5OQ==", + "name": "aptly-publisher-plugin", + "full_name": "jenkinsci/aptly-publisher-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/aptly-publisher-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/aptly-publisher-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/aptly-publisher-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/aptly-publisher-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/aptly-publisher-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/aptly-publisher-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/aptly-publisher-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/aptly-publisher-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/aptly-publisher-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/aptly-publisher-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/aptly-publisher-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/aptly-publisher-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/aptly-publisher-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/aptly-publisher-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/aptly-publisher-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/aptly-publisher-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/aptly-publisher-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/aptly-publisher-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/aptly-publisher-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/aptly-publisher-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/aptly-publisher-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/aptly-publisher-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/aptly-publisher-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/aptly-publisher-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/aptly-publisher-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/aptly-publisher-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/aptly-publisher-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/aptly-publisher-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/aptly-publisher-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/aptly-publisher-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/aptly-publisher-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/aptly-publisher-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/aptly-publisher-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/aptly-publisher-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/aptly-publisher-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/aptly-publisher-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/aptly-publisher-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/aptly-publisher-plugin/deployments", + "created_at": "2016-08-17T15:16:51Z", + "updated_at": "2016-08-17T15:16:58Z", + "pushed_at": "2019-03-28T20:36:49Z", + "git_url": "git://github.com/jenkinsci/aptly-publisher-plugin.git", + "ssh_url": "git@github.com:jenkinsci/aptly-publisher-plugin.git", + "clone_url": "https://github.com/jenkinsci/aptly-publisher-plugin.git", + "svn_url": "https://github.com/jenkinsci/aptly-publisher-plugin", + "homepage": null, + "size": 67, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Groovy", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 1, + "open_issues": 2, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 65918453, + "node_id": "MDEwOlJlcG9zaXRvcnk2NTkxODQ1Mw==", + "name": "hyper-commons-plugin", + "full_name": "jenkinsci/hyper-commons-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/hyper-commons-plugin", + "description": "API plugin for integrate Jenkins with Hyper.sh", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/hyper-commons-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/hyper-commons-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/hyper-commons-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/hyper-commons-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/hyper-commons-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/hyper-commons-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/hyper-commons-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/hyper-commons-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/hyper-commons-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/hyper-commons-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/hyper-commons-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/hyper-commons-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/hyper-commons-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/hyper-commons-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/hyper-commons-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/hyper-commons-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/hyper-commons-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/hyper-commons-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/hyper-commons-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/hyper-commons-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/hyper-commons-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/hyper-commons-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/hyper-commons-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/hyper-commons-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/hyper-commons-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/hyper-commons-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/hyper-commons-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/hyper-commons-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/hyper-commons-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/hyper-commons-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/hyper-commons-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/hyper-commons-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/hyper-commons-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/hyper-commons-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/hyper-commons-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/hyper-commons-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/hyper-commons-plugin/deployments", + "created_at": "2016-08-17T15:20:36Z", + "updated_at": "2016-11-05T06:58:44Z", + "pushed_at": "2016-11-04T06:59:19Z", + "git_url": "git://github.com/jenkinsci/hyper-commons-plugin.git", + "ssh_url": "git@github.com:jenkinsci/hyper-commons-plugin.git", + "clone_url": "https://github.com/jenkinsci/hyper-commons-plugin.git", + "svn_url": "https://github.com/jenkinsci/hyper-commons-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Hyper.sh+Commons+Plugin", + "size": 239, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 66239853, + "node_id": "MDEwOlJlcG9zaXRvcnk2NjIzOTg1Mw==", + "name": "worksoft-certify-process-runner-plugin", + "full_name": "jenkinsci/worksoft-certify-process-runner-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/worksoft-certify-process-runner-plugin", + "description": "Certify plugins are available in the repository", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/worksoft-certify-process-runner-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-process-runner-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-process-runner-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-process-runner-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-process-runner-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-process-runner-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-process-runner-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-process-runner-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-process-runner-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-process-runner-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-process-runner-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-process-runner-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-process-runner-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-process-runner-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-process-runner-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-process-runner-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-process-runner-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-process-runner-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-process-runner-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-process-runner-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-process-runner-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-process-runner-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-process-runner-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-process-runner-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-process-runner-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-process-runner-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-process-runner-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-process-runner-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-process-runner-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-process-runner-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-process-runner-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-process-runner-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-process-runner-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-process-runner-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-process-runner-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-process-runner-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-process-runner-plugin/deployments", + "created_at": "2016-08-22T04:35:32Z", + "updated_at": "2016-12-08T06:02:57Z", + "pushed_at": "2016-12-15T10:50:26Z", + "git_url": "git://github.com/jenkinsci/worksoft-certify-process-runner-plugin.git", + "ssh_url": "git@github.com:jenkinsci/worksoft-certify-process-runner-plugin.git", + "clone_url": "https://github.com/jenkinsci/worksoft-certify-process-runner-plugin.git", + "svn_url": "https://github.com/jenkinsci/worksoft-certify-process-runner-plugin", + "homepage": null, + "size": 60379, + "stargazers_count": 0, + "watchers_count": 0, + "language": "CSS", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 2, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 66500277, + "node_id": "MDEwOlJlcG9zaXRvcnk2NjUwMDI3Nw==", + "name": "hyper-build-step-plugin", + "full_name": "jenkinsci/hyper-build-step-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/hyper-build-step-plugin", + "description": "Build step plugin for integrate Jenkins with Hyper_", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/hyper-build-step-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/hyper-build-step-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/hyper-build-step-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/hyper-build-step-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/hyper-build-step-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/hyper-build-step-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/hyper-build-step-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/hyper-build-step-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/hyper-build-step-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/hyper-build-step-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/hyper-build-step-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/hyper-build-step-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/hyper-build-step-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/hyper-build-step-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/hyper-build-step-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/hyper-build-step-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/hyper-build-step-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/hyper-build-step-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/hyper-build-step-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/hyper-build-step-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/hyper-build-step-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/hyper-build-step-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/hyper-build-step-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/hyper-build-step-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/hyper-build-step-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/hyper-build-step-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/hyper-build-step-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/hyper-build-step-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/hyper-build-step-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/hyper-build-step-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/hyper-build-step-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/hyper-build-step-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/hyper-build-step-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/hyper-build-step-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/hyper-build-step-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/hyper-build-step-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/hyper-build-step-plugin/deployments", + "created_at": "2016-08-24T21:18:41Z", + "updated_at": "2016-11-05T06:59:16Z", + "pushed_at": "2016-11-05T06:14:23Z", + "git_url": "git://github.com/jenkinsci/hyper-build-step-plugin.git", + "ssh_url": "git@github.com:jenkinsci/hyper-build-step-plugin.git", + "clone_url": "https://github.com/jenkinsci/hyper-build-step-plugin.git", + "svn_url": "https://github.com/jenkinsci/hyper-build-step-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Hyper.sh+Build+Step+Plugin", + "size": 331, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 66500545, + "node_id": "MDEwOlJlcG9zaXRvcnk2NjUwMDU0NQ==", + "name": "codebeamer-coverage-publisher-plugin", + "full_name": "jenkinsci/codebeamer-coverage-publisher-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/codebeamer-coverage-publisher-plugin", + "description": "Jenkins post-build plugin for sending coverage reports to codeBeamer ", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/codebeamer-coverage-publisher-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/codebeamer-coverage-publisher-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/codebeamer-coverage-publisher-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/codebeamer-coverage-publisher-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/codebeamer-coverage-publisher-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/codebeamer-coverage-publisher-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/codebeamer-coverage-publisher-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/codebeamer-coverage-publisher-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/codebeamer-coverage-publisher-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/codebeamer-coverage-publisher-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/codebeamer-coverage-publisher-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/codebeamer-coverage-publisher-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/codebeamer-coverage-publisher-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/codebeamer-coverage-publisher-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/codebeamer-coverage-publisher-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/codebeamer-coverage-publisher-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/codebeamer-coverage-publisher-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/codebeamer-coverage-publisher-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/codebeamer-coverage-publisher-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/codebeamer-coverage-publisher-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/codebeamer-coverage-publisher-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/codebeamer-coverage-publisher-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/codebeamer-coverage-publisher-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/codebeamer-coverage-publisher-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/codebeamer-coverage-publisher-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/codebeamer-coverage-publisher-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/codebeamer-coverage-publisher-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/codebeamer-coverage-publisher-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/codebeamer-coverage-publisher-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/codebeamer-coverage-publisher-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/codebeamer-coverage-publisher-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/codebeamer-coverage-publisher-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/codebeamer-coverage-publisher-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/codebeamer-coverage-publisher-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/codebeamer-coverage-publisher-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/codebeamer-coverage-publisher-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/codebeamer-coverage-publisher-plugin/deployments", + "created_at": "2016-08-24T21:22:06Z", + "updated_at": "2019-05-24T14:00:36Z", + "pushed_at": "2019-05-24T14:00:35Z", + "git_url": "git://github.com/jenkinsci/codebeamer-coverage-publisher-plugin.git", + "ssh_url": "git@github.com:jenkinsci/codebeamer-coverage-publisher-plugin.git", + "clone_url": "https://github.com/jenkinsci/codebeamer-coverage-publisher-plugin.git", + "svn_url": "https://github.com/jenkinsci/codebeamer-coverage-publisher-plugin", + "homepage": null, + "size": 97, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 3, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 66677338, + "node_id": "MDEwOlJlcG9zaXRvcnk2NjY3NzMzOA==", + "name": "pipeline-model-definition-plugin", + "full_name": "jenkinsci/pipeline-model-definition-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pipeline-model-definition-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pipeline-model-definition-plugin/deployments", + "created_at": "2016-08-26T20:28:39Z", + "updated_at": "2019-10-15T21:50:50Z", + "pushed_at": "2019-10-25T01:20:32Z", + "git_url": "git://github.com/jenkinsci/pipeline-model-definition-plugin.git", + "ssh_url": "git@github.com:jenkinsci/pipeline-model-definition-plugin.git", + "clone_url": "https://github.com/jenkinsci/pipeline-model-definition-plugin.git", + "svn_url": "https://github.com/jenkinsci/pipeline-model-definition-plugin", + "homepage": "https://plugins.jenkins.io/pipeline-model-definition", + "size": 4027, + "stargazers_count": 423, + "watchers_count": 423, + "language": "Groovy", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 157, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 13, + "license": null, + "forks": 157, + "open_issues": 13, + "watchers": 423, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 67014542, + "node_id": "MDEwOlJlcG9zaXRvcnk2NzAxNDU0Mg==", + "name": "display-url-api-plugin", + "full_name": "jenkinsci/display-url-api-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/display-url-api-plugin", + "description": "Provides the DisplayURLProvider extension point to provide alternate URLs for use in notifications", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/display-url-api-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/display-url-api-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/display-url-api-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/display-url-api-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/display-url-api-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/display-url-api-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/display-url-api-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/display-url-api-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/display-url-api-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/display-url-api-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/display-url-api-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/display-url-api-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/display-url-api-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/display-url-api-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/display-url-api-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/display-url-api-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/display-url-api-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/display-url-api-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/display-url-api-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/display-url-api-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/display-url-api-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/display-url-api-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/display-url-api-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/display-url-api-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/display-url-api-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/display-url-api-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/display-url-api-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/display-url-api-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/display-url-api-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/display-url-api-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/display-url-api-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/display-url-api-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/display-url-api-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/display-url-api-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/display-url-api-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/display-url-api-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/display-url-api-plugin/deployments", + "created_at": "2016-08-31T07:33:02Z", + "updated_at": "2019-08-03T02:39:22Z", + "pushed_at": "2019-08-03T02:39:19Z", + "git_url": "git://github.com/jenkinsci/display-url-api-plugin.git", + "ssh_url": "git@github.com:jenkinsci/display-url-api-plugin.git", + "clone_url": "https://github.com/jenkinsci/display-url-api-plugin.git", + "svn_url": "https://github.com/jenkinsci/display-url-api-plugin", + "homepage": null, + "size": 92, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 17, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 17, + "open_issues": 2, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 67161244, + "node_id": "MDEwOlJlcG9zaXRvcnk2NzE2MTI0NA==", + "name": "visual-basic-6-plugin", + "full_name": "jenkinsci/visual-basic-6-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/visual-basic-6-plugin", + "description": "Jenkins plugin for VB6 builder", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/visual-basic-6-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/visual-basic-6-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/visual-basic-6-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/visual-basic-6-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/visual-basic-6-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/visual-basic-6-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/visual-basic-6-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/visual-basic-6-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/visual-basic-6-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/visual-basic-6-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/visual-basic-6-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/visual-basic-6-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/visual-basic-6-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/visual-basic-6-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/visual-basic-6-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/visual-basic-6-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/visual-basic-6-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/visual-basic-6-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/visual-basic-6-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/visual-basic-6-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/visual-basic-6-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/visual-basic-6-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/visual-basic-6-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/visual-basic-6-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/visual-basic-6-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/visual-basic-6-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/visual-basic-6-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/visual-basic-6-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/visual-basic-6-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/visual-basic-6-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/visual-basic-6-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/visual-basic-6-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/visual-basic-6-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/visual-basic-6-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/visual-basic-6-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/visual-basic-6-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/visual-basic-6-plugin/deployments", + "created_at": "2016-09-01T19:46:14Z", + "updated_at": "2019-09-15T13:06:35Z", + "pushed_at": "2017-10-17T11:18:25Z", + "git_url": "git://github.com/jenkinsci/visual-basic-6-plugin.git", + "ssh_url": "git@github.com:jenkinsci/visual-basic-6-plugin.git", + "clone_url": "https://github.com/jenkinsci/visual-basic-6-plugin.git", + "svn_url": "https://github.com/jenkinsci/visual-basic-6-plugin", + "homepage": "https://wiki.jenkins.io/display/JENKINS/Visual+Basic+6+Plugin", + "size": 43, + "stargazers_count": 7, + "watchers_count": 7, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 4, + "open_issues": 0, + "watchers": 7, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 67161750, + "node_id": "MDEwOlJlcG9zaXRvcnk2NzE2MTc1MA==", + "name": "absint-astree-plugin", + "full_name": "jenkinsci/absint-astree-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/absint-astree-plugin", + "description": "Jenkins Plugin for Astrée", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/absint-astree-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/absint-astree-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/absint-astree-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/absint-astree-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/absint-astree-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/absint-astree-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/absint-astree-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/absint-astree-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/absint-astree-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/absint-astree-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/absint-astree-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/absint-astree-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/absint-astree-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/absint-astree-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/absint-astree-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/absint-astree-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/absint-astree-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/absint-astree-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/absint-astree-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/absint-astree-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/absint-astree-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/absint-astree-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/absint-astree-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/absint-astree-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/absint-astree-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/absint-astree-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/absint-astree-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/absint-astree-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/absint-astree-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/absint-astree-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/absint-astree-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/absint-astree-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/absint-astree-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/absint-astree-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/absint-astree-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/absint-astree-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/absint-astree-plugin/deployments", + "created_at": "2016-09-01T19:53:28Z", + "updated_at": "2019-09-23T16:06:21Z", + "pushed_at": "2018-10-11T07:01:14Z", + "git_url": "git://github.com/jenkinsci/absint-astree-plugin.git", + "ssh_url": "git@github.com:jenkinsci/absint-astree-plugin.git", + "clone_url": "https://github.com/jenkinsci/absint-astree-plugin.git", + "svn_url": "https://github.com/jenkinsci/absint-astree-plugin", + "homepage": null, + "size": 57, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 67161986, + "node_id": "MDEwOlJlcG9zaXRvcnk2NzE2MTk4Ng==", + "name": "openstack-heat-plugin", + "full_name": "jenkinsci/openstack-heat-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/openstack-heat-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/openstack-heat-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/openstack-heat-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/openstack-heat-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/openstack-heat-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/openstack-heat-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/openstack-heat-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/openstack-heat-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/openstack-heat-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/openstack-heat-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/openstack-heat-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/openstack-heat-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/openstack-heat-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/openstack-heat-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/openstack-heat-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/openstack-heat-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/openstack-heat-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/openstack-heat-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/openstack-heat-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/openstack-heat-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/openstack-heat-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/openstack-heat-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/openstack-heat-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/openstack-heat-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/openstack-heat-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/openstack-heat-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/openstack-heat-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/openstack-heat-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/openstack-heat-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/openstack-heat-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/openstack-heat-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/openstack-heat-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/openstack-heat-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/openstack-heat-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/openstack-heat-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/openstack-heat-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/openstack-heat-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/openstack-heat-plugin/deployments", + "created_at": "2016-09-01T19:56:33Z", + "updated_at": "2019-02-21T01:06:49Z", + "pushed_at": "2017-11-16T17:27:46Z", + "git_url": "git://github.com/jenkinsci/openstack-heat-plugin.git", + "ssh_url": "git@github.com:jenkinsci/openstack-heat-plugin.git", + "clone_url": "https://github.com/jenkinsci/openstack-heat-plugin.git", + "svn_url": "https://github.com/jenkinsci/openstack-heat-plugin", + "homepage": null, + "size": 1863, + "stargazers_count": 7, + "watchers_count": 7, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 2, + "open_issues": 0, + "watchers": 7, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 67519487, + "node_id": "MDEwOlJlcG9zaXRvcnk2NzUxOTQ4Nw==", + "name": "hyper-slaves-plugin", + "full_name": "jenkinsci/hyper-slaves-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/hyper-slaves-plugin", + "description": "Hyper.sh Slaves Plugin for Jenkins.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/hyper-slaves-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/hyper-slaves-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/hyper-slaves-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/hyper-slaves-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/hyper-slaves-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/hyper-slaves-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/hyper-slaves-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/hyper-slaves-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/hyper-slaves-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/hyper-slaves-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/hyper-slaves-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/hyper-slaves-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/hyper-slaves-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/hyper-slaves-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/hyper-slaves-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/hyper-slaves-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/hyper-slaves-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/hyper-slaves-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/hyper-slaves-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/hyper-slaves-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/hyper-slaves-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/hyper-slaves-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/hyper-slaves-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/hyper-slaves-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/hyper-slaves-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/hyper-slaves-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/hyper-slaves-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/hyper-slaves-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/hyper-slaves-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/hyper-slaves-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/hyper-slaves-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/hyper-slaves-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/hyper-slaves-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/hyper-slaves-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/hyper-slaves-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/hyper-slaves-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/hyper-slaves-plugin/deployments", + "created_at": "2016-09-06T15:11:00Z", + "updated_at": "2018-11-21T10:36:59Z", + "pushed_at": "2018-11-21T10:36:57Z", + "git_url": "git://github.com/jenkinsci/hyper-slaves-plugin.git", + "ssh_url": "git@github.com:jenkinsci/hyper-slaves-plugin.git", + "clone_url": "https://github.com/jenkinsci/hyper-slaves-plugin.git", + "svn_url": "https://github.com/jenkinsci/hyper-slaves-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Hyper.sh+Slaves+Plugin", + "size": 1313, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 4, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 67932863, + "node_id": "MDEwOlJlcG9zaXRvcnk2NzkzMjg2Mw==", + "name": "applitools-eyes-plugin", + "full_name": "jenkinsci/applitools-eyes-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/applitools-eyes-plugin", + "description": "Applitools Eyes plugin for Jenkins", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/applitools-eyes-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/applitools-eyes-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/applitools-eyes-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/applitools-eyes-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/applitools-eyes-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/applitools-eyes-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/applitools-eyes-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/applitools-eyes-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/applitools-eyes-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/applitools-eyes-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/applitools-eyes-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/applitools-eyes-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/applitools-eyes-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/applitools-eyes-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/applitools-eyes-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/applitools-eyes-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/applitools-eyes-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/applitools-eyes-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/applitools-eyes-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/applitools-eyes-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/applitools-eyes-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/applitools-eyes-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/applitools-eyes-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/applitools-eyes-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/applitools-eyes-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/applitools-eyes-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/applitools-eyes-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/applitools-eyes-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/applitools-eyes-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/applitools-eyes-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/applitools-eyes-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/applitools-eyes-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/applitools-eyes-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/applitools-eyes-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/applitools-eyes-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/applitools-eyes-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/applitools-eyes-plugin/deployments", + "created_at": "2016-09-11T13:59:12Z", + "updated_at": "2019-07-31T12:02:01Z", + "pushed_at": "2019-10-25T14:07:50Z", + "git_url": "git://github.com/jenkinsci/applitools-eyes-plugin.git", + "ssh_url": "git@github.com:jenkinsci/applitools-eyes-plugin.git", + "clone_url": "https://github.com/jenkinsci/applitools-eyes-plugin.git", + "svn_url": "https://github.com/jenkinsci/applitools-eyes-plugin", + "homepage": null, + "size": 54, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 3, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 68041877, + "node_id": "MDEwOlJlcG9zaXRvcnk2ODA0MTg3Nw==", + "name": "rigor-optimization-plugin", + "full_name": "jenkinsci/rigor-optimization-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/rigor-optimization-plugin", + "description": "Jenkins Plugin for Rigor Optimization", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/rigor-optimization-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/rigor-optimization-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/rigor-optimization-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/rigor-optimization-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/rigor-optimization-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/rigor-optimization-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/rigor-optimization-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/rigor-optimization-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/rigor-optimization-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/rigor-optimization-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/rigor-optimization-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/rigor-optimization-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/rigor-optimization-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/rigor-optimization-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/rigor-optimization-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/rigor-optimization-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/rigor-optimization-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/rigor-optimization-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/rigor-optimization-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/rigor-optimization-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/rigor-optimization-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/rigor-optimization-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/rigor-optimization-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/rigor-optimization-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/rigor-optimization-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/rigor-optimization-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/rigor-optimization-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/rigor-optimization-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/rigor-optimization-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/rigor-optimization-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/rigor-optimization-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/rigor-optimization-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/rigor-optimization-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/rigor-optimization-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/rigor-optimization-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/rigor-optimization-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/rigor-optimization-plugin/deployments", + "created_at": "2016-09-12T19:45:11Z", + "updated_at": "2019-05-02T20:44:12Z", + "pushed_at": "2019-05-02T20:44:10Z", + "git_url": "git://github.com/jenkinsci/rigor-optimization-plugin.git", + "ssh_url": "git@github.com:jenkinsci/rigor-optimization-plugin.git", + "clone_url": "https://github.com/jenkinsci/rigor-optimization-plugin.git", + "svn_url": "https://github.com/jenkinsci/rigor-optimization-plugin", + "homepage": null, + "size": 54, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 68144203, + "node_id": "MDEwOlJlcG9zaXRvcnk2ODE0NDIwMw==", + "name": "chaos-butler-plugin", + "full_name": "jenkinsci/chaos-butler-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/chaos-butler-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/chaos-butler-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/chaos-butler-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/chaos-butler-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/chaos-butler-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/chaos-butler-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/chaos-butler-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/chaos-butler-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/chaos-butler-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/chaos-butler-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/chaos-butler-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/chaos-butler-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/chaos-butler-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/chaos-butler-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/chaos-butler-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/chaos-butler-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/chaos-butler-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/chaos-butler-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/chaos-butler-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/chaos-butler-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/chaos-butler-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/chaos-butler-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/chaos-butler-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/chaos-butler-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/chaos-butler-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/chaos-butler-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/chaos-butler-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/chaos-butler-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/chaos-butler-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/chaos-butler-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/chaos-butler-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/chaos-butler-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/chaos-butler-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/chaos-butler-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/chaos-butler-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/chaos-butler-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/chaos-butler-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/chaos-butler-plugin/deployments", + "created_at": "2016-09-13T20:18:54Z", + "updated_at": "2016-09-13T20:28:18Z", + "pushed_at": "2017-06-28T20:41:26Z", + "git_url": "git://github.com/jenkinsci/chaos-butler-plugin.git", + "ssh_url": "git@github.com:jenkinsci/chaos-butler-plugin.git", + "clone_url": "https://github.com/jenkinsci/chaos-butler-plugin.git", + "svn_url": "https://github.com/jenkinsci/chaos-butler-plugin", + "homepage": "", + "size": 38, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 68390666, + "node_id": "MDEwOlJlcG9zaXRvcnk2ODM5MDY2Ng==", + "name": "ibvc-plugin", + "full_name": "jenkinsci/ibvc-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/ibvc-plugin", + "description": "An IBVC Jenkins Plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/ibvc-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/ibvc-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/ibvc-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/ibvc-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/ibvc-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/ibvc-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/ibvc-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/ibvc-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/ibvc-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/ibvc-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/ibvc-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/ibvc-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/ibvc-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/ibvc-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/ibvc-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/ibvc-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/ibvc-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/ibvc-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/ibvc-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/ibvc-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/ibvc-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/ibvc-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/ibvc-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/ibvc-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/ibvc-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/ibvc-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/ibvc-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/ibvc-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/ibvc-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/ibvc-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/ibvc-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/ibvc-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/ibvc-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/ibvc-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/ibvc-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/ibvc-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/ibvc-plugin/deployments", + "created_at": "2016-09-16T15:15:43Z", + "updated_at": "2016-09-16T15:15:50Z", + "pushed_at": "2016-09-13T15:58:18Z", + "git_url": "git://github.com/jenkinsci/ibvc-plugin.git", + "ssh_url": "git@github.com:jenkinsci/ibvc-plugin.git", + "clone_url": "https://github.com/jenkinsci/ibvc-plugin.git", + "svn_url": "https://github.com/jenkinsci/ibvc-plugin", + "homepage": null, + "size": 22, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 68391627, + "node_id": "MDEwOlJlcG9zaXRvcnk2ODM5MTYyNw==", + "name": "database-sqlite-plugin", + "full_name": "jenkinsci/database-sqlite-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/database-sqlite-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/database-sqlite-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/database-sqlite-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/database-sqlite-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/database-sqlite-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/database-sqlite-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/database-sqlite-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/database-sqlite-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/database-sqlite-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/database-sqlite-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/database-sqlite-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/database-sqlite-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/database-sqlite-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/database-sqlite-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/database-sqlite-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/database-sqlite-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/database-sqlite-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/database-sqlite-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/database-sqlite-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/database-sqlite-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/database-sqlite-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/database-sqlite-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/database-sqlite-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/database-sqlite-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/database-sqlite-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/database-sqlite-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/database-sqlite-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/database-sqlite-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/database-sqlite-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/database-sqlite-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/database-sqlite-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/database-sqlite-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/database-sqlite-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/database-sqlite-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/database-sqlite-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/database-sqlite-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/database-sqlite-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/database-sqlite-plugin/deployments", + "created_at": "2016-09-16T15:27:49Z", + "updated_at": "2018-07-19T09:54:13Z", + "pushed_at": "2018-07-19T09:54:11Z", + "git_url": "git://github.com/jenkinsci/database-sqlite-plugin.git", + "ssh_url": "git@github.com:jenkinsci/database-sqlite-plugin.git", + "clone_url": "https://github.com/jenkinsci/database-sqlite-plugin.git", + "svn_url": "https://github.com/jenkinsci/database-sqlite-plugin", + "homepage": null, + "size": 9, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 2, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 68624523, + "node_id": "MDEwOlJlcG9zaXRvcnk2ODYyNDUyMw==", + "name": "impersonation-plugin", + "full_name": "jenkinsci/impersonation-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/impersonation-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/impersonation-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/impersonation-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/impersonation-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/impersonation-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/impersonation-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/impersonation-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/impersonation-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/impersonation-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/impersonation-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/impersonation-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/impersonation-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/impersonation-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/impersonation-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/impersonation-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/impersonation-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/impersonation-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/impersonation-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/impersonation-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/impersonation-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/impersonation-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/impersonation-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/impersonation-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/impersonation-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/impersonation-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/impersonation-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/impersonation-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/impersonation-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/impersonation-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/impersonation-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/impersonation-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/impersonation-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/impersonation-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/impersonation-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/impersonation-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/impersonation-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/impersonation-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/impersonation-plugin/deployments", + "created_at": "2016-09-19T16:30:27Z", + "updated_at": "2016-09-20T22:54:16Z", + "pushed_at": "2016-09-19T19:54:20Z", + "git_url": "git://github.com/jenkinsci/impersonation-plugin.git", + "ssh_url": "git@github.com:jenkinsci/impersonation-plugin.git", + "clone_url": "https://github.com/jenkinsci/impersonation-plugin.git", + "svn_url": "https://github.com/jenkinsci/impersonation-plugin", + "homepage": "", + "size": 17, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 68632514, + "node_id": "MDEwOlJlcG9zaXRvcnk2ODYzMjUxNA==", + "name": "slack-uploader-plugin", + "full_name": "jenkinsci/slack-uploader-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/slack-uploader-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/slack-uploader-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/slack-uploader-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/slack-uploader-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/slack-uploader-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/slack-uploader-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/slack-uploader-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/slack-uploader-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/slack-uploader-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/slack-uploader-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/slack-uploader-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/slack-uploader-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/slack-uploader-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/slack-uploader-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/slack-uploader-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/slack-uploader-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/slack-uploader-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/slack-uploader-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/slack-uploader-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/slack-uploader-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/slack-uploader-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/slack-uploader-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/slack-uploader-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/slack-uploader-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/slack-uploader-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/slack-uploader-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/slack-uploader-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/slack-uploader-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/slack-uploader-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/slack-uploader-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/slack-uploader-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/slack-uploader-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/slack-uploader-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/slack-uploader-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/slack-uploader-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/slack-uploader-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/slack-uploader-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/slack-uploader-plugin/deployments", + "created_at": "2016-09-19T18:08:52Z", + "updated_at": "2019-09-10T17:13:57Z", + "pushed_at": "2019-10-08T10:16:42Z", + "git_url": "git://github.com/jenkinsci/slack-uploader-plugin.git", + "ssh_url": "git@github.com:jenkinsci/slack-uploader-plugin.git", + "clone_url": "https://github.com/jenkinsci/slack-uploader-plugin.git", + "svn_url": "https://github.com/jenkinsci/slack-uploader-plugin", + "homepage": null, + "size": 44, + "stargazers_count": 11, + "watchers_count": 11, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 15, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 15, + "open_issues": 3, + "watchers": 11, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 68690525, + "node_id": "MDEwOlJlcG9zaXRvcnk2ODY5MDUyNQ==", + "name": "aws-sqs-plugin", + "full_name": "jenkinsci/aws-sqs-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/aws-sqs-plugin", + "description": "Jenkins plugin that triggers builds on events that are published via Amazon Simple Queue Service (SQS) (Allow default IAM access (no access/security keys required).", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/aws-sqs-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/aws-sqs-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/aws-sqs-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/aws-sqs-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/aws-sqs-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/aws-sqs-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/aws-sqs-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/aws-sqs-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/aws-sqs-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/aws-sqs-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/aws-sqs-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/aws-sqs-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/aws-sqs-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/aws-sqs-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/aws-sqs-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/aws-sqs-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/aws-sqs-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/aws-sqs-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/aws-sqs-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/aws-sqs-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/aws-sqs-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/aws-sqs-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/aws-sqs-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/aws-sqs-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/aws-sqs-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/aws-sqs-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/aws-sqs-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/aws-sqs-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/aws-sqs-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/aws-sqs-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/aws-sqs-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/aws-sqs-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/aws-sqs-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/aws-sqs-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/aws-sqs-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/aws-sqs-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/aws-sqs-plugin/deployments", + "created_at": "2016-09-20T08:23:17Z", + "updated_at": "2019-04-19T08:19:04Z", + "pushed_at": "2019-10-08T12:42:11Z", + "git_url": "git://github.com/jenkinsci/aws-sqs-plugin.git", + "ssh_url": "git@github.com:jenkinsci/aws-sqs-plugin.git", + "clone_url": "https://github.com/jenkinsci/aws-sqs-plugin.git", + "svn_url": "https://github.com/jenkinsci/aws-sqs-plugin", + "homepage": "", + "size": 253, + "stargazers_count": 16, + "watchers_count": 16, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 20, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 12, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 20, + "open_issues": 12, + "watchers": 16, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 69503586, + "node_id": "MDEwOlJlcG9zaXRvcnk2OTUwMzU4Ng==", + "name": "composer-dependency-analysis-plugin", + "full_name": "jenkinsci/composer-dependency-analysis-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/composer-dependency-analysis-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/composer-dependency-analysis-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/composer-dependency-analysis-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/composer-dependency-analysis-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/composer-dependency-analysis-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/composer-dependency-analysis-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/composer-dependency-analysis-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/composer-dependency-analysis-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/composer-dependency-analysis-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/composer-dependency-analysis-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/composer-dependency-analysis-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/composer-dependency-analysis-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/composer-dependency-analysis-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/composer-dependency-analysis-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/composer-dependency-analysis-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/composer-dependency-analysis-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/composer-dependency-analysis-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/composer-dependency-analysis-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/composer-dependency-analysis-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/composer-dependency-analysis-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/composer-dependency-analysis-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/composer-dependency-analysis-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/composer-dependency-analysis-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/composer-dependency-analysis-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/composer-dependency-analysis-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/composer-dependency-analysis-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/composer-dependency-analysis-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/composer-dependency-analysis-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/composer-dependency-analysis-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/composer-dependency-analysis-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/composer-dependency-analysis-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/composer-dependency-analysis-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/composer-dependency-analysis-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/composer-dependency-analysis-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/composer-dependency-analysis-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/composer-dependency-analysis-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/composer-dependency-analysis-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/composer-dependency-analysis-plugin/deployments", + "created_at": "2016-09-28T21:04:30Z", + "updated_at": "2019-02-05T13:30:52Z", + "pushed_at": "2016-09-09T13:42:35Z", + "git_url": "git://github.com/jenkinsci/composer-dependency-analysis-plugin.git", + "ssh_url": "git@github.com:jenkinsci/composer-dependency-analysis-plugin.git", + "clone_url": "https://github.com/jenkinsci/composer-dependency-analysis-plugin.git", + "svn_url": "https://github.com/jenkinsci/composer-dependency-analysis-plugin", + "homepage": null, + "size": 97617, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 2, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 69507323, + "node_id": "MDEwOlJlcG9zaXRvcnk2OTUwNzMyMw==", + "name": "gerrit-verify-status-reporter-plugin", + "full_name": "jenkinsci/gerrit-verify-status-reporter-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/gerrit-verify-status-reporter-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/gerrit-verify-status-reporter-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/gerrit-verify-status-reporter-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/gerrit-verify-status-reporter-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/gerrit-verify-status-reporter-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/gerrit-verify-status-reporter-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/gerrit-verify-status-reporter-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/gerrit-verify-status-reporter-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/gerrit-verify-status-reporter-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/gerrit-verify-status-reporter-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/gerrit-verify-status-reporter-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/gerrit-verify-status-reporter-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/gerrit-verify-status-reporter-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/gerrit-verify-status-reporter-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/gerrit-verify-status-reporter-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/gerrit-verify-status-reporter-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/gerrit-verify-status-reporter-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/gerrit-verify-status-reporter-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/gerrit-verify-status-reporter-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/gerrit-verify-status-reporter-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/gerrit-verify-status-reporter-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/gerrit-verify-status-reporter-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/gerrit-verify-status-reporter-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/gerrit-verify-status-reporter-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/gerrit-verify-status-reporter-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/gerrit-verify-status-reporter-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/gerrit-verify-status-reporter-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/gerrit-verify-status-reporter-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/gerrit-verify-status-reporter-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/gerrit-verify-status-reporter-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/gerrit-verify-status-reporter-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/gerrit-verify-status-reporter-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/gerrit-verify-status-reporter-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/gerrit-verify-status-reporter-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/gerrit-verify-status-reporter-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/gerrit-verify-status-reporter-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/gerrit-verify-status-reporter-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/gerrit-verify-status-reporter-plugin/deployments", + "created_at": "2016-09-28T22:02:02Z", + "updated_at": "2019-06-20T14:14:37Z", + "pushed_at": "2016-12-07T10:21:58Z", + "git_url": "git://github.com/jenkinsci/gerrit-verify-status-reporter-plugin.git", + "ssh_url": "git@github.com:jenkinsci/gerrit-verify-status-reporter-plugin.git", + "clone_url": "https://github.com/jenkinsci/gerrit-verify-status-reporter-plugin.git", + "svn_url": "https://github.com/jenkinsci/gerrit-verify-status-reporter-plugin", + "homepage": null, + "size": 54, + "stargazers_count": 7, + "watchers_count": 7, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 6, + "open_issues": 3, + "watchers": 7, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 69508835, + "node_id": "MDEwOlJlcG9zaXRvcnk2OTUwODgzNQ==", + "name": "rocketchatnotifier-plugin", + "full_name": "jenkinsci/rocketchatnotifier-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/rocketchatnotifier-plugin", + "description": "Rocket Chat Notification Plugin for Jenkins", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/rocketchatnotifier-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/rocketchatnotifier-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/rocketchatnotifier-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/rocketchatnotifier-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/rocketchatnotifier-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/rocketchatnotifier-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/rocketchatnotifier-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/rocketchatnotifier-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/rocketchatnotifier-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/rocketchatnotifier-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/rocketchatnotifier-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/rocketchatnotifier-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/rocketchatnotifier-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/rocketchatnotifier-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/rocketchatnotifier-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/rocketchatnotifier-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/rocketchatnotifier-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/rocketchatnotifier-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/rocketchatnotifier-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/rocketchatnotifier-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/rocketchatnotifier-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/rocketchatnotifier-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/rocketchatnotifier-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/rocketchatnotifier-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/rocketchatnotifier-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/rocketchatnotifier-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/rocketchatnotifier-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/rocketchatnotifier-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/rocketchatnotifier-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/rocketchatnotifier-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/rocketchatnotifier-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/rocketchatnotifier-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/rocketchatnotifier-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/rocketchatnotifier-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/rocketchatnotifier-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/rocketchatnotifier-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/rocketchatnotifier-plugin/deployments", + "created_at": "2016-09-28T22:30:09Z", + "updated_at": "2019-10-24T11:11:08Z", + "pushed_at": "2019-10-23T06:16:35Z", + "git_url": "git://github.com/jenkinsci/rocketchatnotifier-plugin.git", + "ssh_url": "git@github.com:jenkinsci/rocketchatnotifier-plugin.git", + "clone_url": "https://github.com/jenkinsci/rocketchatnotifier-plugin.git", + "svn_url": "https://github.com/jenkinsci/rocketchatnotifier-plugin", + "homepage": "https://wiki.jenkins.io/display/JENKINS/RocketChat+Plugin", + "size": 678, + "stargazers_count": 24, + "watchers_count": 24, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 37, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 7, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 37, + "open_issues": 7, + "watchers": 24, + "default_branch": "develop", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 69724545, + "node_id": "MDEwOlJlcG9zaXRvcnk2OTcyNDU0NQ==", + "name": "xstream-fork", + "full_name": "jenkinsci/xstream-fork", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/xstream-fork", + "description": "Serialize Java objects to XML and back again.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/xstream-fork", + "forks_url": "https://api.github.com/repos/jenkinsci/xstream-fork/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/xstream-fork/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/xstream-fork/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/xstream-fork/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/xstream-fork/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/xstream-fork/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/xstream-fork/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/xstream-fork/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/xstream-fork/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/xstream-fork/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/xstream-fork/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/xstream-fork/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/xstream-fork/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/xstream-fork/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/xstream-fork/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/xstream-fork/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/xstream-fork/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/xstream-fork/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/xstream-fork/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/xstream-fork/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/xstream-fork/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/xstream-fork/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/xstream-fork/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/xstream-fork/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/xstream-fork/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/xstream-fork/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/xstream-fork/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/xstream-fork/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/xstream-fork/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/xstream-fork/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/xstream-fork/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/xstream-fork/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/xstream-fork/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/xstream-fork/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/xstream-fork/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/xstream-fork/deployments", + "created_at": "2016-10-01T07:04:02Z", + "updated_at": "2018-12-07T12:31:35Z", + "pushed_at": "2018-12-07T12:31:33Z", + "git_url": "git://github.com/jenkinsci/xstream-fork.git", + "ssh_url": "git@github.com:jenkinsci/xstream-fork.git", + "clone_url": "https://github.com/jenkinsci/xstream-fork.git", + "svn_url": "https://github.com/jenkinsci/xstream-fork", + "homepage": "http://x-stream.github.io", + "size": 19514, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 7, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 7, + "open_issues": 2, + "watchers": 0, + "default_branch": "jenkins", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 69743373, + "node_id": "MDEwOlJlcG9zaXRvcnk2OTc0MzM3Mw==", + "name": "jmdns-fork", + "full_name": "jenkinsci/jmdns-fork", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jmdns-fork", + "description": "Official home of the jmDNS library", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/jmdns-fork", + "forks_url": "https://api.github.com/repos/jenkinsci/jmdns-fork/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jmdns-fork/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jmdns-fork/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jmdns-fork/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jmdns-fork/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jmdns-fork/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jmdns-fork/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jmdns-fork/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jmdns-fork/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jmdns-fork/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jmdns-fork/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jmdns-fork/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jmdns-fork/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jmdns-fork/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jmdns-fork/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jmdns-fork/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jmdns-fork/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jmdns-fork/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jmdns-fork/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jmdns-fork/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jmdns-fork/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jmdns-fork/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jmdns-fork/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jmdns-fork/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jmdns-fork/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jmdns-fork/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jmdns-fork/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jmdns-fork/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jmdns-fork/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jmdns-fork/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jmdns-fork/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jmdns-fork/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jmdns-fork/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jmdns-fork/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jmdns-fork/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jmdns-fork/deployments", + "created_at": "2016-10-01T14:31:19Z", + "updated_at": "2016-10-01T14:31:27Z", + "pushed_at": "2016-09-05T06:33:23Z", + "git_url": "git://github.com/jenkinsci/jmdns-fork.git", + "ssh_url": "git@github.com:jenkinsci/jmdns-fork.git", + "clone_url": "https://github.com/jenkinsci/jmdns-fork.git", + "svn_url": "https://github.com/jenkinsci/jmdns-fork", + "homepage": "http://www.jmdns.org", + "size": 2637, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": true, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 69744970, + "node_id": "MDEwOlJlcG9zaXRvcnk2OTc0NDk3MA==", + "name": "build-time-blame-plugin", + "full_name": "jenkinsci/build-time-blame-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/build-time-blame-plugin", + "description": "A Jenkins plugin for analyzing the historical console output of a Job with the goal of determining which steps are taking the most time.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/build-time-blame-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/build-time-blame-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/build-time-blame-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/build-time-blame-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/build-time-blame-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/build-time-blame-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/build-time-blame-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/build-time-blame-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/build-time-blame-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/build-time-blame-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/build-time-blame-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/build-time-blame-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/build-time-blame-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/build-time-blame-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/build-time-blame-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/build-time-blame-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/build-time-blame-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/build-time-blame-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/build-time-blame-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/build-time-blame-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/build-time-blame-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/build-time-blame-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/build-time-blame-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/build-time-blame-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/build-time-blame-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/build-time-blame-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/build-time-blame-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/build-time-blame-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/build-time-blame-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/build-time-blame-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/build-time-blame-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/build-time-blame-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/build-time-blame-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/build-time-blame-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/build-time-blame-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/build-time-blame-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/build-time-blame-plugin/deployments", + "created_at": "2016-10-01T15:01:01Z", + "updated_at": "2019-10-18T03:55:06Z", + "pushed_at": "2019-10-09T14:58:45Z", + "git_url": "git://github.com/jenkinsci/build-time-blame-plugin.git", + "ssh_url": "git@github.com:jenkinsci/build-time-blame-plugin.git", + "clone_url": "https://github.com/jenkinsci/build-time-blame-plugin.git", + "svn_url": "https://github.com/jenkinsci/build-time-blame-plugin", + "homepage": null, + "size": 201, + "stargazers_count": 21, + "watchers_count": 21, + "language": "Groovy", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 5, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 5, + "open_issues": 5, + "watchers": 21, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 69748430, + "node_id": "MDEwOlJlcG9zaXRvcnk2OTc0ODQzMA==", + "name": "pipeline-aggregator-view-plugin", + "full_name": "jenkinsci/pipeline-aggregator-view-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pipeline-aggregator-view-plugin", + "description": "Aggregate Pipeline View for jenkins that shows latest builds of pipelines in jenkins togheter with it's jobs", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/pipeline-aggregator-view-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pipeline-aggregator-view-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pipeline-aggregator-view-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pipeline-aggregator-view-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pipeline-aggregator-view-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pipeline-aggregator-view-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pipeline-aggregator-view-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pipeline-aggregator-view-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pipeline-aggregator-view-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pipeline-aggregator-view-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pipeline-aggregator-view-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pipeline-aggregator-view-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pipeline-aggregator-view-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pipeline-aggregator-view-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pipeline-aggregator-view-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pipeline-aggregator-view-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pipeline-aggregator-view-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pipeline-aggregator-view-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pipeline-aggregator-view-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pipeline-aggregator-view-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pipeline-aggregator-view-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pipeline-aggregator-view-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pipeline-aggregator-view-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pipeline-aggregator-view-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pipeline-aggregator-view-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pipeline-aggregator-view-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pipeline-aggregator-view-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pipeline-aggregator-view-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pipeline-aggregator-view-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pipeline-aggregator-view-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pipeline-aggregator-view-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pipeline-aggregator-view-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pipeline-aggregator-view-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pipeline-aggregator-view-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pipeline-aggregator-view-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pipeline-aggregator-view-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pipeline-aggregator-view-plugin/deployments", + "created_at": "2016-10-01T16:05:18Z", + "updated_at": "2019-01-19T15:12:46Z", + "pushed_at": "2019-03-27T00:34:26Z", + "git_url": "git://github.com/jenkinsci/pipeline-aggregator-view-plugin.git", + "ssh_url": "git@github.com:jenkinsci/pipeline-aggregator-view-plugin.git", + "clone_url": "https://github.com/jenkinsci/pipeline-aggregator-view-plugin.git", + "svn_url": "https://github.com/jenkinsci/pipeline-aggregator-view-plugin", + "homepage": null, + "size": 290, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 20, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 4, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 20, + "open_issues": 4, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 69748853, + "node_id": "MDEwOlJlcG9zaXRvcnk2OTc0ODg1Mw==", + "name": "catalogic-ecx-plugin", + "full_name": "jenkinsci/catalogic-ecx-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/catalogic-ecx-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/catalogic-ecx-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/catalogic-ecx-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/catalogic-ecx-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/catalogic-ecx-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/catalogic-ecx-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/catalogic-ecx-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/catalogic-ecx-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/catalogic-ecx-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/catalogic-ecx-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/catalogic-ecx-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/catalogic-ecx-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/catalogic-ecx-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/catalogic-ecx-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/catalogic-ecx-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/catalogic-ecx-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/catalogic-ecx-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/catalogic-ecx-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/catalogic-ecx-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/catalogic-ecx-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/catalogic-ecx-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/catalogic-ecx-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/catalogic-ecx-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/catalogic-ecx-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/catalogic-ecx-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/catalogic-ecx-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/catalogic-ecx-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/catalogic-ecx-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/catalogic-ecx-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/catalogic-ecx-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/catalogic-ecx-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/catalogic-ecx-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/catalogic-ecx-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/catalogic-ecx-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/catalogic-ecx-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/catalogic-ecx-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/catalogic-ecx-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/catalogic-ecx-plugin/deployments", + "created_at": "2016-10-01T16:13:30Z", + "updated_at": "2016-10-18T18:04:58Z", + "pushed_at": "2016-10-14T20:57:27Z", + "git_url": "git://github.com/jenkinsci/catalogic-ecx-plugin.git", + "ssh_url": "git@github.com:jenkinsci/catalogic-ecx-plugin.git", + "clone_url": "https://github.com/jenkinsci/catalogic-ecx-plugin.git", + "svn_url": "https://github.com/jenkinsci/catalogic-ecx-plugin", + "homepage": null, + "size": 40, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 69772077, + "node_id": "MDEwOlJlcG9zaXRvcnk2OTc3MjA3Nw==", + "name": "msginject-plugin", + "full_name": "jenkinsci/msginject-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/msginject-plugin", + "description": "Jenkins Plugin for Injecting messages into Gerrit Trigger comments", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/msginject-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/msginject-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/msginject-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/msginject-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/msginject-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/msginject-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/msginject-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/msginject-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/msginject-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/msginject-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/msginject-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/msginject-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/msginject-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/msginject-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/msginject-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/msginject-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/msginject-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/msginject-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/msginject-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/msginject-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/msginject-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/msginject-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/msginject-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/msginject-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/msginject-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/msginject-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/msginject-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/msginject-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/msginject-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/msginject-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/msginject-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/msginject-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/msginject-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/msginject-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/msginject-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/msginject-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/msginject-plugin/deployments", + "created_at": "2016-10-02T01:01:10Z", + "updated_at": "2016-10-03T18:24:12Z", + "pushed_at": "2016-11-02T16:40:11Z", + "git_url": "git://github.com/jenkinsci/msginject-plugin.git", + "ssh_url": "git@github.com:jenkinsci/msginject-plugin.git", + "clone_url": "https://github.com/jenkinsci/msginject-plugin.git", + "svn_url": "https://github.com/jenkinsci/msginject-plugin", + "homepage": null, + "size": 9, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 69772267, + "node_id": "MDEwOlJlcG9zaXRvcnk2OTc3MjI2Nw==", + "name": "anchore-container-scanner-plugin", + "full_name": "jenkinsci/anchore-container-scanner-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/anchore-container-scanner-plugin", + "description": "Jenkins plugin that adds Anchore container image analysis and policy evaluation to Jenkins as a build step", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/anchore-container-scanner-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/anchore-container-scanner-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/anchore-container-scanner-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/anchore-container-scanner-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/anchore-container-scanner-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/anchore-container-scanner-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/anchore-container-scanner-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/anchore-container-scanner-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/anchore-container-scanner-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/anchore-container-scanner-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/anchore-container-scanner-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/anchore-container-scanner-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/anchore-container-scanner-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/anchore-container-scanner-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/anchore-container-scanner-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/anchore-container-scanner-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/anchore-container-scanner-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/anchore-container-scanner-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/anchore-container-scanner-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/anchore-container-scanner-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/anchore-container-scanner-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/anchore-container-scanner-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/anchore-container-scanner-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/anchore-container-scanner-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/anchore-container-scanner-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/anchore-container-scanner-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/anchore-container-scanner-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/anchore-container-scanner-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/anchore-container-scanner-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/anchore-container-scanner-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/anchore-container-scanner-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/anchore-container-scanner-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/anchore-container-scanner-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/anchore-container-scanner-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/anchore-container-scanner-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/anchore-container-scanner-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/anchore-container-scanner-plugin/deployments", + "created_at": "2016-10-02T01:08:05Z", + "updated_at": "2019-10-22T21:47:48Z", + "pushed_at": "2019-10-22T21:47:46Z", + "git_url": "git://github.com/jenkinsci/anchore-container-scanner-plugin.git", + "ssh_url": "git@github.com:jenkinsci/anchore-container-scanner-plugin.git", + "clone_url": "https://github.com/jenkinsci/anchore-container-scanner-plugin.git", + "svn_url": "https://github.com/jenkinsci/anchore-container-scanner-plugin", + "homepage": null, + "size": 247, + "stargazers_count": 13, + "watchers_count": 13, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 15, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 15, + "open_issues": 0, + "watchers": 13, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 69927480, + "node_id": "MDEwOlJlcG9zaXRvcnk2OTkyNzQ4MA==", + "name": "cisco-spark-notifier-plugin", + "full_name": "jenkinsci/cisco-spark-notifier-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/cisco-spark-notifier-plugin", + "description": "Sends messages to Spark rooms from Jenkins", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/cisco-spark-notifier-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/cisco-spark-notifier-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/cisco-spark-notifier-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/cisco-spark-notifier-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/cisco-spark-notifier-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/cisco-spark-notifier-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/cisco-spark-notifier-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/cisco-spark-notifier-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/cisco-spark-notifier-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/cisco-spark-notifier-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/cisco-spark-notifier-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/cisco-spark-notifier-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/cisco-spark-notifier-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/cisco-spark-notifier-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/cisco-spark-notifier-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/cisco-spark-notifier-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/cisco-spark-notifier-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/cisco-spark-notifier-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/cisco-spark-notifier-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/cisco-spark-notifier-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/cisco-spark-notifier-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/cisco-spark-notifier-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/cisco-spark-notifier-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/cisco-spark-notifier-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/cisco-spark-notifier-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/cisco-spark-notifier-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/cisco-spark-notifier-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/cisco-spark-notifier-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/cisco-spark-notifier-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/cisco-spark-notifier-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/cisco-spark-notifier-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/cisco-spark-notifier-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/cisco-spark-notifier-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/cisco-spark-notifier-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/cisco-spark-notifier-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/cisco-spark-notifier-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/cisco-spark-notifier-plugin/deployments", + "created_at": "2016-10-04T02:12:09Z", + "updated_at": "2019-10-21T06:54:36Z", + "pushed_at": "2019-09-03T18:54:56Z", + "git_url": "git://github.com/jenkinsci/cisco-spark-notifier-plugin.git", + "ssh_url": "git@github.com:jenkinsci/cisco-spark-notifier-plugin.git", + "clone_url": "https://github.com/jenkinsci/cisco-spark-notifier-plugin.git", + "svn_url": "https://github.com/jenkinsci/cisco-spark-notifier-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Spark+Notifier+Plugin", + "size": 175, + "stargazers_count": 6, + "watchers_count": 6, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 4, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 3, + "open_issues": 4, + "watchers": 6, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 69970326, + "node_id": "MDEwOlJlcG9zaXRvcnk2OTk3MDMyNg==", + "name": "blueocean-display-url-plugin", + "full_name": "jenkinsci/blueocean-display-url-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/blueocean-display-url-plugin", + "description": "Provides a display url implementation", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/blueocean-display-url-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/blueocean-display-url-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/blueocean-display-url-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/blueocean-display-url-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/blueocean-display-url-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/blueocean-display-url-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/blueocean-display-url-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/blueocean-display-url-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/blueocean-display-url-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/blueocean-display-url-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/blueocean-display-url-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/blueocean-display-url-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/blueocean-display-url-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/blueocean-display-url-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/blueocean-display-url-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/blueocean-display-url-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/blueocean-display-url-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/blueocean-display-url-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/blueocean-display-url-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/blueocean-display-url-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/blueocean-display-url-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/blueocean-display-url-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/blueocean-display-url-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/blueocean-display-url-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/blueocean-display-url-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/blueocean-display-url-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/blueocean-display-url-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/blueocean-display-url-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/blueocean-display-url-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/blueocean-display-url-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/blueocean-display-url-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/blueocean-display-url-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/blueocean-display-url-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/blueocean-display-url-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/blueocean-display-url-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/blueocean-display-url-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/blueocean-display-url-plugin/deployments", + "created_at": "2016-10-04T14:00:47Z", + "updated_at": "2019-09-22T04:16:20Z", + "pushed_at": "2019-10-23T05:32:32Z", + "git_url": "git://github.com/jenkinsci/blueocean-display-url-plugin.git", + "ssh_url": "git@github.com:jenkinsci/blueocean-display-url-plugin.git", + "clone_url": "https://github.com/jenkinsci/blueocean-display-url-plugin.git", + "svn_url": "https://github.com/jenkinsci/blueocean-display-url-plugin", + "homepage": null, + "size": 72, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 8, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 4, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 8, + "open_issues": 4, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 70148233, + "node_id": "MDEwOlJlcG9zaXRvcnk3MDE0ODIzMw==", + "name": "blueocean-pipeline-editor-plugin", + "full_name": "jenkinsci/blueocean-pipeline-editor-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/blueocean-pipeline-editor-plugin", + "description": "Jenkins Blue Ocean pipeline editor", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/blueocean-pipeline-editor-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/blueocean-pipeline-editor-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/blueocean-pipeline-editor-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/blueocean-pipeline-editor-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/blueocean-pipeline-editor-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/blueocean-pipeline-editor-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/blueocean-pipeline-editor-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/blueocean-pipeline-editor-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/blueocean-pipeline-editor-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/blueocean-pipeline-editor-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/blueocean-pipeline-editor-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/blueocean-pipeline-editor-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/blueocean-pipeline-editor-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/blueocean-pipeline-editor-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/blueocean-pipeline-editor-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/blueocean-pipeline-editor-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/blueocean-pipeline-editor-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/blueocean-pipeline-editor-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/blueocean-pipeline-editor-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/blueocean-pipeline-editor-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/blueocean-pipeline-editor-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/blueocean-pipeline-editor-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/blueocean-pipeline-editor-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/blueocean-pipeline-editor-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/blueocean-pipeline-editor-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/blueocean-pipeline-editor-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/blueocean-pipeline-editor-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/blueocean-pipeline-editor-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/blueocean-pipeline-editor-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/blueocean-pipeline-editor-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/blueocean-pipeline-editor-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/blueocean-pipeline-editor-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/blueocean-pipeline-editor-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/blueocean-pipeline-editor-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/blueocean-pipeline-editor-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/blueocean-pipeline-editor-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/blueocean-pipeline-editor-plugin/deployments", + "created_at": "2016-10-06T11:37:53Z", + "updated_at": "2019-10-07T16:09:14Z", + "pushed_at": "2018-05-08T22:44:21Z", + "git_url": "git://github.com/jenkinsci/blueocean-pipeline-editor-plugin.git", + "ssh_url": "git@github.com:jenkinsci/blueocean-pipeline-editor-plugin.git", + "clone_url": "https://github.com/jenkinsci/blueocean-pipeline-editor-plugin.git", + "svn_url": "https://github.com/jenkinsci/blueocean-pipeline-editor-plugin", + "homepage": null, + "size": 382, + "stargazers_count": 31, + "watchers_count": 31, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 15, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 15, + "open_issues": 0, + "watchers": 31, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 70148382, + "node_id": "MDEwOlJlcG9zaXRvcnk3MDE0ODM4Mg==", + "name": "splunk-devops-plugin", + "full_name": "jenkinsci/splunk-devops-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/splunk-devops-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/splunk-devops-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/splunk-devops-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/splunk-devops-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/splunk-devops-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/splunk-devops-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/splunk-devops-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/splunk-devops-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/splunk-devops-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/splunk-devops-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/splunk-devops-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/splunk-devops-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/splunk-devops-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/splunk-devops-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/splunk-devops-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/splunk-devops-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/splunk-devops-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/splunk-devops-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/splunk-devops-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/splunk-devops-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/splunk-devops-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/splunk-devops-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/splunk-devops-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/splunk-devops-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/splunk-devops-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/splunk-devops-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/splunk-devops-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/splunk-devops-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/splunk-devops-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/splunk-devops-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/splunk-devops-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/splunk-devops-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/splunk-devops-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/splunk-devops-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/splunk-devops-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/splunk-devops-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/splunk-devops-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/splunk-devops-plugin/deployments", + "created_at": "2016-10-06T11:40:17Z", + "updated_at": "2019-10-08T15:28:27Z", + "pushed_at": "2019-10-08T11:26:28Z", + "git_url": "git://github.com/jenkinsci/splunk-devops-plugin.git", + "ssh_url": "git@github.com:jenkinsci/splunk-devops-plugin.git", + "clone_url": "https://github.com/jenkinsci/splunk-devops-plugin.git", + "svn_url": "https://github.com/jenkinsci/splunk-devops-plugin", + "homepage": null, + "size": 2142, + "stargazers_count": 13, + "watchers_count": 13, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 16, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": null, + "forks": 16, + "open_issues": 3, + "watchers": 13, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 71289157, + "node_id": "MDEwOlJlcG9zaXRvcnk3MTI4OTE1Nw==", + "name": "puppet-enterprise-pipeline-plugin", + "full_name": "jenkinsci/puppet-enterprise-pipeline-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/puppet-enterprise-pipeline-plugin", + "description": "A Jenkins Pipeline plugin for Puppet Enterprise", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/puppet-enterprise-pipeline-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/puppet-enterprise-pipeline-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/puppet-enterprise-pipeline-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/puppet-enterprise-pipeline-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/puppet-enterprise-pipeline-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/puppet-enterprise-pipeline-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/puppet-enterprise-pipeline-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/puppet-enterprise-pipeline-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/puppet-enterprise-pipeline-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/puppet-enterprise-pipeline-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/puppet-enterprise-pipeline-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/puppet-enterprise-pipeline-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/puppet-enterprise-pipeline-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/puppet-enterprise-pipeline-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/puppet-enterprise-pipeline-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/puppet-enterprise-pipeline-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/puppet-enterprise-pipeline-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/puppet-enterprise-pipeline-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/puppet-enterprise-pipeline-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/puppet-enterprise-pipeline-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/puppet-enterprise-pipeline-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/puppet-enterprise-pipeline-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/puppet-enterprise-pipeline-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/puppet-enterprise-pipeline-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/puppet-enterprise-pipeline-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/puppet-enterprise-pipeline-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/puppet-enterprise-pipeline-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/puppet-enterprise-pipeline-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/puppet-enterprise-pipeline-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/puppet-enterprise-pipeline-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/puppet-enterprise-pipeline-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/puppet-enterprise-pipeline-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/puppet-enterprise-pipeline-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/puppet-enterprise-pipeline-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/puppet-enterprise-pipeline-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/puppet-enterprise-pipeline-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/puppet-enterprise-pipeline-plugin/deployments", + "created_at": "2016-10-18T20:36:44Z", + "updated_at": "2019-07-01T13:21:35Z", + "pushed_at": "2018-11-20T22:11:41Z", + "git_url": "git://github.com/jenkinsci/puppet-enterprise-pipeline-plugin.git", + "ssh_url": "git@github.com:jenkinsci/puppet-enterprise-pipeline-plugin.git", + "clone_url": "https://github.com/jenkinsci/puppet-enterprise-pipeline-plugin.git", + "svn_url": "https://github.com/jenkinsci/puppet-enterprise-pipeline-plugin", + "homepage": null, + "size": 378, + "stargazers_count": 11, + "watchers_count": 11, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 11, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 11, + "open_issues": 2, + "watchers": 11, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 71463206, + "node_id": "MDEwOlJlcG9zaXRvcnk3MTQ2MzIwNg==", + "name": "pipeline-github-lib-plugin", + "full_name": "jenkinsci/pipeline-github-lib-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pipeline-github-lib-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/pipeline-github-lib-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pipeline-github-lib-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pipeline-github-lib-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pipeline-github-lib-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pipeline-github-lib-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pipeline-github-lib-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pipeline-github-lib-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pipeline-github-lib-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pipeline-github-lib-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pipeline-github-lib-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pipeline-github-lib-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pipeline-github-lib-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pipeline-github-lib-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pipeline-github-lib-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pipeline-github-lib-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pipeline-github-lib-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pipeline-github-lib-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pipeline-github-lib-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pipeline-github-lib-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pipeline-github-lib-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pipeline-github-lib-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pipeline-github-lib-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pipeline-github-lib-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pipeline-github-lib-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pipeline-github-lib-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pipeline-github-lib-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pipeline-github-lib-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pipeline-github-lib-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pipeline-github-lib-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pipeline-github-lib-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pipeline-github-lib-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pipeline-github-lib-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pipeline-github-lib-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pipeline-github-lib-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pipeline-github-lib-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pipeline-github-lib-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pipeline-github-lib-plugin/deployments", + "created_at": "2016-10-20T12:57:31Z", + "updated_at": "2019-07-15T11:19:50Z", + "pushed_at": "2018-07-19T07:03:51Z", + "git_url": "git://github.com/jenkinsci/pipeline-github-lib-plugin.git", + "ssh_url": "git@github.com:jenkinsci/pipeline-github-lib-plugin.git", + "clone_url": "https://github.com/jenkinsci/pipeline-github-lib-plugin.git", + "svn_url": "https://github.com/jenkinsci/pipeline-github-lib-plugin", + "homepage": "", + "size": 10, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 9, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 9, + "open_issues": 1, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 72379907, + "node_id": "MDEwOlJlcG9zaXRvcnk3MjM3OTkwNw==", + "name": "dingding-notifications-plugin", + "full_name": "jenkinsci/dingding-notifications-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/dingding-notifications-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/dingding-notifications-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/dingding-notifications-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/dingding-notifications-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/dingding-notifications-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/dingding-notifications-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/dingding-notifications-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/dingding-notifications-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/dingding-notifications-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/dingding-notifications-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/dingding-notifications-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/dingding-notifications-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/dingding-notifications-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/dingding-notifications-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/dingding-notifications-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/dingding-notifications-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/dingding-notifications-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/dingding-notifications-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/dingding-notifications-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/dingding-notifications-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/dingding-notifications-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/dingding-notifications-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/dingding-notifications-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/dingding-notifications-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/dingding-notifications-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/dingding-notifications-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/dingding-notifications-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/dingding-notifications-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/dingding-notifications-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/dingding-notifications-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/dingding-notifications-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/dingding-notifications-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/dingding-notifications-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/dingding-notifications-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/dingding-notifications-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/dingding-notifications-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/dingding-notifications-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/dingding-notifications-plugin/deployments", + "created_at": "2016-10-30T22:37:50Z", + "updated_at": "2019-10-14T04:08:14Z", + "pushed_at": "2019-08-05T09:31:53Z", + "git_url": "git://github.com/jenkinsci/dingding-notifications-plugin.git", + "ssh_url": "git@github.com:jenkinsci/dingding-notifications-plugin.git", + "clone_url": "https://github.com/jenkinsci/dingding-notifications-plugin.git", + "svn_url": "https://github.com/jenkinsci/dingding-notifications-plugin", + "homepage": null, + "size": 282, + "stargazers_count": 151, + "watchers_count": 151, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 94, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 11, + "license": null, + "forks": 94, + "open_issues": 11, + "watchers": 151, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 72789844, + "node_id": "MDEwOlJlcG9zaXRvcnk3Mjc4OTg0NA==", + "name": "pipeline-aws-plugin", + "full_name": "jenkinsci/pipeline-aws-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pipeline-aws-plugin", + "description": "Jenkins Pipeline Step Plugin for AWS", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/pipeline-aws-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pipeline-aws-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pipeline-aws-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pipeline-aws-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pipeline-aws-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pipeline-aws-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pipeline-aws-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pipeline-aws-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pipeline-aws-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pipeline-aws-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pipeline-aws-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pipeline-aws-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pipeline-aws-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pipeline-aws-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pipeline-aws-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pipeline-aws-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pipeline-aws-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pipeline-aws-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pipeline-aws-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pipeline-aws-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pipeline-aws-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pipeline-aws-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pipeline-aws-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pipeline-aws-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pipeline-aws-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pipeline-aws-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pipeline-aws-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pipeline-aws-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pipeline-aws-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pipeline-aws-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pipeline-aws-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pipeline-aws-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pipeline-aws-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pipeline-aws-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pipeline-aws-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pipeline-aws-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pipeline-aws-plugin/deployments", + "created_at": "2016-11-03T21:47:14Z", + "updated_at": "2019-10-22T08:10:44Z", + "pushed_at": "2019-10-15T22:45:05Z", + "git_url": "git://github.com/jenkinsci/pipeline-aws-plugin.git", + "ssh_url": "git@github.com:jenkinsci/pipeline-aws-plugin.git", + "clone_url": "https://github.com/jenkinsci/pipeline-aws-plugin.git", + "svn_url": "https://github.com/jenkinsci/pipeline-aws-plugin", + "homepage": null, + "size": 952, + "stargazers_count": 293, + "watchers_count": 293, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 135, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 45, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 135, + "open_issues": 45, + "watchers": 293, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 72843720, + "node_id": "MDEwOlJlcG9zaXRvcnk3Mjg0MzcyMA==", + "name": "gitlab-automatic-item-creator-plugin", + "full_name": "jenkinsci/gitlab-automatic-item-creator-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/gitlab-automatic-item-creator-plugin", + "description": "Jenkins plugin that enables your jenkins auto-creating jobs without any configurations by hooking your gitlab server", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/gitlab-automatic-item-creator-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/gitlab-automatic-item-creator-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/gitlab-automatic-item-creator-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/gitlab-automatic-item-creator-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/gitlab-automatic-item-creator-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/gitlab-automatic-item-creator-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/gitlab-automatic-item-creator-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/gitlab-automatic-item-creator-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/gitlab-automatic-item-creator-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/gitlab-automatic-item-creator-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/gitlab-automatic-item-creator-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/gitlab-automatic-item-creator-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/gitlab-automatic-item-creator-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/gitlab-automatic-item-creator-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/gitlab-automatic-item-creator-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/gitlab-automatic-item-creator-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/gitlab-automatic-item-creator-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/gitlab-automatic-item-creator-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/gitlab-automatic-item-creator-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/gitlab-automatic-item-creator-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/gitlab-automatic-item-creator-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/gitlab-automatic-item-creator-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/gitlab-automatic-item-creator-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/gitlab-automatic-item-creator-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/gitlab-automatic-item-creator-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/gitlab-automatic-item-creator-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/gitlab-automatic-item-creator-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/gitlab-automatic-item-creator-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/gitlab-automatic-item-creator-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/gitlab-automatic-item-creator-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/gitlab-automatic-item-creator-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/gitlab-automatic-item-creator-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/gitlab-automatic-item-creator-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/gitlab-automatic-item-creator-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/gitlab-automatic-item-creator-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/gitlab-automatic-item-creator-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/gitlab-automatic-item-creator-plugin/deployments", + "created_at": "2016-11-04T11:57:18Z", + "updated_at": "2019-01-11T20:50:38Z", + "pushed_at": "2016-08-24T06:55:10Z", + "git_url": "git://github.com/jenkinsci/gitlab-automatic-item-creator-plugin.git", + "ssh_url": "git@github.com:jenkinsci/gitlab-automatic-item-creator-plugin.git", + "clone_url": "https://github.com/jenkinsci/gitlab-automatic-item-creator-plugin.git", + "svn_url": "https://github.com/jenkinsci/gitlab-automatic-item-creator-plugin", + "homepage": null, + "size": 14, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 72843774, + "node_id": "MDEwOlJlcG9zaXRvcnk3Mjg0Mzc3NA==", + "name": "github-issues-plugin", + "full_name": "jenkinsci/github-issues-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/github-issues-plugin", + "description": "Jenkins plugin to create GitHub issues for failing builds", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/github-issues-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/github-issues-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/github-issues-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/github-issues-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/github-issues-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/github-issues-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/github-issues-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/github-issues-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/github-issues-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/github-issues-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/github-issues-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/github-issues-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/github-issues-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/github-issues-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/github-issues-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/github-issues-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/github-issues-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/github-issues-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/github-issues-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/github-issues-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/github-issues-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/github-issues-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/github-issues-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/github-issues-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/github-issues-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/github-issues-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/github-issues-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/github-issues-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/github-issues-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/github-issues-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/github-issues-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/github-issues-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/github-issues-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/github-issues-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/github-issues-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/github-issues-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/github-issues-plugin/deployments", + "created_at": "2016-11-04T11:58:14Z", + "updated_at": "2019-02-15T07:48:26Z", + "pushed_at": "2017-11-04T23:09:53Z", + "git_url": "git://github.com/jenkinsci/github-issues-plugin.git", + "ssh_url": "git@github.com:jenkinsci/github-issues-plugin.git", + "clone_url": "https://github.com/jenkinsci/github-issues-plugin.git", + "svn_url": "https://github.com/jenkinsci/github-issues-plugin", + "homepage": "https://plugins.jenkins.io/github-issues", + "size": 67, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 4, + "open_issues": 3, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 72844036, + "node_id": "MDEwOlJlcG9zaXRvcnk3Mjg0NDAzNg==", + "name": "blueocean-autofavorite-plugin", + "full_name": "jenkinsci/blueocean-autofavorite-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/blueocean-autofavorite-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/blueocean-autofavorite-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/blueocean-autofavorite-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/blueocean-autofavorite-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/blueocean-autofavorite-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/blueocean-autofavorite-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/blueocean-autofavorite-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/blueocean-autofavorite-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/blueocean-autofavorite-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/blueocean-autofavorite-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/blueocean-autofavorite-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/blueocean-autofavorite-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/blueocean-autofavorite-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/blueocean-autofavorite-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/blueocean-autofavorite-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/blueocean-autofavorite-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/blueocean-autofavorite-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/blueocean-autofavorite-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/blueocean-autofavorite-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/blueocean-autofavorite-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/blueocean-autofavorite-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/blueocean-autofavorite-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/blueocean-autofavorite-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/blueocean-autofavorite-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/blueocean-autofavorite-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/blueocean-autofavorite-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/blueocean-autofavorite-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/blueocean-autofavorite-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/blueocean-autofavorite-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/blueocean-autofavorite-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/blueocean-autofavorite-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/blueocean-autofavorite-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/blueocean-autofavorite-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/blueocean-autofavorite-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/blueocean-autofavorite-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/blueocean-autofavorite-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/blueocean-autofavorite-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/blueocean-autofavorite-plugin/deployments", + "created_at": "2016-11-04T12:02:39Z", + "updated_at": "2019-04-01T17:34:25Z", + "pushed_at": "2019-04-01T17:34:23Z", + "git_url": "git://github.com/jenkinsci/blueocean-autofavorite-plugin.git", + "ssh_url": "git@github.com:jenkinsci/blueocean-autofavorite-plugin.git", + "clone_url": "https://github.com/jenkinsci/blueocean-autofavorite-plugin.git", + "svn_url": "https://github.com/jenkinsci/blueocean-autofavorite-plugin", + "homepage": null, + "size": 59, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 9, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 9, + "open_issues": 2, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 72885348, + "node_id": "MDEwOlJlcG9zaXRvcnk3Mjg4NTM0OA==", + "name": "blackduck-hub-plugin", + "full_name": "jenkinsci/blackduck-hub-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/blackduck-hub-plugin", + "description": "Jenkins Hub Plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/blackduck-hub-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/blackduck-hub-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/blackduck-hub-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/blackduck-hub-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/blackduck-hub-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/blackduck-hub-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/blackduck-hub-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/blackduck-hub-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/blackduck-hub-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/blackduck-hub-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/blackduck-hub-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/blackduck-hub-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/blackduck-hub-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/blackduck-hub-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/blackduck-hub-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/blackduck-hub-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/blackduck-hub-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/blackduck-hub-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/blackduck-hub-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/blackduck-hub-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/blackduck-hub-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/blackduck-hub-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/blackduck-hub-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/blackduck-hub-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/blackduck-hub-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/blackduck-hub-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/blackduck-hub-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/blackduck-hub-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/blackduck-hub-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/blackduck-hub-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/blackduck-hub-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/blackduck-hub-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/blackduck-hub-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/blackduck-hub-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/blackduck-hub-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/blackduck-hub-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/blackduck-hub-plugin/deployments", + "created_at": "2016-11-04T21:05:54Z", + "updated_at": "2019-07-29T18:58:34Z", + "pushed_at": "2018-10-03T20:04:28Z", + "git_url": "git://github.com/jenkinsci/blackduck-hub-plugin.git", + "ssh_url": "git@github.com:jenkinsci/blackduck-hub-plugin.git", + "clone_url": "https://github.com/jenkinsci/blackduck-hub-plugin.git", + "svn_url": "https://github.com/jenkinsci/blackduck-hub-plugin", + "homepage": null, + "size": 119064, + "stargazers_count": 4, + "watchers_count": 4, + "language": "HTML", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": true, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 2, + "open_issues": 0, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 72885799, + "node_id": "MDEwOlJlcG9zaXRvcnk3Mjg4NTc5OQ==", + "name": "pipeline-multibranch-defaults-plugin", + "full_name": "jenkinsci/pipeline-multibranch-defaults-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pipeline-multibranch-defaults-plugin", + "description": "Multibranch tasks with default pipeline", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/pipeline-multibranch-defaults-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pipeline-multibranch-defaults-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pipeline-multibranch-defaults-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pipeline-multibranch-defaults-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pipeline-multibranch-defaults-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pipeline-multibranch-defaults-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pipeline-multibranch-defaults-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pipeline-multibranch-defaults-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pipeline-multibranch-defaults-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pipeline-multibranch-defaults-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pipeline-multibranch-defaults-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pipeline-multibranch-defaults-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pipeline-multibranch-defaults-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pipeline-multibranch-defaults-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pipeline-multibranch-defaults-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pipeline-multibranch-defaults-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pipeline-multibranch-defaults-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pipeline-multibranch-defaults-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pipeline-multibranch-defaults-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pipeline-multibranch-defaults-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pipeline-multibranch-defaults-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pipeline-multibranch-defaults-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pipeline-multibranch-defaults-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pipeline-multibranch-defaults-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pipeline-multibranch-defaults-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pipeline-multibranch-defaults-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pipeline-multibranch-defaults-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pipeline-multibranch-defaults-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pipeline-multibranch-defaults-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pipeline-multibranch-defaults-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pipeline-multibranch-defaults-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pipeline-multibranch-defaults-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pipeline-multibranch-defaults-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pipeline-multibranch-defaults-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pipeline-multibranch-defaults-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pipeline-multibranch-defaults-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pipeline-multibranch-defaults-plugin/deployments", + "created_at": "2016-11-04T21:13:14Z", + "updated_at": "2019-10-14T01:37:46Z", + "pushed_at": "2019-09-24T10:22:03Z", + "git_url": "git://github.com/jenkinsci/pipeline-multibranch-defaults-plugin.git", + "ssh_url": "git@github.com:jenkinsci/pipeline-multibranch-defaults-plugin.git", + "clone_url": "https://github.com/jenkinsci/pipeline-multibranch-defaults-plugin.git", + "svn_url": "https://github.com/jenkinsci/pipeline-multibranch-defaults-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Pipeline+Multibranch+Defaults+Plugin", + "size": 77, + "stargazers_count": 34, + "watchers_count": 34, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": true, + "forks_count": 18, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 18, + "open_issues": 2, + "watchers": 34, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 72996339, + "node_id": "MDEwOlJlcG9zaXRvcnk3Mjk5NjMzOQ==", + "name": "console-log-text-replacer-plugin", + "full_name": "jenkinsci/console-log-text-replacer-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/console-log-text-replacer-plugin", + "description": "Plugin for Jenkins which allows replacing text in the console log", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/console-log-text-replacer-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/console-log-text-replacer-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/console-log-text-replacer-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/console-log-text-replacer-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/console-log-text-replacer-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/console-log-text-replacer-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/console-log-text-replacer-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/console-log-text-replacer-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/console-log-text-replacer-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/console-log-text-replacer-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/console-log-text-replacer-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/console-log-text-replacer-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/console-log-text-replacer-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/console-log-text-replacer-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/console-log-text-replacer-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/console-log-text-replacer-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/console-log-text-replacer-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/console-log-text-replacer-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/console-log-text-replacer-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/console-log-text-replacer-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/console-log-text-replacer-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/console-log-text-replacer-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/console-log-text-replacer-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/console-log-text-replacer-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/console-log-text-replacer-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/console-log-text-replacer-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/console-log-text-replacer-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/console-log-text-replacer-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/console-log-text-replacer-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/console-log-text-replacer-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/console-log-text-replacer-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/console-log-text-replacer-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/console-log-text-replacer-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/console-log-text-replacer-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/console-log-text-replacer-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/console-log-text-replacer-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/console-log-text-replacer-plugin/deployments", + "created_at": "2016-11-06T14:34:27Z", + "updated_at": "2019-10-19T17:49:53Z", + "pushed_at": "2019-10-19T17:49:51Z", + "git_url": "git://github.com/jenkinsci/console-log-text-replacer-plugin.git", + "ssh_url": "git@github.com:jenkinsci/console-log-text-replacer-plugin.git", + "clone_url": "https://github.com/jenkinsci/console-log-text-replacer-plugin.git", + "svn_url": "https://github.com/jenkinsci/console-log-text-replacer-plugin", + "homepage": null, + "size": 7, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 72996376, + "node_id": "MDEwOlJlcG9zaXRvcnk3Mjk5NjM3Ng==", + "name": "fluentd-plugin", + "full_name": "jenkinsci/fluentd-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/fluentd-plugin", + "description": "A Jenkins plugin which allows to publish json data directly to Fluentd.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/fluentd-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/fluentd-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/fluentd-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/fluentd-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/fluentd-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/fluentd-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/fluentd-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/fluentd-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/fluentd-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/fluentd-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/fluentd-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/fluentd-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/fluentd-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/fluentd-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/fluentd-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/fluentd-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/fluentd-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/fluentd-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/fluentd-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/fluentd-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/fluentd-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/fluentd-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/fluentd-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/fluentd-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/fluentd-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/fluentd-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/fluentd-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/fluentd-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/fluentd-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/fluentd-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/fluentd-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/fluentd-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/fluentd-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/fluentd-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/fluentd-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/fluentd-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/fluentd-plugin/deployments", + "created_at": "2016-11-06T14:35:00Z", + "updated_at": "2018-08-30T14:02:45Z", + "pushed_at": "2018-05-03T11:51:30Z", + "git_url": "git://github.com/jenkinsci/fluentd-plugin.git", + "ssh_url": "git@github.com:jenkinsci/fluentd-plugin.git", + "clone_url": "https://github.com/jenkinsci/fluentd-plugin.git", + "svn_url": "https://github.com/jenkinsci/fluentd-plugin", + "homepage": null, + "size": 43, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 73184641, + "node_id": "MDEwOlJlcG9zaXRvcnk3MzE4NDY0MQ==", + "name": "scaleway-cloud-plugin", + "full_name": "jenkinsci/scaleway-cloud-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/scaleway-cloud-plugin", + "description": "Jenkins Scaleway Slave Plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/scaleway-cloud-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/scaleway-cloud-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/scaleway-cloud-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/scaleway-cloud-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/scaleway-cloud-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/scaleway-cloud-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/scaleway-cloud-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/scaleway-cloud-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/scaleway-cloud-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/scaleway-cloud-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/scaleway-cloud-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/scaleway-cloud-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/scaleway-cloud-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/scaleway-cloud-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/scaleway-cloud-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/scaleway-cloud-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/scaleway-cloud-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/scaleway-cloud-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/scaleway-cloud-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/scaleway-cloud-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/scaleway-cloud-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/scaleway-cloud-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/scaleway-cloud-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/scaleway-cloud-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/scaleway-cloud-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/scaleway-cloud-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/scaleway-cloud-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/scaleway-cloud-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/scaleway-cloud-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/scaleway-cloud-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/scaleway-cloud-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/scaleway-cloud-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/scaleway-cloud-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/scaleway-cloud-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/scaleway-cloud-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/scaleway-cloud-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/scaleway-cloud-plugin/deployments", + "created_at": "2016-11-08T12:39:40Z", + "updated_at": "2018-12-24T13:13:43Z", + "pushed_at": "2017-03-14T09:46:12Z", + "git_url": "git://github.com/jenkinsci/scaleway-cloud-plugin.git", + "ssh_url": "git@github.com:jenkinsci/scaleway-cloud-plugin.git", + "clone_url": "https://github.com/jenkinsci/scaleway-cloud-plugin.git", + "svn_url": "https://github.com/jenkinsci/scaleway-cloud-plugin", + "homepage": null, + "size": 67, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 2, + "open_issues": 0, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 73381877, + "node_id": "MDEwOlJlcG9zaXRvcnk3MzM4MTg3Nw==", + "name": "buildrotator-plugin", + "full_name": "jenkinsci/buildrotator-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/buildrotator-plugin", + "description": "A Jenkins plugin to perform rotation of build history with low memory pressure.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/buildrotator-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/buildrotator-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/buildrotator-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/buildrotator-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/buildrotator-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/buildrotator-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/buildrotator-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/buildrotator-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/buildrotator-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/buildrotator-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/buildrotator-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/buildrotator-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/buildrotator-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/buildrotator-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/buildrotator-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/buildrotator-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/buildrotator-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/buildrotator-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/buildrotator-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/buildrotator-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/buildrotator-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/buildrotator-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/buildrotator-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/buildrotator-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/buildrotator-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/buildrotator-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/buildrotator-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/buildrotator-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/buildrotator-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/buildrotator-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/buildrotator-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/buildrotator-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/buildrotator-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/buildrotator-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/buildrotator-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/buildrotator-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/buildrotator-plugin/deployments", + "created_at": "2016-11-10T12:54:31Z", + "updated_at": "2019-10-08T12:20:10Z", + "pushed_at": "2019-10-08T16:31:54Z", + "git_url": "git://github.com/jenkinsci/buildrotator-plugin.git", + "ssh_url": "git@github.com:jenkinsci/buildrotator-plugin.git", + "clone_url": "https://github.com/jenkinsci/buildrotator-plugin.git", + "svn_url": "https://github.com/jenkinsci/buildrotator-plugin", + "homepage": "", + "size": 17, + "stargazers_count": 7, + "watchers_count": 7, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 4, + "open_issues": 2, + "watchers": 7, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 73382023, + "node_id": "MDEwOlJlcG9zaXRvcnk3MzM4MjAyMw==", + "name": "maven-artifact-choicelistprovider-plugin", + "full_name": "jenkinsci/maven-artifact-choicelistprovider-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/maven-artifact-choicelistprovider-plugin", + "description": "Provides a new ChoiceListProvider to choose an artifact from a Nexus repository", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/maven-artifact-choicelistprovider-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/maven-artifact-choicelistprovider-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/maven-artifact-choicelistprovider-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/maven-artifact-choicelistprovider-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/maven-artifact-choicelistprovider-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/maven-artifact-choicelistprovider-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/maven-artifact-choicelistprovider-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/maven-artifact-choicelistprovider-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/maven-artifact-choicelistprovider-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/maven-artifact-choicelistprovider-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/maven-artifact-choicelistprovider-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/maven-artifact-choicelistprovider-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/maven-artifact-choicelistprovider-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/maven-artifact-choicelistprovider-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/maven-artifact-choicelistprovider-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/maven-artifact-choicelistprovider-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/maven-artifact-choicelistprovider-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/maven-artifact-choicelistprovider-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/maven-artifact-choicelistprovider-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/maven-artifact-choicelistprovider-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/maven-artifact-choicelistprovider-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/maven-artifact-choicelistprovider-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/maven-artifact-choicelistprovider-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/maven-artifact-choicelistprovider-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/maven-artifact-choicelistprovider-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/maven-artifact-choicelistprovider-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/maven-artifact-choicelistprovider-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/maven-artifact-choicelistprovider-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/maven-artifact-choicelistprovider-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/maven-artifact-choicelistprovider-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/maven-artifact-choicelistprovider-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/maven-artifact-choicelistprovider-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/maven-artifact-choicelistprovider-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/maven-artifact-choicelistprovider-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/maven-artifact-choicelistprovider-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/maven-artifact-choicelistprovider-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/maven-artifact-choicelistprovider-plugin/deployments", + "created_at": "2016-11-10T12:56:10Z", + "updated_at": "2019-10-08T10:04:14Z", + "pushed_at": "2019-10-08T10:04:12Z", + "git_url": "git://github.com/jenkinsci/maven-artifact-choicelistprovider-plugin.git", + "ssh_url": "git@github.com:jenkinsci/maven-artifact-choicelistprovider-plugin.git", + "clone_url": "https://github.com/jenkinsci/maven-artifact-choicelistprovider-plugin.git", + "svn_url": "https://github.com/jenkinsci/maven-artifact-choicelistprovider-plugin", + "homepage": "", + "size": 825, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 6, + "open_issues": 0, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 73724814, + "node_id": "MDEwOlJlcG9zaXRvcnk3MzcyNDgxNA==", + "name": "windocks-start-container-plugin", + "full_name": "jenkinsci/windocks-start-container-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/windocks-start-container-plugin", + "description": "Jenkins Windocks Container Plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/windocks-start-container-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/windocks-start-container-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/windocks-start-container-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/windocks-start-container-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/windocks-start-container-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/windocks-start-container-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/windocks-start-container-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/windocks-start-container-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/windocks-start-container-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/windocks-start-container-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/windocks-start-container-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/windocks-start-container-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/windocks-start-container-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/windocks-start-container-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/windocks-start-container-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/windocks-start-container-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/windocks-start-container-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/windocks-start-container-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/windocks-start-container-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/windocks-start-container-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/windocks-start-container-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/windocks-start-container-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/windocks-start-container-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/windocks-start-container-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/windocks-start-container-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/windocks-start-container-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/windocks-start-container-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/windocks-start-container-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/windocks-start-container-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/windocks-start-container-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/windocks-start-container-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/windocks-start-container-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/windocks-start-container-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/windocks-start-container-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/windocks-start-container-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/windocks-start-container-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/windocks-start-container-plugin/deployments", + "created_at": "2016-11-14T16:31:02Z", + "updated_at": "2019-07-15T11:19:50Z", + "pushed_at": "2016-12-02T04:13:07Z", + "git_url": "git://github.com/jenkinsci/windocks-start-container-plugin.git", + "ssh_url": "git@github.com:jenkinsci/windocks-start-container-plugin.git", + "clone_url": "https://github.com/jenkinsci/windocks-start-container-plugin.git", + "svn_url": "https://github.com/jenkinsci/windocks-start-container-plugin", + "homepage": null, + "size": 21, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 2, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 73755808, + "node_id": "MDEwOlJlcG9zaXRvcnk3Mzc1NTgwOA==", + "name": "zap-plugin", + "full_name": "jenkinsci/zap-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/zap-plugin", + "description": "The Official OWASP ZAP Jenkins Plugin extends the functionality of the ZAP security tool into a CI Environment.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/zap-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/zap-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/zap-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/zap-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/zap-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/zap-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/zap-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/zap-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/zap-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/zap-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/zap-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/zap-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/zap-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/zap-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/zap-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/zap-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/zap-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/zap-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/zap-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/zap-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/zap-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/zap-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/zap-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/zap-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/zap-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/zap-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/zap-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/zap-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/zap-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/zap-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/zap-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/zap-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/zap-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/zap-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/zap-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/zap-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/zap-plugin/deployments", + "created_at": "2016-11-14T23:21:12Z", + "updated_at": "2019-10-25T15:02:32Z", + "pushed_at": "2019-04-23T07:56:52Z", + "git_url": "git://github.com/jenkinsci/zap-plugin.git", + "ssh_url": "git@github.com:jenkinsci/zap-plugin.git", + "clone_url": "https://github.com/jenkinsci/zap-plugin.git", + "svn_url": "https://github.com/jenkinsci/zap-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/zap+plugin", + "size": 119, + "stargazers_count": 44, + "watchers_count": 44, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 19, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 9, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 19, + "open_issues": 9, + "watchers": 44, + "default_branch": "development", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 73757793, + "node_id": "MDEwOlJlcG9zaXRvcnk3Mzc1Nzc5Mw==", + "name": "vectorcast-coverage-plugin", + "full_name": "jenkinsci/vectorcast-coverage-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/vectorcast-coverage-plugin", + "description": "VectorCAST Jenkins coverage plugin based on Jenkins Emma Plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/vectorcast-coverage-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/vectorcast-coverage-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/vectorcast-coverage-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/vectorcast-coverage-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/vectorcast-coverage-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/vectorcast-coverage-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/vectorcast-coverage-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/vectorcast-coverage-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/vectorcast-coverage-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/vectorcast-coverage-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/vectorcast-coverage-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/vectorcast-coverage-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/vectorcast-coverage-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/vectorcast-coverage-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/vectorcast-coverage-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/vectorcast-coverage-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/vectorcast-coverage-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/vectorcast-coverage-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/vectorcast-coverage-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/vectorcast-coverage-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/vectorcast-coverage-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/vectorcast-coverage-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/vectorcast-coverage-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/vectorcast-coverage-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/vectorcast-coverage-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/vectorcast-coverage-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/vectorcast-coverage-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/vectorcast-coverage-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/vectorcast-coverage-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/vectorcast-coverage-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/vectorcast-coverage-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/vectorcast-coverage-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/vectorcast-coverage-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/vectorcast-coverage-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/vectorcast-coverage-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/vectorcast-coverage-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/vectorcast-coverage-plugin/deployments", + "created_at": "2016-11-14T23:56:42Z", + "updated_at": "2019-08-12T18:02:33Z", + "pushed_at": "2019-08-12T18:02:31Z", + "git_url": "git://github.com/jenkinsci/vectorcast-coverage-plugin.git", + "ssh_url": "git@github.com:jenkinsci/vectorcast-coverage-plugin.git", + "clone_url": "https://github.com/jenkinsci/vectorcast-coverage-plugin.git", + "svn_url": "https://github.com/jenkinsci/vectorcast-coverage-plugin", + "homepage": "http://www.vectorcast.com", + "size": 476, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 3, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 73825979, + "node_id": "MDEwOlJlcG9zaXRvcnk3MzgyNTk3OQ==", + "name": "email-aliases-plugin", + "full_name": "jenkinsci/email-aliases-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/email-aliases-plugin", + "description": "Allows a user to associate alternate email aliases with their Jenkins user profile", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/email-aliases-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/email-aliases-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/email-aliases-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/email-aliases-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/email-aliases-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/email-aliases-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/email-aliases-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/email-aliases-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/email-aliases-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/email-aliases-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/email-aliases-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/email-aliases-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/email-aliases-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/email-aliases-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/email-aliases-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/email-aliases-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/email-aliases-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/email-aliases-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/email-aliases-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/email-aliases-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/email-aliases-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/email-aliases-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/email-aliases-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/email-aliases-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/email-aliases-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/email-aliases-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/email-aliases-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/email-aliases-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/email-aliases-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/email-aliases-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/email-aliases-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/email-aliases-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/email-aliases-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/email-aliases-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/email-aliases-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/email-aliases-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/email-aliases-plugin/deployments", + "created_at": "2016-11-15T15:16:46Z", + "updated_at": "2016-11-16T04:15:46Z", + "pushed_at": "2016-11-15T00:06:05Z", + "git_url": "git://github.com/jenkinsci/email-aliases-plugin.git", + "ssh_url": "git@github.com:jenkinsci/email-aliases-plugin.git", + "clone_url": "https://github.com/jenkinsci/email-aliases-plugin.git", + "svn_url": "https://github.com/jenkinsci/email-aliases-plugin", + "homepage": null, + "size": 36, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 73847312, + "node_id": "MDEwOlJlcG9zaXRvcnk3Mzg0NzMxMg==", + "name": "security-inspector-plugin", + "full_name": "jenkinsci/security-inspector-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/security-inspector-plugin", + "description": "The plugin allows checking user permissions for particular jobs and nodes and building reports", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/security-inspector-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/security-inspector-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/security-inspector-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/security-inspector-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/security-inspector-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/security-inspector-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/security-inspector-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/security-inspector-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/security-inspector-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/security-inspector-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/security-inspector-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/security-inspector-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/security-inspector-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/security-inspector-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/security-inspector-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/security-inspector-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/security-inspector-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/security-inspector-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/security-inspector-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/security-inspector-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/security-inspector-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/security-inspector-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/security-inspector-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/security-inspector-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/security-inspector-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/security-inspector-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/security-inspector-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/security-inspector-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/security-inspector-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/security-inspector-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/security-inspector-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/security-inspector-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/security-inspector-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/security-inspector-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/security-inspector-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/security-inspector-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/security-inspector-plugin/deployments", + "created_at": "2016-11-15T19:21:01Z", + "updated_at": "2019-07-23T07:31:54Z", + "pushed_at": "2018-10-10T12:06:14Z", + "git_url": "git://github.com/jenkinsci/security-inspector-plugin.git", + "ssh_url": "git@github.com:jenkinsci/security-inspector-plugin.git", + "clone_url": "https://github.com/jenkinsci/security-inspector-plugin.git", + "svn_url": "https://github.com/jenkinsci/security-inspector-plugin", + "homepage": "https://plugins.jenkins.io/security-inspector", + "size": 679, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 74379390, + "node_id": "MDEwOlJlcG9zaXRvcnk3NDM3OTM5MA==", + "name": "vectorcast-execution-plugin", + "full_name": "jenkinsci/vectorcast-execution-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/vectorcast-execution-plugin", + "description": "VectorCAST Jenkins integration", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/vectorcast-execution-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/vectorcast-execution-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/vectorcast-execution-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/vectorcast-execution-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/vectorcast-execution-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/vectorcast-execution-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/vectorcast-execution-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/vectorcast-execution-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/vectorcast-execution-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/vectorcast-execution-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/vectorcast-execution-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/vectorcast-execution-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/vectorcast-execution-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/vectorcast-execution-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/vectorcast-execution-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/vectorcast-execution-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/vectorcast-execution-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/vectorcast-execution-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/vectorcast-execution-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/vectorcast-execution-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/vectorcast-execution-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/vectorcast-execution-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/vectorcast-execution-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/vectorcast-execution-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/vectorcast-execution-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/vectorcast-execution-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/vectorcast-execution-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/vectorcast-execution-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/vectorcast-execution-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/vectorcast-execution-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/vectorcast-execution-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/vectorcast-execution-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/vectorcast-execution-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/vectorcast-execution-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/vectorcast-execution-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/vectorcast-execution-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/vectorcast-execution-plugin/deployments", + "created_at": "2016-11-21T15:49:53Z", + "updated_at": "2019-10-07T17:57:38Z", + "pushed_at": "2019-10-15T13:52:50Z", + "git_url": "git://github.com/jenkinsci/vectorcast-execution-plugin.git", + "ssh_url": "git@github.com:jenkinsci/vectorcast-execution-plugin.git", + "clone_url": "https://github.com/jenkinsci/vectorcast-execution-plugin.git", + "svn_url": "https://github.com/jenkinsci/vectorcast-execution-plugin", + "homepage": null, + "size": 1507, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Python", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 5, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 74411305, + "node_id": "MDEwOlJlcG9zaXRvcnk3NDQxMTMwNQ==", + "name": "minio-storage-plugin", + "full_name": "jenkinsci/minio-storage-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/minio-storage-plugin", + "description": "This is a simple Jenkins plugin that lets you upload Jenkins artifacts to a Minio Server", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/minio-storage-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/minio-storage-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/minio-storage-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/minio-storage-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/minio-storage-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/minio-storage-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/minio-storage-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/minio-storage-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/minio-storage-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/minio-storage-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/minio-storage-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/minio-storage-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/minio-storage-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/minio-storage-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/minio-storage-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/minio-storage-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/minio-storage-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/minio-storage-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/minio-storage-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/minio-storage-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/minio-storage-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/minio-storage-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/minio-storage-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/minio-storage-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/minio-storage-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/minio-storage-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/minio-storage-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/minio-storage-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/minio-storage-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/minio-storage-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/minio-storage-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/minio-storage-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/minio-storage-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/minio-storage-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/minio-storage-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/minio-storage-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/minio-storage-plugin/deployments", + "created_at": "2016-11-21T22:25:29Z", + "updated_at": "2019-01-14T11:46:10Z", + "pushed_at": "2018-06-16T13:31:12Z", + "git_url": "git://github.com/jenkinsci/minio-storage-plugin.git", + "ssh_url": "git@github.com:jenkinsci/minio-storage-plugin.git", + "clone_url": "https://github.com/jenkinsci/minio-storage-plugin.git", + "svn_url": "https://github.com/jenkinsci/minio-storage-plugin", + "homepage": null, + "size": 40, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 5, + "open_issues": 0, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 75092020, + "node_id": "MDEwOlJlcG9zaXRvcnk3NTA5MjAyMA==", + "name": "pipeline-githubnotify-step-plugin", + "full_name": "jenkinsci/pipeline-githubnotify-step-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pipeline-githubnotify-step-plugin", + "description": "A pipeline step to notify a status for any GitHub commit", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/pipeline-githubnotify-step-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pipeline-githubnotify-step-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pipeline-githubnotify-step-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pipeline-githubnotify-step-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pipeline-githubnotify-step-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pipeline-githubnotify-step-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pipeline-githubnotify-step-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pipeline-githubnotify-step-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pipeline-githubnotify-step-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pipeline-githubnotify-step-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pipeline-githubnotify-step-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pipeline-githubnotify-step-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pipeline-githubnotify-step-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pipeline-githubnotify-step-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pipeline-githubnotify-step-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pipeline-githubnotify-step-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pipeline-githubnotify-step-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pipeline-githubnotify-step-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pipeline-githubnotify-step-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pipeline-githubnotify-step-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pipeline-githubnotify-step-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pipeline-githubnotify-step-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pipeline-githubnotify-step-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pipeline-githubnotify-step-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pipeline-githubnotify-step-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pipeline-githubnotify-step-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pipeline-githubnotify-step-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pipeline-githubnotify-step-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pipeline-githubnotify-step-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pipeline-githubnotify-step-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pipeline-githubnotify-step-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pipeline-githubnotify-step-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pipeline-githubnotify-step-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pipeline-githubnotify-step-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pipeline-githubnotify-step-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pipeline-githubnotify-step-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pipeline-githubnotify-step-plugin/deployments", + "created_at": "2016-11-29T15:00:43Z", + "updated_at": "2019-10-23T22:51:45Z", + "pushed_at": "2019-09-16T18:12:34Z", + "git_url": "git://github.com/jenkinsci/pipeline-githubnotify-step-plugin.git", + "ssh_url": "git@github.com:jenkinsci/pipeline-githubnotify-step-plugin.git", + "clone_url": "https://github.com/jenkinsci/pipeline-githubnotify-step-plugin.git", + "svn_url": "https://github.com/jenkinsci/pipeline-githubnotify-step-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Pipeline+Githubnotify+Step+Plugin", + "size": 65, + "stargazers_count": 20, + "watchers_count": 20, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 21, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 5, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 21, + "open_issues": 5, + "watchers": 20, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 75201394, + "node_id": "MDEwOlJlcG9zaXRvcnk3NTIwMTM5NA==", + "name": "hello-world-scala-plugin", + "full_name": "jenkinsci/hello-world-scala-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/hello-world-scala-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/hello-world-scala-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/hello-world-scala-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/hello-world-scala-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/hello-world-scala-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/hello-world-scala-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/hello-world-scala-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/hello-world-scala-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/hello-world-scala-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/hello-world-scala-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/hello-world-scala-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/hello-world-scala-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/hello-world-scala-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/hello-world-scala-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/hello-world-scala-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/hello-world-scala-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/hello-world-scala-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/hello-world-scala-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/hello-world-scala-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/hello-world-scala-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/hello-world-scala-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/hello-world-scala-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/hello-world-scala-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/hello-world-scala-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/hello-world-scala-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/hello-world-scala-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/hello-world-scala-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/hello-world-scala-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/hello-world-scala-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/hello-world-scala-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/hello-world-scala-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/hello-world-scala-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/hello-world-scala-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/hello-world-scala-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/hello-world-scala-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/hello-world-scala-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/hello-world-scala-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/hello-world-scala-plugin/deployments", + "created_at": "2016-11-30T15:43:20Z", + "updated_at": "2019-04-02T23:06:58Z", + "pushed_at": "2017-04-27T10:15:06Z", + "git_url": "git://github.com/jenkinsci/hello-world-scala-plugin.git", + "ssh_url": "git@github.com:jenkinsci/hello-world-scala-plugin.git", + "clone_url": "https://github.com/jenkinsci/hello-world-scala-plugin.git", + "svn_url": "https://github.com/jenkinsci/hello-world-scala-plugin", + "homepage": null, + "size": 110, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Scala", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 75201615, + "node_id": "MDEwOlJlcG9zaXRvcnk3NTIwMTYxNQ==", + "name": "onesky-plugin", + "full_name": "jenkinsci/onesky-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/onesky-plugin", + "description": "A Jenkins plugin to ease the process of keeping a project's translation resources in sync when using the onesky cloud solution to localization workflow.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/onesky-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/onesky-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/onesky-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/onesky-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/onesky-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/onesky-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/onesky-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/onesky-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/onesky-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/onesky-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/onesky-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/onesky-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/onesky-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/onesky-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/onesky-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/onesky-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/onesky-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/onesky-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/onesky-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/onesky-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/onesky-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/onesky-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/onesky-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/onesky-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/onesky-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/onesky-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/onesky-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/onesky-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/onesky-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/onesky-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/onesky-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/onesky-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/onesky-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/onesky-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/onesky-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/onesky-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/onesky-plugin/deployments", + "created_at": "2016-11-30T15:45:45Z", + "updated_at": "2016-12-01T10:51:03Z", + "pushed_at": "2016-12-01T11:18:38Z", + "git_url": "git://github.com/jenkinsci/onesky-plugin.git", + "ssh_url": "git@github.com:jenkinsci/onesky-plugin.git", + "clone_url": "https://github.com/jenkinsci/onesky-plugin.git", + "svn_url": "https://github.com/jenkinsci/onesky-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Onesky+Plugin", + "size": 53, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 75338923, + "node_id": "MDEwOlJlcG9zaXRvcnk3NTMzODkyMw==", + "name": "testrail-plugin", + "full_name": "jenkinsci/testrail-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/testrail-plugin", + "description": "Integrate test results from Jenkins into TestRail", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/testrail-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/testrail-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/testrail-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/testrail-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/testrail-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/testrail-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/testrail-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/testrail-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/testrail-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/testrail-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/testrail-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/testrail-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/testrail-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/testrail-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/testrail-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/testrail-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/testrail-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/testrail-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/testrail-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/testrail-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/testrail-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/testrail-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/testrail-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/testrail-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/testrail-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/testrail-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/testrail-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/testrail-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/testrail-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/testrail-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/testrail-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/testrail-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/testrail-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/testrail-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/testrail-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/testrail-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/testrail-plugin/deployments", + "created_at": "2016-12-01T22:36:11Z", + "updated_at": "2019-10-21T12:02:33Z", + "pushed_at": "2019-10-03T22:39:32Z", + "git_url": "git://github.com/jenkinsci/testrail-plugin.git", + "ssh_url": "git@github.com:jenkinsci/testrail-plugin.git", + "clone_url": "https://github.com/jenkinsci/testrail-plugin.git", + "svn_url": "https://github.com/jenkinsci/testrail-plugin", + "homepage": null, + "size": 204, + "stargazers_count": 35, + "watchers_count": 35, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 28, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 12, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 28, + "open_issues": 12, + "watchers": 35, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 75640689, + "node_id": "MDEwOlJlcG9zaXRvcnk3NTY0MDY4OQ==", + "name": "kanboard-plugin", + "full_name": "jenkinsci/kanboard-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/kanboard-plugin", + "description": "A Jenkins plugin that allows to create or update a Kanboard task as a post-build action, trigger a build when a task is created or moved, and fetch a task and its attachments as a build step.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/kanboard-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/kanboard-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/kanboard-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/kanboard-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/kanboard-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/kanboard-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/kanboard-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/kanboard-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/kanboard-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/kanboard-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/kanboard-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/kanboard-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/kanboard-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/kanboard-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/kanboard-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/kanboard-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/kanboard-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/kanboard-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/kanboard-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/kanboard-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/kanboard-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/kanboard-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/kanboard-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/kanboard-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/kanboard-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/kanboard-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/kanboard-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/kanboard-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/kanboard-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/kanboard-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/kanboard-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/kanboard-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/kanboard-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/kanboard-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/kanboard-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/kanboard-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/kanboard-plugin/deployments", + "created_at": "2016-12-05T15:48:41Z", + "updated_at": "2018-12-07T16:25:31Z", + "pushed_at": "2018-09-25T14:37:35Z", + "git_url": "git://github.com/jenkinsci/kanboard-plugin.git", + "ssh_url": "git@github.com:jenkinsci/kanboard-plugin.git", + "clone_url": "https://github.com/jenkinsci/kanboard-plugin.git", + "svn_url": "https://github.com/jenkinsci/kanboard-plugin", + "homepage": "", + "size": 122, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "agpl-3.0", + "name": "GNU Affero General Public License v3.0", + "spdx_id": "AGPL-3.0", + "url": "https://api.github.com/licenses/agpl-3.0", + "node_id": "MDc6TGljZW5zZTE=" + }, + "forks": 2, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 75650270, + "node_id": "MDEwOlJlcG9zaXRvcnk3NTY1MDI3MA==", + "name": "ibm-asoc-plugin", + "full_name": "jenkinsci/ibm-asoc-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/ibm-asoc-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/ibm-asoc-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/ibm-asoc-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/ibm-asoc-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/ibm-asoc-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/ibm-asoc-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/ibm-asoc-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/ibm-asoc-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/ibm-asoc-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/ibm-asoc-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/ibm-asoc-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/ibm-asoc-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/ibm-asoc-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/ibm-asoc-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/ibm-asoc-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/ibm-asoc-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/ibm-asoc-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/ibm-asoc-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/ibm-asoc-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/ibm-asoc-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/ibm-asoc-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/ibm-asoc-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/ibm-asoc-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/ibm-asoc-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/ibm-asoc-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/ibm-asoc-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/ibm-asoc-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/ibm-asoc-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/ibm-asoc-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/ibm-asoc-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/ibm-asoc-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/ibm-asoc-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/ibm-asoc-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/ibm-asoc-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/ibm-asoc-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/ibm-asoc-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/ibm-asoc-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/ibm-asoc-plugin/deployments", + "created_at": "2016-12-05T17:37:13Z", + "updated_at": "2019-10-15T15:41:55Z", + "pushed_at": "2019-10-25T01:22:52Z", + "git_url": "git://github.com/jenkinsci/ibm-asoc-plugin.git", + "ssh_url": "git@github.com:jenkinsci/ibm-asoc-plugin.git", + "clone_url": "https://github.com/jenkinsci/ibm-asoc-plugin.git", + "svn_url": "https://github.com/jenkinsci/ibm-asoc-plugin", + "homepage": null, + "size": 444, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 9, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 9, + "open_issues": 2, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 75665906, + "node_id": "MDEwOlJlcG9zaXRvcnk3NTY2NTkwNg==", + "name": "azure-vm-agents-plugin", + "full_name": "jenkinsci/azure-vm-agents-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/azure-vm-agents-plugin", + "description": "This repo is for azure vm agents plugin for jenkins. Azure devops CICD is the team which owns it for now", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/azure-vm-agents-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/azure-vm-agents-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/azure-vm-agents-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/azure-vm-agents-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/azure-vm-agents-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/azure-vm-agents-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/azure-vm-agents-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/azure-vm-agents-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/azure-vm-agents-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/azure-vm-agents-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/azure-vm-agents-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/azure-vm-agents-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/azure-vm-agents-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/azure-vm-agents-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/azure-vm-agents-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/azure-vm-agents-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/azure-vm-agents-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/azure-vm-agents-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/azure-vm-agents-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/azure-vm-agents-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/azure-vm-agents-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/azure-vm-agents-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/azure-vm-agents-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/azure-vm-agents-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/azure-vm-agents-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/azure-vm-agents-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/azure-vm-agents-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/azure-vm-agents-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/azure-vm-agents-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/azure-vm-agents-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/azure-vm-agents-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/azure-vm-agents-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/azure-vm-agents-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/azure-vm-agents-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/azure-vm-agents-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/azure-vm-agents-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/azure-vm-agents-plugin/deployments", + "created_at": "2016-12-05T21:03:04Z", + "updated_at": "2019-09-18T07:09:01Z", + "pushed_at": "2019-09-18T07:08:59Z", + "git_url": "git://github.com/jenkinsci/azure-vm-agents-plugin.git", + "ssh_url": "git@github.com:jenkinsci/azure-vm-agents-plugin.git", + "clone_url": "https://github.com/jenkinsci/azure-vm-agents-plugin.git", + "svn_url": "https://github.com/jenkinsci/azure-vm-agents-plugin", + "homepage": null, + "size": 1778, + "stargazers_count": 28, + "watchers_count": 28, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 50, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 4, + "license": null, + "forks": 50, + "open_issues": 4, + "watchers": 28, + "default_branch": "dev", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 75751581, + "node_id": "MDEwOlJlcG9zaXRvcnk3NTc1MTU4MQ==", + "name": "jms-messaging-plugin", + "full_name": "jenkinsci/jms-messaging-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jms-messaging-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jms-messaging-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/jms-messaging-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jms-messaging-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jms-messaging-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jms-messaging-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jms-messaging-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jms-messaging-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jms-messaging-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jms-messaging-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jms-messaging-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jms-messaging-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jms-messaging-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jms-messaging-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jms-messaging-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jms-messaging-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jms-messaging-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jms-messaging-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jms-messaging-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jms-messaging-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jms-messaging-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jms-messaging-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jms-messaging-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jms-messaging-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jms-messaging-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jms-messaging-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jms-messaging-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jms-messaging-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jms-messaging-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jms-messaging-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jms-messaging-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jms-messaging-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jms-messaging-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jms-messaging-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jms-messaging-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jms-messaging-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jms-messaging-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jms-messaging-plugin/deployments", + "created_at": "2016-12-06T16:48:29Z", + "updated_at": "2019-10-16T14:40:46Z", + "pushed_at": "2019-10-22T15:54:06Z", + "git_url": "git://github.com/jenkinsci/jms-messaging-plugin.git", + "ssh_url": "git@github.com:jenkinsci/jms-messaging-plugin.git", + "clone_url": "https://github.com/jenkinsci/jms-messaging-plugin.git", + "svn_url": "https://github.com/jenkinsci/jms-messaging-plugin", + "homepage": null, + "size": 828, + "stargazers_count": 6, + "watchers_count": 6, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 18, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 14, + "license": null, + "forks": 18, + "open_issues": 14, + "watchers": 6, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 78240403, + "node_id": "MDEwOlJlcG9zaXRvcnk3ODI0MDQwMw==", + "name": "blueocean-rfc", + "full_name": "jenkinsci/blueocean-rfc", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/blueocean-rfc", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/blueocean-rfc", + "forks_url": "https://api.github.com/repos/jenkinsci/blueocean-rfc/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/blueocean-rfc/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/blueocean-rfc/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/blueocean-rfc/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/blueocean-rfc/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/blueocean-rfc/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/blueocean-rfc/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/blueocean-rfc/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/blueocean-rfc/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/blueocean-rfc/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/blueocean-rfc/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/blueocean-rfc/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/blueocean-rfc/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/blueocean-rfc/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/blueocean-rfc/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/blueocean-rfc/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/blueocean-rfc/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/blueocean-rfc/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/blueocean-rfc/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/blueocean-rfc/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/blueocean-rfc/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/blueocean-rfc/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/blueocean-rfc/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/blueocean-rfc/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/blueocean-rfc/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/blueocean-rfc/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/blueocean-rfc/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/blueocean-rfc/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/blueocean-rfc/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/blueocean-rfc/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/blueocean-rfc/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/blueocean-rfc/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/blueocean-rfc/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/blueocean-rfc/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/blueocean-rfc/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/blueocean-rfc/deployments", + "created_at": "2017-01-06T21:31:53Z", + "updated_at": "2017-01-07T10:22:58Z", + "pushed_at": "2017-01-03T11:50:22Z", + "git_url": "git://github.com/jenkinsci/blueocean-rfc.git", + "ssh_url": "git@github.com:jenkinsci/blueocean-rfc.git", + "clone_url": "https://github.com/jenkinsci/blueocean-rfc.git", + "svn_url": "https://github.com/jenkinsci/blueocean-rfc", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 79156210, + "node_id": "MDEwOlJlcG9zaXRvcnk3OTE1NjIxMA==", + "name": "jobcacher-plugin", + "full_name": "jenkinsci/jobcacher-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jobcacher-plugin", + "description": "Jenkins plugin that improves build performance for transient slaves by caching files", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jobcacher-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/jobcacher-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jobcacher-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jobcacher-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jobcacher-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jobcacher-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jobcacher-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jobcacher-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jobcacher-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jobcacher-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jobcacher-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jobcacher-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jobcacher-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jobcacher-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jobcacher-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jobcacher-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jobcacher-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jobcacher-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jobcacher-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jobcacher-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jobcacher-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jobcacher-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jobcacher-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jobcacher-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jobcacher-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jobcacher-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jobcacher-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jobcacher-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jobcacher-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jobcacher-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jobcacher-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jobcacher-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jobcacher-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jobcacher-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jobcacher-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jobcacher-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jobcacher-plugin/deployments", + "created_at": "2017-01-16T20:22:58Z", + "updated_at": "2019-10-21T05:31:57Z", + "pushed_at": "2019-10-08T12:10:57Z", + "git_url": "git://github.com/jenkinsci/jobcacher-plugin.git", + "ssh_url": "git@github.com:jenkinsci/jobcacher-plugin.git", + "clone_url": "https://github.com/jenkinsci/jobcacher-plugin.git", + "svn_url": "https://github.com/jenkinsci/jobcacher-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Job+Cacher+Plugin", + "size": 98, + "stargazers_count": 10, + "watchers_count": 10, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 11, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 4, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 11, + "open_issues": 4, + "watchers": 10, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 79156336, + "node_id": "MDEwOlJlcG9zaXRvcnk3OTE1NjMzNg==", + "name": "js-storage", + "full_name": "jenkinsci/js-storage", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/js-storage", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/js-storage", + "forks_url": "https://api.github.com/repos/jenkinsci/js-storage/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/js-storage/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/js-storage/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/js-storage/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/js-storage/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/js-storage/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/js-storage/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/js-storage/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/js-storage/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/js-storage/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/js-storage/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/js-storage/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/js-storage/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/js-storage/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/js-storage/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/js-storage/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/js-storage/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/js-storage/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/js-storage/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/js-storage/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/js-storage/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/js-storage/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/js-storage/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/js-storage/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/js-storage/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/js-storage/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/js-storage/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/js-storage/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/js-storage/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/js-storage/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/js-storage/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/js-storage/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/js-storage/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/js-storage/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/js-storage/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/js-storage/deployments", + "created_at": "2017-01-16T20:24:27Z", + "updated_at": "2017-04-17T21:19:52Z", + "pushed_at": "2017-05-16T20:33:50Z", + "git_url": "git://github.com/jenkinsci/js-storage.git", + "ssh_url": "git@github.com:jenkinsci/js-storage.git", + "clone_url": "https://github.com/jenkinsci/js-storage.git", + "svn_url": "https://github.com/jenkinsci/js-storage", + "homepage": null, + "size": 424, + "stargazers_count": 1, + "watchers_count": 1, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": true, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 3, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 79156426, + "node_id": "MDEwOlJlcG9zaXRvcnk3OTE1NjQyNg==", + "name": "aws-codebuild-plugin", + "full_name": "jenkinsci/aws-codebuild-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/aws-codebuild-plugin", + "description": "A plugin used to allow Jenkins users to run a build using AWS CodeBuild.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/aws-codebuild-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/aws-codebuild-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/aws-codebuild-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/aws-codebuild-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/aws-codebuild-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/aws-codebuild-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/aws-codebuild-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/aws-codebuild-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/aws-codebuild-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/aws-codebuild-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/aws-codebuild-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/aws-codebuild-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/aws-codebuild-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/aws-codebuild-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/aws-codebuild-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/aws-codebuild-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/aws-codebuild-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/aws-codebuild-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/aws-codebuild-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/aws-codebuild-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/aws-codebuild-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/aws-codebuild-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/aws-codebuild-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/aws-codebuild-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/aws-codebuild-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/aws-codebuild-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/aws-codebuild-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/aws-codebuild-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/aws-codebuild-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/aws-codebuild-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/aws-codebuild-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/aws-codebuild-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/aws-codebuild-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/aws-codebuild-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/aws-codebuild-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/aws-codebuild-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/aws-codebuild-plugin/deployments", + "created_at": "2017-01-16T20:25:40Z", + "updated_at": "2019-10-11T21:01:49Z", + "pushed_at": "2019-10-11T21:01:47Z", + "git_url": "git://github.com/jenkinsci/aws-codebuild-plugin.git", + "ssh_url": "git@github.com:jenkinsci/aws-codebuild-plugin.git", + "clone_url": "https://github.com/jenkinsci/aws-codebuild-plugin.git", + "svn_url": "https://github.com/jenkinsci/aws-codebuild-plugin", + "homepage": null, + "size": 449, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 17, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 17, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 79156469, + "node_id": "MDEwOlJlcG9zaXRvcnk3OTE1NjQ2OQ==", + "name": "monitor-pro-plugin", + "full_name": "jenkinsci/monitor-pro-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/monitor-pro-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/monitor-pro-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/monitor-pro-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/monitor-pro-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/monitor-pro-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/monitor-pro-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/monitor-pro-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/monitor-pro-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/monitor-pro-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/monitor-pro-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/monitor-pro-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/monitor-pro-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/monitor-pro-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/monitor-pro-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/monitor-pro-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/monitor-pro-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/monitor-pro-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/monitor-pro-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/monitor-pro-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/monitor-pro-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/monitor-pro-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/monitor-pro-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/monitor-pro-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/monitor-pro-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/monitor-pro-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/monitor-pro-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/monitor-pro-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/monitor-pro-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/monitor-pro-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/monitor-pro-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/monitor-pro-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/monitor-pro-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/monitor-pro-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/monitor-pro-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/monitor-pro-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/monitor-pro-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/monitor-pro-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/monitor-pro-plugin/deployments", + "created_at": "2017-01-16T20:26:20Z", + "updated_at": "2018-06-28T10:36:41Z", + "pushed_at": "2018-06-28T10:36:39Z", + "git_url": "git://github.com/jenkinsci/monitor-pro-plugin.git", + "ssh_url": "git@github.com:jenkinsci/monitor-pro-plugin.git", + "clone_url": "https://github.com/jenkinsci/monitor-pro-plugin.git", + "svn_url": "https://github.com/jenkinsci/monitor-pro-plugin", + "homepage": null, + "size": 7872, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 79156527, + "node_id": "MDEwOlJlcG9zaXRvcnk3OTE1NjUyNw==", + "name": "block-build-final-project-plugin", + "full_name": "jenkinsci/block-build-final-project-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/block-build-final-project-plugin", + "description": "Block Build Final Project Plugin for Jenkins.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/block-build-final-project-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/block-build-final-project-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/block-build-final-project-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/block-build-final-project-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/block-build-final-project-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/block-build-final-project-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/block-build-final-project-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/block-build-final-project-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/block-build-final-project-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/block-build-final-project-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/block-build-final-project-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/block-build-final-project-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/block-build-final-project-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/block-build-final-project-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/block-build-final-project-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/block-build-final-project-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/block-build-final-project-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/block-build-final-project-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/block-build-final-project-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/block-build-final-project-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/block-build-final-project-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/block-build-final-project-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/block-build-final-project-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/block-build-final-project-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/block-build-final-project-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/block-build-final-project-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/block-build-final-project-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/block-build-final-project-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/block-build-final-project-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/block-build-final-project-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/block-build-final-project-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/block-build-final-project-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/block-build-final-project-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/block-build-final-project-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/block-build-final-project-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/block-build-final-project-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/block-build-final-project-plugin/deployments", + "created_at": "2017-01-16T20:27:14Z", + "updated_at": "2017-01-17T02:58:19Z", + "pushed_at": "2017-01-21T14:39:53Z", + "git_url": "git://github.com/jenkinsci/block-build-final-project-plugin.git", + "ssh_url": "git@github.com:jenkinsci/block-build-final-project-plugin.git", + "clone_url": "https://github.com/jenkinsci/block-build-final-project-plugin.git", + "svn_url": "https://github.com/jenkinsci/block-build-final-project-plugin", + "homepage": null, + "size": 176, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 79159993, + "node_id": "MDEwOlJlcG9zaXRvcnk3OTE1OTk5Mw==", + "name": "github-pr-comment-build-plugin", + "full_name": "jenkinsci/github-pr-comment-build-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/github-pr-comment-build-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/github-pr-comment-build-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/github-pr-comment-build-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/github-pr-comment-build-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/github-pr-comment-build-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/github-pr-comment-build-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/github-pr-comment-build-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/github-pr-comment-build-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/github-pr-comment-build-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/github-pr-comment-build-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/github-pr-comment-build-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/github-pr-comment-build-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/github-pr-comment-build-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/github-pr-comment-build-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/github-pr-comment-build-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/github-pr-comment-build-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/github-pr-comment-build-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/github-pr-comment-build-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/github-pr-comment-build-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/github-pr-comment-build-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/github-pr-comment-build-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/github-pr-comment-build-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/github-pr-comment-build-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/github-pr-comment-build-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/github-pr-comment-build-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/github-pr-comment-build-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/github-pr-comment-build-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/github-pr-comment-build-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/github-pr-comment-build-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/github-pr-comment-build-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/github-pr-comment-build-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/github-pr-comment-build-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/github-pr-comment-build-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/github-pr-comment-build-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/github-pr-comment-build-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/github-pr-comment-build-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/github-pr-comment-build-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/github-pr-comment-build-plugin/deployments", + "created_at": "2017-01-16T21:13:24Z", + "updated_at": "2019-10-08T17:00:06Z", + "pushed_at": "2019-10-08T17:00:04Z", + "git_url": "git://github.com/jenkinsci/github-pr-comment-build-plugin.git", + "ssh_url": "git@github.com:jenkinsci/github-pr-comment-build-plugin.git", + "clone_url": "https://github.com/jenkinsci/github-pr-comment-build-plugin.git", + "svn_url": "https://github.com/jenkinsci/github-pr-comment-build-plugin", + "homepage": "https://plugins.jenkins.io/github-pr-comment-build", + "size": 23, + "stargazers_count": 7, + "watchers_count": 7, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 8, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 4, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 8, + "open_issues": 4, + "watchers": 7, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 79162032, + "node_id": "MDEwOlJlcG9zaXRvcnk3OTE2MjAzMg==", + "name": "android-signing-plugin", + "full_name": "jenkinsci/android-signing-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/android-signing-plugin", + "description": "Jenkins plugin for signing Android APKs", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/android-signing-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/android-signing-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/android-signing-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/android-signing-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/android-signing-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/android-signing-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/android-signing-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/android-signing-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/android-signing-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/android-signing-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/android-signing-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/android-signing-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/android-signing-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/android-signing-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/android-signing-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/android-signing-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/android-signing-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/android-signing-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/android-signing-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/android-signing-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/android-signing-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/android-signing-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/android-signing-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/android-signing-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/android-signing-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/android-signing-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/android-signing-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/android-signing-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/android-signing-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/android-signing-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/android-signing-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/android-signing-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/android-signing-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/android-signing-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/android-signing-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/android-signing-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/android-signing-plugin/deployments", + "created_at": "2017-01-16T21:40:12Z", + "updated_at": "2019-09-28T18:47:51Z", + "pushed_at": "2019-10-08T11:29:30Z", + "git_url": "git://github.com/jenkinsci/android-signing-plugin.git", + "ssh_url": "git@github.com:jenkinsci/android-signing-plugin.git", + "clone_url": "https://github.com/jenkinsci/android-signing-plugin.git", + "svn_url": "https://github.com/jenkinsci/android-signing-plugin", + "homepage": "", + "size": 4101, + "stargazers_count": 27, + "watchers_count": 27, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 7, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 7, + "open_issues": 1, + "watchers": 27, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 79162377, + "node_id": "MDEwOlJlcG9zaXRvcnk3OTE2MjM3Nw==", + "name": "hubot-steps-plugin", + "full_name": "jenkinsci/hubot-steps-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/hubot-steps-plugin", + "description": "Jenkins pipeline steps for integration with Hubot.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/hubot-steps-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/hubot-steps-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/hubot-steps-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/hubot-steps-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/hubot-steps-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/hubot-steps-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/hubot-steps-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/hubot-steps-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/hubot-steps-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/hubot-steps-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/hubot-steps-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/hubot-steps-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/hubot-steps-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/hubot-steps-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/hubot-steps-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/hubot-steps-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/hubot-steps-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/hubot-steps-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/hubot-steps-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/hubot-steps-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/hubot-steps-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/hubot-steps-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/hubot-steps-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/hubot-steps-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/hubot-steps-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/hubot-steps-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/hubot-steps-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/hubot-steps-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/hubot-steps-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/hubot-steps-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/hubot-steps-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/hubot-steps-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/hubot-steps-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/hubot-steps-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/hubot-steps-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/hubot-steps-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/hubot-steps-plugin/deployments", + "created_at": "2017-01-16T21:45:30Z", + "updated_at": "2019-10-08T16:05:38Z", + "pushed_at": "2019-10-08T16:05:36Z", + "git_url": "git://github.com/jenkinsci/hubot-steps-plugin.git", + "ssh_url": "git@github.com:jenkinsci/hubot-steps-plugin.git", + "clone_url": "https://github.com/jenkinsci/hubot-steps-plugin.git", + "svn_url": "https://github.com/jenkinsci/hubot-steps-plugin", + "homepage": "https://plugins.jenkins.io/hubot-steps", + "size": 2717, + "stargazers_count": 47, + "watchers_count": 47, + "language": "Java", + "has_issues": false, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 26, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 26, + "open_issues": 1, + "watchers": 47, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 79239118, + "node_id": "MDEwOlJlcG9zaXRvcnk3OTIzOTExOA==", + "name": "openshift-client-plugin", + "full_name": "jenkinsci/openshift-client-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/openshift-client-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/openshift-client-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/openshift-client-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/openshift-client-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/openshift-client-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/openshift-client-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/openshift-client-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/openshift-client-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/openshift-client-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/openshift-client-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/openshift-client-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/openshift-client-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/openshift-client-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/openshift-client-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/openshift-client-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/openshift-client-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/openshift-client-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/openshift-client-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/openshift-client-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/openshift-client-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/openshift-client-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/openshift-client-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/openshift-client-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/openshift-client-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/openshift-client-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/openshift-client-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/openshift-client-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/openshift-client-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/openshift-client-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/openshift-client-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/openshift-client-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/openshift-client-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/openshift-client-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/openshift-client-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/openshift-client-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/openshift-client-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/openshift-client-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/openshift-client-plugin/deployments", + "created_at": "2017-01-17T15:07:16Z", + "updated_at": "2019-10-17T11:55:18Z", + "pushed_at": "2019-08-09T19:16:43Z", + "git_url": "git://github.com/jenkinsci/openshift-client-plugin.git", + "ssh_url": "git@github.com:jenkinsci/openshift-client-plugin.git", + "clone_url": "https://github.com/jenkinsci/openshift-client-plugin.git", + "svn_url": "https://github.com/jenkinsci/openshift-client-plugin", + "homepage": null, + "size": 1783, + "stargazers_count": 12, + "watchers_count": 12, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 4, + "open_issues": 0, + "watchers": 12, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 79239414, + "node_id": "MDEwOlJlcG9zaXRvcnk3OTIzOTQxNA==", + "name": "pipeline-dependency-walker-plugin", + "full_name": "jenkinsci/pipeline-dependency-walker-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pipeline-dependency-walker-plugin", + "description": "Jenkins plugin, pipeline step, that allows you to perform given pipeline step(s) on a maven job and all its linked jobs.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/pipeline-dependency-walker-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pipeline-dependency-walker-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pipeline-dependency-walker-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pipeline-dependency-walker-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pipeline-dependency-walker-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pipeline-dependency-walker-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pipeline-dependency-walker-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pipeline-dependency-walker-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pipeline-dependency-walker-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pipeline-dependency-walker-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pipeline-dependency-walker-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pipeline-dependency-walker-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pipeline-dependency-walker-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pipeline-dependency-walker-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pipeline-dependency-walker-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pipeline-dependency-walker-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pipeline-dependency-walker-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pipeline-dependency-walker-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pipeline-dependency-walker-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pipeline-dependency-walker-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pipeline-dependency-walker-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pipeline-dependency-walker-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pipeline-dependency-walker-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pipeline-dependency-walker-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pipeline-dependency-walker-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pipeline-dependency-walker-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pipeline-dependency-walker-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pipeline-dependency-walker-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pipeline-dependency-walker-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pipeline-dependency-walker-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pipeline-dependency-walker-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pipeline-dependency-walker-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pipeline-dependency-walker-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pipeline-dependency-walker-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pipeline-dependency-walker-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pipeline-dependency-walker-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pipeline-dependency-walker-plugin/deployments", + "created_at": "2017-01-17T15:10:09Z", + "updated_at": "2018-09-21T08:15:57Z", + "pushed_at": "2018-06-08T07:08:20Z", + "git_url": "git://github.com/jenkinsci/pipeline-dependency-walker-plugin.git", + "ssh_url": "git@github.com:jenkinsci/pipeline-dependency-walker-plugin.git", + "clone_url": "https://github.com/jenkinsci/pipeline-dependency-walker-plugin.git", + "svn_url": "https://github.com/jenkinsci/pipeline-dependency-walker-plugin", + "homepage": "", + "size": 52, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 79242340, + "node_id": "MDEwOlJlcG9zaXRvcnk3OTI0MjM0MA==", + "name": "zanata-plugin", + "full_name": "jenkinsci/zanata-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/zanata-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/zanata-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/zanata-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/zanata-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/zanata-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/zanata-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/zanata-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/zanata-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/zanata-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/zanata-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/zanata-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/zanata-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/zanata-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/zanata-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/zanata-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/zanata-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/zanata-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/zanata-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/zanata-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/zanata-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/zanata-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/zanata-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/zanata-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/zanata-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/zanata-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/zanata-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/zanata-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/zanata-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/zanata-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/zanata-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/zanata-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/zanata-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/zanata-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/zanata-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/zanata-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/zanata-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/zanata-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/zanata-plugin/deployments", + "created_at": "2017-01-17T15:38:00Z", + "updated_at": "2018-06-29T01:10:34Z", + "pushed_at": "2017-11-23T02:06:20Z", + "git_url": "git://github.com/jenkinsci/zanata-plugin.git", + "ssh_url": "git@github.com:jenkinsci/zanata-plugin.git", + "clone_url": "https://github.com/jenkinsci/zanata-plugin.git", + "svn_url": "https://github.com/jenkinsci/zanata-plugin", + "homepage": null, + "size": 444, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "lgpl-2.1", + "name": "GNU Lesser General Public License v2.1", + "spdx_id": "LGPL-2.1", + "url": "https://api.github.com/licenses/lgpl-2.1", + "node_id": "MDc6TGljZW5zZTEx" + }, + "forks": 4, + "open_issues": 2, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 79283805, + "node_id": "MDEwOlJlcG9zaXRvcnk3OTI4MzgwNQ==", + "name": "aws-cloudwatch-logs-publisher-plugin", + "full_name": "jenkinsci/aws-cloudwatch-logs-publisher-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/aws-cloudwatch-logs-publisher-plugin", + "description": "Jenkins Plugin to push a build's console log to Amazon AWS CloudWatch Logs service", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/aws-cloudwatch-logs-publisher-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/aws-cloudwatch-logs-publisher-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/aws-cloudwatch-logs-publisher-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/aws-cloudwatch-logs-publisher-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/aws-cloudwatch-logs-publisher-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/aws-cloudwatch-logs-publisher-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/aws-cloudwatch-logs-publisher-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/aws-cloudwatch-logs-publisher-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/aws-cloudwatch-logs-publisher-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/aws-cloudwatch-logs-publisher-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/aws-cloudwatch-logs-publisher-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/aws-cloudwatch-logs-publisher-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/aws-cloudwatch-logs-publisher-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/aws-cloudwatch-logs-publisher-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/aws-cloudwatch-logs-publisher-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/aws-cloudwatch-logs-publisher-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/aws-cloudwatch-logs-publisher-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/aws-cloudwatch-logs-publisher-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/aws-cloudwatch-logs-publisher-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/aws-cloudwatch-logs-publisher-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/aws-cloudwatch-logs-publisher-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/aws-cloudwatch-logs-publisher-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/aws-cloudwatch-logs-publisher-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/aws-cloudwatch-logs-publisher-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/aws-cloudwatch-logs-publisher-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/aws-cloudwatch-logs-publisher-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/aws-cloudwatch-logs-publisher-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/aws-cloudwatch-logs-publisher-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/aws-cloudwatch-logs-publisher-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/aws-cloudwatch-logs-publisher-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/aws-cloudwatch-logs-publisher-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/aws-cloudwatch-logs-publisher-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/aws-cloudwatch-logs-publisher-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/aws-cloudwatch-logs-publisher-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/aws-cloudwatch-logs-publisher-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/aws-cloudwatch-logs-publisher-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/aws-cloudwatch-logs-publisher-plugin/deployments", + "created_at": "2017-01-17T23:37:20Z", + "updated_at": "2019-05-17T03:52:14Z", + "pushed_at": "2018-10-10T19:21:47Z", + "git_url": "git://github.com/jenkinsci/aws-cloudwatch-logs-publisher-plugin.git", + "ssh_url": "git@github.com:jenkinsci/aws-cloudwatch-logs-publisher-plugin.git", + "clone_url": "https://github.com/jenkinsci/aws-cloudwatch-logs-publisher-plugin.git", + "svn_url": "https://github.com/jenkinsci/aws-cloudwatch-logs-publisher-plugin", + "homepage": "", + "size": 74, + "stargazers_count": 6, + "watchers_count": 6, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 8, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 6, + "open_issues": 8, + "watchers": 6, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 79283946, + "node_id": "MDEwOlJlcG9zaXRvcnk3OTI4Mzk0Ng==", + "name": "device-watcher-plugin", + "full_name": "jenkinsci/device-watcher-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/device-watcher-plugin", + "description": "A Jenkins plugin to notify an administrator when an IP Address becomes unreachable", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/device-watcher-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/device-watcher-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/device-watcher-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/device-watcher-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/device-watcher-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/device-watcher-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/device-watcher-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/device-watcher-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/device-watcher-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/device-watcher-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/device-watcher-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/device-watcher-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/device-watcher-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/device-watcher-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/device-watcher-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/device-watcher-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/device-watcher-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/device-watcher-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/device-watcher-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/device-watcher-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/device-watcher-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/device-watcher-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/device-watcher-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/device-watcher-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/device-watcher-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/device-watcher-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/device-watcher-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/device-watcher-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/device-watcher-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/device-watcher-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/device-watcher-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/device-watcher-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/device-watcher-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/device-watcher-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/device-watcher-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/device-watcher-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/device-watcher-plugin/deployments", + "created_at": "2017-01-17T23:39:54Z", + "updated_at": "2017-01-18T11:14:42Z", + "pushed_at": "2017-02-20T10:32:09Z", + "git_url": "git://github.com/jenkinsci/device-watcher-plugin.git", + "ssh_url": "git@github.com:jenkinsci/device-watcher-plugin.git", + "clone_url": "https://github.com/jenkinsci/device-watcher-plugin.git", + "svn_url": "https://github.com/jenkinsci/device-watcher-plugin", + "homepage": "", + "size": 24, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 79283993, + "node_id": "MDEwOlJlcG9zaXRvcnk3OTI4Mzk5Mw==", + "name": "clif-performance-testing-plugin", + "full_name": "jenkinsci/clif-performance-testing-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/clif-performance-testing-plugin", + "description": "CLIF plug-in for Jenkins continuous integration server", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/clif-performance-testing-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/clif-performance-testing-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/clif-performance-testing-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/clif-performance-testing-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/clif-performance-testing-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/clif-performance-testing-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/clif-performance-testing-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/clif-performance-testing-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/clif-performance-testing-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/clif-performance-testing-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/clif-performance-testing-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/clif-performance-testing-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/clif-performance-testing-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/clif-performance-testing-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/clif-performance-testing-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/clif-performance-testing-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/clif-performance-testing-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/clif-performance-testing-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/clif-performance-testing-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/clif-performance-testing-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/clif-performance-testing-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/clif-performance-testing-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/clif-performance-testing-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/clif-performance-testing-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/clif-performance-testing-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/clif-performance-testing-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/clif-performance-testing-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/clif-performance-testing-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/clif-performance-testing-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/clif-performance-testing-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/clif-performance-testing-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/clif-performance-testing-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/clif-performance-testing-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/clif-performance-testing-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/clif-performance-testing-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/clif-performance-testing-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/clif-performance-testing-plugin/deployments", + "created_at": "2017-01-17T23:40:32Z", + "updated_at": "2017-01-20T13:38:47Z", + "pushed_at": "2017-02-03T15:13:00Z", + "git_url": "git://github.com/jenkinsci/clif-performance-testing-plugin.git", + "ssh_url": "git@github.com:jenkinsci/clif-performance-testing-plugin.git", + "clone_url": "https://github.com/jenkinsci/clif-performance-testing-plugin.git", + "svn_url": "https://github.com/jenkinsci/clif-performance-testing-plugin", + "homepage": null, + "size": 429, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "lgpl-3.0", + "name": "GNU Lesser General Public License v3.0", + "spdx_id": "LGPL-3.0", + "url": "https://api.github.com/licenses/lgpl-3.0", + "node_id": "MDc6TGljZW5zZTEy" + }, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 79467802, + "node_id": "MDEwOlJlcG9zaXRvcnk3OTQ2NzgwMg==", + "name": "cctray-xml-plugin", + "full_name": "jenkinsci/cctray-xml-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/cctray-xml-plugin", + "description": "Plugin restoring the cc.xml functionality that used to be in Jenkins core up to version 2.TODO", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/cctray-xml-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/cctray-xml-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/cctray-xml-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/cctray-xml-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/cctray-xml-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/cctray-xml-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/cctray-xml-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/cctray-xml-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/cctray-xml-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/cctray-xml-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/cctray-xml-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/cctray-xml-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/cctray-xml-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/cctray-xml-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/cctray-xml-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/cctray-xml-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/cctray-xml-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/cctray-xml-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/cctray-xml-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/cctray-xml-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/cctray-xml-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/cctray-xml-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/cctray-xml-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/cctray-xml-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/cctray-xml-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/cctray-xml-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/cctray-xml-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/cctray-xml-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/cctray-xml-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/cctray-xml-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/cctray-xml-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/cctray-xml-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/cctray-xml-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/cctray-xml-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/cctray-xml-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/cctray-xml-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/cctray-xml-plugin/deployments", + "created_at": "2017-01-19T15:39:49Z", + "updated_at": "2019-06-30T11:28:42Z", + "pushed_at": "2019-04-16T15:36:34Z", + "git_url": "git://github.com/jenkinsci/cctray-xml-plugin.git", + "ssh_url": "git@github.com:jenkinsci/cctray-xml-plugin.git", + "clone_url": "https://github.com/jenkinsci/cctray-xml-plugin.git", + "svn_url": "https://github.com/jenkinsci/cctray-xml-plugin", + "homepage": null, + "size": 16, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 4, + "open_issues": 1, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 79467908, + "node_id": "MDEwOlJlcG9zaXRvcnk3OTQ2NzkwOA==", + "name": "js-logging", + "full_name": "jenkinsci/js-logging", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/js-logging", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/js-logging", + "forks_url": "https://api.github.com/repos/jenkinsci/js-logging/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/js-logging/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/js-logging/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/js-logging/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/js-logging/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/js-logging/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/js-logging/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/js-logging/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/js-logging/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/js-logging/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/js-logging/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/js-logging/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/js-logging/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/js-logging/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/js-logging/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/js-logging/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/js-logging/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/js-logging/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/js-logging/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/js-logging/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/js-logging/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/js-logging/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/js-logging/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/js-logging/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/js-logging/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/js-logging/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/js-logging/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/js-logging/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/js-logging/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/js-logging/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/js-logging/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/js-logging/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/js-logging/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/js-logging/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/js-logging/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/js-logging/deployments", + "created_at": "2017-01-19T15:41:04Z", + "updated_at": "2017-01-19T15:41:12Z", + "pushed_at": "2017-01-19T12:44:32Z", + "git_url": "git://github.com/jenkinsci/js-logging.git", + "ssh_url": "git@github.com:jenkinsci/js-logging.git", + "clone_url": "https://github.com/jenkinsci/js-logging.git", + "svn_url": "https://github.com/jenkinsci/js-logging", + "homepage": null, + "size": 1103, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": true, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 79572047, + "node_id": "MDEwOlJlcG9zaXRvcnk3OTU3MjA0Nw==", + "name": "report-info-plugin", + "full_name": "jenkinsci/report-info-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/report-info-plugin", + "description": "This Jenkins plugin adds a view with some information from Surefire, PMD, Findbugs and Checkstyle reports.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/report-info-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/report-info-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/report-info-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/report-info-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/report-info-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/report-info-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/report-info-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/report-info-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/report-info-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/report-info-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/report-info-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/report-info-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/report-info-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/report-info-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/report-info-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/report-info-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/report-info-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/report-info-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/report-info-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/report-info-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/report-info-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/report-info-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/report-info-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/report-info-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/report-info-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/report-info-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/report-info-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/report-info-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/report-info-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/report-info-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/report-info-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/report-info-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/report-info-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/report-info-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/report-info-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/report-info-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/report-info-plugin/deployments", + "created_at": "2017-01-20T15:44:10Z", + "updated_at": "2017-01-20T15:44:17Z", + "pushed_at": "2017-01-28T14:49:01Z", + "git_url": "git://github.com/jenkinsci/report-info-plugin.git", + "ssh_url": "git@github.com:jenkinsci/report-info-plugin.git", + "clone_url": "https://github.com/jenkinsci/report-info-plugin.git", + "svn_url": "https://github.com/jenkinsci/report-info-plugin", + "homepage": "", + "size": 111, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 79826625, + "node_id": "MDEwOlJlcG9zaXRvcnk3OTgyNjYyNQ==", + "name": "filtered-dashboard-view-plugin", + "full_name": "jenkinsci/filtered-dashboard-view-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/filtered-dashboard-view-plugin", + "description": "Jenkins Filtered Dashboard Plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/filtered-dashboard-view-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/filtered-dashboard-view-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/filtered-dashboard-view-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/filtered-dashboard-view-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/filtered-dashboard-view-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/filtered-dashboard-view-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/filtered-dashboard-view-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/filtered-dashboard-view-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/filtered-dashboard-view-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/filtered-dashboard-view-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/filtered-dashboard-view-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/filtered-dashboard-view-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/filtered-dashboard-view-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/filtered-dashboard-view-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/filtered-dashboard-view-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/filtered-dashboard-view-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/filtered-dashboard-view-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/filtered-dashboard-view-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/filtered-dashboard-view-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/filtered-dashboard-view-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/filtered-dashboard-view-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/filtered-dashboard-view-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/filtered-dashboard-view-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/filtered-dashboard-view-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/filtered-dashboard-view-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/filtered-dashboard-view-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/filtered-dashboard-view-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/filtered-dashboard-view-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/filtered-dashboard-view-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/filtered-dashboard-view-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/filtered-dashboard-view-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/filtered-dashboard-view-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/filtered-dashboard-view-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/filtered-dashboard-view-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/filtered-dashboard-view-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/filtered-dashboard-view-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/filtered-dashboard-view-plugin/deployments", + "created_at": "2017-01-23T17:03:09Z", + "updated_at": "2017-01-23T18:25:04Z", + "pushed_at": "2017-01-23T13:12:23Z", + "git_url": "git://github.com/jenkinsci/filtered-dashboard-view-plugin.git", + "ssh_url": "git@github.com:jenkinsci/filtered-dashboard-view-plugin.git", + "clone_url": "https://github.com/jenkinsci/filtered-dashboard-view-plugin.git", + "svn_url": "https://github.com/jenkinsci/filtered-dashboard-view-plugin", + "homepage": "", + "size": 335, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 79999686, + "node_id": "MDEwOlJlcG9zaXRvcnk3OTk5OTY4Ng==", + "name": "JenkinsPipelineUnit", + "full_name": "jenkinsci/JenkinsPipelineUnit", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/JenkinsPipelineUnit", + "description": "Framework for unit testing Jenkins pipelines ", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/JenkinsPipelineUnit", + "forks_url": "https://api.github.com/repos/jenkinsci/JenkinsPipelineUnit/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/JenkinsPipelineUnit/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/JenkinsPipelineUnit/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/JenkinsPipelineUnit/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/JenkinsPipelineUnit/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/JenkinsPipelineUnit/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/JenkinsPipelineUnit/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/JenkinsPipelineUnit/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/JenkinsPipelineUnit/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/JenkinsPipelineUnit/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/JenkinsPipelineUnit/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/JenkinsPipelineUnit/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/JenkinsPipelineUnit/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/JenkinsPipelineUnit/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/JenkinsPipelineUnit/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/JenkinsPipelineUnit/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/JenkinsPipelineUnit/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/JenkinsPipelineUnit/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/JenkinsPipelineUnit/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/JenkinsPipelineUnit/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/JenkinsPipelineUnit/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/JenkinsPipelineUnit/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/JenkinsPipelineUnit/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/JenkinsPipelineUnit/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/JenkinsPipelineUnit/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/JenkinsPipelineUnit/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/JenkinsPipelineUnit/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/JenkinsPipelineUnit/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/JenkinsPipelineUnit/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/JenkinsPipelineUnit/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/JenkinsPipelineUnit/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/JenkinsPipelineUnit/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/JenkinsPipelineUnit/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/JenkinsPipelineUnit/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/JenkinsPipelineUnit/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/JenkinsPipelineUnit/deployments", + "created_at": "2017-01-25T09:21:57Z", + "updated_at": "2019-10-25T13:46:31Z", + "pushed_at": "2019-10-25T07:46:07Z", + "git_url": "git://github.com/jenkinsci/JenkinsPipelineUnit.git", + "ssh_url": "git@github.com:jenkinsci/JenkinsPipelineUnit.git", + "clone_url": "https://github.com/jenkinsci/JenkinsPipelineUnit.git", + "svn_url": "https://github.com/jenkinsci/JenkinsPipelineUnit", + "homepage": "", + "size": 327, + "stargazers_count": 815, + "watchers_count": 815, + "language": "Groovy", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 177, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 59, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 177, + "open_issues": 59, + "watchers": 815, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 80128427, + "node_id": "MDEwOlJlcG9zaXRvcnk4MDEyODQyNw==", + "name": "docker-fixtures", + "full_name": "jenkinsci/docker-fixtures", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/docker-fixtures", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/docker-fixtures", + "forks_url": "https://api.github.com/repos/jenkinsci/docker-fixtures/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/docker-fixtures/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/docker-fixtures/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/docker-fixtures/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/docker-fixtures/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/docker-fixtures/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/docker-fixtures/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/docker-fixtures/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/docker-fixtures/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/docker-fixtures/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/docker-fixtures/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/docker-fixtures/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/docker-fixtures/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/docker-fixtures/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/docker-fixtures/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/docker-fixtures/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/docker-fixtures/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/docker-fixtures/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/docker-fixtures/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/docker-fixtures/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/docker-fixtures/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/docker-fixtures/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/docker-fixtures/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/docker-fixtures/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/docker-fixtures/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/docker-fixtures/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/docker-fixtures/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/docker-fixtures/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/docker-fixtures/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/docker-fixtures/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/docker-fixtures/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/docker-fixtures/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/docker-fixtures/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/docker-fixtures/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/docker-fixtures/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/docker-fixtures/deployments", + "created_at": "2017-01-26T15:46:54Z", + "updated_at": "2018-11-21T12:26:38Z", + "pushed_at": "2018-11-13T13:08:32Z", + "git_url": "git://github.com/jenkinsci/docker-fixtures.git", + "ssh_url": "git@github.com:jenkinsci/docker-fixtures.git", + "clone_url": "https://github.com/jenkinsci/docker-fixtures.git", + "svn_url": "https://github.com/jenkinsci/docker-fixtures", + "homepage": null, + "size": 116, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 13, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 13, + "open_issues": 0, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 80128909, + "node_id": "MDEwOlJlcG9zaXRvcnk4MDEyODkwOQ==", + "name": "pipeline-npm-plugin", + "full_name": "jenkinsci/pipeline-npm-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pipeline-npm-plugin", + "description": "Jenkins plugin providing pipeline based integration with NPM", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/pipeline-npm-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pipeline-npm-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pipeline-npm-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pipeline-npm-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pipeline-npm-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pipeline-npm-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pipeline-npm-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pipeline-npm-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pipeline-npm-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pipeline-npm-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pipeline-npm-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pipeline-npm-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pipeline-npm-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pipeline-npm-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pipeline-npm-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pipeline-npm-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pipeline-npm-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pipeline-npm-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pipeline-npm-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pipeline-npm-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pipeline-npm-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pipeline-npm-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pipeline-npm-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pipeline-npm-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pipeline-npm-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pipeline-npm-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pipeline-npm-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pipeline-npm-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pipeline-npm-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pipeline-npm-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pipeline-npm-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pipeline-npm-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pipeline-npm-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pipeline-npm-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pipeline-npm-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pipeline-npm-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pipeline-npm-plugin/deployments", + "created_at": "2017-01-26T15:51:24Z", + "updated_at": "2019-08-29T13:57:23Z", + "pushed_at": "2017-12-14T14:04:55Z", + "git_url": "git://github.com/jenkinsci/pipeline-npm-plugin.git", + "ssh_url": "git@github.com:jenkinsci/pipeline-npm-plugin.git", + "clone_url": "https://github.com/jenkinsci/pipeline-npm-plugin.git", + "svn_url": "https://github.com/jenkinsci/pipeline-npm-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Pipeline+Model+Definition+Plugin", + "size": 21, + "stargazers_count": 8, + "watchers_count": 8, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 4, + "open_issues": 0, + "watchers": 8, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 80447242, + "node_id": "MDEwOlJlcG9zaXRvcnk4MDQ0NzI0Mg==", + "name": "no-agent-job-purge-plugin", + "full_name": "jenkinsci/no-agent-job-purge-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/no-agent-job-purge-plugin", + "description": "A Jenkins plugin to purge jobs from the build queue if there is no slave available to take it.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/no-agent-job-purge-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/no-agent-job-purge-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/no-agent-job-purge-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/no-agent-job-purge-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/no-agent-job-purge-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/no-agent-job-purge-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/no-agent-job-purge-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/no-agent-job-purge-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/no-agent-job-purge-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/no-agent-job-purge-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/no-agent-job-purge-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/no-agent-job-purge-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/no-agent-job-purge-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/no-agent-job-purge-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/no-agent-job-purge-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/no-agent-job-purge-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/no-agent-job-purge-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/no-agent-job-purge-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/no-agent-job-purge-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/no-agent-job-purge-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/no-agent-job-purge-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/no-agent-job-purge-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/no-agent-job-purge-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/no-agent-job-purge-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/no-agent-job-purge-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/no-agent-job-purge-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/no-agent-job-purge-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/no-agent-job-purge-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/no-agent-job-purge-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/no-agent-job-purge-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/no-agent-job-purge-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/no-agent-job-purge-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/no-agent-job-purge-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/no-agent-job-purge-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/no-agent-job-purge-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/no-agent-job-purge-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/no-agent-job-purge-plugin/deployments", + "created_at": "2017-01-30T17:54:41Z", + "updated_at": "2019-01-18T01:06:24Z", + "pushed_at": "2017-02-20T20:27:36Z", + "git_url": "git://github.com/jenkinsci/no-agent-job-purge-plugin.git", + "ssh_url": "git@github.com:jenkinsci/no-agent-job-purge-plugin.git", + "clone_url": "https://github.com/jenkinsci/no-agent-job-purge-plugin.git", + "svn_url": "https://github.com/jenkinsci/no-agent-job-purge-plugin", + "homepage": null, + "size": 23, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/__files/organizations_107424_repos-13ae5b85-5c4d-409b-94b4-f1d995106d24.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/__files/organizations_107424_repos-13ae5b85-5c4d-409b-94b4-f1d995106d24.json new file mode 100644 index 0000000000..9f68bdd31a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/__files/organizations_107424_repos-13ae5b85-5c4d-409b-94b4-f1d995106d24.json @@ -0,0 +1,10052 @@ +[ + { + "id": 4049855, + "node_id": "MDEwOlJlcG9zaXRvcnk0MDQ5ODU1", + "name": "sladiator-plugin", + "full_name": "jenkinsci/sladiator-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/sladiator-plugin", + "description": "Jenkins notifier for SLAdiator application", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/sladiator-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/sladiator-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/sladiator-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/sladiator-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/sladiator-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/sladiator-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/sladiator-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/sladiator-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/sladiator-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/sladiator-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/sladiator-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/sladiator-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/sladiator-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/sladiator-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/sladiator-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/sladiator-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/sladiator-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/sladiator-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/sladiator-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/sladiator-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/sladiator-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/sladiator-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/sladiator-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/sladiator-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/sladiator-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/sladiator-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/sladiator-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/sladiator-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/sladiator-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/sladiator-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/sladiator-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/sladiator-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/sladiator-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/sladiator-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/sladiator-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/sladiator-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/sladiator-plugin/deployments", + "created_at": "2012-04-17T07:13:17Z", + "updated_at": "2018-06-05T05:32:44Z", + "pushed_at": "2013-11-10T02:17:55Z", + "git_url": "git://github.com/jenkinsci/sladiator-plugin.git", + "ssh_url": "git@github.com:jenkinsci/sladiator-plugin.git", + "clone_url": "https://github.com/jenkinsci/sladiator-plugin.git", + "svn_url": "https://github.com/jenkinsci/sladiator-plugin", + "homepage": "", + "size": 128, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 4163416, + "node_id": "MDEwOlJlcG9zaXRvcnk0MTYzNDE2", + "name": "libxpublisher", + "full_name": "jenkinsci/libxpublisher", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/libxpublisher", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/libxpublisher", + "forks_url": "https://api.github.com/repos/jenkinsci/libxpublisher/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/libxpublisher/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/libxpublisher/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/libxpublisher/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/libxpublisher/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/libxpublisher/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/libxpublisher/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/libxpublisher/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/libxpublisher/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/libxpublisher/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/libxpublisher/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/libxpublisher/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/libxpublisher/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/libxpublisher/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/libxpublisher/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/libxpublisher/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/libxpublisher/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/libxpublisher/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/libxpublisher/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/libxpublisher/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/libxpublisher/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/libxpublisher/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/libxpublisher/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/libxpublisher/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/libxpublisher/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/libxpublisher/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/libxpublisher/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/libxpublisher/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/libxpublisher/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/libxpublisher/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/libxpublisher/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/libxpublisher/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/libxpublisher/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/libxpublisher/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/libxpublisher/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/libxpublisher/deployments", + "created_at": "2012-04-27T23:12:57Z", + "updated_at": "2013-11-10T02:09:31Z", + "pushed_at": "2013-11-10T02:09:24Z", + "git_url": "git://github.com/jenkinsci/libxpublisher.git", + "ssh_url": "git@github.com:jenkinsci/libxpublisher.git", + "clone_url": "https://github.com/jenkinsci/libxpublisher.git", + "svn_url": "https://github.com/jenkinsci/libxpublisher", + "homepage": "", + "size": 124, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 4170110, + "node_id": "MDEwOlJlcG9zaXRvcnk0MTcwMTEw", + "name": "groovy-sandbox", + "full_name": "jenkinsci/groovy-sandbox", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/groovy-sandbox", + "description": "Compile-time transformer to run Groovy code in a restrictive sandbox ", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/groovy-sandbox", + "forks_url": "https://api.github.com/repos/jenkinsci/groovy-sandbox/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/groovy-sandbox/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/groovy-sandbox/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/groovy-sandbox/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/groovy-sandbox/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/groovy-sandbox/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/groovy-sandbox/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/groovy-sandbox/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/groovy-sandbox/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/groovy-sandbox/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/groovy-sandbox/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/groovy-sandbox/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/groovy-sandbox/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/groovy-sandbox/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/groovy-sandbox/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/groovy-sandbox/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/groovy-sandbox/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/groovy-sandbox/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/groovy-sandbox/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/groovy-sandbox/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/groovy-sandbox/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/groovy-sandbox/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/groovy-sandbox/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/groovy-sandbox/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/groovy-sandbox/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/groovy-sandbox/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/groovy-sandbox/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/groovy-sandbox/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/groovy-sandbox/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/groovy-sandbox/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/groovy-sandbox/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/groovy-sandbox/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/groovy-sandbox/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/groovy-sandbox/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/groovy-sandbox/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/groovy-sandbox/deployments", + "created_at": "2012-04-28T20:31:42Z", + "updated_at": "2019-10-08T09:06:09Z", + "pushed_at": "2019-10-01T13:46:15Z", + "git_url": "git://github.com/jenkinsci/groovy-sandbox.git", + "ssh_url": "git@github.com:jenkinsci/groovy-sandbox.git", + "clone_url": "https://github.com/jenkinsci/groovy-sandbox.git", + "svn_url": "https://github.com/jenkinsci/groovy-sandbox", + "homepage": "http://groovy-sandbox.kohsuke.org/", + "size": 1090, + "stargazers_count": 87, + "watchers_count": 87, + "language": "Java", + "has_issues": true, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": true, + "forks_count": 38, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 11, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 38, + "open_issues": 11, + "watchers": 87, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 4179489, + "node_id": "MDEwOlJlcG9zaXRvcnk0MTc5NDg5", + "name": "delete-log-plugin", + "full_name": "jenkinsci/delete-log-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/delete-log-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/delete-log-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/delete-log-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/delete-log-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/delete-log-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/delete-log-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/delete-log-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/delete-log-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/delete-log-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/delete-log-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/delete-log-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/delete-log-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/delete-log-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/delete-log-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/delete-log-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/delete-log-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/delete-log-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/delete-log-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/delete-log-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/delete-log-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/delete-log-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/delete-log-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/delete-log-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/delete-log-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/delete-log-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/delete-log-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/delete-log-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/delete-log-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/delete-log-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/delete-log-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/delete-log-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/delete-log-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/delete-log-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/delete-log-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/delete-log-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/delete-log-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/delete-log-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/delete-log-plugin/deployments", + "created_at": "2012-04-30T03:15:02Z", + "updated_at": "2017-01-06T21:21:07Z", + "pushed_at": "2012-04-30T03:18:44Z", + "git_url": "git://github.com/jenkinsci/delete-log-plugin.git", + "ssh_url": "git@github.com:jenkinsci/delete-log-plugin.git", + "clone_url": "https://github.com/jenkinsci/delete-log-plugin.git", + "svn_url": "https://github.com/jenkinsci/delete-log-plugin", + "homepage": null, + "size": 100, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 4203011, + "node_id": "MDEwOlJlcG9zaXRvcnk0MjAzMDEx", + "name": "archive-files-scm-plugin", + "full_name": "jenkinsci/archive-files-scm-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/archive-files-scm-plugin", + "description": "ArchiveFilesSCM - Jenkins plugin to download archive files and extract to job workspace", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/archive-files-scm-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/archive-files-scm-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/archive-files-scm-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/archive-files-scm-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/archive-files-scm-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/archive-files-scm-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/archive-files-scm-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/archive-files-scm-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/archive-files-scm-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/archive-files-scm-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/archive-files-scm-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/archive-files-scm-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/archive-files-scm-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/archive-files-scm-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/archive-files-scm-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/archive-files-scm-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/archive-files-scm-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/archive-files-scm-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/archive-files-scm-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/archive-files-scm-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/archive-files-scm-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/archive-files-scm-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/archive-files-scm-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/archive-files-scm-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/archive-files-scm-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/archive-files-scm-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/archive-files-scm-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/archive-files-scm-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/archive-files-scm-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/archive-files-scm-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/archive-files-scm-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/archive-files-scm-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/archive-files-scm-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/archive-files-scm-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/archive-files-scm-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/archive-files-scm-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/archive-files-scm-plugin/deployments", + "created_at": "2012-05-02T13:01:44Z", + "updated_at": "2013-11-10T01:53:14Z", + "pushed_at": "2013-11-10T01:53:12Z", + "git_url": "git://github.com/jenkinsci/archive-files-scm-plugin.git", + "ssh_url": "git@github.com:jenkinsci/archive-files-scm-plugin.git", + "clone_url": "https://github.com/jenkinsci/archive-files-scm-plugin.git", + "svn_url": "https://github.com/jenkinsci/archive-files-scm-plugin", + "homepage": "", + "size": 109, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 4204640, + "node_id": "MDEwOlJlcG9zaXRvcnk0MjA0NjQw", + "name": "openstack-plugin", + "full_name": "jenkinsci/openstack-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/openstack-plugin", + "description": "Jenkins support for Openstack", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/openstack-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/openstack-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/openstack-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/openstack-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/openstack-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/openstack-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/openstack-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/openstack-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/openstack-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/openstack-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/openstack-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/openstack-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/openstack-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/openstack-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/openstack-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/openstack-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/openstack-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/openstack-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/openstack-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/openstack-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/openstack-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/openstack-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/openstack-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/openstack-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/openstack-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/openstack-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/openstack-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/openstack-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/openstack-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/openstack-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/openstack-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/openstack-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/openstack-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/openstack-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/openstack-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/openstack-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/openstack-plugin/deployments", + "created_at": "2012-05-02T15:45:27Z", + "updated_at": "2018-02-13T22:33:29Z", + "pushed_at": "2013-11-10T02:12:31Z", + "git_url": "git://github.com/jenkinsci/openstack-plugin.git", + "ssh_url": "git@github.com:jenkinsci/openstack-plugin.git", + "clone_url": "https://github.com/jenkinsci/openstack-plugin.git", + "svn_url": "https://github.com/jenkinsci/openstack-plugin", + "homepage": "", + "size": 169, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 4207597, + "node_id": "MDEwOlJlcG9zaXRvcnk0MjA3NTk3", + "name": "cronProjectAction-plugin", + "full_name": "jenkinsci/cronProjectAction-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/cronProjectAction-plugin", + "description": "Jenkins Plugin to add cron editing on project's front page", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/cronProjectAction-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/cronProjectAction-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/cronProjectAction-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/cronProjectAction-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/cronProjectAction-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/cronProjectAction-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/cronProjectAction-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/cronProjectAction-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/cronProjectAction-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/cronProjectAction-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/cronProjectAction-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/cronProjectAction-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/cronProjectAction-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/cronProjectAction-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/cronProjectAction-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/cronProjectAction-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/cronProjectAction-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/cronProjectAction-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/cronProjectAction-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/cronProjectAction-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/cronProjectAction-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/cronProjectAction-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/cronProjectAction-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/cronProjectAction-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/cronProjectAction-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/cronProjectAction-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/cronProjectAction-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/cronProjectAction-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/cronProjectAction-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/cronProjectAction-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/cronProjectAction-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/cronProjectAction-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/cronProjectAction-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/cronProjectAction-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/cronProjectAction-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/cronProjectAction-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/cronProjectAction-plugin/deployments", + "created_at": "2012-05-02T21:01:37Z", + "updated_at": "2013-11-10T01:59:07Z", + "pushed_at": "2013-11-10T01:59:02Z", + "git_url": "git://github.com/jenkinsci/cronProjectAction-plugin.git", + "ssh_url": "git@github.com:jenkinsci/cronProjectAction-plugin.git", + "clone_url": "https://github.com/jenkinsci/cronProjectAction-plugin.git", + "svn_url": "https://github.com/jenkinsci/cronProjectAction-plugin", + "homepage": null, + "size": 103, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 4207604, + "node_id": "MDEwOlJlcG9zaXRvcnk0MjA3NjA0", + "name": "startup-scm-poll-plugin", + "full_name": "jenkinsci/startup-scm-poll-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/startup-scm-poll-plugin", + "description": "Jenkins plugin. Build trigger that fires SCM polling at Jenkins startup", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/startup-scm-poll-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/startup-scm-poll-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/startup-scm-poll-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/startup-scm-poll-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/startup-scm-poll-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/startup-scm-poll-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/startup-scm-poll-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/startup-scm-poll-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/startup-scm-poll-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/startup-scm-poll-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/startup-scm-poll-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/startup-scm-poll-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/startup-scm-poll-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/startup-scm-poll-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/startup-scm-poll-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/startup-scm-poll-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/startup-scm-poll-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/startup-scm-poll-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/startup-scm-poll-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/startup-scm-poll-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/startup-scm-poll-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/startup-scm-poll-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/startup-scm-poll-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/startup-scm-poll-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/startup-scm-poll-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/startup-scm-poll-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/startup-scm-poll-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/startup-scm-poll-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/startup-scm-poll-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/startup-scm-poll-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/startup-scm-poll-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/startup-scm-poll-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/startup-scm-poll-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/startup-scm-poll-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/startup-scm-poll-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/startup-scm-poll-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/startup-scm-poll-plugin/deployments", + "created_at": "2012-05-02T21:02:26Z", + "updated_at": "2013-11-10T02:19:20Z", + "pushed_at": "2013-11-10T02:19:11Z", + "git_url": "git://github.com/jenkinsci/startup-scm-poll-plugin.git", + "ssh_url": "git@github.com:jenkinsci/startup-scm-poll-plugin.git", + "clone_url": "https://github.com/jenkinsci/startup-scm-poll-plugin.git", + "svn_url": "https://github.com/jenkinsci/startup-scm-poll-plugin", + "homepage": "", + "size": 75, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 4207651, + "node_id": "MDEwOlJlcG9zaXRvcnk0MjA3NjUx", + "name": "user-builds-starter-plugin", + "full_name": "jenkinsci/user-builds-starter-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/user-builds-starter-plugin", + "description": "Jenkins plugin. User action to show builds started.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/user-builds-starter-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/user-builds-starter-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/user-builds-starter-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/user-builds-starter-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/user-builds-starter-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/user-builds-starter-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/user-builds-starter-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/user-builds-starter-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/user-builds-starter-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/user-builds-starter-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/user-builds-starter-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/user-builds-starter-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/user-builds-starter-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/user-builds-starter-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/user-builds-starter-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/user-builds-starter-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/user-builds-starter-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/user-builds-starter-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/user-builds-starter-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/user-builds-starter-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/user-builds-starter-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/user-builds-starter-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/user-builds-starter-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/user-builds-starter-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/user-builds-starter-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/user-builds-starter-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/user-builds-starter-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/user-builds-starter-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/user-builds-starter-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/user-builds-starter-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/user-builds-starter-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/user-builds-starter-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/user-builds-starter-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/user-builds-starter-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/user-builds-starter-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/user-builds-starter-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/user-builds-starter-plugin/deployments", + "created_at": "2012-05-02T21:08:00Z", + "updated_at": "2013-11-10T02:21:55Z", + "pushed_at": "2013-11-10T02:21:49Z", + "git_url": "git://github.com/jenkinsci/user-builds-starter-plugin.git", + "ssh_url": "git@github.com:jenkinsci/user-builds-starter-plugin.git", + "clone_url": "https://github.com/jenkinsci/user-builds-starter-plugin.git", + "svn_url": "https://github.com/jenkinsci/user-builds-starter-plugin", + "homepage": "", + "size": 77, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 4222125, + "node_id": "MDEwOlJlcG9zaXRvcnk0MjIyMTI1", + "name": "ipmessenger-plugin", + "full_name": "jenkinsci/ipmessenger-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/ipmessenger-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/ipmessenger-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/ipmessenger-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/ipmessenger-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/ipmessenger-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/ipmessenger-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/ipmessenger-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/ipmessenger-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/ipmessenger-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/ipmessenger-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/ipmessenger-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/ipmessenger-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/ipmessenger-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/ipmessenger-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/ipmessenger-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/ipmessenger-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/ipmessenger-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/ipmessenger-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/ipmessenger-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/ipmessenger-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/ipmessenger-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/ipmessenger-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/ipmessenger-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/ipmessenger-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/ipmessenger-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/ipmessenger-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/ipmessenger-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/ipmessenger-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/ipmessenger-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/ipmessenger-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/ipmessenger-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/ipmessenger-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/ipmessenger-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/ipmessenger-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/ipmessenger-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/ipmessenger-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/ipmessenger-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/ipmessenger-plugin/deployments", + "created_at": "2012-05-04T06:13:31Z", + "updated_at": "2015-05-16T03:36:32Z", + "pushed_at": "2013-11-10T02:05:40Z", + "git_url": "git://github.com/jenkinsci/ipmessenger-plugin.git", + "ssh_url": "git@github.com:jenkinsci/ipmessenger-plugin.git", + "clone_url": "https://github.com/jenkinsci/ipmessenger-plugin.git", + "svn_url": "https://github.com/jenkinsci/ipmessenger-plugin", + "homepage": null, + "size": 118, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 4249364, + "node_id": "MDEwOlJlcG9zaXRvcnk0MjQ5MzY0", + "name": "valgrind-plugin", + "full_name": "jenkinsci/valgrind-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/valgrind-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/valgrind-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/valgrind-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/valgrind-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/valgrind-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/valgrind-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/valgrind-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/valgrind-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/valgrind-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/valgrind-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/valgrind-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/valgrind-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/valgrind-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/valgrind-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/valgrind-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/valgrind-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/valgrind-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/valgrind-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/valgrind-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/valgrind-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/valgrind-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/valgrind-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/valgrind-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/valgrind-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/valgrind-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/valgrind-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/valgrind-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/valgrind-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/valgrind-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/valgrind-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/valgrind-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/valgrind-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/valgrind-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/valgrind-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/valgrind-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/valgrind-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/valgrind-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/valgrind-plugin/deployments", + "created_at": "2012-05-07T12:38:17Z", + "updated_at": "2019-04-24T11:51:46Z", + "pushed_at": "2019-10-08T11:25:33Z", + "git_url": "git://github.com/jenkinsci/valgrind-plugin.git", + "ssh_url": "git@github.com:jenkinsci/valgrind-plugin.git", + "clone_url": "https://github.com/jenkinsci/valgrind-plugin.git", + "svn_url": "https://github.com/jenkinsci/valgrind-plugin", + "homepage": null, + "size": 430, + "stargazers_count": 13, + "watchers_count": 13, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 21, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 4, + "license": null, + "forks": 21, + "open_issues": 4, + "watchers": 13, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 4274667, + "node_id": "MDEwOlJlcG9zaXRvcnk0Mjc0NjY3", + "name": "embeddable-build-status-plugin", + "full_name": "jenkinsci/embeddable-build-status-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/embeddable-build-status-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/embeddable-build-status-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/embeddable-build-status-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/embeddable-build-status-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/embeddable-build-status-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/embeddable-build-status-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/embeddable-build-status-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/embeddable-build-status-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/embeddable-build-status-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/embeddable-build-status-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/embeddable-build-status-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/embeddable-build-status-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/embeddable-build-status-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/embeddable-build-status-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/embeddable-build-status-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/embeddable-build-status-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/embeddable-build-status-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/embeddable-build-status-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/embeddable-build-status-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/embeddable-build-status-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/embeddable-build-status-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/embeddable-build-status-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/embeddable-build-status-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/embeddable-build-status-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/embeddable-build-status-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/embeddable-build-status-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/embeddable-build-status-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/embeddable-build-status-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/embeddable-build-status-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/embeddable-build-status-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/embeddable-build-status-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/embeddable-build-status-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/embeddable-build-status-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/embeddable-build-status-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/embeddable-build-status-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/embeddable-build-status-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/embeddable-build-status-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/embeddable-build-status-plugin/deployments", + "created_at": "2012-05-09T17:51:59Z", + "updated_at": "2019-10-25T16:02:37Z", + "pushed_at": "2019-10-17T08:34:35Z", + "git_url": "git://github.com/jenkinsci/embeddable-build-status-plugin.git", + "ssh_url": "git@github.com:jenkinsci/embeddable-build-status-plugin.git", + "clone_url": "https://github.com/jenkinsci/embeddable-build-status-plugin.git", + "svn_url": "https://github.com/jenkinsci/embeddable-build-status-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Embeddable+Build+Status+Plugin", + "size": 396, + "stargazers_count": 89, + "watchers_count": 89, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 109, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 11, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 109, + "open_issues": 11, + "watchers": 89, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 4284656, + "node_id": "MDEwOlJlcG9zaXRvcnk0Mjg0NjU2", + "name": "pry-plugin", + "full_name": "jenkinsci/pry-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pry-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/pry-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pry-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pry-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pry-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pry-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pry-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pry-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pry-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pry-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pry-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pry-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pry-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pry-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pry-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pry-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pry-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pry-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pry-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pry-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pry-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pry-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pry-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pry-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pry-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pry-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pry-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pry-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pry-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pry-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pry-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pry-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pry-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pry-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pry-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pry-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pry-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pry-plugin/deployments", + "created_at": "2012-05-10T13:18:03Z", + "updated_at": "2019-08-13T15:02:37Z", + "pushed_at": "2018-12-06T17:54:51Z", + "git_url": "git://github.com/jenkinsci/pry-plugin.git", + "ssh_url": "git@github.com:jenkinsci/pry-plugin.git", + "clone_url": "https://github.com/jenkinsci/pry-plugin.git", + "svn_url": "https://github.com/jenkinsci/pry-plugin", + "homepage": "", + "size": 112, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 2, + "open_issues": 1, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 4306775, + "node_id": "MDEwOlJlcG9zaXRvcnk0MzA2Nzc1", + "name": "config-rotator-plugin", + "full_name": "jenkinsci/config-rotator-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/config-rotator-plugin", + "description": "Configuration rotator plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/config-rotator-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/config-rotator-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/config-rotator-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/config-rotator-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/config-rotator-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/config-rotator-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/config-rotator-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/config-rotator-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/config-rotator-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/config-rotator-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/config-rotator-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/config-rotator-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/config-rotator-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/config-rotator-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/config-rotator-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/config-rotator-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/config-rotator-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/config-rotator-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/config-rotator-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/config-rotator-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/config-rotator-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/config-rotator-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/config-rotator-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/config-rotator-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/config-rotator-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/config-rotator-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/config-rotator-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/config-rotator-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/config-rotator-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/config-rotator-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/config-rotator-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/config-rotator-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/config-rotator-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/config-rotator-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/config-rotator-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/config-rotator-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/config-rotator-plugin/deployments", + "created_at": "2012-05-12T13:42:10Z", + "updated_at": "2018-06-14T12:44:49Z", + "pushed_at": "2017-04-13T13:55:50Z", + "git_url": "git://github.com/jenkinsci/config-rotator-plugin.git", + "ssh_url": "git@github.com:jenkinsci/config-rotator-plugin.git", + "clone_url": "https://github.com/jenkinsci/config-rotator-plugin.git", + "svn_url": "https://github.com/jenkinsci/config-rotator-plugin", + "homepage": "", + "size": 1305, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 4315672, + "node_id": "MDEwOlJlcG9zaXRvcnk0MzE1Njcy", + "name": "zubhium-plugin", + "full_name": "jenkinsci/zubhium-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/zubhium-plugin", + "description": "Zubhium artifact uploader for Jenkins", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/zubhium-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/zubhium-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/zubhium-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/zubhium-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/zubhium-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/zubhium-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/zubhium-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/zubhium-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/zubhium-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/zubhium-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/zubhium-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/zubhium-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/zubhium-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/zubhium-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/zubhium-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/zubhium-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/zubhium-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/zubhium-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/zubhium-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/zubhium-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/zubhium-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/zubhium-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/zubhium-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/zubhium-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/zubhium-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/zubhium-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/zubhium-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/zubhium-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/zubhium-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/zubhium-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/zubhium-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/zubhium-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/zubhium-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/zubhium-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/zubhium-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/zubhium-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/zubhium-plugin/deployments", + "created_at": "2012-05-13T16:26:44Z", + "updated_at": "2017-07-15T16:21:12Z", + "pushed_at": "2013-11-10T02:23:36Z", + "git_url": "git://github.com/jenkinsci/zubhium-plugin.git", + "ssh_url": "git@github.com:jenkinsci/zubhium-plugin.git", + "clone_url": "https://github.com/jenkinsci/zubhium-plugin.git", + "svn_url": "https://github.com/jenkinsci/zubhium-plugin", + "homepage": null, + "size": 1288, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 4371965, + "node_id": "MDEwOlJlcG9zaXRvcnk0MzcxOTY1", + "name": "dependency-queue-plugin", + "full_name": "jenkinsci/dependency-queue-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/dependency-queue-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/dependency-queue-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/dependency-queue-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/dependency-queue-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/dependency-queue-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/dependency-queue-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/dependency-queue-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/dependency-queue-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/dependency-queue-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/dependency-queue-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/dependency-queue-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/dependency-queue-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/dependency-queue-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/dependency-queue-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/dependency-queue-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/dependency-queue-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/dependency-queue-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/dependency-queue-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/dependency-queue-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/dependency-queue-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/dependency-queue-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/dependency-queue-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/dependency-queue-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/dependency-queue-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/dependency-queue-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/dependency-queue-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/dependency-queue-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/dependency-queue-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/dependency-queue-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/dependency-queue-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/dependency-queue-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/dependency-queue-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/dependency-queue-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/dependency-queue-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/dependency-queue-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/dependency-queue-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/dependency-queue-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/dependency-queue-plugin/deployments", + "created_at": "2012-05-18T17:57:04Z", + "updated_at": "2018-07-28T10:07:03Z", + "pushed_at": "2019-10-08T16:13:30Z", + "git_url": "git://github.com/jenkinsci/dependency-queue-plugin.git", + "ssh_url": "git@github.com:jenkinsci/dependency-queue-plugin.git", + "clone_url": "https://github.com/jenkinsci/dependency-queue-plugin.git", + "svn_url": "https://github.com/jenkinsci/dependency-queue-plugin", + "homepage": "", + "size": 12, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 3, + "open_issues": 1, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 4379151, + "node_id": "MDEwOlJlcG9zaXRvcnk0Mzc5MTUx", + "name": "artifact-parameter-plugin", + "full_name": "jenkinsci/artifact-parameter-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/artifact-parameter-plugin", + "description": "Jenkins plugin that provides archived artifacts as build parameters", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/artifact-parameter-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/artifact-parameter-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/artifact-parameter-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/artifact-parameter-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/artifact-parameter-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/artifact-parameter-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/artifact-parameter-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/artifact-parameter-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/artifact-parameter-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/artifact-parameter-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/artifact-parameter-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/artifact-parameter-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/artifact-parameter-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/artifact-parameter-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/artifact-parameter-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/artifact-parameter-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/artifact-parameter-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/artifact-parameter-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/artifact-parameter-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/artifact-parameter-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/artifact-parameter-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/artifact-parameter-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/artifact-parameter-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/artifact-parameter-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/artifact-parameter-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/artifact-parameter-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/artifact-parameter-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/artifact-parameter-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/artifact-parameter-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/artifact-parameter-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/artifact-parameter-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/artifact-parameter-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/artifact-parameter-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/artifact-parameter-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/artifact-parameter-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/artifact-parameter-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/artifact-parameter-plugin/deployments", + "created_at": "2012-05-19T15:46:59Z", + "updated_at": "2018-05-28T22:08:44Z", + "pushed_at": "2014-07-22T15:17:02Z", + "git_url": "git://github.com/jenkinsci/artifact-parameter-plugin.git", + "ssh_url": "git@github.com:jenkinsci/artifact-parameter-plugin.git", + "clone_url": "https://github.com/jenkinsci/artifact-parameter-plugin.git", + "svn_url": "https://github.com/jenkinsci/artifact-parameter-plugin", + "homepage": null, + "size": 130, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 4395961, + "node_id": "MDEwOlJlcG9zaXRvcnk0Mzk1OTYx", + "name": "jenkow-plugin", + "full_name": "jenkinsci/jenkow-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jenkow-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jenkow-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/jenkow-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jenkow-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jenkow-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jenkow-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jenkow-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jenkow-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jenkow-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jenkow-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jenkow-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jenkow-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jenkow-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jenkow-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jenkow-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jenkow-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jenkow-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jenkow-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jenkow-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jenkow-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jenkow-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jenkow-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jenkow-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jenkow-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jenkow-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jenkow-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jenkow-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jenkow-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jenkow-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jenkow-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jenkow-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jenkow-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jenkow-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jenkow-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jenkow-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jenkow-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jenkow-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jenkow-plugin/deployments", + "created_at": "2012-05-21T16:58:26Z", + "updated_at": "2018-03-08T01:15:13Z", + "pushed_at": "2017-03-25T10:26:08Z", + "git_url": "git://github.com/jenkinsci/jenkow-plugin.git", + "ssh_url": "git@github.com:jenkinsci/jenkow-plugin.git", + "clone_url": "https://github.com/jenkinsci/jenkow-plugin.git", + "svn_url": "https://github.com/jenkinsci/jenkow-plugin", + "homepage": "", + "size": 19568, + "stargazers_count": 9, + "watchers_count": 9, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 7, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 7, + "open_issues": 1, + "watchers": 9, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 4424617, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDI0NjE3", + "name": "tattletale-plugin", + "full_name": "jenkinsci/tattletale-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/tattletale-plugin", + "description": "Jenkins plugin for JBoss.org project analysis tool Tattletale", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/tattletale-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/tattletale-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/tattletale-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/tattletale-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/tattletale-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/tattletale-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/tattletale-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/tattletale-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/tattletale-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/tattletale-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/tattletale-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/tattletale-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/tattletale-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/tattletale-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/tattletale-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/tattletale-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/tattletale-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/tattletale-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/tattletale-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/tattletale-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/tattletale-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/tattletale-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/tattletale-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/tattletale-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/tattletale-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/tattletale-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/tattletale-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/tattletale-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/tattletale-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/tattletale-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/tattletale-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/tattletale-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/tattletale-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/tattletale-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/tattletale-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/tattletale-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/tattletale-plugin/deployments", + "created_at": "2012-05-23T19:54:41Z", + "updated_at": "2013-11-10T02:20:10Z", + "pushed_at": "2013-11-10T02:20:05Z", + "git_url": "git://github.com/jenkinsci/tattletale-plugin.git", + "ssh_url": "git@github.com:jenkinsci/tattletale-plugin.git", + "clone_url": "https://github.com/jenkinsci/tattletale-plugin.git", + "svn_url": "https://github.com/jenkinsci/tattletale-plugin", + "homepage": "http://www.jboss.org/tattletale", + "size": 116, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 4425490, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDI1NDkw", + "name": "buildcoin-plugin", + "full_name": "jenkinsci/buildcoin-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/buildcoin-plugin", + "description": "Jenkins plugin for Buildcoin, a CI game and real-time dashboard for your team.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/buildcoin-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/buildcoin-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/buildcoin-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/buildcoin-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/buildcoin-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/buildcoin-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/buildcoin-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/buildcoin-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/buildcoin-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/buildcoin-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/buildcoin-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/buildcoin-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/buildcoin-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/buildcoin-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/buildcoin-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/buildcoin-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/buildcoin-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/buildcoin-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/buildcoin-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/buildcoin-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/buildcoin-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/buildcoin-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/buildcoin-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/buildcoin-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/buildcoin-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/buildcoin-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/buildcoin-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/buildcoin-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/buildcoin-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/buildcoin-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/buildcoin-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/buildcoin-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/buildcoin-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/buildcoin-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/buildcoin-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/buildcoin-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/buildcoin-plugin/deployments", + "created_at": "2012-05-23T21:24:01Z", + "updated_at": "2013-11-10T01:55:53Z", + "pushed_at": "2013-11-10T01:55:48Z", + "git_url": "git://github.com/jenkinsci/buildcoin-plugin.git", + "ssh_url": "git@github.com:jenkinsci/buildcoin-plugin.git", + "clone_url": "https://github.com/jenkinsci/buildcoin-plugin.git", + "svn_url": "https://github.com/jenkinsci/buildcoin-plugin", + "homepage": "http://buildcoin.com", + "size": 208, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 4481960, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDgxOTYw", + "name": "sshProcess-check-plugin", + "full_name": "jenkinsci/sshProcess-check-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/sshProcess-check-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/sshProcess-check-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/sshProcess-check-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/sshProcess-check-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/sshProcess-check-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/sshProcess-check-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/sshProcess-check-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/sshProcess-check-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/sshProcess-check-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/sshProcess-check-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/sshProcess-check-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/sshProcess-check-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/sshProcess-check-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/sshProcess-check-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/sshProcess-check-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/sshProcess-check-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/sshProcess-check-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/sshProcess-check-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/sshProcess-check-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/sshProcess-check-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/sshProcess-check-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/sshProcess-check-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/sshProcess-check-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/sshProcess-check-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/sshProcess-check-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/sshProcess-check-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/sshProcess-check-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/sshProcess-check-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/sshProcess-check-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/sshProcess-check-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/sshProcess-check-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/sshProcess-check-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/sshProcess-check-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/sshProcess-check-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/sshProcess-check-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/sshProcess-check-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/sshProcess-check-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/sshProcess-check-plugin/deployments", + "created_at": "2012-05-29T12:40:52Z", + "updated_at": "2019-08-14T12:11:11Z", + "pushed_at": "2019-10-08T11:38:10Z", + "git_url": "git://github.com/jenkinsci/sshProcess-check-plugin.git", + "ssh_url": "git@github.com:jenkinsci/sshProcess-check-plugin.git", + "clone_url": "https://github.com/jenkinsci/sshProcess-check-plugin.git", + "svn_url": "https://github.com/jenkinsci/sshProcess-check-plugin", + "homepage": null, + "size": 8, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 1, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 4489400, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg5NDAw", + "name": "external-monitor-job-plugin", + "full_name": "jenkinsci/external-monitor-job-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/external-monitor-job-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/external-monitor-job-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/external-monitor-job-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/external-monitor-job-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/external-monitor-job-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/external-monitor-job-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/external-monitor-job-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/external-monitor-job-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/external-monitor-job-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/external-monitor-job-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/external-monitor-job-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/external-monitor-job-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/external-monitor-job-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/external-monitor-job-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/external-monitor-job-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/external-monitor-job-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/external-monitor-job-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/external-monitor-job-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/external-monitor-job-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/external-monitor-job-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/external-monitor-job-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/external-monitor-job-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/external-monitor-job-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/external-monitor-job-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/external-monitor-job-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/external-monitor-job-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/external-monitor-job-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/external-monitor-job-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/external-monitor-job-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/external-monitor-job-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/external-monitor-job-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/external-monitor-job-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/external-monitor-job-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/external-monitor-job-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/external-monitor-job-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/external-monitor-job-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/external-monitor-job-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/external-monitor-job-plugin/deployments", + "created_at": "2012-05-30T00:40:47Z", + "updated_at": "2019-01-03T21:59:20Z", + "pushed_at": "2019-01-03T21:59:18Z", + "git_url": "git://github.com/jenkinsci/external-monitor-job-plugin.git", + "ssh_url": "git@github.com:jenkinsci/external-monitor-job-plugin.git", + "clone_url": "https://github.com/jenkinsci/external-monitor-job-plugin.git", + "svn_url": "https://github.com/jenkinsci/external-monitor-job-plugin", + "homepage": "", + "size": 166, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 18, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 18, + "open_issues": 2, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 4489790, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDg5Nzkw", + "name": "matrix-project-plugin", + "full_name": "jenkinsci/matrix-project-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/matrix-project-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/matrix-project-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/matrix-project-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/matrix-project-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/matrix-project-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/matrix-project-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/matrix-project-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/matrix-project-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/matrix-project-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/matrix-project-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/matrix-project-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/matrix-project-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/matrix-project-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/matrix-project-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/matrix-project-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/matrix-project-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/matrix-project-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/matrix-project-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/matrix-project-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/matrix-project-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/matrix-project-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/matrix-project-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/matrix-project-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/matrix-project-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/matrix-project-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/matrix-project-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/matrix-project-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/matrix-project-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/matrix-project-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/matrix-project-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/matrix-project-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/matrix-project-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/matrix-project-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/matrix-project-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/matrix-project-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/matrix-project-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/matrix-project-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/matrix-project-plugin/deployments", + "created_at": "2012-05-30T01:38:16Z", + "updated_at": "2019-07-22T12:59:42Z", + "pushed_at": "2019-09-29T18:02:59Z", + "git_url": "git://github.com/jenkinsci/matrix-project-plugin.git", + "ssh_url": "git@github.com:jenkinsci/matrix-project-plugin.git", + "clone_url": "https://github.com/jenkinsci/matrix-project-plugin.git", + "svn_url": "https://github.com/jenkinsci/matrix-project-plugin", + "homepage": "", + "size": 866, + "stargazers_count": 14, + "watchers_count": 14, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 55, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 9, + "license": null, + "forks": 55, + "open_issues": 9, + "watchers": 14, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 4494501, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDk0NTAx", + "name": "changes-since-last-success-plugin", + "full_name": "jenkinsci/changes-since-last-success-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/changes-since-last-success-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/changes-since-last-success-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/changes-since-last-success-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/changes-since-last-success-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/changes-since-last-success-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/changes-since-last-success-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/changes-since-last-success-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/changes-since-last-success-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/changes-since-last-success-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/changes-since-last-success-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/changes-since-last-success-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/changes-since-last-success-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/changes-since-last-success-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/changes-since-last-success-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/changes-since-last-success-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/changes-since-last-success-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/changes-since-last-success-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/changes-since-last-success-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/changes-since-last-success-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/changes-since-last-success-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/changes-since-last-success-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/changes-since-last-success-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/changes-since-last-success-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/changes-since-last-success-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/changes-since-last-success-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/changes-since-last-success-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/changes-since-last-success-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/changes-since-last-success-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/changes-since-last-success-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/changes-since-last-success-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/changes-since-last-success-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/changes-since-last-success-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/changes-since-last-success-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/changes-since-last-success-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/changes-since-last-success-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/changes-since-last-success-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/changes-since-last-success-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/changes-since-last-success-plugin/deployments", + "created_at": "2012-05-30T12:32:54Z", + "updated_at": "2019-05-16T21:07:54Z", + "pushed_at": "2019-10-08T11:30:04Z", + "git_url": "git://github.com/jenkinsci/changes-since-last-success-plugin.git", + "ssh_url": "git@github.com:jenkinsci/changes-since-last-success-plugin.git", + "clone_url": "https://github.com/jenkinsci/changes-since-last-success-plugin.git", + "svn_url": "https://github.com/jenkinsci/changes-since-last-success-plugin", + "homepage": "", + "size": 26, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 11, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 11, + "open_issues": 1, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 4497430, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDk3NDMw", + "name": "ldap-plugin", + "full_name": "jenkinsci/ldap-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/ldap-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/ldap-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/ldap-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/ldap-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/ldap-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/ldap-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/ldap-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/ldap-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/ldap-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/ldap-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/ldap-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/ldap-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/ldap-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/ldap-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/ldap-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/ldap-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/ldap-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/ldap-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/ldap-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/ldap-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/ldap-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/ldap-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/ldap-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/ldap-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/ldap-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/ldap-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/ldap-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/ldap-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/ldap-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/ldap-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/ldap-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/ldap-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/ldap-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/ldap-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/ldap-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/ldap-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/ldap-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/ldap-plugin/deployments", + "created_at": "2012-05-30T16:54:27Z", + "updated_at": "2019-10-07T09:43:31Z", + "pushed_at": "2019-09-27T16:02:16Z", + "git_url": "git://github.com/jenkinsci/ldap-plugin.git", + "ssh_url": "git@github.com:jenkinsci/ldap-plugin.git", + "clone_url": "https://github.com/jenkinsci/ldap-plugin.git", + "svn_url": "https://github.com/jenkinsci/ldap-plugin", + "homepage": "", + "size": 645, + "stargazers_count": 22, + "watchers_count": 22, + "language": "Java", + "has_issues": false, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 59, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 7, + "license": null, + "forks": 59, + "open_issues": 7, + "watchers": 22, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 4497439, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDk3NDM5", + "name": "pam-auth-plugin", + "full_name": "jenkinsci/pam-auth-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pam-auth-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/pam-auth-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pam-auth-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pam-auth-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pam-auth-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pam-auth-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pam-auth-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pam-auth-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pam-auth-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pam-auth-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pam-auth-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pam-auth-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pam-auth-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pam-auth-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pam-auth-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pam-auth-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pam-auth-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pam-auth-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pam-auth-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pam-auth-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pam-auth-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pam-auth-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pam-auth-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pam-auth-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pam-auth-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pam-auth-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pam-auth-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pam-auth-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pam-auth-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pam-auth-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pam-auth-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pam-auth-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pam-auth-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pam-auth-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pam-auth-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pam-auth-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pam-auth-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pam-auth-plugin/deployments", + "created_at": "2012-05-30T16:55:04Z", + "updated_at": "2019-10-14T15:29:45Z", + "pushed_at": "2019-10-14T15:29:43Z", + "git_url": "git://github.com/jenkinsci/pam-auth-plugin.git", + "ssh_url": "git@github.com:jenkinsci/pam-auth-plugin.git", + "clone_url": "https://github.com/jenkinsci/pam-auth-plugin.git", + "svn_url": "https://github.com/jenkinsci/pam-auth-plugin", + "homepage": "", + "size": 87, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 12, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 12, + "open_issues": 0, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 4502548, + "node_id": "MDEwOlJlcG9zaXRvcnk0NTAyNTQ4", + "name": "blitz_io-plugin", + "full_name": "jenkinsci/blitz_io-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/blitz_io-plugin", + "description": "Jenkins plugin for using the blitz.io performance testing.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/blitz_io-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/blitz_io-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/blitz_io-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/blitz_io-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/blitz_io-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/blitz_io-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/blitz_io-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/blitz_io-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/blitz_io-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/blitz_io-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/blitz_io-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/blitz_io-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/blitz_io-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/blitz_io-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/blitz_io-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/blitz_io-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/blitz_io-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/blitz_io-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/blitz_io-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/blitz_io-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/blitz_io-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/blitz_io-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/blitz_io-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/blitz_io-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/blitz_io-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/blitz_io-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/blitz_io-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/blitz_io-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/blitz_io-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/blitz_io-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/blitz_io-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/blitz_io-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/blitz_io-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/blitz_io-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/blitz_io-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/blitz_io-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/blitz_io-plugin/deployments", + "created_at": "2012-05-31T01:22:28Z", + "updated_at": "2016-05-29T22:33:30Z", + "pushed_at": "2013-11-10T01:54:52Z", + "git_url": "git://github.com/jenkinsci/blitz_io-plugin.git", + "ssh_url": "git@github.com:jenkinsci/blitz_io-plugin.git", + "clone_url": "https://github.com/jenkinsci/blitz_io-plugin.git", + "svn_url": "https://github.com/jenkinsci/blitz_io-plugin", + "homepage": null, + "size": 191, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 4502980, + "node_id": "MDEwOlJlcG9zaXRvcnk0NTAyOTgw", + "name": "configure-job-column-plugin", + "full_name": "jenkinsci/configure-job-column-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/configure-job-column-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/configure-job-column-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/configure-job-column-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/configure-job-column-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/configure-job-column-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/configure-job-column-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/configure-job-column-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/configure-job-column-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/configure-job-column-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/configure-job-column-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/configure-job-column-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/configure-job-column-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/configure-job-column-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/configure-job-column-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/configure-job-column-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/configure-job-column-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/configure-job-column-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/configure-job-column-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/configure-job-column-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/configure-job-column-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/configure-job-column-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/configure-job-column-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/configure-job-column-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/configure-job-column-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/configure-job-column-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/configure-job-column-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/configure-job-column-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/configure-job-column-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/configure-job-column-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/configure-job-column-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/configure-job-column-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/configure-job-column-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/configure-job-column-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/configure-job-column-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/configure-job-column-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/configure-job-column-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/configure-job-column-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/configure-job-column-plugin/deployments", + "created_at": "2012-05-31T02:24:58Z", + "updated_at": "2018-07-19T09:55:57Z", + "pushed_at": "2019-10-08T11:44:09Z", + "git_url": "git://github.com/jenkinsci/configure-job-column-plugin.git", + "ssh_url": "git@github.com:jenkinsci/configure-job-column-plugin.git", + "clone_url": "https://github.com/jenkinsci/configure-job-column-plugin.git", + "svn_url": "https://github.com/jenkinsci/configure-job-column-plugin", + "homepage": "", + "size": 10, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 2, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 4507112, + "node_id": "MDEwOlJlcG9zaXRvcnk0NTA3MTEy", + "name": "testabilityexplorer", + "full_name": "jenkinsci/testabilityexplorer", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/testabilityexplorer", + "description": "testability-explorer-plugin for jenkins-ci", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/testabilityexplorer", + "forks_url": "https://api.github.com/repos/jenkinsci/testabilityexplorer/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/testabilityexplorer/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/testabilityexplorer/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/testabilityexplorer/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/testabilityexplorer/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/testabilityexplorer/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/testabilityexplorer/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/testabilityexplorer/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/testabilityexplorer/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/testabilityexplorer/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/testabilityexplorer/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/testabilityexplorer/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/testabilityexplorer/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/testabilityexplorer/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/testabilityexplorer/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/testabilityexplorer/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/testabilityexplorer/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/testabilityexplorer/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/testabilityexplorer/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/testabilityexplorer/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/testabilityexplorer/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/testabilityexplorer/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/testabilityexplorer/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/testabilityexplorer/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/testabilityexplorer/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/testabilityexplorer/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/testabilityexplorer/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/testabilityexplorer/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/testabilityexplorer/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/testabilityexplorer/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/testabilityexplorer/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/testabilityexplorer/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/testabilityexplorer/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/testabilityexplorer/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/testabilityexplorer/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/testabilityexplorer/deployments", + "created_at": "2012-05-31T12:00:19Z", + "updated_at": "2015-07-07T22:58:08Z", + "pushed_at": "2013-11-10T02:20:25Z", + "git_url": "git://github.com/jenkinsci/testabilityexplorer.git", + "ssh_url": "git@github.com:jenkinsci/testabilityexplorer.git", + "clone_url": "https://github.com/jenkinsci/testabilityexplorer.git", + "svn_url": "https://github.com/jenkinsci/testabilityexplorer", + "homepage": null, + "size": 318, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 4522681, + "node_id": "MDEwOlJlcG9zaXRvcnk0NTIyNjgx", + "name": "jacoco-plugin", + "full_name": "jenkinsci/jacoco-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jacoco-plugin", + "description": "Jenkins JaCoCo Plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jacoco-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/jacoco-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jacoco-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jacoco-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jacoco-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jacoco-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jacoco-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jacoco-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jacoco-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jacoco-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jacoco-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jacoco-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jacoco-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jacoco-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jacoco-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jacoco-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jacoco-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jacoco-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jacoco-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jacoco-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jacoco-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jacoco-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jacoco-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jacoco-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jacoco-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jacoco-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jacoco-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jacoco-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jacoco-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jacoco-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jacoco-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jacoco-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jacoco-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jacoco-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jacoco-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jacoco-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jacoco-plugin/deployments", + "created_at": "2012-06-01T18:12:38Z", + "updated_at": "2019-10-20T21:08:49Z", + "pushed_at": "2019-10-20T21:08:47Z", + "git_url": "git://github.com/jenkinsci/jacoco-plugin.git", + "ssh_url": "git@github.com:jenkinsci/jacoco-plugin.git", + "clone_url": "https://github.com/jenkinsci/jacoco-plugin.git", + "svn_url": "https://github.com/jenkinsci/jacoco-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/JaCoCo+Plugin", + "size": 1427, + "stargazers_count": 107, + "watchers_count": 107, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 133, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 9, + "license": null, + "forks": 133, + "open_issues": 9, + "watchers": 107, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 4605933, + "node_id": "MDEwOlJlcG9zaXRvcnk0NjA1OTMz", + "name": "yammer-plugin", + "full_name": "jenkinsci/yammer-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/yammer-plugin", + "description": "The Yammer Plugin for Jenkins enables notifications to be sent to a Yammer group on the success or failure of a build.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/yammer-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/yammer-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/yammer-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/yammer-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/yammer-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/yammer-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/yammer-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/yammer-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/yammer-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/yammer-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/yammer-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/yammer-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/yammer-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/yammer-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/yammer-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/yammer-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/yammer-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/yammer-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/yammer-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/yammer-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/yammer-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/yammer-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/yammer-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/yammer-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/yammer-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/yammer-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/yammer-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/yammer-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/yammer-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/yammer-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/yammer-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/yammer-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/yammer-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/yammer-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/yammer-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/yammer-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/yammer-plugin/deployments", + "created_at": "2012-06-09T08:41:10Z", + "updated_at": "2017-09-22T03:51:24Z", + "pushed_at": "2016-03-21T21:27:16Z", + "git_url": "git://github.com/jenkinsci/yammer-plugin.git", + "ssh_url": "git@github.com:jenkinsci/yammer-plugin.git", + "clone_url": "https://github.com/jenkinsci/yammer-plugin.git", + "svn_url": "https://github.com/jenkinsci/yammer-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Yammer+Plugin", + "size": 546, + "stargazers_count": 7, + "watchers_count": 7, + "language": "Ruby", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 7, + "license": null, + "forks": 5, + "open_issues": 7, + "watchers": 7, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 4606347, + "node_id": "MDEwOlJlcG9zaXRvcnk0NjA2MzQ3", + "name": "stackhammer-plugin", + "full_name": "jenkinsci/stackhammer-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/stackhammer-plugin", + "description": "A Jenkins plugin that performs Stack Hammer Validation", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/stackhammer-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/stackhammer-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/stackhammer-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/stackhammer-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/stackhammer-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/stackhammer-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/stackhammer-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/stackhammer-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/stackhammer-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/stackhammer-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/stackhammer-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/stackhammer-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/stackhammer-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/stackhammer-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/stackhammer-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/stackhammer-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/stackhammer-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/stackhammer-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/stackhammer-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/stackhammer-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/stackhammer-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/stackhammer-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/stackhammer-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/stackhammer-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/stackhammer-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/stackhammer-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/stackhammer-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/stackhammer-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/stackhammer-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/stackhammer-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/stackhammer-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/stackhammer-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/stackhammer-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/stackhammer-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/stackhammer-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/stackhammer-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/stackhammer-plugin/deployments", + "created_at": "2012-06-09T10:04:02Z", + "updated_at": "2017-05-21T03:09:54Z", + "pushed_at": "2013-11-10T02:19:03Z", + "git_url": "git://github.com/jenkinsci/stackhammer-plugin.git", + "ssh_url": "git@github.com:jenkinsci/stackhammer-plugin.git", + "clone_url": "https://github.com/jenkinsci/stackhammer-plugin.git", + "svn_url": "https://github.com/jenkinsci/stackhammer-plugin", + "homepage": null, + "size": 248, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 4613960, + "node_id": "MDEwOlJlcG9zaXRvcnk0NjEzOTYw", + "name": "regression-report-plugin", + "full_name": "jenkinsci/regression-report-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/regression-report-plugin", + "description": "Jenkins plugin to report enbugs", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/regression-report-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/regression-report-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/regression-report-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/regression-report-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/regression-report-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/regression-report-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/regression-report-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/regression-report-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/regression-report-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/regression-report-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/regression-report-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/regression-report-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/regression-report-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/regression-report-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/regression-report-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/regression-report-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/regression-report-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/regression-report-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/regression-report-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/regression-report-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/regression-report-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/regression-report-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/regression-report-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/regression-report-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/regression-report-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/regression-report-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/regression-report-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/regression-report-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/regression-report-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/regression-report-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/regression-report-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/regression-report-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/regression-report-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/regression-report-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/regression-report-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/regression-report-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/regression-report-plugin/deployments", + "created_at": "2012-06-10T09:31:14Z", + "updated_at": "2018-07-05T13:01:46Z", + "pushed_at": "2019-10-08T16:19:13Z", + "git_url": "git://github.com/jenkinsci/regression-report-plugin.git", + "ssh_url": "git@github.com:jenkinsci/regression-report-plugin.git", + "clone_url": "https://github.com/jenkinsci/regression-report-plugin.git", + "svn_url": "https://github.com/jenkinsci/regression-report-plugin", + "homepage": "https://plugins.jenkins.io/regression-report-plugin", + "size": 228, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 7, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 6, + "license": null, + "forks": 7, + "open_issues": 6, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 4702952, + "node_id": "MDEwOlJlcG9zaXRvcnk0NzAyOTUy", + "name": "summary_report-plugin", + "full_name": "jenkinsci/summary_report-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/summary_report-plugin", + "description": "Hudson Summary Display Plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/summary_report-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/summary_report-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/summary_report-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/summary_report-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/summary_report-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/summary_report-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/summary_report-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/summary_report-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/summary_report-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/summary_report-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/summary_report-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/summary_report-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/summary_report-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/summary_report-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/summary_report-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/summary_report-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/summary_report-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/summary_report-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/summary_report-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/summary_report-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/summary_report-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/summary_report-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/summary_report-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/summary_report-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/summary_report-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/summary_report-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/summary_report-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/summary_report-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/summary_report-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/summary_report-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/summary_report-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/summary_report-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/summary_report-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/summary_report-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/summary_report-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/summary_report-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/summary_report-plugin/deployments", + "created_at": "2012-06-18T16:02:16Z", + "updated_at": "2018-08-31T02:17:36Z", + "pushed_at": "2019-10-08T11:21:17Z", + "git_url": "git://github.com/jenkinsci/summary_report-plugin.git", + "ssh_url": "git@github.com:jenkinsci/summary_report-plugin.git", + "clone_url": "https://github.com/jenkinsci/summary_report-plugin.git", + "svn_url": "https://github.com/jenkinsci/summary_report-plugin", + "homepage": null, + "size": 304, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 8, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 8, + "open_issues": 2, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 4705270, + "node_id": "MDEwOlJlcG9zaXRvcnk0NzA1Mjcw", + "name": "arbitrary-parameters-plugin", + "full_name": "jenkinsci/arbitrary-parameters-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/arbitrary-parameters-plugin", + "description": "Jenkins plugin for string parameters in properties file format", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/arbitrary-parameters-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/arbitrary-parameters-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/arbitrary-parameters-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/arbitrary-parameters-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/arbitrary-parameters-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/arbitrary-parameters-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/arbitrary-parameters-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/arbitrary-parameters-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/arbitrary-parameters-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/arbitrary-parameters-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/arbitrary-parameters-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/arbitrary-parameters-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/arbitrary-parameters-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/arbitrary-parameters-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/arbitrary-parameters-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/arbitrary-parameters-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/arbitrary-parameters-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/arbitrary-parameters-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/arbitrary-parameters-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/arbitrary-parameters-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/arbitrary-parameters-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/arbitrary-parameters-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/arbitrary-parameters-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/arbitrary-parameters-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/arbitrary-parameters-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/arbitrary-parameters-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/arbitrary-parameters-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/arbitrary-parameters-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/arbitrary-parameters-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/arbitrary-parameters-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/arbitrary-parameters-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/arbitrary-parameters-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/arbitrary-parameters-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/arbitrary-parameters-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/arbitrary-parameters-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/arbitrary-parameters-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/arbitrary-parameters-plugin/deployments", + "created_at": "2012-06-18T19:30:56Z", + "updated_at": "2013-11-10T01:53:12Z", + "pushed_at": "2013-11-10T01:53:10Z", + "git_url": "git://github.com/jenkinsci/arbitrary-parameters-plugin.git", + "ssh_url": "git@github.com:jenkinsci/arbitrary-parameters-plugin.git", + "clone_url": "https://github.com/jenkinsci/arbitrary-parameters-plugin.git", + "svn_url": "https://github.com/jenkinsci/arbitrary-parameters-plugin", + "homepage": null, + "size": 101, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 4712216, + "node_id": "MDEwOlJlcG9zaXRvcnk0NzEyMjE2", + "name": "maven-license-plugin", + "full_name": "jenkinsci/maven-license-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/maven-license-plugin", + "description": "Generates license information for Jenkins plugins", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/maven-license-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/maven-license-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/maven-license-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/maven-license-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/maven-license-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/maven-license-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/maven-license-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/maven-license-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/maven-license-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/maven-license-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/maven-license-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/maven-license-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/maven-license-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/maven-license-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/maven-license-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/maven-license-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/maven-license-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/maven-license-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/maven-license-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/maven-license-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/maven-license-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/maven-license-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/maven-license-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/maven-license-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/maven-license-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/maven-license-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/maven-license-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/maven-license-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/maven-license-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/maven-license-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/maven-license-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/maven-license-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/maven-license-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/maven-license-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/maven-license-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/maven-license-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/maven-license-plugin/deployments", + "created_at": "2012-06-19T10:20:35Z", + "updated_at": "2013-01-09T18:55:09Z", + "pushed_at": "2012-06-18T18:46:50Z", + "git_url": "git://github.com/jenkinsci/maven-license-plugin.git", + "ssh_url": "git@github.com:jenkinsci/maven-license-plugin.git", + "clone_url": "https://github.com/jenkinsci/maven-license-plugin.git", + "svn_url": "https://github.com/jenkinsci/maven-license-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 120, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 4756288, + "node_id": "MDEwOlJlcG9zaXRvcnk0NzU2Mjg4", + "name": "form-element-path-plugin", + "full_name": "jenkinsci/form-element-path-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/form-element-path-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/form-element-path-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/form-element-path-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/form-element-path-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/form-element-path-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/form-element-path-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/form-element-path-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/form-element-path-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/form-element-path-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/form-element-path-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/form-element-path-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/form-element-path-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/form-element-path-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/form-element-path-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/form-element-path-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/form-element-path-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/form-element-path-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/form-element-path-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/form-element-path-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/form-element-path-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/form-element-path-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/form-element-path-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/form-element-path-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/form-element-path-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/form-element-path-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/form-element-path-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/form-element-path-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/form-element-path-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/form-element-path-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/form-element-path-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/form-element-path-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/form-element-path-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/form-element-path-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/form-element-path-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/form-element-path-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/form-element-path-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/form-element-path-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/form-element-path-plugin/deployments", + "created_at": "2012-06-22T21:53:02Z", + "updated_at": "2019-06-11T14:20:15Z", + "pushed_at": "2019-06-11T14:20:13Z", + "git_url": "git://github.com/jenkinsci/form-element-path-plugin.git", + "ssh_url": "git@github.com:jenkinsci/form-element-path-plugin.git", + "clone_url": "https://github.com/jenkinsci/form-element-path-plugin.git", + "svn_url": "https://github.com/jenkinsci/form-element-path-plugin", + "homepage": "", + "size": 37, + "stargazers_count": 1, + "watchers_count": 1, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 7, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 7, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 4766802, + "node_id": "MDEwOlJlcG9zaXRvcnk0NzY2ODAy", + "name": "build-blocker-plugin", + "full_name": "jenkinsci/build-blocker-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/build-blocker-plugin", + "description": "Jenkins build blocker plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/build-blocker-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/build-blocker-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/build-blocker-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/build-blocker-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/build-blocker-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/build-blocker-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/build-blocker-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/build-blocker-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/build-blocker-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/build-blocker-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/build-blocker-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/build-blocker-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/build-blocker-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/build-blocker-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/build-blocker-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/build-blocker-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/build-blocker-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/build-blocker-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/build-blocker-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/build-blocker-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/build-blocker-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/build-blocker-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/build-blocker-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/build-blocker-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/build-blocker-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/build-blocker-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/build-blocker-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/build-blocker-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/build-blocker-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/build-blocker-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/build-blocker-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/build-blocker-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/build-blocker-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/build-blocker-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/build-blocker-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/build-blocker-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/build-blocker-plugin/deployments", + "created_at": "2012-06-23T18:54:35Z", + "updated_at": "2018-11-06T07:48:38Z", + "pushed_at": "2019-09-24T10:13:13Z", + "git_url": "git://github.com/jenkinsci/build-blocker-plugin.git", + "ssh_url": "git@github.com:jenkinsci/build-blocker-plugin.git", + "clone_url": "https://github.com/jenkinsci/build-blocker-plugin.git", + "svn_url": "https://github.com/jenkinsci/build-blocker-plugin", + "homepage": null, + "size": 150, + "stargazers_count": 9, + "watchers_count": 9, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 31, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 31, + "open_issues": 2, + "watchers": 9, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 4779057, + "node_id": "MDEwOlJlcG9zaXRvcnk0Nzc5MDU3", + "name": "search-all-results-plugin", + "full_name": "jenkinsci/search-all-results-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/search-all-results-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/search-all-results-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/search-all-results-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/search-all-results-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/search-all-results-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/search-all-results-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/search-all-results-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/search-all-results-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/search-all-results-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/search-all-results-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/search-all-results-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/search-all-results-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/search-all-results-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/search-all-results-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/search-all-results-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/search-all-results-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/search-all-results-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/search-all-results-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/search-all-results-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/search-all-results-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/search-all-results-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/search-all-results-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/search-all-results-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/search-all-results-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/search-all-results-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/search-all-results-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/search-all-results-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/search-all-results-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/search-all-results-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/search-all-results-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/search-all-results-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/search-all-results-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/search-all-results-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/search-all-results-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/search-all-results-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/search-all-results-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/search-all-results-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/search-all-results-plugin/deployments", + "created_at": "2012-06-25T07:33:58Z", + "updated_at": "2019-08-14T12:12:50Z", + "pushed_at": "2019-08-14T12:12:48Z", + "git_url": "git://github.com/jenkinsci/search-all-results-plugin.git", + "ssh_url": "git@github.com:jenkinsci/search-all-results-plugin.git", + "clone_url": "https://github.com/jenkinsci/search-all-results-plugin.git", + "svn_url": "https://github.com/jenkinsci/search-all-results-plugin", + "homepage": null, + "size": 9, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 4793229, + "node_id": "MDEwOlJlcG9zaXRvcnk0NzkzMjI5", + "name": "xpdev-plugin", + "full_name": "jenkinsci/xpdev-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/xpdev-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/xpdev-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/xpdev-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/xpdev-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/xpdev-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/xpdev-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/xpdev-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/xpdev-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/xpdev-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/xpdev-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/xpdev-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/xpdev-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/xpdev-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/xpdev-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/xpdev-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/xpdev-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/xpdev-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/xpdev-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/xpdev-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/xpdev-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/xpdev-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/xpdev-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/xpdev-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/xpdev-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/xpdev-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/xpdev-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/xpdev-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/xpdev-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/xpdev-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/xpdev-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/xpdev-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/xpdev-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/xpdev-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/xpdev-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/xpdev-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/xpdev-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/xpdev-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/xpdev-plugin/deployments", + "created_at": "2012-06-26T09:33:32Z", + "updated_at": "2019-09-16T09:23:14Z", + "pushed_at": "2013-11-10T02:23:12Z", + "git_url": "git://github.com/jenkinsci/xpdev-plugin.git", + "ssh_url": "git@github.com:jenkinsci/xpdev-plugin.git", + "clone_url": "https://github.com/jenkinsci/xpdev-plugin.git", + "svn_url": "https://github.com/jenkinsci/xpdev-plugin", + "homepage": null, + "size": 96, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 4941779, + "node_id": "MDEwOlJlcG9zaXRvcnk0OTQxNzc5", + "name": "r-plugin", + "full_name": "jenkinsci/r-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/r-plugin", + "description": "r-plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/r-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/r-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/r-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/r-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/r-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/r-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/r-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/r-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/r-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/r-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/r-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/r-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/r-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/r-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/r-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/r-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/r-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/r-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/r-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/r-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/r-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/r-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/r-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/r-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/r-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/r-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/r-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/r-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/r-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/r-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/r-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/r-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/r-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/r-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/r-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/r-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/r-plugin/deployments", + "created_at": "2012-07-07T22:15:06Z", + "updated_at": "2019-05-03T13:47:55Z", + "pushed_at": "2017-05-20T01:31:33Z", + "git_url": "git://github.com/jenkinsci/r-plugin.git", + "ssh_url": "git@github.com:jenkinsci/r-plugin.git", + "clone_url": "https://github.com/jenkinsci/r-plugin.git", + "svn_url": "https://github.com/jenkinsci/r-plugin", + "homepage": null, + "size": 25, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 3, + "open_issues": 0, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 4984696, + "node_id": "MDEwOlJlcG9zaXRvcnk0OTg0Njk2", + "name": "jbpm-workflow-plugin", + "full_name": "jenkinsci/jbpm-workflow-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jbpm-workflow-plugin", + "description": "jBPM 5 workflow extension for Jenkins CI.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/jbpm-workflow-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/jbpm-workflow-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jbpm-workflow-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jbpm-workflow-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jbpm-workflow-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jbpm-workflow-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jbpm-workflow-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jbpm-workflow-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jbpm-workflow-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jbpm-workflow-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jbpm-workflow-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jbpm-workflow-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jbpm-workflow-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jbpm-workflow-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jbpm-workflow-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jbpm-workflow-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jbpm-workflow-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jbpm-workflow-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jbpm-workflow-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jbpm-workflow-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jbpm-workflow-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jbpm-workflow-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jbpm-workflow-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jbpm-workflow-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jbpm-workflow-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jbpm-workflow-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jbpm-workflow-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jbpm-workflow-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jbpm-workflow-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jbpm-workflow-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jbpm-workflow-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jbpm-workflow-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jbpm-workflow-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jbpm-workflow-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jbpm-workflow-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jbpm-workflow-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jbpm-workflow-plugin/deployments", + "created_at": "2012-07-11T05:09:51Z", + "updated_at": "2018-12-31T21:56:49Z", + "pushed_at": "2013-11-10T02:06:13Z", + "git_url": "git://github.com/jenkinsci/jbpm-workflow-plugin.git", + "ssh_url": "git@github.com:jenkinsci/jbpm-workflow-plugin.git", + "clone_url": "https://github.com/jenkinsci/jbpm-workflow-plugin.git", + "svn_url": "https://github.com/jenkinsci/jbpm-workflow-plugin", + "homepage": "", + "size": 268, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 4986025, + "node_id": "MDEwOlJlcG9zaXRvcnk0OTg2MDI1", + "name": "logging-plugin", + "full_name": "jenkinsci/logging-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/logging-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/logging-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/logging-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/logging-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/logging-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/logging-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/logging-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/logging-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/logging-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/logging-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/logging-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/logging-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/logging-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/logging-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/logging-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/logging-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/logging-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/logging-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/logging-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/logging-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/logging-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/logging-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/logging-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/logging-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/logging-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/logging-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/logging-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/logging-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/logging-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/logging-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/logging-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/logging-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/logging-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/logging-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/logging-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/logging-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/logging-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/logging-plugin/deployments", + "created_at": "2012-07-11T07:55:31Z", + "updated_at": "2013-11-10T02:10:01Z", + "pushed_at": "2019-10-08T12:22:18Z", + "git_url": "git://github.com/jenkinsci/logging-plugin.git", + "ssh_url": "git@github.com:jenkinsci/logging-plugin.git", + "clone_url": "https://github.com/jenkinsci/logging-plugin.git", + "svn_url": "https://github.com/jenkinsci/logging-plugin", + "homepage": null, + "size": 215, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 1, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 4999466, + "node_id": "MDEwOlJlcG9zaXRvcnk0OTk5NDY2", + "name": "lotus-connections-plugin", + "full_name": "jenkinsci/lotus-connections-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/lotus-connections-plugin", + "description": "This is a jenkins plugin that post build results to Lotus Connections", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/lotus-connections-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/lotus-connections-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/lotus-connections-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/lotus-connections-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/lotus-connections-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/lotus-connections-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/lotus-connections-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/lotus-connections-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/lotus-connections-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/lotus-connections-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/lotus-connections-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/lotus-connections-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/lotus-connections-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/lotus-connections-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/lotus-connections-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/lotus-connections-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/lotus-connections-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/lotus-connections-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/lotus-connections-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/lotus-connections-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/lotus-connections-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/lotus-connections-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/lotus-connections-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/lotus-connections-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/lotus-connections-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/lotus-connections-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/lotus-connections-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/lotus-connections-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/lotus-connections-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/lotus-connections-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/lotus-connections-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/lotus-connections-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/lotus-connections-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/lotus-connections-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/lotus-connections-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/lotus-connections-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/lotus-connections-plugin/deployments", + "created_at": "2012-07-12T05:45:27Z", + "updated_at": "2019-01-31T04:18:27Z", + "pushed_at": "2014-07-22T15:11:45Z", + "git_url": "git://github.com/jenkinsci/lotus-connections-plugin.git", + "ssh_url": "git@github.com:jenkinsci/lotus-connections-plugin.git", + "clone_url": "https://github.com/jenkinsci/lotus-connections-plugin.git", + "svn_url": "https://github.com/jenkinsci/lotus-connections-plugin", + "homepage": null, + "size": 337, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 5000938, + "node_id": "MDEwOlJlcG9zaXRvcnk1MDAwOTM4", + "name": "custom-history-plugin", + "full_name": "jenkinsci/custom-history-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/custom-history-plugin", + "description": "CustomHistory plugin for jenkins", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/custom-history-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/custom-history-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/custom-history-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/custom-history-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/custom-history-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/custom-history-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/custom-history-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/custom-history-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/custom-history-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/custom-history-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/custom-history-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/custom-history-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/custom-history-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/custom-history-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/custom-history-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/custom-history-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/custom-history-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/custom-history-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/custom-history-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/custom-history-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/custom-history-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/custom-history-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/custom-history-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/custom-history-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/custom-history-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/custom-history-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/custom-history-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/custom-history-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/custom-history-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/custom-history-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/custom-history-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/custom-history-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/custom-history-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/custom-history-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/custom-history-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/custom-history-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/custom-history-plugin/deployments", + "created_at": "2012-07-12T08:37:28Z", + "updated_at": "2019-03-08T12:03:36Z", + "pushed_at": "2019-10-08T16:44:41Z", + "git_url": "git://github.com/jenkinsci/custom-history-plugin.git", + "ssh_url": "git@github.com:jenkinsci/custom-history-plugin.git", + "clone_url": "https://github.com/jenkinsci/custom-history-plugin.git", + "svn_url": "https://github.com/jenkinsci/custom-history-plugin", + "homepage": null, + "size": 158, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 3, + "open_issues": 1, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 5017281, + "node_id": "MDEwOlJlcG9zaXRvcnk1MDE3Mjgx", + "name": "image-gallery-plugin", + "full_name": "jenkinsci/image-gallery-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/image-gallery-plugin", + "description": "Jenkins Plug-in for displaying galleries of images from a job workspace", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/image-gallery-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/image-gallery-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/image-gallery-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/image-gallery-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/image-gallery-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/image-gallery-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/image-gallery-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/image-gallery-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/image-gallery-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/image-gallery-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/image-gallery-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/image-gallery-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/image-gallery-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/image-gallery-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/image-gallery-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/image-gallery-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/image-gallery-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/image-gallery-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/image-gallery-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/image-gallery-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/image-gallery-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/image-gallery-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/image-gallery-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/image-gallery-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/image-gallery-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/image-gallery-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/image-gallery-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/image-gallery-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/image-gallery-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/image-gallery-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/image-gallery-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/image-gallery-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/image-gallery-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/image-gallery-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/image-gallery-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/image-gallery-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/image-gallery-plugin/deployments", + "created_at": "2012-07-13T09:23:08Z", + "updated_at": "2016-06-21T06:36:35Z", + "pushed_at": "2019-10-08T11:48:01Z", + "git_url": "git://github.com/jenkinsci/image-gallery-plugin.git", + "ssh_url": "git@github.com:jenkinsci/image-gallery-plugin.git", + "clone_url": "https://github.com/jenkinsci/image-gallery-plugin.git", + "svn_url": "https://github.com/jenkinsci/image-gallery-plugin", + "homepage": null, + "size": 248, + "stargazers_count": 3, + "watchers_count": 3, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 6, + "open_issues": 2, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 5019041, + "node_id": "MDEwOlJlcG9zaXRvcnk1MDE5MDQx", + "name": "text-finder-run-condition-plugin", + "full_name": "jenkinsci/text-finder-run-condition-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/text-finder-run-condition-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/text-finder-run-condition-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/text-finder-run-condition-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/text-finder-run-condition-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/text-finder-run-condition-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/text-finder-run-condition-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/text-finder-run-condition-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/text-finder-run-condition-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/text-finder-run-condition-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/text-finder-run-condition-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/text-finder-run-condition-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/text-finder-run-condition-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/text-finder-run-condition-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/text-finder-run-condition-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/text-finder-run-condition-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/text-finder-run-condition-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/text-finder-run-condition-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/text-finder-run-condition-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/text-finder-run-condition-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/text-finder-run-condition-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/text-finder-run-condition-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/text-finder-run-condition-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/text-finder-run-condition-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/text-finder-run-condition-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/text-finder-run-condition-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/text-finder-run-condition-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/text-finder-run-condition-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/text-finder-run-condition-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/text-finder-run-condition-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/text-finder-run-condition-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/text-finder-run-condition-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/text-finder-run-condition-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/text-finder-run-condition-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/text-finder-run-condition-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/text-finder-run-condition-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/text-finder-run-condition-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/text-finder-run-condition-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/text-finder-run-condition-plugin/deployments", + "created_at": "2012-07-13T12:30:20Z", + "updated_at": "2013-11-10T02:20:48Z", + "pushed_at": "2019-10-08T11:12:44Z", + "git_url": "git://github.com/jenkinsci/text-finder-run-condition-plugin.git", + "ssh_url": "git@github.com:jenkinsci/text-finder-run-condition-plugin.git", + "clone_url": "https://github.com/jenkinsci/text-finder-run-condition-plugin.git", + "svn_url": "https://github.com/jenkinsci/text-finder-run-condition-plugin", + "homepage": null, + "size": 106, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 1, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 5021074, + "node_id": "MDEwOlJlcG9zaXRvcnk1MDIxMDc0", + "name": "maven-invoker-plugin", + "full_name": "jenkinsci/maven-invoker-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/maven-invoker-plugin", + "description": "maven-invoker-plugin for jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/maven-invoker-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/maven-invoker-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/maven-invoker-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/maven-invoker-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/maven-invoker-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/maven-invoker-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/maven-invoker-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/maven-invoker-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/maven-invoker-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/maven-invoker-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/maven-invoker-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/maven-invoker-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/maven-invoker-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/maven-invoker-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/maven-invoker-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/maven-invoker-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/maven-invoker-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/maven-invoker-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/maven-invoker-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/maven-invoker-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/maven-invoker-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/maven-invoker-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/maven-invoker-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/maven-invoker-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/maven-invoker-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/maven-invoker-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/maven-invoker-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/maven-invoker-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/maven-invoker-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/maven-invoker-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/maven-invoker-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/maven-invoker-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/maven-invoker-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/maven-invoker-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/maven-invoker-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/maven-invoker-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/maven-invoker-plugin/deployments", + "created_at": "2012-07-13T15:22:58Z", + "updated_at": "2019-10-08T10:42:49Z", + "pushed_at": "2019-10-08T10:42:46Z", + "git_url": "git://github.com/jenkinsci/maven-invoker-plugin.git", + "ssh_url": "git@github.com:jenkinsci/maven-invoker-plugin.git", + "clone_url": "https://github.com/jenkinsci/maven-invoker-plugin.git", + "svn_url": "https://github.com/jenkinsci/maven-invoker-plugin", + "homepage": null, + "size": 206, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 5, + "open_issues": 0, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 5082943, + "node_id": "MDEwOlJlcG9zaXRvcnk1MDgyOTQz", + "name": "whitesource-plugin", + "full_name": "jenkinsci/whitesource-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/whitesource-plugin", + "description": "External update agent for the Jenkins CI tool", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/whitesource-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/whitesource-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/whitesource-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/whitesource-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/whitesource-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/whitesource-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/whitesource-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/whitesource-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/whitesource-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/whitesource-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/whitesource-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/whitesource-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/whitesource-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/whitesource-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/whitesource-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/whitesource-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/whitesource-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/whitesource-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/whitesource-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/whitesource-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/whitesource-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/whitesource-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/whitesource-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/whitesource-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/whitesource-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/whitesource-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/whitesource-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/whitesource-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/whitesource-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/whitesource-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/whitesource-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/whitesource-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/whitesource-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/whitesource-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/whitesource-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/whitesource-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/whitesource-plugin/deployments", + "created_at": "2012-07-17T14:26:49Z", + "updated_at": "2019-10-16T14:38:41Z", + "pushed_at": "2019-10-16T14:40:06Z", + "git_url": "git://github.com/jenkinsci/whitesource-plugin.git", + "ssh_url": "git@github.com:jenkinsci/whitesource-plugin.git", + "clone_url": "https://github.com/jenkinsci/whitesource-plugin.git", + "svn_url": "https://github.com/jenkinsci/whitesource-plugin", + "homepage": null, + "size": 327, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": true, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 4, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 6, + "open_issues": 4, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 5127309, + "node_id": "MDEwOlJlcG9zaXRvcnk1MTI3MzA5", + "name": "leiningen-plugin", + "full_name": "jenkinsci/leiningen-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/leiningen-plugin", + "description": "Jenkins plugin which provides leiningen build steps", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/leiningen-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/leiningen-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/leiningen-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/leiningen-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/leiningen-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/leiningen-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/leiningen-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/leiningen-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/leiningen-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/leiningen-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/leiningen-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/leiningen-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/leiningen-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/leiningen-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/leiningen-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/leiningen-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/leiningen-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/leiningen-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/leiningen-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/leiningen-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/leiningen-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/leiningen-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/leiningen-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/leiningen-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/leiningen-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/leiningen-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/leiningen-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/leiningen-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/leiningen-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/leiningen-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/leiningen-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/leiningen-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/leiningen-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/leiningen-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/leiningen-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/leiningen-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/leiningen-plugin/deployments", + "created_at": "2012-07-20T19:19:04Z", + "updated_at": "2018-07-08T01:44:53Z", + "pushed_at": "2014-11-20T15:22:35Z", + "git_url": "git://github.com/jenkinsci/leiningen-plugin.git", + "ssh_url": "git@github.com:jenkinsci/leiningen-plugin.git", + "clone_url": "https://github.com/jenkinsci/leiningen-plugin.git", + "svn_url": "https://github.com/jenkinsci/leiningen-plugin", + "homepage": null, + "size": 267, + "stargazers_count": 13, + "watchers_count": 13, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 12, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 12, + "open_issues": 2, + "watchers": 13, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 5149000, + "node_id": "MDEwOlJlcG9zaXRvcnk1MTQ5MDAw", + "name": "build-cause-run-condition-plugin", + "full_name": "jenkinsci/build-cause-run-condition-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/build-cause-run-condition-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/build-cause-run-condition-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/build-cause-run-condition-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/build-cause-run-condition-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/build-cause-run-condition-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/build-cause-run-condition-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/build-cause-run-condition-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/build-cause-run-condition-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/build-cause-run-condition-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/build-cause-run-condition-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/build-cause-run-condition-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/build-cause-run-condition-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/build-cause-run-condition-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/build-cause-run-condition-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/build-cause-run-condition-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/build-cause-run-condition-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/build-cause-run-condition-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/build-cause-run-condition-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/build-cause-run-condition-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/build-cause-run-condition-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/build-cause-run-condition-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/build-cause-run-condition-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/build-cause-run-condition-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/build-cause-run-condition-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/build-cause-run-condition-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/build-cause-run-condition-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/build-cause-run-condition-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/build-cause-run-condition-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/build-cause-run-condition-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/build-cause-run-condition-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/build-cause-run-condition-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/build-cause-run-condition-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/build-cause-run-condition-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/build-cause-run-condition-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/build-cause-run-condition-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/build-cause-run-condition-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/build-cause-run-condition-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/build-cause-run-condition-plugin/deployments", + "created_at": "2012-07-23T07:55:13Z", + "updated_at": "2013-11-10T01:55:17Z", + "pushed_at": "2019-10-08T11:35:27Z", + "git_url": "git://github.com/jenkinsci/build-cause-run-condition-plugin.git", + "ssh_url": "git@github.com:jenkinsci/build-cause-run-condition-plugin.git", + "clone_url": "https://github.com/jenkinsci/build-cause-run-condition-plugin.git", + "svn_url": "https://github.com/jenkinsci/build-cause-run-condition-plugin", + "homepage": null, + "size": 109, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 1, + "open_issues": 1, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 5149052, + "node_id": "MDEwOlJlcG9zaXRvcnk1MTQ5MDUy", + "name": "jslint-jenkins-plugin", + "full_name": "jenkinsci/jslint-jenkins-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jslint-jenkins-plugin", + "description": "Runs JSLint on a project and outputs in the Checkstyle format.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/jslint-jenkins-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/jslint-jenkins-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jslint-jenkins-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jslint-jenkins-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jslint-jenkins-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jslint-jenkins-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jslint-jenkins-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jslint-jenkins-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jslint-jenkins-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jslint-jenkins-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jslint-jenkins-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jslint-jenkins-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jslint-jenkins-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jslint-jenkins-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jslint-jenkins-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jslint-jenkins-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jslint-jenkins-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jslint-jenkins-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jslint-jenkins-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jslint-jenkins-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jslint-jenkins-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jslint-jenkins-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jslint-jenkins-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jslint-jenkins-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jslint-jenkins-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jslint-jenkins-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jslint-jenkins-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jslint-jenkins-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jslint-jenkins-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jslint-jenkins-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jslint-jenkins-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jslint-jenkins-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jslint-jenkins-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jslint-jenkins-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jslint-jenkins-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jslint-jenkins-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jslint-jenkins-plugin/deployments", + "created_at": "2012-07-23T08:00:00Z", + "updated_at": "2017-09-22T09:56:09Z", + "pushed_at": "2019-10-08T12:19:03Z", + "git_url": "git://github.com/jenkinsci/jslint-jenkins-plugin.git", + "ssh_url": "git@github.com:jenkinsci/jslint-jenkins-plugin.git", + "clone_url": "https://github.com/jenkinsci/jslint-jenkins-plugin.git", + "svn_url": "https://github.com/jenkinsci/jslint-jenkins-plugin", + "homepage": null, + "size": 249, + "stargazers_count": 7, + "watchers_count": 7, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 3, + "open_issues": 1, + "watchers": 7, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 5149092, + "node_id": "MDEwOlJlcG9zaXRvcnk1MTQ5MDky", + "name": "blazemeter-plugin", + "full_name": "jenkinsci/blazemeter-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/blazemeter-plugin", + "description": "Run a BlazeMeter test as part of your Jenkins continuous integration process.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/blazemeter-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/blazemeter-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/blazemeter-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/blazemeter-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/blazemeter-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/blazemeter-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/blazemeter-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/blazemeter-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/blazemeter-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/blazemeter-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/blazemeter-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/blazemeter-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/blazemeter-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/blazemeter-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/blazemeter-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/blazemeter-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/blazemeter-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/blazemeter-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/blazemeter-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/blazemeter-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/blazemeter-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/blazemeter-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/blazemeter-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/blazemeter-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/blazemeter-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/blazemeter-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/blazemeter-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/blazemeter-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/blazemeter-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/blazemeter-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/blazemeter-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/blazemeter-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/blazemeter-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/blazemeter-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/blazemeter-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/blazemeter-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/blazemeter-plugin/deployments", + "created_at": "2012-07-23T08:05:39Z", + "updated_at": "2019-01-04T14:46:25Z", + "pushed_at": "2019-10-08T12:38:04Z", + "git_url": "git://github.com/jenkinsci/blazemeter-plugin.git", + "ssh_url": "git@github.com:jenkinsci/blazemeter-plugin.git", + "clone_url": "https://github.com/jenkinsci/blazemeter-plugin.git", + "svn_url": "https://github.com/jenkinsci/blazemeter-plugin", + "homepage": "www.blazemeter.com", + "size": 1688, + "stargazers_count": 8, + "watchers_count": 8, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 9, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 9, + "open_issues": 1, + "watchers": 8, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 5183393, + "node_id": "MDEwOlJlcG9zaXRvcnk1MTgzMzkz", + "name": "job-dsl-plugin", + "full_name": "jenkinsci/job-dsl-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/job-dsl-plugin", + "description": "A Groovy DSL for Jenkins Jobs - Sweeeeet!", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/job-dsl-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/job-dsl-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/job-dsl-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/job-dsl-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/job-dsl-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/job-dsl-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/job-dsl-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/job-dsl-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/job-dsl-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/job-dsl-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/job-dsl-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/job-dsl-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/job-dsl-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/job-dsl-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/job-dsl-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/job-dsl-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/job-dsl-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/job-dsl-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/job-dsl-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/job-dsl-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/job-dsl-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/job-dsl-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/job-dsl-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/job-dsl-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/job-dsl-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/job-dsl-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/job-dsl-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/job-dsl-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/job-dsl-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/job-dsl-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/job-dsl-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/job-dsl-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/job-dsl-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/job-dsl-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/job-dsl-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/job-dsl-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/job-dsl-plugin/deployments", + "created_at": "2012-07-25T19:17:25Z", + "updated_at": "2019-10-22T12:45:03Z", + "pushed_at": "2019-10-11T20:41:47Z", + "git_url": "git://github.com/jenkinsci/job-dsl-plugin.git", + "ssh_url": "git@github.com:jenkinsci/job-dsl-plugin.git", + "clone_url": "https://github.com/jenkinsci/job-dsl-plugin.git", + "svn_url": "https://github.com/jenkinsci/job-dsl-plugin", + "homepage": "", + "size": 17730, + "stargazers_count": 1566, + "watchers_count": 1566, + "language": "Groovy", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 683, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 15, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 683, + "open_issues": 15, + "watchers": 1566, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 5229250, + "node_id": "MDEwOlJlcG9zaXRvcnk1MjI5MjUw", + "name": "jenkins-wargemmer", + "full_name": "jenkinsci/jenkins-wargemmer", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jenkins-wargemmer", + "description": "Automatically create a gem corresponding to each hudson release", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/jenkins-wargemmer", + "forks_url": "https://api.github.com/repos/jenkinsci/jenkins-wargemmer/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jenkins-wargemmer/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jenkins-wargemmer/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jenkins-wargemmer/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jenkins-wargemmer/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jenkins-wargemmer/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jenkins-wargemmer/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jenkins-wargemmer/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jenkins-wargemmer/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jenkins-wargemmer/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jenkins-wargemmer/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jenkins-wargemmer/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jenkins-wargemmer/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jenkins-wargemmer/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jenkins-wargemmer/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jenkins-wargemmer/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jenkins-wargemmer/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jenkins-wargemmer/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jenkins-wargemmer/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jenkins-wargemmer/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jenkins-wargemmer/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jenkins-wargemmer/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jenkins-wargemmer/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jenkins-wargemmer/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jenkins-wargemmer/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jenkins-wargemmer/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jenkins-wargemmer/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jenkins-wargemmer/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jenkins-wargemmer/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jenkins-wargemmer/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jenkins-wargemmer/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jenkins-wargemmer/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jenkins-wargemmer/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jenkins-wargemmer/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jenkins-wargemmer/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jenkins-wargemmer/deployments", + "created_at": "2012-07-30T06:58:28Z", + "updated_at": "2013-11-10T02:06:39Z", + "pushed_at": "2013-11-10T02:06:34Z", + "git_url": "git://github.com/jenkinsci/jenkins-wargemmer.git", + "ssh_url": "git@github.com:jenkinsci/jenkins-wargemmer.git", + "clone_url": "https://github.com/jenkinsci/jenkins-wargemmer.git", + "svn_url": "https://github.com/jenkinsci/jenkins-wargemmer", + "homepage": "github.com/cowboyd/hudson-wargemmer", + "size": 104, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Ruby", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 5270810, + "node_id": "MDEwOlJlcG9zaXRvcnk1MjcwODEw", + "name": "mail-watcher-plugin", + "full_name": "jenkinsci/mail-watcher-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/mail-watcher-plugin", + "description": "This plugin notifies configured email recipients on various events", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/mail-watcher-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/mail-watcher-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/mail-watcher-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/mail-watcher-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/mail-watcher-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/mail-watcher-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/mail-watcher-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/mail-watcher-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/mail-watcher-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/mail-watcher-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/mail-watcher-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/mail-watcher-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/mail-watcher-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/mail-watcher-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/mail-watcher-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/mail-watcher-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/mail-watcher-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/mail-watcher-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/mail-watcher-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/mail-watcher-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/mail-watcher-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/mail-watcher-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/mail-watcher-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/mail-watcher-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/mail-watcher-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/mail-watcher-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/mail-watcher-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/mail-watcher-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/mail-watcher-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/mail-watcher-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/mail-watcher-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/mail-watcher-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/mail-watcher-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/mail-watcher-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/mail-watcher-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/mail-watcher-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/mail-watcher-plugin/deployments", + "created_at": "2012-08-02T09:45:45Z", + "updated_at": "2019-10-08T13:27:31Z", + "pushed_at": "2019-10-08T13:27:29Z", + "git_url": "git://github.com/jenkinsci/mail-watcher-plugin.git", + "ssh_url": "git@github.com:jenkinsci/mail-watcher-plugin.git", + "clone_url": "https://github.com/jenkinsci/mail-watcher-plugin.git", + "svn_url": "https://github.com/jenkinsci/mail-watcher-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Mail+Watcher+Plugin", + "size": 101, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 12, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 12, + "open_issues": 1, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 5291045, + "node_id": "MDEwOlJlcG9zaXRvcnk1MjkxMDQ1", + "name": "environment-script-plugin", + "full_name": "jenkinsci/environment-script-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/environment-script-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/environment-script-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/environment-script-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/environment-script-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/environment-script-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/environment-script-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/environment-script-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/environment-script-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/environment-script-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/environment-script-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/environment-script-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/environment-script-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/environment-script-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/environment-script-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/environment-script-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/environment-script-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/environment-script-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/environment-script-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/environment-script-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/environment-script-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/environment-script-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/environment-script-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/environment-script-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/environment-script-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/environment-script-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/environment-script-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/environment-script-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/environment-script-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/environment-script-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/environment-script-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/environment-script-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/environment-script-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/environment-script-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/environment-script-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/environment-script-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/environment-script-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/environment-script-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/environment-script-plugin/deployments", + "created_at": "2012-08-03T22:10:27Z", + "updated_at": "2018-01-22T03:10:36Z", + "pushed_at": "2019-10-08T10:00:26Z", + "git_url": "git://github.com/jenkinsci/environment-script-plugin.git", + "ssh_url": "git@github.com:jenkinsci/environment-script-plugin.git", + "clone_url": "https://github.com/jenkinsci/environment-script-plugin.git", + "svn_url": "https://github.com/jenkinsci/environment-script-plugin", + "homepage": "", + "size": 73, + "stargazers_count": 6, + "watchers_count": 6, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 12, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "bsd-3-clause", + "name": "BSD 3-Clause \"New\" or \"Revised\" License", + "spdx_id": "BSD-3-Clause", + "url": "https://api.github.com/licenses/bsd-3-clause", + "node_id": "MDc6TGljZW5zZTU=" + }, + "forks": 12, + "open_issues": 2, + "watchers": 6, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 5313943, + "node_id": "MDEwOlJlcG9zaXRvcnk1MzEzOTQz", + "name": "unreliable-slave-plugin", + "full_name": "jenkinsci/unreliable-slave-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/unreliable-slave-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/unreliable-slave-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/unreliable-slave-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/unreliable-slave-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/unreliable-slave-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/unreliable-slave-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/unreliable-slave-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/unreliable-slave-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/unreliable-slave-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/unreliable-slave-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/unreliable-slave-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/unreliable-slave-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/unreliable-slave-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/unreliable-slave-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/unreliable-slave-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/unreliable-slave-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/unreliable-slave-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/unreliable-slave-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/unreliable-slave-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/unreliable-slave-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/unreliable-slave-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/unreliable-slave-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/unreliable-slave-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/unreliable-slave-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/unreliable-slave-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/unreliable-slave-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/unreliable-slave-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/unreliable-slave-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/unreliable-slave-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/unreliable-slave-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/unreliable-slave-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/unreliable-slave-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/unreliable-slave-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/unreliable-slave-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/unreliable-slave-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/unreliable-slave-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/unreliable-slave-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/unreliable-slave-plugin/deployments", + "created_at": "2012-08-06T12:33:52Z", + "updated_at": "2019-08-14T11:50:24Z", + "pushed_at": "2019-08-14T11:50:22Z", + "git_url": "git://github.com/jenkinsci/unreliable-slave-plugin.git", + "ssh_url": "git@github.com:jenkinsci/unreliable-slave-plugin.git", + "clone_url": "https://github.com/jenkinsci/unreliable-slave-plugin.git", + "svn_url": "https://github.com/jenkinsci/unreliable-slave-plugin", + "homepage": null, + "size": 14, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 2, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 5339730, + "node_id": "MDEwOlJlcG9zaXRvcnk1MzM5NzMw", + "name": "groovy-remote-control-plugin", + "full_name": "jenkinsci/groovy-remote-control-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/groovy-remote-control-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/groovy-remote-control-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/groovy-remote-control-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/groovy-remote-control-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/groovy-remote-control-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/groovy-remote-control-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/groovy-remote-control-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/groovy-remote-control-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/groovy-remote-control-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/groovy-remote-control-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/groovy-remote-control-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/groovy-remote-control-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/groovy-remote-control-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/groovy-remote-control-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/groovy-remote-control-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/groovy-remote-control-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/groovy-remote-control-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/groovy-remote-control-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/groovy-remote-control-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/groovy-remote-control-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/groovy-remote-control-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/groovy-remote-control-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/groovy-remote-control-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/groovy-remote-control-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/groovy-remote-control-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/groovy-remote-control-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/groovy-remote-control-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/groovy-remote-control-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/groovy-remote-control-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/groovy-remote-control-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/groovy-remote-control-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/groovy-remote-control-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/groovy-remote-control-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/groovy-remote-control-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/groovy-remote-control-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/groovy-remote-control-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/groovy-remote-control-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/groovy-remote-control-plugin/deployments", + "created_at": "2012-08-08T09:35:24Z", + "updated_at": "2019-07-03T08:13:46Z", + "pushed_at": "2013-11-10T02:04:25Z", + "git_url": "git://github.com/jenkinsci/groovy-remote-control-plugin.git", + "ssh_url": "git@github.com:jenkinsci/groovy-remote-control-plugin.git", + "clone_url": "https://github.com/jenkinsci/groovy-remote-control-plugin.git", + "svn_url": "https://github.com/jenkinsci/groovy-remote-control-plugin", + "homepage": null, + "size": 172, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Groovy", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 5349347, + "node_id": "MDEwOlJlcG9zaXRvcnk1MzQ5MzQ3", + "name": "git-server-plugin", + "full_name": "jenkinsci/git-server-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/git-server-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/git-server-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/git-server-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/git-server-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/git-server-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/git-server-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/git-server-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/git-server-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/git-server-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/git-server-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/git-server-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/git-server-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/git-server-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/git-server-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/git-server-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/git-server-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/git-server-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/git-server-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/git-server-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/git-server-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/git-server-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/git-server-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/git-server-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/git-server-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/git-server-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/git-server-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/git-server-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/git-server-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/git-server-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/git-server-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/git-server-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/git-server-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/git-server-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/git-server-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/git-server-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/git-server-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/git-server-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/git-server-plugin/deployments", + "created_at": "2012-08-09T00:32:26Z", + "updated_at": "2019-08-07T19:51:03Z", + "pushed_at": "2019-08-07T19:51:01Z", + "git_url": "git://github.com/jenkinsci/git-server-plugin.git", + "ssh_url": "git@github.com:jenkinsci/git-server-plugin.git", + "clone_url": "https://github.com/jenkinsci/git-server-plugin.git", + "svn_url": "https://github.com/jenkinsci/git-server-plugin", + "homepage": "", + "size": 47, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 10, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 10, + "open_issues": 0, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 5349483, + "node_id": "MDEwOlJlcG9zaXRvcnk1MzQ5NDgz", + "name": "testopia-plugin", + "full_name": "jenkinsci/testopia-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/testopia-plugin", + "description": "Jenkins plug-in to integrate different test management tools", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/testopia-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/testopia-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/testopia-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/testopia-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/testopia-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/testopia-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/testopia-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/testopia-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/testopia-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/testopia-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/testopia-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/testopia-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/testopia-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/testopia-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/testopia-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/testopia-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/testopia-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/testopia-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/testopia-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/testopia-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/testopia-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/testopia-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/testopia-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/testopia-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/testopia-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/testopia-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/testopia-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/testopia-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/testopia-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/testopia-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/testopia-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/testopia-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/testopia-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/testopia-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/testopia-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/testopia-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/testopia-plugin/deployments", + "created_at": "2012-08-09T00:52:56Z", + "updated_at": "2016-01-15T14:28:20Z", + "pushed_at": "2015-01-19T22:23:21Z", + "git_url": "git://github.com/jenkinsci/testopia-plugin.git", + "ssh_url": "git@github.com:jenkinsci/testopia-plugin.git", + "clone_url": "https://github.com/jenkinsci/testopia-plugin.git", + "svn_url": "https://github.com/jenkinsci/testopia-plugin", + "homepage": null, + "size": 327, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 5353242, + "node_id": "MDEwOlJlcG9zaXRvcnk1MzUzMjQy", + "name": "custom-job-icon-plugin", + "full_name": "jenkinsci/custom-job-icon-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/custom-job-icon-plugin", + "description": "Jenkins Plugin to add a custom icon to any job", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/custom-job-icon-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/custom-job-icon-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/custom-job-icon-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/custom-job-icon-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/custom-job-icon-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/custom-job-icon-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/custom-job-icon-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/custom-job-icon-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/custom-job-icon-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/custom-job-icon-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/custom-job-icon-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/custom-job-icon-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/custom-job-icon-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/custom-job-icon-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/custom-job-icon-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/custom-job-icon-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/custom-job-icon-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/custom-job-icon-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/custom-job-icon-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/custom-job-icon-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/custom-job-icon-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/custom-job-icon-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/custom-job-icon-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/custom-job-icon-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/custom-job-icon-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/custom-job-icon-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/custom-job-icon-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/custom-job-icon-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/custom-job-icon-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/custom-job-icon-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/custom-job-icon-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/custom-job-icon-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/custom-job-icon-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/custom-job-icon-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/custom-job-icon-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/custom-job-icon-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/custom-job-icon-plugin/deployments", + "created_at": "2012-08-09T08:48:53Z", + "updated_at": "2016-07-22T08:53:12Z", + "pushed_at": "2019-10-08T11:32:39Z", + "git_url": "git://github.com/jenkinsci/custom-job-icon-plugin.git", + "ssh_url": "git@github.com:jenkinsci/custom-job-icon-plugin.git", + "clone_url": "https://github.com/jenkinsci/custom-job-icon-plugin.git", + "svn_url": "https://github.com/jenkinsci/custom-job-icon-plugin", + "homepage": "", + "size": 269, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 10, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 10, + "open_issues": 3, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 5380153, + "node_id": "MDEwOlJlcG9zaXRvcnk1MzgwMTUz", + "name": "random-string-parameter-plugin", + "full_name": "jenkinsci/random-string-parameter-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/random-string-parameter-plugin", + "description": "Adds a new parameter type called Random String Parameter which inserts a random string that prevents Jenkins from merging multiple job runs into one.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/random-string-parameter-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/random-string-parameter-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/random-string-parameter-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/random-string-parameter-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/random-string-parameter-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/random-string-parameter-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/random-string-parameter-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/random-string-parameter-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/random-string-parameter-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/random-string-parameter-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/random-string-parameter-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/random-string-parameter-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/random-string-parameter-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/random-string-parameter-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/random-string-parameter-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/random-string-parameter-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/random-string-parameter-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/random-string-parameter-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/random-string-parameter-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/random-string-parameter-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/random-string-parameter-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/random-string-parameter-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/random-string-parameter-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/random-string-parameter-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/random-string-parameter-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/random-string-parameter-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/random-string-parameter-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/random-string-parameter-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/random-string-parameter-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/random-string-parameter-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/random-string-parameter-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/random-string-parameter-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/random-string-parameter-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/random-string-parameter-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/random-string-parameter-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/random-string-parameter-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/random-string-parameter-plugin/deployments", + "created_at": "2012-08-11T14:01:10Z", + "updated_at": "2018-06-15T16:52:23Z", + "pushed_at": "2019-10-08T12:13:03Z", + "git_url": "git://github.com/jenkinsci/random-string-parameter-plugin.git", + "ssh_url": "git@github.com:jenkinsci/random-string-parameter-plugin.git", + "clone_url": "https://github.com/jenkinsci/random-string-parameter-plugin.git", + "svn_url": "https://github.com/jenkinsci/random-string-parameter-plugin", + "homepage": null, + "size": 102, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 3, + "open_issues": 1, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 5380158, + "node_id": "MDEwOlJlcG9zaXRvcnk1MzgwMTU4", + "name": "choice-from-file-parameter-plugin", + "full_name": "jenkinsci/choice-from-file-parameter-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/choice-from-file-parameter-plugin", + "description": "Adds a new parameter type called Choice From File Parameter that loads values for choice parameter from a text file.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/choice-from-file-parameter-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/choice-from-file-parameter-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/choice-from-file-parameter-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/choice-from-file-parameter-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/choice-from-file-parameter-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/choice-from-file-parameter-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/choice-from-file-parameter-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/choice-from-file-parameter-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/choice-from-file-parameter-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/choice-from-file-parameter-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/choice-from-file-parameter-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/choice-from-file-parameter-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/choice-from-file-parameter-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/choice-from-file-parameter-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/choice-from-file-parameter-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/choice-from-file-parameter-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/choice-from-file-parameter-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/choice-from-file-parameter-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/choice-from-file-parameter-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/choice-from-file-parameter-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/choice-from-file-parameter-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/choice-from-file-parameter-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/choice-from-file-parameter-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/choice-from-file-parameter-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/choice-from-file-parameter-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/choice-from-file-parameter-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/choice-from-file-parameter-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/choice-from-file-parameter-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/choice-from-file-parameter-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/choice-from-file-parameter-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/choice-from-file-parameter-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/choice-from-file-parameter-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/choice-from-file-parameter-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/choice-from-file-parameter-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/choice-from-file-parameter-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/choice-from-file-parameter-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/choice-from-file-parameter-plugin/deployments", + "created_at": "2012-08-11T14:02:39Z", + "updated_at": "2018-06-15T16:52:36Z", + "pushed_at": "2013-11-10T01:56:27Z", + "git_url": "git://github.com/jenkinsci/choice-from-file-parameter-plugin.git", + "ssh_url": "git@github.com:jenkinsci/choice-from-file-parameter-plugin.git", + "clone_url": "https://github.com/jenkinsci/choice-from-file-parameter-plugin.git", + "svn_url": "https://github.com/jenkinsci/choice-from-file-parameter-plugin", + "homepage": null, + "size": 79, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 5401338, + "node_id": "MDEwOlJlcG9zaXRvcnk1NDAxMzM4", + "name": "mailer-plugin", + "full_name": "jenkinsci/mailer-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/mailer-plugin", + "description": "This plugin allows you to configure email notifications for build results", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/mailer-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/mailer-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/mailer-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/mailer-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/mailer-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/mailer-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/mailer-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/mailer-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/mailer-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/mailer-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/mailer-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/mailer-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/mailer-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/mailer-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/mailer-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/mailer-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/mailer-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/mailer-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/mailer-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/mailer-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/mailer-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/mailer-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/mailer-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/mailer-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/mailer-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/mailer-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/mailer-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/mailer-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/mailer-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/mailer-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/mailer-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/mailer-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/mailer-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/mailer-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/mailer-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/mailer-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/mailer-plugin/deployments", + "created_at": "2012-08-13T16:11:00Z", + "updated_at": "2019-10-07T13:23:53Z", + "pushed_at": "2019-10-14T14:08:33Z", + "git_url": "git://github.com/jenkinsci/mailer-plugin.git", + "ssh_url": "git@github.com:jenkinsci/mailer-plugin.git", + "clone_url": "https://github.com/jenkinsci/mailer-plugin.git", + "svn_url": "https://github.com/jenkinsci/mailer-plugin", + "homepage": "https://plugins.jenkins.io/mailer", + "size": 435, + "stargazers_count": 19, + "watchers_count": 19, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 67, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 6, + "license": null, + "forks": 67, + "open_issues": 6, + "watchers": 19, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 5422771, + "node_id": "MDEwOlJlcG9zaXRvcnk1NDIyNzcx", + "name": "template-workflows-plugin", + "full_name": "jenkinsci/template-workflows-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/template-workflows-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/template-workflows-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/template-workflows-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/template-workflows-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/template-workflows-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/template-workflows-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/template-workflows-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/template-workflows-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/template-workflows-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/template-workflows-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/template-workflows-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/template-workflows-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/template-workflows-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/template-workflows-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/template-workflows-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/template-workflows-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/template-workflows-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/template-workflows-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/template-workflows-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/template-workflows-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/template-workflows-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/template-workflows-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/template-workflows-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/template-workflows-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/template-workflows-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/template-workflows-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/template-workflows-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/template-workflows-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/template-workflows-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/template-workflows-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/template-workflows-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/template-workflows-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/template-workflows-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/template-workflows-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/template-workflows-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/template-workflows-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/template-workflows-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/template-workflows-plugin/deployments", + "created_at": "2012-08-15T06:22:41Z", + "updated_at": "2015-10-08T09:05:38Z", + "pushed_at": "2019-10-08T12:21:19Z", + "git_url": "git://github.com/jenkinsci/template-workflows-plugin.git", + "ssh_url": "git@github.com:jenkinsci/template-workflows-plugin.git", + "clone_url": "https://github.com/jenkinsci/template-workflows-plugin.git", + "svn_url": "https://github.com/jenkinsci/template-workflows-plugin", + "homepage": null, + "size": 132, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 8, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 8, + "open_issues": 1, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 5426317, + "node_id": "MDEwOlJlcG9zaXRvcnk1NDI2MzE3", + "name": "redmine-plugin-1", + "full_name": "jenkinsci/redmine-plugin-1", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/redmine-plugin-1", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/redmine-plugin-1", + "forks_url": "https://api.github.com/repos/jenkinsci/redmine-plugin-1/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/redmine-plugin-1/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/redmine-plugin-1/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/redmine-plugin-1/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/redmine-plugin-1/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/redmine-plugin-1/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/redmine-plugin-1/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/redmine-plugin-1/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/redmine-plugin-1/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/redmine-plugin-1/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/redmine-plugin-1/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/redmine-plugin-1/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/redmine-plugin-1/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/redmine-plugin-1/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/redmine-plugin-1/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/redmine-plugin-1/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/redmine-plugin-1/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/redmine-plugin-1/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/redmine-plugin-1/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/redmine-plugin-1/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/redmine-plugin-1/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/redmine-plugin-1/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/redmine-plugin-1/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/redmine-plugin-1/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/redmine-plugin-1/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/redmine-plugin-1/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/redmine-plugin-1/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/redmine-plugin-1/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/redmine-plugin-1/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/redmine-plugin-1/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/redmine-plugin-1/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/redmine-plugin-1/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/redmine-plugin-1/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/redmine-plugin-1/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/redmine-plugin-1/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/redmine-plugin-1/deployments", + "created_at": "2012-08-15T13:27:51Z", + "updated_at": "2013-10-29T23:08:42Z", + "pushed_at": "2012-08-09T17:19:10Z", + "git_url": "git://github.com/jenkinsci/redmine-plugin-1.git", + "ssh_url": "git@github.com:jenkinsci/redmine-plugin-1.git", + "clone_url": "https://github.com/jenkinsci/redmine-plugin-1.git", + "svn_url": "https://github.com/jenkinsci/redmine-plugin-1", + "homepage": null, + "size": 126, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 5495269, + "node_id": "MDEwOlJlcG9zaXRvcnk1NDk1MjY5", + "name": "additional-identities-plugin", + "full_name": "jenkinsci/additional-identities-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/additional-identities-plugin", + "description": "https://wiki.jenkins-ci.org/display/JENKINS/Additional+Identities+Plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/additional-identities-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/additional-identities-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/additional-identities-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/additional-identities-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/additional-identities-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/additional-identities-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/additional-identities-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/additional-identities-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/additional-identities-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/additional-identities-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/additional-identities-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/additional-identities-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/additional-identities-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/additional-identities-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/additional-identities-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/additional-identities-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/additional-identities-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/additional-identities-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/additional-identities-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/additional-identities-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/additional-identities-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/additional-identities-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/additional-identities-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/additional-identities-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/additional-identities-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/additional-identities-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/additional-identities-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/additional-identities-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/additional-identities-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/additional-identities-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/additional-identities-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/additional-identities-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/additional-identities-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/additional-identities-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/additional-identities-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/additional-identities-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/additional-identities-plugin/deployments", + "created_at": "2012-08-21T13:17:02Z", + "updated_at": "2019-09-09T07:19:49Z", + "pushed_at": "2019-10-08T16:40:26Z", + "git_url": "git://github.com/jenkinsci/additional-identities-plugin.git", + "ssh_url": "git@github.com:jenkinsci/additional-identities-plugin.git", + "clone_url": "https://github.com/jenkinsci/additional-identities-plugin.git", + "svn_url": "https://github.com/jenkinsci/additional-identities-plugin", + "homepage": null, + "size": 133, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 6, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 5575240, + "node_id": "MDEwOlJlcG9zaXRvcnk1NTc1MjQw", + "name": "git-userContent-plugin", + "full_name": "jenkinsci/git-userContent-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/git-userContent-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/git-userContent-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/git-userContent-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/git-userContent-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/git-userContent-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/git-userContent-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/git-userContent-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/git-userContent-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/git-userContent-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/git-userContent-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/git-userContent-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/git-userContent-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/git-userContent-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/git-userContent-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/git-userContent-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/git-userContent-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/git-userContent-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/git-userContent-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/git-userContent-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/git-userContent-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/git-userContent-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/git-userContent-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/git-userContent-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/git-userContent-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/git-userContent-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/git-userContent-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/git-userContent-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/git-userContent-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/git-userContent-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/git-userContent-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/git-userContent-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/git-userContent-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/git-userContent-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/git-userContent-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/git-userContent-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/git-userContent-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/git-userContent-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/git-userContent-plugin/deployments", + "created_at": "2012-08-27T18:34:00Z", + "updated_at": "2017-11-24T11:43:27Z", + "pushed_at": "2019-10-08T12:33:30Z", + "git_url": "git://github.com/jenkinsci/git-userContent-plugin.git", + "ssh_url": "git@github.com:jenkinsci/git-userContent-plugin.git", + "clone_url": "https://github.com/jenkinsci/git-userContent-plugin.git", + "svn_url": "https://github.com/jenkinsci/git-userContent-plugin", + "homepage": "", + "size": 160, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 5, + "open_issues": 1, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 5610163, + "node_id": "MDEwOlJlcG9zaXRvcnk1NjEwMTYz", + "name": "eclipse-update-site-plugin", + "full_name": "jenkinsci/eclipse-update-site-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/eclipse-update-site-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/eclipse-update-site-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/eclipse-update-site-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/eclipse-update-site-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/eclipse-update-site-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/eclipse-update-site-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/eclipse-update-site-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/eclipse-update-site-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/eclipse-update-site-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/eclipse-update-site-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/eclipse-update-site-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/eclipse-update-site-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/eclipse-update-site-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/eclipse-update-site-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/eclipse-update-site-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/eclipse-update-site-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/eclipse-update-site-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/eclipse-update-site-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/eclipse-update-site-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/eclipse-update-site-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/eclipse-update-site-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/eclipse-update-site-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/eclipse-update-site-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/eclipse-update-site-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/eclipse-update-site-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/eclipse-update-site-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/eclipse-update-site-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/eclipse-update-site-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/eclipse-update-site-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/eclipse-update-site-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/eclipse-update-site-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/eclipse-update-site-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/eclipse-update-site-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/eclipse-update-site-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/eclipse-update-site-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/eclipse-update-site-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/eclipse-update-site-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/eclipse-update-site-plugin/deployments", + "created_at": "2012-08-30T03:48:50Z", + "updated_at": "2013-11-10T02:01:11Z", + "pushed_at": "2013-11-10T02:01:07Z", + "git_url": "git://github.com/jenkinsci/eclipse-update-site-plugin.git", + "ssh_url": "git@github.com:jenkinsci/eclipse-update-site-plugin.git", + "clone_url": "https://github.com/jenkinsci/eclipse-update-site-plugin.git", + "svn_url": "https://github.com/jenkinsci/eclipse-update-site-plugin", + "homepage": "", + "size": 136, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 5636019, + "node_id": "MDEwOlJlcG9zaXRvcnk1NjM2MDE5", + "name": "backend-donation-thankyou", + "full_name": "jenkinsci/backend-donation-thankyou", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/backend-donation-thankyou", + "description": "Responder to donation notification from SPI", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/backend-donation-thankyou", + "forks_url": "https://api.github.com/repos/jenkinsci/backend-donation-thankyou/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/backend-donation-thankyou/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/backend-donation-thankyou/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/backend-donation-thankyou/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/backend-donation-thankyou/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/backend-donation-thankyou/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/backend-donation-thankyou/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/backend-donation-thankyou/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/backend-donation-thankyou/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/backend-donation-thankyou/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/backend-donation-thankyou/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/backend-donation-thankyou/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/backend-donation-thankyou/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/backend-donation-thankyou/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/backend-donation-thankyou/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/backend-donation-thankyou/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/backend-donation-thankyou/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/backend-donation-thankyou/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/backend-donation-thankyou/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/backend-donation-thankyou/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/backend-donation-thankyou/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/backend-donation-thankyou/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/backend-donation-thankyou/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/backend-donation-thankyou/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/backend-donation-thankyou/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/backend-donation-thankyou/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/backend-donation-thankyou/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/backend-donation-thankyou/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/backend-donation-thankyou/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/backend-donation-thankyou/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/backend-donation-thankyou/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/backend-donation-thankyou/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/backend-donation-thankyou/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/backend-donation-thankyou/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/backend-donation-thankyou/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/backend-donation-thankyou/deployments", + "created_at": "2012-09-01T01:52:40Z", + "updated_at": "2018-01-03T17:52:05Z", + "pushed_at": "2012-09-01T01:53:01Z", + "git_url": "git://github.com/jenkinsci/backend-donation-thankyou.git", + "ssh_url": "git@github.com:jenkinsci/backend-donation-thankyou.git", + "clone_url": "https://github.com/jenkinsci/backend-donation-thankyou.git", + "svn_url": "https://github.com/jenkinsci/backend-donation-thankyou", + "homepage": "http://jenkins-ci.org/", + "size": 104, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": true, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 5655985, + "node_id": "MDEwOlJlcG9zaXRvcnk1NjU1OTg1", + "name": "sonatype-ci-for-jenkins", + "full_name": "jenkinsci/sonatype-ci-for-jenkins", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/sonatype-ci-for-jenkins", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/sonatype-ci-for-jenkins", + "forks_url": "https://api.github.com/repos/jenkinsci/sonatype-ci-for-jenkins/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/sonatype-ci-for-jenkins/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/sonatype-ci-for-jenkins/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/sonatype-ci-for-jenkins/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/sonatype-ci-for-jenkins/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/sonatype-ci-for-jenkins/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/sonatype-ci-for-jenkins/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/sonatype-ci-for-jenkins/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/sonatype-ci-for-jenkins/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/sonatype-ci-for-jenkins/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/sonatype-ci-for-jenkins/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/sonatype-ci-for-jenkins/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/sonatype-ci-for-jenkins/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/sonatype-ci-for-jenkins/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/sonatype-ci-for-jenkins/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/sonatype-ci-for-jenkins/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/sonatype-ci-for-jenkins/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/sonatype-ci-for-jenkins/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/sonatype-ci-for-jenkins/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/sonatype-ci-for-jenkins/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/sonatype-ci-for-jenkins/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/sonatype-ci-for-jenkins/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/sonatype-ci-for-jenkins/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/sonatype-ci-for-jenkins/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/sonatype-ci-for-jenkins/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/sonatype-ci-for-jenkins/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/sonatype-ci-for-jenkins/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/sonatype-ci-for-jenkins/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/sonatype-ci-for-jenkins/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/sonatype-ci-for-jenkins/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/sonatype-ci-for-jenkins/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/sonatype-ci-for-jenkins/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/sonatype-ci-for-jenkins/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/sonatype-ci-for-jenkins/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/sonatype-ci-for-jenkins/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/sonatype-ci-for-jenkins/deployments", + "created_at": "2012-09-03T07:51:19Z", + "updated_at": "2013-11-10T02:18:24Z", + "pushed_at": "2013-11-10T02:18:19Z", + "git_url": "git://github.com/jenkinsci/sonatype-ci-for-jenkins.git", + "ssh_url": "git@github.com:jenkinsci/sonatype-ci-for-jenkins.git", + "clone_url": "https://github.com/jenkinsci/sonatype-ci-for-jenkins.git", + "svn_url": "https://github.com/jenkinsci/sonatype-ci-for-jenkins", + "homepage": null, + "size": 133, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "epl-1.0", + "name": "Eclipse Public License 1.0", + "spdx_id": "EPL-1.0", + "url": "https://api.github.com/licenses/epl-1.0", + "node_id": "MDc6TGljZW5zZTc=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 5668142, + "node_id": "MDEwOlJlcG9zaXRvcnk1NjY4MTQy", + "name": "cas-plugin", + "full_name": "jenkinsci/cas-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/cas-plugin", + "description": "Jenkins CAS Plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/cas-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/cas-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/cas-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/cas-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/cas-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/cas-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/cas-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/cas-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/cas-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/cas-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/cas-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/cas-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/cas-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/cas-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/cas-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/cas-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/cas-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/cas-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/cas-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/cas-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/cas-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/cas-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/cas-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/cas-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/cas-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/cas-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/cas-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/cas-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/cas-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/cas-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/cas-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/cas-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/cas-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/cas-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/cas-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/cas-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/cas-plugin/deployments", + "created_at": "2012-09-04T05:58:01Z", + "updated_at": "2019-10-08T16:18:33Z", + "pushed_at": "2019-10-08T16:18:31Z", + "git_url": "git://github.com/jenkinsci/cas-plugin.git", + "ssh_url": "git@github.com:jenkinsci/cas-plugin.git", + "clone_url": "https://github.com/jenkinsci/cas-plugin.git", + "svn_url": "https://github.com/jenkinsci/cas-plugin", + "homepage": null, + "size": 105, + "stargazers_count": 7, + "watchers_count": 7, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 11, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 11, + "open_issues": 0, + "watchers": 7, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 5672873, + "node_id": "MDEwOlJlcG9zaXRvcnk1NjcyODcz", + "name": "ghprb-plugin", + "full_name": "jenkinsci/ghprb-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/ghprb-plugin", + "description": "github pull requests builder plugin for Jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/ghprb-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/ghprb-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/ghprb-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/ghprb-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/ghprb-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/ghprb-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/ghprb-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/ghprb-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/ghprb-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/ghprb-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/ghprb-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/ghprb-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/ghprb-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/ghprb-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/ghprb-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/ghprb-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/ghprb-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/ghprb-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/ghprb-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/ghprb-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/ghprb-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/ghprb-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/ghprb-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/ghprb-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/ghprb-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/ghprb-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/ghprb-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/ghprb-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/ghprb-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/ghprb-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/ghprb-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/ghprb-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/ghprb-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/ghprb-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/ghprb-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/ghprb-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/ghprb-plugin/deployments", + "created_at": "2012-09-04T13:34:20Z", + "updated_at": "2019-10-24T22:19:58Z", + "pushed_at": "2019-10-18T17:12:08Z", + "git_url": "git://github.com/jenkinsci/ghprb-plugin.git", + "ssh_url": "git@github.com:jenkinsci/ghprb-plugin.git", + "clone_url": "https://github.com/jenkinsci/ghprb-plugin.git", + "svn_url": "https://github.com/jenkinsci/ghprb-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/GitHub+pull+request+builder+plugin", + "size": 1877, + "stargazers_count": 411, + "watchers_count": 411, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 588, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 137, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 588, + "open_issues": 137, + "watchers": 411, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 5684932, + "node_id": "MDEwOlJlcG9zaXRvcnk1Njg0OTMy", + "name": "testswarm-plugin", + "full_name": "jenkinsci/testswarm-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/testswarm-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/testswarm-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/testswarm-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/testswarm-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/testswarm-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/testswarm-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/testswarm-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/testswarm-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/testswarm-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/testswarm-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/testswarm-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/testswarm-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/testswarm-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/testswarm-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/testswarm-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/testswarm-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/testswarm-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/testswarm-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/testswarm-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/testswarm-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/testswarm-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/testswarm-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/testswarm-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/testswarm-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/testswarm-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/testswarm-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/testswarm-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/testswarm-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/testswarm-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/testswarm-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/testswarm-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/testswarm-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/testswarm-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/testswarm-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/testswarm-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/testswarm-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/testswarm-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/testswarm-plugin/deployments", + "created_at": "2012-09-05T09:10:23Z", + "updated_at": "2014-06-02T18:13:27Z", + "pushed_at": "2014-06-02T18:13:27Z", + "git_url": "git://github.com/jenkinsci/testswarm-plugin.git", + "ssh_url": "git@github.com:jenkinsci/testswarm-plugin.git", + "clone_url": "https://github.com/jenkinsci/testswarm-plugin.git", + "svn_url": "https://github.com/jenkinsci/testswarm-plugin", + "homepage": null, + "size": 841, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 4, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 5703055, + "node_id": "MDEwOlJlcG9zaXRvcnk1NzAzMDU1", + "name": "build-description-plugin", + "full_name": "jenkinsci/build-description-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/build-description-plugin", + "description": "Plugin for Jenkins that adds a description from selected file in working directory to every build.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/build-description-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/build-description-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/build-description-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/build-description-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/build-description-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/build-description-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/build-description-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/build-description-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/build-description-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/build-description-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/build-description-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/build-description-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/build-description-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/build-description-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/build-description-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/build-description-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/build-description-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/build-description-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/build-description-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/build-description-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/build-description-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/build-description-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/build-description-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/build-description-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/build-description-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/build-description-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/build-description-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/build-description-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/build-description-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/build-description-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/build-description-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/build-description-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/build-description-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/build-description-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/build-description-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/build-description-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/build-description-plugin/deployments", + "created_at": "2012-09-06T14:03:50Z", + "updated_at": "2013-11-10T01:55:19Z", + "pushed_at": "2013-11-10T01:55:13Z", + "git_url": "git://github.com/jenkinsci/build-description-plugin.git", + "ssh_url": "git@github.com:jenkinsci/build-description-plugin.git", + "clone_url": "https://github.com/jenkinsci/build-description-plugin.git", + "svn_url": "https://github.com/jenkinsci/build-description-plugin", + "homepage": null, + "size": 101, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 5713033, + "node_id": "MDEwOlJlcG9zaXRvcnk1NzEzMDMz", + "name": "logfilesizechecker-plugin", + "full_name": "jenkinsci/logfilesizechecker-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/logfilesizechecker-plugin", + "description": "Jenkins plugin for build output size check", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/logfilesizechecker-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/logfilesizechecker-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/logfilesizechecker-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/logfilesizechecker-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/logfilesizechecker-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/logfilesizechecker-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/logfilesizechecker-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/logfilesizechecker-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/logfilesizechecker-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/logfilesizechecker-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/logfilesizechecker-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/logfilesizechecker-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/logfilesizechecker-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/logfilesizechecker-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/logfilesizechecker-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/logfilesizechecker-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/logfilesizechecker-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/logfilesizechecker-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/logfilesizechecker-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/logfilesizechecker-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/logfilesizechecker-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/logfilesizechecker-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/logfilesizechecker-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/logfilesizechecker-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/logfilesizechecker-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/logfilesizechecker-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/logfilesizechecker-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/logfilesizechecker-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/logfilesizechecker-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/logfilesizechecker-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/logfilesizechecker-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/logfilesizechecker-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/logfilesizechecker-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/logfilesizechecker-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/logfilesizechecker-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/logfilesizechecker-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/logfilesizechecker-plugin/deployments", + "created_at": "2012-09-07T05:48:41Z", + "updated_at": "2019-07-31T07:53:59Z", + "pushed_at": "2019-07-31T07:53:57Z", + "git_url": "git://github.com/jenkinsci/logfilesizechecker-plugin.git", + "ssh_url": "git@github.com:jenkinsci/logfilesizechecker-plugin.git", + "clone_url": "https://github.com/jenkinsci/logfilesizechecker-plugin.git", + "svn_url": "https://github.com/jenkinsci/logfilesizechecker-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Logfilesizechecker+Plugin", + "size": 57, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 9, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 9, + "open_issues": 1, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 5748374, + "node_id": "MDEwOlJlcG9zaXRvcnk1NzQ4Mzc0", + "name": "artifact-diff-plugin", + "full_name": "jenkinsci/artifact-diff-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/artifact-diff-plugin", + "description": "This plugin serves diffs of artifacts from different builds", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/artifact-diff-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/artifact-diff-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/artifact-diff-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/artifact-diff-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/artifact-diff-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/artifact-diff-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/artifact-diff-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/artifact-diff-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/artifact-diff-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/artifact-diff-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/artifact-diff-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/artifact-diff-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/artifact-diff-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/artifact-diff-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/artifact-diff-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/artifact-diff-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/artifact-diff-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/artifact-diff-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/artifact-diff-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/artifact-diff-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/artifact-diff-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/artifact-diff-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/artifact-diff-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/artifact-diff-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/artifact-diff-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/artifact-diff-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/artifact-diff-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/artifact-diff-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/artifact-diff-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/artifact-diff-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/artifact-diff-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/artifact-diff-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/artifact-diff-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/artifact-diff-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/artifact-diff-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/artifact-diff-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/artifact-diff-plugin/deployments", + "created_at": "2012-09-10T11:06:12Z", + "updated_at": "2019-10-09T07:16:03Z", + "pushed_at": "2019-10-09T07:16:01Z", + "git_url": "git://github.com/jenkinsci/artifact-diff-plugin.git", + "ssh_url": "git@github.com:jenkinsci/artifact-diff-plugin.git", + "clone_url": "https://github.com/jenkinsci/artifact-diff-plugin.git", + "svn_url": "https://github.com/jenkinsci/artifact-diff-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Artifact+Diff+Plugin", + "size": 30, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 5, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 5789890, + "node_id": "MDEwOlJlcG9zaXRvcnk1Nzg5ODkw", + "name": "vault-scm-plugin", + "full_name": "jenkinsci/vault-scm-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/vault-scm-plugin", + "description": "Vault Plug-in for Jenkins", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/vault-scm-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/vault-scm-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/vault-scm-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/vault-scm-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/vault-scm-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/vault-scm-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/vault-scm-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/vault-scm-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/vault-scm-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/vault-scm-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/vault-scm-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/vault-scm-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/vault-scm-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/vault-scm-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/vault-scm-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/vault-scm-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/vault-scm-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/vault-scm-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/vault-scm-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/vault-scm-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/vault-scm-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/vault-scm-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/vault-scm-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/vault-scm-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/vault-scm-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/vault-scm-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/vault-scm-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/vault-scm-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/vault-scm-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/vault-scm-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/vault-scm-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/vault-scm-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/vault-scm-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/vault-scm-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/vault-scm-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/vault-scm-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/vault-scm-plugin/deployments", + "created_at": "2012-09-13T04:25:10Z", + "updated_at": "2019-02-14T00:59:29Z", + "pushed_at": "2013-11-10T02:21:58Z", + "git_url": "git://github.com/jenkinsci/vault-scm-plugin.git", + "ssh_url": "git@github.com:jenkinsci/vault-scm-plugin.git", + "clone_url": "https://github.com/jenkinsci/vault-scm-plugin.git", + "svn_url": "https://github.com/jenkinsci/vault-scm-plugin", + "homepage": "", + "size": 44872, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 2, + "open_issues": 1, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 5838669, + "node_id": "MDEwOlJlcG9zaXRvcnk1ODM4NjY5", + "name": "buildtriggerbadge-plugin", + "full_name": "jenkinsci/buildtriggerbadge-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/buildtriggerbadge-plugin", + "description": "Jenkins' plugin to display an icon representing the trigger cause of a build.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/buildtriggerbadge-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/buildtriggerbadge-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/buildtriggerbadge-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/buildtriggerbadge-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/buildtriggerbadge-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/buildtriggerbadge-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/buildtriggerbadge-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/buildtriggerbadge-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/buildtriggerbadge-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/buildtriggerbadge-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/buildtriggerbadge-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/buildtriggerbadge-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/buildtriggerbadge-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/buildtriggerbadge-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/buildtriggerbadge-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/buildtriggerbadge-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/buildtriggerbadge-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/buildtriggerbadge-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/buildtriggerbadge-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/buildtriggerbadge-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/buildtriggerbadge-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/buildtriggerbadge-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/buildtriggerbadge-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/buildtriggerbadge-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/buildtriggerbadge-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/buildtriggerbadge-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/buildtriggerbadge-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/buildtriggerbadge-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/buildtriggerbadge-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/buildtriggerbadge-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/buildtriggerbadge-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/buildtriggerbadge-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/buildtriggerbadge-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/buildtriggerbadge-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/buildtriggerbadge-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/buildtriggerbadge-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/buildtriggerbadge-plugin/deployments", + "created_at": "2012-09-17T09:12:08Z", + "updated_at": "2019-08-01T14:55:32Z", + "pushed_at": "2019-10-23T05:25:12Z", + "git_url": "git://github.com/jenkinsci/buildtriggerbadge-plugin.git", + "ssh_url": "git@github.com:jenkinsci/buildtriggerbadge-plugin.git", + "clone_url": "https://github.com/jenkinsci/buildtriggerbadge-plugin.git", + "svn_url": "https://github.com/jenkinsci/buildtriggerbadge-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Build+Trigger+Badge+Plugin", + "size": 227, + "stargazers_count": 7, + "watchers_count": 7, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 17, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 17, + "open_issues": 2, + "watchers": 7, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 5843041, + "node_id": "MDEwOlJlcG9zaXRvcnk1ODQzMDQx", + "name": "jsoup-plugin", + "full_name": "jenkinsci/jsoup-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jsoup-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jsoup-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/jsoup-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jsoup-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jsoup-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jsoup-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jsoup-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jsoup-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jsoup-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jsoup-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jsoup-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jsoup-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jsoup-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jsoup-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jsoup-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jsoup-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jsoup-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jsoup-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jsoup-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jsoup-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jsoup-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jsoup-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jsoup-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jsoup-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jsoup-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jsoup-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jsoup-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jsoup-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jsoup-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jsoup-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jsoup-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jsoup-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jsoup-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jsoup-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jsoup-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jsoup-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jsoup-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jsoup-plugin/deployments", + "created_at": "2012-09-17T15:30:15Z", + "updated_at": "2017-10-23T22:10:08Z", + "pushed_at": "2017-10-23T22:13:36Z", + "git_url": "git://github.com/jenkinsci/jsoup-plugin.git", + "ssh_url": "git@github.com:jenkinsci/jsoup-plugin.git", + "clone_url": "https://github.com/jenkinsci/jsoup-plugin.git", + "svn_url": "https://github.com/jenkinsci/jsoup-plugin", + "homepage": "", + "size": 7, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 5847325, + "node_id": "MDEwOlJlcG9zaXRvcnk1ODQ3MzI1", + "name": "hockeyapp-plugin", + "full_name": "jenkinsci/hockeyapp-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/hockeyapp-plugin", + "description": "Hockeyapp uploader for Jenkins", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/hockeyapp-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/hockeyapp-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/hockeyapp-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/hockeyapp-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/hockeyapp-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/hockeyapp-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/hockeyapp-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/hockeyapp-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/hockeyapp-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/hockeyapp-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/hockeyapp-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/hockeyapp-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/hockeyapp-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/hockeyapp-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/hockeyapp-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/hockeyapp-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/hockeyapp-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/hockeyapp-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/hockeyapp-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/hockeyapp-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/hockeyapp-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/hockeyapp-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/hockeyapp-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/hockeyapp-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/hockeyapp-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/hockeyapp-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/hockeyapp-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/hockeyapp-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/hockeyapp-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/hockeyapp-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/hockeyapp-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/hockeyapp-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/hockeyapp-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/hockeyapp-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/hockeyapp-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/hockeyapp-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/hockeyapp-plugin/deployments", + "created_at": "2012-09-17T21:00:57Z", + "updated_at": "2019-05-11T14:29:16Z", + "pushed_at": "2019-05-07T20:21:38Z", + "git_url": "git://github.com/jenkinsci/hockeyapp-plugin.git", + "ssh_url": "git@github.com:jenkinsci/hockeyapp-plugin.git", + "clone_url": "https://github.com/jenkinsci/hockeyapp-plugin.git", + "svn_url": "https://github.com/jenkinsci/hockeyapp-plugin", + "homepage": null, + "size": 259, + "stargazers_count": 30, + "watchers_count": 30, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 62, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 62, + "open_issues": 0, + "watchers": 30, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 5869666, + "node_id": "MDEwOlJlcG9zaXRvcnk1ODY5NjY2", + "name": "scm2job-plugin", + "full_name": "jenkinsci/scm2job-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/scm2job-plugin", + "description": " Jenkins scm2job plugin to find jobnames via SCM Url", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/scm2job-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/scm2job-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/scm2job-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/scm2job-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/scm2job-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/scm2job-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/scm2job-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/scm2job-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/scm2job-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/scm2job-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/scm2job-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/scm2job-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/scm2job-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/scm2job-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/scm2job-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/scm2job-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/scm2job-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/scm2job-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/scm2job-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/scm2job-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/scm2job-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/scm2job-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/scm2job-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/scm2job-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/scm2job-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/scm2job-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/scm2job-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/scm2job-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/scm2job-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/scm2job-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/scm2job-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/scm2job-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/scm2job-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/scm2job-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/scm2job-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/scm2job-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/scm2job-plugin/deployments", + "created_at": "2012-09-19T09:34:51Z", + "updated_at": "2019-10-08T12:41:55Z", + "pushed_at": "2019-10-08T12:41:53Z", + "git_url": "git://github.com/jenkinsci/scm2job-plugin.git", + "ssh_url": "git@github.com:jenkinsci/scm2job-plugin.git", + "clone_url": "https://github.com/jenkinsci/scm2job-plugin.git", + "svn_url": "https://github.com/jenkinsci/scm2job-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/SCM2Job+Plugin", + "size": 46, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 5, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 5910179, + "node_id": "MDEwOlJlcG9zaXRvcnk1OTEwMTc5", + "name": "ant-spy", + "full_name": "jenkinsci/ant-spy", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/ant-spy", + "description": "Library for spying what's going on in Ant build", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/ant-spy", + "forks_url": "https://api.github.com/repos/jenkinsci/ant-spy/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/ant-spy/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/ant-spy/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/ant-spy/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/ant-spy/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/ant-spy/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/ant-spy/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/ant-spy/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/ant-spy/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/ant-spy/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/ant-spy/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/ant-spy/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/ant-spy/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/ant-spy/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/ant-spy/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/ant-spy/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/ant-spy/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/ant-spy/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/ant-spy/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/ant-spy/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/ant-spy/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/ant-spy/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/ant-spy/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/ant-spy/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/ant-spy/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/ant-spy/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/ant-spy/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/ant-spy/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/ant-spy/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/ant-spy/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/ant-spy/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/ant-spy/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/ant-spy/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/ant-spy/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/ant-spy/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/ant-spy/deployments", + "created_at": "2012-09-22T04:14:00Z", + "updated_at": "2014-06-20T20:57:35Z", + "pushed_at": "2012-09-29T21:07:07Z", + "git_url": "git://github.com/jenkinsci/ant-spy.git", + "ssh_url": "git@github.com:jenkinsci/ant-spy.git", + "clone_url": "https://github.com/jenkinsci/ant-spy.git", + "svn_url": "https://github.com/jenkinsci/ant-spy", + "homepage": null, + "size": 116, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 5937666, + "node_id": "MDEwOlJlcG9zaXRvcnk1OTM3NjY2", + "name": "maven-site", + "full_name": "jenkinsci/maven-site", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/maven-site", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/maven-site", + "forks_url": "https://api.github.com/repos/jenkinsci/maven-site/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/maven-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/maven-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/maven-site/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/maven-site/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/maven-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/maven-site/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/maven-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/maven-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/maven-site/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/maven-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/maven-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/maven-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/maven-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/maven-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/maven-site/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/maven-site/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/maven-site/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/maven-site/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/maven-site/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/maven-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/maven-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/maven-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/maven-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/maven-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/maven-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/maven-site/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/maven-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/maven-site/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/maven-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/maven-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/maven-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/maven-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/maven-site/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/maven-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/maven-site/deployments", + "created_at": "2012-09-24T16:54:23Z", + "updated_at": "2013-11-10T02:10:57Z", + "pushed_at": "2013-11-10T02:10:52Z", + "git_url": "git://github.com/jenkinsci/maven-site.git", + "ssh_url": "git@github.com:jenkinsci/maven-site.git", + "clone_url": "https://github.com/jenkinsci/maven-site.git", + "svn_url": "https://github.com/jenkinsci/maven-site", + "homepage": "", + "size": 1004, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "core", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 5969921, + "node_id": "MDEwOlJlcG9zaXRvcnk1OTY5OTIx", + "name": "repeat-build-plugin", + "full_name": "jenkinsci/repeat-build-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/repeat-build-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/repeat-build-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/repeat-build-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/repeat-build-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/repeat-build-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/repeat-build-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/repeat-build-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/repeat-build-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/repeat-build-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/repeat-build-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/repeat-build-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/repeat-build-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/repeat-build-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/repeat-build-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/repeat-build-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/repeat-build-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/repeat-build-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/repeat-build-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/repeat-build-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/repeat-build-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/repeat-build-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/repeat-build-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/repeat-build-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/repeat-build-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/repeat-build-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/repeat-build-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/repeat-build-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/repeat-build-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/repeat-build-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/repeat-build-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/repeat-build-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/repeat-build-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/repeat-build-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/repeat-build-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/repeat-build-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/repeat-build-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/repeat-build-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/repeat-build-plugin/deployments", + "created_at": "2012-09-26T18:03:57Z", + "updated_at": "2013-07-02T13:25:14Z", + "pushed_at": "2012-09-26T18:03:17Z", + "git_url": "git://github.com/jenkinsci/repeat-build-plugin.git", + "ssh_url": "git@github.com:jenkinsci/repeat-build-plugin.git", + "clone_url": "https://github.com/jenkinsci/repeat-build-plugin.git", + "svn_url": "https://github.com/jenkinsci/repeat-build-plugin", + "homepage": null, + "size": 71, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 5998749, + "node_id": "MDEwOlJlcG9zaXRvcnk1OTk4NzQ5", + "name": "maven-repository-plugin", + "full_name": "jenkinsci/maven-repository-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/maven-repository-plugin", + "description": "Jenkins Maven Repository Plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/maven-repository-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/maven-repository-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/maven-repository-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/maven-repository-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/maven-repository-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/maven-repository-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/maven-repository-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/maven-repository-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/maven-repository-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/maven-repository-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/maven-repository-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/maven-repository-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/maven-repository-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/maven-repository-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/maven-repository-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/maven-repository-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/maven-repository-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/maven-repository-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/maven-repository-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/maven-repository-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/maven-repository-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/maven-repository-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/maven-repository-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/maven-repository-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/maven-repository-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/maven-repository-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/maven-repository-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/maven-repository-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/maven-repository-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/maven-repository-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/maven-repository-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/maven-repository-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/maven-repository-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/maven-repository-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/maven-repository-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/maven-repository-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/maven-repository-plugin/deployments", + "created_at": "2012-09-28T14:55:51Z", + "updated_at": "2017-01-24T17:46:30Z", + "pushed_at": "2016-08-07T12:38:59Z", + "git_url": "git://github.com/jenkinsci/maven-repository-plugin.git", + "ssh_url": "git@github.com:jenkinsci/maven-repository-plugin.git", + "clone_url": "https://github.com/jenkinsci/maven-repository-plugin.git", + "svn_url": "https://github.com/jenkinsci/maven-repository-plugin", + "homepage": "", + "size": 276, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 8, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 8, + "open_issues": 2, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 6013187, + "node_id": "MDEwOlJlcG9zaXRvcnk2MDEzMTg3", + "name": "ant-interceptor", + "full_name": "jenkinsci/ant-interceptor", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/ant-interceptor", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/ant-interceptor", + "forks_url": "https://api.github.com/repos/jenkinsci/ant-interceptor/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/ant-interceptor/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/ant-interceptor/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/ant-interceptor/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/ant-interceptor/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/ant-interceptor/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/ant-interceptor/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/ant-interceptor/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/ant-interceptor/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/ant-interceptor/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/ant-interceptor/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/ant-interceptor/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/ant-interceptor/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/ant-interceptor/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/ant-interceptor/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/ant-interceptor/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/ant-interceptor/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/ant-interceptor/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/ant-interceptor/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/ant-interceptor/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/ant-interceptor/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/ant-interceptor/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/ant-interceptor/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/ant-interceptor/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/ant-interceptor/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/ant-interceptor/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/ant-interceptor/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/ant-interceptor/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/ant-interceptor/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/ant-interceptor/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/ant-interceptor/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/ant-interceptor/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/ant-interceptor/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/ant-interceptor/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/ant-interceptor/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/ant-interceptor/deployments", + "created_at": "2012-09-29T21:09:08Z", + "updated_at": "2013-11-10T01:52:36Z", + "pushed_at": "2013-11-10T01:52:30Z", + "git_url": "git://github.com/jenkinsci/ant-interceptor.git", + "ssh_url": "git@github.com:jenkinsci/ant-interceptor.git", + "clone_url": "https://github.com/jenkinsci/ant-interceptor.git", + "svn_url": "https://github.com/jenkinsci/ant-interceptor", + "homepage": "", + "size": 108, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 6031457, + "node_id": "MDEwOlJlcG9zaXRvcnk2MDMxNDU3", + "name": "deployed-on-column-plugin", + "full_name": "jenkinsci/deployed-on-column-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/deployed-on-column-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/deployed-on-column-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/deployed-on-column-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/deployed-on-column-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/deployed-on-column-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/deployed-on-column-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/deployed-on-column-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/deployed-on-column-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/deployed-on-column-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/deployed-on-column-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/deployed-on-column-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/deployed-on-column-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/deployed-on-column-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/deployed-on-column-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/deployed-on-column-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/deployed-on-column-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/deployed-on-column-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/deployed-on-column-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/deployed-on-column-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/deployed-on-column-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/deployed-on-column-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/deployed-on-column-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/deployed-on-column-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/deployed-on-column-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/deployed-on-column-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/deployed-on-column-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/deployed-on-column-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/deployed-on-column-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/deployed-on-column-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/deployed-on-column-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/deployed-on-column-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/deployed-on-column-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/deployed-on-column-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/deployed-on-column-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/deployed-on-column-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/deployed-on-column-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/deployed-on-column-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/deployed-on-column-plugin/deployments", + "created_at": "2012-10-01T14:58:54Z", + "updated_at": "2016-11-04T16:04:20Z", + "pushed_at": "2017-06-08T15:50:24Z", + "git_url": "git://github.com/jenkinsci/deployed-on-column-plugin.git", + "ssh_url": "git@github.com:jenkinsci/deployed-on-column-plugin.git", + "clone_url": "https://github.com/jenkinsci/deployed-on-column-plugin.git", + "svn_url": "https://github.com/jenkinsci/deployed-on-column-plugin", + "homepage": "", + "size": 22, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 4, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 6032738, + "node_id": "MDEwOlJlcG9zaXRvcnk2MDMyNzM4", + "name": "windows-package-checker", + "full_name": "jenkinsci/windows-package-checker", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/windows-package-checker", + "description": "Java compiler addon that looks out for windows reserved words in package names", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/windows-package-checker", + "forks_url": "https://api.github.com/repos/jenkinsci/windows-package-checker/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/windows-package-checker/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/windows-package-checker/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/windows-package-checker/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/windows-package-checker/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/windows-package-checker/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/windows-package-checker/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/windows-package-checker/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/windows-package-checker/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/windows-package-checker/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/windows-package-checker/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/windows-package-checker/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/windows-package-checker/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/windows-package-checker/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/windows-package-checker/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/windows-package-checker/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/windows-package-checker/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/windows-package-checker/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/windows-package-checker/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/windows-package-checker/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/windows-package-checker/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/windows-package-checker/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/windows-package-checker/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/windows-package-checker/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/windows-package-checker/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/windows-package-checker/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/windows-package-checker/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/windows-package-checker/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/windows-package-checker/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/windows-package-checker/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/windows-package-checker/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/windows-package-checker/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/windows-package-checker/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/windows-package-checker/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/windows-package-checker/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/windows-package-checker/deployments", + "created_at": "2012-10-01T16:32:15Z", + "updated_at": "2013-01-12T12:07:24Z", + "pushed_at": "2012-10-01T18:32:53Z", + "git_url": "git://github.com/jenkinsci/windows-package-checker.git", + "ssh_url": "git@github.com:jenkinsci/windows-package-checker.git", + "clone_url": "https://github.com/jenkinsci/windows-package-checker.git", + "svn_url": "https://github.com/jenkinsci/windows-package-checker", + "homepage": "http://windows-package-checker.kohsuke.org/", + "size": 132, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 6085464, + "node_id": "MDEwOlJlcG9zaXRvcnk2MDg1NDY0", + "name": "multi-module-tests-publisher-plugin", + "full_name": "jenkinsci/multi-module-tests-publisher-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/multi-module-tests-publisher-plugin", + "description": "Plugin to publish junit tests grouped by module name", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/multi-module-tests-publisher-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/multi-module-tests-publisher-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/multi-module-tests-publisher-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/multi-module-tests-publisher-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/multi-module-tests-publisher-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/multi-module-tests-publisher-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/multi-module-tests-publisher-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/multi-module-tests-publisher-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/multi-module-tests-publisher-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/multi-module-tests-publisher-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/multi-module-tests-publisher-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/multi-module-tests-publisher-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/multi-module-tests-publisher-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/multi-module-tests-publisher-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/multi-module-tests-publisher-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/multi-module-tests-publisher-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/multi-module-tests-publisher-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/multi-module-tests-publisher-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/multi-module-tests-publisher-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/multi-module-tests-publisher-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/multi-module-tests-publisher-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/multi-module-tests-publisher-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/multi-module-tests-publisher-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/multi-module-tests-publisher-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/multi-module-tests-publisher-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/multi-module-tests-publisher-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/multi-module-tests-publisher-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/multi-module-tests-publisher-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/multi-module-tests-publisher-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/multi-module-tests-publisher-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/multi-module-tests-publisher-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/multi-module-tests-publisher-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/multi-module-tests-publisher-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/multi-module-tests-publisher-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/multi-module-tests-publisher-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/multi-module-tests-publisher-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/multi-module-tests-publisher-plugin/deployments", + "created_at": "2012-10-05T03:49:57Z", + "updated_at": "2017-11-09T10:55:27Z", + "pushed_at": "2019-10-08T12:31:06Z", + "git_url": "git://github.com/jenkinsci/multi-module-tests-publisher-plugin.git", + "ssh_url": "git@github.com:jenkinsci/multi-module-tests-publisher-plugin.git", + "clone_url": "https://github.com/jenkinsci/multi-module-tests-publisher-plugin.git", + "svn_url": "https://github.com/jenkinsci/multi-module-tests-publisher-plugin", + "homepage": "", + "size": 313, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 11, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 8, + "license": null, + "forks": 11, + "open_issues": 8, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 6092515, + "node_id": "MDEwOlJlcG9zaXRvcnk2MDkyNTE1", + "name": "thucydides-plugin", + "full_name": "jenkinsci/thucydides-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/thucydides-plugin", + "description": "Jenkins Plugin for Thucydides Web Tests", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/thucydides-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/thucydides-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/thucydides-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/thucydides-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/thucydides-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/thucydides-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/thucydides-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/thucydides-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/thucydides-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/thucydides-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/thucydides-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/thucydides-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/thucydides-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/thucydides-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/thucydides-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/thucydides-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/thucydides-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/thucydides-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/thucydides-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/thucydides-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/thucydides-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/thucydides-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/thucydides-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/thucydides-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/thucydides-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/thucydides-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/thucydides-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/thucydides-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/thucydides-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/thucydides-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/thucydides-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/thucydides-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/thucydides-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/thucydides-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/thucydides-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/thucydides-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/thucydides-plugin/deployments", + "created_at": "2012-10-05T15:45:19Z", + "updated_at": "2019-10-08T17:05:57Z", + "pushed_at": "2019-10-08T17:05:55Z", + "git_url": "git://github.com/jenkinsci/thucydides-plugin.git", + "ssh_url": "git@github.com:jenkinsci/thucydides-plugin.git", + "clone_url": "https://github.com/jenkinsci/thucydides-plugin.git", + "svn_url": "https://github.com/jenkinsci/thucydides-plugin", + "homepage": null, + "size": 17, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 8, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 8, + "open_issues": 1, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 6098479, + "node_id": "MDEwOlJlcG9zaXRvcnk2MDk4NDc5", + "name": "ios-device-connector-plugin", + "full_name": "jenkinsci/ios-device-connector-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/ios-device-connector-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/ios-device-connector-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/ios-device-connector-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/ios-device-connector-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/ios-device-connector-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/ios-device-connector-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/ios-device-connector-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/ios-device-connector-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/ios-device-connector-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/ios-device-connector-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/ios-device-connector-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/ios-device-connector-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/ios-device-connector-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/ios-device-connector-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/ios-device-connector-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/ios-device-connector-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/ios-device-connector-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/ios-device-connector-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/ios-device-connector-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/ios-device-connector-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/ios-device-connector-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/ios-device-connector-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/ios-device-connector-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/ios-device-connector-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/ios-device-connector-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/ios-device-connector-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/ios-device-connector-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/ios-device-connector-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/ios-device-connector-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/ios-device-connector-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/ios-device-connector-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/ios-device-connector-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/ios-device-connector-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/ios-device-connector-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/ios-device-connector-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/ios-device-connector-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/ios-device-connector-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/ios-device-connector-plugin/deployments", + "created_at": "2012-10-06T00:31:48Z", + "updated_at": "2018-07-05T19:34:29Z", + "pushed_at": "2019-10-08T16:14:42Z", + "git_url": "git://github.com/jenkinsci/ios-device-connector-plugin.git", + "ssh_url": "git@github.com:jenkinsci/ios-device-connector-plugin.git", + "clone_url": "https://github.com/jenkinsci/ios-device-connector-plugin.git", + "svn_url": "https://github.com/jenkinsci/ios-device-connector-plugin", + "homepage": "", + "size": 248, + "stargazers_count": 12, + "watchers_count": 12, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 13, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 13, + "open_issues": 2, + "watchers": 12, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 6117260, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTE3MjYw", + "name": "patch-parameter-plugin", + "full_name": "jenkinsci/patch-parameter-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/patch-parameter-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/patch-parameter-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/patch-parameter-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/patch-parameter-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/patch-parameter-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/patch-parameter-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/patch-parameter-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/patch-parameter-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/patch-parameter-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/patch-parameter-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/patch-parameter-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/patch-parameter-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/patch-parameter-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/patch-parameter-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/patch-parameter-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/patch-parameter-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/patch-parameter-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/patch-parameter-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/patch-parameter-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/patch-parameter-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/patch-parameter-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/patch-parameter-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/patch-parameter-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/patch-parameter-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/patch-parameter-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/patch-parameter-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/patch-parameter-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/patch-parameter-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/patch-parameter-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/patch-parameter-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/patch-parameter-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/patch-parameter-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/patch-parameter-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/patch-parameter-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/patch-parameter-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/patch-parameter-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/patch-parameter-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/patch-parameter-plugin/deployments", + "created_at": "2012-10-07T23:01:29Z", + "updated_at": "2018-08-15T06:28:46Z", + "pushed_at": "2019-10-08T12:12:11Z", + "git_url": "git://github.com/jenkinsci/patch-parameter-plugin.git", + "ssh_url": "git@github.com:jenkinsci/patch-parameter-plugin.git", + "clone_url": "https://github.com/jenkinsci/patch-parameter-plugin.git", + "svn_url": "https://github.com/jenkinsci/patch-parameter-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Patch+Parameter+Plugin", + "size": 180, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 11, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 11, + "open_issues": 2, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 6146639, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTQ2NjM5", + "name": "dynaslave-plugin", + "full_name": "jenkinsci/dynaslave-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/dynaslave-plugin", + "description": "Jenkins DynaSlave plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/dynaslave-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/dynaslave-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/dynaslave-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/dynaslave-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/dynaslave-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/dynaslave-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/dynaslave-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/dynaslave-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/dynaslave-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/dynaslave-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/dynaslave-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/dynaslave-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/dynaslave-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/dynaslave-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/dynaslave-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/dynaslave-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/dynaslave-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/dynaslave-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/dynaslave-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/dynaslave-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/dynaslave-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/dynaslave-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/dynaslave-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/dynaslave-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/dynaslave-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/dynaslave-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/dynaslave-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/dynaslave-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/dynaslave-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/dynaslave-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/dynaslave-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/dynaslave-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/dynaslave-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/dynaslave-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/dynaslave-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/dynaslave-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/dynaslave-plugin/deployments", + "created_at": "2012-10-09T19:46:53Z", + "updated_at": "2018-08-20T15:34:43Z", + "pushed_at": "2013-11-10T02:00:59Z", + "git_url": "git://github.com/jenkinsci/dynaslave-plugin.git", + "ssh_url": "git@github.com:jenkinsci/dynaslave-plugin.git", + "clone_url": "https://github.com/jenkinsci/dynaslave-plugin.git", + "svn_url": "https://github.com/jenkinsci/dynaslave-plugin", + "homepage": null, + "size": 81, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 6163726, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTYzNzI2", + "name": "php-plugin", + "full_name": "jenkinsci/php-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/php-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/php-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/php-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/php-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/php-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/php-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/php-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/php-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/php-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/php-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/php-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/php-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/php-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/php-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/php-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/php-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/php-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/php-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/php-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/php-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/php-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/php-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/php-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/php-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/php-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/php-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/php-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/php-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/php-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/php-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/php-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/php-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/php-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/php-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/php-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/php-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/php-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/php-plugin/deployments", + "created_at": "2012-10-10T20:16:16Z", + "updated_at": "2019-07-08T16:15:03Z", + "pushed_at": "2013-11-10T02:13:10Z", + "git_url": "git://github.com/jenkinsci/php-plugin.git", + "ssh_url": "git@github.com:jenkinsci/php-plugin.git", + "clone_url": "https://github.com/jenkinsci/php-plugin.git", + "svn_url": "https://github.com/jenkinsci/php-plugin", + "homepage": "", + "size": 98, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": true, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 6173756, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTczNzU2", + "name": "gitlab-hook-plugin", + "full_name": "jenkinsci/gitlab-hook-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/gitlab-hook-plugin", + "description": "Enables Gitlab web hooks to be used to trigger SMC polling on Gitlab projects", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/gitlab-hook-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/gitlab-hook-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/gitlab-hook-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/gitlab-hook-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/gitlab-hook-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/gitlab-hook-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/gitlab-hook-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/gitlab-hook-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/gitlab-hook-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/gitlab-hook-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/gitlab-hook-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/gitlab-hook-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/gitlab-hook-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/gitlab-hook-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/gitlab-hook-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/gitlab-hook-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/gitlab-hook-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/gitlab-hook-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/gitlab-hook-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/gitlab-hook-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/gitlab-hook-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/gitlab-hook-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/gitlab-hook-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/gitlab-hook-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/gitlab-hook-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/gitlab-hook-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/gitlab-hook-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/gitlab-hook-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/gitlab-hook-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/gitlab-hook-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/gitlab-hook-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/gitlab-hook-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/gitlab-hook-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/gitlab-hook-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/gitlab-hook-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/gitlab-hook-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/gitlab-hook-plugin/deployments", + "created_at": "2012-10-11T12:50:23Z", + "updated_at": "2019-09-01T03:38:07Z", + "pushed_at": "2019-10-22T16:46:29Z", + "git_url": "git://github.com/jenkinsci/gitlab-hook-plugin.git", + "ssh_url": "git@github.com:jenkinsci/gitlab-hook-plugin.git", + "clone_url": "https://github.com/jenkinsci/gitlab-hook-plugin.git", + "svn_url": "https://github.com/jenkinsci/gitlab-hook-plugin", + "homepage": null, + "size": 28212, + "stargazers_count": 129, + "watchers_count": 129, + "language": "Ruby", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 43, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 27, + "license": null, + "forks": 43, + "open_issues": 27, + "watchers": 129, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 6195415, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTk1NDE1", + "name": "launchd-slave-installer-module", + "full_name": "jenkinsci/launchd-slave-installer-module", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/launchd-slave-installer-module", + "description": "Module in Jenkins core that installs slave as a launchd service on OS X systems", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/launchd-slave-installer-module", + "forks_url": "https://api.github.com/repos/jenkinsci/launchd-slave-installer-module/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/launchd-slave-installer-module/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/launchd-slave-installer-module/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/launchd-slave-installer-module/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/launchd-slave-installer-module/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/launchd-slave-installer-module/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/launchd-slave-installer-module/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/launchd-slave-installer-module/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/launchd-slave-installer-module/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/launchd-slave-installer-module/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/launchd-slave-installer-module/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/launchd-slave-installer-module/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/launchd-slave-installer-module/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/launchd-slave-installer-module/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/launchd-slave-installer-module/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/launchd-slave-installer-module/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/launchd-slave-installer-module/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/launchd-slave-installer-module/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/launchd-slave-installer-module/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/launchd-slave-installer-module/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/launchd-slave-installer-module/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/launchd-slave-installer-module/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/launchd-slave-installer-module/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/launchd-slave-installer-module/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/launchd-slave-installer-module/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/launchd-slave-installer-module/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/launchd-slave-installer-module/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/launchd-slave-installer-module/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/launchd-slave-installer-module/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/launchd-slave-installer-module/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/launchd-slave-installer-module/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/launchd-slave-installer-module/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/launchd-slave-installer-module/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/launchd-slave-installer-module/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/launchd-slave-installer-module/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/launchd-slave-installer-module/deployments", + "created_at": "2012-10-12T19:47:32Z", + "updated_at": "2019-04-16T12:26:04Z", + "pushed_at": "2019-04-22T16:48:34Z", + "git_url": "git://github.com/jenkinsci/launchd-slave-installer-module.git", + "ssh_url": "git@github.com:jenkinsci/launchd-slave-installer-module.git", + "clone_url": "https://github.com/jenkinsci/launchd-slave-installer-module.git", + "svn_url": "https://github.com/jenkinsci/launchd-slave-installer-module", + "homepage": "http://jenkins-ci.org/", + "size": 32, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 3, + "open_issues": 2, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 6205714, + "node_id": "MDEwOlJlcG9zaXRvcnk2MjA1NzE0", + "name": "gitorious-plugin", + "full_name": "jenkinsci/gitorious-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/gitorious-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/gitorious-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/gitorious-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/gitorious-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/gitorious-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/gitorious-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/gitorious-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/gitorious-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/gitorious-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/gitorious-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/gitorious-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/gitorious-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/gitorious-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/gitorious-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/gitorious-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/gitorious-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/gitorious-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/gitorious-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/gitorious-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/gitorious-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/gitorious-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/gitorious-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/gitorious-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/gitorious-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/gitorious-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/gitorious-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/gitorious-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/gitorious-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/gitorious-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/gitorious-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/gitorious-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/gitorious-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/gitorious-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/gitorious-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/gitorious-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/gitorious-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/gitorious-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/gitorious-plugin/deployments", + "created_at": "2012-10-13T17:54:44Z", + "updated_at": "2015-03-12T14:59:03Z", + "pushed_at": "2015-03-12T14:59:02Z", + "git_url": "git://github.com/jenkinsci/gitorious-plugin.git", + "ssh_url": "git@github.com:jenkinsci/gitorious-plugin.git", + "clone_url": "https://github.com/jenkinsci/gitorious-plugin.git", + "svn_url": "https://github.com/jenkinsci/gitorious-plugin", + "homepage": "", + "size": 150, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 5, + "open_issues": 2, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 6229931, + "node_id": "MDEwOlJlcG9zaXRvcnk2MjI5OTMx", + "name": "vboxwrapper-plugin", + "full_name": "jenkinsci/vboxwrapper-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/vboxwrapper-plugin", + "description": "VBoxWrapper jenkins plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/vboxwrapper-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/vboxwrapper-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/vboxwrapper-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/vboxwrapper-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/vboxwrapper-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/vboxwrapper-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/vboxwrapper-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/vboxwrapper-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/vboxwrapper-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/vboxwrapper-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/vboxwrapper-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/vboxwrapper-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/vboxwrapper-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/vboxwrapper-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/vboxwrapper-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/vboxwrapper-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/vboxwrapper-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/vboxwrapper-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/vboxwrapper-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/vboxwrapper-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/vboxwrapper-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/vboxwrapper-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/vboxwrapper-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/vboxwrapper-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/vboxwrapper-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/vboxwrapper-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/vboxwrapper-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/vboxwrapper-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/vboxwrapper-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/vboxwrapper-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/vboxwrapper-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/vboxwrapper-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/vboxwrapper-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/vboxwrapper-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/vboxwrapper-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/vboxwrapper-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/vboxwrapper-plugin/deployments", + "created_at": "2012-10-15T16:09:06Z", + "updated_at": "2013-11-10T02:22:02Z", + "pushed_at": "2013-11-10T02:22:00Z", + "git_url": "git://github.com/jenkinsci/vboxwrapper-plugin.git", + "ssh_url": "git@github.com:jenkinsci/vboxwrapper-plugin.git", + "clone_url": "https://github.com/jenkinsci/vboxwrapper-plugin.git", + "svn_url": "https://github.com/jenkinsci/vboxwrapper-plugin", + "homepage": null, + "size": 154, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/__files/organizations_107424_repos-26bad52b-c62b-469b-885f-453d7b164aca.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/__files/organizations_107424_repos-26bad52b-c62b-469b-885f-453d7b164aca.json new file mode 100644 index 0000000000..79acf51ff1 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/__files/organizations_107424_repos-26bad52b-c62b-469b-885f-453d7b164aca.json @@ -0,0 +1,10190 @@ +[ + { + "id": 11827335, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTgyNzMzNQ==", + "name": "vessel-plugin", + "full_name": "jenkinsci/vessel-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/vessel-plugin", + "description": "Vessel Jenkins Plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/vessel-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/vessel-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/vessel-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/vessel-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/vessel-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/vessel-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/vessel-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/vessel-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/vessel-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/vessel-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/vessel-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/vessel-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/vessel-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/vessel-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/vessel-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/vessel-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/vessel-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/vessel-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/vessel-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/vessel-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/vessel-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/vessel-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/vessel-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/vessel-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/vessel-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/vessel-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/vessel-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/vessel-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/vessel-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/vessel-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/vessel-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/vessel-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/vessel-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/vessel-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/vessel-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/vessel-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/vessel-plugin/deployments", + "created_at": "2013-08-01T20:49:15Z", + "updated_at": "2016-05-29T22:33:14Z", + "pushed_at": "2013-09-06T21:54:19Z", + "git_url": "git://github.com/jenkinsci/vessel-plugin.git", + "ssh_url": "git@github.com:jenkinsci/vessel-plugin.git", + "clone_url": "https://github.com/jenkinsci/vessel-plugin.git", + "svn_url": "https://github.com/jenkinsci/vessel-plugin", + "homepage": null, + "size": 116, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 11828845, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTgyODg0NQ==", + "name": "mesos-plugin", + "full_name": "jenkinsci/mesos-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/mesos-plugin", + "description": "Mesos Jenkins Plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/mesos-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/mesos-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/mesos-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/mesos-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/mesos-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/mesos-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/mesos-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/mesos-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/mesos-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/mesos-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/mesos-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/mesos-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/mesos-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/mesos-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/mesos-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/mesos-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/mesos-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/mesos-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/mesos-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/mesos-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/mesos-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/mesos-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/mesos-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/mesos-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/mesos-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/mesos-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/mesos-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/mesos-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/mesos-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/mesos-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/mesos-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/mesos-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/mesos-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/mesos-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/mesos-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/mesos-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/mesos-plugin/deployments", + "created_at": "2013-08-01T22:06:52Z", + "updated_at": "2019-10-15T05:20:46Z", + "pushed_at": "2019-10-25T08:04:25Z", + "git_url": "git://github.com/jenkinsci/mesos-plugin.git", + "ssh_url": "git@github.com:jenkinsci/mesos-plugin.git", + "clone_url": "https://github.com/jenkinsci/mesos-plugin.git", + "svn_url": "https://github.com/jenkinsci/mesos-plugin", + "homepage": "http://wiki.jenkins-ci.org/display/JENKINS/Mesos+Plugin", + "size": 820, + "stargazers_count": 289, + "watchers_count": 289, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 170, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 74, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 170, + "open_issues": 74, + "watchers": 289, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 11846740, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTg0Njc0MA==", + "name": "dependency-check-plugin", + "full_name": "jenkinsci/dependency-check-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/dependency-check-plugin", + "description": "Jenkins plugin for OWASP Dependency-Check. Inspects project components for known vulnerabilities (e.g. CVEs).", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/dependency-check-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/dependency-check-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/dependency-check-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/dependency-check-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/dependency-check-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/dependency-check-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/dependency-check-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/dependency-check-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/dependency-check-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/dependency-check-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/dependency-check-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/dependency-check-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/dependency-check-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/dependency-check-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/dependency-check-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/dependency-check-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/dependency-check-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/dependency-check-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/dependency-check-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/dependency-check-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/dependency-check-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/dependency-check-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/dependency-check-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/dependency-check-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/dependency-check-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/dependency-check-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/dependency-check-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/dependency-check-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/dependency-check-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/dependency-check-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/dependency-check-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/dependency-check-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/dependency-check-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/dependency-check-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/dependency-check-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/dependency-check-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/dependency-check-plugin/deployments", + "created_at": "2013-08-02T15:44:22Z", + "updated_at": "2019-10-25T15:02:19Z", + "pushed_at": "2019-10-09T00:48:40Z", + "git_url": "git://github.com/jenkinsci/dependency-check-plugin.git", + "ssh_url": "git@github.com:jenkinsci/dependency-check-plugin.git", + "clone_url": "https://github.com/jenkinsci/dependency-check-plugin.git", + "svn_url": "https://github.com/jenkinsci/dependency-check-plugin", + "homepage": "", + "size": 1802, + "stargazers_count": 77, + "watchers_count": 77, + "language": "Java", + "has_issues": false, + "has_projects": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 50, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 50, + "open_issues": 0, + "watchers": 77, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 11895914, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTg5NTkxNA==", + "name": "kato-plugin", + "full_name": "jenkinsci/kato-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/kato-plugin", + "description": "forked from HipChat plus few things from updated Campfire but with sane settings (thanks to scp plugin)", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/kato-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/kato-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/kato-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/kato-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/kato-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/kato-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/kato-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/kato-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/kato-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/kato-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/kato-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/kato-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/kato-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/kato-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/kato-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/kato-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/kato-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/kato-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/kato-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/kato-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/kato-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/kato-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/kato-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/kato-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/kato-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/kato-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/kato-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/kato-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/kato-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/kato-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/kato-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/kato-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/kato-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/kato-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/kato-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/kato-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/kato-plugin/deployments", + "created_at": "2013-08-05T10:41:05Z", + "updated_at": "2014-10-23T05:55:38Z", + "pushed_at": "2014-10-25T07:53:05Z", + "git_url": "git://github.com/jenkinsci/kato-plugin.git", + "ssh_url": "git@github.com:jenkinsci/kato-plugin.git", + "clone_url": "https://github.com/jenkinsci/kato-plugin.git", + "svn_url": "https://github.com/jenkinsci/kato-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Kato+Plugin", + "size": 304, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 11903622, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTkwMzYyMg==", + "name": "kiuwan-plugin", + "full_name": "jenkinsci/kiuwan-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/kiuwan-plugin", + "description": "Run Kiuwan static analysis of your code as part of your continuous integration process with Jenkins.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/kiuwan-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/kiuwan-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/kiuwan-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/kiuwan-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/kiuwan-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/kiuwan-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/kiuwan-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/kiuwan-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/kiuwan-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/kiuwan-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/kiuwan-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/kiuwan-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/kiuwan-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/kiuwan-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/kiuwan-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/kiuwan-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/kiuwan-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/kiuwan-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/kiuwan-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/kiuwan-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/kiuwan-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/kiuwan-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/kiuwan-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/kiuwan-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/kiuwan-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/kiuwan-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/kiuwan-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/kiuwan-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/kiuwan-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/kiuwan-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/kiuwan-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/kiuwan-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/kiuwan-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/kiuwan-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/kiuwan-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/kiuwan-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/kiuwan-plugin/deployments", + "created_at": "2013-08-05T16:51:53Z", + "updated_at": "2019-06-05T12:18:28Z", + "pushed_at": "2019-08-14T09:25:12Z", + "git_url": "git://github.com/jenkinsci/kiuwan-plugin.git", + "ssh_url": "git@github.com:jenkinsci/kiuwan-plugin.git", + "clone_url": "https://github.com/jenkinsci/kiuwan-plugin.git", + "svn_url": "https://github.com/jenkinsci/kiuwan-plugin", + "homepage": "https://www.kiuwan.com", + "size": 186, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 6, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 11903664, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTkwMzY2NA==", + "name": "ec2-testharness", + "full_name": "jenkinsci/ec2-testharness", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/ec2-testharness", + "description": "Test harness for jenkins ec2 plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/ec2-testharness", + "forks_url": "https://api.github.com/repos/jenkinsci/ec2-testharness/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/ec2-testharness/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/ec2-testharness/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/ec2-testharness/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/ec2-testharness/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/ec2-testharness/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/ec2-testharness/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/ec2-testharness/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/ec2-testharness/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/ec2-testharness/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/ec2-testharness/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/ec2-testharness/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/ec2-testharness/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/ec2-testharness/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/ec2-testharness/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/ec2-testharness/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/ec2-testharness/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/ec2-testharness/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/ec2-testharness/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/ec2-testharness/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/ec2-testharness/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/ec2-testharness/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/ec2-testharness/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/ec2-testharness/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/ec2-testharness/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/ec2-testharness/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/ec2-testharness/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/ec2-testharness/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/ec2-testharness/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/ec2-testharness/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/ec2-testharness/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/ec2-testharness/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/ec2-testharness/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/ec2-testharness/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/ec2-testharness/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/ec2-testharness/deployments", + "created_at": "2013-08-05T16:53:32Z", + "updated_at": "2017-05-25T20:21:33Z", + "pushed_at": "2013-11-10T02:01:06Z", + "git_url": "git://github.com/jenkinsci/ec2-testharness.git", + "ssh_url": "git@github.com:jenkinsci/ec2-testharness.git", + "clone_url": "https://github.com/jenkinsci/ec2-testharness.git", + "svn_url": "https://github.com/jenkinsci/ec2-testharness", + "homepage": null, + "size": 122, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 11905325, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTkwNTMyNQ==", + "name": "logentries-plugin", + "full_name": "jenkinsci/logentries-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/logentries-plugin", + "description": "Jenkins plug-in for Logentries", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/logentries-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/logentries-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/logentries-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/logentries-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/logentries-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/logentries-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/logentries-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/logentries-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/logentries-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/logentries-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/logentries-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/logentries-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/logentries-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/logentries-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/logentries-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/logentries-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/logentries-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/logentries-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/logentries-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/logentries-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/logentries-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/logentries-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/logentries-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/logentries-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/logentries-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/logentries-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/logentries-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/logentries-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/logentries-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/logentries-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/logentries-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/logentries-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/logentries-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/logentries-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/logentries-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/logentries-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/logentries-plugin/deployments", + "created_at": "2013-08-05T18:16:10Z", + "updated_at": "2015-11-20T14:45:21Z", + "pushed_at": "2013-11-10T02:09:53Z", + "git_url": "git://github.com/jenkinsci/logentries-plugin.git", + "ssh_url": "git@github.com:jenkinsci/logentries-plugin.git", + "clone_url": "https://github.com/jenkinsci/logentries-plugin.git", + "svn_url": "https://github.com/jenkinsci/logentries-plugin", + "homepage": null, + "size": 148, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 4, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 11906842, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTkwNjg0Mg==", + "name": "kpp-management-plugin", + "full_name": "jenkinsci/kpp-management-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/kpp-management-plugin", + "description": "This Jenkins plugin integrates a keychain and provisioning profiles managment for iOS and OSX projects build on a mac.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/kpp-management-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/kpp-management-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/kpp-management-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/kpp-management-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/kpp-management-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/kpp-management-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/kpp-management-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/kpp-management-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/kpp-management-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/kpp-management-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/kpp-management-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/kpp-management-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/kpp-management-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/kpp-management-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/kpp-management-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/kpp-management-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/kpp-management-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/kpp-management-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/kpp-management-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/kpp-management-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/kpp-management-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/kpp-management-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/kpp-management-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/kpp-management-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/kpp-management-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/kpp-management-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/kpp-management-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/kpp-management-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/kpp-management-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/kpp-management-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/kpp-management-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/kpp-management-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/kpp-management-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/kpp-management-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/kpp-management-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/kpp-management-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/kpp-management-plugin/deployments", + "created_at": "2013-08-05T19:30:31Z", + "updated_at": "2018-08-08T03:26:58Z", + "pushed_at": "2019-10-08T10:08:09Z", + "git_url": "git://github.com/jenkinsci/kpp-management-plugin.git", + "ssh_url": "git@github.com:jenkinsci/kpp-management-plugin.git", + "clone_url": "https://github.com/jenkinsci/kpp-management-plugin.git", + "svn_url": "https://github.com/jenkinsci/kpp-management-plugin", + "homepage": null, + "size": 25228, + "stargazers_count": 10, + "watchers_count": 10, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 15, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 6, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 15, + "open_issues": 6, + "watchers": 10, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 11930434, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTkzMDQzNA==", + "name": "build-line-plugin", + "full_name": "jenkinsci/build-line-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/build-line-plugin", + "description": "This is a plugin of Jenkins.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/build-line-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/build-line-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/build-line-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/build-line-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/build-line-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/build-line-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/build-line-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/build-line-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/build-line-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/build-line-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/build-line-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/build-line-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/build-line-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/build-line-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/build-line-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/build-line-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/build-line-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/build-line-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/build-line-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/build-line-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/build-line-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/build-line-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/build-line-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/build-line-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/build-line-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/build-line-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/build-line-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/build-line-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/build-line-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/build-line-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/build-line-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/build-line-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/build-line-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/build-line-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/build-line-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/build-line-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/build-line-plugin/deployments", + "created_at": "2013-08-06T17:42:31Z", + "updated_at": "2013-11-10T01:55:29Z", + "pushed_at": "2013-11-10T01:55:22Z", + "git_url": "git://github.com/jenkinsci/build-line-plugin.git", + "ssh_url": "git@github.com:jenkinsci/build-line-plugin.git", + "clone_url": "https://github.com/jenkinsci/build-line-plugin.git", + "svn_url": "https://github.com/jenkinsci/build-line-plugin", + "homepage": null, + "size": 386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 11943176, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTk0MzE3Ng==", + "name": "xldeploy-plugin", + "full_name": "jenkinsci/xldeploy-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/xldeploy-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/xldeploy-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/xldeploy-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/xldeploy-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/xldeploy-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/xldeploy-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/xldeploy-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/xldeploy-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/xldeploy-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/xldeploy-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/xldeploy-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/xldeploy-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/xldeploy-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/xldeploy-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/xldeploy-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/xldeploy-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/xldeploy-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/xldeploy-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/xldeploy-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/xldeploy-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/xldeploy-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/xldeploy-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/xldeploy-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/xldeploy-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/xldeploy-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/xldeploy-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/xldeploy-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/xldeploy-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/xldeploy-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/xldeploy-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/xldeploy-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/xldeploy-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/xldeploy-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/xldeploy-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/xldeploy-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/xldeploy-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/xldeploy-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/xldeploy-plugin/deployments", + "created_at": "2013-08-07T06:35:58Z", + "updated_at": "2019-09-26T15:05:21Z", + "pushed_at": "2019-09-26T15:05:29Z", + "git_url": "git://github.com/jenkinsci/xldeploy-plugin.git", + "ssh_url": "git@github.com:jenkinsci/xldeploy-plugin.git", + "clone_url": "https://github.com/jenkinsci/xldeploy-plugin.git", + "svn_url": "https://github.com/jenkinsci/xldeploy-plugin", + "homepage": "https://xebialabs.com/", + "size": 2953, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 37, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 9, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 37, + "open_issues": 9, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 12079351, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjA3OTM1MQ==", + "name": "svn-global-auth-provider-plugin", + "full_name": "jenkinsci/svn-global-auth-provider-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/svn-global-auth-provider-plugin", + "description": "Plugin provides ability to setup SVN credentials provider (with password) for the specified URLs", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/svn-global-auth-provider-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/svn-global-auth-provider-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/svn-global-auth-provider-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/svn-global-auth-provider-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/svn-global-auth-provider-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/svn-global-auth-provider-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/svn-global-auth-provider-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/svn-global-auth-provider-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/svn-global-auth-provider-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/svn-global-auth-provider-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/svn-global-auth-provider-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/svn-global-auth-provider-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/svn-global-auth-provider-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/svn-global-auth-provider-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/svn-global-auth-provider-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/svn-global-auth-provider-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/svn-global-auth-provider-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/svn-global-auth-provider-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/svn-global-auth-provider-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/svn-global-auth-provider-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/svn-global-auth-provider-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/svn-global-auth-provider-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/svn-global-auth-provider-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/svn-global-auth-provider-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/svn-global-auth-provider-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/svn-global-auth-provider-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/svn-global-auth-provider-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/svn-global-auth-provider-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/svn-global-auth-provider-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/svn-global-auth-provider-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/svn-global-auth-provider-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/svn-global-auth-provider-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/svn-global-auth-provider-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/svn-global-auth-provider-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/svn-global-auth-provider-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/svn-global-auth-provider-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/svn-global-auth-provider-plugin/deployments", + "created_at": "2013-08-13T10:31:35Z", + "updated_at": "2013-08-13T10:31:35Z", + "pushed_at": "2013-08-13T10:30:41Z", + "git_url": "git://github.com/jenkinsci/svn-global-auth-provider-plugin.git", + "ssh_url": "git@github.com:jenkinsci/svn-global-auth-provider-plugin.git", + "clone_url": "https://github.com/jenkinsci/svn-global-auth-provider-plugin.git", + "svn_url": "https://github.com/jenkinsci/svn-global-auth-provider-plugin", + "homepage": null, + "size": 40, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 12134367, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjEzNDM2Nw==", + "name": "junit-realtime-test-reporter-plugin", + "full_name": "jenkinsci/junit-realtime-test-reporter-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/junit-realtime-test-reporter-plugin", + "description": "Report JUnit test results in real time", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/junit-realtime-test-reporter-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/junit-realtime-test-reporter-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/junit-realtime-test-reporter-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/junit-realtime-test-reporter-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/junit-realtime-test-reporter-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/junit-realtime-test-reporter-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/junit-realtime-test-reporter-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/junit-realtime-test-reporter-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/junit-realtime-test-reporter-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/junit-realtime-test-reporter-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/junit-realtime-test-reporter-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/junit-realtime-test-reporter-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/junit-realtime-test-reporter-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/junit-realtime-test-reporter-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/junit-realtime-test-reporter-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/junit-realtime-test-reporter-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/junit-realtime-test-reporter-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/junit-realtime-test-reporter-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/junit-realtime-test-reporter-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/junit-realtime-test-reporter-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/junit-realtime-test-reporter-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/junit-realtime-test-reporter-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/junit-realtime-test-reporter-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/junit-realtime-test-reporter-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/junit-realtime-test-reporter-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/junit-realtime-test-reporter-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/junit-realtime-test-reporter-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/junit-realtime-test-reporter-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/junit-realtime-test-reporter-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/junit-realtime-test-reporter-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/junit-realtime-test-reporter-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/junit-realtime-test-reporter-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/junit-realtime-test-reporter-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/junit-realtime-test-reporter-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/junit-realtime-test-reporter-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/junit-realtime-test-reporter-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/junit-realtime-test-reporter-plugin/deployments", + "created_at": "2013-08-15T12:58:06Z", + "updated_at": "2019-04-15T06:24:41Z", + "pushed_at": "2019-10-22T23:01:10Z", + "git_url": "git://github.com/jenkinsci/junit-realtime-test-reporter-plugin.git", + "ssh_url": "git@github.com:jenkinsci/junit-realtime-test-reporter-plugin.git", + "clone_url": "https://github.com/jenkinsci/junit-realtime-test-reporter-plugin.git", + "svn_url": "https://github.com/jenkinsci/junit-realtime-test-reporter-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/JUnit+Realtime+Test+Reporter+Plugin", + "size": 71, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 8, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 8, + "open_issues": 2, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 12218843, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjIxODg0Mw==", + "name": "JDK_Parameter_Plugin-plugin", + "full_name": "jenkinsci/JDK_Parameter_Plugin-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/JDK_Parameter_Plugin-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/JDK_Parameter_Plugin-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/JDK_Parameter_Plugin-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/JDK_Parameter_Plugin-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/JDK_Parameter_Plugin-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/JDK_Parameter_Plugin-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/JDK_Parameter_Plugin-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/JDK_Parameter_Plugin-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/JDK_Parameter_Plugin-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/JDK_Parameter_Plugin-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/JDK_Parameter_Plugin-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/JDK_Parameter_Plugin-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/JDK_Parameter_Plugin-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/JDK_Parameter_Plugin-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/JDK_Parameter_Plugin-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/JDK_Parameter_Plugin-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/JDK_Parameter_Plugin-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/JDK_Parameter_Plugin-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/JDK_Parameter_Plugin-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/JDK_Parameter_Plugin-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/JDK_Parameter_Plugin-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/JDK_Parameter_Plugin-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/JDK_Parameter_Plugin-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/JDK_Parameter_Plugin-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/JDK_Parameter_Plugin-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/JDK_Parameter_Plugin-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/JDK_Parameter_Plugin-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/JDK_Parameter_Plugin-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/JDK_Parameter_Plugin-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/JDK_Parameter_Plugin-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/JDK_Parameter_Plugin-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/JDK_Parameter_Plugin-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/JDK_Parameter_Plugin-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/JDK_Parameter_Plugin-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/JDK_Parameter_Plugin-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/JDK_Parameter_Plugin-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/JDK_Parameter_Plugin-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/JDK_Parameter_Plugin-plugin/deployments", + "created_at": "2013-08-19T14:31:14Z", + "updated_at": "2018-06-16T11:43:24Z", + "pushed_at": "2018-06-16T11:43:23Z", + "git_url": "git://github.com/jenkinsci/JDK_Parameter_Plugin-plugin.git", + "ssh_url": "git@github.com:jenkinsci/JDK_Parameter_Plugin-plugin.git", + "clone_url": "https://github.com/jenkinsci/JDK_Parameter_Plugin-plugin.git", + "svn_url": "https://github.com/jenkinsci/JDK_Parameter_Plugin-plugin", + "homepage": null, + "size": 45737, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 4, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 12241306, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjI0MTMwNg==", + "name": "appthwack-plugin", + "full_name": "jenkinsci/appthwack-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/appthwack-plugin", + "description": "AppThwack integration with Jenkins CI.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/appthwack-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/appthwack-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/appthwack-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/appthwack-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/appthwack-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/appthwack-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/appthwack-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/appthwack-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/appthwack-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/appthwack-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/appthwack-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/appthwack-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/appthwack-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/appthwack-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/appthwack-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/appthwack-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/appthwack-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/appthwack-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/appthwack-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/appthwack-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/appthwack-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/appthwack-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/appthwack-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/appthwack-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/appthwack-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/appthwack-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/appthwack-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/appthwack-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/appthwack-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/appthwack-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/appthwack-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/appthwack-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/appthwack-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/appthwack-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/appthwack-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/appthwack-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/appthwack-plugin/deployments", + "created_at": "2013-08-20T11:16:12Z", + "updated_at": "2017-03-01T22:39:32Z", + "pushed_at": "2014-07-20T19:58:20Z", + "git_url": "git://github.com/jenkinsci/appthwack-plugin.git", + "ssh_url": "git@github.com:jenkinsci/appthwack-plugin.git", + "clone_url": "https://github.com/jenkinsci/appthwack-plugin.git", + "svn_url": "https://github.com/jenkinsci/appthwack-plugin", + "homepage": null, + "size": 684, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 2, + "open_issues": 0, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 12262748, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjI2Mjc0OA==", + "name": "graphite-plugin", + "full_name": "jenkinsci/graphite-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/graphite-plugin", + "description": "This plugin allows you to send this metrics : number of tests, tests skipped, tests failed, build duration, cobertura total line coverage and cobertura total branch coverage to one or more graphite servers. If you don't have a graphite server you can use : https://www.hostedgraphite.com to test.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/graphite-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/graphite-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/graphite-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/graphite-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/graphite-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/graphite-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/graphite-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/graphite-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/graphite-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/graphite-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/graphite-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/graphite-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/graphite-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/graphite-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/graphite-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/graphite-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/graphite-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/graphite-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/graphite-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/graphite-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/graphite-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/graphite-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/graphite-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/graphite-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/graphite-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/graphite-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/graphite-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/graphite-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/graphite-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/graphite-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/graphite-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/graphite-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/graphite-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/graphite-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/graphite-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/graphite-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/graphite-plugin/deployments", + "created_at": "2013-08-21T06:15:48Z", + "updated_at": "2019-02-08T15:32:10Z", + "pushed_at": "2019-10-08T12:38:23Z", + "git_url": "git://github.com/jenkinsci/graphite-plugin.git", + "ssh_url": "git@github.com:jenkinsci/graphite-plugin.git", + "clone_url": "https://github.com/jenkinsci/graphite-plugin.git", + "svn_url": "https://github.com/jenkinsci/graphite-plugin", + "homepage": "", + "size": 56, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 13, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 13, + "open_issues": 2, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 12273690, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjI3MzY5MA==", + "name": "compress-artifacts-plugin", + "full_name": "jenkinsci/compress-artifacts-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/compress-artifacts-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/compress-artifacts-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/compress-artifacts-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/compress-artifacts-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/compress-artifacts-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/compress-artifacts-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/compress-artifacts-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/compress-artifacts-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/compress-artifacts-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/compress-artifacts-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/compress-artifacts-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/compress-artifacts-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/compress-artifacts-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/compress-artifacts-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/compress-artifacts-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/compress-artifacts-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/compress-artifacts-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/compress-artifacts-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/compress-artifacts-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/compress-artifacts-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/compress-artifacts-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/compress-artifacts-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/compress-artifacts-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/compress-artifacts-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/compress-artifacts-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/compress-artifacts-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/compress-artifacts-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/compress-artifacts-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/compress-artifacts-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/compress-artifacts-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/compress-artifacts-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/compress-artifacts-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/compress-artifacts-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/compress-artifacts-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/compress-artifacts-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/compress-artifacts-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/compress-artifacts-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/compress-artifacts-plugin/deployments", + "created_at": "2013-08-21T15:25:52Z", + "updated_at": "2019-10-08T13:26:58Z", + "pushed_at": "2019-10-08T13:26:57Z", + "git_url": "git://github.com/jenkinsci/compress-artifacts-plugin.git", + "ssh_url": "git@github.com:jenkinsci/compress-artifacts-plugin.git", + "clone_url": "https://github.com/jenkinsci/compress-artifacts-plugin.git", + "svn_url": "https://github.com/jenkinsci/compress-artifacts-plugin", + "homepage": "", + "size": 72, + "stargazers_count": 6, + "watchers_count": 6, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 8, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 8, + "open_issues": 1, + "watchers": 6, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 12372319, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjM3MjMxOQ==", + "name": "job-restrictions-plugin", + "full_name": "jenkinsci/job-restrictions-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/job-restrictions-plugin", + "description": "Provides additional options, which allow to restrict job executions in Jenkins", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/job-restrictions-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/job-restrictions-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/job-restrictions-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/job-restrictions-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/job-restrictions-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/job-restrictions-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/job-restrictions-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/job-restrictions-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/job-restrictions-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/job-restrictions-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/job-restrictions-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/job-restrictions-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/job-restrictions-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/job-restrictions-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/job-restrictions-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/job-restrictions-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/job-restrictions-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/job-restrictions-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/job-restrictions-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/job-restrictions-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/job-restrictions-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/job-restrictions-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/job-restrictions-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/job-restrictions-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/job-restrictions-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/job-restrictions-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/job-restrictions-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/job-restrictions-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/job-restrictions-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/job-restrictions-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/job-restrictions-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/job-restrictions-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/job-restrictions-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/job-restrictions-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/job-restrictions-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/job-restrictions-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/job-restrictions-plugin/deployments", + "created_at": "2013-08-26T06:04:32Z", + "updated_at": "2019-09-24T01:42:36Z", + "pushed_at": "2018-10-07T10:10:18Z", + "git_url": "git://github.com/jenkinsci/job-restrictions-plugin.git", + "ssh_url": "git@github.com:jenkinsci/job-restrictions-plugin.git", + "clone_url": "https://github.com/jenkinsci/job-restrictions-plugin.git", + "svn_url": "https://github.com/jenkinsci/job-restrictions-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Job+Restrictions+Plugin", + "size": 128, + "stargazers_count": 7, + "watchers_count": 7, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 14, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 14, + "open_issues": 3, + "watchers": 7, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 12376333, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjM3NjMzMw==", + "name": "monitor-remote-job-plugin", + "full_name": "jenkinsci/monitor-remote-job-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/monitor-remote-job-plugin", + "description": "This is jenkins plugin for monitor remote jenkins job is working.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/monitor-remote-job-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/monitor-remote-job-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/monitor-remote-job-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/monitor-remote-job-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/monitor-remote-job-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/monitor-remote-job-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/monitor-remote-job-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/monitor-remote-job-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/monitor-remote-job-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/monitor-remote-job-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/monitor-remote-job-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/monitor-remote-job-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/monitor-remote-job-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/monitor-remote-job-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/monitor-remote-job-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/monitor-remote-job-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/monitor-remote-job-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/monitor-remote-job-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/monitor-remote-job-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/monitor-remote-job-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/monitor-remote-job-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/monitor-remote-job-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/monitor-remote-job-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/monitor-remote-job-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/monitor-remote-job-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/monitor-remote-job-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/monitor-remote-job-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/monitor-remote-job-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/monitor-remote-job-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/monitor-remote-job-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/monitor-remote-job-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/monitor-remote-job-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/monitor-remote-job-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/monitor-remote-job-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/monitor-remote-job-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/monitor-remote-job-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/monitor-remote-job-plugin/deployments", + "created_at": "2013-08-26T10:14:19Z", + "updated_at": "2013-11-10T02:11:33Z", + "pushed_at": "2013-11-10T02:11:27Z", + "git_url": "git://github.com/jenkinsci/monitor-remote-job-plugin.git", + "ssh_url": "git@github.com:jenkinsci/monitor-remote-job-plugin.git", + "clone_url": "https://github.com/jenkinsci/monitor-remote-job-plugin.git", + "svn_url": "https://github.com/jenkinsci/monitor-remote-job-plugin", + "homepage": null, + "size": 108, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 12589963, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjU4OTk2Mw==", + "name": "hall-plugin", + "full_name": "jenkinsci/hall-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/hall-plugin", + "description": "Jenkins Plugin for Hall.com", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/hall-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/hall-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/hall-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/hall-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/hall-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/hall-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/hall-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/hall-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/hall-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/hall-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/hall-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/hall-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/hall-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/hall-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/hall-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/hall-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/hall-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/hall-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/hall-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/hall-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/hall-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/hall-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/hall-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/hall-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/hall-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/hall-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/hall-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/hall-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/hall-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/hall-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/hall-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/hall-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/hall-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/hall-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/hall-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/hall-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/hall-plugin/deployments", + "created_at": "2013-09-04T12:16:06Z", + "updated_at": "2013-11-10T02:04:38Z", + "pushed_at": "2013-11-10T02:04:36Z", + "git_url": "git://github.com/jenkinsci/hall-plugin.git", + "ssh_url": "git@github.com:jenkinsci/hall-plugin.git", + "clone_url": "https://github.com/jenkinsci/hall-plugin.git", + "svn_url": "https://github.com/jenkinsci/hall-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Hall+Plugin", + "size": 252, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 12620316, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjYyMDMxNg==", + "name": "oauth-credentials-plugin", + "full_name": "jenkinsci/oauth-credentials-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/oauth-credentials-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/oauth-credentials-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/oauth-credentials-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/oauth-credentials-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/oauth-credentials-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/oauth-credentials-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/oauth-credentials-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/oauth-credentials-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/oauth-credentials-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/oauth-credentials-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/oauth-credentials-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/oauth-credentials-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/oauth-credentials-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/oauth-credentials-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/oauth-credentials-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/oauth-credentials-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/oauth-credentials-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/oauth-credentials-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/oauth-credentials-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/oauth-credentials-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/oauth-credentials-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/oauth-credentials-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/oauth-credentials-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/oauth-credentials-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/oauth-credentials-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/oauth-credentials-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/oauth-credentials-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/oauth-credentials-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/oauth-credentials-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/oauth-credentials-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/oauth-credentials-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/oauth-credentials-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/oauth-credentials-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/oauth-credentials-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/oauth-credentials-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/oauth-credentials-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/oauth-credentials-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/oauth-credentials-plugin/deployments", + "created_at": "2013-09-05T14:45:59Z", + "updated_at": "2013-12-11T18:51:55Z", + "pushed_at": "2013-11-10T02:12:24Z", + "git_url": "git://github.com/jenkinsci/oauth-credentials-plugin.git", + "ssh_url": "git@github.com:jenkinsci/oauth-credentials-plugin.git", + "clone_url": "https://github.com/jenkinsci/oauth-credentials-plugin.git", + "svn_url": "https://github.com/jenkinsci/oauth-credentials-plugin", + "homepage": "", + "size": 124, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 12629110, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjYyOTExMA==", + "name": "proxmox-plugin", + "full_name": "jenkinsci/proxmox-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/proxmox-plugin", + "description": "Use Proxmox virtual machines as slaves in Jenkins", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/proxmox-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/proxmox-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/proxmox-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/proxmox-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/proxmox-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/proxmox-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/proxmox-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/proxmox-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/proxmox-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/proxmox-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/proxmox-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/proxmox-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/proxmox-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/proxmox-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/proxmox-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/proxmox-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/proxmox-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/proxmox-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/proxmox-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/proxmox-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/proxmox-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/proxmox-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/proxmox-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/proxmox-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/proxmox-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/proxmox-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/proxmox-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/proxmox-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/proxmox-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/proxmox-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/proxmox-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/proxmox-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/proxmox-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/proxmox-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/proxmox-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/proxmox-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/proxmox-plugin/deployments", + "created_at": "2013-09-05T21:14:38Z", + "updated_at": "2018-02-27T20:40:41Z", + "pushed_at": "2019-05-28T11:19:44Z", + "git_url": "git://github.com/jenkinsci/proxmox-plugin.git", + "ssh_url": "git@github.com:jenkinsci/proxmox-plugin.git", + "clone_url": "https://github.com/jenkinsci/proxmox-plugin.git", + "svn_url": "https://github.com/jenkinsci/proxmox-plugin", + "homepage": null, + "size": 48, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 8, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 8, + "open_issues": 0, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 12654845, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjY1NDg0NQ==", + "name": "scoring-load-balancer-plugin", + "full_name": "jenkinsci/scoring-load-balancer-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/scoring-load-balancer-plugin", + "description": "Jenkins plugin to decides a build run on which node by scoring nodes.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/scoring-load-balancer-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/scoring-load-balancer-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/scoring-load-balancer-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/scoring-load-balancer-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/scoring-load-balancer-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/scoring-load-balancer-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/scoring-load-balancer-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/scoring-load-balancer-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/scoring-load-balancer-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/scoring-load-balancer-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/scoring-load-balancer-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/scoring-load-balancer-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/scoring-load-balancer-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/scoring-load-balancer-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/scoring-load-balancer-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/scoring-load-balancer-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/scoring-load-balancer-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/scoring-load-balancer-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/scoring-load-balancer-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/scoring-load-balancer-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/scoring-load-balancer-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/scoring-load-balancer-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/scoring-load-balancer-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/scoring-load-balancer-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/scoring-load-balancer-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/scoring-load-balancer-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/scoring-load-balancer-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/scoring-load-balancer-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/scoring-load-balancer-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/scoring-load-balancer-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/scoring-load-balancer-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/scoring-load-balancer-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/scoring-load-balancer-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/scoring-load-balancer-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/scoring-load-balancer-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/scoring-load-balancer-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/scoring-load-balancer-plugin/deployments", + "created_at": "2013-09-06T21:18:38Z", + "updated_at": "2019-10-14T05:01:31Z", + "pushed_at": "2019-10-09T08:18:53Z", + "git_url": "git://github.com/jenkinsci/scoring-load-balancer-plugin.git", + "ssh_url": "git@github.com:jenkinsci/scoring-load-balancer-plugin.git", + "clone_url": "https://github.com/jenkinsci/scoring-load-balancer-plugin.git", + "svn_url": "https://github.com/jenkinsci/scoring-load-balancer-plugin", + "homepage": "", + "size": 105, + "stargazers_count": 6, + "watchers_count": 6, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 7, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 7, + "open_issues": 0, + "watchers": 6, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 12713417, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjcxMzQxNw==", + "name": "scm-api-plugin", + "full_name": "jenkinsci/scm-api-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/scm-api-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/scm-api-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/scm-api-plugin/deployments", + "created_at": "2013-09-09T21:29:01Z", + "updated_at": "2019-09-30T15:42:35Z", + "pushed_at": "2019-10-23T15:39:15Z", + "git_url": "git://github.com/jenkinsci/scm-api-plugin.git", + "ssh_url": "git@github.com:jenkinsci/scm-api-plugin.git", + "clone_url": "https://github.com/jenkinsci/scm-api-plugin.git", + "svn_url": "https://github.com/jenkinsci/scm-api-plugin", + "homepage": "http://wiki.jenkins-ci.org/display/JENKINS/SCM+API+Plugin", + "size": 912, + "stargazers_count": 14, + "watchers_count": 14, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 58, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 4, + "license": null, + "forks": 58, + "open_issues": 4, + "watchers": 14, + "default_branch": "master", + "permissions": { + "admin": false, + "push": true, + "pull": true + } + }, + { + "id": 12811626, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjgxMTYyNg==", + "name": "purecm-plugin", + "full_name": "jenkinsci/purecm-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/purecm-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/purecm-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/purecm-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/purecm-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/purecm-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/purecm-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/purecm-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/purecm-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/purecm-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/purecm-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/purecm-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/purecm-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/purecm-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/purecm-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/purecm-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/purecm-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/purecm-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/purecm-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/purecm-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/purecm-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/purecm-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/purecm-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/purecm-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/purecm-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/purecm-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/purecm-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/purecm-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/purecm-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/purecm-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/purecm-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/purecm-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/purecm-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/purecm-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/purecm-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/purecm-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/purecm-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/purecm-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/purecm-plugin/deployments", + "created_at": "2013-09-13T14:37:33Z", + "updated_at": "2013-11-10T02:14:27Z", + "pushed_at": "2013-11-10T02:14:21Z", + "git_url": "git://github.com/jenkinsci/purecm-plugin.git", + "ssh_url": "git@github.com:jenkinsci/purecm-plugin.git", + "clone_url": "https://github.com/jenkinsci/purecm-plugin.git", + "svn_url": "https://github.com/jenkinsci/purecm-plugin", + "homepage": "", + "size": 116, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 12878218, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjg3ODIxOA==", + "name": "branch-api-plugin", + "full_name": "jenkinsci/branch-api-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/branch-api-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/branch-api-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/branch-api-plugin/deployments", + "created_at": "2013-09-16T20:39:44Z", + "updated_at": "2019-10-15T11:45:49Z", + "pushed_at": "2019-10-15T11:45:47Z", + "git_url": "git://github.com/jenkinsci/branch-api-plugin.git", + "ssh_url": "git@github.com:jenkinsci/branch-api-plugin.git", + "clone_url": "https://github.com/jenkinsci/branch-api-plugin.git", + "svn_url": "https://github.com/jenkinsci/branch-api-plugin", + "homepage": "http://wiki.jenkins-ci.org/display/JENKINS/Branch+API+Plugin", + "size": 1842, + "stargazers_count": 14, + "watchers_count": 14, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 101, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 6, + "license": null, + "forks": 101, + "open_issues": 6, + "watchers": 14, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 12889620, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjg4OTYyMA==", + "name": "literate-plugin", + "full_name": "jenkinsci/literate-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/literate-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/literate-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/literate-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/literate-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/literate-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/literate-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/literate-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/literate-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/literate-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/literate-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/literate-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/literate-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/literate-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/literate-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/literate-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/literate-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/literate-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/literate-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/literate-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/literate-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/literate-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/literate-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/literate-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/literate-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/literate-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/literate-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/literate-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/literate-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/literate-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/literate-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/literate-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/literate-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/literate-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/literate-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/literate-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/literate-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/literate-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/literate-plugin/deployments", + "created_at": "2013-09-17T08:00:49Z", + "updated_at": "2017-08-19T14:33:01Z", + "pushed_at": "2017-06-28T20:39:49Z", + "git_url": "git://github.com/jenkinsci/literate-plugin.git", + "ssh_url": "git@github.com:jenkinsci/literate-plugin.git", + "clone_url": "https://github.com/jenkinsci/literate-plugin.git", + "svn_url": "https://github.com/jenkinsci/literate-plugin", + "homepage": "", + "size": 416, + "stargazers_count": 18, + "watchers_count": 18, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 9, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 9, + "open_issues": 0, + "watchers": 18, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 12889621, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjg4OTYyMQ==", + "name": "literate-api", + "full_name": "jenkinsci/literate-api", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/literate-api", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/literate-api", + "forks_url": "https://api.github.com/repos/jenkinsci/literate-api/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/literate-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/literate-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/literate-api/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/literate-api/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/literate-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/literate-api/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/literate-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/literate-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/literate-api/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/literate-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/literate-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/literate-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/literate-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/literate-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/literate-api/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/literate-api/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/literate-api/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/literate-api/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/literate-api/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/literate-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/literate-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/literate-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/literate-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/literate-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/literate-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/literate-api/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/literate-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/literate-api/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/literate-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/literate-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/literate-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/literate-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/literate-api/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/literate-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/literate-api/deployments", + "created_at": "2013-09-17T08:01:01Z", + "updated_at": "2017-08-19T14:33:00Z", + "pushed_at": "2015-06-27T14:21:27Z", + "git_url": "git://github.com/jenkinsci/literate-api.git", + "ssh_url": "git@github.com:jenkinsci/literate-api.git", + "clone_url": "https://github.com/jenkinsci/literate-api.git", + "svn_url": "https://github.com/jenkinsci/literate-api", + "homepage": "", + "size": 478, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 5, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 12915122, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjkxNTEyMg==", + "name": "trial-balloon-plugin", + "full_name": "jenkinsci/trial-balloon-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/trial-balloon-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/trial-balloon-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/trial-balloon-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/trial-balloon-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/trial-balloon-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/trial-balloon-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/trial-balloon-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/trial-balloon-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/trial-balloon-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/trial-balloon-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/trial-balloon-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/trial-balloon-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/trial-balloon-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/trial-balloon-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/trial-balloon-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/trial-balloon-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/trial-balloon-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/trial-balloon-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/trial-balloon-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/trial-balloon-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/trial-balloon-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/trial-balloon-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/trial-balloon-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/trial-balloon-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/trial-balloon-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/trial-balloon-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/trial-balloon-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/trial-balloon-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/trial-balloon-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/trial-balloon-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/trial-balloon-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/trial-balloon-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/trial-balloon-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/trial-balloon-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/trial-balloon-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/trial-balloon-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/trial-balloon-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/trial-balloon-plugin/deployments", + "created_at": "2013-09-18T05:46:44Z", + "updated_at": "2013-10-10T02:03:30Z", + "pushed_at": "2013-09-21T22:49:20Z", + "git_url": "git://github.com/jenkinsci/trial-balloon-plugin.git", + "ssh_url": "git@github.com:jenkinsci/trial-balloon-plugin.git", + "clone_url": "https://github.com/jenkinsci/trial-balloon-plugin.git", + "svn_url": "https://github.com/jenkinsci/trial-balloon-plugin", + "homepage": null, + "size": 128, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 12971448, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjk3MTQ0OA==", + "name": "literate-cli", + "full_name": "jenkinsci/literate-cli", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/literate-cli", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/literate-cli", + "forks_url": "https://api.github.com/repos/jenkinsci/literate-cli/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/literate-cli/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/literate-cli/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/literate-cli/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/literate-cli/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/literate-cli/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/literate-cli/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/literate-cli/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/literate-cli/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/literate-cli/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/literate-cli/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/literate-cli/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/literate-cli/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/literate-cli/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/literate-cli/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/literate-cli/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/literate-cli/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/literate-cli/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/literate-cli/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/literate-cli/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/literate-cli/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/literate-cli/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/literate-cli/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/literate-cli/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/literate-cli/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/literate-cli/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/literate-cli/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/literate-cli/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/literate-cli/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/literate-cli/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/literate-cli/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/literate-cli/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/literate-cli/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/literate-cli/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/literate-cli/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/literate-cli/deployments", + "created_at": "2013-09-20T11:10:28Z", + "updated_at": "2017-08-19T14:33:00Z", + "pushed_at": "2013-11-13T01:41:28Z", + "git_url": "git://github.com/jenkinsci/literate-cli.git", + "ssh_url": "git@github.com:jenkinsci/literate-cli.git", + "clone_url": "https://github.com/jenkinsci/literate-cli.git", + "svn_url": "https://github.com/jenkinsci/literate-cli", + "homepage": "", + "size": 252, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 13002962, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzAwMjk2Mg==", + "name": "release-test", + "full_name": "jenkinsci/release-test", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/release-test", + "description": "just a simple mvn project used to test some flows in the build", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/release-test", + "forks_url": "https://api.github.com/repos/jenkinsci/release-test/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/release-test/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/release-test/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/release-test/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/release-test/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/release-test/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/release-test/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/release-test/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/release-test/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/release-test/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/release-test/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/release-test/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/release-test/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/release-test/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/release-test/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/release-test/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/release-test/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/release-test/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/release-test/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/release-test/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/release-test/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/release-test/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/release-test/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/release-test/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/release-test/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/release-test/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/release-test/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/release-test/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/release-test/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/release-test/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/release-test/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/release-test/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/release-test/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/release-test/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/release-test/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/release-test/deployments", + "created_at": "2013-09-21T21:51:19Z", + "updated_at": "2013-10-10T02:03:31Z", + "pushed_at": "2013-09-21T22:33:09Z", + "git_url": "git://github.com/jenkinsci/release-test.git", + "ssh_url": "git@github.com:jenkinsci/release-test.git", + "clone_url": "https://github.com/jenkinsci/release-test.git", + "svn_url": "https://github.com/jenkinsci/release-test", + "homepage": null, + "size": 154, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 13004240, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzAwNDI0MA==", + "name": "backend-jenkins-ci-cloudbees-com-filler", + "full_name": "jenkinsci/backend-jenkins-ci-cloudbees-com-filler", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/backend-jenkins-ci-cloudbees-com-filler", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/backend-jenkins-ci-cloudbees-com-filler", + "forks_url": "https://api.github.com/repos/jenkinsci/backend-jenkins-ci-cloudbees-com-filler/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/backend-jenkins-ci-cloudbees-com-filler/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/backend-jenkins-ci-cloudbees-com-filler/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/backend-jenkins-ci-cloudbees-com-filler/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/backend-jenkins-ci-cloudbees-com-filler/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/backend-jenkins-ci-cloudbees-com-filler/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/backend-jenkins-ci-cloudbees-com-filler/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/backend-jenkins-ci-cloudbees-com-filler/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/backend-jenkins-ci-cloudbees-com-filler/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/backend-jenkins-ci-cloudbees-com-filler/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/backend-jenkins-ci-cloudbees-com-filler/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/backend-jenkins-ci-cloudbees-com-filler/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/backend-jenkins-ci-cloudbees-com-filler/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/backend-jenkins-ci-cloudbees-com-filler/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/backend-jenkins-ci-cloudbees-com-filler/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/backend-jenkins-ci-cloudbees-com-filler/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/backend-jenkins-ci-cloudbees-com-filler/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/backend-jenkins-ci-cloudbees-com-filler/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/backend-jenkins-ci-cloudbees-com-filler/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/backend-jenkins-ci-cloudbees-com-filler/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/backend-jenkins-ci-cloudbees-com-filler/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/backend-jenkins-ci-cloudbees-com-filler/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/backend-jenkins-ci-cloudbees-com-filler/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/backend-jenkins-ci-cloudbees-com-filler/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/backend-jenkins-ci-cloudbees-com-filler/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/backend-jenkins-ci-cloudbees-com-filler/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/backend-jenkins-ci-cloudbees-com-filler/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/backend-jenkins-ci-cloudbees-com-filler/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/backend-jenkins-ci-cloudbees-com-filler/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/backend-jenkins-ci-cloudbees-com-filler/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/backend-jenkins-ci-cloudbees-com-filler/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/backend-jenkins-ci-cloudbees-com-filler/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/backend-jenkins-ci-cloudbees-com-filler/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/backend-jenkins-ci-cloudbees-com-filler/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/backend-jenkins-ci-cloudbees-com-filler/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/backend-jenkins-ci-cloudbees-com-filler/deployments", + "created_at": "2013-09-21T23:37:45Z", + "updated_at": "2019-07-15T11:04:13Z", + "pushed_at": "2017-01-20T18:52:50Z", + "git_url": "git://github.com/jenkinsci/backend-jenkins-ci-cloudbees-com-filler.git", + "ssh_url": "git@github.com:jenkinsci/backend-jenkins-ci-cloudbees-com-filler.git", + "clone_url": "https://github.com/jenkinsci/backend-jenkins-ci-cloudbees-com-filler.git", + "svn_url": "https://github.com/jenkinsci/backend-jenkins-ci-cloudbees-com-filler", + "homepage": "", + "size": 16, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": true, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 13004670, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzAwNDY3MA==", + "name": "plain-credentials-plugin", + "full_name": "jenkinsci/plain-credentials-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/plain-credentials-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/plain-credentials-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/plain-credentials-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/plain-credentials-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/plain-credentials-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/plain-credentials-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/plain-credentials-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/plain-credentials-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/plain-credentials-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/plain-credentials-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/plain-credentials-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/plain-credentials-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/plain-credentials-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/plain-credentials-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/plain-credentials-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/plain-credentials-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/plain-credentials-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/plain-credentials-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/plain-credentials-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/plain-credentials-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/plain-credentials-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/plain-credentials-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/plain-credentials-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/plain-credentials-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/plain-credentials-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/plain-credentials-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/plain-credentials-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/plain-credentials-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/plain-credentials-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/plain-credentials-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/plain-credentials-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/plain-credentials-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/plain-credentials-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/plain-credentials-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/plain-credentials-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/plain-credentials-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/plain-credentials-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/plain-credentials-plugin/deployments", + "created_at": "2013-09-22T00:13:47Z", + "updated_at": "2019-04-11T19:34:35Z", + "pushed_at": "2019-04-11T19:34:33Z", + "git_url": "git://github.com/jenkinsci/plain-credentials-plugin.git", + "ssh_url": "git@github.com:jenkinsci/plain-credentials-plugin.git", + "clone_url": "https://github.com/jenkinsci/plain-credentials-plugin.git", + "svn_url": "https://github.com/jenkinsci/plain-credentials-plugin", + "homepage": "", + "size": 92, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 17, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 17, + "open_issues": 0, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 13007727, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzAwNzcyNw==", + "name": "gitbucket-plugin", + "full_name": "jenkinsci/gitbucket-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/gitbucket-plugin", + "description": "GitBucket Plugin for Jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/gitbucket-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/gitbucket-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/gitbucket-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/gitbucket-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/gitbucket-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/gitbucket-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/gitbucket-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/gitbucket-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/gitbucket-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/gitbucket-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/gitbucket-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/gitbucket-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/gitbucket-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/gitbucket-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/gitbucket-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/gitbucket-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/gitbucket-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/gitbucket-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/gitbucket-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/gitbucket-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/gitbucket-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/gitbucket-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/gitbucket-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/gitbucket-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/gitbucket-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/gitbucket-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/gitbucket-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/gitbucket-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/gitbucket-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/gitbucket-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/gitbucket-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/gitbucket-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/gitbucket-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/gitbucket-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/gitbucket-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/gitbucket-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/gitbucket-plugin/deployments", + "created_at": "2013-09-22T04:36:17Z", + "updated_at": "2019-07-24T10:58:24Z", + "pushed_at": "2019-10-08T11:14:33Z", + "git_url": "git://github.com/jenkinsci/gitbucket-plugin.git", + "ssh_url": "git@github.com:jenkinsci/gitbucket-plugin.git", + "clone_url": "https://github.com/jenkinsci/gitbucket-plugin.git", + "svn_url": "https://github.com/jenkinsci/gitbucket-plugin", + "homepage": null, + "size": 447, + "stargazers_count": 14, + "watchers_count": 14, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 22, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 22, + "open_issues": 2, + "watchers": 14, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 13022394, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzAyMjM5NA==", + "name": "maven-plugin", + "full_name": "jenkinsci/maven-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/maven-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/maven-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/maven-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/maven-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/maven-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/maven-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/maven-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/maven-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/maven-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/maven-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/maven-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/maven-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/maven-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/maven-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/maven-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/maven-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/maven-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/maven-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/maven-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/maven-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/maven-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/maven-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/maven-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/maven-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/maven-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/maven-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/maven-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/maven-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/maven-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/maven-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/maven-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/maven-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/maven-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/maven-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/maven-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/maven-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/maven-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/maven-plugin/deployments", + "created_at": "2013-09-22T22:52:27Z", + "updated_at": "2019-08-01T18:30:51Z", + "pushed_at": "2019-07-31T13:07:42Z", + "git_url": "git://github.com/jenkinsci/maven-plugin.git", + "ssh_url": "git@github.com:jenkinsci/maven-plugin.git", + "clone_url": "https://github.com/jenkinsci/maven-plugin.git", + "svn_url": "https://github.com/jenkinsci/maven-plugin", + "homepage": "", + "size": 3791, + "stargazers_count": 41, + "watchers_count": 41, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 159, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 9, + "license": null, + "forks": 159, + "open_issues": 9, + "watchers": 41, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 13028580, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzAyODU4MA==", + "name": "cygwin-process-killer-plugin", + "full_name": "jenkinsci/cygwin-process-killer-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/cygwin-process-killer-plugin", + "description": "Provides Cygwin process killer Plugin for Jenkins", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/cygwin-process-killer-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/cygwin-process-killer-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/cygwin-process-killer-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/cygwin-process-killer-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/cygwin-process-killer-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/cygwin-process-killer-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/cygwin-process-killer-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/cygwin-process-killer-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/cygwin-process-killer-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/cygwin-process-killer-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/cygwin-process-killer-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/cygwin-process-killer-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/cygwin-process-killer-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/cygwin-process-killer-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/cygwin-process-killer-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/cygwin-process-killer-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/cygwin-process-killer-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/cygwin-process-killer-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/cygwin-process-killer-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/cygwin-process-killer-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/cygwin-process-killer-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/cygwin-process-killer-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/cygwin-process-killer-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/cygwin-process-killer-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/cygwin-process-killer-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/cygwin-process-killer-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/cygwin-process-killer-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/cygwin-process-killer-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/cygwin-process-killer-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/cygwin-process-killer-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/cygwin-process-killer-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/cygwin-process-killer-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/cygwin-process-killer-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/cygwin-process-killer-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/cygwin-process-killer-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/cygwin-process-killer-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/cygwin-process-killer-plugin/deployments", + "created_at": "2013-09-23T06:34:19Z", + "updated_at": "2017-06-14T06:54:36Z", + "pushed_at": "2018-01-31T07:13:49Z", + "git_url": "git://github.com/jenkinsci/cygwin-process-killer-plugin.git", + "ssh_url": "git@github.com:jenkinsci/cygwin-process-killer-plugin.git", + "clone_url": "https://github.com/jenkinsci/cygwin-process-killer-plugin.git", + "svn_url": "https://github.com/jenkinsci/cygwin-process-killer-plugin", + "homepage": null, + "size": 65, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 13033596, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzAzMzU5Ng==", + "name": "relution-publisher-plugin", + "full_name": "jenkinsci/relution-publisher-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/relution-publisher-plugin", + "description": "A Jenkins plugin for the Relution Enterprise Appstore by M-Way Solutions GmbH", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/relution-publisher-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/relution-publisher-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/relution-publisher-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/relution-publisher-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/relution-publisher-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/relution-publisher-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/relution-publisher-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/relution-publisher-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/relution-publisher-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/relution-publisher-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/relution-publisher-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/relution-publisher-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/relution-publisher-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/relution-publisher-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/relution-publisher-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/relution-publisher-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/relution-publisher-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/relution-publisher-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/relution-publisher-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/relution-publisher-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/relution-publisher-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/relution-publisher-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/relution-publisher-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/relution-publisher-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/relution-publisher-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/relution-publisher-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/relution-publisher-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/relution-publisher-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/relution-publisher-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/relution-publisher-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/relution-publisher-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/relution-publisher-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/relution-publisher-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/relution-publisher-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/relution-publisher-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/relution-publisher-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/relution-publisher-plugin/deployments", + "created_at": "2013-09-23T11:05:38Z", + "updated_at": "2018-06-19T12:16:49Z", + "pushed_at": "2018-06-19T12:16:41Z", + "git_url": "git://github.com/jenkinsci/relution-publisher-plugin.git", + "ssh_url": "git@github.com:jenkinsci/relution-publisher-plugin.git", + "clone_url": "https://github.com/jenkinsci/relution-publisher-plugin.git", + "svn_url": "https://github.com/jenkinsci/relution-publisher-plugin", + "homepage": null, + "size": 471, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 2, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 13068166, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzA2ODE2Ng==", + "name": "meliora-testlab-plugin", + "full_name": "jenkinsci/meliora-testlab-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/meliora-testlab-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/meliora-testlab-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/meliora-testlab-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/meliora-testlab-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/meliora-testlab-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/meliora-testlab-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/meliora-testlab-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/meliora-testlab-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/meliora-testlab-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/meliora-testlab-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/meliora-testlab-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/meliora-testlab-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/meliora-testlab-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/meliora-testlab-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/meliora-testlab-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/meliora-testlab-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/meliora-testlab-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/meliora-testlab-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/meliora-testlab-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/meliora-testlab-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/meliora-testlab-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/meliora-testlab-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/meliora-testlab-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/meliora-testlab-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/meliora-testlab-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/meliora-testlab-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/meliora-testlab-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/meliora-testlab-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/meliora-testlab-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/meliora-testlab-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/meliora-testlab-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/meliora-testlab-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/meliora-testlab-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/meliora-testlab-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/meliora-testlab-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/meliora-testlab-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/meliora-testlab-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/meliora-testlab-plugin/deployments", + "created_at": "2013-09-24T15:11:42Z", + "updated_at": "2019-10-04T13:14:19Z", + "pushed_at": "2019-10-04T13:14:17Z", + "git_url": "git://github.com/jenkinsci/meliora-testlab-plugin.git", + "ssh_url": "git@github.com:jenkinsci/meliora-testlab-plugin.git", + "clone_url": "https://github.com/jenkinsci/meliora-testlab-plugin.git", + "svn_url": "https://github.com/jenkinsci/meliora-testlab-plugin", + "homepage": "", + "size": 159, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "lgpl-3.0", + "name": "GNU Lesser General Public License v3.0", + "spdx_id": "LGPL-3.0", + "url": "https://api.github.com/licenses/lgpl-3.0", + "node_id": "MDc6TGljZW5zZTEy" + }, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 13119871, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzExOTg3MQ==", + "name": "jobtemplates-plugin", + "full_name": "jenkinsci/jobtemplates-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jobtemplates-plugin", + "description": "Jenkins Plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/jobtemplates-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/jobtemplates-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jobtemplates-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jobtemplates-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jobtemplates-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jobtemplates-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jobtemplates-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jobtemplates-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jobtemplates-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jobtemplates-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jobtemplates-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jobtemplates-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jobtemplates-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jobtemplates-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jobtemplates-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jobtemplates-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jobtemplates-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jobtemplates-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jobtemplates-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jobtemplates-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jobtemplates-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jobtemplates-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jobtemplates-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jobtemplates-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jobtemplates-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jobtemplates-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jobtemplates-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jobtemplates-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jobtemplates-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jobtemplates-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jobtemplates-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jobtemplates-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jobtemplates-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jobtemplates-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jobtemplates-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jobtemplates-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jobtemplates-plugin/deployments", + "created_at": "2013-09-26T10:54:56Z", + "updated_at": "2013-10-02T14:13:10Z", + "pushed_at": "2019-10-08T16:15:35Z", + "git_url": "git://github.com/jenkinsci/jobtemplates-plugin.git", + "ssh_url": "git@github.com:jenkinsci/jobtemplates-plugin.git", + "clone_url": "https://github.com/jenkinsci/jobtemplates-plugin.git", + "svn_url": "https://github.com/jenkinsci/jobtemplates-plugin", + "homepage": " https://wiki.jenkins-ci.org/display/JENKINS/Jobtemplates+Plugin", + "size": 180, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 3, + "open_issues": 2, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 13244432, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzI0NDQzMg==", + "name": "skytap-cloud-plugin", + "full_name": "jenkinsci/skytap-cloud-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/skytap-cloud-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/skytap-cloud-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/skytap-cloud-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/skytap-cloud-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/skytap-cloud-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/skytap-cloud-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/skytap-cloud-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/skytap-cloud-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/skytap-cloud-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/skytap-cloud-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/skytap-cloud-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/skytap-cloud-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/skytap-cloud-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/skytap-cloud-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/skytap-cloud-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/skytap-cloud-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/skytap-cloud-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/skytap-cloud-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/skytap-cloud-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/skytap-cloud-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/skytap-cloud-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/skytap-cloud-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/skytap-cloud-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/skytap-cloud-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/skytap-cloud-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/skytap-cloud-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/skytap-cloud-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/skytap-cloud-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/skytap-cloud-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/skytap-cloud-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/skytap-cloud-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/skytap-cloud-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/skytap-cloud-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/skytap-cloud-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/skytap-cloud-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/skytap-cloud-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/skytap-cloud-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/skytap-cloud-plugin/deployments", + "created_at": "2013-10-01T13:22:28Z", + "updated_at": "2019-07-24T18:10:23Z", + "pushed_at": "2019-07-24T18:10:20Z", + "git_url": "git://github.com/jenkinsci/skytap-cloud-plugin.git", + "ssh_url": "git@github.com:jenkinsci/skytap-cloud-plugin.git", + "clone_url": "https://github.com/jenkinsci/skytap-cloud-plugin.git", + "svn_url": "https://github.com/jenkinsci/skytap-cloud-plugin", + "homepage": "", + "size": 243, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 5, + "open_issues": 2, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 13251519, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzI1MTUxOQ==", + "name": "credentials-binding-plugin", + "full_name": "jenkinsci/credentials-binding-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/credentials-binding-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/credentials-binding-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/credentials-binding-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/credentials-binding-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/credentials-binding-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/credentials-binding-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/credentials-binding-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/credentials-binding-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/credentials-binding-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/credentials-binding-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/credentials-binding-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/credentials-binding-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/credentials-binding-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/credentials-binding-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/credentials-binding-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/credentials-binding-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/credentials-binding-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/credentials-binding-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/credentials-binding-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/credentials-binding-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/credentials-binding-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/credentials-binding-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/credentials-binding-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/credentials-binding-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/credentials-binding-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/credentials-binding-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/credentials-binding-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/credentials-binding-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/credentials-binding-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/credentials-binding-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/credentials-binding-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/credentials-binding-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/credentials-binding-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/credentials-binding-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/credentials-binding-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/credentials-binding-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/credentials-binding-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/credentials-binding-plugin/deployments", + "created_at": "2013-10-01T18:18:46Z", + "updated_at": "2019-09-27T14:40:54Z", + "pushed_at": "2019-09-27T14:40:51Z", + "git_url": "git://github.com/jenkinsci/credentials-binding-plugin.git", + "ssh_url": "git@github.com:jenkinsci/credentials-binding-plugin.git", + "clone_url": "https://github.com/jenkinsci/credentials-binding-plugin.git", + "svn_url": "https://github.com/jenkinsci/credentials-binding-plugin", + "homepage": "", + "size": 419, + "stargazers_count": 24, + "watchers_count": 24, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 69, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 69, + "open_issues": 3, + "watchers": 24, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 13265916, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzI2NTkxNg==", + "name": "selenium-axis-plugin", + "full_name": "jenkinsci/selenium-axis-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/selenium-axis-plugin", + "description": "A Jenkins Axis Plugin to consume Selenium capabilities", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/selenium-axis-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/selenium-axis-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/selenium-axis-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/selenium-axis-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/selenium-axis-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/selenium-axis-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/selenium-axis-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/selenium-axis-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/selenium-axis-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/selenium-axis-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/selenium-axis-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/selenium-axis-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/selenium-axis-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/selenium-axis-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/selenium-axis-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/selenium-axis-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/selenium-axis-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/selenium-axis-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/selenium-axis-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/selenium-axis-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/selenium-axis-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/selenium-axis-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/selenium-axis-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/selenium-axis-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/selenium-axis-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/selenium-axis-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/selenium-axis-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/selenium-axis-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/selenium-axis-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/selenium-axis-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/selenium-axis-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/selenium-axis-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/selenium-axis-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/selenium-axis-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/selenium-axis-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/selenium-axis-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/selenium-axis-plugin/deployments", + "created_at": "2013-10-02T08:20:39Z", + "updated_at": "2016-12-05T10:17:03Z", + "pushed_at": "2017-12-26T08:32:16Z", + "git_url": "git://github.com/jenkinsci/selenium-axis-plugin.git", + "ssh_url": "git@github.com:jenkinsci/selenium-axis-plugin.git", + "clone_url": "https://github.com/jenkinsci/selenium-axis-plugin.git", + "svn_url": "https://github.com/jenkinsci/selenium-axis-plugin", + "homepage": null, + "size": 402, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Groovy", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 2, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 13293464, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzI5MzQ2NA==", + "name": "ironmq-notifier-plugin", + "full_name": "jenkinsci/ironmq-notifier-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/ironmq-notifier-plugin", + "description": "Jenkins ironmq build results notifier plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/ironmq-notifier-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/ironmq-notifier-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/ironmq-notifier-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/ironmq-notifier-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/ironmq-notifier-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/ironmq-notifier-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/ironmq-notifier-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/ironmq-notifier-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/ironmq-notifier-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/ironmq-notifier-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/ironmq-notifier-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/ironmq-notifier-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/ironmq-notifier-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/ironmq-notifier-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/ironmq-notifier-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/ironmq-notifier-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/ironmq-notifier-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/ironmq-notifier-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/ironmq-notifier-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/ironmq-notifier-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/ironmq-notifier-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/ironmq-notifier-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/ironmq-notifier-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/ironmq-notifier-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/ironmq-notifier-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/ironmq-notifier-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/ironmq-notifier-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/ironmq-notifier-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/ironmq-notifier-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/ironmq-notifier-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/ironmq-notifier-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/ironmq-notifier-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/ironmq-notifier-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/ironmq-notifier-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/ironmq-notifier-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/ironmq-notifier-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/ironmq-notifier-plugin/deployments", + "created_at": "2013-10-03T08:09:11Z", + "updated_at": "2019-10-24T14:58:53Z", + "pushed_at": "2019-10-24T15:25:58Z", + "git_url": "git://github.com/jenkinsci/ironmq-notifier-plugin.git", + "ssh_url": "git@github.com:jenkinsci/ironmq-notifier-plugin.git", + "clone_url": "https://github.com/jenkinsci/ironmq-notifier-plugin.git", + "svn_url": "https://github.com/jenkinsci/ironmq-notifier-plugin", + "homepage": null, + "size": 774, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 13333016, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzMzMzAxNg==", + "name": "matrix-auth-plugin", + "full_name": "jenkinsci/matrix-auth-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/matrix-auth-plugin", + "description": "Matrix-based authorization strategies for Jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/matrix-auth-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/matrix-auth-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/matrix-auth-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/matrix-auth-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/matrix-auth-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/matrix-auth-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/matrix-auth-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/matrix-auth-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/matrix-auth-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/matrix-auth-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/matrix-auth-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/matrix-auth-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/matrix-auth-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/matrix-auth-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/matrix-auth-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/matrix-auth-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/matrix-auth-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/matrix-auth-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/matrix-auth-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/matrix-auth-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/matrix-auth-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/matrix-auth-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/matrix-auth-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/matrix-auth-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/matrix-auth-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/matrix-auth-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/matrix-auth-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/matrix-auth-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/matrix-auth-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/matrix-auth-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/matrix-auth-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/matrix-auth-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/matrix-auth-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/matrix-auth-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/matrix-auth-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/matrix-auth-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/matrix-auth-plugin/deployments", + "created_at": "2013-10-04T19:37:48Z", + "updated_at": "2019-10-14T22:14:54Z", + "pushed_at": "2019-10-14T22:14:52Z", + "git_url": "git://github.com/jenkinsci/matrix-auth-plugin.git", + "ssh_url": "git@github.com:jenkinsci/matrix-auth-plugin.git", + "clone_url": "https://github.com/jenkinsci/matrix-auth-plugin.git", + "svn_url": "https://github.com/jenkinsci/matrix-auth-plugin", + "homepage": "https://plugins.jenkins.io/matrix-auth", + "size": 403, + "stargazers_count": 20, + "watchers_count": 20, + "language": "Java", + "has_issues": false, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 40, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 40, + "open_issues": 1, + "watchers": 20, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 13335086, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzMzNTA4Ng==", + "name": "ui-samples-plugin", + "full_name": "jenkinsci/ui-samples-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/ui-samples-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/ui-samples-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/ui-samples-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/ui-samples-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/ui-samples-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/ui-samples-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/ui-samples-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/ui-samples-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/ui-samples-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/ui-samples-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/ui-samples-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/ui-samples-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/ui-samples-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/ui-samples-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/ui-samples-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/ui-samples-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/ui-samples-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/ui-samples-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/ui-samples-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/ui-samples-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/ui-samples-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/ui-samples-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/ui-samples-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/ui-samples-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/ui-samples-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/ui-samples-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/ui-samples-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/ui-samples-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/ui-samples-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/ui-samples-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/ui-samples-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/ui-samples-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/ui-samples-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/ui-samples-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/ui-samples-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/ui-samples-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/ui-samples-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/ui-samples-plugin/deployments", + "created_at": "2013-10-04T21:24:31Z", + "updated_at": "2019-10-14T13:52:50Z", + "pushed_at": "2018-11-21T11:10:32Z", + "git_url": "git://github.com/jenkinsci/ui-samples-plugin.git", + "ssh_url": "git@github.com:jenkinsci/ui-samples-plugin.git", + "clone_url": "https://github.com/jenkinsci/ui-samples-plugin.git", + "svn_url": "https://github.com/jenkinsci/ui-samples-plugin", + "homepage": "", + "size": 40, + "stargazers_count": 33, + "watchers_count": 33, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 48, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 48, + "open_issues": 2, + "watchers": 33, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 13381350, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzM4MTM1MA==", + "name": "matrix-combinations-plugin", + "full_name": "jenkinsci/matrix-combinations-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/matrix-combinations-plugin", + "description": "Jenkins Plugin which enable choosing which combinations of matrix build the user want to run", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/matrix-combinations-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/matrix-combinations-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/matrix-combinations-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/matrix-combinations-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/matrix-combinations-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/matrix-combinations-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/matrix-combinations-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/matrix-combinations-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/matrix-combinations-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/matrix-combinations-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/matrix-combinations-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/matrix-combinations-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/matrix-combinations-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/matrix-combinations-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/matrix-combinations-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/matrix-combinations-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/matrix-combinations-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/matrix-combinations-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/matrix-combinations-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/matrix-combinations-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/matrix-combinations-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/matrix-combinations-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/matrix-combinations-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/matrix-combinations-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/matrix-combinations-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/matrix-combinations-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/matrix-combinations-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/matrix-combinations-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/matrix-combinations-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/matrix-combinations-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/matrix-combinations-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/matrix-combinations-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/matrix-combinations-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/matrix-combinations-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/matrix-combinations-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/matrix-combinations-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/matrix-combinations-plugin/deployments", + "created_at": "2013-10-07T10:53:42Z", + "updated_at": "2017-04-16T22:37:43Z", + "pushed_at": "2018-03-03T01:18:32Z", + "git_url": "git://github.com/jenkinsci/matrix-combinations-plugin.git", + "ssh_url": "git@github.com:jenkinsci/matrix-combinations-plugin.git", + "clone_url": "https://github.com/jenkinsci/matrix-combinations-plugin.git", + "svn_url": "https://github.com/jenkinsci/matrix-combinations-plugin", + "homepage": "", + "size": 153, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 12, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 12, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 13413719, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzQxMzcxOQ==", + "name": "disable-failed-job-plugin", + "full_name": "jenkinsci/disable-failed-job-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/disable-failed-job-plugin", + "description": "This Plugin disable Job when Build failed.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/disable-failed-job-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/disable-failed-job-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/disable-failed-job-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/disable-failed-job-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/disable-failed-job-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/disable-failed-job-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/disable-failed-job-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/disable-failed-job-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/disable-failed-job-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/disable-failed-job-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/disable-failed-job-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/disable-failed-job-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/disable-failed-job-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/disable-failed-job-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/disable-failed-job-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/disable-failed-job-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/disable-failed-job-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/disable-failed-job-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/disable-failed-job-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/disable-failed-job-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/disable-failed-job-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/disable-failed-job-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/disable-failed-job-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/disable-failed-job-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/disable-failed-job-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/disable-failed-job-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/disable-failed-job-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/disable-failed-job-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/disable-failed-job-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/disable-failed-job-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/disable-failed-job-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/disable-failed-job-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/disable-failed-job-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/disable-failed-job-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/disable-failed-job-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/disable-failed-job-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/disable-failed-job-plugin/deployments", + "created_at": "2013-10-08T13:10:57Z", + "updated_at": "2015-03-22T04:01:51Z", + "pushed_at": "2019-10-08T12:21:36Z", + "git_url": "git://github.com/jenkinsci/disable-failed-job-plugin.git", + "ssh_url": "git@github.com:jenkinsci/disable-failed-job-plugin.git", + "clone_url": "https://github.com/jenkinsci/disable-failed-job-plugin.git", + "svn_url": "https://github.com/jenkinsci/disable-failed-job-plugin", + "homepage": null, + "size": 37, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 3, + "open_issues": 1, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 13481588, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzQ4MTU4OA==", + "name": "cloudbees-folder-plugin", + "full_name": "jenkinsci/cloudbees-folder-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/cloudbees-folder-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/cloudbees-folder-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/cloudbees-folder-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/cloudbees-folder-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/cloudbees-folder-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/cloudbees-folder-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/cloudbees-folder-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/cloudbees-folder-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/cloudbees-folder-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/cloudbees-folder-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/cloudbees-folder-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/cloudbees-folder-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/cloudbees-folder-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/cloudbees-folder-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/cloudbees-folder-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/cloudbees-folder-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/cloudbees-folder-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/cloudbees-folder-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/cloudbees-folder-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/cloudbees-folder-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/cloudbees-folder-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/cloudbees-folder-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/cloudbees-folder-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/cloudbees-folder-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/cloudbees-folder-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/cloudbees-folder-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/cloudbees-folder-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/cloudbees-folder-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/cloudbees-folder-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/cloudbees-folder-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/cloudbees-folder-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/cloudbees-folder-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/cloudbees-folder-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/cloudbees-folder-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/cloudbees-folder-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/cloudbees-folder-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/cloudbees-folder-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/cloudbees-folder-plugin/deployments", + "created_at": "2013-10-10T20:02:26Z", + "updated_at": "2019-10-21T21:45:54Z", + "pushed_at": "2019-10-05T14:01:19Z", + "git_url": "git://github.com/jenkinsci/cloudbees-folder-plugin.git", + "ssh_url": "git@github.com:jenkinsci/cloudbees-folder-plugin.git", + "clone_url": "https://github.com/jenkinsci/cloudbees-folder-plugin.git", + "svn_url": "https://github.com/jenkinsci/cloudbees-folder-plugin", + "homepage": "", + "size": 888, + "stargazers_count": 32, + "watchers_count": 32, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 72, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 9, + "license": null, + "forks": 72, + "open_issues": 9, + "watchers": 32, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 13560333, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzU2MDMzMw==", + "name": "transifex-plugin", + "full_name": "jenkinsci/transifex-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/transifex-plugin", + "description": "Transifex integration plugin for Jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/transifex-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/transifex-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/transifex-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/transifex-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/transifex-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/transifex-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/transifex-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/transifex-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/transifex-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/transifex-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/transifex-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/transifex-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/transifex-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/transifex-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/transifex-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/transifex-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/transifex-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/transifex-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/transifex-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/transifex-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/transifex-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/transifex-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/transifex-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/transifex-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/transifex-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/transifex-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/transifex-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/transifex-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/transifex-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/transifex-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/transifex-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/transifex-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/transifex-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/transifex-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/transifex-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/transifex-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/transifex-plugin/deployments", + "created_at": "2013-10-14T12:17:10Z", + "updated_at": "2015-05-08T19:06:38Z", + "pushed_at": "2014-10-02T08:22:30Z", + "git_url": "git://github.com/jenkinsci/transifex-plugin.git", + "ssh_url": "git@github.com:jenkinsci/transifex-plugin.git", + "clone_url": "https://github.com/jenkinsci/transifex-plugin.git", + "svn_url": "https://github.com/jenkinsci/transifex-plugin", + "homepage": null, + "size": 694, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": true, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 3, + "open_issues": 0, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 13628310, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzYyODMxMA==", + "name": "custom-view-tabs-plugin", + "full_name": "jenkinsci/custom-view-tabs-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/custom-view-tabs-plugin", + "description": "Jekins plugin to allow customised view tab labels", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/custom-view-tabs-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/custom-view-tabs-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/custom-view-tabs-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/custom-view-tabs-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/custom-view-tabs-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/custom-view-tabs-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/custom-view-tabs-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/custom-view-tabs-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/custom-view-tabs-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/custom-view-tabs-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/custom-view-tabs-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/custom-view-tabs-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/custom-view-tabs-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/custom-view-tabs-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/custom-view-tabs-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/custom-view-tabs-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/custom-view-tabs-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/custom-view-tabs-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/custom-view-tabs-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/custom-view-tabs-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/custom-view-tabs-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/custom-view-tabs-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/custom-view-tabs-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/custom-view-tabs-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/custom-view-tabs-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/custom-view-tabs-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/custom-view-tabs-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/custom-view-tabs-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/custom-view-tabs-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/custom-view-tabs-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/custom-view-tabs-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/custom-view-tabs-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/custom-view-tabs-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/custom-view-tabs-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/custom-view-tabs-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/custom-view-tabs-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/custom-view-tabs-plugin/deployments", + "created_at": "2013-10-16T19:00:56Z", + "updated_at": "2019-10-08T15:01:56Z", + "pushed_at": "2019-10-08T15:01:54Z", + "git_url": "git://github.com/jenkinsci/custom-view-tabs-plugin.git", + "ssh_url": "git@github.com:jenkinsci/custom-view-tabs-plugin.git", + "clone_url": "https://github.com/jenkinsci/custom-view-tabs-plugin.git", + "svn_url": "https://github.com/jenkinsci/custom-view-tabs-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Custom+View+Tabs+Plugin", + "size": 33, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 5, + "open_issues": 0, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 13641828, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzY0MTgyOA==", + "name": "weibo-plugin", + "full_name": "jenkinsci/weibo-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/weibo-plugin", + "description": "Sina microblog plugin for Jenkins", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/weibo-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/weibo-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/weibo-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/weibo-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/weibo-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/weibo-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/weibo-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/weibo-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/weibo-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/weibo-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/weibo-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/weibo-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/weibo-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/weibo-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/weibo-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/weibo-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/weibo-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/weibo-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/weibo-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/weibo-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/weibo-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/weibo-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/weibo-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/weibo-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/weibo-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/weibo-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/weibo-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/weibo-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/weibo-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/weibo-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/weibo-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/weibo-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/weibo-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/weibo-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/weibo-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/weibo-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/weibo-plugin/deployments", + "created_at": "2013-10-17T07:19:43Z", + "updated_at": "2019-04-18T09:25:42Z", + "pushed_at": "2019-04-18T09:25:40Z", + "git_url": "git://github.com/jenkinsci/weibo-plugin.git", + "ssh_url": "git@github.com:jenkinsci/weibo-plugin.git", + "clone_url": "https://github.com/jenkinsci/weibo-plugin.git", + "svn_url": "https://github.com/jenkinsci/weibo-plugin", + "homepage": "", + "size": 134, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 5, + "open_issues": 0, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 13719049, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzcxOTA0OQ==", + "name": "bitbucket-plugin", + "full_name": "jenkinsci/bitbucket-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/bitbucket-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/bitbucket-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/bitbucket-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/bitbucket-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/bitbucket-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/bitbucket-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/bitbucket-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/bitbucket-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/bitbucket-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/bitbucket-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/bitbucket-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/bitbucket-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/bitbucket-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/bitbucket-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/bitbucket-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/bitbucket-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/bitbucket-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/bitbucket-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/bitbucket-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/bitbucket-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/bitbucket-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/bitbucket-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/bitbucket-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/bitbucket-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/bitbucket-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/bitbucket-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/bitbucket-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/bitbucket-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/bitbucket-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/bitbucket-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/bitbucket-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/bitbucket-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/bitbucket-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/bitbucket-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/bitbucket-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/bitbucket-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/bitbucket-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/bitbucket-plugin/deployments", + "created_at": "2013-10-20T12:56:57Z", + "updated_at": "2019-10-08T14:29:23Z", + "pushed_at": "2019-09-20T21:02:39Z", + "git_url": "git://github.com/jenkinsci/bitbucket-plugin.git", + "ssh_url": "git@github.com:jenkinsci/bitbucket-plugin.git", + "clone_url": "https://github.com/jenkinsci/bitbucket-plugin.git", + "svn_url": "https://github.com/jenkinsci/bitbucket-plugin", + "homepage": "", + "size": 218, + "stargazers_count": 61, + "watchers_count": 61, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 129, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 18, + "license": null, + "forks": 129, + "open_issues": 18, + "watchers": 61, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 13768786, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzc2ODc4Ng==", + "name": "hue-light-plugin", + "full_name": "jenkinsci/hue-light-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/hue-light-plugin", + "description": "Jenkins CI plugin to show the state of builds using Philips hue", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/hue-light-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/hue-light-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/hue-light-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/hue-light-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/hue-light-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/hue-light-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/hue-light-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/hue-light-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/hue-light-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/hue-light-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/hue-light-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/hue-light-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/hue-light-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/hue-light-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/hue-light-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/hue-light-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/hue-light-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/hue-light-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/hue-light-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/hue-light-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/hue-light-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/hue-light-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/hue-light-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/hue-light-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/hue-light-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/hue-light-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/hue-light-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/hue-light-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/hue-light-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/hue-light-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/hue-light-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/hue-light-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/hue-light-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/hue-light-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/hue-light-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/hue-light-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/hue-light-plugin/deployments", + "created_at": "2013-10-22T09:38:40Z", + "updated_at": "2019-04-04T10:32:23Z", + "pushed_at": "2018-06-15T05:35:15Z", + "git_url": "git://github.com/jenkinsci/hue-light-plugin.git", + "ssh_url": "git@github.com:jenkinsci/hue-light-plugin.git", + "clone_url": "https://github.com/jenkinsci/hue-light-plugin.git", + "svn_url": "https://github.com/jenkinsci/hue-light-plugin", + "homepage": null, + "size": 346, + "stargazers_count": 7, + "watchers_count": 7, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 13, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 13, + "open_issues": 1, + "watchers": 7, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 13773137, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzc3MzEzNw==", + "name": "console-tail-plugin", + "full_name": "jenkinsci/console-tail-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/console-tail-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/console-tail-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/console-tail-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/console-tail-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/console-tail-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/console-tail-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/console-tail-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/console-tail-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/console-tail-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/console-tail-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/console-tail-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/console-tail-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/console-tail-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/console-tail-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/console-tail-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/console-tail-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/console-tail-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/console-tail-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/console-tail-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/console-tail-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/console-tail-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/console-tail-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/console-tail-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/console-tail-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/console-tail-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/console-tail-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/console-tail-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/console-tail-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/console-tail-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/console-tail-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/console-tail-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/console-tail-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/console-tail-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/console-tail-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/console-tail-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/console-tail-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/console-tail-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/console-tail-plugin/deployments", + "created_at": "2013-10-22T12:54:26Z", + "updated_at": "2019-07-11T17:43:11Z", + "pushed_at": "2019-10-08T12:19:42Z", + "git_url": "git://github.com/jenkinsci/console-tail-plugin.git", + "ssh_url": "git@github.com:jenkinsci/console-tail-plugin.git", + "clone_url": "https://github.com/jenkinsci/console-tail-plugin.git", + "svn_url": "https://github.com/jenkinsci/console-tail-plugin", + "homepage": "", + "size": 10, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 4, + "open_issues": 1, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 13800746, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzgwMDc0Ng==", + "name": "btrfs-workspace-plugin", + "full_name": "jenkinsci/btrfs-workspace-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/btrfs-workspace-plugin", + "description": "Jenkins plugin to make workspaces btrfs snapshots", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/btrfs-workspace-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/btrfs-workspace-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/btrfs-workspace-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/btrfs-workspace-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/btrfs-workspace-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/btrfs-workspace-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/btrfs-workspace-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/btrfs-workspace-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/btrfs-workspace-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/btrfs-workspace-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/btrfs-workspace-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/btrfs-workspace-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/btrfs-workspace-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/btrfs-workspace-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/btrfs-workspace-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/btrfs-workspace-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/btrfs-workspace-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/btrfs-workspace-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/btrfs-workspace-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/btrfs-workspace-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/btrfs-workspace-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/btrfs-workspace-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/btrfs-workspace-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/btrfs-workspace-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/btrfs-workspace-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/btrfs-workspace-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/btrfs-workspace-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/btrfs-workspace-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/btrfs-workspace-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/btrfs-workspace-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/btrfs-workspace-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/btrfs-workspace-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/btrfs-workspace-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/btrfs-workspace-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/btrfs-workspace-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/btrfs-workspace-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/btrfs-workspace-plugin/deployments", + "created_at": "2013-10-23T11:16:29Z", + "updated_at": "2015-05-22T07:55:05Z", + "pushed_at": "2013-03-31T21:44:32Z", + "git_url": "git://github.com/jenkinsci/btrfs-workspace-plugin.git", + "ssh_url": "git@github.com:jenkinsci/btrfs-workspace-plugin.git", + "clone_url": "https://github.com/jenkinsci/btrfs-workspace-plugin.git", + "svn_url": "https://github.com/jenkinsci/btrfs-workspace-plugin", + "homepage": "", + "size": 60, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 13806615, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzgwNjYxNQ==", + "name": "neoload-plugin", + "full_name": "jenkinsci/neoload-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/neoload-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/neoload-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/neoload-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/neoload-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/neoload-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/neoload-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/neoload-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/neoload-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/neoload-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/neoload-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/neoload-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/neoload-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/neoload-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/neoload-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/neoload-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/neoload-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/neoload-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/neoload-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/neoload-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/neoload-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/neoload-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/neoload-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/neoload-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/neoload-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/neoload-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/neoload-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/neoload-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/neoload-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/neoload-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/neoload-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/neoload-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/neoload-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/neoload-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/neoload-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/neoload-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/neoload-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/neoload-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/neoload-plugin/deployments", + "created_at": "2013-10-23T15:28:03Z", + "updated_at": "2019-10-03T13:04:44Z", + "pushed_at": "2019-10-03T13:04:42Z", + "git_url": "git://github.com/jenkinsci/neoload-plugin.git", + "ssh_url": "git@github.com:jenkinsci/neoload-plugin.git", + "clone_url": "https://github.com/jenkinsci/neoload-plugin.git", + "svn_url": "https://github.com/jenkinsci/neoload-plugin", + "homepage": "http://www.neotys.com", + "size": 12263, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 6, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 13830109, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzgzMDEwOQ==", + "name": "support-core-plugin", + "full_name": "jenkinsci/support-core-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/support-core-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/support-core-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/support-core-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/support-core-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/support-core-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/support-core-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/support-core-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/support-core-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/support-core-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/support-core-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/support-core-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/support-core-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/support-core-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/support-core-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/support-core-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/support-core-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/support-core-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/support-core-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/support-core-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/support-core-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/support-core-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/support-core-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/support-core-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/support-core-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/support-core-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/support-core-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/support-core-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/support-core-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/support-core-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/support-core-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/support-core-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/support-core-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/support-core-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/support-core-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/support-core-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/support-core-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/support-core-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/support-core-plugin/deployments", + "created_at": "2013-10-24T11:18:45Z", + "updated_at": "2019-10-21T07:37:57Z", + "pushed_at": "2019-10-25T04:00:40Z", + "git_url": "git://github.com/jenkinsci/support-core-plugin.git", + "ssh_url": "git@github.com:jenkinsci/support-core-plugin.git", + "clone_url": "https://github.com/jenkinsci/support-core-plugin.git", + "svn_url": "https://github.com/jenkinsci/support-core-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Support+Core+Plugin", + "size": 1189, + "stargazers_count": 9, + "watchers_count": 9, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 51, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 7, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 51, + "open_issues": 7, + "watchers": 9, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 13842758, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzg0Mjc1OA==", + "name": "buildflow-extensions-plugin", + "full_name": "jenkinsci/buildflow-extensions-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/buildflow-extensions-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/buildflow-extensions-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/buildflow-extensions-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/buildflow-extensions-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/buildflow-extensions-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/buildflow-extensions-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/buildflow-extensions-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/buildflow-extensions-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/buildflow-extensions-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/buildflow-extensions-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/buildflow-extensions-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/buildflow-extensions-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/buildflow-extensions-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/buildflow-extensions-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/buildflow-extensions-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/buildflow-extensions-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/buildflow-extensions-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/buildflow-extensions-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/buildflow-extensions-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/buildflow-extensions-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/buildflow-extensions-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/buildflow-extensions-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/buildflow-extensions-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/buildflow-extensions-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/buildflow-extensions-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/buildflow-extensions-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/buildflow-extensions-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/buildflow-extensions-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/buildflow-extensions-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/buildflow-extensions-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/buildflow-extensions-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/buildflow-extensions-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/buildflow-extensions-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/buildflow-extensions-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/buildflow-extensions-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/buildflow-extensions-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/buildflow-extensions-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/buildflow-extensions-plugin/deployments", + "created_at": "2013-10-24T19:58:16Z", + "updated_at": "2019-07-15T10:51:42Z", + "pushed_at": "2014-12-12T14:51:09Z", + "git_url": "git://github.com/jenkinsci/buildflow-extensions-plugin.git", + "ssh_url": "git@github.com:jenkinsci/buildflow-extensions-plugin.git", + "clone_url": "https://github.com/jenkinsci/buildflow-extensions-plugin.git", + "svn_url": "https://github.com/jenkinsci/buildflow-extensions-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Build+Flow+Extensions+Plugin", + "size": 173, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 13842768, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzg0Mjc2OA==", + "name": "cucumber-testresult-plugin", + "full_name": "jenkinsci/cucumber-testresult-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/cucumber-testresult-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/cucumber-testresult-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/cucumber-testresult-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/cucumber-testresult-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/cucumber-testresult-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/cucumber-testresult-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/cucumber-testresult-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/cucumber-testresult-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/cucumber-testresult-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/cucumber-testresult-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/cucumber-testresult-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/cucumber-testresult-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/cucumber-testresult-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/cucumber-testresult-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/cucumber-testresult-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/cucumber-testresult-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/cucumber-testresult-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/cucumber-testresult-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/cucumber-testresult-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/cucumber-testresult-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/cucumber-testresult-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/cucumber-testresult-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/cucumber-testresult-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/cucumber-testresult-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/cucumber-testresult-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/cucumber-testresult-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/cucumber-testresult-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/cucumber-testresult-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/cucumber-testresult-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/cucumber-testresult-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/cucumber-testresult-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/cucumber-testresult-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/cucumber-testresult-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/cucumber-testresult-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/cucumber-testresult-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/cucumber-testresult-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/cucumber-testresult-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/cucumber-testresult-plugin/deployments", + "created_at": "2013-10-24T19:58:48Z", + "updated_at": "2019-10-08T22:30:11Z", + "pushed_at": "2019-10-08T22:30:08Z", + "git_url": "git://github.com/jenkinsci/cucumber-testresult-plugin.git", + "ssh_url": "git@github.com:jenkinsci/cucumber-testresult-plugin.git", + "clone_url": "https://github.com/jenkinsci/cucumber-testresult-plugin.git", + "svn_url": "https://github.com/jenkinsci/cucumber-testresult-plugin", + "homepage": "", + "size": 245, + "stargazers_count": 16, + "watchers_count": 16, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 39, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 4, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 39, + "open_issues": 4, + "watchers": 16, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 13871368, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzg3MTM2OA==", + "name": "certificate-authentication-plugin", + "full_name": "jenkinsci/certificate-authentication-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/certificate-authentication-plugin", + "description": "Client SSL certificate auth for Jenkins.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/certificate-authentication-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/certificate-authentication-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/certificate-authentication-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/certificate-authentication-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/certificate-authentication-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/certificate-authentication-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/certificate-authentication-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/certificate-authentication-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/certificate-authentication-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/certificate-authentication-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/certificate-authentication-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/certificate-authentication-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/certificate-authentication-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/certificate-authentication-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/certificate-authentication-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/certificate-authentication-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/certificate-authentication-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/certificate-authentication-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/certificate-authentication-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/certificate-authentication-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/certificate-authentication-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/certificate-authentication-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/certificate-authentication-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/certificate-authentication-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/certificate-authentication-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/certificate-authentication-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/certificate-authentication-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/certificate-authentication-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/certificate-authentication-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/certificate-authentication-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/certificate-authentication-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/certificate-authentication-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/certificate-authentication-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/certificate-authentication-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/certificate-authentication-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/certificate-authentication-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/certificate-authentication-plugin/deployments", + "created_at": "2013-10-25T20:27:46Z", + "updated_at": "2017-12-08T15:00:30Z", + "pushed_at": "2013-10-26T01:15:26Z", + "git_url": "git://github.com/jenkinsci/certificate-authentication-plugin.git", + "ssh_url": "git@github.com:jenkinsci/certificate-authentication-plugin.git", + "clone_url": "https://github.com/jenkinsci/certificate-authentication-plugin.git", + "svn_url": "https://github.com/jenkinsci/certificate-authentication-plugin", + "homepage": "getpantheon.com", + "size": 136, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 3, + "open_issues": 0, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 14042039, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDA0MjAzOQ==", + "name": "webload-plugin", + "full_name": "jenkinsci/webload-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/webload-plugin", + "description": "Jenkins plugin for WebLOAD load testing tool by RadView", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/webload-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/webload-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/webload-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/webload-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/webload-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/webload-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/webload-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/webload-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/webload-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/webload-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/webload-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/webload-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/webload-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/webload-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/webload-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/webload-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/webload-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/webload-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/webload-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/webload-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/webload-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/webload-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/webload-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/webload-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/webload-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/webload-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/webload-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/webload-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/webload-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/webload-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/webload-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/webload-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/webload-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/webload-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/webload-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/webload-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/webload-plugin/deployments", + "created_at": "2013-11-01T11:58:22Z", + "updated_at": "2019-04-28T09:50:21Z", + "pushed_at": "2017-09-07T20:08:49Z", + "git_url": "git://github.com/jenkinsci/webload-plugin.git", + "ssh_url": "git@github.com:jenkinsci/webload-plugin.git", + "clone_url": "https://github.com/jenkinsci/webload-plugin.git", + "svn_url": "https://github.com/jenkinsci/webload-plugin", + "homepage": "http://www.radview.com/", + "size": 35, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 14145235, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDE0NTIzNQ==", + "name": "scriptcs-plugin", + "full_name": "jenkinsci/scriptcs-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/scriptcs-plugin", + "description": "ScriptCS", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/scriptcs-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/scriptcs-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/scriptcs-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/scriptcs-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/scriptcs-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/scriptcs-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/scriptcs-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/scriptcs-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/scriptcs-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/scriptcs-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/scriptcs-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/scriptcs-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/scriptcs-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/scriptcs-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/scriptcs-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/scriptcs-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/scriptcs-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/scriptcs-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/scriptcs-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/scriptcs-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/scriptcs-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/scriptcs-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/scriptcs-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/scriptcs-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/scriptcs-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/scriptcs-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/scriptcs-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/scriptcs-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/scriptcs-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/scriptcs-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/scriptcs-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/scriptcs-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/scriptcs-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/scriptcs-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/scriptcs-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/scriptcs-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/scriptcs-plugin/deployments", + "created_at": "2013-11-05T15:28:18Z", + "updated_at": "2013-11-07T17:37:29Z", + "pushed_at": "2013-11-07T17:37:26Z", + "git_url": "git://github.com/jenkinsci/scriptcs-plugin.git", + "ssh_url": "git@github.com:jenkinsci/scriptcs-plugin.git", + "clone_url": "https://github.com/jenkinsci/scriptcs-plugin.git", + "svn_url": "https://github.com/jenkinsci/scriptcs-plugin", + "homepage": null, + "size": 138, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 14217329, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDIxNzMyOQ==", + "name": "post-completed-build-result-plugin", + "full_name": "jenkinsci/post-completed-build-result-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/post-completed-build-result-plugin", + "description": "Jenkins post-completed-build-result-plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/post-completed-build-result-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/post-completed-build-result-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/post-completed-build-result-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/post-completed-build-result-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/post-completed-build-result-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/post-completed-build-result-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/post-completed-build-result-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/post-completed-build-result-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/post-completed-build-result-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/post-completed-build-result-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/post-completed-build-result-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/post-completed-build-result-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/post-completed-build-result-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/post-completed-build-result-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/post-completed-build-result-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/post-completed-build-result-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/post-completed-build-result-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/post-completed-build-result-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/post-completed-build-result-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/post-completed-build-result-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/post-completed-build-result-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/post-completed-build-result-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/post-completed-build-result-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/post-completed-build-result-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/post-completed-build-result-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/post-completed-build-result-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/post-completed-build-result-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/post-completed-build-result-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/post-completed-build-result-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/post-completed-build-result-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/post-completed-build-result-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/post-completed-build-result-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/post-completed-build-result-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/post-completed-build-result-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/post-completed-build-result-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/post-completed-build-result-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/post-completed-build-result-plugin/deployments", + "created_at": "2013-11-07T22:08:57Z", + "updated_at": "2019-02-04T07:33:26Z", + "pushed_at": "2019-10-08T16:13:12Z", + "git_url": "git://github.com/jenkinsci/post-completed-build-result-plugin.git", + "ssh_url": "git@github.com:jenkinsci/post-completed-build-result-plugin.git", + "clone_url": "https://github.com/jenkinsci/post-completed-build-result-plugin.git", + "svn_url": "https://github.com/jenkinsci/post-completed-build-result-plugin", + "homepage": null, + "size": 129, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 9, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 9, + "open_issues": 2, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 14238607, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDIzODYwNw==", + "name": "node-iterator-api-plugin", + "full_name": "jenkinsci/node-iterator-api-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/node-iterator-api-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/node-iterator-api-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/node-iterator-api-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/node-iterator-api-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/node-iterator-api-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/node-iterator-api-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/node-iterator-api-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/node-iterator-api-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/node-iterator-api-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/node-iterator-api-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/node-iterator-api-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/node-iterator-api-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/node-iterator-api-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/node-iterator-api-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/node-iterator-api-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/node-iterator-api-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/node-iterator-api-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/node-iterator-api-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/node-iterator-api-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/node-iterator-api-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/node-iterator-api-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/node-iterator-api-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/node-iterator-api-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/node-iterator-api-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/node-iterator-api-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/node-iterator-api-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/node-iterator-api-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/node-iterator-api-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/node-iterator-api-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/node-iterator-api-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/node-iterator-api-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/node-iterator-api-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/node-iterator-api-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/node-iterator-api-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/node-iterator-api-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/node-iterator-api-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/node-iterator-api-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/node-iterator-api-plugin/deployments", + "created_at": "2013-11-08T16:45:13Z", + "updated_at": "2016-05-25T10:10:50Z", + "pushed_at": "2019-09-30T15:09:10Z", + "git_url": "git://github.com/jenkinsci/node-iterator-api-plugin.git", + "ssh_url": "git@github.com:jenkinsci/node-iterator-api-plugin.git", + "clone_url": "https://github.com/jenkinsci/node-iterator-api-plugin.git", + "svn_url": "https://github.com/jenkinsci/node-iterator-api-plugin", + "homepage": "", + "size": 18, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 2, + "open_issues": 2, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 14298927, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDI5ODkyNw==", + "name": "awseb-deployment-plugin", + "full_name": "jenkinsci/awseb-deployment-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/awseb-deployment-plugin", + "description": "Jenkins Plugin for AWS Elastic Beanstalk", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/awseb-deployment-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/awseb-deployment-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/awseb-deployment-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/awseb-deployment-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/awseb-deployment-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/awseb-deployment-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/awseb-deployment-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/awseb-deployment-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/awseb-deployment-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/awseb-deployment-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/awseb-deployment-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/awseb-deployment-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/awseb-deployment-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/awseb-deployment-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/awseb-deployment-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/awseb-deployment-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/awseb-deployment-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/awseb-deployment-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/awseb-deployment-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/awseb-deployment-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/awseb-deployment-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/awseb-deployment-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/awseb-deployment-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/awseb-deployment-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/awseb-deployment-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/awseb-deployment-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/awseb-deployment-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/awseb-deployment-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/awseb-deployment-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/awseb-deployment-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/awseb-deployment-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/awseb-deployment-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/awseb-deployment-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/awseb-deployment-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/awseb-deployment-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/awseb-deployment-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/awseb-deployment-plugin/deployments", + "created_at": "2013-11-11T11:23:40Z", + "updated_at": "2017-01-13T20:11:05Z", + "pushed_at": "2018-09-19T13:55:09Z", + "git_url": "git://github.com/jenkinsci/awseb-deployment-plugin.git", + "ssh_url": "git@github.com:jenkinsci/awseb-deployment-plugin.git", + "clone_url": "https://github.com/jenkinsci/awseb-deployment-plugin.git", + "svn_url": "https://github.com/jenkinsci/awseb-deployment-plugin", + "homepage": null, + "size": 250, + "stargazers_count": 16, + "watchers_count": 16, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 17, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 17, + "open_issues": 1, + "watchers": 16, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 14336323, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDMzNjMyMw==", + "name": "websphere-deployer-plugin", + "full_name": "jenkinsci/websphere-deployer-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/websphere-deployer-plugin", + "description": "Deployment Plugin For WebSphere On Jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/websphere-deployer-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/websphere-deployer-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/websphere-deployer-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/websphere-deployer-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/websphere-deployer-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/websphere-deployer-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/websphere-deployer-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/websphere-deployer-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/websphere-deployer-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/websphere-deployer-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/websphere-deployer-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/websphere-deployer-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/websphere-deployer-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/websphere-deployer-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/websphere-deployer-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/websphere-deployer-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/websphere-deployer-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/websphere-deployer-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/websphere-deployer-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/websphere-deployer-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/websphere-deployer-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/websphere-deployer-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/websphere-deployer-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/websphere-deployer-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/websphere-deployer-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/websphere-deployer-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/websphere-deployer-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/websphere-deployer-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/websphere-deployer-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/websphere-deployer-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/websphere-deployer-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/websphere-deployer-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/websphere-deployer-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/websphere-deployer-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/websphere-deployer-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/websphere-deployer-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/websphere-deployer-plugin/deployments", + "created_at": "2013-11-12T15:35:06Z", + "updated_at": "2019-07-29T18:58:34Z", + "pushed_at": "2019-08-08T19:57:18Z", + "git_url": "git://github.com/jenkinsci/websphere-deployer-plugin.git", + "ssh_url": "git@github.com:jenkinsci/websphere-deployer-plugin.git", + "clone_url": "https://github.com/jenkinsci/websphere-deployer-plugin.git", + "svn_url": "https://github.com/jenkinsci/websphere-deployer-plugin", + "homepage": "", + "size": 195, + "stargazers_count": 22, + "watchers_count": 22, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 36, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 36, + "open_issues": 2, + "watchers": 22, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 14344222, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDM0NDIyMg==", + "name": "backend-git-pushf-finder", + "full_name": "jenkinsci/backend-git-pushf-finder", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/backend-git-pushf-finder", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/backend-git-pushf-finder", + "forks_url": "https://api.github.com/repos/jenkinsci/backend-git-pushf-finder/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/backend-git-pushf-finder/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/backend-git-pushf-finder/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/backend-git-pushf-finder/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/backend-git-pushf-finder/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/backend-git-pushf-finder/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/backend-git-pushf-finder/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/backend-git-pushf-finder/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/backend-git-pushf-finder/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/backend-git-pushf-finder/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/backend-git-pushf-finder/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/backend-git-pushf-finder/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/backend-git-pushf-finder/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/backend-git-pushf-finder/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/backend-git-pushf-finder/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/backend-git-pushf-finder/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/backend-git-pushf-finder/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/backend-git-pushf-finder/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/backend-git-pushf-finder/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/backend-git-pushf-finder/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/backend-git-pushf-finder/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/backend-git-pushf-finder/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/backend-git-pushf-finder/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/backend-git-pushf-finder/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/backend-git-pushf-finder/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/backend-git-pushf-finder/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/backend-git-pushf-finder/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/backend-git-pushf-finder/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/backend-git-pushf-finder/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/backend-git-pushf-finder/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/backend-git-pushf-finder/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/backend-git-pushf-finder/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/backend-git-pushf-finder/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/backend-git-pushf-finder/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/backend-git-pushf-finder/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/backend-git-pushf-finder/deployments", + "created_at": "2013-11-12T20:27:56Z", + "updated_at": "2018-01-03T17:51:34Z", + "pushed_at": "2013-11-13T21:00:24Z", + "git_url": "git://github.com/jenkinsci/backend-git-pushf-finder.git", + "ssh_url": "git@github.com:jenkinsci/backend-git-pushf-finder.git", + "clone_url": "https://github.com/jenkinsci/backend-git-pushf-finder.git", + "svn_url": "https://github.com/jenkinsci/backend-git-pushf-finder", + "homepage": "", + "size": 136, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": true, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 14372155, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDM3MjE1NQ==", + "name": "tibco-builder-plugin", + "full_name": "jenkinsci/tibco-builder-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/tibco-builder-plugin", + "description": "This plugin enable you to integrate TIBCO artifacts builds into jenkins CI", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/tibco-builder-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/tibco-builder-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/tibco-builder-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/tibco-builder-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/tibco-builder-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/tibco-builder-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/tibco-builder-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/tibco-builder-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/tibco-builder-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/tibco-builder-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/tibco-builder-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/tibco-builder-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/tibco-builder-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/tibco-builder-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/tibco-builder-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/tibco-builder-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/tibco-builder-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/tibco-builder-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/tibco-builder-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/tibco-builder-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/tibco-builder-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/tibco-builder-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/tibco-builder-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/tibco-builder-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/tibco-builder-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/tibco-builder-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/tibco-builder-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/tibco-builder-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/tibco-builder-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/tibco-builder-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/tibco-builder-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/tibco-builder-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/tibco-builder-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/tibco-builder-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/tibco-builder-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/tibco-builder-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/tibco-builder-plugin/deployments", + "created_at": "2013-11-13T18:12:24Z", + "updated_at": "2013-12-17T16:43:27Z", + "pushed_at": "2013-12-17T16:43:26Z", + "git_url": "git://github.com/jenkinsci/tibco-builder-plugin.git", + "ssh_url": "git@github.com:jenkinsci/tibco-builder-plugin.git", + "clone_url": "https://github.com/jenkinsci/tibco-builder-plugin.git", + "svn_url": "https://github.com/jenkinsci/tibco-builder-plugin", + "homepage": "", + "size": 184, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 14600308, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDYwMDMwOA==", + "name": "job-run-uuid-plugin", + "full_name": "jenkinsci/job-run-uuid-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/job-run-uuid-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/job-run-uuid-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/job-run-uuid-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/job-run-uuid-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/job-run-uuid-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/job-run-uuid-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/job-run-uuid-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/job-run-uuid-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/job-run-uuid-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/job-run-uuid-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/job-run-uuid-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/job-run-uuid-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/job-run-uuid-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/job-run-uuid-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/job-run-uuid-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/job-run-uuid-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/job-run-uuid-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/job-run-uuid-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/job-run-uuid-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/job-run-uuid-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/job-run-uuid-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/job-run-uuid-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/job-run-uuid-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/job-run-uuid-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/job-run-uuid-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/job-run-uuid-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/job-run-uuid-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/job-run-uuid-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/job-run-uuid-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/job-run-uuid-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/job-run-uuid-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/job-run-uuid-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/job-run-uuid-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/job-run-uuid-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/job-run-uuid-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/job-run-uuid-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/job-run-uuid-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/job-run-uuid-plugin/deployments", + "created_at": "2013-11-21T21:17:55Z", + "updated_at": "2013-12-01T17:42:49Z", + "pushed_at": "2013-12-01T17:42:46Z", + "git_url": "git://github.com/jenkinsci/job-run-uuid-plugin.git", + "ssh_url": "git@github.com:jenkinsci/job-run-uuid-plugin.git", + "clone_url": "https://github.com/jenkinsci/job-run-uuid-plugin.git", + "svn_url": "https://github.com/jenkinsci/job-run-uuid-plugin", + "homepage": "", + "size": 120, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 14600358, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDYwMDM1OA==", + "name": "slack-plugin", + "full_name": "jenkinsci/slack-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/slack-plugin", + "description": "A Jenkins plugin for posting notifications to a Slack channel", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/slack-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/slack-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/slack-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/slack-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/slack-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/slack-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/slack-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/slack-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/slack-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/slack-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/slack-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/slack-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/slack-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/slack-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/slack-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/slack-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/slack-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/slack-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/slack-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/slack-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/slack-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/slack-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/slack-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/slack-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/slack-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/slack-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/slack-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/slack-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/slack-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/slack-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/slack-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/slack-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/slack-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/slack-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/slack-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/slack-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/slack-plugin/deployments", + "created_at": "2013-11-21T21:20:04Z", + "updated_at": "2019-10-24T14:50:35Z", + "pushed_at": "2019-09-29T15:38:05Z", + "git_url": "git://github.com/jenkinsci/slack-plugin.git", + "ssh_url": "git@github.com:jenkinsci/slack-plugin.git", + "clone_url": "https://github.com/jenkinsci/slack-plugin.git", + "svn_url": "https://github.com/jenkinsci/slack-plugin", + "homepage": "", + "size": 827, + "stargazers_count": 553, + "watchers_count": 553, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 345, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 34, + "license": null, + "forks": 345, + "open_issues": 34, + "watchers": 553, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 14640734, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDY0MDczNA==", + "name": "authorize-project-plugin", + "full_name": "jenkinsci/authorize-project-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/authorize-project-plugin", + "description": "Jenkins plugin to configure a project to run with specified authorization", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/authorize-project-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/authorize-project-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/authorize-project-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/authorize-project-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/authorize-project-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/authorize-project-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/authorize-project-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/authorize-project-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/authorize-project-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/authorize-project-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/authorize-project-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/authorize-project-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/authorize-project-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/authorize-project-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/authorize-project-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/authorize-project-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/authorize-project-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/authorize-project-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/authorize-project-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/authorize-project-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/authorize-project-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/authorize-project-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/authorize-project-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/authorize-project-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/authorize-project-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/authorize-project-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/authorize-project-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/authorize-project-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/authorize-project-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/authorize-project-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/authorize-project-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/authorize-project-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/authorize-project-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/authorize-project-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/authorize-project-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/authorize-project-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/authorize-project-plugin/deployments", + "created_at": "2013-11-23T10:51:33Z", + "updated_at": "2019-10-16T20:46:01Z", + "pushed_at": "2019-10-09T08:13:40Z", + "git_url": "git://github.com/jenkinsci/authorize-project-plugin.git", + "ssh_url": "git@github.com:jenkinsci/authorize-project-plugin.git", + "clone_url": "https://github.com/jenkinsci/authorize-project-plugin.git", + "svn_url": "https://github.com/jenkinsci/authorize-project-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Authorize+Project+plugin", + "size": 321, + "stargazers_count": 6, + "watchers_count": 6, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 19, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 19, + "open_issues": 2, + "watchers": 6, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 14701424, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDcwMTQyNA==", + "name": "backend-github-event-collector", + "full_name": "jenkinsci/backend-github-event-collector", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/backend-github-event-collector", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/backend-github-event-collector", + "forks_url": "https://api.github.com/repos/jenkinsci/backend-github-event-collector/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/backend-github-event-collector/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/backend-github-event-collector/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/backend-github-event-collector/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/backend-github-event-collector/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/backend-github-event-collector/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/backend-github-event-collector/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/backend-github-event-collector/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/backend-github-event-collector/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/backend-github-event-collector/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/backend-github-event-collector/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/backend-github-event-collector/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/backend-github-event-collector/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/backend-github-event-collector/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/backend-github-event-collector/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/backend-github-event-collector/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/backend-github-event-collector/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/backend-github-event-collector/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/backend-github-event-collector/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/backend-github-event-collector/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/backend-github-event-collector/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/backend-github-event-collector/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/backend-github-event-collector/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/backend-github-event-collector/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/backend-github-event-collector/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/backend-github-event-collector/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/backend-github-event-collector/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/backend-github-event-collector/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/backend-github-event-collector/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/backend-github-event-collector/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/backend-github-event-collector/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/backend-github-event-collector/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/backend-github-event-collector/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/backend-github-event-collector/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/backend-github-event-collector/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/backend-github-event-collector/deployments", + "created_at": "2013-11-25T23:14:43Z", + "updated_at": "2018-01-03T17:53:47Z", + "pushed_at": "2013-11-25T23:15:37Z", + "git_url": "git://github.com/jenkinsci/backend-github-event-collector.git", + "ssh_url": "git@github.com:jenkinsci/backend-github-event-collector.git", + "clone_url": "https://github.com/jenkinsci/backend-github-event-collector.git", + "svn_url": "https://github.com/jenkinsci/backend-github-event-collector", + "homepage": "", + "size": 100, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Groovy", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": true, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 14759646, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDc1OTY0Ng==", + "name": "hckrnews-plugin", + "full_name": "jenkinsci/hckrnews-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/hckrnews-plugin", + "description": "Jenkins plugin for reading hacker news top time line.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/hckrnews-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/hckrnews-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/hckrnews-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/hckrnews-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/hckrnews-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/hckrnews-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/hckrnews-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/hckrnews-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/hckrnews-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/hckrnews-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/hckrnews-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/hckrnews-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/hckrnews-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/hckrnews-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/hckrnews-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/hckrnews-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/hckrnews-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/hckrnews-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/hckrnews-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/hckrnews-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/hckrnews-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/hckrnews-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/hckrnews-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/hckrnews-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/hckrnews-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/hckrnews-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/hckrnews-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/hckrnews-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/hckrnews-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/hckrnews-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/hckrnews-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/hckrnews-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/hckrnews-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/hckrnews-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/hckrnews-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/hckrnews-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/hckrnews-plugin/deployments", + "created_at": "2013-11-27T21:37:25Z", + "updated_at": "2014-12-10T06:40:16Z", + "pushed_at": "2013-11-29T04:02:34Z", + "git_url": "git://github.com/jenkinsci/hckrnews-plugin.git", + "ssh_url": "git@github.com:jenkinsci/hckrnews-plugin.git", + "clone_url": "https://github.com/jenkinsci/hckrnews-plugin.git", + "svn_url": "https://github.com/jenkinsci/hckrnews-plugin", + "homepage": null, + "size": 128, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 14800216, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDgwMDIxNg==", + "name": "chatwork-plugin", + "full_name": "jenkinsci/chatwork-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/chatwork-plugin", + "description": "This Plugin will notify the ChatWork any message.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/chatwork-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/chatwork-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/chatwork-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/chatwork-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/chatwork-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/chatwork-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/chatwork-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/chatwork-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/chatwork-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/chatwork-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/chatwork-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/chatwork-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/chatwork-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/chatwork-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/chatwork-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/chatwork-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/chatwork-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/chatwork-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/chatwork-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/chatwork-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/chatwork-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/chatwork-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/chatwork-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/chatwork-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/chatwork-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/chatwork-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/chatwork-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/chatwork-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/chatwork-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/chatwork-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/chatwork-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/chatwork-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/chatwork-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/chatwork-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/chatwork-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/chatwork-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/chatwork-plugin/deployments", + "created_at": "2013-11-29T11:54:20Z", + "updated_at": "2019-10-08T15:44:41Z", + "pushed_at": "2019-10-08T15:44:39Z", + "git_url": "git://github.com/jenkinsci/chatwork-plugin.git", + "ssh_url": "git@github.com:jenkinsci/chatwork-plugin.git", + "clone_url": "https://github.com/jenkinsci/chatwork-plugin.git", + "svn_url": "https://github.com/jenkinsci/chatwork-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/ChatWork+Plugin", + "size": 174, + "stargazers_count": 13, + "watchers_count": 13, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 12, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 12, + "open_issues": 0, + "watchers": 13, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 14819466, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDgxOTQ2Ng==", + "name": "parameterized-remote-trigger-plugin", + "full_name": "jenkinsci/parameterized-remote-trigger-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/parameterized-remote-trigger-plugin", + "description": "A plugin to Jenkins CI which triggers parameterized builds on a remote Jenkins", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/parameterized-remote-trigger-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/parameterized-remote-trigger-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/parameterized-remote-trigger-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/parameterized-remote-trigger-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/parameterized-remote-trigger-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/parameterized-remote-trigger-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/parameterized-remote-trigger-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/parameterized-remote-trigger-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/parameterized-remote-trigger-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/parameterized-remote-trigger-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/parameterized-remote-trigger-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/parameterized-remote-trigger-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/parameterized-remote-trigger-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/parameterized-remote-trigger-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/parameterized-remote-trigger-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/parameterized-remote-trigger-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/parameterized-remote-trigger-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/parameterized-remote-trigger-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/parameterized-remote-trigger-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/parameterized-remote-trigger-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/parameterized-remote-trigger-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/parameterized-remote-trigger-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/parameterized-remote-trigger-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/parameterized-remote-trigger-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/parameterized-remote-trigger-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/parameterized-remote-trigger-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/parameterized-remote-trigger-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/parameterized-remote-trigger-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/parameterized-remote-trigger-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/parameterized-remote-trigger-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/parameterized-remote-trigger-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/parameterized-remote-trigger-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/parameterized-remote-trigger-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/parameterized-remote-trigger-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/parameterized-remote-trigger-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/parameterized-remote-trigger-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/parameterized-remote-trigger-plugin/deployments", + "created_at": "2013-11-30T10:58:12Z", + "updated_at": "2019-10-11T03:18:38Z", + "pushed_at": "2019-10-18T07:27:54Z", + "git_url": "git://github.com/jenkinsci/parameterized-remote-trigger-plugin.git", + "ssh_url": "git@github.com:jenkinsci/parameterized-remote-trigger-plugin.git", + "clone_url": "https://github.com/jenkinsci/parameterized-remote-trigger-plugin.git", + "svn_url": "https://github.com/jenkinsci/parameterized-remote-trigger-plugin", + "homepage": null, + "size": 1189, + "stargazers_count": 22, + "watchers_count": 22, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 101, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 101, + "open_issues": 1, + "watchers": 22, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 14820847, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDgyMDg0Nw==", + "name": "daily-quote-plugin", + "full_name": "jenkinsci/daily-quote-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/daily-quote-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/daily-quote-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/daily-quote-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/daily-quote-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/daily-quote-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/daily-quote-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/daily-quote-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/daily-quote-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/daily-quote-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/daily-quote-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/daily-quote-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/daily-quote-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/daily-quote-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/daily-quote-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/daily-quote-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/daily-quote-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/daily-quote-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/daily-quote-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/daily-quote-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/daily-quote-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/daily-quote-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/daily-quote-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/daily-quote-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/daily-quote-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/daily-quote-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/daily-quote-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/daily-quote-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/daily-quote-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/daily-quote-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/daily-quote-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/daily-quote-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/daily-quote-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/daily-quote-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/daily-quote-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/daily-quote-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/daily-quote-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/daily-quote-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/daily-quote-plugin/deployments", + "created_at": "2013-11-30T12:46:27Z", + "updated_at": "2016-11-23T16:28:53Z", + "pushed_at": "2016-11-23T16:28:52Z", + "git_url": "git://github.com/jenkinsci/daily-quote-plugin.git", + "ssh_url": "git@github.com:jenkinsci/daily-quote-plugin.git", + "clone_url": "https://github.com/jenkinsci/daily-quote-plugin.git", + "svn_url": "https://github.com/jenkinsci/daily-quote-plugin", + "homepage": "", + "size": 6, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 14858096, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDg1ODA5Ng==", + "name": "uvision-plugin", + "full_name": "jenkinsci/uvision-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/uvision-plugin", + "description": "Jenkins UVision code coverage plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/uvision-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/uvision-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/uvision-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/uvision-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/uvision-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/uvision-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/uvision-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/uvision-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/uvision-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/uvision-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/uvision-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/uvision-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/uvision-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/uvision-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/uvision-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/uvision-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/uvision-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/uvision-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/uvision-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/uvision-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/uvision-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/uvision-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/uvision-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/uvision-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/uvision-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/uvision-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/uvision-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/uvision-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/uvision-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/uvision-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/uvision-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/uvision-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/uvision-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/uvision-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/uvision-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/uvision-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/uvision-plugin/deployments", + "created_at": "2013-12-02T09:29:38Z", + "updated_at": "2014-04-16T13:26:58Z", + "pushed_at": "2013-12-02T16:06:44Z", + "git_url": "git://github.com/jenkinsci/uvision-plugin.git", + "ssh_url": "git@github.com:jenkinsci/uvision-plugin.git", + "clone_url": "https://github.com/jenkinsci/uvision-plugin.git", + "svn_url": "https://github.com/jenkinsci/uvision-plugin", + "homepage": null, + "size": 48112, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 14892663, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDg5MjY2Mw==", + "name": "sbuild-plugin", + "full_name": "jenkinsci/sbuild-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/sbuild-plugin", + "description": "Jenkins plugin which enables direct execution of SBuild targets.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/sbuild-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/sbuild-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/sbuild-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/sbuild-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/sbuild-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/sbuild-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/sbuild-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/sbuild-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/sbuild-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/sbuild-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/sbuild-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/sbuild-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/sbuild-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/sbuild-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/sbuild-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/sbuild-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/sbuild-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/sbuild-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/sbuild-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/sbuild-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/sbuild-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/sbuild-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/sbuild-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/sbuild-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/sbuild-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/sbuild-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/sbuild-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/sbuild-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/sbuild-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/sbuild-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/sbuild-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/sbuild-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/sbuild-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/sbuild-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/sbuild-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/sbuild-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/sbuild-plugin/deployments", + "created_at": "2013-12-03T12:18:24Z", + "updated_at": "2014-06-12T08:58:32Z", + "pushed_at": "2014-06-12T08:58:35Z", + "git_url": "git://github.com/jenkinsci/sbuild-plugin.git", + "ssh_url": "git@github.com:jenkinsci/sbuild-plugin.git", + "clone_url": "https://github.com/jenkinsci/sbuild-plugin.git", + "svn_url": "https://github.com/jenkinsci/sbuild-plugin", + "homepage": null, + "size": 295, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 2, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 15106720, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTEwNjcyMA==", + "name": "lockable-resources-plugin", + "full_name": "jenkinsci/lockable-resources-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/lockable-resources-plugin", + "description": "Lock resources against concurrent use", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/lockable-resources-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/lockable-resources-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/lockable-resources-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/lockable-resources-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/lockable-resources-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/lockable-resources-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/lockable-resources-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/lockable-resources-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/lockable-resources-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/lockable-resources-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/lockable-resources-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/lockable-resources-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/lockable-resources-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/lockable-resources-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/lockable-resources-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/lockable-resources-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/lockable-resources-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/lockable-resources-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/lockable-resources-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/lockable-resources-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/lockable-resources-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/lockable-resources-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/lockable-resources-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/lockable-resources-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/lockable-resources-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/lockable-resources-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/lockable-resources-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/lockable-resources-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/lockable-resources-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/lockable-resources-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/lockable-resources-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/lockable-resources-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/lockable-resources-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/lockable-resources-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/lockable-resources-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/lockable-resources-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/lockable-resources-plugin/deployments", + "created_at": "2013-12-11T12:23:19Z", + "updated_at": "2019-10-19T21:18:24Z", + "pushed_at": "2019-10-19T21:28:49Z", + "git_url": "git://github.com/jenkinsci/lockable-resources-plugin.git", + "ssh_url": "git@github.com:jenkinsci/lockable-resources-plugin.git", + "clone_url": "https://github.com/jenkinsci/lockable-resources-plugin.git", + "svn_url": "https://github.com/jenkinsci/lockable-resources-plugin", + "homepage": "https://plugins.jenkins.io/lockable-resources", + "size": 611, + "stargazers_count": 41, + "watchers_count": 41, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 113, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 63, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 113, + "open_issues": 63, + "watchers": 41, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 15108088, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTEwODA4OA==", + "name": "pom2config-plugin", + "full_name": "jenkinsci/pom2config-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pom2config-plugin", + "description": "Jenkins plugin which allows to transfer settings from a pom to a job configuration.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/pom2config-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pom2config-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pom2config-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pom2config-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pom2config-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pom2config-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pom2config-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pom2config-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pom2config-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pom2config-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pom2config-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pom2config-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pom2config-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pom2config-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pom2config-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pom2config-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pom2config-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pom2config-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pom2config-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pom2config-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pom2config-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pom2config-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pom2config-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pom2config-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pom2config-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pom2config-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pom2config-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pom2config-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pom2config-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pom2config-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pom2config-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pom2config-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pom2config-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pom2config-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pom2config-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pom2config-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pom2config-plugin/deployments", + "created_at": "2013-12-11T13:34:00Z", + "updated_at": "2014-10-08T14:28:12Z", + "pushed_at": "2013-12-11T17:18:58Z", + "git_url": "git://github.com/jenkinsci/pom2config-plugin.git", + "ssh_url": "git@github.com:jenkinsci/pom2config-plugin.git", + "clone_url": "https://github.com/jenkinsci/pom2config-plugin.git", + "svn_url": "https://github.com/jenkinsci/pom2config-plugin", + "homepage": null, + "size": 144, + "stargazers_count": 2, + "watchers_count": 2, + "language": null, + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 15145619, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTE0NTYxOQ==", + "name": "secure-requester-whitelist-plugin", + "full_name": "jenkinsci/secure-requester-whitelist-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/secure-requester-whitelist-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/secure-requester-whitelist-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/secure-requester-whitelist-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/secure-requester-whitelist-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/secure-requester-whitelist-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/secure-requester-whitelist-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/secure-requester-whitelist-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/secure-requester-whitelist-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/secure-requester-whitelist-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/secure-requester-whitelist-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/secure-requester-whitelist-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/secure-requester-whitelist-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/secure-requester-whitelist-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/secure-requester-whitelist-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/secure-requester-whitelist-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/secure-requester-whitelist-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/secure-requester-whitelist-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/secure-requester-whitelist-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/secure-requester-whitelist-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/secure-requester-whitelist-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/secure-requester-whitelist-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/secure-requester-whitelist-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/secure-requester-whitelist-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/secure-requester-whitelist-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/secure-requester-whitelist-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/secure-requester-whitelist-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/secure-requester-whitelist-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/secure-requester-whitelist-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/secure-requester-whitelist-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/secure-requester-whitelist-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/secure-requester-whitelist-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/secure-requester-whitelist-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/secure-requester-whitelist-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/secure-requester-whitelist-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/secure-requester-whitelist-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/secure-requester-whitelist-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/secure-requester-whitelist-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/secure-requester-whitelist-plugin/deployments", + "created_at": "2013-12-12T19:41:15Z", + "updated_at": "2019-09-05T06:22:07Z", + "pushed_at": "2019-09-05T06:22:06Z", + "git_url": "git://github.com/jenkinsci/secure-requester-whitelist-plugin.git", + "ssh_url": "git@github.com:jenkinsci/secure-requester-whitelist-plugin.git", + "clone_url": "https://github.com/jenkinsci/secure-requester-whitelist-plugin.git", + "svn_url": "https://github.com/jenkinsci/secure-requester-whitelist-plugin", + "homepage": "", + "size": 35, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 6, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 15252316, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTI1MjMxNg==", + "name": "mashup-portlets-plugin", + "full_name": "jenkinsci/mashup-portlets-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/mashup-portlets-plugin", + "description": "Additional portlets for jenkins Dashboards (see https://wiki.jenkins-ci.org/display/JENKINS/Dashboard+View)", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/mashup-portlets-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/mashup-portlets-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/mashup-portlets-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/mashup-portlets-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/mashup-portlets-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/mashup-portlets-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/mashup-portlets-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/mashup-portlets-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/mashup-portlets-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/mashup-portlets-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/mashup-portlets-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/mashup-portlets-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/mashup-portlets-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/mashup-portlets-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/mashup-portlets-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/mashup-portlets-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/mashup-portlets-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/mashup-portlets-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/mashup-portlets-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/mashup-portlets-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/mashup-portlets-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/mashup-portlets-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/mashup-portlets-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/mashup-portlets-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/mashup-portlets-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/mashup-portlets-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/mashup-portlets-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/mashup-portlets-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/mashup-portlets-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/mashup-portlets-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/mashup-portlets-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/mashup-portlets-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/mashup-portlets-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/mashup-portlets-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/mashup-portlets-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/mashup-portlets-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/mashup-portlets-plugin/deployments", + "created_at": "2013-12-17T11:06:27Z", + "updated_at": "2019-06-13T22:14:29Z", + "pushed_at": "2019-05-08T23:12:51Z", + "git_url": "git://github.com/jenkinsci/mashup-portlets-plugin.git", + "ssh_url": "git@github.com:jenkinsci/mashup-portlets-plugin.git", + "clone_url": "https://github.com/jenkinsci/mashup-portlets-plugin.git", + "svn_url": "https://github.com/jenkinsci/mashup-portlets-plugin", + "homepage": null, + "size": 101, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 6, + "open_issues": 0, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 15268486, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTI2ODQ4Ng==", + "name": "tracking-git-plugin", + "full_name": "jenkinsci/tracking-git-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/tracking-git-plugin", + "description": "Jenkins Tracking Git Plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/tracking-git-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/tracking-git-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/tracking-git-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/tracking-git-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/tracking-git-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/tracking-git-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/tracking-git-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/tracking-git-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/tracking-git-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/tracking-git-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/tracking-git-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/tracking-git-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/tracking-git-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/tracking-git-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/tracking-git-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/tracking-git-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/tracking-git-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/tracking-git-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/tracking-git-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/tracking-git-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/tracking-git-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/tracking-git-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/tracking-git-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/tracking-git-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/tracking-git-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/tracking-git-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/tracking-git-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/tracking-git-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/tracking-git-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/tracking-git-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/tracking-git-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/tracking-git-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/tracking-git-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/tracking-git-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/tracking-git-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/tracking-git-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/tracking-git-plugin/deployments", + "created_at": "2013-12-17T23:03:10Z", + "updated_at": "2014-02-18T21:49:00Z", + "pushed_at": "2019-10-08T12:18:09Z", + "git_url": "git://github.com/jenkinsci/tracking-git-plugin.git", + "ssh_url": "git@github.com:jenkinsci/tracking-git-plugin.git", + "clone_url": "https://github.com/jenkinsci/tracking-git-plugin.git", + "svn_url": "https://github.com/jenkinsci/tracking-git-plugin", + "homepage": null, + "size": 153, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 3, + "open_issues": 2, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 15433962, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTQzMzk2Mg==", + "name": "ci-skip-plugin", + "full_name": "jenkinsci/ci-skip-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/ci-skip-plugin", + "description": "Skip making a build through commit message", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/ci-skip-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/ci-skip-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/ci-skip-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/ci-skip-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/ci-skip-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/ci-skip-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/ci-skip-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/ci-skip-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/ci-skip-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/ci-skip-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/ci-skip-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/ci-skip-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/ci-skip-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/ci-skip-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/ci-skip-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/ci-skip-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/ci-skip-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/ci-skip-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/ci-skip-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/ci-skip-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/ci-skip-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/ci-skip-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/ci-skip-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/ci-skip-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/ci-skip-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/ci-skip-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/ci-skip-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/ci-skip-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/ci-skip-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/ci-skip-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/ci-skip-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/ci-skip-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/ci-skip-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/ci-skip-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/ci-skip-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/ci-skip-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/ci-skip-plugin/deployments", + "created_at": "2013-12-25T11:05:51Z", + "updated_at": "2019-09-09T19:38:09Z", + "pushed_at": "2019-03-17T13:34:46Z", + "git_url": "git://github.com/jenkinsci/ci-skip-plugin.git", + "ssh_url": "git@github.com:jenkinsci/ci-skip-plugin.git", + "clone_url": "https://github.com/jenkinsci/ci-skip-plugin.git", + "svn_url": "https://github.com/jenkinsci/ci-skip-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Ci+Skip+Plugin", + "size": 60, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Ruby", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 4, + "open_issues": 2, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 15587851, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTU4Nzg1MQ==", + "name": "gatekeeper-plugin", + "full_name": "jenkinsci/gatekeeper-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/gatekeeper-plugin", + "description": "A Jenkins plugin that performs Gatekeepering by merging 'feature' branches with 'release' branches.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/gatekeeper-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/gatekeeper-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/gatekeeper-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/gatekeeper-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/gatekeeper-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/gatekeeper-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/gatekeeper-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/gatekeeper-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/gatekeeper-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/gatekeeper-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/gatekeeper-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/gatekeeper-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/gatekeeper-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/gatekeeper-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/gatekeeper-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/gatekeeper-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/gatekeeper-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/gatekeeper-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/gatekeeper-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/gatekeeper-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/gatekeeper-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/gatekeeper-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/gatekeeper-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/gatekeeper-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/gatekeeper-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/gatekeeper-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/gatekeeper-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/gatekeeper-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/gatekeeper-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/gatekeeper-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/gatekeeper-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/gatekeeper-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/gatekeeper-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/gatekeeper-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/gatekeeper-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/gatekeeper-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/gatekeeper-plugin/deployments", + "created_at": "2014-01-02T16:11:44Z", + "updated_at": "2015-08-20T20:33:37Z", + "pushed_at": "2015-08-20T21:05:25Z", + "git_url": "git://github.com/jenkinsci/gatekeeper-plugin.git", + "ssh_url": "git@github.com:jenkinsci/gatekeeper-plugin.git", + "clone_url": "https://github.com/jenkinsci/gatekeeper-plugin.git", + "svn_url": "https://github.com/jenkinsci/gatekeeper-plugin", + "homepage": "", + "size": 690, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 2, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 15620952, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTYyMDk1Mg==", + "name": "windows-slaves-plugin", + "full_name": "jenkinsci/windows-slaves-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/windows-slaves-plugin", + "description": "Launches Windows Agents using DCOM and WMI", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/windows-slaves-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/windows-slaves-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/windows-slaves-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/windows-slaves-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/windows-slaves-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/windows-slaves-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/windows-slaves-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/windows-slaves-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/windows-slaves-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/windows-slaves-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/windows-slaves-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/windows-slaves-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/windows-slaves-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/windows-slaves-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/windows-slaves-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/windows-slaves-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/windows-slaves-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/windows-slaves-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/windows-slaves-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/windows-slaves-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/windows-slaves-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/windows-slaves-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/windows-slaves-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/windows-slaves-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/windows-slaves-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/windows-slaves-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/windows-slaves-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/windows-slaves-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/windows-slaves-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/windows-slaves-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/windows-slaves-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/windows-slaves-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/windows-slaves-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/windows-slaves-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/windows-slaves-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/windows-slaves-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/windows-slaves-plugin/deployments", + "created_at": "2014-01-03T22:11:42Z", + "updated_at": "2019-10-09T10:09:59Z", + "pushed_at": "2019-10-07T08:17:27Z", + "git_url": "git://github.com/jenkinsci/windows-slaves-plugin.git", + "ssh_url": "git@github.com:jenkinsci/windows-slaves-plugin.git", + "clone_url": "https://github.com/jenkinsci/windows-slaves-plugin.git", + "svn_url": "https://github.com/jenkinsci/windows-slaves-plugin", + "homepage": "https://plugins.jenkins.io/windows-slaves", + "size": 151, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 25, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 25, + "open_issues": 2, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 15630175, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTYzMDE3NQ==", + "name": "crx-content-package-deployer-plugin", + "full_name": "jenkinsci/crx-content-package-deployer-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/crx-content-package-deployer-plugin", + "description": "Provides Jenkins integration with Adobe Granite ", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/crx-content-package-deployer-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/crx-content-package-deployer-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/crx-content-package-deployer-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/crx-content-package-deployer-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/crx-content-package-deployer-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/crx-content-package-deployer-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/crx-content-package-deployer-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/crx-content-package-deployer-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/crx-content-package-deployer-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/crx-content-package-deployer-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/crx-content-package-deployer-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/crx-content-package-deployer-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/crx-content-package-deployer-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/crx-content-package-deployer-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/crx-content-package-deployer-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/crx-content-package-deployer-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/crx-content-package-deployer-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/crx-content-package-deployer-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/crx-content-package-deployer-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/crx-content-package-deployer-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/crx-content-package-deployer-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/crx-content-package-deployer-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/crx-content-package-deployer-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/crx-content-package-deployer-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/crx-content-package-deployer-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/crx-content-package-deployer-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/crx-content-package-deployer-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/crx-content-package-deployer-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/crx-content-package-deployer-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/crx-content-package-deployer-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/crx-content-package-deployer-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/crx-content-package-deployer-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/crx-content-package-deployer-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/crx-content-package-deployer-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/crx-content-package-deployer-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/crx-content-package-deployer-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/crx-content-package-deployer-plugin/deployments", + "created_at": "2014-01-04T10:14:48Z", + "updated_at": "2019-10-08T16:45:32Z", + "pushed_at": "2019-10-08T16:45:30Z", + "git_url": "git://github.com/jenkinsci/crx-content-package-deployer-plugin.git", + "ssh_url": "git@github.com:jenkinsci/crx-content-package-deployer-plugin.git", + "clone_url": "https://github.com/jenkinsci/crx-content-package-deployer-plugin.git", + "svn_url": "https://github.com/jenkinsci/crx-content-package-deployer-plugin", + "homepage": null, + "size": 1447, + "stargazers_count": 9, + "watchers_count": 9, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 14, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "unlicense", + "name": "The Unlicense", + "spdx_id": "Unlicense", + "url": "https://api.github.com/licenses/unlicense", + "node_id": "MDc6TGljZW5zZTE1" + }, + "forks": 14, + "open_issues": 0, + "watchers": 9, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 15630200, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTYzMDIwMA==", + "name": "internet-meme-plugin", + "full_name": "jenkinsci/internet-meme-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/internet-meme-plugin", + "description": "Jenkins Internet Meme Plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/internet-meme-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/internet-meme-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/internet-meme-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/internet-meme-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/internet-meme-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/internet-meme-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/internet-meme-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/internet-meme-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/internet-meme-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/internet-meme-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/internet-meme-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/internet-meme-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/internet-meme-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/internet-meme-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/internet-meme-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/internet-meme-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/internet-meme-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/internet-meme-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/internet-meme-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/internet-meme-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/internet-meme-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/internet-meme-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/internet-meme-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/internet-meme-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/internet-meme-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/internet-meme-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/internet-meme-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/internet-meme-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/internet-meme-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/internet-meme-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/internet-meme-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/internet-meme-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/internet-meme-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/internet-meme-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/internet-meme-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/internet-meme-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/internet-meme-plugin/deployments", + "created_at": "2014-01-04T10:17:17Z", + "updated_at": "2014-01-09T14:13:45Z", + "pushed_at": "2019-10-08T16:26:22Z", + "git_url": "git://github.com/jenkinsci/internet-meme-plugin.git", + "ssh_url": "git@github.com:jenkinsci/internet-meme-plugin.git", + "clone_url": "https://github.com/jenkinsci/internet-meme-plugin.git", + "svn_url": "https://github.com/jenkinsci/internet-meme-plugin", + "homepage": null, + "size": 2471, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 3, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 15649324, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTY0OTMyNA==", + "name": "oauth-credentials", + "full_name": "jenkinsci/oauth-credentials", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/oauth-credentials", + "description": "Jenkins plugin library for interfaces related to OAuth credentials", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/oauth-credentials", + "forks_url": "https://api.github.com/repos/jenkinsci/oauth-credentials/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/oauth-credentials/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/oauth-credentials/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/oauth-credentials/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/oauth-credentials/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/oauth-credentials/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/oauth-credentials/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/oauth-credentials/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/oauth-credentials/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/oauth-credentials/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/oauth-credentials/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/oauth-credentials/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/oauth-credentials/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/oauth-credentials/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/oauth-credentials/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/oauth-credentials/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/oauth-credentials/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/oauth-credentials/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/oauth-credentials/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/oauth-credentials/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/oauth-credentials/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/oauth-credentials/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/oauth-credentials/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/oauth-credentials/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/oauth-credentials/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/oauth-credentials/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/oauth-credentials/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/oauth-credentials/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/oauth-credentials/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/oauth-credentials/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/oauth-credentials/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/oauth-credentials/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/oauth-credentials/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/oauth-credentials/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/oauth-credentials/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/oauth-credentials/deployments", + "created_at": "2014-01-05T10:38:10Z", + "updated_at": "2017-05-23T11:43:41Z", + "pushed_at": "2019-10-04T13:05:21Z", + "git_url": "git://github.com/jenkinsci/oauth-credentials.git", + "ssh_url": "git@github.com:jenkinsci/oauth-credentials.git", + "clone_url": "https://github.com/jenkinsci/oauth-credentials.git", + "svn_url": "https://github.com/jenkinsci/oauth-credentials", + "homepage": null, + "size": 212, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 7, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 7, + "open_issues": 2, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 15659579, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTY1OTU3OQ==", + "name": "implied-labels-plugin", + "full_name": "jenkinsci/implied-labels-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/implied-labels-plugin", + "description": "Infer redundant labels automatically based on user declaration", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/implied-labels-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/implied-labels-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/implied-labels-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/implied-labels-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/implied-labels-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/implied-labels-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/implied-labels-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/implied-labels-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/implied-labels-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/implied-labels-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/implied-labels-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/implied-labels-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/implied-labels-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/implied-labels-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/implied-labels-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/implied-labels-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/implied-labels-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/implied-labels-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/implied-labels-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/implied-labels-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/implied-labels-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/implied-labels-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/implied-labels-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/implied-labels-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/implied-labels-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/implied-labels-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/implied-labels-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/implied-labels-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/implied-labels-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/implied-labels-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/implied-labels-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/implied-labels-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/implied-labels-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/implied-labels-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/implied-labels-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/implied-labels-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/implied-labels-plugin/deployments", + "created_at": "2014-01-05T22:03:39Z", + "updated_at": "2018-05-29T12:23:13Z", + "pushed_at": "2018-05-29T12:23:11Z", + "git_url": "git://github.com/jenkinsci/implied-labels-plugin.git", + "ssh_url": "git@github.com:jenkinsci/implied-labels-plugin.git", + "clone_url": "https://github.com/jenkinsci/implied-labels-plugin.git", + "svn_url": "https://github.com/jenkinsci/implied-labels-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Implied+Labels+Plugin", + "size": 40, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 15711426, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTcxMTQyNg==", + "name": "xlrelease-plugin", + "full_name": "jenkinsci/xlrelease-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/xlrelease-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/xlrelease-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/xlrelease-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/xlrelease-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/xlrelease-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/xlrelease-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/xlrelease-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/xlrelease-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/xlrelease-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/xlrelease-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/xlrelease-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/xlrelease-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/xlrelease-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/xlrelease-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/xlrelease-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/xlrelease-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/xlrelease-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/xlrelease-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/xlrelease-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/xlrelease-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/xlrelease-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/xlrelease-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/xlrelease-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/xlrelease-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/xlrelease-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/xlrelease-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/xlrelease-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/xlrelease-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/xlrelease-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/xlrelease-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/xlrelease-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/xlrelease-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/xlrelease-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/xlrelease-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/xlrelease-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/xlrelease-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/xlrelease-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/xlrelease-plugin/deployments", + "created_at": "2014-01-07T17:32:00Z", + "updated_at": "2019-09-11T14:54:40Z", + "pushed_at": "2019-09-11T14:56:06Z", + "git_url": "git://github.com/jenkinsci/xlrelease-plugin.git", + "ssh_url": "git@github.com:jenkinsci/xlrelease-plugin.git", + "clone_url": "https://github.com/jenkinsci/xlrelease-plugin.git", + "svn_url": "https://github.com/jenkinsci/xlrelease-plugin", + "homepage": null, + "size": 376, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 13, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 13, + "open_issues": 3, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 15718371, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTcxODM3MQ==", + "name": "mypeople-plugin", + "full_name": "jenkinsci/mypeople-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/mypeople-plugin", + "description": "Send build result of Jenkins to Daum My People Messenger", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/mypeople-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/mypeople-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/mypeople-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/mypeople-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/mypeople-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/mypeople-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/mypeople-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/mypeople-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/mypeople-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/mypeople-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/mypeople-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/mypeople-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/mypeople-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/mypeople-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/mypeople-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/mypeople-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/mypeople-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/mypeople-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/mypeople-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/mypeople-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/mypeople-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/mypeople-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/mypeople-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/mypeople-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/mypeople-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/mypeople-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/mypeople-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/mypeople-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/mypeople-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/mypeople-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/mypeople-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/mypeople-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/mypeople-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/mypeople-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/mypeople-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/mypeople-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/mypeople-plugin/deployments", + "created_at": "2014-01-07T22:19:30Z", + "updated_at": "2014-02-10T07:45:39Z", + "pushed_at": "2014-02-10T07:45:39Z", + "git_url": "git://github.com/jenkinsci/mypeople-plugin.git", + "ssh_url": "git@github.com:jenkinsci/mypeople-plugin.git", + "clone_url": "https://github.com/jenkinsci/mypeople-plugin.git", + "svn_url": "https://github.com/jenkinsci/mypeople-plugin", + "homepage": "", + "size": 382, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 15799524, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTc5OTUyNA==", + "name": "docker-plugin", + "full_name": "jenkinsci/docker-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/docker-plugin", + "description": "Jenkins Cloud Plugin for Docker", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/docker-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/docker-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/docker-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/docker-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/docker-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/docker-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/docker-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/docker-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/docker-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/docker-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/docker-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/docker-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/docker-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/docker-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/docker-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/docker-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/docker-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/docker-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/docker-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/docker-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/docker-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/docker-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/docker-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/docker-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/docker-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/docker-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/docker-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/docker-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/docker-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/docker-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/docker-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/docker-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/docker-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/docker-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/docker-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/docker-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/docker-plugin/deployments", + "created_at": "2014-01-10T14:05:42Z", + "updated_at": "2019-10-22T21:25:38Z", + "pushed_at": "2019-10-24T11:11:56Z", + "git_url": "git://github.com/jenkinsci/docker-plugin.git", + "ssh_url": "git@github.com:jenkinsci/docker-plugin.git", + "clone_url": "https://github.com/jenkinsci/docker-plugin.git", + "svn_url": "https://github.com/jenkinsci/docker-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Docker+Plugin", + "size": 1830, + "stargazers_count": 411, + "watchers_count": 411, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 278, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 61, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 278, + "open_issues": 61, + "watchers": 411, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 15823517, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTgyMzUxNw==", + "name": "selected-tests-executor-plugin", + "full_name": "jenkinsci/selected-tests-executor-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/selected-tests-executor-plugin", + "description": " This plugin allows you to choose specific tests you want to run.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/selected-tests-executor-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/selected-tests-executor-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/selected-tests-executor-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/selected-tests-executor-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/selected-tests-executor-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/selected-tests-executor-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/selected-tests-executor-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/selected-tests-executor-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/selected-tests-executor-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/selected-tests-executor-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/selected-tests-executor-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/selected-tests-executor-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/selected-tests-executor-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/selected-tests-executor-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/selected-tests-executor-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/selected-tests-executor-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/selected-tests-executor-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/selected-tests-executor-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/selected-tests-executor-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/selected-tests-executor-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/selected-tests-executor-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/selected-tests-executor-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/selected-tests-executor-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/selected-tests-executor-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/selected-tests-executor-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/selected-tests-executor-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/selected-tests-executor-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/selected-tests-executor-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/selected-tests-executor-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/selected-tests-executor-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/selected-tests-executor-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/selected-tests-executor-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/selected-tests-executor-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/selected-tests-executor-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/selected-tests-executor-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/selected-tests-executor-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/selected-tests-executor-plugin/deployments", + "created_at": "2014-01-11T14:10:37Z", + "updated_at": "2019-10-08T14:02:16Z", + "pushed_at": "2019-10-08T14:02:14Z", + "git_url": "git://github.com/jenkinsci/selected-tests-executor-plugin.git", + "ssh_url": "git@github.com:jenkinsci/selected-tests-executor-plugin.git", + "clone_url": "https://github.com/jenkinsci/selected-tests-executor-plugin.git", + "svn_url": "https://github.com/jenkinsci/selected-tests-executor-plugin", + "homepage": null, + "size": 84, + "stargazers_count": 3, + "watchers_count": 3, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 7, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 7, + "open_issues": 0, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 15847057, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTg0NzA1Nw==", + "name": "mailmap-resolver-plugin", + "full_name": "jenkinsci/mailmap-resolver-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/mailmap-resolver-plugin", + "description": "Jenkins MailAddressResolver implementation which allows username to email mapping", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/mailmap-resolver-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/mailmap-resolver-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/mailmap-resolver-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/mailmap-resolver-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/mailmap-resolver-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/mailmap-resolver-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/mailmap-resolver-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/mailmap-resolver-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/mailmap-resolver-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/mailmap-resolver-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/mailmap-resolver-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/mailmap-resolver-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/mailmap-resolver-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/mailmap-resolver-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/mailmap-resolver-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/mailmap-resolver-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/mailmap-resolver-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/mailmap-resolver-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/mailmap-resolver-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/mailmap-resolver-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/mailmap-resolver-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/mailmap-resolver-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/mailmap-resolver-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/mailmap-resolver-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/mailmap-resolver-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/mailmap-resolver-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/mailmap-resolver-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/mailmap-resolver-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/mailmap-resolver-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/mailmap-resolver-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/mailmap-resolver-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/mailmap-resolver-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/mailmap-resolver-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/mailmap-resolver-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/mailmap-resolver-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/mailmap-resolver-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/mailmap-resolver-plugin/deployments", + "created_at": "2014-01-12T17:38:19Z", + "updated_at": "2016-07-10T19:46:58Z", + "pushed_at": "2019-10-08T16:37:50Z", + "git_url": "git://github.com/jenkinsci/mailmap-resolver-plugin.git", + "ssh_url": "git@github.com:jenkinsci/mailmap-resolver-plugin.git", + "clone_url": "https://github.com/jenkinsci/mailmap-resolver-plugin.git", + "svn_url": "https://github.com/jenkinsci/mailmap-resolver-plugin", + "homepage": null, + "size": 147, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 5, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 15975884, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTk3NTg4NA==", + "name": "run-condition-extras-plugin", + "full_name": "jenkinsci/run-condition-extras-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/run-condition-extras-plugin", + "description": "Provides extra run conditions and integrations for Jenkins Run Conditions Plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/run-condition-extras-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/run-condition-extras-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/run-condition-extras-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/run-condition-extras-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/run-condition-extras-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/run-condition-extras-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/run-condition-extras-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/run-condition-extras-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/run-condition-extras-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/run-condition-extras-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/run-condition-extras-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/run-condition-extras-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/run-condition-extras-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/run-condition-extras-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/run-condition-extras-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/run-condition-extras-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/run-condition-extras-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/run-condition-extras-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/run-condition-extras-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/run-condition-extras-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/run-condition-extras-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/run-condition-extras-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/run-condition-extras-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/run-condition-extras-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/run-condition-extras-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/run-condition-extras-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/run-condition-extras-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/run-condition-extras-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/run-condition-extras-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/run-condition-extras-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/run-condition-extras-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/run-condition-extras-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/run-condition-extras-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/run-condition-extras-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/run-condition-extras-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/run-condition-extras-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/run-condition-extras-plugin/deployments", + "created_at": "2014-01-16T17:51:55Z", + "updated_at": "2018-02-27T07:56:31Z", + "pushed_at": "2018-02-27T07:59:24Z", + "git_url": "git://github.com/jenkinsci/run-condition-extras-plugin.git", + "ssh_url": "git@github.com:jenkinsci/run-condition-extras-plugin.git", + "clone_url": "https://github.com/jenkinsci/run-condition-extras-plugin.git", + "svn_url": "https://github.com/jenkinsci/run-condition-extras-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Run+Condition+Extras+Plugin", + "size": 39, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 16003339, + "node_id": "MDEwOlJlcG9zaXRvcnkxNjAwMzMzOQ==", + "name": "chef-plugin", + "full_name": "jenkinsci/chef-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/chef-plugin", + "description": "This is jenkins plugin to run chef-client on remote host", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/chef-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/chef-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/chef-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/chef-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/chef-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/chef-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/chef-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/chef-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/chef-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/chef-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/chef-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/chef-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/chef-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/chef-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/chef-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/chef-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/chef-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/chef-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/chef-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/chef-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/chef-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/chef-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/chef-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/chef-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/chef-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/chef-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/chef-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/chef-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/chef-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/chef-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/chef-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/chef-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/chef-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/chef-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/chef-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/chef-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/chef-plugin/deployments", + "created_at": "2014-01-17T15:34:11Z", + "updated_at": "2016-03-14T16:27:28Z", + "pushed_at": "2015-08-29T20:15:21Z", + "git_url": "git://github.com/jenkinsci/chef-plugin.git", + "ssh_url": "git@github.com:jenkinsci/chef-plugin.git", + "clone_url": "https://github.com/jenkinsci/chef-plugin.git", + "svn_url": "https://github.com/jenkinsci/chef-plugin", + "homepage": "", + "size": 1188, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Ruby", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 16003419, + "node_id": "MDEwOlJlcG9zaXRvcnkxNjAwMzQxOQ==", + "name": "capitomcat-plugin", + "full_name": "jenkinsci/capitomcat-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/capitomcat-plugin", + "description": "Jenkins plugin for Capitomcat", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/capitomcat-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/capitomcat-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/capitomcat-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/capitomcat-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/capitomcat-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/capitomcat-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/capitomcat-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/capitomcat-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/capitomcat-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/capitomcat-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/capitomcat-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/capitomcat-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/capitomcat-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/capitomcat-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/capitomcat-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/capitomcat-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/capitomcat-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/capitomcat-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/capitomcat-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/capitomcat-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/capitomcat-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/capitomcat-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/capitomcat-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/capitomcat-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/capitomcat-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/capitomcat-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/capitomcat-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/capitomcat-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/capitomcat-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/capitomcat-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/capitomcat-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/capitomcat-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/capitomcat-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/capitomcat-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/capitomcat-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/capitomcat-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/capitomcat-plugin/deployments", + "created_at": "2014-01-17T15:36:37Z", + "updated_at": "2017-08-29T14:28:48Z", + "pushed_at": "2015-02-14T07:19:59Z", + "git_url": "git://github.com/jenkinsci/capitomcat-plugin.git", + "ssh_url": "git@github.com:jenkinsci/capitomcat-plugin.git", + "clone_url": "https://github.com/jenkinsci/capitomcat-plugin.git", + "svn_url": "https://github.com/jenkinsci/capitomcat-plugin", + "homepage": null, + "size": 345, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Ruby", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 16341730, + "node_id": "MDEwOlJlcG9zaXRvcnkxNjM0MTczMA==", + "name": "item-forwarder-plugin", + "full_name": "jenkinsci/item-forwarder-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/item-forwarder-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/item-forwarder-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/item-forwarder-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/item-forwarder-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/item-forwarder-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/item-forwarder-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/item-forwarder-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/item-forwarder-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/item-forwarder-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/item-forwarder-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/item-forwarder-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/item-forwarder-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/item-forwarder-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/item-forwarder-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/item-forwarder-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/item-forwarder-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/item-forwarder-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/item-forwarder-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/item-forwarder-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/item-forwarder-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/item-forwarder-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/item-forwarder-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/item-forwarder-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/item-forwarder-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/item-forwarder-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/item-forwarder-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/item-forwarder-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/item-forwarder-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/item-forwarder-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/item-forwarder-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/item-forwarder-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/item-forwarder-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/item-forwarder-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/item-forwarder-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/item-forwarder-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/item-forwarder-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/item-forwarder-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/item-forwarder-plugin/deployments", + "created_at": "2014-01-29T10:35:39Z", + "updated_at": "2018-01-02T17:22:39Z", + "pushed_at": "2014-01-28T11:30:42Z", + "git_url": "git://github.com/jenkinsci/item-forwarder-plugin.git", + "ssh_url": "git@github.com:jenkinsci/item-forwarder-plugin.git", + "clone_url": "https://github.com/jenkinsci/item-forwarder-plugin.git", + "svn_url": "https://github.com/jenkinsci/item-forwarder-plugin", + "homepage": null, + "size": 77, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 16341763, + "node_id": "MDEwOlJlcG9zaXRvcnkxNjM0MTc2Mw==", + "name": "deveo-plugin", + "full_name": "jenkinsci/deveo-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/deveo-plugin", + "description": "Create build events to Deveo from Jenkins builds.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/deveo-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/deveo-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/deveo-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/deveo-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/deveo-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/deveo-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/deveo-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/deveo-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/deveo-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/deveo-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/deveo-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/deveo-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/deveo-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/deveo-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/deveo-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/deveo-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/deveo-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/deveo-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/deveo-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/deveo-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/deveo-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/deveo-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/deveo-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/deveo-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/deveo-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/deveo-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/deveo-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/deveo-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/deveo-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/deveo-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/deveo-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/deveo-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/deveo-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/deveo-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/deveo-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/deveo-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/deveo-plugin/deployments", + "created_at": "2014-01-29T10:37:20Z", + "updated_at": "2017-06-19T22:21:59Z", + "pushed_at": "2017-10-02T12:07:09Z", + "git_url": "git://github.com/jenkinsci/deveo-plugin.git", + "ssh_url": "git@github.com:jenkinsci/deveo-plugin.git", + "clone_url": "https://github.com/jenkinsci/deveo-plugin.git", + "svn_url": "https://github.com/jenkinsci/deveo-plugin", + "homepage": null, + "size": 98, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 4, + "open_issues": 2, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 16412332, + "node_id": "MDEwOlJlcG9zaXRvcnkxNjQxMjMzMg==", + "name": "master-to-master-api-plugin", + "full_name": "jenkinsci/master-to-master-api-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/master-to-master-api-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/master-to-master-api-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/master-to-master-api-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/master-to-master-api-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/master-to-master-api-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/master-to-master-api-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/master-to-master-api-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/master-to-master-api-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/master-to-master-api-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/master-to-master-api-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/master-to-master-api-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/master-to-master-api-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/master-to-master-api-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/master-to-master-api-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/master-to-master-api-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/master-to-master-api-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/master-to-master-api-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/master-to-master-api-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/master-to-master-api-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/master-to-master-api-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/master-to-master-api-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/master-to-master-api-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/master-to-master-api-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/master-to-master-api-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/master-to-master-api-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/master-to-master-api-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/master-to-master-api-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/master-to-master-api-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/master-to-master-api-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/master-to-master-api-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/master-to-master-api-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/master-to-master-api-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/master-to-master-api-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/master-to-master-api-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/master-to-master-api-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/master-to-master-api-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/master-to-master-api-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/master-to-master-api-plugin/deployments", + "created_at": "2014-01-31T15:48:15Z", + "updated_at": "2018-02-10T20:32:29Z", + "pushed_at": "2014-05-02T14:13:49Z", + "git_url": "git://github.com/jenkinsci/master-to-master-api-plugin.git", + "ssh_url": "git@github.com:jenkinsci/master-to-master-api-plugin.git", + "clone_url": "https://github.com/jenkinsci/master-to-master-api-plugin.git", + "svn_url": "https://github.com/jenkinsci/master-to-master-api-plugin", + "homepage": "", + "size": 204, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/__files/organizations_107424_repos-45dd04d4-645f-47f2-8412-52e08b3c2e50.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/__files/organizations_107424_repos-45dd04d4-645f-47f2-8412-52e08b3c2e50.json new file mode 100644 index 0000000000..5598a5c5f7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/__files/organizations_107424_repos-45dd04d4-645f-47f2-8412-52e08b3c2e50.json @@ -0,0 +1,10316 @@ +[ + { + "id": 30152279, + "node_id": "MDEwOlJlcG9zaXRvcnkzMDE1MjI3OQ==", + "name": "testfairy-plugin", + "full_name": "jenkinsci/testfairy-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/testfairy-plugin", + "description": "TestFairy Uploader for Jenkins", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/testfairy-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/testfairy-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/testfairy-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/testfairy-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/testfairy-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/testfairy-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/testfairy-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/testfairy-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/testfairy-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/testfairy-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/testfairy-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/testfairy-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/testfairy-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/testfairy-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/testfairy-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/testfairy-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/testfairy-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/testfairy-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/testfairy-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/testfairy-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/testfairy-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/testfairy-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/testfairy-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/testfairy-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/testfairy-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/testfairy-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/testfairy-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/testfairy-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/testfairy-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/testfairy-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/testfairy-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/testfairy-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/testfairy-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/testfairy-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/testfairy-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/testfairy-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/testfairy-plugin/deployments", + "created_at": "2015-02-01T16:47:16Z", + "updated_at": "2019-05-28T15:19:17Z", + "pushed_at": "2019-10-08T16:32:12Z", + "git_url": "git://github.com/jenkinsci/testfairy-plugin.git", + "ssh_url": "git@github.com:jenkinsci/testfairy-plugin.git", + "clone_url": "https://github.com/jenkinsci/testfairy-plugin.git", + "svn_url": "https://github.com/jenkinsci/testfairy-plugin", + "homepage": null, + "size": 186, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 3, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 30266842, + "node_id": "MDEwOlJlcG9zaXRvcnkzMDI2Njg0Mg==", + "name": "jaxen", + "full_name": "jenkinsci/jaxen", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jaxen", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jaxen", + "forks_url": "https://api.github.com/repos/jenkinsci/jaxen/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jaxen/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jaxen/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jaxen/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jaxen/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jaxen/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jaxen/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jaxen/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jaxen/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jaxen/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jaxen/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jaxen/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jaxen/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jaxen/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jaxen/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jaxen/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jaxen/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jaxen/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jaxen/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jaxen/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jaxen/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jaxen/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jaxen/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jaxen/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jaxen/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jaxen/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jaxen/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jaxen/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jaxen/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jaxen/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jaxen/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jaxen/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jaxen/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jaxen/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jaxen/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jaxen/deployments", + "created_at": "2015-02-03T21:59:32Z", + "updated_at": "2019-03-08T09:08:37Z", + "pushed_at": "2015-02-03T22:00:43Z", + "git_url": "git://github.com/jenkinsci/jaxen.git", + "ssh_url": "git@github.com:jenkinsci/jaxen.git", + "clone_url": "https://github.com/jenkinsci/jaxen.git", + "svn_url": "https://github.com/jenkinsci/jaxen", + "homepage": null, + "size": 7740, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": true, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 30350538, + "node_id": "MDEwOlJlcG9zaXRvcnkzMDM1MDUzOA==", + "name": "ontrack-plugin", + "full_name": "jenkinsci/ontrack-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/ontrack-plugin", + "description": "ontrack plug-in for Jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/ontrack-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/ontrack-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/ontrack-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/ontrack-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/ontrack-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/ontrack-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/ontrack-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/ontrack-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/ontrack-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/ontrack-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/ontrack-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/ontrack-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/ontrack-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/ontrack-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/ontrack-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/ontrack-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/ontrack-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/ontrack-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/ontrack-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/ontrack-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/ontrack-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/ontrack-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/ontrack-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/ontrack-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/ontrack-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/ontrack-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/ontrack-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/ontrack-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/ontrack-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/ontrack-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/ontrack-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/ontrack-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/ontrack-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/ontrack-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/ontrack-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/ontrack-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/ontrack-plugin/deployments", + "created_at": "2015-02-05T10:41:50Z", + "updated_at": "2019-08-20T17:15:08Z", + "pushed_at": "2019-08-20T17:15:07Z", + "git_url": "git://github.com/jenkinsci/ontrack-plugin.git", + "ssh_url": "git@github.com:jenkinsci/ontrack-plugin.git", + "clone_url": "https://github.com/jenkinsci/ontrack-plugin.git", + "svn_url": "https://github.com/jenkinsci/ontrack-plugin", + "homepage": null, + "size": 561, + "stargazers_count": 7, + "watchers_count": 7, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 4, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 4, + "open_issues": 4, + "watchers": 7, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 30350728, + "node_id": "MDEwOlJlcG9zaXRvcnkzMDM1MDcyOA==", + "name": "jmeter-performance-runner-plugin", + "full_name": "jenkinsci/jmeter-performance-runner-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jmeter-performance-runner-plugin", + "description": "Performance Testing Runner based on open source Jenkins", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/jmeter-performance-runner-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/jmeter-performance-runner-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jmeter-performance-runner-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jmeter-performance-runner-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jmeter-performance-runner-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jmeter-performance-runner-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jmeter-performance-runner-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jmeter-performance-runner-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jmeter-performance-runner-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jmeter-performance-runner-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jmeter-performance-runner-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jmeter-performance-runner-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jmeter-performance-runner-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jmeter-performance-runner-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jmeter-performance-runner-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jmeter-performance-runner-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jmeter-performance-runner-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jmeter-performance-runner-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jmeter-performance-runner-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jmeter-performance-runner-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jmeter-performance-runner-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jmeter-performance-runner-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jmeter-performance-runner-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jmeter-performance-runner-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jmeter-performance-runner-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jmeter-performance-runner-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jmeter-performance-runner-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jmeter-performance-runner-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jmeter-performance-runner-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jmeter-performance-runner-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jmeter-performance-runner-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jmeter-performance-runner-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jmeter-performance-runner-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jmeter-performance-runner-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jmeter-performance-runner-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jmeter-performance-runner-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jmeter-performance-runner-plugin/deployments", + "created_at": "2015-02-05T10:46:51Z", + "updated_at": "2015-02-05T10:47:04Z", + "pushed_at": "2015-01-16T08:16:39Z", + "git_url": "git://github.com/jenkinsci/jmeter-performance-runner-plugin.git", + "ssh_url": "git@github.com:jenkinsci/jmeter-performance-runner-plugin.git", + "clone_url": "https://github.com/jenkinsci/jmeter-performance-runner-plugin.git", + "svn_url": "https://github.com/jenkinsci/jmeter-performance-runner-plugin", + "homepage": "", + "size": 343, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 30350757, + "node_id": "MDEwOlJlcG9zaXRvcnkzMDM1MDc1Nw==", + "name": "jmeter-performance-reporter-plugin", + "full_name": "jenkinsci/jmeter-performance-reporter-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jmeter-performance-reporter-plugin", + "description": "Performance Testing Reporter based on open source Jenkins", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/jmeter-performance-reporter-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/jmeter-performance-reporter-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jmeter-performance-reporter-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jmeter-performance-reporter-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jmeter-performance-reporter-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jmeter-performance-reporter-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jmeter-performance-reporter-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jmeter-performance-reporter-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jmeter-performance-reporter-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jmeter-performance-reporter-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jmeter-performance-reporter-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jmeter-performance-reporter-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jmeter-performance-reporter-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jmeter-performance-reporter-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jmeter-performance-reporter-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jmeter-performance-reporter-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jmeter-performance-reporter-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jmeter-performance-reporter-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jmeter-performance-reporter-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jmeter-performance-reporter-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jmeter-performance-reporter-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jmeter-performance-reporter-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jmeter-performance-reporter-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jmeter-performance-reporter-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jmeter-performance-reporter-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jmeter-performance-reporter-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jmeter-performance-reporter-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jmeter-performance-reporter-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jmeter-performance-reporter-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jmeter-performance-reporter-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jmeter-performance-reporter-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jmeter-performance-reporter-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jmeter-performance-reporter-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jmeter-performance-reporter-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jmeter-performance-reporter-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jmeter-performance-reporter-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jmeter-performance-reporter-plugin/deployments", + "created_at": "2015-02-05T10:47:27Z", + "updated_at": "2017-08-28T15:07:22Z", + "pushed_at": "2015-01-16T08:20:27Z", + "git_url": "git://github.com/jenkinsci/jmeter-performance-reporter-plugin.git", + "ssh_url": "git@github.com:jenkinsci/jmeter-performance-reporter-plugin.git", + "clone_url": "https://github.com/jenkinsci/jmeter-performance-reporter-plugin.git", + "svn_url": "https://github.com/jenkinsci/jmeter-performance-reporter-plugin", + "homepage": "", + "size": 168, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 30764186, + "node_id": "MDEwOlJlcG9zaXRvcnkzMDc2NDE4Ng==", + "name": "openstack-cloud-plugin", + "full_name": "jenkinsci/openstack-cloud-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/openstack-cloud-plugin", + "description": "Provision nodes from OpenStack on demand", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/openstack-cloud-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/openstack-cloud-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/openstack-cloud-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/openstack-cloud-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/openstack-cloud-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/openstack-cloud-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/openstack-cloud-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/openstack-cloud-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/openstack-cloud-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/openstack-cloud-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/openstack-cloud-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/openstack-cloud-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/openstack-cloud-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/openstack-cloud-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/openstack-cloud-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/openstack-cloud-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/openstack-cloud-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/openstack-cloud-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/openstack-cloud-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/openstack-cloud-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/openstack-cloud-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/openstack-cloud-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/openstack-cloud-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/openstack-cloud-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/openstack-cloud-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/openstack-cloud-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/openstack-cloud-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/openstack-cloud-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/openstack-cloud-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/openstack-cloud-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/openstack-cloud-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/openstack-cloud-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/openstack-cloud-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/openstack-cloud-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/openstack-cloud-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/openstack-cloud-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/openstack-cloud-plugin/deployments", + "created_at": "2015-02-13T16:13:29Z", + "updated_at": "2019-10-03T20:50:08Z", + "pushed_at": "2019-10-03T20:50:06Z", + "git_url": "git://github.com/jenkinsci/openstack-cloud-plugin.git", + "ssh_url": "git@github.com:jenkinsci/openstack-cloud-plugin.git", + "clone_url": "https://github.com/jenkinsci/openstack-cloud-plugin.git", + "svn_url": "https://github.com/jenkinsci/openstack-cloud-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Openstack+Cloud+Plugin", + "size": 2101, + "stargazers_count": 37, + "watchers_count": 37, + "language": "Java", + "has_issues": true, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 66, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 53, + "license": null, + "forks": 66, + "open_issues": 53, + "watchers": 37, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 30779440, + "node_id": "MDEwOlJlcG9zaXRvcnkzMDc3OTQ0MA==", + "name": "jgiven-plugin", + "full_name": "jenkinsci/jgiven-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jgiven-plugin", + "description": "Jenkins Plugin for JGiven", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jgiven-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/jgiven-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jgiven-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jgiven-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jgiven-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jgiven-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jgiven-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jgiven-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jgiven-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jgiven-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jgiven-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jgiven-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jgiven-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jgiven-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jgiven-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jgiven-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jgiven-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jgiven-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jgiven-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jgiven-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jgiven-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jgiven-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jgiven-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jgiven-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jgiven-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jgiven-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jgiven-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jgiven-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jgiven-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jgiven-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jgiven-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jgiven-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jgiven-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jgiven-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jgiven-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jgiven-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jgiven-plugin/deployments", + "created_at": "2015-02-13T22:42:55Z", + "updated_at": "2016-12-25T08:24:10Z", + "pushed_at": "2017-05-07T17:38:13Z", + "git_url": "git://github.com/jenkinsci/jgiven-plugin.git", + "ssh_url": "git@github.com:jenkinsci/jgiven-plugin.git", + "clone_url": "https://github.com/jenkinsci/jgiven-plugin.git", + "svn_url": "https://github.com/jenkinsci/jgiven-plugin", + "homepage": "", + "size": 55, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 4, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 30860673, + "node_id": "MDEwOlJlcG9zaXRvcnkzMDg2MDY3Mw==", + "name": "kubernetes-plugin", + "full_name": "jenkinsci/kubernetes-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/kubernetes-plugin", + "description": "Jenkins plugin to run dynamic agents in a Kubernetes/Docker environment", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/kubernetes-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/kubernetes-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/kubernetes-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/kubernetes-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/kubernetes-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/kubernetes-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/kubernetes-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/kubernetes-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/kubernetes-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/kubernetes-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/kubernetes-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/kubernetes-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/kubernetes-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/kubernetes-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/kubernetes-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/kubernetes-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/kubernetes-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/kubernetes-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/kubernetes-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/kubernetes-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/kubernetes-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/kubernetes-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/kubernetes-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/kubernetes-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/kubernetes-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/kubernetes-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/kubernetes-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/kubernetes-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/kubernetes-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/kubernetes-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/kubernetes-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/kubernetes-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/kubernetes-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/kubernetes-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/kubernetes-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/kubernetes-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/kubernetes-plugin/deployments", + "created_at": "2015-02-16T09:02:22Z", + "updated_at": "2019-10-25T10:11:44Z", + "pushed_at": "2019-10-25T12:40:56Z", + "git_url": "git://github.com/jenkinsci/kubernetes-plugin.git", + "ssh_url": "git@github.com:jenkinsci/kubernetes-plugin.git", + "clone_url": "https://github.com/jenkinsci/kubernetes-plugin.git", + "svn_url": "https://github.com/jenkinsci/kubernetes-plugin", + "homepage": "", + "size": 3504, + "stargazers_count": 1306, + "watchers_count": 1306, + "language": "Java", + "has_issues": false, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 761, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 24, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 761, + "open_issues": 24, + "watchers": 1306, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 31567260, + "node_id": "MDEwOlJlcG9zaXRvcnkzMTU2NzI2MA==", + "name": "load-simulator", + "full_name": "jenkinsci/load-simulator", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/load-simulator", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/load-simulator", + "forks_url": "https://api.github.com/repos/jenkinsci/load-simulator/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/load-simulator/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/load-simulator/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/load-simulator/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/load-simulator/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/load-simulator/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/load-simulator/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/load-simulator/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/load-simulator/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/load-simulator/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/load-simulator/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/load-simulator/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/load-simulator/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/load-simulator/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/load-simulator/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/load-simulator/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/load-simulator/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/load-simulator/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/load-simulator/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/load-simulator/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/load-simulator/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/load-simulator/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/load-simulator/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/load-simulator/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/load-simulator/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/load-simulator/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/load-simulator/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/load-simulator/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/load-simulator/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/load-simulator/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/load-simulator/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/load-simulator/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/load-simulator/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/load-simulator/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/load-simulator/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/load-simulator/deployments", + "created_at": "2015-03-02T22:39:03Z", + "updated_at": "2015-03-02T22:39:57Z", + "pushed_at": "2015-02-02T21:09:37Z", + "git_url": "git://github.com/jenkinsci/load-simulator.git", + "ssh_url": "git@github.com:jenkinsci/load-simulator.git", + "clone_url": "https://github.com/jenkinsci/load-simulator.git", + "svn_url": "https://github.com/jenkinsci/load-simulator", + "homepage": null, + "size": 184, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 31789940, + "node_id": "MDEwOlJlcG9zaXRvcnkzMTc4OTk0MA==", + "name": "cli-commander-plugin", + "full_name": "jenkinsci/cli-commander-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/cli-commander-plugin", + "description": "Run CLI commands from Jenkins UI", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/cli-commander-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/cli-commander-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/cli-commander-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/cli-commander-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/cli-commander-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/cli-commander-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/cli-commander-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/cli-commander-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/cli-commander-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/cli-commander-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/cli-commander-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/cli-commander-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/cli-commander-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/cli-commander-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/cli-commander-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/cli-commander-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/cli-commander-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/cli-commander-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/cli-commander-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/cli-commander-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/cli-commander-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/cli-commander-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/cli-commander-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/cli-commander-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/cli-commander-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/cli-commander-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/cli-commander-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/cli-commander-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/cli-commander-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/cli-commander-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/cli-commander-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/cli-commander-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/cli-commander-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/cli-commander-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/cli-commander-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/cli-commander-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/cli-commander-plugin/deployments", + "created_at": "2015-03-06T21:32:18Z", + "updated_at": "2017-08-18T12:52:31Z", + "pushed_at": "2019-10-08T16:41:03Z", + "git_url": "git://github.com/jenkinsci/cli-commander-plugin.git", + "ssh_url": "git@github.com:jenkinsci/cli-commander-plugin.git", + "clone_url": "https://github.com/jenkinsci/cli-commander-plugin.git", + "svn_url": "https://github.com/jenkinsci/cli-commander-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/CLI+Commander+Plugin", + "size": 20, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 3, + "open_issues": 2, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 31899861, + "node_id": "MDEwOlJlcG9zaXRvcnkzMTg5OTg2MQ==", + "name": "secondary-timestamper-plugin", + "full_name": "jenkinsci/secondary-timestamper-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/secondary-timestamper-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/secondary-timestamper-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/secondary-timestamper-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/secondary-timestamper-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/secondary-timestamper-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/secondary-timestamper-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/secondary-timestamper-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/secondary-timestamper-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/secondary-timestamper-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/secondary-timestamper-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/secondary-timestamper-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/secondary-timestamper-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/secondary-timestamper-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/secondary-timestamper-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/secondary-timestamper-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/secondary-timestamper-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/secondary-timestamper-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/secondary-timestamper-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/secondary-timestamper-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/secondary-timestamper-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/secondary-timestamper-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/secondary-timestamper-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/secondary-timestamper-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/secondary-timestamper-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/secondary-timestamper-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/secondary-timestamper-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/secondary-timestamper-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/secondary-timestamper-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/secondary-timestamper-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/secondary-timestamper-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/secondary-timestamper-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/secondary-timestamper-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/secondary-timestamper-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/secondary-timestamper-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/secondary-timestamper-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/secondary-timestamper-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/secondary-timestamper-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/secondary-timestamper-plugin/deployments", + "created_at": "2015-03-09T13:31:37Z", + "updated_at": "2015-04-03T12:44:03Z", + "pushed_at": "2019-10-08T11:50:16Z", + "git_url": "git://github.com/jenkinsci/secondary-timestamper-plugin.git", + "ssh_url": "git@github.com:jenkinsci/secondary-timestamper-plugin.git", + "clone_url": "https://github.com/jenkinsci/secondary-timestamper-plugin.git", + "svn_url": "https://github.com/jenkinsci/secondary-timestamper-plugin", + "homepage": null, + "size": 130, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 1, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 31900187, + "node_id": "MDEwOlJlcG9zaXRvcnkzMTkwMDE4Nw==", + "name": "newrelic-deployment-notifier-plugin", + "full_name": "jenkinsci/newrelic-deployment-notifier-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/newrelic-deployment-notifier-plugin", + "description": "Jenkins plugin to notify New Relic about deployments", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/newrelic-deployment-notifier-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/newrelic-deployment-notifier-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/newrelic-deployment-notifier-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/newrelic-deployment-notifier-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/newrelic-deployment-notifier-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/newrelic-deployment-notifier-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/newrelic-deployment-notifier-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/newrelic-deployment-notifier-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/newrelic-deployment-notifier-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/newrelic-deployment-notifier-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/newrelic-deployment-notifier-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/newrelic-deployment-notifier-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/newrelic-deployment-notifier-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/newrelic-deployment-notifier-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/newrelic-deployment-notifier-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/newrelic-deployment-notifier-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/newrelic-deployment-notifier-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/newrelic-deployment-notifier-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/newrelic-deployment-notifier-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/newrelic-deployment-notifier-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/newrelic-deployment-notifier-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/newrelic-deployment-notifier-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/newrelic-deployment-notifier-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/newrelic-deployment-notifier-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/newrelic-deployment-notifier-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/newrelic-deployment-notifier-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/newrelic-deployment-notifier-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/newrelic-deployment-notifier-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/newrelic-deployment-notifier-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/newrelic-deployment-notifier-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/newrelic-deployment-notifier-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/newrelic-deployment-notifier-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/newrelic-deployment-notifier-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/newrelic-deployment-notifier-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/newrelic-deployment-notifier-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/newrelic-deployment-notifier-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/newrelic-deployment-notifier-plugin/deployments", + "created_at": "2015-03-09T13:38:12Z", + "updated_at": "2019-10-09T10:10:55Z", + "pushed_at": "2019-10-09T10:10:53Z", + "git_url": "git://github.com/jenkinsci/newrelic-deployment-notifier-plugin.git", + "ssh_url": "git@github.com:jenkinsci/newrelic-deployment-notifier-plugin.git", + "clone_url": "https://github.com/jenkinsci/newrelic-deployment-notifier-plugin.git", + "svn_url": "https://github.com/jenkinsci/newrelic-deployment-notifier-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/New+Relic+Deployment+Notifier+Plugin", + "size": 55, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 10, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 10, + "open_issues": 0, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 32319566, + "node_id": "MDEwOlJlcG9zaXRvcnkzMjMxOTU2Ng==", + "name": "testcomplete-xunit-plugin", + "full_name": "jenkinsci/testcomplete-xunit-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/testcomplete-xunit-plugin", + "description": "Jenkins Plugin to transform TestComplete MHT reports into xUnit format", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/testcomplete-xunit-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/testcomplete-xunit-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/testcomplete-xunit-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/testcomplete-xunit-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/testcomplete-xunit-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/testcomplete-xunit-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/testcomplete-xunit-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/testcomplete-xunit-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/testcomplete-xunit-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/testcomplete-xunit-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/testcomplete-xunit-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/testcomplete-xunit-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/testcomplete-xunit-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/testcomplete-xunit-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/testcomplete-xunit-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/testcomplete-xunit-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/testcomplete-xunit-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/testcomplete-xunit-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/testcomplete-xunit-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/testcomplete-xunit-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/testcomplete-xunit-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/testcomplete-xunit-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/testcomplete-xunit-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/testcomplete-xunit-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/testcomplete-xunit-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/testcomplete-xunit-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/testcomplete-xunit-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/testcomplete-xunit-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/testcomplete-xunit-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/testcomplete-xunit-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/testcomplete-xunit-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/testcomplete-xunit-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/testcomplete-xunit-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/testcomplete-xunit-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/testcomplete-xunit-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/testcomplete-xunit-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/testcomplete-xunit-plugin/deployments", + "created_at": "2015-03-16T11:12:04Z", + "updated_at": "2019-10-08T13:58:28Z", + "pushed_at": "2019-10-08T13:58:25Z", + "git_url": "git://github.com/jenkinsci/testcomplete-xunit-plugin.git", + "ssh_url": "git@github.com:jenkinsci/testcomplete-xunit-plugin.git", + "clone_url": "https://github.com/jenkinsci/testcomplete-xunit-plugin.git", + "svn_url": "https://github.com/jenkinsci/testcomplete-xunit-plugin", + "homepage": "http://wiki.jenkins-ci.org/display/JENKINS/TestComplete+xUnit+Plugin", + "size": 1674, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 2, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 32322916, + "node_id": "MDEwOlJlcG9zaXRvcnkzMjMyMjkxNg==", + "name": "aws-lambda-plugin", + "full_name": "jenkinsci/aws-lambda-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/aws-lambda-plugin", + "description": "Jenkins plugin for AWS Lambda deployment", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/aws-lambda-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/aws-lambda-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/aws-lambda-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/aws-lambda-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/aws-lambda-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/aws-lambda-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/aws-lambda-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/aws-lambda-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/aws-lambda-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/aws-lambda-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/aws-lambda-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/aws-lambda-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/aws-lambda-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/aws-lambda-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/aws-lambda-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/aws-lambda-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/aws-lambda-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/aws-lambda-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/aws-lambda-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/aws-lambda-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/aws-lambda-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/aws-lambda-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/aws-lambda-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/aws-lambda-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/aws-lambda-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/aws-lambda-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/aws-lambda-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/aws-lambda-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/aws-lambda-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/aws-lambda-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/aws-lambda-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/aws-lambda-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/aws-lambda-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/aws-lambda-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/aws-lambda-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/aws-lambda-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/aws-lambda-plugin/deployments", + "created_at": "2015-03-16T12:19:21Z", + "updated_at": "2018-12-12T18:50:12Z", + "pushed_at": "2019-04-01T09:47:25Z", + "git_url": "git://github.com/jenkinsci/aws-lambda-plugin.git", + "ssh_url": "git@github.com:jenkinsci/aws-lambda-plugin.git", + "clone_url": "https://github.com/jenkinsci/aws-lambda-plugin.git", + "svn_url": "https://github.com/jenkinsci/aws-lambda-plugin", + "homepage": null, + "size": 1430, + "stargazers_count": 17, + "watchers_count": 17, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 10, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 10, + "open_issues": 2, + "watchers": 17, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 32390086, + "node_id": "MDEwOlJlcG9zaXRvcnkzMjM5MDA4Ng==", + "name": "testcomplete-plugin", + "full_name": "jenkinsci/testcomplete-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/testcomplete-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/testcomplete-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/testcomplete-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/testcomplete-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/testcomplete-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/testcomplete-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/testcomplete-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/testcomplete-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/testcomplete-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/testcomplete-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/testcomplete-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/testcomplete-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/testcomplete-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/testcomplete-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/testcomplete-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/testcomplete-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/testcomplete-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/testcomplete-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/testcomplete-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/testcomplete-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/testcomplete-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/testcomplete-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/testcomplete-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/testcomplete-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/testcomplete-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/testcomplete-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/testcomplete-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/testcomplete-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/testcomplete-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/testcomplete-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/testcomplete-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/testcomplete-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/testcomplete-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/testcomplete-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/testcomplete-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/testcomplete-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/testcomplete-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/testcomplete-plugin/deployments", + "created_at": "2015-03-17T11:44:09Z", + "updated_at": "2019-09-19T08:38:58Z", + "pushed_at": "2019-10-08T12:10:23Z", + "git_url": "git://github.com/jenkinsci/testcomplete-plugin.git", + "ssh_url": "git@github.com:jenkinsci/testcomplete-plugin.git", + "clone_url": "https://github.com/jenkinsci/testcomplete-plugin.git", + "svn_url": "https://github.com/jenkinsci/testcomplete-plugin", + "homepage": null, + "size": 132, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 10, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 10, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 32522194, + "node_id": "MDEwOlJlcG9zaXRvcnkzMjUyMjE5NA==", + "name": "ui-test-capture-plugin", + "full_name": "jenkinsci/ui-test-capture-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/ui-test-capture-plugin", + "description": "Plugin do Jenkins feito para visualizar ao vivo os resultados dos testes de uma Build em construção e o histórico de testes de builds anteriores.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/ui-test-capture-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/ui-test-capture-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/ui-test-capture-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/ui-test-capture-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/ui-test-capture-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/ui-test-capture-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/ui-test-capture-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/ui-test-capture-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/ui-test-capture-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/ui-test-capture-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/ui-test-capture-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/ui-test-capture-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/ui-test-capture-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/ui-test-capture-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/ui-test-capture-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/ui-test-capture-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/ui-test-capture-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/ui-test-capture-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/ui-test-capture-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/ui-test-capture-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/ui-test-capture-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/ui-test-capture-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/ui-test-capture-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/ui-test-capture-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/ui-test-capture-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/ui-test-capture-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/ui-test-capture-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/ui-test-capture-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/ui-test-capture-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/ui-test-capture-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/ui-test-capture-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/ui-test-capture-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/ui-test-capture-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/ui-test-capture-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/ui-test-capture-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/ui-test-capture-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/ui-test-capture-plugin/deployments", + "created_at": "2015-03-19T13:15:06Z", + "updated_at": "2018-07-28T03:19:04Z", + "pushed_at": "2016-09-22T00:42:52Z", + "git_url": "git://github.com/jenkinsci/ui-test-capture-plugin.git", + "ssh_url": "git@github.com:jenkinsci/ui-test-capture-plugin.git", + "clone_url": "https://github.com/jenkinsci/ui-test-capture-plugin.git", + "svn_url": "https://github.com/jenkinsci/ui-test-capture-plugin", + "homepage": "", + "size": 503, + "stargazers_count": 4, + "watchers_count": 4, + "language": "CSS", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 2, + "open_issues": 0, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 32584550, + "node_id": "MDEwOlJlcG9zaXRvcnkzMjU4NDU1MA==", + "name": "jackson-databind-plugin", + "full_name": "jenkinsci/jackson-databind-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jackson-databind-plugin", + "description": "Plugin to pull in dependency on the Jackson parser data binding library (for JSON etc).", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jackson-databind-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/jackson-databind-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jackson-databind-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jackson-databind-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jackson-databind-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jackson-databind-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jackson-databind-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jackson-databind-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jackson-databind-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jackson-databind-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jackson-databind-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jackson-databind-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jackson-databind-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jackson-databind-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jackson-databind-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jackson-databind-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jackson-databind-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jackson-databind-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jackson-databind-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jackson-databind-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jackson-databind-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jackson-databind-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jackson-databind-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jackson-databind-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jackson-databind-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jackson-databind-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jackson-databind-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jackson-databind-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jackson-databind-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jackson-databind-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jackson-databind-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jackson-databind-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jackson-databind-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jackson-databind-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jackson-databind-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jackson-databind-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jackson-databind-plugin/deployments", + "created_at": "2015-03-20T13:14:55Z", + "updated_at": "2016-04-21T20:46:26Z", + "pushed_at": "2018-02-09T08:37:09Z", + "git_url": "git://github.com/jenkinsci/jackson-databind-plugin.git", + "ssh_url": "git@github.com:jenkinsci/jackson-databind-plugin.git", + "clone_url": "https://github.com/jenkinsci/jackson-databind-plugin.git", + "svn_url": "https://github.com/jenkinsci/jackson-databind-plugin", + "homepage": null, + "size": 13, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 32780417, + "node_id": "MDEwOlJlcG9zaXRvcnkzMjc4MDQxNw==", + "name": "stash-pullrequest-builder-plugin", + "full_name": "jenkinsci/stash-pullrequest-builder-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/stash-pullrequest-builder-plugin", + "description": "A Jenkins plugin for Building Stash Pull Request", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/stash-pullrequest-builder-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/stash-pullrequest-builder-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/stash-pullrequest-builder-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/stash-pullrequest-builder-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/stash-pullrequest-builder-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/stash-pullrequest-builder-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/stash-pullrequest-builder-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/stash-pullrequest-builder-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/stash-pullrequest-builder-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/stash-pullrequest-builder-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/stash-pullrequest-builder-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/stash-pullrequest-builder-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/stash-pullrequest-builder-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/stash-pullrequest-builder-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/stash-pullrequest-builder-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/stash-pullrequest-builder-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/stash-pullrequest-builder-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/stash-pullrequest-builder-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/stash-pullrequest-builder-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/stash-pullrequest-builder-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/stash-pullrequest-builder-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/stash-pullrequest-builder-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/stash-pullrequest-builder-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/stash-pullrequest-builder-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/stash-pullrequest-builder-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/stash-pullrequest-builder-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/stash-pullrequest-builder-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/stash-pullrequest-builder-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/stash-pullrequest-builder-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/stash-pullrequest-builder-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/stash-pullrequest-builder-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/stash-pullrequest-builder-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/stash-pullrequest-builder-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/stash-pullrequest-builder-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/stash-pullrequest-builder-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/stash-pullrequest-builder-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/stash-pullrequest-builder-plugin/deployments", + "created_at": "2015-03-24T06:32:12Z", + "updated_at": "2019-10-23T13:17:58Z", + "pushed_at": "2019-10-23T15:43:27Z", + "git_url": "git://github.com/jenkinsci/stash-pullrequest-builder-plugin.git", + "ssh_url": "git@github.com:jenkinsci/stash-pullrequest-builder-plugin.git", + "clone_url": "https://github.com/jenkinsci/stash-pullrequest-builder-plugin.git", + "svn_url": "https://github.com/jenkinsci/stash-pullrequest-builder-plugin", + "homepage": null, + "size": 508, + "stargazers_count": 56, + "watchers_count": 56, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 57, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 9, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 57, + "open_issues": 9, + "watchers": 56, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 32972149, + "node_id": "MDEwOlJlcG9zaXRvcnkzMjk3MjE0OQ==", + "name": "advanced-installer-msi-builder-plugin", + "full_name": "jenkinsci/advanced-installer-msi-builder-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/advanced-installer-msi-builder-plugin", + "description": "Advanced Installer Msi Builder plugin for Jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/advanced-installer-msi-builder-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/advanced-installer-msi-builder-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/advanced-installer-msi-builder-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/advanced-installer-msi-builder-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/advanced-installer-msi-builder-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/advanced-installer-msi-builder-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/advanced-installer-msi-builder-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/advanced-installer-msi-builder-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/advanced-installer-msi-builder-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/advanced-installer-msi-builder-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/advanced-installer-msi-builder-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/advanced-installer-msi-builder-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/advanced-installer-msi-builder-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/advanced-installer-msi-builder-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/advanced-installer-msi-builder-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/advanced-installer-msi-builder-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/advanced-installer-msi-builder-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/advanced-installer-msi-builder-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/advanced-installer-msi-builder-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/advanced-installer-msi-builder-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/advanced-installer-msi-builder-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/advanced-installer-msi-builder-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/advanced-installer-msi-builder-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/advanced-installer-msi-builder-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/advanced-installer-msi-builder-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/advanced-installer-msi-builder-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/advanced-installer-msi-builder-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/advanced-installer-msi-builder-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/advanced-installer-msi-builder-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/advanced-installer-msi-builder-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/advanced-installer-msi-builder-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/advanced-installer-msi-builder-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/advanced-installer-msi-builder-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/advanced-installer-msi-builder-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/advanced-installer-msi-builder-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/advanced-installer-msi-builder-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/advanced-installer-msi-builder-plugin/deployments", + "created_at": "2015-03-27T07:00:37Z", + "updated_at": "2019-08-12T23:52:38Z", + "pushed_at": "2018-11-13T10:02:02Z", + "git_url": "git://github.com/jenkinsci/advanced-installer-msi-builder-plugin.git", + "ssh_url": "git@github.com:jenkinsci/advanced-installer-msi-builder-plugin.git", + "clone_url": "https://github.com/jenkinsci/advanced-installer-msi-builder-plugin.git", + "svn_url": "https://github.com/jenkinsci/advanced-installer-msi-builder-plugin", + "homepage": "", + "size": 68, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 33091504, + "node_id": "MDEwOlJlcG9zaXRvcnkzMzA5MTUwNA==", + "name": "almasw-modbuilder-plugin", + "full_name": "jenkinsci/almasw-modbuilder-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/almasw-modbuilder-plugin", + "description": "An ALMA Software module Jenkins plugin mod builder", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/almasw-modbuilder-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/almasw-modbuilder-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/almasw-modbuilder-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/almasw-modbuilder-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/almasw-modbuilder-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/almasw-modbuilder-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/almasw-modbuilder-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/almasw-modbuilder-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/almasw-modbuilder-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/almasw-modbuilder-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/almasw-modbuilder-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/almasw-modbuilder-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/almasw-modbuilder-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/almasw-modbuilder-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/almasw-modbuilder-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/almasw-modbuilder-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/almasw-modbuilder-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/almasw-modbuilder-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/almasw-modbuilder-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/almasw-modbuilder-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/almasw-modbuilder-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/almasw-modbuilder-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/almasw-modbuilder-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/almasw-modbuilder-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/almasw-modbuilder-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/almasw-modbuilder-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/almasw-modbuilder-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/almasw-modbuilder-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/almasw-modbuilder-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/almasw-modbuilder-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/almasw-modbuilder-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/almasw-modbuilder-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/almasw-modbuilder-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/almasw-modbuilder-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/almasw-modbuilder-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/almasw-modbuilder-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/almasw-modbuilder-plugin/deployments", + "created_at": "2015-03-29T22:07:08Z", + "updated_at": "2016-11-16T03:12:34Z", + "pushed_at": "2016-08-07T09:16:57Z", + "git_url": "git://github.com/jenkinsci/almasw-modbuilder-plugin.git", + "ssh_url": "git@github.com:jenkinsci/almasw-modbuilder-plugin.git", + "clone_url": "https://github.com/jenkinsci/almasw-modbuilder-plugin.git", + "svn_url": "https://github.com/jenkinsci/almasw-modbuilder-plugin", + "homepage": "", + "size": 150, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 1, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 33114723, + "node_id": "MDEwOlJlcG9zaXRvcnkzMzExNDcyMw==", + "name": "sitespeed-plugin", + "full_name": "jenkinsci/sitespeed-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/sitespeed-plugin", + "description": "A Jenkins plugin for sitespeed.io", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/sitespeed-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/sitespeed-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/sitespeed-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/sitespeed-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/sitespeed-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/sitespeed-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/sitespeed-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/sitespeed-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/sitespeed-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/sitespeed-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/sitespeed-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/sitespeed-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/sitespeed-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/sitespeed-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/sitespeed-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/sitespeed-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/sitespeed-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/sitespeed-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/sitespeed-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/sitespeed-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/sitespeed-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/sitespeed-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/sitespeed-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/sitespeed-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/sitespeed-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/sitespeed-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/sitespeed-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/sitespeed-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/sitespeed-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/sitespeed-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/sitespeed-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/sitespeed-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/sitespeed-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/sitespeed-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/sitespeed-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/sitespeed-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/sitespeed-plugin/deployments", + "created_at": "2015-03-30T09:39:29Z", + "updated_at": "2015-03-30T09:39:41Z", + "pushed_at": "2015-03-30T08:44:37Z", + "git_url": "git://github.com/jenkinsci/sitespeed-plugin.git", + "ssh_url": "git@github.com:jenkinsci/sitespeed-plugin.git", + "clone_url": "https://github.com/jenkinsci/sitespeed-plugin.git", + "svn_url": "https://github.com/jenkinsci/sitespeed-plugin", + "homepage": null, + "size": 408, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 33114839, + "node_id": "MDEwOlJlcG9zaXRvcnkzMzExNDgzOQ==", + "name": "lsf-cloud-plugin", + "full_name": "jenkinsci/lsf-cloud-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/lsf-cloud-plugin", + "description": "Jenkins plugin for LSF", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/lsf-cloud-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/lsf-cloud-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/lsf-cloud-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/lsf-cloud-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/lsf-cloud-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/lsf-cloud-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/lsf-cloud-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/lsf-cloud-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/lsf-cloud-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/lsf-cloud-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/lsf-cloud-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/lsf-cloud-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/lsf-cloud-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/lsf-cloud-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/lsf-cloud-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/lsf-cloud-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/lsf-cloud-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/lsf-cloud-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/lsf-cloud-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/lsf-cloud-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/lsf-cloud-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/lsf-cloud-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/lsf-cloud-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/lsf-cloud-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/lsf-cloud-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/lsf-cloud-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/lsf-cloud-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/lsf-cloud-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/lsf-cloud-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/lsf-cloud-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/lsf-cloud-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/lsf-cloud-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/lsf-cloud-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/lsf-cloud-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/lsf-cloud-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/lsf-cloud-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/lsf-cloud-plugin/deployments", + "created_at": "2015-03-30T09:41:56Z", + "updated_at": "2019-01-01T07:19:32Z", + "pushed_at": "2016-04-13T19:10:15Z", + "git_url": "git://github.com/jenkinsci/lsf-cloud-plugin.git", + "ssh_url": "git@github.com:jenkinsci/lsf-cloud-plugin.git", + "clone_url": "https://github.com/jenkinsci/lsf-cloud-plugin.git", + "svn_url": "https://github.com/jenkinsci/lsf-cloud-plugin", + "homepage": "", + "size": 893, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 5, + "open_issues": 2, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 33258121, + "node_id": "MDEwOlJlcG9zaXRvcnkzMzI1ODEyMQ==", + "name": "selfie-trigger-plugin", + "full_name": "jenkinsci/selfie-trigger-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/selfie-trigger-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/selfie-trigger-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/selfie-trigger-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/selfie-trigger-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/selfie-trigger-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/selfie-trigger-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/selfie-trigger-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/selfie-trigger-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/selfie-trigger-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/selfie-trigger-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/selfie-trigger-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/selfie-trigger-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/selfie-trigger-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/selfie-trigger-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/selfie-trigger-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/selfie-trigger-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/selfie-trigger-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/selfie-trigger-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/selfie-trigger-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/selfie-trigger-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/selfie-trigger-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/selfie-trigger-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/selfie-trigger-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/selfie-trigger-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/selfie-trigger-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/selfie-trigger-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/selfie-trigger-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/selfie-trigger-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/selfie-trigger-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/selfie-trigger-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/selfie-trigger-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/selfie-trigger-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/selfie-trigger-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/selfie-trigger-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/selfie-trigger-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/selfie-trigger-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/selfie-trigger-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/selfie-trigger-plugin/deployments", + "created_at": "2015-04-01T16:12:31Z", + "updated_at": "2015-04-01T16:12:46Z", + "pushed_at": "2015-04-08T08:05:40Z", + "git_url": "git://github.com/jenkinsci/selfie-trigger-plugin.git", + "ssh_url": "git@github.com:jenkinsci/selfie-trigger-plugin.git", + "clone_url": "https://github.com/jenkinsci/selfie-trigger-plugin.git", + "svn_url": "https://github.com/jenkinsci/selfie-trigger-plugin", + "homepage": null, + "size": 98, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 33272341, + "node_id": "MDEwOlJlcG9zaXRvcnkzMzI3MjM0MQ==", + "name": "iojs-plugin", + "full_name": "jenkinsci/iojs-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/iojs-plugin", + "description": "Jenkins io.js plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/iojs-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/iojs-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/iojs-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/iojs-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/iojs-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/iojs-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/iojs-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/iojs-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/iojs-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/iojs-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/iojs-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/iojs-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/iojs-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/iojs-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/iojs-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/iojs-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/iojs-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/iojs-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/iojs-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/iojs-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/iojs-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/iojs-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/iojs-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/iojs-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/iojs-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/iojs-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/iojs-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/iojs-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/iojs-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/iojs-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/iojs-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/iojs-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/iojs-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/iojs-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/iojs-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/iojs-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/iojs-plugin/deployments", + "created_at": "2015-04-01T20:51:36Z", + "updated_at": "2015-11-29T12:00:45Z", + "pushed_at": "2018-06-26T19:13:45Z", + "git_url": "git://github.com/jenkinsci/iojs-plugin.git", + "ssh_url": "git@github.com:jenkinsci/iojs-plugin.git", + "clone_url": "https://github.com/jenkinsci/iojs-plugin.git", + "svn_url": "https://github.com/jenkinsci/iojs-plugin", + "homepage": null, + "size": 176, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 33297958, + "node_id": "MDEwOlJlcG9zaXRvcnkzMzI5Nzk1OA==", + "name": "mber-plugin", + "full_name": "jenkinsci/mber-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/mber-plugin", + "description": "Jenkins Mber Plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/mber-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/mber-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/mber-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/mber-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/mber-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/mber-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/mber-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/mber-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/mber-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/mber-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/mber-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/mber-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/mber-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/mber-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/mber-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/mber-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/mber-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/mber-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/mber-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/mber-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/mber-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/mber-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/mber-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/mber-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/mber-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/mber-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/mber-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/mber-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/mber-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/mber-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/mber-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/mber-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/mber-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/mber-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/mber-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/mber-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/mber-plugin/deployments", + "created_at": "2015-04-02T08:25:31Z", + "updated_at": "2015-04-28T16:17:39Z", + "pushed_at": "2015-09-02T14:41:06Z", + "git_url": "git://github.com/jenkinsci/mber-plugin.git", + "ssh_url": "git@github.com:jenkinsci/mber-plugin.git", + "clone_url": "https://github.com/jenkinsci/mber-plugin.git", + "svn_url": "https://github.com/jenkinsci/mber-plugin", + "homepage": "", + "size": 251, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 33385555, + "node_id": "MDEwOlJlcG9zaXRvcnkzMzM4NTU1NQ==", + "name": "packaging", + "full_name": "jenkinsci/packaging", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/packaging", + "description": "Native packaging for Jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/packaging", + "forks_url": "https://api.github.com/repos/jenkinsci/packaging/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/packaging/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/packaging/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/packaging/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/packaging/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/packaging/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/packaging/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/packaging/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/packaging/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/packaging/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/packaging/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/packaging/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/packaging/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/packaging/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/packaging/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/packaging/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/packaging/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/packaging/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/packaging/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/packaging/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/packaging/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/packaging/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/packaging/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/packaging/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/packaging/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/packaging/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/packaging/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/packaging/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/packaging/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/packaging/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/packaging/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/packaging/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/packaging/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/packaging/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/packaging/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/packaging/deployments", + "created_at": "2015-04-03T22:22:28Z", + "updated_at": "2019-08-27T16:30:16Z", + "pushed_at": "2019-10-22T14:19:32Z", + "git_url": "git://github.com/jenkinsci/packaging.git", + "ssh_url": "git@github.com:jenkinsci/packaging.git", + "clone_url": "https://github.com/jenkinsci/packaging.git", + "svn_url": "https://github.com/jenkinsci/packaging", + "homepage": "https://jenkins.io", + "size": 936, + "stargazers_count": 20, + "watchers_count": 20, + "language": "Shell", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 54, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 10, + "license": null, + "forks": 54, + "open_issues": 10, + "watchers": 20, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 33572296, + "node_id": "MDEwOlJlcG9zaXRvcnkzMzU3MjI5Ng==", + "name": "docker-commons-plugin", + "full_name": "jenkinsci/docker-commons-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/docker-commons-plugin", + "description": "API plugin, which provides the common shared functionality for various Docker-related plugins.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/docker-commons-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/docker-commons-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/docker-commons-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/docker-commons-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/docker-commons-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/docker-commons-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/docker-commons-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/docker-commons-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/docker-commons-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/docker-commons-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/docker-commons-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/docker-commons-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/docker-commons-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/docker-commons-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/docker-commons-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/docker-commons-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/docker-commons-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/docker-commons-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/docker-commons-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/docker-commons-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/docker-commons-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/docker-commons-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/docker-commons-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/docker-commons-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/docker-commons-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/docker-commons-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/docker-commons-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/docker-commons-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/docker-commons-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/docker-commons-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/docker-commons-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/docker-commons-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/docker-commons-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/docker-commons-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/docker-commons-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/docker-commons-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/docker-commons-plugin/deployments", + "created_at": "2015-04-07T22:49:23Z", + "updated_at": "2019-10-07T10:07:15Z", + "pushed_at": "2019-10-15T11:50:24Z", + "git_url": "git://github.com/jenkinsci/docker-commons-plugin.git", + "ssh_url": "git@github.com:jenkinsci/docker-commons-plugin.git", + "clone_url": "https://github.com/jenkinsci/docker-commons-plugin.git", + "svn_url": "https://github.com/jenkinsci/docker-commons-plugin", + "homepage": "http://plugins.jenkins.io/docker-commons", + "size": 434, + "stargazers_count": 26, + "watchers_count": 26, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 56, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 5, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 56, + "open_issues": 5, + "watchers": 26, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 33588152, + "node_id": "MDEwOlJlcG9zaXRvcnkzMzU4ODE1Mg==", + "name": "gitlab-logo-plugin", + "full_name": "jenkinsci/gitlab-logo-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/gitlab-logo-plugin", + "description": "Display GitLab Repository Icon on dashboard", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/gitlab-logo-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/gitlab-logo-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/gitlab-logo-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/gitlab-logo-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/gitlab-logo-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/gitlab-logo-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/gitlab-logo-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/gitlab-logo-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/gitlab-logo-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/gitlab-logo-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/gitlab-logo-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/gitlab-logo-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/gitlab-logo-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/gitlab-logo-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/gitlab-logo-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/gitlab-logo-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/gitlab-logo-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/gitlab-logo-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/gitlab-logo-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/gitlab-logo-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/gitlab-logo-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/gitlab-logo-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/gitlab-logo-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/gitlab-logo-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/gitlab-logo-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/gitlab-logo-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/gitlab-logo-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/gitlab-logo-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/gitlab-logo-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/gitlab-logo-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/gitlab-logo-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/gitlab-logo-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/gitlab-logo-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/gitlab-logo-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/gitlab-logo-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/gitlab-logo-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/gitlab-logo-plugin/deployments", + "created_at": "2015-04-08T06:09:41Z", + "updated_at": "2019-10-08T13:45:13Z", + "pushed_at": "2019-10-08T13:45:11Z", + "git_url": "git://github.com/jenkinsci/gitlab-logo-plugin.git", + "ssh_url": "git@github.com:jenkinsci/gitlab-logo-plugin.git", + "clone_url": "https://github.com/jenkinsci/gitlab-logo-plugin.git", + "svn_url": "https://github.com/jenkinsci/gitlab-logo-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/GitLab+Logo+Plugin", + "size": 60, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 5, + "open_issues": 0, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 33675789, + "node_id": "MDEwOlJlcG9zaXRvcnkzMzY3NTc4OQ==", + "name": "authentication-tokens-plugin", + "full_name": "jenkinsci/authentication-tokens-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/authentication-tokens-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/authentication-tokens-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/authentication-tokens-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/authentication-tokens-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/authentication-tokens-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/authentication-tokens-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/authentication-tokens-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/authentication-tokens-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/authentication-tokens-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/authentication-tokens-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/authentication-tokens-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/authentication-tokens-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/authentication-tokens-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/authentication-tokens-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/authentication-tokens-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/authentication-tokens-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/authentication-tokens-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/authentication-tokens-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/authentication-tokens-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/authentication-tokens-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/authentication-tokens-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/authentication-tokens-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/authentication-tokens-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/authentication-tokens-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/authentication-tokens-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/authentication-tokens-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/authentication-tokens-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/authentication-tokens-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/authentication-tokens-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/authentication-tokens-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/authentication-tokens-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/authentication-tokens-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/authentication-tokens-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/authentication-tokens-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/authentication-tokens-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/authentication-tokens-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/authentication-tokens-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/authentication-tokens-plugin/deployments", + "created_at": "2015-04-09T15:08:48Z", + "updated_at": "2019-04-18T14:35:51Z", + "pushed_at": "2019-04-18T14:35:49Z", + "git_url": "git://github.com/jenkinsci/authentication-tokens-plugin.git", + "ssh_url": "git@github.com:jenkinsci/authentication-tokens-plugin.git", + "clone_url": "https://github.com/jenkinsci/authentication-tokens-plugin.git", + "svn_url": "https://github.com/jenkinsci/authentication-tokens-plugin", + "homepage": "", + "size": 35, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 7, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 7, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 33861747, + "node_id": "MDEwOlJlcG9zaXRvcnkzMzg2MTc0Nw==", + "name": "zaproxy-plugin", + "full_name": "jenkinsci/zaproxy-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/zaproxy-plugin", + "description": "Not distributed anymore but allow the existing users of the plugin to use the latest version. Please migrate to:", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/zaproxy-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/zaproxy-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/zaproxy-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/zaproxy-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/zaproxy-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/zaproxy-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/zaproxy-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/zaproxy-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/zaproxy-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/zaproxy-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/zaproxy-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/zaproxy-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/zaproxy-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/zaproxy-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/zaproxy-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/zaproxy-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/zaproxy-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/zaproxy-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/zaproxy-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/zaproxy-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/zaproxy-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/zaproxy-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/zaproxy-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/zaproxy-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/zaproxy-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/zaproxy-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/zaproxy-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/zaproxy-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/zaproxy-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/zaproxy-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/zaproxy-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/zaproxy-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/zaproxy-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/zaproxy-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/zaproxy-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/zaproxy-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/zaproxy-plugin/deployments", + "created_at": "2015-04-13T10:15:04Z", + "updated_at": "2019-03-21T17:25:16Z", + "pushed_at": "2017-01-17T10:51:17Z", + "git_url": "git://github.com/jenkinsci/zaproxy-plugin.git", + "ssh_url": "git@github.com:jenkinsci/zaproxy-plugin.git", + "clone_url": "https://github.com/jenkinsci/zaproxy-plugin.git", + "svn_url": "https://github.com/jenkinsci/zaproxy-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/zap+plugin", + "size": 3479, + "stargazers_count": 10, + "watchers_count": 10, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 20, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 20, + "open_issues": 0, + "watchers": 10, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 34255596, + "node_id": "MDEwOlJlcG9zaXRvcnkzNDI1NTU5Ng==", + "name": "apica-loadtest-plugin", + "full_name": "jenkinsci/apica-loadtest-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/apica-loadtest-plugin", + "description": "Apica Loadtest Jenkins plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/apica-loadtest-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/apica-loadtest-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/apica-loadtest-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/apica-loadtest-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/apica-loadtest-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/apica-loadtest-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/apica-loadtest-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/apica-loadtest-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/apica-loadtest-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/apica-loadtest-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/apica-loadtest-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/apica-loadtest-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/apica-loadtest-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/apica-loadtest-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/apica-loadtest-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/apica-loadtest-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/apica-loadtest-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/apica-loadtest-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/apica-loadtest-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/apica-loadtest-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/apica-loadtest-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/apica-loadtest-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/apica-loadtest-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/apica-loadtest-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/apica-loadtest-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/apica-loadtest-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/apica-loadtest-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/apica-loadtest-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/apica-loadtest-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/apica-loadtest-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/apica-loadtest-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/apica-loadtest-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/apica-loadtest-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/apica-loadtest-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/apica-loadtest-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/apica-loadtest-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/apica-loadtest-plugin/deployments", + "created_at": "2015-04-20T11:07:09Z", + "updated_at": "2019-05-10T13:17:27Z", + "pushed_at": "2019-05-10T13:17:24Z", + "git_url": "git://github.com/jenkinsci/apica-loadtest-plugin.git", + "ssh_url": "git@github.com:jenkinsci/apica-loadtest-plugin.git", + "clone_url": "https://github.com/jenkinsci/apica-loadtest-plugin.git", + "svn_url": "https://github.com/jenkinsci/apica-loadtest-plugin", + "homepage": null, + "size": 3795, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 34348729, + "node_id": "MDEwOlJlcG9zaXRvcnkzNDM0ODcyOQ==", + "name": "distinguishable-gray-balls-plugin", + "full_name": "jenkinsci/distinguishable-gray-balls-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/distinguishable-gray-balls-plugin", + "description": "Adds different icons for Disabled and Aborted jobs because the default Jenkins icons don’t differentiate between Not Built, Disabled and Aborted.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/distinguishable-gray-balls-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/distinguishable-gray-balls-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/distinguishable-gray-balls-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/distinguishable-gray-balls-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/distinguishable-gray-balls-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/distinguishable-gray-balls-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/distinguishable-gray-balls-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/distinguishable-gray-balls-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/distinguishable-gray-balls-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/distinguishable-gray-balls-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/distinguishable-gray-balls-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/distinguishable-gray-balls-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/distinguishable-gray-balls-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/distinguishable-gray-balls-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/distinguishable-gray-balls-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/distinguishable-gray-balls-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/distinguishable-gray-balls-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/distinguishable-gray-balls-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/distinguishable-gray-balls-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/distinguishable-gray-balls-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/distinguishable-gray-balls-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/distinguishable-gray-balls-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/distinguishable-gray-balls-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/distinguishable-gray-balls-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/distinguishable-gray-balls-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/distinguishable-gray-balls-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/distinguishable-gray-balls-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/distinguishable-gray-balls-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/distinguishable-gray-balls-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/distinguishable-gray-balls-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/distinguishable-gray-balls-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/distinguishable-gray-balls-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/distinguishable-gray-balls-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/distinguishable-gray-balls-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/distinguishable-gray-balls-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/distinguishable-gray-balls-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/distinguishable-gray-balls-plugin/deployments", + "created_at": "2015-04-21T19:48:59Z", + "updated_at": "2015-08-27T10:37:35Z", + "pushed_at": "2015-04-23T13:20:13Z", + "git_url": "git://github.com/jenkinsci/distinguishable-gray-balls-plugin.git", + "ssh_url": "git@github.com:jenkinsci/distinguishable-gray-balls-plugin.git", + "clone_url": "https://github.com/jenkinsci/distinguishable-gray-balls-plugin.git", + "svn_url": "https://github.com/jenkinsci/distinguishable-gray-balls-plugin", + "homepage": "", + "size": 298, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 34624752, + "node_id": "MDEwOlJlcG9zaXRvcnkzNDYyNDc1Mg==", + "name": "block-queued-job-plugin", + "full_name": "jenkinsci/block-queued-job-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/block-queued-job-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/block-queued-job-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/block-queued-job-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/block-queued-job-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/block-queued-job-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/block-queued-job-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/block-queued-job-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/block-queued-job-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/block-queued-job-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/block-queued-job-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/block-queued-job-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/block-queued-job-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/block-queued-job-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/block-queued-job-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/block-queued-job-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/block-queued-job-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/block-queued-job-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/block-queued-job-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/block-queued-job-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/block-queued-job-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/block-queued-job-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/block-queued-job-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/block-queued-job-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/block-queued-job-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/block-queued-job-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/block-queued-job-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/block-queued-job-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/block-queued-job-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/block-queued-job-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/block-queued-job-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/block-queued-job-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/block-queued-job-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/block-queued-job-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/block-queued-job-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/block-queued-job-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/block-queued-job-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/block-queued-job-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/block-queued-job-plugin/deployments", + "created_at": "2015-04-26T18:20:53Z", + "updated_at": "2019-10-08T14:28:12Z", + "pushed_at": "2019-10-08T14:28:10Z", + "git_url": "git://github.com/jenkinsci/block-queued-job-plugin.git", + "ssh_url": "git@github.com:jenkinsci/block-queued-job-plugin.git", + "clone_url": "https://github.com/jenkinsci/block-queued-job-plugin.git", + "svn_url": "https://github.com/jenkinsci/block-queued-job-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Block+queued+job+plugin", + "size": 39, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 6, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 34725942, + "node_id": "MDEwOlJlcG9zaXRvcnkzNDcyNTk0Mg==", + "name": "ansible-plugin", + "full_name": "jenkinsci/ansible-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/ansible-plugin", + "description": "Jenkins Ansible plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/ansible-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/ansible-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/ansible-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/ansible-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/ansible-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/ansible-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/ansible-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/ansible-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/ansible-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/ansible-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/ansible-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/ansible-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/ansible-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/ansible-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/ansible-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/ansible-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/ansible-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/ansible-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/ansible-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/ansible-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/ansible-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/ansible-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/ansible-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/ansible-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/ansible-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/ansible-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/ansible-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/ansible-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/ansible-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/ansible-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/ansible-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/ansible-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/ansible-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/ansible-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/ansible-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/ansible-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/ansible-plugin/deployments", + "created_at": "2015-04-28T11:12:10Z", + "updated_at": "2019-10-05T06:41:09Z", + "pushed_at": "2019-09-24T09:46:55Z", + "git_url": "git://github.com/jenkinsci/ansible-plugin.git", + "ssh_url": "git@github.com:jenkinsci/ansible-plugin.git", + "clone_url": "https://github.com/jenkinsci/ansible-plugin.git", + "svn_url": "https://github.com/jenkinsci/ansible-plugin", + "homepage": null, + "size": 197, + "stargazers_count": 181, + "watchers_count": 181, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 86, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 10, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 86, + "open_issues": 10, + "watchers": 181, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 34726070, + "node_id": "MDEwOlJlcG9zaXRvcnkzNDcyNjA3MA==", + "name": "deployment-sphere-plugin", + "full_name": "jenkinsci/deployment-sphere-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/deployment-sphere-plugin", + "description": "Jenkins plugin to have a bird's eye view of your continuous deployment pipeline", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/deployment-sphere-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/deployment-sphere-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/deployment-sphere-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/deployment-sphere-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/deployment-sphere-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/deployment-sphere-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/deployment-sphere-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/deployment-sphere-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/deployment-sphere-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/deployment-sphere-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/deployment-sphere-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/deployment-sphere-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/deployment-sphere-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/deployment-sphere-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/deployment-sphere-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/deployment-sphere-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/deployment-sphere-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/deployment-sphere-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/deployment-sphere-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/deployment-sphere-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/deployment-sphere-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/deployment-sphere-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/deployment-sphere-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/deployment-sphere-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/deployment-sphere-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/deployment-sphere-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/deployment-sphere-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/deployment-sphere-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/deployment-sphere-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/deployment-sphere-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/deployment-sphere-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/deployment-sphere-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/deployment-sphere-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/deployment-sphere-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/deployment-sphere-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/deployment-sphere-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/deployment-sphere-plugin/deployments", + "created_at": "2015-04-28T11:15:12Z", + "updated_at": "2015-04-28T11:15:23Z", + "pushed_at": "2015-08-17T11:36:36Z", + "git_url": "git://github.com/jenkinsci/deployment-sphere-plugin.git", + "ssh_url": "git@github.com:jenkinsci/deployment-sphere-plugin.git", + "clone_url": "https://github.com/jenkinsci/deployment-sphere-plugin.git", + "svn_url": "https://github.com/jenkinsci/deployment-sphere-plugin", + "homepage": null, + "size": 919, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 3, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 34726155, + "node_id": "MDEwOlJlcG9zaXRvcnkzNDcyNjE1NQ==", + "name": "zos-connector-plugin", + "full_name": "jenkinsci/zos-connector-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/zos-connector-plugin", + "description": "Plugin for connection of Jenkins CI to IBM zOS including integration of IBM SCLM as SCM.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/zos-connector-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/zos-connector-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/zos-connector-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/zos-connector-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/zos-connector-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/zos-connector-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/zos-connector-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/zos-connector-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/zos-connector-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/zos-connector-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/zos-connector-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/zos-connector-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/zos-connector-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/zos-connector-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/zos-connector-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/zos-connector-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/zos-connector-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/zos-connector-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/zos-connector-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/zos-connector-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/zos-connector-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/zos-connector-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/zos-connector-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/zos-connector-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/zos-connector-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/zos-connector-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/zos-connector-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/zos-connector-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/zos-connector-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/zos-connector-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/zos-connector-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/zos-connector-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/zos-connector-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/zos-connector-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/zos-connector-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/zos-connector-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/zos-connector-plugin/deployments", + "created_at": "2015-04-28T11:17:13Z", + "updated_at": "2019-08-20T15:42:19Z", + "pushed_at": "2019-08-20T15:42:18Z", + "git_url": "git://github.com/jenkinsci/zos-connector-plugin.git", + "ssh_url": "git@github.com:jenkinsci/zos-connector-plugin.git", + "clone_url": "https://github.com/jenkinsci/zos-connector-plugin.git", + "svn_url": "https://github.com/jenkinsci/zos-connector-plugin", + "homepage": null, + "size": 61802, + "stargazers_count": 8, + "watchers_count": 8, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 11, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 11, + "open_issues": 0, + "watchers": 8, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 34727393, + "node_id": "MDEwOlJlcG9zaXRvcnkzNDcyNzM5Mw==", + "name": "active-choices-plugin", + "full_name": "jenkinsci/active-choices-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/active-choices-plugin", + "description": "This plug-in provides additional parameter types for jobs, that allow you to cascade changes and render images or other HTML elements instead of the traditional parameter", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/active-choices-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/active-choices-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/active-choices-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/active-choices-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/active-choices-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/active-choices-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/active-choices-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/active-choices-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/active-choices-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/active-choices-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/active-choices-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/active-choices-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/active-choices-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/active-choices-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/active-choices-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/active-choices-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/active-choices-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/active-choices-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/active-choices-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/active-choices-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/active-choices-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/active-choices-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/active-choices-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/active-choices-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/active-choices-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/active-choices-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/active-choices-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/active-choices-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/active-choices-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/active-choices-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/active-choices-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/active-choices-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/active-choices-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/active-choices-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/active-choices-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/active-choices-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/active-choices-plugin/deployments", + "created_at": "2015-04-28T11:47:53Z", + "updated_at": "2019-10-17T13:06:23Z", + "pushed_at": "2019-10-09T04:15:19Z", + "git_url": "git://github.com/jenkinsci/active-choices-plugin.git", + "ssh_url": "git@github.com:jenkinsci/active-choices-plugin.git", + "clone_url": "https://github.com/jenkinsci/active-choices-plugin.git", + "svn_url": "https://github.com/jenkinsci/active-choices-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Active+Choices+Plugin", + "size": 750, + "stargazers_count": 36, + "watchers_count": 36, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 43, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 4, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 43, + "open_issues": 4, + "watchers": 36, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 34826886, + "node_id": "MDEwOlJlcG9zaXRvcnkzNDgyNjg4Ng==", + "name": "inedo-buildmaster-plugin", + "full_name": "jenkinsci/inedo-buildmaster-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/inedo-buildmaster-plugin", + "description": "Trigger builds in BuildMaster", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/inedo-buildmaster-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/inedo-buildmaster-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/inedo-buildmaster-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/inedo-buildmaster-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/inedo-buildmaster-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/inedo-buildmaster-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/inedo-buildmaster-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/inedo-buildmaster-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/inedo-buildmaster-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/inedo-buildmaster-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/inedo-buildmaster-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/inedo-buildmaster-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/inedo-buildmaster-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/inedo-buildmaster-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/inedo-buildmaster-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/inedo-buildmaster-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/inedo-buildmaster-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/inedo-buildmaster-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/inedo-buildmaster-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/inedo-buildmaster-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/inedo-buildmaster-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/inedo-buildmaster-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/inedo-buildmaster-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/inedo-buildmaster-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/inedo-buildmaster-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/inedo-buildmaster-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/inedo-buildmaster-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/inedo-buildmaster-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/inedo-buildmaster-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/inedo-buildmaster-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/inedo-buildmaster-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/inedo-buildmaster-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/inedo-buildmaster-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/inedo-buildmaster-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/inedo-buildmaster-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/inedo-buildmaster-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/inedo-buildmaster-plugin/deployments", + "created_at": "2015-04-30T01:10:51Z", + "updated_at": "2019-09-14T05:16:57Z", + "pushed_at": "2019-09-14T05:21:35Z", + "git_url": "git://github.com/jenkinsci/inedo-buildmaster-plugin.git", + "ssh_url": "git@github.com:jenkinsci/inedo-buildmaster-plugin.git", + "clone_url": "https://github.com/jenkinsci/inedo-buildmaster-plugin.git", + "svn_url": "https://github.com/jenkinsci/inedo-buildmaster-plugin", + "homepage": null, + "size": 1798, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 34893609, + "node_id": "MDEwOlJlcG9zaXRvcnkzNDg5MzYwOQ==", + "name": "cloudbees-disk-usage-simple-plugin", + "full_name": "jenkinsci/cloudbees-disk-usage-simple-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/cloudbees-disk-usage-simple-plugin", + "description": "CloudBees Disk Usage Simple Plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/cloudbees-disk-usage-simple-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/cloudbees-disk-usage-simple-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/cloudbees-disk-usage-simple-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/cloudbees-disk-usage-simple-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/cloudbees-disk-usage-simple-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/cloudbees-disk-usage-simple-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/cloudbees-disk-usage-simple-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/cloudbees-disk-usage-simple-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/cloudbees-disk-usage-simple-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/cloudbees-disk-usage-simple-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/cloudbees-disk-usage-simple-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/cloudbees-disk-usage-simple-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/cloudbees-disk-usage-simple-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/cloudbees-disk-usage-simple-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/cloudbees-disk-usage-simple-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/cloudbees-disk-usage-simple-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/cloudbees-disk-usage-simple-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/cloudbees-disk-usage-simple-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/cloudbees-disk-usage-simple-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/cloudbees-disk-usage-simple-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/cloudbees-disk-usage-simple-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/cloudbees-disk-usage-simple-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/cloudbees-disk-usage-simple-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/cloudbees-disk-usage-simple-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/cloudbees-disk-usage-simple-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/cloudbees-disk-usage-simple-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/cloudbees-disk-usage-simple-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/cloudbees-disk-usage-simple-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/cloudbees-disk-usage-simple-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/cloudbees-disk-usage-simple-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/cloudbees-disk-usage-simple-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/cloudbees-disk-usage-simple-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/cloudbees-disk-usage-simple-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/cloudbees-disk-usage-simple-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/cloudbees-disk-usage-simple-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/cloudbees-disk-usage-simple-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/cloudbees-disk-usage-simple-plugin/deployments", + "created_at": "2015-05-01T07:32:29Z", + "updated_at": "2019-10-10T20:20:41Z", + "pushed_at": "2019-10-10T20:20:40Z", + "git_url": "git://github.com/jenkinsci/cloudbees-disk-usage-simple-plugin.git", + "ssh_url": "git@github.com:jenkinsci/cloudbees-disk-usage-simple-plugin.git", + "clone_url": "https://github.com/jenkinsci/cloudbees-disk-usage-simple-plugin.git", + "svn_url": "https://github.com/jenkinsci/cloudbees-disk-usage-simple-plugin", + "homepage": "https://jenkins-ci.org", + "size": 124, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 13, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 13, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 34944103, + "node_id": "MDEwOlJlcG9zaXRvcnkzNDk0NDEwMw==", + "name": "violation-comments-to-stash-plugin", + "full_name": "jenkinsci/violation-comments-to-stash-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/violation-comments-to-stash-plugin", + "description": "Comments Bitbucket Server (or Stash) pull requests with static code analyzer findings.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/violation-comments-to-stash-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-stash-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-stash-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-stash-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-stash-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-stash-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-stash-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-stash-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-stash-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-stash-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-stash-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-stash-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-stash-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-stash-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-stash-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-stash-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-stash-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-stash-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-stash-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-stash-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-stash-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-stash-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-stash-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-stash-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-stash-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-stash-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-stash-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-stash-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-stash-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-stash-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-stash-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-stash-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-stash-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-stash-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-stash-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-stash-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-stash-plugin/deployments", + "created_at": "2015-05-02T10:42:38Z", + "updated_at": "2019-10-24T18:51:52Z", + "pushed_at": "2019-10-24T18:51:50Z", + "git_url": "git://github.com/jenkinsci/violation-comments-to-stash-plugin.git", + "ssh_url": "git@github.com:jenkinsci/violation-comments-to-stash-plugin.git", + "clone_url": "https://github.com/jenkinsci/violation-comments-to-stash-plugin.git", + "svn_url": "https://github.com/jenkinsci/violation-comments-to-stash-plugin", + "homepage": "https://plugins.jenkins.io/violation-comments-to-stash", + "size": 1591, + "stargazers_count": 34, + "watchers_count": 34, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": true, + "forks_count": 21, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 9, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 21, + "open_issues": 9, + "watchers": 34, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 35179652, + "node_id": "MDEwOlJlcG9zaXRvcnkzNTE3OTY1Mg==", + "name": "spoonscript-plugin", + "full_name": "jenkinsci/spoonscript-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/spoonscript-plugin", + "description": "Jenkins integration for Spoon", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/spoonscript-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/spoonscript-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/spoonscript-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/spoonscript-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/spoonscript-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/spoonscript-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/spoonscript-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/spoonscript-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/spoonscript-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/spoonscript-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/spoonscript-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/spoonscript-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/spoonscript-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/spoonscript-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/spoonscript-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/spoonscript-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/spoonscript-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/spoonscript-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/spoonscript-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/spoonscript-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/spoonscript-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/spoonscript-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/spoonscript-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/spoonscript-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/spoonscript-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/spoonscript-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/spoonscript-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/spoonscript-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/spoonscript-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/spoonscript-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/spoonscript-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/spoonscript-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/spoonscript-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/spoonscript-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/spoonscript-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/spoonscript-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/spoonscript-plugin/deployments", + "created_at": "2015-05-06T19:52:58Z", + "updated_at": "2016-03-15T13:12:55Z", + "pushed_at": "2016-03-15T13:47:17Z", + "git_url": "git://github.com/jenkinsci/spoonscript-plugin.git", + "ssh_url": "git@github.com:jenkinsci/spoonscript-plugin.git", + "clone_url": "https://github.com/jenkinsci/spoonscript-plugin.git", + "svn_url": "https://github.com/jenkinsci/spoonscript-plugin", + "homepage": null, + "size": 238, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 35189050, + "node_id": "MDEwOlJlcG9zaXRvcnkzNTE4OTA1MA==", + "name": "singleuseslave-plugin", + "full_name": "jenkinsci/singleuseslave-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/singleuseslave-plugin", + "description": "Jenkins Plugin to allow offlining slaves when job completes", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/singleuseslave-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/singleuseslave-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/singleuseslave-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/singleuseslave-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/singleuseslave-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/singleuseslave-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/singleuseslave-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/singleuseslave-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/singleuseslave-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/singleuseslave-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/singleuseslave-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/singleuseslave-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/singleuseslave-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/singleuseslave-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/singleuseslave-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/singleuseslave-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/singleuseslave-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/singleuseslave-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/singleuseslave-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/singleuseslave-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/singleuseslave-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/singleuseslave-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/singleuseslave-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/singleuseslave-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/singleuseslave-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/singleuseslave-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/singleuseslave-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/singleuseslave-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/singleuseslave-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/singleuseslave-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/singleuseslave-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/singleuseslave-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/singleuseslave-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/singleuseslave-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/singleuseslave-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/singleuseslave-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/singleuseslave-plugin/deployments", + "created_at": "2015-05-06T23:57:15Z", + "updated_at": "2016-03-08T12:13:06Z", + "pushed_at": "2015-05-07T12:23:07Z", + "git_url": "git://github.com/jenkinsci/singleuseslave-plugin.git", + "ssh_url": "git@github.com:jenkinsci/singleuseslave-plugin.git", + "clone_url": "https://github.com/jenkinsci/singleuseslave-plugin.git", + "svn_url": "https://github.com/jenkinsci/singleuseslave-plugin", + "homepage": null, + "size": 90, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Ruby", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 35221156, + "node_id": "MDEwOlJlcG9zaXRvcnkzNTIyMTE1Ng==", + "name": "ssh2easy-plugin", + "full_name": "jenkinsci/ssh2easy-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/ssh2easy-plugin", + "description": "Remote SSH , SFTP , Remote Shell execution , Project based team member ACL stratagy , View Table pattern based ACL stratagy", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/ssh2easy-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/ssh2easy-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/ssh2easy-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/ssh2easy-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/ssh2easy-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/ssh2easy-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/ssh2easy-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/ssh2easy-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/ssh2easy-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/ssh2easy-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/ssh2easy-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/ssh2easy-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/ssh2easy-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/ssh2easy-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/ssh2easy-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/ssh2easy-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/ssh2easy-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/ssh2easy-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/ssh2easy-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/ssh2easy-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/ssh2easy-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/ssh2easy-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/ssh2easy-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/ssh2easy-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/ssh2easy-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/ssh2easy-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/ssh2easy-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/ssh2easy-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/ssh2easy-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/ssh2easy-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/ssh2easy-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/ssh2easy-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/ssh2easy-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/ssh2easy-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/ssh2easy-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/ssh2easy-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/ssh2easy-plugin/deployments", + "created_at": "2015-05-07T13:19:34Z", + "updated_at": "2019-01-22T07:37:24Z", + "pushed_at": "2019-02-13T08:06:13Z", + "git_url": "git://github.com/jenkinsci/ssh2easy-plugin.git", + "ssh_url": "git@github.com:jenkinsci/ssh2easy-plugin.git", + "clone_url": "https://github.com/jenkinsci/ssh2easy-plugin.git", + "svn_url": "https://github.com/jenkinsci/ssh2easy-plugin", + "homepage": null, + "size": 73, + "stargazers_count": 6, + "watchers_count": 6, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 8, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 8, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 8, + "open_issues": 8, + "watchers": 6, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 35227181, + "node_id": "MDEwOlJlcG9zaXRvcnkzNTIyNzE4MQ==", + "name": "compound-slaves-plugin", + "full_name": "jenkinsci/compound-slaves-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/compound-slaves-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/compound-slaves-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/compound-slaves-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/compound-slaves-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/compound-slaves-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/compound-slaves-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/compound-slaves-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/compound-slaves-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/compound-slaves-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/compound-slaves-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/compound-slaves-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/compound-slaves-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/compound-slaves-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/compound-slaves-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/compound-slaves-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/compound-slaves-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/compound-slaves-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/compound-slaves-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/compound-slaves-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/compound-slaves-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/compound-slaves-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/compound-slaves-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/compound-slaves-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/compound-slaves-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/compound-slaves-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/compound-slaves-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/compound-slaves-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/compound-slaves-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/compound-slaves-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/compound-slaves-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/compound-slaves-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/compound-slaves-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/compound-slaves-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/compound-slaves-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/compound-slaves-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/compound-slaves-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/compound-slaves-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/compound-slaves-plugin/deployments", + "created_at": "2015-05-07T15:13:51Z", + "updated_at": "2016-04-26T12:34:28Z", + "pushed_at": "2019-10-08T16:20:43Z", + "git_url": "git://github.com/jenkinsci/compound-slaves-plugin.git", + "ssh_url": "git@github.com:jenkinsci/compound-slaves-plugin.git", + "clone_url": "https://github.com/jenkinsci/compound-slaves-plugin.git", + "svn_url": "https://github.com/jenkinsci/compound-slaves-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Compound+Slaves", + "size": 66, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 4, + "license": null, + "forks": 3, + "open_issues": 4, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 35943354, + "node_id": "MDEwOlJlcG9zaXRvcnkzNTk0MzM1NA==", + "name": "optional-plugin-helper-module", + "full_name": "jenkinsci/optional-plugin-helper-module", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/optional-plugin-helper-module", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/optional-plugin-helper-module", + "forks_url": "https://api.github.com/repos/jenkinsci/optional-plugin-helper-module/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/optional-plugin-helper-module/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/optional-plugin-helper-module/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/optional-plugin-helper-module/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/optional-plugin-helper-module/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/optional-plugin-helper-module/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/optional-plugin-helper-module/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/optional-plugin-helper-module/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/optional-plugin-helper-module/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/optional-plugin-helper-module/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/optional-plugin-helper-module/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/optional-plugin-helper-module/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/optional-plugin-helper-module/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/optional-plugin-helper-module/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/optional-plugin-helper-module/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/optional-plugin-helper-module/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/optional-plugin-helper-module/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/optional-plugin-helper-module/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/optional-plugin-helper-module/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/optional-plugin-helper-module/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/optional-plugin-helper-module/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/optional-plugin-helper-module/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/optional-plugin-helper-module/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/optional-plugin-helper-module/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/optional-plugin-helper-module/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/optional-plugin-helper-module/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/optional-plugin-helper-module/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/optional-plugin-helper-module/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/optional-plugin-helper-module/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/optional-plugin-helper-module/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/optional-plugin-helper-module/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/optional-plugin-helper-module/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/optional-plugin-helper-module/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/optional-plugin-helper-module/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/optional-plugin-helper-module/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/optional-plugin-helper-module/deployments", + "created_at": "2015-05-20T11:15:18Z", + "updated_at": "2016-02-28T19:34:04Z", + "pushed_at": "2016-10-04T16:19:59Z", + "git_url": "git://github.com/jenkinsci/optional-plugin-helper-module.git", + "ssh_url": "git@github.com:jenkinsci/optional-plugin-helper-module.git", + "clone_url": "https://github.com/jenkinsci/optional-plugin-helper-module.git", + "svn_url": "https://github.com/jenkinsci/optional-plugin-helper-module", + "homepage": "", + "size": 21, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 3, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 35945181, + "node_id": "MDEwOlJlcG9zaXRvcnkzNTk0NTE4MQ==", + "name": "dockerhub-notification-plugin", + "full_name": "jenkinsci/dockerhub-notification-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/dockerhub-notification-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/dockerhub-notification-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/dockerhub-notification-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/dockerhub-notification-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/dockerhub-notification-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/dockerhub-notification-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/dockerhub-notification-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/dockerhub-notification-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/dockerhub-notification-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/dockerhub-notification-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/dockerhub-notification-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/dockerhub-notification-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/dockerhub-notification-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/dockerhub-notification-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/dockerhub-notification-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/dockerhub-notification-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/dockerhub-notification-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/dockerhub-notification-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/dockerhub-notification-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/dockerhub-notification-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/dockerhub-notification-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/dockerhub-notification-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/dockerhub-notification-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/dockerhub-notification-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/dockerhub-notification-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/dockerhub-notification-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/dockerhub-notification-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/dockerhub-notification-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/dockerhub-notification-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/dockerhub-notification-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/dockerhub-notification-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/dockerhub-notification-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/dockerhub-notification-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/dockerhub-notification-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/dockerhub-notification-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/dockerhub-notification-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/dockerhub-notification-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/dockerhub-notification-plugin/deployments", + "created_at": "2015-05-20T11:59:51Z", + "updated_at": "2019-07-15T19:07:12Z", + "pushed_at": "2019-04-28T03:44:21Z", + "git_url": "git://github.com/jenkinsci/dockerhub-notification-plugin.git", + "ssh_url": "git@github.com:jenkinsci/dockerhub-notification-plugin.git", + "clone_url": "https://github.com/jenkinsci/dockerhub-notification-plugin.git", + "svn_url": "https://github.com/jenkinsci/dockerhub-notification-plugin", + "homepage": "", + "size": 519, + "stargazers_count": 38, + "watchers_count": 38, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 32, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 32, + "open_issues": 2, + "watchers": 38, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 36084903, + "node_id": "MDEwOlJlcG9zaXRvcnkzNjA4NDkwMw==", + "name": "docker-traceability-plugin", + "full_name": "jenkinsci/docker-traceability-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/docker-traceability-plugin", + "description": "CloudBees Docker Traceability Plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/docker-traceability-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/docker-traceability-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/docker-traceability-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/docker-traceability-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/docker-traceability-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/docker-traceability-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/docker-traceability-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/docker-traceability-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/docker-traceability-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/docker-traceability-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/docker-traceability-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/docker-traceability-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/docker-traceability-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/docker-traceability-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/docker-traceability-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/docker-traceability-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/docker-traceability-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/docker-traceability-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/docker-traceability-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/docker-traceability-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/docker-traceability-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/docker-traceability-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/docker-traceability-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/docker-traceability-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/docker-traceability-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/docker-traceability-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/docker-traceability-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/docker-traceability-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/docker-traceability-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/docker-traceability-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/docker-traceability-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/docker-traceability-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/docker-traceability-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/docker-traceability-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/docker-traceability-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/docker-traceability-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/docker-traceability-plugin/deployments", + "created_at": "2015-05-22T17:08:11Z", + "updated_at": "2019-09-22T18:20:49Z", + "pushed_at": "2019-10-08T11:53:01Z", + "git_url": "git://github.com/jenkinsci/docker-traceability-plugin.git", + "ssh_url": "git@github.com:jenkinsci/docker-traceability-plugin.git", + "clone_url": "https://github.com/jenkinsci/docker-traceability-plugin.git", + "svn_url": "https://github.com/jenkinsci/docker-traceability-plugin", + "homepage": "", + "size": 1456, + "stargazers_count": 15, + "watchers_count": 15, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 18, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 18, + "open_issues": 3, + "watchers": 15, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 36364347, + "node_id": "MDEwOlJlcG9zaXRvcnkzNjM2NDM0Nw==", + "name": "seed-plugin", + "full_name": "jenkinsci/seed-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/seed-plugin", + "description": "Seed Jenkins plug-in", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/seed-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/seed-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/seed-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/seed-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/seed-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/seed-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/seed-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/seed-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/seed-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/seed-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/seed-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/seed-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/seed-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/seed-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/seed-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/seed-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/seed-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/seed-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/seed-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/seed-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/seed-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/seed-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/seed-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/seed-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/seed-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/seed-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/seed-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/seed-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/seed-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/seed-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/seed-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/seed-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/seed-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/seed-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/seed-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/seed-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/seed-plugin/deployments", + "created_at": "2015-05-27T12:08:31Z", + "updated_at": "2019-09-18T06:59:50Z", + "pushed_at": "2019-07-12T10:19:43Z", + "git_url": "git://github.com/jenkinsci/seed-plugin.git", + "ssh_url": "git@github.com:jenkinsci/seed-plugin.git", + "clone_url": "https://github.com/jenkinsci/seed-plugin.git", + "svn_url": "https://github.com/jenkinsci/seed-plugin", + "homepage": null, + "size": 5928, + "stargazers_count": 39, + "watchers_count": 39, + "language": "Groovy", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 12, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 7, + "license": null, + "forks": 12, + "open_issues": 7, + "watchers": 39, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 36385785, + "node_id": "MDEwOlJlcG9zaXRvcnkzNjM4NTc4NQ==", + "name": "docker-workflow-plugin", + "full_name": "jenkinsci/docker-workflow-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/docker-workflow-plugin", + "description": "Jenkins plugin which allows building, testing, and using Docker images from Jenkins Pipeline projects.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/docker-workflow-plugin/deployments", + "created_at": "2015-05-27T18:02:51Z", + "updated_at": "2019-10-22T21:25:54Z", + "pushed_at": "2019-10-22T08:04:08Z", + "git_url": "git://github.com/jenkinsci/docker-workflow-plugin.git", + "ssh_url": "git@github.com:jenkinsci/docker-workflow-plugin.git", + "clone_url": "https://github.com/jenkinsci/docker-workflow-plugin.git", + "svn_url": "https://github.com/jenkinsci/docker-workflow-plugin", + "homepage": "https://plugins.jenkins.io/docker-workflow", + "size": 632, + "stargazers_count": 339, + "watchers_count": 339, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 298, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 30, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 298, + "open_issues": 30, + "watchers": 339, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 36725316, + "node_id": "MDEwOlJlcG9zaXRvcnkzNjcyNTMxNg==", + "name": "redgate-sql-ci-plugin", + "full_name": "jenkinsci/redgate-sql-ci-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/redgate-sql-ci-plugin", + "description": "Redgate SQL CI plugin for Jenkins", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/redgate-sql-ci-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/redgate-sql-ci-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/redgate-sql-ci-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/redgate-sql-ci-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/redgate-sql-ci-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/redgate-sql-ci-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/redgate-sql-ci-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/redgate-sql-ci-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/redgate-sql-ci-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/redgate-sql-ci-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/redgate-sql-ci-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/redgate-sql-ci-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/redgate-sql-ci-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/redgate-sql-ci-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/redgate-sql-ci-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/redgate-sql-ci-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/redgate-sql-ci-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/redgate-sql-ci-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/redgate-sql-ci-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/redgate-sql-ci-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/redgate-sql-ci-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/redgate-sql-ci-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/redgate-sql-ci-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/redgate-sql-ci-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/redgate-sql-ci-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/redgate-sql-ci-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/redgate-sql-ci-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/redgate-sql-ci-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/redgate-sql-ci-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/redgate-sql-ci-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/redgate-sql-ci-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/redgate-sql-ci-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/redgate-sql-ci-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/redgate-sql-ci-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/redgate-sql-ci-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/redgate-sql-ci-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/redgate-sql-ci-plugin/deployments", + "created_at": "2015-06-02T10:18:53Z", + "updated_at": "2019-07-31T11:36:00Z", + "pushed_at": "2019-10-08T16:38:28Z", + "git_url": "git://github.com/jenkinsci/redgate-sql-ci-plugin.git", + "ssh_url": "git@github.com:jenkinsci/redgate-sql-ci-plugin.git", + "clone_url": "https://github.com/jenkinsci/redgate-sql-ci-plugin.git", + "svn_url": "https://github.com/jenkinsci/redgate-sql-ci-plugin", + "homepage": null, + "size": 160, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 8, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 4, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 8, + "open_issues": 4, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 36727323, + "node_id": "MDEwOlJlcG9zaXRvcnkzNjcyNzMyMw==", + "name": "phabricator-plugin", + "full_name": "jenkinsci/phabricator-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/phabricator-plugin", + "description": "Jenkins plugin to integrate with Phabricator, Harbormaster, and Uberalls", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/phabricator-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/phabricator-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/phabricator-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/phabricator-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/phabricator-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/phabricator-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/phabricator-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/phabricator-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/phabricator-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/phabricator-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/phabricator-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/phabricator-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/phabricator-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/phabricator-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/phabricator-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/phabricator-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/phabricator-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/phabricator-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/phabricator-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/phabricator-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/phabricator-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/phabricator-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/phabricator-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/phabricator-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/phabricator-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/phabricator-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/phabricator-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/phabricator-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/phabricator-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/phabricator-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/phabricator-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/phabricator-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/phabricator-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/phabricator-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/phabricator-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/phabricator-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/phabricator-plugin/deployments", + "created_at": "2015-06-02T11:03:00Z", + "updated_at": "2019-07-15T12:05:13Z", + "pushed_at": "2019-10-08T12:27:40Z", + "git_url": "git://github.com/jenkinsci/phabricator-plugin.git", + "ssh_url": "git@github.com:jenkinsci/phabricator-plugin.git", + "clone_url": "https://github.com/jenkinsci/phabricator-plugin.git", + "svn_url": "https://github.com/jenkinsci/phabricator-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Phabricator+Differential+Plugin", + "size": 2145, + "stargazers_count": 21, + "watchers_count": 21, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 9, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 9, + "open_issues": 1, + "watchers": 21, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 36769119, + "node_id": "MDEwOlJlcG9zaXRvcnkzNjc2OTExOQ==", + "name": "cors-filter-plugin", + "full_name": "jenkinsci/cors-filter-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/cors-filter-plugin", + "description": "Plugin to support Cross-site HTTP requests on Jenkins", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/cors-filter-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/cors-filter-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/cors-filter-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/cors-filter-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/cors-filter-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/cors-filter-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/cors-filter-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/cors-filter-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/cors-filter-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/cors-filter-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/cors-filter-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/cors-filter-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/cors-filter-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/cors-filter-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/cors-filter-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/cors-filter-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/cors-filter-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/cors-filter-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/cors-filter-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/cors-filter-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/cors-filter-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/cors-filter-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/cors-filter-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/cors-filter-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/cors-filter-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/cors-filter-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/cors-filter-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/cors-filter-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/cors-filter-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/cors-filter-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/cors-filter-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/cors-filter-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/cors-filter-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/cors-filter-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/cors-filter-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/cors-filter-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/cors-filter-plugin/deployments", + "created_at": "2015-06-03T00:06:22Z", + "updated_at": "2019-04-17T10:33:07Z", + "pushed_at": "2019-10-08T11:27:06Z", + "git_url": "git://github.com/jenkinsci/cors-filter-plugin.git", + "ssh_url": "git@github.com:jenkinsci/cors-filter-plugin.git", + "clone_url": "https://github.com/jenkinsci/cors-filter-plugin.git", + "svn_url": "https://github.com/jenkinsci/cors-filter-plugin", + "homepage": null, + "size": 17, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 12, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 4, + "license": null, + "forks": 12, + "open_issues": 4, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 36930756, + "node_id": "MDEwOlJlcG9zaXRvcnkzNjkzMDc1Ng==", + "name": "codesonar-plugin", + "full_name": "jenkinsci/codesonar-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/codesonar-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/codesonar-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/codesonar-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/codesonar-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/codesonar-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/codesonar-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/codesonar-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/codesonar-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/codesonar-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/codesonar-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/codesonar-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/codesonar-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/codesonar-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/codesonar-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/codesonar-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/codesonar-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/codesonar-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/codesonar-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/codesonar-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/codesonar-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/codesonar-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/codesonar-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/codesonar-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/codesonar-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/codesonar-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/codesonar-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/codesonar-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/codesonar-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/codesonar-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/codesonar-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/codesonar-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/codesonar-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/codesonar-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/codesonar-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/codesonar-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/codesonar-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/codesonar-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/codesonar-plugin/deployments", + "created_at": "2015-06-05T12:08:14Z", + "updated_at": "2019-09-23T02:22:37Z", + "pushed_at": "2019-05-28T12:40:27Z", + "git_url": "git://github.com/jenkinsci/codesonar-plugin.git", + "ssh_url": "git@github.com:jenkinsci/codesonar-plugin.git", + "clone_url": "https://github.com/jenkinsci/codesonar-plugin.git", + "svn_url": "https://github.com/jenkinsci/codesonar-plugin", + "homepage": null, + "size": 904, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Shell", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 5, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 37262556, + "node_id": "MDEwOlJlcG9zaXRvcnkzNzI2MjU1Ng==", + "name": "google-container-registry-auth-plugin", + "full_name": "jenkinsci/google-container-registry-auth-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/google-container-registry-auth-plugin", + "description": "Jenkins plugin which allows authentication against Google Container Registry", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/google-container-registry-auth-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/google-container-registry-auth-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/google-container-registry-auth-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/google-container-registry-auth-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/google-container-registry-auth-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/google-container-registry-auth-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/google-container-registry-auth-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/google-container-registry-auth-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/google-container-registry-auth-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/google-container-registry-auth-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/google-container-registry-auth-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/google-container-registry-auth-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/google-container-registry-auth-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/google-container-registry-auth-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/google-container-registry-auth-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/google-container-registry-auth-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/google-container-registry-auth-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/google-container-registry-auth-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/google-container-registry-auth-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/google-container-registry-auth-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/google-container-registry-auth-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/google-container-registry-auth-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/google-container-registry-auth-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/google-container-registry-auth-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/google-container-registry-auth-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/google-container-registry-auth-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/google-container-registry-auth-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/google-container-registry-auth-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/google-container-registry-auth-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/google-container-registry-auth-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/google-container-registry-auth-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/google-container-registry-auth-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/google-container-registry-auth-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/google-container-registry-auth-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/google-container-registry-auth-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/google-container-registry-auth-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/google-container-registry-auth-plugin/deployments", + "created_at": "2015-06-11T13:28:02Z", + "updated_at": "2017-10-25T09:49:44Z", + "pushed_at": "2019-10-08T11:52:25Z", + "git_url": "git://github.com/jenkinsci/google-container-registry-auth-plugin.git", + "ssh_url": "git@github.com:jenkinsci/google-container-registry-auth-plugin.git", + "clone_url": "https://github.com/jenkinsci/google-container-registry-auth-plugin.git", + "svn_url": "https://github.com/jenkinsci/google-container-registry-auth-plugin", + "homepage": null, + "size": 43, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 6, + "open_issues": 2, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 37621420, + "node_id": "MDEwOlJlcG9zaXRvcnkzNzYyMTQyMA==", + "name": "jianliao-plugin", + "full_name": "jenkinsci/jianliao-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jianliao-plugin", + "description": "A Jenkins CI plugin for talk.ai", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/jianliao-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/jianliao-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jianliao-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jianliao-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jianliao-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jianliao-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jianliao-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jianliao-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jianliao-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jianliao-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jianliao-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jianliao-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jianliao-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jianliao-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jianliao-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jianliao-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jianliao-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jianliao-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jianliao-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jianliao-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jianliao-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jianliao-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jianliao-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jianliao-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jianliao-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jianliao-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jianliao-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jianliao-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jianliao-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jianliao-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jianliao-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jianliao-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jianliao-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jianliao-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jianliao-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jianliao-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jianliao-plugin/deployments", + "created_at": "2015-06-17T21:17:42Z", + "updated_at": "2015-06-17T21:17:58Z", + "pushed_at": "2015-06-25T01:25:30Z", + "git_url": "git://github.com/jenkinsci/jianliao-plugin.git", + "ssh_url": "git@github.com:jenkinsci/jianliao-plugin.git", + "clone_url": "https://github.com/jenkinsci/jianliao-plugin.git", + "svn_url": "https://github.com/jenkinsci/jianliao-plugin", + "homepage": null, + "size": 258, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 37853522, + "node_id": "MDEwOlJlcG9zaXRvcnkzNzg1MzUyMg==", + "name": "xcp-ci-plugin", + "full_name": "jenkinsci/xcp-ci-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/xcp-ci-plugin", + "description": "Documentum xCP Plugin for jenkins", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/xcp-ci-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/xcp-ci-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/xcp-ci-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/xcp-ci-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/xcp-ci-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/xcp-ci-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/xcp-ci-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/xcp-ci-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/xcp-ci-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/xcp-ci-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/xcp-ci-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/xcp-ci-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/xcp-ci-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/xcp-ci-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/xcp-ci-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/xcp-ci-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/xcp-ci-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/xcp-ci-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/xcp-ci-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/xcp-ci-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/xcp-ci-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/xcp-ci-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/xcp-ci-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/xcp-ci-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/xcp-ci-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/xcp-ci-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/xcp-ci-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/xcp-ci-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/xcp-ci-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/xcp-ci-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/xcp-ci-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/xcp-ci-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/xcp-ci-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/xcp-ci-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/xcp-ci-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/xcp-ci-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/xcp-ci-plugin/deployments", + "created_at": "2015-06-22T12:17:40Z", + "updated_at": "2016-03-02T21:23:25Z", + "pushed_at": "2016-03-22T22:22:25Z", + "git_url": "git://github.com/jenkinsci/xcp-ci-plugin.git", + "ssh_url": "git@github.com:jenkinsci/xcp-ci-plugin.git", + "clone_url": "https://github.com/jenkinsci/xcp-ci-plugin.git", + "svn_url": "https://github.com/jenkinsci/xcp-ci-plugin", + "homepage": null, + "size": 130, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 37857429, + "node_id": "MDEwOlJlcG9zaXRvcnkzNzg1NzQyOQ==", + "name": "compatibility-action-storage-plugin", + "full_name": "jenkinsci/compatibility-action-storage-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/compatibility-action-storage-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/compatibility-action-storage-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/compatibility-action-storage-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/compatibility-action-storage-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/compatibility-action-storage-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/compatibility-action-storage-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/compatibility-action-storage-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/compatibility-action-storage-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/compatibility-action-storage-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/compatibility-action-storage-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/compatibility-action-storage-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/compatibility-action-storage-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/compatibility-action-storage-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/compatibility-action-storage-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/compatibility-action-storage-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/compatibility-action-storage-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/compatibility-action-storage-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/compatibility-action-storage-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/compatibility-action-storage-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/compatibility-action-storage-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/compatibility-action-storage-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/compatibility-action-storage-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/compatibility-action-storage-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/compatibility-action-storage-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/compatibility-action-storage-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/compatibility-action-storage-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/compatibility-action-storage-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/compatibility-action-storage-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/compatibility-action-storage-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/compatibility-action-storage-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/compatibility-action-storage-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/compatibility-action-storage-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/compatibility-action-storage-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/compatibility-action-storage-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/compatibility-action-storage-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/compatibility-action-storage-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/compatibility-action-storage-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/compatibility-action-storage-plugin/deployments", + "created_at": "2015-06-22T13:41:51Z", + "updated_at": "2015-06-22T13:42:05Z", + "pushed_at": "2019-10-08T16:28:16Z", + "git_url": "git://github.com/jenkinsci/compatibility-action-storage-plugin.git", + "ssh_url": "git@github.com:jenkinsci/compatibility-action-storage-plugin.git", + "clone_url": "https://github.com/jenkinsci/compatibility-action-storage-plugin.git", + "svn_url": "https://github.com/jenkinsci/compatibility-action-storage-plugin", + "homepage": null, + "size": 103, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 1, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 38496733, + "node_id": "MDEwOlJlcG9zaXRvcnkzODQ5NjczMw==", + "name": "statistics-notification-plugin", + "full_name": "jenkinsci/statistics-notification-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/statistics-notification-plugin", + "description": "Jenkins plugin to capture queue and build statistics", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/statistics-notification-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/statistics-notification-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/statistics-notification-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/statistics-notification-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/statistics-notification-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/statistics-notification-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/statistics-notification-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/statistics-notification-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/statistics-notification-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/statistics-notification-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/statistics-notification-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/statistics-notification-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/statistics-notification-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/statistics-notification-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/statistics-notification-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/statistics-notification-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/statistics-notification-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/statistics-notification-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/statistics-notification-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/statistics-notification-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/statistics-notification-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/statistics-notification-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/statistics-notification-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/statistics-notification-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/statistics-notification-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/statistics-notification-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/statistics-notification-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/statistics-notification-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/statistics-notification-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/statistics-notification-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/statistics-notification-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/statistics-notification-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/statistics-notification-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/statistics-notification-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/statistics-notification-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/statistics-notification-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/statistics-notification-plugin/deployments", + "created_at": "2015-07-03T14:29:57Z", + "updated_at": "2015-08-25T05:38:44Z", + "pushed_at": "2016-06-22T13:30:08Z", + "git_url": "git://github.com/jenkinsci/statistics-notification-plugin.git", + "ssh_url": "git@github.com:jenkinsci/statistics-notification-plugin.git", + "clone_url": "https://github.com/jenkinsci/statistics-notification-plugin.git", + "svn_url": "https://github.com/jenkinsci/statistics-notification-plugin", + "homepage": null, + "size": 127, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 6, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 38497045, + "node_id": "MDEwOlJlcG9zaXRvcnkzODQ5NzA0NQ==", + "name": "embed-grafana-graph-plugin", + "full_name": "jenkinsci/embed-grafana-graph-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/embed-grafana-graph-plugin", + "description": "Grafana Plugin for Jenkins", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/embed-grafana-graph-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/embed-grafana-graph-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/embed-grafana-graph-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/embed-grafana-graph-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/embed-grafana-graph-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/embed-grafana-graph-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/embed-grafana-graph-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/embed-grafana-graph-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/embed-grafana-graph-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/embed-grafana-graph-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/embed-grafana-graph-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/embed-grafana-graph-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/embed-grafana-graph-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/embed-grafana-graph-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/embed-grafana-graph-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/embed-grafana-graph-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/embed-grafana-graph-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/embed-grafana-graph-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/embed-grafana-graph-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/embed-grafana-graph-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/embed-grafana-graph-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/embed-grafana-graph-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/embed-grafana-graph-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/embed-grafana-graph-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/embed-grafana-graph-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/embed-grafana-graph-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/embed-grafana-graph-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/embed-grafana-graph-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/embed-grafana-graph-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/embed-grafana-graph-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/embed-grafana-graph-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/embed-grafana-graph-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/embed-grafana-graph-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/embed-grafana-graph-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/embed-grafana-graph-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/embed-grafana-graph-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/embed-grafana-graph-plugin/deployments", + "created_at": "2015-07-03T14:36:44Z", + "updated_at": "2015-07-03T14:36:58Z", + "pushed_at": "2015-07-03T18:46:49Z", + "git_url": "git://github.com/jenkinsci/embed-grafana-graph-plugin.git", + "ssh_url": "git@github.com:jenkinsci/embed-grafana-graph-plugin.git", + "clone_url": "https://github.com/jenkinsci/embed-grafana-graph-plugin.git", + "svn_url": "https://github.com/jenkinsci/embed-grafana-graph-plugin", + "homepage": "", + "size": 120, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 38529318, + "node_id": "MDEwOlJlcG9zaXRvcnkzODUyOTMxOA==", + "name": "parameter-pool-plugin", + "full_name": "jenkinsci/parameter-pool-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/parameter-pool-plugin", + "description": "Jenkins plugin for selecting a unique parameter from a parameter pool", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/parameter-pool-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/parameter-pool-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/parameter-pool-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/parameter-pool-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/parameter-pool-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/parameter-pool-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/parameter-pool-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/parameter-pool-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/parameter-pool-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/parameter-pool-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/parameter-pool-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/parameter-pool-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/parameter-pool-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/parameter-pool-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/parameter-pool-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/parameter-pool-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/parameter-pool-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/parameter-pool-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/parameter-pool-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/parameter-pool-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/parameter-pool-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/parameter-pool-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/parameter-pool-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/parameter-pool-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/parameter-pool-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/parameter-pool-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/parameter-pool-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/parameter-pool-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/parameter-pool-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/parameter-pool-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/parameter-pool-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/parameter-pool-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/parameter-pool-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/parameter-pool-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/parameter-pool-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/parameter-pool-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/parameter-pool-plugin/deployments", + "created_at": "2015-07-04T09:44:37Z", + "updated_at": "2017-08-04T18:54:00Z", + "pushed_at": "2019-10-08T16:33:25Z", + "git_url": "git://github.com/jenkinsci/parameter-pool-plugin.git", + "ssh_url": "git@github.com:jenkinsci/parameter-pool-plugin.git", + "clone_url": "https://github.com/jenkinsci/parameter-pool-plugin.git", + "svn_url": "https://github.com/jenkinsci/parameter-pool-plugin", + "homepage": null, + "size": 26, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 4, + "open_issues": 1, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 38718847, + "node_id": "MDEwOlJlcG9zaXRvcnkzODcxODg0Nw==", + "name": "jenkinslint-plugin", + "full_name": "jenkinsci/jenkinslint-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jenkinslint-plugin", + "description": " Checks Jenkins Jobs for practices and behaviour that could potentially be improved.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/jenkinslint-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/jenkinslint-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jenkinslint-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jenkinslint-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jenkinslint-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jenkinslint-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jenkinslint-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jenkinslint-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jenkinslint-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jenkinslint-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jenkinslint-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jenkinslint-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jenkinslint-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jenkinslint-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jenkinslint-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jenkinslint-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jenkinslint-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jenkinslint-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jenkinslint-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jenkinslint-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jenkinslint-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jenkinslint-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jenkinslint-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jenkinslint-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jenkinslint-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jenkinslint-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jenkinslint-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jenkinslint-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jenkinslint-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jenkinslint-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jenkinslint-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jenkinslint-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jenkinslint-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jenkinslint-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jenkinslint-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jenkinslint-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jenkinslint-plugin/deployments", + "created_at": "2015-07-07T22:46:04Z", + "updated_at": "2016-09-29T21:11:54Z", + "pushed_at": "2019-10-08T12:40:11Z", + "git_url": "git://github.com/jenkinsci/jenkinslint-plugin.git", + "ssh_url": "git@github.com:jenkinsci/jenkinslint-plugin.git", + "clone_url": "https://github.com/jenkinsci/jenkinslint-plugin.git", + "svn_url": "https://github.com/jenkinsci/jenkinslint-plugin", + "homepage": null, + "size": 389, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 6, + "open_issues": 3, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 38734392, + "node_id": "MDEwOlJlcG9zaXRvcnkzODczNDM5Mg==", + "name": "gcloud-sdk-plugin", + "full_name": "jenkinsci/gcloud-sdk-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/gcloud-sdk-plugin", + "description": "GCloud SDK Plugin allows users to invoke gcloud tools with jenkins credentials", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/gcloud-sdk-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/gcloud-sdk-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/gcloud-sdk-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/gcloud-sdk-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/gcloud-sdk-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/gcloud-sdk-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/gcloud-sdk-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/gcloud-sdk-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/gcloud-sdk-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/gcloud-sdk-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/gcloud-sdk-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/gcloud-sdk-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/gcloud-sdk-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/gcloud-sdk-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/gcloud-sdk-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/gcloud-sdk-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/gcloud-sdk-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/gcloud-sdk-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/gcloud-sdk-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/gcloud-sdk-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/gcloud-sdk-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/gcloud-sdk-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/gcloud-sdk-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/gcloud-sdk-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/gcloud-sdk-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/gcloud-sdk-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/gcloud-sdk-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/gcloud-sdk-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/gcloud-sdk-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/gcloud-sdk-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/gcloud-sdk-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/gcloud-sdk-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/gcloud-sdk-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/gcloud-sdk-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/gcloud-sdk-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/gcloud-sdk-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/gcloud-sdk-plugin/deployments", + "created_at": "2015-07-08T05:41:41Z", + "updated_at": "2019-10-22T15:35:30Z", + "pushed_at": "2019-10-22T15:35:28Z", + "git_url": "git://github.com/jenkinsci/gcloud-sdk-plugin.git", + "ssh_url": "git@github.com:jenkinsci/gcloud-sdk-plugin.git", + "clone_url": "https://github.com/jenkinsci/gcloud-sdk-plugin.git", + "svn_url": "https://github.com/jenkinsci/gcloud-sdk-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/GCloud+SDK+Plugin", + "size": 47, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 11, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 11, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 38901835, + "node_id": "MDEwOlJlcG9zaXRvcnkzODkwMTgzNQ==", + "name": "octopusdeploy-plugin", + "full_name": "jenkinsci/octopusdeploy-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/octopusdeploy-plugin", + "description": "Jenkins plugin which integrates with Octopus Deploy", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/octopusdeploy-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/octopusdeploy-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/octopusdeploy-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/octopusdeploy-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/octopusdeploy-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/octopusdeploy-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/octopusdeploy-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/octopusdeploy-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/octopusdeploy-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/octopusdeploy-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/octopusdeploy-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/octopusdeploy-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/octopusdeploy-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/octopusdeploy-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/octopusdeploy-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/octopusdeploy-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/octopusdeploy-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/octopusdeploy-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/octopusdeploy-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/octopusdeploy-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/octopusdeploy-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/octopusdeploy-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/octopusdeploy-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/octopusdeploy-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/octopusdeploy-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/octopusdeploy-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/octopusdeploy-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/octopusdeploy-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/octopusdeploy-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/octopusdeploy-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/octopusdeploy-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/octopusdeploy-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/octopusdeploy-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/octopusdeploy-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/octopusdeploy-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/octopusdeploy-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/octopusdeploy-plugin/deployments", + "created_at": "2015-07-10T20:59:24Z", + "updated_at": "2019-06-26T20:13:28Z", + "pushed_at": "2018-11-05T17:46:55Z", + "git_url": "git://github.com/jenkinsci/octopusdeploy-plugin.git", + "ssh_url": "git@github.com:jenkinsci/octopusdeploy-plugin.git", + "clone_url": "https://github.com/jenkinsci/octopusdeploy-plugin.git", + "svn_url": "https://github.com/jenkinsci/octopusdeploy-plugin", + "homepage": null, + "size": 258, + "stargazers_count": 9, + "watchers_count": 9, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 9, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 9, + "open_issues": 0, + "watchers": 9, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 39056306, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTA1NjMwNg==", + "name": "zephyr-enterprise-test-management-plugin", + "full_name": "jenkinsci/zephyr-enterprise-test-management-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/zephyr-enterprise-test-management-plugin", + "description": "Zephyr Enterprise Test Management connector for Jenkins", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/zephyr-enterprise-test-management-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/zephyr-enterprise-test-management-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/zephyr-enterprise-test-management-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/zephyr-enterprise-test-management-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/zephyr-enterprise-test-management-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/zephyr-enterprise-test-management-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/zephyr-enterprise-test-management-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/zephyr-enterprise-test-management-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/zephyr-enterprise-test-management-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/zephyr-enterprise-test-management-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/zephyr-enterprise-test-management-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/zephyr-enterprise-test-management-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/zephyr-enterprise-test-management-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/zephyr-enterprise-test-management-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/zephyr-enterprise-test-management-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/zephyr-enterprise-test-management-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/zephyr-enterprise-test-management-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/zephyr-enterprise-test-management-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/zephyr-enterprise-test-management-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/zephyr-enterprise-test-management-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/zephyr-enterprise-test-management-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/zephyr-enterprise-test-management-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/zephyr-enterprise-test-management-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/zephyr-enterprise-test-management-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/zephyr-enterprise-test-management-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/zephyr-enterprise-test-management-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/zephyr-enterprise-test-management-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/zephyr-enterprise-test-management-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/zephyr-enterprise-test-management-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/zephyr-enterprise-test-management-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/zephyr-enterprise-test-management-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/zephyr-enterprise-test-management-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/zephyr-enterprise-test-management-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/zephyr-enterprise-test-management-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/zephyr-enterprise-test-management-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/zephyr-enterprise-test-management-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/zephyr-enterprise-test-management-plugin/deployments", + "created_at": "2015-07-14T05:50:45Z", + "updated_at": "2019-06-28T05:52:27Z", + "pushed_at": "2019-06-28T05:52:25Z", + "git_url": "git://github.com/jenkinsci/zephyr-enterprise-test-management-plugin.git", + "ssh_url": "git@github.com:jenkinsci/zephyr-enterprise-test-management-plugin.git", + "clone_url": "https://github.com/jenkinsci/zephyr-enterprise-test-management-plugin.git", + "svn_url": "https://github.com/jenkinsci/zephyr-enterprise-test-management-plugin", + "homepage": null, + "size": 229, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 7, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 7, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 39159095, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTE1OTA5NQ==", + "name": "qftest-plugin", + "full_name": "jenkinsci/qftest-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/qftest-plugin", + "description": "Allows users to run QF-Test suites as part of the build step.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/qftest-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/qftest-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/qftest-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/qftest-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/qftest-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/qftest-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/qftest-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/qftest-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/qftest-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/qftest-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/qftest-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/qftest-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/qftest-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/qftest-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/qftest-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/qftest-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/qftest-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/qftest-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/qftest-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/qftest-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/qftest-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/qftest-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/qftest-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/qftest-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/qftest-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/qftest-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/qftest-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/qftest-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/qftest-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/qftest-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/qftest-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/qftest-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/qftest-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/qftest-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/qftest-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/qftest-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/qftest-plugin/deployments", + "created_at": "2015-07-15T20:19:04Z", + "updated_at": "2018-07-17T07:51:12Z", + "pushed_at": "2018-07-19T10:22:07Z", + "git_url": "git://github.com/jenkinsci/qftest-plugin.git", + "ssh_url": "git@github.com:jenkinsci/qftest-plugin.git", + "clone_url": "https://github.com/jenkinsci/qftest-plugin.git", + "svn_url": "https://github.com/jenkinsci/qftest-plugin", + "homepage": "", + "size": 82, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 39188044, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTE4ODA0NA==", + "name": "piketec-tpt-plugin", + "full_name": "jenkinsci/piketec-tpt-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/piketec-tpt-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/piketec-tpt-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/piketec-tpt-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/piketec-tpt-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/piketec-tpt-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/piketec-tpt-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/piketec-tpt-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/piketec-tpt-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/piketec-tpt-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/piketec-tpt-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/piketec-tpt-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/piketec-tpt-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/piketec-tpt-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/piketec-tpt-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/piketec-tpt-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/piketec-tpt-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/piketec-tpt-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/piketec-tpt-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/piketec-tpt-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/piketec-tpt-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/piketec-tpt-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/piketec-tpt-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/piketec-tpt-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/piketec-tpt-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/piketec-tpt-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/piketec-tpt-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/piketec-tpt-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/piketec-tpt-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/piketec-tpt-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/piketec-tpt-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/piketec-tpt-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/piketec-tpt-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/piketec-tpt-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/piketec-tpt-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/piketec-tpt-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/piketec-tpt-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/piketec-tpt-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/piketec-tpt-plugin/deployments", + "created_at": "2015-07-16T09:18:54Z", + "updated_at": "2019-09-23T07:09:13Z", + "pushed_at": "2019-09-23T07:09:11Z", + "git_url": "git://github.com/jenkinsci/piketec-tpt-plugin.git", + "ssh_url": "git@github.com:jenkinsci/piketec-tpt-plugin.git", + "clone_url": "https://github.com/jenkinsci/piketec-tpt-plugin.git", + "svn_url": "https://github.com/jenkinsci/piketec-tpt-plugin", + "homepage": "https://wiki.jenkins.io/display/JENKINS/PikeTec+TPT+Plugin", + "size": 760, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 39239509, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTIzOTUwOQ==", + "name": "ez-templates-plugin", + "full_name": "jenkinsci/ez-templates-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/ez-templates-plugin", + "description": "A easy and seamless way to create and use templates in Jenkins.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/ez-templates-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/ez-templates-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/ez-templates-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/ez-templates-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/ez-templates-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/ez-templates-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/ez-templates-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/ez-templates-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/ez-templates-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/ez-templates-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/ez-templates-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/ez-templates-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/ez-templates-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/ez-templates-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/ez-templates-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/ez-templates-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/ez-templates-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/ez-templates-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/ez-templates-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/ez-templates-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/ez-templates-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/ez-templates-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/ez-templates-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/ez-templates-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/ez-templates-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/ez-templates-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/ez-templates-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/ez-templates-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/ez-templates-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/ez-templates-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/ez-templates-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/ez-templates-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/ez-templates-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/ez-templates-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/ez-templates-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/ez-templates-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/ez-templates-plugin/deployments", + "created_at": "2015-07-17T06:52:17Z", + "updated_at": "2019-04-18T07:59:25Z", + "pushed_at": "2018-12-29T11:32:11Z", + "git_url": "git://github.com/jenkinsci/ez-templates-plugin.git", + "ssh_url": "git@github.com:jenkinsci/ez-templates-plugin.git", + "clone_url": "https://github.com/jenkinsci/ez-templates-plugin.git", + "svn_url": "https://github.com/jenkinsci/ez-templates-plugin", + "homepage": null, + "size": 367, + "stargazers_count": 20, + "watchers_count": 20, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 9, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 9, + "open_issues": 1, + "watchers": 20, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 39461068, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTQ2MTA2OA==", + "name": "variant-plugin", + "full_name": "jenkinsci/variant-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/variant-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/variant-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/variant-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/variant-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/variant-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/variant-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/variant-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/variant-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/variant-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/variant-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/variant-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/variant-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/variant-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/variant-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/variant-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/variant-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/variant-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/variant-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/variant-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/variant-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/variant-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/variant-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/variant-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/variant-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/variant-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/variant-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/variant-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/variant-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/variant-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/variant-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/variant-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/variant-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/variant-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/variant-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/variant-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/variant-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/variant-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/variant-plugin/deployments", + "created_at": "2015-07-21T17:53:13Z", + "updated_at": "2019-07-29T19:35:45Z", + "pushed_at": "2019-09-24T09:37:46Z", + "git_url": "git://github.com/jenkinsci/variant-plugin.git", + "ssh_url": "git@github.com:jenkinsci/variant-plugin.git", + "clone_url": "https://github.com/jenkinsci/variant-plugin.git", + "svn_url": "https://github.com/jenkinsci/variant-plugin", + "homepage": "", + "size": 44, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 9, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 9, + "open_issues": 1, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 39514199, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTUxNDE5OQ==", + "name": "aws-device-farm-plugin", + "full_name": "jenkinsci/aws-device-farm-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/aws-device-farm-plugin", + "description": "Jenkins plugin for AWS Device Farm. ", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/aws-device-farm-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/aws-device-farm-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/aws-device-farm-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/aws-device-farm-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/aws-device-farm-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/aws-device-farm-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/aws-device-farm-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/aws-device-farm-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/aws-device-farm-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/aws-device-farm-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/aws-device-farm-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/aws-device-farm-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/aws-device-farm-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/aws-device-farm-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/aws-device-farm-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/aws-device-farm-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/aws-device-farm-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/aws-device-farm-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/aws-device-farm-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/aws-device-farm-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/aws-device-farm-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/aws-device-farm-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/aws-device-farm-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/aws-device-farm-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/aws-device-farm-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/aws-device-farm-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/aws-device-farm-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/aws-device-farm-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/aws-device-farm-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/aws-device-farm-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/aws-device-farm-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/aws-device-farm-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/aws-device-farm-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/aws-device-farm-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/aws-device-farm-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/aws-device-farm-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/aws-device-farm-plugin/deployments", + "created_at": "2015-07-22T15:32:01Z", + "updated_at": "2019-08-06T19:55:39Z", + "pushed_at": "2019-08-26T13:00:39Z", + "git_url": "git://github.com/jenkinsci/aws-device-farm-plugin.git", + "ssh_url": "git@github.com:jenkinsci/aws-device-farm-plugin.git", + "clone_url": "https://github.com/jenkinsci/aws-device-farm-plugin.git", + "svn_url": "https://github.com/jenkinsci/aws-device-farm-plugin", + "homepage": null, + "size": 1612, + "stargazers_count": 20, + "watchers_count": 20, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 9, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 4, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 9, + "open_issues": 4, + "watchers": 20, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 39532690, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTUzMjY5MA==", + "name": "nodejs-packages", + "full_name": "jenkinsci/nodejs-packages", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/nodejs-packages", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/nodejs-packages", + "forks_url": "https://api.github.com/repos/jenkinsci/nodejs-packages/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/nodejs-packages/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/nodejs-packages/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/nodejs-packages/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/nodejs-packages/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/nodejs-packages/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/nodejs-packages/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/nodejs-packages/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/nodejs-packages/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/nodejs-packages/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/nodejs-packages/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/nodejs-packages/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/nodejs-packages/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/nodejs-packages/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/nodejs-packages/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/nodejs-packages/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/nodejs-packages/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/nodejs-packages/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/nodejs-packages/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/nodejs-packages/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/nodejs-packages/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/nodejs-packages/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/nodejs-packages/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/nodejs-packages/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/nodejs-packages/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/nodejs-packages/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/nodejs-packages/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/nodejs-packages/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/nodejs-packages/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/nodejs-packages/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/nodejs-packages/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/nodejs-packages/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/nodejs-packages/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/nodejs-packages/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/nodejs-packages/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/nodejs-packages/deployments", + "created_at": "2015-07-22T22:07:17Z", + "updated_at": "2019-06-26T17:31:09Z", + "pushed_at": "2015-07-22T22:31:35Z", + "git_url": "git://github.com/jenkinsci/nodejs-packages.git", + "ssh_url": "git@github.com:jenkinsci/nodejs-packages.git", + "clone_url": "https://github.com/jenkinsci/nodejs-packages.git", + "svn_url": "https://github.com/jenkinsci/nodejs-packages", + "homepage": "", + "size": 116, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Shell", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 39533875, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTUzMzg3NQ==", + "name": "js-libs", + "full_name": "jenkinsci/js-libs", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/js-libs", + "description": "JavaScript Framework Library \"bundle\" plugins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/js-libs", + "forks_url": "https://api.github.com/repos/jenkinsci/js-libs/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/js-libs/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/js-libs/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/js-libs/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/js-libs/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/js-libs/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/js-libs/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/js-libs/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/js-libs/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/js-libs/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/js-libs/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/js-libs/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/js-libs/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/js-libs/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/js-libs/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/js-libs/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/js-libs/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/js-libs/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/js-libs/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/js-libs/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/js-libs/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/js-libs/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/js-libs/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/js-libs/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/js-libs/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/js-libs/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/js-libs/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/js-libs/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/js-libs/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/js-libs/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/js-libs/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/js-libs/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/js-libs/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/js-libs/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/js-libs/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/js-libs/deployments", + "created_at": "2015-07-22T22:45:58Z", + "updated_at": "2019-06-26T17:28:24Z", + "pushed_at": "2019-10-14T19:15:41Z", + "git_url": "git://github.com/jenkinsci/js-libs.git", + "ssh_url": "git@github.com:jenkinsci/js-libs.git", + "clone_url": "https://github.com/jenkinsci/js-libs.git", + "svn_url": "https://github.com/jenkinsci/js-libs", + "homepage": "", + "size": 2623, + "stargazers_count": 3, + "watchers_count": 3, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 9, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": null, + "forks": 9, + "open_issues": 3, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 39552152, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTU1MjE1Mg==", + "name": "vmware-vrealize-codestream-plugin", + "full_name": "jenkinsci/vmware-vrealize-codestream-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/vmware-vrealize-codestream-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-codestream-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-codestream-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-codestream-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-codestream-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-codestream-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-codestream-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-codestream-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-codestream-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-codestream-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-codestream-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-codestream-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-codestream-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-codestream-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-codestream-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-codestream-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-codestream-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-codestream-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-codestream-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-codestream-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-codestream-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-codestream-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-codestream-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-codestream-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-codestream-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-codestream-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-codestream-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-codestream-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-codestream-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-codestream-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-codestream-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-codestream-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-codestream-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-codestream-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-codestream-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-codestream-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-codestream-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-codestream-plugin/deployments", + "created_at": "2015-07-23T07:23:08Z", + "updated_at": "2019-08-18T16:48:35Z", + "pushed_at": "2016-10-17T13:51:01Z", + "git_url": "git://github.com/jenkinsci/vmware-vrealize-codestream-plugin.git", + "ssh_url": "git@github.com:jenkinsci/vmware-vrealize-codestream-plugin.git", + "clone_url": "https://github.com/jenkinsci/vmware-vrealize-codestream-plugin.git", + "svn_url": "https://github.com/jenkinsci/vmware-vrealize-codestream-plugin", + "homepage": null, + "size": 38000, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 6, + "open_issues": 0, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 39956481, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTk1NjQ4MQ==", + "name": "runscope-plugin", + "full_name": "jenkinsci/runscope-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/runscope-plugin", + "description": "Jenkins plugin for Runscope", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/runscope-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/runscope-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/runscope-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/runscope-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/runscope-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/runscope-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/runscope-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/runscope-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/runscope-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/runscope-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/runscope-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/runscope-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/runscope-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/runscope-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/runscope-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/runscope-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/runscope-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/runscope-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/runscope-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/runscope-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/runscope-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/runscope-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/runscope-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/runscope-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/runscope-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/runscope-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/runscope-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/runscope-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/runscope-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/runscope-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/runscope-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/runscope-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/runscope-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/runscope-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/runscope-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/runscope-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/runscope-plugin/deployments", + "created_at": "2015-07-30T15:01:36Z", + "updated_at": "2018-08-31T15:03:56Z", + "pushed_at": "2018-06-22T21:08:23Z", + "git_url": "git://github.com/jenkinsci/runscope-plugin.git", + "ssh_url": "git@github.com:jenkinsci/runscope-plugin.git", + "clone_url": "https://github.com/jenkinsci/runscope-plugin.git", + "svn_url": "https://github.com/jenkinsci/runscope-plugin", + "homepage": null, + "size": 52, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 3, + "open_issues": 1, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 39956762, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTk1Njc2Mg==", + "name": "php-builtin-web-server-plugin", + "full_name": "jenkinsci/php-builtin-web-server-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/php-builtin-web-server-plugin", + "description": "Jenkins plugin to run a PHP built-in web server", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/php-builtin-web-server-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/php-builtin-web-server-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/php-builtin-web-server-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/php-builtin-web-server-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/php-builtin-web-server-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/php-builtin-web-server-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/php-builtin-web-server-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/php-builtin-web-server-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/php-builtin-web-server-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/php-builtin-web-server-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/php-builtin-web-server-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/php-builtin-web-server-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/php-builtin-web-server-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/php-builtin-web-server-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/php-builtin-web-server-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/php-builtin-web-server-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/php-builtin-web-server-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/php-builtin-web-server-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/php-builtin-web-server-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/php-builtin-web-server-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/php-builtin-web-server-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/php-builtin-web-server-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/php-builtin-web-server-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/php-builtin-web-server-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/php-builtin-web-server-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/php-builtin-web-server-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/php-builtin-web-server-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/php-builtin-web-server-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/php-builtin-web-server-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/php-builtin-web-server-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/php-builtin-web-server-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/php-builtin-web-server-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/php-builtin-web-server-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/php-builtin-web-server-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/php-builtin-web-server-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/php-builtin-web-server-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/php-builtin-web-server-plugin/deployments", + "created_at": "2015-07-30T15:07:54Z", + "updated_at": "2019-10-08T20:34:17Z", + "pushed_at": "2019-10-08T20:34:15Z", + "git_url": "git://github.com/jenkinsci/php-builtin-web-server-plugin.git", + "ssh_url": "git@github.com:jenkinsci/php-builtin-web-server-plugin.git", + "clone_url": "https://github.com/jenkinsci/php-builtin-web-server-plugin.git", + "svn_url": "https://github.com/jenkinsci/php-builtin-web-server-plugin", + "homepage": null, + "size": 34, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 4, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 39957537, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTk1NzUzNw==", + "name": "mktmpio-plugin", + "full_name": "jenkinsci/mktmpio-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/mktmpio-plugin", + "description": "Use mktmpio with Jenkins", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/mktmpio-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/mktmpio-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/mktmpio-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/mktmpio-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/mktmpio-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/mktmpio-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/mktmpio-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/mktmpio-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/mktmpio-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/mktmpio-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/mktmpio-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/mktmpio-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/mktmpio-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/mktmpio-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/mktmpio-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/mktmpio-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/mktmpio-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/mktmpio-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/mktmpio-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/mktmpio-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/mktmpio-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/mktmpio-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/mktmpio-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/mktmpio-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/mktmpio-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/mktmpio-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/mktmpio-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/mktmpio-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/mktmpio-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/mktmpio-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/mktmpio-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/mktmpio-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/mktmpio-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/mktmpio-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/mktmpio-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/mktmpio-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/mktmpio-plugin/deployments", + "created_at": "2015-07-30T15:23:26Z", + "updated_at": "2015-07-31T03:27:38Z", + "pushed_at": "2015-08-22T23:30:03Z", + "git_url": "git://github.com/jenkinsci/mktmpio-plugin.git", + "ssh_url": "git@github.com:jenkinsci/mktmpio-plugin.git", + "clone_url": "https://github.com/jenkinsci/mktmpio-plugin.git", + "svn_url": "https://github.com/jenkinsci/mktmpio-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/mktmpio+Plugin", + "size": 185, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 39957686, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTk1NzY4Ng==", + "name": "sqlplus-script-runner-plugin", + "full_name": "jenkinsci/sqlplus-script-runner-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/sqlplus-script-runner-plugin", + "description": "Jenkins plugin - SQL*Plus Script Runner", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/sqlplus-script-runner-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/sqlplus-script-runner-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/sqlplus-script-runner-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/sqlplus-script-runner-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/sqlplus-script-runner-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/sqlplus-script-runner-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/sqlplus-script-runner-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/sqlplus-script-runner-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/sqlplus-script-runner-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/sqlplus-script-runner-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/sqlplus-script-runner-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/sqlplus-script-runner-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/sqlplus-script-runner-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/sqlplus-script-runner-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/sqlplus-script-runner-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/sqlplus-script-runner-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/sqlplus-script-runner-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/sqlplus-script-runner-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/sqlplus-script-runner-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/sqlplus-script-runner-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/sqlplus-script-runner-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/sqlplus-script-runner-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/sqlplus-script-runner-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/sqlplus-script-runner-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/sqlplus-script-runner-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/sqlplus-script-runner-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/sqlplus-script-runner-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/sqlplus-script-runner-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/sqlplus-script-runner-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/sqlplus-script-runner-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/sqlplus-script-runner-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/sqlplus-script-runner-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/sqlplus-script-runner-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/sqlplus-script-runner-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/sqlplus-script-runner-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/sqlplus-script-runner-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/sqlplus-script-runner-plugin/deployments", + "created_at": "2015-07-30T15:26:12Z", + "updated_at": "2019-10-10T02:58:59Z", + "pushed_at": "2019-10-10T02:58:57Z", + "git_url": "git://github.com/jenkinsci/sqlplus-script-runner-plugin.git", + "ssh_url": "git@github.com:jenkinsci/sqlplus-script-runner-plugin.git", + "clone_url": "https://github.com/jenkinsci/sqlplus-script-runner-plugin.git", + "svn_url": "https://github.com/jenkinsci/sqlplus-script-runner-plugin", + "homepage": null, + "size": 347, + "stargazers_count": 12, + "watchers_count": 12, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 9, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 9, + "open_issues": 0, + "watchers": 12, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 40025092, + "node_id": "MDEwOlJlcG9zaXRvcnk0MDAyNTA5Mg==", + "name": "zephyr-for-jira-test-management-plugin", + "full_name": "jenkinsci/zephyr-for-jira-test-management-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/zephyr-for-jira-test-management-plugin", + "description": "Zephyr For JIRA connector for Jenkins", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/zephyr-for-jira-test-management-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/zephyr-for-jira-test-management-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/zephyr-for-jira-test-management-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/zephyr-for-jira-test-management-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/zephyr-for-jira-test-management-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/zephyr-for-jira-test-management-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/zephyr-for-jira-test-management-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/zephyr-for-jira-test-management-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/zephyr-for-jira-test-management-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/zephyr-for-jira-test-management-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/zephyr-for-jira-test-management-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/zephyr-for-jira-test-management-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/zephyr-for-jira-test-management-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/zephyr-for-jira-test-management-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/zephyr-for-jira-test-management-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/zephyr-for-jira-test-management-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/zephyr-for-jira-test-management-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/zephyr-for-jira-test-management-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/zephyr-for-jira-test-management-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/zephyr-for-jira-test-management-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/zephyr-for-jira-test-management-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/zephyr-for-jira-test-management-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/zephyr-for-jira-test-management-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/zephyr-for-jira-test-management-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/zephyr-for-jira-test-management-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/zephyr-for-jira-test-management-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/zephyr-for-jira-test-management-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/zephyr-for-jira-test-management-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/zephyr-for-jira-test-management-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/zephyr-for-jira-test-management-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/zephyr-for-jira-test-management-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/zephyr-for-jira-test-management-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/zephyr-for-jira-test-management-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/zephyr-for-jira-test-management-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/zephyr-for-jira-test-management-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/zephyr-for-jira-test-management-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/zephyr-for-jira-test-management-plugin/deployments", + "created_at": "2015-07-31T21:11:18Z", + "updated_at": "2018-06-26T14:00:51Z", + "pushed_at": "2019-02-07T18:34:43Z", + "git_url": "git://github.com/jenkinsci/zephyr-for-jira-test-management-plugin.git", + "ssh_url": "git@github.com:jenkinsci/zephyr-for-jira-test-management-plugin.git", + "clone_url": "https://github.com/jenkinsci/zephyr-for-jira-test-management-plugin.git", + "svn_url": "https://github.com/jenkinsci/zephyr-for-jira-test-management-plugin", + "homepage": null, + "size": 201, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 27, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 4, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 27, + "open_issues": 4, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 40030306, + "node_id": "MDEwOlJlcG9zaXRvcnk0MDAzMDMwNg==", + "name": "failedjobdeactivator-plugin", + "full_name": "jenkinsci/failedjobdeactivator-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/failedjobdeactivator-plugin", + "description": "Jenkins plugin for administrators, that detects orphaned jobs with the ability to deactivate or delete these jobs.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/failedjobdeactivator-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/failedjobdeactivator-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/failedjobdeactivator-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/failedjobdeactivator-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/failedjobdeactivator-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/failedjobdeactivator-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/failedjobdeactivator-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/failedjobdeactivator-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/failedjobdeactivator-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/failedjobdeactivator-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/failedjobdeactivator-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/failedjobdeactivator-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/failedjobdeactivator-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/failedjobdeactivator-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/failedjobdeactivator-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/failedjobdeactivator-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/failedjobdeactivator-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/failedjobdeactivator-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/failedjobdeactivator-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/failedjobdeactivator-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/failedjobdeactivator-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/failedjobdeactivator-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/failedjobdeactivator-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/failedjobdeactivator-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/failedjobdeactivator-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/failedjobdeactivator-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/failedjobdeactivator-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/failedjobdeactivator-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/failedjobdeactivator-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/failedjobdeactivator-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/failedjobdeactivator-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/failedjobdeactivator-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/failedjobdeactivator-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/failedjobdeactivator-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/failedjobdeactivator-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/failedjobdeactivator-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/failedjobdeactivator-plugin/deployments", + "created_at": "2015-08-01T00:42:59Z", + "updated_at": "2017-02-23T12:36:56Z", + "pushed_at": "2018-06-28T08:13:46Z", + "git_url": "git://github.com/jenkinsci/failedjobdeactivator-plugin.git", + "ssh_url": "git@github.com:jenkinsci/failedjobdeactivator-plugin.git", + "clone_url": "https://github.com/jenkinsci/failedjobdeactivator-plugin.git", + "svn_url": "https://github.com/jenkinsci/failedjobdeactivator-plugin", + "homepage": null, + "size": 168, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 40190745, + "node_id": "MDEwOlJlcG9zaXRvcnk0MDE5MDc0NQ==", + "name": "purge-job-history-plugin", + "full_name": "jenkinsci/purge-job-history-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/purge-job-history-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/purge-job-history-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/purge-job-history-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/purge-job-history-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/purge-job-history-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/purge-job-history-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/purge-job-history-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/purge-job-history-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/purge-job-history-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/purge-job-history-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/purge-job-history-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/purge-job-history-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/purge-job-history-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/purge-job-history-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/purge-job-history-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/purge-job-history-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/purge-job-history-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/purge-job-history-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/purge-job-history-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/purge-job-history-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/purge-job-history-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/purge-job-history-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/purge-job-history-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/purge-job-history-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/purge-job-history-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/purge-job-history-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/purge-job-history-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/purge-job-history-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/purge-job-history-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/purge-job-history-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/purge-job-history-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/purge-job-history-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/purge-job-history-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/purge-job-history-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/purge-job-history-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/purge-job-history-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/purge-job-history-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/purge-job-history-plugin/deployments", + "created_at": "2015-08-04T14:48:59Z", + "updated_at": "2019-10-16T13:32:17Z", + "pushed_at": "2019-10-19T17:34:28Z", + "git_url": "git://github.com/jenkinsci/purge-job-history-plugin.git", + "ssh_url": "git@github.com:jenkinsci/purge-job-history-plugin.git", + "clone_url": "https://github.com/jenkinsci/purge-job-history-plugin.git", + "svn_url": "https://github.com/jenkinsci/purge-job-history-plugin", + "homepage": "", + "size": 66, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 40232904, + "node_id": "MDEwOlJlcG9zaXRvcnk0MDIzMjkwNA==", + "name": "azure-publishersettings-credentials-plugin", + "full_name": "jenkinsci/azure-publishersettings-credentials-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/azure-publishersettings-credentials-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/azure-publishersettings-credentials-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/azure-publishersettings-credentials-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/azure-publishersettings-credentials-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/azure-publishersettings-credentials-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/azure-publishersettings-credentials-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/azure-publishersettings-credentials-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/azure-publishersettings-credentials-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/azure-publishersettings-credentials-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/azure-publishersettings-credentials-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/azure-publishersettings-credentials-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/azure-publishersettings-credentials-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/azure-publishersettings-credentials-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/azure-publishersettings-credentials-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/azure-publishersettings-credentials-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/azure-publishersettings-credentials-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/azure-publishersettings-credentials-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/azure-publishersettings-credentials-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/azure-publishersettings-credentials-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/azure-publishersettings-credentials-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/azure-publishersettings-credentials-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/azure-publishersettings-credentials-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/azure-publishersettings-credentials-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/azure-publishersettings-credentials-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/azure-publishersettings-credentials-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/azure-publishersettings-credentials-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/azure-publishersettings-credentials-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/azure-publishersettings-credentials-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/azure-publishersettings-credentials-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/azure-publishersettings-credentials-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/azure-publishersettings-credentials-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/azure-publishersettings-credentials-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/azure-publishersettings-credentials-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/azure-publishersettings-credentials-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/azure-publishersettings-credentials-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/azure-publishersettings-credentials-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/azure-publishersettings-credentials-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/azure-publishersettings-credentials-plugin/deployments", + "created_at": "2015-08-05T08:05:42Z", + "updated_at": "2019-02-19T23:07:19Z", + "pushed_at": "2019-10-08T16:42:15Z", + "git_url": "git://github.com/jenkinsci/azure-publishersettings-credentials-plugin.git", + "ssh_url": "git@github.com:jenkinsci/azure-publishersettings-credentials-plugin.git", + "clone_url": "https://github.com/jenkinsci/azure-publishersettings-credentials-plugin.git", + "svn_url": "https://github.com/jenkinsci/azure-publishersettings-credentials-plugin", + "homepage": null, + "size": 28, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 6, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 40304024, + "node_id": "MDEwOlJlcG9zaXRvcnk0MDMwNDAyNA==", + "name": "aws-credentials-plugin", + "full_name": "jenkinsci/aws-credentials-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/aws-credentials-plugin", + "description": "CloudBees Amazon Web Services Credentials Plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/aws-credentials-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/aws-credentials-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/aws-credentials-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/aws-credentials-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/aws-credentials-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/aws-credentials-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/aws-credentials-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/aws-credentials-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/aws-credentials-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/aws-credentials-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/aws-credentials-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/aws-credentials-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/aws-credentials-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/aws-credentials-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/aws-credentials-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/aws-credentials-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/aws-credentials-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/aws-credentials-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/aws-credentials-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/aws-credentials-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/aws-credentials-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/aws-credentials-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/aws-credentials-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/aws-credentials-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/aws-credentials-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/aws-credentials-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/aws-credentials-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/aws-credentials-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/aws-credentials-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/aws-credentials-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/aws-credentials-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/aws-credentials-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/aws-credentials-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/aws-credentials-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/aws-credentials-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/aws-credentials-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/aws-credentials-plugin/deployments", + "created_at": "2015-08-06T12:38:49Z", + "updated_at": "2019-09-20T08:04:02Z", + "pushed_at": "2019-09-20T08:04:00Z", + "git_url": "git://github.com/jenkinsci/aws-credentials-plugin.git", + "ssh_url": "git@github.com:jenkinsci/aws-credentials-plugin.git", + "clone_url": "https://github.com/jenkinsci/aws-credentials-plugin.git", + "svn_url": "https://github.com/jenkinsci/aws-credentials-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/CloudBees+Amazon+Web+Services+Credentials+Plugin", + "size": 94, + "stargazers_count": 14, + "watchers_count": 14, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 38, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 32, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 38, + "open_issues": 32, + "watchers": 14, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 40665794, + "node_id": "MDEwOlJlcG9zaXRvcnk0MDY2NTc5NA==", + "name": "publish-over-dropbox-plugin", + "full_name": "jenkinsci/publish-over-dropbox-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/publish-over-dropbox-plugin", + "description": "Plugin to publish files to Dropbox from in Jenkins jobs", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/publish-over-dropbox-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/publish-over-dropbox-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/publish-over-dropbox-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/publish-over-dropbox-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/publish-over-dropbox-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/publish-over-dropbox-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/publish-over-dropbox-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/publish-over-dropbox-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/publish-over-dropbox-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/publish-over-dropbox-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/publish-over-dropbox-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/publish-over-dropbox-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/publish-over-dropbox-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/publish-over-dropbox-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/publish-over-dropbox-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/publish-over-dropbox-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/publish-over-dropbox-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/publish-over-dropbox-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/publish-over-dropbox-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/publish-over-dropbox-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/publish-over-dropbox-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/publish-over-dropbox-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/publish-over-dropbox-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/publish-over-dropbox-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/publish-over-dropbox-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/publish-over-dropbox-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/publish-over-dropbox-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/publish-over-dropbox-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/publish-over-dropbox-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/publish-over-dropbox-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/publish-over-dropbox-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/publish-over-dropbox-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/publish-over-dropbox-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/publish-over-dropbox-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/publish-over-dropbox-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/publish-over-dropbox-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/publish-over-dropbox-plugin/deployments", + "created_at": "2015-08-13T15:17:20Z", + "updated_at": "2018-09-24T11:56:31Z", + "pushed_at": "2018-09-24T11:56:29Z", + "git_url": "git://github.com/jenkinsci/publish-over-dropbox-plugin.git", + "ssh_url": "git@github.com:jenkinsci/publish-over-dropbox-plugin.git", + "clone_url": "https://github.com/jenkinsci/publish-over-dropbox-plugin.git", + "svn_url": "https://github.com/jenkinsci/publish-over-dropbox-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Publish+over+Dropbox+Plugin", + "size": 266, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 4, + "open_issues": 0, + "watchers": 2, + "default_branch": "develop", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 40808722, + "node_id": "MDEwOlJlcG9zaXRvcnk0MDgwODcyMg==", + "name": "chatter-notifier-plugin", + "full_name": "jenkinsci/chatter-notifier-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/chatter-notifier-plugin", + "description": "A Jenkins plugin that will post build results or arbitrary text during a build step to chatter.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/chatter-notifier-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/chatter-notifier-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/chatter-notifier-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/chatter-notifier-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/chatter-notifier-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/chatter-notifier-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/chatter-notifier-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/chatter-notifier-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/chatter-notifier-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/chatter-notifier-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/chatter-notifier-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/chatter-notifier-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/chatter-notifier-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/chatter-notifier-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/chatter-notifier-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/chatter-notifier-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/chatter-notifier-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/chatter-notifier-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/chatter-notifier-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/chatter-notifier-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/chatter-notifier-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/chatter-notifier-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/chatter-notifier-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/chatter-notifier-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/chatter-notifier-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/chatter-notifier-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/chatter-notifier-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/chatter-notifier-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/chatter-notifier-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/chatter-notifier-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/chatter-notifier-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/chatter-notifier-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/chatter-notifier-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/chatter-notifier-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/chatter-notifier-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/chatter-notifier-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/chatter-notifier-plugin/deployments", + "created_at": "2015-08-16T09:52:13Z", + "updated_at": "2019-10-25T15:58:59Z", + "pushed_at": "2019-10-25T15:58:57Z", + "git_url": "git://github.com/jenkinsci/chatter-notifier-plugin.git", + "ssh_url": "git@github.com:jenkinsci/chatter-notifier-plugin.git", + "clone_url": "https://github.com/jenkinsci/chatter-notifier-plugin.git", + "svn_url": "https://github.com/jenkinsci/chatter-notifier-plugin", + "homepage": "", + "size": 185, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 4, + "open_issues": 0, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 41024522, + "node_id": "MDEwOlJlcG9zaXRvcnk0MTAyNDUyMg==", + "name": "negotiatesso-plugin", + "full_name": "jenkinsci/negotiatesso-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/negotiatesso-plugin", + "description": "Single Sign On plugin for Jenkins running on Windows.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/negotiatesso-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/negotiatesso-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/negotiatesso-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/negotiatesso-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/negotiatesso-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/negotiatesso-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/negotiatesso-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/negotiatesso-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/negotiatesso-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/negotiatesso-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/negotiatesso-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/negotiatesso-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/negotiatesso-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/negotiatesso-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/negotiatesso-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/negotiatesso-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/negotiatesso-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/negotiatesso-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/negotiatesso-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/negotiatesso-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/negotiatesso-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/negotiatesso-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/negotiatesso-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/negotiatesso-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/negotiatesso-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/negotiatesso-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/negotiatesso-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/negotiatesso-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/negotiatesso-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/negotiatesso-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/negotiatesso-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/negotiatesso-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/negotiatesso-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/negotiatesso-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/negotiatesso-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/negotiatesso-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/negotiatesso-plugin/deployments", + "created_at": "2015-08-19T09:14:07Z", + "updated_at": "2019-10-16T20:03:13Z", + "pushed_at": "2019-10-16T20:03:11Z", + "git_url": "git://github.com/jenkinsci/negotiatesso-plugin.git", + "ssh_url": "git@github.com:jenkinsci/negotiatesso-plugin.git", + "clone_url": "https://github.com/jenkinsci/negotiatesso-plugin.git", + "svn_url": "https://github.com/jenkinsci/negotiatesso-plugin", + "homepage": null, + "size": 82, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 8, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 8, + "open_issues": 1, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 41374882, + "node_id": "MDEwOlJlcG9zaXRvcnk0MTM3NDg4Mg==", + "name": "openconnect-plugin", + "full_name": "jenkinsci/openconnect-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/openconnect-plugin", + "description": "A Jenkins plugin designed to connect and disconnect from a Cisco AnyConnect VPN as part of the build process.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/openconnect-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/openconnect-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/openconnect-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/openconnect-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/openconnect-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/openconnect-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/openconnect-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/openconnect-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/openconnect-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/openconnect-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/openconnect-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/openconnect-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/openconnect-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/openconnect-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/openconnect-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/openconnect-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/openconnect-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/openconnect-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/openconnect-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/openconnect-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/openconnect-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/openconnect-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/openconnect-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/openconnect-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/openconnect-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/openconnect-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/openconnect-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/openconnect-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/openconnect-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/openconnect-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/openconnect-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/openconnect-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/openconnect-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/openconnect-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/openconnect-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/openconnect-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/openconnect-plugin/deployments", + "created_at": "2015-08-25T16:30:37Z", + "updated_at": "2018-04-09T20:53:32Z", + "pushed_at": "2015-08-26T01:06:05Z", + "git_url": "git://github.com/jenkinsci/openconnect-plugin.git", + "ssh_url": "git@github.com:jenkinsci/openconnect-plugin.git", + "clone_url": "https://github.com/jenkinsci/openconnect-plugin.git", + "svn_url": "https://github.com/jenkinsci/openconnect-plugin", + "homepage": null, + "size": 140, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 41409797, + "node_id": "MDEwOlJlcG9zaXRvcnk0MTQwOTc5Nw==", + "name": "nouvola-divecloud-plugin", + "full_name": "jenkinsci/nouvola-divecloud-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/nouvola-divecloud-plugin", + "description": "This is for the DiveCloud plugin for Jenkins", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/nouvola-divecloud-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/nouvola-divecloud-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/nouvola-divecloud-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/nouvola-divecloud-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/nouvola-divecloud-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/nouvola-divecloud-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/nouvola-divecloud-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/nouvola-divecloud-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/nouvola-divecloud-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/nouvola-divecloud-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/nouvola-divecloud-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/nouvola-divecloud-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/nouvola-divecloud-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/nouvola-divecloud-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/nouvola-divecloud-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/nouvola-divecloud-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/nouvola-divecloud-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/nouvola-divecloud-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/nouvola-divecloud-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/nouvola-divecloud-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/nouvola-divecloud-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/nouvola-divecloud-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/nouvola-divecloud-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/nouvola-divecloud-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/nouvola-divecloud-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/nouvola-divecloud-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/nouvola-divecloud-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/nouvola-divecloud-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/nouvola-divecloud-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/nouvola-divecloud-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/nouvola-divecloud-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/nouvola-divecloud-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/nouvola-divecloud-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/nouvola-divecloud-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/nouvola-divecloud-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/nouvola-divecloud-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/nouvola-divecloud-plugin/deployments", + "created_at": "2015-08-26T06:55:43Z", + "updated_at": "2017-02-14T18:29:29Z", + "pushed_at": "2017-03-24T23:55:19Z", + "git_url": "git://github.com/jenkinsci/nouvola-divecloud-plugin.git", + "ssh_url": "git@github.com:jenkinsci/nouvola-divecloud-plugin.git", + "clone_url": "https://github.com/jenkinsci/nouvola-divecloud-plugin.git", + "svn_url": "https://github.com/jenkinsci/nouvola-divecloud-plugin", + "homepage": null, + "size": 54, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 41455269, + "node_id": "MDEwOlJlcG9zaXRvcnk0MTQ1NTI2OQ==", + "name": "datadog-plugin", + "full_name": "jenkinsci/datadog-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/datadog-plugin", + "description": "A Jenkins plugin used to forward metrics, events, and service checks to an account at Datadog, automatically.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/datadog-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/datadog-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/datadog-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/datadog-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/datadog-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/datadog-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/datadog-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/datadog-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/datadog-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/datadog-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/datadog-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/datadog-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/datadog-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/datadog-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/datadog-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/datadog-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/datadog-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/datadog-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/datadog-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/datadog-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/datadog-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/datadog-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/datadog-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/datadog-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/datadog-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/datadog-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/datadog-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/datadog-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/datadog-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/datadog-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/datadog-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/datadog-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/datadog-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/datadog-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/datadog-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/datadog-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/datadog-plugin/deployments", + "created_at": "2015-08-26T23:41:56Z", + "updated_at": "2019-06-25T10:33:01Z", + "pushed_at": "2019-10-08T11:23:27Z", + "git_url": "git://github.com/jenkinsci/datadog-plugin.git", + "ssh_url": "git@github.com:jenkinsci/datadog-plugin.git", + "clone_url": "https://github.com/jenkinsci/datadog-plugin.git", + "svn_url": "https://github.com/jenkinsci/datadog-plugin", + "homepage": null, + "size": 335, + "stargazers_count": 8, + "watchers_count": 8, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 5, + "open_issues": 2, + "watchers": 8, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 41485860, + "node_id": "MDEwOlJlcG9zaXRvcnk0MTQ4NTg2MA==", + "name": "drupal-developer-plugin", + "full_name": "jenkinsci/drupal-developer-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/drupal-developer-plugin", + "description": " Jenkins plugin to review code and run tests on Drupal", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/drupal-developer-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/drupal-developer-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/drupal-developer-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/drupal-developer-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/drupal-developer-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/drupal-developer-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/drupal-developer-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/drupal-developer-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/drupal-developer-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/drupal-developer-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/drupal-developer-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/drupal-developer-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/drupal-developer-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/drupal-developer-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/drupal-developer-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/drupal-developer-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/drupal-developer-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/drupal-developer-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/drupal-developer-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/drupal-developer-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/drupal-developer-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/drupal-developer-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/drupal-developer-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/drupal-developer-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/drupal-developer-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/drupal-developer-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/drupal-developer-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/drupal-developer-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/drupal-developer-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/drupal-developer-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/drupal-developer-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/drupal-developer-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/drupal-developer-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/drupal-developer-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/drupal-developer-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/drupal-developer-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/drupal-developer-plugin/deployments", + "created_at": "2015-08-27T12:41:30Z", + "updated_at": "2017-06-01T22:50:44Z", + "pushed_at": "2016-11-30T14:06:19Z", + "git_url": "git://github.com/jenkinsci/drupal-developer-plugin.git", + "ssh_url": "git@github.com:jenkinsci/drupal-developer-plugin.git", + "clone_url": "https://github.com/jenkinsci/drupal-developer-plugin.git", + "svn_url": "https://github.com/jenkinsci/drupal-developer-plugin", + "homepage": null, + "size": 719, + "stargazers_count": 7, + "watchers_count": 7, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "gpl-2.0", + "name": "GNU General Public License v2.0", + "spdx_id": "GPL-2.0", + "url": "https://api.github.com/licenses/gpl-2.0", + "node_id": "MDc6TGljZW5zZTg=" + }, + "forks": 5, + "open_issues": 1, + "watchers": 7, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 41490515, + "node_id": "MDEwOlJlcG9zaXRvcnk0MTQ5MDUxNQ==", + "name": "short-workspace-path-plugin", + "full_name": "jenkinsci/short-workspace-path-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/short-workspace-path-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/short-workspace-path-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/short-workspace-path-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/short-workspace-path-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/short-workspace-path-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/short-workspace-path-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/short-workspace-path-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/short-workspace-path-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/short-workspace-path-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/short-workspace-path-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/short-workspace-path-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/short-workspace-path-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/short-workspace-path-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/short-workspace-path-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/short-workspace-path-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/short-workspace-path-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/short-workspace-path-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/short-workspace-path-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/short-workspace-path-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/short-workspace-path-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/short-workspace-path-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/short-workspace-path-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/short-workspace-path-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/short-workspace-path-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/short-workspace-path-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/short-workspace-path-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/short-workspace-path-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/short-workspace-path-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/short-workspace-path-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/short-workspace-path-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/short-workspace-path-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/short-workspace-path-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/short-workspace-path-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/short-workspace-path-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/short-workspace-path-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/short-workspace-path-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/short-workspace-path-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/short-workspace-path-plugin/deployments", + "created_at": "2015-08-27T14:11:13Z", + "updated_at": "2019-07-10T12:24:49Z", + "pushed_at": "2019-10-08T16:25:40Z", + "git_url": "git://github.com/jenkinsci/short-workspace-path-plugin.git", + "ssh_url": "git@github.com:jenkinsci/short-workspace-path-plugin.git", + "clone_url": "https://github.com/jenkinsci/short-workspace-path-plugin.git", + "svn_url": "https://github.com/jenkinsci/short-workspace-path-plugin", + "homepage": "", + "size": 19, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 9, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 9, + "open_issues": 2, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 41536031, + "node_id": "MDEwOlJlcG9zaXRvcnk0MTUzNjAzMQ==", + "name": "docker-jnlp-slave", + "full_name": "jenkinsci/docker-jnlp-slave", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/docker-jnlp-slave", + "description": "Docker image to run a JNLP slave", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/docker-jnlp-slave", + "forks_url": "https://api.github.com/repos/jenkinsci/docker-jnlp-slave/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/docker-jnlp-slave/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/docker-jnlp-slave/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/docker-jnlp-slave/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/docker-jnlp-slave/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/docker-jnlp-slave/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/docker-jnlp-slave/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/docker-jnlp-slave/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/docker-jnlp-slave/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/docker-jnlp-slave/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/docker-jnlp-slave/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/docker-jnlp-slave/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/docker-jnlp-slave/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/docker-jnlp-slave/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/docker-jnlp-slave/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/docker-jnlp-slave/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/docker-jnlp-slave/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/docker-jnlp-slave/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/docker-jnlp-slave/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/docker-jnlp-slave/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/docker-jnlp-slave/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/docker-jnlp-slave/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/docker-jnlp-slave/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/docker-jnlp-slave/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/docker-jnlp-slave/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/docker-jnlp-slave/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/docker-jnlp-slave/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/docker-jnlp-slave/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/docker-jnlp-slave/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/docker-jnlp-slave/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/docker-jnlp-slave/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/docker-jnlp-slave/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/docker-jnlp-slave/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/docker-jnlp-slave/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/docker-jnlp-slave/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/docker-jnlp-slave/deployments", + "created_at": "2015-08-28T08:28:21Z", + "updated_at": "2019-10-25T12:51:17Z", + "pushed_at": "2019-10-23T15:31:12Z", + "git_url": "git://github.com/jenkinsci/docker-jnlp-slave.git", + "ssh_url": "git@github.com:jenkinsci/docker-jnlp-slave.git", + "clone_url": "https://github.com/jenkinsci/docker-jnlp-slave.git", + "svn_url": "https://github.com/jenkinsci/docker-jnlp-slave", + "homepage": "https://hub.docker.com/r/jenkinsci/jnlp-slave/", + "size": 110, + "stargazers_count": 226, + "watchers_count": 226, + "language": "PowerShell", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 328, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 20, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 328, + "open_issues": 20, + "watchers": 226, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 41673255, + "node_id": "MDEwOlJlcG9zaXRvcnk0MTY3MzI1NQ==", + "name": "docker-ssh-slave", + "full_name": "jenkinsci/docker-ssh-slave", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/docker-ssh-slave", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/docker-ssh-slave", + "forks_url": "https://api.github.com/repos/jenkinsci/docker-ssh-slave/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/docker-ssh-slave/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/docker-ssh-slave/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/docker-ssh-slave/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/docker-ssh-slave/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/docker-ssh-slave/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/docker-ssh-slave/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/docker-ssh-slave/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/docker-ssh-slave/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/docker-ssh-slave/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/docker-ssh-slave/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/docker-ssh-slave/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/docker-ssh-slave/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/docker-ssh-slave/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/docker-ssh-slave/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/docker-ssh-slave/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/docker-ssh-slave/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/docker-ssh-slave/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/docker-ssh-slave/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/docker-ssh-slave/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/docker-ssh-slave/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/docker-ssh-slave/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/docker-ssh-slave/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/docker-ssh-slave/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/docker-ssh-slave/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/docker-ssh-slave/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/docker-ssh-slave/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/docker-ssh-slave/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/docker-ssh-slave/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/docker-ssh-slave/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/docker-ssh-slave/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/docker-ssh-slave/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/docker-ssh-slave/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/docker-ssh-slave/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/docker-ssh-slave/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/docker-ssh-slave/deployments", + "created_at": "2015-08-31T12:07:04Z", + "updated_at": "2019-09-16T05:02:23Z", + "pushed_at": "2019-09-25T15:11:31Z", + "git_url": "git://github.com/jenkinsci/docker-ssh-slave.git", + "ssh_url": "git@github.com:jenkinsci/docker-ssh-slave.git", + "clone_url": "https://github.com/jenkinsci/docker-ssh-slave.git", + "svn_url": "https://github.com/jenkinsci/docker-ssh-slave", + "homepage": null, + "size": 25, + "stargazers_count": 50, + "watchers_count": 50, + "language": "Shell", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 86, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 9, + "license": null, + "forks": 86, + "open_issues": 9, + "watchers": 50, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 41790116, + "node_id": "MDEwOlJlcG9zaXRvcnk0MTc5MDExNg==", + "name": "google-cloud-health-check-plugin", + "full_name": "jenkinsci/google-cloud-health-check-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/google-cloud-health-check-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/google-cloud-health-check-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/google-cloud-health-check-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/google-cloud-health-check-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/google-cloud-health-check-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/google-cloud-health-check-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/google-cloud-health-check-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/google-cloud-health-check-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/google-cloud-health-check-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/google-cloud-health-check-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/google-cloud-health-check-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/google-cloud-health-check-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/google-cloud-health-check-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/google-cloud-health-check-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/google-cloud-health-check-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/google-cloud-health-check-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/google-cloud-health-check-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/google-cloud-health-check-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/google-cloud-health-check-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/google-cloud-health-check-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/google-cloud-health-check-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/google-cloud-health-check-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/google-cloud-health-check-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/google-cloud-health-check-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/google-cloud-health-check-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/google-cloud-health-check-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/google-cloud-health-check-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/google-cloud-health-check-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/google-cloud-health-check-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/google-cloud-health-check-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/google-cloud-health-check-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/google-cloud-health-check-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/google-cloud-health-check-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/google-cloud-health-check-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/google-cloud-health-check-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/google-cloud-health-check-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/google-cloud-health-check-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/google-cloud-health-check-plugin/deployments", + "created_at": "2015-09-02T08:42:13Z", + "updated_at": "2015-12-15T19:16:57Z", + "pushed_at": "2015-10-16T02:43:02Z", + "git_url": "git://github.com/jenkinsci/google-cloud-health-check-plugin.git", + "ssh_url": "git@github.com:jenkinsci/google-cloud-health-check-plugin.git", + "clone_url": "https://github.com/jenkinsci/google-cloud-health-check-plugin.git", + "svn_url": "https://github.com/jenkinsci/google-cloud-health-check-plugin", + "homepage": null, + "size": 168, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 2, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 41790147, + "node_id": "MDEwOlJlcG9zaXRvcnk0MTc5MDE0Nw==", + "name": "google-cloud-backup-plugin", + "full_name": "jenkinsci/google-cloud-backup-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/google-cloud-backup-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/google-cloud-backup-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/google-cloud-backup-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/google-cloud-backup-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/google-cloud-backup-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/google-cloud-backup-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/google-cloud-backup-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/google-cloud-backup-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/google-cloud-backup-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/google-cloud-backup-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/google-cloud-backup-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/google-cloud-backup-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/google-cloud-backup-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/google-cloud-backup-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/google-cloud-backup-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/google-cloud-backup-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/google-cloud-backup-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/google-cloud-backup-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/google-cloud-backup-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/google-cloud-backup-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/google-cloud-backup-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/google-cloud-backup-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/google-cloud-backup-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/google-cloud-backup-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/google-cloud-backup-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/google-cloud-backup-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/google-cloud-backup-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/google-cloud-backup-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/google-cloud-backup-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/google-cloud-backup-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/google-cloud-backup-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/google-cloud-backup-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/google-cloud-backup-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/google-cloud-backup-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/google-cloud-backup-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/google-cloud-backup-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/google-cloud-backup-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/google-cloud-backup-plugin/deployments", + "created_at": "2015-09-02T08:42:44Z", + "updated_at": "2017-10-25T21:23:05Z", + "pushed_at": "2016-03-16T19:31:47Z", + "git_url": "git://github.com/jenkinsci/google-cloud-backup-plugin.git", + "ssh_url": "git@github.com:jenkinsci/google-cloud-backup-plugin.git", + "clone_url": "https://github.com/jenkinsci/google-cloud-backup-plugin.git", + "svn_url": "https://github.com/jenkinsci/google-cloud-backup-plugin", + "homepage": null, + "size": 225, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 3, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 41790188, + "node_id": "MDEwOlJlcG9zaXRvcnk0MTc5MDE4OA==", + "name": "google-git-notes-publisher-plugin", + "full_name": "jenkinsci/google-git-notes-publisher-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/google-git-notes-publisher-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/google-git-notes-publisher-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/google-git-notes-publisher-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/google-git-notes-publisher-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/google-git-notes-publisher-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/google-git-notes-publisher-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/google-git-notes-publisher-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/google-git-notes-publisher-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/google-git-notes-publisher-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/google-git-notes-publisher-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/google-git-notes-publisher-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/google-git-notes-publisher-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/google-git-notes-publisher-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/google-git-notes-publisher-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/google-git-notes-publisher-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/google-git-notes-publisher-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/google-git-notes-publisher-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/google-git-notes-publisher-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/google-git-notes-publisher-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/google-git-notes-publisher-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/google-git-notes-publisher-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/google-git-notes-publisher-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/google-git-notes-publisher-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/google-git-notes-publisher-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/google-git-notes-publisher-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/google-git-notes-publisher-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/google-git-notes-publisher-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/google-git-notes-publisher-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/google-git-notes-publisher-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/google-git-notes-publisher-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/google-git-notes-publisher-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/google-git-notes-publisher-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/google-git-notes-publisher-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/google-git-notes-publisher-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/google-git-notes-publisher-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/google-git-notes-publisher-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/google-git-notes-publisher-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/google-git-notes-publisher-plugin/deployments", + "created_at": "2015-09-02T08:43:19Z", + "updated_at": "2019-07-15T19:08:01Z", + "pushed_at": "2015-10-16T02:29:58Z", + "git_url": "git://github.com/jenkinsci/google-git-notes-publisher-plugin.git", + "ssh_url": "git@github.com:jenkinsci/google-git-notes-publisher-plugin.git", + "clone_url": "https://github.com/jenkinsci/google-git-notes-publisher-plugin.git", + "svn_url": "https://github.com/jenkinsci/google-git-notes-publisher-plugin", + "homepage": null, + "size": 149, + "stargazers_count": 18, + "watchers_count": 18, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 3, + "open_issues": 0, + "watchers": 18, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 41790218, + "node_id": "MDEwOlJlcG9zaXRvcnk0MTc5MDIxOA==", + "name": "google-analytics-usage-reporter-plugin", + "full_name": "jenkinsci/google-analytics-usage-reporter-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/google-analytics-usage-reporter-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/google-analytics-usage-reporter-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/google-analytics-usage-reporter-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/google-analytics-usage-reporter-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/google-analytics-usage-reporter-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/google-analytics-usage-reporter-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/google-analytics-usage-reporter-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/google-analytics-usage-reporter-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/google-analytics-usage-reporter-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/google-analytics-usage-reporter-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/google-analytics-usage-reporter-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/google-analytics-usage-reporter-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/google-analytics-usage-reporter-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/google-analytics-usage-reporter-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/google-analytics-usage-reporter-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/google-analytics-usage-reporter-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/google-analytics-usage-reporter-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/google-analytics-usage-reporter-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/google-analytics-usage-reporter-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/google-analytics-usage-reporter-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/google-analytics-usage-reporter-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/google-analytics-usage-reporter-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/google-analytics-usage-reporter-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/google-analytics-usage-reporter-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/google-analytics-usage-reporter-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/google-analytics-usage-reporter-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/google-analytics-usage-reporter-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/google-analytics-usage-reporter-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/google-analytics-usage-reporter-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/google-analytics-usage-reporter-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/google-analytics-usage-reporter-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/google-analytics-usage-reporter-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/google-analytics-usage-reporter-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/google-analytics-usage-reporter-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/google-analytics-usage-reporter-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/google-analytics-usage-reporter-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/google-analytics-usage-reporter-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/google-analytics-usage-reporter-plugin/deployments", + "created_at": "2015-09-02T08:43:51Z", + "updated_at": "2015-12-18T15:58:00Z", + "pushed_at": "2015-10-16T03:12:06Z", + "git_url": "git://github.com/jenkinsci/google-analytics-usage-reporter-plugin.git", + "ssh_url": "git@github.com:jenkinsci/google-analytics-usage-reporter-plugin.git", + "clone_url": "https://github.com/jenkinsci/google-analytics-usage-reporter-plugin.git", + "svn_url": "https://github.com/jenkinsci/google-analytics-usage-reporter-plugin", + "homepage": null, + "size": 168, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 41850037, + "node_id": "MDEwOlJlcG9zaXRvcnk0MTg1MDAzNw==", + "name": "docker-slaves-plugin", + "full_name": "jenkinsci/docker-slaves-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/docker-slaves-plugin", + "description": "A Jenkins plugin to run builds inside Docker containers", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/docker-slaves-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/docker-slaves-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/docker-slaves-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/docker-slaves-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/docker-slaves-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/docker-slaves-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/docker-slaves-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/docker-slaves-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/docker-slaves-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/docker-slaves-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/docker-slaves-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/docker-slaves-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/docker-slaves-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/docker-slaves-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/docker-slaves-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/docker-slaves-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/docker-slaves-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/docker-slaves-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/docker-slaves-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/docker-slaves-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/docker-slaves-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/docker-slaves-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/docker-slaves-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/docker-slaves-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/docker-slaves-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/docker-slaves-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/docker-slaves-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/docker-slaves-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/docker-slaves-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/docker-slaves-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/docker-slaves-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/docker-slaves-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/docker-slaves-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/docker-slaves-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/docker-slaves-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/docker-slaves-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/docker-slaves-plugin/deployments", + "created_at": "2015-09-03T08:45:29Z", + "updated_at": "2019-09-03T19:28:34Z", + "pushed_at": "2019-10-08T09:54:02Z", + "git_url": "git://github.com/jenkinsci/docker-slaves-plugin.git", + "ssh_url": "git@github.com:jenkinsci/docker-slaves-plugin.git", + "clone_url": "https://github.com/jenkinsci/docker-slaves-plugin.git", + "svn_url": "https://github.com/jenkinsci/docker-slaves-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Docker+Slaves+Plugin", + "size": 1786, + "stargazers_count": 209, + "watchers_count": 209, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 55, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 5, + "license": null, + "forks": 55, + "open_issues": 5, + "watchers": 209, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 41977124, + "node_id": "MDEwOlJlcG9zaXRvcnk0MTk3NzEyNA==", + "name": "aws-java-sdk-plugin", + "full_name": "jenkinsci/aws-java-sdk-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/aws-java-sdk-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/aws-java-sdk-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/aws-java-sdk-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/aws-java-sdk-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/aws-java-sdk-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/aws-java-sdk-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/aws-java-sdk-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/aws-java-sdk-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/aws-java-sdk-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/aws-java-sdk-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/aws-java-sdk-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/aws-java-sdk-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/aws-java-sdk-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/aws-java-sdk-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/aws-java-sdk-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/aws-java-sdk-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/aws-java-sdk-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/aws-java-sdk-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/aws-java-sdk-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/aws-java-sdk-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/aws-java-sdk-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/aws-java-sdk-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/aws-java-sdk-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/aws-java-sdk-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/aws-java-sdk-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/aws-java-sdk-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/aws-java-sdk-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/aws-java-sdk-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/aws-java-sdk-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/aws-java-sdk-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/aws-java-sdk-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/aws-java-sdk-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/aws-java-sdk-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/aws-java-sdk-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/aws-java-sdk-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/aws-java-sdk-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/aws-java-sdk-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/aws-java-sdk-plugin/deployments", + "created_at": "2015-09-05T22:06:00Z", + "updated_at": "2019-10-11T11:41:54Z", + "pushed_at": "2019-10-25T06:39:34Z", + "git_url": "git://github.com/jenkinsci/aws-java-sdk-plugin.git", + "ssh_url": "git@github.com:jenkinsci/aws-java-sdk-plugin.git", + "clone_url": "https://github.com/jenkinsci/aws-java-sdk-plugin.git", + "svn_url": "https://github.com/jenkinsci/aws-java-sdk-plugin", + "homepage": "", + "size": 96, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 29, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 29, + "open_issues": 3, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 42661425, + "node_id": "MDEwOlJlcG9zaXRvcnk0MjY2MTQyNQ==", + "name": "docker-slave", + "full_name": "jenkinsci/docker-slave", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/docker-slave", + "description": "Base Docker image for Jenkins Agents", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/docker-slave", + "forks_url": "https://api.github.com/repos/jenkinsci/docker-slave/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/docker-slave/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/docker-slave/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/docker-slave/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/docker-slave/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/docker-slave/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/docker-slave/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/docker-slave/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/docker-slave/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/docker-slave/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/docker-slave/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/docker-slave/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/docker-slave/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/docker-slave/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/docker-slave/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/docker-slave/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/docker-slave/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/docker-slave/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/docker-slave/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/docker-slave/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/docker-slave/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/docker-slave/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/docker-slave/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/docker-slave/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/docker-slave/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/docker-slave/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/docker-slave/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/docker-slave/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/docker-slave/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/docker-slave/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/docker-slave/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/docker-slave/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/docker-slave/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/docker-slave/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/docker-slave/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/docker-slave/deployments", + "created_at": "2015-09-17T14:37:19Z", + "updated_at": "2019-10-23T15:28:11Z", + "pushed_at": "2019-10-23T15:28:09Z", + "git_url": "git://github.com/jenkinsci/docker-slave.git", + "ssh_url": "git@github.com:jenkinsci/docker-slave.git", + "clone_url": "https://github.com/jenkinsci/docker-slave.git", + "svn_url": "https://github.com/jenkinsci/docker-slave", + "homepage": "https://hub.docker.com/r/jenkins/slave/", + "size": 122, + "stargazers_count": 104, + "watchers_count": 104, + "language": "Dockerfile", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 113, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 15, + "license": null, + "forks": 113, + "open_issues": 15, + "watchers": 104, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 42699137, + "node_id": "MDEwOlJlcG9zaXRvcnk0MjY5OTEzNw==", + "name": "groovy-events-listener-plugin", + "full_name": "jenkinsci/groovy-events-listener-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/groovy-events-listener-plugin", + "description": "A Jenkins plugin, which executes groovy code when an event occurs.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/groovy-events-listener-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/groovy-events-listener-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/groovy-events-listener-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/groovy-events-listener-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/groovy-events-listener-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/groovy-events-listener-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/groovy-events-listener-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/groovy-events-listener-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/groovy-events-listener-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/groovy-events-listener-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/groovy-events-listener-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/groovy-events-listener-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/groovy-events-listener-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/groovy-events-listener-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/groovy-events-listener-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/groovy-events-listener-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/groovy-events-listener-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/groovy-events-listener-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/groovy-events-listener-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/groovy-events-listener-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/groovy-events-listener-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/groovy-events-listener-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/groovy-events-listener-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/groovy-events-listener-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/groovy-events-listener-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/groovy-events-listener-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/groovy-events-listener-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/groovy-events-listener-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/groovy-events-listener-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/groovy-events-listener-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/groovy-events-listener-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/groovy-events-listener-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/groovy-events-listener-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/groovy-events-listener-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/groovy-events-listener-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/groovy-events-listener-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/groovy-events-listener-plugin/deployments", + "created_at": "2015-09-18T04:11:38Z", + "updated_at": "2019-07-17T21:11:46Z", + "pushed_at": "2019-08-29T03:10:49Z", + "git_url": "git://github.com/jenkinsci/groovy-events-listener-plugin.git", + "ssh_url": "git@github.com:jenkinsci/groovy-events-listener-plugin.git", + "clone_url": "https://github.com/jenkinsci/groovy-events-listener-plugin.git", + "svn_url": "https://github.com/jenkinsci/groovy-events-listener-plugin", + "homepage": "", + "size": 276, + "stargazers_count": 26, + "watchers_count": 26, + "language": "Groovy", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 19, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 19, + "open_issues": 1, + "watchers": 26, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 42699298, + "node_id": "MDEwOlJlcG9zaXRvcnk0MjY5OTI5OA==", + "name": "convertigo-mobile-platform-plugin", + "full_name": "jenkinsci/convertigo-mobile-platform-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/convertigo-mobile-platform-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/convertigo-mobile-platform-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/convertigo-mobile-platform-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/convertigo-mobile-platform-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/convertigo-mobile-platform-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/convertigo-mobile-platform-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/convertigo-mobile-platform-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/convertigo-mobile-platform-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/convertigo-mobile-platform-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/convertigo-mobile-platform-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/convertigo-mobile-platform-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/convertigo-mobile-platform-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/convertigo-mobile-platform-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/convertigo-mobile-platform-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/convertigo-mobile-platform-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/convertigo-mobile-platform-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/convertigo-mobile-platform-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/convertigo-mobile-platform-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/convertigo-mobile-platform-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/convertigo-mobile-platform-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/convertigo-mobile-platform-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/convertigo-mobile-platform-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/convertigo-mobile-platform-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/convertigo-mobile-platform-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/convertigo-mobile-platform-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/convertigo-mobile-platform-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/convertigo-mobile-platform-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/convertigo-mobile-platform-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/convertigo-mobile-platform-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/convertigo-mobile-platform-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/convertigo-mobile-platform-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/convertigo-mobile-platform-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/convertigo-mobile-platform-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/convertigo-mobile-platform-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/convertigo-mobile-platform-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/convertigo-mobile-platform-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/convertigo-mobile-platform-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/convertigo-mobile-platform-plugin/deployments", + "created_at": "2015-09-18T04:16:32Z", + "updated_at": "2015-09-18T04:16:46Z", + "pushed_at": "2015-10-01T15:53:37Z", + "git_url": "git://github.com/jenkinsci/convertigo-mobile-platform-plugin.git", + "ssh_url": "git@github.com:jenkinsci/convertigo-mobile-platform-plugin.git", + "clone_url": "https://github.com/jenkinsci/convertigo-mobile-platform-plugin.git", + "svn_url": "https://github.com/jenkinsci/convertigo-mobile-platform-plugin", + "homepage": null, + "size": 155, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/__files/organizations_107424_repos-471f9be3-9f94-4788-bd01-316c9e5d03a4.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/__files/organizations_107424_repos-471f9be3-9f94-4788-bd01-316c9e5d03a4.json new file mode 100644 index 0000000000..3dc7df2e68 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/__files/organizations_107424_repos-471f9be3-9f94-4788-bd01-316c9e5d03a4.json @@ -0,0 +1,10058 @@ +[ + { + "id": 1163501, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNTAx", + "name": "deploy-websphere-plugin", + "full_name": "jenkinsci/deploy-websphere-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/deploy-websphere-plugin", + "description": "Jenkins deploy-websphere plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/deploy-websphere-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/deploy-websphere-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/deploy-websphere-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/deploy-websphere-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/deploy-websphere-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/deploy-websphere-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/deploy-websphere-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/deploy-websphere-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/deploy-websphere-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/deploy-websphere-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/deploy-websphere-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/deploy-websphere-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/deploy-websphere-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/deploy-websphere-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/deploy-websphere-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/deploy-websphere-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/deploy-websphere-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/deploy-websphere-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/deploy-websphere-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/deploy-websphere-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/deploy-websphere-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/deploy-websphere-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/deploy-websphere-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/deploy-websphere-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/deploy-websphere-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/deploy-websphere-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/deploy-websphere-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/deploy-websphere-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/deploy-websphere-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/deploy-websphere-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/deploy-websphere-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/deploy-websphere-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/deploy-websphere-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/deploy-websphere-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/deploy-websphere-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/deploy-websphere-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/deploy-websphere-plugin/deployments", + "created_at": "2010-12-13T05:30:47Z", + "updated_at": "2015-02-10T07:50:11Z", + "pushed_at": "2013-11-10T02:00:04Z", + "git_url": "git://github.com/jenkinsci/deploy-websphere-plugin.git", + "ssh_url": "git@github.com:jenkinsci/deploy-websphere-plugin.git", + "clone_url": "https://github.com/jenkinsci/deploy-websphere-plugin.git", + "svn_url": "https://github.com/jenkinsci/deploy-websphere-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 124, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 4, + "open_issues": 0, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163502, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNTAy", + "name": "dimensions-plugin", + "full_name": "jenkinsci/dimensions-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/dimensions-plugin", + "description": "Jenkins dimensions plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/dimensions-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/dimensions-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/dimensions-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/dimensions-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/dimensions-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/dimensions-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/dimensions-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/dimensions-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/dimensions-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/dimensions-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/dimensions-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/dimensions-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/dimensions-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/dimensions-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/dimensions-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/dimensions-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/dimensions-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/dimensions-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/dimensions-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/dimensions-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/dimensions-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/dimensions-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/dimensions-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/dimensions-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/dimensions-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/dimensions-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/dimensions-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/dimensions-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/dimensions-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/dimensions-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/dimensions-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/dimensions-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/dimensions-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/dimensions-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/dimensions-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/dimensions-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/dimensions-plugin/deployments", + "created_at": "2010-12-13T05:30:55Z", + "updated_at": "2014-11-14T11:18:50Z", + "pushed_at": "2019-03-06T07:39:07Z", + "git_url": "git://github.com/jenkinsci/dimensions-plugin.git", + "ssh_url": "git@github.com:jenkinsci/dimensions-plugin.git", + "clone_url": "https://github.com/jenkinsci/dimensions-plugin.git", + "svn_url": "https://github.com/jenkinsci/dimensions-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 116, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163503, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNTAz", + "name": "crap4j-plugin", + "full_name": "jenkinsci/crap4j-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/crap4j-plugin", + "description": "Jenkins crap4j plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/crap4j-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/crap4j-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/crap4j-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/crap4j-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/crap4j-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/crap4j-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/crap4j-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/crap4j-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/crap4j-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/crap4j-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/crap4j-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/crap4j-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/crap4j-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/crap4j-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/crap4j-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/crap4j-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/crap4j-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/crap4j-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/crap4j-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/crap4j-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/crap4j-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/crap4j-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/crap4j-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/crap4j-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/crap4j-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/crap4j-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/crap4j-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/crap4j-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/crap4j-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/crap4j-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/crap4j-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/crap4j-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/crap4j-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/crap4j-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/crap4j-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/crap4j-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/crap4j-plugin/deployments", + "created_at": "2010-12-13T05:30:57Z", + "updated_at": "2014-10-22T19:47:27Z", + "pushed_at": "2019-10-08T11:36:57Z", + "git_url": "git://github.com/jenkinsci/crap4j-plugin.git", + "ssh_url": "git@github.com:jenkinsci/crap4j-plugin.git", + "clone_url": "https://github.com/jenkinsci/crap4j-plugin.git", + "svn_url": "https://github.com/jenkinsci/crap4j-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 113, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 4, + "open_issues": 2, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163504, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNTA0", + "name": "cobertura-plugin", + "full_name": "jenkinsci/cobertura-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/cobertura-plugin", + "description": "Jenkins cobertura plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/cobertura-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/cobertura-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/cobertura-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/cobertura-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/cobertura-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/cobertura-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/cobertura-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/cobertura-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/cobertura-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/cobertura-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/cobertura-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/cobertura-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/cobertura-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/cobertura-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/cobertura-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/cobertura-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/cobertura-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/cobertura-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/cobertura-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/cobertura-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/cobertura-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/cobertura-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/cobertura-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/cobertura-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/cobertura-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/cobertura-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/cobertura-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/cobertura-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/cobertura-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/cobertura-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/cobertura-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/cobertura-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/cobertura-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/cobertura-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/cobertura-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/cobertura-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/cobertura-plugin/deployments", + "created_at": "2010-12-13T05:31:02Z", + "updated_at": "2019-10-18T13:53:31Z", + "pushed_at": "2019-10-10T02:31:40Z", + "git_url": "git://github.com/jenkinsci/cobertura-plugin.git", + "ssh_url": "git@github.com:jenkinsci/cobertura-plugin.git", + "clone_url": "https://github.com/jenkinsci/cobertura-plugin.git", + "svn_url": "https://github.com/jenkinsci/cobertura-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 647, + "stargazers_count": 94, + "watchers_count": 94, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 113, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 42, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 113, + "open_issues": 42, + "watchers": 94, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163505, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNTA1", + "name": "distTest-plugin", + "full_name": "jenkinsci/distTest-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/distTest-plugin", + "description": "Jenkins distTest plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/distTest-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/distTest-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/distTest-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/distTest-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/distTest-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/distTest-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/distTest-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/distTest-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/distTest-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/distTest-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/distTest-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/distTest-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/distTest-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/distTest-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/distTest-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/distTest-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/distTest-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/distTest-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/distTest-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/distTest-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/distTest-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/distTest-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/distTest-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/distTest-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/distTest-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/distTest-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/distTest-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/distTest-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/distTest-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/distTest-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/distTest-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/distTest-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/distTest-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/distTest-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/distTest-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/distTest-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/distTest-plugin/deployments", + "created_at": "2010-12-13T05:31:04Z", + "updated_at": "2013-11-10T02:00:35Z", + "pushed_at": "2013-11-10T02:00:29Z", + "git_url": "git://github.com/jenkinsci/distTest-plugin.git", + "ssh_url": "git@github.com:jenkinsci/distTest-plugin.git", + "clone_url": "https://github.com/jenkinsci/distTest-plugin.git", + "svn_url": "https://github.com/jenkinsci/distTest-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 138, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163506, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNTA2", + "name": "cvs-tag-plugin", + "full_name": "jenkinsci/cvs-tag-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/cvs-tag-plugin", + "description": "Jenkins cvs-tag plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/cvs-tag-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/cvs-tag-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/cvs-tag-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/cvs-tag-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/cvs-tag-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/cvs-tag-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/cvs-tag-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/cvs-tag-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/cvs-tag-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/cvs-tag-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/cvs-tag-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/cvs-tag-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/cvs-tag-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/cvs-tag-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/cvs-tag-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/cvs-tag-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/cvs-tag-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/cvs-tag-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/cvs-tag-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/cvs-tag-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/cvs-tag-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/cvs-tag-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/cvs-tag-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/cvs-tag-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/cvs-tag-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/cvs-tag-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/cvs-tag-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/cvs-tag-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/cvs-tag-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/cvs-tag-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/cvs-tag-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/cvs-tag-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/cvs-tag-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/cvs-tag-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/cvs-tag-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/cvs-tag-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/cvs-tag-plugin/deployments", + "created_at": "2010-12-13T05:31:04Z", + "updated_at": "2017-04-16T21:21:24Z", + "pushed_at": "2013-11-10T01:59:29Z", + "git_url": "git://github.com/jenkinsci/cvs-tag-plugin.git", + "ssh_url": "git@github.com:jenkinsci/cvs-tag-plugin.git", + "clone_url": "https://github.com/jenkinsci/cvs-tag-plugin.git", + "svn_url": "https://github.com/jenkinsci/cvs-tag-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 331, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 8, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 8, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163507, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNTA3", + "name": "dashboard-view-plugin", + "full_name": "jenkinsci/dashboard-view-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/dashboard-view-plugin", + "description": "Jenkins dashboard-view plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/dashboard-view-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/dashboard-view-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/dashboard-view-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/dashboard-view-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/dashboard-view-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/dashboard-view-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/dashboard-view-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/dashboard-view-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/dashboard-view-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/dashboard-view-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/dashboard-view-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/dashboard-view-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/dashboard-view-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/dashboard-view-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/dashboard-view-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/dashboard-view-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/dashboard-view-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/dashboard-view-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/dashboard-view-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/dashboard-view-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/dashboard-view-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/dashboard-view-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/dashboard-view-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/dashboard-view-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/dashboard-view-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/dashboard-view-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/dashboard-view-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/dashboard-view-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/dashboard-view-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/dashboard-view-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/dashboard-view-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/dashboard-view-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/dashboard-view-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/dashboard-view-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/dashboard-view-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/dashboard-view-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/dashboard-view-plugin/deployments", + "created_at": "2010-12-13T05:31:21Z", + "updated_at": "2019-09-26T22:21:41Z", + "pushed_at": "2019-09-26T22:21:42Z", + "git_url": "git://github.com/jenkinsci/dashboard-view-plugin.git", + "ssh_url": "git@github.com:jenkinsci/dashboard-view-plugin.git", + "clone_url": "https://github.com/jenkinsci/dashboard-view-plugin.git", + "svn_url": "https://github.com/jenkinsci/dashboard-view-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 479, + "stargazers_count": 39, + "watchers_count": 39, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 71, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 71, + "open_issues": 1, + "watchers": 39, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163508, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNTA4", + "name": "distfork-plugin", + "full_name": "jenkinsci/distfork-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/distfork-plugin", + "description": "Jenkins distfork plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/distfork-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/distfork-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/distfork-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/distfork-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/distfork-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/distfork-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/distfork-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/distfork-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/distfork-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/distfork-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/distfork-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/distfork-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/distfork-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/distfork-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/distfork-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/distfork-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/distfork-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/distfork-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/distfork-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/distfork-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/distfork-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/distfork-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/distfork-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/distfork-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/distfork-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/distfork-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/distfork-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/distfork-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/distfork-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/distfork-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/distfork-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/distfork-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/distfork-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/distfork-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/distfork-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/distfork-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/distfork-plugin/deployments", + "created_at": "2010-12-13T05:31:28Z", + "updated_at": "2017-01-31T17:06:40Z", + "pushed_at": "2018-01-30T01:01:00Z", + "git_url": "git://github.com/jenkinsci/distfork-plugin.git", + "ssh_url": "git@github.com:jenkinsci/distfork-plugin.git", + "clone_url": "https://github.com/jenkinsci/distfork-plugin.git", + "svn_url": "https://github.com/jenkinsci/distfork-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 72, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 8, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 8, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163511, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNTEx", + "name": "cvs-plugin", + "full_name": "jenkinsci/cvs-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/cvs-plugin", + "description": "Jenkins cvs plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/cvs-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/cvs-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/cvs-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/cvs-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/cvs-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/cvs-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/cvs-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/cvs-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/cvs-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/cvs-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/cvs-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/cvs-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/cvs-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/cvs-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/cvs-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/cvs-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/cvs-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/cvs-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/cvs-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/cvs-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/cvs-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/cvs-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/cvs-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/cvs-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/cvs-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/cvs-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/cvs-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/cvs-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/cvs-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/cvs-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/cvs-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/cvs-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/cvs-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/cvs-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/cvs-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/cvs-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/cvs-plugin/deployments", + "created_at": "2010-12-13T05:31:35Z", + "updated_at": "2019-09-17T12:28:39Z", + "pushed_at": "2019-04-25T06:54:58Z", + "git_url": "git://github.com/jenkinsci/cvs-plugin.git", + "ssh_url": "git@github.com:jenkinsci/cvs-plugin.git", + "clone_url": "https://github.com/jenkinsci/cvs-plugin.git", + "svn_url": "https://github.com/jenkinsci/cvs-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 783, + "stargazers_count": 19, + "watchers_count": 19, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 40, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 6, + "license": null, + "forks": 40, + "open_issues": 6, + "watchers": 19, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163512, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNTEy", + "name": "dependency-analyzer-plugin", + "full_name": "jenkinsci/dependency-analyzer-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/dependency-analyzer-plugin", + "description": "Jenkins dependency-analyzer plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/dependency-analyzer-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/dependency-analyzer-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/dependency-analyzer-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/dependency-analyzer-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/dependency-analyzer-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/dependency-analyzer-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/dependency-analyzer-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/dependency-analyzer-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/dependency-analyzer-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/dependency-analyzer-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/dependency-analyzer-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/dependency-analyzer-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/dependency-analyzer-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/dependency-analyzer-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/dependency-analyzer-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/dependency-analyzer-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/dependency-analyzer-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/dependency-analyzer-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/dependency-analyzer-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/dependency-analyzer-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/dependency-analyzer-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/dependency-analyzer-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/dependency-analyzer-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/dependency-analyzer-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/dependency-analyzer-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/dependency-analyzer-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/dependency-analyzer-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/dependency-analyzer-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/dependency-analyzer-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/dependency-analyzer-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/dependency-analyzer-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/dependency-analyzer-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/dependency-analyzer-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/dependency-analyzer-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/dependency-analyzer-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/dependency-analyzer-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/dependency-analyzer-plugin/deployments", + "created_at": "2010-12-13T05:31:35Z", + "updated_at": "2019-10-10T12:27:43Z", + "pushed_at": "2019-10-10T12:27:41Z", + "git_url": "git://github.com/jenkinsci/dependency-analyzer-plugin.git", + "ssh_url": "git@github.com:jenkinsci/dependency-analyzer-plugin.git", + "clone_url": "https://github.com/jenkinsci/dependency-analyzer-plugin.git", + "svn_url": "https://github.com/jenkinsci/dependency-analyzer-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 104, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 6, + "open_issues": 0, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163514, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNTE0", + "name": "doclinks-plugin", + "full_name": "jenkinsci/doclinks-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/doclinks-plugin", + "description": "Jenkins doclinks plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/doclinks-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/doclinks-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/doclinks-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/doclinks-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/doclinks-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/doclinks-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/doclinks-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/doclinks-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/doclinks-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/doclinks-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/doclinks-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/doclinks-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/doclinks-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/doclinks-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/doclinks-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/doclinks-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/doclinks-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/doclinks-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/doclinks-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/doclinks-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/doclinks-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/doclinks-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/doclinks-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/doclinks-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/doclinks-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/doclinks-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/doclinks-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/doclinks-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/doclinks-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/doclinks-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/doclinks-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/doclinks-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/doclinks-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/doclinks-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/doclinks-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/doclinks-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/doclinks-plugin/deployments", + "created_at": "2010-12-13T05:31:42Z", + "updated_at": "2019-04-09T21:20:52Z", + "pushed_at": "2019-10-08T11:26:08Z", + "git_url": "git://github.com/jenkinsci/doclinks-plugin.git", + "ssh_url": "git@github.com:jenkinsci/doclinks-plugin.git", + "clone_url": "https://github.com/jenkinsci/doclinks-plugin.git", + "svn_url": "https://github.com/jenkinsci/doclinks-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 105, + "stargazers_count": 8, + "watchers_count": 8, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 11, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": null, + "forks": 11, + "open_issues": 3, + "watchers": 8, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163515, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNTE1", + "name": "dos-trigger-plugin", + "full_name": "jenkinsci/dos-trigger-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/dos-trigger-plugin", + "description": "Jenkins dos-trigger plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/dos-trigger-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/dos-trigger-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/dos-trigger-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/dos-trigger-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/dos-trigger-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/dos-trigger-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/dos-trigger-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/dos-trigger-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/dos-trigger-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/dos-trigger-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/dos-trigger-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/dos-trigger-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/dos-trigger-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/dos-trigger-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/dos-trigger-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/dos-trigger-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/dos-trigger-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/dos-trigger-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/dos-trigger-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/dos-trigger-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/dos-trigger-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/dos-trigger-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/dos-trigger-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/dos-trigger-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/dos-trigger-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/dos-trigger-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/dos-trigger-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/dos-trigger-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/dos-trigger-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/dos-trigger-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/dos-trigger-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/dos-trigger-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/dos-trigger-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/dos-trigger-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/dos-trigger-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/dos-trigger-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/dos-trigger-plugin/deployments", + "created_at": "2010-12-13T05:31:42Z", + "updated_at": "2013-11-10T02:00:42Z", + "pushed_at": "2019-10-08T16:11:37Z", + "git_url": "git://github.com/jenkinsci/dos-trigger-plugin.git", + "ssh_url": "git@github.com:jenkinsci/dos-trigger-plugin.git", + "clone_url": "https://github.com/jenkinsci/dos-trigger-plugin.git", + "svn_url": "https://github.com/jenkinsci/dos-trigger-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 136, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 3, + "open_issues": 1, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163517, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNTE3", + "name": "downstream-buildview-plugin", + "full_name": "jenkinsci/downstream-buildview-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/downstream-buildview-plugin", + "description": "Jenkins downstream-buildview plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/downstream-buildview-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/downstream-buildview-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/downstream-buildview-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/downstream-buildview-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/downstream-buildview-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/downstream-buildview-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/downstream-buildview-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/downstream-buildview-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/downstream-buildview-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/downstream-buildview-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/downstream-buildview-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/downstream-buildview-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/downstream-buildview-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/downstream-buildview-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/downstream-buildview-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/downstream-buildview-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/downstream-buildview-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/downstream-buildview-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/downstream-buildview-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/downstream-buildview-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/downstream-buildview-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/downstream-buildview-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/downstream-buildview-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/downstream-buildview-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/downstream-buildview-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/downstream-buildview-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/downstream-buildview-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/downstream-buildview-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/downstream-buildview-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/downstream-buildview-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/downstream-buildview-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/downstream-buildview-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/downstream-buildview-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/downstream-buildview-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/downstream-buildview-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/downstream-buildview-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/downstream-buildview-plugin/deployments", + "created_at": "2010-12-13T05:31:50Z", + "updated_at": "2019-08-05T11:16:04Z", + "pushed_at": "2019-10-08T09:58:39Z", + "git_url": "git://github.com/jenkinsci/downstream-buildview-plugin.git", + "ssh_url": "git@github.com:jenkinsci/downstream-buildview-plugin.git", + "clone_url": "https://github.com/jenkinsci/downstream-buildview-plugin.git", + "svn_url": "https://github.com/jenkinsci/downstream-buildview-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 205, + "stargazers_count": 9, + "watchers_count": 9, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 18, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": null, + "forks": 18, + "open_issues": 3, + "watchers": 9, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163520, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNTIw", + "name": "description-setter-plugin", + "full_name": "jenkinsci/description-setter-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/description-setter-plugin", + "description": "Jenkins description-setter plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/description-setter-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/description-setter-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/description-setter-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/description-setter-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/description-setter-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/description-setter-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/description-setter-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/description-setter-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/description-setter-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/description-setter-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/description-setter-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/description-setter-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/description-setter-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/description-setter-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/description-setter-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/description-setter-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/description-setter-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/description-setter-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/description-setter-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/description-setter-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/description-setter-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/description-setter-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/description-setter-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/description-setter-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/description-setter-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/description-setter-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/description-setter-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/description-setter-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/description-setter-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/description-setter-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/description-setter-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/description-setter-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/description-setter-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/description-setter-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/description-setter-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/description-setter-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/description-setter-plugin/deployments", + "created_at": "2010-12-13T05:32:08Z", + "updated_at": "2019-01-04T02:55:33Z", + "pushed_at": "2019-09-24T10:17:29Z", + "git_url": "git://github.com/jenkinsci/description-setter-plugin.git", + "ssh_url": "git@github.com:jenkinsci/description-setter-plugin.git", + "clone_url": "https://github.com/jenkinsci/description-setter-plugin.git", + "svn_url": "https://github.com/jenkinsci/description-setter-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 98, + "stargazers_count": 16, + "watchers_count": 16, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 30, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 7, + "license": null, + "forks": 30, + "open_issues": 7, + "watchers": 16, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163521, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNTIx", + "name": "deploy-plugin", + "full_name": "jenkinsci/deploy-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/deploy-plugin", + "description": "Jenkins deploy plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/deploy-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/deploy-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/deploy-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/deploy-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/deploy-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/deploy-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/deploy-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/deploy-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/deploy-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/deploy-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/deploy-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/deploy-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/deploy-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/deploy-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/deploy-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/deploy-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/deploy-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/deploy-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/deploy-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/deploy-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/deploy-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/deploy-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/deploy-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/deploy-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/deploy-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/deploy-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/deploy-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/deploy-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/deploy-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/deploy-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/deploy-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/deploy-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/deploy-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/deploy-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/deploy-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/deploy-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/deploy-plugin/deployments", + "created_at": "2010-12-13T05:32:09Z", + "updated_at": "2019-08-01T19:34:21Z", + "pushed_at": "2019-09-28T18:44:11Z", + "git_url": "git://github.com/jenkinsci/deploy-plugin.git", + "ssh_url": "git@github.com:jenkinsci/deploy-plugin.git", + "clone_url": "https://github.com/jenkinsci/deploy-plugin.git", + "svn_url": "https://github.com/jenkinsci/deploy-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 300, + "stargazers_count": 75, + "watchers_count": 75, + "language": "Java", + "has_issues": false, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 109, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 109, + "open_issues": 2, + "watchers": 75, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163522, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNTIy", + "name": "cppunit-plugin", + "full_name": "jenkinsci/cppunit-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/cppunit-plugin", + "description": "Jenkins cppunit plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/cppunit-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/cppunit-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/cppunit-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/cppunit-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/cppunit-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/cppunit-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/cppunit-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/cppunit-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/cppunit-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/cppunit-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/cppunit-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/cppunit-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/cppunit-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/cppunit-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/cppunit-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/cppunit-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/cppunit-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/cppunit-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/cppunit-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/cppunit-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/cppunit-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/cppunit-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/cppunit-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/cppunit-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/cppunit-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/cppunit-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/cppunit-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/cppunit-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/cppunit-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/cppunit-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/cppunit-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/cppunit-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/cppunit-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/cppunit-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/cppunit-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/cppunit-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/cppunit-plugin/deployments", + "created_at": "2010-12-13T05:32:16Z", + "updated_at": "2013-11-10T01:58:54Z", + "pushed_at": "2013-11-10T01:58:50Z", + "git_url": "git://github.com/jenkinsci/cppunit-plugin.git", + "ssh_url": "git@github.com:jenkinsci/cppunit-plugin.git", + "clone_url": "https://github.com/jenkinsci/cppunit-plugin.git", + "svn_url": "https://github.com/jenkinsci/cppunit-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 250, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 3, + "open_issues": 0, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163523, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNTIz", + "name": "checkstyle-plugin", + "full_name": "jenkinsci/checkstyle-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/checkstyle-plugin", + "description": "Jenkins checkstyle plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/checkstyle-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/checkstyle-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/checkstyle-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/checkstyle-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/checkstyle-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/checkstyle-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/checkstyle-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/checkstyle-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/checkstyle-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/checkstyle-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/checkstyle-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/checkstyle-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/checkstyle-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/checkstyle-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/checkstyle-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/checkstyle-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/checkstyle-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/checkstyle-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/checkstyle-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/checkstyle-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/checkstyle-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/checkstyle-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/checkstyle-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/checkstyle-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/checkstyle-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/checkstyle-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/checkstyle-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/checkstyle-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/checkstyle-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/checkstyle-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/checkstyle-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/checkstyle-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/checkstyle-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/checkstyle-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/checkstyle-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/checkstyle-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/checkstyle-plugin/deployments", + "created_at": "2010-12-13T05:32:27Z", + "updated_at": "2019-09-24T11:33:23Z", + "pushed_at": "2019-09-24T11:33:21Z", + "git_url": "git://github.com/jenkinsci/checkstyle-plugin.git", + "ssh_url": "git@github.com:jenkinsci/checkstyle-plugin.git", + "clone_url": "https://github.com/jenkinsci/checkstyle-plugin.git", + "svn_url": "https://github.com/jenkinsci/checkstyle-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 1916, + "stargazers_count": 29, + "watchers_count": 29, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 29, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 29, + "open_issues": 2, + "watchers": 29, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163524, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNTI0", + "name": "downstream-ext-plugin", + "full_name": "jenkinsci/downstream-ext-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/downstream-ext-plugin", + "description": "Jenkins downstream-ext plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/downstream-ext-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/downstream-ext-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/downstream-ext-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/downstream-ext-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/downstream-ext-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/downstream-ext-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/downstream-ext-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/downstream-ext-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/downstream-ext-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/downstream-ext-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/downstream-ext-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/downstream-ext-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/downstream-ext-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/downstream-ext-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/downstream-ext-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/downstream-ext-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/downstream-ext-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/downstream-ext-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/downstream-ext-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/downstream-ext-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/downstream-ext-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/downstream-ext-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/downstream-ext-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/downstream-ext-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/downstream-ext-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/downstream-ext-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/downstream-ext-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/downstream-ext-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/downstream-ext-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/downstream-ext-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/downstream-ext-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/downstream-ext-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/downstream-ext-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/downstream-ext-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/downstream-ext-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/downstream-ext-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/downstream-ext-plugin/deployments", + "created_at": "2010-12-13T05:32:30Z", + "updated_at": "2018-07-19T09:53:35Z", + "pushed_at": "2019-10-08T11:17:40Z", + "git_url": "git://github.com/jenkinsci/downstream-ext-plugin.git", + "ssh_url": "git@github.com:jenkinsci/downstream-ext-plugin.git", + "clone_url": "https://github.com/jenkinsci/downstream-ext-plugin.git", + "svn_url": "https://github.com/jenkinsci/downstream-ext-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 67, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 7, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": null, + "forks": 7, + "open_issues": 3, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163525, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNTI1", + "name": "disk-usage-plugin", + "full_name": "jenkinsci/disk-usage-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/disk-usage-plugin", + "description": "Jenkins disk-usage plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/disk-usage-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/disk-usage-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/disk-usage-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/disk-usage-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/disk-usage-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/disk-usage-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/disk-usage-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/disk-usage-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/disk-usage-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/disk-usage-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/disk-usage-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/disk-usage-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/disk-usage-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/disk-usage-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/disk-usage-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/disk-usage-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/disk-usage-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/disk-usage-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/disk-usage-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/disk-usage-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/disk-usage-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/disk-usage-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/disk-usage-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/disk-usage-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/disk-usage-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/disk-usage-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/disk-usage-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/disk-usage-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/disk-usage-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/disk-usage-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/disk-usage-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/disk-usage-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/disk-usage-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/disk-usage-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/disk-usage-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/disk-usage-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/disk-usage-plugin/deployments", + "created_at": "2010-12-13T05:32:30Z", + "updated_at": "2019-10-12T12:27:50Z", + "pushed_at": "2019-09-24T10:13:45Z", + "git_url": "git://github.com/jenkinsci/disk-usage-plugin.git", + "ssh_url": "git@github.com:jenkinsci/disk-usage-plugin.git", + "clone_url": "https://github.com/jenkinsci/disk-usage-plugin.git", + "svn_url": "https://github.com/jenkinsci/disk-usage-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 934, + "stargazers_count": 21, + "watchers_count": 21, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 54, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 54, + "open_issues": 3, + "watchers": 21, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163526, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNTI2", + "name": "drools-plugin", + "full_name": "jenkinsci/drools-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/drools-plugin", + "description": "Jenkins drools plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/drools-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/drools-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/drools-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/drools-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/drools-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/drools-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/drools-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/drools-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/drools-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/drools-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/drools-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/drools-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/drools-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/drools-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/drools-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/drools-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/drools-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/drools-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/drools-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/drools-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/drools-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/drools-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/drools-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/drools-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/drools-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/drools-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/drools-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/drools-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/drools-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/drools-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/drools-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/drools-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/drools-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/drools-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/drools-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/drools-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/drools-plugin/deployments", + "created_at": "2010-12-13T05:32:35Z", + "updated_at": "2013-11-10T02:00:49Z", + "pushed_at": "2013-11-10T02:00:44Z", + "git_url": "git://github.com/jenkinsci/drools-plugin.git", + "ssh_url": "git@github.com:jenkinsci/drools-plugin.git", + "clone_url": "https://github.com/jenkinsci/drools-plugin.git", + "svn_url": "https://github.com/jenkinsci/drools-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 840, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163527, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNTI3", + "name": "exclusive-execution-plugin", + "full_name": "jenkinsci/exclusive-execution-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/exclusive-execution-plugin", + "description": "Jenkins exclusive-execution plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/exclusive-execution-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/exclusive-execution-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/exclusive-execution-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/exclusive-execution-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/exclusive-execution-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/exclusive-execution-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/exclusive-execution-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/exclusive-execution-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/exclusive-execution-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/exclusive-execution-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/exclusive-execution-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/exclusive-execution-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/exclusive-execution-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/exclusive-execution-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/exclusive-execution-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/exclusive-execution-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/exclusive-execution-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/exclusive-execution-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/exclusive-execution-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/exclusive-execution-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/exclusive-execution-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/exclusive-execution-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/exclusive-execution-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/exclusive-execution-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/exclusive-execution-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/exclusive-execution-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/exclusive-execution-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/exclusive-execution-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/exclusive-execution-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/exclusive-execution-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/exclusive-execution-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/exclusive-execution-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/exclusive-execution-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/exclusive-execution-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/exclusive-execution-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/exclusive-execution-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/exclusive-execution-plugin/deployments", + "created_at": "2010-12-13T05:32:35Z", + "updated_at": "2019-10-08T11:50:34Z", + "pushed_at": "2019-10-08T11:50:32Z", + "git_url": "git://github.com/jenkinsci/exclusive-execution-plugin.git", + "ssh_url": "git@github.com:jenkinsci/exclusive-execution-plugin.git", + "clone_url": "https://github.com/jenkinsci/exclusive-execution-plugin.git", + "svn_url": "https://github.com/jenkinsci/exclusive-execution-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 43, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 7, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 7, + "open_issues": 0, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163528, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNTI4", + "name": "easyant-plugin", + "full_name": "jenkinsci/easyant-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/easyant-plugin", + "description": "Jenkins easyant plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/easyant-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/easyant-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/easyant-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/easyant-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/easyant-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/easyant-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/easyant-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/easyant-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/easyant-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/easyant-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/easyant-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/easyant-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/easyant-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/easyant-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/easyant-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/easyant-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/easyant-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/easyant-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/easyant-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/easyant-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/easyant-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/easyant-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/easyant-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/easyant-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/easyant-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/easyant-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/easyant-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/easyant-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/easyant-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/easyant-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/easyant-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/easyant-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/easyant-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/easyant-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/easyant-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/easyant-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/easyant-plugin/deployments", + "created_at": "2010-12-13T05:32:37Z", + "updated_at": "2013-12-27T03:53:09Z", + "pushed_at": "2016-04-16T01:29:43Z", + "git_url": "git://github.com/jenkinsci/easyant-plugin.git", + "ssh_url": "git@github.com:jenkinsci/easyant-plugin.git", + "clone_url": "https://github.com/jenkinsci/easyant-plugin.git", + "svn_url": "https://github.com/jenkinsci/easyant-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 60, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163532, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNTMy", + "name": "extended-read-permission-plugin", + "full_name": "jenkinsci/extended-read-permission-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/extended-read-permission-plugin", + "description": "Jenkins extended-read-permission plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/extended-read-permission-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/extended-read-permission-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/extended-read-permission-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/extended-read-permission-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/extended-read-permission-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/extended-read-permission-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/extended-read-permission-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/extended-read-permission-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/extended-read-permission-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/extended-read-permission-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/extended-read-permission-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/extended-read-permission-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/extended-read-permission-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/extended-read-permission-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/extended-read-permission-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/extended-read-permission-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/extended-read-permission-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/extended-read-permission-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/extended-read-permission-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/extended-read-permission-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/extended-read-permission-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/extended-read-permission-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/extended-read-permission-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/extended-read-permission-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/extended-read-permission-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/extended-read-permission-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/extended-read-permission-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/extended-read-permission-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/extended-read-permission-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/extended-read-permission-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/extended-read-permission-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/extended-read-permission-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/extended-read-permission-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/extended-read-permission-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/extended-read-permission-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/extended-read-permission-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/extended-read-permission-plugin/deployments", + "created_at": "2010-12-13T05:33:06Z", + "updated_at": "2019-10-09T07:39:53Z", + "pushed_at": "2019-10-13T09:52:05Z", + "git_url": "git://github.com/jenkinsci/extended-read-permission-plugin.git", + "ssh_url": "git@github.com:jenkinsci/extended-read-permission-plugin.git", + "clone_url": "https://github.com/jenkinsci/extended-read-permission-plugin.git", + "svn_url": "https://github.com/jenkinsci/extended-read-permission-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 25, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 7, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 7, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163535, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNTM1", + "name": "doxygen-plugin", + "full_name": "jenkinsci/doxygen-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/doxygen-plugin", + "description": "Jenkins doxygen plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/doxygen-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/doxygen-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/doxygen-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/doxygen-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/doxygen-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/doxygen-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/doxygen-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/doxygen-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/doxygen-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/doxygen-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/doxygen-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/doxygen-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/doxygen-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/doxygen-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/doxygen-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/doxygen-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/doxygen-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/doxygen-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/doxygen-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/doxygen-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/doxygen-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/doxygen-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/doxygen-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/doxygen-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/doxygen-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/doxygen-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/doxygen-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/doxygen-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/doxygen-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/doxygen-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/doxygen-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/doxygen-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/doxygen-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/doxygen-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/doxygen-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/doxygen-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/doxygen-plugin/deployments", + "created_at": "2010-12-13T05:33:15Z", + "updated_at": "2019-10-23T14:09:41Z", + "pushed_at": "2019-10-08T10:13:02Z", + "git_url": "git://github.com/jenkinsci/doxygen-plugin.git", + "ssh_url": "git@github.com:jenkinsci/doxygen-plugin.git", + "clone_url": "https://github.com/jenkinsci/doxygen-plugin.git", + "svn_url": "https://github.com/jenkinsci/doxygen-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 146, + "stargazers_count": 13, + "watchers_count": 13, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 24, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 5, + "license": null, + "forks": 24, + "open_issues": 5, + "watchers": 13, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163536, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNTM2", + "name": "favorite-view-plugin", + "full_name": "jenkinsci/favorite-view-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/favorite-view-plugin", + "description": "Jenkins favorite-view plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/favorite-view-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/favorite-view-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/favorite-view-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/favorite-view-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/favorite-view-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/favorite-view-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/favorite-view-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/favorite-view-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/favorite-view-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/favorite-view-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/favorite-view-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/favorite-view-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/favorite-view-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/favorite-view-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/favorite-view-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/favorite-view-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/favorite-view-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/favorite-view-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/favorite-view-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/favorite-view-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/favorite-view-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/favorite-view-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/favorite-view-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/favorite-view-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/favorite-view-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/favorite-view-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/favorite-view-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/favorite-view-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/favorite-view-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/favorite-view-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/favorite-view-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/favorite-view-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/favorite-view-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/favorite-view-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/favorite-view-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/favorite-view-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/favorite-view-plugin/deployments", + "created_at": "2010-12-13T05:33:16Z", + "updated_at": "2016-09-10T01:40:37Z", + "pushed_at": "2019-10-08T15:19:33Z", + "git_url": "git://github.com/jenkinsci/favorite-view-plugin.git", + "ssh_url": "git@github.com:jenkinsci/favorite-view-plugin.git", + "clone_url": "https://github.com/jenkinsci/favorite-view-plugin.git", + "svn_url": "https://github.com/jenkinsci/favorite-view-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 102, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 5, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163538, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNTM4", + "name": "dimensionsscm-plugin", + "full_name": "jenkinsci/dimensionsscm-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/dimensionsscm-plugin", + "description": "Jenkins Dimensions Plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/dimensionsscm-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/dimensionsscm-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/dimensionsscm-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/dimensionsscm-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/dimensionsscm-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/dimensionsscm-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/dimensionsscm-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/dimensionsscm-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/dimensionsscm-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/dimensionsscm-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/dimensionsscm-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/dimensionsscm-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/dimensionsscm-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/dimensionsscm-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/dimensionsscm-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/dimensionsscm-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/dimensionsscm-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/dimensionsscm-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/dimensionsscm-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/dimensionsscm-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/dimensionsscm-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/dimensionsscm-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/dimensionsscm-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/dimensionsscm-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/dimensionsscm-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/dimensionsscm-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/dimensionsscm-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/dimensionsscm-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/dimensionsscm-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/dimensionsscm-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/dimensionsscm-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/dimensionsscm-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/dimensionsscm-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/dimensionsscm-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/dimensionsscm-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/dimensionsscm-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/dimensionsscm-plugin/deployments", + "created_at": "2010-12-13T05:33:21Z", + "updated_at": "2019-08-23T14:54:16Z", + "pushed_at": "2019-09-27T15:41:49Z", + "git_url": "git://github.com/jenkinsci/dimensionsscm-plugin.git", + "ssh_url": "git@github.com:jenkinsci/dimensionsscm-plugin.git", + "clone_url": "https://github.com/jenkinsci/dimensionsscm-plugin.git", + "svn_url": "https://github.com/jenkinsci/dimensionsscm-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 1130, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 17, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 17, + "open_issues": 1, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163539, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNTM5", + "name": "extended-choice-parameter-plugin", + "full_name": "jenkinsci/extended-choice-parameter-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/extended-choice-parameter-plugin", + "description": "Jenkins extended-choice-parameter plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/extended-choice-parameter-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/extended-choice-parameter-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/extended-choice-parameter-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/extended-choice-parameter-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/extended-choice-parameter-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/extended-choice-parameter-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/extended-choice-parameter-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/extended-choice-parameter-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/extended-choice-parameter-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/extended-choice-parameter-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/extended-choice-parameter-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/extended-choice-parameter-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/extended-choice-parameter-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/extended-choice-parameter-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/extended-choice-parameter-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/extended-choice-parameter-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/extended-choice-parameter-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/extended-choice-parameter-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/extended-choice-parameter-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/extended-choice-parameter-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/extended-choice-parameter-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/extended-choice-parameter-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/extended-choice-parameter-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/extended-choice-parameter-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/extended-choice-parameter-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/extended-choice-parameter-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/extended-choice-parameter-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/extended-choice-parameter-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/extended-choice-parameter-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/extended-choice-parameter-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/extended-choice-parameter-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/extended-choice-parameter-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/extended-choice-parameter-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/extended-choice-parameter-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/extended-choice-parameter-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/extended-choice-parameter-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/extended-choice-parameter-plugin/deployments", + "created_at": "2010-12-13T05:33:32Z", + "updated_at": "2019-09-24T05:04:46Z", + "pushed_at": "2019-09-07T13:53:51Z", + "git_url": "git://github.com/jenkinsci/extended-choice-parameter-plugin.git", + "ssh_url": "git@github.com:jenkinsci/extended-choice-parameter-plugin.git", + "clone_url": "https://github.com/jenkinsci/extended-choice-parameter-plugin.git", + "svn_url": "https://github.com/jenkinsci/extended-choice-parameter-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 912, + "stargazers_count": 37, + "watchers_count": 37, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 74, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 74, + "open_issues": 3, + "watchers": 37, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163541, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNTQx", + "name": "envfile-plugin", + "full_name": "jenkinsci/envfile-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/envfile-plugin", + "description": "Jenkins envfile plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/envfile-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/envfile-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/envfile-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/envfile-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/envfile-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/envfile-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/envfile-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/envfile-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/envfile-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/envfile-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/envfile-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/envfile-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/envfile-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/envfile-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/envfile-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/envfile-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/envfile-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/envfile-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/envfile-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/envfile-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/envfile-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/envfile-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/envfile-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/envfile-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/envfile-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/envfile-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/envfile-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/envfile-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/envfile-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/envfile-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/envfile-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/envfile-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/envfile-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/envfile-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/envfile-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/envfile-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/envfile-plugin/deployments", + "created_at": "2010-12-13T05:33:35Z", + "updated_at": "2013-11-10T02:01:30Z", + "pushed_at": "2019-10-08T10:05:35Z", + "git_url": "git://github.com/jenkinsci/envfile-plugin.git", + "ssh_url": "git@github.com:jenkinsci/envfile-plugin.git", + "clone_url": "https://github.com/jenkinsci/envfile-plugin.git", + "svn_url": "https://github.com/jenkinsci/envfile-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 173, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 9, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 9, + "open_issues": 2, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163542, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNTQy", + "name": "clearcase-plugin", + "full_name": "jenkinsci/clearcase-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/clearcase-plugin", + "description": "Jenkins clearcase plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/clearcase-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/clearcase-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/clearcase-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/clearcase-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/clearcase-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/clearcase-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/clearcase-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/clearcase-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/clearcase-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/clearcase-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/clearcase-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/clearcase-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/clearcase-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/clearcase-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/clearcase-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/clearcase-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/clearcase-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/clearcase-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/clearcase-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/clearcase-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/clearcase-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/clearcase-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/clearcase-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/clearcase-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/clearcase-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/clearcase-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/clearcase-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/clearcase-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/clearcase-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/clearcase-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/clearcase-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/clearcase-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/clearcase-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/clearcase-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/clearcase-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/clearcase-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/clearcase-plugin/deployments", + "created_at": "2010-12-13T05:33:37Z", + "updated_at": "2019-10-17T03:08:46Z", + "pushed_at": "2019-09-20T21:06:27Z", + "git_url": "git://github.com/jenkinsci/clearcase-plugin.git", + "ssh_url": "git@github.com:jenkinsci/clearcase-plugin.git", + "clone_url": "https://github.com/jenkinsci/clearcase-plugin.git", + "svn_url": "https://github.com/jenkinsci/clearcase-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 4503, + "stargazers_count": 20, + "watchers_count": 20, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 35, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 4, + "license": null, + "forks": 35, + "open_issues": 4, + "watchers": 20, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163543, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNTQz", + "name": "emotional-hudson-plugin", + "full_name": "jenkinsci/emotional-hudson-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/emotional-hudson-plugin", + "description": "Jenkins emotional-hudson plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/emotional-hudson-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/emotional-hudson-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/emotional-hudson-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/emotional-hudson-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/emotional-hudson-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/emotional-hudson-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/emotional-hudson-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/emotional-hudson-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/emotional-hudson-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/emotional-hudson-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/emotional-hudson-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/emotional-hudson-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/emotional-hudson-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/emotional-hudson-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/emotional-hudson-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/emotional-hudson-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/emotional-hudson-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/emotional-hudson-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/emotional-hudson-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/emotional-hudson-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/emotional-hudson-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/emotional-hudson-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/emotional-hudson-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/emotional-hudson-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/emotional-hudson-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/emotional-hudson-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/emotional-hudson-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/emotional-hudson-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/emotional-hudson-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/emotional-hudson-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/emotional-hudson-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/emotional-hudson-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/emotional-hudson-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/emotional-hudson-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/emotional-hudson-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/emotional-hudson-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/emotional-hudson-plugin/deployments", + "created_at": "2010-12-13T05:33:43Z", + "updated_at": "2013-11-10T02:01:23Z", + "pushed_at": "2013-11-10T02:01:21Z", + "git_url": "git://github.com/jenkinsci/emotional-hudson-plugin.git", + "ssh_url": "git@github.com:jenkinsci/emotional-hudson-plugin.git", + "clone_url": "https://github.com/jenkinsci/emotional-hudson-plugin.git", + "svn_url": "https://github.com/jenkinsci/emotional-hudson-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 232, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163545, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNTQ1", + "name": "filesystem_scm-plugin", + "full_name": "jenkinsci/filesystem_scm-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/filesystem_scm-plugin", + "description": "Jenkins filesystem_scm plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/filesystem_scm-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/filesystem_scm-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/filesystem_scm-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/filesystem_scm-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/filesystem_scm-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/filesystem_scm-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/filesystem_scm-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/filesystem_scm-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/filesystem_scm-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/filesystem_scm-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/filesystem_scm-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/filesystem_scm-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/filesystem_scm-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/filesystem_scm-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/filesystem_scm-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/filesystem_scm-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/filesystem_scm-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/filesystem_scm-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/filesystem_scm-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/filesystem_scm-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/filesystem_scm-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/filesystem_scm-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/filesystem_scm-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/filesystem_scm-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/filesystem_scm-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/filesystem_scm-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/filesystem_scm-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/filesystem_scm-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/filesystem_scm-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/filesystem_scm-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/filesystem_scm-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/filesystem_scm-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/filesystem_scm-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/filesystem_scm-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/filesystem_scm-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/filesystem_scm-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/filesystem_scm-plugin/deployments", + "created_at": "2010-12-13T05:33:57Z", + "updated_at": "2019-10-09T11:06:23Z", + "pushed_at": "2019-10-09T11:06:21Z", + "git_url": "git://github.com/jenkinsci/filesystem_scm-plugin.git", + "ssh_url": "git@github.com:jenkinsci/filesystem_scm-plugin.git", + "clone_url": "https://github.com/jenkinsci/filesystem_scm-plugin.git", + "svn_url": "https://github.com/jenkinsci/filesystem_scm-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 143, + "stargazers_count": 6, + "watchers_count": 6, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 12, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 12, + "open_issues": 2, + "watchers": 6, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163546, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNTQ2", + "name": "favorite-plugin", + "full_name": "jenkinsci/favorite-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/favorite-plugin", + "description": "Jenkins favorite plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/favorite-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/favorite-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/favorite-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/favorite-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/favorite-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/favorite-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/favorite-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/favorite-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/favorite-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/favorite-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/favorite-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/favorite-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/favorite-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/favorite-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/favorite-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/favorite-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/favorite-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/favorite-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/favorite-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/favorite-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/favorite-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/favorite-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/favorite-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/favorite-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/favorite-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/favorite-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/favorite-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/favorite-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/favorite-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/favorite-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/favorite-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/favorite-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/favorite-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/favorite-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/favorite-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/favorite-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/favorite-plugin/deployments", + "created_at": "2010-12-13T05:33:59Z", + "updated_at": "2019-01-17T01:25:48Z", + "pushed_at": "2019-09-24T09:38:44Z", + "git_url": "git://github.com/jenkinsci/favorite-plugin.git", + "ssh_url": "git@github.com:jenkinsci/favorite-plugin.git", + "clone_url": "https://github.com/jenkinsci/favorite-plugin.git", + "svn_url": "https://github.com/jenkinsci/favorite-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 124, + "stargazers_count": 8, + "watchers_count": 8, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 17, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 17, + "open_issues": 3, + "watchers": 8, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163548, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNTQ4", + "name": "files-found-trigger-plugin", + "full_name": "jenkinsci/files-found-trigger-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/files-found-trigger-plugin", + "description": "Jenkins files-found-trigger plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/files-found-trigger-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/files-found-trigger-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/files-found-trigger-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/files-found-trigger-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/files-found-trigger-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/files-found-trigger-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/files-found-trigger-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/files-found-trigger-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/files-found-trigger-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/files-found-trigger-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/files-found-trigger-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/files-found-trigger-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/files-found-trigger-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/files-found-trigger-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/files-found-trigger-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/files-found-trigger-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/files-found-trigger-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/files-found-trigger-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/files-found-trigger-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/files-found-trigger-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/files-found-trigger-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/files-found-trigger-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/files-found-trigger-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/files-found-trigger-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/files-found-trigger-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/files-found-trigger-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/files-found-trigger-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/files-found-trigger-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/files-found-trigger-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/files-found-trigger-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/files-found-trigger-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/files-found-trigger-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/files-found-trigger-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/files-found-trigger-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/files-found-trigger-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/files-found-trigger-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/files-found-trigger-plugin/deployments", + "created_at": "2010-12-13T05:34:20Z", + "updated_at": "2018-11-06T07:48:51Z", + "pushed_at": "2019-10-08T11:38:30Z", + "git_url": "git://github.com/jenkinsci/files-found-trigger-plugin.git", + "ssh_url": "git@github.com:jenkinsci/files-found-trigger-plugin.git", + "clone_url": "https://github.com/jenkinsci/files-found-trigger-plugin.git", + "svn_url": "https://github.com/jenkinsci/files-found-trigger-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 146, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 4, + "open_issues": 1, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163549, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNTQ5", + "name": "gcrawler-plugin", + "full_name": "jenkinsci/gcrawler-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/gcrawler-plugin", + "description": "Jenkins gcrawler plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/gcrawler-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/gcrawler-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/gcrawler-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/gcrawler-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/gcrawler-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/gcrawler-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/gcrawler-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/gcrawler-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/gcrawler-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/gcrawler-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/gcrawler-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/gcrawler-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/gcrawler-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/gcrawler-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/gcrawler-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/gcrawler-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/gcrawler-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/gcrawler-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/gcrawler-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/gcrawler-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/gcrawler-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/gcrawler-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/gcrawler-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/gcrawler-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/gcrawler-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/gcrawler-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/gcrawler-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/gcrawler-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/gcrawler-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/gcrawler-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/gcrawler-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/gcrawler-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/gcrawler-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/gcrawler-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/gcrawler-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/gcrawler-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/gcrawler-plugin/deployments", + "created_at": "2010-12-13T05:34:27Z", + "updated_at": "2014-01-30T01:28:22Z", + "pushed_at": "2013-11-10T02:03:09Z", + "git_url": "git://github.com/jenkinsci/gcrawler-plugin.git", + "ssh_url": "git@github.com:jenkinsci/gcrawler-plugin.git", + "clone_url": "https://github.com/jenkinsci/gcrawler-plugin.git", + "svn_url": "https://github.com/jenkinsci/gcrawler-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 168, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163550, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNTUw", + "name": "flexteam-plugin", + "full_name": "jenkinsci/flexteam-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/flexteam-plugin", + "description": "Jenkins flexteam plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/flexteam-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/flexteam-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/flexteam-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/flexteam-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/flexteam-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/flexteam-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/flexteam-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/flexteam-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/flexteam-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/flexteam-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/flexteam-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/flexteam-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/flexteam-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/flexteam-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/flexteam-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/flexteam-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/flexteam-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/flexteam-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/flexteam-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/flexteam-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/flexteam-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/flexteam-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/flexteam-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/flexteam-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/flexteam-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/flexteam-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/flexteam-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/flexteam-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/flexteam-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/flexteam-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/flexteam-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/flexteam-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/flexteam-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/flexteam-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/flexteam-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/flexteam-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/flexteam-plugin/deployments", + "created_at": "2010-12-13T05:34:31Z", + "updated_at": "2013-11-10T02:02:46Z", + "pushed_at": "2013-11-10T02:02:43Z", + "git_url": "git://github.com/jenkinsci/flexteam-plugin.git", + "ssh_url": "git@github.com:jenkinsci/flexteam-plugin.git", + "clone_url": "https://github.com/jenkinsci/flexteam-plugin.git", + "svn_url": "https://github.com/jenkinsci/flexteam-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 144, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163552, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNTUy", + "name": "fit-plugin", + "full_name": "jenkinsci/fit-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/fit-plugin", + "description": "Jenkins fit plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/fit-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/fit-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/fit-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/fit-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/fit-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/fit-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/fit-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/fit-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/fit-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/fit-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/fit-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/fit-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/fit-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/fit-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/fit-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/fit-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/fit-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/fit-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/fit-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/fit-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/fit-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/fit-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/fit-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/fit-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/fit-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/fit-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/fit-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/fit-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/fit-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/fit-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/fit-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/fit-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/fit-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/fit-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/fit-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/fit-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/fit-plugin/deployments", + "created_at": "2010-12-13T05:35:00Z", + "updated_at": "2014-03-02T11:52:12Z", + "pushed_at": "2013-11-10T02:02:38Z", + "git_url": "git://github.com/jenkinsci/fit-plugin.git", + "ssh_url": "git@github.com:jenkinsci/fit-plugin.git", + "clone_url": "https://github.com/jenkinsci/fit-plugin.git", + "svn_url": "https://github.com/jenkinsci/fit-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 196, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163553, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNTUz", + "name": "email-ext-plugin", + "full_name": "jenkinsci/email-ext-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/email-ext-plugin", + "description": "Jenkins email-ext plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/email-ext-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/email-ext-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/email-ext-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/email-ext-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/email-ext-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/email-ext-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/email-ext-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/email-ext-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/email-ext-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/email-ext-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/email-ext-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/email-ext-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/email-ext-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/email-ext-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/email-ext-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/email-ext-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/email-ext-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/email-ext-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/email-ext-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/email-ext-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/email-ext-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/email-ext-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/email-ext-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/email-ext-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/email-ext-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/email-ext-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/email-ext-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/email-ext-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/email-ext-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/email-ext-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/email-ext-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/email-ext-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/email-ext-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/email-ext-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/email-ext-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/email-ext-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/email-ext-plugin/deployments", + "created_at": "2010-12-13T05:35:01Z", + "updated_at": "2019-10-25T03:18:11Z", + "pushed_at": "2019-10-18T19:46:49Z", + "git_url": "git://github.com/jenkinsci/email-ext-plugin.git", + "ssh_url": "git@github.com:jenkinsci/email-ext-plugin.git", + "clone_url": "https://github.com/jenkinsci/email-ext-plugin.git", + "svn_url": "https://github.com/jenkinsci/email-ext-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Email-ext+plugin", + "size": 25918, + "stargazers_count": 263, + "watchers_count": 263, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 563, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 563, + "open_issues": 1, + "watchers": 263, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163554, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNTU0", + "name": "fitnesse-plugin", + "full_name": "jenkinsci/fitnesse-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/fitnesse-plugin", + "description": "Jenkins fitnesse plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/fitnesse-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/fitnesse-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/fitnesse-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/fitnesse-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/fitnesse-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/fitnesse-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/fitnesse-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/fitnesse-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/fitnesse-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/fitnesse-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/fitnesse-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/fitnesse-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/fitnesse-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/fitnesse-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/fitnesse-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/fitnesse-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/fitnesse-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/fitnesse-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/fitnesse-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/fitnesse-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/fitnesse-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/fitnesse-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/fitnesse-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/fitnesse-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/fitnesse-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/fitnesse-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/fitnesse-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/fitnesse-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/fitnesse-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/fitnesse-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/fitnesse-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/fitnesse-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/fitnesse-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/fitnesse-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/fitnesse-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/fitnesse-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/fitnesse-plugin/deployments", + "created_at": "2010-12-13T05:35:01Z", + "updated_at": "2019-09-19T19:25:14Z", + "pushed_at": "2019-09-19T19:25:12Z", + "git_url": "git://github.com/jenkinsci/fitnesse-plugin.git", + "ssh_url": "git@github.com:jenkinsci/fitnesse-plugin.git", + "clone_url": "https://github.com/jenkinsci/fitnesse-plugin.git", + "svn_url": "https://github.com/jenkinsci/fitnesse-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 7692, + "stargazers_count": 28, + "watchers_count": 28, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 65, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 65, + "open_issues": 1, + "watchers": 28, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163555, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNTU1", + "name": "github-plugin", + "full_name": "jenkinsci/github-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/github-plugin", + "description": "Jenkins GitHub plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/github-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/github-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/github-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/github-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/github-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/github-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/github-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/github-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/github-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/github-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/github-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/github-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/github-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/github-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/github-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/github-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/github-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/github-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/github-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/github-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/github-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/github-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/github-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/github-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/github-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/github-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/github-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/github-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/github-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/github-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/github-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/github-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/github-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/github-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/github-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/github-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/github-plugin/deployments", + "created_at": "2010-12-13T05:35:14Z", + "updated_at": "2019-10-14T00:08:44Z", + "pushed_at": "2019-10-07T23:48:05Z", + "git_url": "git://github.com/jenkinsci/github-plugin.git", + "ssh_url": "git@github.com:jenkinsci/github-plugin.git", + "clone_url": "https://github.com/jenkinsci/github-plugin.git", + "svn_url": "https://github.com/jenkinsci/github-plugin", + "homepage": "http://wiki.jenkins-ci.org/display/JENKINS/Github+Plugin", + "size": 1365, + "stargazers_count": 235, + "watchers_count": 235, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 329, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 12, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 329, + "open_issues": 12, + "watchers": 235, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163556, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNTU2", + "name": "gant-plugin", + "full_name": "jenkinsci/gant-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/gant-plugin", + "description": "Jenkins gant plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/gant-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/gant-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/gant-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/gant-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/gant-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/gant-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/gant-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/gant-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/gant-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/gant-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/gant-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/gant-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/gant-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/gant-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/gant-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/gant-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/gant-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/gant-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/gant-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/gant-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/gant-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/gant-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/gant-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/gant-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/gant-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/gant-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/gant-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/gant-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/gant-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/gant-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/gant-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/gant-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/gant-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/gant-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/gant-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/gant-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/gant-plugin/deployments", + "created_at": "2010-12-13T05:35:16Z", + "updated_at": "2014-06-10T19:17:23Z", + "pushed_at": "2013-11-10T02:03:00Z", + "git_url": "git://github.com/jenkinsci/gant-plugin.git", + "ssh_url": "git@github.com:jenkinsci/gant-plugin.git", + "clone_url": "https://github.com/jenkinsci/gant-plugin.git", + "svn_url": "https://github.com/jenkinsci/gant-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 204, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163557, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNTU3", + "name": "google-desktop-gadget-plugin", + "full_name": "jenkinsci/google-desktop-gadget-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/google-desktop-gadget-plugin", + "description": "Jenkins google-desktop-gadget plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/google-desktop-gadget-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/google-desktop-gadget-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/google-desktop-gadget-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/google-desktop-gadget-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/google-desktop-gadget-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/google-desktop-gadget-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/google-desktop-gadget-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/google-desktop-gadget-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/google-desktop-gadget-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/google-desktop-gadget-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/google-desktop-gadget-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/google-desktop-gadget-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/google-desktop-gadget-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/google-desktop-gadget-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/google-desktop-gadget-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/google-desktop-gadget-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/google-desktop-gadget-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/google-desktop-gadget-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/google-desktop-gadget-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/google-desktop-gadget-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/google-desktop-gadget-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/google-desktop-gadget-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/google-desktop-gadget-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/google-desktop-gadget-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/google-desktop-gadget-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/google-desktop-gadget-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/google-desktop-gadget-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/google-desktop-gadget-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/google-desktop-gadget-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/google-desktop-gadget-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/google-desktop-gadget-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/google-desktop-gadget-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/google-desktop-gadget-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/google-desktop-gadget-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/google-desktop-gadget-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/google-desktop-gadget-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/google-desktop-gadget-plugin/deployments", + "created_at": "2010-12-13T05:35:19Z", + "updated_at": "2013-11-10T02:04:01Z", + "pushed_at": "2013-11-10T02:03:58Z", + "git_url": "git://github.com/jenkinsci/google-desktop-gadget-plugin.git", + "ssh_url": "git@github.com:jenkinsci/google-desktop-gadget-plugin.git", + "clone_url": "https://github.com/jenkinsci/google-desktop-gadget-plugin.git", + "svn_url": "https://github.com/jenkinsci/google-desktop-gadget-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 844, + "stargazers_count": 1, + "watchers_count": 1, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163558, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNTU4", + "name": "fortify360-plugin", + "full_name": "jenkinsci/fortify360-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/fortify360-plugin", + "description": "Jenkins fortify360 plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/fortify360-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/fortify360-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/fortify360-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/fortify360-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/fortify360-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/fortify360-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/fortify360-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/fortify360-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/fortify360-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/fortify360-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/fortify360-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/fortify360-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/fortify360-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/fortify360-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/fortify360-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/fortify360-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/fortify360-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/fortify360-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/fortify360-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/fortify360-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/fortify360-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/fortify360-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/fortify360-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/fortify360-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/fortify360-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/fortify360-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/fortify360-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/fortify360-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/fortify360-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/fortify360-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/fortify360-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/fortify360-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/fortify360-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/fortify360-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/fortify360-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/fortify360-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/fortify360-plugin/deployments", + "created_at": "2010-12-13T05:35:21Z", + "updated_at": "2019-02-22T19:26:59Z", + "pushed_at": "2019-02-22T19:26:58Z", + "git_url": "git://github.com/jenkinsci/fortify360-plugin.git", + "ssh_url": "git@github.com:jenkinsci/fortify360-plugin.git", + "clone_url": "https://github.com/jenkinsci/fortify360-plugin.git", + "svn_url": "https://github.com/jenkinsci/fortify360-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 6525, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 5, + "open_issues": 2, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163560, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNTYw", + "name": "ftppublisher-plugin", + "full_name": "jenkinsci/ftppublisher-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/ftppublisher-plugin", + "description": "Jenkins ftppublisher plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/ftppublisher-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/ftppublisher-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/ftppublisher-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/ftppublisher-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/ftppublisher-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/ftppublisher-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/ftppublisher-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/ftppublisher-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/ftppublisher-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/ftppublisher-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/ftppublisher-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/ftppublisher-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/ftppublisher-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/ftppublisher-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/ftppublisher-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/ftppublisher-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/ftppublisher-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/ftppublisher-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/ftppublisher-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/ftppublisher-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/ftppublisher-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/ftppublisher-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/ftppublisher-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/ftppublisher-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/ftppublisher-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/ftppublisher-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/ftppublisher-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/ftppublisher-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/ftppublisher-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/ftppublisher-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/ftppublisher-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/ftppublisher-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/ftppublisher-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/ftppublisher-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/ftppublisher-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/ftppublisher-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/ftppublisher-plugin/deployments", + "created_at": "2010-12-13T05:35:33Z", + "updated_at": "2016-08-18T04:29:54Z", + "pushed_at": "2019-10-08T10:03:28Z", + "git_url": "git://github.com/jenkinsci/ftppublisher-plugin.git", + "ssh_url": "git@github.com:jenkinsci/ftppublisher-plugin.git", + "clone_url": "https://github.com/jenkinsci/ftppublisher-plugin.git", + "svn_url": "https://github.com/jenkinsci/ftppublisher-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 1032, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 7, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 7, + "open_issues": 2, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163561, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNTYx", + "name": "global-build-stats-plugin", + "full_name": "jenkinsci/global-build-stats-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/global-build-stats-plugin", + "description": "Jenkins global-build-stats plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/global-build-stats-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/global-build-stats-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/global-build-stats-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/global-build-stats-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/global-build-stats-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/global-build-stats-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/global-build-stats-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/global-build-stats-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/global-build-stats-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/global-build-stats-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/global-build-stats-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/global-build-stats-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/global-build-stats-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/global-build-stats-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/global-build-stats-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/global-build-stats-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/global-build-stats-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/global-build-stats-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/global-build-stats-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/global-build-stats-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/global-build-stats-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/global-build-stats-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/global-build-stats-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/global-build-stats-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/global-build-stats-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/global-build-stats-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/global-build-stats-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/global-build-stats-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/global-build-stats-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/global-build-stats-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/global-build-stats-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/global-build-stats-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/global-build-stats-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/global-build-stats-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/global-build-stats-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/global-build-stats-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/global-build-stats-plugin/deployments", + "created_at": "2010-12-13T05:35:41Z", + "updated_at": "2019-08-13T14:39:36Z", + "pushed_at": "2019-10-08T08:10:33Z", + "git_url": "git://github.com/jenkinsci/global-build-stats-plugin.git", + "ssh_url": "git@github.com:jenkinsci/global-build-stats-plugin.git", + "clone_url": "https://github.com/jenkinsci/global-build-stats-plugin.git", + "svn_url": "https://github.com/jenkinsci/global-build-stats-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 625, + "stargazers_count": 14, + "watchers_count": 14, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 35, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 5, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 35, + "open_issues": 5, + "watchers": 14, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163562, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNTYy", + "name": "gallio-plugin", + "full_name": "jenkinsci/gallio-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/gallio-plugin", + "description": "Jenkins gallio plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/gallio-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/gallio-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/gallio-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/gallio-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/gallio-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/gallio-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/gallio-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/gallio-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/gallio-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/gallio-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/gallio-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/gallio-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/gallio-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/gallio-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/gallio-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/gallio-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/gallio-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/gallio-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/gallio-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/gallio-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/gallio-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/gallio-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/gallio-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/gallio-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/gallio-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/gallio-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/gallio-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/gallio-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/gallio-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/gallio-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/gallio-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/gallio-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/gallio-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/gallio-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/gallio-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/gallio-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/gallio-plugin/deployments", + "created_at": "2010-12-13T05:35:43Z", + "updated_at": "2016-06-16T02:49:23Z", + "pushed_at": "2014-08-14T15:45:40Z", + "git_url": "git://github.com/jenkinsci/gallio-plugin.git", + "ssh_url": "git@github.com:jenkinsci/gallio-plugin.git", + "clone_url": "https://github.com/jenkinsci/gallio-plugin.git", + "svn_url": "https://github.com/jenkinsci/gallio-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 629, + "stargazers_count": 4, + "watchers_count": 4, + "language": "XSLT", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163563, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNTYz", + "name": "gcal-plugin", + "full_name": "jenkinsci/gcal-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/gcal-plugin", + "description": "Jenkins gcal plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/gcal-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/gcal-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/gcal-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/gcal-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/gcal-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/gcal-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/gcal-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/gcal-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/gcal-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/gcal-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/gcal-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/gcal-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/gcal-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/gcal-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/gcal-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/gcal-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/gcal-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/gcal-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/gcal-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/gcal-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/gcal-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/gcal-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/gcal-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/gcal-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/gcal-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/gcal-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/gcal-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/gcal-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/gcal-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/gcal-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/gcal-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/gcal-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/gcal-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/gcal-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/gcal-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/gcal-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/gcal-plugin/deployments", + "created_at": "2010-12-13T05:35:55Z", + "updated_at": "2019-10-09T15:17:46Z", + "pushed_at": "2019-10-09T15:17:44Z", + "git_url": "git://github.com/jenkinsci/gcal-plugin.git", + "ssh_url": "git@github.com:jenkinsci/gcal-plugin.git", + "clone_url": "https://github.com/jenkinsci/gcal-plugin.git", + "svn_url": "https://github.com/jenkinsci/gcal-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 380, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 9, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 9, + "open_issues": 0, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163564, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNTY0", + "name": "emma-plugin", + "full_name": "jenkinsci/emma-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/emma-plugin", + "description": "Jenkins emma plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/emma-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/emma-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/emma-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/emma-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/emma-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/emma-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/emma-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/emma-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/emma-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/emma-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/emma-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/emma-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/emma-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/emma-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/emma-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/emma-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/emma-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/emma-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/emma-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/emma-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/emma-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/emma-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/emma-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/emma-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/emma-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/emma-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/emma-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/emma-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/emma-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/emma-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/emma-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/emma-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/emma-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/emma-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/emma-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/emma-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/emma-plugin/deployments", + "created_at": "2010-12-13T05:36:02Z", + "updated_at": "2019-10-12T12:27:49Z", + "pushed_at": "2019-10-08T09:51:19Z", + "git_url": "git://github.com/jenkinsci/emma-plugin.git", + "ssh_url": "git@github.com:jenkinsci/emma-plugin.git", + "clone_url": "https://github.com/jenkinsci/emma-plugin.git", + "svn_url": "https://github.com/jenkinsci/emma-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 383, + "stargazers_count": 13, + "watchers_count": 13, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 19, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": null, + "forks": 19, + "open_issues": 3, + "watchers": 13, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163565, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNTY1", + "name": "googleanalytics-plugin", + "full_name": "jenkinsci/googleanalytics-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/googleanalytics-plugin", + "description": "Jenkins googleanalytics plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/googleanalytics-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/googleanalytics-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/googleanalytics-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/googleanalytics-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/googleanalytics-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/googleanalytics-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/googleanalytics-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/googleanalytics-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/googleanalytics-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/googleanalytics-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/googleanalytics-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/googleanalytics-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/googleanalytics-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/googleanalytics-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/googleanalytics-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/googleanalytics-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/googleanalytics-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/googleanalytics-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/googleanalytics-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/googleanalytics-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/googleanalytics-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/googleanalytics-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/googleanalytics-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/googleanalytics-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/googleanalytics-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/googleanalytics-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/googleanalytics-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/googleanalytics-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/googleanalytics-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/googleanalytics-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/googleanalytics-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/googleanalytics-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/googleanalytics-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/googleanalytics-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/googleanalytics-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/googleanalytics-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/googleanalytics-plugin/deployments", + "created_at": "2010-12-13T05:36:15Z", + "updated_at": "2014-01-07T16:14:38Z", + "pushed_at": "2016-04-16T01:31:27Z", + "git_url": "git://github.com/jenkinsci/googleanalytics-plugin.git", + "ssh_url": "git@github.com:jenkinsci/googleanalytics-plugin.git", + "clone_url": "https://github.com/jenkinsci/googleanalytics-plugin.git", + "svn_url": "https://github.com/jenkinsci/googleanalytics-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 41, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 4, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163567, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNTY3", + "name": "growl-plugin", + "full_name": "jenkinsci/growl-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/growl-plugin", + "description": "Jenkins growl plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/growl-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/growl-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/growl-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/growl-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/growl-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/growl-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/growl-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/growl-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/growl-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/growl-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/growl-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/growl-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/growl-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/growl-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/growl-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/growl-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/growl-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/growl-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/growl-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/growl-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/growl-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/growl-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/growl-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/growl-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/growl-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/growl-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/growl-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/growl-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/growl-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/growl-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/growl-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/growl-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/growl-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/growl-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/growl-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/growl-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/growl-plugin/deployments", + "created_at": "2010-12-13T05:36:44Z", + "updated_at": "2013-11-10T02:04:35Z", + "pushed_at": "2016-04-16T01:31:28Z", + "git_url": "git://github.com/jenkinsci/growl-plugin.git", + "ssh_url": "git@github.com:jenkinsci/growl-plugin.git", + "clone_url": "https://github.com/jenkinsci/growl-plugin.git", + "svn_url": "https://github.com/jenkinsci/growl-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 44, + "stargazers_count": 11, + "watchers_count": 11, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 5, + "open_issues": 0, + "watchers": 11, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163569, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNTY5", + "name": "heavy-job-plugin", + "full_name": "jenkinsci/heavy-job-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/heavy-job-plugin", + "description": "Jenkins heavy-job plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/heavy-job-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/heavy-job-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/heavy-job-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/heavy-job-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/heavy-job-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/heavy-job-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/heavy-job-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/heavy-job-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/heavy-job-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/heavy-job-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/heavy-job-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/heavy-job-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/heavy-job-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/heavy-job-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/heavy-job-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/heavy-job-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/heavy-job-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/heavy-job-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/heavy-job-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/heavy-job-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/heavy-job-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/heavy-job-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/heavy-job-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/heavy-job-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/heavy-job-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/heavy-job-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/heavy-job-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/heavy-job-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/heavy-job-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/heavy-job-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/heavy-job-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/heavy-job-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/heavy-job-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/heavy-job-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/heavy-job-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/heavy-job-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/heavy-job-plugin/deployments", + "created_at": "2010-12-13T05:36:47Z", + "updated_at": "2016-02-17T18:17:47Z", + "pushed_at": "2019-10-08T11:43:32Z", + "git_url": "git://github.com/jenkinsci/heavy-job-plugin.git", + "ssh_url": "git@github.com:jenkinsci/heavy-job-plugin.git", + "clone_url": "https://github.com/jenkinsci/heavy-job-plugin.git", + "svn_url": "https://github.com/jenkinsci/heavy-job-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 200, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 18, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 4, + "license": null, + "forks": 18, + "open_issues": 4, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163570, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNTcw", + "name": "gradle-plugin", + "full_name": "jenkinsci/gradle-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/gradle-plugin", + "description": "Jenkins gradle plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/gradle-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/gradle-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/gradle-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/gradle-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/gradle-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/gradle-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/gradle-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/gradle-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/gradle-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/gradle-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/gradle-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/gradle-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/gradle-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/gradle-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/gradle-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/gradle-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/gradle-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/gradle-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/gradle-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/gradle-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/gradle-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/gradle-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/gradle-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/gradle-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/gradle-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/gradle-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/gradle-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/gradle-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/gradle-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/gradle-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/gradle-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/gradle-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/gradle-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/gradle-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/gradle-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/gradle-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/gradle-plugin/deployments", + "created_at": "2010-12-13T05:37:00Z", + "updated_at": "2019-10-22T20:46:41Z", + "pushed_at": "2019-10-22T20:46:39Z", + "git_url": "git://github.com/jenkinsci/gradle-plugin.git", + "ssh_url": "git@github.com:jenkinsci/gradle-plugin.git", + "clone_url": "https://github.com/jenkinsci/gradle-plugin.git", + "svn_url": "https://github.com/jenkinsci/gradle-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 1204, + "stargazers_count": 88, + "watchers_count": 88, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 85, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 9, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 85, + "open_issues": 9, + "watchers": 88, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163571, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNTcx", + "name": "gnat-plugin", + "full_name": "jenkinsci/gnat-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/gnat-plugin", + "description": "Jenkins gnat plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/gnat-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/gnat-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/gnat-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/gnat-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/gnat-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/gnat-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/gnat-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/gnat-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/gnat-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/gnat-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/gnat-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/gnat-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/gnat-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/gnat-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/gnat-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/gnat-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/gnat-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/gnat-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/gnat-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/gnat-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/gnat-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/gnat-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/gnat-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/gnat-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/gnat-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/gnat-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/gnat-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/gnat-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/gnat-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/gnat-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/gnat-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/gnat-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/gnat-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/gnat-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/gnat-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/gnat-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/gnat-plugin/deployments", + "created_at": "2010-12-13T05:37:00Z", + "updated_at": "2013-11-10T02:03:57Z", + "pushed_at": "2013-11-10T02:03:55Z", + "git_url": "git://github.com/jenkinsci/gnat-plugin.git", + "ssh_url": "git@github.com:jenkinsci/gnat-plugin.git", + "clone_url": "https://github.com/jenkinsci/gnat-plugin.git", + "svn_url": "https://github.com/jenkinsci/gnat-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 391, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163572, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNTcy", + "name": "grinder-plugin", + "full_name": "jenkinsci/grinder-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/grinder-plugin", + "description": "Jenkins grinder plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/grinder-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/grinder-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/grinder-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/grinder-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/grinder-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/grinder-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/grinder-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/grinder-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/grinder-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/grinder-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/grinder-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/grinder-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/grinder-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/grinder-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/grinder-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/grinder-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/grinder-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/grinder-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/grinder-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/grinder-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/grinder-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/grinder-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/grinder-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/grinder-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/grinder-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/grinder-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/grinder-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/grinder-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/grinder-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/grinder-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/grinder-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/grinder-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/grinder-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/grinder-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/grinder-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/grinder-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/grinder-plugin/deployments", + "created_at": "2010-12-13T05:37:07Z", + "updated_at": "2017-09-27T22:54:12Z", + "pushed_at": "2016-03-14T19:48:23Z", + "git_url": "git://github.com/jenkinsci/grinder-plugin.git", + "ssh_url": "git@github.com:jenkinsci/grinder-plugin.git", + "clone_url": "https://github.com/jenkinsci/grinder-plugin.git", + "svn_url": "https://github.com/jenkinsci/grinder-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 52, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 6, + "open_issues": 0, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163573, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNTcz", + "name": "greenballs-plugin", + "full_name": "jenkinsci/greenballs-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/greenballs-plugin", + "description": "Jenkins greenballs plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/greenballs-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/greenballs-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/greenballs-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/greenballs-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/greenballs-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/greenballs-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/greenballs-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/greenballs-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/greenballs-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/greenballs-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/greenballs-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/greenballs-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/greenballs-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/greenballs-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/greenballs-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/greenballs-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/greenballs-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/greenballs-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/greenballs-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/greenballs-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/greenballs-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/greenballs-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/greenballs-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/greenballs-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/greenballs-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/greenballs-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/greenballs-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/greenballs-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/greenballs-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/greenballs-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/greenballs-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/greenballs-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/greenballs-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/greenballs-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/greenballs-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/greenballs-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/greenballs-plugin/deployments", + "created_at": "2010-12-13T05:37:09Z", + "updated_at": "2019-10-01T12:21:17Z", + "pushed_at": "2019-10-01T12:21:15Z", + "git_url": "git://github.com/jenkinsci/greenballs-plugin.git", + "ssh_url": "git@github.com:jenkinsci/greenballs-plugin.git", + "clone_url": "https://github.com/jenkinsci/greenballs-plugin.git", + "svn_url": "https://github.com/jenkinsci/greenballs-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 248, + "stargazers_count": 26, + "watchers_count": 26, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 40, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 40, + "open_issues": 0, + "watchers": 26, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163574, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNTc0", + "name": "groovy-postbuild-plugin", + "full_name": "jenkinsci/groovy-postbuild-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/groovy-postbuild-plugin", + "description": "Jenkins groovy-postbuild plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/groovy-postbuild-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/groovy-postbuild-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/groovy-postbuild-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/groovy-postbuild-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/groovy-postbuild-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/groovy-postbuild-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/groovy-postbuild-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/groovy-postbuild-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/groovy-postbuild-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/groovy-postbuild-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/groovy-postbuild-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/groovy-postbuild-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/groovy-postbuild-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/groovy-postbuild-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/groovy-postbuild-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/groovy-postbuild-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/groovy-postbuild-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/groovy-postbuild-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/groovy-postbuild-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/groovy-postbuild-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/groovy-postbuild-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/groovy-postbuild-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/groovy-postbuild-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/groovy-postbuild-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/groovy-postbuild-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/groovy-postbuild-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/groovy-postbuild-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/groovy-postbuild-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/groovy-postbuild-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/groovy-postbuild-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/groovy-postbuild-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/groovy-postbuild-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/groovy-postbuild-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/groovy-postbuild-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/groovy-postbuild-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/groovy-postbuild-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/groovy-postbuild-plugin/deployments", + "created_at": "2010-12-13T05:37:10Z", + "updated_at": "2019-08-13T07:25:55Z", + "pushed_at": "2019-06-24T05:58:42Z", + "git_url": "git://github.com/jenkinsci/groovy-postbuild-plugin.git", + "ssh_url": "git@github.com:jenkinsci/groovy-postbuild-plugin.git", + "clone_url": "https://github.com/jenkinsci/groovy-postbuild-plugin.git", + "svn_url": "https://github.com/jenkinsci/groovy-postbuild-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 201, + "stargazers_count": 24, + "watchers_count": 24, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 41, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 41, + "open_issues": 2, + "watchers": 24, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163575, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNTc1", + "name": "googlecode-plugin", + "full_name": "jenkinsci/googlecode-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/googlecode-plugin", + "description": "Jenkins googlecode plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/googlecode-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/googlecode-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/googlecode-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/googlecode-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/googlecode-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/googlecode-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/googlecode-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/googlecode-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/googlecode-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/googlecode-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/googlecode-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/googlecode-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/googlecode-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/googlecode-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/googlecode-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/googlecode-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/googlecode-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/googlecode-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/googlecode-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/googlecode-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/googlecode-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/googlecode-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/googlecode-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/googlecode-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/googlecode-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/googlecode-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/googlecode-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/googlecode-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/googlecode-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/googlecode-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/googlecode-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/googlecode-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/googlecode-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/googlecode-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/googlecode-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/googlecode-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/googlecode-plugin/deployments", + "created_at": "2010-12-13T05:37:11Z", + "updated_at": "2013-11-10T02:04:08Z", + "pushed_at": "2013-11-10T02:04:02Z", + "git_url": "git://github.com/jenkinsci/googlecode-plugin.git", + "ssh_url": "git@github.com:jenkinsci/googlecode-plugin.git", + "clone_url": "https://github.com/jenkinsci/googlecode-plugin.git", + "svn_url": "https://github.com/jenkinsci/googlecode-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 212, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163580, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNTgw", + "name": "harvest-plugin", + "full_name": "jenkinsci/harvest-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/harvest-plugin", + "description": "Jenkins harvest plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/harvest-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/harvest-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/harvest-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/harvest-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/harvest-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/harvest-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/harvest-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/harvest-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/harvest-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/harvest-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/harvest-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/harvest-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/harvest-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/harvest-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/harvest-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/harvest-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/harvest-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/harvest-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/harvest-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/harvest-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/harvest-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/harvest-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/harvest-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/harvest-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/harvest-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/harvest-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/harvest-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/harvest-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/harvest-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/harvest-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/harvest-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/harvest-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/harvest-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/harvest-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/harvest-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/harvest-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/harvest-plugin/deployments", + "created_at": "2010-12-13T05:38:00Z", + "updated_at": "2017-03-08T14:57:22Z", + "pushed_at": "2016-06-12T19:07:20Z", + "git_url": "git://github.com/jenkinsci/harvest-plugin.git", + "ssh_url": "git@github.com:jenkinsci/harvest-plugin.git", + "clone_url": "https://github.com/jenkinsci/harvest-plugin.git", + "svn_url": "https://github.com/jenkinsci/harvest-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 77, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 11, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 11, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163581, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNTgx", + "name": "iphoneview-plugin", + "full_name": "jenkinsci/iphoneview-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/iphoneview-plugin", + "description": "Jenkins iphoneview plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/iphoneview-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/iphoneview-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/iphoneview-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/iphoneview-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/iphoneview-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/iphoneview-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/iphoneview-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/iphoneview-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/iphoneview-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/iphoneview-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/iphoneview-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/iphoneview-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/iphoneview-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/iphoneview-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/iphoneview-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/iphoneview-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/iphoneview-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/iphoneview-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/iphoneview-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/iphoneview-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/iphoneview-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/iphoneview-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/iphoneview-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/iphoneview-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/iphoneview-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/iphoneview-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/iphoneview-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/iphoneview-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/iphoneview-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/iphoneview-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/iphoneview-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/iphoneview-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/iphoneview-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/iphoneview-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/iphoneview-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/iphoneview-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/iphoneview-plugin/deployments", + "created_at": "2010-12-13T05:38:02Z", + "updated_at": "2013-11-10T02:05:41Z", + "pushed_at": "2013-11-10T02:05:38Z", + "git_url": "git://github.com/jenkinsci/iphoneview-plugin.git", + "ssh_url": "git@github.com:jenkinsci/iphoneview-plugin.git", + "clone_url": "https://github.com/jenkinsci/iphoneview-plugin.git", + "svn_url": "https://github.com/jenkinsci/iphoneview-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 248, + "stargazers_count": 1, + "watchers_count": 1, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163582, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNTgy", + "name": "ipmsg-plugin", + "full_name": "jenkinsci/ipmsg-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/ipmsg-plugin", + "description": "Jenkins ipmsg plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/ipmsg-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/ipmsg-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/ipmsg-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/ipmsg-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/ipmsg-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/ipmsg-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/ipmsg-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/ipmsg-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/ipmsg-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/ipmsg-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/ipmsg-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/ipmsg-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/ipmsg-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/ipmsg-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/ipmsg-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/ipmsg-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/ipmsg-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/ipmsg-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/ipmsg-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/ipmsg-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/ipmsg-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/ipmsg-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/ipmsg-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/ipmsg-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/ipmsg-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/ipmsg-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/ipmsg-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/ipmsg-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/ipmsg-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/ipmsg-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/ipmsg-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/ipmsg-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/ipmsg-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/ipmsg-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/ipmsg-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/ipmsg-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/ipmsg-plugin/deployments", + "created_at": "2010-12-13T05:38:06Z", + "updated_at": "2015-12-25T06:29:08Z", + "pushed_at": "2013-11-10T02:05:41Z", + "git_url": "git://github.com/jenkinsci/ipmsg-plugin.git", + "ssh_url": "git@github.com:jenkinsci/ipmsg-plugin.git", + "clone_url": "https://github.com/jenkinsci/ipmsg-plugin.git", + "svn_url": "https://github.com/jenkinsci/ipmsg-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 124, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163583, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNTgz", + "name": "hgca-plugin", + "full_name": "jenkinsci/hgca-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/hgca-plugin", + "description": "Jenkins hgca plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/hgca-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/hgca-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/hgca-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/hgca-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/hgca-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/hgca-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/hgca-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/hgca-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/hgca-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/hgca-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/hgca-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/hgca-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/hgca-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/hgca-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/hgca-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/hgca-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/hgca-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/hgca-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/hgca-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/hgca-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/hgca-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/hgca-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/hgca-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/hgca-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/hgca-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/hgca-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/hgca-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/hgca-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/hgca-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/hgca-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/hgca-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/hgca-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/hgca-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/hgca-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/hgca-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/hgca-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/hgca-plugin/deployments", + "created_at": "2010-12-13T05:38:06Z", + "updated_at": "2013-11-10T02:04:56Z", + "pushed_at": "2013-11-10T02:04:45Z", + "git_url": "git://github.com/jenkinsci/hgca-plugin.git", + "ssh_url": "git@github.com:jenkinsci/hgca-plugin.git", + "clone_url": "https://github.com/jenkinsci/hgca-plugin.git", + "svn_url": "https://github.com/jenkinsci/hgca-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 127, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 3, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163584, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNTg0", + "name": "grails-plugin", + "full_name": "jenkinsci/grails-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/grails-plugin", + "description": "Jenkins grails plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/grails-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/grails-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/grails-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/grails-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/grails-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/grails-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/grails-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/grails-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/grails-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/grails-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/grails-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/grails-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/grails-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/grails-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/grails-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/grails-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/grails-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/grails-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/grails-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/grails-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/grails-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/grails-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/grails-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/grails-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/grails-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/grails-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/grails-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/grails-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/grails-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/grails-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/grails-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/grails-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/grails-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/grails-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/grails-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/grails-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/grails-plugin/deployments", + "created_at": "2010-12-13T05:38:08Z", + "updated_at": "2017-12-15T18:48:24Z", + "pushed_at": "2017-08-14T14:32:41Z", + "git_url": "git://github.com/jenkinsci/grails-plugin.git", + "ssh_url": "git@github.com:jenkinsci/grails-plugin.git", + "clone_url": "https://github.com/jenkinsci/grails-plugin.git", + "svn_url": "https://github.com/jenkinsci/grails-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 171, + "stargazers_count": 20, + "watchers_count": 20, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 21, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 4, + "license": null, + "forks": 21, + "open_issues": 4, + "watchers": 20, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163586, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNTg2", + "name": "hadoop-plugin", + "full_name": "jenkinsci/hadoop-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/hadoop-plugin", + "description": "Jenkins hadoop plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/hadoop-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/hadoop-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/hadoop-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/hadoop-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/hadoop-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/hadoop-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/hadoop-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/hadoop-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/hadoop-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/hadoop-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/hadoop-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/hadoop-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/hadoop-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/hadoop-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/hadoop-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/hadoop-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/hadoop-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/hadoop-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/hadoop-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/hadoop-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/hadoop-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/hadoop-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/hadoop-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/hadoop-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/hadoop-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/hadoop-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/hadoop-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/hadoop-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/hadoop-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/hadoop-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/hadoop-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/hadoop-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/hadoop-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/hadoop-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/hadoop-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/hadoop-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/hadoop-plugin/deployments", + "created_at": "2010-12-13T05:38:25Z", + "updated_at": "2016-05-29T22:33:20Z", + "pushed_at": "2013-11-10T02:04:32Z", + "git_url": "git://github.com/jenkinsci/hadoop-plugin.git", + "ssh_url": "git@github.com:jenkinsci/hadoop-plugin.git", + "clone_url": "https://github.com/jenkinsci/hadoop-plugin.git", + "svn_url": "https://github.com/jenkinsci/hadoop-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 207, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 3, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163587, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNTg3", + "name": "hello-world-plugin", + "full_name": "jenkinsci/hello-world-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/hello-world-plugin", + "description": "Jenkins hello-world plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/hello-world-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/hello-world-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/hello-world-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/hello-world-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/hello-world-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/hello-world-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/hello-world-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/hello-world-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/hello-world-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/hello-world-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/hello-world-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/hello-world-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/hello-world-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/hello-world-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/hello-world-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/hello-world-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/hello-world-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/hello-world-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/hello-world-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/hello-world-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/hello-world-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/hello-world-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/hello-world-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/hello-world-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/hello-world-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/hello-world-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/hello-world-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/hello-world-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/hello-world-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/hello-world-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/hello-world-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/hello-world-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/hello-world-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/hello-world-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/hello-world-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/hello-world-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/hello-world-plugin/deployments", + "created_at": "2010-12-13T05:38:34Z", + "updated_at": "2018-11-04T12:26:18Z", + "pushed_at": "2018-10-09T19:10:38Z", + "git_url": "git://github.com/jenkinsci/hello-world-plugin.git", + "ssh_url": "git@github.com:jenkinsci/hello-world-plugin.git", + "clone_url": "https://github.com/jenkinsci/hello-world-plugin.git", + "svn_url": "https://github.com/jenkinsci/hello-world-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 525, + "stargazers_count": 34, + "watchers_count": 34, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 97, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 97, + "open_issues": 0, + "watchers": 34, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163588, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNTg4", + "name": "instant-messaging-parent-plugin", + "full_name": "jenkinsci/instant-messaging-parent-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/instant-messaging-parent-plugin", + "description": "Jenkins instant-messaging-parent plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/instant-messaging-parent-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/instant-messaging-parent-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/instant-messaging-parent-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/instant-messaging-parent-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/instant-messaging-parent-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/instant-messaging-parent-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/instant-messaging-parent-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/instant-messaging-parent-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/instant-messaging-parent-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/instant-messaging-parent-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/instant-messaging-parent-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/instant-messaging-parent-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/instant-messaging-parent-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/instant-messaging-parent-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/instant-messaging-parent-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/instant-messaging-parent-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/instant-messaging-parent-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/instant-messaging-parent-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/instant-messaging-parent-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/instant-messaging-parent-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/instant-messaging-parent-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/instant-messaging-parent-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/instant-messaging-parent-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/instant-messaging-parent-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/instant-messaging-parent-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/instant-messaging-parent-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/instant-messaging-parent-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/instant-messaging-parent-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/instant-messaging-parent-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/instant-messaging-parent-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/instant-messaging-parent-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/instant-messaging-parent-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/instant-messaging-parent-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/instant-messaging-parent-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/instant-messaging-parent-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/instant-messaging-parent-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/instant-messaging-parent-plugin/deployments", + "created_at": "2010-12-13T05:38:36Z", + "updated_at": "2017-05-23T01:40:54Z", + "pushed_at": "2016-09-17T18:52:49Z", + "git_url": "git://github.com/jenkinsci/instant-messaging-parent-plugin.git", + "ssh_url": "git@github.com:jenkinsci/instant-messaging-parent-plugin.git", + "clone_url": "https://github.com/jenkinsci/instant-messaging-parent-plugin.git", + "svn_url": "https://github.com/jenkinsci/instant-messaging-parent-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 81, + "stargazers_count": 4, + "watchers_count": 4, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 5, + "open_issues": 0, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163589, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNTg5", + "name": "hello-world-groovy-plugin", + "full_name": "jenkinsci/hello-world-groovy-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/hello-world-groovy-plugin", + "description": "Jenkins hello-world-groovy plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/hello-world-groovy-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/hello-world-groovy-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/hello-world-groovy-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/hello-world-groovy-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/hello-world-groovy-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/hello-world-groovy-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/hello-world-groovy-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/hello-world-groovy-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/hello-world-groovy-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/hello-world-groovy-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/hello-world-groovy-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/hello-world-groovy-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/hello-world-groovy-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/hello-world-groovy-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/hello-world-groovy-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/hello-world-groovy-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/hello-world-groovy-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/hello-world-groovy-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/hello-world-groovy-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/hello-world-groovy-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/hello-world-groovy-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/hello-world-groovy-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/hello-world-groovy-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/hello-world-groovy-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/hello-world-groovy-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/hello-world-groovy-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/hello-world-groovy-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/hello-world-groovy-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/hello-world-groovy-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/hello-world-groovy-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/hello-world-groovy-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/hello-world-groovy-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/hello-world-groovy-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/hello-world-groovy-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/hello-world-groovy-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/hello-world-groovy-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/hello-world-groovy-plugin/deployments", + "created_at": "2010-12-13T05:38:41Z", + "updated_at": "2019-07-15T11:23:05Z", + "pushed_at": "2013-11-10T02:04:40Z", + "git_url": "git://github.com/jenkinsci/hello-world-groovy-plugin.git", + "ssh_url": "git@github.com:jenkinsci/hello-world-groovy-plugin.git", + "clone_url": "https://github.com/jenkinsci/hello-world-groovy-plugin.git", + "svn_url": "https://github.com/jenkinsci/hello-world-groovy-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 228, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Groovy", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 4, + "open_issues": 0, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163591, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNTkx", + "name": "htmlpublisher-plugin", + "full_name": "jenkinsci/htmlpublisher-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/htmlpublisher-plugin", + "description": "Jenkins htmlpublisher plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/htmlpublisher-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/htmlpublisher-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/htmlpublisher-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/htmlpublisher-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/htmlpublisher-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/htmlpublisher-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/htmlpublisher-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/htmlpublisher-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/htmlpublisher-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/htmlpublisher-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/htmlpublisher-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/htmlpublisher-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/htmlpublisher-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/htmlpublisher-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/htmlpublisher-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/htmlpublisher-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/htmlpublisher-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/htmlpublisher-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/htmlpublisher-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/htmlpublisher-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/htmlpublisher-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/htmlpublisher-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/htmlpublisher-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/htmlpublisher-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/htmlpublisher-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/htmlpublisher-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/htmlpublisher-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/htmlpublisher-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/htmlpublisher-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/htmlpublisher-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/htmlpublisher-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/htmlpublisher-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/htmlpublisher-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/htmlpublisher-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/htmlpublisher-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/htmlpublisher-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/htmlpublisher-plugin/deployments", + "created_at": "2010-12-13T05:38:47Z", + "updated_at": "2019-10-20T07:55:40Z", + "pushed_at": "2019-10-20T07:55:38Z", + "git_url": "git://github.com/jenkinsci/htmlpublisher-plugin.git", + "ssh_url": "git@github.com:jenkinsci/htmlpublisher-plugin.git", + "clone_url": "https://github.com/jenkinsci/htmlpublisher-plugin.git", + "svn_url": "https://github.com/jenkinsci/htmlpublisher-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 213, + "stargazers_count": 63, + "watchers_count": 63, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 112, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 112, + "open_issues": 1, + "watchers": 63, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163592, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNTky", + "name": "javanet-realm-plugin", + "full_name": "jenkinsci/javanet-realm-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/javanet-realm-plugin", + "description": "Jenkins javanet-realm plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/javanet-realm-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/javanet-realm-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/javanet-realm-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/javanet-realm-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/javanet-realm-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/javanet-realm-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/javanet-realm-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/javanet-realm-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/javanet-realm-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/javanet-realm-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/javanet-realm-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/javanet-realm-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/javanet-realm-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/javanet-realm-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/javanet-realm-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/javanet-realm-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/javanet-realm-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/javanet-realm-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/javanet-realm-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/javanet-realm-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/javanet-realm-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/javanet-realm-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/javanet-realm-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/javanet-realm-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/javanet-realm-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/javanet-realm-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/javanet-realm-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/javanet-realm-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/javanet-realm-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/javanet-realm-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/javanet-realm-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/javanet-realm-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/javanet-realm-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/javanet-realm-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/javanet-realm-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/javanet-realm-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/javanet-realm-plugin/deployments", + "created_at": "2010-12-13T05:38:49Z", + "updated_at": "2013-11-10T02:06:05Z", + "pushed_at": "2013-11-10T02:06:03Z", + "git_url": "git://github.com/jenkinsci/javanet-realm-plugin.git", + "ssh_url": "git@github.com:jenkinsci/javanet-realm-plugin.git", + "clone_url": "https://github.com/jenkinsci/javanet-realm-plugin.git", + "svn_url": "https://github.com/jenkinsci/javanet-realm-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 104, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163594, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNTk0", + "name": "groovy-plugin", + "full_name": "jenkinsci/groovy-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/groovy-plugin", + "description": "Jenkins groovy plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/groovy-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/groovy-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/groovy-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/groovy-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/groovy-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/groovy-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/groovy-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/groovy-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/groovy-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/groovy-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/groovy-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/groovy-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/groovy-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/groovy-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/groovy-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/groovy-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/groovy-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/groovy-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/groovy-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/groovy-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/groovy-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/groovy-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/groovy-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/groovy-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/groovy-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/groovy-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/groovy-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/groovy-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/groovy-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/groovy-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/groovy-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/groovy-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/groovy-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/groovy-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/groovy-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/groovy-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/groovy-plugin/deployments", + "created_at": "2010-12-13T05:39:13Z", + "updated_at": "2019-09-27T07:05:38Z", + "pushed_at": "2019-09-25T12:51:43Z", + "git_url": "git://github.com/jenkinsci/groovy-plugin.git", + "ssh_url": "git@github.com:jenkinsci/groovy-plugin.git", + "clone_url": "https://github.com/jenkinsci/groovy-plugin.git", + "svn_url": "https://github.com/jenkinsci/groovy-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 313, + "stargazers_count": 33, + "watchers_count": 33, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 48, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 4, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 48, + "open_issues": 4, + "watchers": 33, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163598, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNTk4", + "name": "jira-issues-versioning-plugin", + "full_name": "jenkinsci/jira-issues-versioning-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jira-issues-versioning-plugin", + "description": "Jenkins jira-issues-versioning plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jira-issues-versioning-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/jira-issues-versioning-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jira-issues-versioning-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jira-issues-versioning-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jira-issues-versioning-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jira-issues-versioning-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jira-issues-versioning-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jira-issues-versioning-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jira-issues-versioning-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jira-issues-versioning-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jira-issues-versioning-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jira-issues-versioning-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jira-issues-versioning-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jira-issues-versioning-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jira-issues-versioning-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jira-issues-versioning-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jira-issues-versioning-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jira-issues-versioning-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jira-issues-versioning-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jira-issues-versioning-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jira-issues-versioning-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jira-issues-versioning-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jira-issues-versioning-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jira-issues-versioning-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jira-issues-versioning-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jira-issues-versioning-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jira-issues-versioning-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jira-issues-versioning-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jira-issues-versioning-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jira-issues-versioning-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jira-issues-versioning-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jira-issues-versioning-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jira-issues-versioning-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jira-issues-versioning-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jira-issues-versioning-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jira-issues-versioning-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jira-issues-versioning-plugin/deployments", + "created_at": "2010-12-13T05:40:20Z", + "updated_at": "2013-11-10T02:07:00Z", + "pushed_at": "2013-11-10T02:06:56Z", + "git_url": "git://github.com/jenkinsci/jira-issues-versioning-plugin.git", + "ssh_url": "git@github.com:jenkinsci/jira-issues-versioning-plugin.git", + "clone_url": "https://github.com/jenkinsci/jira-issues-versioning-plugin.git", + "svn_url": "https://github.com/jenkinsci/jira-issues-versioning-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 144, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163599, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNTk5", + "name": "jboss-plugin", + "full_name": "jenkinsci/jboss-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jboss-plugin", + "description": "Jenkins jboss plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jboss-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/jboss-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jboss-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jboss-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jboss-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jboss-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jboss-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jboss-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jboss-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jboss-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jboss-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jboss-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jboss-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jboss-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jboss-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jboss-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jboss-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jboss-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jboss-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jboss-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jboss-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jboss-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jboss-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jboss-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jboss-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jboss-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jboss-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jboss-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jboss-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jboss-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jboss-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jboss-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jboss-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jboss-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jboss-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jboss-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jboss-plugin/deployments", + "created_at": "2010-12-13T05:40:27Z", + "updated_at": "2018-06-06T06:57:39Z", + "pushed_at": "2019-10-08T12:32:19Z", + "git_url": "git://github.com/jenkinsci/jboss-plugin.git", + "ssh_url": "git@github.com:jenkinsci/jboss-plugin.git", + "clone_url": "https://github.com/jenkinsci/jboss-plugin.git", + "svn_url": "https://github.com/jenkinsci/jboss-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 194, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 6, + "open_issues": 1, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163600, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjAw", + "name": "instant-messaging-plugin", + "full_name": "jenkinsci/instant-messaging-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/instant-messaging-plugin", + "description": "Jenkins instant-messaging plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/instant-messaging-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/instant-messaging-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/instant-messaging-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/instant-messaging-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/instant-messaging-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/instant-messaging-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/instant-messaging-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/instant-messaging-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/instant-messaging-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/instant-messaging-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/instant-messaging-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/instant-messaging-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/instant-messaging-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/instant-messaging-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/instant-messaging-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/instant-messaging-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/instant-messaging-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/instant-messaging-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/instant-messaging-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/instant-messaging-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/instant-messaging-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/instant-messaging-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/instant-messaging-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/instant-messaging-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/instant-messaging-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/instant-messaging-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/instant-messaging-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/instant-messaging-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/instant-messaging-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/instant-messaging-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/instant-messaging-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/instant-messaging-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/instant-messaging-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/instant-messaging-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/instant-messaging-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/instant-messaging-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/instant-messaging-plugin/deployments", + "created_at": "2010-12-13T05:40:28Z", + "updated_at": "2019-10-15T22:00:44Z", + "pushed_at": "2019-10-15T22:00:41Z", + "git_url": "git://github.com/jenkinsci/instant-messaging-plugin.git", + "ssh_url": "git@github.com:jenkinsci/instant-messaging-plugin.git", + "clone_url": "https://github.com/jenkinsci/instant-messaging-plugin.git", + "svn_url": "https://github.com/jenkinsci/instant-messaging-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 531, + "stargazers_count": 30, + "watchers_count": 30, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 43, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 43, + "open_issues": 1, + "watchers": 30, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163601, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjAx", + "name": "javancss-plugin", + "full_name": "jenkinsci/javancss-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/javancss-plugin", + "description": "Jenkins javancss plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/javancss-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/javancss-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/javancss-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/javancss-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/javancss-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/javancss-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/javancss-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/javancss-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/javancss-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/javancss-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/javancss-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/javancss-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/javancss-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/javancss-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/javancss-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/javancss-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/javancss-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/javancss-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/javancss-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/javancss-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/javancss-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/javancss-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/javancss-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/javancss-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/javancss-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/javancss-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/javancss-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/javancss-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/javancss-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/javancss-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/javancss-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/javancss-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/javancss-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/javancss-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/javancss-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/javancss-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/javancss-plugin/deployments", + "created_at": "2010-12-13T05:40:34Z", + "updated_at": "2015-10-25T19:34:22Z", + "pushed_at": "2019-10-08T12:39:17Z", + "git_url": "git://github.com/jenkinsci/javancss-plugin.git", + "ssh_url": "git@github.com:jenkinsci/javancss-plugin.git", + "clone_url": "https://github.com/jenkinsci/javancss-plugin.git", + "svn_url": "https://github.com/jenkinsci/javancss-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 1133, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 4, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163602, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjAy", + "name": "javanet-trigger-installer-plugin", + "full_name": "jenkinsci/javanet-trigger-installer-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/javanet-trigger-installer-plugin", + "description": "Jenkins javanet-trigger-installer plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/javanet-trigger-installer-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/javanet-trigger-installer-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/javanet-trigger-installer-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/javanet-trigger-installer-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/javanet-trigger-installer-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/javanet-trigger-installer-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/javanet-trigger-installer-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/javanet-trigger-installer-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/javanet-trigger-installer-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/javanet-trigger-installer-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/javanet-trigger-installer-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/javanet-trigger-installer-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/javanet-trigger-installer-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/javanet-trigger-installer-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/javanet-trigger-installer-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/javanet-trigger-installer-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/javanet-trigger-installer-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/javanet-trigger-installer-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/javanet-trigger-installer-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/javanet-trigger-installer-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/javanet-trigger-installer-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/javanet-trigger-installer-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/javanet-trigger-installer-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/javanet-trigger-installer-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/javanet-trigger-installer-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/javanet-trigger-installer-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/javanet-trigger-installer-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/javanet-trigger-installer-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/javanet-trigger-installer-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/javanet-trigger-installer-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/javanet-trigger-installer-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/javanet-trigger-installer-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/javanet-trigger-installer-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/javanet-trigger-installer-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/javanet-trigger-installer-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/javanet-trigger-installer-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/javanet-trigger-installer-plugin/deployments", + "created_at": "2010-12-13T05:40:35Z", + "updated_at": "2013-11-10T02:06:09Z", + "pushed_at": "2013-11-10T02:06:04Z", + "git_url": "git://github.com/jenkinsci/javanet-trigger-installer-plugin.git", + "ssh_url": "git@github.com:jenkinsci/javanet-trigger-installer-plugin.git", + "clone_url": "https://github.com/jenkinsci/javanet-trigger-installer-plugin.git", + "svn_url": "https://github.com/jenkinsci/javanet-trigger-installer-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 212, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163603, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjAz", + "name": "japex-plugin", + "full_name": "jenkinsci/japex-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/japex-plugin", + "description": "Jenkins japex plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/japex-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/japex-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/japex-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/japex-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/japex-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/japex-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/japex-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/japex-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/japex-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/japex-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/japex-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/japex-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/japex-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/japex-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/japex-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/japex-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/japex-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/japex-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/japex-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/japex-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/japex-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/japex-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/japex-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/japex-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/japex-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/japex-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/japex-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/japex-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/japex-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/japex-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/japex-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/japex-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/japex-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/japex-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/japex-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/japex-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/japex-plugin/deployments", + "created_at": "2010-12-13T05:40:46Z", + "updated_at": "2013-11-10T02:05:58Z", + "pushed_at": "2013-11-10T02:05:56Z", + "git_url": "git://github.com/jenkinsci/japex-plugin.git", + "ssh_url": "git@github.com:jenkinsci/japex-plugin.git", + "clone_url": "https://github.com/jenkinsci/japex-plugin.git", + "svn_url": "https://github.com/jenkinsci/japex-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 185, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163604, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjA0", + "name": "job-exporter-plugin", + "full_name": "jenkinsci/job-exporter-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/job-exporter-plugin", + "description": "Jenkins job-exporter plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/job-exporter-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/job-exporter-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/job-exporter-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/job-exporter-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/job-exporter-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/job-exporter-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/job-exporter-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/job-exporter-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/job-exporter-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/job-exporter-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/job-exporter-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/job-exporter-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/job-exporter-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/job-exporter-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/job-exporter-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/job-exporter-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/job-exporter-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/job-exporter-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/job-exporter-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/job-exporter-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/job-exporter-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/job-exporter-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/job-exporter-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/job-exporter-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/job-exporter-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/job-exporter-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/job-exporter-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/job-exporter-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/job-exporter-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/job-exporter-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/job-exporter-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/job-exporter-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/job-exporter-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/job-exporter-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/job-exporter-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/job-exporter-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/job-exporter-plugin/deployments", + "created_at": "2010-12-13T05:40:58Z", + "updated_at": "2013-11-10T02:07:15Z", + "pushed_at": "2019-10-08T11:47:25Z", + "git_url": "git://github.com/jenkinsci/job-exporter-plugin.git", + "ssh_url": "git@github.com:jenkinsci/job-exporter-plugin.git", + "clone_url": "https://github.com/jenkinsci/job-exporter-plugin.git", + "svn_url": "https://github.com/jenkinsci/job-exporter-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 128, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 4, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163605, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjA1", + "name": "jobinjector-plugin", + "full_name": "jenkinsci/jobinjector-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jobinjector-plugin", + "description": "Jenkins jobinjector plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jobinjector-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/jobinjector-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jobinjector-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jobinjector-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jobinjector-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jobinjector-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jobinjector-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jobinjector-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jobinjector-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jobinjector-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jobinjector-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jobinjector-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jobinjector-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jobinjector-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jobinjector-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jobinjector-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jobinjector-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jobinjector-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jobinjector-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jobinjector-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jobinjector-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jobinjector-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jobinjector-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jobinjector-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jobinjector-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jobinjector-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jobinjector-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jobinjector-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jobinjector-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jobinjector-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jobinjector-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jobinjector-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jobinjector-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jobinjector-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jobinjector-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jobinjector-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jobinjector-plugin/deployments", + "created_at": "2010-12-13T05:41:05Z", + "updated_at": "2016-07-20T00:23:24Z", + "pushed_at": "2013-11-10T02:07:33Z", + "git_url": "git://github.com/jenkinsci/jobinjector-plugin.git", + "ssh_url": "git@github.com:jenkinsci/jobinjector-plugin.git", + "clone_url": "https://github.com/jenkinsci/jobinjector-plugin.git", + "svn_url": "https://github.com/jenkinsci/jobinjector-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 108, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163606, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjA2", + "name": "jmx-invoker-plugin", + "full_name": "jenkinsci/jmx-invoker-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jmx-invoker-plugin", + "description": "Jenkins jmx-invoker plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jmx-invoker-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/jmx-invoker-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jmx-invoker-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jmx-invoker-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jmx-invoker-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jmx-invoker-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jmx-invoker-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jmx-invoker-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jmx-invoker-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jmx-invoker-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jmx-invoker-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jmx-invoker-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jmx-invoker-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jmx-invoker-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jmx-invoker-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jmx-invoker-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jmx-invoker-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jmx-invoker-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jmx-invoker-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jmx-invoker-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jmx-invoker-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jmx-invoker-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jmx-invoker-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jmx-invoker-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jmx-invoker-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jmx-invoker-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jmx-invoker-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jmx-invoker-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jmx-invoker-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jmx-invoker-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jmx-invoker-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jmx-invoker-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jmx-invoker-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jmx-invoker-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jmx-invoker-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jmx-invoker-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jmx-invoker-plugin/deployments", + "created_at": "2010-12-13T05:41:06Z", + "updated_at": "2013-11-10T02:07:04Z", + "pushed_at": "2013-11-10T02:07:02Z", + "git_url": "git://github.com/jenkinsci/jmx-invoker-plugin.git", + "ssh_url": "git@github.com:jenkinsci/jmx-invoker-plugin.git", + "clone_url": "https://github.com/jenkinsci/jmx-invoker-plugin.git", + "svn_url": "https://github.com/jenkinsci/jmx-invoker-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 144, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163607, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjA3", + "name": "jmx-plugin", + "full_name": "jenkinsci/jmx-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jmx-plugin", + "description": "Jenkins jmx plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jmx-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/jmx-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jmx-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jmx-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jmx-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jmx-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jmx-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jmx-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jmx-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jmx-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jmx-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jmx-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jmx-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jmx-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jmx-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jmx-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jmx-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jmx-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jmx-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jmx-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jmx-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jmx-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jmx-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jmx-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jmx-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jmx-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jmx-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jmx-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jmx-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jmx-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jmx-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jmx-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jmx-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jmx-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jmx-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jmx-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jmx-plugin/deployments", + "created_at": "2010-12-13T05:41:11Z", + "updated_at": "2013-11-10T02:07:06Z", + "pushed_at": "2013-11-10T02:07:03Z", + "git_url": "git://github.com/jenkinsci/jmx-plugin.git", + "ssh_url": "git@github.com:jenkinsci/jmx-plugin.git", + "clone_url": "https://github.com/jenkinsci/jmx-plugin.git", + "svn_url": "https://github.com/jenkinsci/jmx-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 204, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163608, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjA4", + "name": "javatest-report-plugin", + "full_name": "jenkinsci/javatest-report-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/javatest-report-plugin", + "description": "Jenkins javatest-report plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/javatest-report-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/javatest-report-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/javatest-report-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/javatest-report-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/javatest-report-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/javatest-report-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/javatest-report-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/javatest-report-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/javatest-report-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/javatest-report-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/javatest-report-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/javatest-report-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/javatest-report-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/javatest-report-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/javatest-report-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/javatest-report-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/javatest-report-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/javatest-report-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/javatest-report-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/javatest-report-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/javatest-report-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/javatest-report-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/javatest-report-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/javatest-report-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/javatest-report-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/javatest-report-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/javatest-report-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/javatest-report-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/javatest-report-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/javatest-report-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/javatest-report-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/javatest-report-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/javatest-report-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/javatest-report-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/javatest-report-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/javatest-report-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/javatest-report-plugin/deployments", + "created_at": "2010-12-13T05:41:16Z", + "updated_at": "2018-07-19T07:07:40Z", + "pushed_at": "2019-10-08T15:19:16Z", + "git_url": "git://github.com/jenkinsci/javatest-report-plugin.git", + "ssh_url": "git@github.com:jenkinsci/javatest-report-plugin.git", + "clone_url": "https://github.com/jenkinsci/javatest-report-plugin.git", + "svn_url": "https://github.com/jenkinsci/javatest-report-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 125, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 3, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163609, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjA5", + "name": "jdepend-plugin", + "full_name": "jenkinsci/jdepend-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jdepend-plugin", + "description": "Jenkins jdepend plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jdepend-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/jdepend-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jdepend-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jdepend-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jdepend-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jdepend-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jdepend-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jdepend-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jdepend-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jdepend-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jdepend-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jdepend-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jdepend-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jdepend-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jdepend-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jdepend-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jdepend-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jdepend-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jdepend-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jdepend-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jdepend-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jdepend-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jdepend-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jdepend-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jdepend-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jdepend-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jdepend-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jdepend-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jdepend-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jdepend-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jdepend-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jdepend-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jdepend-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jdepend-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jdepend-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jdepend-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jdepend-plugin/deployments", + "created_at": "2010-12-13T05:41:17Z", + "updated_at": "2018-04-06T09:13:01Z", + "pushed_at": "2018-09-06T06:12:16Z", + "git_url": "git://github.com/jenkinsci/jdepend-plugin.git", + "ssh_url": "git@github.com:jenkinsci/jdepend-plugin.git", + "clone_url": "https://github.com/jenkinsci/jdepend-plugin.git", + "svn_url": "https://github.com/jenkinsci/jdepend-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 25744, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 5, + "open_issues": 2, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163610, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjEw", + "name": "jobtype-column-plugin", + "full_name": "jenkinsci/jobtype-column-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jobtype-column-plugin", + "description": "Jenkins jobtype-column plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jobtype-column-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/jobtype-column-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jobtype-column-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jobtype-column-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jobtype-column-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jobtype-column-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jobtype-column-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jobtype-column-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jobtype-column-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jobtype-column-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jobtype-column-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jobtype-column-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jobtype-column-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jobtype-column-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jobtype-column-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jobtype-column-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jobtype-column-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jobtype-column-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jobtype-column-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jobtype-column-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jobtype-column-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jobtype-column-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jobtype-column-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jobtype-column-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jobtype-column-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jobtype-column-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jobtype-column-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jobtype-column-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jobtype-column-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jobtype-column-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jobtype-column-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jobtype-column-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jobtype-column-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jobtype-column-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jobtype-column-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jobtype-column-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jobtype-column-plugin/deployments", + "created_at": "2010-12-13T05:41:24Z", + "updated_at": "2018-07-19T07:07:14Z", + "pushed_at": "2019-10-08T12:39:52Z", + "git_url": "git://github.com/jenkinsci/jobtype-column-plugin.git", + "ssh_url": "git@github.com:jenkinsci/jobtype-column-plugin.git", + "clone_url": "https://github.com/jenkinsci/jobtype-column-plugin.git", + "svn_url": "https://github.com/jenkinsci/jobtype-column-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 18, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 5, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163611, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjEx", + "name": "jquery-plugin", + "full_name": "jenkinsci/jquery-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jquery-plugin", + "description": "Jenkins jquery plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jquery-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/jquery-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jquery-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jquery-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jquery-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jquery-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jquery-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jquery-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jquery-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jquery-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jquery-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jquery-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jquery-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jquery-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jquery-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jquery-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jquery-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jquery-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jquery-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jquery-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jquery-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jquery-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jquery-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jquery-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jquery-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jquery-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jquery-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jquery-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jquery-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jquery-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jquery-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jquery-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jquery-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jquery-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jquery-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jquery-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jquery-plugin/deployments", + "created_at": "2010-12-13T05:41:26Z", + "updated_at": "2019-08-29T15:45:00Z", + "pushed_at": "2019-08-29T15:44:58Z", + "git_url": "git://github.com/jenkinsci/jquery-plugin.git", + "ssh_url": "git@github.com:jenkinsci/jquery-plugin.git", + "clone_url": "https://github.com/jenkinsci/jquery-plugin.git", + "svn_url": "https://github.com/jenkinsci/jquery-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 88, + "stargazers_count": 1, + "watchers_count": 1, + "language": "CSS", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 10, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 10, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163613, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjEz", + "name": "javanet-uploader-plugin", + "full_name": "jenkinsci/javanet-uploader-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/javanet-uploader-plugin", + "description": "Jenkins javanet-uploader plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/javanet-uploader-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/javanet-uploader-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/javanet-uploader-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/javanet-uploader-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/javanet-uploader-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/javanet-uploader-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/javanet-uploader-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/javanet-uploader-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/javanet-uploader-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/javanet-uploader-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/javanet-uploader-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/javanet-uploader-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/javanet-uploader-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/javanet-uploader-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/javanet-uploader-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/javanet-uploader-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/javanet-uploader-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/javanet-uploader-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/javanet-uploader-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/javanet-uploader-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/javanet-uploader-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/javanet-uploader-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/javanet-uploader-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/javanet-uploader-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/javanet-uploader-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/javanet-uploader-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/javanet-uploader-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/javanet-uploader-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/javanet-uploader-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/javanet-uploader-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/javanet-uploader-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/javanet-uploader-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/javanet-uploader-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/javanet-uploader-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/javanet-uploader-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/javanet-uploader-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/javanet-uploader-plugin/deployments", + "created_at": "2010-12-13T05:41:32Z", + "updated_at": "2013-11-10T02:06:11Z", + "pushed_at": "2013-11-10T02:06:07Z", + "git_url": "git://github.com/jenkinsci/javanet-uploader-plugin.git", + "ssh_url": "git@github.com:jenkinsci/javanet-uploader-plugin.git", + "clone_url": "https://github.com/jenkinsci/javanet-uploader-plugin.git", + "svn_url": "https://github.com/jenkinsci/javanet-uploader-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 228, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163614, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjE0", + "name": "jquery-ui-plugin", + "full_name": "jenkinsci/jquery-ui-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jquery-ui-plugin", + "description": "Jenkins jquery-ui plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jquery-ui-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/jquery-ui-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jquery-ui-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jquery-ui-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jquery-ui-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jquery-ui-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jquery-ui-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jquery-ui-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jquery-ui-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jquery-ui-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jquery-ui-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jquery-ui-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jquery-ui-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jquery-ui-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jquery-ui-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jquery-ui-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jquery-ui-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jquery-ui-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jquery-ui-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jquery-ui-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jquery-ui-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jquery-ui-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jquery-ui-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jquery-ui-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jquery-ui-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jquery-ui-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jquery-ui-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jquery-ui-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jquery-ui-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jquery-ui-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jquery-ui-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jquery-ui-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jquery-ui-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jquery-ui-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jquery-ui-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jquery-ui-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jquery-ui-plugin/deployments", + "created_at": "2010-12-13T05:41:33Z", + "updated_at": "2018-07-19T07:06:19Z", + "pushed_at": "2019-09-20T21:00:45Z", + "git_url": "git://github.com/jenkinsci/jquery-ui-plugin.git", + "ssh_url": "git@github.com:jenkinsci/jquery-ui-plugin.git", + "clone_url": "https://github.com/jenkinsci/jquery-ui-plugin.git", + "svn_url": "https://github.com/jenkinsci/jquery-ui-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 86, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 3, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163615, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjE1", + "name": "jobrevision-plugin", + "full_name": "jenkinsci/jobrevision-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jobrevision-plugin", + "description": "Jenkins jobrevision plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jobrevision-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/jobrevision-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jobrevision-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jobrevision-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jobrevision-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jobrevision-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jobrevision-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jobrevision-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jobrevision-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jobrevision-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jobrevision-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jobrevision-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jobrevision-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jobrevision-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jobrevision-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jobrevision-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jobrevision-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jobrevision-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jobrevision-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jobrevision-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jobrevision-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jobrevision-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jobrevision-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jobrevision-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jobrevision-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jobrevision-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jobrevision-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jobrevision-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jobrevision-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jobrevision-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jobrevision-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jobrevision-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jobrevision-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jobrevision-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jobrevision-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jobrevision-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jobrevision-plugin/deployments", + "created_at": "2010-12-13T05:41:36Z", + "updated_at": "2014-03-05T07:34:11Z", + "pushed_at": "2019-10-08T12:38:41Z", + "git_url": "git://github.com/jenkinsci/jobrevision-plugin.git", + "ssh_url": "git@github.com:jenkinsci/jobrevision-plugin.git", + "clone_url": "https://github.com/jenkinsci/jobrevision-plugin.git", + "svn_url": "https://github.com/jenkinsci/jobrevision-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 180, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 2, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163616, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjE2", + "name": "jsgames-plugin", + "full_name": "jenkinsci/jsgames-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jsgames-plugin", + "description": "Jenkins JSGames Plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jsgames-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/jsgames-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jsgames-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jsgames-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jsgames-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jsgames-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jsgames-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jsgames-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jsgames-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jsgames-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jsgames-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jsgames-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jsgames-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jsgames-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jsgames-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jsgames-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jsgames-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jsgames-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jsgames-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jsgames-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jsgames-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jsgames-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jsgames-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jsgames-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jsgames-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jsgames-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jsgames-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jsgames-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jsgames-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jsgames-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jsgames-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jsgames-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jsgames-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jsgames-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jsgames-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jsgames-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jsgames-plugin/deployments", + "created_at": "2010-12-13T05:41:48Z", + "updated_at": "2014-04-01T09:01:48Z", + "pushed_at": "2013-11-10T02:07:53Z", + "git_url": "git://github.com/jenkinsci/jsgames-plugin.git", + "ssh_url": "git@github.com:jenkinsci/jsgames-plugin.git", + "clone_url": "https://github.com/jenkinsci/jsgames-plugin.git", + "svn_url": "https://github.com/jenkinsci/jsgames-plugin", + "homepage": "http://wiki.jenkins-ci.org/display/JENKINS/JSGames+Plugin", + "size": 380, + "stargazers_count": 1, + "watchers_count": 1, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163617, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjE3", + "name": "javanet-plugin", + "full_name": "jenkinsci/javanet-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/javanet-plugin", + "description": "Jenkins javanet plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/javanet-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/javanet-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/javanet-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/javanet-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/javanet-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/javanet-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/javanet-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/javanet-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/javanet-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/javanet-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/javanet-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/javanet-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/javanet-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/javanet-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/javanet-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/javanet-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/javanet-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/javanet-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/javanet-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/javanet-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/javanet-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/javanet-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/javanet-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/javanet-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/javanet-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/javanet-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/javanet-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/javanet-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/javanet-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/javanet-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/javanet-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/javanet-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/javanet-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/javanet-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/javanet-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/javanet-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/javanet-plugin/deployments", + "created_at": "2010-12-13T05:42:02Z", + "updated_at": "2014-05-05T10:38:44Z", + "pushed_at": "2013-11-10T02:06:01Z", + "git_url": "git://github.com/jenkinsci/javanet-plugin.git", + "ssh_url": "git@github.com:jenkinsci/javanet-plugin.git", + "clone_url": "https://github.com/jenkinsci/javanet-plugin.git", + "svn_url": "https://github.com/jenkinsci/javanet-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 316, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163618, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjE4", + "name": "ircbot-plugin", + "full_name": "jenkinsci/ircbot-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/ircbot-plugin", + "description": "Jenkins ircbot plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/ircbot-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/ircbot-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/ircbot-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/ircbot-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/ircbot-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/ircbot-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/ircbot-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/ircbot-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/ircbot-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/ircbot-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/ircbot-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/ircbot-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/ircbot-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/ircbot-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/ircbot-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/ircbot-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/ircbot-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/ircbot-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/ircbot-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/ircbot-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/ircbot-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/ircbot-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/ircbot-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/ircbot-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/ircbot-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/ircbot-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/ircbot-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/ircbot-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/ircbot-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/ircbot-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/ircbot-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/ircbot-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/ircbot-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/ircbot-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/ircbot-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/ircbot-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/ircbot-plugin/deployments", + "created_at": "2010-12-13T05:42:03Z", + "updated_at": "2019-10-15T22:00:47Z", + "pushed_at": "2019-10-15T22:00:45Z", + "git_url": "git://github.com/jenkinsci/ircbot-plugin.git", + "ssh_url": "git@github.com:jenkinsci/ircbot-plugin.git", + "clone_url": "https://github.com/jenkinsci/ircbot-plugin.git", + "svn_url": "https://github.com/jenkinsci/ircbot-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 387, + "stargazers_count": 30, + "watchers_count": 30, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 41, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": null, + "forks": 41, + "open_issues": 3, + "watchers": 30, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163619, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjE5", + "name": "jobConfigHistory-plugin", + "full_name": "jenkinsci/jobConfigHistory-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jobConfigHistory-plugin", + "description": "Jenkins jobConfigHistory plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jobConfigHistory-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/jobConfigHistory-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jobConfigHistory-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jobConfigHistory-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jobConfigHistory-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jobConfigHistory-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jobConfigHistory-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jobConfigHistory-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jobConfigHistory-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jobConfigHistory-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jobConfigHistory-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jobConfigHistory-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jobConfigHistory-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jobConfigHistory-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jobConfigHistory-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jobConfigHistory-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jobConfigHistory-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jobConfigHistory-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jobConfigHistory-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jobConfigHistory-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jobConfigHistory-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jobConfigHistory-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jobConfigHistory-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jobConfigHistory-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jobConfigHistory-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jobConfigHistory-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jobConfigHistory-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jobConfigHistory-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jobConfigHistory-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jobConfigHistory-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jobConfigHistory-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jobConfigHistory-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jobConfigHistory-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jobConfigHistory-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jobConfigHistory-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jobConfigHistory-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jobConfigHistory-plugin/deployments", + "created_at": "2010-12-13T05:42:13Z", + "updated_at": "2019-09-26T01:04:27Z", + "pushed_at": "2019-10-07T19:13:37Z", + "git_url": "git://github.com/jenkinsci/jobConfigHistory-plugin.git", + "ssh_url": "git@github.com:jenkinsci/jobConfigHistory-plugin.git", + "clone_url": "https://github.com/jenkinsci/jobConfigHistory-plugin.git", + "svn_url": "https://github.com/jenkinsci/jobConfigHistory-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/JobConfigHistory+Plugin", + "size": 17463, + "stargazers_count": 35, + "watchers_count": 35, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 65, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 65, + "open_issues": 2, + "watchers": 35, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163621, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjIx", + "name": "jprt-plugin", + "full_name": "jenkinsci/jprt-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jprt-plugin", + "description": "Jenkins jprt plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jprt-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/jprt-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jprt-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jprt-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jprt-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jprt-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jprt-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jprt-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jprt-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jprt-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jprt-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jprt-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jprt-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jprt-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jprt-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jprt-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jprt-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jprt-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jprt-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jprt-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jprt-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jprt-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jprt-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jprt-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jprt-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jprt-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jprt-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jprt-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jprt-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jprt-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jprt-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jprt-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jprt-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jprt-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jprt-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jprt-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jprt-plugin/deployments", + "created_at": "2010-12-13T05:42:31Z", + "updated_at": "2013-11-10T02:07:54Z", + "pushed_at": "2013-11-10T02:07:46Z", + "git_url": "git://github.com/jenkinsci/jprt-plugin.git", + "ssh_url": "git@github.com:jenkinsci/jprt-plugin.git", + "clone_url": "https://github.com/jenkinsci/jprt-plugin.git", + "svn_url": "https://github.com/jenkinsci/jprt-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 644, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163622, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjIy", + "name": "ivy-plugin", + "full_name": "jenkinsci/ivy-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/ivy-plugin", + "description": "Jenkins ivy plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/ivy-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/ivy-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/ivy-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/ivy-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/ivy-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/ivy-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/ivy-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/ivy-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/ivy-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/ivy-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/ivy-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/ivy-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/ivy-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/ivy-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/ivy-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/ivy-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/ivy-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/ivy-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/ivy-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/ivy-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/ivy-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/ivy-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/ivy-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/ivy-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/ivy-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/ivy-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/ivy-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/ivy-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/ivy-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/ivy-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/ivy-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/ivy-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/ivy-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/ivy-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/ivy-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/ivy-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/ivy-plugin/deployments", + "created_at": "2010-12-13T05:42:36Z", + "updated_at": "2019-05-09T19:04:41Z", + "pushed_at": "2019-05-09T19:24:51Z", + "git_url": "git://github.com/jenkinsci/ivy-plugin.git", + "ssh_url": "git@github.com:jenkinsci/ivy-plugin.git", + "clone_url": "https://github.com/jenkinsci/ivy-plugin.git", + "svn_url": "https://github.com/jenkinsci/ivy-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 653, + "stargazers_count": 16, + "watchers_count": 16, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 35, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 4, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 35, + "open_issues": 4, + "watchers": 16, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163623, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjIz", + "name": "jython-plugin", + "full_name": "jenkinsci/jython-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jython-plugin", + "description": "Jenkins jython plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jython-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/jython-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jython-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jython-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jython-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jython-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jython-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jython-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jython-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jython-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jython-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jython-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jython-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jython-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jython-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jython-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jython-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jython-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jython-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jython-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jython-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jython-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jython-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jython-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jython-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jython-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jython-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jython-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jython-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jython-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jython-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jython-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jython-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jython-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jython-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jython-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jython-plugin/deployments", + "created_at": "2010-12-13T05:42:39Z", + "updated_at": "2013-11-10T02:08:20Z", + "pushed_at": "2019-10-08T15:18:01Z", + "git_url": "git://github.com/jenkinsci/jython-plugin.git", + "ssh_url": "git@github.com:jenkinsci/jython-plugin.git", + "clone_url": "https://github.com/jenkinsci/jython-plugin.git", + "svn_url": "https://github.com/jenkinsci/jython-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 13699, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Python", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 4, + "open_issues": 1, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163624, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjI0", + "name": "jabber-plugin", + "full_name": "jenkinsci/jabber-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jabber-plugin", + "description": "Jenkins jabber plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jabber-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/jabber-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jabber-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jabber-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jabber-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jabber-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jabber-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jabber-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jabber-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jabber-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jabber-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jabber-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jabber-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jabber-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jabber-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jabber-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jabber-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jabber-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jabber-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jabber-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jabber-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jabber-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jabber-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jabber-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jabber-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jabber-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jabber-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jabber-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jabber-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jabber-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jabber-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jabber-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jabber-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jabber-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jabber-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jabber-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jabber-plugin/deployments", + "created_at": "2010-12-13T05:42:41Z", + "updated_at": "2019-10-23T13:15:37Z", + "pushed_at": "2019-10-23T13:15:35Z", + "git_url": "git://github.com/jenkinsci/jabber-plugin.git", + "ssh_url": "git@github.com:jenkinsci/jabber-plugin.git", + "clone_url": "https://github.com/jenkinsci/jabber-plugin.git", + "svn_url": "https://github.com/jenkinsci/jabber-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 727, + "stargazers_count": 25, + "watchers_count": 25, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 23, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 23, + "open_issues": 1, + "watchers": 25, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163625, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjI1", + "name": "jswidgets-plugin", + "full_name": "jenkinsci/jswidgets-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jswidgets-plugin", + "description": "Jenkins jswidgets plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jswidgets-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/jswidgets-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jswidgets-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jswidgets-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jswidgets-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jswidgets-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jswidgets-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jswidgets-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jswidgets-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jswidgets-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jswidgets-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jswidgets-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jswidgets-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jswidgets-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jswidgets-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jswidgets-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jswidgets-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jswidgets-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jswidgets-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jswidgets-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jswidgets-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jswidgets-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jswidgets-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jswidgets-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jswidgets-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jswidgets-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jswidgets-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jswidgets-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jswidgets-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jswidgets-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jswidgets-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jswidgets-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jswidgets-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jswidgets-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jswidgets-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jswidgets-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jswidgets-plugin/deployments", + "created_at": "2010-12-13T05:42:45Z", + "updated_at": "2019-02-07T10:44:15Z", + "pushed_at": "2014-06-26T07:35:33Z", + "git_url": "git://github.com/jenkinsci/jswidgets-plugin.git", + "ssh_url": "git@github.com:jenkinsci/jswidgets-plugin.git", + "clone_url": "https://github.com/jenkinsci/jswidgets-plugin.git", + "svn_url": "https://github.com/jenkinsci/jswidgets-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/JSWidgets+Plugin", + "size": 451, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 3, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163626, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjI2", + "name": "jira-plugin", + "full_name": "jenkinsci/jira-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jira-plugin", + "description": "Jenkins jira plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jira-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/jira-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jira-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jira-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jira-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jira-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jira-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jira-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jira-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jira-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jira-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jira-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jira-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jira-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jira-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jira-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jira-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jira-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jira-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jira-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jira-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jira-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jira-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jira-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jira-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jira-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jira-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jira-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jira-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jira-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jira-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jira-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jira-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jira-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jira-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jira-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jira-plugin/deployments", + "created_at": "2010-12-13T05:42:51Z", + "updated_at": "2019-09-26T09:26:51Z", + "pushed_at": "2019-10-18T14:32:18Z", + "git_url": "git://github.com/jenkinsci/jira-plugin.git", + "ssh_url": "git@github.com:jenkinsci/jira-plugin.git", + "clone_url": "https://github.com/jenkinsci/jira-plugin.git", + "svn_url": "https://github.com/jenkinsci/jira-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 9002, + "stargazers_count": 128, + "watchers_count": 128, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 247, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 8, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 247, + "open_issues": 8, + "watchers": 128, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163628, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjI4", + "name": "label-verifier-plugin", + "full_name": "jenkinsci/label-verifier-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/label-verifier-plugin", + "description": "Jenkins Label Verifier plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/label-verifier-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/label-verifier-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/label-verifier-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/label-verifier-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/label-verifier-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/label-verifier-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/label-verifier-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/label-verifier-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/label-verifier-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/label-verifier-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/label-verifier-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/label-verifier-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/label-verifier-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/label-verifier-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/label-verifier-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/label-verifier-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/label-verifier-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/label-verifier-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/label-verifier-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/label-verifier-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/label-verifier-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/label-verifier-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/label-verifier-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/label-verifier-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/label-verifier-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/label-verifier-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/label-verifier-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/label-verifier-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/label-verifier-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/label-verifier-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/label-verifier-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/label-verifier-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/label-verifier-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/label-verifier-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/label-verifier-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/label-verifier-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/label-verifier-plugin/deployments", + "created_at": "2010-12-13T05:42:55Z", + "updated_at": "2019-10-08T00:44:11Z", + "pushed_at": "2019-10-08T00:44:23Z", + "git_url": "git://github.com/jenkinsci/label-verifier-plugin.git", + "ssh_url": "git@github.com:jenkinsci/label-verifier-plugin.git", + "clone_url": "https://github.com/jenkinsci/label-verifier-plugin.git", + "svn_url": "https://github.com/jenkinsci/label-verifier-plugin", + "homepage": "https://plugins.jenkins.io/label-verifier", + "size": 122, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 4, + "open_issues": 0, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163629, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjI5", + "name": "join-plugin", + "full_name": "jenkinsci/join-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/join-plugin", + "description": "Jenkins join plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/join-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/join-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/join-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/join-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/join-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/join-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/join-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/join-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/join-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/join-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/join-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/join-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/join-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/join-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/join-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/join-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/join-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/join-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/join-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/join-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/join-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/join-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/join-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/join-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/join-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/join-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/join-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/join-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/join-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/join-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/join-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/join-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/join-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/join-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/join-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/join-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/join-plugin/deployments", + "created_at": "2010-12-13T05:42:56Z", + "updated_at": "2018-08-08T04:37:12Z", + "pushed_at": "2019-09-24T10:30:38Z", + "git_url": "git://github.com/jenkinsci/join-plugin.git", + "ssh_url": "git@github.com:jenkinsci/join-plugin.git", + "clone_url": "https://github.com/jenkinsci/join-plugin.git", + "svn_url": "https://github.com/jenkinsci/join-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 196, + "stargazers_count": 13, + "watchers_count": 13, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 20, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": null, + "forks": 20, + "open_issues": 3, + "watchers": 13, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163630, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjMw", + "name": "jwsdp-sqe-plugin", + "full_name": "jenkinsci/jwsdp-sqe-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jwsdp-sqe-plugin", + "description": "Jenkins jwsdp-sqe plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jwsdp-sqe-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/jwsdp-sqe-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jwsdp-sqe-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jwsdp-sqe-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jwsdp-sqe-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jwsdp-sqe-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jwsdp-sqe-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jwsdp-sqe-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jwsdp-sqe-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jwsdp-sqe-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jwsdp-sqe-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jwsdp-sqe-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jwsdp-sqe-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jwsdp-sqe-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jwsdp-sqe-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jwsdp-sqe-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jwsdp-sqe-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jwsdp-sqe-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jwsdp-sqe-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jwsdp-sqe-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jwsdp-sqe-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jwsdp-sqe-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jwsdp-sqe-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jwsdp-sqe-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jwsdp-sqe-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jwsdp-sqe-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jwsdp-sqe-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jwsdp-sqe-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jwsdp-sqe-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jwsdp-sqe-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jwsdp-sqe-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jwsdp-sqe-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jwsdp-sqe-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jwsdp-sqe-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jwsdp-sqe-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jwsdp-sqe-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jwsdp-sqe-plugin/deployments", + "created_at": "2010-12-13T05:42:57Z", + "updated_at": "2014-01-06T15:09:53Z", + "pushed_at": "2013-11-10T02:08:08Z", + "git_url": "git://github.com/jenkinsci/jwsdp-sqe-plugin.git", + "ssh_url": "git@github.com:jenkinsci/jwsdp-sqe-plugin.git", + "clone_url": "https://github.com/jenkinsci/jwsdp-sqe-plugin.git", + "svn_url": "https://github.com/jenkinsci/jwsdp-sqe-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 236, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163631, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjMx", + "name": "kagemai-plugin", + "full_name": "jenkinsci/kagemai-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/kagemai-plugin", + "description": "Jenkins kagemai plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/kagemai-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/kagemai-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/kagemai-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/kagemai-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/kagemai-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/kagemai-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/kagemai-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/kagemai-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/kagemai-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/kagemai-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/kagemai-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/kagemai-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/kagemai-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/kagemai-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/kagemai-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/kagemai-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/kagemai-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/kagemai-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/kagemai-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/kagemai-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/kagemai-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/kagemai-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/kagemai-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/kagemai-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/kagemai-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/kagemai-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/kagemai-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/kagemai-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/kagemai-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/kagemai-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/kagemai-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/kagemai-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/kagemai-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/kagemai-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/kagemai-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/kagemai-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/kagemai-plugin/deployments", + "created_at": "2010-12-13T05:43:00Z", + "updated_at": "2013-12-06T14:02:42Z", + "pushed_at": "2013-11-10T02:08:11Z", + "git_url": "git://github.com/jenkinsci/kagemai-plugin.git", + "ssh_url": "git@github.com:jenkinsci/kagemai-plugin.git", + "clone_url": "https://github.com/jenkinsci/kagemai-plugin.git", + "svn_url": "https://github.com/jenkinsci/kagemai-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 148, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163632, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjMy", + "name": "jsunit-plugin", + "full_name": "jenkinsci/jsunit-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jsunit-plugin", + "description": "Jenkins jsunit plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jsunit-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/jsunit-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jsunit-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jsunit-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jsunit-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jsunit-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jsunit-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jsunit-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jsunit-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jsunit-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jsunit-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jsunit-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jsunit-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jsunit-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jsunit-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jsunit-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jsunit-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jsunit-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jsunit-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jsunit-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jsunit-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jsunit-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jsunit-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jsunit-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jsunit-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jsunit-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jsunit-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jsunit-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jsunit-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jsunit-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jsunit-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jsunit-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jsunit-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jsunit-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jsunit-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jsunit-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jsunit-plugin/deployments", + "created_at": "2010-12-13T05:43:00Z", + "updated_at": "2015-08-09T20:41:14Z", + "pushed_at": "2019-10-08T12:36:14Z", + "git_url": "git://github.com/jenkinsci/jsunit-plugin.git", + "ssh_url": "git@github.com:jenkinsci/jsunit-plugin.git", + "clone_url": "https://github.com/jenkinsci/jsunit-plugin.git", + "svn_url": "https://github.com/jenkinsci/jsunit-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 190, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 4, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/__files/organizations_107424_repos-49da2fa3-254f-41d7-8a0f-1ba36c19eae4.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/__files/organizations_107424_repos-49da2fa3-254f-41d7-8a0f-1ba36c19eae4.json new file mode 100644 index 0000000000..108d9bd364 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/__files/organizations_107424_repos-49da2fa3-254f-41d7-8a0f-1ba36c19eae4.json @@ -0,0 +1,10118 @@ +[ + { + "id": 1814080, + "node_id": "MDEwOlJlcG9zaXRvcnkxODE0MDgw", + "name": "ivytrigger-plugin", + "full_name": "jenkinsci/ivytrigger-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/ivytrigger-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/ivytrigger-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/ivytrigger-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/ivytrigger-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/ivytrigger-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/ivytrigger-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/ivytrigger-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/ivytrigger-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/ivytrigger-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/ivytrigger-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/ivytrigger-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/ivytrigger-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/ivytrigger-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/ivytrigger-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/ivytrigger-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/ivytrigger-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/ivytrigger-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/ivytrigger-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/ivytrigger-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/ivytrigger-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/ivytrigger-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/ivytrigger-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/ivytrigger-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/ivytrigger-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/ivytrigger-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/ivytrigger-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/ivytrigger-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/ivytrigger-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/ivytrigger-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/ivytrigger-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/ivytrigger-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/ivytrigger-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/ivytrigger-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/ivytrigger-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/ivytrigger-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/ivytrigger-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/ivytrigger-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/ivytrigger-plugin/deployments", + "created_at": "2011-05-28T13:11:43Z", + "updated_at": "2018-07-19T07:07:54Z", + "pushed_at": "2019-10-08T12:13:56Z", + "git_url": "git://github.com/jenkinsci/ivytrigger-plugin.git", + "ssh_url": "git@github.com:jenkinsci/ivytrigger-plugin.git", + "clone_url": "https://github.com/jenkinsci/ivytrigger-plugin.git", + "svn_url": "https://github.com/jenkinsci/ivytrigger-plugin", + "homepage": "", + "size": 113, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 7, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 7, + "open_issues": 2, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1818799, + "node_id": "MDEwOlJlcG9zaXRvcnkxODE4Nzk5", + "name": "artifactdeployer-plugin", + "full_name": "jenkinsci/artifactdeployer-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/artifactdeployer-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/artifactdeployer-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/artifactdeployer-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/artifactdeployer-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/artifactdeployer-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/artifactdeployer-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/artifactdeployer-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/artifactdeployer-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/artifactdeployer-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/artifactdeployer-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/artifactdeployer-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/artifactdeployer-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/artifactdeployer-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/artifactdeployer-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/artifactdeployer-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/artifactdeployer-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/artifactdeployer-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/artifactdeployer-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/artifactdeployer-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/artifactdeployer-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/artifactdeployer-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/artifactdeployer-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/artifactdeployer-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/artifactdeployer-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/artifactdeployer-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/artifactdeployer-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/artifactdeployer-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/artifactdeployer-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/artifactdeployer-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/artifactdeployer-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/artifactdeployer-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/artifactdeployer-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/artifactdeployer-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/artifactdeployer-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/artifactdeployer-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/artifactdeployer-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/artifactdeployer-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/artifactdeployer-plugin/deployments", + "created_at": "2011-05-29T20:40:28Z", + "updated_at": "2018-11-23T03:20:25Z", + "pushed_at": "2019-10-20T20:36:36Z", + "git_url": "git://github.com/jenkinsci/artifactdeployer-plugin.git", + "ssh_url": "git@github.com:jenkinsci/artifactdeployer-plugin.git", + "clone_url": "https://github.com/jenkinsci/artifactdeployer-plugin.git", + "svn_url": "https://github.com/jenkinsci/artifactdeployer-plugin", + "homepage": "", + "size": 189, + "stargazers_count": 11, + "watchers_count": 11, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 23, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": null, + "forks": 23, + "open_issues": 3, + "watchers": 11, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1837412, + "node_id": "MDEwOlJlcG9zaXRvcnkxODM3NDEy", + "name": "persistent-build-queue-plugin", + "full_name": "jenkinsci/persistent-build-queue-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/persistent-build-queue-plugin", + "description": "Persistent Build Queue Plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/persistent-build-queue-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/persistent-build-queue-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/persistent-build-queue-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/persistent-build-queue-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/persistent-build-queue-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/persistent-build-queue-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/persistent-build-queue-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/persistent-build-queue-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/persistent-build-queue-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/persistent-build-queue-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/persistent-build-queue-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/persistent-build-queue-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/persistent-build-queue-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/persistent-build-queue-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/persistent-build-queue-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/persistent-build-queue-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/persistent-build-queue-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/persistent-build-queue-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/persistent-build-queue-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/persistent-build-queue-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/persistent-build-queue-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/persistent-build-queue-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/persistent-build-queue-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/persistent-build-queue-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/persistent-build-queue-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/persistent-build-queue-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/persistent-build-queue-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/persistent-build-queue-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/persistent-build-queue-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/persistent-build-queue-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/persistent-build-queue-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/persistent-build-queue-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/persistent-build-queue-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/persistent-build-queue-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/persistent-build-queue-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/persistent-build-queue-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/persistent-build-queue-plugin/deployments", + "created_at": "2011-06-02T14:10:25Z", + "updated_at": "2019-06-05T06:03:05Z", + "pushed_at": "2013-11-10T02:13:06Z", + "git_url": "git://github.com/jenkinsci/persistent-build-queue-plugin.git", + "ssh_url": "git@github.com:jenkinsci/persistent-build-queue-plugin.git", + "clone_url": "https://github.com/jenkinsci/persistent-build-queue-plugin.git", + "svn_url": "https://github.com/jenkinsci/persistent-build-queue-plugin", + "homepage": "", + "size": 140, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": true, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 2, + "open_issues": 0, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1845494, + "node_id": "MDEwOlJlcG9zaXRvcnkxODQ1NDk0", + "name": "Surround-SCM-plugin", + "full_name": "jenkinsci/Surround-SCM-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/Surround-SCM-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/Surround-SCM-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/Surround-SCM-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/Surround-SCM-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/Surround-SCM-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/Surround-SCM-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/Surround-SCM-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/Surround-SCM-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/Surround-SCM-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/Surround-SCM-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/Surround-SCM-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/Surround-SCM-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/Surround-SCM-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/Surround-SCM-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/Surround-SCM-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/Surround-SCM-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/Surround-SCM-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/Surround-SCM-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/Surround-SCM-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/Surround-SCM-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/Surround-SCM-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/Surround-SCM-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/Surround-SCM-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/Surround-SCM-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/Surround-SCM-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/Surround-SCM-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/Surround-SCM-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/Surround-SCM-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/Surround-SCM-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/Surround-SCM-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/Surround-SCM-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/Surround-SCM-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/Surround-SCM-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/Surround-SCM-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/Surround-SCM-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/Surround-SCM-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/Surround-SCM-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/Surround-SCM-plugin/deployments", + "created_at": "2011-06-04T02:48:36Z", + "updated_at": "2019-09-30T11:30:40Z", + "pushed_at": "2018-07-13T19:23:15Z", + "git_url": "git://github.com/jenkinsci/Surround-SCM-plugin.git", + "ssh_url": "git@github.com:jenkinsci/Surround-SCM-plugin.git", + "clone_url": "https://github.com/jenkinsci/Surround-SCM-plugin.git", + "svn_url": "https://github.com/jenkinsci/Surround-SCM-plugin", + "homepage": "", + "size": 101, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 7, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 7, + "open_issues": 0, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1857254, + "node_id": "MDEwOlJlcG9zaXRvcnkxODU3MjU0", + "name": "scripttrigger-plugin", + "full_name": "jenkinsci/scripttrigger-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/scripttrigger-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/scripttrigger-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/scripttrigger-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/scripttrigger-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/scripttrigger-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/scripttrigger-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/scripttrigger-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/scripttrigger-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/scripttrigger-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/scripttrigger-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/scripttrigger-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/scripttrigger-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/scripttrigger-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/scripttrigger-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/scripttrigger-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/scripttrigger-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/scripttrigger-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/scripttrigger-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/scripttrigger-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/scripttrigger-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/scripttrigger-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/scripttrigger-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/scripttrigger-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/scripttrigger-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/scripttrigger-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/scripttrigger-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/scripttrigger-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/scripttrigger-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/scripttrigger-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/scripttrigger-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/scripttrigger-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/scripttrigger-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/scripttrigger-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/scripttrigger-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/scripttrigger-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/scripttrigger-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/scripttrigger-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/scripttrigger-plugin/deployments", + "created_at": "2011-06-06T22:53:58Z", + "updated_at": "2019-02-01T20:15:37Z", + "pushed_at": "2016-03-22T21:31:56Z", + "git_url": "git://github.com/jenkinsci/scripttrigger-plugin.git", + "ssh_url": "git@github.com:jenkinsci/scripttrigger-plugin.git", + "clone_url": "https://github.com/jenkinsci/scripttrigger-plugin.git", + "svn_url": "https://github.com/jenkinsci/scripttrigger-plugin", + "homepage": "", + "size": 137, + "stargazers_count": 7, + "watchers_count": 7, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 16, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 16, + "open_issues": 0, + "watchers": 7, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1861018, + "node_id": "MDEwOlJlcG9zaXRvcnkxODYxMDE4", + "name": "exclusion-plugin", + "full_name": "jenkinsci/exclusion-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/exclusion-plugin", + "description": "Exclusion plugin for Jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/exclusion-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/exclusion-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/exclusion-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/exclusion-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/exclusion-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/exclusion-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/exclusion-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/exclusion-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/exclusion-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/exclusion-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/exclusion-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/exclusion-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/exclusion-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/exclusion-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/exclusion-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/exclusion-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/exclusion-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/exclusion-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/exclusion-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/exclusion-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/exclusion-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/exclusion-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/exclusion-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/exclusion-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/exclusion-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/exclusion-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/exclusion-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/exclusion-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/exclusion-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/exclusion-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/exclusion-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/exclusion-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/exclusion-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/exclusion-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/exclusion-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/exclusion-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/exclusion-plugin/deployments", + "created_at": "2011-06-07T17:17:48Z", + "updated_at": "2018-06-18T13:41:42Z", + "pushed_at": "2019-10-08T11:33:00Z", + "git_url": "git://github.com/jenkinsci/exclusion-plugin.git", + "ssh_url": "git@github.com:jenkinsci/exclusion-plugin.git", + "clone_url": "https://github.com/jenkinsci/exclusion-plugin.git", + "svn_url": "https://github.com/jenkinsci/exclusion-plugin", + "homepage": "", + "size": 28035, + "stargazers_count": 9, + "watchers_count": 9, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 17, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 17, + "open_issues": 1, + "watchers": 9, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1861946, + "node_id": "MDEwOlJlcG9zaXRvcnkxODYxOTQ2", + "name": "next-executions-plugin", + "full_name": "jenkinsci/next-executions-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/next-executions-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/next-executions-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/next-executions-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/next-executions-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/next-executions-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/next-executions-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/next-executions-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/next-executions-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/next-executions-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/next-executions-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/next-executions-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/next-executions-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/next-executions-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/next-executions-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/next-executions-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/next-executions-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/next-executions-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/next-executions-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/next-executions-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/next-executions-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/next-executions-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/next-executions-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/next-executions-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/next-executions-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/next-executions-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/next-executions-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/next-executions-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/next-executions-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/next-executions-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/next-executions-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/next-executions-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/next-executions-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/next-executions-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/next-executions-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/next-executions-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/next-executions-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/next-executions-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/next-executions-plugin/deployments", + "created_at": "2011-06-07T20:35:21Z", + "updated_at": "2019-10-23T11:33:41Z", + "pushed_at": "2019-10-23T11:33:39Z", + "git_url": "git://github.com/jenkinsci/next-executions-plugin.git", + "ssh_url": "git@github.com:jenkinsci/next-executions-plugin.git", + "clone_url": "https://github.com/jenkinsci/next-executions-plugin.git", + "svn_url": "https://github.com/jenkinsci/next-executions-plugin", + "homepage": "", + "size": 264, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 9, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 9, + "open_issues": 1, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1862570, + "node_id": "MDEwOlJlcG9zaXRvcnkxODYyNTcw", + "name": "nodelabelparameter-plugin", + "full_name": "jenkinsci/nodelabelparameter-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/nodelabelparameter-plugin", + "description": "a jenkins plugin supporting dynamic label assignment", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/nodelabelparameter-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/nodelabelparameter-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/nodelabelparameter-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/nodelabelparameter-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/nodelabelparameter-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/nodelabelparameter-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/nodelabelparameter-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/nodelabelparameter-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/nodelabelparameter-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/nodelabelparameter-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/nodelabelparameter-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/nodelabelparameter-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/nodelabelparameter-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/nodelabelparameter-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/nodelabelparameter-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/nodelabelparameter-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/nodelabelparameter-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/nodelabelparameter-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/nodelabelparameter-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/nodelabelparameter-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/nodelabelparameter-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/nodelabelparameter-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/nodelabelparameter-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/nodelabelparameter-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/nodelabelparameter-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/nodelabelparameter-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/nodelabelparameter-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/nodelabelparameter-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/nodelabelparameter-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/nodelabelparameter-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/nodelabelparameter-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/nodelabelparameter-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/nodelabelparameter-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/nodelabelparameter-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/nodelabelparameter-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/nodelabelparameter-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/nodelabelparameter-plugin/deployments", + "created_at": "2011-06-07T22:43:58Z", + "updated_at": "2018-09-25T06:32:56Z", + "pushed_at": "2019-09-24T09:45:04Z", + "git_url": "git://github.com/jenkinsci/nodelabelparameter-plugin.git", + "ssh_url": "git@github.com:jenkinsci/nodelabelparameter-plugin.git", + "clone_url": "https://github.com/jenkinsci/nodelabelparameter-plugin.git", + "svn_url": "https://github.com/jenkinsci/nodelabelparameter-plugin", + "homepage": "", + "size": 221, + "stargazers_count": 13, + "watchers_count": 13, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 32, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": null, + "forks": 32, + "open_issues": 3, + "watchers": 13, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1862571, + "node_id": "MDEwOlJlcG9zaXRvcnkxODYyNTcx", + "name": "delta-cloud-plugin", + "full_name": "jenkinsci/delta-cloud-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/delta-cloud-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/delta-cloud-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/delta-cloud-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/delta-cloud-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/delta-cloud-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/delta-cloud-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/delta-cloud-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/delta-cloud-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/delta-cloud-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/delta-cloud-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/delta-cloud-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/delta-cloud-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/delta-cloud-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/delta-cloud-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/delta-cloud-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/delta-cloud-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/delta-cloud-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/delta-cloud-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/delta-cloud-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/delta-cloud-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/delta-cloud-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/delta-cloud-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/delta-cloud-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/delta-cloud-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/delta-cloud-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/delta-cloud-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/delta-cloud-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/delta-cloud-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/delta-cloud-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/delta-cloud-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/delta-cloud-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/delta-cloud-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/delta-cloud-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/delta-cloud-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/delta-cloud-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/delta-cloud-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/delta-cloud-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/delta-cloud-plugin/deployments", + "created_at": "2011-06-07T22:44:14Z", + "updated_at": "2014-05-16T08:09:42Z", + "pushed_at": "2013-11-10T01:59:52Z", + "git_url": "git://github.com/jenkinsci/delta-cloud-plugin.git", + "ssh_url": "git@github.com:jenkinsci/delta-cloud-plugin.git", + "clone_url": "https://github.com/jenkinsci/delta-cloud-plugin.git", + "svn_url": "https://github.com/jenkinsci/delta-cloud-plugin", + "homepage": "", + "size": 300, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1868994, + "node_id": "MDEwOlJlcG9zaXRvcnkxODY4OTk0", + "name": "jcaptcha-plugin", + "full_name": "jenkinsci/jcaptcha-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jcaptcha-plugin", + "description": "JCaptcha Plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jcaptcha-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/jcaptcha-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jcaptcha-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jcaptcha-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jcaptcha-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jcaptcha-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jcaptcha-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jcaptcha-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jcaptcha-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jcaptcha-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jcaptcha-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jcaptcha-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jcaptcha-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jcaptcha-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jcaptcha-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jcaptcha-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jcaptcha-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jcaptcha-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jcaptcha-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jcaptcha-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jcaptcha-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jcaptcha-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jcaptcha-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jcaptcha-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jcaptcha-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jcaptcha-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jcaptcha-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jcaptcha-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jcaptcha-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jcaptcha-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jcaptcha-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jcaptcha-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jcaptcha-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jcaptcha-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jcaptcha-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jcaptcha-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jcaptcha-plugin/deployments", + "created_at": "2011-06-09T03:24:18Z", + "updated_at": "2017-08-22T07:05:22Z", + "pushed_at": "2013-11-10T02:06:14Z", + "git_url": "git://github.com/jenkinsci/jcaptcha-plugin.git", + "ssh_url": "git@github.com:jenkinsci/jcaptcha-plugin.git", + "clone_url": "https://github.com/jenkinsci/jcaptcha-plugin.git", + "svn_url": "https://github.com/jenkinsci/jcaptcha-plugin", + "homepage": "http://wiki.jenkins-ci.org/display/JENKINS/JCaptcha+Plugin", + "size": 104, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": true, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1872046, + "node_id": "MDEwOlJlcG9zaXRvcnkxODcyMDQ2", + "name": "mongodb-plugin", + "full_name": "jenkinsci/mongodb-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/mongodb-plugin", + "description": "Jenkins MongoDB Plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/mongodb-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/mongodb-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/mongodb-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/mongodb-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/mongodb-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/mongodb-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/mongodb-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/mongodb-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/mongodb-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/mongodb-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/mongodb-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/mongodb-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/mongodb-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/mongodb-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/mongodb-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/mongodb-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/mongodb-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/mongodb-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/mongodb-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/mongodb-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/mongodb-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/mongodb-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/mongodb-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/mongodb-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/mongodb-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/mongodb-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/mongodb-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/mongodb-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/mongodb-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/mongodb-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/mongodb-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/mongodb-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/mongodb-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/mongodb-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/mongodb-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/mongodb-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/mongodb-plugin/deployments", + "created_at": "2011-06-09T17:45:40Z", + "updated_at": "2018-01-22T18:43:08Z", + "pushed_at": "2019-10-08T16:17:43Z", + "git_url": "git://github.com/jenkinsci/mongodb-plugin.git", + "ssh_url": "git@github.com:jenkinsci/mongodb-plugin.git", + "clone_url": "https://github.com/jenkinsci/mongodb-plugin.git", + "svn_url": "https://github.com/jenkinsci/mongodb-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/MongoDB+Plugin", + "size": 169, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 7, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 7, + "open_issues": 2, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1886979, + "node_id": "MDEwOlJlcG9zaXRvcnkxODg2OTc5", + "name": "lingr-plugin", + "full_name": "jenkinsci/lingr-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/lingr-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/lingr-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/lingr-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/lingr-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/lingr-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/lingr-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/lingr-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/lingr-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/lingr-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/lingr-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/lingr-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/lingr-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/lingr-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/lingr-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/lingr-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/lingr-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/lingr-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/lingr-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/lingr-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/lingr-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/lingr-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/lingr-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/lingr-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/lingr-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/lingr-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/lingr-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/lingr-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/lingr-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/lingr-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/lingr-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/lingr-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/lingr-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/lingr-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/lingr-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/lingr-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/lingr-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/lingr-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/lingr-plugin/deployments", + "created_at": "2011-06-13T02:26:08Z", + "updated_at": "2019-08-13T14:46:33Z", + "pushed_at": "2013-11-10T02:09:26Z", + "git_url": "git://github.com/jenkinsci/lingr-plugin.git", + "ssh_url": "git@github.com:jenkinsci/lingr-plugin.git", + "clone_url": "https://github.com/jenkinsci/lingr-plugin.git", + "svn_url": "https://github.com/jenkinsci/lingr-plugin", + "homepage": "", + "size": 253, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1889448, + "node_id": "MDEwOlJlcG9zaXRvcnkxODg5NDQ4", + "name": "websocket-plugin", + "full_name": "jenkinsci/websocket-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/websocket-plugin", + "description": "Jenkins Websocket Notifier: notify a build result via websocket", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/websocket-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/websocket-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/websocket-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/websocket-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/websocket-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/websocket-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/websocket-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/websocket-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/websocket-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/websocket-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/websocket-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/websocket-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/websocket-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/websocket-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/websocket-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/websocket-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/websocket-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/websocket-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/websocket-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/websocket-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/websocket-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/websocket-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/websocket-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/websocket-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/websocket-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/websocket-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/websocket-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/websocket-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/websocket-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/websocket-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/websocket-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/websocket-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/websocket-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/websocket-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/websocket-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/websocket-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/websocket-plugin/deployments", + "created_at": "2011-06-13T15:40:02Z", + "updated_at": "2019-08-13T01:17:44Z", + "pushed_at": "2019-10-08T12:42:49Z", + "git_url": "git://github.com/jenkinsci/websocket-plugin.git", + "ssh_url": "git@github.com:jenkinsci/websocket-plugin.git", + "clone_url": "https://github.com/jenkinsci/websocket-plugin.git", + "svn_url": "https://github.com/jenkinsci/websocket-plugin", + "homepage": "", + "size": 198, + "stargazers_count": 15, + "watchers_count": 15, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 10, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 10, + "open_issues": 1, + "watchers": 15, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1891191, + "node_id": "MDEwOlJlcG9zaXRvcnkxODkxMTkx", + "name": "urltrigger-plugin", + "full_name": "jenkinsci/urltrigger-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/urltrigger-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/urltrigger-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/urltrigger-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/urltrigger-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/urltrigger-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/urltrigger-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/urltrigger-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/urltrigger-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/urltrigger-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/urltrigger-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/urltrigger-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/urltrigger-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/urltrigger-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/urltrigger-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/urltrigger-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/urltrigger-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/urltrigger-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/urltrigger-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/urltrigger-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/urltrigger-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/urltrigger-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/urltrigger-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/urltrigger-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/urltrigger-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/urltrigger-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/urltrigger-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/urltrigger-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/urltrigger-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/urltrigger-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/urltrigger-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/urltrigger-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/urltrigger-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/urltrigger-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/urltrigger-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/urltrigger-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/urltrigger-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/urltrigger-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/urltrigger-plugin/deployments", + "created_at": "2011-06-13T21:20:36Z", + "updated_at": "2019-10-21T12:56:17Z", + "pushed_at": "2019-10-21T12:56:15Z", + "git_url": "git://github.com/jenkinsci/urltrigger-plugin.git", + "ssh_url": "git@github.com:jenkinsci/urltrigger-plugin.git", + "clone_url": "https://github.com/jenkinsci/urltrigger-plugin.git", + "svn_url": "https://github.com/jenkinsci/urltrigger-plugin", + "homepage": "", + "size": 259, + "stargazers_count": 12, + "watchers_count": 12, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 38, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": null, + "forks": 38, + "open_issues": 3, + "watchers": 12, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1909759, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTA5NzU5", + "name": "backend-list-pending-pull-requests", + "full_name": "jenkinsci/backend-list-pending-pull-requests", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/backend-list-pending-pull-requests", + "description": "List pending GitHub pull requests", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/backend-list-pending-pull-requests", + "forks_url": "https://api.github.com/repos/jenkinsci/backend-list-pending-pull-requests/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/backend-list-pending-pull-requests/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/backend-list-pending-pull-requests/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/backend-list-pending-pull-requests/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/backend-list-pending-pull-requests/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/backend-list-pending-pull-requests/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/backend-list-pending-pull-requests/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/backend-list-pending-pull-requests/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/backend-list-pending-pull-requests/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/backend-list-pending-pull-requests/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/backend-list-pending-pull-requests/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/backend-list-pending-pull-requests/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/backend-list-pending-pull-requests/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/backend-list-pending-pull-requests/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/backend-list-pending-pull-requests/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/backend-list-pending-pull-requests/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/backend-list-pending-pull-requests/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/backend-list-pending-pull-requests/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/backend-list-pending-pull-requests/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/backend-list-pending-pull-requests/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/backend-list-pending-pull-requests/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/backend-list-pending-pull-requests/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/backend-list-pending-pull-requests/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/backend-list-pending-pull-requests/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/backend-list-pending-pull-requests/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/backend-list-pending-pull-requests/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/backend-list-pending-pull-requests/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/backend-list-pending-pull-requests/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/backend-list-pending-pull-requests/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/backend-list-pending-pull-requests/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/backend-list-pending-pull-requests/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/backend-list-pending-pull-requests/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/backend-list-pending-pull-requests/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/backend-list-pending-pull-requests/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/backend-list-pending-pull-requests/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/backend-list-pending-pull-requests/deployments", + "created_at": "2011-06-17T06:46:20Z", + "updated_at": "2018-01-22T18:43:08Z", + "pushed_at": "2014-05-31T01:29:44Z", + "git_url": "git://github.com/jenkinsci/backend-list-pending-pull-requests.git", + "ssh_url": "git@github.com:jenkinsci/backend-list-pending-pull-requests.git", + "clone_url": "https://github.com/jenkinsci/backend-list-pending-pull-requests.git", + "svn_url": "https://github.com/jenkinsci/backend-list-pending-pull-requests", + "homepage": "http://jenkins-ci.org/", + "size": 130, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": true, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1918870, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTE4ODcw", + "name": "offlineonfailure-plugin", + "full_name": "jenkinsci/offlineonfailure-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/offlineonfailure-plugin", + "description": "OfflineOnFailure is a jenkins plugin that will (when configured for it) take a node offline on build failures.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/offlineonfailure-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/offlineonfailure-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/offlineonfailure-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/offlineonfailure-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/offlineonfailure-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/offlineonfailure-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/offlineonfailure-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/offlineonfailure-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/offlineonfailure-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/offlineonfailure-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/offlineonfailure-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/offlineonfailure-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/offlineonfailure-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/offlineonfailure-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/offlineonfailure-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/offlineonfailure-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/offlineonfailure-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/offlineonfailure-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/offlineonfailure-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/offlineonfailure-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/offlineonfailure-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/offlineonfailure-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/offlineonfailure-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/offlineonfailure-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/offlineonfailure-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/offlineonfailure-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/offlineonfailure-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/offlineonfailure-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/offlineonfailure-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/offlineonfailure-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/offlineonfailure-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/offlineonfailure-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/offlineonfailure-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/offlineonfailure-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/offlineonfailure-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/offlineonfailure-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/offlineonfailure-plugin/deployments", + "created_at": "2011-06-19T10:11:30Z", + "updated_at": "2018-06-18T10:03:03Z", + "pushed_at": "2019-10-08T16:35:34Z", + "git_url": "git://github.com/jenkinsci/offlineonfailure-plugin.git", + "ssh_url": "git@github.com:jenkinsci/offlineonfailure-plugin.git", + "clone_url": "https://github.com/jenkinsci/offlineonfailure-plugin.git", + "svn_url": "https://github.com/jenkinsci/offlineonfailure-plugin", + "homepage": "", + "size": 8, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 9, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 9, + "open_issues": 2, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1923267, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTIzMjY3", + "name": "liverebel-deploy-plugin", + "full_name": "jenkinsci/liverebel-deploy-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/liverebel-deploy-plugin", + "description": "LiveRebel CI Deploy Plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/liverebel-deploy-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/liverebel-deploy-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/liverebel-deploy-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/liverebel-deploy-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/liverebel-deploy-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/liverebel-deploy-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/liverebel-deploy-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/liverebel-deploy-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/liverebel-deploy-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/liverebel-deploy-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/liverebel-deploy-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/liverebel-deploy-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/liverebel-deploy-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/liverebel-deploy-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/liverebel-deploy-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/liverebel-deploy-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/liverebel-deploy-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/liverebel-deploy-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/liverebel-deploy-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/liverebel-deploy-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/liverebel-deploy-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/liverebel-deploy-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/liverebel-deploy-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/liverebel-deploy-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/liverebel-deploy-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/liverebel-deploy-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/liverebel-deploy-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/liverebel-deploy-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/liverebel-deploy-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/liverebel-deploy-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/liverebel-deploy-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/liverebel-deploy-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/liverebel-deploy-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/liverebel-deploy-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/liverebel-deploy-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/liverebel-deploy-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/liverebel-deploy-plugin/deployments", + "created_at": "2011-06-20T11:49:36Z", + "updated_at": "2018-04-20T17:32:02Z", + "pushed_at": "2013-11-10T02:09:35Z", + "git_url": "git://github.com/jenkinsci/liverebel-deploy-plugin.git", + "ssh_url": "git@github.com:jenkinsci/liverebel-deploy-plugin.git", + "clone_url": "https://github.com/jenkinsci/liverebel-deploy-plugin.git", + "svn_url": "https://github.com/jenkinsci/liverebel-deploy-plugin", + "homepage": "", + "size": 1339, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 2, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1927987, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTI3OTg3", + "name": "hello-world-groovy-view-plugin", + "full_name": "jenkinsci/hello-world-groovy-view-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/hello-world-groovy-view-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/hello-world-groovy-view-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/hello-world-groovy-view-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/hello-world-groovy-view-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/hello-world-groovy-view-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/hello-world-groovy-view-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/hello-world-groovy-view-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/hello-world-groovy-view-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/hello-world-groovy-view-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/hello-world-groovy-view-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/hello-world-groovy-view-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/hello-world-groovy-view-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/hello-world-groovy-view-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/hello-world-groovy-view-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/hello-world-groovy-view-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/hello-world-groovy-view-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/hello-world-groovy-view-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/hello-world-groovy-view-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/hello-world-groovy-view-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/hello-world-groovy-view-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/hello-world-groovy-view-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/hello-world-groovy-view-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/hello-world-groovy-view-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/hello-world-groovy-view-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/hello-world-groovy-view-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/hello-world-groovy-view-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/hello-world-groovy-view-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/hello-world-groovy-view-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/hello-world-groovy-view-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/hello-world-groovy-view-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/hello-world-groovy-view-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/hello-world-groovy-view-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/hello-world-groovy-view-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/hello-world-groovy-view-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/hello-world-groovy-view-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/hello-world-groovy-view-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/hello-world-groovy-view-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/hello-world-groovy-view-plugin/deployments", + "created_at": "2011-06-21T07:54:45Z", + "updated_at": "2019-07-15T11:05:03Z", + "pushed_at": "2013-11-10T02:04:42Z", + "git_url": "git://github.com/jenkinsci/hello-world-groovy-view-plugin.git", + "ssh_url": "git@github.com:jenkinsci/hello-world-groovy-view-plugin.git", + "clone_url": "https://github.com/jenkinsci/hello-world-groovy-view-plugin.git", + "svn_url": "https://github.com/jenkinsci/hello-world-groovy-view-plugin", + "homepage": "", + "size": 160, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1932983, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTMyOTgz", + "name": "sitecore-package-installer-plugin", + "full_name": "jenkinsci/sitecore-package-installer-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/sitecore-package-installer-plugin", + "description": "Jenkins sitecore-package-installer plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/sitecore-package-installer-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/sitecore-package-installer-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/sitecore-package-installer-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/sitecore-package-installer-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/sitecore-package-installer-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/sitecore-package-installer-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/sitecore-package-installer-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/sitecore-package-installer-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/sitecore-package-installer-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/sitecore-package-installer-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/sitecore-package-installer-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/sitecore-package-installer-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/sitecore-package-installer-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/sitecore-package-installer-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/sitecore-package-installer-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/sitecore-package-installer-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/sitecore-package-installer-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/sitecore-package-installer-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/sitecore-package-installer-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/sitecore-package-installer-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/sitecore-package-installer-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/sitecore-package-installer-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/sitecore-package-installer-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/sitecore-package-installer-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/sitecore-package-installer-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/sitecore-package-installer-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/sitecore-package-installer-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/sitecore-package-installer-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/sitecore-package-installer-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/sitecore-package-installer-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/sitecore-package-installer-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/sitecore-package-installer-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/sitecore-package-installer-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/sitecore-package-installer-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/sitecore-package-installer-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/sitecore-package-installer-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/sitecore-package-installer-plugin/deployments", + "created_at": "2011-06-22T03:34:50Z", + "updated_at": "2014-06-03T11:36:10Z", + "pushed_at": "2013-11-10T02:17:43Z", + "git_url": "git://github.com/jenkinsci/sitecore-package-installer-plugin.git", + "ssh_url": "git@github.com:jenkinsci/sitecore-package-installer-plugin.git", + "clone_url": "https://github.com/jenkinsci/sitecore-package-installer-plugin.git", + "svn_url": "https://github.com/jenkinsci/sitecore-package-installer-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 96, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1941540, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTQxNTQw", + "name": "config-autorefresh-plugin", + "full_name": "jenkinsci/config-autorefresh-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/config-autorefresh-plugin", + "description": "Config AutoRefresh Plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/config-autorefresh-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/config-autorefresh-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/config-autorefresh-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/config-autorefresh-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/config-autorefresh-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/config-autorefresh-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/config-autorefresh-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/config-autorefresh-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/config-autorefresh-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/config-autorefresh-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/config-autorefresh-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/config-autorefresh-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/config-autorefresh-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/config-autorefresh-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/config-autorefresh-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/config-autorefresh-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/config-autorefresh-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/config-autorefresh-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/config-autorefresh-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/config-autorefresh-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/config-autorefresh-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/config-autorefresh-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/config-autorefresh-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/config-autorefresh-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/config-autorefresh-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/config-autorefresh-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/config-autorefresh-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/config-autorefresh-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/config-autorefresh-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/config-autorefresh-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/config-autorefresh-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/config-autorefresh-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/config-autorefresh-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/config-autorefresh-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/config-autorefresh-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/config-autorefresh-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/config-autorefresh-plugin/deployments", + "created_at": "2011-06-23T13:16:11Z", + "updated_at": "2014-10-14T07:09:13Z", + "pushed_at": "2019-10-08T12:08:28Z", + "git_url": "git://github.com/jenkinsci/config-autorefresh-plugin.git", + "ssh_url": "git@github.com:jenkinsci/config-autorefresh-plugin.git", + "clone_url": "https://github.com/jenkinsci/config-autorefresh-plugin.git", + "svn_url": "https://github.com/jenkinsci/config-autorefresh-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Config+AutoRefresh+Plugin", + "size": 161, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": true, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 2, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1942200, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTQyMjAw", + "name": "ssh-cli-auth-module", + "full_name": "jenkinsci/ssh-cli-auth-module", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/ssh-cli-auth-module", + "description": "SSH CLI Client Authenticator for Jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/ssh-cli-auth-module", + "forks_url": "https://api.github.com/repos/jenkinsci/ssh-cli-auth-module/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/ssh-cli-auth-module/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/ssh-cli-auth-module/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/ssh-cli-auth-module/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/ssh-cli-auth-module/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/ssh-cli-auth-module/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/ssh-cli-auth-module/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/ssh-cli-auth-module/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/ssh-cli-auth-module/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/ssh-cli-auth-module/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/ssh-cli-auth-module/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/ssh-cli-auth-module/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/ssh-cli-auth-module/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/ssh-cli-auth-module/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/ssh-cli-auth-module/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/ssh-cli-auth-module/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/ssh-cli-auth-module/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/ssh-cli-auth-module/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/ssh-cli-auth-module/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/ssh-cli-auth-module/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/ssh-cli-auth-module/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/ssh-cli-auth-module/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/ssh-cli-auth-module/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/ssh-cli-auth-module/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/ssh-cli-auth-module/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/ssh-cli-auth-module/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/ssh-cli-auth-module/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/ssh-cli-auth-module/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/ssh-cli-auth-module/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/ssh-cli-auth-module/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/ssh-cli-auth-module/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/ssh-cli-auth-module/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/ssh-cli-auth-module/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/ssh-cli-auth-module/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/ssh-cli-auth-module/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/ssh-cli-auth-module/deployments", + "created_at": "2011-06-23T15:15:23Z", + "updated_at": "2019-07-16T07:23:09Z", + "pushed_at": "2019-07-16T07:23:07Z", + "git_url": "git://github.com/jenkinsci/ssh-cli-auth-module.git", + "ssh_url": "git@github.com:jenkinsci/ssh-cli-auth-module.git", + "clone_url": "https://github.com/jenkinsci/ssh-cli-auth-module.git", + "svn_url": "https://github.com/jenkinsci/ssh-cli-auth-module", + "homepage": "", + "size": 70, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 8, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 8, + "open_issues": 2, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1950476, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTUwNDc2", + "name": "sandbox", + "full_name": "jenkinsci/sandbox", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/sandbox", + "description": "test. please disregard.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/sandbox", + "forks_url": "https://api.github.com/repos/jenkinsci/sandbox/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/sandbox/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/sandbox/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/sandbox/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/sandbox/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/sandbox/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/sandbox/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/sandbox/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/sandbox/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/sandbox/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/sandbox/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/sandbox/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/sandbox/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/sandbox/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/sandbox/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/sandbox/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/sandbox/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/sandbox/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/sandbox/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/sandbox/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/sandbox/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/sandbox/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/sandbox/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/sandbox/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/sandbox/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/sandbox/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/sandbox/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/sandbox/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/sandbox/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/sandbox/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/sandbox/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/sandbox/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/sandbox/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/sandbox/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/sandbox/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/sandbox/deployments", + "created_at": "2011-06-25T00:31:54Z", + "updated_at": "2019-08-13T14:46:59Z", + "pushed_at": "2012-06-02T01:16:18Z", + "git_url": "git://github.com/jenkinsci/sandbox.git", + "ssh_url": "git@github.com:jenkinsci/sandbox.git", + "clone_url": "https://github.com/jenkinsci/sandbox.git", + "svn_url": "https://github.com/jenkinsci/sandbox", + "homepage": "", + "size": 206, + "stargazers_count": 2, + "watchers_count": 2, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1952692, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTUyNjky", + "name": "clamav-plugin", + "full_name": "jenkinsci/clamav-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/clamav-plugin", + "description": "ClamAV Plugin for Jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/clamav-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/clamav-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/clamav-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/clamav-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/clamav-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/clamav-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/clamav-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/clamav-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/clamav-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/clamav-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/clamav-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/clamav-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/clamav-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/clamav-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/clamav-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/clamav-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/clamav-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/clamav-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/clamav-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/clamav-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/clamav-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/clamav-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/clamav-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/clamav-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/clamav-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/clamav-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/clamav-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/clamav-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/clamav-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/clamav-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/clamav-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/clamav-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/clamav-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/clamav-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/clamav-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/clamav-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/clamav-plugin/deployments", + "created_at": "2011-06-25T16:29:03Z", + "updated_at": "2017-12-20T13:48:04Z", + "pushed_at": "2015-05-10T02:26:11Z", + "git_url": "git://github.com/jenkinsci/clamav-plugin.git", + "ssh_url": "git@github.com:jenkinsci/clamav-plugin.git", + "clone_url": "https://github.com/jenkinsci/clamav-plugin.git", + "svn_url": "https://github.com/jenkinsci/clamav-plugin", + "homepage": "", + "size": 379, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 4, + "open_issues": 0, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1962490, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTYyNDkw", + "name": "cli-channel-demo", + "full_name": "jenkinsci/cli-channel-demo", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/cli-channel-demo", + "description": "This demo shows how you can develop remote systems that talk to Jenkins by taking advantages of the remoting subsystem.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/cli-channel-demo", + "forks_url": "https://api.github.com/repos/jenkinsci/cli-channel-demo/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/cli-channel-demo/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/cli-channel-demo/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/cli-channel-demo/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/cli-channel-demo/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/cli-channel-demo/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/cli-channel-demo/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/cli-channel-demo/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/cli-channel-demo/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/cli-channel-demo/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/cli-channel-demo/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/cli-channel-demo/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/cli-channel-demo/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/cli-channel-demo/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/cli-channel-demo/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/cli-channel-demo/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/cli-channel-demo/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/cli-channel-demo/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/cli-channel-demo/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/cli-channel-demo/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/cli-channel-demo/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/cli-channel-demo/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/cli-channel-demo/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/cli-channel-demo/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/cli-channel-demo/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/cli-channel-demo/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/cli-channel-demo/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/cli-channel-demo/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/cli-channel-demo/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/cli-channel-demo/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/cli-channel-demo/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/cli-channel-demo/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/cli-channel-demo/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/cli-channel-demo/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/cli-channel-demo/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/cli-channel-demo/deployments", + "created_at": "2011-06-27T20:41:45Z", + "updated_at": "2018-11-19T06:30:22Z", + "pushed_at": "2013-11-10T01:56:54Z", + "git_url": "git://github.com/jenkinsci/cli-channel-demo.git", + "ssh_url": "git@github.com:jenkinsci/cli-channel-demo.git", + "clone_url": "https://github.com/jenkinsci/cli-channel-demo.git", + "svn_url": "https://github.com/jenkinsci/cli-channel-demo", + "homepage": "http://jenkins-ci.org/", + "size": 97, + "stargazers_count": 14, + "watchers_count": 14, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 7, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 7, + "open_issues": 0, + "watchers": 14, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1979272, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTc5Mjcy", + "name": "pom-importer-plugin", + "full_name": "jenkinsci/pom-importer-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pom-importer-plugin", + "description": "Jenkins POM importer plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/pom-importer-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pom-importer-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pom-importer-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pom-importer-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pom-importer-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pom-importer-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pom-importer-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pom-importer-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pom-importer-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pom-importer-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pom-importer-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pom-importer-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pom-importer-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pom-importer-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pom-importer-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pom-importer-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pom-importer-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pom-importer-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pom-importer-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pom-importer-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pom-importer-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pom-importer-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pom-importer-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pom-importer-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pom-importer-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pom-importer-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pom-importer-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pom-importer-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pom-importer-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pom-importer-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pom-importer-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pom-importer-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pom-importer-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pom-importer-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pom-importer-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pom-importer-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pom-importer-plugin/deployments", + "created_at": "2011-06-30T17:34:37Z", + "updated_at": "2014-06-03T11:36:00Z", + "pushed_at": "2013-11-10T02:13:33Z", + "git_url": "git://github.com/jenkinsci/pom-importer-plugin.git", + "ssh_url": "git@github.com:jenkinsci/pom-importer-plugin.git", + "clone_url": "https://github.com/jenkinsci/pom-importer-plugin.git", + "svn_url": "https://github.com/jenkinsci/pom-importer-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 103, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2002651, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDAyNjUx", + "name": "fstrigger-plugin", + "full_name": "jenkinsci/fstrigger-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/fstrigger-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/fstrigger-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/fstrigger-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/fstrigger-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/fstrigger-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/fstrigger-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/fstrigger-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/fstrigger-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/fstrigger-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/fstrigger-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/fstrigger-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/fstrigger-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/fstrigger-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/fstrigger-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/fstrigger-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/fstrigger-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/fstrigger-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/fstrigger-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/fstrigger-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/fstrigger-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/fstrigger-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/fstrigger-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/fstrigger-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/fstrigger-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/fstrigger-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/fstrigger-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/fstrigger-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/fstrigger-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/fstrigger-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/fstrigger-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/fstrigger-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/fstrigger-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/fstrigger-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/fstrigger-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/fstrigger-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/fstrigger-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/fstrigger-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/fstrigger-plugin/deployments", + "created_at": "2011-07-05T20:13:23Z", + "updated_at": "2018-12-18T01:58:20Z", + "pushed_at": "2019-10-08T10:09:02Z", + "git_url": "git://github.com/jenkinsci/fstrigger-plugin.git", + "ssh_url": "git@github.com:jenkinsci/fstrigger-plugin.git", + "clone_url": "https://github.com/jenkinsci/fstrigger-plugin.git", + "svn_url": "https://github.com/jenkinsci/fstrigger-plugin", + "homepage": "", + "size": 185, + "stargazers_count": 8, + "watchers_count": 8, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 9, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 9, + "open_issues": 2, + "watchers": 8, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2005106, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDA1MTA2", + "name": "tap-plugin", + "full_name": "jenkinsci/tap-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/tap-plugin", + "description": "Jenkins TAP Plug-in", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/tap-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/tap-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/tap-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/tap-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/tap-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/tap-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/tap-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/tap-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/tap-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/tap-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/tap-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/tap-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/tap-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/tap-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/tap-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/tap-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/tap-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/tap-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/tap-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/tap-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/tap-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/tap-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/tap-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/tap-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/tap-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/tap-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/tap-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/tap-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/tap-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/tap-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/tap-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/tap-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/tap-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/tap-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/tap-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/tap-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/tap-plugin/deployments", + "created_at": "2011-07-06T07:08:30Z", + "updated_at": "2019-10-08T11:31:24Z", + "pushed_at": "2019-10-08T11:31:21Z", + "git_url": "git://github.com/jenkinsci/tap-plugin.git", + "ssh_url": "git@github.com:jenkinsci/tap-plugin.git", + "clone_url": "https://github.com/jenkinsci/tap-plugin.git", + "svn_url": "https://github.com/jenkinsci/tap-plugin", + "homepage": "http://www.tap4j.org", + "size": 481, + "stargazers_count": 21, + "watchers_count": 21, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 33, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 4, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 33, + "open_issues": 4, + "watchers": 21, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2008330, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDA4MzMw", + "name": "simpleclearcase-plugin", + "full_name": "jenkinsci/simpleclearcase-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/simpleclearcase-plugin", + "description": "This plugin interfaces with clearcase SCM as a jenkins plugin. It's 'simple' in the sense that you only can use it with dynamic view. I've taken a lot of inspiration from clearcase-plugin.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/simpleclearcase-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/simpleclearcase-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/simpleclearcase-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/simpleclearcase-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/simpleclearcase-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/simpleclearcase-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/simpleclearcase-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/simpleclearcase-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/simpleclearcase-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/simpleclearcase-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/simpleclearcase-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/simpleclearcase-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/simpleclearcase-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/simpleclearcase-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/simpleclearcase-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/simpleclearcase-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/simpleclearcase-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/simpleclearcase-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/simpleclearcase-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/simpleclearcase-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/simpleclearcase-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/simpleclearcase-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/simpleclearcase-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/simpleclearcase-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/simpleclearcase-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/simpleclearcase-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/simpleclearcase-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/simpleclearcase-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/simpleclearcase-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/simpleclearcase-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/simpleclearcase-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/simpleclearcase-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/simpleclearcase-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/simpleclearcase-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/simpleclearcase-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/simpleclearcase-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/simpleclearcase-plugin/deployments", + "created_at": "2011-07-06T19:12:52Z", + "updated_at": "2013-11-10T02:17:46Z", + "pushed_at": "2018-02-22T07:28:00Z", + "git_url": "git://github.com/jenkinsci/simpleclearcase-plugin.git", + "ssh_url": "git@github.com:jenkinsci/simpleclearcase-plugin.git", + "clone_url": "https://github.com/jenkinsci/simpleclearcase-plugin.git", + "svn_url": "https://github.com/jenkinsci/simpleclearcase-plugin", + "homepage": "", + "size": 254, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 2, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2010108, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDEwMTA4", + "name": "core-annotation-processors", + "full_name": "jenkinsci/core-annotation-processors", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/core-annotation-processors", + "description": "Working around MCOMPILER-97 for Jenkins core", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/core-annotation-processors", + "forks_url": "https://api.github.com/repos/jenkinsci/core-annotation-processors/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/core-annotation-processors/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/core-annotation-processors/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/core-annotation-processors/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/core-annotation-processors/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/core-annotation-processors/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/core-annotation-processors/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/core-annotation-processors/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/core-annotation-processors/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/core-annotation-processors/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/core-annotation-processors/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/core-annotation-processors/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/core-annotation-processors/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/core-annotation-processors/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/core-annotation-processors/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/core-annotation-processors/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/core-annotation-processors/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/core-annotation-processors/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/core-annotation-processors/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/core-annotation-processors/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/core-annotation-processors/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/core-annotation-processors/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/core-annotation-processors/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/core-annotation-processors/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/core-annotation-processors/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/core-annotation-processors/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/core-annotation-processors/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/core-annotation-processors/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/core-annotation-processors/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/core-annotation-processors/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/core-annotation-processors/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/core-annotation-processors/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/core-annotation-processors/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/core-annotation-processors/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/core-annotation-processors/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/core-annotation-processors/deployments", + "created_at": "2011-07-07T02:33:16Z", + "updated_at": "2016-08-22T07:58:48Z", + "pushed_at": "2011-07-07T02:34:26Z", + "git_url": "git://github.com/jenkinsci/core-annotation-processors.git", + "ssh_url": "git@github.com:jenkinsci/core-annotation-processors.git", + "clone_url": "https://github.com/jenkinsci/core-annotation-processors.git", + "svn_url": "https://github.com/jenkinsci/core-annotation-processors", + "homepage": "http://jenkins-ci.org/", + "size": 92, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 3, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2026697, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDI2Njk3", + "name": "jna", + "full_name": "jenkinsci/jna", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jna", + "description": "Java Native Access", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/jna", + "forks_url": "https://api.github.com/repos/jenkinsci/jna/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jna/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jna/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jna/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jna/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jna/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jna/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jna/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jna/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jna/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jna/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jna/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jna/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jna/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jna/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jna/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jna/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jna/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jna/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jna/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jna/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jna/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jna/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jna/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jna/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jna/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jna/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jna/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jna/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jna/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jna/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jna/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jna/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jna/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jna/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jna/deployments", + "created_at": "2011-07-10T18:16:54Z", + "updated_at": "2018-01-22T18:43:09Z", + "pushed_at": "2014-04-15T03:10:49Z", + "git_url": "git://github.com/jenkinsci/jna.git", + "ssh_url": "git@github.com:jenkinsci/jna.git", + "clone_url": "https://github.com/jenkinsci/jna.git", + "svn_url": "https://github.com/jenkinsci/jna", + "homepage": "http://jna.java.net", + "size": 101808, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "lgpl-2.1", + "name": "GNU Lesser General Public License v2.1", + "spdx_id": "LGPL-2.1", + "url": "https://api.github.com/licenses/lgpl-2.1", + "node_id": "MDc6TGljZW5zZTEx" + }, + "forks": 2, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2027943, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDI3OTQz", + "name": "github-oauth-plugin", + "full_name": "jenkinsci/github-oauth-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/github-oauth-plugin", + "description": "Jenkins authentication plugin using GitHub OAuth as the source.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/github-oauth-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/github-oauth-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/github-oauth-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/github-oauth-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/github-oauth-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/github-oauth-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/github-oauth-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/github-oauth-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/github-oauth-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/github-oauth-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/github-oauth-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/github-oauth-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/github-oauth-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/github-oauth-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/github-oauth-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/github-oauth-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/github-oauth-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/github-oauth-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/github-oauth-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/github-oauth-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/github-oauth-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/github-oauth-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/github-oauth-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/github-oauth-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/github-oauth-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/github-oauth-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/github-oauth-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/github-oauth-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/github-oauth-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/github-oauth-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/github-oauth-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/github-oauth-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/github-oauth-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/github-oauth-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/github-oauth-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/github-oauth-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/github-oauth-plugin/deployments", + "created_at": "2011-07-11T00:49:27Z", + "updated_at": "2019-09-24T06:36:51Z", + "pushed_at": "2019-08-21T20:09:09Z", + "git_url": "git://github.com/jenkinsci/github-oauth-plugin.git", + "ssh_url": "git@github.com:jenkinsci/github-oauth-plugin.git", + "clone_url": "https://github.com/jenkinsci/github-oauth-plugin.git", + "svn_url": "https://github.com/jenkinsci/github-oauth-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Github+OAuth+Plugin", + "size": 546, + "stargazers_count": 79, + "watchers_count": 79, + "language": "Java", + "has_issues": false, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 136, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 6, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 136, + "open_issues": 6, + "watchers": 79, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2040168, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDQwMTY4", + "name": "remoting", + "full_name": "jenkinsci/remoting", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/remoting", + "description": "Jenkins Remoting module", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/remoting", + "forks_url": "https://api.github.com/repos/jenkinsci/remoting/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/remoting/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/remoting/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/remoting/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/remoting/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/remoting/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/remoting/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/remoting/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/remoting/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/remoting/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/remoting/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/remoting/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/remoting/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/remoting/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/remoting/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/remoting/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/remoting/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/remoting/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/remoting/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/remoting/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/remoting/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/remoting/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/remoting/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/remoting/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/remoting/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/remoting/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/remoting/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/remoting/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/remoting/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/remoting/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/remoting/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/remoting/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/remoting/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/remoting/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/remoting/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/remoting/deployments", + "created_at": "2011-07-13T05:06:16Z", + "updated_at": "2019-09-15T15:04:10Z", + "pushed_at": "2019-10-05T07:14:10Z", + "git_url": "git://github.com/jenkinsci/remoting.git", + "ssh_url": "git@github.com:jenkinsci/remoting.git", + "clone_url": "https://github.com/jenkinsci/remoting.git", + "svn_url": "https://github.com/jenkinsci/remoting", + "homepage": "https://jenkins.io/projects/remoting/", + "size": 3747, + "stargazers_count": 96, + "watchers_count": 96, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 144, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 12, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 144, + "open_issues": 12, + "watchers": 96, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2057555, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDU3NTU1", + "name": "cli-extras-plugin", + "full_name": "jenkinsci/cli-extras-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/cli-extras-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/cli-extras-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/cli-extras-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/cli-extras-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/cli-extras-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/cli-extras-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/cli-extras-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/cli-extras-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/cli-extras-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/cli-extras-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/cli-extras-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/cli-extras-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/cli-extras-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/cli-extras-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/cli-extras-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/cli-extras-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/cli-extras-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/cli-extras-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/cli-extras-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/cli-extras-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/cli-extras-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/cli-extras-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/cli-extras-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/cli-extras-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/cli-extras-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/cli-extras-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/cli-extras-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/cli-extras-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/cli-extras-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/cli-extras-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/cli-extras-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/cli-extras-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/cli-extras-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/cli-extras-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/cli-extras-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/cli-extras-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/cli-extras-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/cli-extras-plugin/deployments", + "created_at": "2011-07-16T10:41:58Z", + "updated_at": "2013-11-10T01:57:06Z", + "pushed_at": "2013-11-10T01:56:58Z", + "git_url": "git://github.com/jenkinsci/cli-extras-plugin.git", + "ssh_url": "git@github.com:jenkinsci/cli-extras-plugin.git", + "clone_url": "https://github.com/jenkinsci/cli-extras-plugin.git", + "svn_url": "https://github.com/jenkinsci/cli-extras-plugin", + "homepage": "", + "size": 110, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2059304, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDU5MzA0", + "name": "envinject-plugin", + "full_name": "jenkinsci/envinject-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/envinject-plugin", + "description": "This plugin makes it possible to setup a custom environment for your jobs", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/envinject-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/envinject-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/envinject-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/envinject-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/envinject-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/envinject-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/envinject-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/envinject-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/envinject-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/envinject-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/envinject-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/envinject-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/envinject-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/envinject-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/envinject-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/envinject-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/envinject-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/envinject-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/envinject-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/envinject-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/envinject-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/envinject-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/envinject-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/envinject-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/envinject-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/envinject-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/envinject-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/envinject-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/envinject-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/envinject-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/envinject-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/envinject-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/envinject-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/envinject-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/envinject-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/envinject-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/envinject-plugin/deployments", + "created_at": "2011-07-16T20:09:41Z", + "updated_at": "2019-10-24T08:37:34Z", + "pushed_at": "2019-10-24T08:37:32Z", + "git_url": "git://github.com/jenkinsci/envinject-plugin.git", + "ssh_url": "git@github.com:jenkinsci/envinject-plugin.git", + "clone_url": "https://github.com/jenkinsci/envinject-plugin.git", + "svn_url": "https://github.com/jenkinsci/envinject-plugin", + "homepage": "https://plugins.jenkins.io/envinject", + "size": 1151, + "stargazers_count": 67, + "watchers_count": 67, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 103, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 7, + "license": null, + "forks": 103, + "open_issues": 7, + "watchers": 67, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2067613, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY3NjEz", + "name": "build-keeper-plugin", + "full_name": "jenkinsci/build-keeper-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/build-keeper-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/build-keeper-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/build-keeper-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/build-keeper-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/build-keeper-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/build-keeper-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/build-keeper-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/build-keeper-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/build-keeper-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/build-keeper-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/build-keeper-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/build-keeper-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/build-keeper-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/build-keeper-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/build-keeper-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/build-keeper-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/build-keeper-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/build-keeper-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/build-keeper-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/build-keeper-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/build-keeper-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/build-keeper-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/build-keeper-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/build-keeper-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/build-keeper-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/build-keeper-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/build-keeper-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/build-keeper-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/build-keeper-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/build-keeper-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/build-keeper-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/build-keeper-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/build-keeper-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/build-keeper-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/build-keeper-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/build-keeper-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/build-keeper-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/build-keeper-plugin/deployments", + "created_at": "2011-07-18T17:29:46Z", + "updated_at": "2017-03-08T08:02:30Z", + "pushed_at": "2019-10-08T11:17:05Z", + "git_url": "git://github.com/jenkinsci/build-keeper-plugin.git", + "ssh_url": "git@github.com:jenkinsci/build-keeper-plugin.git", + "clone_url": "https://github.com/jenkinsci/build-keeper-plugin.git", + "svn_url": "https://github.com/jenkinsci/build-keeper-plugin", + "homepage": "", + "size": 122, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 2, + "open_issues": 1, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2067660, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY3NjYw", + "name": "fail-the-build-plugin", + "full_name": "jenkinsci/fail-the-build-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/fail-the-build-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/fail-the-build-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/fail-the-build-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/fail-the-build-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/fail-the-build-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/fail-the-build-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/fail-the-build-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/fail-the-build-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/fail-the-build-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/fail-the-build-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/fail-the-build-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/fail-the-build-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/fail-the-build-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/fail-the-build-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/fail-the-build-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/fail-the-build-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/fail-the-build-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/fail-the-build-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/fail-the-build-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/fail-the-build-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/fail-the-build-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/fail-the-build-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/fail-the-build-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/fail-the-build-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/fail-the-build-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/fail-the-build-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/fail-the-build-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/fail-the-build-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/fail-the-build-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/fail-the-build-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/fail-the-build-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/fail-the-build-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/fail-the-build-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/fail-the-build-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/fail-the-build-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/fail-the-build-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/fail-the-build-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/fail-the-build-plugin/deployments", + "created_at": "2011-07-18T17:38:35Z", + "updated_at": "2013-11-10T02:02:31Z", + "pushed_at": "2019-10-08T11:18:17Z", + "git_url": "git://github.com/jenkinsci/fail-the-build-plugin.git", + "ssh_url": "git@github.com:jenkinsci/fail-the-build-plugin.git", + "clone_url": "https://github.com/jenkinsci/fail-the-build-plugin.git", + "svn_url": "https://github.com/jenkinsci/fail-the-build-plugin", + "homepage": "", + "size": 103, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 3, + "open_issues": 2, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2080857, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDgwODU3", + "name": "keyhole", + "full_name": "jenkinsci/keyhole", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/keyhole", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/keyhole", + "forks_url": "https://api.github.com/repos/jenkinsci/keyhole/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/keyhole/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/keyhole/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/keyhole/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/keyhole/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/keyhole/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/keyhole/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/keyhole/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/keyhole/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/keyhole/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/keyhole/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/keyhole/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/keyhole/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/keyhole/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/keyhole/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/keyhole/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/keyhole/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/keyhole/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/keyhole/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/keyhole/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/keyhole/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/keyhole/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/keyhole/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/keyhole/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/keyhole/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/keyhole/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/keyhole/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/keyhole/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/keyhole/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/keyhole/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/keyhole/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/keyhole/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/keyhole/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/keyhole/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/keyhole/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/keyhole/deployments", + "created_at": "2011-07-20T23:12:22Z", + "updated_at": "2015-09-10T20:48:12Z", + "pushed_at": "2016-03-02T05:08:05Z", + "git_url": "git://github.com/jenkinsci/keyhole.git", + "ssh_url": "git@github.com:jenkinsci/keyhole.git", + "clone_url": "https://github.com/jenkinsci/keyhole.git", + "svn_url": "https://github.com/jenkinsci/keyhole", + "homepage": "", + "size": 17, + "stargazers_count": 5, + "watchers_count": 5, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": true, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 5, + "open_issues": 0, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2081620, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDgxNjIw", + "name": "job-import-plugin", + "full_name": "jenkinsci/job-import-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/job-import-plugin", + "description": "Job Import Plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/job-import-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/job-import-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/job-import-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/job-import-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/job-import-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/job-import-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/job-import-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/job-import-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/job-import-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/job-import-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/job-import-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/job-import-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/job-import-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/job-import-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/job-import-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/job-import-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/job-import-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/job-import-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/job-import-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/job-import-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/job-import-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/job-import-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/job-import-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/job-import-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/job-import-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/job-import-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/job-import-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/job-import-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/job-import-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/job-import-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/job-import-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/job-import-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/job-import-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/job-import-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/job-import-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/job-import-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/job-import-plugin/deployments", + "created_at": "2011-07-21T03:25:49Z", + "updated_at": "2019-10-16T19:22:30Z", + "pushed_at": "2019-09-24T10:11:15Z", + "git_url": "git://github.com/jenkinsci/job-import-plugin.git", + "ssh_url": "git@github.com:jenkinsci/job-import-plugin.git", + "clone_url": "https://github.com/jenkinsci/job-import-plugin.git", + "svn_url": "https://github.com/jenkinsci/job-import-plugin", + "homepage": "", + "size": 132, + "stargazers_count": 17, + "watchers_count": 17, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": true, + "forks_count": 34, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 6, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 34, + "open_issues": 6, + "watchers": 17, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2081684, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDgxNjg0", + "name": "jenkins-cloudformation-plugin", + "full_name": "jenkinsci/jenkins-cloudformation-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jenkins-cloudformation-plugin", + "description": "A Jenkins build wrapper to spawn cloud formation stacks in amazon before running a build and delete them at the end.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jenkins-cloudformation-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/jenkins-cloudformation-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jenkins-cloudformation-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jenkins-cloudformation-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jenkins-cloudformation-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jenkins-cloudformation-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jenkins-cloudformation-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jenkins-cloudformation-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jenkins-cloudformation-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jenkins-cloudformation-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jenkins-cloudformation-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jenkins-cloudformation-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jenkins-cloudformation-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jenkins-cloudformation-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jenkins-cloudformation-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jenkins-cloudformation-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jenkins-cloudformation-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jenkins-cloudformation-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jenkins-cloudformation-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jenkins-cloudformation-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jenkins-cloudformation-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jenkins-cloudformation-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jenkins-cloudformation-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jenkins-cloudformation-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jenkins-cloudformation-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jenkins-cloudformation-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jenkins-cloudformation-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jenkins-cloudformation-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jenkins-cloudformation-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jenkins-cloudformation-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jenkins-cloudformation-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jenkins-cloudformation-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jenkins-cloudformation-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jenkins-cloudformation-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jenkins-cloudformation-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jenkins-cloudformation-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jenkins-cloudformation-plugin/deployments", + "created_at": "2011-07-21T03:51:42Z", + "updated_at": "2019-04-04T11:08:40Z", + "pushed_at": "2019-10-08T11:49:57Z", + "git_url": "git://github.com/jenkinsci/jenkins-cloudformation-plugin.git", + "ssh_url": "git@github.com:jenkinsci/jenkins-cloudformation-plugin.git", + "clone_url": "https://github.com/jenkinsci/jenkins-cloudformation-plugin.git", + "svn_url": "https://github.com/jenkinsci/jenkins-cloudformation-plugin", + "homepage": "", + "size": 223, + "stargazers_count": 32, + "watchers_count": 32, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 72, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 18, + "license": null, + "forks": 72, + "open_issues": 18, + "watchers": 32, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2104085, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTA0MDg1", + "name": "pegdown-formatter-plugin", + "full_name": "jenkinsci/pegdown-formatter-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pegdown-formatter-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/pegdown-formatter-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pegdown-formatter-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pegdown-formatter-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pegdown-formatter-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pegdown-formatter-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pegdown-formatter-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pegdown-formatter-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pegdown-formatter-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pegdown-formatter-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pegdown-formatter-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pegdown-formatter-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pegdown-formatter-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pegdown-formatter-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pegdown-formatter-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pegdown-formatter-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pegdown-formatter-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pegdown-formatter-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pegdown-formatter-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pegdown-formatter-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pegdown-formatter-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pegdown-formatter-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pegdown-formatter-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pegdown-formatter-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pegdown-formatter-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pegdown-formatter-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pegdown-formatter-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pegdown-formatter-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pegdown-formatter-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pegdown-formatter-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pegdown-formatter-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pegdown-formatter-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pegdown-formatter-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pegdown-formatter-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pegdown-formatter-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pegdown-formatter-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pegdown-formatter-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pegdown-formatter-plugin/deployments", + "created_at": "2011-07-25T23:27:48Z", + "updated_at": "2013-11-10T02:12:57Z", + "pushed_at": "2019-10-08T11:22:10Z", + "git_url": "git://github.com/jenkinsci/pegdown-formatter-plugin.git", + "ssh_url": "git@github.com:jenkinsci/pegdown-formatter-plugin.git", + "clone_url": "https://github.com/jenkinsci/pegdown-formatter-plugin.git", + "svn_url": "https://github.com/jenkinsci/pegdown-formatter-plugin", + "homepage": "", + "size": 532, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 2, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2120249, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTIwMjQ5", + "name": "smart-jenkins-plugin", + "full_name": "jenkinsci/smart-jenkins-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/smart-jenkins-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/smart-jenkins-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/smart-jenkins-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/smart-jenkins-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/smart-jenkins-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/smart-jenkins-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/smart-jenkins-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/smart-jenkins-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/smart-jenkins-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/smart-jenkins-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/smart-jenkins-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/smart-jenkins-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/smart-jenkins-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/smart-jenkins-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/smart-jenkins-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/smart-jenkins-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/smart-jenkins-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/smart-jenkins-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/smart-jenkins-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/smart-jenkins-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/smart-jenkins-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/smart-jenkins-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/smart-jenkins-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/smart-jenkins-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/smart-jenkins-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/smart-jenkins-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/smart-jenkins-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/smart-jenkins-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/smart-jenkins-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/smart-jenkins-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/smart-jenkins-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/smart-jenkins-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/smart-jenkins-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/smart-jenkins-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/smart-jenkins-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/smart-jenkins-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/smart-jenkins-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/smart-jenkins-plugin/deployments", + "created_at": "2011-07-28T19:29:29Z", + "updated_at": "2013-11-10T02:18:14Z", + "pushed_at": "2013-11-10T02:18:10Z", + "git_url": "git://github.com/jenkinsci/smart-jenkins-plugin.git", + "ssh_url": "git@github.com:jenkinsci/smart-jenkins-plugin.git", + "clone_url": "https://github.com/jenkinsci/smart-jenkins-plugin.git", + "svn_url": "https://github.com/jenkinsci/smart-jenkins-plugin", + "homepage": "", + "size": 244, + "stargazers_count": 1, + "watchers_count": 1, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2122372, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTIyMzcy", + "name": "simple-theme-plugin", + "full_name": "jenkinsci/simple-theme-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/simple-theme-plugin", + "description": "A simple theme plugin for Jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/simple-theme-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/simple-theme-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/simple-theme-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/simple-theme-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/simple-theme-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/simple-theme-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/simple-theme-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/simple-theme-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/simple-theme-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/simple-theme-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/simple-theme-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/simple-theme-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/simple-theme-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/simple-theme-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/simple-theme-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/simple-theme-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/simple-theme-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/simple-theme-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/simple-theme-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/simple-theme-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/simple-theme-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/simple-theme-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/simple-theme-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/simple-theme-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/simple-theme-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/simple-theme-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/simple-theme-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/simple-theme-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/simple-theme-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/simple-theme-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/simple-theme-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/simple-theme-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/simple-theme-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/simple-theme-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/simple-theme-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/simple-theme-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/simple-theme-plugin/deployments", + "created_at": "2011-07-29T05:26:44Z", + "updated_at": "2019-10-02T10:20:59Z", + "pushed_at": "2019-09-26T22:23:23Z", + "git_url": "git://github.com/jenkinsci/simple-theme-plugin.git", + "ssh_url": "git@github.com:jenkinsci/simple-theme-plugin.git", + "clone_url": "https://github.com/jenkinsci/simple-theme-plugin.git", + "svn_url": "https://github.com/jenkinsci/simple-theme-plugin", + "homepage": "https://plugins.jenkins.io/simple-theme-plugin", + "size": 111, + "stargazers_count": 31, + "watchers_count": 31, + "language": "Java", + "has_issues": false, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 20, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 20, + "open_issues": 1, + "watchers": 31, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2126099, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTI2MDk5", + "name": "dry-run-plugin", + "full_name": "jenkinsci/dry-run-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/dry-run-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/dry-run-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/dry-run-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/dry-run-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/dry-run-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/dry-run-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/dry-run-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/dry-run-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/dry-run-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/dry-run-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/dry-run-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/dry-run-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/dry-run-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/dry-run-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/dry-run-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/dry-run-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/dry-run-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/dry-run-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/dry-run-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/dry-run-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/dry-run-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/dry-run-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/dry-run-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/dry-run-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/dry-run-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/dry-run-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/dry-run-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/dry-run-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/dry-run-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/dry-run-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/dry-run-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/dry-run-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/dry-run-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/dry-run-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/dry-run-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/dry-run-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/dry-run-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/dry-run-plugin/deployments", + "created_at": "2011-07-29T20:56:13Z", + "updated_at": "2013-11-10T02:00:52Z", + "pushed_at": "2013-11-10T02:00:51Z", + "git_url": "git://github.com/jenkinsci/dry-run-plugin.git", + "ssh_url": "git@github.com:jenkinsci/dry-run-plugin.git", + "clone_url": "https://github.com/jenkinsci/dry-run-plugin.git", + "svn_url": "https://github.com/jenkinsci/dry-run-plugin", + "homepage": "", + "size": 169, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2145533, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTQ1NTMz", + "name": "xtrigger-plugin", + "full_name": "jenkinsci/xtrigger-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/xtrigger-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/xtrigger-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/xtrigger-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/xtrigger-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/xtrigger-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/xtrigger-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/xtrigger-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/xtrigger-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/xtrigger-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/xtrigger-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/xtrigger-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/xtrigger-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/xtrigger-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/xtrigger-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/xtrigger-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/xtrigger-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/xtrigger-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/xtrigger-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/xtrigger-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/xtrigger-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/xtrigger-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/xtrigger-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/xtrigger-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/xtrigger-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/xtrigger-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/xtrigger-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/xtrigger-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/xtrigger-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/xtrigger-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/xtrigger-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/xtrigger-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/xtrigger-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/xtrigger-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/xtrigger-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/xtrigger-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/xtrigger-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/xtrigger-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/xtrigger-plugin/deployments", + "created_at": "2011-08-02T22:38:40Z", + "updated_at": "2014-01-13T18:14:08Z", + "pushed_at": "2013-11-10T02:23:20Z", + "git_url": "git://github.com/jenkinsci/xtrigger-plugin.git", + "ssh_url": "git@github.com:jenkinsci/xtrigger-plugin.git", + "clone_url": "https://github.com/jenkinsci/xtrigger-plugin.git", + "svn_url": "https://github.com/jenkinsci/xtrigger-plugin", + "homepage": "", + "size": 475, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2150332, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTUwMzMy", + "name": "config-file-provider-plugin", + "full_name": "jenkinsci/config-file-provider-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/config-file-provider-plugin", + "description": "Jenkins plugin to administrate the maven settings (settings.xml).", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/config-file-provider-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/config-file-provider-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/config-file-provider-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/config-file-provider-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/config-file-provider-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/config-file-provider-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/config-file-provider-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/config-file-provider-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/config-file-provider-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/config-file-provider-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/config-file-provider-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/config-file-provider-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/config-file-provider-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/config-file-provider-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/config-file-provider-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/config-file-provider-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/config-file-provider-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/config-file-provider-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/config-file-provider-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/config-file-provider-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/config-file-provider-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/config-file-provider-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/config-file-provider-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/config-file-provider-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/config-file-provider-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/config-file-provider-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/config-file-provider-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/config-file-provider-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/config-file-provider-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/config-file-provider-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/config-file-provider-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/config-file-provider-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/config-file-provider-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/config-file-provider-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/config-file-provider-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/config-file-provider-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/config-file-provider-plugin/deployments", + "created_at": "2011-08-03T19:02:20Z", + "updated_at": "2019-09-04T06:24:30Z", + "pushed_at": "2019-09-20T20:56:23Z", + "git_url": "git://github.com/jenkinsci/config-file-provider-plugin.git", + "ssh_url": "git@github.com:jenkinsci/config-file-provider-plugin.git", + "clone_url": "https://github.com/jenkinsci/config-file-provider-plugin.git", + "svn_url": "https://github.com/jenkinsci/config-file-provider-plugin", + "homepage": "", + "size": 821, + "stargazers_count": 23, + "watchers_count": 23, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 66, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 5, + "license": null, + "forks": 66, + "open_issues": 5, + "watchers": 23, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2161131, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTYxMTMx", + "name": "ruby-runtime-plugin", + "full_name": "jenkinsci/ruby-runtime-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/ruby-runtime-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/ruby-runtime-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/ruby-runtime-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/ruby-runtime-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/ruby-runtime-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/ruby-runtime-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/ruby-runtime-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/ruby-runtime-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/ruby-runtime-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/ruby-runtime-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/ruby-runtime-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/ruby-runtime-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/ruby-runtime-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/ruby-runtime-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/ruby-runtime-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/ruby-runtime-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/ruby-runtime-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/ruby-runtime-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/ruby-runtime-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/ruby-runtime-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/ruby-runtime-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/ruby-runtime-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/ruby-runtime-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/ruby-runtime-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/ruby-runtime-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/ruby-runtime-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/ruby-runtime-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/ruby-runtime-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/ruby-runtime-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/ruby-runtime-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/ruby-runtime-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/ruby-runtime-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/ruby-runtime-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/ruby-runtime-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/ruby-runtime-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/ruby-runtime-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/ruby-runtime-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/ruby-runtime-plugin/deployments", + "created_at": "2011-08-05T15:49:18Z", + "updated_at": "2018-04-26T07:03:06Z", + "pushed_at": "2018-04-06T09:21:30Z", + "git_url": "git://github.com/jenkinsci/ruby-runtime-plugin.git", + "ssh_url": "git@github.com:jenkinsci/ruby-runtime-plugin.git", + "clone_url": "https://github.com/jenkinsci/ruby-runtime-plugin.git", + "svn_url": "https://github.com/jenkinsci/ruby-runtime-plugin", + "homepage": "", + "size": 7409, + "stargazers_count": 12, + "watchers_count": 12, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 8, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 8, + "open_issues": 1, + "watchers": 12, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2161961, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTYxOTYx", + "name": "project-description-setter-plugin", + "full_name": "jenkinsci/project-description-setter-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/project-description-setter-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/project-description-setter-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/project-description-setter-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/project-description-setter-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/project-description-setter-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/project-description-setter-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/project-description-setter-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/project-description-setter-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/project-description-setter-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/project-description-setter-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/project-description-setter-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/project-description-setter-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/project-description-setter-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/project-description-setter-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/project-description-setter-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/project-description-setter-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/project-description-setter-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/project-description-setter-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/project-description-setter-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/project-description-setter-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/project-description-setter-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/project-description-setter-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/project-description-setter-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/project-description-setter-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/project-description-setter-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/project-description-setter-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/project-description-setter-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/project-description-setter-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/project-description-setter-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/project-description-setter-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/project-description-setter-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/project-description-setter-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/project-description-setter-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/project-description-setter-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/project-description-setter-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/project-description-setter-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/project-description-setter-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/project-description-setter-plugin/deployments", + "created_at": "2011-08-05T18:41:53Z", + "updated_at": "2018-01-12T18:03:38Z", + "pushed_at": "2018-01-18T13:34:25Z", + "git_url": "git://github.com/jenkinsci/project-description-setter-plugin.git", + "ssh_url": "git@github.com:jenkinsci/project-description-setter-plugin.git", + "clone_url": "https://github.com/jenkinsci/project-description-setter-plugin.git", + "svn_url": "https://github.com/jenkinsci/project-description-setter-plugin", + "homepage": "", + "size": 23, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 4, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2162393, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTYyMzkz", + "name": "repo-plugin", + "full_name": "jenkinsci/repo-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/repo-plugin", + "description": "A Jenkins pluging providing repo as an SCM", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/repo-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/repo-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/repo-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/repo-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/repo-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/repo-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/repo-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/repo-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/repo-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/repo-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/repo-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/repo-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/repo-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/repo-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/repo-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/repo-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/repo-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/repo-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/repo-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/repo-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/repo-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/repo-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/repo-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/repo-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/repo-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/repo-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/repo-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/repo-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/repo-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/repo-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/repo-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/repo-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/repo-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/repo-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/repo-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/repo-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/repo-plugin/deployments", + "created_at": "2011-08-05T20:16:25Z", + "updated_at": "2019-10-23T12:54:10Z", + "pushed_at": "2019-10-24T19:36:33Z", + "git_url": "git://github.com/jenkinsci/repo-plugin.git", + "ssh_url": "git@github.com:jenkinsci/repo-plugin.git", + "clone_url": "https://github.com/jenkinsci/repo-plugin.git", + "svn_url": "https://github.com/jenkinsci/repo-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 173, + "stargazers_count": 37, + "watchers_count": 37, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 64, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 5, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 64, + "open_issues": 5, + "watchers": 37, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2163944, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTYzOTQ0", + "name": "emotional-jenkins-plugin", + "full_name": "jenkinsci/emotional-jenkins-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/emotional-jenkins-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/emotional-jenkins-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/emotional-jenkins-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/emotional-jenkins-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/emotional-jenkins-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/emotional-jenkins-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/emotional-jenkins-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/emotional-jenkins-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/emotional-jenkins-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/emotional-jenkins-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/emotional-jenkins-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/emotional-jenkins-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/emotional-jenkins-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/emotional-jenkins-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/emotional-jenkins-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/emotional-jenkins-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/emotional-jenkins-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/emotional-jenkins-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/emotional-jenkins-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/emotional-jenkins-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/emotional-jenkins-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/emotional-jenkins-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/emotional-jenkins-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/emotional-jenkins-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/emotional-jenkins-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/emotional-jenkins-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/emotional-jenkins-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/emotional-jenkins-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/emotional-jenkins-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/emotional-jenkins-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/emotional-jenkins-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/emotional-jenkins-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/emotional-jenkins-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/emotional-jenkins-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/emotional-jenkins-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/emotional-jenkins-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/emotional-jenkins-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/emotional-jenkins-plugin/deployments", + "created_at": "2011-08-06T05:33:14Z", + "updated_at": "2019-07-08T15:00:13Z", + "pushed_at": "2019-10-08T11:26:48Z", + "git_url": "git://github.com/jenkinsci/emotional-jenkins-plugin.git", + "ssh_url": "git@github.com:jenkinsci/emotional-jenkins-plugin.git", + "clone_url": "https://github.com/jenkinsci/emotional-jenkins-plugin.git", + "svn_url": "https://github.com/jenkinsci/emotional-jenkins-plugin", + "homepage": "", + "size": 238, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 6, + "open_issues": 2, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2166061, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTY2MDYx", + "name": "config-provider-model", + "full_name": "jenkinsci/config-provider-model", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/config-provider-model", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/config-provider-model", + "forks_url": "https://api.github.com/repos/jenkinsci/config-provider-model/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/config-provider-model/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/config-provider-model/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/config-provider-model/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/config-provider-model/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/config-provider-model/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/config-provider-model/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/config-provider-model/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/config-provider-model/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/config-provider-model/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/config-provider-model/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/config-provider-model/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/config-provider-model/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/config-provider-model/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/config-provider-model/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/config-provider-model/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/config-provider-model/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/config-provider-model/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/config-provider-model/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/config-provider-model/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/config-provider-model/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/config-provider-model/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/config-provider-model/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/config-provider-model/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/config-provider-model/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/config-provider-model/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/config-provider-model/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/config-provider-model/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/config-provider-model/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/config-provider-model/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/config-provider-model/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/config-provider-model/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/config-provider-model/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/config-provider-model/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/config-provider-model/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/config-provider-model/deployments", + "created_at": "2011-08-06T19:01:09Z", + "updated_at": "2019-08-13T14:48:33Z", + "pushed_at": "2017-11-27T20:10:38Z", + "git_url": "git://github.com/jenkinsci/config-provider-model.git", + "ssh_url": "git@github.com:jenkinsci/config-provider-model.git", + "clone_url": "https://github.com/jenkinsci/config-provider-model.git", + "svn_url": "https://github.com/jenkinsci/config-provider-model", + "homepage": "", + "size": 41, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2170455, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTcwNDU1", + "name": "virtualbox4-plugin", + "full_name": "jenkinsci/virtualbox4-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/virtualbox4-plugin", + "description": "Jenkins Virtualbox4 plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/virtualbox4-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/virtualbox4-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/virtualbox4-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/virtualbox4-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/virtualbox4-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/virtualbox4-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/virtualbox4-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/virtualbox4-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/virtualbox4-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/virtualbox4-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/virtualbox4-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/virtualbox4-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/virtualbox4-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/virtualbox4-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/virtualbox4-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/virtualbox4-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/virtualbox4-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/virtualbox4-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/virtualbox4-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/virtualbox4-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/virtualbox4-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/virtualbox4-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/virtualbox4-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/virtualbox4-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/virtualbox4-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/virtualbox4-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/virtualbox4-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/virtualbox4-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/virtualbox4-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/virtualbox4-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/virtualbox4-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/virtualbox4-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/virtualbox4-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/virtualbox4-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/virtualbox4-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/virtualbox4-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/virtualbox4-plugin/deployments", + "created_at": "2011-08-07T21:51:38Z", + "updated_at": "2015-02-19T11:49:52Z", + "pushed_at": "2012-01-20T22:22:57Z", + "git_url": "git://github.com/jenkinsci/virtualbox4-plugin.git", + "ssh_url": "git@github.com:jenkinsci/virtualbox4-plugin.git", + "clone_url": "https://github.com/jenkinsci/virtualbox4-plugin.git", + "svn_url": "https://github.com/jenkinsci/virtualbox4-plugin", + "homepage": "http://wiki.jenkins-ci.org/display/JENKINS/VirtualBox+Plugin", + "size": 2667, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2170647, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTcwNjQ3", + "name": "avatar-plugin", + "full_name": "jenkinsci/avatar-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/avatar-plugin", + "description": "Jenkins avatar plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/avatar-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/avatar-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/avatar-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/avatar-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/avatar-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/avatar-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/avatar-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/avatar-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/avatar-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/avatar-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/avatar-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/avatar-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/avatar-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/avatar-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/avatar-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/avatar-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/avatar-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/avatar-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/avatar-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/avatar-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/avatar-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/avatar-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/avatar-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/avatar-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/avatar-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/avatar-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/avatar-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/avatar-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/avatar-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/avatar-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/avatar-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/avatar-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/avatar-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/avatar-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/avatar-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/avatar-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/avatar-plugin/deployments", + "created_at": "2011-08-07T23:03:32Z", + "updated_at": "2015-11-22T20:14:46Z", + "pushed_at": "2019-10-08T12:07:15Z", + "git_url": "git://github.com/jenkinsci/avatar-plugin.git", + "ssh_url": "git@github.com:jenkinsci/avatar-plugin.git", + "clone_url": "https://github.com/jenkinsci/avatar-plugin.git", + "svn_url": "https://github.com/jenkinsci/avatar-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Avatar+Plugin", + "size": 124, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 1, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2170706, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTcwNzA2", + "name": "buildresult-trigger-plugin", + "full_name": "jenkinsci/buildresult-trigger-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/buildresult-trigger-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/buildresult-trigger-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/buildresult-trigger-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/buildresult-trigger-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/buildresult-trigger-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/buildresult-trigger-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/buildresult-trigger-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/buildresult-trigger-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/buildresult-trigger-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/buildresult-trigger-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/buildresult-trigger-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/buildresult-trigger-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/buildresult-trigger-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/buildresult-trigger-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/buildresult-trigger-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/buildresult-trigger-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/buildresult-trigger-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/buildresult-trigger-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/buildresult-trigger-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/buildresult-trigger-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/buildresult-trigger-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/buildresult-trigger-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/buildresult-trigger-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/buildresult-trigger-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/buildresult-trigger-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/buildresult-trigger-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/buildresult-trigger-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/buildresult-trigger-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/buildresult-trigger-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/buildresult-trigger-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/buildresult-trigger-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/buildresult-trigger-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/buildresult-trigger-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/buildresult-trigger-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/buildresult-trigger-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/buildresult-trigger-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/buildresult-trigger-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/buildresult-trigger-plugin/deployments", + "created_at": "2011-08-07T23:22:12Z", + "updated_at": "2018-07-19T09:57:02Z", + "pushed_at": "2019-10-08T10:08:43Z", + "git_url": "git://github.com/jenkinsci/buildresult-trigger-plugin.git", + "ssh_url": "git@github.com:jenkinsci/buildresult-trigger-plugin.git", + "clone_url": "https://github.com/jenkinsci/buildresult-trigger-plugin.git", + "svn_url": "https://github.com/jenkinsci/buildresult-trigger-plugin", + "homepage": "", + "size": 74, + "stargazers_count": 10, + "watchers_count": 10, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 16, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 16, + "open_issues": 1, + "watchers": 10, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2176299, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTc2Mjk5", + "name": "progress-bar-column-plugin", + "full_name": "jenkinsci/progress-bar-column-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/progress-bar-column-plugin", + "description": "Progress Bar Column Plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/progress-bar-column-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/progress-bar-column-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/progress-bar-column-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/progress-bar-column-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/progress-bar-column-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/progress-bar-column-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/progress-bar-column-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/progress-bar-column-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/progress-bar-column-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/progress-bar-column-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/progress-bar-column-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/progress-bar-column-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/progress-bar-column-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/progress-bar-column-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/progress-bar-column-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/progress-bar-column-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/progress-bar-column-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/progress-bar-column-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/progress-bar-column-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/progress-bar-column-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/progress-bar-column-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/progress-bar-column-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/progress-bar-column-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/progress-bar-column-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/progress-bar-column-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/progress-bar-column-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/progress-bar-column-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/progress-bar-column-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/progress-bar-column-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/progress-bar-column-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/progress-bar-column-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/progress-bar-column-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/progress-bar-column-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/progress-bar-column-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/progress-bar-column-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/progress-bar-column-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/progress-bar-column-plugin/deployments", + "created_at": "2011-08-08T22:34:33Z", + "updated_at": "2018-07-19T07:00:58Z", + "pushed_at": "2019-10-08T11:30:46Z", + "git_url": "git://github.com/jenkinsci/progress-bar-column-plugin.git", + "ssh_url": "git@github.com:jenkinsci/progress-bar-column-plugin.git", + "clone_url": "https://github.com/jenkinsci/progress-bar-column-plugin.git", + "svn_url": "https://github.com/jenkinsci/progress-bar-column-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Progress+Bar+Column+Plugin", + "size": 14, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": true, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 4, + "open_issues": 1, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2197554, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTk3NTU0", + "name": "description-column-plugin", + "full_name": "jenkinsci/description-column-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/description-column-plugin", + "description": "Jenkins Description Column Plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/description-column-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/description-column-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/description-column-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/description-column-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/description-column-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/description-column-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/description-column-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/description-column-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/description-column-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/description-column-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/description-column-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/description-column-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/description-column-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/description-column-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/description-column-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/description-column-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/description-column-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/description-column-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/description-column-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/description-column-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/description-column-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/description-column-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/description-column-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/description-column-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/description-column-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/description-column-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/description-column-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/description-column-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/description-column-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/description-column-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/description-column-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/description-column-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/description-column-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/description-column-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/description-column-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/description-column-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/description-column-plugin/deployments", + "created_at": "2011-08-12T15:00:28Z", + "updated_at": "2018-07-19T09:53:59Z", + "pushed_at": "2019-10-08T11:44:43Z", + "git_url": "git://github.com/jenkinsci/description-column-plugin.git", + "ssh_url": "git@github.com:jenkinsci/description-column-plugin.git", + "clone_url": "https://github.com/jenkinsci/description-column-plugin.git", + "svn_url": "https://github.com/jenkinsci/description-column-plugin", + "homepage": "", + "size": 30, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 2, + "open_issues": 1, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2226972, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjI2OTcy", + "name": "pre-scm-buildstep-plugin", + "full_name": "jenkinsci/pre-scm-buildstep-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pre-scm-buildstep-plugin", + "description": "Jenkins plugin to allow build steps to run before SCM checkout", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/pre-scm-buildstep-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pre-scm-buildstep-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pre-scm-buildstep-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pre-scm-buildstep-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pre-scm-buildstep-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pre-scm-buildstep-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pre-scm-buildstep-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pre-scm-buildstep-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pre-scm-buildstep-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pre-scm-buildstep-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pre-scm-buildstep-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pre-scm-buildstep-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pre-scm-buildstep-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pre-scm-buildstep-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pre-scm-buildstep-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pre-scm-buildstep-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pre-scm-buildstep-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pre-scm-buildstep-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pre-scm-buildstep-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pre-scm-buildstep-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pre-scm-buildstep-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pre-scm-buildstep-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pre-scm-buildstep-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pre-scm-buildstep-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pre-scm-buildstep-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pre-scm-buildstep-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pre-scm-buildstep-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pre-scm-buildstep-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pre-scm-buildstep-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pre-scm-buildstep-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pre-scm-buildstep-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pre-scm-buildstep-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pre-scm-buildstep-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pre-scm-buildstep-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pre-scm-buildstep-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pre-scm-buildstep-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pre-scm-buildstep-plugin/deployments", + "created_at": "2011-08-18T09:12:00Z", + "updated_at": "2019-07-22T19:15:26Z", + "pushed_at": "2019-09-24T10:36:03Z", + "git_url": "git://github.com/jenkinsci/pre-scm-buildstep-plugin.git", + "ssh_url": "git@github.com:jenkinsci/pre-scm-buildstep-plugin.git", + "clone_url": "https://github.com/jenkinsci/pre-scm-buildstep-plugin.git", + "svn_url": "https://github.com/jenkinsci/pre-scm-buildstep-plugin", + "homepage": "", + "size": 16, + "stargazers_count": 6, + "watchers_count": 6, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 6, + "open_issues": 2, + "watchers": 6, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2247253, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjQ3MjUz", + "name": "all-changes-plugin", + "full_name": "jenkinsci/all-changes-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/all-changes-plugin", + "description": "Jenkins Plugin to show all changes", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/all-changes-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/all-changes-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/all-changes-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/all-changes-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/all-changes-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/all-changes-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/all-changes-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/all-changes-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/all-changes-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/all-changes-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/all-changes-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/all-changes-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/all-changes-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/all-changes-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/all-changes-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/all-changes-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/all-changes-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/all-changes-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/all-changes-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/all-changes-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/all-changes-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/all-changes-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/all-changes-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/all-changes-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/all-changes-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/all-changes-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/all-changes-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/all-changes-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/all-changes-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/all-changes-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/all-changes-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/all-changes-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/all-changes-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/all-changes-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/all-changes-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/all-changes-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/all-changes-plugin/deployments", + "created_at": "2011-08-22T07:44:36Z", + "updated_at": "2017-05-18T22:35:03Z", + "pushed_at": "2019-10-08T10:11:34Z", + "git_url": "git://github.com/jenkinsci/all-changes-plugin.git", + "ssh_url": "git@github.com:jenkinsci/all-changes-plugin.git", + "clone_url": "https://github.com/jenkinsci/all-changes-plugin.git", + "svn_url": "https://github.com/jenkinsci/all-changes-plugin", + "homepage": "", + "size": 50, + "stargazers_count": 6, + "watchers_count": 6, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 11, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 11, + "open_issues": 2, + "watchers": 6, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2251389, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjUxMzg5", + "name": "postbuildscript-plugin", + "full_name": "jenkinsci/postbuildscript-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/postbuildscript-plugin", + "description": "The PostBuildScript Jenkins plugin makes it possible to execute a set of scripts at the end of the build.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/postbuildscript-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/postbuildscript-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/postbuildscript-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/postbuildscript-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/postbuildscript-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/postbuildscript-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/postbuildscript-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/postbuildscript-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/postbuildscript-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/postbuildscript-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/postbuildscript-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/postbuildscript-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/postbuildscript-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/postbuildscript-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/postbuildscript-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/postbuildscript-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/postbuildscript-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/postbuildscript-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/postbuildscript-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/postbuildscript-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/postbuildscript-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/postbuildscript-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/postbuildscript-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/postbuildscript-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/postbuildscript-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/postbuildscript-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/postbuildscript-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/postbuildscript-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/postbuildscript-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/postbuildscript-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/postbuildscript-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/postbuildscript-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/postbuildscript-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/postbuildscript-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/postbuildscript-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/postbuildscript-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/postbuildscript-plugin/deployments", + "created_at": "2011-08-22T21:15:49Z", + "updated_at": "2019-09-24T15:52:57Z", + "pushed_at": "2019-09-24T15:52:55Z", + "git_url": "git://github.com/jenkinsci/postbuildscript-plugin.git", + "ssh_url": "git@github.com:jenkinsci/postbuildscript-plugin.git", + "clone_url": "https://github.com/jenkinsci/postbuildscript-plugin.git", + "svn_url": "https://github.com/jenkinsci/postbuildscript-plugin", + "homepage": "https://plugins.jenkins.io/postbuildscript", + "size": 286, + "stargazers_count": 35, + "watchers_count": 35, + "language": "Java", + "has_issues": false, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 32, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 32, + "open_issues": 0, + "watchers": 35, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2265976, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjY1OTc2", + "name": "purge-build-queue-plugin", + "full_name": "jenkinsci/purge-build-queue-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/purge-build-queue-plugin", + "description": "Purge Build Queue Plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/purge-build-queue-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/purge-build-queue-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/purge-build-queue-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/purge-build-queue-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/purge-build-queue-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/purge-build-queue-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/purge-build-queue-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/purge-build-queue-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/purge-build-queue-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/purge-build-queue-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/purge-build-queue-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/purge-build-queue-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/purge-build-queue-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/purge-build-queue-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/purge-build-queue-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/purge-build-queue-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/purge-build-queue-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/purge-build-queue-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/purge-build-queue-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/purge-build-queue-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/purge-build-queue-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/purge-build-queue-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/purge-build-queue-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/purge-build-queue-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/purge-build-queue-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/purge-build-queue-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/purge-build-queue-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/purge-build-queue-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/purge-build-queue-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/purge-build-queue-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/purge-build-queue-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/purge-build-queue-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/purge-build-queue-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/purge-build-queue-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/purge-build-queue-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/purge-build-queue-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/purge-build-queue-plugin/deployments", + "created_at": "2011-08-25T04:26:05Z", + "updated_at": "2019-01-18T01:05:47Z", + "pushed_at": "2019-10-08T10:06:47Z", + "git_url": "git://github.com/jenkinsci/purge-build-queue-plugin.git", + "ssh_url": "git@github.com:jenkinsci/purge-build-queue-plugin.git", + "clone_url": "https://github.com/jenkinsci/purge-build-queue-plugin.git", + "svn_url": "https://github.com/jenkinsci/purge-build-queue-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Purge+Build+Queue+Plugin", + "size": 108, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 6, + "open_issues": 1, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2276148, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjc2MTQ4", + "name": "testflight-plugin", + "full_name": "jenkinsci/testflight-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/testflight-plugin", + "description": "Testflight uploader for Jenkins", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/testflight-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/testflight-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/testflight-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/testflight-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/testflight-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/testflight-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/testflight-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/testflight-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/testflight-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/testflight-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/testflight-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/testflight-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/testflight-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/testflight-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/testflight-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/testflight-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/testflight-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/testflight-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/testflight-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/testflight-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/testflight-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/testflight-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/testflight-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/testflight-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/testflight-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/testflight-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/testflight-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/testflight-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/testflight-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/testflight-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/testflight-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/testflight-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/testflight-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/testflight-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/testflight-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/testflight-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/testflight-plugin/deployments", + "created_at": "2011-08-26T19:31:03Z", + "updated_at": "2019-07-11T14:40:15Z", + "pushed_at": "2013-11-10T02:20:31Z", + "git_url": "git://github.com/jenkinsci/testflight-plugin.git", + "ssh_url": "git@github.com:jenkinsci/testflight-plugin.git", + "clone_url": "https://github.com/jenkinsci/testflight-plugin.git", + "svn_url": "https://github.com/jenkinsci/testflight-plugin", + "homepage": "", + "size": 390, + "stargazers_count": 37, + "watchers_count": 37, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 33, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 4, + "license": null, + "forks": 33, + "open_issues": 4, + "watchers": 37, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2291697, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjkxNjk3", + "name": "people-redirector-plugin", + "full_name": "jenkinsci/people-redirector-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/people-redirector-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/people-redirector-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/people-redirector-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/people-redirector-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/people-redirector-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/people-redirector-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/people-redirector-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/people-redirector-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/people-redirector-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/people-redirector-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/people-redirector-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/people-redirector-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/people-redirector-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/people-redirector-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/people-redirector-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/people-redirector-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/people-redirector-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/people-redirector-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/people-redirector-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/people-redirector-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/people-redirector-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/people-redirector-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/people-redirector-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/people-redirector-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/people-redirector-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/people-redirector-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/people-redirector-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/people-redirector-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/people-redirector-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/people-redirector-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/people-redirector-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/people-redirector-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/people-redirector-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/people-redirector-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/people-redirector-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/people-redirector-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/people-redirector-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/people-redirector-plugin/deployments", + "created_at": "2011-08-29T23:03:55Z", + "updated_at": "2013-11-10T02:12:59Z", + "pushed_at": "2013-11-10T02:12:55Z", + "git_url": "git://github.com/jenkinsci/people-redirector-plugin.git", + "ssh_url": "git@github.com:jenkinsci/people-redirector-plugin.git", + "clone_url": "https://github.com/jenkinsci/people-redirector-plugin.git", + "svn_url": "https://github.com/jenkinsci/people-redirector-plugin", + "homepage": "", + "size": 160, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2296745, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjk2NzQ1", + "name": "shell-script-scm-plugin", + "full_name": "jenkinsci/shell-script-scm-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/shell-script-scm-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/shell-script-scm-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/shell-script-scm-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/shell-script-scm-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/shell-script-scm-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/shell-script-scm-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/shell-script-scm-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/shell-script-scm-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/shell-script-scm-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/shell-script-scm-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/shell-script-scm-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/shell-script-scm-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/shell-script-scm-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/shell-script-scm-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/shell-script-scm-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/shell-script-scm-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/shell-script-scm-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/shell-script-scm-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/shell-script-scm-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/shell-script-scm-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/shell-script-scm-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/shell-script-scm-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/shell-script-scm-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/shell-script-scm-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/shell-script-scm-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/shell-script-scm-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/shell-script-scm-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/shell-script-scm-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/shell-script-scm-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/shell-script-scm-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/shell-script-scm-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/shell-script-scm-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/shell-script-scm-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/shell-script-scm-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/shell-script-scm-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/shell-script-scm-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/shell-script-scm-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/shell-script-scm-plugin/deployments", + "created_at": "2011-08-30T18:29:32Z", + "updated_at": "2018-01-10T10:19:29Z", + "pushed_at": "2013-11-10T02:17:26Z", + "git_url": "git://github.com/jenkinsci/shell-script-scm-plugin.git", + "ssh_url": "git@github.com:jenkinsci/shell-script-scm-plugin.git", + "clone_url": "https://github.com/jenkinsci/shell-script-scm-plugin.git", + "svn_url": "https://github.com/jenkinsci/shell-script-scm-plugin", + "homepage": "", + "size": 112, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2300946, + "node_id": "MDEwOlJlcG9zaXRvcnkyMzAwOTQ2", + "name": "shiningpanda-plugin", + "full_name": "jenkinsci/shiningpanda-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/shiningpanda-plugin", + "description": "ShiningPanda plugin for Jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/shiningpanda-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/shiningpanda-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/shiningpanda-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/shiningpanda-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/shiningpanda-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/shiningpanda-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/shiningpanda-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/shiningpanda-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/shiningpanda-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/shiningpanda-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/shiningpanda-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/shiningpanda-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/shiningpanda-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/shiningpanda-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/shiningpanda-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/shiningpanda-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/shiningpanda-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/shiningpanda-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/shiningpanda-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/shiningpanda-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/shiningpanda-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/shiningpanda-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/shiningpanda-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/shiningpanda-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/shiningpanda-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/shiningpanda-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/shiningpanda-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/shiningpanda-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/shiningpanda-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/shiningpanda-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/shiningpanda-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/shiningpanda-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/shiningpanda-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/shiningpanda-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/shiningpanda-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/shiningpanda-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/shiningpanda-plugin/deployments", + "created_at": "2011-08-31T10:36:23Z", + "updated_at": "2019-06-05T13:21:47Z", + "pushed_at": "2018-07-19T20:01:16Z", + "git_url": "git://github.com/jenkinsci/shiningpanda-plugin.git", + "ssh_url": "git@github.com:jenkinsci/shiningpanda-plugin.git", + "clone_url": "https://github.com/jenkinsci/shiningpanda-plugin.git", + "svn_url": "https://github.com/jenkinsci/shiningpanda-plugin", + "homepage": "http://www.shiningpanda.com", + "size": 8515, + "stargazers_count": 39, + "watchers_count": 39, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 28, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 28, + "open_issues": 3, + "watchers": 39, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2308368, + "node_id": "MDEwOlJlcG9zaXRvcnkyMzA4MzY4", + "name": "clearcase-ucm-plugin", + "full_name": "jenkinsci/clearcase-ucm-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/clearcase-ucm-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-plugin/deployments", + "created_at": "2011-09-01T15:21:00Z", + "updated_at": "2015-01-19T12:09:46Z", + "pushed_at": "2019-10-08T16:39:12Z", + "git_url": "git://github.com/jenkinsci/clearcase-ucm-plugin.git", + "ssh_url": "git@github.com:jenkinsci/clearcase-ucm-plugin.git", + "clone_url": "https://github.com/jenkinsci/clearcase-ucm-plugin.git", + "svn_url": "https://github.com/jenkinsci/clearcase-ucm-plugin", + "homepage": "", + "size": 40074, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 5, + "open_issues": 2, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2314797, + "node_id": "MDEwOlJlcG9zaXRvcnkyMzE0Nzk3", + "name": "ansicolor-plugin", + "full_name": "jenkinsci/ansicolor-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/ansicolor-plugin", + "description": "Jenkins ANSI Color Plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/ansicolor-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/ansicolor-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/ansicolor-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/ansicolor-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/ansicolor-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/ansicolor-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/ansicolor-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/ansicolor-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/ansicolor-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/ansicolor-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/ansicolor-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/ansicolor-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/ansicolor-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/ansicolor-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/ansicolor-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/ansicolor-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/ansicolor-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/ansicolor-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/ansicolor-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/ansicolor-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/ansicolor-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/ansicolor-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/ansicolor-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/ansicolor-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/ansicolor-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/ansicolor-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/ansicolor-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/ansicolor-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/ansicolor-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/ansicolor-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/ansicolor-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/ansicolor-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/ansicolor-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/ansicolor-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/ansicolor-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/ansicolor-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/ansicolor-plugin/deployments", + "created_at": "2011-09-02T15:49:24Z", + "updated_at": "2019-09-20T22:08:20Z", + "pushed_at": "2019-09-20T22:08:17Z", + "git_url": "git://github.com/jenkinsci/ansicolor-plugin.git", + "ssh_url": "git@github.com:jenkinsci/ansicolor-plugin.git", + "clone_url": "https://github.com/jenkinsci/ansicolor-plugin.git", + "svn_url": "https://github.com/jenkinsci/ansicolor-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/AnsiColor+Plugin", + "size": 400, + "stargazers_count": 208, + "watchers_count": 208, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 70, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 47, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 70, + "open_issues": 47, + "watchers": 208, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2343664, + "node_id": "MDEwOlJlcG9zaXRvcnkyMzQzNjY0", + "name": "skip-certificate-check-plugin", + "full_name": "jenkinsci/skip-certificate-check-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/skip-certificate-check-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/skip-certificate-check-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/skip-certificate-check-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/skip-certificate-check-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/skip-certificate-check-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/skip-certificate-check-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/skip-certificate-check-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/skip-certificate-check-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/skip-certificate-check-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/skip-certificate-check-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/skip-certificate-check-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/skip-certificate-check-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/skip-certificate-check-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/skip-certificate-check-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/skip-certificate-check-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/skip-certificate-check-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/skip-certificate-check-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/skip-certificate-check-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/skip-certificate-check-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/skip-certificate-check-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/skip-certificate-check-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/skip-certificate-check-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/skip-certificate-check-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/skip-certificate-check-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/skip-certificate-check-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/skip-certificate-check-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/skip-certificate-check-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/skip-certificate-check-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/skip-certificate-check-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/skip-certificate-check-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/skip-certificate-check-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/skip-certificate-check-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/skip-certificate-check-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/skip-certificate-check-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/skip-certificate-check-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/skip-certificate-check-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/skip-certificate-check-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/skip-certificate-check-plugin/deployments", + "created_at": "2011-09-07T18:42:25Z", + "updated_at": "2019-09-19T15:22:56Z", + "pushed_at": "2019-10-08T10:10:19Z", + "git_url": "git://github.com/jenkinsci/skip-certificate-check-plugin.git", + "ssh_url": "git@github.com:jenkinsci/skip-certificate-check-plugin.git", + "clone_url": "https://github.com/jenkinsci/skip-certificate-check-plugin.git", + "svn_url": "https://github.com/jenkinsci/skip-certificate-check-plugin", + "homepage": "", + "size": 10, + "stargazers_count": 8, + "watchers_count": 8, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 7, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 7, + "open_issues": 1, + "watchers": 8, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2344781, + "node_id": "MDEwOlJlcG9zaXRvcnkyMzQ0Nzgx", + "name": "dry-run-lib", + "full_name": "jenkinsci/dry-run-lib", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/dry-run-lib", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/dry-run-lib", + "forks_url": "https://api.github.com/repos/jenkinsci/dry-run-lib/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/dry-run-lib/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/dry-run-lib/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/dry-run-lib/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/dry-run-lib/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/dry-run-lib/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/dry-run-lib/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/dry-run-lib/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/dry-run-lib/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/dry-run-lib/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/dry-run-lib/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/dry-run-lib/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/dry-run-lib/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/dry-run-lib/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/dry-run-lib/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/dry-run-lib/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/dry-run-lib/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/dry-run-lib/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/dry-run-lib/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/dry-run-lib/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/dry-run-lib/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/dry-run-lib/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/dry-run-lib/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/dry-run-lib/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/dry-run-lib/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/dry-run-lib/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/dry-run-lib/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/dry-run-lib/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/dry-run-lib/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/dry-run-lib/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/dry-run-lib/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/dry-run-lib/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/dry-run-lib/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/dry-run-lib/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/dry-run-lib/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/dry-run-lib/deployments", + "created_at": "2011-09-07T21:48:31Z", + "updated_at": "2014-03-01T00:33:58Z", + "pushed_at": "2013-11-10T02:00:49Z", + "git_url": "git://github.com/jenkinsci/dry-run-lib.git", + "ssh_url": "git@github.com:jenkinsci/dry-run-lib.git", + "clone_url": "https://github.com/jenkinsci/dry-run-lib.git", + "svn_url": "https://github.com/jenkinsci/dry-run-lib", + "homepage": "", + "size": 100, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2352199, + "node_id": "MDEwOlJlcG9zaXRvcnkyMzUyMTk5", + "name": "rrod-plugin", + "full_name": "jenkinsci/rrod-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/rrod-plugin", + "description": "Jenkins rrod plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/rrod-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/rrod-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/rrod-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/rrod-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/rrod-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/rrod-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/rrod-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/rrod-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/rrod-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/rrod-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/rrod-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/rrod-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/rrod-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/rrod-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/rrod-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/rrod-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/rrod-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/rrod-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/rrod-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/rrod-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/rrod-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/rrod-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/rrod-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/rrod-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/rrod-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/rrod-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/rrod-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/rrod-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/rrod-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/rrod-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/rrod-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/rrod-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/rrod-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/rrod-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/rrod-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/rrod-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/rrod-plugin/deployments", + "created_at": "2011-09-08T23:22:57Z", + "updated_at": "2013-11-10T02:15:53Z", + "pushed_at": "2013-11-10T02:15:49Z", + "git_url": "git://github.com/jenkinsci/rrod-plugin.git", + "ssh_url": "git@github.com:jenkinsci/rrod-plugin.git", + "clone_url": "https://github.com/jenkinsci/rrod-plugin.git", + "svn_url": "https://github.com/jenkinsci/rrod-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 176, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2352228, + "node_id": "MDEwOlJlcG9zaXRvcnkyMzUyMjI4", + "name": "groovy", + "full_name": "jenkinsci/groovy", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/groovy", + "description": "Locally modified Groovy", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/groovy", + "forks_url": "https://api.github.com/repos/jenkinsci/groovy/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/groovy/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/groovy/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/groovy/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/groovy/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/groovy/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/groovy/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/groovy/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/groovy/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/groovy/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/groovy/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/groovy/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/groovy/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/groovy/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/groovy/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/groovy/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/groovy/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/groovy/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/groovy/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/groovy/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/groovy/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/groovy/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/groovy/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/groovy/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/groovy/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/groovy/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/groovy/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/groovy/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/groovy/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/groovy/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/groovy/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/groovy/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/groovy/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/groovy/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/groovy/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/groovy/deployments", + "created_at": "2011-09-08T23:30:44Z", + "updated_at": "2019-04-29T17:55:51Z", + "pushed_at": "2016-05-23T21:05:47Z", + "git_url": "git://github.com/jenkinsci/groovy.git", + "ssh_url": "git@github.com:jenkinsci/groovy.git", + "clone_url": "https://github.com/jenkinsci/groovy.git", + "svn_url": "https://github.com/jenkinsci/groovy", + "homepage": "http://jenkins-ci.org/", + "size": 145891, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 2, + "open_issues": 0, + "watchers": 2, + "default_branch": "1.8.2-jenkins", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2352568, + "node_id": "MDEwOlJlcG9zaXRvcnkyMzUyNTY4", + "name": "ant-plugin", + "full_name": "jenkinsci/ant-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/ant-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/ant-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/ant-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/ant-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/ant-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/ant-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/ant-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/ant-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/ant-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/ant-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/ant-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/ant-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/ant-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/ant-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/ant-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/ant-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/ant-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/ant-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/ant-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/ant-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/ant-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/ant-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/ant-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/ant-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/ant-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/ant-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/ant-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/ant-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/ant-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/ant-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/ant-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/ant-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/ant-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/ant-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/ant-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/ant-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/ant-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/ant-plugin/deployments", + "created_at": "2011-09-09T00:52:22Z", + "updated_at": "2019-09-17T17:30:14Z", + "pushed_at": "2019-09-08T22:06:43Z", + "git_url": "git://github.com/jenkinsci/ant-plugin.git", + "ssh_url": "git@github.com:jenkinsci/ant-plugin.git", + "clone_url": "https://github.com/jenkinsci/ant-plugin.git", + "svn_url": "https://github.com/jenkinsci/ant-plugin", + "homepage": "", + "size": 13879, + "stargazers_count": 10, + "watchers_count": 10, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 36, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": null, + "forks": 36, + "open_issues": 3, + "watchers": 10, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2352571, + "node_id": "MDEwOlJlcG9zaXRvcnkyMzUyNTcx", + "name": "javadoc-plugin", + "full_name": "jenkinsci/javadoc-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/javadoc-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/javadoc-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/javadoc-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/javadoc-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/javadoc-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/javadoc-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/javadoc-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/javadoc-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/javadoc-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/javadoc-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/javadoc-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/javadoc-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/javadoc-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/javadoc-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/javadoc-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/javadoc-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/javadoc-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/javadoc-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/javadoc-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/javadoc-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/javadoc-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/javadoc-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/javadoc-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/javadoc-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/javadoc-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/javadoc-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/javadoc-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/javadoc-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/javadoc-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/javadoc-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/javadoc-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/javadoc-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/javadoc-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/javadoc-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/javadoc-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/javadoc-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/javadoc-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/javadoc-plugin/deployments", + "created_at": "2011-09-09T00:52:37Z", + "updated_at": "2019-04-26T09:55:24Z", + "pushed_at": "2019-07-20T11:22:38Z", + "git_url": "git://github.com/jenkinsci/javadoc-plugin.git", + "ssh_url": "git@github.com:jenkinsci/javadoc-plugin.git", + "clone_url": "https://github.com/jenkinsci/javadoc-plugin.git", + "svn_url": "https://github.com/jenkinsci/javadoc-plugin", + "homepage": "http://wiki.jenkins-ci.org/display/JENKINS/Javadoc+Plugin", + "size": 468, + "stargazers_count": 3, + "watchers_count": 3, + "language": "HTML", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 13, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 13, + "open_issues": 1, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2366663, + "node_id": "MDEwOlJlcG9zaXRvcnkyMzY2NjYz", + "name": "simpleupdatesite-plugin", + "full_name": "jenkinsci/simpleupdatesite-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/simpleupdatesite-plugin", + "description": "Jenkins simpleupdatesite plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/simpleupdatesite-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/simpleupdatesite-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/simpleupdatesite-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/simpleupdatesite-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/simpleupdatesite-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/simpleupdatesite-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/simpleupdatesite-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/simpleupdatesite-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/simpleupdatesite-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/simpleupdatesite-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/simpleupdatesite-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/simpleupdatesite-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/simpleupdatesite-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/simpleupdatesite-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/simpleupdatesite-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/simpleupdatesite-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/simpleupdatesite-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/simpleupdatesite-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/simpleupdatesite-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/simpleupdatesite-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/simpleupdatesite-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/simpleupdatesite-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/simpleupdatesite-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/simpleupdatesite-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/simpleupdatesite-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/simpleupdatesite-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/simpleupdatesite-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/simpleupdatesite-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/simpleupdatesite-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/simpleupdatesite-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/simpleupdatesite-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/simpleupdatesite-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/simpleupdatesite-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/simpleupdatesite-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/simpleupdatesite-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/simpleupdatesite-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/simpleupdatesite-plugin/deployments", + "created_at": "2011-09-11T18:08:57Z", + "updated_at": "2013-11-10T02:17:50Z", + "pushed_at": "2019-10-08T16:36:11Z", + "git_url": "git://github.com/jenkinsci/simpleupdatesite-plugin.git", + "ssh_url": "git@github.com:jenkinsci/simpleupdatesite-plugin.git", + "clone_url": "https://github.com/jenkinsci/simpleupdatesite-plugin.git", + "svn_url": "https://github.com/jenkinsci/simpleupdatesite-plugin", + "homepage": "", + "size": 191, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 1, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2381544, + "node_id": "MDEwOlJlcG9zaXRvcnkyMzgxNTQ0", + "name": "lib-version-number", + "full_name": "jenkinsci/lib-version-number", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/lib-version-number", + "description": "Version Number class for doing reasoning with version numbers", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/lib-version-number", + "forks_url": "https://api.github.com/repos/jenkinsci/lib-version-number/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/lib-version-number/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/lib-version-number/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/lib-version-number/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/lib-version-number/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/lib-version-number/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/lib-version-number/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/lib-version-number/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/lib-version-number/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/lib-version-number/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/lib-version-number/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/lib-version-number/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/lib-version-number/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/lib-version-number/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/lib-version-number/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/lib-version-number/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/lib-version-number/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/lib-version-number/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/lib-version-number/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/lib-version-number/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/lib-version-number/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/lib-version-number/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/lib-version-number/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/lib-version-number/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/lib-version-number/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/lib-version-number/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/lib-version-number/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/lib-version-number/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/lib-version-number/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/lib-version-number/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/lib-version-number/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/lib-version-number/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/lib-version-number/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/lib-version-number/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/lib-version-number/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/lib-version-number/deployments", + "created_at": "2011-09-13T21:29:47Z", + "updated_at": "2019-10-22T19:15:26Z", + "pushed_at": "2019-10-11T16:42:38Z", + "git_url": "git://github.com/jenkinsci/lib-version-number.git", + "ssh_url": "git@github.com:jenkinsci/lib-version-number.git", + "clone_url": "https://github.com/jenkinsci/lib-version-number.git", + "svn_url": "https://github.com/jenkinsci/lib-version-number", + "homepage": "http://jenkins-ci.org/", + "size": 62, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 10, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 10, + "open_issues": 2, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2382252, + "node_id": "MDEwOlJlcG9zaXRvcnkyMzgyMjUy", + "name": "buildcontext-capture-plugin", + "full_name": "jenkinsci/buildcontext-capture-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/buildcontext-capture-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/buildcontext-capture-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/buildcontext-capture-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/buildcontext-capture-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/buildcontext-capture-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/buildcontext-capture-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/buildcontext-capture-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/buildcontext-capture-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/buildcontext-capture-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/buildcontext-capture-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/buildcontext-capture-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/buildcontext-capture-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/buildcontext-capture-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/buildcontext-capture-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/buildcontext-capture-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/buildcontext-capture-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/buildcontext-capture-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/buildcontext-capture-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/buildcontext-capture-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/buildcontext-capture-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/buildcontext-capture-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/buildcontext-capture-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/buildcontext-capture-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/buildcontext-capture-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/buildcontext-capture-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/buildcontext-capture-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/buildcontext-capture-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/buildcontext-capture-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/buildcontext-capture-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/buildcontext-capture-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/buildcontext-capture-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/buildcontext-capture-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/buildcontext-capture-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/buildcontext-capture-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/buildcontext-capture-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/buildcontext-capture-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/buildcontext-capture-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/buildcontext-capture-plugin/deployments", + "created_at": "2011-09-14T00:11:36Z", + "updated_at": "2017-05-05T17:24:31Z", + "pushed_at": "2016-07-06T08:43:37Z", + "git_url": "git://github.com/jenkinsci/buildcontext-capture-plugin.git", + "ssh_url": "git@github.com:jenkinsci/buildcontext-capture-plugin.git", + "clone_url": "https://github.com/jenkinsci/buildcontext-capture-plugin.git", + "svn_url": "https://github.com/jenkinsci/buildcontext-capture-plugin", + "homepage": "", + "size": 204, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 1, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2401969, + "node_id": "MDEwOlJlcG9zaXRvcnkyNDAxOTY5", + "name": "dtkit-plugin", + "full_name": "jenkinsci/dtkit-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/dtkit-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/dtkit-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/dtkit-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/dtkit-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/dtkit-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/dtkit-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/dtkit-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/dtkit-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/dtkit-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/dtkit-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/dtkit-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/dtkit-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/dtkit-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/dtkit-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/dtkit-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/dtkit-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/dtkit-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/dtkit-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/dtkit-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/dtkit-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/dtkit-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/dtkit-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/dtkit-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/dtkit-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/dtkit-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/dtkit-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/dtkit-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/dtkit-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/dtkit-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/dtkit-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/dtkit-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/dtkit-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/dtkit-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/dtkit-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/dtkit-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/dtkit-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/dtkit-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/dtkit-plugin/deployments", + "created_at": "2011-09-16T21:03:28Z", + "updated_at": "2019-09-20T21:33:59Z", + "pushed_at": "2019-09-20T21:33:56Z", + "git_url": "git://github.com/jenkinsci/dtkit-plugin.git", + "ssh_url": "git@github.com:jenkinsci/dtkit-plugin.git", + "clone_url": "https://github.com/jenkinsci/dtkit-plugin.git", + "svn_url": "https://github.com/jenkinsci/dtkit-plugin", + "homepage": "", + "size": 128, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 6, + "open_issues": 0, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2408256, + "node_id": "MDEwOlJlcG9zaXRvcnkyNDA4MjU2", + "name": "slave-setup-plugin", + "full_name": "jenkinsci/slave-setup-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/slave-setup-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/slave-setup-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/slave-setup-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/slave-setup-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/slave-setup-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/slave-setup-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/slave-setup-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/slave-setup-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/slave-setup-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/slave-setup-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/slave-setup-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/slave-setup-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/slave-setup-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/slave-setup-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/slave-setup-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/slave-setup-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/slave-setup-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/slave-setup-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/slave-setup-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/slave-setup-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/slave-setup-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/slave-setup-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/slave-setup-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/slave-setup-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/slave-setup-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/slave-setup-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/slave-setup-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/slave-setup-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/slave-setup-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/slave-setup-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/slave-setup-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/slave-setup-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/slave-setup-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/slave-setup-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/slave-setup-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/slave-setup-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/slave-setup-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/slave-setup-plugin/deployments", + "created_at": "2011-09-18T05:32:30Z", + "updated_at": "2018-10-23T06:58:25Z", + "pushed_at": "2019-10-08T10:01:56Z", + "git_url": "git://github.com/jenkinsci/slave-setup-plugin.git", + "ssh_url": "git@github.com:jenkinsci/slave-setup-plugin.git", + "clone_url": "https://github.com/jenkinsci/slave-setup-plugin.git", + "svn_url": "https://github.com/jenkinsci/slave-setup-plugin", + "homepage": "", + "size": 75, + "stargazers_count": 7, + "watchers_count": 7, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 18, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 18, + "open_issues": 3, + "watchers": 7, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2415110, + "node_id": "MDEwOlJlcG9zaXRvcnkyNDE1MTEw", + "name": "multi-slave-config-plugin", + "full_name": "jenkinsci/multi-slave-config-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/multi-slave-config-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/multi-slave-config-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/multi-slave-config-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/multi-slave-config-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/multi-slave-config-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/multi-slave-config-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/multi-slave-config-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/multi-slave-config-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/multi-slave-config-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/multi-slave-config-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/multi-slave-config-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/multi-slave-config-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/multi-slave-config-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/multi-slave-config-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/multi-slave-config-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/multi-slave-config-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/multi-slave-config-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/multi-slave-config-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/multi-slave-config-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/multi-slave-config-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/multi-slave-config-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/multi-slave-config-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/multi-slave-config-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/multi-slave-config-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/multi-slave-config-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/multi-slave-config-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/multi-slave-config-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/multi-slave-config-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/multi-slave-config-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/multi-slave-config-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/multi-slave-config-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/multi-slave-config-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/multi-slave-config-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/multi-slave-config-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/multi-slave-config-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/multi-slave-config-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/multi-slave-config-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/multi-slave-config-plugin/deployments", + "created_at": "2011-09-19T12:33:52Z", + "updated_at": "2018-07-10T09:37:58Z", + "pushed_at": "2018-07-10T09:37:56Z", + "git_url": "git://github.com/jenkinsci/multi-slave-config-plugin.git", + "ssh_url": "git@github.com:jenkinsci/multi-slave-config-plugin.git", + "clone_url": "https://github.com/jenkinsci/multi-slave-config-plugin.git", + "svn_url": "https://github.com/jenkinsci/multi-slave-config-plugin", + "homepage": "", + "size": 130, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 11, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 11, + "open_issues": 2, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2417830, + "node_id": "MDEwOlJlcG9zaXRvcnkyNDE3ODMw", + "name": "html-audio-notifier-plugin", + "full_name": "jenkinsci/html-audio-notifier-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/html-audio-notifier-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/html-audio-notifier-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/html-audio-notifier-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/html-audio-notifier-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/html-audio-notifier-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/html-audio-notifier-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/html-audio-notifier-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/html-audio-notifier-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/html-audio-notifier-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/html-audio-notifier-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/html-audio-notifier-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/html-audio-notifier-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/html-audio-notifier-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/html-audio-notifier-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/html-audio-notifier-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/html-audio-notifier-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/html-audio-notifier-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/html-audio-notifier-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/html-audio-notifier-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/html-audio-notifier-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/html-audio-notifier-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/html-audio-notifier-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/html-audio-notifier-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/html-audio-notifier-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/html-audio-notifier-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/html-audio-notifier-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/html-audio-notifier-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/html-audio-notifier-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/html-audio-notifier-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/html-audio-notifier-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/html-audio-notifier-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/html-audio-notifier-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/html-audio-notifier-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/html-audio-notifier-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/html-audio-notifier-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/html-audio-notifier-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/html-audio-notifier-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/html-audio-notifier-plugin/deployments", + "created_at": "2011-09-19T19:49:18Z", + "updated_at": "2019-10-08T19:20:01Z", + "pushed_at": "2019-10-08T19:19:59Z", + "git_url": "git://github.com/jenkinsci/html-audio-notifier-plugin.git", + "ssh_url": "git@github.com:jenkinsci/html-audio-notifier-plugin.git", + "clone_url": "https://github.com/jenkinsci/html-audio-notifier-plugin.git", + "svn_url": "https://github.com/jenkinsci/html-audio-notifier-plugin", + "homepage": "", + "size": 313, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 3, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2425418, + "node_id": "MDEwOlJlcG9zaXRvcnkyNDI1NDE4", + "name": "crowd2-plugin", + "full_name": "jenkinsci/crowd2-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/crowd2-plugin", + "description": "A plugin for Jenkins to use Atlassian Crowd or JIRA as an identity manager", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/crowd2-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/crowd2-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/crowd2-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/crowd2-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/crowd2-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/crowd2-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/crowd2-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/crowd2-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/crowd2-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/crowd2-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/crowd2-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/crowd2-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/crowd2-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/crowd2-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/crowd2-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/crowd2-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/crowd2-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/crowd2-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/crowd2-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/crowd2-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/crowd2-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/crowd2-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/crowd2-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/crowd2-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/crowd2-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/crowd2-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/crowd2-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/crowd2-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/crowd2-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/crowd2-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/crowd2-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/crowd2-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/crowd2-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/crowd2-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/crowd2-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/crowd2-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/crowd2-plugin/deployments", + "created_at": "2011-09-20T21:03:48Z", + "updated_at": "2019-10-08T14:50:25Z", + "pushed_at": "2019-10-15T08:43:54Z", + "git_url": "git://github.com/jenkinsci/crowd2-plugin.git", + "ssh_url": "git@github.com:jenkinsci/crowd2-plugin.git", + "clone_url": "https://github.com/jenkinsci/crowd2-plugin.git", + "svn_url": "https://github.com/jenkinsci/crowd2-plugin", + "homepage": "https://plugins.jenkins.io/crowd2", + "size": 238, + "stargazers_count": 21, + "watchers_count": 21, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 45, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 4, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 45, + "open_issues": 4, + "watchers": 21, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2439813, + "node_id": "MDEwOlJlcG9zaXRvcnkyNDM5ODEz", + "name": "chrome-frame-plugin", + "full_name": "jenkinsci/chrome-frame-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/chrome-frame-plugin", + "description": "Chrome Frame Plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/chrome-frame-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/chrome-frame-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/chrome-frame-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/chrome-frame-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/chrome-frame-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/chrome-frame-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/chrome-frame-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/chrome-frame-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/chrome-frame-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/chrome-frame-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/chrome-frame-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/chrome-frame-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/chrome-frame-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/chrome-frame-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/chrome-frame-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/chrome-frame-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/chrome-frame-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/chrome-frame-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/chrome-frame-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/chrome-frame-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/chrome-frame-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/chrome-frame-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/chrome-frame-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/chrome-frame-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/chrome-frame-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/chrome-frame-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/chrome-frame-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/chrome-frame-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/chrome-frame-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/chrome-frame-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/chrome-frame-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/chrome-frame-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/chrome-frame-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/chrome-frame-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/chrome-frame-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/chrome-frame-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/chrome-frame-plugin/deployments", + "created_at": "2011-09-22T20:22:11Z", + "updated_at": "2018-03-02T04:23:44Z", + "pushed_at": "2019-10-08T16:34:20Z", + "git_url": "git://github.com/jenkinsci/chrome-frame-plugin.git", + "ssh_url": "git@github.com:jenkinsci/chrome-frame-plugin.git", + "clone_url": "https://github.com/jenkinsci/chrome-frame-plugin.git", + "svn_url": "https://github.com/jenkinsci/chrome-frame-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Chrome+Frame+Plugin", + "size": 114, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": true, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 1, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2456160, + "node_id": "MDEwOlJlcG9zaXRvcnkyNDU2MTYw", + "name": "snsnotify-plugin", + "full_name": "jenkinsci/snsnotify-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/snsnotify-plugin", + "description": "A Jenkins notifier plugin that sends build notifications to an AWS SNS topic", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/snsnotify-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/snsnotify-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/snsnotify-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/snsnotify-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/snsnotify-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/snsnotify-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/snsnotify-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/snsnotify-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/snsnotify-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/snsnotify-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/snsnotify-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/snsnotify-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/snsnotify-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/snsnotify-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/snsnotify-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/snsnotify-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/snsnotify-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/snsnotify-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/snsnotify-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/snsnotify-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/snsnotify-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/snsnotify-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/snsnotify-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/snsnotify-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/snsnotify-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/snsnotify-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/snsnotify-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/snsnotify-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/snsnotify-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/snsnotify-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/snsnotify-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/snsnotify-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/snsnotify-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/snsnotify-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/snsnotify-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/snsnotify-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/snsnotify-plugin/deployments", + "created_at": "2011-09-25T19:24:29Z", + "updated_at": "2019-10-08T14:47:36Z", + "pushed_at": "2019-10-08T14:47:34Z", + "git_url": "git://github.com/jenkinsci/snsnotify-plugin.git", + "ssh_url": "git@github.com:jenkinsci/snsnotify-plugin.git", + "clone_url": "https://github.com/jenkinsci/snsnotify-plugin.git", + "svn_url": "https://github.com/jenkinsci/snsnotify-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Amazon+SNS+Notifier", + "size": 47, + "stargazers_count": 12, + "watchers_count": 12, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 24, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 24, + "open_issues": 2, + "watchers": 12, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2464896, + "node_id": "MDEwOlJlcG9zaXRvcnkyNDY0ODk2", + "name": "hsts-filter-plugin", + "full_name": "jenkinsci/hsts-filter-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/hsts-filter-plugin", + "description": "HSTS Filter Plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/hsts-filter-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/hsts-filter-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/hsts-filter-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/hsts-filter-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/hsts-filter-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/hsts-filter-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/hsts-filter-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/hsts-filter-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/hsts-filter-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/hsts-filter-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/hsts-filter-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/hsts-filter-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/hsts-filter-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/hsts-filter-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/hsts-filter-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/hsts-filter-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/hsts-filter-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/hsts-filter-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/hsts-filter-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/hsts-filter-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/hsts-filter-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/hsts-filter-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/hsts-filter-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/hsts-filter-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/hsts-filter-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/hsts-filter-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/hsts-filter-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/hsts-filter-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/hsts-filter-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/hsts-filter-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/hsts-filter-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/hsts-filter-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/hsts-filter-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/hsts-filter-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/hsts-filter-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/hsts-filter-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/hsts-filter-plugin/deployments", + "created_at": "2011-09-27T02:03:13Z", + "updated_at": "2013-11-10T02:04:57Z", + "pushed_at": "2017-08-05T01:15:58Z", + "git_url": "git://github.com/jenkinsci/hsts-filter-plugin.git", + "ssh_url": "git@github.com:jenkinsci/hsts-filter-plugin.git", + "clone_url": "https://github.com/jenkinsci/hsts-filter-plugin.git", + "svn_url": "https://github.com/jenkinsci/hsts-filter-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/HSTS+Filter+Plugin", + "size": 111, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 3, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2468074, + "node_id": "MDEwOlJlcG9zaXRvcnkyNDY4MDc0", + "name": "xframe-filter-plugin", + "full_name": "jenkinsci/xframe-filter-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/xframe-filter-plugin", + "description": "XFrame Filter Plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/xframe-filter-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/xframe-filter-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/xframe-filter-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/xframe-filter-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/xframe-filter-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/xframe-filter-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/xframe-filter-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/xframe-filter-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/xframe-filter-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/xframe-filter-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/xframe-filter-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/xframe-filter-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/xframe-filter-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/xframe-filter-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/xframe-filter-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/xframe-filter-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/xframe-filter-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/xframe-filter-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/xframe-filter-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/xframe-filter-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/xframe-filter-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/xframe-filter-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/xframe-filter-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/xframe-filter-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/xframe-filter-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/xframe-filter-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/xframe-filter-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/xframe-filter-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/xframe-filter-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/xframe-filter-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/xframe-filter-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/xframe-filter-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/xframe-filter-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/xframe-filter-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/xframe-filter-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/xframe-filter-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/xframe-filter-plugin/deployments", + "created_at": "2011-09-27T14:20:23Z", + "updated_at": "2014-06-30T18:02:23Z", + "pushed_at": "2019-10-08T11:45:19Z", + "git_url": "git://github.com/jenkinsci/xframe-filter-plugin.git", + "ssh_url": "git@github.com:jenkinsci/xframe-filter-plugin.git", + "clone_url": "https://github.com/jenkinsci/xframe-filter-plugin.git", + "svn_url": "https://github.com/jenkinsci/xframe-filter-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/XFrame+Filter+Plugin", + "size": 175, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 2, + "open_issues": 1, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2471162, + "node_id": "MDEwOlJlcG9zaXRvcnkyNDcxMTYy", + "name": "assembla-plugin", + "full_name": "jenkinsci/assembla-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/assembla-plugin", + "description": "Assembla ALM plug-in for Jenkins CI", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/assembla-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/assembla-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/assembla-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/assembla-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/assembla-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/assembla-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/assembla-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/assembla-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/assembla-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/assembla-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/assembla-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/assembla-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/assembla-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/assembla-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/assembla-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/assembla-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/assembla-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/assembla-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/assembla-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/assembla-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/assembla-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/assembla-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/assembla-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/assembla-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/assembla-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/assembla-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/assembla-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/assembla-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/assembla-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/assembla-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/assembla-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/assembla-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/assembla-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/assembla-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/assembla-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/assembla-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/assembla-plugin/deployments", + "created_at": "2011-09-27T22:17:55Z", + "updated_at": "2016-03-06T13:59:23Z", + "pushed_at": "2016-06-15T20:57:00Z", + "git_url": "git://github.com/jenkinsci/assembla-plugin.git", + "ssh_url": "git@github.com:jenkinsci/assembla-plugin.git", + "clone_url": "https://github.com/jenkinsci/assembla-plugin.git", + "svn_url": "https://github.com/jenkinsci/assembla-plugin", + "homepage": "hudsonmobi.wordpress.com", + "size": 212, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 3, + "open_issues": 2, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2473014, + "node_id": "MDEwOlJlcG9zaXRvcnkyNDczMDE0", + "name": "infra-cla", + "full_name": "jenkinsci/infra-cla", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/infra-cla", + "description": "Contributor License Agreement of the Jenkins project", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/infra-cla", + "forks_url": "https://api.github.com/repos/jenkinsci/infra-cla/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/infra-cla/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/infra-cla/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/infra-cla/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/infra-cla/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/infra-cla/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/infra-cla/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/infra-cla/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/infra-cla/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/infra-cla/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/infra-cla/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/infra-cla/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/infra-cla/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/infra-cla/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/infra-cla/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/infra-cla/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/infra-cla/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/infra-cla/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/infra-cla/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/infra-cla/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/infra-cla/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/infra-cla/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/infra-cla/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/infra-cla/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/infra-cla/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/infra-cla/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/infra-cla/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/infra-cla/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/infra-cla/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/infra-cla/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/infra-cla/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/infra-cla/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/infra-cla/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/infra-cla/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/infra-cla/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/infra-cla/deployments", + "created_at": "2011-09-28T05:32:40Z", + "updated_at": "2019-03-03T21:39:18Z", + "pushed_at": "2019-03-03T21:39:12Z", + "git_url": "git://github.com/jenkinsci/infra-cla.git", + "ssh_url": "git@github.com:jenkinsci/infra-cla.git", + "clone_url": "https://github.com/jenkinsci/infra-cla.git", + "svn_url": "https://github.com/jenkinsci/infra-cla", + "homepage": "", + "size": 197204, + "stargazers_count": 8, + "watchers_count": 8, + "language": "Groovy", + "has_issues": false, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 61, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 61, + "open_issues": 1, + "watchers": 8, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2482976, + "node_id": "MDEwOlJlcG9zaXRvcnkyNDgyOTc2", + "name": "vsphere-cloud-plugin", + "full_name": "jenkinsci/vsphere-cloud-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/vsphere-cloud-plugin", + "description": "vSphere cloud plugin for Jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/vsphere-cloud-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/vsphere-cloud-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/vsphere-cloud-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/vsphere-cloud-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/vsphere-cloud-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/vsphere-cloud-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/vsphere-cloud-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/vsphere-cloud-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/vsphere-cloud-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/vsphere-cloud-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/vsphere-cloud-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/vsphere-cloud-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/vsphere-cloud-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/vsphere-cloud-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/vsphere-cloud-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/vsphere-cloud-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/vsphere-cloud-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/vsphere-cloud-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/vsphere-cloud-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/vsphere-cloud-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/vsphere-cloud-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/vsphere-cloud-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/vsphere-cloud-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/vsphere-cloud-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/vsphere-cloud-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/vsphere-cloud-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/vsphere-cloud-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/vsphere-cloud-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/vsphere-cloud-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/vsphere-cloud-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/vsphere-cloud-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/vsphere-cloud-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/vsphere-cloud-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/vsphere-cloud-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/vsphere-cloud-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/vsphere-cloud-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/vsphere-cloud-plugin/deployments", + "created_at": "2011-09-29T15:47:28Z", + "updated_at": "2019-09-24T14:48:28Z", + "pushed_at": "2019-10-24T15:38:49Z", + "git_url": "git://github.com/jenkinsci/vsphere-cloud-plugin.git", + "ssh_url": "git@github.com:jenkinsci/vsphere-cloud-plugin.git", + "clone_url": "https://github.com/jenkinsci/vsphere-cloud-plugin.git", + "svn_url": "https://github.com/jenkinsci/vsphere-cloud-plugin", + "homepage": "https://plugins.jenkins.io/vsphere-cloud", + "size": 760, + "stargazers_count": 31, + "watchers_count": 31, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 85, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 5, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 85, + "open_issues": 5, + "watchers": 31, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2491350, + "node_id": "MDEwOlJlcG9zaXRvcnkyNDkxMzUw", + "name": "conditional-buildstep-plugin", + "full_name": "jenkinsci/conditional-buildstep-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/conditional-buildstep-plugin", + "description": "a jenkins plugin which allows to contol the step execution by conditions", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/conditional-buildstep-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/conditional-buildstep-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/conditional-buildstep-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/conditional-buildstep-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/conditional-buildstep-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/conditional-buildstep-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/conditional-buildstep-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/conditional-buildstep-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/conditional-buildstep-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/conditional-buildstep-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/conditional-buildstep-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/conditional-buildstep-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/conditional-buildstep-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/conditional-buildstep-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/conditional-buildstep-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/conditional-buildstep-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/conditional-buildstep-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/conditional-buildstep-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/conditional-buildstep-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/conditional-buildstep-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/conditional-buildstep-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/conditional-buildstep-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/conditional-buildstep-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/conditional-buildstep-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/conditional-buildstep-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/conditional-buildstep-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/conditional-buildstep-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/conditional-buildstep-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/conditional-buildstep-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/conditional-buildstep-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/conditional-buildstep-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/conditional-buildstep-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/conditional-buildstep-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/conditional-buildstep-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/conditional-buildstep-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/conditional-buildstep-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/conditional-buildstep-plugin/deployments", + "created_at": "2011-09-30T18:54:26Z", + "updated_at": "2019-03-31T17:26:11Z", + "pushed_at": "2019-09-20T20:54:59Z", + "git_url": "git://github.com/jenkinsci/conditional-buildstep-plugin.git", + "ssh_url": "git@github.com:jenkinsci/conditional-buildstep-plugin.git", + "clone_url": "https://github.com/jenkinsci/conditional-buildstep-plugin.git", + "svn_url": "https://github.com/jenkinsci/conditional-buildstep-plugin", + "homepage": "", + "size": 109, + "stargazers_count": 10, + "watchers_count": 10, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 25, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": null, + "forks": 25, + "open_issues": 3, + "watchers": 10, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2521930, + "node_id": "MDEwOlJlcG9zaXRvcnkyNTIxOTMw", + "name": "emmacoveragecolumn-plugin", + "full_name": "jenkinsci/emmacoveragecolumn-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/emmacoveragecolumn-plugin", + "description": "Emma Code Coverage Column Plugin for Jenkins", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/emmacoveragecolumn-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/emmacoveragecolumn-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/emmacoveragecolumn-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/emmacoveragecolumn-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/emmacoveragecolumn-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/emmacoveragecolumn-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/emmacoveragecolumn-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/emmacoveragecolumn-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/emmacoveragecolumn-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/emmacoveragecolumn-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/emmacoveragecolumn-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/emmacoveragecolumn-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/emmacoveragecolumn-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/emmacoveragecolumn-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/emmacoveragecolumn-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/emmacoveragecolumn-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/emmacoveragecolumn-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/emmacoveragecolumn-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/emmacoveragecolumn-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/emmacoveragecolumn-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/emmacoveragecolumn-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/emmacoveragecolumn-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/emmacoveragecolumn-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/emmacoveragecolumn-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/emmacoveragecolumn-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/emmacoveragecolumn-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/emmacoveragecolumn-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/emmacoveragecolumn-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/emmacoveragecolumn-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/emmacoveragecolumn-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/emmacoveragecolumn-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/emmacoveragecolumn-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/emmacoveragecolumn-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/emmacoveragecolumn-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/emmacoveragecolumn-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/emmacoveragecolumn-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/emmacoveragecolumn-plugin/deployments", + "created_at": "2011-10-05T20:22:59Z", + "updated_at": "2019-10-08T18:32:17Z", + "pushed_at": "2019-10-08T18:32:15Z", + "git_url": "git://github.com/jenkinsci/emmacoveragecolumn-plugin.git", + "ssh_url": "git@github.com:jenkinsci/emmacoveragecolumn-plugin.git", + "clone_url": "https://github.com/jenkinsci/emmacoveragecolumn-plugin.git", + "svn_url": "https://github.com/jenkinsci/emmacoveragecolumn-plugin", + "homepage": "", + "size": 19, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 6, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2533757, + "node_id": "MDEwOlJlcG9zaXRvcnkyNTMzNzU3", + "name": "graven-plugin", + "full_name": "jenkinsci/graven-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/graven-plugin", + "description": "graven plugin for jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/graven-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/graven-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/graven-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/graven-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/graven-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/graven-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/graven-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/graven-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/graven-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/graven-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/graven-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/graven-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/graven-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/graven-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/graven-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/graven-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/graven-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/graven-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/graven-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/graven-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/graven-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/graven-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/graven-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/graven-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/graven-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/graven-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/graven-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/graven-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/graven-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/graven-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/graven-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/graven-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/graven-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/graven-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/graven-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/graven-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/graven-plugin/deployments", + "created_at": "2011-10-07T16:38:20Z", + "updated_at": "2013-11-10T02:04:17Z", + "pushed_at": "2016-09-19T18:36:39Z", + "git_url": "git://github.com/jenkinsci/graven-plugin.git", + "ssh_url": "git@github.com:jenkinsci/graven-plugin.git", + "clone_url": "https://github.com/jenkinsci/graven-plugin.git", + "svn_url": "https://github.com/jenkinsci/graven-plugin", + "homepage": "", + "size": 108, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 0, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2534060, + "node_id": "MDEwOlJlcG9zaXRvcnkyNTM0MDYw", + "name": "selenium-tests", + "full_name": "jenkinsci/selenium-tests", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/selenium-tests", + "description": "deprecated Selenium tests", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/selenium-tests", + "forks_url": "https://api.github.com/repos/jenkinsci/selenium-tests/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/selenium-tests/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/selenium-tests/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/selenium-tests/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/selenium-tests/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/selenium-tests/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/selenium-tests/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/selenium-tests/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/selenium-tests/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/selenium-tests/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/selenium-tests/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/selenium-tests/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/selenium-tests/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/selenium-tests/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/selenium-tests/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/selenium-tests/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/selenium-tests/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/selenium-tests/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/selenium-tests/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/selenium-tests/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/selenium-tests/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/selenium-tests/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/selenium-tests/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/selenium-tests/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/selenium-tests/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/selenium-tests/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/selenium-tests/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/selenium-tests/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/selenium-tests/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/selenium-tests/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/selenium-tests/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/selenium-tests/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/selenium-tests/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/selenium-tests/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/selenium-tests/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/selenium-tests/deployments", + "created_at": "2011-10-07T17:32:48Z", + "updated_at": "2019-08-20T17:04:46Z", + "pushed_at": "2017-03-06T18:39:09Z", + "git_url": "git://github.com/jenkinsci/selenium-tests.git", + "ssh_url": "git@github.com:jenkinsci/selenium-tests.git", + "clone_url": "https://github.com/jenkinsci/selenium-tests.git", + "svn_url": "https://github.com/jenkinsci/selenium-tests", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Selenium+Test+Cases", + "size": 910, + "stargazers_count": 25, + "watchers_count": 25, + "language": "Ruby", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 13, + "mirror_url": null, + "archived": true, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 13, + "open_issues": 0, + "watchers": 25, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2545192, + "node_id": "MDEwOlJlcG9zaXRvcnkyNTQ1MTky", + "name": "dev-mode-plugin", + "full_name": "jenkinsci/dev-mode-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/dev-mode-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/dev-mode-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/dev-mode-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/dev-mode-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/dev-mode-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/dev-mode-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/dev-mode-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/dev-mode-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/dev-mode-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/dev-mode-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/dev-mode-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/dev-mode-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/dev-mode-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/dev-mode-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/dev-mode-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/dev-mode-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/dev-mode-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/dev-mode-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/dev-mode-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/dev-mode-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/dev-mode-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/dev-mode-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/dev-mode-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/dev-mode-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/dev-mode-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/dev-mode-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/dev-mode-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/dev-mode-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/dev-mode-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/dev-mode-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/dev-mode-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/dev-mode-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/dev-mode-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/dev-mode-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/dev-mode-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/dev-mode-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/dev-mode-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/dev-mode-plugin/deployments", + "created_at": "2011-10-10T00:15:56Z", + "updated_at": "2013-11-10T02:00:20Z", + "pushed_at": "2013-11-10T02:00:15Z", + "git_url": "git://github.com/jenkinsci/dev-mode-plugin.git", + "ssh_url": "git@github.com:jenkinsci/dev-mode-plugin.git", + "clone_url": "https://github.com/jenkinsci/dev-mode-plugin.git", + "svn_url": "https://github.com/jenkinsci/dev-mode-plugin", + "homepage": "", + "size": 136, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2603017, + "node_id": "MDEwOlJlcG9zaXRvcnkyNjAzMDE3", + "name": "brakeman-plugin", + "full_name": "jenkinsci/brakeman-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/brakeman-plugin", + "description": "A Brakeman plugin for the Hudson/Jenkins continuous integration tool", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/brakeman-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/brakeman-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/brakeman-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/brakeman-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/brakeman-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/brakeman-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/brakeman-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/brakeman-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/brakeman-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/brakeman-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/brakeman-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/brakeman-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/brakeman-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/brakeman-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/brakeman-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/brakeman-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/brakeman-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/brakeman-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/brakeman-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/brakeman-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/brakeman-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/brakeman-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/brakeman-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/brakeman-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/brakeman-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/brakeman-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/brakeman-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/brakeman-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/brakeman-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/brakeman-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/brakeman-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/brakeman-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/brakeman-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/brakeman-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/brakeman-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/brakeman-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/brakeman-plugin/deployments", + "created_at": "2011-10-19T00:10:55Z", + "updated_at": "2019-08-13T14:51:34Z", + "pushed_at": "2018-11-18T18:25:09Z", + "git_url": "git://github.com/jenkinsci/brakeman-plugin.git", + "ssh_url": "git@github.com:jenkinsci/brakeman-plugin.git", + "clone_url": "https://github.com/jenkinsci/brakeman-plugin.git", + "svn_url": "https://github.com/jenkinsci/brakeman-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Brakeman+Plugin", + "size": 3803, + "stargazers_count": 22, + "watchers_count": 22, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 10, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 4, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 10, + "open_issues": 4, + "watchers": 22, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2610851, + "node_id": "MDEwOlJlcG9zaXRvcnkyNjEwODUx", + "name": "html5-notifier-plugin", + "full_name": "jenkinsci/html5-notifier-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/html5-notifier-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/html5-notifier-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/html5-notifier-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/html5-notifier-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/html5-notifier-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/html5-notifier-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/html5-notifier-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/html5-notifier-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/html5-notifier-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/html5-notifier-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/html5-notifier-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/html5-notifier-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/html5-notifier-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/html5-notifier-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/html5-notifier-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/html5-notifier-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/html5-notifier-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/html5-notifier-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/html5-notifier-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/html5-notifier-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/html5-notifier-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/html5-notifier-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/html5-notifier-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/html5-notifier-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/html5-notifier-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/html5-notifier-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/html5-notifier-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/html5-notifier-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/html5-notifier-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/html5-notifier-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/html5-notifier-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/html5-notifier-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/html5-notifier-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/html5-notifier-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/html5-notifier-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/html5-notifier-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/html5-notifier-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/html5-notifier-plugin/deployments", + "created_at": "2011-10-20T03:24:11Z", + "updated_at": "2019-10-17T02:16:42Z", + "pushed_at": "2019-10-17T02:16:40Z", + "git_url": "git://github.com/jenkinsci/html5-notifier-plugin.git", + "ssh_url": "git@github.com:jenkinsci/html5-notifier-plugin.git", + "clone_url": "https://github.com/jenkinsci/html5-notifier-plugin.git", + "svn_url": "https://github.com/jenkinsci/html5-notifier-plugin", + "homepage": "", + "size": 126, + "stargazers_count": 8, + "watchers_count": 8, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": true, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 5, + "open_issues": 0, + "watchers": 8, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2654928, + "node_id": "MDEwOlJlcG9zaXRvcnkyNjU0OTI4", + "name": "lib-jira-scraper", + "full_name": "jenkinsci/lib-jira-scraper", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/lib-jira-scraper", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/lib-jira-scraper", + "forks_url": "https://api.github.com/repos/jenkinsci/lib-jira-scraper/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/lib-jira-scraper/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/lib-jira-scraper/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/lib-jira-scraper/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/lib-jira-scraper/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/lib-jira-scraper/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/lib-jira-scraper/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/lib-jira-scraper/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/lib-jira-scraper/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/lib-jira-scraper/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/lib-jira-scraper/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/lib-jira-scraper/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/lib-jira-scraper/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/lib-jira-scraper/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/lib-jira-scraper/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/lib-jira-scraper/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/lib-jira-scraper/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/lib-jira-scraper/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/lib-jira-scraper/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/lib-jira-scraper/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/lib-jira-scraper/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/lib-jira-scraper/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/lib-jira-scraper/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/lib-jira-scraper/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/lib-jira-scraper/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/lib-jira-scraper/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/lib-jira-scraper/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/lib-jira-scraper/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/lib-jira-scraper/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/lib-jira-scraper/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/lib-jira-scraper/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/lib-jira-scraper/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/lib-jira-scraper/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/lib-jira-scraper/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/lib-jira-scraper/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/lib-jira-scraper/deployments", + "created_at": "2011-10-27T00:28:17Z", + "updated_at": "2014-09-04T20:55:14Z", + "pushed_at": "2014-10-04T18:02:24Z", + "git_url": "git://github.com/jenkinsci/lib-jira-scraper.git", + "ssh_url": "git@github.com:jenkinsci/lib-jira-scraper.git", + "clone_url": "https://github.com/jenkinsci/lib-jira-scraper.git", + "svn_url": "https://github.com/jenkinsci/lib-jira-scraper", + "homepage": "", + "size": 257, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2684785, + "node_id": "MDEwOlJlcG9zaXRvcnkyNjg0Nzg1", + "name": "backend-plugin-report-card", + "full_name": "jenkinsci/backend-plugin-report-card", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/backend-plugin-report-card", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/backend-plugin-report-card", + "forks_url": "https://api.github.com/repos/jenkinsci/backend-plugin-report-card/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/backend-plugin-report-card/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/backend-plugin-report-card/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/backend-plugin-report-card/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/backend-plugin-report-card/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/backend-plugin-report-card/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/backend-plugin-report-card/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/backend-plugin-report-card/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/backend-plugin-report-card/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/backend-plugin-report-card/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/backend-plugin-report-card/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/backend-plugin-report-card/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/backend-plugin-report-card/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/backend-plugin-report-card/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/backend-plugin-report-card/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/backend-plugin-report-card/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/backend-plugin-report-card/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/backend-plugin-report-card/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/backend-plugin-report-card/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/backend-plugin-report-card/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/backend-plugin-report-card/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/backend-plugin-report-card/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/backend-plugin-report-card/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/backend-plugin-report-card/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/backend-plugin-report-card/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/backend-plugin-report-card/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/backend-plugin-report-card/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/backend-plugin-report-card/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/backend-plugin-report-card/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/backend-plugin-report-card/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/backend-plugin-report-card/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/backend-plugin-report-card/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/backend-plugin-report-card/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/backend-plugin-report-card/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/backend-plugin-report-card/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/backend-plugin-report-card/deployments", + "created_at": "2011-11-01T00:50:00Z", + "updated_at": "2018-01-03T17:52:48Z", + "pushed_at": "2013-11-10T01:54:13Z", + "git_url": "git://github.com/jenkinsci/backend-plugin-report-card.git", + "ssh_url": "git@github.com:jenkinsci/backend-plugin-report-card.git", + "clone_url": "https://github.com/jenkinsci/backend-plugin-report-card.git", + "svn_url": "https://github.com/jenkinsci/backend-plugin-report-card", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Plugin+Report+Card", + "size": 122, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": true, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2686952, + "node_id": "MDEwOlJlcG9zaXRvcnkyNjg2OTUy", + "name": "git-parameter-plugin", + "full_name": "jenkinsci/git-parameter-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/git-parameter-plugin", + "description": "Jenkins/Hudson plugin for chosing Revision / Tag before build", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/git-parameter-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/git-parameter-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/git-parameter-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/git-parameter-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/git-parameter-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/git-parameter-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/git-parameter-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/git-parameter-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/git-parameter-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/git-parameter-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/git-parameter-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/git-parameter-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/git-parameter-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/git-parameter-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/git-parameter-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/git-parameter-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/git-parameter-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/git-parameter-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/git-parameter-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/git-parameter-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/git-parameter-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/git-parameter-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/git-parameter-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/git-parameter-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/git-parameter-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/git-parameter-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/git-parameter-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/git-parameter-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/git-parameter-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/git-parameter-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/git-parameter-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/git-parameter-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/git-parameter-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/git-parameter-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/git-parameter-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/git-parameter-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/git-parameter-plugin/deployments", + "created_at": "2011-11-01T10:58:52Z", + "updated_at": "2019-10-23T03:37:29Z", + "pushed_at": "2019-09-26T09:42:50Z", + "git_url": "git://github.com/jenkinsci/git-parameter-plugin.git", + "ssh_url": "git@github.com:jenkinsci/git-parameter-plugin.git", + "clone_url": "https://github.com/jenkinsci/git-parameter-plugin.git", + "svn_url": "https://github.com/jenkinsci/git-parameter-plugin", + "homepage": "", + "size": 426, + "stargazers_count": 83, + "watchers_count": 83, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 99, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 8, + "license": null, + "forks": 99, + "open_issues": 8, + "watchers": 83, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2690866, + "node_id": "MDEwOlJlcG9zaXRvcnkyNjkwODY2", + "name": "codecover-plugin", + "full_name": "jenkinsci/codecover-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/codecover-plugin", + "description": "A Jenkins Plugin for the CodeCover coverage tool", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/codecover-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/codecover-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/codecover-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/codecover-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/codecover-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/codecover-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/codecover-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/codecover-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/codecover-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/codecover-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/codecover-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/codecover-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/codecover-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/codecover-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/codecover-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/codecover-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/codecover-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/codecover-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/codecover-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/codecover-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/codecover-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/codecover-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/codecover-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/codecover-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/codecover-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/codecover-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/codecover-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/codecover-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/codecover-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/codecover-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/codecover-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/codecover-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/codecover-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/codecover-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/codecover-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/codecover-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/codecover-plugin/deployments", + "created_at": "2011-11-01T21:15:39Z", + "updated_at": "2013-11-10T01:57:29Z", + "pushed_at": "2019-10-08T16:18:53Z", + "git_url": "git://github.com/jenkinsci/codecover-plugin.git", + "ssh_url": "git@github.com:jenkinsci/codecover-plugin.git", + "clone_url": "https://github.com/jenkinsci/codecover-plugin.git", + "svn_url": "https://github.com/jenkinsci/codecover-plugin", + "homepage": "codecover.org", + "size": 176, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 2, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2695787, + "node_id": "MDEwOlJlcG9zaXRvcnkyNjk1Nzg3", + "name": "appaloosa-plugin", + "full_name": "jenkinsci/appaloosa-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/appaloosa-plugin", + "description": "Appaloosa plugin for Jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/appaloosa-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/appaloosa-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/appaloosa-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/appaloosa-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/appaloosa-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/appaloosa-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/appaloosa-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/appaloosa-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/appaloosa-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/appaloosa-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/appaloosa-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/appaloosa-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/appaloosa-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/appaloosa-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/appaloosa-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/appaloosa-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/appaloosa-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/appaloosa-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/appaloosa-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/appaloosa-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/appaloosa-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/appaloosa-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/appaloosa-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/appaloosa-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/appaloosa-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/appaloosa-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/appaloosa-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/appaloosa-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/appaloosa-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/appaloosa-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/appaloosa-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/appaloosa-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/appaloosa-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/appaloosa-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/appaloosa-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/appaloosa-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/appaloosa-plugin/deployments", + "created_at": "2011-11-02T15:19:23Z", + "updated_at": "2019-07-12T09:40:23Z", + "pushed_at": "2019-07-12T09:40:21Z", + "git_url": "git://github.com/jenkinsci/appaloosa-plugin.git", + "ssh_url": "git@github.com:jenkinsci/appaloosa-plugin.git", + "clone_url": "https://github.com/jenkinsci/appaloosa-plugin.git", + "svn_url": "https://github.com/jenkinsci/appaloosa-plugin", + "homepage": "http://wiki.jenkins-ci.org/display/JENKINS/AppAloosa+Plugin", + "size": 3291, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 9, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 9, + "open_issues": 0, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2695942, + "node_id": "MDEwOlJlcG9zaXRvcnkyNjk1OTQy", + "name": "xcode-plugin", + "full_name": "jenkinsci/xcode-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/xcode-plugin", + "description": "Xcode integration for mobile/iOS developments (iPhone, iPad, ...).", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/xcode-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/xcode-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/xcode-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/xcode-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/xcode-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/xcode-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/xcode-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/xcode-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/xcode-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/xcode-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/xcode-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/xcode-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/xcode-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/xcode-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/xcode-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/xcode-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/xcode-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/xcode-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/xcode-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/xcode-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/xcode-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/xcode-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/xcode-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/xcode-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/xcode-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/xcode-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/xcode-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/xcode-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/xcode-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/xcode-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/xcode-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/xcode-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/xcode-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/xcode-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/xcode-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/xcode-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/xcode-plugin/deployments", + "created_at": "2011-11-02T15:42:45Z", + "updated_at": "2019-09-09T14:52:02Z", + "pushed_at": "2019-08-20T02:32:46Z", + "git_url": "git://github.com/jenkinsci/xcode-plugin.git", + "ssh_url": "git@github.com:jenkinsci/xcode-plugin.git", + "clone_url": "https://github.com/jenkinsci/xcode-plugin.git", + "svn_url": "https://github.com/jenkinsci/xcode-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Xcode+Plugin", + "size": 1901, + "stargazers_count": 253, + "watchers_count": 253, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 173, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 173, + "open_issues": 0, + "watchers": 253, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2697925, + "node_id": "MDEwOlJlcG9zaXRvcnkyNjk3OTI1", + "name": "strawboss-plugin", + "full_name": "jenkinsci/strawboss-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/strawboss-plugin", + "description": "Jenkins plugin to monitor external jobs", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/strawboss-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/strawboss-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/strawboss-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/strawboss-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/strawboss-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/strawboss-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/strawboss-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/strawboss-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/strawboss-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/strawboss-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/strawboss-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/strawboss-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/strawboss-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/strawboss-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/strawboss-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/strawboss-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/strawboss-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/strawboss-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/strawboss-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/strawboss-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/strawboss-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/strawboss-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/strawboss-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/strawboss-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/strawboss-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/strawboss-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/strawboss-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/strawboss-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/strawboss-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/strawboss-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/strawboss-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/strawboss-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/strawboss-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/strawboss-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/strawboss-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/strawboss-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/strawboss-plugin/deployments", + "created_at": "2011-11-02T20:41:47Z", + "updated_at": "2015-01-13T21:54:23Z", + "pushed_at": "2015-01-13T21:54:22Z", + "git_url": "git://github.com/jenkinsci/strawboss-plugin.git", + "ssh_url": "git@github.com:jenkinsci/strawboss-plugin.git", + "clone_url": "https://github.com/jenkinsci/strawboss-plugin.git", + "svn_url": "https://github.com/jenkinsci/strawboss-plugin", + "homepage": "", + "size": 250, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/__files/organizations_107424_repos-5cb3f8b7-17fc-4a5b-a8b3-99c07a604469.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/__files/organizations_107424_repos-5cb3f8b7-17fc-4a5b-a8b3-99c07a604469.json new file mode 100644 index 0000000000..9d4fab81e4 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/__files/organizations_107424_repos-5cb3f8b7-17fc-4a5b-a8b3-99c07a604469.json @@ -0,0 +1,10352 @@ +[ + { + "id": 81623466, + "node_id": "MDEwOlJlcG9zaXRvcnk4MTYyMzQ2Ng==", + "name": "cloudshare-docker-plugin", + "full_name": "jenkinsci/cloudshare-docker-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/cloudshare-docker-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/cloudshare-docker-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/cloudshare-docker-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/cloudshare-docker-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/cloudshare-docker-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/cloudshare-docker-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/cloudshare-docker-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/cloudshare-docker-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/cloudshare-docker-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/cloudshare-docker-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/cloudshare-docker-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/cloudshare-docker-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/cloudshare-docker-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/cloudshare-docker-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/cloudshare-docker-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/cloudshare-docker-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/cloudshare-docker-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/cloudshare-docker-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/cloudshare-docker-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/cloudshare-docker-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/cloudshare-docker-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/cloudshare-docker-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/cloudshare-docker-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/cloudshare-docker-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/cloudshare-docker-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/cloudshare-docker-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/cloudshare-docker-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/cloudshare-docker-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/cloudshare-docker-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/cloudshare-docker-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/cloudshare-docker-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/cloudshare-docker-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/cloudshare-docker-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/cloudshare-docker-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/cloudshare-docker-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/cloudshare-docker-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/cloudshare-docker-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/cloudshare-docker-plugin/deployments", + "created_at": "2017-02-11T01:53:19Z", + "updated_at": "2017-02-22T14:10:23Z", + "pushed_at": "2017-03-05T09:59:36Z", + "git_url": "git://github.com/jenkinsci/cloudshare-docker-plugin.git", + "ssh_url": "git@github.com:jenkinsci/cloudshare-docker-plugin.git", + "clone_url": "https://github.com/jenkinsci/cloudshare-docker-plugin.git", + "svn_url": "https://github.com/jenkinsci/cloudshare-docker-plugin", + "homepage": null, + "size": 31, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 81623507, + "node_id": "MDEwOlJlcG9zaXRvcnk4MTYyMzUwNw==", + "name": "jira-steps-plugin", + "full_name": "jenkinsci/jira-steps-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jira-steps-plugin", + "description": "Jenkins pipeline steps for integration with JIRA.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jira-steps-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/jira-steps-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jira-steps-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jira-steps-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jira-steps-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jira-steps-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jira-steps-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jira-steps-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jira-steps-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jira-steps-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jira-steps-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jira-steps-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jira-steps-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jira-steps-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jira-steps-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jira-steps-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jira-steps-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jira-steps-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jira-steps-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jira-steps-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jira-steps-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jira-steps-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jira-steps-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jira-steps-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jira-steps-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jira-steps-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jira-steps-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jira-steps-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jira-steps-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jira-steps-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jira-steps-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jira-steps-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jira-steps-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jira-steps-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jira-steps-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jira-steps-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jira-steps-plugin/deployments", + "created_at": "2017-02-11T01:54:08Z", + "updated_at": "2019-10-17T11:57:50Z", + "pushed_at": "2019-10-24T01:08:54Z", + "git_url": "git://github.com/jenkinsci/jira-steps-plugin.git", + "ssh_url": "git@github.com:jenkinsci/jira-steps-plugin.git", + "clone_url": "https://github.com/jenkinsci/jira-steps-plugin.git", + "svn_url": "https://github.com/jenkinsci/jira-steps-plugin", + "homepage": "https://jenkinsci.github.io/jira-steps-plugin", + "size": 7401, + "stargazers_count": 64, + "watchers_count": 64, + "language": "Java", + "has_issues": false, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": true, + "forks_count": 44, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 44, + "open_issues": 2, + "watchers": 64, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 81623539, + "node_id": "MDEwOlJlcG9zaXRvcnk4MTYyMzUzOQ==", + "name": "clang-tidy-plugin", + "full_name": "jenkinsci/clang-tidy-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/clang-tidy-plugin", + "description": "Jenkins Clang-Tidy plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/clang-tidy-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/clang-tidy-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/clang-tidy-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/clang-tidy-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/clang-tidy-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/clang-tidy-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/clang-tidy-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/clang-tidy-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/clang-tidy-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/clang-tidy-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/clang-tidy-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/clang-tidy-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/clang-tidy-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/clang-tidy-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/clang-tidy-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/clang-tidy-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/clang-tidy-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/clang-tidy-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/clang-tidy-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/clang-tidy-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/clang-tidy-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/clang-tidy-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/clang-tidy-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/clang-tidy-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/clang-tidy-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/clang-tidy-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/clang-tidy-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/clang-tidy-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/clang-tidy-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/clang-tidy-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/clang-tidy-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/clang-tidy-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/clang-tidy-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/clang-tidy-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/clang-tidy-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/clang-tidy-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/clang-tidy-plugin/deployments", + "created_at": "2017-02-11T01:55:04Z", + "updated_at": "2019-05-28T21:05:22Z", + "pushed_at": "2018-01-12T02:29:42Z", + "git_url": "git://github.com/jenkinsci/clang-tidy-plugin.git", + "ssh_url": "git@github.com:jenkinsci/clang-tidy-plugin.git", + "clone_url": "https://github.com/jenkinsci/clang-tidy-plugin.git", + "svn_url": "https://github.com/jenkinsci/clang-tidy-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 601, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 81623584, + "node_id": "MDEwOlJlcG9zaXRvcnk4MTYyMzU4NA==", + "name": "packageversion-plugin", + "full_name": "jenkinsci/packageversion-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/packageversion-plugin", + "description": "Jenkins package version build parameter provider", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/packageversion-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/packageversion-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/packageversion-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/packageversion-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/packageversion-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/packageversion-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/packageversion-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/packageversion-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/packageversion-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/packageversion-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/packageversion-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/packageversion-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/packageversion-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/packageversion-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/packageversion-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/packageversion-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/packageversion-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/packageversion-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/packageversion-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/packageversion-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/packageversion-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/packageversion-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/packageversion-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/packageversion-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/packageversion-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/packageversion-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/packageversion-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/packageversion-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/packageversion-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/packageversion-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/packageversion-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/packageversion-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/packageversion-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/packageversion-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/packageversion-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/packageversion-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/packageversion-plugin/deployments", + "created_at": "2017-02-11T01:56:07Z", + "updated_at": "2017-02-12T04:57:47Z", + "pushed_at": "2017-02-13T08:24:29Z", + "git_url": "git://github.com/jenkinsci/packageversion-plugin.git", + "ssh_url": "git@github.com:jenkinsci/packageversion-plugin.git", + "clone_url": "https://github.com/jenkinsci/packageversion-plugin.git", + "svn_url": "https://github.com/jenkinsci/packageversion-plugin", + "homepage": "", + "size": 793, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 81625875, + "node_id": "MDEwOlJlcG9zaXRvcnk4MTYyNTg3NQ==", + "name": "artifact-version-recorder-plugin", + "full_name": "jenkinsci/artifact-version-recorder-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/artifact-version-recorder-plugin", + "description": "jenkins artifact version recorder", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/artifact-version-recorder-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/artifact-version-recorder-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/artifact-version-recorder-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/artifact-version-recorder-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/artifact-version-recorder-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/artifact-version-recorder-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/artifact-version-recorder-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/artifact-version-recorder-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/artifact-version-recorder-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/artifact-version-recorder-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/artifact-version-recorder-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/artifact-version-recorder-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/artifact-version-recorder-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/artifact-version-recorder-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/artifact-version-recorder-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/artifact-version-recorder-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/artifact-version-recorder-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/artifact-version-recorder-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/artifact-version-recorder-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/artifact-version-recorder-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/artifact-version-recorder-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/artifact-version-recorder-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/artifact-version-recorder-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/artifact-version-recorder-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/artifact-version-recorder-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/artifact-version-recorder-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/artifact-version-recorder-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/artifact-version-recorder-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/artifact-version-recorder-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/artifact-version-recorder-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/artifact-version-recorder-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/artifact-version-recorder-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/artifact-version-recorder-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/artifact-version-recorder-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/artifact-version-recorder-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/artifact-version-recorder-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/artifact-version-recorder-plugin/deployments", + "created_at": "2017-02-11T02:43:45Z", + "updated_at": "2017-02-11T02:43:50Z", + "pushed_at": "2017-02-07T03:56:31Z", + "git_url": "git://github.com/jenkinsci/artifact-version-recorder-plugin.git", + "ssh_url": "git@github.com:jenkinsci/artifact-version-recorder-plugin.git", + "clone_url": "https://github.com/jenkinsci/artifact-version-recorder-plugin.git", + "svn_url": "https://github.com/jenkinsci/artifact-version-recorder-plugin", + "homepage": "", + "size": 24, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 81625919, + "node_id": "MDEwOlJlcG9zaXRvcnk4MTYyNTkxOQ==", + "name": "icn-plugin-loader-plugin", + "full_name": "jenkinsci/icn-plugin-loader-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/icn-plugin-loader-plugin", + "description": "Jenkins plug-in to reload ICN plug-ins", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/icn-plugin-loader-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/icn-plugin-loader-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/icn-plugin-loader-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/icn-plugin-loader-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/icn-plugin-loader-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/icn-plugin-loader-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/icn-plugin-loader-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/icn-plugin-loader-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/icn-plugin-loader-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/icn-plugin-loader-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/icn-plugin-loader-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/icn-plugin-loader-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/icn-plugin-loader-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/icn-plugin-loader-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/icn-plugin-loader-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/icn-plugin-loader-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/icn-plugin-loader-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/icn-plugin-loader-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/icn-plugin-loader-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/icn-plugin-loader-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/icn-plugin-loader-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/icn-plugin-loader-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/icn-plugin-loader-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/icn-plugin-loader-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/icn-plugin-loader-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/icn-plugin-loader-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/icn-plugin-loader-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/icn-plugin-loader-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/icn-plugin-loader-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/icn-plugin-loader-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/icn-plugin-loader-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/icn-plugin-loader-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/icn-plugin-loader-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/icn-plugin-loader-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/icn-plugin-loader-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/icn-plugin-loader-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/icn-plugin-loader-plugin/deployments", + "created_at": "2017-02-11T02:44:39Z", + "updated_at": "2017-02-11T02:44:45Z", + "pushed_at": "2017-02-14T18:52:49Z", + "git_url": "git://github.com/jenkinsci/icn-plugin-loader-plugin.git", + "ssh_url": "git@github.com:jenkinsci/icn-plugin-loader-plugin.git", + "clone_url": "https://github.com/jenkinsci/icn-plugin-loader-plugin.git", + "svn_url": "https://github.com/jenkinsci/icn-plugin-loader-plugin", + "homepage": null, + "size": 20, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 81625978, + "node_id": "MDEwOlJlcG9zaXRvcnk4MTYyNTk3OA==", + "name": "aws-bucket-credentials-plugin", + "full_name": "jenkinsci/aws-bucket-credentials-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/aws-bucket-credentials-plugin", + "description": "a jenkins plugin that should retrieve pre-stored and encrypted s3 contents", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/aws-bucket-credentials-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/aws-bucket-credentials-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/aws-bucket-credentials-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/aws-bucket-credentials-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/aws-bucket-credentials-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/aws-bucket-credentials-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/aws-bucket-credentials-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/aws-bucket-credentials-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/aws-bucket-credentials-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/aws-bucket-credentials-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/aws-bucket-credentials-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/aws-bucket-credentials-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/aws-bucket-credentials-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/aws-bucket-credentials-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/aws-bucket-credentials-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/aws-bucket-credentials-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/aws-bucket-credentials-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/aws-bucket-credentials-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/aws-bucket-credentials-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/aws-bucket-credentials-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/aws-bucket-credentials-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/aws-bucket-credentials-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/aws-bucket-credentials-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/aws-bucket-credentials-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/aws-bucket-credentials-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/aws-bucket-credentials-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/aws-bucket-credentials-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/aws-bucket-credentials-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/aws-bucket-credentials-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/aws-bucket-credentials-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/aws-bucket-credentials-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/aws-bucket-credentials-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/aws-bucket-credentials-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/aws-bucket-credentials-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/aws-bucket-credentials-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/aws-bucket-credentials-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/aws-bucket-credentials-plugin/deployments", + "created_at": "2017-02-11T02:45:47Z", + "updated_at": "2019-10-08T12:08:06Z", + "pushed_at": "2019-10-08T12:08:04Z", + "git_url": "git://github.com/jenkinsci/aws-bucket-credentials-plugin.git", + "ssh_url": "git@github.com:jenkinsci/aws-bucket-credentials-plugin.git", + "clone_url": "https://github.com/jenkinsci/aws-bucket-credentials-plugin.git", + "svn_url": "https://github.com/jenkinsci/aws-bucket-credentials-plugin", + "homepage": null, + "size": 61, + "stargazers_count": 6, + "watchers_count": 6, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 7, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 7, + "open_issues": 0, + "watchers": 6, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 81627867, + "node_id": "MDEwOlJlcG9zaXRvcnk4MTYyNzg2Nw==", + "name": "microfocus-da-plugin", + "full_name": "jenkinsci/microfocus-da-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/microfocus-da-plugin", + "description": "Micro Focus Deployment Automation Plugin for Jenkins 2.0", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/microfocus-da-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/microfocus-da-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/microfocus-da-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/microfocus-da-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/microfocus-da-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/microfocus-da-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/microfocus-da-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/microfocus-da-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/microfocus-da-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/microfocus-da-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/microfocus-da-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/microfocus-da-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/microfocus-da-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/microfocus-da-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/microfocus-da-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/microfocus-da-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/microfocus-da-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/microfocus-da-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/microfocus-da-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/microfocus-da-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/microfocus-da-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/microfocus-da-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/microfocus-da-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/microfocus-da-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/microfocus-da-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/microfocus-da-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/microfocus-da-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/microfocus-da-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/microfocus-da-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/microfocus-da-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/microfocus-da-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/microfocus-da-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/microfocus-da-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/microfocus-da-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/microfocus-da-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/microfocus-da-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/microfocus-da-plugin/deployments", + "created_at": "2017-02-11T03:27:20Z", + "updated_at": "2018-10-08T15:44:17Z", + "pushed_at": "2017-03-21T16:03:53Z", + "git_url": "git://github.com/jenkinsci/microfocus-da-plugin.git", + "ssh_url": "git@github.com:jenkinsci/microfocus-da-plugin.git", + "clone_url": "https://github.com/jenkinsci/microfocus-da-plugin.git", + "svn_url": "https://github.com/jenkinsci/microfocus-da-plugin", + "homepage": null, + "size": 351, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 83757293, + "node_id": "MDEwOlJlcG9zaXRvcnk4Mzc1NzI5Mw==", + "name": "ant-in-workspace-plugin", + "full_name": "jenkinsci/ant-in-workspace-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/ant-in-workspace-plugin", + "description": "Jenkins Plugin extends official Ant Plugin. Allows to use an Ant that is located in the Workspace.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/ant-in-workspace-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/ant-in-workspace-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/ant-in-workspace-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/ant-in-workspace-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/ant-in-workspace-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/ant-in-workspace-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/ant-in-workspace-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/ant-in-workspace-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/ant-in-workspace-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/ant-in-workspace-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/ant-in-workspace-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/ant-in-workspace-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/ant-in-workspace-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/ant-in-workspace-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/ant-in-workspace-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/ant-in-workspace-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/ant-in-workspace-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/ant-in-workspace-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/ant-in-workspace-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/ant-in-workspace-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/ant-in-workspace-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/ant-in-workspace-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/ant-in-workspace-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/ant-in-workspace-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/ant-in-workspace-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/ant-in-workspace-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/ant-in-workspace-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/ant-in-workspace-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/ant-in-workspace-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/ant-in-workspace-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/ant-in-workspace-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/ant-in-workspace-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/ant-in-workspace-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/ant-in-workspace-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/ant-in-workspace-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/ant-in-workspace-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/ant-in-workspace-plugin/deployments", + "created_at": "2017-03-03T04:27:09Z", + "updated_at": "2019-10-08T12:46:28Z", + "pushed_at": "2019-10-08T12:46:26Z", + "git_url": "git://github.com/jenkinsci/ant-in-workspace-plugin.git", + "ssh_url": "git@github.com:jenkinsci/ant-in-workspace-plugin.git", + "clone_url": "https://github.com/jenkinsci/ant-in-workspace-plugin.git", + "svn_url": "https://github.com/jenkinsci/ant-in-workspace-plugin", + "homepage": null, + "size": 23405, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 83757346, + "node_id": "MDEwOlJlcG9zaXRvcnk4Mzc1NzM0Ng==", + "name": "violation-comments-to-gitlab-plugin", + "full_name": "jenkinsci/violation-comments-to-gitlab-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/violation-comments-to-gitlab-plugin", + "description": "Comments GitLab merge requests with static code analyzer findings.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/violation-comments-to-gitlab-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-gitlab-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-gitlab-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-gitlab-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-gitlab-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-gitlab-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-gitlab-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-gitlab-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-gitlab-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-gitlab-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-gitlab-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-gitlab-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-gitlab-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-gitlab-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-gitlab-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-gitlab-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-gitlab-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-gitlab-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-gitlab-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-gitlab-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-gitlab-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-gitlab-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-gitlab-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-gitlab-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-gitlab-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-gitlab-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-gitlab-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-gitlab-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-gitlab-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-gitlab-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-gitlab-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-gitlab-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-gitlab-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-gitlab-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-gitlab-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-gitlab-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-gitlab-plugin/deployments", + "created_at": "2017-03-03T04:27:55Z", + "updated_at": "2019-10-24T18:46:24Z", + "pushed_at": "2019-10-24T18:46:22Z", + "git_url": "git://github.com/jenkinsci/violation-comments-to-gitlab-plugin.git", + "ssh_url": "git@github.com:jenkinsci/violation-comments-to-gitlab-plugin.git", + "clone_url": "https://github.com/jenkinsci/violation-comments-to-gitlab-plugin.git", + "svn_url": "https://github.com/jenkinsci/violation-comments-to-gitlab-plugin", + "homepage": "https://plugins.jenkins.io/violation-comments-to-gitlab", + "size": 557, + "stargazers_count": 14, + "watchers_count": 14, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 5, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 6, + "open_issues": 5, + "watchers": 14, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 83757537, + "node_id": "MDEwOlJlcG9zaXRvcnk4Mzc1NzUzNw==", + "name": "winrm-client-plugin", + "full_name": "jenkinsci/winrm-client-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/winrm-client-plugin", + "description": "winrm-client", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/winrm-client-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/winrm-client-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/winrm-client-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/winrm-client-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/winrm-client-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/winrm-client-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/winrm-client-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/winrm-client-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/winrm-client-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/winrm-client-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/winrm-client-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/winrm-client-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/winrm-client-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/winrm-client-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/winrm-client-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/winrm-client-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/winrm-client-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/winrm-client-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/winrm-client-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/winrm-client-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/winrm-client-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/winrm-client-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/winrm-client-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/winrm-client-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/winrm-client-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/winrm-client-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/winrm-client-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/winrm-client-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/winrm-client-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/winrm-client-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/winrm-client-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/winrm-client-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/winrm-client-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/winrm-client-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/winrm-client-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/winrm-client-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/winrm-client-plugin/deployments", + "created_at": "2017-03-03T04:30:42Z", + "updated_at": "2017-06-11T03:51:58Z", + "pushed_at": "2017-09-03T17:25:31Z", + "git_url": "git://github.com/jenkinsci/winrm-client-plugin.git", + "ssh_url": "git@github.com:jenkinsci/winrm-client-plugin.git", + "clone_url": "https://github.com/jenkinsci/winrm-client-plugin.git", + "svn_url": "https://github.com/jenkinsci/winrm-client-plugin", + "homepage": null, + "size": 19, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 84090288, + "node_id": "MDEwOlJlcG9zaXRvcnk4NDA5MDI4OA==", + "name": "azure-credentials-plugin", + "full_name": "jenkinsci/azure-credentials-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/azure-credentials-plugin", + "description": "Jenkins Azure Credentials plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/azure-credentials-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/azure-credentials-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/azure-credentials-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/azure-credentials-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/azure-credentials-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/azure-credentials-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/azure-credentials-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/azure-credentials-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/azure-credentials-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/azure-credentials-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/azure-credentials-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/azure-credentials-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/azure-credentials-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/azure-credentials-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/azure-credentials-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/azure-credentials-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/azure-credentials-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/azure-credentials-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/azure-credentials-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/azure-credentials-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/azure-credentials-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/azure-credentials-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/azure-credentials-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/azure-credentials-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/azure-credentials-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/azure-credentials-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/azure-credentials-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/azure-credentials-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/azure-credentials-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/azure-credentials-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/azure-credentials-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/azure-credentials-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/azure-credentials-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/azure-credentials-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/azure-credentials-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/azure-credentials-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/azure-credentials-plugin/deployments", + "created_at": "2017-03-06T15:37:32Z", + "updated_at": "2019-06-24T03:09:40Z", + "pushed_at": "2019-06-24T03:09:40Z", + "git_url": "git://github.com/jenkinsci/azure-credentials-plugin.git", + "ssh_url": "git@github.com:jenkinsci/azure-credentials-plugin.git", + "clone_url": "https://github.com/jenkinsci/azure-credentials-plugin.git", + "svn_url": "https://github.com/jenkinsci/azure-credentials-plugin", + "homepage": null, + "size": 139, + "stargazers_count": 6, + "watchers_count": 6, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 11, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 11, + "open_issues": 0, + "watchers": 6, + "default_branch": "dev", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 84324119, + "node_id": "MDEwOlJlcG9zaXRvcnk4NDMyNDExOQ==", + "name": "generic-webhook-trigger-plugin", + "full_name": "jenkinsci/generic-webhook-trigger-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/generic-webhook-trigger-plugin", + "description": "Can receive any HTTP request, extract any values from JSON or XML and trigger a job with those values available as variables. Works with GitHub, GitLab, Bitbucket, Jira and many more.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/generic-webhook-trigger-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/generic-webhook-trigger-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/generic-webhook-trigger-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/generic-webhook-trigger-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/generic-webhook-trigger-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/generic-webhook-trigger-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/generic-webhook-trigger-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/generic-webhook-trigger-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/generic-webhook-trigger-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/generic-webhook-trigger-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/generic-webhook-trigger-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/generic-webhook-trigger-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/generic-webhook-trigger-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/generic-webhook-trigger-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/generic-webhook-trigger-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/generic-webhook-trigger-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/generic-webhook-trigger-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/generic-webhook-trigger-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/generic-webhook-trigger-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/generic-webhook-trigger-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/generic-webhook-trigger-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/generic-webhook-trigger-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/generic-webhook-trigger-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/generic-webhook-trigger-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/generic-webhook-trigger-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/generic-webhook-trigger-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/generic-webhook-trigger-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/generic-webhook-trigger-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/generic-webhook-trigger-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/generic-webhook-trigger-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/generic-webhook-trigger-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/generic-webhook-trigger-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/generic-webhook-trigger-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/generic-webhook-trigger-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/generic-webhook-trigger-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/generic-webhook-trigger-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/generic-webhook-trigger-plugin/deployments", + "created_at": "2017-03-08T13:37:20Z", + "updated_at": "2019-10-24T06:31:54Z", + "pushed_at": "2019-10-21T15:12:44Z", + "git_url": "git://github.com/jenkinsci/generic-webhook-trigger-plugin.git", + "ssh_url": "git@github.com:jenkinsci/generic-webhook-trigger-plugin.git", + "clone_url": "https://github.com/jenkinsci/generic-webhook-trigger-plugin.git", + "svn_url": "https://github.com/jenkinsci/generic-webhook-trigger-plugin", + "homepage": "https://plugins.jenkins.io/generic-webhook-trigger", + "size": 1144, + "stargazers_count": 144, + "watchers_count": 144, + "language": "Java", + "has_issues": true, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 55, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 8, + "license": null, + "forks": 55, + "open_issues": 8, + "watchers": 144, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 84324196, + "node_id": "MDEwOlJlcG9zaXRvcnk4NDMyNDE5Ng==", + "name": "cocoemma-plugin", + "full_name": "jenkinsci/cocoemma-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/cocoemma-plugin", + "description": "Squish Coco EMMA Plugin for Jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/cocoemma-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/cocoemma-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/cocoemma-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/cocoemma-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/cocoemma-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/cocoemma-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/cocoemma-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/cocoemma-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/cocoemma-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/cocoemma-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/cocoemma-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/cocoemma-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/cocoemma-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/cocoemma-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/cocoemma-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/cocoemma-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/cocoemma-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/cocoemma-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/cocoemma-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/cocoemma-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/cocoemma-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/cocoemma-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/cocoemma-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/cocoemma-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/cocoemma-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/cocoemma-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/cocoemma-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/cocoemma-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/cocoemma-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/cocoemma-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/cocoemma-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/cocoemma-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/cocoemma-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/cocoemma-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/cocoemma-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/cocoemma-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/cocoemma-plugin/deployments", + "created_at": "2017-03-08T13:37:56Z", + "updated_at": "2017-03-21T11:17:10Z", + "pushed_at": "2017-03-02T15:45:49Z", + "git_url": "git://github.com/jenkinsci/cocoemma-plugin.git", + "ssh_url": "git@github.com:jenkinsci/cocoemma-plugin.git", + "clone_url": "https://github.com/jenkinsci/cocoemma-plugin.git", + "svn_url": "https://github.com/jenkinsci/cocoemma-plugin", + "homepage": null, + "size": 403, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 84325086, + "node_id": "MDEwOlJlcG9zaXRvcnk4NDMyNTA4Ng==", + "name": "worksoft-certify-process-suite-plugin", + "full_name": "jenkinsci/worksoft-certify-process-suite-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/worksoft-certify-process-suite-plugin", + "description": "Worksoft certify process suite is used to execute the certify processes in folder level.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/worksoft-certify-process-suite-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-process-suite-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-process-suite-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-process-suite-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-process-suite-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-process-suite-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-process-suite-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-process-suite-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-process-suite-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-process-suite-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-process-suite-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-process-suite-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-process-suite-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-process-suite-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-process-suite-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-process-suite-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-process-suite-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-process-suite-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-process-suite-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-process-suite-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-process-suite-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-process-suite-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-process-suite-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-process-suite-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-process-suite-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-process-suite-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-process-suite-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-process-suite-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-process-suite-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-process-suite-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-process-suite-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-process-suite-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-process-suite-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-process-suite-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-process-suite-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-process-suite-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/worksoft-certify-process-suite-plugin/deployments", + "created_at": "2017-03-08T13:46:55Z", + "updated_at": "2017-03-08T13:47:01Z", + "pushed_at": "2017-01-19T10:15:42Z", + "git_url": "git://github.com/jenkinsci/worksoft-certify-process-suite-plugin.git", + "ssh_url": "git@github.com:jenkinsci/worksoft-certify-process-suite-plugin.git", + "clone_url": "https://github.com/jenkinsci/worksoft-certify-process-suite-plugin.git", + "svn_url": "https://github.com/jenkinsci/worksoft-certify-process-suite-plugin", + "homepage": null, + "size": 7, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 84837593, + "node_id": "MDEwOlJlcG9zaXRvcnk4NDgzNzU5Mw==", + "name": "acunetix-plugin", + "full_name": "jenkinsci/acunetix-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/acunetix-plugin", + "description": "Trigger automated Acunetix scans as part of your web application's build process", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/acunetix-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/acunetix-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/acunetix-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/acunetix-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/acunetix-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/acunetix-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/acunetix-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/acunetix-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/acunetix-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/acunetix-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/acunetix-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/acunetix-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/acunetix-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/acunetix-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/acunetix-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/acunetix-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/acunetix-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/acunetix-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/acunetix-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/acunetix-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/acunetix-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/acunetix-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/acunetix-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/acunetix-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/acunetix-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/acunetix-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/acunetix-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/acunetix-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/acunetix-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/acunetix-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/acunetix-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/acunetix-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/acunetix-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/acunetix-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/acunetix-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/acunetix-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/acunetix-plugin/deployments", + "created_at": "2017-03-13T14:42:31Z", + "updated_at": "2019-07-02T07:11:32Z", + "pushed_at": "2019-02-06T14:26:19Z", + "git_url": "git://github.com/jenkinsci/acunetix-plugin.git", + "ssh_url": "git@github.com:jenkinsci/acunetix-plugin.git", + "clone_url": "https://github.com/jenkinsci/acunetix-plugin.git", + "svn_url": "https://github.com/jenkinsci/acunetix-plugin", + "homepage": null, + "size": 47, + "stargazers_count": 22, + "watchers_count": 22, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 16, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 16, + "open_issues": 1, + "watchers": 22, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 84841019, + "node_id": "MDEwOlJlcG9zaXRvcnk4NDg0MTAxOQ==", + "name": "app-detector-plugin", + "full_name": "jenkinsci/app-detector-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/app-detector-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/app-detector-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/app-detector-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/app-detector-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/app-detector-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/app-detector-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/app-detector-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/app-detector-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/app-detector-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/app-detector-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/app-detector-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/app-detector-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/app-detector-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/app-detector-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/app-detector-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/app-detector-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/app-detector-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/app-detector-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/app-detector-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/app-detector-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/app-detector-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/app-detector-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/app-detector-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/app-detector-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/app-detector-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/app-detector-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/app-detector-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/app-detector-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/app-detector-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/app-detector-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/app-detector-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/app-detector-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/app-detector-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/app-detector-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/app-detector-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/app-detector-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/app-detector-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/app-detector-plugin/deployments", + "created_at": "2017-03-13T15:12:35Z", + "updated_at": "2018-11-19T10:33:11Z", + "pushed_at": "2018-11-19T10:33:10Z", + "git_url": "git://github.com/jenkinsci/app-detector-plugin.git", + "ssh_url": "git@github.com:jenkinsci/app-detector-plugin.git", + "clone_url": "https://github.com/jenkinsci/app-detector-plugin.git", + "svn_url": "https://github.com/jenkinsci/app-detector-plugin", + "homepage": "", + "size": 228, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 84841078, + "node_id": "MDEwOlJlcG9zaXRvcnk4NDg0MTA3OA==", + "name": "ibm-ucdeploy-pipeline-plugin", + "full_name": "jenkinsci/ibm-ucdeploy-pipeline-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/ibm-ucdeploy-pipeline-plugin", + "description": "A plugin for Jenkins automation server to communicate with IBM UrbanCode Deploy", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/ibm-ucdeploy-pipeline-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/ibm-ucdeploy-pipeline-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/ibm-ucdeploy-pipeline-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/ibm-ucdeploy-pipeline-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/ibm-ucdeploy-pipeline-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/ibm-ucdeploy-pipeline-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/ibm-ucdeploy-pipeline-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/ibm-ucdeploy-pipeline-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/ibm-ucdeploy-pipeline-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/ibm-ucdeploy-pipeline-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/ibm-ucdeploy-pipeline-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/ibm-ucdeploy-pipeline-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/ibm-ucdeploy-pipeline-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/ibm-ucdeploy-pipeline-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/ibm-ucdeploy-pipeline-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/ibm-ucdeploy-pipeline-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/ibm-ucdeploy-pipeline-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/ibm-ucdeploy-pipeline-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/ibm-ucdeploy-pipeline-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/ibm-ucdeploy-pipeline-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/ibm-ucdeploy-pipeline-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/ibm-ucdeploy-pipeline-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/ibm-ucdeploy-pipeline-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/ibm-ucdeploy-pipeline-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/ibm-ucdeploy-pipeline-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/ibm-ucdeploy-pipeline-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/ibm-ucdeploy-pipeline-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/ibm-ucdeploy-pipeline-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/ibm-ucdeploy-pipeline-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/ibm-ucdeploy-pipeline-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/ibm-ucdeploy-pipeline-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/ibm-ucdeploy-pipeline-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/ibm-ucdeploy-pipeline-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/ibm-ucdeploy-pipeline-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/ibm-ucdeploy-pipeline-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/ibm-ucdeploy-pipeline-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/ibm-ucdeploy-pipeline-plugin/deployments", + "created_at": "2017-03-13T15:13:05Z", + "updated_at": "2018-08-08T15:23:35Z", + "pushed_at": "2018-08-08T15:23:34Z", + "git_url": "git://github.com/jenkinsci/ibm-ucdeploy-pipeline-plugin.git", + "ssh_url": "git@github.com:jenkinsci/ibm-ucdeploy-pipeline-plugin.git", + "clone_url": "https://github.com/jenkinsci/ibm-ucdeploy-pipeline-plugin.git", + "svn_url": "https://github.com/jenkinsci/ibm-ucdeploy-pipeline-plugin", + "homepage": "https://developer.ibm.com/urbancode/plugin/jenkins-2-0/", + "size": 312, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 4, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 2, + "open_issues": 4, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 84841358, + "node_id": "MDEwOlJlcG9zaXRvcnk4NDg0MTM1OA==", + "name": "newrelic-insights-plugin", + "full_name": "jenkinsci/newrelic-insights-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/newrelic-insights-plugin", + "description": "Jenkins plugin for inserting custom new relic insights events ", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/newrelic-insights-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/newrelic-insights-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/newrelic-insights-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/newrelic-insights-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/newrelic-insights-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/newrelic-insights-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/newrelic-insights-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/newrelic-insights-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/newrelic-insights-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/newrelic-insights-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/newrelic-insights-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/newrelic-insights-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/newrelic-insights-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/newrelic-insights-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/newrelic-insights-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/newrelic-insights-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/newrelic-insights-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/newrelic-insights-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/newrelic-insights-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/newrelic-insights-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/newrelic-insights-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/newrelic-insights-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/newrelic-insights-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/newrelic-insights-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/newrelic-insights-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/newrelic-insights-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/newrelic-insights-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/newrelic-insights-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/newrelic-insights-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/newrelic-insights-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/newrelic-insights-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/newrelic-insights-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/newrelic-insights-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/newrelic-insights-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/newrelic-insights-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/newrelic-insights-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/newrelic-insights-plugin/deployments", + "created_at": "2017-03-13T15:15:27Z", + "updated_at": "2018-10-29T21:22:41Z", + "pushed_at": "2017-04-03T02:24:48Z", + "git_url": "git://github.com/jenkinsci/newrelic-insights-plugin.git", + "ssh_url": "git@github.com:jenkinsci/newrelic-insights-plugin.git", + "clone_url": "https://github.com/jenkinsci/newrelic-insights-plugin.git", + "svn_url": "https://github.com/jenkinsci/newrelic-insights-plugin", + "homepage": "", + "size": 387, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 3, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 86358628, + "node_id": "MDEwOlJlcG9zaXRvcnk4NjM1ODYyOA==", + "name": "ftp-rename-plugin", + "full_name": "jenkinsci/ftp-rename-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/ftp-rename-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/ftp-rename-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/ftp-rename-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/ftp-rename-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/ftp-rename-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/ftp-rename-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/ftp-rename-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/ftp-rename-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/ftp-rename-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/ftp-rename-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/ftp-rename-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/ftp-rename-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/ftp-rename-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/ftp-rename-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/ftp-rename-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/ftp-rename-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/ftp-rename-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/ftp-rename-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/ftp-rename-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/ftp-rename-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/ftp-rename-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/ftp-rename-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/ftp-rename-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/ftp-rename-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/ftp-rename-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/ftp-rename-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/ftp-rename-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/ftp-rename-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/ftp-rename-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/ftp-rename-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/ftp-rename-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/ftp-rename-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/ftp-rename-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/ftp-rename-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/ftp-rename-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/ftp-rename-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/ftp-rename-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/ftp-rename-plugin/deployments", + "created_at": "2017-03-27T16:28:47Z", + "updated_at": "2019-10-07T08:08:50Z", + "pushed_at": "2019-05-23T13:59:10Z", + "git_url": "git://github.com/jenkinsci/ftp-rename-plugin.git", + "ssh_url": "git@github.com:jenkinsci/ftp-rename-plugin.git", + "clone_url": "https://github.com/jenkinsci/ftp-rename-plugin.git", + "svn_url": "https://github.com/jenkinsci/ftp-rename-plugin", + "homepage": null, + "size": 103, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": true, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 86359289, + "node_id": "MDEwOlJlcG9zaXRvcnk4NjM1OTI4OQ==", + "name": "apifortress-plugin", + "full_name": "jenkinsci/apifortress-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/apifortress-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/apifortress-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/apifortress-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/apifortress-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/apifortress-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/apifortress-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/apifortress-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/apifortress-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/apifortress-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/apifortress-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/apifortress-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/apifortress-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/apifortress-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/apifortress-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/apifortress-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/apifortress-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/apifortress-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/apifortress-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/apifortress-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/apifortress-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/apifortress-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/apifortress-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/apifortress-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/apifortress-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/apifortress-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/apifortress-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/apifortress-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/apifortress-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/apifortress-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/apifortress-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/apifortress-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/apifortress-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/apifortress-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/apifortress-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/apifortress-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/apifortress-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/apifortress-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/apifortress-plugin/deployments", + "created_at": "2017-03-27T16:35:26Z", + "updated_at": "2019-08-21T15:31:13Z", + "pushed_at": "2019-08-21T15:31:11Z", + "git_url": "git://github.com/jenkinsci/apifortress-plugin.git", + "ssh_url": "git@github.com:jenkinsci/apifortress-plugin.git", + "clone_url": "https://github.com/jenkinsci/apifortress-plugin.git", + "svn_url": "https://github.com/jenkinsci/apifortress-plugin", + "homepage": null, + "size": 14, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 86359325, + "node_id": "MDEwOlJlcG9zaXRvcnk4NjM1OTMyNQ==", + "name": "publish-to-bitbucket-plugin", + "full_name": "jenkinsci/publish-to-bitbucket-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/publish-to-bitbucket-plugin", + "description": "This plugin publishes the current code to a bitbucket server by creating a new repository and/or project.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/publish-to-bitbucket-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/publish-to-bitbucket-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/publish-to-bitbucket-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/publish-to-bitbucket-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/publish-to-bitbucket-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/publish-to-bitbucket-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/publish-to-bitbucket-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/publish-to-bitbucket-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/publish-to-bitbucket-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/publish-to-bitbucket-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/publish-to-bitbucket-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/publish-to-bitbucket-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/publish-to-bitbucket-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/publish-to-bitbucket-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/publish-to-bitbucket-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/publish-to-bitbucket-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/publish-to-bitbucket-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/publish-to-bitbucket-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/publish-to-bitbucket-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/publish-to-bitbucket-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/publish-to-bitbucket-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/publish-to-bitbucket-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/publish-to-bitbucket-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/publish-to-bitbucket-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/publish-to-bitbucket-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/publish-to-bitbucket-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/publish-to-bitbucket-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/publish-to-bitbucket-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/publish-to-bitbucket-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/publish-to-bitbucket-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/publish-to-bitbucket-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/publish-to-bitbucket-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/publish-to-bitbucket-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/publish-to-bitbucket-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/publish-to-bitbucket-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/publish-to-bitbucket-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/publish-to-bitbucket-plugin/deployments", + "created_at": "2017-03-27T16:35:52Z", + "updated_at": "2019-04-15T12:40:45Z", + "pushed_at": "2017-03-28T16:16:30Z", + "git_url": "git://github.com/jenkinsci/publish-to-bitbucket-plugin.git", + "ssh_url": "git@github.com:jenkinsci/publish-to-bitbucket-plugin.git", + "clone_url": "https://github.com/jenkinsci/publish-to-bitbucket-plugin.git", + "svn_url": "https://github.com/jenkinsci/publish-to-bitbucket-plugin", + "homepage": null, + "size": 39, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 86359431, + "node_id": "MDEwOlJlcG9zaXRvcnk4NjM1OTQzMQ==", + "name": "sealights-plugin", + "full_name": "jenkinsci/sealights-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/sealights-plugin", + "description": "Plugin for Jenkins CI", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/sealights-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/sealights-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/sealights-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/sealights-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/sealights-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/sealights-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/sealights-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/sealights-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/sealights-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/sealights-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/sealights-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/sealights-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/sealights-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/sealights-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/sealights-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/sealights-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/sealights-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/sealights-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/sealights-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/sealights-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/sealights-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/sealights-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/sealights-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/sealights-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/sealights-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/sealights-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/sealights-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/sealights-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/sealights-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/sealights-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/sealights-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/sealights-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/sealights-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/sealights-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/sealights-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/sealights-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/sealights-plugin/deployments", + "created_at": "2017-03-27T16:36:48Z", + "updated_at": "2019-03-13T19:14:09Z", + "pushed_at": "2019-03-13T19:14:07Z", + "git_url": "git://github.com/jenkinsci/sealights-plugin.git", + "ssh_url": "git@github.com:jenkinsci/sealights-plugin.git", + "clone_url": "https://github.com/jenkinsci/sealights-plugin.git", + "svn_url": "https://github.com/jenkinsci/sealights-plugin", + "homepage": null, + "size": 1141, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 7, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 7, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 86359489, + "node_id": "MDEwOlJlcG9zaXRvcnk4NjM1OTQ4OQ==", + "name": "webhook-step-plugin", + "full_name": "jenkinsci/webhook-step-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/webhook-step-plugin", + "description": "Jenkins Pipeline plugin for blocking a pipeline until an external system calls a webhook.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/webhook-step-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/webhook-step-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/webhook-step-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/webhook-step-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/webhook-step-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/webhook-step-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/webhook-step-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/webhook-step-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/webhook-step-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/webhook-step-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/webhook-step-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/webhook-step-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/webhook-step-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/webhook-step-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/webhook-step-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/webhook-step-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/webhook-step-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/webhook-step-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/webhook-step-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/webhook-step-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/webhook-step-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/webhook-step-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/webhook-step-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/webhook-step-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/webhook-step-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/webhook-step-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/webhook-step-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/webhook-step-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/webhook-step-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/webhook-step-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/webhook-step-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/webhook-step-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/webhook-step-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/webhook-step-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/webhook-step-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/webhook-step-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/webhook-step-plugin/deployments", + "created_at": "2017-03-27T16:37:26Z", + "updated_at": "2019-10-15T15:27:48Z", + "pushed_at": "2019-10-15T15:27:43Z", + "git_url": "git://github.com/jenkinsci/webhook-step-plugin.git", + "ssh_url": "git@github.com:jenkinsci/webhook-step-plugin.git", + "clone_url": "https://github.com/jenkinsci/webhook-step-plugin.git", + "svn_url": "https://github.com/jenkinsci/webhook-step-plugin", + "homepage": null, + "size": 25, + "stargazers_count": 17, + "watchers_count": 17, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 8, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 9, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 8, + "open_issues": 9, + "watchers": 17, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 86381043, + "node_id": "MDEwOlJlcG9zaXRvcnk4NjM4MTA0Mw==", + "name": "livingdoc-reports-plugin", + "full_name": "jenkinsci/livingdoc-reports-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/livingdoc-reports-plugin", + "description": "LivingDoc plugin for jenkins", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/livingdoc-reports-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/livingdoc-reports-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/livingdoc-reports-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/livingdoc-reports-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/livingdoc-reports-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/livingdoc-reports-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/livingdoc-reports-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/livingdoc-reports-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/livingdoc-reports-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/livingdoc-reports-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/livingdoc-reports-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/livingdoc-reports-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/livingdoc-reports-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/livingdoc-reports-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/livingdoc-reports-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/livingdoc-reports-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/livingdoc-reports-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/livingdoc-reports-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/livingdoc-reports-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/livingdoc-reports-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/livingdoc-reports-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/livingdoc-reports-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/livingdoc-reports-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/livingdoc-reports-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/livingdoc-reports-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/livingdoc-reports-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/livingdoc-reports-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/livingdoc-reports-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/livingdoc-reports-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/livingdoc-reports-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/livingdoc-reports-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/livingdoc-reports-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/livingdoc-reports-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/livingdoc-reports-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/livingdoc-reports-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/livingdoc-reports-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/livingdoc-reports-plugin/deployments", + "created_at": "2017-03-27T20:29:26Z", + "updated_at": "2017-03-27T22:17:38Z", + "pushed_at": "2018-11-23T14:46:16Z", + "git_url": "git://github.com/jenkinsci/livingdoc-reports-plugin.git", + "ssh_url": "git@github.com:jenkinsci/livingdoc-reports-plugin.git", + "clone_url": "https://github.com/jenkinsci/livingdoc-reports-plugin.git", + "svn_url": "https://github.com/jenkinsci/livingdoc-reports-plugin", + "homepage": "", + "size": 460, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "gpl-3.0", + "name": "GNU General Public License v3.0", + "spdx_id": "GPL-3.0", + "url": "https://api.github.com/licenses/gpl-3.0", + "node_id": "MDc6TGljZW5zZTk=" + }, + "forks": 1, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 86478453, + "node_id": "MDEwOlJlcG9zaXRvcnk4NjQ3ODQ1Mw==", + "name": "consul-plugin", + "full_name": "jenkinsci/consul-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/consul-plugin", + "description": "Jenkins consul plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/consul-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/consul-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/consul-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/consul-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/consul-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/consul-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/consul-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/consul-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/consul-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/consul-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/consul-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/consul-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/consul-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/consul-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/consul-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/consul-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/consul-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/consul-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/consul-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/consul-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/consul-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/consul-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/consul-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/consul-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/consul-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/consul-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/consul-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/consul-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/consul-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/consul-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/consul-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/consul-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/consul-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/consul-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/consul-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/consul-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/consul-plugin/deployments", + "created_at": "2017-03-28T15:45:22Z", + "updated_at": "2019-02-06T18:01:38Z", + "pushed_at": "2017-11-02T05:04:02Z", + "git_url": "git://github.com/jenkinsci/consul-plugin.git", + "ssh_url": "git@github.com:jenkinsci/consul-plugin.git", + "clone_url": "https://github.com/jenkinsci/consul-plugin.git", + "svn_url": "https://github.com/jenkinsci/consul-plugin", + "homepage": null, + "size": 40, + "stargazers_count": 6, + "watchers_count": 6, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 3, + "open_issues": 1, + "watchers": 6, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 86478548, + "node_id": "MDEwOlJlcG9zaXRvcnk4NjQ3ODU0OA==", + "name": "keycloak-plugin", + "full_name": "jenkinsci/keycloak-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/keycloak-plugin", + "description": "Keycloak Authentication Plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/keycloak-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/keycloak-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/keycloak-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/keycloak-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/keycloak-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/keycloak-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/keycloak-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/keycloak-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/keycloak-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/keycloak-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/keycloak-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/keycloak-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/keycloak-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/keycloak-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/keycloak-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/keycloak-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/keycloak-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/keycloak-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/keycloak-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/keycloak-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/keycloak-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/keycloak-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/keycloak-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/keycloak-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/keycloak-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/keycloak-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/keycloak-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/keycloak-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/keycloak-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/keycloak-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/keycloak-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/keycloak-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/keycloak-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/keycloak-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/keycloak-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/keycloak-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/keycloak-plugin/deployments", + "created_at": "2017-03-28T15:46:21Z", + "updated_at": "2019-10-15T07:51:52Z", + "pushed_at": "2019-01-20T14:57:32Z", + "git_url": "git://github.com/jenkinsci/keycloak-plugin.git", + "ssh_url": "git@github.com:jenkinsci/keycloak-plugin.git", + "clone_url": "https://github.com/jenkinsci/keycloak-plugin.git", + "svn_url": "https://github.com/jenkinsci/keycloak-plugin", + "homepage": null, + "size": 183, + "stargazers_count": 12, + "watchers_count": 12, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 8, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 8, + "open_issues": 0, + "watchers": 12, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 86478661, + "node_id": "MDEwOlJlcG9zaXRvcnk4NjQ3ODY2MQ==", + "name": "svn-partial-release-mgr-plugin", + "full_name": "jenkinsci/svn-partial-release-mgr-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/svn-partial-release-mgr-plugin", + "description": "Jenkins plugin to ease the partial deployment of a release", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/svn-partial-release-mgr-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/svn-partial-release-mgr-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/svn-partial-release-mgr-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/svn-partial-release-mgr-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/svn-partial-release-mgr-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/svn-partial-release-mgr-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/svn-partial-release-mgr-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/svn-partial-release-mgr-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/svn-partial-release-mgr-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/svn-partial-release-mgr-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/svn-partial-release-mgr-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/svn-partial-release-mgr-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/svn-partial-release-mgr-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/svn-partial-release-mgr-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/svn-partial-release-mgr-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/svn-partial-release-mgr-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/svn-partial-release-mgr-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/svn-partial-release-mgr-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/svn-partial-release-mgr-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/svn-partial-release-mgr-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/svn-partial-release-mgr-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/svn-partial-release-mgr-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/svn-partial-release-mgr-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/svn-partial-release-mgr-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/svn-partial-release-mgr-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/svn-partial-release-mgr-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/svn-partial-release-mgr-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/svn-partial-release-mgr-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/svn-partial-release-mgr-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/svn-partial-release-mgr-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/svn-partial-release-mgr-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/svn-partial-release-mgr-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/svn-partial-release-mgr-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/svn-partial-release-mgr-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/svn-partial-release-mgr-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/svn-partial-release-mgr-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/svn-partial-release-mgr-plugin/deployments", + "created_at": "2017-03-28T15:47:28Z", + "updated_at": "2017-03-30T19:22:59Z", + "pushed_at": "2017-05-10T20:36:53Z", + "git_url": "git://github.com/jenkinsci/svn-partial-release-mgr-plugin.git", + "ssh_url": "git@github.com:jenkinsci/svn-partial-release-mgr-plugin.git", + "clone_url": "https://github.com/jenkinsci/svn-partial-release-mgr-plugin.git", + "svn_url": "https://github.com/jenkinsci/svn-partial-release-mgr-plugin", + "homepage": null, + "size": 98, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 86740091, + "node_id": "MDEwOlJlcG9zaXRvcnk4Njc0MDA5MQ==", + "name": "nexus-platform-plugin", + "full_name": "jenkinsci/nexus-platform-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/nexus-platform-plugin", + "description": "Nexus Platform Plugin for Jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/nexus-platform-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/nexus-platform-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/nexus-platform-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/nexus-platform-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/nexus-platform-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/nexus-platform-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/nexus-platform-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/nexus-platform-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/nexus-platform-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/nexus-platform-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/nexus-platform-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/nexus-platform-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/nexus-platform-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/nexus-platform-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/nexus-platform-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/nexus-platform-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/nexus-platform-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/nexus-platform-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/nexus-platform-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/nexus-platform-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/nexus-platform-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/nexus-platform-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/nexus-platform-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/nexus-platform-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/nexus-platform-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/nexus-platform-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/nexus-platform-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/nexus-platform-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/nexus-platform-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/nexus-platform-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/nexus-platform-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/nexus-platform-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/nexus-platform-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/nexus-platform-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/nexus-platform-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/nexus-platform-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/nexus-platform-plugin/deployments", + "created_at": "2017-03-30T19:22:12Z", + "updated_at": "2019-10-24T19:45:07Z", + "pushed_at": "2019-10-24T20:22:36Z", + "git_url": "git://github.com/jenkinsci/nexus-platform-plugin.git", + "ssh_url": "git@github.com:jenkinsci/nexus-platform-plugin.git", + "clone_url": "https://github.com/jenkinsci/nexus-platform-plugin.git", + "svn_url": "https://github.com/jenkinsci/nexus-platform-plugin", + "homepage": null, + "size": 545, + "stargazers_count": 13, + "watchers_count": 13, + "language": "Groovy", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 24, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 9, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 24, + "open_issues": 9, + "watchers": 13, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 86823673, + "node_id": "MDEwOlJlcG9zaXRvcnk4NjgyMzY3Mw==", + "name": "build-configurator-plugin", + "full_name": "jenkinsci/build-configurator-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/build-configurator-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/build-configurator-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/build-configurator-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/build-configurator-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/build-configurator-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/build-configurator-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/build-configurator-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/build-configurator-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/build-configurator-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/build-configurator-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/build-configurator-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/build-configurator-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/build-configurator-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/build-configurator-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/build-configurator-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/build-configurator-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/build-configurator-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/build-configurator-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/build-configurator-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/build-configurator-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/build-configurator-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/build-configurator-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/build-configurator-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/build-configurator-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/build-configurator-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/build-configurator-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/build-configurator-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/build-configurator-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/build-configurator-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/build-configurator-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/build-configurator-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/build-configurator-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/build-configurator-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/build-configurator-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/build-configurator-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/build-configurator-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/build-configurator-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/build-configurator-plugin/deployments", + "created_at": "2017-03-31T13:45:19Z", + "updated_at": "2017-03-31T13:45:29Z", + "pushed_at": "2017-04-13T12:39:54Z", + "git_url": "git://github.com/jenkinsci/build-configurator-plugin.git", + "ssh_url": "git@github.com:jenkinsci/build-configurator-plugin.git", + "clone_url": "https://github.com/jenkinsci/build-configurator-plugin.git", + "svn_url": "https://github.com/jenkinsci/build-configurator-plugin", + "homepage": null, + "size": 7240, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 86824826, + "node_id": "MDEwOlJlcG9zaXRvcnk4NjgyNDgyNg==", + "name": "views-containing-job-plugin", + "full_name": "jenkinsci/views-containing-job-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/views-containing-job-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/views-containing-job-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/views-containing-job-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/views-containing-job-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/views-containing-job-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/views-containing-job-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/views-containing-job-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/views-containing-job-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/views-containing-job-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/views-containing-job-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/views-containing-job-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/views-containing-job-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/views-containing-job-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/views-containing-job-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/views-containing-job-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/views-containing-job-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/views-containing-job-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/views-containing-job-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/views-containing-job-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/views-containing-job-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/views-containing-job-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/views-containing-job-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/views-containing-job-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/views-containing-job-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/views-containing-job-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/views-containing-job-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/views-containing-job-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/views-containing-job-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/views-containing-job-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/views-containing-job-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/views-containing-job-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/views-containing-job-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/views-containing-job-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/views-containing-job-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/views-containing-job-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/views-containing-job-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/views-containing-job-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/views-containing-job-plugin/deployments", + "created_at": "2017-03-31T13:56:59Z", + "updated_at": "2019-07-31T09:48:17Z", + "pushed_at": "2019-07-31T09:48:15Z", + "git_url": "git://github.com/jenkinsci/views-containing-job-plugin.git", + "ssh_url": "git@github.com:jenkinsci/views-containing-job-plugin.git", + "clone_url": "https://github.com/jenkinsci/views-containing-job-plugin.git", + "svn_url": "https://github.com/jenkinsci/views-containing-job-plugin", + "homepage": "https://plugins.jenkins.io/views-containing-job", + "size": 43, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 86825070, + "node_id": "MDEwOlJlcG9zaXRvcnk4NjgyNTA3MA==", + "name": "viber-notification-plugin", + "full_name": "jenkinsci/viber-notification-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/viber-notification-plugin", + "description": "This is the repository for Viber notification plugin for Jenkins. This plugin allows you to send text messages to Viber public accounts via Jenkins.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/viber-notification-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/viber-notification-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/viber-notification-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/viber-notification-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/viber-notification-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/viber-notification-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/viber-notification-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/viber-notification-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/viber-notification-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/viber-notification-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/viber-notification-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/viber-notification-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/viber-notification-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/viber-notification-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/viber-notification-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/viber-notification-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/viber-notification-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/viber-notification-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/viber-notification-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/viber-notification-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/viber-notification-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/viber-notification-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/viber-notification-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/viber-notification-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/viber-notification-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/viber-notification-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/viber-notification-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/viber-notification-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/viber-notification-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/viber-notification-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/viber-notification-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/viber-notification-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/viber-notification-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/viber-notification-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/viber-notification-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/viber-notification-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/viber-notification-plugin/deployments", + "created_at": "2017-03-31T13:59:27Z", + "updated_at": "2017-04-03T04:27:08Z", + "pushed_at": "2017-04-06T14:32:13Z", + "git_url": "git://github.com/jenkinsci/viber-notification-plugin.git", + "ssh_url": "git@github.com:jenkinsci/viber-notification-plugin.git", + "clone_url": "https://github.com/jenkinsci/viber-notification-plugin.git", + "svn_url": "https://github.com/jenkinsci/viber-notification-plugin", + "homepage": null, + "size": 165, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 87287402, + "node_id": "MDEwOlJlcG9zaXRvcnk4NzI4NzQwMg==", + "name": "schedule-display-plugin", + "full_name": "jenkinsci/schedule-display-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/schedule-display-plugin", + "description": "Schedule Display is a doclet plugin for Jenkins", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/schedule-display-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/schedule-display-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/schedule-display-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/schedule-display-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/schedule-display-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/schedule-display-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/schedule-display-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/schedule-display-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/schedule-display-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/schedule-display-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/schedule-display-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/schedule-display-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/schedule-display-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/schedule-display-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/schedule-display-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/schedule-display-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/schedule-display-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/schedule-display-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/schedule-display-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/schedule-display-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/schedule-display-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/schedule-display-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/schedule-display-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/schedule-display-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/schedule-display-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/schedule-display-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/schedule-display-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/schedule-display-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/schedule-display-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/schedule-display-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/schedule-display-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/schedule-display-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/schedule-display-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/schedule-display-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/schedule-display-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/schedule-display-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/schedule-display-plugin/deployments", + "created_at": "2017-04-05T08:47:57Z", + "updated_at": "2017-04-05T08:48:16Z", + "pushed_at": "2017-04-04T07:46:27Z", + "git_url": "git://github.com/jenkinsci/schedule-display-plugin.git", + "ssh_url": "git@github.com:jenkinsci/schedule-display-plugin.git", + "clone_url": "https://github.com/jenkinsci/schedule-display-plugin.git", + "svn_url": "https://github.com/jenkinsci/schedule-display-plugin", + "homepage": null, + "size": 19, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 88207979, + "node_id": "MDEwOlJlcG9zaXRvcnk4ODIwNzk3OQ==", + "name": "display-console-output-plugin", + "full_name": "jenkinsci/display-console-output-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/display-console-output-plugin", + "description": "A jenkins plugin that displays console output of last build.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/display-console-output-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/display-console-output-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/display-console-output-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/display-console-output-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/display-console-output-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/display-console-output-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/display-console-output-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/display-console-output-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/display-console-output-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/display-console-output-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/display-console-output-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/display-console-output-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/display-console-output-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/display-console-output-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/display-console-output-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/display-console-output-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/display-console-output-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/display-console-output-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/display-console-output-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/display-console-output-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/display-console-output-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/display-console-output-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/display-console-output-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/display-console-output-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/display-console-output-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/display-console-output-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/display-console-output-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/display-console-output-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/display-console-output-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/display-console-output-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/display-console-output-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/display-console-output-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/display-console-output-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/display-console-output-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/display-console-output-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/display-console-output-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/display-console-output-plugin/deployments", + "created_at": "2017-04-13T21:27:46Z", + "updated_at": "2019-07-11T17:42:49Z", + "pushed_at": "2018-03-23T16:54:22Z", + "git_url": "git://github.com/jenkinsci/display-console-output-plugin.git", + "ssh_url": "git@github.com:jenkinsci/display-console-output-plugin.git", + "clone_url": "https://github.com/jenkinsci/display-console-output-plugin.git", + "svn_url": "https://github.com/jenkinsci/display-console-output-plugin", + "homepage": "", + "size": 120, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 3, + "open_issues": 1, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 88531385, + "node_id": "MDEwOlJlcG9zaXRvcnk4ODUzMTM4NQ==", + "name": "bmc-policy-plugin", + "full_name": "jenkinsci/bmc-policy-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/bmc-policy-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/bmc-policy-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/bmc-policy-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/bmc-policy-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/bmc-policy-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/bmc-policy-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/bmc-policy-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/bmc-policy-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/bmc-policy-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/bmc-policy-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/bmc-policy-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/bmc-policy-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/bmc-policy-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/bmc-policy-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/bmc-policy-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/bmc-policy-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/bmc-policy-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/bmc-policy-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/bmc-policy-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/bmc-policy-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/bmc-policy-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/bmc-policy-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/bmc-policy-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/bmc-policy-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/bmc-policy-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/bmc-policy-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/bmc-policy-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/bmc-policy-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/bmc-policy-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/bmc-policy-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/bmc-policy-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/bmc-policy-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/bmc-policy-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/bmc-policy-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/bmc-policy-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/bmc-policy-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/bmc-policy-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/bmc-policy-plugin/deployments", + "created_at": "2017-04-17T17:16:51Z", + "updated_at": "2017-04-30T04:50:50Z", + "pushed_at": "2017-10-02T18:51:49Z", + "git_url": "git://github.com/jenkinsci/bmc-policy-plugin.git", + "ssh_url": "git@github.com:jenkinsci/bmc-policy-plugin.git", + "clone_url": "https://github.com/jenkinsci/bmc-policy-plugin.git", + "svn_url": "https://github.com/jenkinsci/bmc-policy-plugin", + "homepage": null, + "size": 19, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 88531506, + "node_id": "MDEwOlJlcG9zaXRvcnk4ODUzMTUwNg==", + "name": "dotnet-as-script-plugin", + "full_name": "jenkinsci/dotnet-as-script-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/dotnet-as-script-plugin", + "description": "A Jenkins plugin to enable the use of c# code as a normal build step", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/dotnet-as-script-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/dotnet-as-script-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/dotnet-as-script-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/dotnet-as-script-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/dotnet-as-script-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/dotnet-as-script-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/dotnet-as-script-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/dotnet-as-script-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/dotnet-as-script-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/dotnet-as-script-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/dotnet-as-script-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/dotnet-as-script-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/dotnet-as-script-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/dotnet-as-script-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/dotnet-as-script-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/dotnet-as-script-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/dotnet-as-script-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/dotnet-as-script-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/dotnet-as-script-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/dotnet-as-script-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/dotnet-as-script-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/dotnet-as-script-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/dotnet-as-script-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/dotnet-as-script-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/dotnet-as-script-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/dotnet-as-script-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/dotnet-as-script-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/dotnet-as-script-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/dotnet-as-script-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/dotnet-as-script-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/dotnet-as-script-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/dotnet-as-script-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/dotnet-as-script-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/dotnet-as-script-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/dotnet-as-script-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/dotnet-as-script-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/dotnet-as-script-plugin/deployments", + "created_at": "2017-04-17T17:18:02Z", + "updated_at": "2019-09-26T16:21:14Z", + "pushed_at": "2017-05-04T13:03:52Z", + "git_url": "git://github.com/jenkinsci/dotnet-as-script-plugin.git", + "ssh_url": "git@github.com:jenkinsci/dotnet-as-script-plugin.git", + "clone_url": "https://github.com/jenkinsci/dotnet-as-script-plugin.git", + "svn_url": "https://github.com/jenkinsci/dotnet-as-script-plugin", + "homepage": null, + "size": 67, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 1, + "open_issues": 1, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 88531563, + "node_id": "MDEwOlJlcG9zaXRvcnk4ODUzMTU2Mw==", + "name": "block-same-builds-plugin", + "full_name": "jenkinsci/block-same-builds-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/block-same-builds-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/block-same-builds-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/block-same-builds-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/block-same-builds-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/block-same-builds-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/block-same-builds-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/block-same-builds-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/block-same-builds-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/block-same-builds-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/block-same-builds-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/block-same-builds-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/block-same-builds-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/block-same-builds-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/block-same-builds-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/block-same-builds-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/block-same-builds-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/block-same-builds-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/block-same-builds-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/block-same-builds-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/block-same-builds-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/block-same-builds-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/block-same-builds-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/block-same-builds-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/block-same-builds-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/block-same-builds-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/block-same-builds-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/block-same-builds-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/block-same-builds-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/block-same-builds-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/block-same-builds-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/block-same-builds-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/block-same-builds-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/block-same-builds-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/block-same-builds-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/block-same-builds-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/block-same-builds-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/block-same-builds-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/block-same-builds-plugin/deployments", + "created_at": "2017-04-17T17:18:37Z", + "updated_at": "2019-07-15T17:19:35Z", + "pushed_at": "2017-05-04T16:55:07Z", + "git_url": "git://github.com/jenkinsci/block-same-builds-plugin.git", + "ssh_url": "git@github.com:jenkinsci/block-same-builds-plugin.git", + "clone_url": "https://github.com/jenkinsci/block-same-builds-plugin.git", + "svn_url": "https://github.com/jenkinsci/block-same-builds-plugin", + "homepage": null, + "size": 263, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 88531608, + "node_id": "MDEwOlJlcG9zaXRvcnk4ODUzMTYwOA==", + "name": "vcvarsall-plugin", + "full_name": "jenkinsci/vcvarsall-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/vcvarsall-plugin", + "description": "Jenkins plugin for running vcvarsall.bat on Windows nodes with MSVC", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/vcvarsall-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/vcvarsall-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/vcvarsall-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/vcvarsall-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/vcvarsall-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/vcvarsall-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/vcvarsall-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/vcvarsall-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/vcvarsall-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/vcvarsall-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/vcvarsall-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/vcvarsall-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/vcvarsall-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/vcvarsall-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/vcvarsall-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/vcvarsall-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/vcvarsall-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/vcvarsall-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/vcvarsall-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/vcvarsall-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/vcvarsall-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/vcvarsall-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/vcvarsall-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/vcvarsall-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/vcvarsall-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/vcvarsall-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/vcvarsall-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/vcvarsall-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/vcvarsall-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/vcvarsall-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/vcvarsall-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/vcvarsall-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/vcvarsall-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/vcvarsall-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/vcvarsall-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/vcvarsall-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/vcvarsall-plugin/deployments", + "created_at": "2017-04-17T17:19:00Z", + "updated_at": "2019-09-17T05:57:51Z", + "pushed_at": "2019-09-17T05:57:49Z", + "git_url": "git://github.com/jenkinsci/vcvarsall-plugin.git", + "ssh_url": "git@github.com:jenkinsci/vcvarsall-plugin.git", + "clone_url": "https://github.com/jenkinsci/vcvarsall-plugin.git", + "svn_url": "https://github.com/jenkinsci/vcvarsall-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/vcvarsall+Plugin", + "size": 22, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 88531764, + "node_id": "MDEwOlJlcG9zaXRvcnk4ODUzMTc2NA==", + "name": "trilead-api-plugin", + "full_name": "jenkinsci/trilead-api-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/trilead-api-plugin", + "description": "A Jenkins plugin to provide access to the Trilead SSH library", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/trilead-api-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/trilead-api-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/trilead-api-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/trilead-api-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/trilead-api-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/trilead-api-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/trilead-api-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/trilead-api-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/trilead-api-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/trilead-api-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/trilead-api-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/trilead-api-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/trilead-api-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/trilead-api-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/trilead-api-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/trilead-api-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/trilead-api-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/trilead-api-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/trilead-api-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/trilead-api-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/trilead-api-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/trilead-api-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/trilead-api-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/trilead-api-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/trilead-api-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/trilead-api-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/trilead-api-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/trilead-api-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/trilead-api-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/trilead-api-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/trilead-api-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/trilead-api-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/trilead-api-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/trilead-api-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/trilead-api-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/trilead-api-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/trilead-api-plugin/deployments", + "created_at": "2017-04-17T17:20:47Z", + "updated_at": "2019-10-03T17:35:01Z", + "pushed_at": "2019-10-03T17:34:59Z", + "git_url": "git://github.com/jenkinsci/trilead-api-plugin.git", + "ssh_url": "git@github.com:jenkinsci/trilead-api-plugin.git", + "clone_url": "https://github.com/jenkinsci/trilead-api-plugin.git", + "svn_url": "https://github.com/jenkinsci/trilead-api-plugin", + "homepage": "", + "size": 22, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 88666877, + "node_id": "MDEwOlJlcG9zaXRvcnk4ODY2Njg3Nw==", + "name": "autocomplete-parameter-plugin", + "full_name": "jenkinsci/autocomplete-parameter-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/autocomplete-parameter-plugin", + "description": "A jenkins plugin that introduces parameters with autocomplete capabilities", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/autocomplete-parameter-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/autocomplete-parameter-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/autocomplete-parameter-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/autocomplete-parameter-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/autocomplete-parameter-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/autocomplete-parameter-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/autocomplete-parameter-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/autocomplete-parameter-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/autocomplete-parameter-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/autocomplete-parameter-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/autocomplete-parameter-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/autocomplete-parameter-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/autocomplete-parameter-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/autocomplete-parameter-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/autocomplete-parameter-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/autocomplete-parameter-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/autocomplete-parameter-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/autocomplete-parameter-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/autocomplete-parameter-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/autocomplete-parameter-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/autocomplete-parameter-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/autocomplete-parameter-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/autocomplete-parameter-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/autocomplete-parameter-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/autocomplete-parameter-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/autocomplete-parameter-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/autocomplete-parameter-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/autocomplete-parameter-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/autocomplete-parameter-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/autocomplete-parameter-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/autocomplete-parameter-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/autocomplete-parameter-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/autocomplete-parameter-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/autocomplete-parameter-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/autocomplete-parameter-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/autocomplete-parameter-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/autocomplete-parameter-plugin/deployments", + "created_at": "2017-04-18T20:19:29Z", + "updated_at": "2019-04-12T14:49:44Z", + "pushed_at": "2019-04-12T14:49:42Z", + "git_url": "git://github.com/jenkinsci/autocomplete-parameter-plugin.git", + "ssh_url": "git@github.com:jenkinsci/autocomplete-parameter-plugin.git", + "clone_url": "https://github.com/jenkinsci/autocomplete-parameter-plugin.git", + "svn_url": "https://github.com/jenkinsci/autocomplete-parameter-plugin", + "homepage": null, + "size": 192, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 5, + "open_issues": 2, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 89284813, + "node_id": "MDEwOlJlcG9zaXRvcnk4OTI4NDgxMw==", + "name": "electricflow-plugin", + "full_name": "jenkinsci/electricflow-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/electricflow-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/electricflow-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/electricflow-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/electricflow-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/electricflow-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/electricflow-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/electricflow-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/electricflow-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/electricflow-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/electricflow-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/electricflow-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/electricflow-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/electricflow-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/electricflow-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/electricflow-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/electricflow-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/electricflow-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/electricflow-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/electricflow-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/electricflow-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/electricflow-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/electricflow-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/electricflow-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/electricflow-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/electricflow-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/electricflow-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/electricflow-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/electricflow-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/electricflow-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/electricflow-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/electricflow-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/electricflow-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/electricflow-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/electricflow-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/electricflow-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/electricflow-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/electricflow-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/electricflow-plugin/deployments", + "created_at": "2017-04-24T20:37:06Z", + "updated_at": "2019-09-26T13:45:00Z", + "pushed_at": "2019-10-22T14:05:06Z", + "git_url": "git://github.com/jenkinsci/electricflow-plugin.git", + "ssh_url": "git@github.com:jenkinsci/electricflow-plugin.git", + "clone_url": "https://github.com/jenkinsci/electricflow-plugin.git", + "svn_url": "https://github.com/jenkinsci/electricflow-plugin", + "homepage": null, + "size": 304, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 5, + "open_issues": 3, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 89505481, + "node_id": "MDEwOlJlcG9zaXRvcnk4OTUwNTQ4MQ==", + "name": "envinject-api-plugin", + "full_name": "jenkinsci/envinject-api-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/envinject-api-plugin", + "description": "EnvInject API plugin for Jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/envinject-api-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/envinject-api-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/envinject-api-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/envinject-api-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/envinject-api-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/envinject-api-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/envinject-api-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/envinject-api-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/envinject-api-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/envinject-api-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/envinject-api-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/envinject-api-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/envinject-api-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/envinject-api-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/envinject-api-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/envinject-api-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/envinject-api-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/envinject-api-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/envinject-api-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/envinject-api-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/envinject-api-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/envinject-api-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/envinject-api-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/envinject-api-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/envinject-api-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/envinject-api-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/envinject-api-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/envinject-api-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/envinject-api-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/envinject-api-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/envinject-api-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/envinject-api-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/envinject-api-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/envinject-api-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/envinject-api-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/envinject-api-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/envinject-api-plugin/deployments", + "created_at": "2017-04-26T16:52:19Z", + "updated_at": "2019-10-24T09:03:45Z", + "pushed_at": "2019-10-24T09:03:43Z", + "git_url": "git://github.com/jenkinsci/envinject-api-plugin.git", + "ssh_url": "git@github.com:jenkinsci/envinject-api-plugin.git", + "clone_url": "https://github.com/jenkinsci/envinject-api-plugin.git", + "svn_url": "https://github.com/jenkinsci/envinject-api-plugin", + "homepage": null, + "size": 105, + "stargazers_count": 6, + "watchers_count": 6, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 7, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 7, + "open_issues": 1, + "watchers": 6, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 89923982, + "node_id": "MDEwOlJlcG9zaXRvcnk4OTkyMzk4Mg==", + "name": "ranorex-integration-plugin", + "full_name": "jenkinsci/ranorex-integration-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/ranorex-integration-plugin", + "description": "Plug-in that allows you to run a Ranorex Test within Jenkins as Build Step", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/ranorex-integration-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/ranorex-integration-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/ranorex-integration-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/ranorex-integration-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/ranorex-integration-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/ranorex-integration-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/ranorex-integration-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/ranorex-integration-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/ranorex-integration-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/ranorex-integration-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/ranorex-integration-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/ranorex-integration-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/ranorex-integration-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/ranorex-integration-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/ranorex-integration-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/ranorex-integration-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/ranorex-integration-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/ranorex-integration-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/ranorex-integration-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/ranorex-integration-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/ranorex-integration-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/ranorex-integration-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/ranorex-integration-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/ranorex-integration-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/ranorex-integration-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/ranorex-integration-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/ranorex-integration-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/ranorex-integration-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/ranorex-integration-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/ranorex-integration-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/ranorex-integration-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/ranorex-integration-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/ranorex-integration-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/ranorex-integration-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/ranorex-integration-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/ranorex-integration-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/ranorex-integration-plugin/deployments", + "created_at": "2017-05-01T12:55:52Z", + "updated_at": "2019-10-17T06:46:37Z", + "pushed_at": "2019-10-24T12:10:24Z", + "git_url": "git://github.com/jenkinsci/ranorex-integration-plugin.git", + "ssh_url": "git@github.com:jenkinsci/ranorex-integration-plugin.git", + "clone_url": "https://github.com/jenkinsci/ranorex-integration-plugin.git", + "svn_url": "https://github.com/jenkinsci/ranorex-integration-plugin", + "homepage": "", + "size": 211, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 2, + "open_issues": 0, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 89924138, + "node_id": "MDEwOlJlcG9zaXRvcnk4OTkyNDEzOA==", + "name": "wso2id-oauth-plugin", + "full_name": "jenkinsci/wso2id-oauth-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/wso2id-oauth-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/wso2id-oauth-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/wso2id-oauth-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/wso2id-oauth-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/wso2id-oauth-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/wso2id-oauth-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/wso2id-oauth-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/wso2id-oauth-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/wso2id-oauth-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/wso2id-oauth-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/wso2id-oauth-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/wso2id-oauth-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/wso2id-oauth-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/wso2id-oauth-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/wso2id-oauth-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/wso2id-oauth-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/wso2id-oauth-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/wso2id-oauth-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/wso2id-oauth-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/wso2id-oauth-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/wso2id-oauth-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/wso2id-oauth-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/wso2id-oauth-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/wso2id-oauth-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/wso2id-oauth-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/wso2id-oauth-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/wso2id-oauth-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/wso2id-oauth-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/wso2id-oauth-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/wso2id-oauth-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/wso2id-oauth-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/wso2id-oauth-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/wso2id-oauth-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/wso2id-oauth-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/wso2id-oauth-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/wso2id-oauth-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/wso2id-oauth-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/wso2id-oauth-plugin/deployments", + "created_at": "2017-05-01T12:58:08Z", + "updated_at": "2017-05-02T08:04:03Z", + "pushed_at": "2017-05-02T15:19:02Z", + "git_url": "git://github.com/jenkinsci/wso2id-oauth-plugin.git", + "ssh_url": "git@github.com:jenkinsci/wso2id-oauth-plugin.git", + "clone_url": "https://github.com/jenkinsci/wso2id-oauth-plugin.git", + "svn_url": "https://github.com/jenkinsci/wso2id-oauth-plugin", + "homepage": null, + "size": 34, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 89924505, + "node_id": "MDEwOlJlcG9zaXRvcnk4OTkyNDUwNQ==", + "name": "swamp-plugin", + "full_name": "jenkinsci/swamp-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/swamp-plugin", + "description": "A Jenkins plug-in that allows projects using Jenkins to perform static code assessments in the SWAMP as part of a build.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/swamp-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/swamp-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/swamp-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/swamp-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/swamp-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/swamp-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/swamp-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/swamp-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/swamp-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/swamp-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/swamp-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/swamp-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/swamp-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/swamp-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/swamp-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/swamp-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/swamp-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/swamp-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/swamp-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/swamp-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/swamp-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/swamp-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/swamp-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/swamp-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/swamp-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/swamp-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/swamp-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/swamp-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/swamp-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/swamp-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/swamp-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/swamp-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/swamp-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/swamp-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/swamp-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/swamp-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/swamp-plugin/deployments", + "created_at": "2017-05-01T13:02:55Z", + "updated_at": "2018-10-01T22:14:19Z", + "pushed_at": "2018-10-01T22:14:17Z", + "git_url": "git://github.com/jenkinsci/swamp-plugin.git", + "ssh_url": "git@github.com:jenkinsci/swamp-plugin.git", + "clone_url": "https://github.com/jenkinsci/swamp-plugin.git", + "svn_url": "https://github.com/jenkinsci/swamp-plugin", + "homepage": null, + "size": 20708, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 89924546, + "node_id": "MDEwOlJlcG9zaXRvcnk4OTkyNDU0Ng==", + "name": "js-preferences", + "full_name": "jenkinsci/js-preferences", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/js-preferences", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/js-preferences", + "forks_url": "https://api.github.com/repos/jenkinsci/js-preferences/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/js-preferences/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/js-preferences/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/js-preferences/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/js-preferences/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/js-preferences/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/js-preferences/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/js-preferences/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/js-preferences/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/js-preferences/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/js-preferences/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/js-preferences/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/js-preferences/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/js-preferences/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/js-preferences/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/js-preferences/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/js-preferences/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/js-preferences/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/js-preferences/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/js-preferences/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/js-preferences/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/js-preferences/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/js-preferences/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/js-preferences/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/js-preferences/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/js-preferences/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/js-preferences/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/js-preferences/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/js-preferences/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/js-preferences/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/js-preferences/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/js-preferences/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/js-preferences/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/js-preferences/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/js-preferences/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/js-preferences/deployments", + "created_at": "2017-05-01T13:03:31Z", + "updated_at": "2017-05-10T13:10:55Z", + "pushed_at": "2017-07-21T12:00:50Z", + "git_url": "git://github.com/jenkinsci/js-preferences.git", + "ssh_url": "git@github.com:jenkinsci/js-preferences.git", + "clone_url": "https://github.com/jenkinsci/js-preferences.git", + "svn_url": "https://github.com/jenkinsci/js-preferences", + "homepage": null, + "size": 431, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": true, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 2, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 89924673, + "node_id": "MDEwOlJlcG9zaXRvcnk4OTkyNDY3Mw==", + "name": "flexdeploy-plugin", + "full_name": "jenkinsci/flexdeploy-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/flexdeploy-plugin", + "description": "A plugin for Jenkins to execute FlexDeploy workflows", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/flexdeploy-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/flexdeploy-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/flexdeploy-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/flexdeploy-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/flexdeploy-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/flexdeploy-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/flexdeploy-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/flexdeploy-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/flexdeploy-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/flexdeploy-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/flexdeploy-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/flexdeploy-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/flexdeploy-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/flexdeploy-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/flexdeploy-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/flexdeploy-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/flexdeploy-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/flexdeploy-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/flexdeploy-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/flexdeploy-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/flexdeploy-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/flexdeploy-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/flexdeploy-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/flexdeploy-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/flexdeploy-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/flexdeploy-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/flexdeploy-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/flexdeploy-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/flexdeploy-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/flexdeploy-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/flexdeploy-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/flexdeploy-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/flexdeploy-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/flexdeploy-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/flexdeploy-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/flexdeploy-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/flexdeploy-plugin/deployments", + "created_at": "2017-05-01T13:05:10Z", + "updated_at": "2017-05-01T13:05:16Z", + "pushed_at": "2017-10-04T18:31:06Z", + "git_url": "git://github.com/jenkinsci/flexdeploy-plugin.git", + "ssh_url": "git@github.com:jenkinsci/flexdeploy-plugin.git", + "clone_url": "https://github.com/jenkinsci/flexdeploy-plugin.git", + "svn_url": "https://github.com/jenkinsci/flexdeploy-plugin", + "homepage": null, + "size": 77, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 89924855, + "node_id": "MDEwOlJlcG9zaXRvcnk4OTkyNDg1NQ==", + "name": "spring-initalzr-plugin", + "full_name": "jenkinsci/spring-initalzr-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/spring-initalzr-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/spring-initalzr-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/spring-initalzr-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/spring-initalzr-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/spring-initalzr-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/spring-initalzr-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/spring-initalzr-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/spring-initalzr-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/spring-initalzr-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/spring-initalzr-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/spring-initalzr-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/spring-initalzr-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/spring-initalzr-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/spring-initalzr-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/spring-initalzr-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/spring-initalzr-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/spring-initalzr-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/spring-initalzr-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/spring-initalzr-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/spring-initalzr-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/spring-initalzr-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/spring-initalzr-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/spring-initalzr-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/spring-initalzr-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/spring-initalzr-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/spring-initalzr-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/spring-initalzr-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/spring-initalzr-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/spring-initalzr-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/spring-initalzr-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/spring-initalzr-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/spring-initalzr-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/spring-initalzr-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/spring-initalzr-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/spring-initalzr-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/spring-initalzr-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/spring-initalzr-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/spring-initalzr-plugin/deployments", + "created_at": "2017-05-01T13:07:56Z", + "updated_at": "2017-05-03T18:32:45Z", + "pushed_at": "2017-05-11T07:24:12Z", + "git_url": "git://github.com/jenkinsci/spring-initalzr-plugin.git", + "ssh_url": "git@github.com:jenkinsci/spring-initalzr-plugin.git", + "clone_url": "https://github.com/jenkinsci/spring-initalzr-plugin.git", + "svn_url": "https://github.com/jenkinsci/spring-initalzr-plugin", + "homepage": null, + "size": 39368, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 90784432, + "node_id": "MDEwOlJlcG9zaXRvcnk5MDc4NDQzMg==", + "name": "ibm-cloud-devops-plugin", + "full_name": "jenkinsci/ibm-cloud-devops-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/ibm-cloud-devops-plugin", + "description": "ibm-cloud-devops", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/ibm-cloud-devops-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/ibm-cloud-devops-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/ibm-cloud-devops-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/ibm-cloud-devops-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/ibm-cloud-devops-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/ibm-cloud-devops-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/ibm-cloud-devops-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/ibm-cloud-devops-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/ibm-cloud-devops-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/ibm-cloud-devops-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/ibm-cloud-devops-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/ibm-cloud-devops-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/ibm-cloud-devops-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/ibm-cloud-devops-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/ibm-cloud-devops-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/ibm-cloud-devops-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/ibm-cloud-devops-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/ibm-cloud-devops-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/ibm-cloud-devops-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/ibm-cloud-devops-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/ibm-cloud-devops-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/ibm-cloud-devops-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/ibm-cloud-devops-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/ibm-cloud-devops-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/ibm-cloud-devops-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/ibm-cloud-devops-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/ibm-cloud-devops-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/ibm-cloud-devops-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/ibm-cloud-devops-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/ibm-cloud-devops-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/ibm-cloud-devops-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/ibm-cloud-devops-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/ibm-cloud-devops-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/ibm-cloud-devops-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/ibm-cloud-devops-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/ibm-cloud-devops-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/ibm-cloud-devops-plugin/deployments", + "created_at": "2017-05-09T19:32:36Z", + "updated_at": "2019-09-18T21:33:19Z", + "pushed_at": "2019-09-18T21:33:17Z", + "git_url": "git://github.com/jenkinsci/ibm-cloud-devops-plugin.git", + "ssh_url": "git@github.com:jenkinsci/ibm-cloud-devops-plugin.git", + "clone_url": "https://github.com/jenkinsci/ibm-cloud-devops-plugin.git", + "svn_url": "https://github.com/jenkinsci/ibm-cloud-devops-plugin", + "homepage": null, + "size": 14462, + "stargazers_count": 6, + "watchers_count": 6, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 11, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 11, + "open_issues": 0, + "watchers": 6, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 90784615, + "node_id": "MDEwOlJlcG9zaXRvcnk5MDc4NDYxNQ==", + "name": "teresa-build-plugin", + "full_name": "jenkinsci/teresa-build-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/teresa-build-plugin", + "description": "Jenkins nodejs plugin http://jenkins-ci.org/", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/teresa-build-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/teresa-build-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/teresa-build-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/teresa-build-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/teresa-build-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/teresa-build-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/teresa-build-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/teresa-build-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/teresa-build-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/teresa-build-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/teresa-build-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/teresa-build-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/teresa-build-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/teresa-build-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/teresa-build-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/teresa-build-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/teresa-build-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/teresa-build-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/teresa-build-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/teresa-build-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/teresa-build-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/teresa-build-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/teresa-build-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/teresa-build-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/teresa-build-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/teresa-build-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/teresa-build-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/teresa-build-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/teresa-build-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/teresa-build-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/teresa-build-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/teresa-build-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/teresa-build-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/teresa-build-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/teresa-build-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/teresa-build-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/teresa-build-plugin/deployments", + "created_at": "2017-05-09T19:34:38Z", + "updated_at": "2017-05-09T21:05:10Z", + "pushed_at": "2017-05-06T15:57:00Z", + "git_url": "git://github.com/jenkinsci/teresa-build-plugin.git", + "ssh_url": "git@github.com:jenkinsci/teresa-build-plugin.git", + "clone_url": "https://github.com/jenkinsci/teresa-build-plugin.git", + "svn_url": "https://github.com/jenkinsci/teresa-build-plugin", + "homepage": "", + "size": 19796, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 90785054, + "node_id": "MDEwOlJlcG9zaXRvcnk5MDc4NTA1NA==", + "name": "pipeline-github-plugin", + "full_name": "jenkinsci/pipeline-github-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pipeline-github-plugin", + "description": "Pipeline: GitHub", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/pipeline-github-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pipeline-github-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pipeline-github-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pipeline-github-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pipeline-github-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pipeline-github-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pipeline-github-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pipeline-github-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pipeline-github-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pipeline-github-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pipeline-github-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pipeline-github-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pipeline-github-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pipeline-github-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pipeline-github-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pipeline-github-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pipeline-github-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pipeline-github-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pipeline-github-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pipeline-github-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pipeline-github-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pipeline-github-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pipeline-github-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pipeline-github-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pipeline-github-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pipeline-github-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pipeline-github-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pipeline-github-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pipeline-github-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pipeline-github-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pipeline-github-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pipeline-github-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pipeline-github-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pipeline-github-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pipeline-github-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pipeline-github-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pipeline-github-plugin/deployments", + "created_at": "2017-05-09T19:39:50Z", + "updated_at": "2019-10-25T00:42:59Z", + "pushed_at": "2019-10-16T03:24:57Z", + "git_url": "git://github.com/jenkinsci/pipeline-github-plugin.git", + "ssh_url": "git@github.com:jenkinsci/pipeline-github-plugin.git", + "clone_url": "https://github.com/jenkinsci/pipeline-github-plugin.git", + "svn_url": "https://github.com/jenkinsci/pipeline-github-plugin", + "homepage": "", + "size": 153, + "stargazers_count": 93, + "watchers_count": 93, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 38, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 14, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 38, + "open_issues": 14, + "watchers": 93, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 90797868, + "node_id": "MDEwOlJlcG9zaXRvcnk5MDc5Nzg2OA==", + "name": "sonar-quality-gates-plugin", + "full_name": "jenkinsci/sonar-quality-gates-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/sonar-quality-gates-plugin", + "description": "Jenkins plugin that fails the build if the predefined sonar quality gates are not green.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/sonar-quality-gates-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/sonar-quality-gates-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/sonar-quality-gates-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/sonar-quality-gates-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/sonar-quality-gates-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/sonar-quality-gates-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/sonar-quality-gates-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/sonar-quality-gates-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/sonar-quality-gates-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/sonar-quality-gates-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/sonar-quality-gates-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/sonar-quality-gates-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/sonar-quality-gates-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/sonar-quality-gates-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/sonar-quality-gates-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/sonar-quality-gates-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/sonar-quality-gates-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/sonar-quality-gates-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/sonar-quality-gates-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/sonar-quality-gates-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/sonar-quality-gates-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/sonar-quality-gates-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/sonar-quality-gates-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/sonar-quality-gates-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/sonar-quality-gates-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/sonar-quality-gates-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/sonar-quality-gates-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/sonar-quality-gates-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/sonar-quality-gates-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/sonar-quality-gates-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/sonar-quality-gates-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/sonar-quality-gates-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/sonar-quality-gates-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/sonar-quality-gates-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/sonar-quality-gates-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/sonar-quality-gates-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/sonar-quality-gates-plugin/deployments", + "created_at": "2017-05-09T22:36:21Z", + "updated_at": "2019-09-09T12:15:00Z", + "pushed_at": "2019-08-16T12:07:47Z", + "git_url": "git://github.com/jenkinsci/sonar-quality-gates-plugin.git", + "ssh_url": "git@github.com:jenkinsci/sonar-quality-gates-plugin.git", + "clone_url": "https://github.com/jenkinsci/sonar-quality-gates-plugin.git", + "svn_url": "https://github.com/jenkinsci/sonar-quality-gates-plugin", + "homepage": "", + "size": 345, + "stargazers_count": 14, + "watchers_count": 14, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": true, + "forks_count": 22, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 22, + "open_issues": 0, + "watchers": 14, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 90800074, + "node_id": "MDEwOlJlcG9zaXRvcnk5MDgwMDA3NA==", + "name": "build-notifications-plugin", + "full_name": "jenkinsci/build-notifications-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/build-notifications-plugin", + "description": "A Jenkins plugin to notify you about a build.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/build-notifications-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/build-notifications-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/build-notifications-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/build-notifications-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/build-notifications-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/build-notifications-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/build-notifications-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/build-notifications-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/build-notifications-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/build-notifications-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/build-notifications-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/build-notifications-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/build-notifications-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/build-notifications-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/build-notifications-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/build-notifications-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/build-notifications-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/build-notifications-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/build-notifications-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/build-notifications-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/build-notifications-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/build-notifications-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/build-notifications-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/build-notifications-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/build-notifications-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/build-notifications-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/build-notifications-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/build-notifications-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/build-notifications-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/build-notifications-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/build-notifications-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/build-notifications-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/build-notifications-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/build-notifications-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/build-notifications-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/build-notifications-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/build-notifications-plugin/deployments", + "created_at": "2017-05-09T23:14:02Z", + "updated_at": "2019-10-08T12:12:21Z", + "pushed_at": "2019-10-08T12:12:19Z", + "git_url": "git://github.com/jenkinsci/build-notifications-plugin.git", + "ssh_url": "git@github.com:jenkinsci/build-notifications-plugin.git", + "clone_url": "https://github.com/jenkinsci/build-notifications-plugin.git", + "svn_url": "https://github.com/jenkinsci/build-notifications-plugin", + "homepage": null, + "size": 138, + "stargazers_count": 19, + "watchers_count": 19, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 12, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 12, + "open_issues": 0, + "watchers": 19, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 91018109, + "node_id": "MDEwOlJlcG9zaXRvcnk5MTAxODEwOQ==", + "name": "customized-build-message-plugin", + "full_name": "jenkinsci/customized-build-message-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/customized-build-message-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/customized-build-message-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/customized-build-message-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/customized-build-message-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/customized-build-message-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/customized-build-message-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/customized-build-message-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/customized-build-message-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/customized-build-message-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/customized-build-message-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/customized-build-message-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/customized-build-message-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/customized-build-message-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/customized-build-message-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/customized-build-message-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/customized-build-message-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/customized-build-message-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/customized-build-message-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/customized-build-message-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/customized-build-message-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/customized-build-message-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/customized-build-message-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/customized-build-message-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/customized-build-message-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/customized-build-message-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/customized-build-message-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/customized-build-message-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/customized-build-message-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/customized-build-message-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/customized-build-message-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/customized-build-message-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/customized-build-message-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/customized-build-message-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/customized-build-message-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/customized-build-message-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/customized-build-message-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/customized-build-message-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/customized-build-message-plugin/deployments", + "created_at": "2017-05-11T19:56:06Z", + "updated_at": "2018-07-15T17:43:48Z", + "pushed_at": "2018-07-15T17:44:26Z", + "git_url": "git://github.com/jenkinsci/customized-build-message-plugin.git", + "ssh_url": "git@github.com:jenkinsci/customized-build-message-plugin.git", + "clone_url": "https://github.com/jenkinsci/customized-build-message-plugin.git", + "svn_url": "https://github.com/jenkinsci/customized-build-message-plugin", + "homepage": null, + "size": 742, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 91094868, + "node_id": "MDEwOlJlcG9zaXRvcnk5MTA5NDg2OA==", + "name": "sqs-notification-plugin", + "full_name": "jenkinsci/sqs-notification-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/sqs-notification-plugin", + "description": "AWS SQS notifier plugin for Jenkins", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/sqs-notification-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/sqs-notification-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/sqs-notification-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/sqs-notification-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/sqs-notification-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/sqs-notification-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/sqs-notification-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/sqs-notification-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/sqs-notification-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/sqs-notification-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/sqs-notification-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/sqs-notification-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/sqs-notification-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/sqs-notification-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/sqs-notification-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/sqs-notification-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/sqs-notification-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/sqs-notification-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/sqs-notification-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/sqs-notification-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/sqs-notification-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/sqs-notification-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/sqs-notification-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/sqs-notification-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/sqs-notification-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/sqs-notification-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/sqs-notification-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/sqs-notification-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/sqs-notification-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/sqs-notification-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/sqs-notification-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/sqs-notification-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/sqs-notification-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/sqs-notification-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/sqs-notification-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/sqs-notification-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/sqs-notification-plugin/deployments", + "created_at": "2017-05-12T13:35:40Z", + "updated_at": "2017-05-12T13:35:48Z", + "pushed_at": "2017-05-11T00:13:03Z", + "git_url": "git://github.com/jenkinsci/sqs-notification-plugin.git", + "ssh_url": "git@github.com:jenkinsci/sqs-notification-plugin.git", + "clone_url": "https://github.com/jenkinsci/sqs-notification-plugin.git", + "svn_url": "https://github.com/jenkinsci/sqs-notification-plugin", + "homepage": "", + "size": 55, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 91094945, + "node_id": "MDEwOlJlcG9zaXRvcnk5MTA5NDk0NQ==", + "name": "js-builder-jest", + "full_name": "jenkinsci/js-builder-jest", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/js-builder-jest", + "description": "Adds support for running tests with Jest to Jenkins js-builder", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/js-builder-jest", + "forks_url": "https://api.github.com/repos/jenkinsci/js-builder-jest/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/js-builder-jest/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/js-builder-jest/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/js-builder-jest/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/js-builder-jest/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/js-builder-jest/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/js-builder-jest/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/js-builder-jest/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/js-builder-jest/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/js-builder-jest/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/js-builder-jest/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/js-builder-jest/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/js-builder-jest/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/js-builder-jest/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/js-builder-jest/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/js-builder-jest/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/js-builder-jest/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/js-builder-jest/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/js-builder-jest/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/js-builder-jest/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/js-builder-jest/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/js-builder-jest/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/js-builder-jest/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/js-builder-jest/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/js-builder-jest/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/js-builder-jest/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/js-builder-jest/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/js-builder-jest/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/js-builder-jest/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/js-builder-jest/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/js-builder-jest/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/js-builder-jest/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/js-builder-jest/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/js-builder-jest/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/js-builder-jest/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/js-builder-jest/deployments", + "created_at": "2017-05-12T13:36:29Z", + "updated_at": "2017-05-12T13:36:45Z", + "pushed_at": "2017-08-16T19:17:21Z", + "git_url": "git://github.com/jenkinsci/js-builder-jest.git", + "ssh_url": "git@github.com:jenkinsci/js-builder-jest.git", + "clone_url": "https://github.com/jenkinsci/js-builder-jest.git", + "svn_url": "https://github.com/jenkinsci/js-builder-jest", + "homepage": null, + "size": 11, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 2, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 91359443, + "node_id": "MDEwOlJlcG9zaXRvcnk5MTM1OTQ0Mw==", + "name": "view26-plugin", + "full_name": "jenkinsci/view26-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/view26-plugin", + "description": "Plugin to submit JUnit test result to VIEW26.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/view26-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/view26-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/view26-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/view26-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/view26-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/view26-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/view26-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/view26-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/view26-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/view26-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/view26-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/view26-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/view26-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/view26-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/view26-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/view26-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/view26-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/view26-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/view26-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/view26-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/view26-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/view26-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/view26-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/view26-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/view26-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/view26-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/view26-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/view26-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/view26-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/view26-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/view26-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/view26-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/view26-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/view26-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/view26-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/view26-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/view26-plugin/deployments", + "created_at": "2017-05-15T16:22:10Z", + "updated_at": "2018-05-18T16:32:22Z", + "pushed_at": "2018-05-18T16:32:21Z", + "git_url": "git://github.com/jenkinsci/view26-plugin.git", + "ssh_url": "git@github.com:jenkinsci/view26-plugin.git", + "clone_url": "https://github.com/jenkinsci/view26-plugin.git", + "svn_url": "https://github.com/jenkinsci/view26-plugin", + "homepage": null, + "size": 262, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 91488594, + "node_id": "MDEwOlJlcG9zaXRvcnk5MTQ4ODU5NA==", + "name": "applatix-plugin", + "full_name": "jenkinsci/applatix-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/applatix-plugin", + "description": "Applatix plugins for Jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/applatix-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/applatix-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/applatix-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/applatix-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/applatix-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/applatix-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/applatix-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/applatix-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/applatix-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/applatix-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/applatix-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/applatix-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/applatix-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/applatix-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/applatix-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/applatix-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/applatix-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/applatix-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/applatix-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/applatix-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/applatix-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/applatix-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/applatix-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/applatix-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/applatix-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/applatix-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/applatix-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/applatix-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/applatix-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/applatix-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/applatix-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/applatix-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/applatix-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/applatix-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/applatix-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/applatix-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/applatix-plugin/deployments", + "created_at": "2017-05-16T17:58:29Z", + "updated_at": "2017-10-05T21:50:23Z", + "pushed_at": "2017-07-05T20:35:38Z", + "git_url": "git://github.com/jenkinsci/applatix-plugin.git", + "ssh_url": "git@github.com:jenkinsci/applatix-plugin.git", + "clone_url": "https://github.com/jenkinsci/applatix-plugin.git", + "svn_url": "https://github.com/jenkinsci/applatix-plugin", + "homepage": null, + "size": 20, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 92406763, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjQwNjc2Mw==", + "name": "jira-finder-plugin", + "full_name": "jenkinsci/jira-finder-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jira-finder-plugin", + "description": "JiraFa Jenkins plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/jira-finder-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/jira-finder-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jira-finder-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jira-finder-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jira-finder-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jira-finder-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jira-finder-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jira-finder-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jira-finder-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jira-finder-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jira-finder-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jira-finder-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jira-finder-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jira-finder-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jira-finder-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jira-finder-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jira-finder-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jira-finder-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jira-finder-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jira-finder-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jira-finder-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jira-finder-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jira-finder-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jira-finder-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jira-finder-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jira-finder-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jira-finder-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jira-finder-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jira-finder-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jira-finder-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jira-finder-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jira-finder-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jira-finder-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jira-finder-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jira-finder-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jira-finder-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jira-finder-plugin/deployments", + "created_at": "2017-05-25T13:36:49Z", + "updated_at": "2017-05-25T13:36:58Z", + "pushed_at": "2018-12-13T12:46:13Z", + "git_url": "git://github.com/jenkinsci/jira-finder-plugin.git", + "ssh_url": "git@github.com:jenkinsci/jira-finder-plugin.git", + "clone_url": "https://github.com/jenkinsci/jira-finder-plugin.git", + "svn_url": "https://github.com/jenkinsci/jira-finder-plugin", + "homepage": null, + "size": 49, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 3, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 93019359, + "node_id": "MDEwOlJlcG9zaXRvcnk5MzAxOTM1OQ==", + "name": "perfci-plugin", + "full_name": "jenkinsci/perfci-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/perfci-plugin", + "description": "Allow users to run performance with JMeter and a report", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/perfci-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/perfci-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/perfci-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/perfci-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/perfci-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/perfci-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/perfci-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/perfci-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/perfci-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/perfci-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/perfci-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/perfci-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/perfci-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/perfci-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/perfci-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/perfci-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/perfci-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/perfci-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/perfci-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/perfci-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/perfci-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/perfci-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/perfci-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/perfci-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/perfci-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/perfci-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/perfci-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/perfci-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/perfci-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/perfci-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/perfci-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/perfci-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/perfci-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/perfci-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/perfci-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/perfci-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/perfci-plugin/deployments", + "created_at": "2017-06-01T05:21:43Z", + "updated_at": "2017-06-01T05:21:50Z", + "pushed_at": "2017-05-26T15:31:40Z", + "git_url": "git://github.com/jenkinsci/perfci-plugin.git", + "ssh_url": "git@github.com:jenkinsci/perfci-plugin.git", + "clone_url": "https://github.com/jenkinsci/perfci-plugin.git", + "svn_url": "https://github.com/jenkinsci/perfci-plugin", + "homepage": null, + "size": 662, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 93019402, + "node_id": "MDEwOlJlcG9zaXRvcnk5MzAxOTQwMg==", + "name": "xlrelease-var-setter-plugin", + "full_name": "jenkinsci/xlrelease-var-setter-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/xlrelease-var-setter-plugin", + "description": "Add or update variables values into a running release", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/xlrelease-var-setter-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/xlrelease-var-setter-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/xlrelease-var-setter-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/xlrelease-var-setter-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/xlrelease-var-setter-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/xlrelease-var-setter-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/xlrelease-var-setter-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/xlrelease-var-setter-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/xlrelease-var-setter-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/xlrelease-var-setter-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/xlrelease-var-setter-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/xlrelease-var-setter-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/xlrelease-var-setter-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/xlrelease-var-setter-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/xlrelease-var-setter-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/xlrelease-var-setter-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/xlrelease-var-setter-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/xlrelease-var-setter-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/xlrelease-var-setter-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/xlrelease-var-setter-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/xlrelease-var-setter-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/xlrelease-var-setter-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/xlrelease-var-setter-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/xlrelease-var-setter-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/xlrelease-var-setter-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/xlrelease-var-setter-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/xlrelease-var-setter-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/xlrelease-var-setter-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/xlrelease-var-setter-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/xlrelease-var-setter-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/xlrelease-var-setter-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/xlrelease-var-setter-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/xlrelease-var-setter-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/xlrelease-var-setter-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/xlrelease-var-setter-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/xlrelease-var-setter-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/xlrelease-var-setter-plugin/deployments", + "created_at": "2017-06-01T05:22:28Z", + "updated_at": "2017-07-20T08:56:26Z", + "pushed_at": "2018-02-06T15:35:55Z", + "git_url": "git://github.com/jenkinsci/xlrelease-var-setter-plugin.git", + "ssh_url": "git@github.com:jenkinsci/xlrelease-var-setter-plugin.git", + "clone_url": "https://github.com/jenkinsci/xlrelease-var-setter-plugin.git", + "svn_url": "https://github.com/jenkinsci/xlrelease-var-setter-plugin", + "homepage": null, + "size": 31, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 3, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 93019434, + "node_id": "MDEwOlJlcG9zaXRvcnk5MzAxOTQzNA==", + "name": "date-parameter-plugin", + "full_name": "jenkinsci/date-parameter-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/date-parameter-plugin", + "description": "Date paramter plugin for jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/date-parameter-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/date-parameter-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/date-parameter-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/date-parameter-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/date-parameter-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/date-parameter-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/date-parameter-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/date-parameter-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/date-parameter-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/date-parameter-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/date-parameter-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/date-parameter-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/date-parameter-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/date-parameter-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/date-parameter-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/date-parameter-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/date-parameter-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/date-parameter-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/date-parameter-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/date-parameter-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/date-parameter-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/date-parameter-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/date-parameter-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/date-parameter-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/date-parameter-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/date-parameter-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/date-parameter-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/date-parameter-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/date-parameter-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/date-parameter-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/date-parameter-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/date-parameter-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/date-parameter-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/date-parameter-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/date-parameter-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/date-parameter-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/date-parameter-plugin/deployments", + "created_at": "2017-06-01T05:22:56Z", + "updated_at": "2019-04-11T23:30:25Z", + "pushed_at": "2019-08-08T22:31:33Z", + "git_url": "git://github.com/jenkinsci/date-parameter-plugin.git", + "ssh_url": "git@github.com:jenkinsci/date-parameter-plugin.git", + "clone_url": "https://github.com/jenkinsci/date-parameter-plugin.git", + "svn_url": "https://github.com/jenkinsci/date-parameter-plugin", + "homepage": null, + "size": 52, + "stargazers_count": 11, + "watchers_count": 11, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 7, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 4, + "license": null, + "forks": 7, + "open_issues": 4, + "watchers": 11, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 93040156, + "node_id": "MDEwOlJlcG9zaXRvcnk5MzA0MDE1Ng==", + "name": "easyqa-plugin", + "full_name": "jenkinsci/easyqa-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/easyqa-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/easyqa-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/easyqa-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/easyqa-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/easyqa-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/easyqa-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/easyqa-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/easyqa-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/easyqa-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/easyqa-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/easyqa-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/easyqa-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/easyqa-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/easyqa-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/easyqa-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/easyqa-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/easyqa-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/easyqa-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/easyqa-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/easyqa-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/easyqa-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/easyqa-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/easyqa-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/easyqa-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/easyqa-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/easyqa-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/easyqa-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/easyqa-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/easyqa-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/easyqa-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/easyqa-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/easyqa-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/easyqa-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/easyqa-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/easyqa-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/easyqa-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/easyqa-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/easyqa-plugin/deployments", + "created_at": "2017-06-01T09:26:28Z", + "updated_at": "2017-06-01T09:26:36Z", + "pushed_at": "2017-06-02T11:29:23Z", + "git_url": "git://github.com/jenkinsci/easyqa-plugin.git", + "ssh_url": "git@github.com:jenkinsci/easyqa-plugin.git", + "clone_url": "https://github.com/jenkinsci/easyqa-plugin.git", + "svn_url": "https://github.com/jenkinsci/easyqa-plugin", + "homepage": null, + "size": 92, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 93765784, + "node_id": "MDEwOlJlcG9zaXRvcnk5Mzc2NTc4NA==", + "name": "incapptic-connect-uploader-plugin", + "full_name": "jenkinsci/incapptic-connect-uploader-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/incapptic-connect-uploader-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/incapptic-connect-uploader-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/incapptic-connect-uploader-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/incapptic-connect-uploader-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/incapptic-connect-uploader-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/incapptic-connect-uploader-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/incapptic-connect-uploader-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/incapptic-connect-uploader-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/incapptic-connect-uploader-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/incapptic-connect-uploader-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/incapptic-connect-uploader-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/incapptic-connect-uploader-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/incapptic-connect-uploader-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/incapptic-connect-uploader-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/incapptic-connect-uploader-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/incapptic-connect-uploader-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/incapptic-connect-uploader-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/incapptic-connect-uploader-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/incapptic-connect-uploader-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/incapptic-connect-uploader-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/incapptic-connect-uploader-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/incapptic-connect-uploader-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/incapptic-connect-uploader-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/incapptic-connect-uploader-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/incapptic-connect-uploader-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/incapptic-connect-uploader-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/incapptic-connect-uploader-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/incapptic-connect-uploader-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/incapptic-connect-uploader-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/incapptic-connect-uploader-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/incapptic-connect-uploader-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/incapptic-connect-uploader-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/incapptic-connect-uploader-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/incapptic-connect-uploader-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/incapptic-connect-uploader-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/incapptic-connect-uploader-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/incapptic-connect-uploader-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/incapptic-connect-uploader-plugin/deployments", + "created_at": "2017-06-08T15:36:11Z", + "updated_at": "2017-06-08T15:36:20Z", + "pushed_at": "2017-12-14T11:52:40Z", + "git_url": "git://github.com/jenkinsci/incapptic-connect-uploader-plugin.git", + "ssh_url": "git@github.com:jenkinsci/incapptic-connect-uploader-plugin.git", + "clone_url": "https://github.com/jenkinsci/incapptic-connect-uploader-plugin.git", + "svn_url": "https://github.com/jenkinsci/incapptic-connect-uploader-plugin", + "homepage": null, + "size": 53, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 94901999, + "node_id": "MDEwOlJlcG9zaXRvcnk5NDkwMTk5OQ==", + "name": "codescene-plugin", + "full_name": "jenkinsci/codescene-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/codescene-plugin", + "description": "Integrate CodeScene in Jenkins builds", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/codescene-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/codescene-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/codescene-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/codescene-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/codescene-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/codescene-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/codescene-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/codescene-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/codescene-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/codescene-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/codescene-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/codescene-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/codescene-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/codescene-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/codescene-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/codescene-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/codescene-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/codescene-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/codescene-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/codescene-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/codescene-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/codescene-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/codescene-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/codescene-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/codescene-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/codescene-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/codescene-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/codescene-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/codescene-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/codescene-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/codescene-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/codescene-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/codescene-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/codescene-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/codescene-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/codescene-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/codescene-plugin/deployments", + "created_at": "2017-06-20T14:44:31Z", + "updated_at": "2019-09-06T13:01:37Z", + "pushed_at": "2019-09-06T13:01:35Z", + "git_url": "git://github.com/jenkinsci/codescene-plugin.git", + "ssh_url": "git@github.com:jenkinsci/codescene-plugin.git", + "clone_url": "https://github.com/jenkinsci/codescene-plugin.git", + "svn_url": "https://github.com/jenkinsci/codescene-plugin", + "homepage": null, + "size": 1465, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 2, + "open_issues": 0, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 95014606, + "node_id": "MDEwOlJlcG9zaXRvcnk5NTAxNDYwNg==", + "name": "aws-batch-plugin", + "full_name": "jenkinsci/aws-batch-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/aws-batch-plugin", + "description": "A jenkins plugin for submitting jobs to AWS batch", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/aws-batch-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/aws-batch-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/aws-batch-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/aws-batch-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/aws-batch-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/aws-batch-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/aws-batch-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/aws-batch-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/aws-batch-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/aws-batch-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/aws-batch-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/aws-batch-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/aws-batch-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/aws-batch-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/aws-batch-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/aws-batch-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/aws-batch-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/aws-batch-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/aws-batch-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/aws-batch-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/aws-batch-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/aws-batch-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/aws-batch-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/aws-batch-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/aws-batch-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/aws-batch-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/aws-batch-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/aws-batch-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/aws-batch-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/aws-batch-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/aws-batch-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/aws-batch-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/aws-batch-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/aws-batch-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/aws-batch-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/aws-batch-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/aws-batch-plugin/deployments", + "created_at": "2017-06-21T14:44:04Z", + "updated_at": "2019-08-11T21:47:01Z", + "pushed_at": "2019-09-11T07:14:54Z", + "git_url": "git://github.com/jenkinsci/aws-batch-plugin.git", + "ssh_url": "git@github.com:jenkinsci/aws-batch-plugin.git", + "clone_url": "https://github.com/jenkinsci/aws-batch-plugin.git", + "svn_url": "https://github.com/jenkinsci/aws-batch-plugin", + "homepage": null, + "size": 110, + "stargazers_count": 8, + "watchers_count": 8, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 5, + "open_issues": 1, + "watchers": 8, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 95032476, + "node_id": "MDEwOlJlcG9zaXRvcnk5NTAzMjQ3Ng==", + "name": "cerberus-testing-plugin", + "full_name": "jenkinsci/cerberus-testing-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/cerberus-testing-plugin", + "description": "Integrate Cerberus within a Jenkins chain", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/cerberus-testing-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/cerberus-testing-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/cerberus-testing-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/cerberus-testing-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/cerberus-testing-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/cerberus-testing-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/cerberus-testing-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/cerberus-testing-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/cerberus-testing-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/cerberus-testing-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/cerberus-testing-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/cerberus-testing-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/cerberus-testing-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/cerberus-testing-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/cerberus-testing-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/cerberus-testing-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/cerberus-testing-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/cerberus-testing-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/cerberus-testing-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/cerberus-testing-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/cerberus-testing-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/cerberus-testing-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/cerberus-testing-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/cerberus-testing-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/cerberus-testing-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/cerberus-testing-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/cerberus-testing-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/cerberus-testing-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/cerberus-testing-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/cerberus-testing-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/cerberus-testing-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/cerberus-testing-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/cerberus-testing-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/cerberus-testing-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/cerberus-testing-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/cerberus-testing-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/cerberus-testing-plugin/deployments", + "created_at": "2017-06-21T18:08:12Z", + "updated_at": "2019-09-30T13:59:34Z", + "pushed_at": "2019-09-30T13:59:31Z", + "git_url": "git://github.com/jenkinsci/cerberus-testing-plugin.git", + "ssh_url": "git@github.com:jenkinsci/cerberus-testing-plugin.git", + "clone_url": "https://github.com/jenkinsci/cerberus-testing-plugin.git", + "svn_url": "https://github.com/jenkinsci/cerberus-testing-plugin", + "homepage": "http://www.cerberus-testing.org", + "size": 491, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 1, + "open_issues": 0, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 96332752, + "node_id": "MDEwOlJlcG9zaXRvcnk5NjMzMjc1Mg==", + "name": "fireline-plugin", + "full_name": "jenkinsci/fireline-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/fireline-plugin", + "description": "Fireline,a static code analysis program to look for bugs in Java code.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/fireline-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/fireline-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/fireline-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/fireline-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/fireline-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/fireline-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/fireline-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/fireline-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/fireline-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/fireline-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/fireline-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/fireline-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/fireline-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/fireline-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/fireline-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/fireline-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/fireline-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/fireline-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/fireline-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/fireline-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/fireline-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/fireline-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/fireline-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/fireline-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/fireline-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/fireline-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/fireline-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/fireline-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/fireline-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/fireline-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/fireline-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/fireline-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/fireline-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/fireline-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/fireline-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/fireline-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/fireline-plugin/deployments", + "created_at": "2017-07-05T15:12:56Z", + "updated_at": "2019-08-12T13:14:15Z", + "pushed_at": "2019-08-12T13:14:13Z", + "git_url": "git://github.com/jenkinsci/fireline-plugin.git", + "ssh_url": "git@github.com:jenkinsci/fireline-plugin.git", + "clone_url": "https://github.com/jenkinsci/fireline-plugin.git", + "svn_url": "https://github.com/jenkinsci/fireline-plugin", + "homepage": null, + "size": 82469, + "stargazers_count": 9, + "watchers_count": 9, + "language": "HTML", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 2, + "open_issues": 0, + "watchers": 9, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 96332858, + "node_id": "MDEwOlJlcG9zaXRvcnk5NjMzMjg1OA==", + "name": "ci-with-toad-edge-plugin", + "full_name": "jenkinsci/ci-with-toad-edge-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/ci-with-toad-edge-plugin", + "description": "Allows users to automate database lifecycle management operations.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/ci-with-toad-edge-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/ci-with-toad-edge-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/ci-with-toad-edge-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/ci-with-toad-edge-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/ci-with-toad-edge-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/ci-with-toad-edge-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/ci-with-toad-edge-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/ci-with-toad-edge-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/ci-with-toad-edge-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/ci-with-toad-edge-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/ci-with-toad-edge-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/ci-with-toad-edge-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/ci-with-toad-edge-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/ci-with-toad-edge-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/ci-with-toad-edge-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/ci-with-toad-edge-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/ci-with-toad-edge-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/ci-with-toad-edge-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/ci-with-toad-edge-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/ci-with-toad-edge-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/ci-with-toad-edge-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/ci-with-toad-edge-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/ci-with-toad-edge-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/ci-with-toad-edge-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/ci-with-toad-edge-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/ci-with-toad-edge-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/ci-with-toad-edge-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/ci-with-toad-edge-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/ci-with-toad-edge-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/ci-with-toad-edge-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/ci-with-toad-edge-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/ci-with-toad-edge-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/ci-with-toad-edge-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/ci-with-toad-edge-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/ci-with-toad-edge-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/ci-with-toad-edge-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/ci-with-toad-edge-plugin/deployments", + "created_at": "2017-07-05T15:14:10Z", + "updated_at": "2018-12-11T07:22:33Z", + "pushed_at": "2018-07-11T10:52:26Z", + "git_url": "git://github.com/jenkinsci/ci-with-toad-edge-plugin.git", + "ssh_url": "git@github.com:jenkinsci/ci-with-toad-edge-plugin.git", + "clone_url": "https://github.com/jenkinsci/ci-with-toad-edge-plugin.git", + "svn_url": "https://github.com/jenkinsci/ci-with-toad-edge-plugin", + "homepage": "", + "size": 57, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 1, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 96332917, + "node_id": "MDEwOlJlcG9zaXRvcnk5NjMzMjkxNw==", + "name": "dingding-json-pusher-plugin", + "full_name": "jenkinsci/dingding-json-pusher-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/dingding-json-pusher-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/dingding-json-pusher-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/dingding-json-pusher-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/dingding-json-pusher-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/dingding-json-pusher-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/dingding-json-pusher-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/dingding-json-pusher-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/dingding-json-pusher-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/dingding-json-pusher-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/dingding-json-pusher-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/dingding-json-pusher-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/dingding-json-pusher-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/dingding-json-pusher-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/dingding-json-pusher-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/dingding-json-pusher-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/dingding-json-pusher-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/dingding-json-pusher-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/dingding-json-pusher-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/dingding-json-pusher-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/dingding-json-pusher-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/dingding-json-pusher-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/dingding-json-pusher-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/dingding-json-pusher-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/dingding-json-pusher-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/dingding-json-pusher-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/dingding-json-pusher-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/dingding-json-pusher-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/dingding-json-pusher-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/dingding-json-pusher-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/dingding-json-pusher-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/dingding-json-pusher-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/dingding-json-pusher-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/dingding-json-pusher-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/dingding-json-pusher-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/dingding-json-pusher-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/dingding-json-pusher-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/dingding-json-pusher-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/dingding-json-pusher-plugin/deployments", + "created_at": "2017-07-05T15:14:48Z", + "updated_at": "2019-09-17T03:33:04Z", + "pushed_at": "2017-08-11T08:14:26Z", + "git_url": "git://github.com/jenkinsci/dingding-json-pusher-plugin.git", + "ssh_url": "git@github.com:jenkinsci/dingding-json-pusher-plugin.git", + "clone_url": "https://github.com/jenkinsci/dingding-json-pusher-plugin.git", + "svn_url": "https://github.com/jenkinsci/dingding-json-pusher-plugin", + "homepage": null, + "size": 19, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "lgpl-3.0", + "name": "GNU Lesser General Public License v3.0", + "spdx_id": "LGPL-3.0", + "url": "https://api.github.com/licenses/lgpl-3.0", + "node_id": "MDc6TGljZW5zZTEy" + }, + "forks": 1, + "open_issues": 0, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 96338407, + "node_id": "MDEwOlJlcG9zaXRvcnk5NjMzODQwNw==", + "name": "gitea-plugin", + "full_name": "jenkinsci/gitea-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/gitea-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/gitea-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/gitea-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/gitea-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/gitea-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/gitea-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/gitea-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/gitea-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/gitea-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/gitea-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/gitea-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/gitea-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/gitea-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/gitea-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/gitea-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/gitea-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/gitea-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/gitea-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/gitea-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/gitea-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/gitea-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/gitea-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/gitea-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/gitea-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/gitea-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/gitea-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/gitea-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/gitea-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/gitea-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/gitea-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/gitea-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/gitea-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/gitea-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/gitea-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/gitea-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/gitea-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/gitea-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/gitea-plugin/deployments", + "created_at": "2017-07-05T16:13:14Z", + "updated_at": "2019-10-08T04:13:13Z", + "pushed_at": "2019-10-21T17:25:32Z", + "git_url": "git://github.com/jenkinsci/gitea-plugin.git", + "ssh_url": "git@github.com:jenkinsci/gitea-plugin.git", + "clone_url": "https://github.com/jenkinsci/gitea-plugin.git", + "svn_url": "https://github.com/jenkinsci/gitea-plugin", + "homepage": "", + "size": 290, + "stargazers_count": 54, + "watchers_count": 54, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 26, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 5, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 26, + "open_issues": 5, + "watchers": 54, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 96343785, + "node_id": "MDEwOlJlcG9zaXRvcnk5NjM0Mzc4NQ==", + "name": "blueocean-maven-plugin", + "full_name": "jenkinsci/blueocean-maven-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/blueocean-maven-plugin", + "description": "Maven plugin used to distribute upstream Javascript dependencies to Blue Ocean plugins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/blueocean-maven-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/blueocean-maven-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/blueocean-maven-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/blueocean-maven-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/blueocean-maven-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/blueocean-maven-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/blueocean-maven-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/blueocean-maven-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/blueocean-maven-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/blueocean-maven-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/blueocean-maven-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/blueocean-maven-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/blueocean-maven-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/blueocean-maven-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/blueocean-maven-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/blueocean-maven-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/blueocean-maven-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/blueocean-maven-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/blueocean-maven-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/blueocean-maven-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/blueocean-maven-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/blueocean-maven-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/blueocean-maven-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/blueocean-maven-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/blueocean-maven-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/blueocean-maven-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/blueocean-maven-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/blueocean-maven-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/blueocean-maven-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/blueocean-maven-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/blueocean-maven-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/blueocean-maven-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/blueocean-maven-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/blueocean-maven-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/blueocean-maven-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/blueocean-maven-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/blueocean-maven-plugin/deployments", + "created_at": "2017-07-05T17:19:31Z", + "updated_at": "2017-07-18T14:52:45Z", + "pushed_at": "2017-10-21T02:25:54Z", + "git_url": "git://github.com/jenkinsci/blueocean-maven-plugin.git", + "ssh_url": "git@github.com:jenkinsci/blueocean-maven-plugin.git", + "clone_url": "https://github.com/jenkinsci/blueocean-maven-plugin.git", + "svn_url": "https://github.com/jenkinsci/blueocean-maven-plugin", + "homepage": null, + "size": 18, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 96797752, + "node_id": "MDEwOlJlcG9zaXRvcnk5Njc5Nzc1Mg==", + "name": "aws-codecommit-trigger-plugin", + "full_name": "jenkinsci/aws-codecommit-trigger-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/aws-codecommit-trigger-plugin", + "description": "Jenkins plugin for triggering jobs with AWS CodeCommit repo updates", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/aws-codecommit-trigger-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/aws-codecommit-trigger-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/aws-codecommit-trigger-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/aws-codecommit-trigger-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/aws-codecommit-trigger-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/aws-codecommit-trigger-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/aws-codecommit-trigger-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/aws-codecommit-trigger-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/aws-codecommit-trigger-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/aws-codecommit-trigger-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/aws-codecommit-trigger-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/aws-codecommit-trigger-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/aws-codecommit-trigger-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/aws-codecommit-trigger-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/aws-codecommit-trigger-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/aws-codecommit-trigger-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/aws-codecommit-trigger-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/aws-codecommit-trigger-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/aws-codecommit-trigger-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/aws-codecommit-trigger-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/aws-codecommit-trigger-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/aws-codecommit-trigger-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/aws-codecommit-trigger-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/aws-codecommit-trigger-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/aws-codecommit-trigger-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/aws-codecommit-trigger-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/aws-codecommit-trigger-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/aws-codecommit-trigger-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/aws-codecommit-trigger-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/aws-codecommit-trigger-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/aws-codecommit-trigger-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/aws-codecommit-trigger-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/aws-codecommit-trigger-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/aws-codecommit-trigger-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/aws-codecommit-trigger-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/aws-codecommit-trigger-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/aws-codecommit-trigger-plugin/deployments", + "created_at": "2017-07-10T16:18:01Z", + "updated_at": "2019-08-30T22:03:42Z", + "pushed_at": "2019-03-24T05:34:49Z", + "git_url": "git://github.com/jenkinsci/aws-codecommit-trigger-plugin.git", + "ssh_url": "git@github.com:jenkinsci/aws-codecommit-trigger-plugin.git", + "clone_url": "https://github.com/jenkinsci/aws-codecommit-trigger-plugin.git", + "svn_url": "https://github.com/jenkinsci/aws-codecommit-trigger-plugin", + "homepage": "https://www.ribose.com", + "size": 1629, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 4, + "open_issues": 0, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 96799278, + "node_id": "MDEwOlJlcG9zaXRvcnk5Njc5OTI3OA==", + "name": "qmetry-for-jira-test-management-plugin", + "full_name": "jenkinsci/qmetry-for-jira-test-management-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/qmetry-for-jira-test-management-plugin", + "description": "QMetry Test Management for JIRA plugin for Jenkins has been designed to seamlessly integrate your CI/CD pipeline with QMetry. ", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/qmetry-for-jira-test-management-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/qmetry-for-jira-test-management-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/qmetry-for-jira-test-management-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/qmetry-for-jira-test-management-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/qmetry-for-jira-test-management-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/qmetry-for-jira-test-management-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/qmetry-for-jira-test-management-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/qmetry-for-jira-test-management-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/qmetry-for-jira-test-management-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/qmetry-for-jira-test-management-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/qmetry-for-jira-test-management-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/qmetry-for-jira-test-management-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/qmetry-for-jira-test-management-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/qmetry-for-jira-test-management-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/qmetry-for-jira-test-management-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/qmetry-for-jira-test-management-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/qmetry-for-jira-test-management-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/qmetry-for-jira-test-management-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/qmetry-for-jira-test-management-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/qmetry-for-jira-test-management-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/qmetry-for-jira-test-management-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/qmetry-for-jira-test-management-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/qmetry-for-jira-test-management-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/qmetry-for-jira-test-management-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/qmetry-for-jira-test-management-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/qmetry-for-jira-test-management-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/qmetry-for-jira-test-management-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/qmetry-for-jira-test-management-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/qmetry-for-jira-test-management-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/qmetry-for-jira-test-management-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/qmetry-for-jira-test-management-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/qmetry-for-jira-test-management-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/qmetry-for-jira-test-management-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/qmetry-for-jira-test-management-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/qmetry-for-jira-test-management-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/qmetry-for-jira-test-management-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/qmetry-for-jira-test-management-plugin/deployments", + "created_at": "2017-07-10T16:35:10Z", + "updated_at": "2019-07-09T13:33:45Z", + "pushed_at": "2019-07-09T13:33:44Z", + "git_url": "git://github.com/jenkinsci/qmetry-for-jira-test-management-plugin.git", + "ssh_url": "git@github.com:jenkinsci/qmetry-for-jira-test-management-plugin.git", + "clone_url": "https://github.com/jenkinsci/qmetry-for-jira-test-management-plugin.git", + "svn_url": "https://github.com/jenkinsci/qmetry-for-jira-test-management-plugin", + "homepage": "", + "size": 148, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "gpl-3.0", + "name": "GNU General Public License v3.0", + "spdx_id": "GPL-3.0", + "url": "https://api.github.com/licenses/gpl-3.0", + "node_id": "MDc6TGljZW5zZTk=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 96799351, + "node_id": "MDEwOlJlcG9zaXRvcnk5Njc5OTM1MQ==", + "name": "rancher-plugin", + "full_name": "jenkinsci/rancher-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/rancher-plugin", + "description": "rancher jenkins plugin deploy or upgrade service", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/rancher-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/rancher-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/rancher-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/rancher-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/rancher-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/rancher-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/rancher-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/rancher-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/rancher-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/rancher-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/rancher-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/rancher-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/rancher-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/rancher-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/rancher-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/rancher-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/rancher-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/rancher-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/rancher-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/rancher-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/rancher-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/rancher-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/rancher-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/rancher-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/rancher-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/rancher-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/rancher-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/rancher-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/rancher-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/rancher-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/rancher-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/rancher-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/rancher-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/rancher-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/rancher-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/rancher-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/rancher-plugin/deployments", + "created_at": "2017-07-10T16:35:46Z", + "updated_at": "2019-08-29T03:57:17Z", + "pushed_at": "2019-08-28T08:08:32Z", + "git_url": "git://github.com/jenkinsci/rancher-plugin.git", + "ssh_url": "git@github.com:jenkinsci/rancher-plugin.git", + "clone_url": "https://github.com/jenkinsci/rancher-plugin.git", + "svn_url": "https://github.com/jenkinsci/rancher-plugin", + "homepage": "", + "size": 163, + "stargazers_count": 39, + "watchers_count": 39, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 28, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 12, + "license": { + "key": "lgpl-3.0", + "name": "GNU Lesser General Public License v3.0", + "spdx_id": "LGPL-3.0", + "url": "https://api.github.com/licenses/lgpl-3.0", + "node_id": "MDc6TGljZW5zZTEy" + }, + "forks": 28, + "open_issues": 12, + "watchers": 39, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 96889762, + "node_id": "MDEwOlJlcG9zaXRvcnk5Njg4OTc2Mg==", + "name": "compuware-topaz-for-total-test-plugin", + "full_name": "jenkinsci/compuware-topaz-for-total-test-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/compuware-topaz-for-total-test-plugin", + "description": "Jenkins Plugin for Topaz for Total Test", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/compuware-topaz-for-total-test-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/compuware-topaz-for-total-test-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/compuware-topaz-for-total-test-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/compuware-topaz-for-total-test-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/compuware-topaz-for-total-test-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/compuware-topaz-for-total-test-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/compuware-topaz-for-total-test-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/compuware-topaz-for-total-test-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/compuware-topaz-for-total-test-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/compuware-topaz-for-total-test-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/compuware-topaz-for-total-test-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/compuware-topaz-for-total-test-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/compuware-topaz-for-total-test-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/compuware-topaz-for-total-test-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/compuware-topaz-for-total-test-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/compuware-topaz-for-total-test-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/compuware-topaz-for-total-test-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/compuware-topaz-for-total-test-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/compuware-topaz-for-total-test-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/compuware-topaz-for-total-test-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/compuware-topaz-for-total-test-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/compuware-topaz-for-total-test-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/compuware-topaz-for-total-test-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/compuware-topaz-for-total-test-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/compuware-topaz-for-total-test-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/compuware-topaz-for-total-test-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/compuware-topaz-for-total-test-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/compuware-topaz-for-total-test-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/compuware-topaz-for-total-test-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/compuware-topaz-for-total-test-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/compuware-topaz-for-total-test-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/compuware-topaz-for-total-test-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/compuware-topaz-for-total-test-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/compuware-topaz-for-total-test-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/compuware-topaz-for-total-test-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/compuware-topaz-for-total-test-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/compuware-topaz-for-total-test-plugin/deployments", + "created_at": "2017-07-11T12:18:34Z", + "updated_at": "2019-10-01T14:59:12Z", + "pushed_at": "2019-10-01T14:59:10Z", + "git_url": "git://github.com/jenkinsci/compuware-topaz-for-total-test-plugin.git", + "ssh_url": "git@github.com:jenkinsci/compuware-topaz-for-total-test-plugin.git", + "clone_url": "https://github.com/jenkinsci/compuware-topaz-for-total-test-plugin.git", + "svn_url": "https://github.com/jenkinsci/compuware-topaz-for-total-test-plugin", + "homepage": null, + "size": 153, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 96889848, + "node_id": "MDEwOlJlcG9zaXRvcnk5Njg4OTg0OA==", + "name": "diawi-upload-plugin", + "full_name": "jenkinsci/diawi-upload-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/diawi-upload-plugin", + "description": "Jenkins-Diawi-Plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/diawi-upload-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/diawi-upload-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/diawi-upload-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/diawi-upload-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/diawi-upload-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/diawi-upload-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/diawi-upload-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/diawi-upload-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/diawi-upload-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/diawi-upload-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/diawi-upload-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/diawi-upload-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/diawi-upload-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/diawi-upload-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/diawi-upload-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/diawi-upload-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/diawi-upload-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/diawi-upload-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/diawi-upload-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/diawi-upload-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/diawi-upload-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/diawi-upload-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/diawi-upload-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/diawi-upload-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/diawi-upload-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/diawi-upload-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/diawi-upload-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/diawi-upload-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/diawi-upload-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/diawi-upload-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/diawi-upload-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/diawi-upload-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/diawi-upload-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/diawi-upload-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/diawi-upload-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/diawi-upload-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/diawi-upload-plugin/deployments", + "created_at": "2017-07-11T12:19:46Z", + "updated_at": "2018-11-21T00:08:23Z", + "pushed_at": "2017-10-19T03:11:46Z", + "git_url": "git://github.com/jenkinsci/diawi-upload-plugin.git", + "ssh_url": "git@github.com:jenkinsci/diawi-upload-plugin.git", + "clone_url": "https://github.com/jenkinsci/diawi-upload-plugin.git", + "svn_url": "https://github.com/jenkinsci/diawi-upload-plugin", + "homepage": null, + "size": 16, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 2, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 96890012, + "node_id": "MDEwOlJlcG9zaXRvcnk5Njg5MDAxMg==", + "name": "azure-app-service-plugin", + "full_name": "jenkinsci/azure-app-service-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/azure-app-service-plugin", + "description": "Azure App Service Jenkins Plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/azure-app-service-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/azure-app-service-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/azure-app-service-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/azure-app-service-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/azure-app-service-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/azure-app-service-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/azure-app-service-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/azure-app-service-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/azure-app-service-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/azure-app-service-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/azure-app-service-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/azure-app-service-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/azure-app-service-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/azure-app-service-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/azure-app-service-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/azure-app-service-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/azure-app-service-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/azure-app-service-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/azure-app-service-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/azure-app-service-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/azure-app-service-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/azure-app-service-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/azure-app-service-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/azure-app-service-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/azure-app-service-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/azure-app-service-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/azure-app-service-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/azure-app-service-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/azure-app-service-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/azure-app-service-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/azure-app-service-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/azure-app-service-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/azure-app-service-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/azure-app-service-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/azure-app-service-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/azure-app-service-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/azure-app-service-plugin/deployments", + "created_at": "2017-07-11T12:21:34Z", + "updated_at": "2019-10-15T08:05:39Z", + "pushed_at": "2019-10-15T08:05:39Z", + "git_url": "git://github.com/jenkinsci/azure-app-service-plugin.git", + "ssh_url": "git@github.com:jenkinsci/azure-app-service-plugin.git", + "clone_url": "https://github.com/jenkinsci/azure-app-service-plugin.git", + "svn_url": "https://github.com/jenkinsci/azure-app-service-plugin", + "homepage": "", + "size": 59998, + "stargazers_count": 7, + "watchers_count": 7, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 9, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 9, + "open_issues": 0, + "watchers": 7, + "default_branch": "dev", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 97136791, + "node_id": "MDEwOlJlcG9zaXRvcnk5NzEzNjc5MQ==", + "name": "jmh-report-plugin", + "full_name": "jenkinsci/jmh-report-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jmh-report-plugin", + "description": "Visually explore your JMH benchmarks on Jenkins!", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jmh-report-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/jmh-report-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jmh-report-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jmh-report-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jmh-report-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jmh-report-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jmh-report-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jmh-report-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jmh-report-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jmh-report-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jmh-report-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jmh-report-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jmh-report-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jmh-report-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jmh-report-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jmh-report-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jmh-report-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jmh-report-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jmh-report-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jmh-report-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jmh-report-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jmh-report-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jmh-report-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jmh-report-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jmh-report-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jmh-report-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jmh-report-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jmh-report-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jmh-report-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jmh-report-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jmh-report-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jmh-report-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jmh-report-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jmh-report-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jmh-report-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jmh-report-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jmh-report-plugin/deployments", + "created_at": "2017-07-13T15:13:55Z", + "updated_at": "2019-10-16T12:43:23Z", + "pushed_at": "2018-10-12T10:27:18Z", + "git_url": "git://github.com/jenkinsci/jmh-report-plugin.git", + "ssh_url": "git@github.com:jenkinsci/jmh-report-plugin.git", + "clone_url": "https://github.com/jenkinsci/jmh-report-plugin.git", + "svn_url": "https://github.com/jenkinsci/jmh-report-plugin", + "homepage": "", + "size": 1330, + "stargazers_count": 9, + "watchers_count": 9, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 3, + "open_issues": 0, + "watchers": 9, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 97531683, + "node_id": "MDEwOlJlcG9zaXRvcnk5NzUzMTY4Mw==", + "name": "stoplightio-report-plugin", + "full_name": "jenkinsci/stoplightio-report-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/stoplightio-report-plugin", + "description": "Stoplight Report Plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/stoplightio-report-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/stoplightio-report-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/stoplightio-report-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/stoplightio-report-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/stoplightio-report-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/stoplightio-report-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/stoplightio-report-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/stoplightio-report-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/stoplightio-report-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/stoplightio-report-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/stoplightio-report-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/stoplightio-report-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/stoplightio-report-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/stoplightio-report-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/stoplightio-report-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/stoplightio-report-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/stoplightio-report-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/stoplightio-report-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/stoplightio-report-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/stoplightio-report-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/stoplightio-report-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/stoplightio-report-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/stoplightio-report-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/stoplightio-report-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/stoplightio-report-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/stoplightio-report-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/stoplightio-report-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/stoplightio-report-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/stoplightio-report-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/stoplightio-report-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/stoplightio-report-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/stoplightio-report-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/stoplightio-report-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/stoplightio-report-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/stoplightio-report-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/stoplightio-report-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/stoplightio-report-plugin/deployments", + "created_at": "2017-07-17T23:39:53Z", + "updated_at": "2019-07-17T09:32:33Z", + "pushed_at": "2019-07-17T09:32:31Z", + "git_url": "git://github.com/jenkinsci/stoplightio-report-plugin.git", + "ssh_url": "git@github.com:jenkinsci/stoplightio-report-plugin.git", + "clone_url": "https://github.com/jenkinsci/stoplightio-report-plugin.git", + "svn_url": "https://github.com/jenkinsci/stoplightio-report-plugin", + "homepage": null, + "size": 296, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 3, + "open_issues": 0, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 97532760, + "node_id": "MDEwOlJlcG9zaXRvcnk5NzUzMjc2MA==", + "name": "create-and-run-job-trigger-plugin", + "full_name": "jenkinsci/create-and-run-job-trigger-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/create-and-run-job-trigger-plugin", + "description": "This jenkins plugin provides an endpoint that triggers pipeline job creation and runs from git URL.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/create-and-run-job-trigger-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/create-and-run-job-trigger-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/create-and-run-job-trigger-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/create-and-run-job-trigger-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/create-and-run-job-trigger-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/create-and-run-job-trigger-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/create-and-run-job-trigger-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/create-and-run-job-trigger-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/create-and-run-job-trigger-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/create-and-run-job-trigger-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/create-and-run-job-trigger-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/create-and-run-job-trigger-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/create-and-run-job-trigger-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/create-and-run-job-trigger-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/create-and-run-job-trigger-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/create-and-run-job-trigger-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/create-and-run-job-trigger-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/create-and-run-job-trigger-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/create-and-run-job-trigger-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/create-and-run-job-trigger-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/create-and-run-job-trigger-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/create-and-run-job-trigger-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/create-and-run-job-trigger-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/create-and-run-job-trigger-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/create-and-run-job-trigger-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/create-and-run-job-trigger-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/create-and-run-job-trigger-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/create-and-run-job-trigger-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/create-and-run-job-trigger-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/create-and-run-job-trigger-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/create-and-run-job-trigger-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/create-and-run-job-trigger-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/create-and-run-job-trigger-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/create-and-run-job-trigger-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/create-and-run-job-trigger-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/create-and-run-job-trigger-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/create-and-run-job-trigger-plugin/deployments", + "created_at": "2017-07-17T23:59:50Z", + "updated_at": "2017-11-20T13:35:14Z", + "pushed_at": "2017-12-11T07:34:04Z", + "git_url": "git://github.com/jenkinsci/create-and-run-job-trigger-plugin.git", + "ssh_url": "git@github.com:jenkinsci/create-and-run-job-trigger-plugin.git", + "clone_url": "https://github.com/jenkinsci/create-and-run-job-trigger-plugin.git", + "svn_url": "https://github.com/jenkinsci/create-and-run-job-trigger-plugin", + "homepage": "https://wiki.jenkins.io/x/JBMTC", + "size": 15, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 97776298, + "node_id": "MDEwOlJlcG9zaXRvcnk5Nzc3NjI5OA==", + "name": "jenkins-ace-editor", + "full_name": "jenkinsci/jenkins-ace-editor", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jenkins-ace-editor", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/jenkins-ace-editor", + "forks_url": "https://api.github.com/repos/jenkinsci/jenkins-ace-editor/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jenkins-ace-editor/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jenkins-ace-editor/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jenkins-ace-editor/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jenkins-ace-editor/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jenkins-ace-editor/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jenkins-ace-editor/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jenkins-ace-editor/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jenkins-ace-editor/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jenkins-ace-editor/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jenkins-ace-editor/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jenkins-ace-editor/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jenkins-ace-editor/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jenkins-ace-editor/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jenkins-ace-editor/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jenkins-ace-editor/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jenkins-ace-editor/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jenkins-ace-editor/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jenkins-ace-editor/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jenkins-ace-editor/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jenkins-ace-editor/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jenkins-ace-editor/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jenkins-ace-editor/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jenkins-ace-editor/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jenkins-ace-editor/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jenkins-ace-editor/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jenkins-ace-editor/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jenkins-ace-editor/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jenkins-ace-editor/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jenkins-ace-editor/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jenkins-ace-editor/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jenkins-ace-editor/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jenkins-ace-editor/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jenkins-ace-editor/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jenkins-ace-editor/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jenkins-ace-editor/deployments", + "created_at": "2017-07-20T01:21:39Z", + "updated_at": "2017-07-20T01:21:48Z", + "pushed_at": "2015-09-18T10:14:39Z", + "git_url": "git://github.com/jenkinsci/jenkins-ace-editor.git", + "ssh_url": "git@github.com:jenkinsci/jenkins-ace-editor.git", + "clone_url": "https://github.com/jenkinsci/jenkins-ace-editor.git", + "svn_url": "https://github.com/jenkinsci/jenkins-ace-editor", + "homepage": null, + "size": 124, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 97776316, + "node_id": "MDEwOlJlcG9zaXRvcnk5Nzc3NjMxNg==", + "name": "jquery-detached", + "full_name": "jenkinsci/jquery-detached", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jquery-detached", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/jquery-detached", + "forks_url": "https://api.github.com/repos/jenkinsci/jquery-detached/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jquery-detached/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jquery-detached/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jquery-detached/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jquery-detached/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jquery-detached/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jquery-detached/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jquery-detached/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jquery-detached/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jquery-detached/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jquery-detached/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jquery-detached/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jquery-detached/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jquery-detached/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jquery-detached/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jquery-detached/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jquery-detached/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jquery-detached/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jquery-detached/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jquery-detached/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jquery-detached/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jquery-detached/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jquery-detached/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jquery-detached/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jquery-detached/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jquery-detached/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jquery-detached/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jquery-detached/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jquery-detached/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jquery-detached/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jquery-detached/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jquery-detached/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jquery-detached/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jquery-detached/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jquery-detached/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jquery-detached/deployments", + "created_at": "2017-07-20T01:21:58Z", + "updated_at": "2017-07-20T01:22:07Z", + "pushed_at": "2016-01-25T11:28:34Z", + "git_url": "git://github.com/jenkinsci/jquery-detached.git", + "ssh_url": "git@github.com:jenkinsci/jquery-detached.git", + "clone_url": "https://github.com/jenkinsci/jquery-detached.git", + "svn_url": "https://github.com/jenkinsci/jquery-detached", + "homepage": null, + "size": 237, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "2.1.4", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 97795995, + "node_id": "MDEwOlJlcG9zaXRvcnk5Nzc5NTk5NQ==", + "name": "jenkins-js-diag", + "full_name": "jenkinsci/jenkins-js-diag", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jenkins-js-diag", + "description": "Jenkins client-side diagnostics", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/jenkins-js-diag", + "forks_url": "https://api.github.com/repos/jenkinsci/jenkins-js-diag/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jenkins-js-diag/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jenkins-js-diag/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jenkins-js-diag/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jenkins-js-diag/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jenkins-js-diag/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jenkins-js-diag/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jenkins-js-diag/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jenkins-js-diag/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jenkins-js-diag/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jenkins-js-diag/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jenkins-js-diag/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jenkins-js-diag/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jenkins-js-diag/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jenkins-js-diag/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jenkins-js-diag/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jenkins-js-diag/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jenkins-js-diag/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jenkins-js-diag/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jenkins-js-diag/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jenkins-js-diag/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jenkins-js-diag/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jenkins-js-diag/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jenkins-js-diag/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jenkins-js-diag/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jenkins-js-diag/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jenkins-js-diag/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jenkins-js-diag/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jenkins-js-diag/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jenkins-js-diag/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jenkins-js-diag/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jenkins-js-diag/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jenkins-js-diag/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jenkins-js-diag/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jenkins-js-diag/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jenkins-js-diag/deployments", + "created_at": "2017-07-20T05:56:52Z", + "updated_at": "2017-07-20T05:56:58Z", + "pushed_at": "2016-07-15T16:19:40Z", + "git_url": "git://github.com/jenkinsci/jenkins-js-diag.git", + "ssh_url": "git@github.com:jenkinsci/jenkins-js-diag.git", + "clone_url": "https://github.com/jenkinsci/jenkins-js-diag.git", + "svn_url": "https://github.com/jenkinsci/jenkins-js-diag", + "homepage": null, + "size": 6, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 98332260, + "node_id": "MDEwOlJlcG9zaXRvcnk5ODMzMjI2MA==", + "name": "anka-build-plugin", + "full_name": "jenkinsci/anka-build-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/anka-build-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/anka-build-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/anka-build-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/anka-build-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/anka-build-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/anka-build-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/anka-build-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/anka-build-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/anka-build-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/anka-build-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/anka-build-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/anka-build-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/anka-build-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/anka-build-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/anka-build-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/anka-build-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/anka-build-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/anka-build-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/anka-build-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/anka-build-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/anka-build-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/anka-build-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/anka-build-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/anka-build-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/anka-build-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/anka-build-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/anka-build-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/anka-build-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/anka-build-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/anka-build-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/anka-build-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/anka-build-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/anka-build-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/anka-build-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/anka-build-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/anka-build-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/anka-build-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/anka-build-plugin/deployments", + "created_at": "2017-07-25T17:23:46Z", + "updated_at": "2019-10-21T09:21:35Z", + "pushed_at": "2019-10-24T14:18:55Z", + "git_url": "git://github.com/jenkinsci/anka-build-plugin.git", + "ssh_url": "git@github.com:jenkinsci/anka-build-plugin.git", + "clone_url": "https://github.com/jenkinsci/anka-build-plugin.git", + "svn_url": "https://github.com/jenkinsci/anka-build-plugin", + "homepage": null, + "size": 240, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 98332290, + "node_id": "MDEwOlJlcG9zaXRvcnk5ODMzMjI5MA==", + "name": "coding-webhook-plugin", + "full_name": "jenkinsci/coding-webhook-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/coding-webhook-plugin", + "description": "Jenkins plugin for coding.net", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/coding-webhook-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/coding-webhook-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/coding-webhook-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/coding-webhook-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/coding-webhook-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/coding-webhook-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/coding-webhook-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/coding-webhook-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/coding-webhook-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/coding-webhook-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/coding-webhook-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/coding-webhook-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/coding-webhook-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/coding-webhook-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/coding-webhook-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/coding-webhook-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/coding-webhook-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/coding-webhook-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/coding-webhook-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/coding-webhook-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/coding-webhook-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/coding-webhook-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/coding-webhook-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/coding-webhook-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/coding-webhook-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/coding-webhook-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/coding-webhook-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/coding-webhook-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/coding-webhook-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/coding-webhook-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/coding-webhook-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/coding-webhook-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/coding-webhook-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/coding-webhook-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/coding-webhook-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/coding-webhook-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/coding-webhook-plugin/deployments", + "created_at": "2017-07-25T17:24:10Z", + "updated_at": "2019-07-08T15:31:50Z", + "pushed_at": "2019-02-21T06:36:42Z", + "git_url": "git://github.com/jenkinsci/coding-webhook-plugin.git", + "ssh_url": "git@github.com:jenkinsci/coding-webhook-plugin.git", + "clone_url": "https://github.com/jenkinsci/coding-webhook-plugin.git", + "svn_url": "https://github.com/jenkinsci/coding-webhook-plugin", + "homepage": "https://plugins.jenkins.io/coding-webhook", + "size": 231, + "stargazers_count": 59, + "watchers_count": 59, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 18, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 6, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 18, + "open_issues": 6, + "watchers": 59, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 98332701, + "node_id": "MDEwOlJlcG9zaXRvcnk5ODMzMjcwMQ==", + "name": "snyk-security-scanner-plugin", + "full_name": "jenkinsci/snyk-security-scanner-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/snyk-security-scanner-plugin", + "description": "Snyk Jenkins plugin ", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/snyk-security-scanner-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/snyk-security-scanner-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/snyk-security-scanner-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/snyk-security-scanner-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/snyk-security-scanner-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/snyk-security-scanner-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/snyk-security-scanner-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/snyk-security-scanner-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/snyk-security-scanner-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/snyk-security-scanner-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/snyk-security-scanner-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/snyk-security-scanner-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/snyk-security-scanner-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/snyk-security-scanner-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/snyk-security-scanner-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/snyk-security-scanner-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/snyk-security-scanner-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/snyk-security-scanner-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/snyk-security-scanner-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/snyk-security-scanner-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/snyk-security-scanner-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/snyk-security-scanner-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/snyk-security-scanner-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/snyk-security-scanner-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/snyk-security-scanner-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/snyk-security-scanner-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/snyk-security-scanner-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/snyk-security-scanner-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/snyk-security-scanner-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/snyk-security-scanner-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/snyk-security-scanner-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/snyk-security-scanner-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/snyk-security-scanner-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/snyk-security-scanner-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/snyk-security-scanner-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/snyk-security-scanner-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/snyk-security-scanner-plugin/deployments", + "created_at": "2017-07-25T17:29:07Z", + "updated_at": "2019-10-03T20:40:47Z", + "pushed_at": "2019-09-23T11:13:54Z", + "git_url": "git://github.com/jenkinsci/snyk-security-scanner-plugin.git", + "ssh_url": "git@github.com:jenkinsci/snyk-security-scanner-plugin.git", + "clone_url": "https://github.com/jenkinsci/snyk-security-scanner-plugin.git", + "svn_url": "https://github.com/jenkinsci/snyk-security-scanner-plugin", + "homepage": null, + "size": 490, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 13, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 13, + "open_issues": 0, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 99277396, + "node_id": "MDEwOlJlcG9zaXRvcnk5OTI3NzM5Ng==", + "name": "confluence-pipeline-steps-plugin", + "full_name": "jenkinsci/confluence-pipeline-steps-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/confluence-pipeline-steps-plugin", + "description": "Jenkins (workflow) plugin that is able to publish information on Atlassian Confluence pages.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/confluence-pipeline-steps-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/confluence-pipeline-steps-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/confluence-pipeline-steps-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/confluence-pipeline-steps-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/confluence-pipeline-steps-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/confluence-pipeline-steps-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/confluence-pipeline-steps-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/confluence-pipeline-steps-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/confluence-pipeline-steps-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/confluence-pipeline-steps-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/confluence-pipeline-steps-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/confluence-pipeline-steps-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/confluence-pipeline-steps-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/confluence-pipeline-steps-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/confluence-pipeline-steps-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/confluence-pipeline-steps-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/confluence-pipeline-steps-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/confluence-pipeline-steps-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/confluence-pipeline-steps-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/confluence-pipeline-steps-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/confluence-pipeline-steps-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/confluence-pipeline-steps-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/confluence-pipeline-steps-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/confluence-pipeline-steps-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/confluence-pipeline-steps-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/confluence-pipeline-steps-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/confluence-pipeline-steps-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/confluence-pipeline-steps-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/confluence-pipeline-steps-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/confluence-pipeline-steps-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/confluence-pipeline-steps-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/confluence-pipeline-steps-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/confluence-pipeline-steps-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/confluence-pipeline-steps-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/confluence-pipeline-steps-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/confluence-pipeline-steps-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/confluence-pipeline-steps-plugin/deployments", + "created_at": "2017-08-03T21:43:13Z", + "updated_at": "2018-09-20T20:28:46Z", + "pushed_at": "2017-11-10T07:39:15Z", + "git_url": "git://github.com/jenkinsci/confluence-pipeline-steps-plugin.git", + "ssh_url": "git@github.com:jenkinsci/confluence-pipeline-steps-plugin.git", + "clone_url": "https://github.com/jenkinsci/confluence-pipeline-steps-plugin.git", + "svn_url": "https://github.com/jenkinsci/confluence-pipeline-steps-plugin", + "homepage": null, + "size": 104, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "cc-by-sa-4.0", + "name": "Creative Commons Attribution Share Alike 4.0 International", + "spdx_id": "CC-BY-SA-4.0", + "url": "https://api.github.com/licenses/cc-by-sa-4.0", + "node_id": "MDc6TGljZW5zZTI2" + }, + "forks": 1, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 99277445, + "node_id": "MDEwOlJlcG9zaXRvcnk5OTI3NzQ0NQ==", + "name": "reportportal-plugin", + "full_name": "jenkinsci/reportportal-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/reportportal-plugin", + "description": "Jenkins CI Plugin - represents statistics and visualization at Jenkins job page", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/reportportal-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/reportportal-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/reportportal-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/reportportal-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/reportportal-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/reportportal-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/reportportal-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/reportportal-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/reportportal-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/reportportal-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/reportportal-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/reportportal-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/reportportal-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/reportportal-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/reportportal-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/reportportal-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/reportportal-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/reportportal-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/reportportal-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/reportportal-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/reportportal-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/reportportal-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/reportportal-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/reportportal-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/reportportal-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/reportportal-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/reportportal-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/reportportal-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/reportportal-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/reportportal-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/reportportal-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/reportportal-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/reportportal-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/reportportal-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/reportportal-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/reportportal-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/reportportal-plugin/deployments", + "created_at": "2017-08-03T21:44:07Z", + "updated_at": "2017-08-04T07:17:50Z", + "pushed_at": "2017-11-21T11:39:27Z", + "git_url": "git://github.com/jenkinsci/reportportal-plugin.git", + "ssh_url": "git@github.com:jenkinsci/reportportal-plugin.git", + "clone_url": "https://github.com/jenkinsci/reportportal-plugin.git", + "svn_url": "https://github.com/jenkinsci/reportportal-plugin", + "homepage": null, + "size": 130, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Groovy", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "gpl-3.0", + "name": "GNU General Public License v3.0", + "spdx_id": "GPL-3.0", + "url": "https://api.github.com/licenses/gpl-3.0", + "node_id": "MDc6TGljZW5zZTk=" + }, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 99280407, + "node_id": "MDEwOlJlcG9zaXRvcnk5OTI4MDQwNw==", + "name": "outbound-webhook-plugin", + "full_name": "jenkinsci/outbound-webhook-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/outbound-webhook-plugin", + "description": "Jenkins outbound WebHook plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/outbound-webhook-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/outbound-webhook-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/outbound-webhook-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/outbound-webhook-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/outbound-webhook-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/outbound-webhook-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/outbound-webhook-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/outbound-webhook-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/outbound-webhook-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/outbound-webhook-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/outbound-webhook-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/outbound-webhook-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/outbound-webhook-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/outbound-webhook-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/outbound-webhook-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/outbound-webhook-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/outbound-webhook-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/outbound-webhook-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/outbound-webhook-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/outbound-webhook-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/outbound-webhook-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/outbound-webhook-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/outbound-webhook-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/outbound-webhook-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/outbound-webhook-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/outbound-webhook-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/outbound-webhook-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/outbound-webhook-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/outbound-webhook-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/outbound-webhook-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/outbound-webhook-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/outbound-webhook-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/outbound-webhook-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/outbound-webhook-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/outbound-webhook-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/outbound-webhook-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/outbound-webhook-plugin/deployments", + "created_at": "2017-08-03T22:35:12Z", + "updated_at": "2019-07-19T02:11:43Z", + "pushed_at": "2019-04-09T10:03:04Z", + "git_url": "git://github.com/jenkinsci/outbound-webhook-plugin.git", + "ssh_url": "git@github.com:jenkinsci/outbound-webhook-plugin.git", + "clone_url": "https://github.com/jenkinsci/outbound-webhook-plugin.git", + "svn_url": "https://github.com/jenkinsci/outbound-webhook-plugin", + "homepage": "", + "size": 114, + "stargazers_count": 9, + "watchers_count": 9, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 9, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 6, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 9, + "open_issues": 6, + "watchers": 9, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 99496370, + "node_id": "MDEwOlJlcG9zaXRvcnk5OTQ5NjM3MA==", + "name": "git-prebuildmerge-trait-plugin", + "full_name": "jenkinsci/git-prebuildmerge-trait-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/git-prebuildmerge-trait-plugin", + "description": "Adds Git PreMerge Trait to Git Plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/git-prebuildmerge-trait-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/git-prebuildmerge-trait-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/git-prebuildmerge-trait-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/git-prebuildmerge-trait-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/git-prebuildmerge-trait-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/git-prebuildmerge-trait-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/git-prebuildmerge-trait-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/git-prebuildmerge-trait-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/git-prebuildmerge-trait-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/git-prebuildmerge-trait-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/git-prebuildmerge-trait-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/git-prebuildmerge-trait-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/git-prebuildmerge-trait-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/git-prebuildmerge-trait-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/git-prebuildmerge-trait-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/git-prebuildmerge-trait-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/git-prebuildmerge-trait-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/git-prebuildmerge-trait-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/git-prebuildmerge-trait-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/git-prebuildmerge-trait-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/git-prebuildmerge-trait-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/git-prebuildmerge-trait-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/git-prebuildmerge-trait-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/git-prebuildmerge-trait-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/git-prebuildmerge-trait-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/git-prebuildmerge-trait-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/git-prebuildmerge-trait-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/git-prebuildmerge-trait-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/git-prebuildmerge-trait-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/git-prebuildmerge-trait-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/git-prebuildmerge-trait-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/git-prebuildmerge-trait-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/git-prebuildmerge-trait-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/git-prebuildmerge-trait-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/git-prebuildmerge-trait-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/git-prebuildmerge-trait-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/git-prebuildmerge-trait-plugin/deployments", + "created_at": "2017-08-06T15:39:57Z", + "updated_at": "2017-08-07T08:04:44Z", + "pushed_at": "2017-08-08T08:02:20Z", + "git_url": "git://github.com/jenkinsci/git-prebuildmerge-trait-plugin.git", + "ssh_url": "git@github.com:jenkinsci/git-prebuildmerge-trait-plugin.git", + "clone_url": "https://github.com/jenkinsci/git-prebuildmerge-trait-plugin.git", + "svn_url": "https://github.com/jenkinsci/git-prebuildmerge-trait-plugin", + "homepage": null, + "size": 16, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 99614583, + "node_id": "MDEwOlJlcG9zaXRvcnk5OTYxNDU4Mw==", + "name": "opsgenie-plugin", + "full_name": "jenkinsci/opsgenie-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/opsgenie-plugin", + "description": "A build status publisher for OpsGenie users that notifies who is on call.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/opsgenie-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/opsgenie-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/opsgenie-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/opsgenie-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/opsgenie-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/opsgenie-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/opsgenie-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/opsgenie-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/opsgenie-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/opsgenie-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/opsgenie-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/opsgenie-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/opsgenie-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/opsgenie-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/opsgenie-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/opsgenie-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/opsgenie-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/opsgenie-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/opsgenie-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/opsgenie-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/opsgenie-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/opsgenie-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/opsgenie-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/opsgenie-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/opsgenie-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/opsgenie-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/opsgenie-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/opsgenie-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/opsgenie-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/opsgenie-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/opsgenie-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/opsgenie-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/opsgenie-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/opsgenie-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/opsgenie-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/opsgenie-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/opsgenie-plugin/deployments", + "created_at": "2017-08-07T19:55:29Z", + "updated_at": "2019-09-24T22:20:55Z", + "pushed_at": "2019-09-25T17:22:00Z", + "git_url": "git://github.com/jenkinsci/opsgenie-plugin.git", + "ssh_url": "git@github.com:jenkinsci/opsgenie-plugin.git", + "clone_url": "https://github.com/jenkinsci/opsgenie-plugin.git", + "svn_url": "https://github.com/jenkinsci/opsgenie-plugin", + "homepage": null, + "size": 58, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 3, + "open_issues": 3, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 100281117, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDAyODExMTc=", + "name": "azure-cli-plugin", + "full_name": "jenkinsci/azure-cli-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/azure-cli-plugin", + "description": "A Jenkins plugin to use Azure CLI for managing Azure resources.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/azure-cli-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/azure-cli-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/azure-cli-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/azure-cli-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/azure-cli-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/azure-cli-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/azure-cli-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/azure-cli-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/azure-cli-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/azure-cli-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/azure-cli-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/azure-cli-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/azure-cli-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/azure-cli-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/azure-cli-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/azure-cli-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/azure-cli-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/azure-cli-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/azure-cli-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/azure-cli-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/azure-cli-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/azure-cli-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/azure-cli-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/azure-cli-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/azure-cli-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/azure-cli-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/azure-cli-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/azure-cli-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/azure-cli-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/azure-cli-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/azure-cli-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/azure-cli-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/azure-cli-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/azure-cli-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/azure-cli-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/azure-cli-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/azure-cli-plugin/deployments", + "created_at": "2017-08-14T15:14:39Z", + "updated_at": "2019-06-06T03:41:52Z", + "pushed_at": "2018-10-28T08:02:08Z", + "git_url": "git://github.com/jenkinsci/azure-cli-plugin.git", + "ssh_url": "git@github.com:jenkinsci/azure-cli-plugin.git", + "clone_url": "https://github.com/jenkinsci/azure-cli-plugin.git", + "svn_url": "https://github.com/jenkinsci/azure-cli-plugin", + "homepage": "", + "size": 59709, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 10, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 11, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 10, + "open_issues": 11, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 100281222, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDAyODEyMjI=", + "name": "apache-httpcomponents-client-4-api-plugin", + "full_name": "jenkinsci/apache-httpcomponents-client-4-api-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/apache-httpcomponents-client-4-api-plugin", + "description": "Apache HttpClient 4.x API Plugin for Jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/apache-httpcomponents-client-4-api-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/apache-httpcomponents-client-4-api-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/apache-httpcomponents-client-4-api-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/apache-httpcomponents-client-4-api-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/apache-httpcomponents-client-4-api-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/apache-httpcomponents-client-4-api-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/apache-httpcomponents-client-4-api-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/apache-httpcomponents-client-4-api-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/apache-httpcomponents-client-4-api-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/apache-httpcomponents-client-4-api-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/apache-httpcomponents-client-4-api-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/apache-httpcomponents-client-4-api-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/apache-httpcomponents-client-4-api-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/apache-httpcomponents-client-4-api-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/apache-httpcomponents-client-4-api-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/apache-httpcomponents-client-4-api-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/apache-httpcomponents-client-4-api-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/apache-httpcomponents-client-4-api-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/apache-httpcomponents-client-4-api-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/apache-httpcomponents-client-4-api-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/apache-httpcomponents-client-4-api-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/apache-httpcomponents-client-4-api-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/apache-httpcomponents-client-4-api-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/apache-httpcomponents-client-4-api-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/apache-httpcomponents-client-4-api-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/apache-httpcomponents-client-4-api-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/apache-httpcomponents-client-4-api-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/apache-httpcomponents-client-4-api-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/apache-httpcomponents-client-4-api-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/apache-httpcomponents-client-4-api-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/apache-httpcomponents-client-4-api-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/apache-httpcomponents-client-4-api-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/apache-httpcomponents-client-4-api-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/apache-httpcomponents-client-4-api-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/apache-httpcomponents-client-4-api-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/apache-httpcomponents-client-4-api-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/apache-httpcomponents-client-4-api-plugin/deployments", + "created_at": "2017-08-14T15:15:47Z", + "updated_at": "2019-10-06T00:59:07Z", + "pushed_at": "2019-10-06T00:32:27Z", + "git_url": "git://github.com/jenkinsci/apache-httpcomponents-client-4-api-plugin.git", + "ssh_url": "git@github.com:jenkinsci/apache-httpcomponents-client-4-api-plugin.git", + "clone_url": "https://github.com/jenkinsci/apache-httpcomponents-client-4-api-plugin.git", + "svn_url": "https://github.com/jenkinsci/apache-httpcomponents-client-4-api-plugin", + "homepage": "https://plugins.jenkins.io/apache-httpcomponents-client-4-api", + "size": 88, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 16, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 16, + "open_issues": 1, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 100390213, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDAzOTAyMTM=", + "name": "wso2-import-plugin", + "full_name": "jenkinsci/wso2-import-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/wso2-import-plugin", + "description": "WSO2 Import Plugin for Jenkins", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/wso2-import-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/wso2-import-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/wso2-import-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/wso2-import-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/wso2-import-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/wso2-import-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/wso2-import-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/wso2-import-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/wso2-import-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/wso2-import-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/wso2-import-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/wso2-import-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/wso2-import-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/wso2-import-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/wso2-import-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/wso2-import-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/wso2-import-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/wso2-import-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/wso2-import-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/wso2-import-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/wso2-import-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/wso2-import-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/wso2-import-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/wso2-import-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/wso2-import-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/wso2-import-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/wso2-import-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/wso2-import-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/wso2-import-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/wso2-import-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/wso2-import-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/wso2-import-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/wso2-import-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/wso2-import-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/wso2-import-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/wso2-import-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/wso2-import-plugin/deployments", + "created_at": "2017-08-15T15:14:59Z", + "updated_at": "2017-08-15T15:15:08Z", + "pushed_at": "2017-08-15T07:36:18Z", + "git_url": "git://github.com/jenkinsci/wso2-import-plugin.git", + "ssh_url": "git@github.com:jenkinsci/wso2-import-plugin.git", + "clone_url": "https://github.com/jenkinsci/wso2-import-plugin.git", + "svn_url": "https://github.com/jenkinsci/wso2-import-plugin", + "homepage": null, + "size": 14, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 100499204, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDA0OTkyMDQ=", + "name": "react-flow", + "full_name": "jenkinsci/react-flow", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/react-flow", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/react-flow", + "forks_url": "https://api.github.com/repos/jenkinsci/react-flow/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/react-flow/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/react-flow/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/react-flow/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/react-flow/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/react-flow/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/react-flow/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/react-flow/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/react-flow/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/react-flow/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/react-flow/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/react-flow/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/react-flow/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/react-flow/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/react-flow/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/react-flow/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/react-flow/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/react-flow/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/react-flow/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/react-flow/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/react-flow/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/react-flow/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/react-flow/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/react-flow/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/react-flow/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/react-flow/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/react-flow/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/react-flow/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/react-flow/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/react-flow/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/react-flow/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/react-flow/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/react-flow/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/react-flow/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/react-flow/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/react-flow/deployments", + "created_at": "2017-08-16T14:37:29Z", + "updated_at": "2018-03-12T22:17:30Z", + "pushed_at": "2018-03-12T22:17:28Z", + "git_url": "git://github.com/jenkinsci/react-flow.git", + "ssh_url": "git@github.com:jenkinsci/react-flow.git", + "clone_url": "https://github.com/jenkinsci/react-flow.git", + "svn_url": "https://github.com/jenkinsci/react-flow", + "homepage": null, + "size": 87, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 100651354, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDA2NTEzNTQ=", + "name": "oneandone-cloudserver-plugin", + "full_name": "jenkinsci/oneandone-cloudserver-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/oneandone-cloudserver-plugin", + "description": "Jenkins plugin for 1&1 Cloud Server", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/oneandone-cloudserver-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/oneandone-cloudserver-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/oneandone-cloudserver-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/oneandone-cloudserver-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/oneandone-cloudserver-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/oneandone-cloudserver-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/oneandone-cloudserver-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/oneandone-cloudserver-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/oneandone-cloudserver-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/oneandone-cloudserver-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/oneandone-cloudserver-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/oneandone-cloudserver-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/oneandone-cloudserver-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/oneandone-cloudserver-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/oneandone-cloudserver-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/oneandone-cloudserver-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/oneandone-cloudserver-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/oneandone-cloudserver-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/oneandone-cloudserver-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/oneandone-cloudserver-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/oneandone-cloudserver-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/oneandone-cloudserver-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/oneandone-cloudserver-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/oneandone-cloudserver-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/oneandone-cloudserver-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/oneandone-cloudserver-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/oneandone-cloudserver-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/oneandone-cloudserver-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/oneandone-cloudserver-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/oneandone-cloudserver-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/oneandone-cloudserver-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/oneandone-cloudserver-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/oneandone-cloudserver-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/oneandone-cloudserver-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/oneandone-cloudserver-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/oneandone-cloudserver-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/oneandone-cloudserver-plugin/deployments", + "created_at": "2017-08-17T22:51:51Z", + "updated_at": "2017-08-17T22:51:59Z", + "pushed_at": "2017-08-21T18:40:46Z", + "git_url": "git://github.com/jenkinsci/oneandone-cloudserver-plugin.git", + "ssh_url": "git@github.com:jenkinsci/oneandone-cloudserver-plugin.git", + "clone_url": "https://github.com/jenkinsci/oneandone-cloudserver-plugin.git", + "svn_url": "https://github.com/jenkinsci/oneandone-cloudserver-plugin", + "homepage": null, + "size": 33, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 2, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 100904802, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDA5MDQ4MDI=", + "name": "cloudbees-jenkins-advisor-plugin", + "full_name": "jenkinsci/cloudbees-jenkins-advisor-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/cloudbees-jenkins-advisor-plugin", + "description": "Jenkins Health Advisor by CloudBees proactively notifies you of problems with your Jenkins-based environment.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/deployments", + "created_at": "2017-08-21T02:35:45Z", + "updated_at": "2019-10-22T12:33:43Z", + "pushed_at": "2019-10-22T12:33:41Z", + "git_url": "git://github.com/jenkinsci/cloudbees-jenkins-advisor-plugin.git", + "ssh_url": "git@github.com:jenkinsci/cloudbees-jenkins-advisor-plugin.git", + "clone_url": "https://github.com/jenkinsci/cloudbees-jenkins-advisor-plugin.git", + "svn_url": "https://github.com/jenkinsci/cloudbees-jenkins-advisor-plugin", + "homepage": "https://plugins.jenkins.io/cloudbees-jenkins-advisor", + "size": 744, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 15, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 15, + "open_issues": 0, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 100995155, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDA5OTUxNTU=", + "name": "azure-event-grid-notifier-plugin", + "full_name": "jenkinsci/azure-event-grid-notifier-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/azure-event-grid-notifier-plugin", + "description": "A Jenkins plugin to send build notifications to an Azure Event Grid topic as post-build step.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/azure-event-grid-notifier-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/azure-event-grid-notifier-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/azure-event-grid-notifier-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/azure-event-grid-notifier-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/azure-event-grid-notifier-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/azure-event-grid-notifier-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/azure-event-grid-notifier-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/azure-event-grid-notifier-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/azure-event-grid-notifier-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/azure-event-grid-notifier-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/azure-event-grid-notifier-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/azure-event-grid-notifier-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/azure-event-grid-notifier-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/azure-event-grid-notifier-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/azure-event-grid-notifier-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/azure-event-grid-notifier-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/azure-event-grid-notifier-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/azure-event-grid-notifier-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/azure-event-grid-notifier-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/azure-event-grid-notifier-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/azure-event-grid-notifier-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/azure-event-grid-notifier-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/azure-event-grid-notifier-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/azure-event-grid-notifier-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/azure-event-grid-notifier-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/azure-event-grid-notifier-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/azure-event-grid-notifier-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/azure-event-grid-notifier-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/azure-event-grid-notifier-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/azure-event-grid-notifier-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/azure-event-grid-notifier-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/azure-event-grid-notifier-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/azure-event-grid-notifier-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/azure-event-grid-notifier-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/azure-event-grid-notifier-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/azure-event-grid-notifier-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/azure-event-grid-notifier-plugin/deployments", + "created_at": "2017-08-21T21:46:04Z", + "updated_at": "2017-08-29T11:44:33Z", + "pushed_at": "2017-08-29T11:50:39Z", + "git_url": "git://github.com/jenkinsci/azure-event-grid-notifier-plugin.git", + "ssh_url": "git@github.com:jenkinsci/azure-event-grid-notifier-plugin.git", + "clone_url": "https://github.com/jenkinsci/azure-event-grid-notifier-plugin.git", + "svn_url": "https://github.com/jenkinsci/azure-event-grid-notifier-plugin", + "homepage": "", + "size": 17, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 101074953, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDEwNzQ5NTM=", + "name": "sentry-plugin", + "full_name": "jenkinsci/sentry-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/sentry-plugin", + "description": "The Sentry plugin helps report errors and warnings from Jenkins into Sentry.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/sentry-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/sentry-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/sentry-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/sentry-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/sentry-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/sentry-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/sentry-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/sentry-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/sentry-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/sentry-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/sentry-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/sentry-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/sentry-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/sentry-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/sentry-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/sentry-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/sentry-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/sentry-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/sentry-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/sentry-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/sentry-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/sentry-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/sentry-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/sentry-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/sentry-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/sentry-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/sentry-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/sentry-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/sentry-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/sentry-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/sentry-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/sentry-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/sentry-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/sentry-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/sentry-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/sentry-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/sentry-plugin/deployments", + "created_at": "2017-08-22T14:57:52Z", + "updated_at": "2019-05-25T01:57:43Z", + "pushed_at": "2017-09-01T19:45:31Z", + "git_url": "git://github.com/jenkinsci/sentry-plugin.git", + "ssh_url": "git@github.com:jenkinsci/sentry-plugin.git", + "clone_url": "https://github.com/jenkinsci/sentry-plugin.git", + "svn_url": "https://github.com/jenkinsci/sentry-plugin", + "homepage": "", + "size": 14, + "stargazers_count": 10, + "watchers_count": 10, + "language": "Groovy", + "has_issues": false, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 5, + "open_issues": 1, + "watchers": 10, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/__files/organizations_107424_repos-626ca8b6-883d-405d-a271-84b38deb0567.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/__files/organizations_107424_repos-626ca8b6-883d-405d-a271-84b38deb0567.json new file mode 100644 index 0000000000..e988596a19 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/__files/organizations_107424_repos-626ca8b6-883d-405d-a271-84b38deb0567.json @@ -0,0 +1,10376 @@ +[ + { + "id": 101345855, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDEzNDU4NTU=", + "name": "ecs-publisher-plugin", + "full_name": "jenkinsci/ecs-publisher-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/ecs-publisher-plugin", + "description": "Integrates TrustSource scan capability with Jenkins", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/ecs-publisher-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/ecs-publisher-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/ecs-publisher-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/ecs-publisher-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/ecs-publisher-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/ecs-publisher-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/ecs-publisher-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/ecs-publisher-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/ecs-publisher-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/ecs-publisher-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/ecs-publisher-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/ecs-publisher-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/ecs-publisher-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/ecs-publisher-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/ecs-publisher-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/ecs-publisher-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/ecs-publisher-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/ecs-publisher-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/ecs-publisher-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/ecs-publisher-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/ecs-publisher-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/ecs-publisher-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/ecs-publisher-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/ecs-publisher-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/ecs-publisher-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/ecs-publisher-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/ecs-publisher-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/ecs-publisher-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/ecs-publisher-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/ecs-publisher-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/ecs-publisher-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/ecs-publisher-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/ecs-publisher-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/ecs-publisher-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/ecs-publisher-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/ecs-publisher-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/ecs-publisher-plugin/deployments", + "created_at": "2017-08-24T23:27:23Z", + "updated_at": "2019-03-11T14:16:03Z", + "pushed_at": "2019-03-11T14:16:01Z", + "git_url": "git://github.com/jenkinsci/ecs-publisher-plugin.git", + "ssh_url": "git@github.com:jenkinsci/ecs-publisher-plugin.git", + "clone_url": "https://github.com/jenkinsci/ecs-publisher-plugin.git", + "svn_url": "https://github.com/jenkinsci/ecs-publisher-plugin", + "homepage": "https://www.trustsource.io", + "size": 742, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 101346355, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDEzNDYzNTU=", + "name": "squashtm-publisher-plugin", + "full_name": "jenkinsci/squashtm-publisher-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/squashtm-publisher-plugin", + "description": "A plugin for Jenkins CI that publishes build results in Squash TM", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/squashtm-publisher-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/squashtm-publisher-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/squashtm-publisher-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/squashtm-publisher-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/squashtm-publisher-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/squashtm-publisher-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/squashtm-publisher-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/squashtm-publisher-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/squashtm-publisher-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/squashtm-publisher-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/squashtm-publisher-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/squashtm-publisher-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/squashtm-publisher-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/squashtm-publisher-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/squashtm-publisher-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/squashtm-publisher-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/squashtm-publisher-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/squashtm-publisher-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/squashtm-publisher-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/squashtm-publisher-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/squashtm-publisher-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/squashtm-publisher-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/squashtm-publisher-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/squashtm-publisher-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/squashtm-publisher-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/squashtm-publisher-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/squashtm-publisher-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/squashtm-publisher-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/squashtm-publisher-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/squashtm-publisher-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/squashtm-publisher-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/squashtm-publisher-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/squashtm-publisher-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/squashtm-publisher-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/squashtm-publisher-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/squashtm-publisher-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/squashtm-publisher-plugin/deployments", + "created_at": "2017-08-24T23:38:08Z", + "updated_at": "2017-08-30T16:32:50Z", + "pushed_at": "2017-08-31T10:07:42Z", + "git_url": "git://github.com/jenkinsci/squashtm-publisher-plugin.git", + "ssh_url": "git@github.com:jenkinsci/squashtm-publisher-plugin.git", + "clone_url": "https://github.com/jenkinsci/squashtm-publisher-plugin.git", + "svn_url": "https://github.com/jenkinsci/squashtm-publisher-plugin", + "homepage": null, + "size": 155, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Groovy", + "has_issues": false, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 101667279, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDE2NjcyNzk=", + "name": "android-apk-size-watcher-plugin", + "full_name": "jenkinsci/android-apk-size-watcher-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/android-apk-size-watcher-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/android-apk-size-watcher-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/android-apk-size-watcher-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/android-apk-size-watcher-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/android-apk-size-watcher-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/android-apk-size-watcher-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/android-apk-size-watcher-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/android-apk-size-watcher-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/android-apk-size-watcher-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/android-apk-size-watcher-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/android-apk-size-watcher-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/android-apk-size-watcher-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/android-apk-size-watcher-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/android-apk-size-watcher-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/android-apk-size-watcher-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/android-apk-size-watcher-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/android-apk-size-watcher-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/android-apk-size-watcher-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/android-apk-size-watcher-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/android-apk-size-watcher-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/android-apk-size-watcher-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/android-apk-size-watcher-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/android-apk-size-watcher-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/android-apk-size-watcher-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/android-apk-size-watcher-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/android-apk-size-watcher-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/android-apk-size-watcher-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/android-apk-size-watcher-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/android-apk-size-watcher-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/android-apk-size-watcher-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/android-apk-size-watcher-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/android-apk-size-watcher-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/android-apk-size-watcher-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/android-apk-size-watcher-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/android-apk-size-watcher-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/android-apk-size-watcher-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/android-apk-size-watcher-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/android-apk-size-watcher-plugin/deployments", + "created_at": "2017-08-28T17:09:20Z", + "updated_at": "2019-01-19T09:26:47Z", + "pushed_at": "2017-10-21T12:51:01Z", + "git_url": "git://github.com/jenkinsci/android-apk-size-watcher-plugin.git", + "ssh_url": "git@github.com:jenkinsci/android-apk-size-watcher-plugin.git", + "clone_url": "https://github.com/jenkinsci/android-apk-size-watcher-plugin.git", + "svn_url": "https://github.com/jenkinsci/android-apk-size-watcher-plugin", + "homepage": null, + "size": 88, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Kotlin", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 2, + "open_issues": 0, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 102138890, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDIxMzg4OTA=", + "name": "archetypes", + "full_name": "jenkinsci/archetypes", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/archetypes", + "description": "Collection of Maven archetypes to get developers started", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/archetypes", + "forks_url": "https://api.github.com/repos/jenkinsci/archetypes/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/archetypes/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/archetypes/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/archetypes/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/archetypes/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/archetypes/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/archetypes/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/archetypes/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/archetypes/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/archetypes/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/archetypes/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/archetypes/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/archetypes/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/archetypes/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/archetypes/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/archetypes/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/archetypes/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/archetypes/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/archetypes/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/archetypes/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/archetypes/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/archetypes/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/archetypes/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/archetypes/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/archetypes/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/archetypes/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/archetypes/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/archetypes/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/archetypes/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/archetypes/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/archetypes/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/archetypes/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/archetypes/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/archetypes/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/archetypes/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/archetypes/deployments", + "created_at": "2017-09-01T17:51:59Z", + "updated_at": "2019-10-21T13:43:27Z", + "pushed_at": "2019-10-21T13:43:26Z", + "git_url": "git://github.com/jenkinsci/archetypes.git", + "ssh_url": "git@github.com:jenkinsci/archetypes.git", + "clone_url": "https://github.com/jenkinsci/archetypes.git", + "svn_url": "https://github.com/jenkinsci/archetypes", + "homepage": null, + "size": 247, + "stargazers_count": 28, + "watchers_count": 28, + "language": "Java", + "has_issues": false, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 23, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 23, + "open_issues": 0, + "watchers": 28, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 102148997, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDIxNDg5OTc=", + "name": "blueocean-test-ssh-server", + "full_name": "jenkinsci/blueocean-test-ssh-server", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/blueocean-test-ssh-server", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/blueocean-test-ssh-server", + "forks_url": "https://api.github.com/repos/jenkinsci/blueocean-test-ssh-server/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/blueocean-test-ssh-server/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/blueocean-test-ssh-server/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/blueocean-test-ssh-server/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/blueocean-test-ssh-server/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/blueocean-test-ssh-server/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/blueocean-test-ssh-server/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/blueocean-test-ssh-server/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/blueocean-test-ssh-server/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/blueocean-test-ssh-server/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/blueocean-test-ssh-server/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/blueocean-test-ssh-server/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/blueocean-test-ssh-server/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/blueocean-test-ssh-server/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/blueocean-test-ssh-server/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/blueocean-test-ssh-server/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/blueocean-test-ssh-server/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/blueocean-test-ssh-server/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/blueocean-test-ssh-server/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/blueocean-test-ssh-server/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/blueocean-test-ssh-server/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/blueocean-test-ssh-server/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/blueocean-test-ssh-server/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/blueocean-test-ssh-server/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/blueocean-test-ssh-server/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/blueocean-test-ssh-server/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/blueocean-test-ssh-server/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/blueocean-test-ssh-server/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/blueocean-test-ssh-server/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/blueocean-test-ssh-server/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/blueocean-test-ssh-server/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/blueocean-test-ssh-server/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/blueocean-test-ssh-server/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/blueocean-test-ssh-server/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/blueocean-test-ssh-server/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/blueocean-test-ssh-server/deployments", + "created_at": "2017-09-01T20:04:50Z", + "updated_at": "2017-09-01T20:04:54Z", + "pushed_at": "2017-09-02T19:15:51Z", + "git_url": "git://github.com/jenkinsci/blueocean-test-ssh-server.git", + "ssh_url": "git@github.com:jenkinsci/blueocean-test-ssh-server.git", + "clone_url": "https://github.com/jenkinsci/blueocean-test-ssh-server.git", + "svn_url": "https://github.com/jenkinsci/blueocean-test-ssh-server", + "homepage": null, + "size": 29, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 102777171, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDI3NzcxNzE=", + "name": "elastest-plugin", + "full_name": "jenkinsci/elastest-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/elastest-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/elastest-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/elastest-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/elastest-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/elastest-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/elastest-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/elastest-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/elastest-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/elastest-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/elastest-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/elastest-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/elastest-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/elastest-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/elastest-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/elastest-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/elastest-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/elastest-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/elastest-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/elastest-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/elastest-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/elastest-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/elastest-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/elastest-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/elastest-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/elastest-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/elastest-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/elastest-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/elastest-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/elastest-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/elastest-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/elastest-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/elastest-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/elastest-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/elastest-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/elastest-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/elastest-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/elastest-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/elastest-plugin/deployments", + "created_at": "2017-09-07T19:24:59Z", + "updated_at": "2019-04-29T08:20:22Z", + "pushed_at": "2019-04-29T08:20:20Z", + "git_url": "git://github.com/jenkinsci/elastest-plugin.git", + "ssh_url": "git@github.com:jenkinsci/elastest-plugin.git", + "clone_url": "https://github.com/jenkinsci/elastest-plugin.git", + "svn_url": "https://github.com/jenkinsci/elastest-plugin", + "homepage": null, + "size": 431, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 102783455, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDI3ODM0NTU=", + "name": "disable-github-multibranch-status-plugin", + "full_name": "jenkinsci/disable-github-multibranch-status-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/disable-github-multibranch-status-plugin", + "description": "Jenkins plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/disable-github-multibranch-status-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/disable-github-multibranch-status-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/disable-github-multibranch-status-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/disable-github-multibranch-status-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/disable-github-multibranch-status-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/disable-github-multibranch-status-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/disable-github-multibranch-status-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/disable-github-multibranch-status-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/disable-github-multibranch-status-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/disable-github-multibranch-status-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/disable-github-multibranch-status-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/disable-github-multibranch-status-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/disable-github-multibranch-status-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/disable-github-multibranch-status-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/disable-github-multibranch-status-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/disable-github-multibranch-status-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/disable-github-multibranch-status-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/disable-github-multibranch-status-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/disable-github-multibranch-status-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/disable-github-multibranch-status-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/disable-github-multibranch-status-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/disable-github-multibranch-status-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/disable-github-multibranch-status-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/disable-github-multibranch-status-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/disable-github-multibranch-status-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/disable-github-multibranch-status-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/disable-github-multibranch-status-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/disable-github-multibranch-status-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/disable-github-multibranch-status-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/disable-github-multibranch-status-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/disable-github-multibranch-status-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/disable-github-multibranch-status-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/disable-github-multibranch-status-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/disable-github-multibranch-status-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/disable-github-multibranch-status-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/disable-github-multibranch-status-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/disable-github-multibranch-status-plugin/deployments", + "created_at": "2017-09-07T20:38:00Z", + "updated_at": "2019-10-08T16:58:41Z", + "pushed_at": "2019-10-08T16:58:39Z", + "git_url": "git://github.com/jenkinsci/disable-github-multibranch-status-plugin.git", + "ssh_url": "git@github.com:jenkinsci/disable-github-multibranch-status-plugin.git", + "clone_url": "https://github.com/jenkinsci/disable-github-multibranch-status-plugin.git", + "svn_url": "https://github.com/jenkinsci/disable-github-multibranch-status-plugin", + "homepage": "", + "size": 7, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 3, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 102863361, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDI4NjMzNjE=", + "name": "smalltest-plugin", + "full_name": "jenkinsci/smalltest-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/smalltest-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/smalltest-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/smalltest-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/smalltest-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/smalltest-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/smalltest-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/smalltest-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/smalltest-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/smalltest-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/smalltest-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/smalltest-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/smalltest-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/smalltest-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/smalltest-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/smalltest-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/smalltest-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/smalltest-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/smalltest-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/smalltest-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/smalltest-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/smalltest-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/smalltest-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/smalltest-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/smalltest-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/smalltest-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/smalltest-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/smalltest-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/smalltest-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/smalltest-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/smalltest-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/smalltest-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/smalltest-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/smalltest-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/smalltest-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/smalltest-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/smalltest-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/smalltest-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/smalltest-plugin/deployments", + "created_at": "2017-09-08T13:17:08Z", + "updated_at": "2017-09-14T08:06:17Z", + "pushed_at": "2017-09-29T17:49:33Z", + "git_url": "git://github.com/jenkinsci/smalltest-plugin.git", + "ssh_url": "git@github.com:jenkinsci/smalltest-plugin.git", + "clone_url": "https://github.com/jenkinsci/smalltest-plugin.git", + "svn_url": "https://github.com/jenkinsci/smalltest-plugin", + "homepage": null, + "size": 34, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 102875825, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDI4NzU4MjU=", + "name": "testcomplete11-xunit-plugin", + "full_name": "jenkinsci/testcomplete11-xunit-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/testcomplete11-xunit-plugin", + "description": "Jenkins Plugin that transforms TestComplete (TC) 11 and 12 (but not TC 10 and older) MHT test reports into xUnit format so they can be integrated with Jenkins' JUnit features.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/testcomplete11-xunit-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/testcomplete11-xunit-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/testcomplete11-xunit-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/testcomplete11-xunit-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/testcomplete11-xunit-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/testcomplete11-xunit-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/testcomplete11-xunit-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/testcomplete11-xunit-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/testcomplete11-xunit-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/testcomplete11-xunit-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/testcomplete11-xunit-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/testcomplete11-xunit-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/testcomplete11-xunit-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/testcomplete11-xunit-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/testcomplete11-xunit-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/testcomplete11-xunit-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/testcomplete11-xunit-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/testcomplete11-xunit-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/testcomplete11-xunit-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/testcomplete11-xunit-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/testcomplete11-xunit-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/testcomplete11-xunit-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/testcomplete11-xunit-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/testcomplete11-xunit-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/testcomplete11-xunit-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/testcomplete11-xunit-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/testcomplete11-xunit-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/testcomplete11-xunit-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/testcomplete11-xunit-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/testcomplete11-xunit-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/testcomplete11-xunit-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/testcomplete11-xunit-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/testcomplete11-xunit-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/testcomplete11-xunit-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/testcomplete11-xunit-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/testcomplete11-xunit-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/testcomplete11-xunit-plugin/deployments", + "created_at": "2017-09-08T15:25:42Z", + "updated_at": "2018-05-20T20:07:55Z", + "pushed_at": "2019-10-08T16:41:23Z", + "git_url": "git://github.com/jenkinsci/testcomplete11-xunit-plugin.git", + "ssh_url": "git@github.com:jenkinsci/testcomplete11-xunit-plugin.git", + "clone_url": "https://github.com/jenkinsci/testcomplete11-xunit-plugin.git", + "svn_url": "https://github.com/jenkinsci/testcomplete11-xunit-plugin", + "homepage": "", + "size": 3425, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 2, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 102876579, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDI4NzY1Nzk=", + "name": "fedora-module-build-system-plugin", + "full_name": "jenkinsci/fedora-module-build-system-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/fedora-module-build-system-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/fedora-module-build-system-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/fedora-module-build-system-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/fedora-module-build-system-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/fedora-module-build-system-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/fedora-module-build-system-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/fedora-module-build-system-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/fedora-module-build-system-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/fedora-module-build-system-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/fedora-module-build-system-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/fedora-module-build-system-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/fedora-module-build-system-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/fedora-module-build-system-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/fedora-module-build-system-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/fedora-module-build-system-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/fedora-module-build-system-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/fedora-module-build-system-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/fedora-module-build-system-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/fedora-module-build-system-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/fedora-module-build-system-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/fedora-module-build-system-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/fedora-module-build-system-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/fedora-module-build-system-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/fedora-module-build-system-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/fedora-module-build-system-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/fedora-module-build-system-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/fedora-module-build-system-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/fedora-module-build-system-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/fedora-module-build-system-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/fedora-module-build-system-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/fedora-module-build-system-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/fedora-module-build-system-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/fedora-module-build-system-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/fedora-module-build-system-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/fedora-module-build-system-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/fedora-module-build-system-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/fedora-module-build-system-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/fedora-module-build-system-plugin/deployments", + "created_at": "2017-09-08T15:32:56Z", + "updated_at": "2017-09-08T19:07:14Z", + "pushed_at": "2017-09-08T21:26:57Z", + "git_url": "git://github.com/jenkinsci/fedora-module-build-system-plugin.git", + "ssh_url": "git@github.com:jenkinsci/fedora-module-build-system-plugin.git", + "clone_url": "https://github.com/jenkinsci/fedora-module-build-system-plugin.git", + "svn_url": "https://github.com/jenkinsci/fedora-module-build-system-plugin", + "homepage": null, + "size": 50, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 102876726, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDI4NzY3MjY=", + "name": "github-additional-traits-plugin", + "full_name": "jenkinsci/github-additional-traits-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/github-additional-traits-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/github-additional-traits-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/github-additional-traits-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/github-additional-traits-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/github-additional-traits-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/github-additional-traits-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/github-additional-traits-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/github-additional-traits-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/github-additional-traits-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/github-additional-traits-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/github-additional-traits-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/github-additional-traits-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/github-additional-traits-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/github-additional-traits-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/github-additional-traits-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/github-additional-traits-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/github-additional-traits-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/github-additional-traits-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/github-additional-traits-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/github-additional-traits-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/github-additional-traits-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/github-additional-traits-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/github-additional-traits-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/github-additional-traits-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/github-additional-traits-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/github-additional-traits-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/github-additional-traits-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/github-additional-traits-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/github-additional-traits-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/github-additional-traits-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/github-additional-traits-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/github-additional-traits-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/github-additional-traits-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/github-additional-traits-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/github-additional-traits-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/github-additional-traits-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/github-additional-traits-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/github-additional-traits-plugin/deployments", + "created_at": "2017-09-08T15:34:22Z", + "updated_at": "2017-09-11T12:53:16Z", + "pushed_at": "2017-12-18T13:10:22Z", + "git_url": "git://github.com/jenkinsci/github-additional-traits-plugin.git", + "ssh_url": "git@github.com:jenkinsci/github-additional-traits-plugin.git", + "clone_url": "https://github.com/jenkinsci/github-additional-traits-plugin.git", + "svn_url": "https://github.com/jenkinsci/github-additional-traits-plugin", + "homepage": null, + "size": 16, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 102877358, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDI4NzczNTg=", + "name": "doktor-plugin", + "full_name": "jenkinsci/doktor-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/doktor-plugin", + "description": "Jenkins plugin for automated documentation uploading to Confluence.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/doktor-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/doktor-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/doktor-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/doktor-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/doktor-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/doktor-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/doktor-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/doktor-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/doktor-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/doktor-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/doktor-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/doktor-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/doktor-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/doktor-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/doktor-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/doktor-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/doktor-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/doktor-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/doktor-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/doktor-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/doktor-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/doktor-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/doktor-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/doktor-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/doktor-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/doktor-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/doktor-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/doktor-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/doktor-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/doktor-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/doktor-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/doktor-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/doktor-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/doktor-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/doktor-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/doktor-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/doktor-plugin/deployments", + "created_at": "2017-09-08T15:40:24Z", + "updated_at": "2019-10-22T13:27:32Z", + "pushed_at": "2019-04-10T22:40:43Z", + "git_url": "git://github.com/jenkinsci/doktor-plugin.git", + "ssh_url": "git@github.com:jenkinsci/doktor-plugin.git", + "clone_url": "https://github.com/jenkinsci/doktor-plugin.git", + "svn_url": "https://github.com/jenkinsci/doktor-plugin", + "homepage": null, + "size": 7979, + "stargazers_count": 14, + "watchers_count": 14, + "language": "Kotlin", + "has_issues": false, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 14, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 102878502, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDI4Nzg1MDI=", + "name": "argus-notifier-plugin", + "full_name": "jenkinsci/argus-notifier-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/argus-notifier-plugin", + "description": "sends build status and time to an Argus endpoint", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/argus-notifier-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/argus-notifier-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/argus-notifier-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/argus-notifier-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/argus-notifier-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/argus-notifier-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/argus-notifier-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/argus-notifier-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/argus-notifier-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/argus-notifier-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/argus-notifier-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/argus-notifier-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/argus-notifier-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/argus-notifier-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/argus-notifier-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/argus-notifier-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/argus-notifier-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/argus-notifier-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/argus-notifier-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/argus-notifier-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/argus-notifier-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/argus-notifier-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/argus-notifier-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/argus-notifier-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/argus-notifier-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/argus-notifier-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/argus-notifier-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/argus-notifier-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/argus-notifier-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/argus-notifier-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/argus-notifier-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/argus-notifier-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/argus-notifier-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/argus-notifier-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/argus-notifier-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/argus-notifier-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/argus-notifier-plugin/deployments", + "created_at": "2017-09-08T15:51:39Z", + "updated_at": "2019-10-24T17:13:30Z", + "pushed_at": "2019-10-24T17:13:28Z", + "git_url": "git://github.com/jenkinsci/argus-notifier-plugin.git", + "ssh_url": "git@github.com:jenkinsci/argus-notifier-plugin.git", + "clone_url": "https://github.com/jenkinsci/argus-notifier-plugin.git", + "svn_url": "https://github.com/jenkinsci/argus-notifier-plugin", + "homepage": "", + "size": 176, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 102878679, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDI4Nzg2Nzk=", + "name": "gitflow-plugin", + "full_name": "jenkinsci/gitflow-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/gitflow-plugin", + "description": "Native Git Flow in Jenkins", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/gitflow-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/gitflow-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/gitflow-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/gitflow-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/gitflow-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/gitflow-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/gitflow-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/gitflow-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/gitflow-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/gitflow-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/gitflow-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/gitflow-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/gitflow-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/gitflow-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/gitflow-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/gitflow-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/gitflow-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/gitflow-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/gitflow-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/gitflow-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/gitflow-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/gitflow-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/gitflow-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/gitflow-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/gitflow-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/gitflow-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/gitflow-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/gitflow-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/gitflow-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/gitflow-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/gitflow-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/gitflow-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/gitflow-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/gitflow-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/gitflow-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/gitflow-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/gitflow-plugin/deployments", + "created_at": "2017-09-08T15:53:31Z", + "updated_at": "2017-09-08T15:53:40Z", + "pushed_at": "2019-10-08T12:34:46Z", + "git_url": "git://github.com/jenkinsci/gitflow-plugin.git", + "ssh_url": "git@github.com:jenkinsci/gitflow-plugin.git", + "clone_url": "https://github.com/jenkinsci/gitflow-plugin.git", + "svn_url": "https://github.com/jenkinsci/gitflow-plugin", + "homepage": null, + "size": 2389, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 3, + "open_issues": 1, + "watchers": 0, + "default_branch": "develop", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 102878808, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDI4Nzg4MDg=", + "name": "pipeline-charts-plugin", + "full_name": "jenkinsci/pipeline-charts-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pipeline-charts-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/pipeline-charts-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pipeline-charts-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pipeline-charts-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pipeline-charts-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pipeline-charts-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pipeline-charts-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pipeline-charts-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pipeline-charts-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pipeline-charts-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pipeline-charts-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pipeline-charts-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pipeline-charts-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pipeline-charts-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pipeline-charts-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pipeline-charts-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pipeline-charts-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pipeline-charts-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pipeline-charts-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pipeline-charts-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pipeline-charts-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pipeline-charts-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pipeline-charts-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pipeline-charts-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pipeline-charts-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pipeline-charts-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pipeline-charts-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pipeline-charts-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pipeline-charts-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pipeline-charts-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pipeline-charts-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pipeline-charts-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pipeline-charts-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pipeline-charts-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pipeline-charts-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pipeline-charts-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pipeline-charts-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pipeline-charts-plugin/deployments", + "created_at": "2017-09-08T15:54:34Z", + "updated_at": "2017-09-08T15:54:36Z", + "pushed_at": "2017-09-07T05:23:28Z", + "git_url": "git://github.com/jenkinsci/pipeline-charts-plugin.git", + "ssh_url": "git@github.com:jenkinsci/pipeline-charts-plugin.git", + "clone_url": "https://github.com/jenkinsci/pipeline-charts-plugin.git", + "svn_url": "https://github.com/jenkinsci/pipeline-charts-plugin", + "homepage": null, + "size": 150, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 102885633, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDI4ODU2MzM=", + "name": "osf-builder-suite-for-sfcc-deploy-plugin", + "full_name": "jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin", + "description": "OSF Builder Suite For Salesforce Commerce Cloud :: Deploy", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/deployments", + "created_at": "2017-09-08T17:09:04Z", + "updated_at": "2019-07-31T10:33:18Z", + "pushed_at": "2019-07-31T10:33:16Z", + "git_url": "git://github.com/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin.git", + "ssh_url": "git@github.com:jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin.git", + "clone_url": "https://github.com/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin.git", + "svn_url": "https://github.com/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin", + "homepage": "", + "size": 95, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": true, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 102889687, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDI4ODk2ODc=", + "name": "humio-plugin", + "full_name": "jenkinsci/humio-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/humio-plugin", + "description": "A Jenkins Plugin that sends build logs to Humio!", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/humio-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/humio-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/humio-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/humio-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/humio-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/humio-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/humio-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/humio-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/humio-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/humio-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/humio-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/humio-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/humio-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/humio-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/humio-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/humio-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/humio-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/humio-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/humio-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/humio-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/humio-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/humio-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/humio-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/humio-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/humio-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/humio-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/humio-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/humio-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/humio-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/humio-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/humio-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/humio-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/humio-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/humio-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/humio-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/humio-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/humio-plugin/deployments", + "created_at": "2017-09-08T17:56:22Z", + "updated_at": "2018-09-05T05:53:15Z", + "pushed_at": "2018-09-05T05:53:13Z", + "git_url": "git://github.com/jenkinsci/humio-plugin.git", + "ssh_url": "git@github.com:jenkinsci/humio-plugin.git", + "clone_url": "https://github.com/jenkinsci/humio-plugin.git", + "svn_url": "https://github.com/jenkinsci/humio-plugin", + "homepage": null, + "size": 35, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 102906480, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDI5MDY0ODA=", + "name": "git-bisect-plugin", + "full_name": "jenkinsci/git-bisect-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/git-bisect-plugin", + "description": "A plugin for running git-bisect on jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/git-bisect-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/git-bisect-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/git-bisect-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/git-bisect-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/git-bisect-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/git-bisect-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/git-bisect-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/git-bisect-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/git-bisect-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/git-bisect-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/git-bisect-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/git-bisect-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/git-bisect-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/git-bisect-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/git-bisect-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/git-bisect-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/git-bisect-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/git-bisect-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/git-bisect-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/git-bisect-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/git-bisect-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/git-bisect-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/git-bisect-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/git-bisect-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/git-bisect-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/git-bisect-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/git-bisect-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/git-bisect-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/git-bisect-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/git-bisect-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/git-bisect-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/git-bisect-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/git-bisect-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/git-bisect-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/git-bisect-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/git-bisect-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/git-bisect-plugin/deployments", + "created_at": "2017-09-08T21:36:26Z", + "updated_at": "2018-12-03T12:42:19Z", + "pushed_at": "2018-04-12T08:51:13Z", + "git_url": "git://github.com/jenkinsci/git-bisect-plugin.git", + "ssh_url": "git@github.com:jenkinsci/git-bisect-plugin.git", + "clone_url": "https://github.com/jenkinsci/git-bisect-plugin.git", + "svn_url": "https://github.com/jenkinsci/git-bisect-plugin", + "homepage": "", + "size": 52, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 7, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 2, + "open_issues": 7, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 103155354, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDMxNTUzNTQ=", + "name": "docker-java-api-plugin", + "full_name": "jenkinsci/docker-java-api-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/docker-java-api-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/docker-java-api-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/docker-java-api-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/docker-java-api-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/docker-java-api-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/docker-java-api-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/docker-java-api-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/docker-java-api-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/docker-java-api-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/docker-java-api-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/docker-java-api-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/docker-java-api-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/docker-java-api-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/docker-java-api-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/docker-java-api-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/docker-java-api-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/docker-java-api-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/docker-java-api-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/docker-java-api-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/docker-java-api-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/docker-java-api-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/docker-java-api-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/docker-java-api-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/docker-java-api-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/docker-java-api-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/docker-java-api-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/docker-java-api-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/docker-java-api-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/docker-java-api-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/docker-java-api-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/docker-java-api-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/docker-java-api-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/docker-java-api-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/docker-java-api-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/docker-java-api-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/docker-java-api-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/docker-java-api-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/docker-java-api-plugin/deployments", + "created_at": "2017-09-11T15:44:57Z", + "updated_at": "2018-09-10T08:30:39Z", + "pushed_at": "2019-09-24T09:43:32Z", + "git_url": "git://github.com/jenkinsci/docker-java-api-plugin.git", + "ssh_url": "git@github.com:jenkinsci/docker-java-api-plugin.git", + "clone_url": "https://github.com/jenkinsci/docker-java-api-plugin.git", + "svn_url": "https://github.com/jenkinsci/docker-java-api-plugin", + "homepage": "https://wiki.jenkins.io/display/JENKINS/Docker+Java+API+Plugin", + "size": 6, + "stargazers_count": 1, + "watchers_count": 1, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 3, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 103302223, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDMzMDIyMjM=", + "name": "jep", + "full_name": "jenkinsci/jep", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jep", + "description": "Jenkins Enhancement Proposals", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jep", + "forks_url": "https://api.github.com/repos/jenkinsci/jep/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jep/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jep/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jep/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jep/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jep/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jep/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jep/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jep/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jep/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jep/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jep/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jep/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jep/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jep/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jep/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jep/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jep/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jep/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jep/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jep/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jep/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jep/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jep/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jep/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jep/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jep/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jep/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jep/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jep/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jep/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jep/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jep/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jep/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jep/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jep/deployments", + "created_at": "2017-09-12T17:39:26Z", + "updated_at": "2019-10-24T14:55:44Z", + "pushed_at": "2019-10-12T20:33:04Z", + "git_url": "git://github.com/jenkinsci/jep.git", + "ssh_url": "git@github.com:jenkinsci/jep.git", + "clone_url": "https://github.com/jenkinsci/jep.git", + "svn_url": "https://github.com/jenkinsci/jep", + "homepage": "", + "size": 3879, + "stargazers_count": 100, + "watchers_count": 100, + "language": "Shell", + "has_issues": false, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 64, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 64, + "open_issues": 0, + "watchers": 100, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 103670315, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDM2NzAzMTU=", + "name": "upload-pgyer-plugin", + "full_name": "jenkinsci/upload-pgyer-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/upload-pgyer-plugin", + "description": "jenkins-upload-pgyer-plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/upload-pgyer-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/upload-pgyer-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/upload-pgyer-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/upload-pgyer-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/upload-pgyer-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/upload-pgyer-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/upload-pgyer-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/upload-pgyer-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/upload-pgyer-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/upload-pgyer-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/upload-pgyer-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/upload-pgyer-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/upload-pgyer-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/upload-pgyer-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/upload-pgyer-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/upload-pgyer-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/upload-pgyer-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/upload-pgyer-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/upload-pgyer-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/upload-pgyer-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/upload-pgyer-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/upload-pgyer-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/upload-pgyer-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/upload-pgyer-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/upload-pgyer-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/upload-pgyer-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/upload-pgyer-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/upload-pgyer-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/upload-pgyer-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/upload-pgyer-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/upload-pgyer-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/upload-pgyer-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/upload-pgyer-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/upload-pgyer-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/upload-pgyer-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/upload-pgyer-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/upload-pgyer-plugin/deployments", + "created_at": "2017-09-15T15:05:11Z", + "updated_at": "2019-10-25T02:07:38Z", + "pushed_at": "2019-09-30T01:15:34Z", + "git_url": "git://github.com/jenkinsci/upload-pgyer-plugin.git", + "ssh_url": "git@github.com:jenkinsci/upload-pgyer-plugin.git", + "clone_url": "https://github.com/jenkinsci/upload-pgyer-plugin.git", + "svn_url": "https://github.com/jenkinsci/upload-pgyer-plugin", + "homepage": null, + "size": 417, + "stargazers_count": 46, + "watchers_count": 46, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 14, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 14, + "open_issues": 0, + "watchers": 46, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 103670430, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDM2NzA0MzA=", + "name": "global-slack-notifier-plugin", + "full_name": "jenkinsci/global-slack-notifier-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/global-slack-notifier-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/global-slack-notifier-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/global-slack-notifier-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/global-slack-notifier-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/global-slack-notifier-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/global-slack-notifier-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/global-slack-notifier-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/global-slack-notifier-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/global-slack-notifier-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/global-slack-notifier-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/global-slack-notifier-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/global-slack-notifier-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/global-slack-notifier-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/global-slack-notifier-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/global-slack-notifier-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/global-slack-notifier-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/global-slack-notifier-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/global-slack-notifier-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/global-slack-notifier-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/global-slack-notifier-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/global-slack-notifier-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/global-slack-notifier-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/global-slack-notifier-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/global-slack-notifier-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/global-slack-notifier-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/global-slack-notifier-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/global-slack-notifier-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/global-slack-notifier-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/global-slack-notifier-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/global-slack-notifier-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/global-slack-notifier-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/global-slack-notifier-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/global-slack-notifier-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/global-slack-notifier-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/global-slack-notifier-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/global-slack-notifier-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/global-slack-notifier-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/global-slack-notifier-plugin/deployments", + "created_at": "2017-09-15T15:06:09Z", + "updated_at": "2019-07-15T11:45:45Z", + "pushed_at": "2019-02-15T11:58:18Z", + "git_url": "git://github.com/jenkinsci/global-slack-notifier-plugin.git", + "ssh_url": "git@github.com:jenkinsci/global-slack-notifier-plugin.git", + "clone_url": "https://github.com/jenkinsci/global-slack-notifier-plugin.git", + "svn_url": "https://github.com/jenkinsci/global-slack-notifier-plugin", + "homepage": null, + "size": 91, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 4, + "open_issues": 0, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 103670638, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDM2NzA2Mzg=", + "name": "scm-filter-aged-refs-plugin", + "full_name": "jenkinsci/scm-filter-aged-refs-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/scm-filter-aged-refs-plugin", + "description": "Additional filtering traits for SCM Jenkins plugins", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/scm-filter-aged-refs-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/scm-filter-aged-refs-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/scm-filter-aged-refs-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/scm-filter-aged-refs-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/scm-filter-aged-refs-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/scm-filter-aged-refs-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/scm-filter-aged-refs-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/scm-filter-aged-refs-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/scm-filter-aged-refs-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/scm-filter-aged-refs-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/scm-filter-aged-refs-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/scm-filter-aged-refs-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/scm-filter-aged-refs-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/scm-filter-aged-refs-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/scm-filter-aged-refs-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/scm-filter-aged-refs-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/scm-filter-aged-refs-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/scm-filter-aged-refs-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/scm-filter-aged-refs-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/scm-filter-aged-refs-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/scm-filter-aged-refs-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/scm-filter-aged-refs-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/scm-filter-aged-refs-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/scm-filter-aged-refs-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/scm-filter-aged-refs-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/scm-filter-aged-refs-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/scm-filter-aged-refs-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/scm-filter-aged-refs-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/scm-filter-aged-refs-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/scm-filter-aged-refs-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/scm-filter-aged-refs-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/scm-filter-aged-refs-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/scm-filter-aged-refs-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/scm-filter-aged-refs-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/scm-filter-aged-refs-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/scm-filter-aged-refs-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/scm-filter-aged-refs-plugin/deployments", + "created_at": "2017-09-15T15:08:09Z", + "updated_at": "2019-04-15T12:41:20Z", + "pushed_at": "2019-02-05T15:12:22Z", + "git_url": "git://github.com/jenkinsci/scm-filter-aged-refs-plugin.git", + "ssh_url": "git@github.com:jenkinsci/scm-filter-aged-refs-plugin.git", + "clone_url": "https://github.com/jenkinsci/scm-filter-aged-refs-plugin.git", + "svn_url": "https://github.com/jenkinsci/scm-filter-aged-refs-plugin", + "homepage": "https://wiki.jenkins.io/display/JENKINS/Aged+Refs+SCM+Filter+Plugins", + "size": 38, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 5, + "open_issues": 2, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 103965182, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDM5NjUxODI=", + "name": "blueocean-js-builder", + "full_name": "jenkinsci/blueocean-js-builder", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/blueocean-js-builder", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/blueocean-js-builder", + "forks_url": "https://api.github.com/repos/jenkinsci/blueocean-js-builder/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/blueocean-js-builder/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/blueocean-js-builder/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/blueocean-js-builder/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/blueocean-js-builder/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/blueocean-js-builder/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/blueocean-js-builder/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/blueocean-js-builder/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/blueocean-js-builder/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/blueocean-js-builder/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/blueocean-js-builder/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/blueocean-js-builder/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/blueocean-js-builder/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/blueocean-js-builder/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/blueocean-js-builder/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/blueocean-js-builder/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/blueocean-js-builder/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/blueocean-js-builder/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/blueocean-js-builder/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/blueocean-js-builder/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/blueocean-js-builder/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/blueocean-js-builder/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/blueocean-js-builder/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/blueocean-js-builder/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/blueocean-js-builder/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/blueocean-js-builder/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/blueocean-js-builder/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/blueocean-js-builder/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/blueocean-js-builder/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/blueocean-js-builder/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/blueocean-js-builder/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/blueocean-js-builder/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/blueocean-js-builder/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/blueocean-js-builder/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/blueocean-js-builder/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/blueocean-js-builder/deployments", + "created_at": "2017-09-18T16:40:23Z", + "updated_at": "2018-02-15T03:35:06Z", + "pushed_at": "2018-02-14T11:16:22Z", + "git_url": "git://github.com/jenkinsci/blueocean-js-builder.git", + "ssh_url": "git@github.com:jenkinsci/blueocean-js-builder.git", + "clone_url": "https://github.com/jenkinsci/blueocean-js-builder.git", + "svn_url": "https://github.com/jenkinsci/blueocean-js-builder", + "homepage": "", + "size": 453, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": true, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 1, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 104235387, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDQyMzUzODc=", + "name": "compuware-common-configuration-plugin", + "full_name": "jenkinsci/compuware-common-configuration-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/compuware-common-configuration-plugin", + "description": "Compuware Topaz ® interface for common code", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/compuware-common-configuration-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/compuware-common-configuration-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/compuware-common-configuration-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/compuware-common-configuration-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/compuware-common-configuration-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/compuware-common-configuration-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/compuware-common-configuration-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/compuware-common-configuration-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/compuware-common-configuration-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/compuware-common-configuration-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/compuware-common-configuration-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/compuware-common-configuration-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/compuware-common-configuration-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/compuware-common-configuration-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/compuware-common-configuration-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/compuware-common-configuration-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/compuware-common-configuration-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/compuware-common-configuration-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/compuware-common-configuration-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/compuware-common-configuration-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/compuware-common-configuration-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/compuware-common-configuration-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/compuware-common-configuration-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/compuware-common-configuration-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/compuware-common-configuration-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/compuware-common-configuration-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/compuware-common-configuration-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/compuware-common-configuration-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/compuware-common-configuration-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/compuware-common-configuration-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/compuware-common-configuration-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/compuware-common-configuration-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/compuware-common-configuration-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/compuware-common-configuration-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/compuware-common-configuration-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/compuware-common-configuration-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/compuware-common-configuration-plugin/deployments", + "created_at": "2017-09-20T15:44:03Z", + "updated_at": "2019-07-16T18:49:18Z", + "pushed_at": "2019-07-16T18:49:16Z", + "git_url": "git://github.com/jenkinsci/compuware-common-configuration-plugin.git", + "ssh_url": "git@github.com:jenkinsci/compuware-common-configuration-plugin.git", + "clone_url": "https://github.com/jenkinsci/compuware-common-configuration-plugin.git", + "svn_url": "https://github.com/jenkinsci/compuware-common-configuration-plugin", + "homepage": null, + "size": 192, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 104273108, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDQyNzMxMDg=", + "name": "compuware-xpediter-code-coverage-plugin", + "full_name": "jenkinsci/compuware-xpediter-code-coverage-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/compuware-xpediter-code-coverage-plugin", + "description": "Compuware Topaz ® interface to specify Code Coverage ® parameters", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/compuware-xpediter-code-coverage-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/compuware-xpediter-code-coverage-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/compuware-xpediter-code-coverage-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/compuware-xpediter-code-coverage-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/compuware-xpediter-code-coverage-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/compuware-xpediter-code-coverage-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/compuware-xpediter-code-coverage-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/compuware-xpediter-code-coverage-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/compuware-xpediter-code-coverage-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/compuware-xpediter-code-coverage-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/compuware-xpediter-code-coverage-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/compuware-xpediter-code-coverage-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/compuware-xpediter-code-coverage-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/compuware-xpediter-code-coverage-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/compuware-xpediter-code-coverage-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/compuware-xpediter-code-coverage-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/compuware-xpediter-code-coverage-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/compuware-xpediter-code-coverage-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/compuware-xpediter-code-coverage-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/compuware-xpediter-code-coverage-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/compuware-xpediter-code-coverage-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/compuware-xpediter-code-coverage-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/compuware-xpediter-code-coverage-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/compuware-xpediter-code-coverage-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/compuware-xpediter-code-coverage-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/compuware-xpediter-code-coverage-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/compuware-xpediter-code-coverage-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/compuware-xpediter-code-coverage-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/compuware-xpediter-code-coverage-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/compuware-xpediter-code-coverage-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/compuware-xpediter-code-coverage-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/compuware-xpediter-code-coverage-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/compuware-xpediter-code-coverage-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/compuware-xpediter-code-coverage-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/compuware-xpediter-code-coverage-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/compuware-xpediter-code-coverage-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/compuware-xpediter-code-coverage-plugin/deployments", + "created_at": "2017-09-20T22:16:43Z", + "updated_at": "2019-04-05T19:30:28Z", + "pushed_at": "2019-06-11T17:07:27Z", + "git_url": "git://github.com/jenkinsci/compuware-xpediter-code-coverage-plugin.git", + "ssh_url": "git@github.com:jenkinsci/compuware-xpediter-code-coverage-plugin.git", + "clone_url": "https://github.com/jenkinsci/compuware-xpediter-code-coverage-plugin.git", + "svn_url": "https://github.com/jenkinsci/compuware-xpediter-code-coverage-plugin", + "homepage": null, + "size": 153, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 104370245, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDQzNzAyNDU=", + "name": "scm-trait-commit-skip-plugin", + "full_name": "jenkinsci/scm-trait-commit-skip-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/scm-trait-commit-skip-plugin", + "description": "Additional filtering traits for SCM Jenkins plugins", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/scm-trait-commit-skip-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/scm-trait-commit-skip-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/scm-trait-commit-skip-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/scm-trait-commit-skip-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/scm-trait-commit-skip-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/scm-trait-commit-skip-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/scm-trait-commit-skip-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/scm-trait-commit-skip-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/scm-trait-commit-skip-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/scm-trait-commit-skip-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/scm-trait-commit-skip-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/scm-trait-commit-skip-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/scm-trait-commit-skip-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/scm-trait-commit-skip-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/scm-trait-commit-skip-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/scm-trait-commit-skip-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/scm-trait-commit-skip-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/scm-trait-commit-skip-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/scm-trait-commit-skip-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/scm-trait-commit-skip-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/scm-trait-commit-skip-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/scm-trait-commit-skip-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/scm-trait-commit-skip-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/scm-trait-commit-skip-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/scm-trait-commit-skip-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/scm-trait-commit-skip-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/scm-trait-commit-skip-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/scm-trait-commit-skip-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/scm-trait-commit-skip-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/scm-trait-commit-skip-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/scm-trait-commit-skip-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/scm-trait-commit-skip-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/scm-trait-commit-skip-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/scm-trait-commit-skip-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/scm-trait-commit-skip-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/scm-trait-commit-skip-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/scm-trait-commit-skip-plugin/deployments", + "created_at": "2017-09-21T16:08:40Z", + "updated_at": "2019-06-20T20:17:55Z", + "pushed_at": "2019-07-17T20:47:06Z", + "git_url": "git://github.com/jenkinsci/scm-trait-commit-skip-plugin.git", + "ssh_url": "git@github.com:jenkinsci/scm-trait-commit-skip-plugin.git", + "clone_url": "https://github.com/jenkinsci/scm-trait-commit-skip-plugin.git", + "svn_url": "https://github.com/jenkinsci/scm-trait-commit-skip-plugin", + "homepage": "https://wiki.jenkins.io/display/JENKINS/Commit+Skip+SCM+Behaviour+Plugins", + "size": 86, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 9, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 9, + "open_issues": 2, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 104370418, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDQzNzA0MTg=", + "name": "cloudshell-sandbox-plugin", + "full_name": "jenkinsci/cloudshell-sandbox-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/cloudshell-sandbox-plugin", + "description": "Consume CloudShell Sandboxes in your day-to-day Jenkins builds", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/cloudshell-sandbox-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/cloudshell-sandbox-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/cloudshell-sandbox-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/cloudshell-sandbox-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/cloudshell-sandbox-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/cloudshell-sandbox-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/cloudshell-sandbox-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/cloudshell-sandbox-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/cloudshell-sandbox-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/cloudshell-sandbox-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/cloudshell-sandbox-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/cloudshell-sandbox-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/cloudshell-sandbox-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/cloudshell-sandbox-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/cloudshell-sandbox-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/cloudshell-sandbox-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/cloudshell-sandbox-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/cloudshell-sandbox-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/cloudshell-sandbox-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/cloudshell-sandbox-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/cloudshell-sandbox-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/cloudshell-sandbox-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/cloudshell-sandbox-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/cloudshell-sandbox-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/cloudshell-sandbox-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/cloudshell-sandbox-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/cloudshell-sandbox-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/cloudshell-sandbox-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/cloudshell-sandbox-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/cloudshell-sandbox-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/cloudshell-sandbox-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/cloudshell-sandbox-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/cloudshell-sandbox-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/cloudshell-sandbox-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/cloudshell-sandbox-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/cloudshell-sandbox-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/cloudshell-sandbox-plugin/deployments", + "created_at": "2017-09-21T16:10:21Z", + "updated_at": "2019-08-27T11:53:19Z", + "pushed_at": "2019-08-27T11:53:18Z", + "git_url": "git://github.com/jenkinsci/cloudshell-sandbox-plugin.git", + "ssh_url": "git@github.com:jenkinsci/cloudshell-sandbox-plugin.git", + "clone_url": "https://github.com/jenkinsci/cloudshell-sandbox-plugin.git", + "svn_url": "https://github.com/jenkinsci/cloudshell-sandbox-plugin", + "homepage": "http://www.quali.com", + "size": 394, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 2, + "watchers": 0, + "default_branch": "develop", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 104371251, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDQzNzEyNTE=", + "name": "osf-builder-suite-for-sfcc-credentials-plugin", + "full_name": "jenkinsci/osf-builder-suite-for-sfcc-credentials-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/osf-builder-suite-for-sfcc-credentials-plugin", + "description": "OSF Builder Suite For Salesforce Commerce Cloud :: Credentials", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-credentials-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-credentials-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-credentials-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-credentials-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-credentials-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-credentials-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-credentials-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-credentials-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-credentials-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-credentials-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-credentials-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-credentials-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-credentials-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-credentials-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-credentials-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-credentials-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-credentials-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-credentials-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-credentials-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-credentials-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-credentials-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-credentials-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-credentials-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-credentials-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-credentials-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-credentials-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-credentials-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-credentials-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-credentials-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-credentials-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-credentials-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-credentials-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-credentials-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-credentials-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-credentials-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-credentials-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-credentials-plugin/deployments", + "created_at": "2017-09-21T16:18:39Z", + "updated_at": "2019-05-08T11:51:40Z", + "pushed_at": "2019-05-08T11:51:38Z", + "git_url": "git://github.com/jenkinsci/osf-builder-suite-for-sfcc-credentials-plugin.git", + "ssh_url": "git@github.com:jenkinsci/osf-builder-suite-for-sfcc-credentials-plugin.git", + "clone_url": "https://github.com/jenkinsci/osf-builder-suite-for-sfcc-credentials-plugin.git", + "svn_url": "https://github.com/jenkinsci/osf-builder-suite-for-sfcc-credentials-plugin", + "homepage": "", + "size": 23, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 104371332, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDQzNzEzMzI=", + "name": "synopsys-detect-plugin", + "full_name": "jenkinsci/synopsys-detect-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/synopsys-detect-plugin", + "description": "Synopsys Detect plugin for Jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/synopsys-detect-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/synopsys-detect-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/synopsys-detect-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/synopsys-detect-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/synopsys-detect-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/synopsys-detect-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/synopsys-detect-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/synopsys-detect-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/synopsys-detect-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/synopsys-detect-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/synopsys-detect-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/synopsys-detect-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/synopsys-detect-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/synopsys-detect-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/synopsys-detect-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/synopsys-detect-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/synopsys-detect-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/synopsys-detect-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/synopsys-detect-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/synopsys-detect-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/synopsys-detect-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/synopsys-detect-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/synopsys-detect-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/synopsys-detect-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/synopsys-detect-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/synopsys-detect-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/synopsys-detect-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/synopsys-detect-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/synopsys-detect-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/synopsys-detect-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/synopsys-detect-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/synopsys-detect-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/synopsys-detect-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/synopsys-detect-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/synopsys-detect-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/synopsys-detect-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/synopsys-detect-plugin/deployments", + "created_at": "2017-09-21T16:19:23Z", + "updated_at": "2019-08-01T14:36:13Z", + "pushed_at": "2019-08-01T14:36:12Z", + "git_url": "git://github.com/jenkinsci/synopsys-detect-plugin.git", + "ssh_url": "git@github.com:jenkinsci/synopsys-detect-plugin.git", + "clone_url": "https://github.com/jenkinsci/synopsys-detect-plugin.git", + "svn_url": "https://github.com/jenkinsci/synopsys-detect-plugin", + "homepage": "", + "size": 73205, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 5, + "open_issues": 0, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 104392005, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDQzOTIwMDU=", + "name": "pyenv-pipeline-plugin", + "full_name": "jenkinsci/pyenv-pipeline-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pyenv-pipeline-plugin", + "description": "Execute commands in Python virtualenvs in Jenkins Pipeline DSL", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/pyenv-pipeline-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pyenv-pipeline-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pyenv-pipeline-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pyenv-pipeline-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pyenv-pipeline-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pyenv-pipeline-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pyenv-pipeline-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pyenv-pipeline-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pyenv-pipeline-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pyenv-pipeline-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pyenv-pipeline-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pyenv-pipeline-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pyenv-pipeline-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pyenv-pipeline-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pyenv-pipeline-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pyenv-pipeline-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pyenv-pipeline-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pyenv-pipeline-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pyenv-pipeline-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pyenv-pipeline-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pyenv-pipeline-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pyenv-pipeline-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pyenv-pipeline-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pyenv-pipeline-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pyenv-pipeline-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pyenv-pipeline-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pyenv-pipeline-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pyenv-pipeline-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pyenv-pipeline-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pyenv-pipeline-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pyenv-pipeline-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pyenv-pipeline-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pyenv-pipeline-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pyenv-pipeline-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pyenv-pipeline-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pyenv-pipeline-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pyenv-pipeline-plugin/deployments", + "created_at": "2017-09-21T19:49:34Z", + "updated_at": "2019-08-05T10:05:39Z", + "pushed_at": "2019-08-16T23:45:50Z", + "git_url": "git://github.com/jenkinsci/pyenv-pipeline-plugin.git", + "ssh_url": "git@github.com:jenkinsci/pyenv-pipeline-plugin.git", + "clone_url": "https://github.com/jenkinsci/pyenv-pipeline-plugin.git", + "svn_url": "https://github.com/jenkinsci/pyenv-pipeline-plugin", + "homepage": "", + "size": 99, + "stargazers_count": 22, + "watchers_count": 22, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 10, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 10, + "open_issues": 2, + "watchers": 22, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 104514702, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDQ1MTQ3MDI=", + "name": "azure-commons-plugin", + "full_name": "jenkinsci/azure-commons-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/azure-commons-plugin", + "description": "Common APIs for Azure related Jenkins plugins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/azure-commons-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/azure-commons-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/azure-commons-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/azure-commons-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/azure-commons-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/azure-commons-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/azure-commons-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/azure-commons-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/azure-commons-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/azure-commons-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/azure-commons-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/azure-commons-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/azure-commons-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/azure-commons-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/azure-commons-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/azure-commons-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/azure-commons-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/azure-commons-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/azure-commons-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/azure-commons-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/azure-commons-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/azure-commons-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/azure-commons-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/azure-commons-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/azure-commons-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/azure-commons-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/azure-commons-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/azure-commons-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/azure-commons-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/azure-commons-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/azure-commons-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/azure-commons-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/azure-commons-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/azure-commons-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/azure-commons-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/azure-commons-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/azure-commons-plugin/deployments", + "created_at": "2017-09-22T20:11:12Z", + "updated_at": "2019-10-17T09:08:02Z", + "pushed_at": "2019-10-17T09:08:04Z", + "git_url": "git://github.com/jenkinsci/azure-commons-plugin.git", + "ssh_url": "git@github.com:jenkinsci/azure-commons-plugin.git", + "clone_url": "https://github.com/jenkinsci/azure-commons-plugin.git", + "svn_url": "https://github.com/jenkinsci/azure-commons-plugin", + "homepage": "", + "size": 246, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 11, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 11, + "open_issues": 2, + "watchers": 3, + "default_branch": "dev", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 104514910, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDQ1MTQ5MTA=", + "name": "azure-container-agents-plugin", + "full_name": "jenkinsci/azure-container-agents-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/azure-container-agents-plugin", + "description": "Azure Container Agents Plugin for Jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/azure-container-agents-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/azure-container-agents-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/azure-container-agents-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/azure-container-agents-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/azure-container-agents-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/azure-container-agents-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/azure-container-agents-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/azure-container-agents-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/azure-container-agents-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/azure-container-agents-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/azure-container-agents-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/azure-container-agents-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/azure-container-agents-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/azure-container-agents-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/azure-container-agents-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/azure-container-agents-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/azure-container-agents-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/azure-container-agents-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/azure-container-agents-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/azure-container-agents-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/azure-container-agents-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/azure-container-agents-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/azure-container-agents-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/azure-container-agents-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/azure-container-agents-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/azure-container-agents-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/azure-container-agents-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/azure-container-agents-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/azure-container-agents-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/azure-container-agents-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/azure-container-agents-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/azure-container-agents-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/azure-container-agents-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/azure-container-agents-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/azure-container-agents-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/azure-container-agents-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/azure-container-agents-plugin/deployments", + "created_at": "2017-09-22T20:14:14Z", + "updated_at": "2019-10-10T07:49:49Z", + "pushed_at": "2019-10-10T07:49:47Z", + "git_url": "git://github.com/jenkinsci/azure-container-agents-plugin.git", + "ssh_url": "git@github.com:jenkinsci/azure-container-agents-plugin.git", + "clone_url": "https://github.com/jenkinsci/azure-container-agents-plugin.git", + "svn_url": "https://github.com/jenkinsci/azure-container-agents-plugin", + "homepage": "", + "size": 341, + "stargazers_count": 11, + "watchers_count": 11, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 10, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 14, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 10, + "open_issues": 14, + "watchers": 11, + "default_branch": "dev", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 104515057, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDQ1MTUwNTc=", + "name": "azure-acs-plugin", + "full_name": "jenkinsci/azure-acs-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/azure-acs-plugin", + "description": "Azure Container Services plugin for Jenkins enables deploying containerized Java apps to Docker on Azure.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/azure-acs-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/azure-acs-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/azure-acs-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/azure-acs-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/azure-acs-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/azure-acs-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/azure-acs-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/azure-acs-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/azure-acs-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/azure-acs-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/azure-acs-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/azure-acs-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/azure-acs-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/azure-acs-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/azure-acs-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/azure-acs-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/azure-acs-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/azure-acs-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/azure-acs-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/azure-acs-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/azure-acs-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/azure-acs-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/azure-acs-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/azure-acs-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/azure-acs-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/azure-acs-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/azure-acs-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/azure-acs-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/azure-acs-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/azure-acs-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/azure-acs-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/azure-acs-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/azure-acs-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/azure-acs-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/azure-acs-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/azure-acs-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/azure-acs-plugin/deployments", + "created_at": "2017-09-22T20:15:48Z", + "updated_at": "2019-09-08T17:36:44Z", + "pushed_at": "2019-10-08T12:21:58Z", + "git_url": "git://github.com/jenkinsci/azure-acs-plugin.git", + "ssh_url": "git@github.com:jenkinsci/azure-acs-plugin.git", + "clone_url": "https://github.com/jenkinsci/azure-acs-plugin.git", + "svn_url": "https://github.com/jenkinsci/azure-acs-plugin", + "homepage": null, + "size": 21136, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 4, + "open_issues": 3, + "watchers": 5, + "default_branch": "dev", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 104515149, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDQ1MTUxNDk=", + "name": "kubernetes-cd-plugin", + "full_name": "jenkinsci/kubernetes-cd-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/kubernetes-cd-plugin", + "description": "A Jenkins plugin to deploy to Kubernetes cluster", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/kubernetes-cd-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/kubernetes-cd-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/kubernetes-cd-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/kubernetes-cd-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/kubernetes-cd-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/kubernetes-cd-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/kubernetes-cd-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/kubernetes-cd-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/kubernetes-cd-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/kubernetes-cd-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/kubernetes-cd-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/kubernetes-cd-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/kubernetes-cd-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/kubernetes-cd-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/kubernetes-cd-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/kubernetes-cd-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/kubernetes-cd-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/kubernetes-cd-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/kubernetes-cd-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/kubernetes-cd-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/kubernetes-cd-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/kubernetes-cd-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/kubernetes-cd-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/kubernetes-cd-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/kubernetes-cd-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/kubernetes-cd-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/kubernetes-cd-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/kubernetes-cd-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/kubernetes-cd-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/kubernetes-cd-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/kubernetes-cd-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/kubernetes-cd-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/kubernetes-cd-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/kubernetes-cd-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/kubernetes-cd-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/kubernetes-cd-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/kubernetes-cd-plugin/deployments", + "created_at": "2017-09-22T20:17:07Z", + "updated_at": "2019-10-25T14:16:22Z", + "pushed_at": "2019-08-29T09:42:29Z", + "git_url": "git://github.com/jenkinsci/kubernetes-cd-plugin.git", + "ssh_url": "git@github.com:jenkinsci/kubernetes-cd-plugin.git", + "clone_url": "https://github.com/jenkinsci/kubernetes-cd-plugin.git", + "svn_url": "https://github.com/jenkinsci/kubernetes-cd-plugin", + "homepage": null, + "size": 471, + "stargazers_count": 80, + "watchers_count": 80, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 31, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 28, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 31, + "open_issues": 28, + "watchers": 80, + "default_branch": "dev", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 104651694, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDQ2NTE2OTQ=", + "name": "comments-remover-plugin", + "full_name": "jenkinsci/comments-remover-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/comments-remover-plugin", + "description": "Plugin that removes comments from source files for a list of programming languages.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/comments-remover-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/comments-remover-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/comments-remover-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/comments-remover-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/comments-remover-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/comments-remover-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/comments-remover-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/comments-remover-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/comments-remover-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/comments-remover-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/comments-remover-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/comments-remover-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/comments-remover-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/comments-remover-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/comments-remover-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/comments-remover-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/comments-remover-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/comments-remover-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/comments-remover-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/comments-remover-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/comments-remover-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/comments-remover-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/comments-remover-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/comments-remover-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/comments-remover-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/comments-remover-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/comments-remover-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/comments-remover-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/comments-remover-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/comments-remover-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/comments-remover-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/comments-remover-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/comments-remover-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/comments-remover-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/comments-remover-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/comments-remover-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/comments-remover-plugin/deployments", + "created_at": "2017-09-24T14:47:50Z", + "updated_at": "2019-07-01T16:41:07Z", + "pushed_at": "2017-11-04T00:02:52Z", + "git_url": "git://github.com/jenkinsci/comments-remover-plugin.git", + "ssh_url": "git@github.com:jenkinsci/comments-remover-plugin.git", + "clone_url": "https://github.com/jenkinsci/comments-remover-plugin.git", + "svn_url": "https://github.com/jenkinsci/comments-remover-plugin", + "homepage": "http://www.xcomment.io/", + "size": 19, + "stargazers_count": 65, + "watchers_count": 65, + "language": "Java", + "has_issues": false, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 28, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 28, + "open_issues": 0, + "watchers": 65, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 104929671, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDQ5Mjk2NzE=", + "name": "customtools-extended-choice-version-plugin", + "full_name": "jenkinsci/customtools-extended-choice-version-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/customtools-extended-choice-version-plugin", + "description": "Extended Choice CustomTool Version Provider", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/customtools-extended-choice-version-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/customtools-extended-choice-version-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/customtools-extended-choice-version-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/customtools-extended-choice-version-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/customtools-extended-choice-version-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/customtools-extended-choice-version-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/customtools-extended-choice-version-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/customtools-extended-choice-version-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/customtools-extended-choice-version-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/customtools-extended-choice-version-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/customtools-extended-choice-version-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/customtools-extended-choice-version-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/customtools-extended-choice-version-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/customtools-extended-choice-version-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/customtools-extended-choice-version-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/customtools-extended-choice-version-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/customtools-extended-choice-version-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/customtools-extended-choice-version-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/customtools-extended-choice-version-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/customtools-extended-choice-version-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/customtools-extended-choice-version-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/customtools-extended-choice-version-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/customtools-extended-choice-version-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/customtools-extended-choice-version-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/customtools-extended-choice-version-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/customtools-extended-choice-version-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/customtools-extended-choice-version-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/customtools-extended-choice-version-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/customtools-extended-choice-version-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/customtools-extended-choice-version-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/customtools-extended-choice-version-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/customtools-extended-choice-version-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/customtools-extended-choice-version-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/customtools-extended-choice-version-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/customtools-extended-choice-version-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/customtools-extended-choice-version-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/customtools-extended-choice-version-plugin/deployments", + "created_at": "2017-09-26T19:37:16Z", + "updated_at": "2017-09-26T19:46:39Z", + "pushed_at": "2017-09-26T19:47:11Z", + "git_url": "git://github.com/jenkinsci/customtools-extended-choice-version-plugin.git", + "ssh_url": "git@github.com:jenkinsci/customtools-extended-choice-version-plugin.git", + "clone_url": "https://github.com/jenkinsci/customtools-extended-choice-version-plugin.git", + "svn_url": "https://github.com/jenkinsci/customtools-extended-choice-version-plugin", + "homepage": null, + "size": 11, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 104929731, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDQ5Mjk3MzE=", + "name": "blueocean-executor-info-plugin", + "full_name": "jenkinsci/blueocean-executor-info-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/blueocean-executor-info-plugin", + "description": "Displays executing agent information in Blue Ocean (now part of Blue Ocean)", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/blueocean-executor-info-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/blueocean-executor-info-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/blueocean-executor-info-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/blueocean-executor-info-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/blueocean-executor-info-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/blueocean-executor-info-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/blueocean-executor-info-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/blueocean-executor-info-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/blueocean-executor-info-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/blueocean-executor-info-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/blueocean-executor-info-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/blueocean-executor-info-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/blueocean-executor-info-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/blueocean-executor-info-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/blueocean-executor-info-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/blueocean-executor-info-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/blueocean-executor-info-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/blueocean-executor-info-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/blueocean-executor-info-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/blueocean-executor-info-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/blueocean-executor-info-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/blueocean-executor-info-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/blueocean-executor-info-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/blueocean-executor-info-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/blueocean-executor-info-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/blueocean-executor-info-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/blueocean-executor-info-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/blueocean-executor-info-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/blueocean-executor-info-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/blueocean-executor-info-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/blueocean-executor-info-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/blueocean-executor-info-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/blueocean-executor-info-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/blueocean-executor-info-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/blueocean-executor-info-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/blueocean-executor-info-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/blueocean-executor-info-plugin/deployments", + "created_at": "2017-09-26T19:37:48Z", + "updated_at": "2019-03-02T00:17:02Z", + "pushed_at": "2018-09-07T18:04:21Z", + "git_url": "git://github.com/jenkinsci/blueocean-executor-info-plugin.git", + "ssh_url": "git@github.com:jenkinsci/blueocean-executor-info-plugin.git", + "clone_url": "https://github.com/jenkinsci/blueocean-executor-info-plugin.git", + "svn_url": "https://github.com/jenkinsci/blueocean-executor-info-plugin", + "homepage": "https://github.com/jenkinsci/blueocean-plugin", + "size": 26, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": true, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 104929826, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDQ5Mjk4MjY=", + "name": "scm-filter-jira-validator-plugin", + "full_name": "jenkinsci/scm-filter-jira-validator-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/scm-filter-jira-validator-plugin", + "description": "Additional filtering traits for SCM Jenkins plugins", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/scm-filter-jira-validator-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/scm-filter-jira-validator-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/scm-filter-jira-validator-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/scm-filter-jira-validator-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/scm-filter-jira-validator-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/scm-filter-jira-validator-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/scm-filter-jira-validator-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/scm-filter-jira-validator-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/scm-filter-jira-validator-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/scm-filter-jira-validator-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/scm-filter-jira-validator-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/scm-filter-jira-validator-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/scm-filter-jira-validator-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/scm-filter-jira-validator-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/scm-filter-jira-validator-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/scm-filter-jira-validator-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/scm-filter-jira-validator-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/scm-filter-jira-validator-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/scm-filter-jira-validator-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/scm-filter-jira-validator-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/scm-filter-jira-validator-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/scm-filter-jira-validator-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/scm-filter-jira-validator-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/scm-filter-jira-validator-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/scm-filter-jira-validator-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/scm-filter-jira-validator-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/scm-filter-jira-validator-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/scm-filter-jira-validator-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/scm-filter-jira-validator-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/scm-filter-jira-validator-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/scm-filter-jira-validator-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/scm-filter-jira-validator-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/scm-filter-jira-validator-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/scm-filter-jira-validator-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/scm-filter-jira-validator-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/scm-filter-jira-validator-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/scm-filter-jira-validator-plugin/deployments", + "created_at": "2017-09-26T19:38:38Z", + "updated_at": "2019-04-15T12:39:34Z", + "pushed_at": "2018-10-07T07:53:31Z", + "git_url": "git://github.com/jenkinsci/scm-filter-jira-validator-plugin.git", + "ssh_url": "git@github.com:jenkinsci/scm-filter-jira-validator-plugin.git", + "clone_url": "https://github.com/jenkinsci/scm-filter-jira-validator-plugin.git", + "svn_url": "https://github.com/jenkinsci/scm-filter-jira-validator-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Jira+Validator+SCM+Filter+Plugins", + "size": 29, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 105574988, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDU1NzQ5ODg=", + "name": "scm-filter-branch-pr-plugin", + "full_name": "jenkinsci/scm-filter-branch-pr-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/scm-filter-branch-pr-plugin", + "description": "A Jenkins plugin for Pipeline Multibranch filtering based on pull request destination branches in addition to matching the branch itself.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/scm-filter-branch-pr-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/scm-filter-branch-pr-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/scm-filter-branch-pr-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/scm-filter-branch-pr-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/scm-filter-branch-pr-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/scm-filter-branch-pr-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/scm-filter-branch-pr-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/scm-filter-branch-pr-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/scm-filter-branch-pr-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/scm-filter-branch-pr-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/scm-filter-branch-pr-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/scm-filter-branch-pr-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/scm-filter-branch-pr-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/scm-filter-branch-pr-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/scm-filter-branch-pr-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/scm-filter-branch-pr-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/scm-filter-branch-pr-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/scm-filter-branch-pr-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/scm-filter-branch-pr-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/scm-filter-branch-pr-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/scm-filter-branch-pr-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/scm-filter-branch-pr-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/scm-filter-branch-pr-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/scm-filter-branch-pr-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/scm-filter-branch-pr-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/scm-filter-branch-pr-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/scm-filter-branch-pr-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/scm-filter-branch-pr-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/scm-filter-branch-pr-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/scm-filter-branch-pr-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/scm-filter-branch-pr-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/scm-filter-branch-pr-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/scm-filter-branch-pr-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/scm-filter-branch-pr-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/scm-filter-branch-pr-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/scm-filter-branch-pr-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/scm-filter-branch-pr-plugin/deployments", + "created_at": "2017-10-02T19:19:53Z", + "updated_at": "2018-08-13T05:15:30Z", + "pushed_at": "2019-02-14T13:47:41Z", + "git_url": "git://github.com/jenkinsci/scm-filter-branch-pr-plugin.git", + "ssh_url": "git@github.com:jenkinsci/scm-filter-branch-pr-plugin.git", + "clone_url": "https://github.com/jenkinsci/scm-filter-branch-pr-plugin.git", + "svn_url": "https://github.com/jenkinsci/scm-filter-branch-pr-plugin", + "homepage": "https://wiki.jenkins.io/display/JENKINS/SCM+Filter+Branch+PR+Plugin", + "size": 31, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 5, + "open_issues": 2, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 105678503, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDU2Nzg1MDM=", + "name": "azure-function-plugin", + "full_name": "jenkinsci/azure-function-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/azure-function-plugin", + "description": "A Jenkins plugin to deploy to Azure Functions", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/azure-function-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/azure-function-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/azure-function-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/azure-function-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/azure-function-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/azure-function-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/azure-function-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/azure-function-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/azure-function-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/azure-function-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/azure-function-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/azure-function-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/azure-function-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/azure-function-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/azure-function-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/azure-function-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/azure-function-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/azure-function-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/azure-function-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/azure-function-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/azure-function-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/azure-function-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/azure-function-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/azure-function-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/azure-function-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/azure-function-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/azure-function-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/azure-function-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/azure-function-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/azure-function-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/azure-function-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/azure-function-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/azure-function-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/azure-function-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/azure-function-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/azure-function-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/azure-function-plugin/deployments", + "created_at": "2017-10-03T17:01:09Z", + "updated_at": "2019-10-15T07:46:15Z", + "pushed_at": "2019-10-15T07:46:16Z", + "git_url": "git://github.com/jenkinsci/azure-function-plugin.git", + "ssh_url": "git@github.com:jenkinsci/azure-function-plugin.git", + "clone_url": "https://github.com/jenkinsci/azure-function-plugin.git", + "svn_url": "https://github.com/jenkinsci/azure-function-plugin", + "homepage": null, + "size": 1167, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 8, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 8, + "open_issues": 0, + "watchers": 1, + "default_branch": "dev", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 105781759, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDU3ODE3NTk=", + "name": "updatebot-plugin", + "full_name": "jenkinsci/updatebot-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/updatebot-plugin", + "description": "Jenkins Pipeline Plugin for fabric8's updatebot", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/updatebot-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/updatebot-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/updatebot-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/updatebot-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/updatebot-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/updatebot-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/updatebot-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/updatebot-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/updatebot-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/updatebot-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/updatebot-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/updatebot-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/updatebot-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/updatebot-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/updatebot-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/updatebot-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/updatebot-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/updatebot-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/updatebot-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/updatebot-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/updatebot-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/updatebot-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/updatebot-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/updatebot-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/updatebot-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/updatebot-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/updatebot-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/updatebot-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/updatebot-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/updatebot-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/updatebot-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/updatebot-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/updatebot-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/updatebot-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/updatebot-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/updatebot-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/updatebot-plugin/deployments", + "created_at": "2017-10-04T14:58:09Z", + "updated_at": "2018-04-04T07:33:35Z", + "pushed_at": "2017-10-25T12:19:38Z", + "git_url": "git://github.com/jenkinsci/updatebot-plugin.git", + "ssh_url": "git@github.com:jenkinsci/updatebot-plugin.git", + "clone_url": "https://github.com/jenkinsci/updatebot-plugin.git", + "svn_url": "https://github.com/jenkinsci/updatebot-plugin", + "homepage": null, + "size": 73, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 3, + "open_issues": 0, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 106579748, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDY1Nzk3NDg=", + "name": "lib-commons-httpclient", + "full_name": "jenkinsci/lib-commons-httpclient", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/lib-commons-httpclient", + "description": "Forked version of the deprecated Jakarta Commons HttpClient 3.x", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/lib-commons-httpclient", + "forks_url": "https://api.github.com/repos/jenkinsci/lib-commons-httpclient/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/lib-commons-httpclient/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/lib-commons-httpclient/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/lib-commons-httpclient/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/lib-commons-httpclient/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/lib-commons-httpclient/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/lib-commons-httpclient/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/lib-commons-httpclient/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/lib-commons-httpclient/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/lib-commons-httpclient/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/lib-commons-httpclient/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/lib-commons-httpclient/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/lib-commons-httpclient/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/lib-commons-httpclient/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/lib-commons-httpclient/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/lib-commons-httpclient/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/lib-commons-httpclient/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/lib-commons-httpclient/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/lib-commons-httpclient/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/lib-commons-httpclient/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/lib-commons-httpclient/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/lib-commons-httpclient/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/lib-commons-httpclient/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/lib-commons-httpclient/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/lib-commons-httpclient/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/lib-commons-httpclient/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/lib-commons-httpclient/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/lib-commons-httpclient/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/lib-commons-httpclient/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/lib-commons-httpclient/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/lib-commons-httpclient/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/lib-commons-httpclient/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/lib-commons-httpclient/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/lib-commons-httpclient/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/lib-commons-httpclient/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/lib-commons-httpclient/deployments", + "created_at": "2017-10-11T16:25:13Z", + "updated_at": "2017-11-18T23:58:39Z", + "pushed_at": "2019-01-29T13:59:56Z", + "git_url": "git://github.com/jenkinsci/lib-commons-httpclient.git", + "ssh_url": "git@github.com:jenkinsci/lib-commons-httpclient.git", + "clone_url": "https://github.com/jenkinsci/lib-commons-httpclient.git", + "svn_url": "https://github.com/jenkinsci/lib-commons-httpclient", + "homepage": null, + "size": 2137, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 2, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 106979821, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDY5Nzk4MjE=", + "name": "github-autostatus-plugin", + "full_name": "jenkinsci/github-autostatus-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/github-autostatus-plugin", + "description": "Jenkins plugin to provide automatic status for multibranch jobs", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/github-autostatus-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/github-autostatus-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/github-autostatus-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/github-autostatus-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/github-autostatus-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/github-autostatus-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/github-autostatus-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/github-autostatus-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/github-autostatus-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/github-autostatus-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/github-autostatus-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/github-autostatus-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/github-autostatus-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/github-autostatus-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/github-autostatus-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/github-autostatus-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/github-autostatus-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/github-autostatus-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/github-autostatus-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/github-autostatus-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/github-autostatus-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/github-autostatus-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/github-autostatus-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/github-autostatus-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/github-autostatus-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/github-autostatus-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/github-autostatus-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/github-autostatus-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/github-autostatus-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/github-autostatus-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/github-autostatus-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/github-autostatus-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/github-autostatus-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/github-autostatus-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/github-autostatus-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/github-autostatus-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/github-autostatus-plugin/deployments", + "created_at": "2017-10-15T03:09:00Z", + "updated_at": "2019-10-24T06:24:31Z", + "pushed_at": "2019-10-22T15:34:17Z", + "git_url": "git://github.com/jenkinsci/github-autostatus-plugin.git", + "ssh_url": "git@github.com:jenkinsci/github-autostatus-plugin.git", + "clone_url": "https://github.com/jenkinsci/github-autostatus-plugin.git", + "svn_url": "https://github.com/jenkinsci/github-autostatus-plugin", + "homepage": null, + "size": 537, + "stargazers_count": 24, + "watchers_count": 24, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 16, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 9, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 16, + "open_issues": 9, + "watchers": 24, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 106979871, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDY5Nzk4NzE=", + "name": "helix-teamhub-plugin", + "full_name": "jenkinsci/helix-teamhub-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/helix-teamhub-plugin", + "description": "Create build events to Helix TeamHub from Jenkins builds", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/helix-teamhub-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/helix-teamhub-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/helix-teamhub-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/helix-teamhub-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/helix-teamhub-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/helix-teamhub-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/helix-teamhub-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/helix-teamhub-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/helix-teamhub-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/helix-teamhub-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/helix-teamhub-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/helix-teamhub-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/helix-teamhub-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/helix-teamhub-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/helix-teamhub-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/helix-teamhub-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/helix-teamhub-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/helix-teamhub-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/helix-teamhub-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/helix-teamhub-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/helix-teamhub-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/helix-teamhub-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/helix-teamhub-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/helix-teamhub-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/helix-teamhub-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/helix-teamhub-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/helix-teamhub-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/helix-teamhub-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/helix-teamhub-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/helix-teamhub-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/helix-teamhub-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/helix-teamhub-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/helix-teamhub-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/helix-teamhub-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/helix-teamhub-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/helix-teamhub-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/helix-teamhub-plugin/deployments", + "created_at": "2017-10-15T03:09:50Z", + "updated_at": "2019-05-29T14:56:14Z", + "pushed_at": "2019-05-29T14:56:12Z", + "git_url": "git://github.com/jenkinsci/helix-teamhub-plugin.git", + "ssh_url": "git@github.com:jenkinsci/helix-teamhub-plugin.git", + "clone_url": "https://github.com/jenkinsci/helix-teamhub-plugin.git", + "svn_url": "https://github.com/jenkinsci/helix-teamhub-plugin", + "homepage": null, + "size": 112, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 107133472, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDcxMzM0NzI=", + "name": "testein-plugin", + "full_name": "jenkinsci/testein-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/testein-plugin", + "description": "Plugin for Jenkins CI", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/testein-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/testein-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/testein-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/testein-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/testein-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/testein-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/testein-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/testein-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/testein-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/testein-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/testein-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/testein-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/testein-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/testein-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/testein-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/testein-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/testein-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/testein-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/testein-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/testein-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/testein-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/testein-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/testein-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/testein-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/testein-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/testein-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/testein-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/testein-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/testein-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/testein-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/testein-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/testein-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/testein-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/testein-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/testein-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/testein-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/testein-plugin/deployments", + "created_at": "2017-10-16T13:47:21Z", + "updated_at": "2018-09-27T19:25:19Z", + "pushed_at": "2018-09-27T19:25:18Z", + "git_url": "git://github.com/jenkinsci/testein-plugin.git", + "ssh_url": "git@github.com:jenkinsci/testein-plugin.git", + "clone_url": "https://github.com/jenkinsci/testein-plugin.git", + "svn_url": "https://github.com/jenkinsci/testein-plugin", + "homepage": null, + "size": 34, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 107145005, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDcxNDUwMDU=", + "name": "google-cloudbuild-plugin", + "full_name": "jenkinsci/google-cloudbuild-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/google-cloudbuild-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/google-cloudbuild-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/google-cloudbuild-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/google-cloudbuild-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/google-cloudbuild-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/google-cloudbuild-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/google-cloudbuild-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/google-cloudbuild-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/google-cloudbuild-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/google-cloudbuild-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/google-cloudbuild-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/google-cloudbuild-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/google-cloudbuild-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/google-cloudbuild-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/google-cloudbuild-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/google-cloudbuild-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/google-cloudbuild-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/google-cloudbuild-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/google-cloudbuild-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/google-cloudbuild-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/google-cloudbuild-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/google-cloudbuild-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/google-cloudbuild-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/google-cloudbuild-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/google-cloudbuild-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/google-cloudbuild-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/google-cloudbuild-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/google-cloudbuild-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/google-cloudbuild-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/google-cloudbuild-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/google-cloudbuild-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/google-cloudbuild-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/google-cloudbuild-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/google-cloudbuild-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/google-cloudbuild-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/google-cloudbuild-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/google-cloudbuild-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/google-cloudbuild-plugin/deployments", + "created_at": "2017-10-16T15:16:04Z", + "updated_at": "2019-08-13T16:04:40Z", + "pushed_at": "2019-10-12T11:20:39Z", + "git_url": "git://github.com/jenkinsci/google-cloudbuild-plugin.git", + "ssh_url": "git@github.com:jenkinsci/google-cloudbuild-plugin.git", + "clone_url": "https://github.com/jenkinsci/google-cloudbuild-plugin.git", + "svn_url": "https://github.com/jenkinsci/google-cloudbuild-plugin", + "homepage": null, + "size": 1459, + "stargazers_count": 8, + "watchers_count": 8, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 7, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 10, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 7, + "open_issues": 10, + "watchers": 8, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 107170627, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDcxNzA2Mjc=", + "name": "convert-to-pipeline-plugin", + "full_name": "jenkinsci/convert-to-pipeline-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/convert-to-pipeline-plugin", + "description": "This plugin converts freestyle jobs to Pipeline jobs.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/convert-to-pipeline-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/convert-to-pipeline-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/convert-to-pipeline-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/convert-to-pipeline-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/convert-to-pipeline-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/convert-to-pipeline-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/convert-to-pipeline-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/convert-to-pipeline-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/convert-to-pipeline-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/convert-to-pipeline-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/convert-to-pipeline-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/convert-to-pipeline-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/convert-to-pipeline-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/convert-to-pipeline-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/convert-to-pipeline-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/convert-to-pipeline-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/convert-to-pipeline-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/convert-to-pipeline-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/convert-to-pipeline-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/convert-to-pipeline-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/convert-to-pipeline-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/convert-to-pipeline-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/convert-to-pipeline-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/convert-to-pipeline-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/convert-to-pipeline-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/convert-to-pipeline-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/convert-to-pipeline-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/convert-to-pipeline-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/convert-to-pipeline-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/convert-to-pipeline-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/convert-to-pipeline-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/convert-to-pipeline-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/convert-to-pipeline-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/convert-to-pipeline-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/convert-to-pipeline-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/convert-to-pipeline-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/convert-to-pipeline-plugin/deployments", + "created_at": "2017-10-16T19:00:00Z", + "updated_at": "2019-10-25T15:30:26Z", + "pushed_at": "2018-05-17T15:23:16Z", + "git_url": "git://github.com/jenkinsci/convert-to-pipeline-plugin.git", + "ssh_url": "git@github.com:jenkinsci/convert-to-pipeline-plugin.git", + "clone_url": "https://github.com/jenkinsci/convert-to-pipeline-plugin.git", + "svn_url": "https://github.com/jenkinsci/convert-to-pipeline-plugin", + "homepage": "", + "size": 155, + "stargazers_count": 19, + "watchers_count": 19, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 9, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "gpl-3.0", + "name": "GNU General Public License v3.0", + "spdx_id": "GPL-3.0", + "url": "https://api.github.com/licenses/gpl-3.0", + "node_id": "MDc6TGljZW5zZTk=" + }, + "forks": 9, + "open_issues": 1, + "watchers": 19, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 107268767, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDcyNjg3Njc=", + "name": "declarative-pipeline-when-conditions-plugin", + "full_name": "jenkinsci/declarative-pipeline-when-conditions-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/declarative-pipeline-when-conditions-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/declarative-pipeline-when-conditions-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/declarative-pipeline-when-conditions-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/declarative-pipeline-when-conditions-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/declarative-pipeline-when-conditions-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/declarative-pipeline-when-conditions-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/declarative-pipeline-when-conditions-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/declarative-pipeline-when-conditions-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/declarative-pipeline-when-conditions-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/declarative-pipeline-when-conditions-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/declarative-pipeline-when-conditions-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/declarative-pipeline-when-conditions-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/declarative-pipeline-when-conditions-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/declarative-pipeline-when-conditions-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/declarative-pipeline-when-conditions-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/declarative-pipeline-when-conditions-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/declarative-pipeline-when-conditions-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/declarative-pipeline-when-conditions-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/declarative-pipeline-when-conditions-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/declarative-pipeline-when-conditions-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/declarative-pipeline-when-conditions-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/declarative-pipeline-when-conditions-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/declarative-pipeline-when-conditions-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/declarative-pipeline-when-conditions-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/declarative-pipeline-when-conditions-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/declarative-pipeline-when-conditions-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/declarative-pipeline-when-conditions-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/declarative-pipeline-when-conditions-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/declarative-pipeline-when-conditions-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/declarative-pipeline-when-conditions-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/declarative-pipeline-when-conditions-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/declarative-pipeline-when-conditions-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/declarative-pipeline-when-conditions-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/declarative-pipeline-when-conditions-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/declarative-pipeline-when-conditions-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/declarative-pipeline-when-conditions-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/declarative-pipeline-when-conditions-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/declarative-pipeline-when-conditions-plugin/deployments", + "created_at": "2017-10-17T12:57:40Z", + "updated_at": "2019-03-18T20:02:06Z", + "pushed_at": "2017-11-24T22:15:26Z", + "git_url": "git://github.com/jenkinsci/declarative-pipeline-when-conditions-plugin.git", + "ssh_url": "git@github.com:jenkinsci/declarative-pipeline-when-conditions-plugin.git", + "clone_url": "https://github.com/jenkinsci/declarative-pipeline-when-conditions-plugin.git", + "svn_url": "https://github.com/jenkinsci/declarative-pipeline-when-conditions-plugin", + "homepage": null, + "size": 9, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 107312012, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDczMTIwMTI=", + "name": "command-launcher-plugin", + "full_name": "jenkinsci/command-launcher-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/command-launcher-plugin", + "description": "Allows agents to be launched using a specified command.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/command-launcher-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/command-launcher-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/command-launcher-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/command-launcher-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/command-launcher-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/command-launcher-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/command-launcher-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/command-launcher-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/command-launcher-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/command-launcher-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/command-launcher-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/command-launcher-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/command-launcher-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/command-launcher-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/command-launcher-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/command-launcher-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/command-launcher-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/command-launcher-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/command-launcher-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/command-launcher-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/command-launcher-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/command-launcher-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/command-launcher-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/command-launcher-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/command-launcher-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/command-launcher-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/command-launcher-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/command-launcher-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/command-launcher-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/command-launcher-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/command-launcher-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/command-launcher-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/command-launcher-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/command-launcher-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/command-launcher-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/command-launcher-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/command-launcher-plugin/deployments", + "created_at": "2017-10-17T19:03:14Z", + "updated_at": "2019-07-04T03:34:31Z", + "pushed_at": "2019-04-26T02:38:33Z", + "git_url": "git://github.com/jenkinsci/command-launcher-plugin.git", + "ssh_url": "git@github.com:jenkinsci/command-launcher-plugin.git", + "clone_url": "https://github.com/jenkinsci/command-launcher-plugin.git", + "svn_url": "https://github.com/jenkinsci/command-launcher-plugin", + "homepage": null, + "size": 70, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 7, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 7, + "open_issues": 0, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 107676801, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDc2NzY4MDE=", + "name": "configuration-as-code-plugin", + "full_name": "jenkinsci/configuration-as-code-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/configuration-as-code-plugin", + "description": "Jenkins Configuration as Code Plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/configuration-as-code-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-plugin/deployments", + "created_at": "2017-10-20T12:43:10Z", + "updated_at": "2019-10-25T14:27:38Z", + "pushed_at": "2019-10-21T18:18:58Z", + "git_url": "git://github.com/jenkinsci/configuration-as-code-plugin.git", + "ssh_url": "git@github.com:jenkinsci/configuration-as-code-plugin.git", + "clone_url": "https://github.com/jenkinsci/configuration-as-code-plugin.git", + "svn_url": "https://github.com/jenkinsci/configuration-as-code-plugin", + "homepage": "https://plugins.jenkins.io/configuration-as-code", + "size": 3999, + "stargazers_count": 1375, + "watchers_count": 1375, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 295, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 295, + "open_issues": 96, + "watchers": 1375, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 108021737, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDgwMjE3Mzc=", + "name": "pipeline-bamboo-plugin", + "full_name": "jenkinsci/pipeline-bamboo-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pipeline-bamboo-plugin", + "description": "A Jenkins plugin which adds a pipeline step for use with Jenkinsfile", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/pipeline-bamboo-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pipeline-bamboo-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pipeline-bamboo-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pipeline-bamboo-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pipeline-bamboo-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pipeline-bamboo-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pipeline-bamboo-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pipeline-bamboo-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pipeline-bamboo-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pipeline-bamboo-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pipeline-bamboo-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pipeline-bamboo-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pipeline-bamboo-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pipeline-bamboo-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pipeline-bamboo-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pipeline-bamboo-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pipeline-bamboo-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pipeline-bamboo-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pipeline-bamboo-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pipeline-bamboo-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pipeline-bamboo-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pipeline-bamboo-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pipeline-bamboo-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pipeline-bamboo-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pipeline-bamboo-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pipeline-bamboo-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pipeline-bamboo-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pipeline-bamboo-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pipeline-bamboo-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pipeline-bamboo-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pipeline-bamboo-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pipeline-bamboo-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pipeline-bamboo-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pipeline-bamboo-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pipeline-bamboo-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pipeline-bamboo-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pipeline-bamboo-plugin/deployments", + "created_at": "2017-10-23T18:21:13Z", + "updated_at": "2018-09-20T20:02:18Z", + "pushed_at": "2019-09-12T20:03:19Z", + "git_url": "git://github.com/jenkinsci/pipeline-bamboo-plugin.git", + "ssh_url": "git@github.com:jenkinsci/pipeline-bamboo-plugin.git", + "clone_url": "https://github.com/jenkinsci/pipeline-bamboo-plugin.git", + "svn_url": "https://github.com/jenkinsci/pipeline-bamboo-plugin", + "homepage": null, + "size": 42, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 109441691, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDk0NDE2OTE=", + "name": "aws-codecommit-jobs-plugin", + "full_name": "jenkinsci/aws-codecommit-jobs-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/aws-codecommit-jobs-plugin", + "description": "Creates jobs multi-branch for each repository in code commit", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/aws-codecommit-jobs-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/aws-codecommit-jobs-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/aws-codecommit-jobs-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/aws-codecommit-jobs-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/aws-codecommit-jobs-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/aws-codecommit-jobs-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/aws-codecommit-jobs-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/aws-codecommit-jobs-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/aws-codecommit-jobs-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/aws-codecommit-jobs-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/aws-codecommit-jobs-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/aws-codecommit-jobs-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/aws-codecommit-jobs-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/aws-codecommit-jobs-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/aws-codecommit-jobs-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/aws-codecommit-jobs-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/aws-codecommit-jobs-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/aws-codecommit-jobs-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/aws-codecommit-jobs-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/aws-codecommit-jobs-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/aws-codecommit-jobs-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/aws-codecommit-jobs-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/aws-codecommit-jobs-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/aws-codecommit-jobs-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/aws-codecommit-jobs-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/aws-codecommit-jobs-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/aws-codecommit-jobs-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/aws-codecommit-jobs-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/aws-codecommit-jobs-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/aws-codecommit-jobs-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/aws-codecommit-jobs-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/aws-codecommit-jobs-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/aws-codecommit-jobs-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/aws-codecommit-jobs-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/aws-codecommit-jobs-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/aws-codecommit-jobs-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/aws-codecommit-jobs-plugin/deployments", + "created_at": "2017-11-03T20:51:04Z", + "updated_at": "2019-08-30T08:02:24Z", + "pushed_at": "2017-11-14T19:20:17Z", + "git_url": "git://github.com/jenkinsci/aws-codecommit-jobs-plugin.git", + "ssh_url": "git@github.com:jenkinsci/aws-codecommit-jobs-plugin.git", + "clone_url": "https://github.com/jenkinsci/aws-codecommit-jobs-plugin.git", + "svn_url": "https://github.com/jenkinsci/aws-codecommit-jobs-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Aws+Codecommit+Jobs", + "size": 519, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 2, + "open_issues": 0, + "watchers": 1, + "default_branch": "develop", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 109441748, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDk0NDE3NDg=", + "name": "azure-vmss-plugin", + "full_name": "jenkinsci/azure-vmss-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/azure-vmss-plugin", + "description": "A Jenkins plugin to deploy VHD and managed disk to Azure VM Scale Set", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/azure-vmss-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/azure-vmss-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/azure-vmss-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/azure-vmss-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/azure-vmss-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/azure-vmss-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/azure-vmss-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/azure-vmss-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/azure-vmss-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/azure-vmss-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/azure-vmss-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/azure-vmss-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/azure-vmss-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/azure-vmss-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/azure-vmss-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/azure-vmss-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/azure-vmss-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/azure-vmss-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/azure-vmss-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/azure-vmss-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/azure-vmss-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/azure-vmss-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/azure-vmss-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/azure-vmss-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/azure-vmss-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/azure-vmss-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/azure-vmss-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/azure-vmss-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/azure-vmss-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/azure-vmss-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/azure-vmss-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/azure-vmss-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/azure-vmss-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/azure-vmss-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/azure-vmss-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/azure-vmss-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/azure-vmss-plugin/deployments", + "created_at": "2017-11-03T20:51:54Z", + "updated_at": "2019-10-15T08:16:48Z", + "pushed_at": "2019-10-15T08:16:50Z", + "git_url": "git://github.com/jenkinsci/azure-vmss-plugin.git", + "ssh_url": "git@github.com:jenkinsci/azure-vmss-plugin.git", + "clone_url": "https://github.com/jenkinsci/azure-vmss-plugin.git", + "svn_url": "https://github.com/jenkinsci/azure-vmss-plugin", + "homepage": null, + "size": 64, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 5, + "open_issues": 0, + "watchers": 0, + "default_branch": "dev", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 109441834, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDk0NDE4MzQ=", + "name": "warrior-plugin", + "full_name": "jenkinsci/warrior-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/warrior-plugin", + "description": "Jenkins plugin for Warrior Framework", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/warrior-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/warrior-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/warrior-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/warrior-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/warrior-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/warrior-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/warrior-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/warrior-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/warrior-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/warrior-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/warrior-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/warrior-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/warrior-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/warrior-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/warrior-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/warrior-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/warrior-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/warrior-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/warrior-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/warrior-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/warrior-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/warrior-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/warrior-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/warrior-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/warrior-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/warrior-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/warrior-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/warrior-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/warrior-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/warrior-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/warrior-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/warrior-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/warrior-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/warrior-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/warrior-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/warrior-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/warrior-plugin/deployments", + "created_at": "2017-11-03T20:53:03Z", + "updated_at": "2018-04-27T04:45:02Z", + "pushed_at": "2017-11-10T06:19:59Z", + "git_url": "git://github.com/jenkinsci/warrior-plugin.git", + "ssh_url": "git@github.com:jenkinsci/warrior-plugin.git", + "clone_url": "https://github.com/jenkinsci/warrior-plugin.git", + "svn_url": "https://github.com/jenkinsci/warrior-plugin", + "homepage": "https://wiki.jenkins.io/display/JENKINS/Warrior+Framework+Plugin", + "size": 33, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 109860775, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDk4NjA3NzU=", + "name": "cloudcoreo-deploytime-plugin", + "full_name": "jenkinsci/cloudcoreo-deploytime-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/cloudcoreo-deploytime-plugin", + "description": "Jenkins plugin for using CloudCoreo's DeployTime service", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/cloudcoreo-deploytime-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/cloudcoreo-deploytime-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/cloudcoreo-deploytime-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/cloudcoreo-deploytime-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/cloudcoreo-deploytime-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/cloudcoreo-deploytime-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/cloudcoreo-deploytime-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/cloudcoreo-deploytime-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/cloudcoreo-deploytime-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/cloudcoreo-deploytime-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/cloudcoreo-deploytime-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/cloudcoreo-deploytime-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/cloudcoreo-deploytime-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/cloudcoreo-deploytime-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/cloudcoreo-deploytime-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/cloudcoreo-deploytime-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/cloudcoreo-deploytime-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/cloudcoreo-deploytime-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/cloudcoreo-deploytime-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/cloudcoreo-deploytime-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/cloudcoreo-deploytime-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/cloudcoreo-deploytime-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/cloudcoreo-deploytime-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/cloudcoreo-deploytime-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/cloudcoreo-deploytime-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/cloudcoreo-deploytime-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/cloudcoreo-deploytime-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/cloudcoreo-deploytime-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/cloudcoreo-deploytime-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/cloudcoreo-deploytime-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/cloudcoreo-deploytime-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/cloudcoreo-deploytime-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/cloudcoreo-deploytime-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/cloudcoreo-deploytime-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/cloudcoreo-deploytime-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/cloudcoreo-deploytime-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/cloudcoreo-deploytime-plugin/deployments", + "created_at": "2017-11-07T16:21:37Z", + "updated_at": "2019-03-03T09:27:01Z", + "pushed_at": "2018-06-14T23:54:29Z", + "git_url": "git://github.com/jenkinsci/cloudcoreo-deploytime-plugin.git", + "ssh_url": "git@github.com:jenkinsci/cloudcoreo-deploytime-plugin.git", + "clone_url": "https://github.com/jenkinsci/cloudcoreo-deploytime-plugin.git", + "svn_url": "https://github.com/jenkinsci/cloudcoreo-deploytime-plugin", + "homepage": null, + "size": 228, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 109888345, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDk4ODgzNDU=", + "name": "ansible-tower-plugin", + "full_name": "jenkinsci/ansible-tower-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/ansible-tower-plugin", + "description": "Jenkins ansible tower plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/ansible-tower-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/ansible-tower-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/ansible-tower-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/ansible-tower-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/ansible-tower-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/ansible-tower-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/ansible-tower-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/ansible-tower-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/ansible-tower-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/ansible-tower-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/ansible-tower-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/ansible-tower-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/ansible-tower-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/ansible-tower-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/ansible-tower-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/ansible-tower-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/ansible-tower-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/ansible-tower-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/ansible-tower-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/ansible-tower-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/ansible-tower-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/ansible-tower-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/ansible-tower-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/ansible-tower-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/ansible-tower-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/ansible-tower-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/ansible-tower-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/ansible-tower-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/ansible-tower-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/ansible-tower-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/ansible-tower-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/ansible-tower-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/ansible-tower-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/ansible-tower-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/ansible-tower-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/ansible-tower-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/ansible-tower-plugin/deployments", + "created_at": "2017-11-07T20:40:43Z", + "updated_at": "2019-10-13T13:58:04Z", + "pushed_at": "2019-10-13T13:58:02Z", + "git_url": "git://github.com/jenkinsci/ansible-tower-plugin.git", + "ssh_url": "git@github.com:jenkinsci/ansible-tower-plugin.git", + "clone_url": "https://github.com/jenkinsci/ansible-tower-plugin.git", + "svn_url": "https://github.com/jenkinsci/ansible-tower-plugin", + "homepage": null, + "size": 169, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 17, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 17, + "open_issues": 0, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 110617100, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTA2MTcxMDA=", + "name": "xframium-plugin", + "full_name": "jenkinsci/xframium-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/xframium-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/xframium-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/xframium-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/xframium-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/xframium-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/xframium-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/xframium-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/xframium-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/xframium-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/xframium-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/xframium-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/xframium-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/xframium-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/xframium-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/xframium-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/xframium-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/xframium-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/xframium-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/xframium-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/xframium-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/xframium-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/xframium-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/xframium-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/xframium-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/xframium-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/xframium-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/xframium-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/xframium-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/xframium-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/xframium-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/xframium-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/xframium-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/xframium-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/xframium-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/xframium-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/xframium-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/xframium-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/xframium-plugin/deployments", + "created_at": "2017-11-14T00:03:42Z", + "updated_at": "2019-04-19T15:45:35Z", + "pushed_at": "2019-04-19T15:45:34Z", + "git_url": "git://github.com/jenkinsci/xframium-plugin.git", + "ssh_url": "git@github.com:jenkinsci/xframium-plugin.git", + "clone_url": "https://github.com/jenkinsci/xframium-plugin.git", + "svn_url": "https://github.com/jenkinsci/xframium-plugin", + "homepage": null, + "size": 41, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 110857853, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTA4NTc4NTM=", + "name": "continuum-plugin", + "full_name": "jenkinsci/continuum-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/continuum-plugin", + "description": "Continuum Plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/continuum-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/continuum-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/continuum-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/continuum-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/continuum-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/continuum-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/continuum-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/continuum-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/continuum-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/continuum-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/continuum-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/continuum-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/continuum-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/continuum-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/continuum-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/continuum-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/continuum-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/continuum-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/continuum-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/continuum-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/continuum-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/continuum-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/continuum-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/continuum-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/continuum-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/continuum-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/continuum-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/continuum-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/continuum-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/continuum-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/continuum-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/continuum-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/continuum-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/continuum-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/continuum-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/continuum-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/continuum-plugin/deployments", + "created_at": "2017-11-15T16:24:32Z", + "updated_at": "2018-06-15T15:34:06Z", + "pushed_at": "2018-06-15T15:34:04Z", + "git_url": "git://github.com/jenkinsci/continuum-plugin.git", + "ssh_url": "git@github.com:jenkinsci/continuum-plugin.git", + "clone_url": "https://github.com/jenkinsci/continuum-plugin.git", + "svn_url": "https://github.com/jenkinsci/continuum-plugin", + "homepage": "", + "size": 26, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 110864275, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTA4NjQyNzU=", + "name": "themis-plugin", + "full_name": "jenkinsci/themis-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/themis-plugin", + "description": "Themis plugin for Jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/themis-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/themis-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/themis-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/themis-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/themis-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/themis-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/themis-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/themis-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/themis-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/themis-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/themis-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/themis-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/themis-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/themis-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/themis-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/themis-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/themis-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/themis-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/themis-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/themis-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/themis-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/themis-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/themis-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/themis-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/themis-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/themis-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/themis-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/themis-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/themis-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/themis-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/themis-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/themis-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/themis-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/themis-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/themis-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/themis-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/themis-plugin/deployments", + "created_at": "2017-11-15T17:23:26Z", + "updated_at": "2017-11-17T14:13:36Z", + "pushed_at": "2018-01-24T09:34:41Z", + "git_url": "git://github.com/jenkinsci/themis-plugin.git", + "ssh_url": "git@github.com:jenkinsci/themis-plugin.git", + "clone_url": "https://github.com/jenkinsci/themis-plugin.git", + "svn_url": "https://github.com/jenkinsci/themis-plugin", + "homepage": "https://wiki.jenkins.io/display/JENKINS/Themis+Plugin", + "size": 56, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 110865393, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTA4NjUzOTM=", + "name": "telegram-notifications-plugin", + "full_name": "jenkinsci/telegram-notifications-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/telegram-notifications-plugin", + "description": "This plugin allows you to send messages from Jenkins jobs to Telegram chat.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/telegram-notifications-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/telegram-notifications-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/telegram-notifications-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/telegram-notifications-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/telegram-notifications-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/telegram-notifications-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/telegram-notifications-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/telegram-notifications-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/telegram-notifications-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/telegram-notifications-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/telegram-notifications-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/telegram-notifications-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/telegram-notifications-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/telegram-notifications-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/telegram-notifications-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/telegram-notifications-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/telegram-notifications-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/telegram-notifications-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/telegram-notifications-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/telegram-notifications-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/telegram-notifications-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/telegram-notifications-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/telegram-notifications-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/telegram-notifications-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/telegram-notifications-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/telegram-notifications-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/telegram-notifications-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/telegram-notifications-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/telegram-notifications-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/telegram-notifications-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/telegram-notifications-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/telegram-notifications-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/telegram-notifications-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/telegram-notifications-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/telegram-notifications-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/telegram-notifications-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/telegram-notifications-plugin/deployments", + "created_at": "2017-11-15T17:34:19Z", + "updated_at": "2019-10-24T14:26:45Z", + "pushed_at": "2019-10-24T14:26:43Z", + "git_url": "git://github.com/jenkinsci/telegram-notifications-plugin.git", + "ssh_url": "git@github.com:jenkinsci/telegram-notifications-plugin.git", + "clone_url": "https://github.com/jenkinsci/telegram-notifications-plugin.git", + "svn_url": "https://github.com/jenkinsci/telegram-notifications-plugin", + "homepage": "https://wiki.jenkins.io/display/JENKINS/Telegram+Notification+Plugin", + "size": 62, + "stargazers_count": 31, + "watchers_count": 31, + "language": "Java", + "has_issues": true, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 29, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 14, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 29, + "open_issues": 14, + "watchers": 31, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 110989105, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTA5ODkxMDU=", + "name": "diagnostics-plugin", + "full_name": "jenkinsci/diagnostics-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/diagnostics-plugin", + "description": "Run long running diagnostics tasks directly from your Jenkins instance", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/diagnostics-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/diagnostics-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/diagnostics-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/diagnostics-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/diagnostics-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/diagnostics-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/diagnostics-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/diagnostics-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/diagnostics-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/diagnostics-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/diagnostics-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/diagnostics-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/diagnostics-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/diagnostics-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/diagnostics-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/diagnostics-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/diagnostics-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/diagnostics-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/diagnostics-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/diagnostics-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/diagnostics-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/diagnostics-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/diagnostics-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/diagnostics-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/diagnostics-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/diagnostics-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/diagnostics-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/diagnostics-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/diagnostics-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/diagnostics-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/diagnostics-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/diagnostics-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/diagnostics-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/diagnostics-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/diagnostics-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/diagnostics-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/diagnostics-plugin/deployments", + "created_at": "2017-11-16T15:34:39Z", + "updated_at": "2017-11-29T09:23:08Z", + "pushed_at": "2018-11-28T17:52:30Z", + "git_url": "git://github.com/jenkinsci/diagnostics-plugin.git", + "ssh_url": "git@github.com:jenkinsci/diagnostics-plugin.git", + "clone_url": "https://github.com/jenkinsci/diagnostics-plugin.git", + "svn_url": "https://github.com/jenkinsci/diagnostics-plugin", + "homepage": "https://wiki.jenkins.io/display/JENKINS/Diagnostics+Plugin", + "size": 214, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 111449388, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTE0NDkzODg=", + "name": "cavirin-image-secure-plugin", + "full_name": "jenkinsci/cavirin-image-secure-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/cavirin-image-secure-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/cavirin-image-secure-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/cavirin-image-secure-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/cavirin-image-secure-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/cavirin-image-secure-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/cavirin-image-secure-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/cavirin-image-secure-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/cavirin-image-secure-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/cavirin-image-secure-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/cavirin-image-secure-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/cavirin-image-secure-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/cavirin-image-secure-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/cavirin-image-secure-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/cavirin-image-secure-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/cavirin-image-secure-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/cavirin-image-secure-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/cavirin-image-secure-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/cavirin-image-secure-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/cavirin-image-secure-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/cavirin-image-secure-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/cavirin-image-secure-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/cavirin-image-secure-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/cavirin-image-secure-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/cavirin-image-secure-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/cavirin-image-secure-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/cavirin-image-secure-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/cavirin-image-secure-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/cavirin-image-secure-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/cavirin-image-secure-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/cavirin-image-secure-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/cavirin-image-secure-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/cavirin-image-secure-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/cavirin-image-secure-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/cavirin-image-secure-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/cavirin-image-secure-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/cavirin-image-secure-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/cavirin-image-secure-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/cavirin-image-secure-plugin/deployments", + "created_at": "2017-11-20T18:47:36Z", + "updated_at": "2017-11-27T16:38:08Z", + "pushed_at": "2018-05-02T10:34:04Z", + "git_url": "git://github.com/jenkinsci/cavirin-image-secure-plugin.git", + "ssh_url": "git@github.com:jenkinsci/cavirin-image-secure-plugin.git", + "clone_url": "https://github.com/jenkinsci/cavirin-image-secure-plugin.git", + "svn_url": "https://github.com/jenkinsci/cavirin-image-secure-plugin", + "homepage": null, + "size": 23, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Shell", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 4, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 112492809, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTI0OTI4MDk=", + "name": "disable-bitbucket-multibranch-status-plugin", + "full_name": "jenkinsci/disable-bitbucket-multibranch-status-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/disable-bitbucket-multibranch-status-plugin", + "description": "Jenkins plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/disable-bitbucket-multibranch-status-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/disable-bitbucket-multibranch-status-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/disable-bitbucket-multibranch-status-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/disable-bitbucket-multibranch-status-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/disable-bitbucket-multibranch-status-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/disable-bitbucket-multibranch-status-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/disable-bitbucket-multibranch-status-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/disable-bitbucket-multibranch-status-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/disable-bitbucket-multibranch-status-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/disable-bitbucket-multibranch-status-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/disable-bitbucket-multibranch-status-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/disable-bitbucket-multibranch-status-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/disable-bitbucket-multibranch-status-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/disable-bitbucket-multibranch-status-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/disable-bitbucket-multibranch-status-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/disable-bitbucket-multibranch-status-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/disable-bitbucket-multibranch-status-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/disable-bitbucket-multibranch-status-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/disable-bitbucket-multibranch-status-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/disable-bitbucket-multibranch-status-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/disable-bitbucket-multibranch-status-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/disable-bitbucket-multibranch-status-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/disable-bitbucket-multibranch-status-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/disable-bitbucket-multibranch-status-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/disable-bitbucket-multibranch-status-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/disable-bitbucket-multibranch-status-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/disable-bitbucket-multibranch-status-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/disable-bitbucket-multibranch-status-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/disable-bitbucket-multibranch-status-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/disable-bitbucket-multibranch-status-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/disable-bitbucket-multibranch-status-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/disable-bitbucket-multibranch-status-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/disable-bitbucket-multibranch-status-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/disable-bitbucket-multibranch-status-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/disable-bitbucket-multibranch-status-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/disable-bitbucket-multibranch-status-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/disable-bitbucket-multibranch-status-plugin/deployments", + "created_at": "2017-11-29T15:30:39Z", + "updated_at": "2019-03-07T12:27:54Z", + "pushed_at": "2017-11-23T19:51:52Z", + "git_url": "git://github.com/jenkinsci/disable-bitbucket-multibranch-status-plugin.git", + "ssh_url": "git@github.com:jenkinsci/disable-bitbucket-multibranch-status-plugin.git", + "clone_url": "https://github.com/jenkinsci/disable-bitbucket-multibranch-status-plugin.git", + "svn_url": "https://github.com/jenkinsci/disable-bitbucket-multibranch-status-plugin", + "homepage": null, + "size": 3, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 112492861, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTI0OTI4NjE=", + "name": "codebeamer-xunit-uploader-plugin", + "full_name": "jenkinsci/codebeamer-xunit-uploader-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/codebeamer-xunit-uploader-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/codebeamer-xunit-uploader-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/codebeamer-xunit-uploader-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/codebeamer-xunit-uploader-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/codebeamer-xunit-uploader-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/codebeamer-xunit-uploader-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/codebeamer-xunit-uploader-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/codebeamer-xunit-uploader-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/codebeamer-xunit-uploader-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/codebeamer-xunit-uploader-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/codebeamer-xunit-uploader-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/codebeamer-xunit-uploader-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/codebeamer-xunit-uploader-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/codebeamer-xunit-uploader-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/codebeamer-xunit-uploader-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/codebeamer-xunit-uploader-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/codebeamer-xunit-uploader-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/codebeamer-xunit-uploader-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/codebeamer-xunit-uploader-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/codebeamer-xunit-uploader-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/codebeamer-xunit-uploader-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/codebeamer-xunit-uploader-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/codebeamer-xunit-uploader-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/codebeamer-xunit-uploader-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/codebeamer-xunit-uploader-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/codebeamer-xunit-uploader-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/codebeamer-xunit-uploader-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/codebeamer-xunit-uploader-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/codebeamer-xunit-uploader-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/codebeamer-xunit-uploader-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/codebeamer-xunit-uploader-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/codebeamer-xunit-uploader-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/codebeamer-xunit-uploader-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/codebeamer-xunit-uploader-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/codebeamer-xunit-uploader-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/codebeamer-xunit-uploader-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/codebeamer-xunit-uploader-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/codebeamer-xunit-uploader-plugin/deployments", + "created_at": "2017-11-29T15:31:13Z", + "updated_at": "2019-04-01T09:07:10Z", + "pushed_at": "2019-04-01T09:07:09Z", + "git_url": "git://github.com/jenkinsci/codebeamer-xunit-uploader-plugin.git", + "ssh_url": "git@github.com:jenkinsci/codebeamer-xunit-uploader-plugin.git", + "clone_url": "https://github.com/jenkinsci/codebeamer-xunit-uploader-plugin.git", + "svn_url": "https://github.com/jenkinsci/codebeamer-xunit-uploader-plugin", + "homepage": null, + "size": 4573, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 112493593, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTI0OTM1OTM=", + "name": "service-fabric-plugin", + "full_name": "jenkinsci/service-fabric-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/service-fabric-plugin", + "description": "Service Fabric Jenkins Plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/service-fabric-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/service-fabric-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/service-fabric-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/service-fabric-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/service-fabric-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/service-fabric-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/service-fabric-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/service-fabric-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/service-fabric-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/service-fabric-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/service-fabric-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/service-fabric-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/service-fabric-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/service-fabric-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/service-fabric-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/service-fabric-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/service-fabric-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/service-fabric-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/service-fabric-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/service-fabric-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/service-fabric-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/service-fabric-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/service-fabric-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/service-fabric-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/service-fabric-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/service-fabric-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/service-fabric-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/service-fabric-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/service-fabric-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/service-fabric-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/service-fabric-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/service-fabric-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/service-fabric-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/service-fabric-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/service-fabric-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/service-fabric-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/service-fabric-plugin/deployments", + "created_at": "2017-11-29T15:37:28Z", + "updated_at": "2019-04-18T06:59:50Z", + "pushed_at": "2019-10-08T16:45:17Z", + "git_url": "git://github.com/jenkinsci/service-fabric-plugin.git", + "ssh_url": "git@github.com:jenkinsci/service-fabric-plugin.git", + "clone_url": "https://github.com/jenkinsci/service-fabric-plugin.git", + "svn_url": "https://github.com/jenkinsci/service-fabric-plugin", + "homepage": null, + "size": 132, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 7, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 7, + "open_issues": 3, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 112494177, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTI0OTQxNzc=", + "name": "karaf-build-step-plugin", + "full_name": "jenkinsci/karaf-build-step-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/karaf-build-step-plugin", + "description": "Karaf Build Step Jenkins Plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/karaf-build-step-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/karaf-build-step-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/karaf-build-step-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/karaf-build-step-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/karaf-build-step-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/karaf-build-step-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/karaf-build-step-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/karaf-build-step-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/karaf-build-step-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/karaf-build-step-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/karaf-build-step-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/karaf-build-step-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/karaf-build-step-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/karaf-build-step-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/karaf-build-step-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/karaf-build-step-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/karaf-build-step-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/karaf-build-step-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/karaf-build-step-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/karaf-build-step-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/karaf-build-step-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/karaf-build-step-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/karaf-build-step-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/karaf-build-step-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/karaf-build-step-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/karaf-build-step-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/karaf-build-step-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/karaf-build-step-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/karaf-build-step-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/karaf-build-step-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/karaf-build-step-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/karaf-build-step-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/karaf-build-step-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/karaf-build-step-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/karaf-build-step-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/karaf-build-step-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/karaf-build-step-plugin/deployments", + "created_at": "2017-11-29T15:42:03Z", + "updated_at": "2017-11-29T15:42:16Z", + "pushed_at": "2017-12-02T21:28:43Z", + "git_url": "git://github.com/jenkinsci/karaf-build-step-plugin.git", + "ssh_url": "git@github.com:jenkinsci/karaf-build-step-plugin.git", + "clone_url": "https://github.com/jenkinsci/karaf-build-step-plugin.git", + "svn_url": "https://github.com/jenkinsci/karaf-build-step-plugin", + "homepage": null, + "size": 175, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 112494317, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTI0OTQzMTc=", + "name": "benchmark-plugin", + "full_name": "jenkinsci/benchmark-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/benchmark-plugin", + "description": "Benchmark plugin to compare boolean and numerical results between runs. ", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/benchmark-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/benchmark-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/benchmark-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/benchmark-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/benchmark-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/benchmark-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/benchmark-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/benchmark-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/benchmark-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/benchmark-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/benchmark-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/benchmark-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/benchmark-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/benchmark-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/benchmark-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/benchmark-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/benchmark-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/benchmark-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/benchmark-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/benchmark-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/benchmark-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/benchmark-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/benchmark-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/benchmark-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/benchmark-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/benchmark-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/benchmark-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/benchmark-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/benchmark-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/benchmark-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/benchmark-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/benchmark-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/benchmark-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/benchmark-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/benchmark-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/benchmark-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/benchmark-plugin/deployments", + "created_at": "2017-11-29T15:43:09Z", + "updated_at": "2019-09-23T18:56:48Z", + "pushed_at": "2019-09-23T18:56:42Z", + "git_url": "git://github.com/jenkinsci/benchmark-plugin.git", + "ssh_url": "git@github.com:jenkinsci/benchmark-plugin.git", + "clone_url": "https://github.com/jenkinsci/benchmark-plugin.git", + "svn_url": "https://github.com/jenkinsci/benchmark-plugin", + "homepage": "https://wiki.jenkins.io/display/JENKINS/Benchmark+Plugin", + "size": 957, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 3, + "open_issues": 3, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 113223779, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTMyMjM3Nzk=", + "name": "log-cli-plugin", + "full_name": "jenkinsci/log-cli-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/log-cli-plugin", + "description": "Adds a CLI command to tail a Jenkins logger.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/log-cli-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/log-cli-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/log-cli-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/log-cli-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/log-cli-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/log-cli-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/log-cli-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/log-cli-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/log-cli-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/log-cli-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/log-cli-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/log-cli-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/log-cli-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/log-cli-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/log-cli-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/log-cli-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/log-cli-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/log-cli-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/log-cli-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/log-cli-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/log-cli-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/log-cli-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/log-cli-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/log-cli-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/log-cli-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/log-cli-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/log-cli-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/log-cli-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/log-cli-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/log-cli-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/log-cli-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/log-cli-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/log-cli-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/log-cli-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/log-cli-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/log-cli-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/log-cli-plugin/deployments", + "created_at": "2017-12-05T19:24:22Z", + "updated_at": "2019-10-12T14:01:36Z", + "pushed_at": "2019-10-23T05:24:08Z", + "git_url": "git://github.com/jenkinsci/log-cli-plugin.git", + "ssh_url": "git@github.com:jenkinsci/log-cli-plugin.git", + "clone_url": "https://github.com/jenkinsci/log-cli-plugin.git", + "svn_url": "https://github.com/jenkinsci/log-cli-plugin", + "homepage": "", + "size": 29, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 2, + "open_issues": 1, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 113761452, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTM3NjE0NTI=", + "name": "environment-variable-page-decoration-plugin", + "full_name": "jenkinsci/environment-variable-page-decoration-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/environment-variable-page-decoration-plugin", + "description": "Jenkins plugin to inject environment variables via the PageDecorator API", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/environment-variable-page-decoration-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/environment-variable-page-decoration-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/environment-variable-page-decoration-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/environment-variable-page-decoration-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/environment-variable-page-decoration-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/environment-variable-page-decoration-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/environment-variable-page-decoration-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/environment-variable-page-decoration-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/environment-variable-page-decoration-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/environment-variable-page-decoration-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/environment-variable-page-decoration-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/environment-variable-page-decoration-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/environment-variable-page-decoration-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/environment-variable-page-decoration-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/environment-variable-page-decoration-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/environment-variable-page-decoration-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/environment-variable-page-decoration-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/environment-variable-page-decoration-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/environment-variable-page-decoration-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/environment-variable-page-decoration-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/environment-variable-page-decoration-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/environment-variable-page-decoration-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/environment-variable-page-decoration-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/environment-variable-page-decoration-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/environment-variable-page-decoration-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/environment-variable-page-decoration-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/environment-variable-page-decoration-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/environment-variable-page-decoration-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/environment-variable-page-decoration-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/environment-variable-page-decoration-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/environment-variable-page-decoration-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/environment-variable-page-decoration-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/environment-variable-page-decoration-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/environment-variable-page-decoration-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/environment-variable-page-decoration-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/environment-variable-page-decoration-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/environment-variable-page-decoration-plugin/deployments", + "created_at": "2017-12-10T15:34:17Z", + "updated_at": "2019-05-03T13:14:23Z", + "pushed_at": "2019-05-03T19:08:53Z", + "git_url": "git://github.com/jenkinsci/environment-variable-page-decoration-plugin.git", + "ssh_url": "git@github.com:jenkinsci/environment-variable-page-decoration-plugin.git", + "clone_url": "https://github.com/jenkinsci/environment-variable-page-decoration-plugin.git", + "svn_url": "https://github.com/jenkinsci/environment-variable-page-decoration-plugin", + "homepage": null, + "size": 126, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Groovy", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 113761631, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTM3NjE2MzE=", + "name": "kubernetes-credentials-plugin", + "full_name": "jenkinsci/kubernetes-credentials-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/kubernetes-credentials-plugin", + "description": "Credential classes to access Kubernetes clusters", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/kubernetes-credentials-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/kubernetes-credentials-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/kubernetes-credentials-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/kubernetes-credentials-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/kubernetes-credentials-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/kubernetes-credentials-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/kubernetes-credentials-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/kubernetes-credentials-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/kubernetes-credentials-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/kubernetes-credentials-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/kubernetes-credentials-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/kubernetes-credentials-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/kubernetes-credentials-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/kubernetes-credentials-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/kubernetes-credentials-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/kubernetes-credentials-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/kubernetes-credentials-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/kubernetes-credentials-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/kubernetes-credentials-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/kubernetes-credentials-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/kubernetes-credentials-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/kubernetes-credentials-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/kubernetes-credentials-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/kubernetes-credentials-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/kubernetes-credentials-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/kubernetes-credentials-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/kubernetes-credentials-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/kubernetes-credentials-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/kubernetes-credentials-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/kubernetes-credentials-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/kubernetes-credentials-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/kubernetes-credentials-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/kubernetes-credentials-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/kubernetes-credentials-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/kubernetes-credentials-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/kubernetes-credentials-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/kubernetes-credentials-plugin/deployments", + "created_at": "2017-12-10T15:36:45Z", + "updated_at": "2019-09-26T14:38:54Z", + "pushed_at": "2019-09-16T08:49:46Z", + "git_url": "git://github.com/jenkinsci/kubernetes-credentials-plugin.git", + "ssh_url": "git@github.com:jenkinsci/kubernetes-credentials-plugin.git", + "clone_url": "https://github.com/jenkinsci/kubernetes-credentials-plugin.git", + "svn_url": "https://github.com/jenkinsci/kubernetes-credentials-plugin", + "homepage": "", + "size": 58, + "stargazers_count": 9, + "watchers_count": 9, + "language": "Java", + "has_issues": false, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 10, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 10, + "open_issues": 1, + "watchers": 9, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 114256059, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTQyNTYwNTk=", + "name": "azure-ad-plugin", + "full_name": "jenkinsci/azure-ad-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/azure-ad-plugin", + "description": "Authentication and Authorization with Azure AD", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/azure-ad-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/azure-ad-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/azure-ad-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/azure-ad-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/azure-ad-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/azure-ad-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/azure-ad-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/azure-ad-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/azure-ad-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/azure-ad-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/azure-ad-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/azure-ad-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/azure-ad-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/azure-ad-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/azure-ad-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/azure-ad-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/azure-ad-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/azure-ad-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/azure-ad-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/azure-ad-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/azure-ad-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/azure-ad-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/azure-ad-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/azure-ad-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/azure-ad-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/azure-ad-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/azure-ad-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/azure-ad-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/azure-ad-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/azure-ad-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/azure-ad-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/azure-ad-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/azure-ad-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/azure-ad-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/azure-ad-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/azure-ad-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/azure-ad-plugin/deployments", + "created_at": "2017-12-14T13:50:30Z", + "updated_at": "2019-10-12T03:40:59Z", + "pushed_at": "2019-10-12T03:40:59Z", + "git_url": "git://github.com/jenkinsci/azure-ad-plugin.git", + "ssh_url": "git@github.com:jenkinsci/azure-ad-plugin.git", + "clone_url": "https://github.com/jenkinsci/azure-ad-plugin.git", + "svn_url": "https://github.com/jenkinsci/azure-ad-plugin", + "homepage": null, + "size": 131, + "stargazers_count": 7, + "watchers_count": 7, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 18, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 12, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 18, + "open_issues": 12, + "watchers": 7, + "default_branch": "dev", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 114257089, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTQyNTcwODk=", + "name": "testquality-updater-plugin", + "full_name": "jenkinsci/testquality-updater-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/testquality-updater-plugin", + "description": "Plugin for TestQuality", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/testquality-updater-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/testquality-updater-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/testquality-updater-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/testquality-updater-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/testquality-updater-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/testquality-updater-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/testquality-updater-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/testquality-updater-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/testquality-updater-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/testquality-updater-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/testquality-updater-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/testquality-updater-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/testquality-updater-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/testquality-updater-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/testquality-updater-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/testquality-updater-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/testquality-updater-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/testquality-updater-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/testquality-updater-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/testquality-updater-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/testquality-updater-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/testquality-updater-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/testquality-updater-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/testquality-updater-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/testquality-updater-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/testquality-updater-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/testquality-updater-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/testquality-updater-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/testquality-updater-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/testquality-updater-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/testquality-updater-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/testquality-updater-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/testquality-updater-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/testquality-updater-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/testquality-updater-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/testquality-updater-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/testquality-updater-plugin/deployments", + "created_at": "2017-12-14T14:00:10Z", + "updated_at": "2018-08-09T20:44:43Z", + "pushed_at": "2018-08-09T20:44:42Z", + "git_url": "git://github.com/jenkinsci/testquality-updater-plugin.git", + "ssh_url": "git@github.com:jenkinsci/testquality-updater-plugin.git", + "clone_url": "https://github.com/jenkinsci/testquality-updater-plugin.git", + "svn_url": "https://github.com/jenkinsci/testquality-updater-plugin", + "homepage": "http://www.testquality.com", + "size": 17, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 114257225, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTQyNTcyMjU=", + "name": "kubernetes-cli-plugin", + "full_name": "jenkinsci/kubernetes-cli-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/kubernetes-cli-plugin", + "description": "Allows you to setup kubectl to access Kubernetes clusters from your Jenkins jobs.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/kubernetes-cli-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/kubernetes-cli-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/kubernetes-cli-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/kubernetes-cli-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/kubernetes-cli-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/kubernetes-cli-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/kubernetes-cli-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/kubernetes-cli-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/kubernetes-cli-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/kubernetes-cli-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/kubernetes-cli-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/kubernetes-cli-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/kubernetes-cli-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/kubernetes-cli-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/kubernetes-cli-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/kubernetes-cli-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/kubernetes-cli-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/kubernetes-cli-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/kubernetes-cli-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/kubernetes-cli-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/kubernetes-cli-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/kubernetes-cli-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/kubernetes-cli-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/kubernetes-cli-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/kubernetes-cli-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/kubernetes-cli-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/kubernetes-cli-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/kubernetes-cli-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/kubernetes-cli-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/kubernetes-cli-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/kubernetes-cli-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/kubernetes-cli-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/kubernetes-cli-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/kubernetes-cli-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/kubernetes-cli-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/kubernetes-cli-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/kubernetes-cli-plugin/deployments", + "created_at": "2017-12-14T14:01:24Z", + "updated_at": "2019-10-09T12:22:05Z", + "pushed_at": "2019-09-21T16:15:10Z", + "git_url": "git://github.com/jenkinsci/kubernetes-cli-plugin.git", + "ssh_url": "git@github.com:jenkinsci/kubernetes-cli-plugin.git", + "clone_url": "https://github.com/jenkinsci/kubernetes-cli-plugin.git", + "svn_url": "https://github.com/jenkinsci/kubernetes-cli-plugin", + "homepage": null, + "size": 409, + "stargazers_count": 41, + "watchers_count": 41, + "language": "Java", + "has_issues": true, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 15, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 15, + "open_issues": 2, + "watchers": 41, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 114258900, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTQyNTg5MDA=", + "name": "eagle-tester-plugin", + "full_name": "jenkinsci/eagle-tester-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/eagle-tester-plugin", + "description": "Eagle tester Jenkins Plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/eagle-tester-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/eagle-tester-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/eagle-tester-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/eagle-tester-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/eagle-tester-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/eagle-tester-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/eagle-tester-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/eagle-tester-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/eagle-tester-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/eagle-tester-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/eagle-tester-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/eagle-tester-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/eagle-tester-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/eagle-tester-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/eagle-tester-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/eagle-tester-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/eagle-tester-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/eagle-tester-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/eagle-tester-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/eagle-tester-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/eagle-tester-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/eagle-tester-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/eagle-tester-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/eagle-tester-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/eagle-tester-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/eagle-tester-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/eagle-tester-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/eagle-tester-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/eagle-tester-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/eagle-tester-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/eagle-tester-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/eagle-tester-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/eagle-tester-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/eagle-tester-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/eagle-tester-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/eagle-tester-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/eagle-tester-plugin/deployments", + "created_at": "2017-12-14T14:17:27Z", + "updated_at": "2018-05-23T00:46:00Z", + "pushed_at": "2018-05-23T00:45:59Z", + "git_url": "git://github.com/jenkinsci/eagle-tester-plugin.git", + "ssh_url": "git@github.com:jenkinsci/eagle-tester-plugin.git", + "clone_url": "https://github.com/jenkinsci/eagle-tester-plugin.git", + "svn_url": "https://github.com/jenkinsci/eagle-tester-plugin", + "homepage": null, + "size": 95, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 114780687, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTQ3ODA2ODc=", + "name": "debian-pbuilder-plugin", + "full_name": "jenkinsci/debian-pbuilder-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/debian-pbuilder-plugin", + "description": "Debian pbuilder plugin for jenkins", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/debian-pbuilder-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/debian-pbuilder-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/debian-pbuilder-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/debian-pbuilder-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/debian-pbuilder-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/debian-pbuilder-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/debian-pbuilder-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/debian-pbuilder-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/debian-pbuilder-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/debian-pbuilder-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/debian-pbuilder-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/debian-pbuilder-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/debian-pbuilder-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/debian-pbuilder-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/debian-pbuilder-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/debian-pbuilder-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/debian-pbuilder-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/debian-pbuilder-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/debian-pbuilder-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/debian-pbuilder-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/debian-pbuilder-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/debian-pbuilder-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/debian-pbuilder-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/debian-pbuilder-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/debian-pbuilder-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/debian-pbuilder-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/debian-pbuilder-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/debian-pbuilder-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/debian-pbuilder-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/debian-pbuilder-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/debian-pbuilder-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/debian-pbuilder-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/debian-pbuilder-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/debian-pbuilder-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/debian-pbuilder-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/debian-pbuilder-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/debian-pbuilder-plugin/deployments", + "created_at": "2017-12-19T15:22:01Z", + "updated_at": "2019-10-12T13:54:26Z", + "pushed_at": "2019-10-12T13:54:24Z", + "git_url": "git://github.com/jenkinsci/debian-pbuilder-plugin.git", + "ssh_url": "git@github.com:jenkinsci/debian-pbuilder-plugin.git", + "clone_url": "https://github.com/jenkinsci/debian-pbuilder-plugin.git", + "svn_url": "https://github.com/jenkinsci/debian-pbuilder-plugin", + "homepage": null, + "size": 84, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 3, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 116147674, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYxNDc2NzQ=", + "name": "pipeline-deploymon-plugin", + "full_name": "jenkinsci/pipeline-deploymon-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pipeline-deploymon-plugin", + "description": "Jenkins Pipeline plugin for deploymon.io", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/pipeline-deploymon-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pipeline-deploymon-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pipeline-deploymon-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pipeline-deploymon-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pipeline-deploymon-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pipeline-deploymon-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pipeline-deploymon-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pipeline-deploymon-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pipeline-deploymon-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pipeline-deploymon-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pipeline-deploymon-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pipeline-deploymon-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pipeline-deploymon-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pipeline-deploymon-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pipeline-deploymon-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pipeline-deploymon-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pipeline-deploymon-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pipeline-deploymon-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pipeline-deploymon-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pipeline-deploymon-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pipeline-deploymon-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pipeline-deploymon-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pipeline-deploymon-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pipeline-deploymon-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pipeline-deploymon-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pipeline-deploymon-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pipeline-deploymon-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pipeline-deploymon-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pipeline-deploymon-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pipeline-deploymon-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pipeline-deploymon-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pipeline-deploymon-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pipeline-deploymon-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pipeline-deploymon-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pipeline-deploymon-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pipeline-deploymon-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pipeline-deploymon-plugin/deployments", + "created_at": "2018-01-03T14:44:20Z", + "updated_at": "2019-10-08T17:52:56Z", + "pushed_at": "2019-10-08T17:52:54Z", + "git_url": "git://github.com/jenkinsci/pipeline-deploymon-plugin.git", + "ssh_url": "git@github.com:jenkinsci/pipeline-deploymon-plugin.git", + "clone_url": "https://github.com/jenkinsci/pipeline-deploymon-plugin.git", + "svn_url": "https://github.com/jenkinsci/pipeline-deploymon-plugin", + "homepage": null, + "size": 15, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 3, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 116147799, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYxNDc3OTk=", + "name": "handy-uri-templates-2-api-plugin", + "full_name": "jenkinsci/handy-uri-templates-2-api-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/handy-uri-templates-2-api-plugin", + "description": "Bundles Handy Uri Templates 2.x and allows it to be used by Jenkins plugins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/handy-uri-templates-2-api-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/handy-uri-templates-2-api-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/handy-uri-templates-2-api-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/handy-uri-templates-2-api-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/handy-uri-templates-2-api-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/handy-uri-templates-2-api-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/handy-uri-templates-2-api-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/handy-uri-templates-2-api-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/handy-uri-templates-2-api-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/handy-uri-templates-2-api-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/handy-uri-templates-2-api-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/handy-uri-templates-2-api-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/handy-uri-templates-2-api-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/handy-uri-templates-2-api-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/handy-uri-templates-2-api-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/handy-uri-templates-2-api-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/handy-uri-templates-2-api-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/handy-uri-templates-2-api-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/handy-uri-templates-2-api-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/handy-uri-templates-2-api-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/handy-uri-templates-2-api-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/handy-uri-templates-2-api-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/handy-uri-templates-2-api-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/handy-uri-templates-2-api-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/handy-uri-templates-2-api-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/handy-uri-templates-2-api-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/handy-uri-templates-2-api-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/handy-uri-templates-2-api-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/handy-uri-templates-2-api-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/handy-uri-templates-2-api-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/handy-uri-templates-2-api-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/handy-uri-templates-2-api-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/handy-uri-templates-2-api-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/handy-uri-templates-2-api-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/handy-uri-templates-2-api-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/handy-uri-templates-2-api-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/handy-uri-templates-2-api-plugin/deployments", + "created_at": "2018-01-03T14:45:28Z", + "updated_at": "2019-10-17T17:01:32Z", + "pushed_at": "2019-10-17T17:01:31Z", + "git_url": "git://github.com/jenkinsci/handy-uri-templates-2-api-plugin.git", + "ssh_url": "git@github.com:jenkinsci/handy-uri-templates-2-api-plugin.git", + "clone_url": "https://github.com/jenkinsci/handy-uri-templates-2-api-plugin.git", + "svn_url": "https://github.com/jenkinsci/handy-uri-templates-2-api-plugin", + "homepage": null, + "size": 17, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 2, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 116148131, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYxNDgxMzE=", + "name": "phoenix-autotest-plugin", + "full_name": "jenkinsci/phoenix-autotest-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/phoenix-autotest-plugin", + "description": "AutoTest Pipeline Plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/phoenix-autotest-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/phoenix-autotest-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/phoenix-autotest-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/phoenix-autotest-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/phoenix-autotest-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/phoenix-autotest-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/phoenix-autotest-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/phoenix-autotest-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/phoenix-autotest-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/phoenix-autotest-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/phoenix-autotest-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/phoenix-autotest-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/phoenix-autotest-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/phoenix-autotest-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/phoenix-autotest-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/phoenix-autotest-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/phoenix-autotest-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/phoenix-autotest-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/phoenix-autotest-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/phoenix-autotest-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/phoenix-autotest-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/phoenix-autotest-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/phoenix-autotest-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/phoenix-autotest-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/phoenix-autotest-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/phoenix-autotest-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/phoenix-autotest-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/phoenix-autotest-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/phoenix-autotest-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/phoenix-autotest-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/phoenix-autotest-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/phoenix-autotest-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/phoenix-autotest-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/phoenix-autotest-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/phoenix-autotest-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/phoenix-autotest-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/phoenix-autotest-plugin/deployments", + "created_at": "2018-01-03T14:48:46Z", + "updated_at": "2019-09-05T06:08:40Z", + "pushed_at": "2018-12-30T13:40:19Z", + "git_url": "git://github.com/jenkinsci/phoenix-autotest-plugin.git", + "ssh_url": "git@github.com:jenkinsci/phoenix-autotest-plugin.git", + "clone_url": "https://github.com/jenkinsci/phoenix-autotest-plugin.git", + "svn_url": "https://github.com/jenkinsci/phoenix-autotest-plugin", + "homepage": "http://surenpi.com", + "size": 136, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": true, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 2, + "open_issues": 2, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 116148386, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYxNDgzODY=", + "name": "compuware-ispw-operations-plugin", + "full_name": "jenkinsci/compuware-ispw-operations-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/compuware-ispw-operations-plugin", + "description": "Compuware ISPW Operations Plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/compuware-ispw-operations-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/compuware-ispw-operations-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/compuware-ispw-operations-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/compuware-ispw-operations-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/compuware-ispw-operations-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/compuware-ispw-operations-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/compuware-ispw-operations-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/compuware-ispw-operations-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/compuware-ispw-operations-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/compuware-ispw-operations-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/compuware-ispw-operations-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/compuware-ispw-operations-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/compuware-ispw-operations-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/compuware-ispw-operations-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/compuware-ispw-operations-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/compuware-ispw-operations-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/compuware-ispw-operations-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/compuware-ispw-operations-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/compuware-ispw-operations-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/compuware-ispw-operations-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/compuware-ispw-operations-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/compuware-ispw-operations-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/compuware-ispw-operations-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/compuware-ispw-operations-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/compuware-ispw-operations-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/compuware-ispw-operations-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/compuware-ispw-operations-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/compuware-ispw-operations-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/compuware-ispw-operations-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/compuware-ispw-operations-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/compuware-ispw-operations-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/compuware-ispw-operations-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/compuware-ispw-operations-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/compuware-ispw-operations-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/compuware-ispw-operations-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/compuware-ispw-operations-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/compuware-ispw-operations-plugin/deployments", + "created_at": "2018-01-03T14:51:08Z", + "updated_at": "2019-10-24T15:30:48Z", + "pushed_at": "2019-10-24T15:30:45Z", + "git_url": "git://github.com/jenkinsci/compuware-ispw-operations-plugin.git", + "ssh_url": "git@github.com:jenkinsci/compuware-ispw-operations-plugin.git", + "clone_url": "https://github.com/jenkinsci/compuware-ispw-operations-plugin.git", + "svn_url": "https://github.com/jenkinsci/compuware-ispw-operations-plugin", + "homepage": "https://wiki.jenkins.io/display/JENKINS/Compuware+ISPW+Operations+Plugin", + "size": 22045, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 3, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 116161924, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYxNjE5MjQ=", + "name": "oracle-cloud-infrastructure-compute-plugin", + "full_name": "jenkinsci/oracle-cloud-infrastructure-compute-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/oracle-cloud-infrastructure-compute-plugin", + "description": "Jenkins Plugin for Oracle Cloud Infrastructure (Compute)", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/oracle-cloud-infrastructure-compute-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/oracle-cloud-infrastructure-compute-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/oracle-cloud-infrastructure-compute-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/oracle-cloud-infrastructure-compute-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/oracle-cloud-infrastructure-compute-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/oracle-cloud-infrastructure-compute-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/oracle-cloud-infrastructure-compute-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/oracle-cloud-infrastructure-compute-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/oracle-cloud-infrastructure-compute-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/oracle-cloud-infrastructure-compute-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/oracle-cloud-infrastructure-compute-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/oracle-cloud-infrastructure-compute-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/oracle-cloud-infrastructure-compute-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/oracle-cloud-infrastructure-compute-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/oracle-cloud-infrastructure-compute-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/oracle-cloud-infrastructure-compute-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/oracle-cloud-infrastructure-compute-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/oracle-cloud-infrastructure-compute-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/oracle-cloud-infrastructure-compute-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/oracle-cloud-infrastructure-compute-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/oracle-cloud-infrastructure-compute-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/oracle-cloud-infrastructure-compute-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/oracle-cloud-infrastructure-compute-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/oracle-cloud-infrastructure-compute-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/oracle-cloud-infrastructure-compute-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/oracle-cloud-infrastructure-compute-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/oracle-cloud-infrastructure-compute-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/oracle-cloud-infrastructure-compute-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/oracle-cloud-infrastructure-compute-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/oracle-cloud-infrastructure-compute-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/oracle-cloud-infrastructure-compute-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/oracle-cloud-infrastructure-compute-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/oracle-cloud-infrastructure-compute-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/oracle-cloud-infrastructure-compute-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/oracle-cloud-infrastructure-compute-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/oracle-cloud-infrastructure-compute-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/oracle-cloud-infrastructure-compute-plugin/deployments", + "created_at": "2018-01-03T17:06:34Z", + "updated_at": "2019-09-26T08:07:35Z", + "pushed_at": "2019-09-26T08:07:33Z", + "git_url": "git://github.com/jenkinsci/oracle-cloud-infrastructure-compute-plugin.git", + "ssh_url": "git@github.com:jenkinsci/oracle-cloud-infrastructure-compute-plugin.git", + "clone_url": "https://github.com/jenkinsci/oracle-cloud-infrastructure-compute-plugin.git", + "svn_url": "https://github.com/jenkinsci/oracle-cloud-infrastructure-compute-plugin", + "homepage": "", + "size": 242, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 1, + "open_issues": 0, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 116247725, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYyNDc3MjU=", + "name": "basic-branch-build-strategies-plugin", + "full_name": "jenkinsci/basic-branch-build-strategies-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/basic-branch-build-strategies-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/basic-branch-build-strategies-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/basic-branch-build-strategies-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/basic-branch-build-strategies-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/basic-branch-build-strategies-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/basic-branch-build-strategies-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/basic-branch-build-strategies-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/basic-branch-build-strategies-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/basic-branch-build-strategies-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/basic-branch-build-strategies-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/basic-branch-build-strategies-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/basic-branch-build-strategies-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/basic-branch-build-strategies-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/basic-branch-build-strategies-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/basic-branch-build-strategies-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/basic-branch-build-strategies-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/basic-branch-build-strategies-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/basic-branch-build-strategies-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/basic-branch-build-strategies-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/basic-branch-build-strategies-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/basic-branch-build-strategies-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/basic-branch-build-strategies-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/basic-branch-build-strategies-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/basic-branch-build-strategies-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/basic-branch-build-strategies-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/basic-branch-build-strategies-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/basic-branch-build-strategies-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/basic-branch-build-strategies-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/basic-branch-build-strategies-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/basic-branch-build-strategies-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/basic-branch-build-strategies-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/basic-branch-build-strategies-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/basic-branch-build-strategies-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/basic-branch-build-strategies-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/basic-branch-build-strategies-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/basic-branch-build-strategies-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/basic-branch-build-strategies-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/basic-branch-build-strategies-plugin/deployments", + "created_at": "2018-01-04T10:37:13Z", + "updated_at": "2019-10-21T06:11:41Z", + "pushed_at": "2019-07-30T11:21:52Z", + "git_url": "git://github.com/jenkinsci/basic-branch-build-strategies-plugin.git", + "ssh_url": "git@github.com:jenkinsci/basic-branch-build-strategies-plugin.git", + "clone_url": "https://github.com/jenkinsci/basic-branch-build-strategies-plugin.git", + "svn_url": "https://github.com/jenkinsci/basic-branch-build-strategies-plugin", + "homepage": "", + "size": 1083, + "stargazers_count": 31, + "watchers_count": 31, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 18, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 18, + "open_issues": 0, + "watchers": 31, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 116403060, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTY0MDMwNjA=", + "name": "jx-pipelines-plugin", + "full_name": "jenkinsci/jx-pipelines-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jx-pipelines-plugin", + "description": "Jenkins plugin for reusable pipelines for Jenkins X", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jx-pipelines-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/jx-pipelines-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jx-pipelines-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jx-pipelines-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jx-pipelines-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jx-pipelines-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jx-pipelines-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jx-pipelines-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jx-pipelines-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jx-pipelines-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jx-pipelines-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jx-pipelines-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jx-pipelines-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jx-pipelines-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jx-pipelines-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jx-pipelines-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jx-pipelines-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jx-pipelines-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jx-pipelines-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jx-pipelines-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jx-pipelines-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jx-pipelines-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jx-pipelines-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jx-pipelines-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jx-pipelines-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jx-pipelines-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jx-pipelines-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jx-pipelines-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jx-pipelines-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jx-pipelines-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jx-pipelines-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jx-pipelines-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jx-pipelines-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jx-pipelines-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jx-pipelines-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jx-pipelines-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jx-pipelines-plugin/deployments", + "created_at": "2018-01-05T16:09:52Z", + "updated_at": "2018-06-02T18:24:23Z", + "pushed_at": "2019-10-08T16:43:46Z", + "git_url": "git://github.com/jenkinsci/jx-pipelines-plugin.git", + "ssh_url": "git@github.com:jenkinsci/jx-pipelines-plugin.git", + "clone_url": "https://github.com/jenkinsci/jx-pipelines-plugin.git", + "svn_url": "https://github.com/jenkinsci/jx-pipelines-plugin", + "homepage": null, + "size": 173, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 7, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 7, + "open_issues": 2, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 116414434, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTY0MTQ0MzQ=", + "name": "gerrit-code-review-plugin", + "full_name": "jenkinsci/gerrit-code-review-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/gerrit-code-review-plugin", + "description": "Gerrit SCM plugin for Jenkins CI", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/gerrit-code-review-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/gerrit-code-review-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/gerrit-code-review-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/gerrit-code-review-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/gerrit-code-review-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/gerrit-code-review-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/gerrit-code-review-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/gerrit-code-review-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/gerrit-code-review-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/gerrit-code-review-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/gerrit-code-review-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/gerrit-code-review-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/gerrit-code-review-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/gerrit-code-review-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/gerrit-code-review-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/gerrit-code-review-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/gerrit-code-review-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/gerrit-code-review-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/gerrit-code-review-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/gerrit-code-review-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/gerrit-code-review-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/gerrit-code-review-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/gerrit-code-review-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/gerrit-code-review-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/gerrit-code-review-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/gerrit-code-review-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/gerrit-code-review-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/gerrit-code-review-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/gerrit-code-review-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/gerrit-code-review-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/gerrit-code-review-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/gerrit-code-review-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/gerrit-code-review-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/gerrit-code-review-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/gerrit-code-review-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/gerrit-code-review-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/gerrit-code-review-plugin/deployments", + "created_at": "2018-01-05T18:22:39Z", + "updated_at": "2019-10-24T12:31:53Z", + "pushed_at": "2019-10-25T21:37:44Z", + "git_url": "git://github.com/jenkinsci/gerrit-code-review-plugin.git", + "ssh_url": "git@github.com:jenkinsci/gerrit-code-review-plugin.git", + "clone_url": "https://github.com/jenkinsci/gerrit-code-review-plugin.git", + "svn_url": "https://github.com/jenkinsci/gerrit-code-review-plugin", + "homepage": null, + "size": 463, + "stargazers_count": 29, + "watchers_count": 29, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 19, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 19, + "open_issues": 0, + "watchers": 29, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 116424090, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTY0MjQwOTA=", + "name": "ignore-committer-strategy-plugin", + "full_name": "jenkinsci/ignore-committer-strategy-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/ignore-committer-strategy-plugin", + "description": "This plugin provides additional configuration to prevent multi branch projects from triggering new builds based on a blacklist of commit authors.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/ignore-committer-strategy-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/ignore-committer-strategy-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/ignore-committer-strategy-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/ignore-committer-strategy-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/ignore-committer-strategy-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/ignore-committer-strategy-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/ignore-committer-strategy-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/ignore-committer-strategy-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/ignore-committer-strategy-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/ignore-committer-strategy-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/ignore-committer-strategy-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/ignore-committer-strategy-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/ignore-committer-strategy-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/ignore-committer-strategy-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/ignore-committer-strategy-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/ignore-committer-strategy-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/ignore-committer-strategy-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/ignore-committer-strategy-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/ignore-committer-strategy-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/ignore-committer-strategy-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/ignore-committer-strategy-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/ignore-committer-strategy-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/ignore-committer-strategy-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/ignore-committer-strategy-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/ignore-committer-strategy-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/ignore-committer-strategy-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/ignore-committer-strategy-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/ignore-committer-strategy-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/ignore-committer-strategy-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/ignore-committer-strategy-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/ignore-committer-strategy-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/ignore-committer-strategy-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/ignore-committer-strategy-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/ignore-committer-strategy-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/ignore-committer-strategy-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/ignore-committer-strategy-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/ignore-committer-strategy-plugin/deployments", + "created_at": "2018-01-05T20:29:49Z", + "updated_at": "2019-10-09T19:47:50Z", + "pushed_at": "2019-10-05T13:11:14Z", + "git_url": "git://github.com/jenkinsci/ignore-committer-strategy-plugin.git", + "ssh_url": "git@github.com:jenkinsci/ignore-committer-strategy-plugin.git", + "clone_url": "https://github.com/jenkinsci/ignore-committer-strategy-plugin.git", + "svn_url": "https://github.com/jenkinsci/ignore-committer-strategy-plugin", + "homepage": "", + "size": 92, + "stargazers_count": 11, + "watchers_count": 11, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 8, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 4, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 8, + "open_issues": 4, + "watchers": 11, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 116424223, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTY0MjQyMjM=", + "name": "github-scm-trait-notification-context-plugin", + "full_name": "jenkinsci/github-scm-trait-notification-context-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/github-scm-trait-notification-context-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/github-scm-trait-notification-context-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/github-scm-trait-notification-context-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/github-scm-trait-notification-context-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/github-scm-trait-notification-context-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/github-scm-trait-notification-context-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/github-scm-trait-notification-context-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/github-scm-trait-notification-context-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/github-scm-trait-notification-context-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/github-scm-trait-notification-context-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/github-scm-trait-notification-context-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/github-scm-trait-notification-context-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/github-scm-trait-notification-context-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/github-scm-trait-notification-context-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/github-scm-trait-notification-context-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/github-scm-trait-notification-context-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/github-scm-trait-notification-context-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/github-scm-trait-notification-context-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/github-scm-trait-notification-context-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/github-scm-trait-notification-context-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/github-scm-trait-notification-context-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/github-scm-trait-notification-context-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/github-scm-trait-notification-context-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/github-scm-trait-notification-context-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/github-scm-trait-notification-context-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/github-scm-trait-notification-context-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/github-scm-trait-notification-context-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/github-scm-trait-notification-context-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/github-scm-trait-notification-context-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/github-scm-trait-notification-context-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/github-scm-trait-notification-context-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/github-scm-trait-notification-context-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/github-scm-trait-notification-context-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/github-scm-trait-notification-context-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/github-scm-trait-notification-context-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/github-scm-trait-notification-context-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/github-scm-trait-notification-context-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/github-scm-trait-notification-context-plugin/deployments", + "created_at": "2018-01-05T20:31:42Z", + "updated_at": "2019-08-29T13:34:53Z", + "pushed_at": "2019-04-24T08:20:44Z", + "git_url": "git://github.com/jenkinsci/github-scm-trait-notification-context-plugin.git", + "ssh_url": "git@github.com:jenkinsci/github-scm-trait-notification-context-plugin.git", + "clone_url": "https://github.com/jenkinsci/github-scm-trait-notification-context-plugin.git", + "svn_url": "https://github.com/jenkinsci/github-scm-trait-notification-context-plugin", + "homepage": null, + "size": 7, + "stargazers_count": 6, + "watchers_count": 6, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 5, + "open_issues": 0, + "watchers": 6, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 117253728, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTcyNTM3Mjg=", + "name": "oracle-cloud-infrastructure-compute-classic-plugin", + "full_name": "jenkinsci/oracle-cloud-infrastructure-compute-classic-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/oracle-cloud-infrastructure-compute-classic-plugin", + "description": "Jenkins Plugin for Oracle Cloud Infrastructure (Compute Classic) ", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/oracle-cloud-infrastructure-compute-classic-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/oracle-cloud-infrastructure-compute-classic-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/oracle-cloud-infrastructure-compute-classic-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/oracle-cloud-infrastructure-compute-classic-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/oracle-cloud-infrastructure-compute-classic-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/oracle-cloud-infrastructure-compute-classic-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/oracle-cloud-infrastructure-compute-classic-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/oracle-cloud-infrastructure-compute-classic-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/oracle-cloud-infrastructure-compute-classic-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/oracle-cloud-infrastructure-compute-classic-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/oracle-cloud-infrastructure-compute-classic-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/oracle-cloud-infrastructure-compute-classic-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/oracle-cloud-infrastructure-compute-classic-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/oracle-cloud-infrastructure-compute-classic-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/oracle-cloud-infrastructure-compute-classic-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/oracle-cloud-infrastructure-compute-classic-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/oracle-cloud-infrastructure-compute-classic-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/oracle-cloud-infrastructure-compute-classic-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/oracle-cloud-infrastructure-compute-classic-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/oracle-cloud-infrastructure-compute-classic-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/oracle-cloud-infrastructure-compute-classic-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/oracle-cloud-infrastructure-compute-classic-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/oracle-cloud-infrastructure-compute-classic-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/oracle-cloud-infrastructure-compute-classic-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/oracle-cloud-infrastructure-compute-classic-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/oracle-cloud-infrastructure-compute-classic-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/oracle-cloud-infrastructure-compute-classic-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/oracle-cloud-infrastructure-compute-classic-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/oracle-cloud-infrastructure-compute-classic-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/oracle-cloud-infrastructure-compute-classic-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/oracle-cloud-infrastructure-compute-classic-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/oracle-cloud-infrastructure-compute-classic-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/oracle-cloud-infrastructure-compute-classic-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/oracle-cloud-infrastructure-compute-classic-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/oracle-cloud-infrastructure-compute-classic-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/oracle-cloud-infrastructure-compute-classic-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/oracle-cloud-infrastructure-compute-classic-plugin/deployments", + "created_at": "2018-01-12T14:57:57Z", + "updated_at": "2018-01-12T14:58:07Z", + "pushed_at": "2018-01-16T17:52:39Z", + "git_url": "git://github.com/jenkinsci/oracle-cloud-infrastructure-compute-classic-plugin.git", + "ssh_url": "git@github.com:jenkinsci/oracle-cloud-infrastructure-compute-classic-plugin.git", + "clone_url": "https://github.com/jenkinsci/oracle-cloud-infrastructure-compute-classic-plugin.git", + "svn_url": "https://github.com/jenkinsci/oracle-cloud-infrastructure-compute-classic-plugin", + "homepage": "", + "size": 115, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 118003469, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTgwMDM0Njk=", + "name": "testinium-plugin", + "full_name": "jenkinsci/testinium-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/testinium-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/testinium-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/testinium-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/testinium-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/testinium-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/testinium-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/testinium-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/testinium-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/testinium-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/testinium-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/testinium-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/testinium-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/testinium-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/testinium-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/testinium-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/testinium-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/testinium-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/testinium-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/testinium-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/testinium-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/testinium-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/testinium-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/testinium-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/testinium-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/testinium-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/testinium-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/testinium-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/testinium-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/testinium-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/testinium-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/testinium-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/testinium-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/testinium-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/testinium-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/testinium-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/testinium-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/testinium-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/testinium-plugin/deployments", + "created_at": "2018-01-18T15:49:15Z", + "updated_at": "2018-05-07T09:52:22Z", + "pushed_at": "2018-08-01T09:28:33Z", + "git_url": "git://github.com/jenkinsci/testinium-plugin.git", + "ssh_url": "git@github.com:jenkinsci/testinium-plugin.git", + "clone_url": "https://github.com/jenkinsci/testinium-plugin.git", + "svn_url": "https://github.com/jenkinsci/testinium-plugin", + "homepage": null, + "size": 116, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 2, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 118008333, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTgwMDgzMzM=", + "name": "kafkalogs-plugin", + "full_name": "jenkinsci/kafkalogs-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/kafkalogs-plugin", + "description": "Jenkins plugin to ship build logs to kafka.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/kafkalogs-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/kafkalogs-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/kafkalogs-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/kafkalogs-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/kafkalogs-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/kafkalogs-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/kafkalogs-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/kafkalogs-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/kafkalogs-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/kafkalogs-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/kafkalogs-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/kafkalogs-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/kafkalogs-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/kafkalogs-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/kafkalogs-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/kafkalogs-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/kafkalogs-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/kafkalogs-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/kafkalogs-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/kafkalogs-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/kafkalogs-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/kafkalogs-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/kafkalogs-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/kafkalogs-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/kafkalogs-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/kafkalogs-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/kafkalogs-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/kafkalogs-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/kafkalogs-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/kafkalogs-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/kafkalogs-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/kafkalogs-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/kafkalogs-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/kafkalogs-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/kafkalogs-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/kafkalogs-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/kafkalogs-plugin/deployments", + "created_at": "2018-01-18T16:29:35Z", + "updated_at": "2018-01-18T16:29:45Z", + "pushed_at": "2018-01-18T20:42:18Z", + "git_url": "git://github.com/jenkinsci/kafkalogs-plugin.git", + "ssh_url": "git@github.com:jenkinsci/kafkalogs-plugin.git", + "clone_url": "https://github.com/jenkinsci/kafkalogs-plugin.git", + "svn_url": "https://github.com/jenkinsci/kafkalogs-plugin", + "homepage": null, + "size": 31, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 2, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 118008457, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTgwMDg0NTc=", + "name": "non-dynamic-hello-world-plugin", + "full_name": "jenkinsci/non-dynamic-hello-world-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/non-dynamic-hello-world-plugin", + "description": "Testing Jenkins plugin to check non dynamically loadable plugins behaviour", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/non-dynamic-hello-world-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/non-dynamic-hello-world-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/non-dynamic-hello-world-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/non-dynamic-hello-world-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/non-dynamic-hello-world-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/non-dynamic-hello-world-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/non-dynamic-hello-world-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/non-dynamic-hello-world-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/non-dynamic-hello-world-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/non-dynamic-hello-world-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/non-dynamic-hello-world-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/non-dynamic-hello-world-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/non-dynamic-hello-world-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/non-dynamic-hello-world-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/non-dynamic-hello-world-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/non-dynamic-hello-world-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/non-dynamic-hello-world-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/non-dynamic-hello-world-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/non-dynamic-hello-world-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/non-dynamic-hello-world-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/non-dynamic-hello-world-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/non-dynamic-hello-world-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/non-dynamic-hello-world-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/non-dynamic-hello-world-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/non-dynamic-hello-world-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/non-dynamic-hello-world-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/non-dynamic-hello-world-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/non-dynamic-hello-world-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/non-dynamic-hello-world-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/non-dynamic-hello-world-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/non-dynamic-hello-world-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/non-dynamic-hello-world-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/non-dynamic-hello-world-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/non-dynamic-hello-world-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/non-dynamic-hello-world-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/non-dynamic-hello-world-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/non-dynamic-hello-world-plugin/deployments", + "created_at": "2018-01-18T16:30:39Z", + "updated_at": "2018-10-16T12:01:31Z", + "pushed_at": "2018-10-16T12:18:24Z", + "git_url": "git://github.com/jenkinsci/non-dynamic-hello-world-plugin.git", + "ssh_url": "git@github.com:jenkinsci/non-dynamic-hello-world-plugin.git", + "clone_url": "https://github.com/jenkinsci/non-dynamic-hello-world-plugin.git", + "svn_url": "https://github.com/jenkinsci/non-dynamic-hello-world-plugin", + "homepage": null, + "size": 10, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 118781476, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTg3ODE0NzY=", + "name": "working-hours-plugin", + "full_name": "jenkinsci/working-hours-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/working-hours-plugin", + "description": "Jenkins plugin to prevent a build step from running outside working hours", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/working-hours-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/working-hours-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/working-hours-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/working-hours-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/working-hours-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/working-hours-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/working-hours-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/working-hours-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/working-hours-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/working-hours-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/working-hours-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/working-hours-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/working-hours-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/working-hours-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/working-hours-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/working-hours-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/working-hours-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/working-hours-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/working-hours-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/working-hours-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/working-hours-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/working-hours-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/working-hours-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/working-hours-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/working-hours-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/working-hours-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/working-hours-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/working-hours-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/working-hours-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/working-hours-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/working-hours-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/working-hours-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/working-hours-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/working-hours-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/working-hours-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/working-hours-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/working-hours-plugin/deployments", + "created_at": "2018-01-24T15:09:13Z", + "updated_at": "2019-09-18T15:56:41Z", + "pushed_at": "2019-09-18T22:38:22Z", + "git_url": "git://github.com/jenkinsci/working-hours-plugin.git", + "ssh_url": "git@github.com:jenkinsci/working-hours-plugin.git", + "clone_url": "https://github.com/jenkinsci/working-hours-plugin.git", + "svn_url": "https://github.com/jenkinsci/working-hours-plugin", + "homepage": null, + "size": 1236, + "stargazers_count": 10, + "watchers_count": 10, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 9, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 6, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 9, + "open_issues": 6, + "watchers": 10, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 118781899, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTg3ODE4OTk=", + "name": "phonegap-build-plugin", + "full_name": "jenkinsci/phonegap-build-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/phonegap-build-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/phonegap-build-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/phonegap-build-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/phonegap-build-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/phonegap-build-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/phonegap-build-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/phonegap-build-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/phonegap-build-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/phonegap-build-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/phonegap-build-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/phonegap-build-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/phonegap-build-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/phonegap-build-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/phonegap-build-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/phonegap-build-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/phonegap-build-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/phonegap-build-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/phonegap-build-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/phonegap-build-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/phonegap-build-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/phonegap-build-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/phonegap-build-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/phonegap-build-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/phonegap-build-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/phonegap-build-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/phonegap-build-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/phonegap-build-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/phonegap-build-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/phonegap-build-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/phonegap-build-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/phonegap-build-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/phonegap-build-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/phonegap-build-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/phonegap-build-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/phonegap-build-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/phonegap-build-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/phonegap-build-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/phonegap-build-plugin/deployments", + "created_at": "2018-01-24T15:12:27Z", + "updated_at": "2018-01-24T15:12:37Z", + "pushed_at": "2018-01-25T09:10:47Z", + "git_url": "git://github.com/jenkinsci/phonegap-build-plugin.git", + "ssh_url": "git@github.com:jenkinsci/phonegap-build-plugin.git", + "clone_url": "https://github.com/jenkinsci/phonegap-build-plugin.git", + "svn_url": "https://github.com/jenkinsci/phonegap-build-plugin", + "homepage": null, + "size": 93, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Groovy", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 118919637, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTg5MTk2Mzc=", + "name": "cloudbees-devoptics-enabler-plugin", + "full_name": "jenkinsci/cloudbees-devoptics-enabler-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/cloudbees-devoptics-enabler-plugin", + "description": "This plugin makes CloudBees DevOptics components available in OSS installations of Jenkins.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/cloudbees-devoptics-enabler-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/cloudbees-devoptics-enabler-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/cloudbees-devoptics-enabler-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/cloudbees-devoptics-enabler-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/cloudbees-devoptics-enabler-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/cloudbees-devoptics-enabler-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/cloudbees-devoptics-enabler-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/cloudbees-devoptics-enabler-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/cloudbees-devoptics-enabler-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/cloudbees-devoptics-enabler-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/cloudbees-devoptics-enabler-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/cloudbees-devoptics-enabler-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/cloudbees-devoptics-enabler-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/cloudbees-devoptics-enabler-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/cloudbees-devoptics-enabler-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/cloudbees-devoptics-enabler-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/cloudbees-devoptics-enabler-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/cloudbees-devoptics-enabler-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/cloudbees-devoptics-enabler-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/cloudbees-devoptics-enabler-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/cloudbees-devoptics-enabler-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/cloudbees-devoptics-enabler-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/cloudbees-devoptics-enabler-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/cloudbees-devoptics-enabler-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/cloudbees-devoptics-enabler-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/cloudbees-devoptics-enabler-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/cloudbees-devoptics-enabler-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/cloudbees-devoptics-enabler-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/cloudbees-devoptics-enabler-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/cloudbees-devoptics-enabler-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/cloudbees-devoptics-enabler-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/cloudbees-devoptics-enabler-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/cloudbees-devoptics-enabler-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/cloudbees-devoptics-enabler-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/cloudbees-devoptics-enabler-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/cloudbees-devoptics-enabler-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/cloudbees-devoptics-enabler-plugin/deployments", + "created_at": "2018-01-25T14:00:16Z", + "updated_at": "2018-12-04T15:02:56Z", + "pushed_at": "2018-12-04T15:02:54Z", + "git_url": "git://github.com/jenkinsci/cloudbees-devoptics-enabler-plugin.git", + "ssh_url": "git@github.com:jenkinsci/cloudbees-devoptics-enabler-plugin.git", + "clone_url": "https://github.com/jenkinsci/cloudbees-devoptics-enabler-plugin.git", + "svn_url": "https://github.com/jenkinsci/cloudbees-devoptics-enabler-plugin", + "homepage": "", + "size": 21, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 3, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 119451290, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTk0NTEyOTA=", + "name": "service-now-plugin", + "full_name": "jenkinsci/service-now-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/service-now-plugin", + "description": "Build Jenkins workflow steps for the service-now API", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/service-now-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/service-now-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/service-now-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/service-now-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/service-now-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/service-now-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/service-now-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/service-now-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/service-now-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/service-now-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/service-now-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/service-now-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/service-now-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/service-now-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/service-now-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/service-now-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/service-now-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/service-now-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/service-now-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/service-now-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/service-now-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/service-now-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/service-now-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/service-now-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/service-now-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/service-now-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/service-now-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/service-now-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/service-now-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/service-now-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/service-now-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/service-now-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/service-now-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/service-now-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/service-now-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/service-now-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/service-now-plugin/deployments", + "created_at": "2018-01-29T22:40:15Z", + "updated_at": "2019-08-02T13:37:55Z", + "pushed_at": "2019-07-05T20:44:50Z", + "git_url": "git://github.com/jenkinsci/service-now-plugin.git", + "ssh_url": "git@github.com:jenkinsci/service-now-plugin.git", + "clone_url": "https://github.com/jenkinsci/service-now-plugin.git", + "svn_url": "https://github.com/jenkinsci/service-now-plugin", + "homepage": "", + "size": 98, + "stargazers_count": 14, + "watchers_count": 14, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 19, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 19, + "open_issues": 2, + "watchers": 14, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 119709969, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTk3MDk5Njk=", + "name": "jira-authenticator-plugin", + "full_name": "jenkinsci/jira-authenticator-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jira-authenticator-plugin", + "description": "This will be a jenkins plugin to authenticate users against the REST api of JIRA. Compared to the \"Crowd\" plugin this has the advantage that there is no configuration in JIRA in necessary. ", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/jira-authenticator-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/jira-authenticator-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jira-authenticator-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jira-authenticator-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jira-authenticator-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jira-authenticator-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jira-authenticator-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jira-authenticator-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jira-authenticator-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jira-authenticator-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jira-authenticator-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jira-authenticator-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jira-authenticator-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jira-authenticator-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jira-authenticator-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jira-authenticator-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jira-authenticator-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jira-authenticator-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jira-authenticator-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jira-authenticator-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jira-authenticator-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jira-authenticator-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jira-authenticator-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jira-authenticator-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jira-authenticator-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jira-authenticator-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jira-authenticator-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jira-authenticator-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jira-authenticator-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jira-authenticator-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jira-authenticator-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jira-authenticator-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jira-authenticator-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jira-authenticator-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jira-authenticator-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jira-authenticator-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jira-authenticator-plugin/deployments", + "created_at": "2018-01-31T16:04:37Z", + "updated_at": "2018-01-31T16:04:48Z", + "pushed_at": "2018-02-14T13:38:17Z", + "git_url": "git://github.com/jenkinsci/jira-authenticator-plugin.git", + "ssh_url": "git@github.com:jenkinsci/jira-authenticator-plugin.git", + "clone_url": "https://github.com/jenkinsci/jira-authenticator-plugin.git", + "svn_url": "https://github.com/jenkinsci/jira-authenticator-plugin", + "homepage": "", + "size": 58, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 119710437, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTk3MTA0Mzc=", + "name": "teststudio-plugin", + "full_name": "jenkinsci/teststudio-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/teststudio-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/teststudio-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/teststudio-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/teststudio-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/teststudio-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/teststudio-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/teststudio-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/teststudio-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/teststudio-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/teststudio-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/teststudio-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/teststudio-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/teststudio-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/teststudio-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/teststudio-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/teststudio-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/teststudio-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/teststudio-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/teststudio-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/teststudio-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/teststudio-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/teststudio-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/teststudio-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/teststudio-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/teststudio-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/teststudio-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/teststudio-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/teststudio-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/teststudio-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/teststudio-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/teststudio-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/teststudio-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/teststudio-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/teststudio-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/teststudio-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/teststudio-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/teststudio-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/teststudio-plugin/deployments", + "created_at": "2018-01-31T16:08:16Z", + "updated_at": "2018-01-31T16:08:26Z", + "pushed_at": "2018-02-04T06:52:08Z", + "git_url": "git://github.com/jenkinsci/teststudio-plugin.git", + "ssh_url": "git@github.com:jenkinsci/teststudio-plugin.git", + "clone_url": "https://github.com/jenkinsci/teststudio-plugin.git", + "svn_url": "https://github.com/jenkinsci/teststudio-plugin", + "homepage": null, + "size": 27, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 119774042, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTk3NzQwNDI=", + "name": "xml-job-to-job-dsl-plugin", + "full_name": "jenkinsci/xml-job-to-job-dsl-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/xml-job-to-job-dsl-plugin", + "description": "Creates Job DSL scripts from Job XML", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/xml-job-to-job-dsl-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/xml-job-to-job-dsl-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/xml-job-to-job-dsl-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/xml-job-to-job-dsl-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/xml-job-to-job-dsl-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/xml-job-to-job-dsl-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/xml-job-to-job-dsl-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/xml-job-to-job-dsl-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/xml-job-to-job-dsl-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/xml-job-to-job-dsl-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/xml-job-to-job-dsl-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/xml-job-to-job-dsl-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/xml-job-to-job-dsl-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/xml-job-to-job-dsl-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/xml-job-to-job-dsl-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/xml-job-to-job-dsl-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/xml-job-to-job-dsl-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/xml-job-to-job-dsl-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/xml-job-to-job-dsl-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/xml-job-to-job-dsl-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/xml-job-to-job-dsl-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/xml-job-to-job-dsl-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/xml-job-to-job-dsl-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/xml-job-to-job-dsl-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/xml-job-to-job-dsl-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/xml-job-to-job-dsl-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/xml-job-to-job-dsl-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/xml-job-to-job-dsl-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/xml-job-to-job-dsl-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/xml-job-to-job-dsl-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/xml-job-to-job-dsl-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/xml-job-to-job-dsl-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/xml-job-to-job-dsl-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/xml-job-to-job-dsl-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/xml-job-to-job-dsl-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/xml-job-to-job-dsl-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/xml-job-to-job-dsl-plugin/deployments", + "created_at": "2018-02-01T02:53:01Z", + "updated_at": "2019-10-03T07:33:15Z", + "pushed_at": "2018-06-28T01:43:48Z", + "git_url": "git://github.com/jenkinsci/xml-job-to-job-dsl-plugin.git", + "ssh_url": "git@github.com:jenkinsci/xml-job-to-job-dsl-plugin.git", + "clone_url": "https://github.com/jenkinsci/xml-job-to-job-dsl-plugin.git", + "svn_url": "https://github.com/jenkinsci/xml-job-to-job-dsl-plugin", + "homepage": null, + "size": 211, + "stargazers_count": 13, + "watchers_count": 13, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 7, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "gpl-3.0", + "name": "GNU General Public License v3.0", + "spdx_id": "GPL-3.0", + "url": "https://api.github.com/licenses/gpl-3.0", + "node_id": "MDc6TGljZW5zZTk=" + }, + "forks": 7, + "open_issues": 0, + "watchers": 13, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 119775438, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTk3NzU0Mzg=", + "name": "teststudiomobiletesting-plugin", + "full_name": "jenkinsci/teststudiomobiletesting-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/teststudiomobiletesting-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/teststudiomobiletesting-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/teststudiomobiletesting-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/teststudiomobiletesting-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/teststudiomobiletesting-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/teststudiomobiletesting-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/teststudiomobiletesting-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/teststudiomobiletesting-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/teststudiomobiletesting-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/teststudiomobiletesting-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/teststudiomobiletesting-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/teststudiomobiletesting-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/teststudiomobiletesting-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/teststudiomobiletesting-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/teststudiomobiletesting-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/teststudiomobiletesting-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/teststudiomobiletesting-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/teststudiomobiletesting-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/teststudiomobiletesting-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/teststudiomobiletesting-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/teststudiomobiletesting-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/teststudiomobiletesting-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/teststudiomobiletesting-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/teststudiomobiletesting-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/teststudiomobiletesting-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/teststudiomobiletesting-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/teststudiomobiletesting-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/teststudiomobiletesting-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/teststudiomobiletesting-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/teststudiomobiletesting-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/teststudiomobiletesting-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/teststudiomobiletesting-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/teststudiomobiletesting-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/teststudiomobiletesting-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/teststudiomobiletesting-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/teststudiomobiletesting-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/teststudiomobiletesting-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/teststudiomobiletesting-plugin/deployments", + "created_at": "2018-02-01T03:06:23Z", + "updated_at": "2018-02-04T13:01:04Z", + "pushed_at": "2018-02-05T09:26:11Z", + "git_url": "git://github.com/jenkinsci/teststudiomobiletesting-plugin.git", + "ssh_url": "git@github.com:jenkinsci/teststudiomobiletesting-plugin.git", + "clone_url": "https://github.com/jenkinsci/teststudiomobiletesting-plugin.git", + "svn_url": "https://github.com/jenkinsci/teststudiomobiletesting-plugin", + "homepage": null, + "size": 18, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 119775479, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTk3NzU0Nzk=", + "name": "teststudioapitesting-plugin", + "full_name": "jenkinsci/teststudioapitesting-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/teststudioapitesting-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/teststudioapitesting-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/teststudioapitesting-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/teststudioapitesting-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/teststudioapitesting-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/teststudioapitesting-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/teststudioapitesting-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/teststudioapitesting-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/teststudioapitesting-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/teststudioapitesting-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/teststudioapitesting-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/teststudioapitesting-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/teststudioapitesting-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/teststudioapitesting-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/teststudioapitesting-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/teststudioapitesting-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/teststudioapitesting-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/teststudioapitesting-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/teststudioapitesting-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/teststudioapitesting-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/teststudioapitesting-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/teststudioapitesting-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/teststudioapitesting-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/teststudioapitesting-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/teststudioapitesting-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/teststudioapitesting-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/teststudioapitesting-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/teststudioapitesting-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/teststudioapitesting-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/teststudioapitesting-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/teststudioapitesting-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/teststudioapitesting-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/teststudioapitesting-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/teststudioapitesting-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/teststudioapitesting-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/teststudioapitesting-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/teststudioapitesting-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/teststudioapitesting-plugin/deployments", + "created_at": "2018-02-01T03:06:49Z", + "updated_at": "2018-02-01T03:06:57Z", + "pushed_at": "2018-02-04T13:35:48Z", + "git_url": "git://github.com/jenkinsci/teststudioapitesting-plugin.git", + "ssh_url": "git@github.com:jenkinsci/teststudioapitesting-plugin.git", + "clone_url": "https://github.com/jenkinsci/teststudioapitesting-plugin.git", + "svn_url": "https://github.com/jenkinsci/teststudioapitesting-plugin", + "homepage": null, + "size": 20, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 120001409, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjAwMDE0MDk=", + "name": "arachni-scanner-plugin", + "full_name": "jenkinsci/arachni-scanner-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/arachni-scanner-plugin", + "description": "Jenkins plugin for the Arachni Security Scanner.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/arachni-scanner-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/arachni-scanner-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/arachni-scanner-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/arachni-scanner-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/arachni-scanner-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/arachni-scanner-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/arachni-scanner-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/arachni-scanner-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/arachni-scanner-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/arachni-scanner-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/arachni-scanner-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/arachni-scanner-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/arachni-scanner-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/arachni-scanner-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/arachni-scanner-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/arachni-scanner-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/arachni-scanner-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/arachni-scanner-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/arachni-scanner-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/arachni-scanner-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/arachni-scanner-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/arachni-scanner-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/arachni-scanner-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/arachni-scanner-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/arachni-scanner-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/arachni-scanner-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/arachni-scanner-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/arachni-scanner-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/arachni-scanner-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/arachni-scanner-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/arachni-scanner-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/arachni-scanner-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/arachni-scanner-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/arachni-scanner-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/arachni-scanner-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/arachni-scanner-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/arachni-scanner-plugin/deployments", + "created_at": "2018-02-02T15:59:02Z", + "updated_at": "2019-03-03T22:02:32Z", + "pushed_at": "2018-09-19T19:06:06Z", + "git_url": "git://github.com/jenkinsci/arachni-scanner-plugin.git", + "ssh_url": "git@github.com:jenkinsci/arachni-scanner-plugin.git", + "clone_url": "https://github.com/jenkinsci/arachni-scanner-plugin.git", + "svn_url": "https://github.com/jenkinsci/arachni-scanner-plugin", + "homepage": "", + "size": 60, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/__files/organizations_107424_repos-6f8a70ef-2168-4fad-8f28-d1ad0584525d.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/__files/organizations_107424_repos-6f8a70ef-2168-4fad-8f28-d1ad0584525d.json new file mode 100644 index 0000000000..57ca28e79f --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/__files/organizations_107424_repos-6f8a70ef-2168-4fad-8f28-d1ad0584525d.json @@ -0,0 +1,10358 @@ +[ + { + "id": 145005943, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDUwMDU5NDM=", + "name": "synopsys-coverity-plugin", + "full_name": "jenkinsci/synopsys-coverity-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/synopsys-coverity-plugin", + "description": "Coverity plugin for Jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/synopsys-coverity-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/synopsys-coverity-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/synopsys-coverity-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/synopsys-coverity-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/synopsys-coverity-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/synopsys-coverity-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/synopsys-coverity-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/synopsys-coverity-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/synopsys-coverity-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/synopsys-coverity-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/synopsys-coverity-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/synopsys-coverity-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/synopsys-coverity-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/synopsys-coverity-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/synopsys-coverity-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/synopsys-coverity-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/synopsys-coverity-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/synopsys-coverity-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/synopsys-coverity-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/synopsys-coverity-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/synopsys-coverity-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/synopsys-coverity-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/synopsys-coverity-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/synopsys-coverity-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/synopsys-coverity-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/synopsys-coverity-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/synopsys-coverity-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/synopsys-coverity-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/synopsys-coverity-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/synopsys-coverity-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/synopsys-coverity-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/synopsys-coverity-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/synopsys-coverity-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/synopsys-coverity-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/synopsys-coverity-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/synopsys-coverity-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/synopsys-coverity-plugin/deployments", + "created_at": "2018-08-16T15:22:04Z", + "updated_at": "2019-10-16T17:58:35Z", + "pushed_at": "2019-10-21T16:07:33Z", + "git_url": "git://github.com/jenkinsci/synopsys-coverity-plugin.git", + "ssh_url": "git@github.com:jenkinsci/synopsys-coverity-plugin.git", + "clone_url": "https://github.com/jenkinsci/synopsys-coverity-plugin.git", + "svn_url": "https://github.com/jenkinsci/synopsys-coverity-plugin", + "homepage": null, + "size": 688, + "stargazers_count": 7, + "watchers_count": 7, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 5, + "open_issues": 1, + "watchers": 7, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 145706957, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDU3MDY5NTc=", + "name": "plasticscm-mergebot-plugin", + "full_name": "jenkinsci/plasticscm-mergebot-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/plasticscm-mergebot-plugin", + "description": "Lightweight Plastic SCM plugin conceived to interact with our mergebot feature.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/plasticscm-mergebot-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/plasticscm-mergebot-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/plasticscm-mergebot-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/plasticscm-mergebot-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/plasticscm-mergebot-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/plasticscm-mergebot-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/plasticscm-mergebot-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/plasticscm-mergebot-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/plasticscm-mergebot-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/plasticscm-mergebot-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/plasticscm-mergebot-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/plasticscm-mergebot-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/plasticscm-mergebot-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/plasticscm-mergebot-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/plasticscm-mergebot-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/plasticscm-mergebot-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/plasticscm-mergebot-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/plasticscm-mergebot-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/plasticscm-mergebot-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/plasticscm-mergebot-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/plasticscm-mergebot-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/plasticscm-mergebot-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/plasticscm-mergebot-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/plasticscm-mergebot-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/plasticscm-mergebot-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/plasticscm-mergebot-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/plasticscm-mergebot-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/plasticscm-mergebot-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/plasticscm-mergebot-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/plasticscm-mergebot-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/plasticscm-mergebot-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/plasticscm-mergebot-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/plasticscm-mergebot-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/plasticscm-mergebot-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/plasticscm-mergebot-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/plasticscm-mergebot-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/plasticscm-mergebot-plugin/deployments", + "created_at": "2018-08-22T12:36:21Z", + "updated_at": "2019-10-22T14:34:01Z", + "pushed_at": "2019-10-22T14:33:59Z", + "git_url": "git://github.com/jenkinsci/plasticscm-mergebot-plugin.git", + "ssh_url": "git@github.com:jenkinsci/plasticscm-mergebot-plugin.git", + "clone_url": "https://github.com/jenkinsci/plasticscm-mergebot-plugin.git", + "svn_url": "https://github.com/jenkinsci/plasticscm-mergebot-plugin", + "homepage": "https://www.plasticscm.com", + "size": 37, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 145740754, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDU3NDA3NTQ=", + "name": "loadcomplete-plugin", + "full_name": "jenkinsci/loadcomplete-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/loadcomplete-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/loadcomplete-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/loadcomplete-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/loadcomplete-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/loadcomplete-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/loadcomplete-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/loadcomplete-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/loadcomplete-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/loadcomplete-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/loadcomplete-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/loadcomplete-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/loadcomplete-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/loadcomplete-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/loadcomplete-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/loadcomplete-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/loadcomplete-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/loadcomplete-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/loadcomplete-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/loadcomplete-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/loadcomplete-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/loadcomplete-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/loadcomplete-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/loadcomplete-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/loadcomplete-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/loadcomplete-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/loadcomplete-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/loadcomplete-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/loadcomplete-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/loadcomplete-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/loadcomplete-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/loadcomplete-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/loadcomplete-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/loadcomplete-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/loadcomplete-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/loadcomplete-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/loadcomplete-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/loadcomplete-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/loadcomplete-plugin/deployments", + "created_at": "2018-08-22T17:23:04Z", + "updated_at": "2018-09-13T12:47:03Z", + "pushed_at": "2018-09-13T12:47:01Z", + "git_url": "git://github.com/jenkinsci/loadcomplete-plugin.git", + "ssh_url": "git@github.com:jenkinsci/loadcomplete-plugin.git", + "clone_url": "https://github.com/jenkinsci/loadcomplete-plugin.git", + "svn_url": "https://github.com/jenkinsci/loadcomplete-plugin", + "homepage": null, + "size": 35, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 146606805, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDY2MDY4MDU=", + "name": "tanaguru-plugin", + "full_name": "jenkinsci/tanaguru-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/tanaguru-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/tanaguru-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/tanaguru-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/tanaguru-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/tanaguru-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/tanaguru-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/tanaguru-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/tanaguru-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/tanaguru-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/tanaguru-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/tanaguru-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/tanaguru-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/tanaguru-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/tanaguru-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/tanaguru-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/tanaguru-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/tanaguru-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/tanaguru-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/tanaguru-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/tanaguru-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/tanaguru-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/tanaguru-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/tanaguru-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/tanaguru-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/tanaguru-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/tanaguru-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/tanaguru-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/tanaguru-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/tanaguru-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/tanaguru-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/tanaguru-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/tanaguru-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/tanaguru-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/tanaguru-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/tanaguru-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/tanaguru-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/tanaguru-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/tanaguru-plugin/deployments", + "created_at": "2018-08-29T13:48:58Z", + "updated_at": "2018-12-21T14:39:43Z", + "pushed_at": "2018-12-21T14:39:42Z", + "git_url": "git://github.com/jenkinsci/tanaguru-plugin.git", + "ssh_url": "git@github.com:jenkinsci/tanaguru-plugin.git", + "clone_url": "https://github.com/jenkinsci/tanaguru-plugin.git", + "svn_url": "https://github.com/jenkinsci/tanaguru-plugin", + "homepage": null, + "size": 52, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 146748890, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDY3NDg4OTA=", + "name": "sysdig-secure-plugin", + "full_name": "jenkinsci/sysdig-secure-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/sysdig-secure-plugin", + "description": "Jenkins Plugin for Sysdig Secure", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/sysdig-secure-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/sysdig-secure-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/sysdig-secure-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/sysdig-secure-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/sysdig-secure-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/sysdig-secure-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/sysdig-secure-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/sysdig-secure-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/sysdig-secure-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/sysdig-secure-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/sysdig-secure-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/sysdig-secure-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/sysdig-secure-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/sysdig-secure-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/sysdig-secure-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/sysdig-secure-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/sysdig-secure-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/sysdig-secure-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/sysdig-secure-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/sysdig-secure-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/sysdig-secure-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/sysdig-secure-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/sysdig-secure-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/sysdig-secure-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/sysdig-secure-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/sysdig-secure-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/sysdig-secure-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/sysdig-secure-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/sysdig-secure-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/sysdig-secure-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/sysdig-secure-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/sysdig-secure-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/sysdig-secure-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/sysdig-secure-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/sysdig-secure-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/sysdig-secure-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/sysdig-secure-plugin/deployments", + "created_at": "2018-08-30T12:49:59Z", + "updated_at": "2019-01-18T00:56:21Z", + "pushed_at": "2019-01-18T00:56:19Z", + "git_url": "git://github.com/jenkinsci/sysdig-secure-plugin.git", + "ssh_url": "git@github.com:jenkinsci/sysdig-secure-plugin.git", + "clone_url": "https://github.com/jenkinsci/sysdig-secure-plugin.git", + "svn_url": "https://github.com/jenkinsci/sysdig-secure-plugin", + "homepage": null, + "size": 265, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 2, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 146842448, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDY4NDI0NDg=", + "name": "localization-zh-cn-plugin", + "full_name": "jenkinsci/localization-zh-cn-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/localization-zh-cn-plugin", + "description": "Chinese Localization for Jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/localization-zh-cn-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/localization-zh-cn-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/localization-zh-cn-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/localization-zh-cn-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/localization-zh-cn-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/localization-zh-cn-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/localization-zh-cn-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/localization-zh-cn-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/localization-zh-cn-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/localization-zh-cn-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/localization-zh-cn-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/localization-zh-cn-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/localization-zh-cn-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/localization-zh-cn-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/localization-zh-cn-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/localization-zh-cn-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/localization-zh-cn-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/localization-zh-cn-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/localization-zh-cn-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/localization-zh-cn-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/localization-zh-cn-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/localization-zh-cn-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/localization-zh-cn-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/localization-zh-cn-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/localization-zh-cn-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/localization-zh-cn-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/localization-zh-cn-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/localization-zh-cn-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/localization-zh-cn-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/localization-zh-cn-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/localization-zh-cn-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/localization-zh-cn-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/localization-zh-cn-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/localization-zh-cn-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/localization-zh-cn-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/localization-zh-cn-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/localization-zh-cn-plugin/deployments", + "created_at": "2018-08-31T04:43:54Z", + "updated_at": "2019-10-24T02:19:37Z", + "pushed_at": "2019-10-25T03:07:10Z", + "git_url": "git://github.com/jenkinsci/localization-zh-cn-plugin.git", + "ssh_url": "git@github.com:jenkinsci/localization-zh-cn-plugin.git", + "clone_url": "https://github.com/jenkinsci/localization-zh-cn-plugin.git", + "svn_url": "https://github.com/jenkinsci/localization-zh-cn-plugin", + "homepage": "https://jenkins.io/sigs/chinese-localization/", + "size": 579, + "stargazers_count": 27, + "watchers_count": 27, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 21, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 17, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 21, + "open_issues": 17, + "watchers": 27, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 147000752, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDcwMDA3NTI=", + "name": "alauda-devops-pipeline-plugin", + "full_name": "jenkinsci/alauda-devops-pipeline-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/alauda-devops-pipeline-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/alauda-devops-pipeline-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/alauda-devops-pipeline-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/alauda-devops-pipeline-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/alauda-devops-pipeline-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/alauda-devops-pipeline-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/alauda-devops-pipeline-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/alauda-devops-pipeline-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/alauda-devops-pipeline-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/alauda-devops-pipeline-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/alauda-devops-pipeline-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/alauda-devops-pipeline-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/alauda-devops-pipeline-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/alauda-devops-pipeline-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/alauda-devops-pipeline-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/alauda-devops-pipeline-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/alauda-devops-pipeline-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/alauda-devops-pipeline-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/alauda-devops-pipeline-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/alauda-devops-pipeline-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/alauda-devops-pipeline-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/alauda-devops-pipeline-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/alauda-devops-pipeline-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/alauda-devops-pipeline-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/alauda-devops-pipeline-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/alauda-devops-pipeline-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/alauda-devops-pipeline-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/alauda-devops-pipeline-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/alauda-devops-pipeline-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/alauda-devops-pipeline-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/alauda-devops-pipeline-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/alauda-devops-pipeline-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/alauda-devops-pipeline-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/alauda-devops-pipeline-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/alauda-devops-pipeline-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/alauda-devops-pipeline-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/alauda-devops-pipeline-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/alauda-devops-pipeline-plugin/deployments", + "created_at": "2018-09-01T13:30:30Z", + "updated_at": "2019-09-23T12:03:34Z", + "pushed_at": "2019-09-24T13:37:08Z", + "git_url": "git://github.com/jenkinsci/alauda-devops-pipeline-plugin.git", + "ssh_url": "git@github.com:jenkinsci/alauda-devops-pipeline-plugin.git", + "clone_url": "https://github.com/jenkinsci/alauda-devops-pipeline-plugin.git", + "svn_url": "https://github.com/jenkinsci/alauda-devops-pipeline-plugin", + "homepage": null, + "size": 1476, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Groovy", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 147373304, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDczNzMzMDQ=", + "name": "pipeline-giphy-api-plugin", + "full_name": "jenkinsci/pipeline-giphy-api-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pipeline-giphy-api-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/pipeline-giphy-api-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pipeline-giphy-api-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pipeline-giphy-api-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pipeline-giphy-api-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pipeline-giphy-api-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pipeline-giphy-api-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pipeline-giphy-api-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pipeline-giphy-api-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pipeline-giphy-api-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pipeline-giphy-api-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pipeline-giphy-api-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pipeline-giphy-api-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pipeline-giphy-api-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pipeline-giphy-api-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pipeline-giphy-api-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pipeline-giphy-api-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pipeline-giphy-api-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pipeline-giphy-api-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pipeline-giphy-api-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pipeline-giphy-api-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pipeline-giphy-api-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pipeline-giphy-api-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pipeline-giphy-api-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pipeline-giphy-api-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pipeline-giphy-api-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pipeline-giphy-api-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pipeline-giphy-api-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pipeline-giphy-api-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pipeline-giphy-api-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pipeline-giphy-api-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pipeline-giphy-api-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pipeline-giphy-api-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pipeline-giphy-api-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pipeline-giphy-api-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pipeline-giphy-api-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pipeline-giphy-api-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pipeline-giphy-api-plugin/deployments", + "created_at": "2018-09-04T16:09:52Z", + "updated_at": "2018-10-25T15:08:37Z", + "pushed_at": "2018-10-02T15:53:48Z", + "git_url": "git://github.com/jenkinsci/pipeline-giphy-api-plugin.git", + "ssh_url": "git@github.com:jenkinsci/pipeline-giphy-api-plugin.git", + "clone_url": "https://github.com/jenkinsci/pipeline-giphy-api-plugin.git", + "svn_url": "https://github.com/jenkinsci/pipeline-giphy-api-plugin", + "homepage": null, + "size": 191, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "gpl-3.0", + "name": "GNU General Public License v3.0", + "spdx_id": "GPL-3.0", + "url": "https://api.github.com/licenses/gpl-3.0", + "node_id": "MDc6TGljZW5zZTk=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 147374453, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDczNzQ0NTM=", + "name": "tricentis-ci-plugin", + "full_name": "jenkinsci/tricentis-ci-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/tricentis-ci-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/tricentis-ci-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/tricentis-ci-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/tricentis-ci-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/tricentis-ci-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/tricentis-ci-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/tricentis-ci-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/tricentis-ci-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/tricentis-ci-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/tricentis-ci-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/tricentis-ci-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/tricentis-ci-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/tricentis-ci-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/tricentis-ci-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/tricentis-ci-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/tricentis-ci-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/tricentis-ci-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/tricentis-ci-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/tricentis-ci-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/tricentis-ci-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/tricentis-ci-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/tricentis-ci-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/tricentis-ci-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/tricentis-ci-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/tricentis-ci-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/tricentis-ci-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/tricentis-ci-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/tricentis-ci-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/tricentis-ci-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/tricentis-ci-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/tricentis-ci-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/tricentis-ci-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/tricentis-ci-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/tricentis-ci-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/tricentis-ci-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/tricentis-ci-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/tricentis-ci-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/tricentis-ci-plugin/deployments", + "created_at": "2018-09-04T16:18:52Z", + "updated_at": "2019-10-05T17:19:04Z", + "pushed_at": "2019-08-13T10:48:41Z", + "git_url": "git://github.com/jenkinsci/tricentis-ci-plugin.git", + "ssh_url": "git@github.com:jenkinsci/tricentis-ci-plugin.git", + "clone_url": "https://github.com/jenkinsci/tricentis-ci-plugin.git", + "svn_url": "https://github.com/jenkinsci/tricentis-ci-plugin", + "homepage": null, + "size": 54, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 147513788, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDc1MTM3ODg=", + "name": "compuware-topaz-utilities-plugin", + "full_name": "jenkinsci/compuware-topaz-utilities-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/compuware-topaz-utilities-plugin", + "description": "Compuware Topaz ® utilities interface", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/compuware-topaz-utilities-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/compuware-topaz-utilities-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/compuware-topaz-utilities-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/compuware-topaz-utilities-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/compuware-topaz-utilities-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/compuware-topaz-utilities-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/compuware-topaz-utilities-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/compuware-topaz-utilities-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/compuware-topaz-utilities-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/compuware-topaz-utilities-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/compuware-topaz-utilities-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/compuware-topaz-utilities-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/compuware-topaz-utilities-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/compuware-topaz-utilities-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/compuware-topaz-utilities-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/compuware-topaz-utilities-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/compuware-topaz-utilities-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/compuware-topaz-utilities-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/compuware-topaz-utilities-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/compuware-topaz-utilities-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/compuware-topaz-utilities-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/compuware-topaz-utilities-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/compuware-topaz-utilities-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/compuware-topaz-utilities-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/compuware-topaz-utilities-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/compuware-topaz-utilities-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/compuware-topaz-utilities-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/compuware-topaz-utilities-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/compuware-topaz-utilities-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/compuware-topaz-utilities-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/compuware-topaz-utilities-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/compuware-topaz-utilities-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/compuware-topaz-utilities-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/compuware-topaz-utilities-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/compuware-topaz-utilities-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/compuware-topaz-utilities-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/compuware-topaz-utilities-plugin/deployments", + "created_at": "2018-09-05T12:24:55Z", + "updated_at": "2019-07-18T18:05:59Z", + "pushed_at": "2019-07-18T18:05:57Z", + "git_url": "git://github.com/jenkinsci/compuware-topaz-utilities-plugin.git", + "ssh_url": "git@github.com:jenkinsci/compuware-topaz-utilities-plugin.git", + "clone_url": "https://github.com/jenkinsci/compuware-topaz-utilities-plugin.git", + "svn_url": "https://github.com/jenkinsci/compuware-topaz-utilities-plugin", + "homepage": null, + "size": 85, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 147513969, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDc1MTM5Njk=", + "name": "analysis-model-api-plugin", + "full_name": "jenkinsci/analysis-model-api-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/analysis-model-api-plugin", + "description": "Jenkins API plug-in wrapper for the https://github.com/jenkinsci/analysis-model", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/analysis-model-api-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/analysis-model-api-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/analysis-model-api-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/analysis-model-api-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/analysis-model-api-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/analysis-model-api-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/analysis-model-api-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/analysis-model-api-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/analysis-model-api-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/analysis-model-api-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/analysis-model-api-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/analysis-model-api-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/analysis-model-api-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/analysis-model-api-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/analysis-model-api-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/analysis-model-api-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/analysis-model-api-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/analysis-model-api-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/analysis-model-api-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/analysis-model-api-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/analysis-model-api-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/analysis-model-api-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/analysis-model-api-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/analysis-model-api-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/analysis-model-api-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/analysis-model-api-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/analysis-model-api-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/analysis-model-api-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/analysis-model-api-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/analysis-model-api-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/analysis-model-api-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/analysis-model-api-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/analysis-model-api-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/analysis-model-api-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/analysis-model-api-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/analysis-model-api-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/analysis-model-api-plugin/deployments", + "created_at": "2018-09-05T12:26:22Z", + "updated_at": "2019-10-23T07:21:52Z", + "pushed_at": "2019-10-23T07:21:50Z", + "git_url": "git://github.com/jenkinsci/analysis-model-api-plugin.git", + "ssh_url": "git@github.com:jenkinsci/analysis-model-api-plugin.git", + "clone_url": "https://github.com/jenkinsci/analysis-model-api-plugin.git", + "svn_url": "https://github.com/jenkinsci/analysis-model-api-plugin", + "homepage": "", + "size": 57, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Shell", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 5, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 147610711, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDc2MTA3MTE=", + "name": "byteguard-build-actions-plugin", + "full_name": "jenkinsci/byteguard-build-actions-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/byteguard-build-actions-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/byteguard-build-actions-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/byteguard-build-actions-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/byteguard-build-actions-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/byteguard-build-actions-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/byteguard-build-actions-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/byteguard-build-actions-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/byteguard-build-actions-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/byteguard-build-actions-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/byteguard-build-actions-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/byteguard-build-actions-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/byteguard-build-actions-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/byteguard-build-actions-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/byteguard-build-actions-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/byteguard-build-actions-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/byteguard-build-actions-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/byteguard-build-actions-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/byteguard-build-actions-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/byteguard-build-actions-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/byteguard-build-actions-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/byteguard-build-actions-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/byteguard-build-actions-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/byteguard-build-actions-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/byteguard-build-actions-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/byteguard-build-actions-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/byteguard-build-actions-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/byteguard-build-actions-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/byteguard-build-actions-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/byteguard-build-actions-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/byteguard-build-actions-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/byteguard-build-actions-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/byteguard-build-actions-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/byteguard-build-actions-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/byteguard-build-actions-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/byteguard-build-actions-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/byteguard-build-actions-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/byteguard-build-actions-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/byteguard-build-actions-plugin/deployments", + "created_at": "2018-09-06T03:10:23Z", + "updated_at": "2018-09-08T22:48:48Z", + "pushed_at": "2018-09-08T22:48:47Z", + "git_url": "git://github.com/jenkinsci/byteguard-build-actions-plugin.git", + "ssh_url": "git@github.com:jenkinsci/byteguard-build-actions-plugin.git", + "clone_url": "https://github.com/jenkinsci/byteguard-build-actions-plugin.git", + "svn_url": "https://github.com/jenkinsci/byteguard-build-actions-plugin", + "homepage": null, + "size": 113, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 148203847, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDgyMDM4NDc=", + "name": "hangouts-chat-plugin", + "full_name": "jenkinsci/hangouts-chat-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/hangouts-chat-plugin", + "description": "A Jenkins plugin for sending failed build notifications to Google Hangouts Chat.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/hangouts-chat-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/hangouts-chat-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/hangouts-chat-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/hangouts-chat-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/hangouts-chat-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/hangouts-chat-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/hangouts-chat-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/hangouts-chat-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/hangouts-chat-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/hangouts-chat-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/hangouts-chat-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/hangouts-chat-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/hangouts-chat-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/hangouts-chat-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/hangouts-chat-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/hangouts-chat-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/hangouts-chat-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/hangouts-chat-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/hangouts-chat-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/hangouts-chat-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/hangouts-chat-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/hangouts-chat-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/hangouts-chat-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/hangouts-chat-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/hangouts-chat-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/hangouts-chat-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/hangouts-chat-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/hangouts-chat-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/hangouts-chat-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/hangouts-chat-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/hangouts-chat-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/hangouts-chat-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/hangouts-chat-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/hangouts-chat-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/hangouts-chat-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/hangouts-chat-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/hangouts-chat-plugin/deployments", + "created_at": "2018-09-10T18:53:19Z", + "updated_at": "2019-06-23T10:10:14Z", + "pushed_at": "2019-06-23T10:10:11Z", + "git_url": "git://github.com/jenkinsci/hangouts-chat-plugin.git", + "ssh_url": "git@github.com:jenkinsci/hangouts-chat-plugin.git", + "clone_url": "https://github.com/jenkinsci/hangouts-chat-plugin.git", + "svn_url": "https://github.com/jenkinsci/hangouts-chat-plugin", + "homepage": "", + "size": 515, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 148317164, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDgzMTcxNjQ=", + "name": "tm4j-automation-plugin", + "full_name": "jenkinsci/tm4j-automation-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/tm4j-automation-plugin", + "description": "A plugin for Jenkins built for integrating automated tests with Test Management for Jira (TM4J).", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/tm4j-automation-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/tm4j-automation-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/tm4j-automation-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/tm4j-automation-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/tm4j-automation-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/tm4j-automation-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/tm4j-automation-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/tm4j-automation-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/tm4j-automation-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/tm4j-automation-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/tm4j-automation-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/tm4j-automation-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/tm4j-automation-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/tm4j-automation-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/tm4j-automation-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/tm4j-automation-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/tm4j-automation-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/tm4j-automation-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/tm4j-automation-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/tm4j-automation-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/tm4j-automation-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/tm4j-automation-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/tm4j-automation-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/tm4j-automation-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/tm4j-automation-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/tm4j-automation-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/tm4j-automation-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/tm4j-automation-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/tm4j-automation-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/tm4j-automation-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/tm4j-automation-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/tm4j-automation-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/tm4j-automation-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/tm4j-automation-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/tm4j-automation-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/tm4j-automation-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/tm4j-automation-plugin/deployments", + "created_at": "2018-09-11T12:55:37Z", + "updated_at": "2019-10-18T08:57:51Z", + "pushed_at": "2019-06-10T09:37:21Z", + "git_url": "git://github.com/jenkinsci/tm4j-automation-plugin.git", + "ssh_url": "git@github.com:jenkinsci/tm4j-automation-plugin.git", + "clone_url": "https://github.com/jenkinsci/tm4j-automation-plugin.git", + "svn_url": "https://github.com/jenkinsci/tm4j-automation-plugin", + "homepage": "", + "size": 269, + "stargazers_count": 8, + "watchers_count": 8, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 4, + "open_issues": 0, + "watchers": 8, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 148317850, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDgzMTc4NTA=", + "name": "aws-sam-plugin", + "full_name": "jenkinsci/aws-sam-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/aws-sam-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/aws-sam-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/aws-sam-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/aws-sam-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/aws-sam-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/aws-sam-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/aws-sam-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/aws-sam-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/aws-sam-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/aws-sam-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/aws-sam-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/aws-sam-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/aws-sam-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/aws-sam-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/aws-sam-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/aws-sam-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/aws-sam-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/aws-sam-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/aws-sam-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/aws-sam-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/aws-sam-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/aws-sam-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/aws-sam-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/aws-sam-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/aws-sam-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/aws-sam-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/aws-sam-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/aws-sam-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/aws-sam-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/aws-sam-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/aws-sam-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/aws-sam-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/aws-sam-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/aws-sam-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/aws-sam-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/aws-sam-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/aws-sam-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/aws-sam-plugin/deployments", + "created_at": "2018-09-11T13:01:01Z", + "updated_at": "2019-02-25T11:06:46Z", + "pushed_at": "2018-09-28T14:08:27Z", + "git_url": "git://github.com/jenkinsci/aws-sam-plugin.git", + "ssh_url": "git@github.com:jenkinsci/aws-sam-plugin.git", + "clone_url": "https://github.com/jenkinsci/aws-sam-plugin.git", + "svn_url": "https://github.com/jenkinsci/aws-sam-plugin", + "homepage": null, + "size": 92, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 7, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 7, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 148783230, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDg3ODMyMzA=", + "name": "ux-widget-framework", + "full_name": "jenkinsci/ux-widget-framework", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/ux-widget-framework", + "description": "Blue Ocean Modular UX Widgets and associated tooling", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/ux-widget-framework", + "forks_url": "https://api.github.com/repos/jenkinsci/ux-widget-framework/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/ux-widget-framework/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/ux-widget-framework/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/ux-widget-framework/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/ux-widget-framework/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/ux-widget-framework/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/ux-widget-framework/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/ux-widget-framework/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/ux-widget-framework/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/ux-widget-framework/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/ux-widget-framework/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/ux-widget-framework/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/ux-widget-framework/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/ux-widget-framework/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/ux-widget-framework/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/ux-widget-framework/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/ux-widget-framework/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/ux-widget-framework/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/ux-widget-framework/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/ux-widget-framework/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/ux-widget-framework/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/ux-widget-framework/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/ux-widget-framework/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/ux-widget-framework/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/ux-widget-framework/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/ux-widget-framework/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/ux-widget-framework/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/ux-widget-framework/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/ux-widget-framework/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/ux-widget-framework/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/ux-widget-framework/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/ux-widget-framework/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/ux-widget-framework/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/ux-widget-framework/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/ux-widget-framework/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/ux-widget-framework/deployments", + "created_at": "2018-09-14T12:08:02Z", + "updated_at": "2019-08-26T00:50:51Z", + "pushed_at": "2019-08-26T00:50:48Z", + "git_url": "git://github.com/jenkinsci/ux-widget-framework.git", + "ssh_url": "git@github.com:jenkinsci/ux-widget-framework.git", + "clone_url": "https://github.com/jenkinsci/ux-widget-framework.git", + "svn_url": "https://github.com/jenkinsci/ux-widget-framework", + "homepage": "", + "size": 862, + "stargazers_count": 4, + "watchers_count": 4, + "language": "TypeScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 4, + "open_issues": 0, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 148783487, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDg3ODM0ODc=", + "name": "nowsecure-auto-security-test-plugin", + "full_name": "jenkinsci/nowsecure-auto-security-test-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/nowsecure-auto-security-test-plugin", + "description": "NowSecure Auto Security Test Jenkins Plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/nowsecure-auto-security-test-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/nowsecure-auto-security-test-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/nowsecure-auto-security-test-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/nowsecure-auto-security-test-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/nowsecure-auto-security-test-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/nowsecure-auto-security-test-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/nowsecure-auto-security-test-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/nowsecure-auto-security-test-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/nowsecure-auto-security-test-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/nowsecure-auto-security-test-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/nowsecure-auto-security-test-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/nowsecure-auto-security-test-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/nowsecure-auto-security-test-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/nowsecure-auto-security-test-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/nowsecure-auto-security-test-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/nowsecure-auto-security-test-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/nowsecure-auto-security-test-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/nowsecure-auto-security-test-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/nowsecure-auto-security-test-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/nowsecure-auto-security-test-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/nowsecure-auto-security-test-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/nowsecure-auto-security-test-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/nowsecure-auto-security-test-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/nowsecure-auto-security-test-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/nowsecure-auto-security-test-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/nowsecure-auto-security-test-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/nowsecure-auto-security-test-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/nowsecure-auto-security-test-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/nowsecure-auto-security-test-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/nowsecure-auto-security-test-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/nowsecure-auto-security-test-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/nowsecure-auto-security-test-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/nowsecure-auto-security-test-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/nowsecure-auto-security-test-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/nowsecure-auto-security-test-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/nowsecure-auto-security-test-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/nowsecure-auto-security-test-plugin/deployments", + "created_at": "2018-09-14T12:10:46Z", + "updated_at": "2019-10-25T19:37:30Z", + "pushed_at": "2019-10-25T19:37:28Z", + "git_url": "git://github.com/jenkinsci/nowsecure-auto-security-test-plugin.git", + "ssh_url": "git@github.com:jenkinsci/nowsecure-auto-security-test-plugin.git", + "clone_url": "https://github.com/jenkinsci/nowsecure-auto-security-test-plugin.git", + "svn_url": "https://github.com/jenkinsci/nowsecure-auto-security-test-plugin", + "homepage": null, + "size": 3248, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 148783689, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDg3ODM2ODk=", + "name": "azure-iot-edge-plugin", + "full_name": "jenkinsci/azure-iot-edge-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/azure-iot-edge-plugin", + "description": "A Jenkins plugin for continuous integration(build and push docker image) and continuous deployment(create Edge deployment on Azure)", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/azure-iot-edge-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/azure-iot-edge-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/azure-iot-edge-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/azure-iot-edge-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/azure-iot-edge-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/azure-iot-edge-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/azure-iot-edge-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/azure-iot-edge-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/azure-iot-edge-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/azure-iot-edge-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/azure-iot-edge-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/azure-iot-edge-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/azure-iot-edge-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/azure-iot-edge-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/azure-iot-edge-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/azure-iot-edge-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/azure-iot-edge-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/azure-iot-edge-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/azure-iot-edge-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/azure-iot-edge-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/azure-iot-edge-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/azure-iot-edge-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/azure-iot-edge-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/azure-iot-edge-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/azure-iot-edge-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/azure-iot-edge-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/azure-iot-edge-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/azure-iot-edge-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/azure-iot-edge-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/azure-iot-edge-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/azure-iot-edge-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/azure-iot-edge-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/azure-iot-edge-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/azure-iot-edge-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/azure-iot-edge-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/azure-iot-edge-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/azure-iot-edge-plugin/deployments", + "created_at": "2018-09-14T12:12:36Z", + "updated_at": "2019-07-24T11:15:38Z", + "pushed_at": "2019-07-24T11:15:36Z", + "git_url": "git://github.com/jenkinsci/azure-iot-edge-plugin.git", + "ssh_url": "git@github.com:jenkinsci/azure-iot-edge-plugin.git", + "clone_url": "https://github.com/jenkinsci/azure-iot-edge-plugin.git", + "svn_url": "https://github.com/jenkinsci/azure-iot-edge-plugin", + "homepage": null, + "size": 7132, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 1, + "open_issues": 0, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 149176070, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDkxNzYwNzA=", + "name": "dependency-track-plugin", + "full_name": "jenkinsci/dependency-track-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/dependency-track-plugin", + "description": "Master repository for the official Dependency-Track Jenkins plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/dependency-track-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/dependency-track-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/dependency-track-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/dependency-track-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/dependency-track-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/dependency-track-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/dependency-track-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/dependency-track-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/dependency-track-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/dependency-track-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/dependency-track-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/dependency-track-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/dependency-track-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/dependency-track-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/dependency-track-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/dependency-track-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/dependency-track-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/dependency-track-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/dependency-track-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/dependency-track-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/dependency-track-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/dependency-track-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/dependency-track-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/dependency-track-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/dependency-track-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/dependency-track-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/dependency-track-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/dependency-track-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/dependency-track-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/dependency-track-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/dependency-track-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/dependency-track-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/dependency-track-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/dependency-track-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/dependency-track-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/dependency-track-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/dependency-track-plugin/deployments", + "created_at": "2018-09-17T19:19:32Z", + "updated_at": "2019-10-09T00:48:18Z", + "pushed_at": "2019-10-09T00:48:16Z", + "git_url": "git://github.com/jenkinsci/dependency-track-plugin.git", + "ssh_url": "git@github.com:jenkinsci/dependency-track-plugin.git", + "clone_url": "https://github.com/jenkinsci/dependency-track-plugin.git", + "svn_url": "https://github.com/jenkinsci/dependency-track-plugin", + "homepage": null, + "size": 962, + "stargazers_count": 6, + "watchers_count": 6, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 12, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 12, + "open_issues": 2, + "watchers": 6, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 150448196, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTA0NDgxOTY=", + "name": "redmine-metrics-report-plugin", + "full_name": "jenkinsci/redmine-metrics-report-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/redmine-metrics-report-plugin", + "description": "A Jenkins plugin which generates Redmine reports", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/redmine-metrics-report-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/redmine-metrics-report-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/redmine-metrics-report-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/redmine-metrics-report-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/redmine-metrics-report-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/redmine-metrics-report-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/redmine-metrics-report-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/redmine-metrics-report-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/redmine-metrics-report-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/redmine-metrics-report-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/redmine-metrics-report-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/redmine-metrics-report-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/redmine-metrics-report-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/redmine-metrics-report-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/redmine-metrics-report-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/redmine-metrics-report-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/redmine-metrics-report-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/redmine-metrics-report-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/redmine-metrics-report-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/redmine-metrics-report-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/redmine-metrics-report-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/redmine-metrics-report-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/redmine-metrics-report-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/redmine-metrics-report-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/redmine-metrics-report-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/redmine-metrics-report-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/redmine-metrics-report-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/redmine-metrics-report-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/redmine-metrics-report-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/redmine-metrics-report-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/redmine-metrics-report-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/redmine-metrics-report-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/redmine-metrics-report-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/redmine-metrics-report-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/redmine-metrics-report-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/redmine-metrics-report-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/redmine-metrics-report-plugin/deployments", + "created_at": "2018-09-26T15:24:51Z", + "updated_at": "2018-11-23T20:45:36Z", + "pushed_at": "2018-10-31T03:25:05Z", + "git_url": "git://github.com/jenkinsci/redmine-metrics-report-plugin.git", + "ssh_url": "git@github.com:jenkinsci/redmine-metrics-report-plugin.git", + "clone_url": "https://github.com/jenkinsci/redmine-metrics-report-plugin.git", + "svn_url": "https://github.com/jenkinsci/redmine-metrics-report-plugin", + "homepage": "", + "size": 372, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": true, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 150762030, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTA3NjIwMzA=", + "name": "btc-embeddedplatform-plugin", + "full_name": "jenkinsci/btc-embeddedplatform-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/btc-embeddedplatform-plugin", + "description": "Groovy DSL based extension for Jenkins Pipeline. Provides BTC EmbeddedPlatform specific steps for automated testing on MIL, SIL and PIL level.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/btc-embeddedplatform-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/btc-embeddedplatform-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/btc-embeddedplatform-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/btc-embeddedplatform-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/btc-embeddedplatform-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/btc-embeddedplatform-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/btc-embeddedplatform-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/btc-embeddedplatform-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/btc-embeddedplatform-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/btc-embeddedplatform-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/btc-embeddedplatform-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/btc-embeddedplatform-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/btc-embeddedplatform-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/btc-embeddedplatform-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/btc-embeddedplatform-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/btc-embeddedplatform-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/btc-embeddedplatform-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/btc-embeddedplatform-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/btc-embeddedplatform-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/btc-embeddedplatform-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/btc-embeddedplatform-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/btc-embeddedplatform-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/btc-embeddedplatform-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/btc-embeddedplatform-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/btc-embeddedplatform-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/btc-embeddedplatform-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/btc-embeddedplatform-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/btc-embeddedplatform-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/btc-embeddedplatform-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/btc-embeddedplatform-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/btc-embeddedplatform-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/btc-embeddedplatform-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/btc-embeddedplatform-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/btc-embeddedplatform-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/btc-embeddedplatform-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/btc-embeddedplatform-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/btc-embeddedplatform-plugin/deployments", + "created_at": "2018-09-28T15:42:45Z", + "updated_at": "2019-10-21T08:29:09Z", + "pushed_at": "2019-10-21T08:29:07Z", + "git_url": "git://github.com/jenkinsci/btc-embeddedplatform-plugin.git", + "ssh_url": "git@github.com:jenkinsci/btc-embeddedplatform-plugin.git", + "clone_url": "https://github.com/jenkinsci/btc-embeddedplatform-plugin.git", + "svn_url": "https://github.com/jenkinsci/btc-embeddedplatform-plugin", + "homepage": null, + "size": 80, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Groovy", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 151083311, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTEwODMzMTE=", + "name": "gradle-repo-plugin", + "full_name": "jenkinsci/gradle-repo-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/gradle-repo-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/gradle-repo-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/gradle-repo-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/gradle-repo-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/gradle-repo-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/gradle-repo-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/gradle-repo-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/gradle-repo-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/gradle-repo-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/gradle-repo-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/gradle-repo-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/gradle-repo-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/gradle-repo-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/gradle-repo-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/gradle-repo-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/gradle-repo-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/gradle-repo-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/gradle-repo-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/gradle-repo-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/gradle-repo-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/gradle-repo-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/gradle-repo-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/gradle-repo-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/gradle-repo-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/gradle-repo-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/gradle-repo-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/gradle-repo-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/gradle-repo-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/gradle-repo-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/gradle-repo-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/gradle-repo-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/gradle-repo-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/gradle-repo-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/gradle-repo-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/gradle-repo-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/gradle-repo-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/gradle-repo-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/gradle-repo-plugin/deployments", + "created_at": "2018-10-01T12:17:56Z", + "updated_at": "2019-10-10T09:42:44Z", + "pushed_at": "2019-10-10T09:42:42Z", + "git_url": "git://github.com/jenkinsci/gradle-repo-plugin.git", + "ssh_url": "git@github.com:jenkinsci/gradle-repo-plugin.git", + "clone_url": "https://github.com/jenkinsci/gradle-repo-plugin.git", + "svn_url": "https://github.com/jenkinsci/gradle-repo-plugin", + "homepage": null, + "size": 50, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 152283856, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTIyODM4NTY=", + "name": "qualityclouds-plugin", + "full_name": "jenkinsci/qualityclouds-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/qualityclouds-plugin", + "description": "A plugin to allow running Quality Clouds scans as part of a Jenkins Build", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/qualityclouds-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/qualityclouds-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/qualityclouds-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/qualityclouds-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/qualityclouds-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/qualityclouds-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/qualityclouds-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/qualityclouds-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/qualityclouds-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/qualityclouds-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/qualityclouds-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/qualityclouds-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/qualityclouds-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/qualityclouds-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/qualityclouds-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/qualityclouds-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/qualityclouds-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/qualityclouds-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/qualityclouds-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/qualityclouds-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/qualityclouds-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/qualityclouds-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/qualityclouds-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/qualityclouds-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/qualityclouds-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/qualityclouds-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/qualityclouds-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/qualityclouds-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/qualityclouds-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/qualityclouds-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/qualityclouds-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/qualityclouds-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/qualityclouds-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/qualityclouds-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/qualityclouds-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/qualityclouds-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/qualityclouds-plugin/deployments", + "created_at": "2018-10-09T16:24:22Z", + "updated_at": "2018-10-11T11:55:50Z", + "pushed_at": "2018-10-11T11:55:48Z", + "git_url": "git://github.com/jenkinsci/qualityclouds-plugin.git", + "ssh_url": "git@github.com:jenkinsci/qualityclouds-plugin.git", + "clone_url": "https://github.com/jenkinsci/qualityclouds-plugin.git", + "svn_url": "https://github.com/jenkinsci/qualityclouds-plugin", + "homepage": null, + "size": 49, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 152284353, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTIyODQzNTM=", + "name": "hashicorp-vault-pipeline-plugin", + "full_name": "jenkinsci/hashicorp-vault-pipeline-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/hashicorp-vault-pipeline-plugin", + "description": "Jenkins plugin to allow for the use of Hashicorp's Vault from within a pipeline.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/hashicorp-vault-pipeline-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/hashicorp-vault-pipeline-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/hashicorp-vault-pipeline-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/hashicorp-vault-pipeline-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/hashicorp-vault-pipeline-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/hashicorp-vault-pipeline-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/hashicorp-vault-pipeline-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/hashicorp-vault-pipeline-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/hashicorp-vault-pipeline-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/hashicorp-vault-pipeline-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/hashicorp-vault-pipeline-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/hashicorp-vault-pipeline-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/hashicorp-vault-pipeline-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/hashicorp-vault-pipeline-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/hashicorp-vault-pipeline-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/hashicorp-vault-pipeline-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/hashicorp-vault-pipeline-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/hashicorp-vault-pipeline-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/hashicorp-vault-pipeline-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/hashicorp-vault-pipeline-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/hashicorp-vault-pipeline-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/hashicorp-vault-pipeline-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/hashicorp-vault-pipeline-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/hashicorp-vault-pipeline-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/hashicorp-vault-pipeline-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/hashicorp-vault-pipeline-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/hashicorp-vault-pipeline-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/hashicorp-vault-pipeline-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/hashicorp-vault-pipeline-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/hashicorp-vault-pipeline-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/hashicorp-vault-pipeline-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/hashicorp-vault-pipeline-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/hashicorp-vault-pipeline-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/hashicorp-vault-pipeline-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/hashicorp-vault-pipeline-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/hashicorp-vault-pipeline-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/hashicorp-vault-pipeline-plugin/deployments", + "created_at": "2018-10-09T16:28:02Z", + "updated_at": "2019-09-05T20:48:34Z", + "pushed_at": "2019-09-05T20:48:32Z", + "git_url": "git://github.com/jenkinsci/hashicorp-vault-pipeline-plugin.git", + "ssh_url": "git@github.com:jenkinsci/hashicorp-vault-pipeline-plugin.git", + "clone_url": "https://github.com/jenkinsci/hashicorp-vault-pipeline-plugin.git", + "svn_url": "https://github.com/jenkinsci/hashicorp-vault-pipeline-plugin", + "homepage": null, + "size": 15, + "stargazers_count": 16, + "watchers_count": 16, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 10, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 10, + "open_issues": 0, + "watchers": 16, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 152298570, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTIyOTg1NzA=", + "name": "eclipse-builder-plugin", + "full_name": "jenkinsci/eclipse-builder-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/eclipse-builder-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/eclipse-builder-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/eclipse-builder-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/eclipse-builder-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/eclipse-builder-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/eclipse-builder-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/eclipse-builder-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/eclipse-builder-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/eclipse-builder-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/eclipse-builder-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/eclipse-builder-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/eclipse-builder-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/eclipse-builder-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/eclipse-builder-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/eclipse-builder-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/eclipse-builder-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/eclipse-builder-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/eclipse-builder-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/eclipse-builder-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/eclipse-builder-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/eclipse-builder-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/eclipse-builder-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/eclipse-builder-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/eclipse-builder-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/eclipse-builder-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/eclipse-builder-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/eclipse-builder-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/eclipse-builder-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/eclipse-builder-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/eclipse-builder-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/eclipse-builder-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/eclipse-builder-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/eclipse-builder-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/eclipse-builder-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/eclipse-builder-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/eclipse-builder-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/eclipse-builder-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/eclipse-builder-plugin/deployments", + "created_at": "2018-10-09T18:09:40Z", + "updated_at": "2018-10-09T18:09:50Z", + "pushed_at": "2018-10-01T16:09:43Z", + "git_url": "git://github.com/jenkinsci/eclipse-builder-plugin.git", + "ssh_url": "git@github.com:jenkinsci/eclipse-builder-plugin.git", + "clone_url": "https://github.com/jenkinsci/eclipse-builder-plugin.git", + "svn_url": "https://github.com/jenkinsci/eclipse-builder-plugin", + "homepage": null, + "size": 13, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 152493173, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTI0OTMxNzM=", + "name": "huaweicloud-credentials-plugin", + "full_name": "jenkinsci/huaweicloud-credentials-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/huaweicloud-credentials-plugin", + "description": "huaweicloud-credentials-plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/huaweicloud-credentials-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/huaweicloud-credentials-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/huaweicloud-credentials-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/huaweicloud-credentials-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/huaweicloud-credentials-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/huaweicloud-credentials-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/huaweicloud-credentials-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/huaweicloud-credentials-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/huaweicloud-credentials-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/huaweicloud-credentials-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/huaweicloud-credentials-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/huaweicloud-credentials-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/huaweicloud-credentials-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/huaweicloud-credentials-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/huaweicloud-credentials-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/huaweicloud-credentials-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/huaweicloud-credentials-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/huaweicloud-credentials-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/huaweicloud-credentials-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/huaweicloud-credentials-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/huaweicloud-credentials-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/huaweicloud-credentials-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/huaweicloud-credentials-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/huaweicloud-credentials-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/huaweicloud-credentials-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/huaweicloud-credentials-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/huaweicloud-credentials-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/huaweicloud-credentials-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/huaweicloud-credentials-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/huaweicloud-credentials-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/huaweicloud-credentials-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/huaweicloud-credentials-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/huaweicloud-credentials-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/huaweicloud-credentials-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/huaweicloud-credentials-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/huaweicloud-credentials-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/huaweicloud-credentials-plugin/deployments", + "created_at": "2018-10-10T21:38:16Z", + "updated_at": "2019-06-12T01:58:33Z", + "pushed_at": "2018-10-11T01:39:30Z", + "git_url": "git://github.com/jenkinsci/huaweicloud-credentials-plugin.git", + "ssh_url": "git@github.com:jenkinsci/huaweicloud-credentials-plugin.git", + "clone_url": "https://github.com/jenkinsci/huaweicloud-credentials-plugin.git", + "svn_url": "https://github.com/jenkinsci/huaweicloud-credentials-plugin", + "homepage": null, + "size": 21, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 152626188, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTI2MjYxODg=", + "name": "micro-focus-performance-center-integration-plugin", + "full_name": "jenkinsci/micro-focus-performance-center-integration-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/micro-focus-performance-center-integration-plugin", + "description": "The plugin integrates Jenkins with Performance Center", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/micro-focus-performance-center-integration-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/micro-focus-performance-center-integration-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/micro-focus-performance-center-integration-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/micro-focus-performance-center-integration-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/micro-focus-performance-center-integration-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/micro-focus-performance-center-integration-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/micro-focus-performance-center-integration-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/micro-focus-performance-center-integration-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/micro-focus-performance-center-integration-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/micro-focus-performance-center-integration-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/micro-focus-performance-center-integration-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/micro-focus-performance-center-integration-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/micro-focus-performance-center-integration-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/micro-focus-performance-center-integration-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/micro-focus-performance-center-integration-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/micro-focus-performance-center-integration-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/micro-focus-performance-center-integration-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/micro-focus-performance-center-integration-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/micro-focus-performance-center-integration-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/micro-focus-performance-center-integration-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/micro-focus-performance-center-integration-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/micro-focus-performance-center-integration-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/micro-focus-performance-center-integration-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/micro-focus-performance-center-integration-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/micro-focus-performance-center-integration-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/micro-focus-performance-center-integration-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/micro-focus-performance-center-integration-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/micro-focus-performance-center-integration-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/micro-focus-performance-center-integration-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/micro-focus-performance-center-integration-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/micro-focus-performance-center-integration-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/micro-focus-performance-center-integration-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/micro-focus-performance-center-integration-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/micro-focus-performance-center-integration-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/micro-focus-performance-center-integration-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/micro-focus-performance-center-integration-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/micro-focus-performance-center-integration-plugin/deployments", + "created_at": "2018-10-11T16:57:24Z", + "updated_at": "2019-04-29T13:59:21Z", + "pushed_at": "2019-03-04T13:36:23Z", + "git_url": "git://github.com/jenkinsci/micro-focus-performance-center-integration-plugin.git", + "ssh_url": "git@github.com:jenkinsci/micro-focus-performance-center-integration-plugin.git", + "clone_url": "https://github.com/jenkinsci/micro-focus-performance-center-integration-plugin.git", + "svn_url": "https://github.com/jenkinsci/micro-focus-performance-center-integration-plugin", + "homepage": null, + "size": 467, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 4, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 152814648, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTI4MTQ2NDg=", + "name": "warnings-ng-plugin", + "full_name": "jenkinsci/warnings-ng-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/warnings-ng-plugin", + "description": "Jenkins Warnings Plugin - Next Generation ", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/warnings-ng-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/warnings-ng-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/warnings-ng-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/warnings-ng-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/warnings-ng-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/warnings-ng-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/warnings-ng-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/warnings-ng-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/warnings-ng-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/warnings-ng-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/warnings-ng-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/warnings-ng-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/warnings-ng-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/warnings-ng-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/warnings-ng-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/warnings-ng-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/warnings-ng-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/warnings-ng-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/warnings-ng-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/warnings-ng-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/warnings-ng-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/warnings-ng-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/warnings-ng-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/warnings-ng-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/warnings-ng-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/warnings-ng-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/warnings-ng-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/warnings-ng-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/warnings-ng-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/warnings-ng-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/warnings-ng-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/warnings-ng-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/warnings-ng-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/warnings-ng-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/warnings-ng-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/warnings-ng-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/warnings-ng-plugin/deployments", + "created_at": "2018-10-12T22:41:36Z", + "updated_at": "2019-10-25T21:47:55Z", + "pushed_at": "2019-10-25T21:47:53Z", + "git_url": "git://github.com/jenkinsci/warnings-ng-plugin.git", + "ssh_url": "git@github.com:jenkinsci/warnings-ng-plugin.git", + "clone_url": "https://github.com/jenkinsci/warnings-ng-plugin.git", + "svn_url": "https://github.com/jenkinsci/warnings-ng-plugin", + "homepage": null, + "size": 19675, + "stargazers_count": 142, + "watchers_count": 142, + "language": "Java", + "has_issues": false, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 102, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 5, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 102, + "open_issues": 5, + "watchers": 142, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 153216402, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTMyMTY0MDI=", + "name": "in-toto-plugin", + "full_name": "jenkinsci/in-toto-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/in-toto-plugin", + "description": "A Jenkins plugin to track steps and create in-toto link metadata", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/in-toto-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/in-toto-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/in-toto-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/in-toto-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/in-toto-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/in-toto-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/in-toto-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/in-toto-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/in-toto-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/in-toto-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/in-toto-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/in-toto-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/in-toto-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/in-toto-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/in-toto-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/in-toto-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/in-toto-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/in-toto-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/in-toto-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/in-toto-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/in-toto-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/in-toto-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/in-toto-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/in-toto-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/in-toto-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/in-toto-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/in-toto-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/in-toto-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/in-toto-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/in-toto-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/in-toto-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/in-toto-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/in-toto-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/in-toto-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/in-toto-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/in-toto-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/in-toto-plugin/deployments", + "created_at": "2018-10-16T03:21:20Z", + "updated_at": "2019-07-05T14:58:59Z", + "pushed_at": "2019-07-05T14:58:57Z", + "git_url": "git://github.com/jenkinsci/in-toto-plugin.git", + "ssh_url": "git@github.com:jenkinsci/in-toto-plugin.git", + "clone_url": "https://github.com/jenkinsci/in-toto-plugin.git", + "svn_url": "https://github.com/jenkinsci/in-toto-plugin", + "homepage": "", + "size": 90, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 6, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 153216531, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTMyMTY1MzE=", + "name": "zap-pipeline-plugin", + "full_name": "jenkinsci/zap-pipeline-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/zap-pipeline-plugin", + "description": "OWASP ZAP Jenkins Plugin for Pipeline builds", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/zap-pipeline-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/zap-pipeline-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/zap-pipeline-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/zap-pipeline-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/zap-pipeline-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/zap-pipeline-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/zap-pipeline-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/zap-pipeline-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/zap-pipeline-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/zap-pipeline-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/zap-pipeline-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/zap-pipeline-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/zap-pipeline-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/zap-pipeline-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/zap-pipeline-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/zap-pipeline-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/zap-pipeline-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/zap-pipeline-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/zap-pipeline-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/zap-pipeline-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/zap-pipeline-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/zap-pipeline-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/zap-pipeline-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/zap-pipeline-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/zap-pipeline-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/zap-pipeline-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/zap-pipeline-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/zap-pipeline-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/zap-pipeline-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/zap-pipeline-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/zap-pipeline-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/zap-pipeline-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/zap-pipeline-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/zap-pipeline-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/zap-pipeline-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/zap-pipeline-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/zap-pipeline-plugin/deployments", + "created_at": "2018-10-16T03:22:31Z", + "updated_at": "2019-10-11T10:15:07Z", + "pushed_at": "2019-10-11T10:15:00Z", + "git_url": "git://github.com/jenkinsci/zap-pipeline-plugin.git", + "ssh_url": "git@github.com:jenkinsci/zap-pipeline-plugin.git", + "clone_url": "https://github.com/jenkinsci/zap-pipeline-plugin.git", + "svn_url": "https://github.com/jenkinsci/zap-pipeline-plugin", + "homepage": "", + "size": 82857, + "stargazers_count": 8, + "watchers_count": 8, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 9, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 5, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 9, + "open_issues": 5, + "watchers": 8, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 153618701, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTM2MTg3MDE=", + "name": "huaweicloud-mastermonitor-plugin", + "full_name": "jenkinsci/huaweicloud-mastermonitor-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/huaweicloud-mastermonitor-plugin", + "description": "huaweicloud master monitor", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/huaweicloud-mastermonitor-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/huaweicloud-mastermonitor-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/huaweicloud-mastermonitor-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/huaweicloud-mastermonitor-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/huaweicloud-mastermonitor-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/huaweicloud-mastermonitor-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/huaweicloud-mastermonitor-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/huaweicloud-mastermonitor-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/huaweicloud-mastermonitor-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/huaweicloud-mastermonitor-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/huaweicloud-mastermonitor-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/huaweicloud-mastermonitor-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/huaweicloud-mastermonitor-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/huaweicloud-mastermonitor-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/huaweicloud-mastermonitor-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/huaweicloud-mastermonitor-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/huaweicloud-mastermonitor-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/huaweicloud-mastermonitor-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/huaweicloud-mastermonitor-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/huaweicloud-mastermonitor-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/huaweicloud-mastermonitor-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/huaweicloud-mastermonitor-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/huaweicloud-mastermonitor-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/huaweicloud-mastermonitor-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/huaweicloud-mastermonitor-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/huaweicloud-mastermonitor-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/huaweicloud-mastermonitor-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/huaweicloud-mastermonitor-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/huaweicloud-mastermonitor-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/huaweicloud-mastermonitor-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/huaweicloud-mastermonitor-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/huaweicloud-mastermonitor-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/huaweicloud-mastermonitor-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/huaweicloud-mastermonitor-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/huaweicloud-mastermonitor-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/huaweicloud-mastermonitor-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/huaweicloud-mastermonitor-plugin/deployments", + "created_at": "2018-10-18T12:16:57Z", + "updated_at": "2018-10-19T07:33:29Z", + "pushed_at": "2018-10-16T03:28:33Z", + "git_url": "git://github.com/jenkinsci/huaweicloud-mastermonitor-plugin.git", + "ssh_url": "git@github.com:jenkinsci/huaweicloud-mastermonitor-plugin.git", + "clone_url": "https://github.com/jenkinsci/huaweicloud-mastermonitor-plugin.git", + "svn_url": "https://github.com/jenkinsci/huaweicloud-mastermonitor-plugin", + "homepage": "", + "size": 44, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 153631325, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTM2MzEzMjU=", + "name": "linchpin-plugin", + "full_name": "jenkinsci/linchpin-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/linchpin-plugin", + "description": "Jenkins LinchPin plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/linchpin-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/linchpin-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/linchpin-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/linchpin-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/linchpin-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/linchpin-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/linchpin-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/linchpin-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/linchpin-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/linchpin-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/linchpin-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/linchpin-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/linchpin-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/linchpin-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/linchpin-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/linchpin-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/linchpin-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/linchpin-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/linchpin-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/linchpin-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/linchpin-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/linchpin-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/linchpin-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/linchpin-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/linchpin-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/linchpin-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/linchpin-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/linchpin-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/linchpin-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/linchpin-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/linchpin-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/linchpin-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/linchpin-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/linchpin-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/linchpin-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/linchpin-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/linchpin-plugin/deployments", + "created_at": "2018-10-18T13:48:58Z", + "updated_at": "2018-11-11T11:56:00Z", + "pushed_at": "2018-11-11T11:55:59Z", + "git_url": "git://github.com/jenkinsci/linchpin-plugin.git", + "ssh_url": "git@github.com:jenkinsci/linchpin-plugin.git", + "clone_url": "https://github.com/jenkinsci/linchpin-plugin.git", + "svn_url": "https://github.com/jenkinsci/linchpin-plugin", + "homepage": "", + "size": 204, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "develop", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 154161094, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTQxNjEwOTQ=", + "name": "jenkinsfile-runner-github-actions", + "full_name": "jenkinsci/jenkinsfile-runner-github-actions", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jenkinsfile-runner-github-actions", + "description": "Jenkins single-shot master GitHub Action POC", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner-github-actions", + "forks_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner-github-actions/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner-github-actions/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner-github-actions/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner-github-actions/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner-github-actions/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner-github-actions/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner-github-actions/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner-github-actions/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner-github-actions/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner-github-actions/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner-github-actions/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner-github-actions/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner-github-actions/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner-github-actions/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner-github-actions/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner-github-actions/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner-github-actions/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner-github-actions/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner-github-actions/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner-github-actions/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner-github-actions/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner-github-actions/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner-github-actions/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner-github-actions/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner-github-actions/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner-github-actions/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner-github-actions/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner-github-actions/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner-github-actions/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner-github-actions/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner-github-actions/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner-github-actions/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner-github-actions/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner-github-actions/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner-github-actions/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner-github-actions/deployments", + "created_at": "2018-10-22T14:45:06Z", + "updated_at": "2019-10-24T14:39:54Z", + "pushed_at": "2019-08-13T15:47:28Z", + "git_url": "git://github.com/jenkinsci/jenkinsfile-runner-github-actions.git", + "ssh_url": "git@github.com:jenkinsci/jenkinsfile-runner-github-actions.git", + "clone_url": "https://github.com/jenkinsci/jenkinsfile-runner-github-actions.git", + "svn_url": "https://github.com/jenkinsci/jenkinsfile-runner-github-actions", + "homepage": "https://github.com/features/actions", + "size": 44, + "stargazers_count": 93, + "watchers_count": 93, + "language": "Dockerfile", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 13, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 13, + "open_issues": 1, + "watchers": 93, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 154248509, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTQyNDg1MDk=", + "name": "es-extensions", + "full_name": "jenkinsci/es-extensions", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/es-extensions", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/es-extensions", + "forks_url": "https://api.github.com/repos/jenkinsci/es-extensions/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/es-extensions/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/es-extensions/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/es-extensions/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/es-extensions/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/es-extensions/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/es-extensions/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/es-extensions/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/es-extensions/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/es-extensions/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/es-extensions/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/es-extensions/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/es-extensions/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/es-extensions/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/es-extensions/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/es-extensions/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/es-extensions/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/es-extensions/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/es-extensions/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/es-extensions/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/es-extensions/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/es-extensions/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/es-extensions/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/es-extensions/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/es-extensions/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/es-extensions/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/es-extensions/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/es-extensions/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/es-extensions/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/es-extensions/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/es-extensions/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/es-extensions/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/es-extensions/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/es-extensions/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/es-extensions/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/es-extensions/deployments", + "created_at": "2018-10-23T02:23:33Z", + "updated_at": "2018-11-19T09:20:51Z", + "pushed_at": "2018-11-19T09:20:50Z", + "git_url": "git://github.com/jenkinsci/es-extensions.git", + "ssh_url": "git@github.com:jenkinsci/es-extensions.git", + "clone_url": "https://github.com/jenkinsci/es-extensions.git", + "svn_url": "https://github.com/jenkinsci/es-extensions", + "homepage": null, + "size": 1275, + "stargazers_count": 0, + "watchers_count": 0, + "language": "TypeScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 154329208, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTQzMjkyMDg=", + "name": "timemachine-plugin", + "full_name": "jenkinsci/timemachine-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/timemachine-plugin", + "description": "Plugin to track changes on jenkins configuration", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/timemachine-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/timemachine-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/timemachine-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/timemachine-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/timemachine-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/timemachine-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/timemachine-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/timemachine-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/timemachine-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/timemachine-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/timemachine-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/timemachine-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/timemachine-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/timemachine-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/timemachine-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/timemachine-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/timemachine-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/timemachine-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/timemachine-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/timemachine-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/timemachine-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/timemachine-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/timemachine-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/timemachine-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/timemachine-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/timemachine-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/timemachine-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/timemachine-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/timemachine-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/timemachine-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/timemachine-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/timemachine-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/timemachine-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/timemachine-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/timemachine-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/timemachine-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/timemachine-plugin/deployments", + "created_at": "2018-10-23T13:04:32Z", + "updated_at": "2019-05-14T17:41:41Z", + "pushed_at": "2019-06-01T18:01:57Z", + "git_url": "git://github.com/jenkinsci/timemachine-plugin.git", + "ssh_url": "git@github.com:jenkinsci/timemachine-plugin.git", + "clone_url": "https://github.com/jenkinsci/timemachine-plugin.git", + "svn_url": "https://github.com/jenkinsci/timemachine-plugin", + "homepage": null, + "size": 597, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 1, + "open_issues": 2, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 154334158, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTQzMzQxNTg=", + "name": "nutanix-calm-plugin", + "full_name": "jenkinsci/nutanix-calm-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/nutanix-calm-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/nutanix-calm-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/nutanix-calm-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/nutanix-calm-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/nutanix-calm-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/nutanix-calm-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/nutanix-calm-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/nutanix-calm-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/nutanix-calm-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/nutanix-calm-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/nutanix-calm-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/nutanix-calm-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/nutanix-calm-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/nutanix-calm-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/nutanix-calm-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/nutanix-calm-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/nutanix-calm-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/nutanix-calm-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/nutanix-calm-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/nutanix-calm-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/nutanix-calm-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/nutanix-calm-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/nutanix-calm-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/nutanix-calm-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/nutanix-calm-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/nutanix-calm-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/nutanix-calm-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/nutanix-calm-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/nutanix-calm-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/nutanix-calm-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/nutanix-calm-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/nutanix-calm-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/nutanix-calm-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/nutanix-calm-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/nutanix-calm-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/nutanix-calm-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/nutanix-calm-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/nutanix-calm-plugin/deployments", + "created_at": "2018-10-23T13:35:42Z", + "updated_at": "2019-01-04T07:17:26Z", + "pushed_at": "2019-01-04T07:17:24Z", + "git_url": "git://github.com/jenkinsci/nutanix-calm-plugin.git", + "ssh_url": "git@github.com:jenkinsci/nutanix-calm-plugin.git", + "clone_url": "https://github.com/jenkinsci/nutanix-calm-plugin.git", + "svn_url": "https://github.com/jenkinsci/nutanix-calm-plugin", + "homepage": null, + "size": 5698, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 154767435, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTQ3Njc0MzU=", + "name": "downstream-build-cache-plugin", + "full_name": "jenkinsci/downstream-build-cache-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/downstream-build-cache-plugin", + "description": "Maintains a cache of the upstream / downstream build relationships and makes it available for other plugins.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/downstream-build-cache-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/downstream-build-cache-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/downstream-build-cache-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/downstream-build-cache-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/downstream-build-cache-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/downstream-build-cache-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/downstream-build-cache-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/downstream-build-cache-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/downstream-build-cache-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/downstream-build-cache-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/downstream-build-cache-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/downstream-build-cache-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/downstream-build-cache-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/downstream-build-cache-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/downstream-build-cache-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/downstream-build-cache-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/downstream-build-cache-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/downstream-build-cache-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/downstream-build-cache-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/downstream-build-cache-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/downstream-build-cache-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/downstream-build-cache-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/downstream-build-cache-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/downstream-build-cache-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/downstream-build-cache-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/downstream-build-cache-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/downstream-build-cache-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/downstream-build-cache-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/downstream-build-cache-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/downstream-build-cache-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/downstream-build-cache-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/downstream-build-cache-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/downstream-build-cache-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/downstream-build-cache-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/downstream-build-cache-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/downstream-build-cache-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/downstream-build-cache-plugin/deployments", + "created_at": "2018-10-26T02:43:54Z", + "updated_at": "2019-10-25T11:10:27Z", + "pushed_at": "2019-10-25T11:10:25Z", + "git_url": "git://github.com/jenkinsci/downstream-build-cache-plugin.git", + "ssh_url": "git@github.com:jenkinsci/downstream-build-cache-plugin.git", + "clone_url": "https://github.com/jenkinsci/downstream-build-cache-plugin.git", + "svn_url": "https://github.com/jenkinsci/downstream-build-cache-plugin", + "homepage": null, + "size": 22, + "stargazers_count": 1, + "watchers_count": 1, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 3, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 154829133, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTQ4MjkxMzM=", + "name": "yet-another-build-visualizer-plugin", + "full_name": "jenkinsci/yet-another-build-visualizer-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/yet-another-build-visualizer-plugin", + "description": "A plugin that allows visualization of the build flow of upstream and downstream builds in Jenkins.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/yet-another-build-visualizer-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/yet-another-build-visualizer-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/yet-another-build-visualizer-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/yet-another-build-visualizer-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/yet-another-build-visualizer-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/yet-another-build-visualizer-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/yet-another-build-visualizer-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/yet-another-build-visualizer-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/yet-another-build-visualizer-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/yet-another-build-visualizer-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/yet-another-build-visualizer-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/yet-another-build-visualizer-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/yet-another-build-visualizer-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/yet-another-build-visualizer-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/yet-another-build-visualizer-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/yet-another-build-visualizer-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/yet-another-build-visualizer-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/yet-another-build-visualizer-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/yet-another-build-visualizer-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/yet-another-build-visualizer-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/yet-another-build-visualizer-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/yet-another-build-visualizer-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/yet-another-build-visualizer-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/yet-another-build-visualizer-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/yet-another-build-visualizer-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/yet-another-build-visualizer-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/yet-another-build-visualizer-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/yet-another-build-visualizer-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/yet-another-build-visualizer-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/yet-another-build-visualizer-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/yet-another-build-visualizer-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/yet-another-build-visualizer-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/yet-another-build-visualizer-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/yet-another-build-visualizer-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/yet-another-build-visualizer-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/yet-another-build-visualizer-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/yet-another-build-visualizer-plugin/deployments", + "created_at": "2018-10-26T12:12:40Z", + "updated_at": "2019-10-24T16:46:42Z", + "pushed_at": "2019-07-18T12:49:07Z", + "git_url": "git://github.com/jenkinsci/yet-another-build-visualizer-plugin.git", + "ssh_url": "git@github.com:jenkinsci/yet-another-build-visualizer-plugin.git", + "clone_url": "https://github.com/jenkinsci/yet-another-build-visualizer-plugin.git", + "svn_url": "https://github.com/jenkinsci/yet-another-build-visualizer-plugin", + "homepage": null, + "size": 305, + "stargazers_count": 15, + "watchers_count": 15, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 8, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 8, + "open_issues": 0, + "watchers": 15, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 154840122, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTQ4NDAxMjI=", + "name": "multibranch-job-tear-down-plugin", + "full_name": "jenkinsci/multibranch-job-tear-down-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/multibranch-job-tear-down-plugin", + "description": "Jenkins Plugin that executes a job after a pipeline branch is deleted", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/multibranch-job-tear-down-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/multibranch-job-tear-down-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/multibranch-job-tear-down-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/multibranch-job-tear-down-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/multibranch-job-tear-down-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/multibranch-job-tear-down-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/multibranch-job-tear-down-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/multibranch-job-tear-down-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/multibranch-job-tear-down-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/multibranch-job-tear-down-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/multibranch-job-tear-down-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/multibranch-job-tear-down-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/multibranch-job-tear-down-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/multibranch-job-tear-down-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/multibranch-job-tear-down-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/multibranch-job-tear-down-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/multibranch-job-tear-down-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/multibranch-job-tear-down-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/multibranch-job-tear-down-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/multibranch-job-tear-down-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/multibranch-job-tear-down-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/multibranch-job-tear-down-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/multibranch-job-tear-down-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/multibranch-job-tear-down-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/multibranch-job-tear-down-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/multibranch-job-tear-down-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/multibranch-job-tear-down-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/multibranch-job-tear-down-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/multibranch-job-tear-down-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/multibranch-job-tear-down-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/multibranch-job-tear-down-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/multibranch-job-tear-down-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/multibranch-job-tear-down-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/multibranch-job-tear-down-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/multibranch-job-tear-down-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/multibranch-job-tear-down-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/multibranch-job-tear-down-plugin/deployments", + "created_at": "2018-10-26T13:37:23Z", + "updated_at": "2019-06-28T18:37:07Z", + "pushed_at": "2018-12-13T22:27:33Z", + "git_url": "git://github.com/jenkinsci/multibranch-job-tear-down-plugin.git", + "ssh_url": "git@github.com:jenkinsci/multibranch-job-tear-down-plugin.git", + "clone_url": "https://github.com/jenkinsci/multibranch-job-tear-down-plugin.git", + "svn_url": "https://github.com/jenkinsci/multibranch-job-tear-down-plugin", + "homepage": null, + "size": 51, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 155251370, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTUyNTEzNzA=", + "name": "anonymous-uptime-check-plugin", + "full_name": "jenkinsci/anonymous-uptime-check-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/anonymous-uptime-check-plugin", + "description": "Simple plugin to expose uptime status to unauthenticated users", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/anonymous-uptime-check-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/anonymous-uptime-check-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/anonymous-uptime-check-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/anonymous-uptime-check-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/anonymous-uptime-check-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/anonymous-uptime-check-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/anonymous-uptime-check-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/anonymous-uptime-check-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/anonymous-uptime-check-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/anonymous-uptime-check-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/anonymous-uptime-check-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/anonymous-uptime-check-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/anonymous-uptime-check-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/anonymous-uptime-check-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/anonymous-uptime-check-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/anonymous-uptime-check-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/anonymous-uptime-check-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/anonymous-uptime-check-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/anonymous-uptime-check-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/anonymous-uptime-check-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/anonymous-uptime-check-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/anonymous-uptime-check-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/anonymous-uptime-check-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/anonymous-uptime-check-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/anonymous-uptime-check-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/anonymous-uptime-check-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/anonymous-uptime-check-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/anonymous-uptime-check-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/anonymous-uptime-check-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/anonymous-uptime-check-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/anonymous-uptime-check-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/anonymous-uptime-check-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/anonymous-uptime-check-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/anonymous-uptime-check-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/anonymous-uptime-check-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/anonymous-uptime-check-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/anonymous-uptime-check-plugin/deployments", + "created_at": "2018-10-29T17:16:33Z", + "updated_at": "2018-10-30T13:41:51Z", + "pushed_at": "2018-10-31T12:41:24Z", + "git_url": "git://github.com/jenkinsci/anonymous-uptime-check-plugin.git", + "ssh_url": "git@github.com:jenkinsci/anonymous-uptime-check-plugin.git", + "clone_url": "https://github.com/jenkinsci/anonymous-uptime-check-plugin.git", + "svn_url": "https://github.com/jenkinsci/anonymous-uptime-check-plugin", + "homepage": "", + "size": 10, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 155556125, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTU1NTYxMjU=", + "name": "extended-security-settings-plugin", + "full_name": "jenkinsci/extended-security-settings-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/extended-security-settings-plugin", + "description": "Jenkins plugin to configure additional security settings", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/extended-security-settings-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/extended-security-settings-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/extended-security-settings-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/extended-security-settings-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/extended-security-settings-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/extended-security-settings-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/extended-security-settings-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/extended-security-settings-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/extended-security-settings-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/extended-security-settings-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/extended-security-settings-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/extended-security-settings-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/extended-security-settings-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/extended-security-settings-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/extended-security-settings-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/extended-security-settings-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/extended-security-settings-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/extended-security-settings-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/extended-security-settings-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/extended-security-settings-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/extended-security-settings-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/extended-security-settings-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/extended-security-settings-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/extended-security-settings-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/extended-security-settings-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/extended-security-settings-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/extended-security-settings-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/extended-security-settings-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/extended-security-settings-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/extended-security-settings-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/extended-security-settings-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/extended-security-settings-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/extended-security-settings-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/extended-security-settings-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/extended-security-settings-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/extended-security-settings-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/extended-security-settings-plugin/deployments", + "created_at": "2018-10-31T12:46:00Z", + "updated_at": "2019-09-10T14:24:13Z", + "pushed_at": "2019-09-10T14:24:11Z", + "git_url": "git://github.com/jenkinsci/extended-security-settings-plugin.git", + "ssh_url": "git@github.com:jenkinsci/extended-security-settings-plugin.git", + "clone_url": "https://github.com/jenkinsci/extended-security-settings-plugin.git", + "svn_url": "https://github.com/jenkinsci/extended-security-settings-plugin", + "homepage": "https://plugins.jenkins.io/extended-security-settings", + "size": 126, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 2, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 155557363, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTU1NTczNjM=", + "name": "bitbucket-filter-project-trait-plugin", + "full_name": "jenkinsci/bitbucket-filter-project-trait-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/bitbucket-filter-project-trait-plugin", + "description": "Adds project filters to Bitbucket Branch Source plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/bitbucket-filter-project-trait-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/bitbucket-filter-project-trait-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/bitbucket-filter-project-trait-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/bitbucket-filter-project-trait-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/bitbucket-filter-project-trait-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/bitbucket-filter-project-trait-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/bitbucket-filter-project-trait-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/bitbucket-filter-project-trait-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/bitbucket-filter-project-trait-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/bitbucket-filter-project-trait-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/bitbucket-filter-project-trait-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/bitbucket-filter-project-trait-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/bitbucket-filter-project-trait-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/bitbucket-filter-project-trait-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/bitbucket-filter-project-trait-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/bitbucket-filter-project-trait-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/bitbucket-filter-project-trait-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/bitbucket-filter-project-trait-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/bitbucket-filter-project-trait-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/bitbucket-filter-project-trait-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/bitbucket-filter-project-trait-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/bitbucket-filter-project-trait-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/bitbucket-filter-project-trait-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/bitbucket-filter-project-trait-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/bitbucket-filter-project-trait-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/bitbucket-filter-project-trait-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/bitbucket-filter-project-trait-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/bitbucket-filter-project-trait-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/bitbucket-filter-project-trait-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/bitbucket-filter-project-trait-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/bitbucket-filter-project-trait-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/bitbucket-filter-project-trait-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/bitbucket-filter-project-trait-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/bitbucket-filter-project-trait-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/bitbucket-filter-project-trait-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/bitbucket-filter-project-trait-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/bitbucket-filter-project-trait-plugin/deployments", + "created_at": "2018-10-31T12:55:13Z", + "updated_at": "2019-04-15T12:41:06Z", + "pushed_at": "2018-11-05T22:19:33Z", + "git_url": "git://github.com/jenkinsci/bitbucket-filter-project-trait-plugin.git", + "ssh_url": "git@github.com:jenkinsci/bitbucket-filter-project-trait-plugin.git", + "clone_url": "https://github.com/jenkinsci/bitbucket-filter-project-trait-plugin.git", + "svn_url": "https://github.com/jenkinsci/bitbucket-filter-project-trait-plugin", + "homepage": null, + "size": 9, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 155742351, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTU3NDIzNTE=", + "name": "pipeline-snippetizer-plugin", + "full_name": "jenkinsci/pipeline-snippetizer-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pipeline-snippetizer-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/pipeline-snippetizer-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pipeline-snippetizer-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pipeline-snippetizer-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pipeline-snippetizer-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pipeline-snippetizer-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pipeline-snippetizer-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pipeline-snippetizer-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pipeline-snippetizer-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pipeline-snippetizer-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pipeline-snippetizer-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pipeline-snippetizer-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pipeline-snippetizer-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pipeline-snippetizer-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pipeline-snippetizer-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pipeline-snippetizer-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pipeline-snippetizer-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pipeline-snippetizer-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pipeline-snippetizer-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pipeline-snippetizer-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pipeline-snippetizer-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pipeline-snippetizer-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pipeline-snippetizer-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pipeline-snippetizer-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pipeline-snippetizer-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pipeline-snippetizer-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pipeline-snippetizer-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pipeline-snippetizer-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pipeline-snippetizer-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pipeline-snippetizer-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pipeline-snippetizer-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pipeline-snippetizer-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pipeline-snippetizer-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pipeline-snippetizer-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pipeline-snippetizer-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pipeline-snippetizer-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pipeline-snippetizer-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pipeline-snippetizer-plugin/deployments", + "created_at": "2018-11-01T16:17:13Z", + "updated_at": "2018-11-01T16:17:37Z", + "pushed_at": "2018-10-30T16:45:24Z", + "git_url": "git://github.com/jenkinsci/pipeline-snippetizer-plugin.git", + "ssh_url": "git@github.com:jenkinsci/pipeline-snippetizer-plugin.git", + "clone_url": "https://github.com/jenkinsci/pipeline-snippetizer-plugin.git", + "svn_url": "https://github.com/jenkinsci/pipeline-snippetizer-plugin", + "homepage": null, + "size": 45, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 156220527, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTYyMjA1Mjc=", + "name": "discord-notifier-plugin", + "full_name": "jenkinsci/discord-notifier-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/discord-notifier-plugin", + "description": "A post-build plugin that sends the build status to a Discord channel.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/discord-notifier-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/discord-notifier-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/discord-notifier-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/discord-notifier-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/discord-notifier-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/discord-notifier-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/discord-notifier-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/discord-notifier-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/discord-notifier-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/discord-notifier-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/discord-notifier-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/discord-notifier-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/discord-notifier-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/discord-notifier-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/discord-notifier-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/discord-notifier-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/discord-notifier-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/discord-notifier-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/discord-notifier-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/discord-notifier-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/discord-notifier-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/discord-notifier-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/discord-notifier-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/discord-notifier-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/discord-notifier-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/discord-notifier-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/discord-notifier-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/discord-notifier-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/discord-notifier-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/discord-notifier-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/discord-notifier-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/discord-notifier-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/discord-notifier-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/discord-notifier-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/discord-notifier-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/discord-notifier-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/discord-notifier-plugin/deployments", + "created_at": "2018-11-05T13:16:41Z", + "updated_at": "2019-10-20T20:51:15Z", + "pushed_at": "2019-10-20T20:51:13Z", + "git_url": "git://github.com/jenkinsci/discord-notifier-plugin.git", + "ssh_url": "git@github.com:jenkinsci/discord-notifier-plugin.git", + "clone_url": "https://github.com/jenkinsci/discord-notifier-plugin.git", + "svn_url": "https://github.com/jenkinsci/discord-notifier-plugin", + "homepage": null, + "size": 217, + "stargazers_count": 16, + "watchers_count": 16, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 5, + "open_issues": 3, + "watchers": 16, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 156573799, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTY1NzM3OTk=", + "name": "usemango-runner-plugin", + "full_name": "jenkinsci/usemango-runner-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/usemango-runner-plugin", + "description": "Plugin for Jenkins that simplifies running of useMango tests", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/usemango-runner-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/usemango-runner-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/usemango-runner-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/usemango-runner-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/usemango-runner-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/usemango-runner-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/usemango-runner-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/usemango-runner-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/usemango-runner-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/usemango-runner-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/usemango-runner-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/usemango-runner-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/usemango-runner-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/usemango-runner-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/usemango-runner-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/usemango-runner-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/usemango-runner-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/usemango-runner-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/usemango-runner-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/usemango-runner-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/usemango-runner-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/usemango-runner-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/usemango-runner-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/usemango-runner-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/usemango-runner-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/usemango-runner-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/usemango-runner-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/usemango-runner-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/usemango-runner-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/usemango-runner-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/usemango-runner-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/usemango-runner-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/usemango-runner-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/usemango-runner-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/usemango-runner-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/usemango-runner-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/usemango-runner-plugin/deployments", + "created_at": "2018-11-07T16:13:19Z", + "updated_at": "2019-02-28T10:41:53Z", + "pushed_at": "2019-02-28T10:41:52Z", + "git_url": "git://github.com/jenkinsci/usemango-runner-plugin.git", + "ssh_url": "git@github.com:jenkinsci/usemango-runner-plugin.git", + "clone_url": "https://github.com/jenkinsci/usemango-runner-plugin.git", + "svn_url": "https://github.com/jenkinsci/usemango-runner-plugin", + "homepage": null, + "size": 73, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 156695288, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTY2OTUyODg=", + "name": "tuleap-git-branch-source-plugin", + "full_name": "jenkinsci/tuleap-git-branch-source-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/tuleap-git-branch-source-plugin", + "description": "Jenkins plugin to automate job creation out of Tuleap git repositories", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/tuleap-git-branch-source-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/tuleap-git-branch-source-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/tuleap-git-branch-source-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/tuleap-git-branch-source-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/tuleap-git-branch-source-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/tuleap-git-branch-source-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/tuleap-git-branch-source-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/tuleap-git-branch-source-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/tuleap-git-branch-source-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/tuleap-git-branch-source-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/tuleap-git-branch-source-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/tuleap-git-branch-source-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/tuleap-git-branch-source-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/tuleap-git-branch-source-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/tuleap-git-branch-source-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/tuleap-git-branch-source-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/tuleap-git-branch-source-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/tuleap-git-branch-source-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/tuleap-git-branch-source-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/tuleap-git-branch-source-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/tuleap-git-branch-source-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/tuleap-git-branch-source-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/tuleap-git-branch-source-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/tuleap-git-branch-source-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/tuleap-git-branch-source-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/tuleap-git-branch-source-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/tuleap-git-branch-source-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/tuleap-git-branch-source-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/tuleap-git-branch-source-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/tuleap-git-branch-source-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/tuleap-git-branch-source-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/tuleap-git-branch-source-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/tuleap-git-branch-source-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/tuleap-git-branch-source-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/tuleap-git-branch-source-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/tuleap-git-branch-source-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/tuleap-git-branch-source-plugin/deployments", + "created_at": "2018-11-08T11:16:12Z", + "updated_at": "2019-06-14T15:01:31Z", + "pushed_at": "2019-08-23T06:42:26Z", + "git_url": "git://github.com/jenkinsci/tuleap-git-branch-source-plugin.git", + "ssh_url": "git@github.com:jenkinsci/tuleap-git-branch-source-plugin.git", + "clone_url": "https://github.com/jenkinsci/tuleap-git-branch-source-plugin.git", + "svn_url": "https://github.com/jenkinsci/tuleap-git-branch-source-plugin", + "homepage": null, + "size": 239, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 2, + "open_issues": 1, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 156695734, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTY2OTU3MzQ=", + "name": "lib-async-http-client", + "full_name": "jenkinsci/lib-async-http-client", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/lib-async-http-client", + "description": "Asynchronous Http and WebSocket Client library for Java ", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/lib-async-http-client", + "forks_url": "https://api.github.com/repos/jenkinsci/lib-async-http-client/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/lib-async-http-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/lib-async-http-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/lib-async-http-client/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/lib-async-http-client/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/lib-async-http-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/lib-async-http-client/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/lib-async-http-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/lib-async-http-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/lib-async-http-client/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/lib-async-http-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/lib-async-http-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/lib-async-http-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/lib-async-http-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/lib-async-http-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/lib-async-http-client/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/lib-async-http-client/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/lib-async-http-client/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/lib-async-http-client/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/lib-async-http-client/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/lib-async-http-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/lib-async-http-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/lib-async-http-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/lib-async-http-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/lib-async-http-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/lib-async-http-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/lib-async-http-client/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/lib-async-http-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/lib-async-http-client/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/lib-async-http-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/lib-async-http-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/lib-async-http-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/lib-async-http-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/lib-async-http-client/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/lib-async-http-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/lib-async-http-client/deployments", + "created_at": "2018-11-08T11:20:03Z", + "updated_at": "2018-11-20T15:26:28Z", + "pushed_at": "2018-11-22T09:21:24Z", + "git_url": "git://github.com/jenkinsci/lib-async-http-client.git", + "ssh_url": "git@github.com:jenkinsci/lib-async-http-client.git", + "clone_url": "https://github.com/jenkinsci/lib-async-http-client.git", + "svn_url": "https://github.com/jenkinsci/lib-async-http-client", + "homepage": "", + "size": 17870, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 4, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 157371279, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTczNzEyNzk=", + "name": "bart-plugin", + "full_name": "jenkinsci/bart-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/bart-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/bart-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/bart-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/bart-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/bart-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/bart-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/bart-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/bart-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/bart-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/bart-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/bart-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/bart-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/bart-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/bart-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/bart-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/bart-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/bart-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/bart-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/bart-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/bart-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/bart-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/bart-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/bart-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/bart-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/bart-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/bart-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/bart-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/bart-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/bart-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/bart-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/bart-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/bart-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/bart-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/bart-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/bart-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/bart-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/bart-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/bart-plugin/deployments", + "created_at": "2018-11-13T11:42:59Z", + "updated_at": "2018-11-14T22:00:17Z", + "pushed_at": "2018-11-14T21:53:16Z", + "git_url": "git://github.com/jenkinsci/bart-plugin.git", + "ssh_url": "git@github.com:jenkinsci/bart-plugin.git", + "clone_url": "https://github.com/jenkinsci/bart-plugin.git", + "svn_url": "https://github.com/jenkinsci/bart-plugin", + "homepage": null, + "size": 28, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 158393827, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTgzOTM4Mjc=", + "name": "link-column-plugin", + "full_name": "jenkinsci/link-column-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/link-column-plugin", + "description": "Display a custom link column in the list view of Jenkins.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/link-column-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/link-column-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/link-column-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/link-column-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/link-column-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/link-column-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/link-column-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/link-column-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/link-column-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/link-column-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/link-column-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/link-column-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/link-column-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/link-column-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/link-column-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/link-column-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/link-column-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/link-column-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/link-column-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/link-column-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/link-column-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/link-column-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/link-column-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/link-column-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/link-column-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/link-column-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/link-column-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/link-column-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/link-column-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/link-column-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/link-column-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/link-column-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/link-column-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/link-column-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/link-column-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/link-column-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/link-column-plugin/deployments", + "created_at": "2018-11-20T13:28:22Z", + "updated_at": "2018-12-17T09:43:26Z", + "pushed_at": "2018-12-17T09:43:25Z", + "git_url": "git://github.com/jenkinsci/link-column-plugin.git", + "ssh_url": "git@github.com:jenkinsci/link-column-plugin.git", + "clone_url": "https://github.com/jenkinsci/link-column-plugin.git", + "svn_url": "https://github.com/jenkinsci/link-column-plugin", + "homepage": "", + "size": 18, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 159193578, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTkxOTM1Nzg=", + "name": "pipeline-timeline-plugin", + "full_name": "jenkinsci/pipeline-timeline-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pipeline-timeline-plugin", + "description": "A build timeline to facilitate the inspection of Jenkins pipelines and identify bottlenecks.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/pipeline-timeline-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pipeline-timeline-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pipeline-timeline-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pipeline-timeline-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pipeline-timeline-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pipeline-timeline-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pipeline-timeline-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pipeline-timeline-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pipeline-timeline-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pipeline-timeline-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pipeline-timeline-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pipeline-timeline-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pipeline-timeline-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pipeline-timeline-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pipeline-timeline-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pipeline-timeline-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pipeline-timeline-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pipeline-timeline-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pipeline-timeline-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pipeline-timeline-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pipeline-timeline-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pipeline-timeline-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pipeline-timeline-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pipeline-timeline-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pipeline-timeline-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pipeline-timeline-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pipeline-timeline-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pipeline-timeline-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pipeline-timeline-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pipeline-timeline-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pipeline-timeline-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pipeline-timeline-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pipeline-timeline-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pipeline-timeline-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pipeline-timeline-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pipeline-timeline-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pipeline-timeline-plugin/deployments", + "created_at": "2018-11-26T15:45:33Z", + "updated_at": "2019-05-31T23:44:28Z", + "pushed_at": "2019-10-08T11:51:12Z", + "git_url": "git://github.com/jenkinsci/pipeline-timeline-plugin.git", + "ssh_url": "git@github.com:jenkinsci/pipeline-timeline-plugin.git", + "clone_url": "https://github.com/jenkinsci/pipeline-timeline-plugin.git", + "svn_url": "https://github.com/jenkinsci/pipeline-timeline-plugin", + "homepage": "https://jenkinstimeline.com", + "size": 930, + "stargazers_count": 4, + "watchers_count": 4, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 2, + "open_issues": 1, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 159685662, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTk2ODU2NjI=", + "name": "audit-log-plugin", + "full_name": "jenkinsci/audit-log-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/audit-log-plugin", + "description": "Audit logging plugin for Jenkins based on Apache Log4j Audit", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/audit-log-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/audit-log-plugin/deployments", + "created_at": "2018-11-29T15:16:14Z", + "updated_at": "2019-10-07T15:05:20Z", + "pushed_at": "2019-10-07T15:05:18Z", + "git_url": "git://github.com/jenkinsci/audit-log-plugin.git", + "ssh_url": "git@github.com:jenkinsci/audit-log-plugin.git", + "clone_url": "https://github.com/jenkinsci/audit-log-plugin.git", + "svn_url": "https://github.com/jenkinsci/audit-log-plugin", + "homepage": "https://github.com/jenkinsci/audit-log-plugin/issues", + "size": 190, + "stargazers_count": 13, + "watchers_count": 13, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 14, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 14, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 14, + "open_issues": 14, + "watchers": 13, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 159715073, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTk3MTUwNzM=", + "name": "ddt-plugin", + "full_name": "jenkinsci/ddt-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/ddt-plugin", + "description": "Jenkins plugin for https://qa.doorzz.com", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/ddt-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/ddt-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/ddt-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/ddt-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/ddt-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/ddt-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/ddt-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/ddt-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/ddt-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/ddt-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/ddt-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/ddt-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/ddt-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/ddt-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/ddt-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/ddt-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/ddt-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/ddt-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/ddt-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/ddt-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/ddt-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/ddt-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/ddt-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/ddt-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/ddt-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/ddt-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/ddt-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/ddt-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/ddt-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/ddt-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/ddt-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/ddt-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/ddt-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/ddt-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/ddt-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/ddt-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/ddt-plugin/deployments", + "created_at": "2018-11-29T19:12:38Z", + "updated_at": "2019-07-30T08:06:07Z", + "pushed_at": "2019-07-30T08:06:05Z", + "git_url": "git://github.com/jenkinsci/ddt-plugin.git", + "ssh_url": "git@github.com:jenkinsci/ddt-plugin.git", + "clone_url": "https://github.com/jenkinsci/ddt-plugin.git", + "svn_url": "https://github.com/jenkinsci/ddt-plugin", + "homepage": null, + "size": 77344, + "stargazers_count": 7, + "watchers_count": 7, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 7, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 159902399, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTk5MDIzOTk=", + "name": "ci.jenkins.io-runner", + "full_name": "jenkinsci/ci.jenkins.io-runner", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/ci.jenkins.io-runner", + "description": "An emulator of ci.jenkins.io instance, packaged as a single-shot Jenkinsfile Runner", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/ci.jenkins.io-runner", + "forks_url": "https://api.github.com/repos/jenkinsci/ci.jenkins.io-runner/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/ci.jenkins.io-runner/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/ci.jenkins.io-runner/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/ci.jenkins.io-runner/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/ci.jenkins.io-runner/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/ci.jenkins.io-runner/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/ci.jenkins.io-runner/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/ci.jenkins.io-runner/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/ci.jenkins.io-runner/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/ci.jenkins.io-runner/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/ci.jenkins.io-runner/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/ci.jenkins.io-runner/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/ci.jenkins.io-runner/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/ci.jenkins.io-runner/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/ci.jenkins.io-runner/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/ci.jenkins.io-runner/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/ci.jenkins.io-runner/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/ci.jenkins.io-runner/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/ci.jenkins.io-runner/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/ci.jenkins.io-runner/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/ci.jenkins.io-runner/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/ci.jenkins.io-runner/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/ci.jenkins.io-runner/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/ci.jenkins.io-runner/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/ci.jenkins.io-runner/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/ci.jenkins.io-runner/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/ci.jenkins.io-runner/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/ci.jenkins.io-runner/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/ci.jenkins.io-runner/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/ci.jenkins.io-runner/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/ci.jenkins.io-runner/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/ci.jenkins.io-runner/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/ci.jenkins.io-runner/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/ci.jenkins.io-runner/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/ci.jenkins.io-runner/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/ci.jenkins.io-runner/deployments", + "created_at": "2018-12-01T02:47:09Z", + "updated_at": "2019-10-23T07:56:38Z", + "pushed_at": "2019-10-24T05:23:18Z", + "git_url": "git://github.com/jenkinsci/ci.jenkins.io-runner.git", + "ssh_url": "git@github.com:jenkinsci/ci.jenkins.io-runner.git", + "clone_url": "https://github.com/jenkinsci/ci.jenkins.io-runner.git", + "svn_url": "https://github.com/jenkinsci/ci.jenkins.io-runner", + "homepage": "", + "size": 300, + "stargazers_count": 24, + "watchers_count": 24, + "language": "Groovy", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 13, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 15, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 13, + "open_issues": 15, + "watchers": 24, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 160226129, + "node_id": "MDEwOlJlcG9zaXRvcnkxNjAyMjYxMjk=", + "name": "ws-execution-manager-plugin", + "full_name": "jenkinsci/ws-execution-manager-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/ws-execution-manager-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/ws-execution-manager-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/ws-execution-manager-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/ws-execution-manager-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/ws-execution-manager-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/ws-execution-manager-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/ws-execution-manager-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/ws-execution-manager-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/ws-execution-manager-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/ws-execution-manager-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/ws-execution-manager-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/ws-execution-manager-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/ws-execution-manager-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/ws-execution-manager-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/ws-execution-manager-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/ws-execution-manager-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/ws-execution-manager-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/ws-execution-manager-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/ws-execution-manager-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/ws-execution-manager-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/ws-execution-manager-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/ws-execution-manager-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/ws-execution-manager-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/ws-execution-manager-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/ws-execution-manager-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/ws-execution-manager-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/ws-execution-manager-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/ws-execution-manager-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/ws-execution-manager-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/ws-execution-manager-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/ws-execution-manager-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/ws-execution-manager-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/ws-execution-manager-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/ws-execution-manager-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/ws-execution-manager-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/ws-execution-manager-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/ws-execution-manager-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/ws-execution-manager-plugin/deployments", + "created_at": "2018-12-03T17:07:29Z", + "updated_at": "2019-08-16T10:53:32Z", + "pushed_at": "2019-08-16T10:56:21Z", + "git_url": "git://github.com/jenkinsci/ws-execution-manager-plugin.git", + "ssh_url": "git@github.com:jenkinsci/ws-execution-manager-plugin.git", + "clone_url": "https://github.com/jenkinsci/ws-execution-manager-plugin.git", + "svn_url": "https://github.com/jenkinsci/ws-execution-manager-plugin", + "homepage": null, + "size": 113, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 160226256, + "node_id": "MDEwOlJlcG9zaXRvcnkxNjAyMjYyNTY=", + "name": "list-git-branches-parameter-plugin", + "full_name": "jenkinsci/list-git-branches-parameter-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/list-git-branches-parameter-plugin", + "description": "jenkins plugin for list git branches", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/list-git-branches-parameter-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/list-git-branches-parameter-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/list-git-branches-parameter-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/list-git-branches-parameter-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/list-git-branches-parameter-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/list-git-branches-parameter-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/list-git-branches-parameter-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/list-git-branches-parameter-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/list-git-branches-parameter-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/list-git-branches-parameter-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/list-git-branches-parameter-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/list-git-branches-parameter-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/list-git-branches-parameter-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/list-git-branches-parameter-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/list-git-branches-parameter-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/list-git-branches-parameter-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/list-git-branches-parameter-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/list-git-branches-parameter-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/list-git-branches-parameter-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/list-git-branches-parameter-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/list-git-branches-parameter-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/list-git-branches-parameter-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/list-git-branches-parameter-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/list-git-branches-parameter-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/list-git-branches-parameter-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/list-git-branches-parameter-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/list-git-branches-parameter-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/list-git-branches-parameter-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/list-git-branches-parameter-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/list-git-branches-parameter-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/list-git-branches-parameter-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/list-git-branches-parameter-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/list-git-branches-parameter-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/list-git-branches-parameter-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/list-git-branches-parameter-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/list-git-branches-parameter-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/list-git-branches-parameter-plugin/deployments", + "created_at": "2018-12-03T17:08:19Z", + "updated_at": "2019-10-25T08:22:48Z", + "pushed_at": "2019-10-25T08:22:46Z", + "git_url": "git://github.com/jenkinsci/list-git-branches-parameter-plugin.git", + "ssh_url": "git@github.com:jenkinsci/list-git-branches-parameter-plugin.git", + "clone_url": "https://github.com/jenkinsci/list-git-branches-parameter-plugin.git", + "svn_url": "https://github.com/jenkinsci/list-git-branches-parameter-plugin", + "homepage": "", + "size": 113, + "stargazers_count": 7, + "watchers_count": 7, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 7, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 7, + "open_issues": 1, + "watchers": 7, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 160518783, + "node_id": "MDEwOlJlcG9zaXRvcnkxNjA1MTg3ODM=", + "name": "lib-jenkins-stapler-support", + "full_name": "jenkinsci/lib-jenkins-stapler-support", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/lib-jenkins-stapler-support", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/lib-jenkins-stapler-support", + "forks_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-stapler-support/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-stapler-support/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-stapler-support/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-stapler-support/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-stapler-support/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-stapler-support/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-stapler-support/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-stapler-support/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-stapler-support/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-stapler-support/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-stapler-support/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-stapler-support/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-stapler-support/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-stapler-support/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-stapler-support/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-stapler-support/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-stapler-support/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-stapler-support/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-stapler-support/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-stapler-support/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-stapler-support/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-stapler-support/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-stapler-support/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-stapler-support/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-stapler-support/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-stapler-support/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-stapler-support/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-stapler-support/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-stapler-support/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-stapler-support/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-stapler-support/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-stapler-support/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-stapler-support/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-stapler-support/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-stapler-support/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-stapler-support/deployments", + "created_at": "2018-12-05T13:00:10Z", + "updated_at": "2019-07-17T14:59:50Z", + "pushed_at": "2019-07-17T14:59:48Z", + "git_url": "git://github.com/jenkinsci/lib-jenkins-stapler-support.git", + "ssh_url": "git@github.com:jenkinsci/lib-jenkins-stapler-support.git", + "clone_url": "https://github.com/jenkinsci/lib-jenkins-stapler-support.git", + "svn_url": "https://github.com/jenkinsci/lib-jenkins-stapler-support", + "homepage": null, + "size": 5, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 160827091, + "node_id": "MDEwOlJlcG9zaXRvcnkxNjA4MjcwOTE=", + "name": "configuration-as-code-secret-ssm-plugin", + "full_name": "jenkinsci/configuration-as-code-secret-ssm-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/configuration-as-code-secret-ssm-plugin", + "description": "AWS SSM Plugin for Jenkins Configuration as Code", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/configuration-as-code-secret-ssm-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-secret-ssm-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-secret-ssm-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-secret-ssm-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-secret-ssm-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-secret-ssm-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-secret-ssm-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-secret-ssm-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-secret-ssm-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-secret-ssm-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-secret-ssm-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-secret-ssm-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-secret-ssm-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-secret-ssm-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-secret-ssm-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-secret-ssm-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-secret-ssm-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-secret-ssm-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-secret-ssm-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-secret-ssm-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-secret-ssm-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-secret-ssm-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-secret-ssm-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-secret-ssm-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-secret-ssm-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-secret-ssm-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-secret-ssm-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-secret-ssm-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-secret-ssm-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-secret-ssm-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-secret-ssm-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-secret-ssm-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-secret-ssm-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-secret-ssm-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-secret-ssm-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-secret-ssm-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-secret-ssm-plugin/deployments", + "created_at": "2018-12-07T13:26:52Z", + "updated_at": "2019-10-09T14:46:32Z", + "pushed_at": "2019-03-08T15:30:24Z", + "git_url": "git://github.com/jenkinsci/configuration-as-code-secret-ssm-plugin.git", + "ssh_url": "git@github.com:jenkinsci/configuration-as-code-secret-ssm-plugin.git", + "clone_url": "https://github.com/jenkinsci/configuration-as-code-secret-ssm-plugin.git", + "svn_url": "https://github.com/jenkinsci/configuration-as-code-secret-ssm-plugin", + "homepage": "https://plugins.jenkins.io/configuration-as-code-secret-ssm", + "size": 11, + "stargazers_count": 9, + "watchers_count": 9, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 3, + "open_issues": 1, + "watchers": 9, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 160944733, + "node_id": "MDEwOlJlcG9zaXRvcnkxNjA5NDQ3MzM=", + "name": "log-sanitizer-plugin", + "full_name": "jenkinsci/log-sanitizer-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/log-sanitizer-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/log-sanitizer-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/log-sanitizer-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/log-sanitizer-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/log-sanitizer-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/log-sanitizer-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/log-sanitizer-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/log-sanitizer-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/log-sanitizer-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/log-sanitizer-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/log-sanitizer-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/log-sanitizer-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/log-sanitizer-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/log-sanitizer-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/log-sanitizer-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/log-sanitizer-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/log-sanitizer-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/log-sanitizer-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/log-sanitizer-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/log-sanitizer-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/log-sanitizer-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/log-sanitizer-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/log-sanitizer-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/log-sanitizer-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/log-sanitizer-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/log-sanitizer-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/log-sanitizer-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/log-sanitizer-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/log-sanitizer-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/log-sanitizer-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/log-sanitizer-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/log-sanitizer-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/log-sanitizer-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/log-sanitizer-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/log-sanitizer-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/log-sanitizer-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/log-sanitizer-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/log-sanitizer-plugin/deployments", + "created_at": "2018-12-08T14:01:42Z", + "updated_at": "2019-02-04T10:38:33Z", + "pushed_at": "2018-12-06T04:50:29Z", + "git_url": "git://github.com/jenkinsci/log-sanitizer-plugin.git", + "ssh_url": "git@github.com:jenkinsci/log-sanitizer-plugin.git", + "clone_url": "https://github.com/jenkinsci/log-sanitizer-plugin.git", + "svn_url": "https://github.com/jenkinsci/log-sanitizer-plugin", + "homepage": null, + "size": 11, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 162315435, + "node_id": "MDEwOlJlcG9zaXRvcnkxNjIzMTU0MzU=", + "name": "redacted-password-parameters-plugin", + "full_name": "jenkinsci/redacted-password-parameters-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/redacted-password-parameters-plugin", + "description": "Jenkins plugin to redact the value of password build parameters from the console log", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/redacted-password-parameters-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/redacted-password-parameters-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/redacted-password-parameters-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/redacted-password-parameters-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/redacted-password-parameters-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/redacted-password-parameters-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/redacted-password-parameters-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/redacted-password-parameters-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/redacted-password-parameters-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/redacted-password-parameters-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/redacted-password-parameters-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/redacted-password-parameters-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/redacted-password-parameters-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/redacted-password-parameters-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/redacted-password-parameters-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/redacted-password-parameters-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/redacted-password-parameters-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/redacted-password-parameters-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/redacted-password-parameters-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/redacted-password-parameters-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/redacted-password-parameters-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/redacted-password-parameters-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/redacted-password-parameters-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/redacted-password-parameters-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/redacted-password-parameters-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/redacted-password-parameters-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/redacted-password-parameters-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/redacted-password-parameters-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/redacted-password-parameters-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/redacted-password-parameters-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/redacted-password-parameters-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/redacted-password-parameters-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/redacted-password-parameters-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/redacted-password-parameters-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/redacted-password-parameters-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/redacted-password-parameters-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/redacted-password-parameters-plugin/deployments", + "created_at": "2018-12-18T16:21:58Z", + "updated_at": "2018-12-18T16:22:15Z", + "pushed_at": "2018-12-09T01:11:15Z", + "git_url": "git://github.com/jenkinsci/redacted-password-parameters-plugin.git", + "ssh_url": "git@github.com:jenkinsci/redacted-password-parameters-plugin.git", + "clone_url": "https://github.com/jenkinsci/redacted-password-parameters-plugin.git", + "svn_url": "https://github.com/jenkinsci/redacted-password-parameters-plugin", + "homepage": null, + "size": 6, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 162315539, + "node_id": "MDEwOlJlcG9zaXRvcnkxNjIzMTU1Mzk=", + "name": "bitbucket-push-and-pull-request-plugin", + "full_name": "jenkinsci/bitbucket-push-and-pull-request-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/bitbucket-push-and-pull-request-plugin", + "description": "Plugin for Jenkins v2.138.2 or later, that trigger builds on Bitbucket's push and pull requests.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/bitbucket-push-and-pull-request-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/bitbucket-push-and-pull-request-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/bitbucket-push-and-pull-request-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/bitbucket-push-and-pull-request-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/bitbucket-push-and-pull-request-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/bitbucket-push-and-pull-request-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/bitbucket-push-and-pull-request-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/bitbucket-push-and-pull-request-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/bitbucket-push-and-pull-request-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/bitbucket-push-and-pull-request-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/bitbucket-push-and-pull-request-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/bitbucket-push-and-pull-request-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/bitbucket-push-and-pull-request-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/bitbucket-push-and-pull-request-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/bitbucket-push-and-pull-request-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/bitbucket-push-and-pull-request-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/bitbucket-push-and-pull-request-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/bitbucket-push-and-pull-request-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/bitbucket-push-and-pull-request-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/bitbucket-push-and-pull-request-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/bitbucket-push-and-pull-request-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/bitbucket-push-and-pull-request-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/bitbucket-push-and-pull-request-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/bitbucket-push-and-pull-request-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/bitbucket-push-and-pull-request-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/bitbucket-push-and-pull-request-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/bitbucket-push-and-pull-request-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/bitbucket-push-and-pull-request-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/bitbucket-push-and-pull-request-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/bitbucket-push-and-pull-request-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/bitbucket-push-and-pull-request-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/bitbucket-push-and-pull-request-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/bitbucket-push-and-pull-request-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/bitbucket-push-and-pull-request-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/bitbucket-push-and-pull-request-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/bitbucket-push-and-pull-request-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/bitbucket-push-and-pull-request-plugin/deployments", + "created_at": "2018-12-18T16:22:42Z", + "updated_at": "2019-10-23T12:23:43Z", + "pushed_at": "2019-10-22T08:38:01Z", + "git_url": "git://github.com/jenkinsci/bitbucket-push-and-pull-request-plugin.git", + "ssh_url": "git@github.com:jenkinsci/bitbucket-push-and-pull-request-plugin.git", + "clone_url": "https://github.com/jenkinsci/bitbucket-push-and-pull-request-plugin.git", + "svn_url": "https://github.com/jenkinsci/bitbucket-push-and-pull-request-plugin", + "homepage": "https://plugins.jenkins.io/bitbucket-push-and-pull-request", + "size": 589, + "stargazers_count": 14, + "watchers_count": 14, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": true, + "forks_count": 13, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 12, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 13, + "open_issues": 12, + "watchers": 14, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 162315617, + "node_id": "MDEwOlJlcG9zaXRvcnkxNjIzMTU2MTc=", + "name": "rhamt-plugin", + "full_name": "jenkinsci/rhamt-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/rhamt-plugin", + "description": "RHAMT Plugin for Jenkins", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/rhamt-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/rhamt-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/rhamt-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/rhamt-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/rhamt-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/rhamt-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/rhamt-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/rhamt-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/rhamt-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/rhamt-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/rhamt-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/rhamt-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/rhamt-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/rhamt-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/rhamt-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/rhamt-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/rhamt-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/rhamt-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/rhamt-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/rhamt-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/rhamt-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/rhamt-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/rhamt-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/rhamt-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/rhamt-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/rhamt-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/rhamt-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/rhamt-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/rhamt-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/rhamt-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/rhamt-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/rhamt-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/rhamt-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/rhamt-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/rhamt-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/rhamt-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/rhamt-plugin/deployments", + "created_at": "2018-12-18T16:23:27Z", + "updated_at": "2018-12-18T16:23:39Z", + "pushed_at": "2018-12-10T16:43:43Z", + "git_url": "git://github.com/jenkinsci/rhamt-plugin.git", + "ssh_url": "git@github.com:jenkinsci/rhamt-plugin.git", + "clone_url": "https://github.com/jenkinsci/rhamt-plugin.git", + "svn_url": "https://github.com/jenkinsci/rhamt-plugin", + "homepage": "", + "size": 101, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 162315750, + "node_id": "MDEwOlJlcG9zaXRvcnkxNjIzMTU3NTA=", + "name": "sofy-ai-plugin", + "full_name": "jenkinsci/sofy-ai-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/sofy-ai-plugin", + "description": "Jenkins Plugin to integrate Sofy.ai with Jenkins CI/CD pipelines. Stage test runs at every build and receive detailed insights into your app's performance", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/sofy-ai-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/sofy-ai-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/sofy-ai-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/sofy-ai-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/sofy-ai-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/sofy-ai-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/sofy-ai-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/sofy-ai-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/sofy-ai-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/sofy-ai-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/sofy-ai-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/sofy-ai-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/sofy-ai-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/sofy-ai-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/sofy-ai-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/sofy-ai-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/sofy-ai-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/sofy-ai-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/sofy-ai-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/sofy-ai-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/sofy-ai-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/sofy-ai-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/sofy-ai-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/sofy-ai-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/sofy-ai-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/sofy-ai-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/sofy-ai-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/sofy-ai-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/sofy-ai-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/sofy-ai-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/sofy-ai-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/sofy-ai-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/sofy-ai-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/sofy-ai-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/sofy-ai-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/sofy-ai-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/sofy-ai-plugin/deployments", + "created_at": "2018-12-18T16:24:25Z", + "updated_at": "2019-01-07T06:41:39Z", + "pushed_at": "2019-01-07T06:41:38Z", + "git_url": "git://github.com/jenkinsci/sofy-ai-plugin.git", + "ssh_url": "git@github.com:jenkinsci/sofy-ai-plugin.git", + "clone_url": "https://github.com/jenkinsci/sofy-ai-plugin.git", + "svn_url": "https://github.com/jenkinsci/sofy-ai-plugin", + "homepage": null, + "size": 28, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 162315831, + "node_id": "MDEwOlJlcG9zaXRvcnkxNjIzMTU4MzE=", + "name": "katalon-plugin", + "full_name": "jenkinsci/katalon-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/katalon-plugin", + "description": "Katalon Plugin for Jenkins", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/katalon-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/katalon-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/katalon-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/katalon-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/katalon-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/katalon-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/katalon-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/katalon-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/katalon-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/katalon-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/katalon-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/katalon-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/katalon-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/katalon-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/katalon-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/katalon-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/katalon-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/katalon-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/katalon-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/katalon-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/katalon-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/katalon-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/katalon-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/katalon-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/katalon-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/katalon-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/katalon-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/katalon-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/katalon-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/katalon-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/katalon-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/katalon-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/katalon-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/katalon-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/katalon-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/katalon-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/katalon-plugin/deployments", + "created_at": "2018-12-18T16:25:05Z", + "updated_at": "2019-10-23T10:57:20Z", + "pushed_at": "2019-10-23T10:57:18Z", + "git_url": "git://github.com/jenkinsci/katalon-plugin.git", + "ssh_url": "git@github.com:jenkinsci/katalon-plugin.git", + "clone_url": "https://github.com/jenkinsci/katalon-plugin.git", + "svn_url": "https://github.com/jenkinsci/katalon-plugin", + "homepage": "", + "size": 7354, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 6, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 162739066, + "node_id": "MDEwOlJlcG9zaXRvcnkxNjI3MzkwNjY=", + "name": "azure-container-registry-tasks-plugin", + "full_name": "jenkinsci/azure-container-registry-tasks-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/azure-container-registry-tasks-plugin", + "description": "Jenkins Azure ACR tasks plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/azure-container-registry-tasks-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/azure-container-registry-tasks-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/azure-container-registry-tasks-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/azure-container-registry-tasks-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/azure-container-registry-tasks-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/azure-container-registry-tasks-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/azure-container-registry-tasks-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/azure-container-registry-tasks-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/azure-container-registry-tasks-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/azure-container-registry-tasks-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/azure-container-registry-tasks-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/azure-container-registry-tasks-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/azure-container-registry-tasks-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/azure-container-registry-tasks-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/azure-container-registry-tasks-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/azure-container-registry-tasks-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/azure-container-registry-tasks-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/azure-container-registry-tasks-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/azure-container-registry-tasks-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/azure-container-registry-tasks-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/azure-container-registry-tasks-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/azure-container-registry-tasks-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/azure-container-registry-tasks-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/azure-container-registry-tasks-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/azure-container-registry-tasks-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/azure-container-registry-tasks-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/azure-container-registry-tasks-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/azure-container-registry-tasks-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/azure-container-registry-tasks-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/azure-container-registry-tasks-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/azure-container-registry-tasks-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/azure-container-registry-tasks-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/azure-container-registry-tasks-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/azure-container-registry-tasks-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/azure-container-registry-tasks-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/azure-container-registry-tasks-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/azure-container-registry-tasks-plugin/deployments", + "created_at": "2018-12-21T17:07:10Z", + "updated_at": "2019-01-29T02:54:28Z", + "pushed_at": "2019-01-29T02:54:26Z", + "git_url": "git://github.com/jenkinsci/azure-container-registry-tasks-plugin.git", + "ssh_url": "git@github.com:jenkinsci/azure-container-registry-tasks-plugin.git", + "clone_url": "https://github.com/jenkinsci/azure-container-registry-tasks-plugin.git", + "svn_url": "https://github.com/jenkinsci/azure-container-registry-tasks-plugin", + "homepage": "https://plugins.jenkins.io/azure-container-registry-tasks", + "size": 214, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 162739721, + "node_id": "MDEwOlJlcG9zaXRvcnkxNjI3Mzk3MjE=", + "name": "lambdatest-automation-plugin", + "full_name": "jenkinsci/lambdatest-automation-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/lambdatest-automation-plugin", + "description": "LambdaTest Plugin is used to run automated selenium tests on LambdaTest Cloud", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/lambdatest-automation-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/lambdatest-automation-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/lambdatest-automation-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/lambdatest-automation-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/lambdatest-automation-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/lambdatest-automation-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/lambdatest-automation-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/lambdatest-automation-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/lambdatest-automation-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/lambdatest-automation-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/lambdatest-automation-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/lambdatest-automation-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/lambdatest-automation-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/lambdatest-automation-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/lambdatest-automation-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/lambdatest-automation-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/lambdatest-automation-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/lambdatest-automation-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/lambdatest-automation-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/lambdatest-automation-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/lambdatest-automation-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/lambdatest-automation-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/lambdatest-automation-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/lambdatest-automation-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/lambdatest-automation-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/lambdatest-automation-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/lambdatest-automation-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/lambdatest-automation-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/lambdatest-automation-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/lambdatest-automation-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/lambdatest-automation-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/lambdatest-automation-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/lambdatest-automation-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/lambdatest-automation-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/lambdatest-automation-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/lambdatest-automation-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/lambdatest-automation-plugin/deployments", + "created_at": "2018-12-21T17:13:40Z", + "updated_at": "2019-10-23T14:13:53Z", + "pushed_at": "2019-10-23T14:13:51Z", + "git_url": "git://github.com/jenkinsci/lambdatest-automation-plugin.git", + "ssh_url": "git@github.com:jenkinsci/lambdatest-automation-plugin.git", + "clone_url": "https://github.com/jenkinsci/lambdatest-automation-plugin.git", + "svn_url": "https://github.com/jenkinsci/lambdatest-automation-plugin", + "homepage": "https://lambdatest.com", + "size": 149, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mpl-2.0", + "name": "Mozilla Public License 2.0", + "spdx_id": "MPL-2.0", + "url": "https://api.github.com/licenses/mpl-2.0", + "node_id": "MDc6TGljZW5zZTE0" + }, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 162991721, + "node_id": "MDEwOlJlcG9zaXRvcnkxNjI5OTE3MjE=", + "name": "lambda-test-runner-plugin", + "full_name": "jenkinsci/lambda-test-runner-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/lambda-test-runner-plugin", + "description": "Jenkins Plugin for AWS Lambda Test Runner", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/lambda-test-runner-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/lambda-test-runner-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/lambda-test-runner-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/lambda-test-runner-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/lambda-test-runner-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/lambda-test-runner-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/lambda-test-runner-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/lambda-test-runner-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/lambda-test-runner-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/lambda-test-runner-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/lambda-test-runner-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/lambda-test-runner-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/lambda-test-runner-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/lambda-test-runner-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/lambda-test-runner-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/lambda-test-runner-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/lambda-test-runner-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/lambda-test-runner-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/lambda-test-runner-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/lambda-test-runner-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/lambda-test-runner-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/lambda-test-runner-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/lambda-test-runner-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/lambda-test-runner-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/lambda-test-runner-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/lambda-test-runner-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/lambda-test-runner-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/lambda-test-runner-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/lambda-test-runner-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/lambda-test-runner-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/lambda-test-runner-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/lambda-test-runner-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/lambda-test-runner-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/lambda-test-runner-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/lambda-test-runner-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/lambda-test-runner-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/lambda-test-runner-plugin/deployments", + "created_at": "2018-12-24T13:08:25Z", + "updated_at": "2019-09-01T07:38:53Z", + "pushed_at": "2019-10-01T13:58:08Z", + "git_url": "git://github.com/jenkinsci/lambda-test-runner-plugin.git", + "ssh_url": "git@github.com:jenkinsci/lambda-test-runner-plugin.git", + "clone_url": "https://github.com/jenkinsci/lambda-test-runner-plugin.git", + "svn_url": "https://github.com/jenkinsci/lambda-test-runner-plugin", + "homepage": null, + "size": 245, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": true, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 9, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 9, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 164693242, + "node_id": "MDEwOlJlcG9zaXRvcnkxNjQ2OTMyNDI=", + "name": "testproject-plugin", + "full_name": "jenkinsci/testproject-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/testproject-plugin", + "description": "Jenkins CI Plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/testproject-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/testproject-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/testproject-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/testproject-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/testproject-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/testproject-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/testproject-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/testproject-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/testproject-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/testproject-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/testproject-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/testproject-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/testproject-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/testproject-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/testproject-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/testproject-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/testproject-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/testproject-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/testproject-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/testproject-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/testproject-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/testproject-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/testproject-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/testproject-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/testproject-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/testproject-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/testproject-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/testproject-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/testproject-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/testproject-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/testproject-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/testproject-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/testproject-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/testproject-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/testproject-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/testproject-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/testproject-plugin/deployments", + "created_at": "2019-01-08T16:49:13Z", + "updated_at": "2019-02-26T17:02:11Z", + "pushed_at": "2019-02-26T17:02:09Z", + "git_url": "git://github.com/jenkinsci/testproject-plugin.git", + "ssh_url": "git@github.com:jenkinsci/testproject-plugin.git", + "clone_url": "https://github.com/jenkinsci/testproject-plugin.git", + "svn_url": "https://github.com/jenkinsci/testproject-plugin", + "homepage": null, + "size": 36, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 164719197, + "node_id": "MDEwOlJlcG9zaXRvcnkxNjQ3MTkxOTc=", + "name": "rb-plugin", + "full_name": "jenkinsci/rb-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/rb-plugin", + "description": "Jenkins plugin for Review Board integration", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/rb-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/rb-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/rb-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/rb-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/rb-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/rb-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/rb-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/rb-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/rb-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/rb-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/rb-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/rb-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/rb-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/rb-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/rb-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/rb-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/rb-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/rb-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/rb-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/rb-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/rb-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/rb-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/rb-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/rb-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/rb-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/rb-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/rb-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/rb-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/rb-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/rb-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/rb-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/rb-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/rb-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/rb-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/rb-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/rb-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/rb-plugin/deployments", + "created_at": "2019-01-08T19:33:53Z", + "updated_at": "2019-01-16T00:43:51Z", + "pushed_at": "2019-10-08T11:35:48Z", + "git_url": "git://github.com/jenkinsci/rb-plugin.git", + "ssh_url": "git@github.com:jenkinsci/rb-plugin.git", + "clone_url": "https://github.com/jenkinsci/rb-plugin.git", + "svn_url": "https://github.com/jenkinsci/rb-plugin", + "homepage": null, + "size": 29, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 1, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 164729254, + "node_id": "MDEwOlJlcG9zaXRvcnkxNjQ3MjkyNTQ=", + "name": "cons3rt-plugin", + "full_name": "jenkinsci/cons3rt-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/cons3rt-plugin", + "description": "https://wiki.jenkins.io/display/JENKINS/CONS3RT+Plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/cons3rt-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/cons3rt-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/cons3rt-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/cons3rt-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/cons3rt-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/cons3rt-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/cons3rt-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/cons3rt-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/cons3rt-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/cons3rt-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/cons3rt-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/cons3rt-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/cons3rt-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/cons3rt-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/cons3rt-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/cons3rt-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/cons3rt-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/cons3rt-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/cons3rt-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/cons3rt-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/cons3rt-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/cons3rt-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/cons3rt-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/cons3rt-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/cons3rt-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/cons3rt-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/cons3rt-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/cons3rt-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/cons3rt-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/cons3rt-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/cons3rt-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/cons3rt-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/cons3rt-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/cons3rt-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/cons3rt-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/cons3rt-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/cons3rt-plugin/deployments", + "created_at": "2019-01-08T20:42:05Z", + "updated_at": "2019-01-15T20:32:19Z", + "pushed_at": "2019-01-15T20:32:18Z", + "git_url": "git://github.com/jenkinsci/cons3rt-plugin.git", + "ssh_url": "git@github.com:jenkinsci/cons3rt-plugin.git", + "clone_url": "https://github.com/jenkinsci/cons3rt-plugin.git", + "svn_url": "https://github.com/jenkinsci/cons3rt-plugin", + "homepage": "", + "size": 92, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 165067329, + "node_id": "MDEwOlJlcG9zaXRvcnkxNjUwNjczMjk=", + "name": "pureload-plugin", + "full_name": "jenkinsci/pureload-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pureload-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/pureload-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pureload-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pureload-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pureload-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pureload-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pureload-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pureload-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pureload-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pureload-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pureload-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pureload-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pureload-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pureload-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pureload-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pureload-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pureload-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pureload-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pureload-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pureload-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pureload-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pureload-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pureload-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pureload-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pureload-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pureload-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pureload-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pureload-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pureload-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pureload-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pureload-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pureload-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pureload-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pureload-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pureload-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pureload-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pureload-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pureload-plugin/deployments", + "created_at": "2019-01-10T13:45:59Z", + "updated_at": "2019-08-27T08:45:49Z", + "pushed_at": "2019-08-27T08:45:47Z", + "git_url": "git://github.com/jenkinsci/pureload-plugin.git", + "ssh_url": "git@github.com:jenkinsci/pureload-plugin.git", + "clone_url": "https://github.com/jenkinsci/pureload-plugin.git", + "svn_url": "https://github.com/jenkinsci/pureload-plugin", + "homepage": null, + "size": 53, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 165067786, + "node_id": "MDEwOlJlcG9zaXRvcnkxNjUwNjc3ODY=", + "name": "google-kubernetes-engine-plugin", + "full_name": "jenkinsci/google-kubernetes-engine-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/google-kubernetes-engine-plugin", + "description": "The Google Kubernetes Engine (GKE) Plugin allows you to deploy build artifacts to Kubernetes clusters running in GKE with Jenkins.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/google-kubernetes-engine-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/google-kubernetes-engine-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/google-kubernetes-engine-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/google-kubernetes-engine-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/google-kubernetes-engine-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/google-kubernetes-engine-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/google-kubernetes-engine-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/google-kubernetes-engine-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/google-kubernetes-engine-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/google-kubernetes-engine-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/google-kubernetes-engine-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/google-kubernetes-engine-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/google-kubernetes-engine-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/google-kubernetes-engine-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/google-kubernetes-engine-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/google-kubernetes-engine-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/google-kubernetes-engine-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/google-kubernetes-engine-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/google-kubernetes-engine-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/google-kubernetes-engine-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/google-kubernetes-engine-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/google-kubernetes-engine-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/google-kubernetes-engine-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/google-kubernetes-engine-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/google-kubernetes-engine-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/google-kubernetes-engine-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/google-kubernetes-engine-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/google-kubernetes-engine-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/google-kubernetes-engine-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/google-kubernetes-engine-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/google-kubernetes-engine-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/google-kubernetes-engine-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/google-kubernetes-engine-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/google-kubernetes-engine-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/google-kubernetes-engine-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/google-kubernetes-engine-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/google-kubernetes-engine-plugin/deployments", + "created_at": "2019-01-10T13:48:46Z", + "updated_at": "2019-10-17T21:43:11Z", + "pushed_at": "2019-10-25T23:21:57Z", + "git_url": "git://github.com/jenkinsci/google-kubernetes-engine-plugin.git", + "ssh_url": "git@github.com:jenkinsci/google-kubernetes-engine-plugin.git", + "clone_url": "https://github.com/jenkinsci/google-kubernetes-engine-plugin.git", + "svn_url": "https://github.com/jenkinsci/google-kubernetes-engine-plugin", + "homepage": "", + "size": 453, + "stargazers_count": 18, + "watchers_count": 18, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 20, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 11, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 20, + "open_issues": 11, + "watchers": 18, + "default_branch": "develop", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 165877942, + "node_id": "MDEwOlJlcG9zaXRvcnkxNjU4Nzc5NDI=", + "name": "insightappsec-plugin", + "full_name": "jenkinsci/insightappsec-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/insightappsec-plugin", + "description": "InsightAppSec Jenkins Plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/insightappsec-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/insightappsec-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/insightappsec-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/insightappsec-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/insightappsec-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/insightappsec-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/insightappsec-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/insightappsec-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/insightappsec-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/insightappsec-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/insightappsec-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/insightappsec-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/insightappsec-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/insightappsec-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/insightappsec-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/insightappsec-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/insightappsec-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/insightappsec-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/insightappsec-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/insightappsec-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/insightappsec-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/insightappsec-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/insightappsec-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/insightappsec-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/insightappsec-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/insightappsec-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/insightappsec-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/insightappsec-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/insightappsec-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/insightappsec-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/insightappsec-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/insightappsec-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/insightappsec-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/insightappsec-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/insightappsec-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/insightappsec-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/insightappsec-plugin/deployments", + "created_at": "2019-01-15T15:44:17Z", + "updated_at": "2019-05-30T13:18:10Z", + "pushed_at": "2019-06-18T14:39:48Z", + "git_url": "git://github.com/jenkinsci/insightappsec-plugin.git", + "ssh_url": "git@github.com:jenkinsci/insightappsec-plugin.git", + "clone_url": "https://github.com/jenkinsci/insightappsec-plugin.git", + "svn_url": "https://github.com/jenkinsci/insightappsec-plugin", + "homepage": null, + "size": 215, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 4, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 165878583, + "node_id": "MDEwOlJlcG9zaXRvcnkxNjU4Nzg1ODM=", + "name": "webhook-eventsource-plugin", + "full_name": "jenkinsci/webhook-eventsource-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/webhook-eventsource-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/webhook-eventsource-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/webhook-eventsource-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/webhook-eventsource-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/webhook-eventsource-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/webhook-eventsource-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/webhook-eventsource-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/webhook-eventsource-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/webhook-eventsource-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/webhook-eventsource-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/webhook-eventsource-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/webhook-eventsource-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/webhook-eventsource-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/webhook-eventsource-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/webhook-eventsource-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/webhook-eventsource-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/webhook-eventsource-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/webhook-eventsource-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/webhook-eventsource-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/webhook-eventsource-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/webhook-eventsource-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/webhook-eventsource-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/webhook-eventsource-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/webhook-eventsource-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/webhook-eventsource-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/webhook-eventsource-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/webhook-eventsource-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/webhook-eventsource-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/webhook-eventsource-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/webhook-eventsource-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/webhook-eventsource-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/webhook-eventsource-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/webhook-eventsource-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/webhook-eventsource-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/webhook-eventsource-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/webhook-eventsource-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/webhook-eventsource-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/webhook-eventsource-plugin/deployments", + "created_at": "2019-01-15T15:48:07Z", + "updated_at": "2019-01-20T12:52:41Z", + "pushed_at": "2019-01-20T12:52:39Z", + "git_url": "git://github.com/jenkinsci/webhook-eventsource-plugin.git", + "ssh_url": "git@github.com:jenkinsci/webhook-eventsource-plugin.git", + "clone_url": "https://github.com/jenkinsci/webhook-eventsource-plugin.git", + "svn_url": "https://github.com/jenkinsci/webhook-eventsource-plugin", + "homepage": "", + "size": 26, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 166424135, + "node_id": "MDEwOlJlcG9zaXRvcnkxNjY0MjQxMzU=", + "name": "jenkinsfile-runner-test-framework", + "full_name": "jenkinsci/jenkinsfile-runner-test-framework", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jenkinsfile-runner-test-framework", + "description": "Test framework for Jenkinsfile Runner", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner-test-framework", + "forks_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner-test-framework/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner-test-framework/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner-test-framework/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner-test-framework/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner-test-framework/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner-test-framework/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner-test-framework/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner-test-framework/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner-test-framework/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner-test-framework/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner-test-framework/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner-test-framework/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner-test-framework/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner-test-framework/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner-test-framework/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner-test-framework/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner-test-framework/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner-test-framework/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner-test-framework/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner-test-framework/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner-test-framework/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner-test-framework/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner-test-framework/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner-test-framework/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner-test-framework/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner-test-framework/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner-test-framework/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner-test-framework/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner-test-framework/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner-test-framework/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner-test-framework/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner-test-framework/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner-test-framework/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner-test-framework/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner-test-framework/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner-test-framework/deployments", + "created_at": "2019-01-18T15:19:05Z", + "updated_at": "2019-09-23T18:35:07Z", + "pushed_at": "2019-09-01T20:46:00Z", + "git_url": "git://github.com/jenkinsci/jenkinsfile-runner-test-framework.git", + "ssh_url": "git@github.com:jenkinsci/jenkinsfile-runner-test-framework.git", + "clone_url": "https://github.com/jenkinsci/jenkinsfile-runner-test-framework.git", + "svn_url": "https://github.com/jenkinsci/jenkinsfile-runner-test-framework", + "homepage": null, + "size": 41, + "stargazers_count": 9, + "watchers_count": 9, + "language": "Shell", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 6, + "open_issues": 1, + "watchers": 9, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 166429275, + "node_id": "MDEwOlJlcG9zaXRvcnkxNjY0MjkyNzU=", + "name": "benchmark-evaluator-plugin", + "full_name": "jenkinsci/benchmark-evaluator-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/benchmark-evaluator-plugin", + "description": "Jenkins plugin to load benchmark results in Jenkins and evaluate them. Make automated decisions about the success of a build based on benchmark results.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/benchmark-evaluator-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/benchmark-evaluator-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/benchmark-evaluator-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/benchmark-evaluator-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/benchmark-evaluator-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/benchmark-evaluator-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/benchmark-evaluator-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/benchmark-evaluator-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/benchmark-evaluator-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/benchmark-evaluator-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/benchmark-evaluator-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/benchmark-evaluator-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/benchmark-evaluator-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/benchmark-evaluator-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/benchmark-evaluator-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/benchmark-evaluator-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/benchmark-evaluator-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/benchmark-evaluator-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/benchmark-evaluator-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/benchmark-evaluator-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/benchmark-evaluator-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/benchmark-evaluator-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/benchmark-evaluator-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/benchmark-evaluator-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/benchmark-evaluator-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/benchmark-evaluator-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/benchmark-evaluator-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/benchmark-evaluator-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/benchmark-evaluator-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/benchmark-evaluator-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/benchmark-evaluator-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/benchmark-evaluator-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/benchmark-evaluator-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/benchmark-evaluator-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/benchmark-evaluator-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/benchmark-evaluator-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/benchmark-evaluator-plugin/deployments", + "created_at": "2019-01-18T15:47:43Z", + "updated_at": "2019-08-05T22:03:48Z", + "pushed_at": "2019-08-28T06:06:51Z", + "git_url": "git://github.com/jenkinsci/benchmark-evaluator-plugin.git", + "ssh_url": "git@github.com:jenkinsci/benchmark-evaluator-plugin.git", + "clone_url": "https://github.com/jenkinsci/benchmark-evaluator-plugin.git", + "svn_url": "https://github.com/jenkinsci/benchmark-evaluator-plugin", + "homepage": "", + "size": 318, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 1, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 167013677, + "node_id": "MDEwOlJlcG9zaXRvcnkxNjcwMTM2Nzc=", + "name": "eiffel-broadcaster-plugin", + "full_name": "jenkinsci/eiffel-broadcaster-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/eiffel-broadcaster-plugin", + "description": "Jenkins plugin to Broadcast Eiffel events from Jenkins.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/eiffel-broadcaster-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/eiffel-broadcaster-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/eiffel-broadcaster-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/eiffel-broadcaster-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/eiffel-broadcaster-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/eiffel-broadcaster-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/eiffel-broadcaster-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/eiffel-broadcaster-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/eiffel-broadcaster-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/eiffel-broadcaster-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/eiffel-broadcaster-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/eiffel-broadcaster-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/eiffel-broadcaster-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/eiffel-broadcaster-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/eiffel-broadcaster-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/eiffel-broadcaster-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/eiffel-broadcaster-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/eiffel-broadcaster-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/eiffel-broadcaster-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/eiffel-broadcaster-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/eiffel-broadcaster-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/eiffel-broadcaster-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/eiffel-broadcaster-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/eiffel-broadcaster-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/eiffel-broadcaster-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/eiffel-broadcaster-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/eiffel-broadcaster-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/eiffel-broadcaster-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/eiffel-broadcaster-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/eiffel-broadcaster-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/eiffel-broadcaster-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/eiffel-broadcaster-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/eiffel-broadcaster-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/eiffel-broadcaster-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/eiffel-broadcaster-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/eiffel-broadcaster-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/eiffel-broadcaster-plugin/deployments", + "created_at": "2019-01-22T15:04:13Z", + "updated_at": "2019-07-19T12:10:18Z", + "pushed_at": "2019-07-19T12:10:16Z", + "git_url": "git://github.com/jenkinsci/eiffel-broadcaster-plugin.git", + "ssh_url": "git@github.com:jenkinsci/eiffel-broadcaster-plugin.git", + "clone_url": "https://github.com/jenkinsci/eiffel-broadcaster-plugin.git", + "svn_url": "https://github.com/jenkinsci/eiffel-broadcaster-plugin", + "homepage": null, + "size": 57, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 3, + "open_issues": 0, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 167368506, + "node_id": "MDEwOlJlcG9zaXRvcnkxNjczNjg1MDY=", + "name": "core-pr-tester", + "full_name": "jenkinsci/core-pr-tester", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/core-pr-tester", + "description": "Docker image source for testing pull-requests sent to https://github.com/jenkinsci/jenkins ", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/core-pr-tester", + "forks_url": "https://api.github.com/repos/jenkinsci/core-pr-tester/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/core-pr-tester/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/core-pr-tester/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/core-pr-tester/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/core-pr-tester/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/core-pr-tester/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/core-pr-tester/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/core-pr-tester/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/core-pr-tester/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/core-pr-tester/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/core-pr-tester/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/core-pr-tester/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/core-pr-tester/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/core-pr-tester/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/core-pr-tester/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/core-pr-tester/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/core-pr-tester/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/core-pr-tester/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/core-pr-tester/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/core-pr-tester/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/core-pr-tester/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/core-pr-tester/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/core-pr-tester/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/core-pr-tester/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/core-pr-tester/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/core-pr-tester/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/core-pr-tester/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/core-pr-tester/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/core-pr-tester/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/core-pr-tester/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/core-pr-tester/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/core-pr-tester/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/core-pr-tester/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/core-pr-tester/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/core-pr-tester/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/core-pr-tester/deployments", + "created_at": "2019-01-24T13:02:04Z", + "updated_at": "2019-09-04T14:50:02Z", + "pushed_at": "2019-04-08T09:56:05Z", + "git_url": "git://github.com/jenkinsci/core-pr-tester.git", + "ssh_url": "git@github.com:jenkinsci/core-pr-tester.git", + "clone_url": "https://github.com/jenkinsci/core-pr-tester.git", + "svn_url": "https://github.com/jenkinsci/core-pr-tester", + "homepage": "https://hub.docker.com/r/jenkins/core-pr-tester", + "size": 10, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Dockerfile", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 168462623, + "node_id": "MDEwOlJlcG9zaXRvcnkxNjg0NjI2MjM=", + "name": "azure-keyvault-plugin", + "full_name": "jenkinsci/azure-keyvault-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/azure-keyvault-plugin", + "description": "Jenkins plugin for Azure Keyvault", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/azure-keyvault-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/azure-keyvault-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/azure-keyvault-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/azure-keyvault-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/azure-keyvault-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/azure-keyvault-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/azure-keyvault-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/azure-keyvault-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/azure-keyvault-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/azure-keyvault-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/azure-keyvault-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/azure-keyvault-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/azure-keyvault-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/azure-keyvault-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/azure-keyvault-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/azure-keyvault-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/azure-keyvault-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/azure-keyvault-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/azure-keyvault-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/azure-keyvault-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/azure-keyvault-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/azure-keyvault-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/azure-keyvault-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/azure-keyvault-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/azure-keyvault-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/azure-keyvault-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/azure-keyvault-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/azure-keyvault-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/azure-keyvault-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/azure-keyvault-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/azure-keyvault-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/azure-keyvault-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/azure-keyvault-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/azure-keyvault-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/azure-keyvault-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/azure-keyvault-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/azure-keyvault-plugin/deployments", + "created_at": "2019-01-31T04:26:11Z", + "updated_at": "2019-09-29T15:36:38Z", + "pushed_at": "2019-09-29T15:36:36Z", + "git_url": "git://github.com/jenkinsci/azure-keyvault-plugin.git", + "ssh_url": "git@github.com:jenkinsci/azure-keyvault-plugin.git", + "clone_url": "https://github.com/jenkinsci/azure-keyvault-plugin.git", + "svn_url": "https://github.com/jenkinsci/azure-keyvault-plugin", + "homepage": "", + "size": 120, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 2, + "open_issues": 1, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 168693037, + "node_id": "MDEwOlJlcG9zaXRvcnkxNjg2OTMwMzc=", + "name": "inline-pipeline-plugin", + "full_name": "jenkinsci/inline-pipeline-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/inline-pipeline-plugin", + "description": "Inline definition for multibranch pipelines", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/inline-pipeline-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/inline-pipeline-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/inline-pipeline-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/inline-pipeline-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/inline-pipeline-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/inline-pipeline-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/inline-pipeline-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/inline-pipeline-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/inline-pipeline-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/inline-pipeline-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/inline-pipeline-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/inline-pipeline-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/inline-pipeline-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/inline-pipeline-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/inline-pipeline-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/inline-pipeline-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/inline-pipeline-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/inline-pipeline-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/inline-pipeline-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/inline-pipeline-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/inline-pipeline-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/inline-pipeline-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/inline-pipeline-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/inline-pipeline-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/inline-pipeline-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/inline-pipeline-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/inline-pipeline-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/inline-pipeline-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/inline-pipeline-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/inline-pipeline-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/inline-pipeline-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/inline-pipeline-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/inline-pipeline-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/inline-pipeline-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/inline-pipeline-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/inline-pipeline-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/inline-pipeline-plugin/deployments", + "created_at": "2019-02-01T12:17:11Z", + "updated_at": "2019-02-23T16:01:24Z", + "pushed_at": "2019-02-01T17:24:27Z", + "git_url": "git://github.com/jenkinsci/inline-pipeline-plugin.git", + "ssh_url": "git@github.com:jenkinsci/inline-pipeline-plugin.git", + "clone_url": "https://github.com/jenkinsci/inline-pipeline-plugin.git", + "svn_url": "https://github.com/jenkinsci/inline-pipeline-plugin", + "homepage": null, + "size": 8, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 168828318, + "node_id": "MDEwOlJlcG9zaXRvcnkxNjg4MjgzMTg=", + "name": "google-chat-plugin", + "full_name": "jenkinsci/google-chat-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/google-chat-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/google-chat-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/google-chat-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/google-chat-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/google-chat-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/google-chat-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/google-chat-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/google-chat-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/google-chat-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/google-chat-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/google-chat-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/google-chat-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/google-chat-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/google-chat-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/google-chat-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/google-chat-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/google-chat-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/google-chat-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/google-chat-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/google-chat-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/google-chat-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/google-chat-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/google-chat-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/google-chat-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/google-chat-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/google-chat-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/google-chat-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/google-chat-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/google-chat-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/google-chat-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/google-chat-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/google-chat-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/google-chat-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/google-chat-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/google-chat-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/google-chat-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/google-chat-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/google-chat-plugin/deployments", + "created_at": "2019-02-02T12:14:41Z", + "updated_at": "2019-02-02T12:14:55Z", + "pushed_at": "2019-02-08T04:58:52Z", + "git_url": "git://github.com/jenkinsci/google-chat-plugin.git", + "ssh_url": "git@github.com:jenkinsci/google-chat-plugin.git", + "clone_url": "https://github.com/jenkinsci/google-chat-plugin.git", + "svn_url": "https://github.com/jenkinsci/google-chat-plugin", + "homepage": null, + "size": 13, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 0, + "open_issues": 2, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 169070591, + "node_id": "MDEwOlJlcG9zaXRvcnkxNjkwNzA1OTE=", + "name": "gatling-check-plugin", + "full_name": "jenkinsci/gatling-check-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/gatling-check-plugin", + "description": "A Jenkins plugin that fails your job according to load test metrics from Gatling report", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/gatling-check-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/gatling-check-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/gatling-check-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/gatling-check-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/gatling-check-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/gatling-check-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/gatling-check-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/gatling-check-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/gatling-check-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/gatling-check-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/gatling-check-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/gatling-check-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/gatling-check-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/gatling-check-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/gatling-check-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/gatling-check-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/gatling-check-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/gatling-check-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/gatling-check-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/gatling-check-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/gatling-check-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/gatling-check-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/gatling-check-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/gatling-check-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/gatling-check-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/gatling-check-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/gatling-check-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/gatling-check-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/gatling-check-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/gatling-check-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/gatling-check-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/gatling-check-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/gatling-check-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/gatling-check-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/gatling-check-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/gatling-check-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/gatling-check-plugin/deployments", + "created_at": "2019-02-04T11:47:15Z", + "updated_at": "2019-02-19T05:49:40Z", + "pushed_at": "2019-02-17T10:56:14Z", + "git_url": "git://github.com/jenkinsci/gatling-check-plugin.git", + "ssh_url": "git@github.com:jenkinsci/gatling-check-plugin.git", + "clone_url": "https://github.com/jenkinsci/gatling-check-plugin.git", + "svn_url": "https://github.com/jenkinsci/gatling-check-plugin", + "homepage": null, + "size": 56, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 2, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 170123212, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzAxMjMyMTI=", + "name": "kubernetes-operator", + "full_name": "jenkinsci/kubernetes-operator", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/kubernetes-operator", + "description": "Kubernetes native Jenkins Operator", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/kubernetes-operator", + "forks_url": "https://api.github.com/repos/jenkinsci/kubernetes-operator/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/kubernetes-operator/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/kubernetes-operator/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/kubernetes-operator/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/kubernetes-operator/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/kubernetes-operator/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/kubernetes-operator/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/kubernetes-operator/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/kubernetes-operator/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/kubernetes-operator/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/kubernetes-operator/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/kubernetes-operator/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/kubernetes-operator/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/kubernetes-operator/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/kubernetes-operator/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/kubernetes-operator/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/kubernetes-operator/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/kubernetes-operator/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/kubernetes-operator/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/kubernetes-operator/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/kubernetes-operator/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/kubernetes-operator/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/kubernetes-operator/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/kubernetes-operator/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/kubernetes-operator/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/kubernetes-operator/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/kubernetes-operator/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/kubernetes-operator/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/kubernetes-operator/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/kubernetes-operator/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/kubernetes-operator/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/kubernetes-operator/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/kubernetes-operator/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/kubernetes-operator/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/kubernetes-operator/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/kubernetes-operator/deployments", + "created_at": "2019-02-11T12:14:03Z", + "updated_at": "2019-10-25T12:05:42Z", + "pushed_at": "2019-10-25T12:05:40Z", + "git_url": "git://github.com/jenkinsci/kubernetes-operator.git", + "ssh_url": "git@github.com:jenkinsci/kubernetes-operator.git", + "clone_url": "https://github.com/jenkinsci/kubernetes-operator.git", + "svn_url": "https://github.com/jenkinsci/kubernetes-operator", + "homepage": "https://jenkinsci.github.io/kubernetes-operator", + "size": 14194, + "stargazers_count": 137, + "watchers_count": 137, + "language": "Go", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": true, + "forks_count": 39, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 18, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 39, + "open_issues": 18, + "watchers": 137, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 170314556, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzAzMTQ1NTY=", + "name": "aqua-serverless-plugin", + "full_name": "jenkinsci/aqua-serverless-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/aqua-serverless-plugin", + "description": "Jenkins plugin for serverless security scanning by Aqua Security", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/aqua-serverless-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/aqua-serverless-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/aqua-serverless-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/aqua-serverless-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/aqua-serverless-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/aqua-serverless-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/aqua-serverless-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/aqua-serverless-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/aqua-serverless-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/aqua-serverless-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/aqua-serverless-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/aqua-serverless-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/aqua-serverless-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/aqua-serverless-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/aqua-serverless-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/aqua-serverless-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/aqua-serverless-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/aqua-serverless-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/aqua-serverless-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/aqua-serverless-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/aqua-serverless-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/aqua-serverless-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/aqua-serverless-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/aqua-serverless-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/aqua-serverless-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/aqua-serverless-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/aqua-serverless-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/aqua-serverless-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/aqua-serverless-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/aqua-serverless-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/aqua-serverless-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/aqua-serverless-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/aqua-serverless-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/aqua-serverless-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/aqua-serverless-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/aqua-serverless-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/aqua-serverless-plugin/deployments", + "created_at": "2019-02-12T12:30:38Z", + "updated_at": "2019-09-12T14:32:05Z", + "pushed_at": "2019-09-09T13:43:21Z", + "git_url": "git://github.com/jenkinsci/aqua-serverless-plugin.git", + "ssh_url": "git@github.com:jenkinsci/aqua-serverless-plugin.git", + "clone_url": "https://github.com/jenkinsci/aqua-serverless-plugin.git", + "svn_url": "https://github.com/jenkinsci/aqua-serverless-plugin", + "homepage": "", + "size": 37, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 170921330, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzA5MjEzMzA=", + "name": "azure-artifact-manager-plugin", + "full_name": "jenkinsci/azure-artifact-manager-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/azure-artifact-manager-plugin", + "description": "Jenkins Azure artifact manager plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/azure-artifact-manager-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/azure-artifact-manager-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/azure-artifact-manager-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/azure-artifact-manager-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/azure-artifact-manager-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/azure-artifact-manager-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/azure-artifact-manager-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/azure-artifact-manager-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/azure-artifact-manager-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/azure-artifact-manager-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/azure-artifact-manager-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/azure-artifact-manager-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/azure-artifact-manager-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/azure-artifact-manager-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/azure-artifact-manager-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/azure-artifact-manager-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/azure-artifact-manager-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/azure-artifact-manager-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/azure-artifact-manager-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/azure-artifact-manager-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/azure-artifact-manager-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/azure-artifact-manager-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/azure-artifact-manager-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/azure-artifact-manager-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/azure-artifact-manager-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/azure-artifact-manager-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/azure-artifact-manager-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/azure-artifact-manager-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/azure-artifact-manager-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/azure-artifact-manager-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/azure-artifact-manager-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/azure-artifact-manager-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/azure-artifact-manager-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/azure-artifact-manager-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/azure-artifact-manager-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/azure-artifact-manager-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/azure-artifact-manager-plugin/deployments", + "created_at": "2019-02-15T20:01:37Z", + "updated_at": "2019-10-08T10:25:07Z", + "pushed_at": "2019-10-04T21:05:44Z", + "git_url": "git://github.com/jenkinsci/azure-artifact-manager-plugin.git", + "ssh_url": "git@github.com:jenkinsci/azure-artifact-manager-plugin.git", + "clone_url": "https://github.com/jenkinsci/azure-artifact-manager-plugin.git", + "svn_url": "https://github.com/jenkinsci/azure-artifact-manager-plugin", + "homepage": null, + "size": 129, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 1, + "watchers": 2, + "default_branch": "dev", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 171706928, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzE3MDY5Mjg=", + "name": "probely-security-plugin", + "full_name": "jenkinsci/probely-security-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/probely-security-plugin", + "description": "Integrate our security scans with your Jenkins CI/CD pipeline", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/probely-security-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/probely-security-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/probely-security-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/probely-security-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/probely-security-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/probely-security-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/probely-security-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/probely-security-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/probely-security-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/probely-security-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/probely-security-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/probely-security-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/probely-security-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/probely-security-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/probely-security-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/probely-security-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/probely-security-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/probely-security-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/probely-security-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/probely-security-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/probely-security-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/probely-security-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/probely-security-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/probely-security-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/probely-security-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/probely-security-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/probely-security-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/probely-security-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/probely-security-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/probely-security-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/probely-security-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/probely-security-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/probely-security-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/probely-security-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/probely-security-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/probely-security-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/probely-security-plugin/deployments", + "created_at": "2019-02-20T16:17:39Z", + "updated_at": "2019-05-21T13:36:57Z", + "pushed_at": "2019-05-21T13:36:55Z", + "git_url": "git://github.com/jenkinsci/probely-security-plugin.git", + "ssh_url": "git@github.com:jenkinsci/probely-security-plugin.git", + "clone_url": "https://github.com/jenkinsci/probely-security-plugin.git", + "svn_url": "https://github.com/jenkinsci/probely-security-plugin", + "homepage": "", + "size": 6002, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 171707560, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzE3MDc1NjA=", + "name": "configuration-as-code-groovy-plugin", + "full_name": "jenkinsci/configuration-as-code-groovy-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/configuration-as-code-groovy-plugin", + "description": "Extension for Jenkins Configuration-as-Code plugin that allows running Groovy scripts", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/configuration-as-code-groovy-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-groovy-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-groovy-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-groovy-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-groovy-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-groovy-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-groovy-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-groovy-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-groovy-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-groovy-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-groovy-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-groovy-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-groovy-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-groovy-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-groovy-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-groovy-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-groovy-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-groovy-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-groovy-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-groovy-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-groovy-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-groovy-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-groovy-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-groovy-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-groovy-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-groovy-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-groovy-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-groovy-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-groovy-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-groovy-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-groovy-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-groovy-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-groovy-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-groovy-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-groovy-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-groovy-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/configuration-as-code-groovy-plugin/deployments", + "created_at": "2019-02-20T16:20:41Z", + "updated_at": "2019-09-16T13:08:58Z", + "pushed_at": "2019-10-08T12:35:21Z", + "git_url": "git://github.com/jenkinsci/configuration-as-code-groovy-plugin.git", + "ssh_url": "git@github.com:jenkinsci/configuration-as-code-groovy-plugin.git", + "clone_url": "https://github.com/jenkinsci/configuration-as-code-groovy-plugin.git", + "svn_url": "https://github.com/jenkinsci/configuration-as-code-groovy-plugin", + "homepage": "https://plugins.jenkins.io/configuration-as-code-groovy", + "size": 23, + "stargazers_count": 12, + "watchers_count": 12, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 2, + "open_issues": 1, + "watchers": 12, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 171787735, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzE3ODc3MzU=", + "name": "fortify-plugin", + "full_name": "jenkinsci/fortify-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/fortify-plugin", + "description": "Fortify Jenkins plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/fortify-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/fortify-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/fortify-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/fortify-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/fortify-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/fortify-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/fortify-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/fortify-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/fortify-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/fortify-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/fortify-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/fortify-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/fortify-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/fortify-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/fortify-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/fortify-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/fortify-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/fortify-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/fortify-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/fortify-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/fortify-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/fortify-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/fortify-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/fortify-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/fortify-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/fortify-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/fortify-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/fortify-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/fortify-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/fortify-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/fortify-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/fortify-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/fortify-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/fortify-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/fortify-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/fortify-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/fortify-plugin/deployments", + "created_at": "2019-02-21T02:43:33Z", + "updated_at": "2019-09-26T01:02:22Z", + "pushed_at": "2019-06-17T23:00:17Z", + "git_url": "git://github.com/jenkinsci/fortify-plugin.git", + "ssh_url": "git@github.com:jenkinsci/fortify-plugin.git", + "clone_url": "https://github.com/jenkinsci/fortify-plugin.git", + "svn_url": "https://github.com/jenkinsci/fortify-plugin", + "homepage": "https://plugins.jenkins.io/fortify", + "size": 218, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 8, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 8, + "open_issues": 1, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 172501629, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzI1MDE2Mjk=", + "name": "scm-httpclient-plugin", + "full_name": "jenkinsci/scm-httpclient-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/scm-httpclient-plugin", + "description": "The Plugin for Jenkins to trigger service calls", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/scm-httpclient-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/scm-httpclient-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/scm-httpclient-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/scm-httpclient-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/scm-httpclient-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/scm-httpclient-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/scm-httpclient-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/scm-httpclient-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/scm-httpclient-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/scm-httpclient-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/scm-httpclient-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/scm-httpclient-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/scm-httpclient-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/scm-httpclient-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/scm-httpclient-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/scm-httpclient-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/scm-httpclient-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/scm-httpclient-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/scm-httpclient-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/scm-httpclient-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/scm-httpclient-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/scm-httpclient-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/scm-httpclient-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/scm-httpclient-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/scm-httpclient-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/scm-httpclient-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/scm-httpclient-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/scm-httpclient-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/scm-httpclient-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/scm-httpclient-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/scm-httpclient-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/scm-httpclient-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/scm-httpclient-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/scm-httpclient-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/scm-httpclient-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/scm-httpclient-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/scm-httpclient-plugin/deployments", + "created_at": "2019-02-25T12:26:56Z", + "updated_at": "2019-10-23T04:14:20Z", + "pushed_at": "2019-07-02T02:47:54Z", + "git_url": "git://github.com/jenkinsci/scm-httpclient-plugin.git", + "ssh_url": "git@github.com:jenkinsci/scm-httpclient-plugin.git", + "clone_url": "https://github.com/jenkinsci/scm-httpclient-plugin.git", + "svn_url": "https://github.com/jenkinsci/scm-httpclient-plugin", + "homepage": "", + "size": 1606, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 172502179, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzI1MDIxNzk=", + "name": "phabricator-k8s-plugin", + "full_name": "jenkinsci/phabricator-k8s-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/phabricator-k8s-plugin", + "description": "Jenkins Plugin to integrate Phabricator credentials with k8s credentials provider", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/phabricator-k8s-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/phabricator-k8s-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/phabricator-k8s-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/phabricator-k8s-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/phabricator-k8s-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/phabricator-k8s-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/phabricator-k8s-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/phabricator-k8s-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/phabricator-k8s-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/phabricator-k8s-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/phabricator-k8s-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/phabricator-k8s-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/phabricator-k8s-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/phabricator-k8s-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/phabricator-k8s-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/phabricator-k8s-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/phabricator-k8s-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/phabricator-k8s-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/phabricator-k8s-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/phabricator-k8s-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/phabricator-k8s-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/phabricator-k8s-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/phabricator-k8s-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/phabricator-k8s-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/phabricator-k8s-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/phabricator-k8s-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/phabricator-k8s-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/phabricator-k8s-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/phabricator-k8s-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/phabricator-k8s-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/phabricator-k8s-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/phabricator-k8s-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/phabricator-k8s-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/phabricator-k8s-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/phabricator-k8s-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/phabricator-k8s-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/phabricator-k8s-plugin/deployments", + "created_at": "2019-02-25T12:30:50Z", + "updated_at": "2019-03-10T17:33:18Z", + "pushed_at": "2019-03-10T17:33:17Z", + "git_url": "git://github.com/jenkinsci/phabricator-k8s-plugin.git", + "ssh_url": "git@github.com:jenkinsci/phabricator-k8s-plugin.git", + "clone_url": "https://github.com/jenkinsci/phabricator-k8s-plugin.git", + "svn_url": "https://github.com/jenkinsci/phabricator-k8s-plugin", + "homepage": null, + "size": 8, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 172503539, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzI1MDM1Mzk=", + "name": "pipeline-reporter-plugin", + "full_name": "jenkinsci/pipeline-reporter-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pipeline-reporter-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/pipeline-reporter-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pipeline-reporter-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pipeline-reporter-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pipeline-reporter-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pipeline-reporter-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pipeline-reporter-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pipeline-reporter-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pipeline-reporter-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pipeline-reporter-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pipeline-reporter-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pipeline-reporter-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pipeline-reporter-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pipeline-reporter-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pipeline-reporter-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pipeline-reporter-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pipeline-reporter-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pipeline-reporter-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pipeline-reporter-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pipeline-reporter-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pipeline-reporter-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pipeline-reporter-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pipeline-reporter-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pipeline-reporter-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pipeline-reporter-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pipeline-reporter-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pipeline-reporter-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pipeline-reporter-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pipeline-reporter-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pipeline-reporter-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pipeline-reporter-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pipeline-reporter-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pipeline-reporter-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pipeline-reporter-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pipeline-reporter-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pipeline-reporter-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pipeline-reporter-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pipeline-reporter-plugin/deployments", + "created_at": "2019-02-25T12:40:12Z", + "updated_at": "2019-02-25T12:40:30Z", + "pushed_at": "2019-02-24T17:42:15Z", + "git_url": "git://github.com/jenkinsci/pipeline-reporter-plugin.git", + "ssh_url": "git@github.com:jenkinsci/pipeline-reporter-plugin.git", + "clone_url": "https://github.com/jenkinsci/pipeline-reporter-plugin.git", + "svn_url": "https://github.com/jenkinsci/pipeline-reporter-plugin", + "homepage": null, + "size": 14, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 173380604, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzMzODA2MDQ=", + "name": "misra-compliance-report-generator-plugin", + "full_name": "jenkinsci/misra-compliance-report-generator-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/misra-compliance-report-generator-plugin", + "description": "A Jenkins plugin which creates MISRA compliance reports (Guideline Compliance Summaries) for your builds", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/misra-compliance-report-generator-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/misra-compliance-report-generator-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/misra-compliance-report-generator-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/misra-compliance-report-generator-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/misra-compliance-report-generator-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/misra-compliance-report-generator-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/misra-compliance-report-generator-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/misra-compliance-report-generator-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/misra-compliance-report-generator-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/misra-compliance-report-generator-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/misra-compliance-report-generator-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/misra-compliance-report-generator-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/misra-compliance-report-generator-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/misra-compliance-report-generator-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/misra-compliance-report-generator-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/misra-compliance-report-generator-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/misra-compliance-report-generator-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/misra-compliance-report-generator-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/misra-compliance-report-generator-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/misra-compliance-report-generator-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/misra-compliance-report-generator-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/misra-compliance-report-generator-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/misra-compliance-report-generator-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/misra-compliance-report-generator-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/misra-compliance-report-generator-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/misra-compliance-report-generator-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/misra-compliance-report-generator-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/misra-compliance-report-generator-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/misra-compliance-report-generator-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/misra-compliance-report-generator-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/misra-compliance-report-generator-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/misra-compliance-report-generator-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/misra-compliance-report-generator-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/misra-compliance-report-generator-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/misra-compliance-report-generator-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/misra-compliance-report-generator-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/misra-compliance-report-generator-plugin/deployments", + "created_at": "2019-03-01T23:19:52Z", + "updated_at": "2019-05-07T14:26:48Z", + "pushed_at": "2019-07-24T08:18:28Z", + "git_url": "git://github.com/jenkinsci/misra-compliance-report-generator-plugin.git", + "ssh_url": "git@github.com:jenkinsci/misra-compliance-report-generator-plugin.git", + "clone_url": "https://github.com/jenkinsci/misra-compliance-report-generator-plugin.git", + "svn_url": "https://github.com/jenkinsci/misra-compliance-report-generator-plugin", + "homepage": null, + "size": 161, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 1, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 174116264, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzQxMTYyNjQ=", + "name": "jenkins-fixtures", + "full_name": "jenkinsci/jenkins-fixtures", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jenkins-fixtures", + "description": "Test utility library to launch Jenkins for test deteched from testing JVM", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jenkins-fixtures", + "forks_url": "https://api.github.com/repos/jenkinsci/jenkins-fixtures/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jenkins-fixtures/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jenkins-fixtures/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jenkins-fixtures/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jenkins-fixtures/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jenkins-fixtures/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jenkins-fixtures/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jenkins-fixtures/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jenkins-fixtures/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jenkins-fixtures/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jenkins-fixtures/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jenkins-fixtures/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jenkins-fixtures/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jenkins-fixtures/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jenkins-fixtures/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jenkins-fixtures/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jenkins-fixtures/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jenkins-fixtures/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jenkins-fixtures/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jenkins-fixtures/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jenkins-fixtures/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jenkins-fixtures/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jenkins-fixtures/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jenkins-fixtures/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jenkins-fixtures/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jenkins-fixtures/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jenkins-fixtures/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jenkins-fixtures/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jenkins-fixtures/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jenkins-fixtures/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jenkins-fixtures/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jenkins-fixtures/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jenkins-fixtures/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jenkins-fixtures/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jenkins-fixtures/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jenkins-fixtures/deployments", + "created_at": "2019-03-06T09:42:04Z", + "updated_at": "2019-03-06T09:42:04Z", + "pushed_at": "2019-03-06T09:42:05Z", + "git_url": "git://github.com/jenkinsci/jenkins-fixtures.git", + "ssh_url": "git@github.com:jenkinsci/jenkins-fixtures.git", + "clone_url": "https://github.com/jenkinsci/jenkins-fixtures.git", + "svn_url": "https://github.com/jenkinsci/jenkins-fixtures", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 174409202, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzQ0MDkyMDI=", + "name": "templating-engine-plugin", + "full_name": "jenkinsci/templating-engine-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/templating-engine-plugin", + "description": "The Jenkins Templating Engine allows you to create tool agnostic, templated workflows to be shared by multiple teams", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/templating-engine-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/templating-engine-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/templating-engine-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/templating-engine-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/templating-engine-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/templating-engine-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/templating-engine-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/templating-engine-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/templating-engine-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/templating-engine-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/templating-engine-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/templating-engine-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/templating-engine-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/templating-engine-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/templating-engine-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/templating-engine-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/templating-engine-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/templating-engine-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/templating-engine-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/templating-engine-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/templating-engine-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/templating-engine-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/templating-engine-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/templating-engine-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/templating-engine-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/templating-engine-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/templating-engine-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/templating-engine-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/templating-engine-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/templating-engine-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/templating-engine-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/templating-engine-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/templating-engine-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/templating-engine-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/templating-engine-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/templating-engine-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/templating-engine-plugin/deployments", + "created_at": "2019-03-07T19:43:41Z", + "updated_at": "2019-10-25T16:22:24Z", + "pushed_at": "2019-10-25T18:40:19Z", + "git_url": "git://github.com/jenkinsci/templating-engine-plugin.git", + "ssh_url": "git@github.com:jenkinsci/templating-engine-plugin.git", + "clone_url": "https://github.com/jenkinsci/templating-engine-plugin.git", + "svn_url": "https://github.com/jenkinsci/templating-engine-plugin", + "homepage": "", + "size": 10637, + "stargazers_count": 26, + "watchers_count": 26, + "language": "Groovy", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": true, + "forks_count": 8, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 8, + "open_issues": 3, + "watchers": 26, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 174411151, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzQ0MTExNTE=", + "name": "user1st-utester-plugin", + "full_name": "jenkinsci/user1st-utester-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/user1st-utester-plugin", + "description": "uTester Plugin for Jenkins ", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/user1st-utester-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/user1st-utester-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/user1st-utester-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/user1st-utester-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/user1st-utester-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/user1st-utester-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/user1st-utester-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/user1st-utester-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/user1st-utester-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/user1st-utester-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/user1st-utester-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/user1st-utester-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/user1st-utester-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/user1st-utester-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/user1st-utester-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/user1st-utester-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/user1st-utester-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/user1st-utester-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/user1st-utester-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/user1st-utester-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/user1st-utester-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/user1st-utester-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/user1st-utester-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/user1st-utester-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/user1st-utester-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/user1st-utester-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/user1st-utester-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/user1st-utester-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/user1st-utester-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/user1st-utester-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/user1st-utester-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/user1st-utester-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/user1st-utester-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/user1st-utester-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/user1st-utester-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/user1st-utester-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/user1st-utester-plugin/deployments", + "created_at": "2019-03-07T19:56:53Z", + "updated_at": "2019-06-06T21:26:08Z", + "pushed_at": "2019-06-06T21:26:07Z", + "git_url": "git://github.com/jenkinsci/user1st-utester-plugin.git", + "ssh_url": "git@github.com:jenkinsci/user1st-utester-plugin.git", + "clone_url": "https://github.com/jenkinsci/user1st-utester-plugin.git", + "svn_url": "https://github.com/jenkinsci/user1st-utester-plugin", + "homepage": null, + "size": 177, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 174778203, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzQ3NzgyMDM=", + "name": "jnlp-agents", + "full_name": "jenkinsci/jnlp-agents", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jnlp-agents", + "description": "Jenkins JNLP-based agents with tools built in.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jnlp-agents", + "forks_url": "https://api.github.com/repos/jenkinsci/jnlp-agents/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jnlp-agents/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jnlp-agents/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jnlp-agents/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jnlp-agents/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jnlp-agents/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jnlp-agents/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jnlp-agents/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jnlp-agents/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jnlp-agents/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jnlp-agents/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jnlp-agents/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jnlp-agents/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jnlp-agents/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jnlp-agents/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jnlp-agents/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jnlp-agents/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jnlp-agents/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jnlp-agents/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jnlp-agents/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jnlp-agents/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jnlp-agents/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jnlp-agents/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jnlp-agents/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jnlp-agents/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jnlp-agents/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jnlp-agents/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jnlp-agents/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jnlp-agents/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jnlp-agents/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jnlp-agents/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jnlp-agents/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jnlp-agents/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jnlp-agents/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jnlp-agents/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jnlp-agents/deployments", + "created_at": "2019-03-10T04:36:43Z", + "updated_at": "2019-09-23T18:01:50Z", + "pushed_at": "2019-10-02T07:18:46Z", + "git_url": "git://github.com/jenkinsci/jnlp-agents.git", + "ssh_url": "git@github.com:jenkinsci/jnlp-agents.git", + "clone_url": "https://github.com/jenkinsci/jnlp-agents.git", + "svn_url": "https://github.com/jenkinsci/jnlp-agents", + "homepage": "", + "size": 32, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Dockerfile", + "has_issues": false, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 8, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 8, + "open_issues": 2, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 175810536, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzU4MTA1MzY=", + "name": "mathworks-polyspace-plugin", + "full_name": "jenkinsci/mathworks-polyspace-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/mathworks-polyspace-plugin", + "description": "This plugin integrates Polyspace (R) products with Jenkins for automated analysis. Polyspace (R) static code analysis products can prove absence of critical run-time errors using formal methods, find hundreds of classes of bugs, and check for adherence to coding rules (MISRA C, MISRA C++, JSF++) and security rules (CWE, CERT-C, CERT-C++, ISO/IEC 17961).", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/mathworks-polyspace-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/mathworks-polyspace-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/mathworks-polyspace-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/mathworks-polyspace-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/mathworks-polyspace-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/mathworks-polyspace-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/mathworks-polyspace-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/mathworks-polyspace-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/mathworks-polyspace-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/mathworks-polyspace-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/mathworks-polyspace-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/mathworks-polyspace-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/mathworks-polyspace-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/mathworks-polyspace-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/mathworks-polyspace-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/mathworks-polyspace-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/mathworks-polyspace-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/mathworks-polyspace-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/mathworks-polyspace-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/mathworks-polyspace-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/mathworks-polyspace-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/mathworks-polyspace-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/mathworks-polyspace-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/mathworks-polyspace-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/mathworks-polyspace-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/mathworks-polyspace-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/mathworks-polyspace-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/mathworks-polyspace-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/mathworks-polyspace-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/mathworks-polyspace-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/mathworks-polyspace-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/mathworks-polyspace-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/mathworks-polyspace-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/mathworks-polyspace-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/mathworks-polyspace-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/mathworks-polyspace-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/mathworks-polyspace-plugin/deployments", + "created_at": "2019-03-15T11:49:04Z", + "updated_at": "2019-09-24T13:20:10Z", + "pushed_at": "2019-04-24T13:23:19Z", + "git_url": "git://github.com/jenkinsci/mathworks-polyspace-plugin.git", + "ssh_url": "git@github.com:jenkinsci/mathworks-polyspace-plugin.git", + "clone_url": "https://github.com/jenkinsci/mathworks-polyspace-plugin.git", + "svn_url": "https://github.com/jenkinsci/mathworks-polyspace-plugin", + "homepage": "", + "size": 77, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 175901902, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzU5MDE5MDI=", + "name": "lib-revapi-hpi-extractor", + "full_name": "jenkinsci/lib-revapi-hpi-extractor", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/lib-revapi-hpi-extractor", + "description": "Extracts classes of Jenkins Plugin Archives so that these could be used in a RevApi analysis ", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/lib-revapi-hpi-extractor", + "forks_url": "https://api.github.com/repos/jenkinsci/lib-revapi-hpi-extractor/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/lib-revapi-hpi-extractor/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/lib-revapi-hpi-extractor/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/lib-revapi-hpi-extractor/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/lib-revapi-hpi-extractor/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/lib-revapi-hpi-extractor/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/lib-revapi-hpi-extractor/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/lib-revapi-hpi-extractor/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/lib-revapi-hpi-extractor/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/lib-revapi-hpi-extractor/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/lib-revapi-hpi-extractor/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/lib-revapi-hpi-extractor/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/lib-revapi-hpi-extractor/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/lib-revapi-hpi-extractor/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/lib-revapi-hpi-extractor/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/lib-revapi-hpi-extractor/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/lib-revapi-hpi-extractor/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/lib-revapi-hpi-extractor/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/lib-revapi-hpi-extractor/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/lib-revapi-hpi-extractor/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/lib-revapi-hpi-extractor/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/lib-revapi-hpi-extractor/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/lib-revapi-hpi-extractor/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/lib-revapi-hpi-extractor/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/lib-revapi-hpi-extractor/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/lib-revapi-hpi-extractor/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/lib-revapi-hpi-extractor/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/lib-revapi-hpi-extractor/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/lib-revapi-hpi-extractor/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/lib-revapi-hpi-extractor/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/lib-revapi-hpi-extractor/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/lib-revapi-hpi-extractor/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/lib-revapi-hpi-extractor/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/lib-revapi-hpi-extractor/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/lib-revapi-hpi-extractor/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/lib-revapi-hpi-extractor/deployments", + "created_at": "2019-03-15T23:01:09Z", + "updated_at": "2019-03-21T20:56:37Z", + "pushed_at": "2019-03-21T20:56:36Z", + "git_url": "git://github.com/jenkinsci/lib-revapi-hpi-extractor.git", + "ssh_url": "git@github.com:jenkinsci/lib-revapi-hpi-extractor.git", + "clone_url": "https://github.com/jenkinsci/lib-revapi-hpi-extractor.git", + "svn_url": "https://github.com/jenkinsci/lib-revapi-hpi-extractor", + "homepage": null, + "size": 15, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 176313064, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzYzMTMwNjQ=", + "name": "console-navigation-plugin", + "full_name": "jenkinsci/console-navigation-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/console-navigation-plugin", + "description": "This plugin shows a back to top button in the jenkins console log", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/console-navigation-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/console-navigation-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/console-navigation-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/console-navigation-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/console-navigation-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/console-navigation-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/console-navigation-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/console-navigation-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/console-navigation-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/console-navigation-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/console-navigation-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/console-navigation-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/console-navigation-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/console-navigation-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/console-navigation-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/console-navigation-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/console-navigation-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/console-navigation-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/console-navigation-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/console-navigation-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/console-navigation-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/console-navigation-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/console-navigation-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/console-navigation-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/console-navigation-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/console-navigation-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/console-navigation-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/console-navigation-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/console-navigation-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/console-navigation-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/console-navigation-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/console-navigation-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/console-navigation-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/console-navigation-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/console-navigation-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/console-navigation-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/console-navigation-plugin/deployments", + "created_at": "2019-03-18T15:15:59Z", + "updated_at": "2019-07-03T22:18:13Z", + "pushed_at": "2019-03-21T11:11:02Z", + "git_url": "git://github.com/jenkinsci/console-navigation-plugin.git", + "ssh_url": "git@github.com:jenkinsci/console-navigation-plugin.git", + "clone_url": "https://github.com/jenkinsci/console-navigation-plugin.git", + "svn_url": "https://github.com/jenkinsci/console-navigation-plugin", + "homepage": null, + "size": 81, + "stargazers_count": 2, + "watchers_count": 2, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 2, + "default_branch": "develop", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 177026428, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzcwMjY0Mjg=", + "name": "codebuilder-cloud-plugin", + "full_name": "jenkinsci/codebuilder-cloud-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/codebuilder-cloud-plugin", + "description": "CodeBuilder Plugin for Jenkins: Dynamically provisions build agents using AWS CodeBuild", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/codebuilder-cloud-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/codebuilder-cloud-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/codebuilder-cloud-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/codebuilder-cloud-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/codebuilder-cloud-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/codebuilder-cloud-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/codebuilder-cloud-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/codebuilder-cloud-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/codebuilder-cloud-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/codebuilder-cloud-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/codebuilder-cloud-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/codebuilder-cloud-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/codebuilder-cloud-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/codebuilder-cloud-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/codebuilder-cloud-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/codebuilder-cloud-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/codebuilder-cloud-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/codebuilder-cloud-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/codebuilder-cloud-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/codebuilder-cloud-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/codebuilder-cloud-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/codebuilder-cloud-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/codebuilder-cloud-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/codebuilder-cloud-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/codebuilder-cloud-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/codebuilder-cloud-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/codebuilder-cloud-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/codebuilder-cloud-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/codebuilder-cloud-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/codebuilder-cloud-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/codebuilder-cloud-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/codebuilder-cloud-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/codebuilder-cloud-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/codebuilder-cloud-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/codebuilder-cloud-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/codebuilder-cloud-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/codebuilder-cloud-plugin/deployments", + "created_at": "2019-03-21T21:28:39Z", + "updated_at": "2019-10-17T14:10:10Z", + "pushed_at": "2019-10-18T14:56:42Z", + "git_url": "git://github.com/jenkinsci/codebuilder-cloud-plugin.git", + "ssh_url": "git@github.com:jenkinsci/codebuilder-cloud-plugin.git", + "clone_url": "https://github.com/jenkinsci/codebuilder-cloud-plugin.git", + "svn_url": "https://github.com/jenkinsci/codebuilder-cloud-plugin", + "homepage": "https://wiki.jenkins.io/display/JENKINS/CodeBuilder%3A+AWS+CodeBuild+Cloud+Agents+Plugin", + "size": 78, + "stargazers_count": 7, + "watchers_count": 7, + "language": "Java", + "has_issues": false, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 5, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 6, + "open_issues": 5, + "watchers": 7, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 177027504, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzcwMjc1MDQ=", + "name": "rapid7-insightvm-container-assessment-plugin", + "full_name": "jenkinsci/rapid7-insightvm-container-assessment-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/rapid7-insightvm-container-assessment-plugin", + "description": "Jenkins plugin for InsightVM Container Image Assessment", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/rapid7-insightvm-container-assessment-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/rapid7-insightvm-container-assessment-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/rapid7-insightvm-container-assessment-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/rapid7-insightvm-container-assessment-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/rapid7-insightvm-container-assessment-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/rapid7-insightvm-container-assessment-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/rapid7-insightvm-container-assessment-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/rapid7-insightvm-container-assessment-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/rapid7-insightvm-container-assessment-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/rapid7-insightvm-container-assessment-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/rapid7-insightvm-container-assessment-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/rapid7-insightvm-container-assessment-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/rapid7-insightvm-container-assessment-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/rapid7-insightvm-container-assessment-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/rapid7-insightvm-container-assessment-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/rapid7-insightvm-container-assessment-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/rapid7-insightvm-container-assessment-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/rapid7-insightvm-container-assessment-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/rapid7-insightvm-container-assessment-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/rapid7-insightvm-container-assessment-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/rapid7-insightvm-container-assessment-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/rapid7-insightvm-container-assessment-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/rapid7-insightvm-container-assessment-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/rapid7-insightvm-container-assessment-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/rapid7-insightvm-container-assessment-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/rapid7-insightvm-container-assessment-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/rapid7-insightvm-container-assessment-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/rapid7-insightvm-container-assessment-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/rapid7-insightvm-container-assessment-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/rapid7-insightvm-container-assessment-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/rapid7-insightvm-container-assessment-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/rapid7-insightvm-container-assessment-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/rapid7-insightvm-container-assessment-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/rapid7-insightvm-container-assessment-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/rapid7-insightvm-container-assessment-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/rapid7-insightvm-container-assessment-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/rapid7-insightvm-container-assessment-plugin/deployments", + "created_at": "2019-03-21T21:38:21Z", + "updated_at": "2019-10-03T21:48:15Z", + "pushed_at": "2019-10-03T21:48:13Z", + "git_url": "git://github.com/jenkinsci/rapid7-insightvm-container-assessment-plugin.git", + "ssh_url": "git@github.com:jenkinsci/rapid7-insightvm-container-assessment-plugin.git", + "clone_url": "https://github.com/jenkinsci/rapid7-insightvm-container-assessment-plugin.git", + "svn_url": "https://github.com/jenkinsci/rapid7-insightvm-container-assessment-plugin", + "homepage": null, + "size": 478, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 2, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/__files/organizations_107424_repos-8315bb73-ac7c-4890-83ee-8802c5eb57a6.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/__files/organizations_107424_repos-8315bb73-ac7c-4890-83ee-8802c5eb57a6.json new file mode 100644 index 0000000000..c4757121ec --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/__files/organizations_107424_repos-8315bb73-ac7c-4890-83ee-8802c5eb57a6.json @@ -0,0 +1,10142 @@ +[ + { + "id": 16439001, + "node_id": "MDEwOlJlcG9zaXRvcnkxNjQzOTAwMQ==", + "name": "deployment-notification-plugin", + "full_name": "jenkinsci/deployment-notification-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/deployment-notification-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/deployment-notification-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/deployment-notification-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/deployment-notification-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/deployment-notification-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/deployment-notification-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/deployment-notification-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/deployment-notification-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/deployment-notification-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/deployment-notification-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/deployment-notification-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/deployment-notification-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/deployment-notification-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/deployment-notification-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/deployment-notification-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/deployment-notification-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/deployment-notification-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/deployment-notification-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/deployment-notification-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/deployment-notification-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/deployment-notification-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/deployment-notification-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/deployment-notification-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/deployment-notification-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/deployment-notification-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/deployment-notification-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/deployment-notification-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/deployment-notification-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/deployment-notification-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/deployment-notification-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/deployment-notification-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/deployment-notification-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/deployment-notification-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/deployment-notification-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/deployment-notification-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/deployment-notification-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/deployment-notification-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/deployment-notification-plugin/deployments", + "created_at": "2014-02-01T17:48:29Z", + "updated_at": "2016-04-12T22:55:49Z", + "pushed_at": "2019-10-08T12:16:55Z", + "git_url": "git://github.com/jenkinsci/deployment-notification-plugin.git", + "ssh_url": "git@github.com:jenkinsci/deployment-notification-plugin.git", + "clone_url": "https://github.com/jenkinsci/deployment-notification-plugin.git", + "svn_url": "https://github.com/jenkinsci/deployment-notification-plugin", + "homepage": "", + "size": 116, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 2, + "open_issues": 1, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 16453567, + "node_id": "MDEwOlJlcG9zaXRvcnkxNjQ1MzU2Nw==", + "name": "typetalk-plugin", + "full_name": "jenkinsci/typetalk-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/typetalk-plugin", + "description": "This is a Jenkins plugin which notifies to Typetalk ( https://typetalk.com/ )", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/typetalk-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/typetalk-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/typetalk-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/typetalk-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/typetalk-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/typetalk-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/typetalk-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/typetalk-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/typetalk-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/typetalk-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/typetalk-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/typetalk-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/typetalk-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/typetalk-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/typetalk-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/typetalk-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/typetalk-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/typetalk-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/typetalk-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/typetalk-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/typetalk-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/typetalk-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/typetalk-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/typetalk-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/typetalk-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/typetalk-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/typetalk-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/typetalk-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/typetalk-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/typetalk-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/typetalk-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/typetalk-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/typetalk-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/typetalk-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/typetalk-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/typetalk-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/typetalk-plugin/deployments", + "created_at": "2014-02-02T11:38:45Z", + "updated_at": "2019-07-11T08:21:43Z", + "pushed_at": "2019-07-11T08:21:41Z", + "git_url": "git://github.com/jenkinsci/typetalk-plugin.git", + "ssh_url": "git@github.com:jenkinsci/typetalk-plugin.git", + "clone_url": "https://github.com/jenkinsci/typetalk-plugin.git", + "svn_url": "https://github.com/jenkinsci/typetalk-plugin", + "homepage": "", + "size": 322, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 3, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 16464264, + "node_id": "MDEwOlJlcG9zaXRvcnkxNjQ2NDI2NA==", + "name": "schedule-build-plugin", + "full_name": "jenkinsci/schedule-build-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/schedule-build-plugin", + "description": "Adds capability to schedule a build for a later point in time.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/schedule-build-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/schedule-build-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/schedule-build-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/schedule-build-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/schedule-build-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/schedule-build-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/schedule-build-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/schedule-build-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/schedule-build-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/schedule-build-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/schedule-build-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/schedule-build-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/schedule-build-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/schedule-build-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/schedule-build-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/schedule-build-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/schedule-build-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/schedule-build-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/schedule-build-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/schedule-build-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/schedule-build-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/schedule-build-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/schedule-build-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/schedule-build-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/schedule-build-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/schedule-build-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/schedule-build-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/schedule-build-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/schedule-build-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/schedule-build-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/schedule-build-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/schedule-build-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/schedule-build-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/schedule-build-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/schedule-build-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/schedule-build-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/schedule-build-plugin/deployments", + "created_at": "2014-02-02T21:55:40Z", + "updated_at": "2019-10-22T01:16:56Z", + "pushed_at": "2019-10-22T01:16:54Z", + "git_url": "git://github.com/jenkinsci/schedule-build-plugin.git", + "ssh_url": "git@github.com:jenkinsci/schedule-build-plugin.git", + "clone_url": "https://github.com/jenkinsci/schedule-build-plugin.git", + "svn_url": "https://github.com/jenkinsci/schedule-build-plugin", + "homepage": "https://plugins.jenkins.io/schedule-build", + "size": 76, + "stargazers_count": 6, + "watchers_count": 6, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 20, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 20, + "open_issues": 0, + "watchers": 6, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 16540826, + "node_id": "MDEwOlJlcG9zaXRvcnkxNjU0MDgyNg==", + "name": "wwpass-plugin", + "full_name": "jenkinsci/wwpass-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/wwpass-plugin", + "description": "Plugin for Jenkins CI, which implements authentucation via WWPass System", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/wwpass-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/wwpass-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/wwpass-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/wwpass-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/wwpass-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/wwpass-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/wwpass-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/wwpass-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/wwpass-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/wwpass-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/wwpass-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/wwpass-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/wwpass-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/wwpass-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/wwpass-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/wwpass-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/wwpass-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/wwpass-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/wwpass-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/wwpass-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/wwpass-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/wwpass-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/wwpass-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/wwpass-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/wwpass-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/wwpass-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/wwpass-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/wwpass-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/wwpass-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/wwpass-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/wwpass-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/wwpass-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/wwpass-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/wwpass-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/wwpass-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/wwpass-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/wwpass-plugin/deployments", + "created_at": "2014-02-05T09:52:41Z", + "updated_at": "2017-03-14T14:28:47Z", + "pushed_at": "2017-03-15T17:40:33Z", + "git_url": "git://github.com/jenkinsci/wwpass-plugin.git", + "ssh_url": "git@github.com:jenkinsci/wwpass-plugin.git", + "clone_url": "https://github.com/jenkinsci/wwpass-plugin.git", + "svn_url": "https://github.com/jenkinsci/wwpass-plugin", + "homepage": "", + "size": 84, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 16555339, + "node_id": "MDEwOlJlcG9zaXRvcnkxNjU1NTMzOQ==", + "name": "adaptive-disconnector-plugin", + "full_name": "jenkinsci/adaptive-disconnector-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/adaptive-disconnector-plugin", + "description": "Jenkins plugin to rerun node monitors after every failed build to put node offline as soon as possible", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/adaptive-disconnector-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/adaptive-disconnector-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/adaptive-disconnector-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/adaptive-disconnector-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/adaptive-disconnector-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/adaptive-disconnector-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/adaptive-disconnector-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/adaptive-disconnector-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/adaptive-disconnector-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/adaptive-disconnector-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/adaptive-disconnector-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/adaptive-disconnector-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/adaptive-disconnector-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/adaptive-disconnector-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/adaptive-disconnector-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/adaptive-disconnector-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/adaptive-disconnector-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/adaptive-disconnector-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/adaptive-disconnector-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/adaptive-disconnector-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/adaptive-disconnector-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/adaptive-disconnector-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/adaptive-disconnector-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/adaptive-disconnector-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/adaptive-disconnector-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/adaptive-disconnector-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/adaptive-disconnector-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/adaptive-disconnector-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/adaptive-disconnector-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/adaptive-disconnector-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/adaptive-disconnector-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/adaptive-disconnector-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/adaptive-disconnector-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/adaptive-disconnector-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/adaptive-disconnector-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/adaptive-disconnector-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/adaptive-disconnector-plugin/deployments", + "created_at": "2014-02-05T19:21:31Z", + "updated_at": "2014-10-30T21:12:30Z", + "pushed_at": "2017-08-18T12:51:40Z", + "git_url": "git://github.com/jenkinsci/adaptive-disconnector-plugin.git", + "ssh_url": "git@github.com:jenkinsci/adaptive-disconnector-plugin.git", + "clone_url": "https://github.com/jenkinsci/adaptive-disconnector-plugin.git", + "svn_url": "https://github.com/jenkinsci/adaptive-disconnector-plugin", + "homepage": null, + "size": 15, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 16810932, + "node_id": "MDEwOlJlcG9zaXRvcnkxNjgxMDkzMg==", + "name": "puppet-plugin", + "full_name": "jenkinsci/puppet-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/puppet-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/puppet-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/puppet-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/puppet-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/puppet-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/puppet-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/puppet-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/puppet-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/puppet-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/puppet-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/puppet-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/puppet-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/puppet-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/puppet-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/puppet-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/puppet-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/puppet-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/puppet-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/puppet-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/puppet-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/puppet-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/puppet-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/puppet-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/puppet-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/puppet-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/puppet-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/puppet-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/puppet-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/puppet-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/puppet-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/puppet-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/puppet-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/puppet-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/puppet-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/puppet-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/puppet-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/puppet-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/puppet-plugin/deployments", + "created_at": "2014-02-13T17:34:26Z", + "updated_at": "2016-03-26T15:02:37Z", + "pushed_at": "2019-10-08T16:36:55Z", + "git_url": "git://github.com/jenkinsci/puppet-plugin.git", + "ssh_url": "git@github.com:jenkinsci/puppet-plugin.git", + "clone_url": "https://github.com/jenkinsci/puppet-plugin.git", + "svn_url": "https://github.com/jenkinsci/puppet-plugin", + "homepage": "", + "size": 112, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 10, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 10, + "open_issues": 1, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 16917355, + "node_id": "MDEwOlJlcG9zaXRvcnkxNjkxNzM1NQ==", + "name": "antisamy-markup-formatter-plugin", + "full_name": "jenkinsci/antisamy-markup-formatter-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/antisamy-markup-formatter-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/antisamy-markup-formatter-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/antisamy-markup-formatter-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/antisamy-markup-formatter-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/antisamy-markup-formatter-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/antisamy-markup-formatter-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/antisamy-markup-formatter-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/antisamy-markup-formatter-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/antisamy-markup-formatter-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/antisamy-markup-formatter-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/antisamy-markup-formatter-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/antisamy-markup-formatter-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/antisamy-markup-formatter-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/antisamy-markup-formatter-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/antisamy-markup-formatter-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/antisamy-markup-formatter-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/antisamy-markup-formatter-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/antisamy-markup-formatter-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/antisamy-markup-formatter-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/antisamy-markup-formatter-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/antisamy-markup-formatter-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/antisamy-markup-formatter-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/antisamy-markup-formatter-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/antisamy-markup-formatter-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/antisamy-markup-formatter-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/antisamy-markup-formatter-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/antisamy-markup-formatter-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/antisamy-markup-formatter-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/antisamy-markup-formatter-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/antisamy-markup-formatter-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/antisamy-markup-formatter-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/antisamy-markup-formatter-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/antisamy-markup-formatter-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/antisamy-markup-formatter-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/antisamy-markup-formatter-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/antisamy-markup-formatter-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/antisamy-markup-formatter-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/antisamy-markup-formatter-plugin/deployments", + "created_at": "2014-02-17T15:36:48Z", + "updated_at": "2019-08-27T21:02:38Z", + "pushed_at": "2019-09-08T22:06:07Z", + "git_url": "git://github.com/jenkinsci/antisamy-markup-formatter-plugin.git", + "ssh_url": "git@github.com:jenkinsci/antisamy-markup-formatter-plugin.git", + "clone_url": "https://github.com/jenkinsci/antisamy-markup-formatter-plugin.git", + "svn_url": "https://github.com/jenkinsci/antisamy-markup-formatter-plugin", + "homepage": "http://wiki.jenkins-ci.org/display/JENKINS/OWASP+Markup+Formatter+Plugin", + "size": 40, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 18, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 18, + "open_issues": 2, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 16920763, + "node_id": "MDEwOlJlcG9zaXRvcnkxNjkyMDc2Mw==", + "name": "puppet-jenkinstracking", + "full_name": "jenkinsci/puppet-jenkinstracking", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/puppet-jenkinstracking", + "description": "Puppet module to integrate with Jenkins Puppet plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/puppet-jenkinstracking", + "forks_url": "https://api.github.com/repos/jenkinsci/puppet-jenkinstracking/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/puppet-jenkinstracking/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/puppet-jenkinstracking/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/puppet-jenkinstracking/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/puppet-jenkinstracking/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/puppet-jenkinstracking/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/puppet-jenkinstracking/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/puppet-jenkinstracking/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/puppet-jenkinstracking/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/puppet-jenkinstracking/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/puppet-jenkinstracking/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/puppet-jenkinstracking/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/puppet-jenkinstracking/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/puppet-jenkinstracking/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/puppet-jenkinstracking/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/puppet-jenkinstracking/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/puppet-jenkinstracking/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/puppet-jenkinstracking/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/puppet-jenkinstracking/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/puppet-jenkinstracking/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/puppet-jenkinstracking/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/puppet-jenkinstracking/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/puppet-jenkinstracking/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/puppet-jenkinstracking/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/puppet-jenkinstracking/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/puppet-jenkinstracking/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/puppet-jenkinstracking/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/puppet-jenkinstracking/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/puppet-jenkinstracking/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/puppet-jenkinstracking/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/puppet-jenkinstracking/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/puppet-jenkinstracking/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/puppet-jenkinstracking/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/puppet-jenkinstracking/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/puppet-jenkinstracking/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/puppet-jenkinstracking/deployments", + "created_at": "2014-02-17T17:31:24Z", + "updated_at": "2014-09-10T05:12:32Z", + "pushed_at": "2017-11-09T22:32:58Z", + "git_url": "git://github.com/jenkinsci/puppet-jenkinstracking.git", + "ssh_url": "git@github.com:jenkinsci/puppet-jenkinstracking.git", + "clone_url": "https://github.com/jenkinsci/puppet-jenkinstracking.git", + "svn_url": "https://github.com/jenkinsci/puppet-jenkinstracking", + "homepage": null, + "size": 148, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Ruby", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 5, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 16925532, + "node_id": "MDEwOlJlcG9zaXRvcnkxNjkyNTUzMg==", + "name": "docker-build-step-plugin", + "full_name": "jenkinsci/docker-build-step-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/docker-build-step-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/docker-build-step-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/docker-build-step-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/docker-build-step-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/docker-build-step-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/docker-build-step-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/docker-build-step-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/docker-build-step-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/docker-build-step-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/docker-build-step-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/docker-build-step-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/docker-build-step-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/docker-build-step-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/docker-build-step-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/docker-build-step-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/docker-build-step-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/docker-build-step-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/docker-build-step-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/docker-build-step-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/docker-build-step-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/docker-build-step-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/docker-build-step-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/docker-build-step-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/docker-build-step-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/docker-build-step-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/docker-build-step-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/docker-build-step-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/docker-build-step-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/docker-build-step-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/docker-build-step-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/docker-build-step-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/docker-build-step-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/docker-build-step-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/docker-build-step-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/docker-build-step-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/docker-build-step-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/docker-build-step-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/docker-build-step-plugin/deployments", + "created_at": "2014-02-17T20:25:08Z", + "updated_at": "2019-10-22T23:25:00Z", + "pushed_at": "2019-09-24T11:15:37Z", + "git_url": "git://github.com/jenkinsci/docker-build-step-plugin.git", + "ssh_url": "git@github.com:jenkinsci/docker-build-step-plugin.git", + "clone_url": "https://github.com/jenkinsci/docker-build-step-plugin.git", + "svn_url": "https://github.com/jenkinsci/docker-build-step-plugin", + "homepage": null, + "size": 572, + "stargazers_count": 93, + "watchers_count": 93, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 89, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 89, + "open_issues": 3, + "watchers": 93, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 16966219, + "node_id": "MDEwOlJlcG9zaXRvcnkxNjk2NjIxOQ==", + "name": "project-build-times-plugin", + "full_name": "jenkinsci/project-build-times-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/project-build-times-plugin", + "description": "Jenkins Plugin for extended Dashboard View Plugin functionality. Adds trend graphs for build times.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/project-build-times-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/project-build-times-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/project-build-times-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/project-build-times-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/project-build-times-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/project-build-times-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/project-build-times-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/project-build-times-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/project-build-times-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/project-build-times-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/project-build-times-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/project-build-times-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/project-build-times-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/project-build-times-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/project-build-times-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/project-build-times-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/project-build-times-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/project-build-times-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/project-build-times-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/project-build-times-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/project-build-times-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/project-build-times-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/project-build-times-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/project-build-times-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/project-build-times-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/project-build-times-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/project-build-times-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/project-build-times-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/project-build-times-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/project-build-times-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/project-build-times-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/project-build-times-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/project-build-times-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/project-build-times-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/project-build-times-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/project-build-times-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/project-build-times-plugin/deployments", + "created_at": "2014-02-18T22:32:17Z", + "updated_at": "2018-07-19T07:00:44Z", + "pushed_at": "2019-10-08T11:33:19Z", + "git_url": "git://github.com/jenkinsci/project-build-times-plugin.git", + "ssh_url": "git@github.com:jenkinsci/project-build-times-plugin.git", + "clone_url": "https://github.com/jenkinsci/project-build-times-plugin.git", + "svn_url": "https://github.com/jenkinsci/project-build-times-plugin", + "homepage": null, + "size": 18, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 3, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 16987752, + "node_id": "MDEwOlJlcG9zaXRvcnkxNjk4Nzc1Mg==", + "name": "perfectomobile-plugin", + "full_name": "jenkinsci/perfectomobile-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/perfectomobile-plugin", + "description": "Perfecto Mobile Jenkins plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/perfectomobile-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/perfectomobile-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/perfectomobile-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/perfectomobile-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/perfectomobile-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/perfectomobile-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/perfectomobile-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/perfectomobile-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/perfectomobile-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/perfectomobile-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/perfectomobile-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/perfectomobile-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/perfectomobile-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/perfectomobile-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/perfectomobile-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/perfectomobile-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/perfectomobile-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/perfectomobile-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/perfectomobile-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/perfectomobile-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/perfectomobile-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/perfectomobile-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/perfectomobile-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/perfectomobile-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/perfectomobile-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/perfectomobile-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/perfectomobile-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/perfectomobile-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/perfectomobile-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/perfectomobile-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/perfectomobile-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/perfectomobile-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/perfectomobile-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/perfectomobile-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/perfectomobile-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/perfectomobile-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/perfectomobile-plugin/deployments", + "created_at": "2014-02-19T14:59:14Z", + "updated_at": "2018-03-06T02:58:38Z", + "pushed_at": "2014-06-03T13:11:08Z", + "git_url": "git://github.com/jenkinsci/perfectomobile-plugin.git", + "ssh_url": "git@github.com:jenkinsci/perfectomobile-plugin.git", + "clone_url": "https://github.com/jenkinsci/perfectomobile-plugin.git", + "svn_url": "https://github.com/jenkinsci/perfectomobile-plugin", + "homepage": null, + "size": 2915, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 7, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 7, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 17043627, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzA0MzYyNw==", + "name": "systemd-slave-installer-module", + "full_name": "jenkinsci/systemd-slave-installer-module", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/systemd-slave-installer-module", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/systemd-slave-installer-module", + "forks_url": "https://api.github.com/repos/jenkinsci/systemd-slave-installer-module/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/systemd-slave-installer-module/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/systemd-slave-installer-module/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/systemd-slave-installer-module/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/systemd-slave-installer-module/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/systemd-slave-installer-module/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/systemd-slave-installer-module/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/systemd-slave-installer-module/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/systemd-slave-installer-module/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/systemd-slave-installer-module/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/systemd-slave-installer-module/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/systemd-slave-installer-module/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/systemd-slave-installer-module/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/systemd-slave-installer-module/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/systemd-slave-installer-module/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/systemd-slave-installer-module/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/systemd-slave-installer-module/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/systemd-slave-installer-module/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/systemd-slave-installer-module/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/systemd-slave-installer-module/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/systemd-slave-installer-module/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/systemd-slave-installer-module/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/systemd-slave-installer-module/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/systemd-slave-installer-module/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/systemd-slave-installer-module/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/systemd-slave-installer-module/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/systemd-slave-installer-module/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/systemd-slave-installer-module/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/systemd-slave-installer-module/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/systemd-slave-installer-module/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/systemd-slave-installer-module/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/systemd-slave-installer-module/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/systemd-slave-installer-module/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/systemd-slave-installer-module/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/systemd-slave-installer-module/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/systemd-slave-installer-module/deployments", + "created_at": "2014-02-21T02:52:53Z", + "updated_at": "2019-04-16T19:26:41Z", + "pushed_at": "2019-04-22T16:49:47Z", + "git_url": "git://github.com/jenkinsci/systemd-slave-installer-module.git", + "ssh_url": "git@github.com:jenkinsci/systemd-slave-installer-module.git", + "clone_url": "https://github.com/jenkinsci/systemd-slave-installer-module.git", + "svn_url": "https://github.com/jenkinsci/systemd-slave-installer-module", + "homepage": "", + "size": 18, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 1, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 17075674, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzA3NTY3NA==", + "name": "extreme-notification-plugin", + "full_name": "jenkinsci/extreme-notification-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/extreme-notification-plugin", + "description": "An event notification HUB for Jenkins", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/extreme-notification-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/extreme-notification-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/extreme-notification-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/extreme-notification-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/extreme-notification-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/extreme-notification-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/extreme-notification-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/extreme-notification-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/extreme-notification-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/extreme-notification-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/extreme-notification-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/extreme-notification-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/extreme-notification-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/extreme-notification-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/extreme-notification-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/extreme-notification-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/extreme-notification-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/extreme-notification-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/extreme-notification-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/extreme-notification-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/extreme-notification-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/extreme-notification-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/extreme-notification-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/extreme-notification-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/extreme-notification-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/extreme-notification-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/extreme-notification-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/extreme-notification-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/extreme-notification-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/extreme-notification-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/extreme-notification-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/extreme-notification-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/extreme-notification-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/extreme-notification-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/extreme-notification-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/extreme-notification-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/extreme-notification-plugin/deployments", + "created_at": "2014-02-22T01:37:47Z", + "updated_at": "2019-10-16T17:35:25Z", + "pushed_at": "2019-10-10T15:01:43Z", + "git_url": "git://github.com/jenkinsci/extreme-notification-plugin.git", + "ssh_url": "git@github.com:jenkinsci/extreme-notification-plugin.git", + "clone_url": "https://github.com/jenkinsci/extreme-notification-plugin.git", + "svn_url": "https://github.com/jenkinsci/extreme-notification-plugin", + "homepage": "", + "size": 47, + "stargazers_count": 10, + "watchers_count": 10, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 19, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 19, + "open_issues": 0, + "watchers": 10, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 17294237, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzI5NDIzNw==", + "name": "acceptance-test-harness", + "full_name": "jenkinsci/acceptance-test-harness", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/acceptance-test-harness", + "description": "Acceptance tests cases for Jenkins and its plug-ins based on selenium and docker.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/acceptance-test-harness", + "forks_url": "https://api.github.com/repos/jenkinsci/acceptance-test-harness/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/acceptance-test-harness/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/acceptance-test-harness/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/acceptance-test-harness/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/acceptance-test-harness/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/acceptance-test-harness/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/acceptance-test-harness/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/acceptance-test-harness/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/acceptance-test-harness/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/acceptance-test-harness/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/acceptance-test-harness/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/acceptance-test-harness/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/acceptance-test-harness/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/acceptance-test-harness/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/acceptance-test-harness/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/acceptance-test-harness/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/acceptance-test-harness/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/acceptance-test-harness/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/acceptance-test-harness/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/acceptance-test-harness/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/acceptance-test-harness/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/acceptance-test-harness/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/acceptance-test-harness/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/acceptance-test-harness/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/acceptance-test-harness/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/acceptance-test-harness/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/acceptance-test-harness/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/acceptance-test-harness/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/acceptance-test-harness/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/acceptance-test-harness/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/acceptance-test-harness/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/acceptance-test-harness/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/acceptance-test-harness/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/acceptance-test-harness/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/acceptance-test-harness/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/acceptance-test-harness/deployments", + "created_at": "2014-02-28T17:39:55Z", + "updated_at": "2019-10-23T12:20:19Z", + "pushed_at": "2019-10-23T12:35:47Z", + "git_url": "git://github.com/jenkinsci/acceptance-test-harness.git", + "ssh_url": "git@github.com:jenkinsci/acceptance-test-harness.git", + "clone_url": "https://github.com/jenkinsci/acceptance-test-harness.git", + "svn_url": "https://github.com/jenkinsci/acceptance-test-harness", + "homepage": "", + "size": 11241, + "stargazers_count": 98, + "watchers_count": 98, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 192, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 4, + "license": null, + "forks": 192, + "open_issues": 4, + "watchers": 98, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 17297595, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzI5NzU5NQ==", + "name": "lib-process-utils", + "full_name": "jenkinsci/lib-process-utils", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/lib-process-utils", + "description": "Process forking related utilities for Java7+ ", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/lib-process-utils", + "forks_url": "https://api.github.com/repos/jenkinsci/lib-process-utils/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/lib-process-utils/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/lib-process-utils/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/lib-process-utils/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/lib-process-utils/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/lib-process-utils/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/lib-process-utils/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/lib-process-utils/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/lib-process-utils/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/lib-process-utils/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/lib-process-utils/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/lib-process-utils/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/lib-process-utils/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/lib-process-utils/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/lib-process-utils/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/lib-process-utils/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/lib-process-utils/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/lib-process-utils/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/lib-process-utils/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/lib-process-utils/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/lib-process-utils/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/lib-process-utils/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/lib-process-utils/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/lib-process-utils/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/lib-process-utils/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/lib-process-utils/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/lib-process-utils/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/lib-process-utils/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/lib-process-utils/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/lib-process-utils/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/lib-process-utils/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/lib-process-utils/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/lib-process-utils/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/lib-process-utils/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/lib-process-utils/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/lib-process-utils/deployments", + "created_at": "2014-02-28T19:46:06Z", + "updated_at": "2014-06-15T19:10:26Z", + "pushed_at": "2018-06-21T08:10:57Z", + "git_url": "git://github.com/jenkinsci/lib-process-utils.git", + "ssh_url": "git@github.com:jenkinsci/lib-process-utils.git", + "clone_url": "https://github.com/jenkinsci/lib-process-utils.git", + "svn_url": "https://github.com/jenkinsci/lib-process-utils", + "homepage": null, + "size": 224, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 2, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 17301604, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzMwMTYwNA==", + "name": "script-security-plugin", + "full_name": "jenkinsci/script-security-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/script-security-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/script-security-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/script-security-plugin/deployments", + "created_at": "2014-02-28T22:18:32Z", + "updated_at": "2019-10-07T18:07:03Z", + "pushed_at": "2019-10-11T05:22:26Z", + "git_url": "git://github.com/jenkinsci/script-security-plugin.git", + "ssh_url": "git@github.com:jenkinsci/script-security-plugin.git", + "clone_url": "https://github.com/jenkinsci/script-security-plugin.git", + "svn_url": "https://github.com/jenkinsci/script-security-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Script+Security+Plugin", + "size": 1285, + "stargazers_count": 26, + "watchers_count": 26, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 125, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 9, + "license": null, + "forks": 125, + "open_issues": 9, + "watchers": 26, + "default_branch": "master", + "permissions": { + "admin": false, + "push": true, + "pull": true + } + }, + { + "id": 17321648, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzMyMTY0OA==", + "name": "lib-groovy-guice-binder", + "full_name": "jenkinsci/lib-groovy-guice-binder", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/lib-groovy-guice-binder", + "description": "Groovy DSL for Guice Binder", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/lib-groovy-guice-binder", + "forks_url": "https://api.github.com/repos/jenkinsci/lib-groovy-guice-binder/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/lib-groovy-guice-binder/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/lib-groovy-guice-binder/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/lib-groovy-guice-binder/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/lib-groovy-guice-binder/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/lib-groovy-guice-binder/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/lib-groovy-guice-binder/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/lib-groovy-guice-binder/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/lib-groovy-guice-binder/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/lib-groovy-guice-binder/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/lib-groovy-guice-binder/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/lib-groovy-guice-binder/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/lib-groovy-guice-binder/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/lib-groovy-guice-binder/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/lib-groovy-guice-binder/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/lib-groovy-guice-binder/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/lib-groovy-guice-binder/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/lib-groovy-guice-binder/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/lib-groovy-guice-binder/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/lib-groovy-guice-binder/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/lib-groovy-guice-binder/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/lib-groovy-guice-binder/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/lib-groovy-guice-binder/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/lib-groovy-guice-binder/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/lib-groovy-guice-binder/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/lib-groovy-guice-binder/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/lib-groovy-guice-binder/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/lib-groovy-guice-binder/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/lib-groovy-guice-binder/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/lib-groovy-guice-binder/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/lib-groovy-guice-binder/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/lib-groovy-guice-binder/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/lib-groovy-guice-binder/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/lib-groovy-guice-binder/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/lib-groovy-guice-binder/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/lib-groovy-guice-binder/deployments", + "created_at": "2014-03-01T18:49:43Z", + "updated_at": "2018-01-17T19:15:08Z", + "pushed_at": "2014-03-14T01:27:38Z", + "git_url": "git://github.com/jenkinsci/lib-groovy-guice-binder.git", + "ssh_url": "git@github.com:jenkinsci/lib-groovy-guice-binder.git", + "clone_url": "https://github.com/jenkinsci/lib-groovy-guice-binder.git", + "svn_url": "https://github.com/jenkinsci/lib-groovy-guice-binder", + "homepage": null, + "size": 180, + "stargazers_count": 9, + "watchers_count": 9, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 9, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 17436850, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzQzNjg1MA==", + "name": "flowdock-plugin", + "full_name": "jenkinsci/flowdock-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/flowdock-plugin", + "description": "Notify Flowdock about Jenkins builds", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/flowdock-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/flowdock-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/flowdock-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/flowdock-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/flowdock-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/flowdock-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/flowdock-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/flowdock-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/flowdock-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/flowdock-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/flowdock-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/flowdock-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/flowdock-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/flowdock-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/flowdock-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/flowdock-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/flowdock-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/flowdock-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/flowdock-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/flowdock-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/flowdock-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/flowdock-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/flowdock-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/flowdock-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/flowdock-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/flowdock-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/flowdock-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/flowdock-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/flowdock-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/flowdock-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/flowdock-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/flowdock-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/flowdock-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/flowdock-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/flowdock-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/flowdock-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/flowdock-plugin/deployments", + "created_at": "2014-03-05T10:26:38Z", + "updated_at": "2019-06-29T15:22:05Z", + "pushed_at": "2019-10-08T12:14:33Z", + "git_url": "git://github.com/jenkinsci/flowdock-plugin.git", + "ssh_url": "git@github.com:jenkinsci/flowdock-plugin.git", + "clone_url": "https://github.com/jenkinsci/flowdock-plugin.git", + "svn_url": "https://github.com/jenkinsci/flowdock-plugin", + "homepage": "", + "size": 374, + "stargazers_count": 9, + "watchers_count": 9, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 28, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 17, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 28, + "open_issues": 17, + "watchers": 9, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 17716031, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzcxNjAzMQ==", + "name": "kmap-plugin", + "full_name": "jenkinsci/kmap-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/kmap-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/kmap-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/kmap-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/kmap-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/kmap-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/kmap-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/kmap-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/kmap-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/kmap-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/kmap-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/kmap-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/kmap-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/kmap-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/kmap-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/kmap-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/kmap-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/kmap-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/kmap-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/kmap-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/kmap-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/kmap-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/kmap-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/kmap-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/kmap-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/kmap-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/kmap-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/kmap-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/kmap-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/kmap-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/kmap-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/kmap-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/kmap-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/kmap-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/kmap-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/kmap-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/kmap-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/kmap-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/kmap-plugin/deployments", + "created_at": "2014-03-13T16:02:26Z", + "updated_at": "2014-03-24T11:26:21Z", + "pushed_at": "2014-03-24T11:26:20Z", + "git_url": "git://github.com/jenkinsci/kmap-plugin.git", + "ssh_url": "git@github.com:jenkinsci/kmap-plugin.git", + "clone_url": "https://github.com/jenkinsci/kmap-plugin.git", + "svn_url": "https://github.com/jenkinsci/kmap-plugin", + "homepage": "", + "size": 274, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 17821026, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzgyMTAyNg==", + "name": "tortoisesvn-browser-plugin", + "full_name": "jenkinsci/tortoisesvn-browser-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/tortoisesvn-browser-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/tortoisesvn-browser-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/tortoisesvn-browser-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/tortoisesvn-browser-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/tortoisesvn-browser-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/tortoisesvn-browser-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/tortoisesvn-browser-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/tortoisesvn-browser-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/tortoisesvn-browser-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/tortoisesvn-browser-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/tortoisesvn-browser-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/tortoisesvn-browser-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/tortoisesvn-browser-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/tortoisesvn-browser-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/tortoisesvn-browser-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/tortoisesvn-browser-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/tortoisesvn-browser-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/tortoisesvn-browser-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/tortoisesvn-browser-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/tortoisesvn-browser-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/tortoisesvn-browser-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/tortoisesvn-browser-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/tortoisesvn-browser-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/tortoisesvn-browser-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/tortoisesvn-browser-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/tortoisesvn-browser-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/tortoisesvn-browser-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/tortoisesvn-browser-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/tortoisesvn-browser-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/tortoisesvn-browser-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/tortoisesvn-browser-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/tortoisesvn-browser-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/tortoisesvn-browser-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/tortoisesvn-browser-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/tortoisesvn-browser-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/tortoisesvn-browser-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/tortoisesvn-browser-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/tortoisesvn-browser-plugin/deployments", + "created_at": "2014-03-17T08:05:29Z", + "updated_at": "2014-05-06T21:32:06Z", + "pushed_at": "2014-05-06T21:32:05Z", + "git_url": "git://github.com/jenkinsci/tortoisesvn-browser-plugin.git", + "ssh_url": "git@github.com:jenkinsci/tortoisesvn-browser-plugin.git", + "clone_url": "https://github.com/jenkinsci/tortoisesvn-browser-plugin.git", + "svn_url": "https://github.com/jenkinsci/tortoisesvn-browser-plugin", + "homepage": null, + "size": 124, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 17821196, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzgyMTE5Ng==", + "name": "semantic-versioning-plugin", + "full_name": "jenkinsci/semantic-versioning-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/semantic-versioning-plugin", + "description": "Jenkins Plugin that generates a semantic version from a build definition file (SBT, POM). Sets a configurable environment variable with the version. Includes a Dashboard column plugin that displays the semantic version of the last successful build.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/semantic-versioning-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/semantic-versioning-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/semantic-versioning-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/semantic-versioning-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/semantic-versioning-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/semantic-versioning-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/semantic-versioning-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/semantic-versioning-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/semantic-versioning-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/semantic-versioning-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/semantic-versioning-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/semantic-versioning-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/semantic-versioning-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/semantic-versioning-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/semantic-versioning-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/semantic-versioning-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/semantic-versioning-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/semantic-versioning-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/semantic-versioning-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/semantic-versioning-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/semantic-versioning-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/semantic-versioning-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/semantic-versioning-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/semantic-versioning-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/semantic-versioning-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/semantic-versioning-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/semantic-versioning-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/semantic-versioning-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/semantic-versioning-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/semantic-versioning-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/semantic-versioning-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/semantic-versioning-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/semantic-versioning-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/semantic-versioning-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/semantic-versioning-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/semantic-versioning-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/semantic-versioning-plugin/deployments", + "created_at": "2014-03-17T08:14:01Z", + "updated_at": "2019-10-22T19:43:16Z", + "pushed_at": "2018-03-28T08:06:15Z", + "git_url": "git://github.com/jenkinsci/semantic-versioning-plugin.git", + "ssh_url": "git@github.com:jenkinsci/semantic-versioning-plugin.git", + "clone_url": "https://github.com/jenkinsci/semantic-versioning-plugin.git", + "svn_url": "https://github.com/jenkinsci/semantic-versioning-plugin", + "homepage": "", + "size": 166, + "stargazers_count": 15, + "watchers_count": 15, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 19, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 19, + "open_issues": 0, + "watchers": 15, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 17849313, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzg0OTMxMw==", + "name": "cloudbees-credentials-plugin", + "full_name": "jenkinsci/cloudbees-credentials-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/cloudbees-credentials-plugin", + "description": "CloudBees Credentials Plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/cloudbees-credentials-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/cloudbees-credentials-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/cloudbees-credentials-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/cloudbees-credentials-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/cloudbees-credentials-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/cloudbees-credentials-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/cloudbees-credentials-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/cloudbees-credentials-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/cloudbees-credentials-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/cloudbees-credentials-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/cloudbees-credentials-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/cloudbees-credentials-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/cloudbees-credentials-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/cloudbees-credentials-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/cloudbees-credentials-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/cloudbees-credentials-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/cloudbees-credentials-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/cloudbees-credentials-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/cloudbees-credentials-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/cloudbees-credentials-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/cloudbees-credentials-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/cloudbees-credentials-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/cloudbees-credentials-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/cloudbees-credentials-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/cloudbees-credentials-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/cloudbees-credentials-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/cloudbees-credentials-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/cloudbees-credentials-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/cloudbees-credentials-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/cloudbees-credentials-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/cloudbees-credentials-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/cloudbees-credentials-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/cloudbees-credentials-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/cloudbees-credentials-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/cloudbees-credentials-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/cloudbees-credentials-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/cloudbees-credentials-plugin/deployments", + "created_at": "2014-03-18T01:08:21Z", + "updated_at": "2016-04-21T20:37:14Z", + "pushed_at": "2014-03-18T02:02:47Z", + "git_url": "git://github.com/jenkinsci/cloudbees-credentials-plugin.git", + "ssh_url": "git@github.com:jenkinsci/cloudbees-credentials-plugin.git", + "clone_url": "https://github.com/jenkinsci/cloudbees-credentials-plugin.git", + "svn_url": "https://github.com/jenkinsci/cloudbees-credentials-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/CloudBees+Credentials+Plugin", + "size": 132, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 3, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 17849320, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzg0OTMyMA==", + "name": "cloudbees-registration-plugin", + "full_name": "jenkinsci/cloudbees-registration-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/cloudbees-registration-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/cloudbees-registration-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/cloudbees-registration-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/cloudbees-registration-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/cloudbees-registration-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/cloudbees-registration-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/cloudbees-registration-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/cloudbees-registration-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/cloudbees-registration-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/cloudbees-registration-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/cloudbees-registration-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/cloudbees-registration-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/cloudbees-registration-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/cloudbees-registration-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/cloudbees-registration-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/cloudbees-registration-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/cloudbees-registration-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/cloudbees-registration-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/cloudbees-registration-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/cloudbees-registration-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/cloudbees-registration-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/cloudbees-registration-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/cloudbees-registration-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/cloudbees-registration-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/cloudbees-registration-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/cloudbees-registration-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/cloudbees-registration-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/cloudbees-registration-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/cloudbees-registration-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/cloudbees-registration-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/cloudbees-registration-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/cloudbees-registration-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/cloudbees-registration-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/cloudbees-registration-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/cloudbees-registration-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/cloudbees-registration-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/cloudbees-registration-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/cloudbees-registration-plugin/deployments", + "created_at": "2014-03-18T01:08:39Z", + "updated_at": "2019-07-15T11:04:13Z", + "pushed_at": "2016-06-23T13:00:23Z", + "git_url": "git://github.com/jenkinsci/cloudbees-registration-plugin.git", + "ssh_url": "git@github.com:jenkinsci/cloudbees-registration-plugin.git", + "clone_url": "https://github.com/jenkinsci/cloudbees-registration-plugin.git", + "svn_url": "https://github.com/jenkinsci/cloudbees-registration-plugin", + "homepage": "", + "size": 74, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 17873911, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzg3MzkxMQ==", + "name": "google-oauth-plugin", + "full_name": "jenkinsci/google-oauth-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/google-oauth-plugin", + "description": "This plugin implements the OAuth Credentials interfaces to surface Google Service Account credentials to Jenkins.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/google-oauth-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/google-oauth-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/google-oauth-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/google-oauth-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/google-oauth-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/google-oauth-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/google-oauth-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/google-oauth-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/google-oauth-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/google-oauth-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/google-oauth-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/google-oauth-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/google-oauth-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/google-oauth-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/google-oauth-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/google-oauth-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/google-oauth-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/google-oauth-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/google-oauth-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/google-oauth-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/google-oauth-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/google-oauth-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/google-oauth-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/google-oauth-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/google-oauth-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/google-oauth-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/google-oauth-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/google-oauth-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/google-oauth-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/google-oauth-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/google-oauth-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/google-oauth-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/google-oauth-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/google-oauth-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/google-oauth-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/google-oauth-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/google-oauth-plugin/deployments", + "created_at": "2014-03-18T16:52:49Z", + "updated_at": "2019-10-24T20:34:21Z", + "pushed_at": "2019-10-25T17:51:43Z", + "git_url": "git://github.com/jenkinsci/google-oauth-plugin.git", + "ssh_url": "git@github.com:jenkinsci/google-oauth-plugin.git", + "clone_url": "https://github.com/jenkinsci/google-oauth-plugin.git", + "svn_url": "https://github.com/jenkinsci/google-oauth-plugin", + "homepage": "", + "size": 357, + "stargazers_count": 16, + "watchers_count": 16, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 24, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 8, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 24, + "open_issues": 8, + "watchers": 16, + "default_branch": "develop", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 17874839, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzg3NDgzOQ==", + "name": "durable-task-plugin", + "full_name": "jenkinsci/durable-task-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/durable-task-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/durable-task-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/durable-task-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/durable-task-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/durable-task-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/durable-task-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/durable-task-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/durable-task-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/durable-task-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/durable-task-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/durable-task-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/durable-task-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/durable-task-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/durable-task-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/durable-task-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/durable-task-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/durable-task-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/durable-task-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/durable-task-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/durable-task-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/durable-task-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/durable-task-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/durable-task-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/durable-task-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/durable-task-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/durable-task-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/durable-task-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/durable-task-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/durable-task-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/durable-task-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/durable-task-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/durable-task-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/durable-task-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/durable-task-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/durable-task-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/durable-task-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/durable-task-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/durable-task-plugin/deployments", + "created_at": "2014-03-18T17:21:04Z", + "updated_at": "2019-10-22T19:05:27Z", + "pushed_at": "2019-10-25T21:42:46Z", + "git_url": "git://github.com/jenkinsci/durable-task-plugin.git", + "ssh_url": "git@github.com:jenkinsci/durable-task-plugin.git", + "clone_url": "https://github.com/jenkinsci/durable-task-plugin.git", + "svn_url": "https://github.com/jenkinsci/durable-task-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Durable+Task+Plugin", + "size": 500, + "stargazers_count": 15, + "watchers_count": 15, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 73, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 12, + "license": null, + "forks": 73, + "open_issues": 12, + "watchers": 15, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 17877087, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzg3NzA4Nw==", + "name": "google-storage-plugin", + "full_name": "jenkinsci/google-storage-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/google-storage-plugin", + "description": "This plugin provides the “Google Cloud Storage Uploader” post-build step for publishing build artifacts to Google Cloud Storage.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/google-storage-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/google-storage-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/google-storage-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/google-storage-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/google-storage-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/google-storage-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/google-storage-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/google-storage-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/google-storage-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/google-storage-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/google-storage-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/google-storage-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/google-storage-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/google-storage-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/google-storage-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/google-storage-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/google-storage-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/google-storage-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/google-storage-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/google-storage-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/google-storage-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/google-storage-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/google-storage-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/google-storage-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/google-storage-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/google-storage-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/google-storage-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/google-storage-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/google-storage-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/google-storage-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/google-storage-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/google-storage-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/google-storage-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/google-storage-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/google-storage-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/google-storage-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/google-storage-plugin/deployments", + "created_at": "2014-03-18T18:26:15Z", + "updated_at": "2019-10-09T17:01:57Z", + "pushed_at": "2019-10-25T23:03:54Z", + "git_url": "git://github.com/jenkinsci/google-storage-plugin.git", + "ssh_url": "git@github.com:jenkinsci/google-storage-plugin.git", + "clone_url": "https://github.com/jenkinsci/google-storage-plugin.git", + "svn_url": "https://github.com/jenkinsci/google-storage-plugin", + "homepage": null, + "size": 629, + "stargazers_count": 16, + "watchers_count": 16, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 27, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 13, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 27, + "open_issues": 13, + "watchers": 16, + "default_branch": "develop", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 17897662, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzg5NzY2Mg==", + "name": "composer-security-checker-plugin", + "full_name": "jenkinsci/composer-security-checker-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/composer-security-checker-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/composer-security-checker-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/composer-security-checker-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/composer-security-checker-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/composer-security-checker-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/composer-security-checker-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/composer-security-checker-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/composer-security-checker-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/composer-security-checker-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/composer-security-checker-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/composer-security-checker-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/composer-security-checker-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/composer-security-checker-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/composer-security-checker-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/composer-security-checker-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/composer-security-checker-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/composer-security-checker-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/composer-security-checker-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/composer-security-checker-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/composer-security-checker-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/composer-security-checker-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/composer-security-checker-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/composer-security-checker-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/composer-security-checker-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/composer-security-checker-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/composer-security-checker-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/composer-security-checker-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/composer-security-checker-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/composer-security-checker-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/composer-security-checker-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/composer-security-checker-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/composer-security-checker-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/composer-security-checker-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/composer-security-checker-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/composer-security-checker-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/composer-security-checker-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/composer-security-checker-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/composer-security-checker-plugin/deployments", + "created_at": "2014-03-19T09:01:42Z", + "updated_at": "2016-11-24T13:02:50Z", + "pushed_at": "2014-03-25T20:02:44Z", + "git_url": "git://github.com/jenkinsci/composer-security-checker-plugin.git", + "ssh_url": "git@github.com:jenkinsci/composer-security-checker-plugin.git", + "clone_url": "https://github.com/jenkinsci/composer-security-checker-plugin.git", + "svn_url": "https://github.com/jenkinsci/composer-security-checker-plugin", + "homepage": null, + "size": 392, + "stargazers_count": 6, + "watchers_count": 6, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 6, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 17901498, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzkwMTQ5OA==", + "name": "dynamic-extended-choice-parameter-plugin", + "full_name": "jenkinsci/dynamic-extended-choice-parameter-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/dynamic-extended-choice-parameter-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/dynamic-extended-choice-parameter-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/dynamic-extended-choice-parameter-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/dynamic-extended-choice-parameter-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/dynamic-extended-choice-parameter-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/dynamic-extended-choice-parameter-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/dynamic-extended-choice-parameter-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/dynamic-extended-choice-parameter-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/dynamic-extended-choice-parameter-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/dynamic-extended-choice-parameter-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/dynamic-extended-choice-parameter-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/dynamic-extended-choice-parameter-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/dynamic-extended-choice-parameter-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/dynamic-extended-choice-parameter-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/dynamic-extended-choice-parameter-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/dynamic-extended-choice-parameter-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/dynamic-extended-choice-parameter-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/dynamic-extended-choice-parameter-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/dynamic-extended-choice-parameter-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/dynamic-extended-choice-parameter-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/dynamic-extended-choice-parameter-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/dynamic-extended-choice-parameter-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/dynamic-extended-choice-parameter-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/dynamic-extended-choice-parameter-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/dynamic-extended-choice-parameter-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/dynamic-extended-choice-parameter-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/dynamic-extended-choice-parameter-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/dynamic-extended-choice-parameter-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/dynamic-extended-choice-parameter-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/dynamic-extended-choice-parameter-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/dynamic-extended-choice-parameter-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/dynamic-extended-choice-parameter-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/dynamic-extended-choice-parameter-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/dynamic-extended-choice-parameter-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/dynamic-extended-choice-parameter-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/dynamic-extended-choice-parameter-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/dynamic-extended-choice-parameter-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/dynamic-extended-choice-parameter-plugin/deployments", + "created_at": "2014-03-19T11:17:51Z", + "updated_at": "2019-03-01T08:22:31Z", + "pushed_at": "2019-09-24T10:39:34Z", + "git_url": "git://github.com/jenkinsci/dynamic-extended-choice-parameter-plugin.git", + "ssh_url": "git@github.com:jenkinsci/dynamic-extended-choice-parameter-plugin.git", + "clone_url": "https://github.com/jenkinsci/dynamic-extended-choice-parameter-plugin.git", + "svn_url": "https://github.com/jenkinsci/dynamic-extended-choice-parameter-plugin", + "homepage": "", + "size": 251, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 6, + "open_issues": 2, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 17909964, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzkwOTk2NA==", + "name": "metrics-plugin", + "full_name": "jenkinsci/metrics-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/metrics-plugin", + "description": "Metrics plugin for Jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/metrics-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/metrics-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/metrics-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/metrics-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/metrics-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/metrics-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/metrics-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/metrics-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/metrics-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/metrics-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/metrics-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/metrics-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/metrics-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/metrics-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/metrics-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/metrics-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/metrics-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/metrics-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/metrics-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/metrics-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/metrics-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/metrics-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/metrics-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/metrics-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/metrics-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/metrics-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/metrics-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/metrics-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/metrics-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/metrics-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/metrics-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/metrics-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/metrics-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/metrics-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/metrics-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/metrics-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/metrics-plugin/deployments", + "created_at": "2014-03-19T15:41:02Z", + "updated_at": "2019-10-18T00:24:03Z", + "pushed_at": "2019-10-05T06:40:42Z", + "git_url": "git://github.com/jenkinsci/metrics-plugin.git", + "ssh_url": "git@github.com:jenkinsci/metrics-plugin.git", + "clone_url": "https://github.com/jenkinsci/metrics-plugin.git", + "svn_url": "https://github.com/jenkinsci/metrics-plugin", + "homepage": "https://plugins.jenkins.io/metrics", + "size": 382, + "stargazers_count": 25, + "watchers_count": 25, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 52, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 52, + "open_issues": 2, + "watchers": 25, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 17909969, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzkwOTk2OQ==", + "name": "metrics-graphite-plugin", + "full_name": "jenkinsci/metrics-graphite-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/metrics-graphite-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/metrics-graphite-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/metrics-graphite-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/metrics-graphite-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/metrics-graphite-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/metrics-graphite-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/metrics-graphite-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/metrics-graphite-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/metrics-graphite-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/metrics-graphite-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/metrics-graphite-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/metrics-graphite-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/metrics-graphite-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/metrics-graphite-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/metrics-graphite-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/metrics-graphite-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/metrics-graphite-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/metrics-graphite-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/metrics-graphite-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/metrics-graphite-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/metrics-graphite-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/metrics-graphite-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/metrics-graphite-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/metrics-graphite-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/metrics-graphite-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/metrics-graphite-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/metrics-graphite-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/metrics-graphite-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/metrics-graphite-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/metrics-graphite-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/metrics-graphite-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/metrics-graphite-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/metrics-graphite-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/metrics-graphite-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/metrics-graphite-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/metrics-graphite-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/metrics-graphite-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/metrics-graphite-plugin/deployments", + "created_at": "2014-03-19T15:41:10Z", + "updated_at": "2017-08-11T15:57:43Z", + "pushed_at": "2017-09-07T17:54:37Z", + "git_url": "git://github.com/jenkinsci/metrics-graphite-plugin.git", + "ssh_url": "git@github.com:jenkinsci/metrics-graphite-plugin.git", + "clone_url": "https://github.com/jenkinsci/metrics-graphite-plugin.git", + "svn_url": "https://github.com/jenkinsci/metrics-graphite-plugin", + "homepage": "", + "size": 14, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 6, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 17909975, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzkwOTk3NQ==", + "name": "metrics-ganglia-plugin", + "full_name": "jenkinsci/metrics-ganglia-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/metrics-ganglia-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/metrics-ganglia-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/metrics-ganglia-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/metrics-ganglia-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/metrics-ganglia-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/metrics-ganglia-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/metrics-ganglia-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/metrics-ganglia-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/metrics-ganglia-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/metrics-ganglia-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/metrics-ganglia-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/metrics-ganglia-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/metrics-ganglia-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/metrics-ganglia-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/metrics-ganglia-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/metrics-ganglia-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/metrics-ganglia-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/metrics-ganglia-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/metrics-ganglia-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/metrics-ganglia-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/metrics-ganglia-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/metrics-ganglia-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/metrics-ganglia-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/metrics-ganglia-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/metrics-ganglia-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/metrics-ganglia-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/metrics-ganglia-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/metrics-ganglia-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/metrics-ganglia-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/metrics-ganglia-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/metrics-ganglia-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/metrics-ganglia-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/metrics-ganglia-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/metrics-ganglia-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/metrics-ganglia-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/metrics-ganglia-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/metrics-ganglia-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/metrics-ganglia-plugin/deployments", + "created_at": "2014-03-19T15:41:17Z", + "updated_at": "2014-03-19T17:46:56Z", + "pushed_at": "2014-03-19T17:46:56Z", + "git_url": "git://github.com/jenkinsci/metrics-ganglia-plugin.git", + "ssh_url": "git@github.com:jenkinsci/metrics-ganglia-plugin.git", + "clone_url": "https://github.com/jenkinsci/metrics-ganglia-plugin.git", + "svn_url": "https://github.com/jenkinsci/metrics-ganglia-plugin", + "homepage": "", + "size": 132, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 17909985, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzkwOTk4NQ==", + "name": "metrics-librato-plugin", + "full_name": "jenkinsci/metrics-librato-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/metrics-librato-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/metrics-librato-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/metrics-librato-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/metrics-librato-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/metrics-librato-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/metrics-librato-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/metrics-librato-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/metrics-librato-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/metrics-librato-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/metrics-librato-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/metrics-librato-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/metrics-librato-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/metrics-librato-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/metrics-librato-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/metrics-librato-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/metrics-librato-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/metrics-librato-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/metrics-librato-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/metrics-librato-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/metrics-librato-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/metrics-librato-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/metrics-librato-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/metrics-librato-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/metrics-librato-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/metrics-librato-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/metrics-librato-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/metrics-librato-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/metrics-librato-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/metrics-librato-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/metrics-librato-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/metrics-librato-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/metrics-librato-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/metrics-librato-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/metrics-librato-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/metrics-librato-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/metrics-librato-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/metrics-librato-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/metrics-librato-plugin/deployments", + "created_at": "2014-03-19T15:41:29Z", + "updated_at": "2014-03-23T00:11:26Z", + "pushed_at": "2014-03-19T16:44:20Z", + "git_url": "git://github.com/jenkinsci/metrics-librato-plugin.git", + "ssh_url": "git@github.com:jenkinsci/metrics-librato-plugin.git", + "clone_url": "https://github.com/jenkinsci/metrics-librato-plugin.git", + "svn_url": "https://github.com/jenkinsci/metrics-librato-plugin", + "homepage": "", + "size": 112, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 17910178, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzkxMDE3OA==", + "name": "metrics-diskusage-plugin", + "full_name": "jenkinsci/metrics-diskusage-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/metrics-diskusage-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/metrics-diskusage-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/metrics-diskusage-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/metrics-diskusage-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/metrics-diskusage-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/metrics-diskusage-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/metrics-diskusage-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/metrics-diskusage-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/metrics-diskusage-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/metrics-diskusage-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/metrics-diskusage-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/metrics-diskusage-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/metrics-diskusage-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/metrics-diskusage-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/metrics-diskusage-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/metrics-diskusage-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/metrics-diskusage-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/metrics-diskusage-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/metrics-diskusage-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/metrics-diskusage-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/metrics-diskusage-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/metrics-diskusage-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/metrics-diskusage-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/metrics-diskusage-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/metrics-diskusage-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/metrics-diskusage-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/metrics-diskusage-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/metrics-diskusage-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/metrics-diskusage-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/metrics-diskusage-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/metrics-diskusage-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/metrics-diskusage-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/metrics-diskusage-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/metrics-diskusage-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/metrics-diskusage-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/metrics-diskusage-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/metrics-diskusage-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/metrics-diskusage-plugin/deployments", + "created_at": "2014-03-19T15:46:31Z", + "updated_at": "2016-03-04T17:32:29Z", + "pushed_at": "2019-10-08T11:39:42Z", + "git_url": "git://github.com/jenkinsci/metrics-diskusage-plugin.git", + "ssh_url": "git@github.com:jenkinsci/metrics-diskusage-plugin.git", + "clone_url": "https://github.com/jenkinsci/metrics-diskusage-plugin.git", + "svn_url": "https://github.com/jenkinsci/metrics-diskusage-plugin", + "homepage": "", + "size": 128, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 2, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 17933007, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzkzMzAwNw==", + "name": "docker-build-publish-plugin", + "full_name": "jenkinsci/docker-build-publish-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/docker-build-publish-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/docker-build-publish-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/docker-build-publish-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/docker-build-publish-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/docker-build-publish-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/docker-build-publish-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/docker-build-publish-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/docker-build-publish-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/docker-build-publish-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/docker-build-publish-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/docker-build-publish-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/docker-build-publish-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/docker-build-publish-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/docker-build-publish-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/docker-build-publish-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/docker-build-publish-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/docker-build-publish-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/docker-build-publish-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/docker-build-publish-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/docker-build-publish-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/docker-build-publish-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/docker-build-publish-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/docker-build-publish-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/docker-build-publish-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/docker-build-publish-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/docker-build-publish-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/docker-build-publish-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/docker-build-publish-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/docker-build-publish-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/docker-build-publish-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/docker-build-publish-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/docker-build-publish-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/docker-build-publish-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/docker-build-publish-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/docker-build-publish-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/docker-build-publish-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/docker-build-publish-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/docker-build-publish-plugin/deployments", + "created_at": "2014-03-20T06:33:39Z", + "updated_at": "2019-10-15T10:57:06Z", + "pushed_at": "2016-10-21T17:08:48Z", + "git_url": "git://github.com/jenkinsci/docker-build-publish-plugin.git", + "ssh_url": "git@github.com:jenkinsci/docker-build-publish-plugin.git", + "clone_url": "https://github.com/jenkinsci/docker-build-publish-plugin.git", + "svn_url": "https://github.com/jenkinsci/docker-build-publish-plugin", + "homepage": "", + "size": 604, + "stargazers_count": 189, + "watchers_count": 189, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 77, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 77, + "open_issues": 1, + "watchers": 189, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 17954682, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzk1NDY4Mg==", + "name": "periodic-jobs-balancer-plugin", + "full_name": "jenkinsci/periodic-jobs-balancer-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/periodic-jobs-balancer-plugin", + "description": "Jenkins plugin to analyze and balance the build load resulted by periodic jobs. ", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/periodic-jobs-balancer-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/periodic-jobs-balancer-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/periodic-jobs-balancer-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/periodic-jobs-balancer-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/periodic-jobs-balancer-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/periodic-jobs-balancer-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/periodic-jobs-balancer-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/periodic-jobs-balancer-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/periodic-jobs-balancer-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/periodic-jobs-balancer-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/periodic-jobs-balancer-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/periodic-jobs-balancer-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/periodic-jobs-balancer-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/periodic-jobs-balancer-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/periodic-jobs-balancer-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/periodic-jobs-balancer-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/periodic-jobs-balancer-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/periodic-jobs-balancer-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/periodic-jobs-balancer-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/periodic-jobs-balancer-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/periodic-jobs-balancer-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/periodic-jobs-balancer-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/periodic-jobs-balancer-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/periodic-jobs-balancer-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/periodic-jobs-balancer-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/periodic-jobs-balancer-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/periodic-jobs-balancer-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/periodic-jobs-balancer-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/periodic-jobs-balancer-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/periodic-jobs-balancer-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/periodic-jobs-balancer-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/periodic-jobs-balancer-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/periodic-jobs-balancer-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/periodic-jobs-balancer-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/periodic-jobs-balancer-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/periodic-jobs-balancer-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/periodic-jobs-balancer-plugin/deployments", + "created_at": "2014-03-20T18:56:46Z", + "updated_at": "2015-10-18T02:31:46Z", + "pushed_at": "2014-03-20T21:33:20Z", + "git_url": "git://github.com/jenkinsci/periodic-jobs-balancer-plugin.git", + "ssh_url": "git@github.com:jenkinsci/periodic-jobs-balancer-plugin.git", + "clone_url": "https://github.com/jenkinsci/periodic-jobs-balancer-plugin.git", + "svn_url": "https://github.com/jenkinsci/periodic-jobs-balancer-plugin", + "homepage": null, + "size": 2423, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 17962088, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzk2MjA4OA==", + "name": "anonymous-token-root-plugin", + "full_name": "jenkinsci/anonymous-token-root-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/anonymous-token-root-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/anonymous-token-root-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/anonymous-token-root-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/anonymous-token-root-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/anonymous-token-root-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/anonymous-token-root-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/anonymous-token-root-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/anonymous-token-root-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/anonymous-token-root-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/anonymous-token-root-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/anonymous-token-root-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/anonymous-token-root-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/anonymous-token-root-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/anonymous-token-root-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/anonymous-token-root-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/anonymous-token-root-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/anonymous-token-root-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/anonymous-token-root-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/anonymous-token-root-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/anonymous-token-root-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/anonymous-token-root-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/anonymous-token-root-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/anonymous-token-root-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/anonymous-token-root-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/anonymous-token-root-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/anonymous-token-root-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/anonymous-token-root-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/anonymous-token-root-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/anonymous-token-root-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/anonymous-token-root-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/anonymous-token-root-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/anonymous-token-root-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/anonymous-token-root-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/anonymous-token-root-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/anonymous-token-root-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/anonymous-token-root-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/anonymous-token-root-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/anonymous-token-root-plugin/deployments", + "created_at": "2014-03-20T23:28:13Z", + "updated_at": "2014-03-21T19:50:58Z", + "pushed_at": "2014-03-21T19:50:58Z", + "git_url": "git://github.com/jenkinsci/anonymous-token-root-plugin.git", + "ssh_url": "git@github.com:jenkinsci/anonymous-token-root-plugin.git", + "clone_url": "https://github.com/jenkinsci/anonymous-token-root-plugin.git", + "svn_url": "https://github.com/jenkinsci/anonymous-token-root-plugin", + "homepage": "", + "size": 372, + "stargazers_count": 1, + "watchers_count": 1, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 18007031, + "node_id": "MDEwOlJlcG9zaXRvcnkxODAwNzAzMQ==", + "name": "scoverage-plugin", + "full_name": "jenkinsci/scoverage-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/scoverage-plugin", + "description": "Jenkins plugin for scoverage", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/scoverage-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/scoverage-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/scoverage-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/scoverage-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/scoverage-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/scoverage-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/scoverage-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/scoverage-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/scoverage-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/scoverage-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/scoverage-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/scoverage-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/scoverage-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/scoverage-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/scoverage-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/scoverage-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/scoverage-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/scoverage-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/scoverage-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/scoverage-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/scoverage-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/scoverage-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/scoverage-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/scoverage-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/scoverage-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/scoverage-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/scoverage-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/scoverage-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/scoverage-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/scoverage-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/scoverage-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/scoverage-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/scoverage-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/scoverage-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/scoverage-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/scoverage-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/scoverage-plugin/deployments", + "created_at": "2014-03-22T10:32:47Z", + "updated_at": "2019-10-14T05:39:06Z", + "pushed_at": "2019-10-14T05:39:05Z", + "git_url": "git://github.com/jenkinsci/scoverage-plugin.git", + "ssh_url": "git@github.com:jenkinsci/scoverage-plugin.git", + "clone_url": "https://github.com/jenkinsci/scoverage-plugin.git", + "svn_url": "https://github.com/jenkinsci/scoverage-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Scoverage+Plugin", + "size": 51, + "stargazers_count": 7, + "watchers_count": 7, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 15, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 15, + "open_issues": 0, + "watchers": 7, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 18043972, + "node_id": "MDEwOlJlcG9zaXRvcnkxODA0Mzk3Mg==", + "name": "jenkins.py", + "full_name": "jenkinsci/jenkins.py", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jenkins.py", + "description": "SDK for Jenkins plugin development in Python", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/jenkins.py", + "forks_url": "https://api.github.com/repos/jenkinsci/jenkins.py/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jenkins.py/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jenkins.py/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jenkins.py/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jenkins.py/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jenkins.py/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jenkins.py/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jenkins.py/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jenkins.py/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jenkins.py/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jenkins.py/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jenkins.py/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jenkins.py/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jenkins.py/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jenkins.py/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jenkins.py/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jenkins.py/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jenkins.py/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jenkins.py/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jenkins.py/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jenkins.py/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jenkins.py/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jenkins.py/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jenkins.py/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jenkins.py/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jenkins.py/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jenkins.py/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jenkins.py/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jenkins.py/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jenkins.py/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jenkins.py/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jenkins.py/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jenkins.py/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jenkins.py/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jenkins.py/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jenkins.py/deployments", + "created_at": "2014-03-23T21:26:37Z", + "updated_at": "2019-07-31T10:00:57Z", + "pushed_at": "2014-05-27T12:35:30Z", + "git_url": "git://github.com/jenkinsci/jenkins.py.git", + "ssh_url": "git@github.com:jenkinsci/jenkins.py.git", + "clone_url": "https://github.com/jenkinsci/jenkins.py.git", + "svn_url": "https://github.com/jenkinsci/jenkins.py", + "homepage": null, + "size": 10977, + "stargazers_count": 39, + "watchers_count": 39, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 13, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 13, + "open_issues": 3, + "watchers": 39, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 18096708, + "node_id": "MDEwOlJlcG9zaXRvcnkxODA5NjcwOA==", + "name": "stash-branch-parameters-plugin", + "full_name": "jenkinsci/stash-branch-parameters-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/stash-branch-parameters-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/stash-branch-parameters-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/stash-branch-parameters-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/stash-branch-parameters-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/stash-branch-parameters-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/stash-branch-parameters-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/stash-branch-parameters-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/stash-branch-parameters-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/stash-branch-parameters-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/stash-branch-parameters-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/stash-branch-parameters-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/stash-branch-parameters-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/stash-branch-parameters-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/stash-branch-parameters-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/stash-branch-parameters-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/stash-branch-parameters-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/stash-branch-parameters-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/stash-branch-parameters-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/stash-branch-parameters-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/stash-branch-parameters-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/stash-branch-parameters-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/stash-branch-parameters-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/stash-branch-parameters-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/stash-branch-parameters-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/stash-branch-parameters-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/stash-branch-parameters-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/stash-branch-parameters-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/stash-branch-parameters-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/stash-branch-parameters-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/stash-branch-parameters-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/stash-branch-parameters-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/stash-branch-parameters-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/stash-branch-parameters-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/stash-branch-parameters-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/stash-branch-parameters-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/stash-branch-parameters-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/stash-branch-parameters-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/stash-branch-parameters-plugin/deployments", + "created_at": "2014-03-25T10:36:40Z", + "updated_at": "2019-04-05T08:31:20Z", + "pushed_at": "2019-10-08T12:08:11Z", + "git_url": "git://github.com/jenkinsci/stash-branch-parameters-plugin.git", + "ssh_url": "git@github.com:jenkinsci/stash-branch-parameters-plugin.git", + "clone_url": "https://github.com/jenkinsci/stash-branch-parameters-plugin.git", + "svn_url": "https://github.com/jenkinsci/stash-branch-parameters-plugin", + "homepage": null, + "size": 94, + "stargazers_count": 17, + "watchers_count": 17, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 14, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 5, + "license": null, + "forks": 14, + "open_issues": 5, + "watchers": 17, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 18116110, + "node_id": "MDEwOlJlcG9zaXRvcnkxODExNjExMA==", + "name": "packer-plugin", + "full_name": "jenkinsci/packer-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/packer-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/packer-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/packer-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/packer-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/packer-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/packer-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/packer-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/packer-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/packer-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/packer-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/packer-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/packer-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/packer-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/packer-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/packer-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/packer-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/packer-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/packer-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/packer-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/packer-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/packer-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/packer-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/packer-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/packer-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/packer-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/packer-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/packer-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/packer-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/packer-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/packer-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/packer-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/packer-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/packer-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/packer-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/packer-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/packer-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/packer-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/packer-plugin/deployments", + "created_at": "2014-03-25T20:49:19Z", + "updated_at": "2019-08-15T19:14:10Z", + "pushed_at": "2018-03-20T13:51:32Z", + "git_url": "git://github.com/jenkinsci/packer-plugin.git", + "ssh_url": "git@github.com:jenkinsci/packer-plugin.git", + "clone_url": "https://github.com/jenkinsci/packer-plugin.git", + "svn_url": "https://github.com/jenkinsci/packer-plugin", + "homepage": "", + "size": 104, + "stargazers_count": 21, + "watchers_count": 21, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 13, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 8, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 13, + "open_issues": 8, + "watchers": 21, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 18117231, + "node_id": "MDEwOlJlcG9zaXRvcnkxODExNzIzMQ==", + "name": "google-metadata-plugin", + "full_name": "jenkinsci/google-metadata-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/google-metadata-plugin", + "description": "This plugin provides a basic framework for steps in a build’ slifecycle to attach JSON-serializable metadata to a build (as an invisible action).", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/google-metadata-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/google-metadata-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/google-metadata-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/google-metadata-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/google-metadata-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/google-metadata-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/google-metadata-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/google-metadata-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/google-metadata-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/google-metadata-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/google-metadata-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/google-metadata-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/google-metadata-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/google-metadata-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/google-metadata-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/google-metadata-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/google-metadata-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/google-metadata-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/google-metadata-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/google-metadata-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/google-metadata-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/google-metadata-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/google-metadata-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/google-metadata-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/google-metadata-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/google-metadata-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/google-metadata-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/google-metadata-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/google-metadata-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/google-metadata-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/google-metadata-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/google-metadata-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/google-metadata-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/google-metadata-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/google-metadata-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/google-metadata-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/google-metadata-plugin/deployments", + "created_at": "2014-03-25T21:29:42Z", + "updated_at": "2018-04-02T01:58:46Z", + "pushed_at": "2019-10-08T11:24:40Z", + "git_url": "git://github.com/jenkinsci/google-metadata-plugin.git", + "ssh_url": "git@github.com:jenkinsci/google-metadata-plugin.git", + "clone_url": "https://github.com/jenkinsci/google-metadata-plugin.git", + "svn_url": "https://github.com/jenkinsci/google-metadata-plugin", + "homepage": null, + "size": 190, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 2, + "open_issues": 2, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 18121721, + "node_id": "MDEwOlJlcG9zaXRvcnkxODEyMTcyMQ==", + "name": "mansion-cloud-plugin", + "full_name": "jenkinsci/mansion-cloud-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/mansion-cloud-plugin", + "description": "CloudBees Cloud Connector Plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/mansion-cloud-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/mansion-cloud-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/mansion-cloud-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/mansion-cloud-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/mansion-cloud-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/mansion-cloud-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/mansion-cloud-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/mansion-cloud-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/mansion-cloud-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/mansion-cloud-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/mansion-cloud-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/mansion-cloud-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/mansion-cloud-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/mansion-cloud-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/mansion-cloud-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/mansion-cloud-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/mansion-cloud-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/mansion-cloud-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/mansion-cloud-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/mansion-cloud-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/mansion-cloud-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/mansion-cloud-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/mansion-cloud-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/mansion-cloud-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/mansion-cloud-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/mansion-cloud-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/mansion-cloud-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/mansion-cloud-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/mansion-cloud-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/mansion-cloud-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/mansion-cloud-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/mansion-cloud-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/mansion-cloud-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/mansion-cloud-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/mansion-cloud-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/mansion-cloud-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/mansion-cloud-plugin/deployments", + "created_at": "2014-03-26T00:32:20Z", + "updated_at": "2018-11-02T02:53:55Z", + "pushed_at": "2016-03-31T08:53:51Z", + "git_url": "git://github.com/jenkinsci/mansion-cloud-plugin.git", + "ssh_url": "git@github.com:jenkinsci/mansion-cloud-plugin.git", + "clone_url": "https://github.com/jenkinsci/mansion-cloud-plugin.git", + "svn_url": "https://github.com/jenkinsci/mansion-cloud-plugin", + "homepage": "http://developer-blog.cloudbees.com/2014/03/hi-speed-linux-builds-for-devcloud.html", + "size": 360, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 7, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 7, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 18219637, + "node_id": "MDEwOlJlcG9zaXRvcnkxODIxOTYzNw==", + "name": "rubywm", + "full_name": "jenkinsci/rubywm", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/rubywm", + "description": "My modifcation to ruby window management library (https://cixar.com/svn/arcanum/ruby/wm)", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/rubywm", + "forks_url": "https://api.github.com/repos/jenkinsci/rubywm/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/rubywm/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/rubywm/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/rubywm/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/rubywm/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/rubywm/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/rubywm/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/rubywm/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/rubywm/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/rubywm/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/rubywm/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/rubywm/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/rubywm/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/rubywm/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/rubywm/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/rubywm/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/rubywm/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/rubywm/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/rubywm/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/rubywm/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/rubywm/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/rubywm/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/rubywm/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/rubywm/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/rubywm/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/rubywm/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/rubywm/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/rubywm/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/rubywm/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/rubywm/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/rubywm/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/rubywm/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/rubywm/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/rubywm/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/rubywm/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/rubywm/deployments", + "created_at": "2014-03-28T16:58:06Z", + "updated_at": "2014-03-28T16:58:07Z", + "pushed_at": "2012-06-17T16:52:57Z", + "git_url": "git://github.com/jenkinsci/rubywm.git", + "ssh_url": "git@github.com:jenkinsci/rubywm.git", + "clone_url": "https://github.com/jenkinsci/rubywm.git", + "svn_url": "https://github.com/jenkinsci/rubywm", + "homepage": "", + "size": 116, + "stargazers_count": 0, + "watchers_count": 0, + "language": "C", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 18227629, + "node_id": "MDEwOlJlcG9zaXRvcnkxODIyNzYyOQ==", + "name": "chef-tracking-plugin", + "full_name": "jenkinsci/chef-tracking-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/chef-tracking-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/chef-tracking-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/chef-tracking-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/chef-tracking-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/chef-tracking-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/chef-tracking-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/chef-tracking-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/chef-tracking-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/chef-tracking-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/chef-tracking-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/chef-tracking-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/chef-tracking-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/chef-tracking-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/chef-tracking-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/chef-tracking-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/chef-tracking-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/chef-tracking-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/chef-tracking-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/chef-tracking-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/chef-tracking-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/chef-tracking-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/chef-tracking-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/chef-tracking-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/chef-tracking-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/chef-tracking-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/chef-tracking-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/chef-tracking-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/chef-tracking-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/chef-tracking-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/chef-tracking-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/chef-tracking-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/chef-tracking-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/chef-tracking-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/chef-tracking-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/chef-tracking-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/chef-tracking-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/chef-tracking-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/chef-tracking-plugin/deployments", + "created_at": "2014-03-28T21:57:41Z", + "updated_at": "2015-12-22T18:21:21Z", + "pushed_at": "2014-05-23T15:41:21Z", + "git_url": "git://github.com/jenkinsci/chef-tracking-plugin.git", + "ssh_url": "git@github.com:jenkinsci/chef-tracking-plugin.git", + "clone_url": "https://github.com/jenkinsci/chef-tracking-plugin.git", + "svn_url": "https://github.com/jenkinsci/chef-tracking-plugin", + "homepage": "", + "size": 214, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 5, + "open_issues": 0, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 18285457, + "node_id": "MDEwOlJlcG9zaXRvcnkxODI4NTQ1Nw==", + "name": "filesystem-list-parameter-plugin", + "full_name": "jenkinsci/filesystem-list-parameter-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/filesystem-list-parameter-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/filesystem-list-parameter-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/filesystem-list-parameter-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/filesystem-list-parameter-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/filesystem-list-parameter-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/filesystem-list-parameter-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/filesystem-list-parameter-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/filesystem-list-parameter-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/filesystem-list-parameter-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/filesystem-list-parameter-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/filesystem-list-parameter-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/filesystem-list-parameter-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/filesystem-list-parameter-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/filesystem-list-parameter-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/filesystem-list-parameter-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/filesystem-list-parameter-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/filesystem-list-parameter-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/filesystem-list-parameter-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/filesystem-list-parameter-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/filesystem-list-parameter-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/filesystem-list-parameter-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/filesystem-list-parameter-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/filesystem-list-parameter-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/filesystem-list-parameter-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/filesystem-list-parameter-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/filesystem-list-parameter-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/filesystem-list-parameter-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/filesystem-list-parameter-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/filesystem-list-parameter-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/filesystem-list-parameter-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/filesystem-list-parameter-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/filesystem-list-parameter-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/filesystem-list-parameter-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/filesystem-list-parameter-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/filesystem-list-parameter-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/filesystem-list-parameter-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/filesystem-list-parameter-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/filesystem-list-parameter-plugin/deployments", + "created_at": "2014-03-31T07:42:30Z", + "updated_at": "2019-03-23T21:02:45Z", + "pushed_at": "2019-03-23T21:02:44Z", + "git_url": "git://github.com/jenkinsci/filesystem-list-parameter-plugin.git", + "ssh_url": "git@github.com:jenkinsci/filesystem-list-parameter-plugin.git", + "clone_url": "https://github.com/jenkinsci/filesystem-list-parameter-plugin.git", + "svn_url": "https://github.com/jenkinsci/filesystem-list-parameter-plugin", + "homepage": "", + "size": 47, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 3, + "open_issues": 0, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 18289903, + "node_id": "MDEwOlJlcG9zaXRvcnkxODI4OTkwMw==", + "name": "installshield-plugin", + "full_name": "jenkinsci/installshield-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/installshield-plugin", + "description": "Jenkins plugin for building InstallShield projects", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/installshield-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/installshield-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/installshield-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/installshield-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/installshield-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/installshield-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/installshield-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/installshield-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/installshield-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/installshield-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/installshield-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/installshield-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/installshield-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/installshield-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/installshield-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/installshield-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/installshield-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/installshield-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/installshield-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/installshield-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/installshield-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/installshield-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/installshield-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/installshield-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/installshield-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/installshield-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/installshield-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/installshield-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/installshield-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/installshield-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/installshield-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/installshield-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/installshield-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/installshield-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/installshield-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/installshield-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/installshield-plugin/deployments", + "created_at": "2014-03-31T10:43:42Z", + "updated_at": "2019-01-11T17:21:31Z", + "pushed_at": "2019-10-08T16:37:32Z", + "git_url": "git://github.com/jenkinsci/installshield-plugin.git", + "ssh_url": "git@github.com:jenkinsci/installshield-plugin.git", + "clone_url": "https://github.com/jenkinsci/installshield-plugin.git", + "svn_url": "https://github.com/jenkinsci/installshield-plugin", + "homepage": "", + "size": 8198, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Python", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 5, + "open_issues": 2, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 18299226, + "node_id": "MDEwOlJlcG9zaXRvcnkxODI5OTIyNg==", + "name": "backend-jira-versions", + "full_name": "jenkinsci/backend-jira-versions", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/backend-jira-versions", + "description": "Jenkins backend application to add core and plugin versions to JIRA", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/backend-jira-versions", + "forks_url": "https://api.github.com/repos/jenkinsci/backend-jira-versions/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/backend-jira-versions/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/backend-jira-versions/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/backend-jira-versions/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/backend-jira-versions/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/backend-jira-versions/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/backend-jira-versions/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/backend-jira-versions/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/backend-jira-versions/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/backend-jira-versions/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/backend-jira-versions/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/backend-jira-versions/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/backend-jira-versions/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/backend-jira-versions/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/backend-jira-versions/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/backend-jira-versions/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/backend-jira-versions/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/backend-jira-versions/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/backend-jira-versions/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/backend-jira-versions/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/backend-jira-versions/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/backend-jira-versions/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/backend-jira-versions/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/backend-jira-versions/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/backend-jira-versions/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/backend-jira-versions/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/backend-jira-versions/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/backend-jira-versions/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/backend-jira-versions/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/backend-jira-versions/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/backend-jira-versions/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/backend-jira-versions/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/backend-jira-versions/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/backend-jira-versions/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/backend-jira-versions/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/backend-jira-versions/deployments", + "created_at": "2014-03-31T16:06:21Z", + "updated_at": "2018-01-03T17:53:24Z", + "pushed_at": "2014-04-03T17:34:59Z", + "git_url": "git://github.com/jenkinsci/backend-jira-versions.git", + "ssh_url": "git@github.com:jenkinsci/backend-jira-versions.git", + "clone_url": "https://github.com/jenkinsci/backend-jira-versions.git", + "svn_url": "https://github.com/jenkinsci/backend-jira-versions", + "homepage": null, + "size": 124, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": true, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 18302929, + "node_id": "MDEwOlJlcG9zaXRvcnkxODMwMjkyOQ==", + "name": "chef-handler-jenkins", + "full_name": "jenkinsci/chef-handler-jenkins", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/chef-handler-jenkins", + "description": "Chef report handler for Jenkins deployment notification plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/chef-handler-jenkins", + "forks_url": "https://api.github.com/repos/jenkinsci/chef-handler-jenkins/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/chef-handler-jenkins/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/chef-handler-jenkins/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/chef-handler-jenkins/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/chef-handler-jenkins/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/chef-handler-jenkins/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/chef-handler-jenkins/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/chef-handler-jenkins/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/chef-handler-jenkins/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/chef-handler-jenkins/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/chef-handler-jenkins/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/chef-handler-jenkins/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/chef-handler-jenkins/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/chef-handler-jenkins/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/chef-handler-jenkins/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/chef-handler-jenkins/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/chef-handler-jenkins/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/chef-handler-jenkins/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/chef-handler-jenkins/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/chef-handler-jenkins/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/chef-handler-jenkins/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/chef-handler-jenkins/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/chef-handler-jenkins/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/chef-handler-jenkins/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/chef-handler-jenkins/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/chef-handler-jenkins/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/chef-handler-jenkins/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/chef-handler-jenkins/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/chef-handler-jenkins/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/chef-handler-jenkins/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/chef-handler-jenkins/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/chef-handler-jenkins/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/chef-handler-jenkins/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/chef-handler-jenkins/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/chef-handler-jenkins/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/chef-handler-jenkins/deployments", + "created_at": "2014-03-31T18:09:54Z", + "updated_at": "2018-01-09T13:14:27Z", + "pushed_at": "2016-09-09T11:50:08Z", + "git_url": "git://github.com/jenkinsci/chef-handler-jenkins.git", + "ssh_url": "git@github.com:jenkinsci/chef-handler-jenkins.git", + "clone_url": "https://github.com/jenkinsci/chef-handler-jenkins.git", + "svn_url": "https://github.com/jenkinsci/chef-handler-jenkins", + "homepage": "https://rubygems.org/gems/chef-handler-jenkins", + "size": 208, + "stargazers_count": 10, + "watchers_count": 10, + "language": "Ruby", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 9, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 9, + "open_issues": 3, + "watchers": 10, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 18465253, + "node_id": "MDEwOlJlcG9zaXRvcnkxODQ2NTI1Mw==", + "name": "syslog-logger-plugin", + "full_name": "jenkinsci/syslog-logger-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/syslog-logger-plugin", + "description": "Jenkins Syslog Logger Plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/syslog-logger-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/syslog-logger-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/syslog-logger-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/syslog-logger-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/syslog-logger-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/syslog-logger-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/syslog-logger-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/syslog-logger-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/syslog-logger-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/syslog-logger-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/syslog-logger-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/syslog-logger-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/syslog-logger-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/syslog-logger-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/syslog-logger-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/syslog-logger-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/syslog-logger-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/syslog-logger-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/syslog-logger-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/syslog-logger-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/syslog-logger-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/syslog-logger-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/syslog-logger-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/syslog-logger-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/syslog-logger-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/syslog-logger-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/syslog-logger-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/syslog-logger-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/syslog-logger-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/syslog-logger-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/syslog-logger-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/syslog-logger-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/syslog-logger-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/syslog-logger-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/syslog-logger-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/syslog-logger-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/syslog-logger-plugin/deployments", + "created_at": "2014-04-05T11:13:10Z", + "updated_at": "2015-04-16T08:08:09Z", + "pushed_at": "2019-10-08T16:16:13Z", + "git_url": "git://github.com/jenkinsci/syslog-logger-plugin.git", + "ssh_url": "git@github.com:jenkinsci/syslog-logger-plugin.git", + "clone_url": "https://github.com/jenkinsci/syslog-logger-plugin.git", + "svn_url": "https://github.com/jenkinsci/syslog-logger-plugin", + "homepage": null, + "size": 171, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 18466822, + "node_id": "MDEwOlJlcG9zaXRvcnkxODQ2NjgyMg==", + "name": "figlet-buildstep-plugin", + "full_name": "jenkinsci/figlet-buildstep-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/figlet-buildstep-plugin", + "description": "Allows you to output a simple banner message via build step.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/figlet-buildstep-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/figlet-buildstep-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/figlet-buildstep-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/figlet-buildstep-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/figlet-buildstep-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/figlet-buildstep-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/figlet-buildstep-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/figlet-buildstep-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/figlet-buildstep-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/figlet-buildstep-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/figlet-buildstep-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/figlet-buildstep-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/figlet-buildstep-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/figlet-buildstep-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/figlet-buildstep-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/figlet-buildstep-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/figlet-buildstep-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/figlet-buildstep-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/figlet-buildstep-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/figlet-buildstep-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/figlet-buildstep-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/figlet-buildstep-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/figlet-buildstep-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/figlet-buildstep-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/figlet-buildstep-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/figlet-buildstep-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/figlet-buildstep-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/figlet-buildstep-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/figlet-buildstep-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/figlet-buildstep-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/figlet-buildstep-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/figlet-buildstep-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/figlet-buildstep-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/figlet-buildstep-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/figlet-buildstep-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/figlet-buildstep-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/figlet-buildstep-plugin/deployments", + "created_at": "2014-04-05T12:58:02Z", + "updated_at": "2017-04-09T19:09:33Z", + "pushed_at": "2015-10-30T05:20:53Z", + "git_url": "git://github.com/jenkinsci/figlet-buildstep-plugin.git", + "ssh_url": "git@github.com:jenkinsci/figlet-buildstep-plugin.git", + "clone_url": "https://github.com/jenkinsci/figlet-buildstep-plugin.git", + "svn_url": "https://github.com/jenkinsci/figlet-buildstep-plugin", + "homepage": null, + "size": 108, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 18475086, + "node_id": "MDEwOlJlcG9zaXRvcnkxODQ3NTA4Ng==", + "name": "copr-plugin", + "full_name": "jenkinsci/copr-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/copr-plugin", + "description": "Jenkins plugin for building RPM packages in Copr", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/copr-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/copr-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/copr-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/copr-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/copr-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/copr-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/copr-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/copr-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/copr-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/copr-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/copr-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/copr-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/copr-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/copr-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/copr-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/copr-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/copr-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/copr-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/copr-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/copr-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/copr-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/copr-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/copr-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/copr-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/copr-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/copr-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/copr-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/copr-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/copr-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/copr-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/copr-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/copr-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/copr-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/copr-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/copr-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/copr-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/copr-plugin/deployments", + "created_at": "2014-04-05T19:48:24Z", + "updated_at": "2016-11-18T20:27:55Z", + "pushed_at": "2014-05-11T12:11:59Z", + "git_url": "git://github.com/jenkinsci/copr-plugin.git", + "ssh_url": "git@github.com:jenkinsci/copr-plugin.git", + "clone_url": "https://github.com/jenkinsci/copr-plugin.git", + "svn_url": "https://github.com/jenkinsci/copr-plugin", + "homepage": null, + "size": 304, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 18507124, + "node_id": "MDEwOlJlcG9zaXRvcnkxODUwNzEyNA==", + "name": "poll-mailbox-trigger-plugin", + "full_name": "jenkinsci/poll-mailbox-trigger-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/poll-mailbox-trigger-plugin", + "description": "A Jenkins plugin, to poll an email inbox, and trigger jobs based on new emails.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/poll-mailbox-trigger-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/poll-mailbox-trigger-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/poll-mailbox-trigger-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/poll-mailbox-trigger-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/poll-mailbox-trigger-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/poll-mailbox-trigger-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/poll-mailbox-trigger-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/poll-mailbox-trigger-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/poll-mailbox-trigger-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/poll-mailbox-trigger-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/poll-mailbox-trigger-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/poll-mailbox-trigger-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/poll-mailbox-trigger-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/poll-mailbox-trigger-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/poll-mailbox-trigger-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/poll-mailbox-trigger-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/poll-mailbox-trigger-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/poll-mailbox-trigger-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/poll-mailbox-trigger-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/poll-mailbox-trigger-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/poll-mailbox-trigger-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/poll-mailbox-trigger-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/poll-mailbox-trigger-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/poll-mailbox-trigger-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/poll-mailbox-trigger-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/poll-mailbox-trigger-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/poll-mailbox-trigger-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/poll-mailbox-trigger-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/poll-mailbox-trigger-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/poll-mailbox-trigger-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/poll-mailbox-trigger-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/poll-mailbox-trigger-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/poll-mailbox-trigger-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/poll-mailbox-trigger-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/poll-mailbox-trigger-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/poll-mailbox-trigger-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/poll-mailbox-trigger-plugin/deployments", + "created_at": "2014-04-07T05:20:57Z", + "updated_at": "2019-08-23T03:35:03Z", + "pushed_at": "2019-08-20T13:46:39Z", + "git_url": "git://github.com/jenkinsci/poll-mailbox-trigger-plugin.git", + "ssh_url": "git@github.com:jenkinsci/poll-mailbox-trigger-plugin.git", + "clone_url": "https://github.com/jenkinsci/poll-mailbox-trigger-plugin.git", + "svn_url": "https://github.com/jenkinsci/poll-mailbox-trigger-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Poll Mailbox Trigger Plugin", + "size": 1125, + "stargazers_count": 35, + "watchers_count": 35, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 23, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 25, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 23, + "open_issues": 25, + "watchers": 35, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 18557125, + "node_id": "MDEwOlJlcG9zaXRvcnkxODU1NzEyNQ==", + "name": "export-params-plugin", + "full_name": "jenkinsci/export-params-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/export-params-plugin", + "description": "A plugin that export parameters provided by Jenkins to file with various formats.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/export-params-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/export-params-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/export-params-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/export-params-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/export-params-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/export-params-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/export-params-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/export-params-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/export-params-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/export-params-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/export-params-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/export-params-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/export-params-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/export-params-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/export-params-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/export-params-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/export-params-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/export-params-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/export-params-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/export-params-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/export-params-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/export-params-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/export-params-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/export-params-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/export-params-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/export-params-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/export-params-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/export-params-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/export-params-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/export-params-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/export-params-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/export-params-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/export-params-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/export-params-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/export-params-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/export-params-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/export-params-plugin/deployments", + "created_at": "2014-04-08T12:21:24Z", + "updated_at": "2016-05-19T09:48:42Z", + "pushed_at": "2018-01-24T11:52:10Z", + "git_url": "git://github.com/jenkinsci/export-params-plugin.git", + "ssh_url": "git@github.com:jenkinsci/export-params-plugin.git", + "clone_url": "https://github.com/jenkinsci/export-params-plugin.git", + "svn_url": "https://github.com/jenkinsci/export-params-plugin", + "homepage": "", + "size": 46, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 18565292, + "node_id": "MDEwOlJlcG9zaXRvcnkxODU2NTI5Mg==", + "name": "random-job-builder-plugin", + "full_name": "jenkinsci/random-job-builder-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/random-job-builder-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/random-job-builder-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/random-job-builder-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/random-job-builder-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/random-job-builder-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/random-job-builder-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/random-job-builder-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/random-job-builder-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/random-job-builder-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/random-job-builder-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/random-job-builder-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/random-job-builder-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/random-job-builder-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/random-job-builder-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/random-job-builder-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/random-job-builder-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/random-job-builder-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/random-job-builder-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/random-job-builder-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/random-job-builder-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/random-job-builder-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/random-job-builder-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/random-job-builder-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/random-job-builder-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/random-job-builder-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/random-job-builder-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/random-job-builder-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/random-job-builder-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/random-job-builder-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/random-job-builder-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/random-job-builder-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/random-job-builder-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/random-job-builder-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/random-job-builder-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/random-job-builder-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/random-job-builder-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/random-job-builder-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/random-job-builder-plugin/deployments", + "created_at": "2014-04-08T16:17:01Z", + "updated_at": "2017-06-28T20:39:02Z", + "pushed_at": "2017-08-26T20:12:04Z", + "git_url": "git://github.com/jenkinsci/random-job-builder-plugin.git", + "ssh_url": "git@github.com:jenkinsci/random-job-builder-plugin.git", + "clone_url": "https://github.com/jenkinsci/random-job-builder-plugin.git", + "svn_url": "https://github.com/jenkinsci/random-job-builder-plugin", + "homepage": "", + "size": 8, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 1, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 18577385, + "node_id": "MDEwOlJlcG9zaXRvcnkxODU3NzM4NQ==", + "name": "chosen-views-tabbar", + "full_name": "jenkinsci/chosen-views-tabbar", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/chosen-views-tabbar", + "description": "A jenkins plugin that adds a new more compact views tab bar", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/chosen-views-tabbar", + "forks_url": "https://api.github.com/repos/jenkinsci/chosen-views-tabbar/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/chosen-views-tabbar/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/chosen-views-tabbar/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/chosen-views-tabbar/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/chosen-views-tabbar/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/chosen-views-tabbar/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/chosen-views-tabbar/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/chosen-views-tabbar/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/chosen-views-tabbar/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/chosen-views-tabbar/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/chosen-views-tabbar/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/chosen-views-tabbar/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/chosen-views-tabbar/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/chosen-views-tabbar/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/chosen-views-tabbar/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/chosen-views-tabbar/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/chosen-views-tabbar/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/chosen-views-tabbar/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/chosen-views-tabbar/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/chosen-views-tabbar/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/chosen-views-tabbar/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/chosen-views-tabbar/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/chosen-views-tabbar/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/chosen-views-tabbar/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/chosen-views-tabbar/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/chosen-views-tabbar/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/chosen-views-tabbar/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/chosen-views-tabbar/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/chosen-views-tabbar/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/chosen-views-tabbar/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/chosen-views-tabbar/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/chosen-views-tabbar/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/chosen-views-tabbar/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/chosen-views-tabbar/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/chosen-views-tabbar/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/chosen-views-tabbar/deployments", + "created_at": "2014-04-08T22:37:23Z", + "updated_at": "2014-04-13T21:17:29Z", + "pushed_at": "2014-04-13T21:17:28Z", + "git_url": "git://github.com/jenkinsci/chosen-views-tabbar.git", + "ssh_url": "git@github.com:jenkinsci/chosen-views-tabbar.git", + "clone_url": "https://github.com/jenkinsci/chosen-views-tabbar.git", + "svn_url": "https://github.com/jenkinsci/chosen-views-tabbar", + "homepage": null, + "size": 216, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 18597529, + "node_id": "MDEwOlJlcG9zaXRvcnkxODU5NzUyOQ==", + "name": "mock-load-builder-plugin", + "full_name": "jenkinsci/mock-load-builder-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/mock-load-builder-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/mock-load-builder-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/mock-load-builder-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/mock-load-builder-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/mock-load-builder-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/mock-load-builder-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/mock-load-builder-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/mock-load-builder-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/mock-load-builder-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/mock-load-builder-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/mock-load-builder-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/mock-load-builder-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/mock-load-builder-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/mock-load-builder-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/mock-load-builder-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/mock-load-builder-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/mock-load-builder-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/mock-load-builder-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/mock-load-builder-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/mock-load-builder-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/mock-load-builder-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/mock-load-builder-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/mock-load-builder-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/mock-load-builder-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/mock-load-builder-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/mock-load-builder-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/mock-load-builder-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/mock-load-builder-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/mock-load-builder-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/mock-load-builder-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/mock-load-builder-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/mock-load-builder-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/mock-load-builder-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/mock-load-builder-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/mock-load-builder-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/mock-load-builder-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/mock-load-builder-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/mock-load-builder-plugin/deployments", + "created_at": "2014-04-09T13:09:12Z", + "updated_at": "2016-09-23T13:32:42Z", + "pushed_at": "2017-06-28T20:39:18Z", + "git_url": "git://github.com/jenkinsci/mock-load-builder-plugin.git", + "ssh_url": "git@github.com:jenkinsci/mock-load-builder-plugin.git", + "clone_url": "https://github.com/jenkinsci/mock-load-builder-plugin.git", + "svn_url": "https://github.com/jenkinsci/mock-load-builder-plugin", + "homepage": "", + "size": 31, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 18601807, + "node_id": "MDEwOlJlcG9zaXRvcnkxODYwMTgwNw==", + "name": "myst-plugin", + "full_name": "jenkinsci/myst-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/myst-plugin", + "description": "MyST Jenkins Plugin for Oracle Fusion Middleware", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/myst-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/myst-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/myst-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/myst-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/myst-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/myst-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/myst-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/myst-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/myst-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/myst-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/myst-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/myst-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/myst-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/myst-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/myst-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/myst-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/myst-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/myst-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/myst-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/myst-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/myst-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/myst-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/myst-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/myst-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/myst-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/myst-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/myst-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/myst-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/myst-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/myst-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/myst-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/myst-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/myst-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/myst-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/myst-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/myst-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/myst-plugin/deployments", + "created_at": "2014-04-09T15:10:18Z", + "updated_at": "2016-07-04T07:57:31Z", + "pushed_at": "2014-05-20T14:25:45Z", + "git_url": "git://github.com/jenkinsci/myst-plugin.git", + "ssh_url": "git@github.com:jenkinsci/myst-plugin.git", + "clone_url": "https://github.com/jenkinsci/myst-plugin.git", + "svn_url": "https://github.com/jenkinsci/myst-plugin", + "homepage": null, + "size": 309, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 18605951, + "node_id": "MDEwOlJlcG9zaXRvcnkxODYwNTk1MQ==", + "name": "docker-custom-build-environment-plugin", + "full_name": "jenkinsci/docker-custom-build-environment-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/docker-custom-build-environment-plugin", + "description": "Define your build environment in a Dockerfile", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/docker-custom-build-environment-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/docker-custom-build-environment-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/docker-custom-build-environment-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/docker-custom-build-environment-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/docker-custom-build-environment-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/docker-custom-build-environment-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/docker-custom-build-environment-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/docker-custom-build-environment-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/docker-custom-build-environment-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/docker-custom-build-environment-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/docker-custom-build-environment-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/docker-custom-build-environment-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/docker-custom-build-environment-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/docker-custom-build-environment-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/docker-custom-build-environment-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/docker-custom-build-environment-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/docker-custom-build-environment-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/docker-custom-build-environment-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/docker-custom-build-environment-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/docker-custom-build-environment-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/docker-custom-build-environment-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/docker-custom-build-environment-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/docker-custom-build-environment-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/docker-custom-build-environment-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/docker-custom-build-environment-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/docker-custom-build-environment-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/docker-custom-build-environment-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/docker-custom-build-environment-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/docker-custom-build-environment-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/docker-custom-build-environment-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/docker-custom-build-environment-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/docker-custom-build-environment-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/docker-custom-build-environment-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/docker-custom-build-environment-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/docker-custom-build-environment-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/docker-custom-build-environment-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/docker-custom-build-environment-plugin/deployments", + "created_at": "2014-04-09T17:16:18Z", + "updated_at": "2019-09-17T20:18:06Z", + "pushed_at": "2019-06-11T08:07:18Z", + "git_url": "git://github.com/jenkinsci/docker-custom-build-environment-plugin.git", + "ssh_url": "git@github.com:jenkinsci/docker-custom-build-environment-plugin.git", + "clone_url": "https://github.com/jenkinsci/docker-custom-build-environment-plugin.git", + "svn_url": "https://github.com/jenkinsci/docker-custom-build-environment-plugin", + "homepage": "https://plugins.jenkins.io/docker-custom-build-environment", + "size": 239, + "stargazers_count": 65, + "watchers_count": 65, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 74, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 20, + "license": null, + "forks": 74, + "open_issues": 20, + "watchers": 65, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 18613892, + "node_id": "MDEwOlJlcG9zaXRvcnkxODYxMzg5Mg==", + "name": "artifact-promotion-plugin", + "full_name": "jenkinsci/artifact-promotion-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/artifact-promotion-plugin", + "description": "A simple Jenkins plugin to promote artifacts.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/artifact-promotion-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/artifact-promotion-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/artifact-promotion-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/artifact-promotion-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/artifact-promotion-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/artifact-promotion-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/artifact-promotion-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/artifact-promotion-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/artifact-promotion-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/artifact-promotion-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/artifact-promotion-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/artifact-promotion-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/artifact-promotion-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/artifact-promotion-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/artifact-promotion-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/artifact-promotion-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/artifact-promotion-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/artifact-promotion-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/artifact-promotion-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/artifact-promotion-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/artifact-promotion-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/artifact-promotion-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/artifact-promotion-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/artifact-promotion-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/artifact-promotion-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/artifact-promotion-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/artifact-promotion-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/artifact-promotion-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/artifact-promotion-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/artifact-promotion-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/artifact-promotion-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/artifact-promotion-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/artifact-promotion-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/artifact-promotion-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/artifact-promotion-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/artifact-promotion-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/artifact-promotion-plugin/deployments", + "created_at": "2014-04-09T21:23:36Z", + "updated_at": "2019-10-10T11:02:46Z", + "pushed_at": "2019-10-10T11:02:44Z", + "git_url": "git://github.com/jenkinsci/artifact-promotion-plugin.git", + "ssh_url": "git@github.com:jenkinsci/artifact-promotion-plugin.git", + "clone_url": "https://github.com/jenkinsci/artifact-promotion-plugin.git", + "svn_url": "https://github.com/jenkinsci/artifact-promotion-plugin", + "homepage": "", + "size": 167, + "stargazers_count": 23, + "watchers_count": 23, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 14, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 7, + "license": null, + "forks": 14, + "open_issues": 7, + "watchers": 23, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 18695382, + "node_id": "MDEwOlJlcG9zaXRvcnkxODY5NTM4Mg==", + "name": "emailext-template-plugin", + "full_name": "jenkinsci/emailext-template-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/emailext-template-plugin", + "description": "Plugin which provides the ability to use templates for email notifications instead of setting it up per project.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/emailext-template-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/emailext-template-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/emailext-template-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/emailext-template-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/emailext-template-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/emailext-template-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/emailext-template-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/emailext-template-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/emailext-template-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/emailext-template-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/emailext-template-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/emailext-template-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/emailext-template-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/emailext-template-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/emailext-template-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/emailext-template-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/emailext-template-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/emailext-template-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/emailext-template-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/emailext-template-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/emailext-template-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/emailext-template-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/emailext-template-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/emailext-template-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/emailext-template-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/emailext-template-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/emailext-template-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/emailext-template-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/emailext-template-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/emailext-template-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/emailext-template-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/emailext-template-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/emailext-template-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/emailext-template-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/emailext-template-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/emailext-template-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/emailext-template-plugin/deployments", + "created_at": "2014-04-12T03:29:44Z", + "updated_at": "2019-05-14T09:33:04Z", + "pushed_at": "2019-09-20T21:03:24Z", + "git_url": "git://github.com/jenkinsci/emailext-template-plugin.git", + "ssh_url": "git@github.com:jenkinsci/emailext-template-plugin.git", + "clone_url": "https://github.com/jenkinsci/emailext-template-plugin.git", + "svn_url": "https://github.com/jenkinsci/emailext-template-plugin", + "homepage": null, + "size": 44, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 5, + "open_issues": 1, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 18816369, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgxNjM2OQ==", + "name": "ease-plugin", + "full_name": "jenkinsci/ease-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/ease-plugin", + "description": "Jenkins plugin to upload Android, Blackberry and iOS apps", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/ease-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/ease-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/ease-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/ease-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/ease-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/ease-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/ease-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/ease-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/ease-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/ease-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/ease-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/ease-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/ease-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/ease-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/ease-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/ease-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/ease-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/ease-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/ease-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/ease-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/ease-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/ease-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/ease-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/ease-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/ease-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/ease-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/ease-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/ease-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/ease-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/ease-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/ease-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/ease-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/ease-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/ease-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/ease-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/ease-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/ease-plugin/deployments", + "created_at": "2014-04-15T21:20:58Z", + "updated_at": "2019-03-06T20:32:42Z", + "pushed_at": "2019-03-06T20:32:41Z", + "git_url": "git://github.com/jenkinsci/ease-plugin.git", + "ssh_url": "git@github.com:jenkinsci/ease-plugin.git", + "clone_url": "https://github.com/jenkinsci/ease-plugin.git", + "svn_url": "https://github.com/jenkinsci/ease-plugin", + "homepage": "http://www.apperian.com/mobile-application-management/enterprise-app-store/", + "size": 408, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 2, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 18839174, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzOTE3NA==", + "name": "easytestreport-plugin", + "full_name": "jenkinsci/easytestreport-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/easytestreport-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/easytestreport-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/easytestreport-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/easytestreport-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/easytestreport-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/easytestreport-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/easytestreport-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/easytestreport-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/easytestreport-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/easytestreport-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/easytestreport-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/easytestreport-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/easytestreport-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/easytestreport-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/easytestreport-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/easytestreport-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/easytestreport-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/easytestreport-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/easytestreport-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/easytestreport-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/easytestreport-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/easytestreport-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/easytestreport-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/easytestreport-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/easytestreport-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/easytestreport-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/easytestreport-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/easytestreport-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/easytestreport-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/easytestreport-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/easytestreport-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/easytestreport-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/easytestreport-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/easytestreport-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/easytestreport-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/easytestreport-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/easytestreport-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/easytestreport-plugin/deployments", + "created_at": "2014-04-16T12:41:29Z", + "updated_at": "2014-04-16T15:14:52Z", + "pushed_at": "2014-04-16T15:14:55Z", + "git_url": "git://github.com/jenkinsci/easytestreport-plugin.git", + "ssh_url": "git@github.com:jenkinsci/easytestreport-plugin.git", + "clone_url": "https://github.com/jenkinsci/easytestreport-plugin.git", + "svn_url": "https://github.com/jenkinsci/easytestreport-plugin", + "homepage": "", + "size": 604, + "stargazers_count": 1, + "watchers_count": 1, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 19066780, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTA2Njc4MA==", + "name": "testfairy-plugin-old", + "full_name": "jenkinsci/testfairy-plugin-old", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/testfairy-plugin-old", + "description": "Test Fairy Jenkins Plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/testfairy-plugin-old", + "forks_url": "https://api.github.com/repos/jenkinsci/testfairy-plugin-old/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/testfairy-plugin-old/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/testfairy-plugin-old/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/testfairy-plugin-old/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/testfairy-plugin-old/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/testfairy-plugin-old/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/testfairy-plugin-old/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/testfairy-plugin-old/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/testfairy-plugin-old/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/testfairy-plugin-old/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/testfairy-plugin-old/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/testfairy-plugin-old/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/testfairy-plugin-old/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/testfairy-plugin-old/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/testfairy-plugin-old/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/testfairy-plugin-old/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/testfairy-plugin-old/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/testfairy-plugin-old/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/testfairy-plugin-old/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/testfairy-plugin-old/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/testfairy-plugin-old/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/testfairy-plugin-old/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/testfairy-plugin-old/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/testfairy-plugin-old/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/testfairy-plugin-old/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/testfairy-plugin-old/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/testfairy-plugin-old/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/testfairy-plugin-old/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/testfairy-plugin-old/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/testfairy-plugin-old/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/testfairy-plugin-old/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/testfairy-plugin-old/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/testfairy-plugin-old/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/testfairy-plugin-old/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/testfairy-plugin-old/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/testfairy-plugin-old/deployments", + "created_at": "2014-04-23T11:12:01Z", + "updated_at": "2015-02-01T16:44:37Z", + "pushed_at": "2014-05-07T13:22:01Z", + "git_url": "git://github.com/jenkinsci/testfairy-plugin-old.git", + "ssh_url": "git@github.com:jenkinsci/testfairy-plugin-old.git", + "clone_url": "https://github.com/jenkinsci/testfairy-plugin-old.git", + "svn_url": "https://github.com/jenkinsci/testfairy-plugin-old", + "homepage": null, + "size": 151, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 8, + "license": null, + "forks": 6, + "open_issues": 8, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 19120004, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTEyMDAwNA==", + "name": "liquibase-runner-plugin", + "full_name": "jenkinsci/liquibase-runner-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/liquibase-runner-plugin", + "description": "jenkins-liquibase", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/liquibase-runner-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/liquibase-runner-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/liquibase-runner-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/liquibase-runner-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/liquibase-runner-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/liquibase-runner-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/liquibase-runner-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/liquibase-runner-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/liquibase-runner-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/liquibase-runner-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/liquibase-runner-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/liquibase-runner-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/liquibase-runner-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/liquibase-runner-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/liquibase-runner-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/liquibase-runner-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/liquibase-runner-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/liquibase-runner-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/liquibase-runner-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/liquibase-runner-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/liquibase-runner-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/liquibase-runner-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/liquibase-runner-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/liquibase-runner-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/liquibase-runner-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/liquibase-runner-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/liquibase-runner-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/liquibase-runner-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/liquibase-runner-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/liquibase-runner-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/liquibase-runner-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/liquibase-runner-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/liquibase-runner-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/liquibase-runner-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/liquibase-runner-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/liquibase-runner-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/liquibase-runner-plugin/deployments", + "created_at": "2014-04-24T18:47:18Z", + "updated_at": "2019-08-14T18:03:33Z", + "pushed_at": "2017-12-29T15:59:28Z", + "git_url": "git://github.com/jenkinsci/liquibase-runner-plugin.git", + "ssh_url": "git@github.com:jenkinsci/liquibase-runner-plugin.git", + "clone_url": "https://github.com/jenkinsci/liquibase-runner-plugin.git", + "svn_url": "https://github.com/jenkinsci/liquibase-runner-plugin", + "homepage": null, + "size": 465, + "stargazers_count": 6, + "watchers_count": 6, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 8, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 12, + "license": null, + "forks": 8, + "open_issues": 12, + "watchers": 6, + "default_branch": "develop", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 19150952, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTE1MDk1Mg==", + "name": "rss-retaliation", + "full_name": "jenkinsci/rss-retaliation", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/rss-retaliation", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/rss-retaliation", + "forks_url": "https://api.github.com/repos/jenkinsci/rss-retaliation/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/rss-retaliation/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/rss-retaliation/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/rss-retaliation/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/rss-retaliation/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/rss-retaliation/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/rss-retaliation/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/rss-retaliation/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/rss-retaliation/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/rss-retaliation/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/rss-retaliation/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/rss-retaliation/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/rss-retaliation/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/rss-retaliation/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/rss-retaliation/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/rss-retaliation/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/rss-retaliation/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/rss-retaliation/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/rss-retaliation/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/rss-retaliation/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/rss-retaliation/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/rss-retaliation/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/rss-retaliation/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/rss-retaliation/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/rss-retaliation/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/rss-retaliation/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/rss-retaliation/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/rss-retaliation/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/rss-retaliation/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/rss-retaliation/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/rss-retaliation/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/rss-retaliation/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/rss-retaliation/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/rss-retaliation/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/rss-retaliation/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/rss-retaliation/deployments", + "created_at": "2014-04-25T15:32:42Z", + "updated_at": "2016-12-17T10:13:02Z", + "pushed_at": "2015-10-18T13:14:08Z", + "git_url": "git://github.com/jenkinsci/rss-retaliation.git", + "ssh_url": "git@github.com:jenkinsci/rss-retaliation.git", + "clone_url": "https://github.com/jenkinsci/rss-retaliation.git", + "svn_url": "https://github.com/jenkinsci/rss-retaliation", + "homepage": null, + "size": 474, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 2, + "open_issues": 0, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 19156356, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTE1NjM1Ng==", + "name": "digitalocean-plugin", + "full_name": "jenkinsci/digitalocean-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/digitalocean-plugin", + "description": "Jenkins DigitalOcean Slave Plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/digitalocean-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/digitalocean-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/digitalocean-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/digitalocean-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/digitalocean-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/digitalocean-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/digitalocean-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/digitalocean-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/digitalocean-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/digitalocean-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/digitalocean-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/digitalocean-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/digitalocean-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/digitalocean-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/digitalocean-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/digitalocean-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/digitalocean-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/digitalocean-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/digitalocean-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/digitalocean-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/digitalocean-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/digitalocean-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/digitalocean-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/digitalocean-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/digitalocean-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/digitalocean-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/digitalocean-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/digitalocean-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/digitalocean-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/digitalocean-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/digitalocean-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/digitalocean-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/digitalocean-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/digitalocean-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/digitalocean-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/digitalocean-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/digitalocean-plugin/deployments", + "created_at": "2014-04-25T18:33:27Z", + "updated_at": "2019-08-29T06:48:52Z", + "pushed_at": "2019-10-08T16:31:00Z", + "git_url": "git://github.com/jenkinsci/digitalocean-plugin.git", + "ssh_url": "git@github.com:jenkinsci/digitalocean-plugin.git", + "clone_url": "https://github.com/jenkinsci/digitalocean-plugin.git", + "svn_url": "https://github.com/jenkinsci/digitalocean-plugin", + "homepage": null, + "size": 231, + "stargazers_count": 37, + "watchers_count": 37, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 29, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 29, + "open_issues": 1, + "watchers": 37, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 19292568, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTI5MjU2OA==", + "name": "golang-plugin", + "full_name": "jenkinsci/golang-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/golang-plugin", + "description": "Automatically installs the Go tools on Jenkins build slaves", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/golang-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/golang-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/golang-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/golang-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/golang-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/golang-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/golang-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/golang-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/golang-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/golang-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/golang-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/golang-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/golang-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/golang-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/golang-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/golang-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/golang-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/golang-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/golang-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/golang-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/golang-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/golang-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/golang-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/golang-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/golang-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/golang-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/golang-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/golang-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/golang-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/golang-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/golang-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/golang-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/golang-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/golang-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/golang-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/golang-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/golang-plugin/deployments", + "created_at": "2014-04-29T21:48:01Z", + "updated_at": "2019-10-08T20:45:39Z", + "pushed_at": "2019-10-08T20:45:37Z", + "git_url": "git://github.com/jenkinsci/golang-plugin.git", + "ssh_url": "git@github.com:jenkinsci/golang-plugin.git", + "clone_url": "https://github.com/jenkinsci/golang-plugin.git", + "svn_url": "https://github.com/jenkinsci/golang-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Go+Plugin", + "size": 24, + "stargazers_count": 43, + "watchers_count": 43, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 11, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 11, + "open_issues": 0, + "watchers": 43, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 19528520, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTUyODUyMA==", + "name": "cors-plugin", + "full_name": "jenkinsci/cors-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/cors-plugin", + "description": "Jenkins CORS plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/cors-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/cors-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/cors-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/cors-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/cors-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/cors-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/cors-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/cors-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/cors-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/cors-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/cors-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/cors-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/cors-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/cors-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/cors-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/cors-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/cors-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/cors-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/cors-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/cors-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/cors-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/cors-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/cors-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/cors-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/cors-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/cors-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/cors-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/cors-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/cors-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/cors-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/cors-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/cors-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/cors-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/cors-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/cors-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/cors-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/cors-plugin/deployments", + "created_at": "2014-05-07T09:24:35Z", + "updated_at": "2014-05-07T09:24:36Z", + "pushed_at": "2013-04-26T11:49:49Z", + "git_url": "git://github.com/jenkinsci/cors-plugin.git", + "ssh_url": "git@github.com:jenkinsci/cors-plugin.git", + "clone_url": "https://github.com/jenkinsci/cors-plugin.git", + "svn_url": "https://github.com/jenkinsci/cors-plugin", + "homepage": null, + "size": 169, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 19630847, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTYzMDg0Nw==", + "name": "pipeline-plugin", + "full_name": "jenkinsci/pipeline-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pipeline-plugin", + "description": "Jenkins Pipeline plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/pipeline-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pipeline-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pipeline-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pipeline-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pipeline-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pipeline-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pipeline-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pipeline-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pipeline-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pipeline-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pipeline-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pipeline-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pipeline-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pipeline-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pipeline-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pipeline-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pipeline-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pipeline-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pipeline-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pipeline-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pipeline-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pipeline-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pipeline-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pipeline-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pipeline-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pipeline-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pipeline-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pipeline-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pipeline-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pipeline-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pipeline-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pipeline-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pipeline-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pipeline-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pipeline-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pipeline-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pipeline-plugin/deployments", + "created_at": "2014-05-10T01:47:09Z", + "updated_at": "2019-10-25T00:01:29Z", + "pushed_at": "2019-10-10T11:23:22Z", + "git_url": "git://github.com/jenkinsci/pipeline-plugin.git", + "ssh_url": "git@github.com:jenkinsci/pipeline-plugin.git", + "clone_url": "https://github.com/jenkinsci/pipeline-plugin.git", + "svn_url": "https://github.com/jenkinsci/pipeline-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Pipeline+Plugin", + "size": 5472, + "stargazers_count": 1573, + "watchers_count": 1573, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 842, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 6, + "license": null, + "forks": 842, + "open_issues": 6, + "watchers": 1573, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 19651862, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTY1MTg2Mg==", + "name": "failure-visualizer-plugin", + "full_name": "jenkinsci/failure-visualizer-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/failure-visualizer-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/failure-visualizer-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/failure-visualizer-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/failure-visualizer-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/failure-visualizer-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/failure-visualizer-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/failure-visualizer-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/failure-visualizer-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/failure-visualizer-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/failure-visualizer-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/failure-visualizer-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/failure-visualizer-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/failure-visualizer-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/failure-visualizer-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/failure-visualizer-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/failure-visualizer-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/failure-visualizer-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/failure-visualizer-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/failure-visualizer-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/failure-visualizer-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/failure-visualizer-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/failure-visualizer-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/failure-visualizer-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/failure-visualizer-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/failure-visualizer-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/failure-visualizer-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/failure-visualizer-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/failure-visualizer-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/failure-visualizer-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/failure-visualizer-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/failure-visualizer-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/failure-visualizer-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/failure-visualizer-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/failure-visualizer-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/failure-visualizer-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/failure-visualizer-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/failure-visualizer-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/failure-visualizer-plugin/deployments", + "created_at": "2014-05-10T20:56:21Z", + "updated_at": "2014-05-11T10:44:19Z", + "pushed_at": "2014-05-11T10:44:19Z", + "git_url": "git://github.com/jenkinsci/failure-visualizer-plugin.git", + "ssh_url": "git@github.com:jenkinsci/failure-visualizer-plugin.git", + "clone_url": "https://github.com/jenkinsci/failure-visualizer-plugin.git", + "svn_url": "https://github.com/jenkinsci/failure-visualizer-plugin", + "homepage": null, + "size": 140, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 19690782, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTY5MDc4Mg==", + "name": "send-stacktrace-to-eclipse-plugin", + "full_name": "jenkinsci/send-stacktrace-to-eclipse-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/send-stacktrace-to-eclipse-plugin", + "description": "Send stacktrace to Eclipse plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/send-stacktrace-to-eclipse-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/send-stacktrace-to-eclipse-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/send-stacktrace-to-eclipse-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/send-stacktrace-to-eclipse-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/send-stacktrace-to-eclipse-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/send-stacktrace-to-eclipse-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/send-stacktrace-to-eclipse-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/send-stacktrace-to-eclipse-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/send-stacktrace-to-eclipse-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/send-stacktrace-to-eclipse-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/send-stacktrace-to-eclipse-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/send-stacktrace-to-eclipse-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/send-stacktrace-to-eclipse-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/send-stacktrace-to-eclipse-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/send-stacktrace-to-eclipse-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/send-stacktrace-to-eclipse-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/send-stacktrace-to-eclipse-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/send-stacktrace-to-eclipse-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/send-stacktrace-to-eclipse-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/send-stacktrace-to-eclipse-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/send-stacktrace-to-eclipse-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/send-stacktrace-to-eclipse-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/send-stacktrace-to-eclipse-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/send-stacktrace-to-eclipse-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/send-stacktrace-to-eclipse-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/send-stacktrace-to-eclipse-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/send-stacktrace-to-eclipse-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/send-stacktrace-to-eclipse-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/send-stacktrace-to-eclipse-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/send-stacktrace-to-eclipse-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/send-stacktrace-to-eclipse-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/send-stacktrace-to-eclipse-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/send-stacktrace-to-eclipse-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/send-stacktrace-to-eclipse-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/send-stacktrace-to-eclipse-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/send-stacktrace-to-eclipse-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/send-stacktrace-to-eclipse-plugin/deployments", + "created_at": "2014-05-12T08:13:22Z", + "updated_at": "2018-03-13T20:44:35Z", + "pushed_at": "2018-03-13T20:44:34Z", + "git_url": "git://github.com/jenkinsci/send-stacktrace-to-eclipse-plugin.git", + "ssh_url": "git@github.com:jenkinsci/send-stacktrace-to-eclipse-plugin.git", + "clone_url": "https://github.com/jenkinsci/send-stacktrace-to-eclipse-plugin.git", + "svn_url": "https://github.com/jenkinsci/send-stacktrace-to-eclipse-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Send+stacktrace+to+eclipse+plugin", + "size": 13, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 19746227, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTc0NjIyNw==", + "name": "scalability-test-framework", + "full_name": "jenkinsci/scalability-test-framework", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/scalability-test-framework", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/scalability-test-framework", + "forks_url": "https://api.github.com/repos/jenkinsci/scalability-test-framework/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/scalability-test-framework/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/scalability-test-framework/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/scalability-test-framework/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/scalability-test-framework/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/scalability-test-framework/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/scalability-test-framework/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/scalability-test-framework/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/scalability-test-framework/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/scalability-test-framework/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/scalability-test-framework/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/scalability-test-framework/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/scalability-test-framework/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/scalability-test-framework/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/scalability-test-framework/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/scalability-test-framework/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/scalability-test-framework/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/scalability-test-framework/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/scalability-test-framework/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/scalability-test-framework/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/scalability-test-framework/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/scalability-test-framework/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/scalability-test-framework/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/scalability-test-framework/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/scalability-test-framework/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/scalability-test-framework/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/scalability-test-framework/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/scalability-test-framework/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/scalability-test-framework/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/scalability-test-framework/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/scalability-test-framework/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/scalability-test-framework/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/scalability-test-framework/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/scalability-test-framework/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/scalability-test-framework/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/scalability-test-framework/deployments", + "created_at": "2014-05-13T16:11:27Z", + "updated_at": "2014-05-13T16:11:29Z", + "pushed_at": "2014-05-13T16:11:28Z", + "git_url": "git://github.com/jenkinsci/scalability-test-framework.git", + "ssh_url": "git@github.com:jenkinsci/scalability-test-framework.git", + "clone_url": "https://github.com/jenkinsci/scalability-test-framework.git", + "svn_url": "https://github.com/jenkinsci/scalability-test-framework", + "homepage": "", + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 19772018, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTc3MjAxOA==", + "name": "scripted-cloud-plugin", + "full_name": "jenkinsci/scripted-cloud-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/scripted-cloud-plugin", + "description": "plugin for running scripts to start stop VMs remotely", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/scripted-cloud-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/scripted-cloud-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/scripted-cloud-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/scripted-cloud-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/scripted-cloud-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/scripted-cloud-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/scripted-cloud-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/scripted-cloud-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/scripted-cloud-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/scripted-cloud-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/scripted-cloud-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/scripted-cloud-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/scripted-cloud-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/scripted-cloud-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/scripted-cloud-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/scripted-cloud-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/scripted-cloud-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/scripted-cloud-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/scripted-cloud-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/scripted-cloud-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/scripted-cloud-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/scripted-cloud-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/scripted-cloud-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/scripted-cloud-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/scripted-cloud-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/scripted-cloud-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/scripted-cloud-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/scripted-cloud-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/scripted-cloud-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/scripted-cloud-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/scripted-cloud-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/scripted-cloud-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/scripted-cloud-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/scripted-cloud-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/scripted-cloud-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/scripted-cloud-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/scripted-cloud-plugin/deployments", + "created_at": "2014-05-14T08:28:02Z", + "updated_at": "2018-07-31T15:45:03Z", + "pushed_at": "2019-10-08T16:44:58Z", + "git_url": "git://github.com/jenkinsci/scripted-cloud-plugin.git", + "ssh_url": "git@github.com:jenkinsci/scripted-cloud-plugin.git", + "clone_url": "https://github.com/jenkinsci/scripted-cloud-plugin.git", + "svn_url": "https://github.com/jenkinsci/scripted-cloud-plugin", + "homepage": null, + "size": 208, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 4, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 19776120, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTc3NjEyMA==", + "name": "koji-plugin", + "full_name": "jenkinsci/koji-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/koji-plugin", + "description": "Jenkins Koji Integration Plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/koji-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/koji-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/koji-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/koji-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/koji-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/koji-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/koji-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/koji-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/koji-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/koji-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/koji-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/koji-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/koji-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/koji-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/koji-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/koji-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/koji-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/koji-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/koji-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/koji-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/koji-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/koji-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/koji-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/koji-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/koji-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/koji-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/koji-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/koji-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/koji-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/koji-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/koji-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/koji-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/koji-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/koji-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/koji-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/koji-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/koji-plugin/deployments", + "created_at": "2014-05-14T10:57:14Z", + "updated_at": "2018-09-03T17:44:25Z", + "pushed_at": "2015-07-19T14:34:36Z", + "git_url": "git://github.com/jenkinsci/koji-plugin.git", + "ssh_url": "git@github.com:jenkinsci/koji-plugin.git", + "clone_url": "https://github.com/jenkinsci/koji-plugin.git", + "svn_url": "https://github.com/jenkinsci/koji-plugin", + "homepage": null, + "size": 236, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 4, + "open_issues": 0, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 19785003, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTc4NTAwMw==", + "name": "openid4java-plugin", + "full_name": "jenkinsci/openid4java-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/openid4java-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/openid4java-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/openid4java-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/openid4java-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/openid4java-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/openid4java-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/openid4java-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/openid4java-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/openid4java-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/openid4java-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/openid4java-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/openid4java-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/openid4java-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/openid4java-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/openid4java-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/openid4java-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/openid4java-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/openid4java-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/openid4java-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/openid4java-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/openid4java-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/openid4java-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/openid4java-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/openid4java-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/openid4java-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/openid4java-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/openid4java-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/openid4java-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/openid4java-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/openid4java-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/openid4java-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/openid4java-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/openid4java-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/openid4java-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/openid4java-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/openid4java-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/openid4java-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/openid4java-plugin/deployments", + "created_at": "2014-05-14T15:27:55Z", + "updated_at": "2016-05-25T10:10:06Z", + "pushed_at": "2019-10-08T11:51:49Z", + "git_url": "git://github.com/jenkinsci/openid4java-plugin.git", + "ssh_url": "git@github.com:jenkinsci/openid4java-plugin.git", + "clone_url": "https://github.com/jenkinsci/openid4java-plugin.git", + "svn_url": "https://github.com/jenkinsci/openid4java-plugin", + "homepage": null, + "size": 3, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 1, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 19855321, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTg1NTMyMQ==", + "name": "mapdb-api-plugin", + "full_name": "jenkinsci/mapdb-api-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/mapdb-api-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/mapdb-api-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/mapdb-api-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/mapdb-api-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/mapdb-api-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/mapdb-api-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/mapdb-api-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/mapdb-api-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/mapdb-api-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/mapdb-api-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/mapdb-api-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/mapdb-api-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/mapdb-api-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/mapdb-api-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/mapdb-api-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/mapdb-api-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/mapdb-api-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/mapdb-api-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/mapdb-api-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/mapdb-api-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/mapdb-api-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/mapdb-api-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/mapdb-api-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/mapdb-api-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/mapdb-api-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/mapdb-api-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/mapdb-api-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/mapdb-api-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/mapdb-api-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/mapdb-api-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/mapdb-api-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/mapdb-api-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/mapdb-api-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/mapdb-api-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/mapdb-api-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/mapdb-api-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/mapdb-api-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/mapdb-api-plugin/deployments", + "created_at": "2014-05-16T12:13:25Z", + "updated_at": "2019-04-18T14:36:15Z", + "pushed_at": "2019-04-18T14:36:13Z", + "git_url": "git://github.com/jenkinsci/mapdb-api-plugin.git", + "ssh_url": "git@github.com:jenkinsci/mapdb-api-plugin.git", + "clone_url": "https://github.com/jenkinsci/mapdb-api-plugin.git", + "svn_url": "https://github.com/jenkinsci/mapdb-api-plugin", + "homepage": null, + "size": 12, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 4, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 19885773, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTg4NTc3Mw==", + "name": "bitbucket-pullrequest-builder-plugin", + "full_name": "jenkinsci/bitbucket-pullrequest-builder-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/bitbucket-pullrequest-builder-plugin", + "description": "Bitbucket Pull Request Builder Plugin for Jenkins", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/bitbucket-pullrequest-builder-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/bitbucket-pullrequest-builder-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/bitbucket-pullrequest-builder-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/bitbucket-pullrequest-builder-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/bitbucket-pullrequest-builder-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/bitbucket-pullrequest-builder-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/bitbucket-pullrequest-builder-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/bitbucket-pullrequest-builder-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/bitbucket-pullrequest-builder-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/bitbucket-pullrequest-builder-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/bitbucket-pullrequest-builder-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/bitbucket-pullrequest-builder-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/bitbucket-pullrequest-builder-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/bitbucket-pullrequest-builder-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/bitbucket-pullrequest-builder-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/bitbucket-pullrequest-builder-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/bitbucket-pullrequest-builder-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/bitbucket-pullrequest-builder-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/bitbucket-pullrequest-builder-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/bitbucket-pullrequest-builder-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/bitbucket-pullrequest-builder-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/bitbucket-pullrequest-builder-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/bitbucket-pullrequest-builder-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/bitbucket-pullrequest-builder-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/bitbucket-pullrequest-builder-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/bitbucket-pullrequest-builder-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/bitbucket-pullrequest-builder-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/bitbucket-pullrequest-builder-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/bitbucket-pullrequest-builder-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/bitbucket-pullrequest-builder-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/bitbucket-pullrequest-builder-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/bitbucket-pullrequest-builder-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/bitbucket-pullrequest-builder-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/bitbucket-pullrequest-builder-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/bitbucket-pullrequest-builder-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/bitbucket-pullrequest-builder-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/bitbucket-pullrequest-builder-plugin/deployments", + "created_at": "2014-05-17T12:13:31Z", + "updated_at": "2019-10-21T18:45:54Z", + "pushed_at": "2019-10-21T18:45:52Z", + "git_url": "git://github.com/jenkinsci/bitbucket-pullrequest-builder-plugin.git", + "ssh_url": "git@github.com:jenkinsci/bitbucket-pullrequest-builder-plugin.git", + "clone_url": "https://github.com/jenkinsci/bitbucket-pullrequest-builder-plugin.git", + "svn_url": "https://github.com/jenkinsci/bitbucket-pullrequest-builder-plugin", + "homepage": null, + "size": 321, + "stargazers_count": 93, + "watchers_count": 93, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 41, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 41, + "open_issues": 0, + "watchers": 93, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 19938535, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTkzODUzNQ==", + "name": "environment-labels-setter-plugin", + "full_name": "jenkinsci/environment-labels-setter-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/environment-labels-setter-plugin", + "description": "Contribute slave labels from environment variable available on slave", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/environment-labels-setter-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/environment-labels-setter-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/environment-labels-setter-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/environment-labels-setter-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/environment-labels-setter-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/environment-labels-setter-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/environment-labels-setter-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/environment-labels-setter-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/environment-labels-setter-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/environment-labels-setter-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/environment-labels-setter-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/environment-labels-setter-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/environment-labels-setter-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/environment-labels-setter-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/environment-labels-setter-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/environment-labels-setter-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/environment-labels-setter-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/environment-labels-setter-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/environment-labels-setter-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/environment-labels-setter-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/environment-labels-setter-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/environment-labels-setter-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/environment-labels-setter-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/environment-labels-setter-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/environment-labels-setter-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/environment-labels-setter-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/environment-labels-setter-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/environment-labels-setter-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/environment-labels-setter-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/environment-labels-setter-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/environment-labels-setter-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/environment-labels-setter-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/environment-labels-setter-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/environment-labels-setter-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/environment-labels-setter-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/environment-labels-setter-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/environment-labels-setter-plugin/deployments", + "created_at": "2014-05-19T10:58:12Z", + "updated_at": "2018-07-10T13:39:27Z", + "pushed_at": "2018-06-15T08:14:44Z", + "git_url": "git://github.com/jenkinsci/environment-labels-setter-plugin.git", + "ssh_url": "git@github.com:jenkinsci/environment-labels-setter-plugin.git", + "clone_url": "https://github.com/jenkinsci/environment-labels-setter-plugin.git", + "svn_url": "https://github.com/jenkinsci/environment-labels-setter-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Environment+labels+setter", + "size": 22, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 19989121, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTk4OTEyMQ==", + "name": "gitlab-plugin", + "full_name": "jenkinsci/gitlab-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/gitlab-plugin", + "description": "A Jenkins plugin for interfacing with GitLab", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/gitlab-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/gitlab-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/gitlab-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/gitlab-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/gitlab-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/gitlab-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/gitlab-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/gitlab-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/gitlab-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/gitlab-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/gitlab-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/gitlab-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/gitlab-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/gitlab-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/gitlab-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/gitlab-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/gitlab-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/gitlab-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/gitlab-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/gitlab-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/gitlab-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/gitlab-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/gitlab-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/gitlab-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/gitlab-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/gitlab-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/gitlab-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/gitlab-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/gitlab-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/gitlab-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/gitlab-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/gitlab-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/gitlab-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/gitlab-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/gitlab-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/gitlab-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/gitlab-plugin/deployments", + "created_at": "2014-05-20T16:50:12Z", + "updated_at": "2019-10-25T15:29:57Z", + "pushed_at": "2019-10-25T15:29:55Z", + "git_url": "git://github.com/jenkinsci/gitlab-plugin.git", + "ssh_url": "git@github.com:jenkinsci/gitlab-plugin.git", + "clone_url": "https://github.com/jenkinsci/gitlab-plugin.git", + "svn_url": "https://github.com/jenkinsci/gitlab-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/GitLab+Plugin", + "size": 6244, + "stargazers_count": 1076, + "watchers_count": 1076, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 471, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 156, + "license": { + "key": "gpl-2.0", + "name": "GNU General Public License v2.0", + "spdx_id": "GPL-2.0", + "url": "https://api.github.com/licenses/gpl-2.0", + "node_id": "MDc6TGljZW5zZTg=" + }, + "forks": 471, + "open_issues": 156, + "watchers": 1076, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 20091350, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDA5MTM1MA==", + "name": "allure-plugin", + "full_name": "jenkinsci/allure-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/allure-plugin", + "description": "Allure Jenkins Plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/allure-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/allure-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/allure-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/allure-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/allure-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/allure-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/allure-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/allure-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/allure-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/allure-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/allure-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/allure-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/allure-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/allure-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/allure-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/allure-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/allure-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/allure-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/allure-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/allure-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/allure-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/allure-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/allure-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/allure-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/allure-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/allure-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/allure-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/allure-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/allure-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/allure-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/allure-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/allure-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/allure-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/allure-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/allure-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/allure-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/allure-plugin/deployments", + "created_at": "2014-05-23T07:53:08Z", + "updated_at": "2019-10-16T15:20:25Z", + "pushed_at": "2019-08-12T08:26:49Z", + "git_url": "git://github.com/jenkinsci/allure-plugin.git", + "ssh_url": "git@github.com:jenkinsci/allure-plugin.git", + "clone_url": "https://github.com/jenkinsci/allure-plugin.git", + "svn_url": "https://github.com/jenkinsci/allure-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Allure+Plugin", + "size": 553, + "stargazers_count": 46, + "watchers_count": 46, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 27, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 47, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 27, + "open_issues": 47, + "watchers": 46, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 20244690, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDI0NDY5MA==", + "name": "DotCi", + "full_name": "jenkinsci/DotCi", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/DotCi", + "description": "DotCi Jenkins github integration, .ci.yml", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/DotCi", + "forks_url": "https://api.github.com/repos/jenkinsci/DotCi/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/DotCi/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/DotCi/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/DotCi/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/DotCi/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/DotCi/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/DotCi/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/DotCi/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/DotCi/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/DotCi/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/DotCi/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/DotCi/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/DotCi/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/DotCi/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/DotCi/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/DotCi/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/DotCi/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/DotCi/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/DotCi/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/DotCi/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/DotCi/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/DotCi/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/DotCi/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/DotCi/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/DotCi/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/DotCi/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/DotCi/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/DotCi/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/DotCi/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/DotCi/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/DotCi/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/DotCi/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/DotCi/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/DotCi/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/DotCi/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/DotCi/deployments", + "created_at": "2014-05-28T04:05:28Z", + "updated_at": "2018-04-18T21:50:24Z", + "pushed_at": "2019-10-08T16:29:29Z", + "git_url": "git://github.com/jenkinsci/DotCi.git", + "ssh_url": "git@github.com:jenkinsci/DotCi.git", + "clone_url": "https://github.com/jenkinsci/DotCi.git", + "svn_url": "https://github.com/jenkinsci/DotCi", + "homepage": null, + "size": 475, + "stargazers_count": 9, + "watchers_count": 9, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 3, + "open_issues": 1, + "watchers": 9, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 20256284, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDI1NjI4NA==", + "name": "foofoo", + "full_name": "jenkinsci/foofoo", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/foofoo", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/foofoo", + "forks_url": "https://api.github.com/repos/jenkinsci/foofoo/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/foofoo/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/foofoo/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/foofoo/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/foofoo/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/foofoo/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/foofoo/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/foofoo/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/foofoo/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/foofoo/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/foofoo/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/foofoo/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/foofoo/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/foofoo/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/foofoo/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/foofoo/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/foofoo/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/foofoo/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/foofoo/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/foofoo/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/foofoo/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/foofoo/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/foofoo/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/foofoo/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/foofoo/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/foofoo/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/foofoo/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/foofoo/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/foofoo/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/foofoo/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/foofoo/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/foofoo/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/foofoo/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/foofoo/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/foofoo/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/foofoo/deployments", + "created_at": "2014-05-28T12:16:41Z", + "updated_at": "2014-06-02T17:14:29Z", + "pushed_at": "2014-06-02T17:14:29Z", + "git_url": "git://github.com/jenkinsci/foofoo.git", + "ssh_url": "git@github.com:jenkinsci/foofoo.git", + "clone_url": "https://github.com/jenkinsci/foofoo.git", + "svn_url": "https://github.com/jenkinsci/foofoo", + "homepage": null, + "size": 148, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 20397148, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDM5NzE0OA==", + "name": "linenumbers-plugin", + "full_name": "jenkinsci/linenumbers-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/linenumbers-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/linenumbers-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/linenumbers-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/linenumbers-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/linenumbers-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/linenumbers-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/linenumbers-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/linenumbers-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/linenumbers-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/linenumbers-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/linenumbers-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/linenumbers-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/linenumbers-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/linenumbers-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/linenumbers-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/linenumbers-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/linenumbers-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/linenumbers-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/linenumbers-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/linenumbers-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/linenumbers-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/linenumbers-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/linenumbers-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/linenumbers-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/linenumbers-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/linenumbers-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/linenumbers-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/linenumbers-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/linenumbers-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/linenumbers-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/linenumbers-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/linenumbers-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/linenumbers-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/linenumbers-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/linenumbers-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/linenumbers-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/linenumbers-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/linenumbers-plugin/deployments", + "created_at": "2014-06-02T08:18:48Z", + "updated_at": "2018-09-06T17:19:23Z", + "pushed_at": "2019-10-08T16:22:37Z", + "git_url": "git://github.com/jenkinsci/linenumbers-plugin.git", + "ssh_url": "git@github.com:jenkinsci/linenumbers-plugin.git", + "clone_url": "https://github.com/jenkinsci/linenumbers-plugin.git", + "svn_url": "https://github.com/jenkinsci/linenumbers-plugin", + "homepage": null, + "size": 22, + "stargazers_count": 7, + "watchers_count": 7, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 8, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 8, + "open_issues": 1, + "watchers": 7, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 20442050, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDQ0MjA1MA==", + "name": "upstream-downstream-view-plugin", + "full_name": "jenkinsci/upstream-downstream-view-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/upstream-downstream-view-plugin", + "description": "Shows Upstream & Downstream jobs in view columns", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/upstream-downstream-view-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/upstream-downstream-view-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/upstream-downstream-view-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/upstream-downstream-view-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/upstream-downstream-view-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/upstream-downstream-view-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/upstream-downstream-view-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/upstream-downstream-view-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/upstream-downstream-view-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/upstream-downstream-view-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/upstream-downstream-view-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/upstream-downstream-view-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/upstream-downstream-view-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/upstream-downstream-view-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/upstream-downstream-view-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/upstream-downstream-view-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/upstream-downstream-view-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/upstream-downstream-view-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/upstream-downstream-view-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/upstream-downstream-view-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/upstream-downstream-view-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/upstream-downstream-view-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/upstream-downstream-view-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/upstream-downstream-view-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/upstream-downstream-view-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/upstream-downstream-view-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/upstream-downstream-view-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/upstream-downstream-view-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/upstream-downstream-view-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/upstream-downstream-view-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/upstream-downstream-view-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/upstream-downstream-view-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/upstream-downstream-view-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/upstream-downstream-view-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/upstream-downstream-view-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/upstream-downstream-view-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/upstream-downstream-view-plugin/deployments", + "created_at": "2014-06-03T12:38:56Z", + "updated_at": "2018-05-29T12:16:46Z", + "pushed_at": "2019-10-08T16:26:59Z", + "git_url": "git://github.com/jenkinsci/upstream-downstream-view-plugin.git", + "ssh_url": "git@github.com:jenkinsci/upstream-downstream-view-plugin.git", + "clone_url": "https://github.com/jenkinsci/upstream-downstream-view-plugin.git", + "svn_url": "https://github.com/jenkinsci/upstream-downstream-view-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Upstream+Downstream+View+Plugin", + "size": 28, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 2, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 20459476, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDQ1OTQ3Ng==", + "name": "jabber-server-plugin", + "full_name": "jenkinsci/jabber-server-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jabber-server-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jabber-server-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/jabber-server-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jabber-server-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jabber-server-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jabber-server-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jabber-server-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jabber-server-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jabber-server-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jabber-server-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jabber-server-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jabber-server-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jabber-server-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jabber-server-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jabber-server-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jabber-server-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jabber-server-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jabber-server-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jabber-server-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jabber-server-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jabber-server-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jabber-server-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jabber-server-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jabber-server-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jabber-server-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jabber-server-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jabber-server-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jabber-server-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jabber-server-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jabber-server-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jabber-server-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jabber-server-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jabber-server-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jabber-server-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jabber-server-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jabber-server-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jabber-server-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jabber-server-plugin/deployments", + "created_at": "2014-06-03T21:01:08Z", + "updated_at": "2016-02-09T19:37:17Z", + "pushed_at": "2016-04-30T14:13:34Z", + "git_url": "git://github.com/jenkinsci/jabber-server-plugin.git", + "ssh_url": "git@github.com:jenkinsci/jabber-server-plugin.git", + "clone_url": "https://github.com/jenkinsci/jabber-server-plugin.git", + "svn_url": "https://github.com/jenkinsci/jabber-server-plugin", + "homepage": "", + "size": 47, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 0, + "open_issues": 1, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 20593559, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDU5MzU1OQ==", + "name": "change-assembly-version-plugin", + "full_name": "jenkinsci/change-assembly-version-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/change-assembly-version-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/change-assembly-version-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/change-assembly-version-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/change-assembly-version-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/change-assembly-version-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/change-assembly-version-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/change-assembly-version-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/change-assembly-version-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/change-assembly-version-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/change-assembly-version-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/change-assembly-version-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/change-assembly-version-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/change-assembly-version-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/change-assembly-version-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/change-assembly-version-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/change-assembly-version-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/change-assembly-version-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/change-assembly-version-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/change-assembly-version-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/change-assembly-version-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/change-assembly-version-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/change-assembly-version-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/change-assembly-version-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/change-assembly-version-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/change-assembly-version-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/change-assembly-version-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/change-assembly-version-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/change-assembly-version-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/change-assembly-version-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/change-assembly-version-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/change-assembly-version-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/change-assembly-version-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/change-assembly-version-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/change-assembly-version-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/change-assembly-version-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/change-assembly-version-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/change-assembly-version-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/change-assembly-version-plugin/deployments", + "created_at": "2014-06-07T13:21:28Z", + "updated_at": "2019-05-09T08:38:08Z", + "pushed_at": "2019-06-13T06:39:42Z", + "git_url": "git://github.com/jenkinsci/change-assembly-version-plugin.git", + "ssh_url": "git@github.com:jenkinsci/change-assembly-version-plugin.git", + "clone_url": "https://github.com/jenkinsci/change-assembly-version-plugin.git", + "svn_url": "https://github.com/jenkinsci/change-assembly-version-plugin", + "homepage": "", + "size": 74, + "stargazers_count": 15, + "watchers_count": 15, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 27, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": null, + "forks": 27, + "open_issues": 3, + "watchers": 15, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 20648439, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY0ODQzOQ==", + "name": "elasticbox-plugin", + "full_name": "jenkinsci/elasticbox-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/elasticbox-plugin", + "description": "ElasticBox CI Plug-in that launches, provisions, and manages Jenkins slaves on-demand in different cloud providers via ElasticBox.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/elasticbox-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/elasticbox-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/elasticbox-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/elasticbox-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/elasticbox-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/elasticbox-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/elasticbox-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/elasticbox-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/elasticbox-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/elasticbox-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/elasticbox-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/elasticbox-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/elasticbox-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/elasticbox-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/elasticbox-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/elasticbox-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/elasticbox-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/elasticbox-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/elasticbox-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/elasticbox-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/elasticbox-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/elasticbox-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/elasticbox-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/elasticbox-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/elasticbox-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/elasticbox-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/elasticbox-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/elasticbox-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/elasticbox-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/elasticbox-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/elasticbox-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/elasticbox-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/elasticbox-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/elasticbox-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/elasticbox-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/elasticbox-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/elasticbox-plugin/deployments", + "created_at": "2014-06-09T13:58:32Z", + "updated_at": "2019-09-10T11:20:02Z", + "pushed_at": "2019-09-10T11:19:59Z", + "git_url": "git://github.com/jenkinsci/elasticbox-plugin.git", + "ssh_url": "git@github.com:jenkinsci/elasticbox-plugin.git", + "clone_url": "https://github.com/jenkinsci/elasticbox-plugin.git", + "svn_url": "https://github.com/jenkinsci/elasticbox-plugin", + "homepage": "", + "size": 2333, + "stargazers_count": 7, + "watchers_count": 7, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 12, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 12, + "open_issues": 1, + "watchers": 7, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 20655803, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY1NTgwMw==", + "name": "loadimpact-plugin", + "full_name": "jenkinsci/loadimpact-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/loadimpact-plugin", + "description": "Run performance tests on Load Impact's cloud testing platform using this Jenkins plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/loadimpact-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/loadimpact-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/loadimpact-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/loadimpact-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/loadimpact-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/loadimpact-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/loadimpact-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/loadimpact-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/loadimpact-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/loadimpact-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/loadimpact-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/loadimpact-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/loadimpact-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/loadimpact-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/loadimpact-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/loadimpact-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/loadimpact-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/loadimpact-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/loadimpact-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/loadimpact-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/loadimpact-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/loadimpact-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/loadimpact-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/loadimpact-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/loadimpact-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/loadimpact-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/loadimpact-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/loadimpact-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/loadimpact-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/loadimpact-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/loadimpact-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/loadimpact-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/loadimpact-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/loadimpact-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/loadimpact-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/loadimpact-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/loadimpact-plugin/deployments", + "created_at": "2014-06-09T17:39:25Z", + "updated_at": "2014-06-26T12:22:06Z", + "pushed_at": "2014-08-17T19:14:25Z", + "git_url": "git://github.com/jenkinsci/loadimpact-plugin.git", + "ssh_url": "git@github.com:jenkinsci/loadimpact-plugin.git", + "clone_url": "https://github.com/jenkinsci/loadimpact-plugin.git", + "svn_url": "https://github.com/jenkinsci/loadimpact-plugin", + "homepage": "http://developers.loadimpact.com/continuous-delivery/", + "size": 361, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 20684066, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4NDA2Ng==", + "name": "parameter-separator-plugin", + "full_name": "jenkinsci/parameter-separator-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/parameter-separator-plugin", + "description": "Adds a UI element to builds that helps organize parameters", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/parameter-separator-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/parameter-separator-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/parameter-separator-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/parameter-separator-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/parameter-separator-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/parameter-separator-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/parameter-separator-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/parameter-separator-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/parameter-separator-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/parameter-separator-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/parameter-separator-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/parameter-separator-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/parameter-separator-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/parameter-separator-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/parameter-separator-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/parameter-separator-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/parameter-separator-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/parameter-separator-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/parameter-separator-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/parameter-separator-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/parameter-separator-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/parameter-separator-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/parameter-separator-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/parameter-separator-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/parameter-separator-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/parameter-separator-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/parameter-separator-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/parameter-separator-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/parameter-separator-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/parameter-separator-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/parameter-separator-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/parameter-separator-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/parameter-separator-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/parameter-separator-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/parameter-separator-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/parameter-separator-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/parameter-separator-plugin/deployments", + "created_at": "2014-06-10T12:19:48Z", + "updated_at": "2018-12-11T11:25:10Z", + "pushed_at": "2019-10-08T10:16:05Z", + "git_url": "git://github.com/jenkinsci/parameter-separator-plugin.git", + "ssh_url": "git@github.com:jenkinsci/parameter-separator-plugin.git", + "clone_url": "https://github.com/jenkinsci/parameter-separator-plugin.git", + "svn_url": "https://github.com/jenkinsci/parameter-separator-plugin", + "homepage": "", + "size": 92, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 6, + "open_issues": 1, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 20687212, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4NzIxMg==", + "name": "dockerhub-plugin", + "full_name": "jenkinsci/dockerhub-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/dockerhub-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/dockerhub-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/dockerhub-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/dockerhub-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/dockerhub-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/dockerhub-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/dockerhub-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/dockerhub-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/dockerhub-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/dockerhub-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/dockerhub-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/dockerhub-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/dockerhub-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/dockerhub-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/dockerhub-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/dockerhub-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/dockerhub-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/dockerhub-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/dockerhub-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/dockerhub-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/dockerhub-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/dockerhub-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/dockerhub-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/dockerhub-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/dockerhub-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/dockerhub-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/dockerhub-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/dockerhub-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/dockerhub-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/dockerhub-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/dockerhub-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/dockerhub-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/dockerhub-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/dockerhub-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/dockerhub-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/dockerhub-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/dockerhub-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/dockerhub-plugin/deployments", + "created_at": "2014-06-10T13:56:48Z", + "updated_at": "2015-06-04T06:23:15Z", + "pushed_at": "2015-05-26T16:43:15Z", + "git_url": "git://github.com/jenkinsci/dockerhub-plugin.git", + "ssh_url": "git@github.com:jenkinsci/dockerhub-plugin.git", + "clone_url": "https://github.com/jenkinsci/dockerhub-plugin.git", + "svn_url": "https://github.com/jenkinsci/dockerhub-plugin", + "homepage": "", + "size": 249, + "stargazers_count": 10, + "watchers_count": 10, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 3, + "open_issues": 0, + "watchers": 10, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 20789402, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDc4OTQwMg==", + "name": "workflow-plugin-pipeline-demo", + "full_name": "jenkinsci/workflow-plugin-pipeline-demo", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/workflow-plugin-pipeline-demo", + "description": "Obsolete as of https://github.com/jenkinsci/pipeline-plugin/pull/118", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/workflow-plugin-pipeline-demo", + "forks_url": "https://api.github.com/repos/jenkinsci/workflow-plugin-pipeline-demo/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/workflow-plugin-pipeline-demo/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/workflow-plugin-pipeline-demo/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/workflow-plugin-pipeline-demo/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/workflow-plugin-pipeline-demo/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/workflow-plugin-pipeline-demo/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/workflow-plugin-pipeline-demo/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/workflow-plugin-pipeline-demo/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/workflow-plugin-pipeline-demo/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/workflow-plugin-pipeline-demo/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/workflow-plugin-pipeline-demo/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/workflow-plugin-pipeline-demo/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/workflow-plugin-pipeline-demo/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/workflow-plugin-pipeline-demo/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/workflow-plugin-pipeline-demo/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/workflow-plugin-pipeline-demo/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/workflow-plugin-pipeline-demo/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/workflow-plugin-pipeline-demo/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/workflow-plugin-pipeline-demo/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/workflow-plugin-pipeline-demo/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/workflow-plugin-pipeline-demo/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/workflow-plugin-pipeline-demo/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/workflow-plugin-pipeline-demo/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/workflow-plugin-pipeline-demo/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/workflow-plugin-pipeline-demo/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/workflow-plugin-pipeline-demo/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/workflow-plugin-pipeline-demo/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/workflow-plugin-pipeline-demo/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/workflow-plugin-pipeline-demo/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/workflow-plugin-pipeline-demo/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/workflow-plugin-pipeline-demo/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/workflow-plugin-pipeline-demo/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/workflow-plugin-pipeline-demo/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/workflow-plugin-pipeline-demo/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/workflow-plugin-pipeline-demo/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/workflow-plugin-pipeline-demo/deployments", + "created_at": "2014-06-13T02:16:46Z", + "updated_at": "2019-07-15T11:46:09Z", + "pushed_at": "2015-04-28T11:46:45Z", + "git_url": "git://github.com/jenkinsci/workflow-plugin-pipeline-demo.git", + "ssh_url": "git@github.com:jenkinsci/workflow-plugin-pipeline-demo.git", + "clone_url": "https://github.com/jenkinsci/workflow-plugin-pipeline-demo.git", + "svn_url": "https://github.com/jenkinsci/workflow-plugin-pipeline-demo", + "homepage": "", + "size": 208, + "stargazers_count": 15, + "watchers_count": 15, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 18, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 18, + "open_issues": 0, + "watchers": 15, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 20814232, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDgxNDIzMg==", + "name": "mdtool-plugin", + "full_name": "jenkinsci/mdtool-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/mdtool-plugin", + "description": "Jenkins plugin to use Xamarin Studio Tool Runner — mdtool", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/mdtool-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/mdtool-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/mdtool-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/mdtool-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/mdtool-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/mdtool-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/mdtool-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/mdtool-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/mdtool-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/mdtool-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/mdtool-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/mdtool-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/mdtool-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/mdtool-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/mdtool-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/mdtool-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/mdtool-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/mdtool-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/mdtool-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/mdtool-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/mdtool-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/mdtool-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/mdtool-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/mdtool-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/mdtool-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/mdtool-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/mdtool-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/mdtool-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/mdtool-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/mdtool-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/mdtool-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/mdtool-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/mdtool-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/mdtool-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/mdtool-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/mdtool-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/mdtool-plugin/deployments", + "created_at": "2014-06-13T18:45:41Z", + "updated_at": "2016-03-10T11:42:23Z", + "pushed_at": "2014-06-16T23:18:22Z", + "git_url": "git://github.com/jenkinsci/mdtool-plugin.git", + "ssh_url": "git@github.com:jenkinsci/mdtool-plugin.git", + "clone_url": "https://github.com/jenkinsci/mdtool-plugin.git", + "svn_url": "https://github.com/jenkinsci/mdtool-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Xamarin+Studio+Tool+Runner+Plugin", + "size": 160, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 20837534, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDgzNzUzNA==", + "name": "gitlab-api-plugin-archived", + "full_name": "jenkinsci/gitlab-api-plugin-archived", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/gitlab-api-plugin-archived", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/gitlab-api-plugin-archived", + "forks_url": "https://api.github.com/repos/jenkinsci/gitlab-api-plugin-archived/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/gitlab-api-plugin-archived/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/gitlab-api-plugin-archived/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/gitlab-api-plugin-archived/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/gitlab-api-plugin-archived/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/gitlab-api-plugin-archived/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/gitlab-api-plugin-archived/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/gitlab-api-plugin-archived/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/gitlab-api-plugin-archived/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/gitlab-api-plugin-archived/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/gitlab-api-plugin-archived/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/gitlab-api-plugin-archived/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/gitlab-api-plugin-archived/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/gitlab-api-plugin-archived/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/gitlab-api-plugin-archived/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/gitlab-api-plugin-archived/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/gitlab-api-plugin-archived/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/gitlab-api-plugin-archived/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/gitlab-api-plugin-archived/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/gitlab-api-plugin-archived/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/gitlab-api-plugin-archived/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/gitlab-api-plugin-archived/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/gitlab-api-plugin-archived/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/gitlab-api-plugin-archived/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/gitlab-api-plugin-archived/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/gitlab-api-plugin-archived/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/gitlab-api-plugin-archived/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/gitlab-api-plugin-archived/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/gitlab-api-plugin-archived/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/gitlab-api-plugin-archived/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/gitlab-api-plugin-archived/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/gitlab-api-plugin-archived/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/gitlab-api-plugin-archived/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/gitlab-api-plugin-archived/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/gitlab-api-plugin-archived/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/gitlab-api-plugin-archived/deployments", + "created_at": "2014-06-14T17:23:35Z", + "updated_at": "2019-04-25T20:26:16Z", + "pushed_at": "2014-06-17T17:42:28Z", + "git_url": "git://github.com/jenkinsci/gitlab-api-plugin-archived.git", + "ssh_url": "git@github.com:jenkinsci/gitlab-api-plugin-archived.git", + "clone_url": "https://github.com/jenkinsci/gitlab-api-plugin-archived.git", + "svn_url": "https://github.com/jenkinsci/gitlab-api-plugin-archived", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/GitLab+API", + "size": 313, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": true, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 2, + "open_issues": 0, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 20837548, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDgzNzU0OA==", + "name": "gitlab-auth-plugin", + "full_name": "jenkinsci/gitlab-auth-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/gitlab-auth-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/gitlab-auth-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/gitlab-auth-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/gitlab-auth-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/gitlab-auth-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/gitlab-auth-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/gitlab-auth-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/gitlab-auth-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/gitlab-auth-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/gitlab-auth-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/gitlab-auth-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/gitlab-auth-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/gitlab-auth-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/gitlab-auth-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/gitlab-auth-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/gitlab-auth-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/gitlab-auth-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/gitlab-auth-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/gitlab-auth-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/gitlab-auth-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/gitlab-auth-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/gitlab-auth-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/gitlab-auth-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/gitlab-auth-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/gitlab-auth-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/gitlab-auth-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/gitlab-auth-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/gitlab-auth-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/gitlab-auth-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/gitlab-auth-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/gitlab-auth-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/gitlab-auth-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/gitlab-auth-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/gitlab-auth-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/gitlab-auth-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/gitlab-auth-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/gitlab-auth-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/gitlab-auth-plugin/deployments", + "created_at": "2014-06-14T17:24:41Z", + "updated_at": "2018-07-05T09:30:06Z", + "pushed_at": "2015-11-17T18:43:27Z", + "git_url": "git://github.com/jenkinsci/gitlab-auth-plugin.git", + "ssh_url": "git@github.com:jenkinsci/gitlab-auth-plugin.git", + "clone_url": "https://github.com/jenkinsci/gitlab-auth-plugin.git", + "svn_url": "https://github.com/jenkinsci/gitlab-auth-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/GitLab+Auth", + "size": 421, + "stargazers_count": 6, + "watchers_count": 6, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 2, + "open_issues": 1, + "watchers": 6, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 21070389, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTA3MDM4OQ==", + "name": "curseforge-publisher-plugin", + "full_name": "jenkinsci/curseforge-publisher-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/curseforge-publisher-plugin", + "description": "Jenkins plugin to publish to Curseforge", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/curseforge-publisher-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/curseforge-publisher-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/curseforge-publisher-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/curseforge-publisher-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/curseforge-publisher-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/curseforge-publisher-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/curseforge-publisher-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/curseforge-publisher-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/curseforge-publisher-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/curseforge-publisher-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/curseforge-publisher-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/curseforge-publisher-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/curseforge-publisher-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/curseforge-publisher-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/curseforge-publisher-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/curseforge-publisher-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/curseforge-publisher-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/curseforge-publisher-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/curseforge-publisher-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/curseforge-publisher-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/curseforge-publisher-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/curseforge-publisher-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/curseforge-publisher-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/curseforge-publisher-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/curseforge-publisher-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/curseforge-publisher-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/curseforge-publisher-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/curseforge-publisher-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/curseforge-publisher-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/curseforge-publisher-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/curseforge-publisher-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/curseforge-publisher-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/curseforge-publisher-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/curseforge-publisher-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/curseforge-publisher-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/curseforge-publisher-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/curseforge-publisher-plugin/deployments", + "created_at": "2014-06-21T14:28:45Z", + "updated_at": "2017-07-02T01:06:00Z", + "pushed_at": "2014-06-21T18:23:37Z", + "git_url": "git://github.com/jenkinsci/curseforge-publisher-plugin.git", + "ssh_url": "git@github.com:jenkinsci/curseforge-publisher-plugin.git", + "clone_url": "https://github.com/jenkinsci/curseforge-publisher-plugin.git", + "svn_url": "https://github.com/jenkinsci/curseforge-publisher-plugin", + "homepage": null, + "size": 193, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 21134284, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTEzNDI4NA==", + "name": "threadfix-plugin", + "full_name": "jenkinsci/threadfix-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/threadfix-plugin", + "description": "Jenkins ThreadFix plugin publisher provides the ability to upload any supported scan artifact, from your Jenkins server to your ThreadFix deployment. Allowing integration between your continuous integration (CI) environment to your centralized software vulnerability management system.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/threadfix-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/threadfix-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/threadfix-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/threadfix-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/threadfix-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/threadfix-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/threadfix-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/threadfix-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/threadfix-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/threadfix-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/threadfix-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/threadfix-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/threadfix-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/threadfix-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/threadfix-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/threadfix-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/threadfix-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/threadfix-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/threadfix-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/threadfix-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/threadfix-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/threadfix-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/threadfix-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/threadfix-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/threadfix-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/threadfix-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/threadfix-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/threadfix-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/threadfix-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/threadfix-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/threadfix-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/threadfix-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/threadfix-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/threadfix-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/threadfix-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/threadfix-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/threadfix-plugin/deployments", + "created_at": "2014-06-23T16:53:56Z", + "updated_at": "2018-10-13T18:17:10Z", + "pushed_at": "2018-10-13T18:15:56Z", + "git_url": "git://github.com/jenkinsci/threadfix-plugin.git", + "ssh_url": "git@github.com:jenkinsci/threadfix-plugin.git", + "clone_url": "https://github.com/jenkinsci/threadfix-plugin.git", + "svn_url": "https://github.com/jenkinsci/threadfix-plugin", + "homepage": "http://brandon.spruth.co/", + "size": 59877, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 9, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 9, + "open_issues": 0, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 21290772, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTI5MDc3Mg==", + "name": "domain-discovery-module", + "full_name": "jenkinsci/domain-discovery-module", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/domain-discovery-module", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/domain-discovery-module", + "forks_url": "https://api.github.com/repos/jenkinsci/domain-discovery-module/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/domain-discovery-module/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/domain-discovery-module/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/domain-discovery-module/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/domain-discovery-module/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/domain-discovery-module/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/domain-discovery-module/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/domain-discovery-module/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/domain-discovery-module/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/domain-discovery-module/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/domain-discovery-module/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/domain-discovery-module/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/domain-discovery-module/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/domain-discovery-module/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/domain-discovery-module/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/domain-discovery-module/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/domain-discovery-module/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/domain-discovery-module/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/domain-discovery-module/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/domain-discovery-module/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/domain-discovery-module/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/domain-discovery-module/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/domain-discovery-module/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/domain-discovery-module/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/domain-discovery-module/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/domain-discovery-module/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/domain-discovery-module/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/domain-discovery-module/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/domain-discovery-module/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/domain-discovery-module/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/domain-discovery-module/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/domain-discovery-module/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/domain-discovery-module/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/domain-discovery-module/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/domain-discovery-module/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/domain-discovery-module/deployments", + "created_at": "2014-06-27T22:14:25Z", + "updated_at": "2014-06-27T22:15:02Z", + "pushed_at": "2014-06-27T22:22:07Z", + "git_url": "git://github.com/jenkinsci/domain-discovery-module.git", + "ssh_url": "git@github.com:jenkinsci/domain-discovery-module.git", + "clone_url": "https://github.com/jenkinsci/domain-discovery-module.git", + "svn_url": "https://github.com/jenkinsci/domain-discovery-module", + "homepage": null, + "size": 148, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 21383227, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTM4MzIyNw==", + "name": "chroot-plugin", + "full_name": "jenkinsci/chroot-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/chroot-plugin", + "description": "A Jenkins plugin which adds support for disposable chroot environments, which can be very usefull for C and C++ projects.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/chroot-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/chroot-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/chroot-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/chroot-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/chroot-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/chroot-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/chroot-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/chroot-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/chroot-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/chroot-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/chroot-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/chroot-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/chroot-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/chroot-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/chroot-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/chroot-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/chroot-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/chroot-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/chroot-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/chroot-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/chroot-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/chroot-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/chroot-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/chroot-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/chroot-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/chroot-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/chroot-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/chroot-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/chroot-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/chroot-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/chroot-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/chroot-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/chroot-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/chroot-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/chroot-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/chroot-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/chroot-plugin/deployments", + "created_at": "2014-07-01T10:06:53Z", + "updated_at": "2016-10-25T14:41:20Z", + "pushed_at": "2019-10-08T16:41:58Z", + "git_url": "git://github.com/jenkinsci/chroot-plugin.git", + "ssh_url": "git@github.com:jenkinsci/chroot-plugin.git", + "clone_url": "https://github.com/jenkinsci/chroot-plugin.git", + "svn_url": "https://github.com/jenkinsci/chroot-plugin", + "homepage": null, + "size": 223, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "gpl-3.0", + "name": "GNU General Public License v3.0", + "spdx_id": "GPL-3.0", + "url": "https://api.github.com/licenses/gpl-3.0", + "node_id": "MDc6TGljZW5zZTk=" + }, + "forks": 6, + "open_issues": 2, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 21453308, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTQ1MzMwOA==", + "name": "azure-slave-plugin", + "full_name": "jenkinsci/azure-slave-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/azure-slave-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/azure-slave-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/azure-slave-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/azure-slave-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/azure-slave-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/azure-slave-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/azure-slave-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/azure-slave-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/azure-slave-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/azure-slave-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/azure-slave-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/azure-slave-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/azure-slave-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/azure-slave-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/azure-slave-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/azure-slave-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/azure-slave-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/azure-slave-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/azure-slave-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/azure-slave-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/azure-slave-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/azure-slave-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/azure-slave-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/azure-slave-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/azure-slave-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/azure-slave-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/azure-slave-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/azure-slave-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/azure-slave-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/azure-slave-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/azure-slave-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/azure-slave-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/azure-slave-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/azure-slave-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/azure-slave-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/azure-slave-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/azure-slave-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/azure-slave-plugin/deployments", + "created_at": "2014-07-03T07:17:01Z", + "updated_at": "2019-06-18T06:59:59Z", + "pushed_at": "2016-12-19T18:56:02Z", + "git_url": "git://github.com/jenkinsci/azure-slave-plugin.git", + "ssh_url": "git@github.com:jenkinsci/azure-slave-plugin.git", + "clone_url": "https://github.com/jenkinsci/azure-slave-plugin.git", + "svn_url": "https://github.com/jenkinsci/azure-slave-plugin", + "homepage": "", + "size": 534, + "stargazers_count": 20, + "watchers_count": 20, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 34, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 21, + "license": null, + "forks": 34, + "open_issues": 21, + "watchers": 20, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 21468944, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTQ2ODk0NA==", + "name": "p4-plugin", + "full_name": "jenkinsci/p4-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/p4-plugin", + "description": "Perforce plugin for Jenkins", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/p4-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/p4-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/p4-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/p4-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/p4-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/p4-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/p4-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/p4-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/p4-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/p4-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/p4-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/p4-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/p4-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/p4-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/p4-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/p4-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/p4-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/p4-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/p4-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/p4-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/p4-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/p4-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/p4-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/p4-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/p4-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/p4-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/p4-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/p4-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/p4-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/p4-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/p4-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/p4-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/p4-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/p4-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/p4-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/p4-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/p4-plugin/deployments", + "created_at": "2014-07-03T16:12:05Z", + "updated_at": "2019-10-25T14:55:55Z", + "pushed_at": "2019-10-25T14:55:53Z", + "git_url": "git://github.com/jenkinsci/p4-plugin.git", + "ssh_url": "git@github.com:jenkinsci/p4-plugin.git", + "clone_url": "https://github.com/jenkinsci/p4-plugin.git", + "svn_url": "https://github.com/jenkinsci/p4-plugin", + "homepage": null, + "size": 47201, + "stargazers_count": 49, + "watchers_count": 49, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 103, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 103, + "open_issues": 3, + "watchers": 49, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/__files/organizations_107424_repos-a73c5a75-e101-4321-aea4-c633929320e8.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/__files/organizations_107424_repos-a73c5a75-e101-4321-aea4-c633929320e8.json new file mode 100644 index 0000000000..d1968ed5d8 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/__files/organizations_107424_repos-a73c5a75-e101-4321-aea4-c633929320e8.json @@ -0,0 +1,10322 @@ +[ + { + "id": 42983938, + "node_id": "MDEwOlJlcG9zaXRvcnk0Mjk4MzkzOA==", + "name": "jobdelete-builder-plugin", + "full_name": "jenkinsci/jobdelete-builder-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jobdelete-builder-plugin", + "description": "Jenkins plugin to delete a job in a build step.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jobdelete-builder-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/jobdelete-builder-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jobdelete-builder-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jobdelete-builder-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jobdelete-builder-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jobdelete-builder-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jobdelete-builder-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jobdelete-builder-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jobdelete-builder-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jobdelete-builder-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jobdelete-builder-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jobdelete-builder-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jobdelete-builder-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jobdelete-builder-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jobdelete-builder-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jobdelete-builder-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jobdelete-builder-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jobdelete-builder-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jobdelete-builder-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jobdelete-builder-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jobdelete-builder-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jobdelete-builder-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jobdelete-builder-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jobdelete-builder-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jobdelete-builder-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jobdelete-builder-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jobdelete-builder-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jobdelete-builder-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jobdelete-builder-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jobdelete-builder-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jobdelete-builder-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jobdelete-builder-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jobdelete-builder-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jobdelete-builder-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jobdelete-builder-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jobdelete-builder-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jobdelete-builder-plugin/deployments", + "created_at": "2015-09-23T06:58:28Z", + "updated_at": "2019-01-18T01:03:01Z", + "pushed_at": "2019-10-08T16:34:58Z", + "git_url": "git://github.com/jenkinsci/jobdelete-builder-plugin.git", + "ssh_url": "git@github.com:jenkinsci/jobdelete-builder-plugin.git", + "clone_url": "https://github.com/jenkinsci/jobdelete-builder-plugin.git", + "svn_url": "https://github.com/jenkinsci/jobdelete-builder-plugin", + "homepage": null, + "size": 98, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 2, + "open_issues": 2, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 42998540, + "node_id": "MDEwOlJlcG9zaXRvcnk0Mjk5ODU0MA==", + "name": "amazon-ecs-plugin", + "full_name": "jenkinsci/amazon-ecs-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/amazon-ecs-plugin", + "description": "Amazon EC2 Container Service Plugin for Jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/amazon-ecs-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/amazon-ecs-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/amazon-ecs-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/amazon-ecs-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/amazon-ecs-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/amazon-ecs-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/amazon-ecs-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/amazon-ecs-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/amazon-ecs-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/amazon-ecs-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/amazon-ecs-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/amazon-ecs-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/amazon-ecs-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/amazon-ecs-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/amazon-ecs-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/amazon-ecs-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/amazon-ecs-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/amazon-ecs-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/amazon-ecs-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/amazon-ecs-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/amazon-ecs-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/amazon-ecs-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/amazon-ecs-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/amazon-ecs-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/amazon-ecs-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/amazon-ecs-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/amazon-ecs-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/amazon-ecs-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/amazon-ecs-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/amazon-ecs-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/amazon-ecs-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/amazon-ecs-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/amazon-ecs-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/amazon-ecs-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/amazon-ecs-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/amazon-ecs-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/amazon-ecs-plugin/deployments", + "created_at": "2015-09-23T12:08:03Z", + "updated_at": "2019-10-19T15:25:29Z", + "pushed_at": "2019-10-08T10:02:14Z", + "git_url": "git://github.com/jenkinsci/amazon-ecs-plugin.git", + "ssh_url": "git@github.com:jenkinsci/amazon-ecs-plugin.git", + "clone_url": "https://github.com/jenkinsci/amazon-ecs-plugin.git", + "svn_url": "https://github.com/jenkinsci/amazon-ecs-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Amazon+EC2+Container+Service+Plugin", + "size": 477, + "stargazers_count": 119, + "watchers_count": 119, + "language": "Java", + "has_issues": true, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 145, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 17, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 145, + "open_issues": 17, + "watchers": 119, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 43064235, + "node_id": "MDEwOlJlcG9zaXRvcnk0MzA2NDIzNQ==", + "name": "percentage-du-node-column-plugin", + "full_name": "jenkinsci/percentage-du-node-column-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/percentage-du-node-column-plugin", + "description": "This plugin just shows the percentage of disk space usage column on \"Manage Nodes\" page.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/percentage-du-node-column-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/percentage-du-node-column-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/percentage-du-node-column-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/percentage-du-node-column-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/percentage-du-node-column-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/percentage-du-node-column-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/percentage-du-node-column-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/percentage-du-node-column-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/percentage-du-node-column-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/percentage-du-node-column-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/percentage-du-node-column-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/percentage-du-node-column-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/percentage-du-node-column-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/percentage-du-node-column-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/percentage-du-node-column-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/percentage-du-node-column-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/percentage-du-node-column-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/percentage-du-node-column-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/percentage-du-node-column-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/percentage-du-node-column-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/percentage-du-node-column-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/percentage-du-node-column-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/percentage-du-node-column-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/percentage-du-node-column-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/percentage-du-node-column-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/percentage-du-node-column-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/percentage-du-node-column-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/percentage-du-node-column-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/percentage-du-node-column-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/percentage-du-node-column-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/percentage-du-node-column-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/percentage-du-node-column-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/percentage-du-node-column-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/percentage-du-node-column-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/percentage-du-node-column-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/percentage-du-node-column-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/percentage-du-node-column-plugin/deployments", + "created_at": "2015-09-24T12:02:12Z", + "updated_at": "2016-03-24T19:42:49Z", + "pushed_at": "2019-10-08T12:27:21Z", + "git_url": "git://github.com/jenkinsci/percentage-du-node-column-plugin.git", + "ssh_url": "git@github.com:jenkinsci/percentage-du-node-column-plugin.git", + "clone_url": "https://github.com/jenkinsci/percentage-du-node-column-plugin.git", + "svn_url": "https://github.com/jenkinsci/percentage-du-node-column-plugin", + "homepage": null, + "size": 106, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 2, + "open_issues": 2, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 43134688, + "node_id": "MDEwOlJlcG9zaXRvcnk0MzEzNDY4OA==", + "name": "pagerduty-plugin", + "full_name": "jenkinsci/pagerduty-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pagerduty-plugin", + "description": "Jenkins plugin that allows triggering PagerDuty incidents as postbuild", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/pagerduty-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pagerduty-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pagerduty-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pagerduty-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pagerduty-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pagerduty-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pagerduty-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pagerduty-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pagerduty-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pagerduty-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pagerduty-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pagerduty-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pagerduty-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pagerduty-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pagerduty-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pagerduty-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pagerduty-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pagerduty-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pagerduty-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pagerduty-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pagerduty-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pagerduty-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pagerduty-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pagerduty-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pagerduty-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pagerduty-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pagerduty-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pagerduty-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pagerduty-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pagerduty-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pagerduty-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pagerduty-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pagerduty-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pagerduty-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pagerduty-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pagerduty-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pagerduty-plugin/deployments", + "created_at": "2015-09-25T11:07:38Z", + "updated_at": "2019-10-23T09:35:26Z", + "pushed_at": "2019-10-23T09:35:24Z", + "git_url": "git://github.com/jenkinsci/pagerduty-plugin.git", + "ssh_url": "git@github.com:jenkinsci/pagerduty-plugin.git", + "clone_url": "https://github.com/jenkinsci/pagerduty-plugin.git", + "svn_url": "https://github.com/jenkinsci/pagerduty-plugin", + "homepage": null, + "size": 93, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 11, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 11, + "open_issues": 0, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 43261433, + "node_id": "MDEwOlJlcG9zaXRvcnk0MzI2MTQzMw==", + "name": "codebeamer-result-trend-updater-plugin", + "full_name": "jenkinsci/codebeamer-result-trend-updater-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/codebeamer-result-trend-updater-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/codebeamer-result-trend-updater-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/codebeamer-result-trend-updater-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/codebeamer-result-trend-updater-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/codebeamer-result-trend-updater-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/codebeamer-result-trend-updater-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/codebeamer-result-trend-updater-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/codebeamer-result-trend-updater-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/codebeamer-result-trend-updater-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/codebeamer-result-trend-updater-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/codebeamer-result-trend-updater-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/codebeamer-result-trend-updater-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/codebeamer-result-trend-updater-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/codebeamer-result-trend-updater-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/codebeamer-result-trend-updater-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/codebeamer-result-trend-updater-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/codebeamer-result-trend-updater-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/codebeamer-result-trend-updater-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/codebeamer-result-trend-updater-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/codebeamer-result-trend-updater-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/codebeamer-result-trend-updater-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/codebeamer-result-trend-updater-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/codebeamer-result-trend-updater-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/codebeamer-result-trend-updater-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/codebeamer-result-trend-updater-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/codebeamer-result-trend-updater-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/codebeamer-result-trend-updater-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/codebeamer-result-trend-updater-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/codebeamer-result-trend-updater-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/codebeamer-result-trend-updater-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/codebeamer-result-trend-updater-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/codebeamer-result-trend-updater-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/codebeamer-result-trend-updater-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/codebeamer-result-trend-updater-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/codebeamer-result-trend-updater-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/codebeamer-result-trend-updater-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/codebeamer-result-trend-updater-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/codebeamer-result-trend-updater-plugin/deployments", + "created_at": "2015-09-27T19:31:04Z", + "updated_at": "2019-05-24T14:28:55Z", + "pushed_at": "2019-05-24T14:28:53Z", + "git_url": "git://github.com/jenkinsci/codebeamer-result-trend-updater-plugin.git", + "ssh_url": "git@github.com:jenkinsci/codebeamer-result-trend-updater-plugin.git", + "clone_url": "https://github.com/jenkinsci/codebeamer-result-trend-updater-plugin.git", + "svn_url": "https://github.com/jenkinsci/codebeamer-result-trend-updater-plugin", + "homepage": null, + "size": 52, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 6, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 43262522, + "node_id": "MDEwOlJlcG9zaXRvcnk0MzI2MjUyMg==", + "name": "sumologic-publisher-plugin", + "full_name": "jenkinsci/sumologic-publisher-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/sumologic-publisher-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/sumologic-publisher-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/sumologic-publisher-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/sumologic-publisher-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/sumologic-publisher-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/sumologic-publisher-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/sumologic-publisher-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/sumologic-publisher-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/sumologic-publisher-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/sumologic-publisher-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/sumologic-publisher-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/sumologic-publisher-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/sumologic-publisher-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/sumologic-publisher-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/sumologic-publisher-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/sumologic-publisher-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/sumologic-publisher-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/sumologic-publisher-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/sumologic-publisher-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/sumologic-publisher-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/sumologic-publisher-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/sumologic-publisher-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/sumologic-publisher-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/sumologic-publisher-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/sumologic-publisher-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/sumologic-publisher-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/sumologic-publisher-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/sumologic-publisher-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/sumologic-publisher-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/sumologic-publisher-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/sumologic-publisher-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/sumologic-publisher-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/sumologic-publisher-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/sumologic-publisher-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/sumologic-publisher-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/sumologic-publisher-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/sumologic-publisher-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/sumologic-publisher-plugin/deployments", + "created_at": "2015-09-27T19:59:21Z", + "updated_at": "2019-08-05T08:20:28Z", + "pushed_at": "2019-08-05T08:20:26Z", + "git_url": "git://github.com/jenkinsci/sumologic-publisher-plugin.git", + "ssh_url": "git@github.com:jenkinsci/sumologic-publisher-plugin.git", + "clone_url": "https://github.com/jenkinsci/sumologic-publisher-plugin.git", + "svn_url": "https://github.com/jenkinsci/sumologic-publisher-plugin", + "homepage": null, + "size": 1172, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 2, + "open_issues": 0, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 43296794, + "node_id": "MDEwOlJlcG9zaXRvcnk0MzI5Njc5NA==", + "name": "remote-jobs-view-plugin", + "full_name": "jenkinsci/remote-jobs-view-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/remote-jobs-view-plugin", + "description": "This Jenkins CI plugin provides a view that will show you the build status of jobs executed on remote (master) jenkins ci servers. You can specify several remote jenkins ci servers to be listed in one view. Also you can select which (remote) jobs should be listed.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/remote-jobs-view-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/remote-jobs-view-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/remote-jobs-view-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/remote-jobs-view-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/remote-jobs-view-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/remote-jobs-view-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/remote-jobs-view-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/remote-jobs-view-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/remote-jobs-view-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/remote-jobs-view-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/remote-jobs-view-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/remote-jobs-view-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/remote-jobs-view-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/remote-jobs-view-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/remote-jobs-view-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/remote-jobs-view-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/remote-jobs-view-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/remote-jobs-view-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/remote-jobs-view-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/remote-jobs-view-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/remote-jobs-view-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/remote-jobs-view-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/remote-jobs-view-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/remote-jobs-view-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/remote-jobs-view-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/remote-jobs-view-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/remote-jobs-view-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/remote-jobs-view-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/remote-jobs-view-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/remote-jobs-view-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/remote-jobs-view-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/remote-jobs-view-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/remote-jobs-view-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/remote-jobs-view-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/remote-jobs-view-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/remote-jobs-view-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/remote-jobs-view-plugin/deployments", + "created_at": "2015-09-28T11:19:45Z", + "updated_at": "2019-10-09T15:42:14Z", + "pushed_at": "2019-10-09T15:42:12Z", + "git_url": "git://github.com/jenkinsci/remote-jobs-view-plugin.git", + "ssh_url": "git@github.com:jenkinsci/remote-jobs-view-plugin.git", + "clone_url": "https://github.com/jenkinsci/remote-jobs-view-plugin.git", + "svn_url": "https://github.com/jenkinsci/remote-jobs-view-plugin", + "homepage": null, + "size": 22, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 2, + "open_issues": 0, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 43321317, + "node_id": "MDEwOlJlcG9zaXRvcnk0MzMyMTMxNw==", + "name": "tinfoil-scan-plugin", + "full_name": "jenkinsci/tinfoil-scan-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/tinfoil-scan-plugin", + "description": "Jenkins Plugin for managing Tinfoil Security scans", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/tinfoil-scan-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/tinfoil-scan-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/tinfoil-scan-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/tinfoil-scan-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/tinfoil-scan-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/tinfoil-scan-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/tinfoil-scan-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/tinfoil-scan-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/tinfoil-scan-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/tinfoil-scan-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/tinfoil-scan-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/tinfoil-scan-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/tinfoil-scan-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/tinfoil-scan-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/tinfoil-scan-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/tinfoil-scan-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/tinfoil-scan-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/tinfoil-scan-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/tinfoil-scan-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/tinfoil-scan-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/tinfoil-scan-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/tinfoil-scan-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/tinfoil-scan-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/tinfoil-scan-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/tinfoil-scan-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/tinfoil-scan-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/tinfoil-scan-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/tinfoil-scan-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/tinfoil-scan-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/tinfoil-scan-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/tinfoil-scan-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/tinfoil-scan-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/tinfoil-scan-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/tinfoil-scan-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/tinfoil-scan-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/tinfoil-scan-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/tinfoil-scan-plugin/deployments", + "created_at": "2015-09-28T19:13:59Z", + "updated_at": "2019-07-09T20:35:30Z", + "pushed_at": "2019-07-08T20:36:41Z", + "git_url": "git://github.com/jenkinsci/tinfoil-scan-plugin.git", + "ssh_url": "git@github.com:jenkinsci/tinfoil-scan-plugin.git", + "clone_url": "https://github.com/jenkinsci/tinfoil-scan-plugin.git", + "svn_url": "https://github.com/jenkinsci/tinfoil-scan-plugin", + "homepage": "https://plugins.jenkins.io/tinfoil-scan", + "size": 81, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 43321515, + "node_id": "MDEwOlJlcG9zaXRvcnk0MzMyMTUxNQ==", + "name": "workflow-remote-loader-plugin", + "full_name": "jenkinsci/workflow-remote-loader-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/workflow-remote-loader-plugin", + "description": "Jenkins plugin, which allows to load Pipeline script objects from remote locations (e.g. Git)", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/workflow-remote-loader-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/workflow-remote-loader-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/workflow-remote-loader-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/workflow-remote-loader-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/workflow-remote-loader-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/workflow-remote-loader-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/workflow-remote-loader-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/workflow-remote-loader-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/workflow-remote-loader-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/workflow-remote-loader-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/workflow-remote-loader-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/workflow-remote-loader-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/workflow-remote-loader-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/workflow-remote-loader-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/workflow-remote-loader-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/workflow-remote-loader-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/workflow-remote-loader-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/workflow-remote-loader-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/workflow-remote-loader-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/workflow-remote-loader-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/workflow-remote-loader-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/workflow-remote-loader-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/workflow-remote-loader-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/workflow-remote-loader-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/workflow-remote-loader-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/workflow-remote-loader-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/workflow-remote-loader-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/workflow-remote-loader-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/workflow-remote-loader-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/workflow-remote-loader-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/workflow-remote-loader-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/workflow-remote-loader-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/workflow-remote-loader-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/workflow-remote-loader-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/workflow-remote-loader-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/workflow-remote-loader-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/workflow-remote-loader-plugin/deployments", + "created_at": "2015-09-28T19:17:44Z", + "updated_at": "2019-09-20T08:01:22Z", + "pushed_at": "2019-09-20T08:02:33Z", + "git_url": "git://github.com/jenkinsci/workflow-remote-loader-plugin.git", + "ssh_url": "git@github.com:jenkinsci/workflow-remote-loader-plugin.git", + "clone_url": "https://github.com/jenkinsci/workflow-remote-loader-plugin.git", + "svn_url": "https://github.com/jenkinsci/workflow-remote-loader-plugin", + "homepage": "", + "size": 94, + "stargazers_count": 78, + "watchers_count": 78, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 27, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 27, + "open_issues": 1, + "watchers": 78, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 43352263, + "node_id": "MDEwOlJlcG9zaXRvcnk0MzM1MjI2Mw==", + "name": "vstart-plugin", + "full_name": "jenkinsci/vstart-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/vstart-plugin", + "description": "VSTART Jenkins plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/vstart-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/vstart-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/vstart-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/vstart-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/vstart-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/vstart-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/vstart-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/vstart-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/vstart-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/vstart-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/vstart-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/vstart-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/vstart-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/vstart-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/vstart-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/vstart-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/vstart-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/vstart-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/vstart-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/vstart-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/vstart-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/vstart-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/vstart-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/vstart-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/vstart-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/vstart-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/vstart-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/vstart-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/vstart-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/vstart-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/vstart-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/vstart-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/vstart-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/vstart-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/vstart-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/vstart-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/vstart-plugin/deployments", + "created_at": "2015-09-29T07:37:48Z", + "updated_at": "2015-09-29T07:37:59Z", + "pushed_at": "2015-09-21T13:31:39Z", + "git_url": "git://github.com/jenkinsci/vstart-plugin.git", + "ssh_url": "git@github.com:jenkinsci/vstart-plugin.git", + "clone_url": "https://github.com/jenkinsci/vstart-plugin.git", + "svn_url": "https://github.com/jenkinsci/vstart-plugin", + "homepage": "http://www.vstart.io", + "size": 417, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "gpl-3.0", + "name": "GNU General Public License v3.0", + "spdx_id": "GPL-3.0", + "url": "https://api.github.com/licenses/gpl-3.0", + "node_id": "MDc6TGljZW5zZTk=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 43356075, + "node_id": "MDEwOlJlcG9zaXRvcnk0MzM1NjA3NQ==", + "name": "behave-testresults-publisher-plugin", + "full_name": "jenkinsci/behave-testresults-publisher-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/behave-testresults-publisher-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/behave-testresults-publisher-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/behave-testresults-publisher-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/behave-testresults-publisher-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/behave-testresults-publisher-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/behave-testresults-publisher-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/behave-testresults-publisher-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/behave-testresults-publisher-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/behave-testresults-publisher-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/behave-testresults-publisher-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/behave-testresults-publisher-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/behave-testresults-publisher-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/behave-testresults-publisher-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/behave-testresults-publisher-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/behave-testresults-publisher-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/behave-testresults-publisher-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/behave-testresults-publisher-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/behave-testresults-publisher-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/behave-testresults-publisher-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/behave-testresults-publisher-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/behave-testresults-publisher-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/behave-testresults-publisher-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/behave-testresults-publisher-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/behave-testresults-publisher-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/behave-testresults-publisher-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/behave-testresults-publisher-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/behave-testresults-publisher-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/behave-testresults-publisher-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/behave-testresults-publisher-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/behave-testresults-publisher-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/behave-testresults-publisher-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/behave-testresults-publisher-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/behave-testresults-publisher-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/behave-testresults-publisher-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/behave-testresults-publisher-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/behave-testresults-publisher-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/behave-testresults-publisher-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/behave-testresults-publisher-plugin/deployments", + "created_at": "2015-09-29T08:54:29Z", + "updated_at": "2016-10-12T11:24:09Z", + "pushed_at": "2016-02-25T12:55:23Z", + "git_url": "git://github.com/jenkinsci/behave-testresults-publisher-plugin.git", + "ssh_url": "git@github.com:jenkinsci/behave-testresults-publisher-plugin.git", + "clone_url": "https://github.com/jenkinsci/behave-testresults-publisher-plugin.git", + "svn_url": "https://github.com/jenkinsci/behave-testresults-publisher-plugin", + "homepage": null, + "size": 3355, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 2, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 43362032, + "node_id": "MDEwOlJlcG9zaXRvcnk0MzM2MjAzMg==", + "name": "appspider-build-scanner-plugin", + "full_name": "jenkinsci/appspider-build-scanner-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/appspider-build-scanner-plugin", + "description": "Jenkins plugin that calls the AppSpider API", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/appspider-build-scanner-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/appspider-build-scanner-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/appspider-build-scanner-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/appspider-build-scanner-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/appspider-build-scanner-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/appspider-build-scanner-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/appspider-build-scanner-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/appspider-build-scanner-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/appspider-build-scanner-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/appspider-build-scanner-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/appspider-build-scanner-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/appspider-build-scanner-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/appspider-build-scanner-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/appspider-build-scanner-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/appspider-build-scanner-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/appspider-build-scanner-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/appspider-build-scanner-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/appspider-build-scanner-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/appspider-build-scanner-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/appspider-build-scanner-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/appspider-build-scanner-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/appspider-build-scanner-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/appspider-build-scanner-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/appspider-build-scanner-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/appspider-build-scanner-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/appspider-build-scanner-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/appspider-build-scanner-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/appspider-build-scanner-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/appspider-build-scanner-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/appspider-build-scanner-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/appspider-build-scanner-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/appspider-build-scanner-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/appspider-build-scanner-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/appspider-build-scanner-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/appspider-build-scanner-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/appspider-build-scanner-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/appspider-build-scanner-plugin/deployments", + "created_at": "2015-09-29T10:54:25Z", + "updated_at": "2015-12-11T16:05:07Z", + "pushed_at": "2015-12-15T16:16:44Z", + "git_url": "git://github.com/jenkinsci/appspider-build-scanner-plugin.git", + "ssh_url": "git@github.com:jenkinsci/appspider-build-scanner-plugin.git", + "clone_url": "https://github.com/jenkinsci/appspider-build-scanner-plugin.git", + "svn_url": "https://github.com/jenkinsci/appspider-build-scanner-plugin", + "homepage": "", + "size": 99, + "stargazers_count": 0, + "watchers_count": 0, + "language": "FreeMarker", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 43552475, + "node_id": "MDEwOlJlcG9zaXRvcnk0MzU1MjQ3NQ==", + "name": "parallels-desktop-plugin", + "full_name": "jenkinsci/parallels-desktop-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/parallels-desktop-plugin", + "description": "A Jenkins plugin to run builds in Parallels Desktop", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/parallels-desktop-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/parallels-desktop-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/parallels-desktop-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/parallels-desktop-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/parallels-desktop-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/parallels-desktop-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/parallels-desktop-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/parallels-desktop-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/parallels-desktop-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/parallels-desktop-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/parallels-desktop-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/parallels-desktop-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/parallels-desktop-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/parallels-desktop-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/parallels-desktop-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/parallels-desktop-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/parallels-desktop-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/parallels-desktop-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/parallels-desktop-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/parallels-desktop-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/parallels-desktop-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/parallels-desktop-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/parallels-desktop-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/parallels-desktop-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/parallels-desktop-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/parallels-desktop-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/parallels-desktop-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/parallels-desktop-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/parallels-desktop-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/parallels-desktop-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/parallels-desktop-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/parallels-desktop-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/parallels-desktop-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/parallels-desktop-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/parallels-desktop-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/parallels-desktop-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/parallels-desktop-plugin/deployments", + "created_at": "2015-10-02T12:49:18Z", + "updated_at": "2019-05-22T01:45:51Z", + "pushed_at": "2018-04-25T16:08:45Z", + "git_url": "git://github.com/jenkinsci/parallels-desktop-plugin.git", + "ssh_url": "git@github.com:jenkinsci/parallels-desktop-plugin.git", + "clone_url": "https://github.com/jenkinsci/parallels-desktop-plugin.git", + "svn_url": "https://github.com/jenkinsci/parallels-desktop-plugin", + "homepage": null, + "size": 139, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 3, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 43552968, + "node_id": "MDEwOlJlcG9zaXRvcnk0MzU1Mjk2OA==", + "name": "yandex-metrica-plugin", + "full_name": "jenkinsci/yandex-metrica-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/yandex-metrica-plugin", + "description": "Jenkins Yandex Metrica plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/yandex-metrica-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/yandex-metrica-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/yandex-metrica-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/yandex-metrica-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/yandex-metrica-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/yandex-metrica-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/yandex-metrica-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/yandex-metrica-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/yandex-metrica-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/yandex-metrica-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/yandex-metrica-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/yandex-metrica-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/yandex-metrica-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/yandex-metrica-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/yandex-metrica-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/yandex-metrica-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/yandex-metrica-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/yandex-metrica-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/yandex-metrica-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/yandex-metrica-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/yandex-metrica-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/yandex-metrica-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/yandex-metrica-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/yandex-metrica-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/yandex-metrica-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/yandex-metrica-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/yandex-metrica-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/yandex-metrica-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/yandex-metrica-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/yandex-metrica-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/yandex-metrica-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/yandex-metrica-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/yandex-metrica-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/yandex-metrica-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/yandex-metrica-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/yandex-metrica-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/yandex-metrica-plugin/deployments", + "created_at": "2015-10-02T13:00:30Z", + "updated_at": "2015-10-02T13:00:41Z", + "pushed_at": "2015-10-29T19:03:28Z", + "git_url": "git://github.com/jenkinsci/yandex-metrica-plugin.git", + "ssh_url": "git@github.com:jenkinsci/yandex-metrica-plugin.git", + "clone_url": "https://github.com/jenkinsci/yandex-metrica-plugin.git", + "svn_url": "https://github.com/jenkinsci/yandex-metrica-plugin", + "homepage": "", + "size": 141, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 43583079, + "node_id": "MDEwOlJlcG9zaXRvcnk0MzU4MzA3OQ==", + "name": "sonar-gerrit-plugin", + "full_name": "jenkinsci/sonar-gerrit-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/sonar-gerrit-plugin", + "description": "Jenkins plugin for posting SonarQube issues as Gerrit review comments ", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/sonar-gerrit-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/sonar-gerrit-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/sonar-gerrit-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/sonar-gerrit-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/sonar-gerrit-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/sonar-gerrit-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/sonar-gerrit-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/sonar-gerrit-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/sonar-gerrit-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/sonar-gerrit-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/sonar-gerrit-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/sonar-gerrit-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/sonar-gerrit-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/sonar-gerrit-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/sonar-gerrit-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/sonar-gerrit-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/sonar-gerrit-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/sonar-gerrit-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/sonar-gerrit-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/sonar-gerrit-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/sonar-gerrit-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/sonar-gerrit-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/sonar-gerrit-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/sonar-gerrit-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/sonar-gerrit-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/sonar-gerrit-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/sonar-gerrit-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/sonar-gerrit-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/sonar-gerrit-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/sonar-gerrit-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/sonar-gerrit-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/sonar-gerrit-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/sonar-gerrit-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/sonar-gerrit-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/sonar-gerrit-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/sonar-gerrit-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/sonar-gerrit-plugin/deployments", + "created_at": "2015-10-03T00:52:10Z", + "updated_at": "2019-03-25T01:05:04Z", + "pushed_at": "2019-07-15T09:17:05Z", + "git_url": "git://github.com/jenkinsci/sonar-gerrit-plugin.git", + "ssh_url": "git@github.com:jenkinsci/sonar-gerrit-plugin.git", + "clone_url": "https://github.com/jenkinsci/sonar-gerrit-plugin.git", + "svn_url": "https://github.com/jenkinsci/sonar-gerrit-plugin", + "homepage": "", + "size": 4211, + "stargazers_count": 11, + "watchers_count": 11, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 17, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 4, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 17, + "open_issues": 4, + "watchers": 11, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 43630800, + "node_id": "MDEwOlJlcG9zaXRvcnk0MzYzMDgwMA==", + "name": "git-changelog-plugin", + "full_name": "jenkinsci/git-changelog-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/git-changelog-plugin", + "description": "Creates a changelog, or release notes, based on Git commits between 2 revisions.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/git-changelog-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/git-changelog-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/git-changelog-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/git-changelog-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/git-changelog-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/git-changelog-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/git-changelog-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/git-changelog-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/git-changelog-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/git-changelog-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/git-changelog-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/git-changelog-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/git-changelog-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/git-changelog-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/git-changelog-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/git-changelog-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/git-changelog-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/git-changelog-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/git-changelog-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/git-changelog-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/git-changelog-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/git-changelog-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/git-changelog-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/git-changelog-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/git-changelog-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/git-changelog-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/git-changelog-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/git-changelog-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/git-changelog-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/git-changelog-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/git-changelog-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/git-changelog-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/git-changelog-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/git-changelog-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/git-changelog-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/git-changelog-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/git-changelog-plugin/deployments", + "created_at": "2015-10-04T09:07:37Z", + "updated_at": "2019-10-24T18:37:05Z", + "pushed_at": "2019-10-24T18:37:03Z", + "git_url": "git://github.com/jenkinsci/git-changelog-plugin.git", + "ssh_url": "git@github.com:jenkinsci/git-changelog-plugin.git", + "clone_url": "https://github.com/jenkinsci/git-changelog-plugin.git", + "svn_url": "https://github.com/jenkinsci/git-changelog-plugin", + "homepage": "https://plugins.jenkins.io/git-changelog", + "size": 1029, + "stargazers_count": 34, + "watchers_count": 34, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 22, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 22, + "open_issues": 3, + "watchers": 34, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 43631303, + "node_id": "MDEwOlJlcG9zaXRvcnk0MzYzMTMwMw==", + "name": "ecutest-plugin", + "full_name": "jenkinsci/ecutest-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/ecutest-plugin", + "description": "This plugin integrates Jenkins with ECU-TEST and generates reports on automated test execution.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/ecutest-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/ecutest-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/ecutest-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/ecutest-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/ecutest-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/ecutest-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/ecutest-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/ecutest-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/ecutest-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/ecutest-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/ecutest-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/ecutest-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/ecutest-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/ecutest-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/ecutest-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/ecutest-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/ecutest-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/ecutest-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/ecutest-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/ecutest-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/ecutest-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/ecutest-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/ecutest-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/ecutest-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/ecutest-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/ecutest-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/ecutest-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/ecutest-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/ecutest-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/ecutest-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/ecutest-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/ecutest-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/ecutest-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/ecutest-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/ecutest-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/ecutest-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/ecutest-plugin/deployments", + "created_at": "2015-10-04T09:30:06Z", + "updated_at": "2019-10-18T13:15:10Z", + "pushed_at": "2019-10-24T09:19:20Z", + "git_url": "git://github.com/jenkinsci/ecutest-plugin.git", + "ssh_url": "git@github.com:jenkinsci/ecutest-plugin.git", + "clone_url": "https://github.com/jenkinsci/ecutest-plugin.git", + "svn_url": "https://github.com/jenkinsci/ecutest-plugin", + "homepage": "https://wiki.jenkins-ci.org/x/joLtB", + "size": 4407, + "stargazers_count": 11, + "watchers_count": 11, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 8, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 9, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 8, + "open_issues": 9, + "watchers": 11, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 43732757, + "node_id": "MDEwOlJlcG9zaXRvcnk0MzczMjc1Nw==", + "name": "wildfly-deployer-plugin", + "full_name": "jenkinsci/wildfly-deployer-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/wildfly-deployer-plugin", + "description": "Jenkins plugin that deploys applications (WAR or EAR files) to a WildFly or JBoss EAP server or server group.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/wildfly-deployer-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/wildfly-deployer-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/wildfly-deployer-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/wildfly-deployer-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/wildfly-deployer-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/wildfly-deployer-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/wildfly-deployer-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/wildfly-deployer-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/wildfly-deployer-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/wildfly-deployer-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/wildfly-deployer-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/wildfly-deployer-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/wildfly-deployer-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/wildfly-deployer-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/wildfly-deployer-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/wildfly-deployer-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/wildfly-deployer-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/wildfly-deployer-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/wildfly-deployer-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/wildfly-deployer-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/wildfly-deployer-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/wildfly-deployer-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/wildfly-deployer-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/wildfly-deployer-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/wildfly-deployer-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/wildfly-deployer-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/wildfly-deployer-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/wildfly-deployer-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/wildfly-deployer-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/wildfly-deployer-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/wildfly-deployer-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/wildfly-deployer-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/wildfly-deployer-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/wildfly-deployer-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/wildfly-deployer-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/wildfly-deployer-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/wildfly-deployer-plugin/deployments", + "created_at": "2015-10-06T06:01:46Z", + "updated_at": "2017-10-25T14:52:20Z", + "pushed_at": "2019-10-08T12:15:25Z", + "git_url": "git://github.com/jenkinsci/wildfly-deployer-plugin.git", + "ssh_url": "git@github.com:jenkinsci/wildfly-deployer-plugin.git", + "clone_url": "https://github.com/jenkinsci/wildfly-deployer-plugin.git", + "svn_url": "https://github.com/jenkinsci/wildfly-deployer-plugin", + "homepage": null, + "size": 15, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 11, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 5, + "license": null, + "forks": 11, + "open_issues": 5, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 43903637, + "node_id": "MDEwOlJlcG9zaXRvcnk0MzkwMzYzNw==", + "name": "github-branch-source-plugin", + "full_name": "jenkinsci/github-branch-source-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/github-branch-source-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/github-branch-source-plugin/deployments", + "created_at": "2015-10-08T16:52:19Z", + "updated_at": "2019-10-23T18:24:42Z", + "pushed_at": "2019-10-25T18:15:51Z", + "git_url": "git://github.com/jenkinsci/github-branch-source-plugin.git", + "ssh_url": "git@github.com:jenkinsci/github-branch-source-plugin.git", + "clone_url": "https://github.com/jenkinsci/github-branch-source-plugin.git", + "svn_url": "https://github.com/jenkinsci/github-branch-source-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/GitHub+Branch+Source+Plugin", + "size": 1661, + "stargazers_count": 74, + "watchers_count": 74, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 216, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 14, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 216, + "open_issues": 14, + "watchers": 74, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 44102722, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDEwMjcyMg==", + "name": "jackson2-api-plugin", + "full_name": "jenkinsci/jackson2-api-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jackson2-api-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jackson2-api-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/jackson2-api-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jackson2-api-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jackson2-api-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jackson2-api-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jackson2-api-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jackson2-api-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jackson2-api-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jackson2-api-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jackson2-api-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jackson2-api-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jackson2-api-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jackson2-api-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jackson2-api-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jackson2-api-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jackson2-api-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jackson2-api-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jackson2-api-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jackson2-api-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jackson2-api-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jackson2-api-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jackson2-api-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jackson2-api-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jackson2-api-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jackson2-api-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jackson2-api-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jackson2-api-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jackson2-api-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jackson2-api-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jackson2-api-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jackson2-api-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jackson2-api-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jackson2-api-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jackson2-api-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jackson2-api-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jackson2-api-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jackson2-api-plugin/deployments", + "created_at": "2015-10-12T11:18:38Z", + "updated_at": "2019-10-07T18:02:15Z", + "pushed_at": "2019-10-07T18:02:13Z", + "git_url": "git://github.com/jenkinsci/jackson2-api-plugin.git", + "ssh_url": "git@github.com:jenkinsci/jackson2-api-plugin.git", + "clone_url": "https://github.com/jenkinsci/jackson2-api-plugin.git", + "svn_url": "https://github.com/jenkinsci/jackson2-api-plugin", + "homepage": "", + "size": 50, + "stargazers_count": 1, + "watchers_count": 1, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 13, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 13, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 44267118, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDI2NzExOA==", + "name": "fortify-cloudscan-plugin", + "full_name": "jenkinsci/fortify-cloudscan-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/fortify-cloudscan-plugin", + "description": "Jenkins plugin for Fortify CloudScan", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/fortify-cloudscan-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/fortify-cloudscan-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/fortify-cloudscan-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/fortify-cloudscan-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/fortify-cloudscan-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/fortify-cloudscan-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/fortify-cloudscan-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/fortify-cloudscan-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/fortify-cloudscan-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/fortify-cloudscan-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/fortify-cloudscan-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/fortify-cloudscan-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/fortify-cloudscan-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/fortify-cloudscan-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/fortify-cloudscan-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/fortify-cloudscan-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/fortify-cloudscan-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/fortify-cloudscan-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/fortify-cloudscan-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/fortify-cloudscan-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/fortify-cloudscan-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/fortify-cloudscan-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/fortify-cloudscan-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/fortify-cloudscan-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/fortify-cloudscan-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/fortify-cloudscan-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/fortify-cloudscan-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/fortify-cloudscan-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/fortify-cloudscan-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/fortify-cloudscan-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/fortify-cloudscan-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/fortify-cloudscan-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/fortify-cloudscan-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/fortify-cloudscan-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/fortify-cloudscan-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/fortify-cloudscan-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/fortify-cloudscan-plugin/deployments", + "created_at": "2015-10-14T18:13:08Z", + "updated_at": "2019-10-09T00:47:34Z", + "pushed_at": "2019-10-09T00:47:32Z", + "git_url": "git://github.com/jenkinsci/fortify-cloudscan-plugin.git", + "ssh_url": "git@github.com:jenkinsci/fortify-cloudscan-plugin.git", + "clone_url": "https://github.com/jenkinsci/fortify-cloudscan-plugin.git", + "svn_url": "https://github.com/jenkinsci/fortify-cloudscan-plugin", + "homepage": "", + "size": 151, + "stargazers_count": 8, + "watchers_count": 8, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 6, + "open_issues": 0, + "watchers": 8, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 44276785, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDI3Njc4NQ==", + "name": "events-materials", + "full_name": "jenkinsci/events-materials", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/events-materials", + "description": "Collection of materials for organizing Jenkins Community Events", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/events-materials", + "forks_url": "https://api.github.com/repos/jenkinsci/events-materials/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/events-materials/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/events-materials/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/events-materials/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/events-materials/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/events-materials/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/events-materials/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/events-materials/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/events-materials/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/events-materials/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/events-materials/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/events-materials/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/events-materials/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/events-materials/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/events-materials/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/events-materials/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/events-materials/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/events-materials/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/events-materials/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/events-materials/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/events-materials/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/events-materials/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/events-materials/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/events-materials/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/events-materials/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/events-materials/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/events-materials/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/events-materials/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/events-materials/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/events-materials/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/events-materials/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/events-materials/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/events-materials/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/events-materials/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/events-materials/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/events-materials/deployments", + "created_at": "2015-10-14T21:13:38Z", + "updated_at": "2019-01-23T19:22:33Z", + "pushed_at": "2018-04-26T19:54:30Z", + "git_url": "git://github.com/jenkinsci/events-materials.git", + "ssh_url": "git@github.com:jenkinsci/events-materials.git", + "clone_url": "https://github.com/jenkinsci/events-materials.git", + "svn_url": "https://github.com/jenkinsci/events-materials", + "homepage": "", + "size": 23, + "stargazers_count": 6, + "watchers_count": 6, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 7, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 7, + "open_issues": 0, + "watchers": 6, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 44643647, + "node_id": "MDEwOlJlcG9zaXRvcnk0NDY0MzY0Nw==", + "name": "walti-plugin", + "full_name": "jenkinsci/walti-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/walti-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/walti-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/walti-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/walti-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/walti-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/walti-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/walti-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/walti-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/walti-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/walti-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/walti-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/walti-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/walti-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/walti-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/walti-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/walti-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/walti-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/walti-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/walti-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/walti-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/walti-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/walti-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/walti-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/walti-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/walti-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/walti-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/walti-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/walti-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/walti-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/walti-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/walti-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/walti-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/walti-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/walti-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/walti-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/walti-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/walti-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/walti-plugin/deployments", + "created_at": "2015-10-21T00:51:30Z", + "updated_at": "2015-11-15T07:04:47Z", + "pushed_at": "2015-11-08T06:42:30Z", + "git_url": "git://github.com/jenkinsci/walti-plugin.git", + "ssh_url": "git@github.com:jenkinsci/walti-plugin.git", + "clone_url": "https://github.com/jenkinsci/walti-plugin.git", + "svn_url": "https://github.com/jenkinsci/walti-plugin", + "homepage": null, + "size": 140, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 45607337, + "node_id": "MDEwOlJlcG9zaXRvcnk0NTYwNzMzNw==", + "name": "aws-codepipeline-plugin", + "full_name": "jenkinsci/aws-codepipeline-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/aws-codepipeline-plugin", + "description": "Use this plugin to integrate your Jenkins project with a pipeline in AWS CodePipeline. For more information and step-by-step directions on how to install and configure this plugin, follow the Four Stage Pipeline Tutorial. http://docs.aws.amazon.com/codepipeline/latest/userguide/getting-started-4.html", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/aws-codepipeline-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/aws-codepipeline-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/aws-codepipeline-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/aws-codepipeline-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/aws-codepipeline-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/aws-codepipeline-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/aws-codepipeline-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/aws-codepipeline-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/aws-codepipeline-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/aws-codepipeline-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/aws-codepipeline-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/aws-codepipeline-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/aws-codepipeline-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/aws-codepipeline-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/aws-codepipeline-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/aws-codepipeline-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/aws-codepipeline-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/aws-codepipeline-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/aws-codepipeline-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/aws-codepipeline-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/aws-codepipeline-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/aws-codepipeline-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/aws-codepipeline-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/aws-codepipeline-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/aws-codepipeline-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/aws-codepipeline-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/aws-codepipeline-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/aws-codepipeline-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/aws-codepipeline-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/aws-codepipeline-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/aws-codepipeline-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/aws-codepipeline-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/aws-codepipeline-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/aws-codepipeline-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/aws-codepipeline-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/aws-codepipeline-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/aws-codepipeline-plugin/deployments", + "created_at": "2015-11-05T11:33:05Z", + "updated_at": "2019-09-13T22:53:40Z", + "pushed_at": "2019-10-08T11:32:22Z", + "git_url": "git://github.com/jenkinsci/aws-codepipeline-plugin.git", + "ssh_url": "git@github.com:jenkinsci/aws-codepipeline-plugin.git", + "clone_url": "https://github.com/jenkinsci/aws-codepipeline-plugin.git", + "svn_url": "https://github.com/jenkinsci/aws-codepipeline-plugin", + "homepage": null, + "size": 87607, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 8, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 8, + "open_issues": 1, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 45607561, + "node_id": "MDEwOlJlcG9zaXRvcnk0NTYwNzU2MQ==", + "name": "mattermost-plugin", + "full_name": "jenkinsci/mattermost-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/mattermost-plugin", + "description": "Jenkins plugin for Mattermost", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/mattermost-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/mattermost-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/mattermost-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/mattermost-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/mattermost-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/mattermost-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/mattermost-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/mattermost-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/mattermost-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/mattermost-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/mattermost-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/mattermost-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/mattermost-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/mattermost-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/mattermost-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/mattermost-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/mattermost-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/mattermost-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/mattermost-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/mattermost-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/mattermost-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/mattermost-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/mattermost-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/mattermost-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/mattermost-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/mattermost-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/mattermost-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/mattermost-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/mattermost-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/mattermost-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/mattermost-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/mattermost-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/mattermost-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/mattermost-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/mattermost-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/mattermost-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/mattermost-plugin/deployments", + "created_at": "2015-11-05T11:37:34Z", + "updated_at": "2019-10-19T18:42:19Z", + "pushed_at": "2019-10-19T18:42:17Z", + "git_url": "git://github.com/jenkinsci/mattermost-plugin.git", + "ssh_url": "git@github.com:jenkinsci/mattermost-plugin.git", + "clone_url": "https://github.com/jenkinsci/mattermost-plugin.git", + "svn_url": "https://github.com/jenkinsci/mattermost-plugin", + "homepage": "", + "size": 373, + "stargazers_count": 34, + "watchers_count": 34, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 19, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 19, + "open_issues": 0, + "watchers": 34, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 45607827, + "node_id": "MDEwOlJlcG9zaXRvcnk0NTYwNzgyNw==", + "name": "delphix-plugin", + "full_name": "jenkinsci/delphix-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/delphix-plugin", + "description": "Connect Jenkins jobs to the Delphix Engine", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/delphix-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/delphix-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/delphix-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/delphix-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/delphix-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/delphix-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/delphix-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/delphix-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/delphix-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/delphix-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/delphix-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/delphix-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/delphix-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/delphix-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/delphix-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/delphix-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/delphix-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/delphix-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/delphix-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/delphix-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/delphix-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/delphix-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/delphix-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/delphix-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/delphix-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/delphix-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/delphix-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/delphix-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/delphix-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/delphix-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/delphix-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/delphix-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/delphix-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/delphix-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/delphix-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/delphix-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/delphix-plugin/deployments", + "created_at": "2015-11-05T11:44:04Z", + "updated_at": "2019-02-14T21:52:41Z", + "pushed_at": "2019-02-14T21:52:39Z", + "git_url": "git://github.com/jenkinsci/delphix-plugin.git", + "ssh_url": "git@github.com:jenkinsci/delphix-plugin.git", + "clone_url": "https://github.com/jenkinsci/delphix-plugin.git", + "svn_url": "https://github.com/jenkinsci/delphix-plugin", + "homepage": "", + "size": 68963, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 1, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 45616565, + "node_id": "MDEwOlJlcG9zaXRvcnk0NTYxNjU2NQ==", + "name": "js-builder", + "full_name": "jenkinsci/js-builder", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/js-builder", + "description": "Build-time tool for building CommonJS module bundles (and optionally making them js-modules compatible) ", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/js-builder", + "forks_url": "https://api.github.com/repos/jenkinsci/js-builder/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/js-builder/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/js-builder/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/js-builder/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/js-builder/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/js-builder/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/js-builder/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/js-builder/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/js-builder/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/js-builder/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/js-builder/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/js-builder/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/js-builder/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/js-builder/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/js-builder/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/js-builder/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/js-builder/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/js-builder/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/js-builder/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/js-builder/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/js-builder/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/js-builder/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/js-builder/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/js-builder/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/js-builder/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/js-builder/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/js-builder/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/js-builder/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/js-builder/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/js-builder/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/js-builder/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/js-builder/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/js-builder/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/js-builder/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/js-builder/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/js-builder/deployments", + "created_at": "2015-11-05T14:32:28Z", + "updated_at": "2019-07-19T14:00:15Z", + "pushed_at": "2019-02-28T00:12:26Z", + "git_url": "git://github.com/jenkinsci/js-builder.git", + "ssh_url": "git@github.com:jenkinsci/js-builder.git", + "clone_url": "https://github.com/jenkinsci/js-builder.git", + "svn_url": "https://github.com/jenkinsci/js-builder", + "homepage": "", + "size": 443, + "stargazers_count": 9, + "watchers_count": 9, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 14, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 14, + "open_issues": 2, + "watchers": 9, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 45622430, + "node_id": "MDEwOlJlcG9zaXRvcnk0NTYyMjQzMA==", + "name": "js-modules", + "full_name": "jenkinsci/js-modules", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/js-modules", + "description": "JavaScript \"module bundle\" loader for Jenkins", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/js-modules", + "forks_url": "https://api.github.com/repos/jenkinsci/js-modules/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/js-modules/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/js-modules/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/js-modules/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/js-modules/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/js-modules/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/js-modules/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/js-modules/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/js-modules/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/js-modules/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/js-modules/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/js-modules/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/js-modules/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/js-modules/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/js-modules/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/js-modules/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/js-modules/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/js-modules/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/js-modules/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/js-modules/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/js-modules/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/js-modules/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/js-modules/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/js-modules/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/js-modules/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/js-modules/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/js-modules/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/js-modules/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/js-modules/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/js-modules/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/js-modules/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/js-modules/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/js-modules/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/js-modules/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/js-modules/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/js-modules/deployments", + "created_at": "2015-11-05T16:03:19Z", + "updated_at": "2018-12-27T15:55:32Z", + "pushed_at": "2017-05-25T08:52:34Z", + "git_url": "git://github.com/jenkinsci/js-modules.git", + "ssh_url": "git@github.com:jenkinsci/js-modules.git", + "clone_url": "https://github.com/jenkinsci/js-modules.git", + "svn_url": "https://github.com/jenkinsci/js-modules", + "homepage": "", + "size": 365, + "stargazers_count": 6, + "watchers_count": 6, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 5, + "open_issues": 0, + "watchers": 6, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 45671282, + "node_id": "MDEwOlJlcG9zaXRvcnk0NTY3MTI4Mg==", + "name": "openshift-pipeline-plugin", + "full_name": "jenkinsci/openshift-pipeline-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/openshift-pipeline-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/openshift-pipeline-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/openshift-pipeline-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/openshift-pipeline-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/openshift-pipeline-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/openshift-pipeline-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/openshift-pipeline-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/openshift-pipeline-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/openshift-pipeline-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/openshift-pipeline-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/openshift-pipeline-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/openshift-pipeline-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/openshift-pipeline-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/openshift-pipeline-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/openshift-pipeline-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/openshift-pipeline-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/openshift-pipeline-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/openshift-pipeline-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/openshift-pipeline-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/openshift-pipeline-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/openshift-pipeline-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/openshift-pipeline-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/openshift-pipeline-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/openshift-pipeline-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/openshift-pipeline-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/openshift-pipeline-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/openshift-pipeline-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/openshift-pipeline-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/openshift-pipeline-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/openshift-pipeline-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/openshift-pipeline-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/openshift-pipeline-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/openshift-pipeline-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/openshift-pipeline-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/openshift-pipeline-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/openshift-pipeline-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/openshift-pipeline-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/openshift-pipeline-plugin/deployments", + "created_at": "2015-11-06T09:07:08Z", + "updated_at": "2019-09-04T16:08:11Z", + "pushed_at": "2019-06-11T19:48:51Z", + "git_url": "git://github.com/jenkinsci/openshift-pipeline-plugin.git", + "ssh_url": "git@github.com:jenkinsci/openshift-pipeline-plugin.git", + "clone_url": "https://github.com/jenkinsci/openshift-pipeline-plugin.git", + "svn_url": "https://github.com/jenkinsci/openshift-pipeline-plugin", + "homepage": null, + "size": 1632, + "stargazers_count": 20, + "watchers_count": 20, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 11, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 11, + "open_issues": 0, + "watchers": 20, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 46078366, + "node_id": "MDEwOlJlcG9zaXRvcnk0NjA3ODM2Ng==", + "name": "qtest-plugin", + "full_name": "jenkinsci/qtest-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/qtest-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/qtest-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/qtest-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/qtest-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/qtest-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/qtest-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/qtest-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/qtest-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/qtest-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/qtest-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/qtest-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/qtest-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/qtest-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/qtest-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/qtest-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/qtest-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/qtest-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/qtest-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/qtest-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/qtest-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/qtest-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/qtest-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/qtest-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/qtest-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/qtest-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/qtest-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/qtest-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/qtest-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/qtest-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/qtest-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/qtest-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/qtest-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/qtest-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/qtest-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/qtest-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/qtest-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/qtest-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/qtest-plugin/deployments", + "created_at": "2015-11-12T20:18:12Z", + "updated_at": "2019-10-15T18:18:49Z", + "pushed_at": "2019-10-08T12:24:45Z", + "git_url": "git://github.com/jenkinsci/qtest-plugin.git", + "ssh_url": "git@github.com:jenkinsci/qtest-plugin.git", + "clone_url": "https://github.com/jenkinsci/qtest-plugin.git", + "svn_url": "https://github.com/jenkinsci/qtest-plugin", + "homepage": null, + "size": 1018, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 6, + "open_issues": 2, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 46397307, + "node_id": "MDEwOlJlcG9zaXRvcnk0NjM5NzMwNw==", + "name": "parameterized-scheduler-plugin", + "full_name": "jenkinsci/parameterized-scheduler-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/parameterized-scheduler-plugin", + "description": "A Jenkins Plugin to support setting parameters in the build schedule", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/parameterized-scheduler-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/parameterized-scheduler-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/parameterized-scheduler-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/parameterized-scheduler-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/parameterized-scheduler-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/parameterized-scheduler-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/parameterized-scheduler-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/parameterized-scheduler-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/parameterized-scheduler-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/parameterized-scheduler-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/parameterized-scheduler-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/parameterized-scheduler-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/parameterized-scheduler-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/parameterized-scheduler-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/parameterized-scheduler-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/parameterized-scheduler-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/parameterized-scheduler-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/parameterized-scheduler-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/parameterized-scheduler-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/parameterized-scheduler-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/parameterized-scheduler-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/parameterized-scheduler-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/parameterized-scheduler-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/parameterized-scheduler-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/parameterized-scheduler-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/parameterized-scheduler-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/parameterized-scheduler-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/parameterized-scheduler-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/parameterized-scheduler-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/parameterized-scheduler-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/parameterized-scheduler-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/parameterized-scheduler-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/parameterized-scheduler-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/parameterized-scheduler-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/parameterized-scheduler-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/parameterized-scheduler-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/parameterized-scheduler-plugin/deployments", + "created_at": "2015-11-18T05:25:48Z", + "updated_at": "2019-10-10T09:17:01Z", + "pushed_at": "2019-10-23T05:25:21Z", + "git_url": "git://github.com/jenkinsci/parameterized-scheduler-plugin.git", + "ssh_url": "git@github.com:jenkinsci/parameterized-scheduler-plugin.git", + "clone_url": "https://github.com/jenkinsci/parameterized-scheduler-plugin.git", + "svn_url": "https://github.com/jenkinsci/parameterized-scheduler-plugin", + "homepage": null, + "size": 143, + "stargazers_count": 39, + "watchers_count": 39, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 32, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 8, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 32, + "open_issues": 8, + "watchers": 39, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 46715379, + "node_id": "MDEwOlJlcG9zaXRvcnk0NjcxNTM3OQ==", + "name": "ifttt-build-notifier-plugin", + "full_name": "jenkinsci/ifttt-build-notifier-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/ifttt-build-notifier-plugin", + "description": "Simple Jenkins Build Status Notifier for IFTTT Maker Channel Trigger", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/ifttt-build-notifier-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/ifttt-build-notifier-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/ifttt-build-notifier-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/ifttt-build-notifier-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/ifttt-build-notifier-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/ifttt-build-notifier-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/ifttt-build-notifier-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/ifttt-build-notifier-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/ifttt-build-notifier-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/ifttt-build-notifier-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/ifttt-build-notifier-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/ifttt-build-notifier-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/ifttt-build-notifier-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/ifttt-build-notifier-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/ifttt-build-notifier-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/ifttt-build-notifier-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/ifttt-build-notifier-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/ifttt-build-notifier-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/ifttt-build-notifier-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/ifttt-build-notifier-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/ifttt-build-notifier-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/ifttt-build-notifier-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/ifttt-build-notifier-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/ifttt-build-notifier-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/ifttt-build-notifier-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/ifttt-build-notifier-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/ifttt-build-notifier-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/ifttt-build-notifier-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/ifttt-build-notifier-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/ifttt-build-notifier-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/ifttt-build-notifier-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/ifttt-build-notifier-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/ifttt-build-notifier-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/ifttt-build-notifier-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/ifttt-build-notifier-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/ifttt-build-notifier-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/ifttt-build-notifier-plugin/deployments", + "created_at": "2015-11-23T11:16:47Z", + "updated_at": "2016-11-10T17:51:29Z", + "pushed_at": "2017-02-23T17:04:40Z", + "git_url": "git://github.com/jenkinsci/ifttt-build-notifier-plugin.git", + "ssh_url": "git@github.com:jenkinsci/ifttt-build-notifier-plugin.git", + "clone_url": "https://github.com/jenkinsci/ifttt-build-notifier-plugin.git", + "svn_url": "https://github.com/jenkinsci/ifttt-build-notifier-plugin", + "homepage": null, + "size": 22, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 4, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 46802503, + "node_id": "MDEwOlJlcG9zaXRvcnk0NjgwMjUwMw==", + "name": "pipeline-examples", + "full_name": "jenkinsci/pipeline-examples", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pipeline-examples", + "description": "A collection of examples, tips and tricks and snippets of scripting for the Jenkins Pipeline plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/pipeline-examples", + "forks_url": "https://api.github.com/repos/jenkinsci/pipeline-examples/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pipeline-examples/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pipeline-examples/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pipeline-examples/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pipeline-examples/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pipeline-examples/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pipeline-examples/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pipeline-examples/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pipeline-examples/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pipeline-examples/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pipeline-examples/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pipeline-examples/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pipeline-examples/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pipeline-examples/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pipeline-examples/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pipeline-examples/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pipeline-examples/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pipeline-examples/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pipeline-examples/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pipeline-examples/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pipeline-examples/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pipeline-examples/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pipeline-examples/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pipeline-examples/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pipeline-examples/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pipeline-examples/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pipeline-examples/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pipeline-examples/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pipeline-examples/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pipeline-examples/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pipeline-examples/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pipeline-examples/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pipeline-examples/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pipeline-examples/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pipeline-examples/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pipeline-examples/deployments", + "created_at": "2015-11-24T16:01:44Z", + "updated_at": "2019-10-24T11:09:27Z", + "pushed_at": "2019-07-16T19:26:54Z", + "git_url": "git://github.com/jenkinsci/pipeline-examples.git", + "ssh_url": "git@github.com:jenkinsci/pipeline-examples.git", + "clone_url": "https://github.com/jenkinsci/pipeline-examples.git", + "svn_url": "https://github.com/jenkinsci/pipeline-examples", + "homepage": "https://jenkins.io/doc/pipeline/examples/", + "size": 125, + "stargazers_count": 3067, + "watchers_count": 3067, + "language": "Groovy", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1932, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 15, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1932, + "open_issues": 15, + "watchers": 3067, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 46887707, + "node_id": "MDEwOlJlcG9zaXRvcnk0Njg4NzcwNw==", + "name": "js-test", + "full_name": "jenkinsci/js-test", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/js-test", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/js-test", + "forks_url": "https://api.github.com/repos/jenkinsci/js-test/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/js-test/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/js-test/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/js-test/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/js-test/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/js-test/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/js-test/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/js-test/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/js-test/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/js-test/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/js-test/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/js-test/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/js-test/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/js-test/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/js-test/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/js-test/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/js-test/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/js-test/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/js-test/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/js-test/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/js-test/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/js-test/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/js-test/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/js-test/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/js-test/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/js-test/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/js-test/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/js-test/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/js-test/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/js-test/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/js-test/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/js-test/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/js-test/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/js-test/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/js-test/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/js-test/deployments", + "created_at": "2015-11-25T21:22:22Z", + "updated_at": "2017-08-31T03:19:16Z", + "pushed_at": "2016-08-26T13:58:36Z", + "git_url": "git://github.com/jenkinsci/js-test.git", + "ssh_url": "git@github.com:jenkinsci/js-test.git", + "clone_url": "https://github.com/jenkinsci/js-test.git", + "svn_url": "https://github.com/jenkinsci/js-test", + "homepage": null, + "size": 16, + "stargazers_count": 1, + "watchers_count": 1, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 46906968, + "node_id": "MDEwOlJlcG9zaXRvcnk0NjkwNjk2OA==", + "name": "readonly-parameter-plugin", + "full_name": "jenkinsci/readonly-parameter-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/readonly-parameter-plugin", + "description": "The readonly parameter plugin makes you add a string or text parameter in job configuration’s page and modify as common string of text parameter. But can not modify in the build execution,just readonly.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/readonly-parameter-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/readonly-parameter-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/readonly-parameter-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/readonly-parameter-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/readonly-parameter-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/readonly-parameter-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/readonly-parameter-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/readonly-parameter-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/readonly-parameter-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/readonly-parameter-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/readonly-parameter-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/readonly-parameter-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/readonly-parameter-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/readonly-parameter-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/readonly-parameter-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/readonly-parameter-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/readonly-parameter-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/readonly-parameter-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/readonly-parameter-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/readonly-parameter-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/readonly-parameter-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/readonly-parameter-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/readonly-parameter-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/readonly-parameter-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/readonly-parameter-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/readonly-parameter-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/readonly-parameter-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/readonly-parameter-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/readonly-parameter-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/readonly-parameter-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/readonly-parameter-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/readonly-parameter-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/readonly-parameter-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/readonly-parameter-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/readonly-parameter-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/readonly-parameter-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/readonly-parameter-plugin/deployments", + "created_at": "2015-11-26T05:56:33Z", + "updated_at": "2019-05-23T04:15:19Z", + "pushed_at": "2019-10-08T11:36:39Z", + "git_url": "git://github.com/jenkinsci/readonly-parameter-plugin.git", + "ssh_url": "git@github.com:jenkinsci/readonly-parameter-plugin.git", + "clone_url": "https://github.com/jenkinsci/readonly-parameter-plugin.git", + "svn_url": "https://github.com/jenkinsci/readonly-parameter-plugin", + "homepage": null, + "size": 532, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 2, + "open_issues": 2, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 47216524, + "node_id": "MDEwOlJlcG9zaXRvcnk0NzIxNjUyNA==", + "name": "terraform-plugin", + "full_name": "jenkinsci/terraform-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/terraform-plugin", + "description": "A Jenkins plugin that installs Terraform and provides a build wrapper for launching infrastructure.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/terraform-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/terraform-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/terraform-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/terraform-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/terraform-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/terraform-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/terraform-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/terraform-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/terraform-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/terraform-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/terraform-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/terraform-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/terraform-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/terraform-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/terraform-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/terraform-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/terraform-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/terraform-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/terraform-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/terraform-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/terraform-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/terraform-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/terraform-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/terraform-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/terraform-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/terraform-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/terraform-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/terraform-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/terraform-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/terraform-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/terraform-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/terraform-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/terraform-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/terraform-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/terraform-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/terraform-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/terraform-plugin/deployments", + "created_at": "2015-12-01T20:48:52Z", + "updated_at": "2019-07-02T10:37:59Z", + "pushed_at": "2019-03-20T17:15:42Z", + "git_url": "git://github.com/jenkinsci/terraform-plugin.git", + "ssh_url": "git@github.com:jenkinsci/terraform-plugin.git", + "clone_url": "https://github.com/jenkinsci/terraform-plugin.git", + "svn_url": "https://github.com/jenkinsci/terraform-plugin", + "homepage": "", + "size": 89, + "stargazers_count": 16, + "watchers_count": 16, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 23, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 23, + "open_issues": 3, + "watchers": 16, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 47289062, + "node_id": "MDEwOlJlcG9zaXRvcnk0NzI4OTA2Mg==", + "name": "couchdb-statistics-plugin", + "full_name": "jenkinsci/couchdb-statistics-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/couchdb-statistics-plugin", + "description": "Global build stats plugin that can push results to couchdb/cloudant", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/couchdb-statistics-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/couchdb-statistics-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/couchdb-statistics-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/couchdb-statistics-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/couchdb-statistics-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/couchdb-statistics-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/couchdb-statistics-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/couchdb-statistics-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/couchdb-statistics-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/couchdb-statistics-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/couchdb-statistics-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/couchdb-statistics-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/couchdb-statistics-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/couchdb-statistics-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/couchdb-statistics-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/couchdb-statistics-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/couchdb-statistics-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/couchdb-statistics-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/couchdb-statistics-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/couchdb-statistics-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/couchdb-statistics-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/couchdb-statistics-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/couchdb-statistics-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/couchdb-statistics-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/couchdb-statistics-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/couchdb-statistics-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/couchdb-statistics-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/couchdb-statistics-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/couchdb-statistics-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/couchdb-statistics-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/couchdb-statistics-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/couchdb-statistics-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/couchdb-statistics-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/couchdb-statistics-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/couchdb-statistics-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/couchdb-statistics-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/couchdb-statistics-plugin/deployments", + "created_at": "2015-12-02T21:15:27Z", + "updated_at": "2015-12-02T21:15:36Z", + "pushed_at": "2015-12-15T10:24:35Z", + "git_url": "git://github.com/jenkinsci/couchdb-statistics-plugin.git", + "ssh_url": "git@github.com:jenkinsci/couchdb-statistics-plugin.git", + "clone_url": "https://github.com/jenkinsci/couchdb-statistics-plugin.git", + "svn_url": "https://github.com/jenkinsci/couchdb-statistics-plugin", + "homepage": null, + "size": 22, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 5, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 47345903, + "node_id": "MDEwOlJlcG9zaXRvcnk0NzM0NTkwMw==", + "name": "js-samples", + "full_name": "jenkinsci/js-samples", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/js-samples", + "description": "Jenkins modularized JavaScript sample plugins", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/js-samples", + "forks_url": "https://api.github.com/repos/jenkinsci/js-samples/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/js-samples/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/js-samples/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/js-samples/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/js-samples/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/js-samples/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/js-samples/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/js-samples/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/js-samples/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/js-samples/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/js-samples/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/js-samples/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/js-samples/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/js-samples/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/js-samples/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/js-samples/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/js-samples/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/js-samples/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/js-samples/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/js-samples/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/js-samples/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/js-samples/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/js-samples/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/js-samples/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/js-samples/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/js-samples/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/js-samples/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/js-samples/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/js-samples/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/js-samples/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/js-samples/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/js-samples/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/js-samples/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/js-samples/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/js-samples/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/js-samples/deployments", + "created_at": "2015-12-03T16:47:30Z", + "updated_at": "2019-06-20T01:43:56Z", + "pushed_at": "2016-10-18T10:58:42Z", + "git_url": "git://github.com/jenkinsci/js-samples.git", + "ssh_url": "git@github.com:jenkinsci/js-samples.git", + "clone_url": "https://github.com/jenkinsci/js-samples.git", + "svn_url": "https://github.com/jenkinsci/js-samples", + "homepage": null, + "size": 1351, + "stargazers_count": 8, + "watchers_count": 8, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 8, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 47446331, + "node_id": "MDEwOlJlcG9zaXRvcnk0NzQ0NjMzMQ==", + "name": "deployhub-plugin", + "full_name": "jenkinsci/deployhub-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/deployhub-plugin", + "description": "DeployHub OSS Plugin for Jenkins enabling agentless software deployments.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/deployhub-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/deployhub-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/deployhub-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/deployhub-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/deployhub-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/deployhub-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/deployhub-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/deployhub-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/deployhub-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/deployhub-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/deployhub-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/deployhub-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/deployhub-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/deployhub-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/deployhub-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/deployhub-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/deployhub-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/deployhub-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/deployhub-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/deployhub-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/deployhub-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/deployhub-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/deployhub-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/deployhub-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/deployhub-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/deployhub-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/deployhub-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/deployhub-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/deployhub-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/deployhub-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/deployhub-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/deployhub-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/deployhub-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/deployhub-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/deployhub-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/deployhub-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/deployhub-plugin/deployments", + "created_at": "2015-12-05T07:07:33Z", + "updated_at": "2019-09-17T22:55:53Z", + "pushed_at": "2019-09-17T22:55:51Z", + "git_url": "git://github.com/jenkinsci/deployhub-plugin.git", + "ssh_url": "git@github.com:jenkinsci/deployhub-plugin.git", + "clone_url": "https://github.com/jenkinsci/deployhub-plugin.git", + "svn_url": "https://github.com/jenkinsci/deployhub-plugin", + "homepage": "https://www.deployhub.org", + "size": 458, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": false, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 3, + "open_issues": 0, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 47446588, + "node_id": "MDEwOlJlcG9zaXRvcnk0NzQ0NjU4OA==", + "name": "copado-plugin", + "full_name": "jenkinsci/copado-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/copado-plugin", + "description": "Copado Plugin for Jenkins With this plugin you can add a build step to your Jenkins project that executes a Copado job, using Copado Webhook API. After the Copado Webhook is triggered, the plugin will wait for the job run to finish (or timeout). If the Job step is successful, your pipeline will continue to the next step in your pipeline; however, if it fails (or times out), the build will be marked as failed.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/copado-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/copado-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/copado-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/copado-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/copado-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/copado-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/copado-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/copado-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/copado-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/copado-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/copado-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/copado-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/copado-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/copado-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/copado-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/copado-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/copado-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/copado-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/copado-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/copado-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/copado-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/copado-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/copado-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/copado-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/copado-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/copado-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/copado-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/copado-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/copado-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/copado-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/copado-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/copado-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/copado-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/copado-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/copado-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/copado-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/copado-plugin/deployments", + "created_at": "2015-12-05T07:18:28Z", + "updated_at": "2016-02-23T15:11:34Z", + "pushed_at": "2016-06-05T14:54:47Z", + "git_url": "git://github.com/jenkinsci/copado-plugin.git", + "ssh_url": "git@github.com:jenkinsci/copado-plugin.git", + "clone_url": "https://github.com/jenkinsci/copado-plugin.git", + "svn_url": "https://github.com/jenkinsci/copado-plugin", + "homepage": null, + "size": 16, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 47446767, + "node_id": "MDEwOlJlcG9zaXRvcnk0NzQ0Njc2Nw==", + "name": "meister-plugin", + "full_name": "jenkinsci/meister-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/meister-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/meister-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/meister-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/meister-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/meister-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/meister-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/meister-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/meister-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/meister-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/meister-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/meister-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/meister-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/meister-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/meister-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/meister-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/meister-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/meister-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/meister-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/meister-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/meister-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/meister-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/meister-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/meister-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/meister-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/meister-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/meister-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/meister-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/meister-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/meister-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/meister-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/meister-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/meister-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/meister-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/meister-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/meister-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/meister-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/meister-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/meister-plugin/deployments", + "created_at": "2015-12-05T07:25:29Z", + "updated_at": "2015-12-05T07:25:38Z", + "pushed_at": "2015-12-04T20:00:35Z", + "git_url": "git://github.com/jenkinsci/meister-plugin.git", + "ssh_url": "git@github.com:jenkinsci/meister-plugin.git", + "clone_url": "https://github.com/jenkinsci/meister-plugin.git", + "svn_url": "https://github.com/jenkinsci/meister-plugin", + "homepage": null, + "size": 154, + "stargazers_count": 0, + "watchers_count": 0, + "language": "SuperCollider", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "artistic-2.0", + "name": "Artistic License 2.0", + "spdx_id": "Artistic-2.0", + "url": "https://api.github.com/licenses/artistic-2.0", + "node_id": "MDc6TGljZW5zZTM=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 47828228, + "node_id": "MDEwOlJlcG9zaXRvcnk0NzgyODIyOA==", + "name": "cucumber-slack-notifier-plugin", + "full_name": "jenkinsci/cucumber-slack-notifier-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/cucumber-slack-notifier-plugin", + "description": "Jenkins plugin to push summarised Cucumber reports to Slack", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/cucumber-slack-notifier-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/cucumber-slack-notifier-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/cucumber-slack-notifier-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/cucumber-slack-notifier-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/cucumber-slack-notifier-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/cucumber-slack-notifier-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/cucumber-slack-notifier-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/cucumber-slack-notifier-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/cucumber-slack-notifier-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/cucumber-slack-notifier-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/cucumber-slack-notifier-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/cucumber-slack-notifier-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/cucumber-slack-notifier-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/cucumber-slack-notifier-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/cucumber-slack-notifier-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/cucumber-slack-notifier-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/cucumber-slack-notifier-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/cucumber-slack-notifier-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/cucumber-slack-notifier-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/cucumber-slack-notifier-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/cucumber-slack-notifier-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/cucumber-slack-notifier-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/cucumber-slack-notifier-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/cucumber-slack-notifier-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/cucumber-slack-notifier-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/cucumber-slack-notifier-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/cucumber-slack-notifier-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/cucumber-slack-notifier-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/cucumber-slack-notifier-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/cucumber-slack-notifier-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/cucumber-slack-notifier-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/cucumber-slack-notifier-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/cucumber-slack-notifier-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/cucumber-slack-notifier-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/cucumber-slack-notifier-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/cucumber-slack-notifier-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/cucumber-slack-notifier-plugin/deployments", + "created_at": "2015-12-11T13:28:12Z", + "updated_at": "2019-07-06T12:07:09Z", + "pushed_at": "2019-10-08T11:40:18Z", + "git_url": "git://github.com/jenkinsci/cucumber-slack-notifier-plugin.git", + "ssh_url": "git@github.com:jenkinsci/cucumber-slack-notifier-plugin.git", + "clone_url": "https://github.com/jenkinsci/cucumber-slack-notifier-plugin.git", + "svn_url": "https://github.com/jenkinsci/cucumber-slack-notifier-plugin", + "homepage": null, + "size": 80, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 14, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 14, + "open_issues": 3, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 47888044, + "node_id": "MDEwOlJlcG9zaXRvcnk0Nzg4ODA0NA==", + "name": "elasticsearch-query-plugin", + "full_name": "jenkinsci/elasticsearch-query-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/elasticsearch-query-plugin", + "description": "jenkins plugin for querying logstash", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/elasticsearch-query-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/elasticsearch-query-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/elasticsearch-query-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/elasticsearch-query-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/elasticsearch-query-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/elasticsearch-query-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/elasticsearch-query-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/elasticsearch-query-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/elasticsearch-query-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/elasticsearch-query-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/elasticsearch-query-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/elasticsearch-query-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/elasticsearch-query-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/elasticsearch-query-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/elasticsearch-query-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/elasticsearch-query-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/elasticsearch-query-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/elasticsearch-query-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/elasticsearch-query-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/elasticsearch-query-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/elasticsearch-query-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/elasticsearch-query-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/elasticsearch-query-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/elasticsearch-query-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/elasticsearch-query-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/elasticsearch-query-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/elasticsearch-query-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/elasticsearch-query-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/elasticsearch-query-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/elasticsearch-query-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/elasticsearch-query-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/elasticsearch-query-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/elasticsearch-query-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/elasticsearch-query-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/elasticsearch-query-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/elasticsearch-query-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/elasticsearch-query-plugin/deployments", + "created_at": "2015-12-12T17:44:12Z", + "updated_at": "2018-08-13T10:10:55Z", + "pushed_at": "2015-12-14T07:47:12Z", + "git_url": "git://github.com/jenkinsci/elasticsearch-query-plugin.git", + "ssh_url": "git@github.com:jenkinsci/elasticsearch-query-plugin.git", + "clone_url": "https://github.com/jenkinsci/elasticsearch-query-plugin.git", + "svn_url": "https://github.com/jenkinsci/elasticsearch-query-plugin", + "homepage": null, + "size": 80871, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 47942531, + "node_id": "MDEwOlJlcG9zaXRvcnk0Nzk0MjUzMQ==", + "name": "text-file-operations-plugin", + "full_name": "jenkinsci/text-file-operations-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/text-file-operations-plugin", + "description": "Jenkins plugin which creates or updates text file with specified contents.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/text-file-operations-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/text-file-operations-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/text-file-operations-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/text-file-operations-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/text-file-operations-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/text-file-operations-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/text-file-operations-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/text-file-operations-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/text-file-operations-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/text-file-operations-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/text-file-operations-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/text-file-operations-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/text-file-operations-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/text-file-operations-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/text-file-operations-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/text-file-operations-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/text-file-operations-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/text-file-operations-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/text-file-operations-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/text-file-operations-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/text-file-operations-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/text-file-operations-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/text-file-operations-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/text-file-operations-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/text-file-operations-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/text-file-operations-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/text-file-operations-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/text-file-operations-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/text-file-operations-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/text-file-operations-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/text-file-operations-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/text-file-operations-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/text-file-operations-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/text-file-operations-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/text-file-operations-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/text-file-operations-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/text-file-operations-plugin/deployments", + "created_at": "2015-12-14T00:06:36Z", + "updated_at": "2017-03-07T10:47:09Z", + "pushed_at": "2019-10-08T10:15:47Z", + "git_url": "git://github.com/jenkinsci/text-file-operations-plugin.git", + "ssh_url": "git@github.com:jenkinsci/text-file-operations-plugin.git", + "clone_url": "https://github.com/jenkinsci/text-file-operations-plugin.git", + "svn_url": "https://github.com/jenkinsci/text-file-operations-plugin", + "homepage": null, + "size": 25, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 3, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 47959952, + "node_id": "MDEwOlJlcG9zaXRvcnk0Nzk1OTk1Mg==", + "name": "telerik-appbuilder-plugin", + "full_name": "jenkinsci/telerik-appbuilder-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/telerik-appbuilder-plugin", + "description": "AppBuilder Jenkins Plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/telerik-appbuilder-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/telerik-appbuilder-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/telerik-appbuilder-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/telerik-appbuilder-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/telerik-appbuilder-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/telerik-appbuilder-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/telerik-appbuilder-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/telerik-appbuilder-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/telerik-appbuilder-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/telerik-appbuilder-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/telerik-appbuilder-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/telerik-appbuilder-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/telerik-appbuilder-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/telerik-appbuilder-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/telerik-appbuilder-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/telerik-appbuilder-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/telerik-appbuilder-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/telerik-appbuilder-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/telerik-appbuilder-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/telerik-appbuilder-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/telerik-appbuilder-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/telerik-appbuilder-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/telerik-appbuilder-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/telerik-appbuilder-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/telerik-appbuilder-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/telerik-appbuilder-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/telerik-appbuilder-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/telerik-appbuilder-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/telerik-appbuilder-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/telerik-appbuilder-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/telerik-appbuilder-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/telerik-appbuilder-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/telerik-appbuilder-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/telerik-appbuilder-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/telerik-appbuilder-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/telerik-appbuilder-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/telerik-appbuilder-plugin/deployments", + "created_at": "2015-12-14T07:52:21Z", + "updated_at": "2018-05-09T10:38:13Z", + "pushed_at": "2018-05-09T10:38:12Z", + "git_url": "git://github.com/jenkinsci/telerik-appbuilder-plugin.git", + "ssh_url": "git@github.com:jenkinsci/telerik-appbuilder-plugin.git", + "clone_url": "https://github.com/jenkinsci/telerik-appbuilder-plugin.git", + "svn_url": "https://github.com/jenkinsci/telerik-appbuilder-plugin", + "homepage": null, + "size": 39, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 48171248, + "node_id": "MDEwOlJlcG9zaXRvcnk0ODE3MTI0OA==", + "name": "pipeline-editor-plugin", + "full_name": "jenkinsci/pipeline-editor-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pipeline-editor-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/pipeline-editor-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pipeline-editor-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pipeline-editor-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pipeline-editor-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pipeline-editor-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pipeline-editor-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pipeline-editor-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pipeline-editor-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pipeline-editor-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pipeline-editor-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pipeline-editor-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pipeline-editor-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pipeline-editor-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pipeline-editor-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pipeline-editor-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pipeline-editor-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pipeline-editor-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pipeline-editor-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pipeline-editor-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pipeline-editor-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pipeline-editor-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pipeline-editor-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pipeline-editor-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pipeline-editor-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pipeline-editor-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pipeline-editor-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pipeline-editor-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pipeline-editor-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pipeline-editor-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pipeline-editor-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pipeline-editor-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pipeline-editor-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pipeline-editor-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pipeline-editor-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pipeline-editor-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pipeline-editor-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pipeline-editor-plugin/deployments", + "created_at": "2015-12-17T11:44:11Z", + "updated_at": "2017-03-31T08:58:53Z", + "pushed_at": "2017-03-28T23:07:27Z", + "git_url": "git://github.com/jenkinsci/pipeline-editor-plugin.git", + "ssh_url": "git@github.com:jenkinsci/pipeline-editor-plugin.git", + "clone_url": "https://github.com/jenkinsci/pipeline-editor-plugin.git", + "svn_url": "https://github.com/jenkinsci/pipeline-editor-plugin", + "homepage": "", + "size": 1280, + "stargazers_count": 13, + "watchers_count": 13, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 4, + "open_issues": 0, + "watchers": 13, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 48275014, + "node_id": "MDEwOlJlcG9zaXRvcnk0ODI3NTAxNA==", + "name": "silk-performer-plugin", + "full_name": "jenkinsci/silk-performer-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/silk-performer-plugin", + "description": "Silk Performer Plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/silk-performer-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/silk-performer-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/silk-performer-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/silk-performer-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/silk-performer-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/silk-performer-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/silk-performer-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/silk-performer-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/silk-performer-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/silk-performer-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/silk-performer-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/silk-performer-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/silk-performer-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/silk-performer-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/silk-performer-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/silk-performer-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/silk-performer-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/silk-performer-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/silk-performer-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/silk-performer-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/silk-performer-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/silk-performer-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/silk-performer-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/silk-performer-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/silk-performer-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/silk-performer-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/silk-performer-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/silk-performer-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/silk-performer-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/silk-performer-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/silk-performer-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/silk-performer-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/silk-performer-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/silk-performer-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/silk-performer-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/silk-performer-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/silk-performer-plugin/deployments", + "created_at": "2015-12-19T08:45:15Z", + "updated_at": "2019-03-25T08:27:30Z", + "pushed_at": "2019-03-25T08:27:28Z", + "git_url": "git://github.com/jenkinsci/silk-performer-plugin.git", + "ssh_url": "git@github.com:jenkinsci/silk-performer-plugin.git", + "clone_url": "https://github.com/jenkinsci/silk-performer-plugin.git", + "svn_url": "https://github.com/jenkinsci/silk-performer-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Silk+Performer+Plugin", + "size": 116, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 48337544, + "node_id": "MDEwOlJlcG9zaXRvcnk0ODMzNzU0NA==", + "name": "structs-plugin", + "full_name": "jenkinsci/structs-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/structs-plugin", + "description": "Library plugin for DSL plugins that need concise names for Jenkins extensions", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/structs-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/structs-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/structs-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/structs-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/structs-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/structs-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/structs-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/structs-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/structs-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/structs-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/structs-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/structs-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/structs-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/structs-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/structs-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/structs-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/structs-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/structs-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/structs-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/structs-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/structs-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/structs-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/structs-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/structs-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/structs-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/structs-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/structs-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/structs-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/structs-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/structs-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/structs-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/structs-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/structs-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/structs-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/structs-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/structs-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/structs-plugin/deployments", + "created_at": "2015-12-20T21:18:38Z", + "updated_at": "2019-07-29T18:20:42Z", + "pushed_at": "2019-09-06T21:11:10Z", + "git_url": "git://github.com/jenkinsci/structs-plugin.git", + "ssh_url": "git@github.com:jenkinsci/structs-plugin.git", + "clone_url": "https://github.com/jenkinsci/structs-plugin.git", + "svn_url": "https://github.com/jenkinsci/structs-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Structs+plugin", + "size": 416, + "stargazers_count": 7, + "watchers_count": 7, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 26, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 5, + "license": null, + "forks": 26, + "open_issues": 5, + "watchers": 7, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 48419922, + "node_id": "MDEwOlJlcG9zaXRvcnk0ODQxOTkyMg==", + "name": "amazon-ecr-plugin", + "full_name": "jenkinsci/amazon-ecr-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/amazon-ecr-plugin", + "description": "Amazon EC2 Container Registry plugin for Jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/amazon-ecr-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/amazon-ecr-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/amazon-ecr-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/amazon-ecr-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/amazon-ecr-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/amazon-ecr-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/amazon-ecr-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/amazon-ecr-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/amazon-ecr-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/amazon-ecr-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/amazon-ecr-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/amazon-ecr-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/amazon-ecr-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/amazon-ecr-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/amazon-ecr-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/amazon-ecr-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/amazon-ecr-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/amazon-ecr-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/amazon-ecr-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/amazon-ecr-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/amazon-ecr-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/amazon-ecr-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/amazon-ecr-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/amazon-ecr-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/amazon-ecr-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/amazon-ecr-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/amazon-ecr-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/amazon-ecr-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/amazon-ecr-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/amazon-ecr-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/amazon-ecr-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/amazon-ecr-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/amazon-ecr-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/amazon-ecr-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/amazon-ecr-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/amazon-ecr-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/amazon-ecr-plugin/deployments", + "created_at": "2015-12-22T08:28:44Z", + "updated_at": "2019-04-05T14:00:34Z", + "pushed_at": "2018-08-29T10:03:49Z", + "git_url": "git://github.com/jenkinsci/amazon-ecr-plugin.git", + "ssh_url": "git@github.com:jenkinsci/amazon-ecr-plugin.git", + "clone_url": "https://github.com/jenkinsci/amazon-ecr-plugin.git", + "svn_url": "https://github.com/jenkinsci/amazon-ecr-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Amazon+ECR", + "size": 39, + "stargazers_count": 26, + "watchers_count": 26, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 15, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 15, + "open_issues": 0, + "watchers": 26, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 48440517, + "node_id": "MDEwOlJlcG9zaXRvcnk0ODQ0MDUxNw==", + "name": "system-config-dsl-plugin", + "full_name": "jenkinsci/system-config-dsl-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/system-config-dsl-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/system-config-dsl-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/system-config-dsl-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/system-config-dsl-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/system-config-dsl-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/system-config-dsl-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/system-config-dsl-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/system-config-dsl-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/system-config-dsl-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/system-config-dsl-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/system-config-dsl-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/system-config-dsl-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/system-config-dsl-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/system-config-dsl-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/system-config-dsl-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/system-config-dsl-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/system-config-dsl-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/system-config-dsl-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/system-config-dsl-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/system-config-dsl-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/system-config-dsl-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/system-config-dsl-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/system-config-dsl-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/system-config-dsl-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/system-config-dsl-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/system-config-dsl-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/system-config-dsl-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/system-config-dsl-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/system-config-dsl-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/system-config-dsl-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/system-config-dsl-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/system-config-dsl-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/system-config-dsl-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/system-config-dsl-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/system-config-dsl-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/system-config-dsl-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/system-config-dsl-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/system-config-dsl-plugin/deployments", + "created_at": "2015-12-22T15:51:11Z", + "updated_at": "2019-05-22T22:42:17Z", + "pushed_at": "2016-09-13T22:03:53Z", + "git_url": "git://github.com/jenkinsci/system-config-dsl-plugin.git", + "ssh_url": "git@github.com:jenkinsci/system-config-dsl-plugin.git", + "clone_url": "https://github.com/jenkinsci/system-config-dsl-plugin.git", + "svn_url": "https://github.com/jenkinsci/system-config-dsl-plugin", + "homepage": "", + "size": 44, + "stargazers_count": 44, + "watchers_count": 44, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 11, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 11, + "open_issues": 0, + "watchers": 44, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 48457814, + "node_id": "MDEwOlJlcG9zaXRvcnk0ODQ1NzgxNA==", + "name": "build-timestamp-plugin", + "full_name": "jenkinsci/build-timestamp-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/build-timestamp-plugin", + "description": "Adding BUILD_TIMESTAMP to env variables of the build. Supports Daylight Saving Time.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/build-timestamp-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/build-timestamp-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/build-timestamp-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/build-timestamp-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/build-timestamp-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/build-timestamp-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/build-timestamp-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/build-timestamp-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/build-timestamp-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/build-timestamp-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/build-timestamp-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/build-timestamp-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/build-timestamp-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/build-timestamp-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/build-timestamp-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/build-timestamp-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/build-timestamp-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/build-timestamp-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/build-timestamp-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/build-timestamp-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/build-timestamp-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/build-timestamp-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/build-timestamp-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/build-timestamp-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/build-timestamp-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/build-timestamp-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/build-timestamp-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/build-timestamp-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/build-timestamp-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/build-timestamp-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/build-timestamp-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/build-timestamp-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/build-timestamp-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/build-timestamp-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/build-timestamp-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/build-timestamp-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/build-timestamp-plugin/deployments", + "created_at": "2015-12-22T22:53:06Z", + "updated_at": "2019-09-29T04:10:05Z", + "pushed_at": "2019-09-29T04:10:03Z", + "git_url": "git://github.com/jenkinsci/build-timestamp-plugin.git", + "ssh_url": "git@github.com:jenkinsci/build-timestamp-plugin.git", + "clone_url": "https://github.com/jenkinsci/build-timestamp-plugin.git", + "svn_url": "https://github.com/jenkinsci/build-timestamp-plugin", + "homepage": null, + "size": 27, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 5, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 48457935, + "node_id": "MDEwOlJlcG9zaXRvcnk0ODQ1NzkzNQ==", + "name": "vmware-vrealize-automation-plugin", + "full_name": "jenkinsci/vmware-vrealize-automation-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/vmware-vrealize-automation-plugin", + "description": "A Jenkins plugin for VMware vRealize Automation", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-automation-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-automation-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-automation-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-automation-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-automation-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-automation-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-automation-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-automation-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-automation-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-automation-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-automation-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-automation-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-automation-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-automation-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-automation-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-automation-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-automation-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-automation-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-automation-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-automation-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-automation-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-automation-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-automation-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-automation-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-automation-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-automation-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-automation-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-automation-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-automation-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-automation-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-automation-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-automation-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-automation-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-automation-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-automation-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-automation-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-automation-plugin/deployments", + "created_at": "2015-12-22T22:56:59Z", + "updated_at": "2018-08-13T10:26:28Z", + "pushed_at": "2018-08-10T20:01:10Z", + "git_url": "git://github.com/jenkinsci/vmware-vrealize-automation-plugin.git", + "ssh_url": "git@github.com:jenkinsci/vmware-vrealize-automation-plugin.git", + "clone_url": "https://github.com/jenkinsci/vmware-vrealize-automation-plugin.git", + "svn_url": "https://github.com/jenkinsci/vmware-vrealize-automation-plugin", + "homepage": "", + "size": 2102, + "stargazers_count": 6, + "watchers_count": 6, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 7, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 7, + "open_issues": 0, + "watchers": 6, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 48513209, + "node_id": "MDEwOlJlcG9zaXRvcnk0ODUxMzIwOQ==", + "name": "mission-control-view-plugin", + "full_name": "jenkinsci/mission-control-view-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/mission-control-view-plugin", + "description": "Dashboard view for Jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/mission-control-view-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/mission-control-view-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/mission-control-view-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/mission-control-view-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/mission-control-view-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/mission-control-view-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/mission-control-view-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/mission-control-view-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/mission-control-view-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/mission-control-view-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/mission-control-view-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/mission-control-view-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/mission-control-view-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/mission-control-view-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/mission-control-view-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/mission-control-view-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/mission-control-view-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/mission-control-view-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/mission-control-view-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/mission-control-view-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/mission-control-view-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/mission-control-view-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/mission-control-view-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/mission-control-view-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/mission-control-view-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/mission-control-view-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/mission-control-view-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/mission-control-view-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/mission-control-view-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/mission-control-view-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/mission-control-view-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/mission-control-view-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/mission-control-view-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/mission-control-view-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/mission-control-view-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/mission-control-view-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/mission-control-view-plugin/deployments", + "created_at": "2015-12-23T22:11:51Z", + "updated_at": "2019-10-15T10:22:12Z", + "pushed_at": "2019-09-17T08:04:01Z", + "git_url": "git://github.com/jenkinsci/mission-control-view-plugin.git", + "ssh_url": "git@github.com:jenkinsci/mission-control-view-plugin.git", + "clone_url": "https://github.com/jenkinsci/mission-control-view-plugin.git", + "svn_url": "https://github.com/jenkinsci/mission-control-view-plugin", + "homepage": null, + "size": 537, + "stargazers_count": 11, + "watchers_count": 11, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 11, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 11, + "open_issues": 0, + "watchers": 11, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 48537536, + "node_id": "MDEwOlJlcG9zaXRvcnk0ODUzNzUzNg==", + "name": "checkmarx-plugin", + "full_name": "jenkinsci/checkmarx-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/checkmarx-plugin", + "description": "This plugin adds an ability to perform automatic code scan by Checkmarx server and shows results summary and trend in Jenkins interface.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/checkmarx-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/checkmarx-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/checkmarx-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/checkmarx-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/checkmarx-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/checkmarx-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/checkmarx-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/checkmarx-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/checkmarx-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/checkmarx-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/checkmarx-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/checkmarx-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/checkmarx-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/checkmarx-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/checkmarx-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/checkmarx-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/checkmarx-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/checkmarx-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/checkmarx-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/checkmarx-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/checkmarx-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/checkmarx-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/checkmarx-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/checkmarx-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/checkmarx-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/checkmarx-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/checkmarx-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/checkmarx-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/checkmarx-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/checkmarx-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/checkmarx-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/checkmarx-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/checkmarx-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/checkmarx-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/checkmarx-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/checkmarx-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/checkmarx-plugin/deployments", + "created_at": "2015-12-24T10:07:21Z", + "updated_at": "2019-09-08T15:15:21Z", + "pushed_at": "2019-10-23T13:47:19Z", + "git_url": "git://github.com/jenkinsci/checkmarx-plugin.git", + "ssh_url": "git@github.com:jenkinsci/checkmarx-plugin.git", + "clone_url": "https://github.com/jenkinsci/checkmarx-plugin.git", + "svn_url": "https://github.com/jenkinsci/checkmarx-plugin", + "homepage": "https://checkmarx.atlassian.net/wiki/display/KC/CxSAST+Jenkins+Plugin", + "size": 21118, + "stargazers_count": 21, + "watchers_count": 21, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 39, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 5, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 39, + "open_issues": 5, + "watchers": 21, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 48660611, + "node_id": "MDEwOlJlcG9zaXRvcnk0ODY2MDYxMQ==", + "name": "maintenance-jobs-scheduler-plugin", + "full_name": "jenkinsci/maintenance-jobs-scheduler-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/maintenance-jobs-scheduler-plugin", + "description": "Maintenance jobs scheduler plugin for Jenkins", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/maintenance-jobs-scheduler-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/maintenance-jobs-scheduler-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/maintenance-jobs-scheduler-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/maintenance-jobs-scheduler-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/maintenance-jobs-scheduler-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/maintenance-jobs-scheduler-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/maintenance-jobs-scheduler-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/maintenance-jobs-scheduler-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/maintenance-jobs-scheduler-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/maintenance-jobs-scheduler-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/maintenance-jobs-scheduler-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/maintenance-jobs-scheduler-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/maintenance-jobs-scheduler-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/maintenance-jobs-scheduler-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/maintenance-jobs-scheduler-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/maintenance-jobs-scheduler-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/maintenance-jobs-scheduler-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/maintenance-jobs-scheduler-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/maintenance-jobs-scheduler-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/maintenance-jobs-scheduler-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/maintenance-jobs-scheduler-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/maintenance-jobs-scheduler-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/maintenance-jobs-scheduler-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/maintenance-jobs-scheduler-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/maintenance-jobs-scheduler-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/maintenance-jobs-scheduler-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/maintenance-jobs-scheduler-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/maintenance-jobs-scheduler-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/maintenance-jobs-scheduler-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/maintenance-jobs-scheduler-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/maintenance-jobs-scheduler-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/maintenance-jobs-scheduler-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/maintenance-jobs-scheduler-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/maintenance-jobs-scheduler-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/maintenance-jobs-scheduler-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/maintenance-jobs-scheduler-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/maintenance-jobs-scheduler-plugin/deployments", + "created_at": "2015-12-27T21:11:48Z", + "updated_at": "2015-12-27T21:11:56Z", + "pushed_at": "2015-12-28T16:30:20Z", + "git_url": "git://github.com/jenkinsci/maintenance-jobs-scheduler-plugin.git", + "ssh_url": "git@github.com:jenkinsci/maintenance-jobs-scheduler-plugin.git", + "clone_url": "https://github.com/jenkinsci/maintenance-jobs-scheduler-plugin.git", + "svn_url": "https://github.com/jenkinsci/maintenance-jobs-scheduler-plugin", + "homepage": "", + "size": 488, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 48769163, + "node_id": "MDEwOlJlcG9zaXRvcnk0ODc2OTE2Mw==", + "name": "compuware-scm-downloader-plugin", + "full_name": "jenkinsci/compuware-scm-downloader-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/compuware-scm-downloader-plugin", + "description": "Compuware Source Code Download for Endevor and PDS/ISPW", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/compuware-scm-downloader-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/compuware-scm-downloader-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/compuware-scm-downloader-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/compuware-scm-downloader-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/compuware-scm-downloader-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/compuware-scm-downloader-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/compuware-scm-downloader-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/compuware-scm-downloader-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/compuware-scm-downloader-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/compuware-scm-downloader-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/compuware-scm-downloader-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/compuware-scm-downloader-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/compuware-scm-downloader-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/compuware-scm-downloader-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/compuware-scm-downloader-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/compuware-scm-downloader-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/compuware-scm-downloader-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/compuware-scm-downloader-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/compuware-scm-downloader-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/compuware-scm-downloader-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/compuware-scm-downloader-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/compuware-scm-downloader-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/compuware-scm-downloader-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/compuware-scm-downloader-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/compuware-scm-downloader-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/compuware-scm-downloader-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/compuware-scm-downloader-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/compuware-scm-downloader-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/compuware-scm-downloader-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/compuware-scm-downloader-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/compuware-scm-downloader-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/compuware-scm-downloader-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/compuware-scm-downloader-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/compuware-scm-downloader-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/compuware-scm-downloader-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/compuware-scm-downloader-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/compuware-scm-downloader-plugin/deployments", + "created_at": "2015-12-29T22:06:48Z", + "updated_at": "2019-07-18T18:51:51Z", + "pushed_at": "2019-07-18T18:51:49Z", + "git_url": "git://github.com/jenkinsci/compuware-scm-downloader-plugin.git", + "ssh_url": "git@github.com:jenkinsci/compuware-scm-downloader-plugin.git", + "clone_url": "https://github.com/jenkinsci/compuware-scm-downloader-plugin.git", + "svn_url": "https://github.com/jenkinsci/compuware-scm-downloader-plugin", + "homepage": null, + "size": 296, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 49084230, + "node_id": "MDEwOlJlcG9zaXRvcnk0OTA4NDIzMA==", + "name": "codeclimate-plugin", + "full_name": "jenkinsci/codeclimate-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/codeclimate-plugin", + "description": "Jenkins Plugin for CodeClimate Platform", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/codeclimate-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/codeclimate-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/codeclimate-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/codeclimate-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/codeclimate-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/codeclimate-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/codeclimate-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/codeclimate-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/codeclimate-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/codeclimate-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/codeclimate-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/codeclimate-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/codeclimate-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/codeclimate-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/codeclimate-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/codeclimate-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/codeclimate-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/codeclimate-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/codeclimate-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/codeclimate-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/codeclimate-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/codeclimate-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/codeclimate-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/codeclimate-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/codeclimate-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/codeclimate-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/codeclimate-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/codeclimate-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/codeclimate-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/codeclimate-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/codeclimate-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/codeclimate-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/codeclimate-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/codeclimate-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/codeclimate-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/codeclimate-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/codeclimate-plugin/deployments", + "created_at": "2016-01-05T18:22:58Z", + "updated_at": "2016-06-18T18:52:38Z", + "pushed_at": "2015-12-18T18:18:40Z", + "git_url": "git://github.com/jenkinsci/codeclimate-plugin.git", + "ssh_url": "git@github.com:jenkinsci/codeclimate-plugin.git", + "clone_url": "https://github.com/jenkinsci/codeclimate-plugin.git", + "svn_url": "https://github.com/jenkinsci/codeclimate-plugin", + "homepage": null, + "size": 17, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 49089901, + "node_id": "MDEwOlJlcG9zaXRvcnk0OTA4OTkwMQ==", + "name": "yaml-axis-plugin", + "full_name": "jenkinsci/yaml-axis-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/yaml-axis-plugin", + "description": "Matrix project axis creation and exclusion plugin using yaml file (It's similar to .travis.yml)", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/yaml-axis-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/yaml-axis-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/yaml-axis-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/yaml-axis-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/yaml-axis-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/yaml-axis-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/yaml-axis-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/yaml-axis-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/yaml-axis-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/yaml-axis-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/yaml-axis-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/yaml-axis-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/yaml-axis-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/yaml-axis-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/yaml-axis-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/yaml-axis-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/yaml-axis-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/yaml-axis-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/yaml-axis-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/yaml-axis-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/yaml-axis-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/yaml-axis-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/yaml-axis-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/yaml-axis-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/yaml-axis-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/yaml-axis-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/yaml-axis-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/yaml-axis-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/yaml-axis-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/yaml-axis-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/yaml-axis-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/yaml-axis-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/yaml-axis-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/yaml-axis-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/yaml-axis-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/yaml-axis-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/yaml-axis-plugin/deployments", + "created_at": "2016-01-05T20:09:29Z", + "updated_at": "2018-12-11T12:56:19Z", + "pushed_at": "2018-12-11T15:49:32Z", + "git_url": "git://github.com/jenkinsci/yaml-axis-plugin.git", + "ssh_url": "git@github.com:jenkinsci/yaml-axis-plugin.git", + "clone_url": "https://github.com/jenkinsci/yaml-axis-plugin.git", + "svn_url": "https://github.com/jenkinsci/yaml-axis-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Yaml+Axis+Plugin", + "size": 334, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Groovy", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 4, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 4, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 49091565, + "node_id": "MDEwOlJlcG9zaXRvcnk0OTA5MTU2NQ==", + "name": "scmimporter-plugin", + "full_name": "jenkinsci/scmimporter-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/scmimporter-plugin", + "description": "Jenkins plugin that allows the user to import jobs from a git repository", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/scmimporter-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/scmimporter-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/scmimporter-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/scmimporter-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/scmimporter-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/scmimporter-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/scmimporter-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/scmimporter-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/scmimporter-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/scmimporter-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/scmimporter-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/scmimporter-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/scmimporter-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/scmimporter-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/scmimporter-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/scmimporter-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/scmimporter-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/scmimporter-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/scmimporter-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/scmimporter-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/scmimporter-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/scmimporter-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/scmimporter-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/scmimporter-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/scmimporter-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/scmimporter-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/scmimporter-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/scmimporter-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/scmimporter-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/scmimporter-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/scmimporter-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/scmimporter-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/scmimporter-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/scmimporter-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/scmimporter-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/scmimporter-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/scmimporter-plugin/deployments", + "created_at": "2016-01-05T20:42:46Z", + "updated_at": "2016-01-05T20:42:56Z", + "pushed_at": "2016-01-05T18:18:49Z", + "git_url": "git://github.com/jenkinsci/scmimporter-plugin.git", + "ssh_url": "git@github.com:jenkinsci/scmimporter-plugin.git", + "clone_url": "https://github.com/jenkinsci/scmimporter-plugin.git", + "svn_url": "https://github.com/jenkinsci/scmimporter-plugin", + "homepage": null, + "size": 27, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "gpl-3.0", + "name": "GNU General Public License v3.0", + "spdx_id": "GPL-3.0", + "url": "https://api.github.com/licenses/gpl-3.0", + "node_id": "MDc6TGljZW5zZTk=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "develop", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 49096168, + "node_id": "MDEwOlJlcG9zaXRvcnk0OTA5NjE2OA==", + "name": "jira-ext-plugin", + "full_name": "jenkinsci/jira-ext-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jira-ext-plugin", + "description": "Update JIRA tickets in an extensible way: both what to update and how to update are exposed as Extension Points", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jira-ext-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/jira-ext-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jira-ext-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jira-ext-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jira-ext-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jira-ext-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jira-ext-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jira-ext-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jira-ext-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jira-ext-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jira-ext-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jira-ext-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jira-ext-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jira-ext-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jira-ext-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jira-ext-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jira-ext-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jira-ext-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jira-ext-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jira-ext-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jira-ext-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jira-ext-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jira-ext-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jira-ext-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jira-ext-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jira-ext-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jira-ext-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jira-ext-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jira-ext-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jira-ext-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jira-ext-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jira-ext-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jira-ext-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jira-ext-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jira-ext-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jira-ext-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jira-ext-plugin/deployments", + "created_at": "2016-01-05T22:17:49Z", + "updated_at": "2019-10-16T23:16:04Z", + "pushed_at": "2019-10-10T04:47:41Z", + "git_url": "git://github.com/jenkinsci/jira-ext-plugin.git", + "ssh_url": "git@github.com:jenkinsci/jira-ext-plugin.git", + "clone_url": "https://github.com/jenkinsci/jira-ext-plugin.git", + "svn_url": "https://github.com/jenkinsci/jira-ext-plugin", + "homepage": "", + "size": 142, + "stargazers_count": 17, + "watchers_count": 17, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 21, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 21, + "open_issues": 3, + "watchers": 17, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 49442462, + "node_id": "MDEwOlJlcG9zaXRvcnk0OTQ0MjQ2Mg==", + "name": "pipeline-utility-steps-plugin", + "full_name": "jenkinsci/pipeline-utility-steps-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pipeline-utility-steps-plugin", + "description": "Small utility steps for Jenkins workflows", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/pipeline-utility-steps-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pipeline-utility-steps-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pipeline-utility-steps-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pipeline-utility-steps-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pipeline-utility-steps-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pipeline-utility-steps-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pipeline-utility-steps-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pipeline-utility-steps-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pipeline-utility-steps-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pipeline-utility-steps-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pipeline-utility-steps-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pipeline-utility-steps-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pipeline-utility-steps-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pipeline-utility-steps-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pipeline-utility-steps-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pipeline-utility-steps-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pipeline-utility-steps-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pipeline-utility-steps-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pipeline-utility-steps-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pipeline-utility-steps-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pipeline-utility-steps-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pipeline-utility-steps-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pipeline-utility-steps-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pipeline-utility-steps-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pipeline-utility-steps-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pipeline-utility-steps-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pipeline-utility-steps-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pipeline-utility-steps-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pipeline-utility-steps-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pipeline-utility-steps-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pipeline-utility-steps-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pipeline-utility-steps-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pipeline-utility-steps-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pipeline-utility-steps-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pipeline-utility-steps-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pipeline-utility-steps-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pipeline-utility-steps-plugin/deployments", + "created_at": "2016-01-11T17:30:15Z", + "updated_at": "2019-10-25T04:48:43Z", + "pushed_at": "2019-10-15T09:53:21Z", + "git_url": "git://github.com/jenkinsci/pipeline-utility-steps-plugin.git", + "ssh_url": "git@github.com:jenkinsci/pipeline-utility-steps-plugin.git", + "clone_url": "https://github.com/jenkinsci/pipeline-utility-steps-plugin.git", + "svn_url": "https://github.com/jenkinsci/pipeline-utility-steps-plugin", + "homepage": null, + "size": 596, + "stargazers_count": 143, + "watchers_count": 143, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 96, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 5, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 96, + "open_issues": 5, + "watchers": 143, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 49675469, + "node_id": "MDEwOlJlcG9zaXRvcnk0OTY3NTQ2OQ==", + "name": "crossbrowsertesting-plugin", + "full_name": "jenkinsci/crossbrowsertesting-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/crossbrowsertesting-plugin", + "description": "This plugin integrates Jenkins users with Selenium Testing and Screenshot Testing on CrossBrowserTesting.com. CrossBrowserTesting.com provides cross browser testing of websites, webpages, and web applications on Windows, Macs, and real iPhones, iPads, and Android Phones and Tablets.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/crossbrowsertesting-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/crossbrowsertesting-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/crossbrowsertesting-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/crossbrowsertesting-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/crossbrowsertesting-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/crossbrowsertesting-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/crossbrowsertesting-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/crossbrowsertesting-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/crossbrowsertesting-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/crossbrowsertesting-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/crossbrowsertesting-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/crossbrowsertesting-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/crossbrowsertesting-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/crossbrowsertesting-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/crossbrowsertesting-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/crossbrowsertesting-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/crossbrowsertesting-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/crossbrowsertesting-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/crossbrowsertesting-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/crossbrowsertesting-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/crossbrowsertesting-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/crossbrowsertesting-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/crossbrowsertesting-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/crossbrowsertesting-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/crossbrowsertesting-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/crossbrowsertesting-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/crossbrowsertesting-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/crossbrowsertesting-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/crossbrowsertesting-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/crossbrowsertesting-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/crossbrowsertesting-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/crossbrowsertesting-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/crossbrowsertesting-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/crossbrowsertesting-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/crossbrowsertesting-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/crossbrowsertesting-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/crossbrowsertesting-plugin/deployments", + "created_at": "2016-01-14T21:11:59Z", + "updated_at": "2019-06-12T16:03:10Z", + "pushed_at": "2019-06-12T16:03:08Z", + "git_url": "git://github.com/jenkinsci/crossbrowsertesting-plugin.git", + "ssh_url": "git@github.com:jenkinsci/crossbrowsertesting-plugin.git", + "clone_url": "https://github.com/jenkinsci/crossbrowsertesting-plugin.git", + "svn_url": "https://github.com/jenkinsci/crossbrowsertesting-plugin", + "homepage": "", + "size": 575, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 7, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 7, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 49675696, + "node_id": "MDEwOlJlcG9zaXRvcnk0OTY3NTY5Ng==", + "name": "vmware-vrealize-orchestrator-plugin", + "full_name": "jenkinsci/vmware-vrealize-orchestrator-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/vmware-vrealize-orchestrator-plugin", + "description": "A Jenkins Plugin for VMware vRealize Orchestrator workflows", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-orchestrator-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-orchestrator-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-orchestrator-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-orchestrator-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-orchestrator-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-orchestrator-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-orchestrator-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-orchestrator-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-orchestrator-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-orchestrator-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-orchestrator-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-orchestrator-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-orchestrator-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-orchestrator-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-orchestrator-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-orchestrator-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-orchestrator-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-orchestrator-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-orchestrator-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-orchestrator-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-orchestrator-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-orchestrator-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-orchestrator-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-orchestrator-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-orchestrator-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-orchestrator-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-orchestrator-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-orchestrator-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-orchestrator-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-orchestrator-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-orchestrator-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-orchestrator-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-orchestrator-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-orchestrator-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-orchestrator-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-orchestrator-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/vmware-vrealize-orchestrator-plugin/deployments", + "created_at": "2016-01-14T21:16:25Z", + "updated_at": "2019-01-25T22:59:49Z", + "pushed_at": "2017-05-07T16:05:35Z", + "git_url": "git://github.com/jenkinsci/vmware-vrealize-orchestrator-plugin.git", + "ssh_url": "git@github.com:jenkinsci/vmware-vrealize-orchestrator-plugin.git", + "clone_url": "https://github.com/jenkinsci/vmware-vrealize-orchestrator-plugin.git", + "svn_url": "https://github.com/jenkinsci/vmware-vrealize-orchestrator-plugin", + "homepage": "", + "size": 71, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 3, + "open_issues": 0, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 49675830, + "node_id": "MDEwOlJlcG9zaXRvcnk0OTY3NTgzMA==", + "name": "bitbucket-build-status-notifier-plugin", + "full_name": "jenkinsci/bitbucket-build-status-notifier-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/bitbucket-build-status-notifier-plugin", + "description": "Notify Bitbucket Cloud with the Jenkins CI build status information.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/bitbucket-build-status-notifier-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/bitbucket-build-status-notifier-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/bitbucket-build-status-notifier-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/bitbucket-build-status-notifier-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/bitbucket-build-status-notifier-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/bitbucket-build-status-notifier-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/bitbucket-build-status-notifier-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/bitbucket-build-status-notifier-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/bitbucket-build-status-notifier-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/bitbucket-build-status-notifier-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/bitbucket-build-status-notifier-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/bitbucket-build-status-notifier-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/bitbucket-build-status-notifier-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/bitbucket-build-status-notifier-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/bitbucket-build-status-notifier-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/bitbucket-build-status-notifier-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/bitbucket-build-status-notifier-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/bitbucket-build-status-notifier-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/bitbucket-build-status-notifier-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/bitbucket-build-status-notifier-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/bitbucket-build-status-notifier-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/bitbucket-build-status-notifier-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/bitbucket-build-status-notifier-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/bitbucket-build-status-notifier-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/bitbucket-build-status-notifier-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/bitbucket-build-status-notifier-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/bitbucket-build-status-notifier-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/bitbucket-build-status-notifier-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/bitbucket-build-status-notifier-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/bitbucket-build-status-notifier-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/bitbucket-build-status-notifier-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/bitbucket-build-status-notifier-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/bitbucket-build-status-notifier-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/bitbucket-build-status-notifier-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/bitbucket-build-status-notifier-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/bitbucket-build-status-notifier-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/bitbucket-build-status-notifier-plugin/deployments", + "created_at": "2016-01-14T21:19:12Z", + "updated_at": "2019-10-04T06:23:48Z", + "pushed_at": "2019-05-28T10:04:40Z", + "git_url": "git://github.com/jenkinsci/bitbucket-build-status-notifier-plugin.git", + "ssh_url": "git@github.com:jenkinsci/bitbucket-build-status-notifier-plugin.git", + "clone_url": "https://github.com/jenkinsci/bitbucket-build-status-notifier-plugin.git", + "svn_url": "https://github.com/jenkinsci/bitbucket-build-status-notifier-plugin", + "homepage": "", + "size": 128, + "stargazers_count": 64, + "watchers_count": 64, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 61, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 61, + "open_issues": 3, + "watchers": 64, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 49715416, + "node_id": "MDEwOlJlcG9zaXRvcnk0OTcxNTQxNg==", + "name": "pipeline-stage-view-plugin", + "full_name": "jenkinsci/pipeline-stage-view-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pipeline-stage-view-plugin", + "description": "Visualizes Jenkins pipelines", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/pipeline-stage-view-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pipeline-stage-view-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pipeline-stage-view-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pipeline-stage-view-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pipeline-stage-view-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pipeline-stage-view-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pipeline-stage-view-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pipeline-stage-view-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pipeline-stage-view-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pipeline-stage-view-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pipeline-stage-view-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pipeline-stage-view-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pipeline-stage-view-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pipeline-stage-view-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pipeline-stage-view-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pipeline-stage-view-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pipeline-stage-view-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pipeline-stage-view-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pipeline-stage-view-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pipeline-stage-view-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pipeline-stage-view-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pipeline-stage-view-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pipeline-stage-view-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pipeline-stage-view-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pipeline-stage-view-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pipeline-stage-view-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pipeline-stage-view-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pipeline-stage-view-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pipeline-stage-view-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pipeline-stage-view-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pipeline-stage-view-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pipeline-stage-view-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pipeline-stage-view-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pipeline-stage-view-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pipeline-stage-view-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pipeline-stage-view-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pipeline-stage-view-plugin/deployments", + "created_at": "2016-01-15T11:34:45Z", + "updated_at": "2019-09-30T07:49:29Z", + "pushed_at": "2019-10-19T18:53:46Z", + "git_url": "git://github.com/jenkinsci/pipeline-stage-view-plugin.git", + "ssh_url": "git@github.com:jenkinsci/pipeline-stage-view-plugin.git", + "clone_url": "https://github.com/jenkinsci/pipeline-stage-view-plugin.git", + "svn_url": "https://github.com/jenkinsci/pipeline-stage-view-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Pipeline+Stage+View+Plugin", + "size": 999, + "stargazers_count": 135, + "watchers_count": 135, + "language": "CSS", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 113, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 13, + "license": null, + "forks": 113, + "open_issues": 13, + "watchers": 135, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 49739417, + "node_id": "MDEwOlJlcG9zaXRvcnk0OTczOTQxNw==", + "name": "jenkins-test-harness", + "full_name": "jenkinsci/jenkins-test-harness", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jenkins-test-harness", + "description": "Unit test framework for Jenkins core and its plugins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness", + "forks_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness/deployments", + "created_at": "2016-01-15T19:11:45Z", + "updated_at": "2019-10-21T14:34:51Z", + "pushed_at": "2019-10-25T07:47:58Z", + "git_url": "git://github.com/jenkinsci/jenkins-test-harness.git", + "ssh_url": "git@github.com:jenkinsci/jenkins-test-harness.git", + "clone_url": "https://github.com/jenkinsci/jenkins-test-harness.git", + "svn_url": "https://github.com/jenkinsci/jenkins-test-harness", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Unit+Test", + "size": 27991, + "stargazers_count": 38, + "watchers_count": 38, + "language": "Java", + "has_issues": false, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 77, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 10, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 77, + "open_issues": 10, + "watchers": 38, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 49739426, + "node_id": "MDEwOlJlcG9zaXRvcnk0OTczOTQyNg==", + "name": "jenkins-test-harness-tools", + "full_name": "jenkinsci/jenkins-test-harness-tools", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jenkins-test-harness-tools", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness-tools", + "forks_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness-tools/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness-tools/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness-tools/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness-tools/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness-tools/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness-tools/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness-tools/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness-tools/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness-tools/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness-tools/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness-tools/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness-tools/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness-tools/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness-tools/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness-tools/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness-tools/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness-tools/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness-tools/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness-tools/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness-tools/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness-tools/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness-tools/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness-tools/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness-tools/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness-tools/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness-tools/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness-tools/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness-tools/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness-tools/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness-tools/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness-tools/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness-tools/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness-tools/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness-tools/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness-tools/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness-tools/deployments", + "created_at": "2016-01-15T19:11:54Z", + "updated_at": "2016-01-15T20:03:28Z", + "pushed_at": "2018-11-14T02:24:52Z", + "git_url": "git://github.com/jenkinsci/jenkins-test-harness-tools.git", + "ssh_url": "git@github.com:jenkinsci/jenkins-test-harness-tools.git", + "clone_url": "https://github.com/jenkinsci/jenkins-test-harness-tools.git", + "svn_url": "https://github.com/jenkinsci/jenkins-test-harness-tools", + "homepage": "", + "size": 60571, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 7, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 7, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 49762267, + "node_id": "MDEwOlJlcG9zaXRvcnk0OTc2MjI2Nw==", + "name": "jira-trigger-plugin", + "full_name": "jenkinsci/jira-trigger-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jira-trigger-plugin", + "description": "Triggers a build when a certain condition is matched in JIRA", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jira-trigger-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/jira-trigger-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jira-trigger-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jira-trigger-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jira-trigger-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jira-trigger-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jira-trigger-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jira-trigger-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jira-trigger-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jira-trigger-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jira-trigger-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jira-trigger-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jira-trigger-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jira-trigger-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jira-trigger-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jira-trigger-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jira-trigger-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jira-trigger-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jira-trigger-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jira-trigger-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jira-trigger-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jira-trigger-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jira-trigger-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jira-trigger-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jira-trigger-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jira-trigger-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jira-trigger-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jira-trigger-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jira-trigger-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jira-trigger-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jira-trigger-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jira-trigger-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jira-trigger-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jira-trigger-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jira-trigger-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jira-trigger-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jira-trigger-plugin/deployments", + "created_at": "2016-01-16T06:27:06Z", + "updated_at": "2019-10-22T19:50:56Z", + "pushed_at": "2019-09-02T20:22:38Z", + "git_url": "git://github.com/jenkinsci/jira-trigger-plugin.git", + "ssh_url": "git@github.com:jenkinsci/jira-trigger-plugin.git", + "clone_url": "https://github.com/jenkinsci/jira-trigger-plugin.git", + "svn_url": "https://github.com/jenkinsci/jira-trigger-plugin", + "homepage": "https://plugins.jenkins.io/jira-trigger", + "size": 797, + "stargazers_count": 70, + "watchers_count": 70, + "language": "Groovy", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 33, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 33, + "open_issues": 0, + "watchers": 70, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 49952720, + "node_id": "MDEwOlJlcG9zaXRvcnk0OTk1MjcyMA==", + "name": "quayio-trigger-plugin", + "full_name": "jenkinsci/quayio-trigger-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/quayio-trigger-plugin", + "description": "Jenkins trigger plugin for Quay.io docker image push notification", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/quayio-trigger-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/quayio-trigger-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/quayio-trigger-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/quayio-trigger-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/quayio-trigger-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/quayio-trigger-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/quayio-trigger-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/quayio-trigger-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/quayio-trigger-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/quayio-trigger-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/quayio-trigger-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/quayio-trigger-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/quayio-trigger-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/quayio-trigger-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/quayio-trigger-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/quayio-trigger-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/quayio-trigger-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/quayio-trigger-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/quayio-trigger-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/quayio-trigger-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/quayio-trigger-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/quayio-trigger-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/quayio-trigger-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/quayio-trigger-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/quayio-trigger-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/quayio-trigger-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/quayio-trigger-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/quayio-trigger-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/quayio-trigger-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/quayio-trigger-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/quayio-trigger-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/quayio-trigger-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/quayio-trigger-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/quayio-trigger-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/quayio-trigger-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/quayio-trigger-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/quayio-trigger-plugin/deployments", + "created_at": "2016-01-19T12:57:25Z", + "updated_at": "2019-03-20T23:36:21Z", + "pushed_at": "2016-12-30T01:03:19Z", + "git_url": "git://github.com/jenkinsci/quayio-trigger-plugin.git", + "ssh_url": "git@github.com:jenkinsci/quayio-trigger-plugin.git", + "clone_url": "https://github.com/jenkinsci/quayio-trigger-plugin.git", + "svn_url": "https://github.com/jenkinsci/quayio-trigger-plugin", + "homepage": null, + "size": 38, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 1, + "open_issues": 1, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 50030537, + "node_id": "MDEwOlJlcG9zaXRvcnk1MDAzMDUzNw==", + "name": "testdroid-run-in-cloud-plugin", + "full_name": "jenkinsci/testdroid-run-in-cloud-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/testdroid-run-in-cloud-plugin", + "description": "Plugin for managing test runs on Bitbar mobile device cloud", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/testdroid-run-in-cloud-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/testdroid-run-in-cloud-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/testdroid-run-in-cloud-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/testdroid-run-in-cloud-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/testdroid-run-in-cloud-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/testdroid-run-in-cloud-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/testdroid-run-in-cloud-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/testdroid-run-in-cloud-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/testdroid-run-in-cloud-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/testdroid-run-in-cloud-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/testdroid-run-in-cloud-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/testdroid-run-in-cloud-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/testdroid-run-in-cloud-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/testdroid-run-in-cloud-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/testdroid-run-in-cloud-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/testdroid-run-in-cloud-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/testdroid-run-in-cloud-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/testdroid-run-in-cloud-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/testdroid-run-in-cloud-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/testdroid-run-in-cloud-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/testdroid-run-in-cloud-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/testdroid-run-in-cloud-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/testdroid-run-in-cloud-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/testdroid-run-in-cloud-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/testdroid-run-in-cloud-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/testdroid-run-in-cloud-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/testdroid-run-in-cloud-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/testdroid-run-in-cloud-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/testdroid-run-in-cloud-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/testdroid-run-in-cloud-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/testdroid-run-in-cloud-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/testdroid-run-in-cloud-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/testdroid-run-in-cloud-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/testdroid-run-in-cloud-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/testdroid-run-in-cloud-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/testdroid-run-in-cloud-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/testdroid-run-in-cloud-plugin/deployments", + "created_at": "2016-01-20T13:04:26Z", + "updated_at": "2019-10-10T08:07:24Z", + "pushed_at": "2019-10-10T08:07:22Z", + "git_url": "git://github.com/jenkinsci/testdroid-run-in-cloud-plugin.git", + "ssh_url": "git@github.com:jenkinsci/testdroid-run-in-cloud-plugin.git", + "clone_url": "https://github.com/jenkinsci/testdroid-run-in-cloud-plugin.git", + "svn_url": "https://github.com/jenkinsci/testdroid-run-in-cloud-plugin", + "homepage": "https://bitbar.com", + "size": 16317, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 17, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 17, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 50064076, + "node_id": "MDEwOlJlcG9zaXRvcnk1MDA2NDA3Ng==", + "name": "plugin-pom", + "full_name": "jenkinsci/plugin-pom", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/plugin-pom", + "description": "Parent POM for Jenkins Plugins", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/plugin-pom", + "forks_url": "https://api.github.com/repos/jenkinsci/plugin-pom/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/plugin-pom/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/plugin-pom/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/plugin-pom/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/plugin-pom/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/plugin-pom/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/plugin-pom/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/plugin-pom/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/plugin-pom/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/plugin-pom/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/plugin-pom/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/plugin-pom/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/plugin-pom/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/plugin-pom/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/plugin-pom/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/plugin-pom/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/plugin-pom/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/plugin-pom/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/plugin-pom/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/plugin-pom/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/plugin-pom/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/plugin-pom/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/plugin-pom/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/plugin-pom/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/plugin-pom/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/plugin-pom/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/plugin-pom/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/plugin-pom/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/plugin-pom/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/plugin-pom/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/plugin-pom/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/plugin-pom/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/plugin-pom/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/plugin-pom/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/plugin-pom/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/plugin-pom/deployments", + "created_at": "2016-01-20T22:12:42Z", + "updated_at": "2019-10-24T14:56:19Z", + "pushed_at": "2019-10-24T14:37:58Z", + "git_url": "git://github.com/jenkinsci/plugin-pom.git", + "ssh_url": "git@github.com:jenkinsci/plugin-pom.git", + "clone_url": "https://github.com/jenkinsci/plugin-pom.git", + "svn_url": "https://github.com/jenkinsci/plugin-pom", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Plugin+tutorial", + "size": 742, + "stargazers_count": 33, + "watchers_count": 33, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 53, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 8, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 53, + "open_issues": 8, + "watchers": 33, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 50250915, + "node_id": "MDEwOlJlcG9zaXRvcnk1MDI1MDkxNQ==", + "name": "blueocean-plugin", + "full_name": "jenkinsci/blueocean-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/blueocean-plugin", + "description": "Blue Ocean is a reboot of the Jenkins CI/CD User Experience", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/blueocean-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/blueocean-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/blueocean-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/blueocean-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/blueocean-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/blueocean-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/blueocean-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/blueocean-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/blueocean-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/blueocean-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/blueocean-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/blueocean-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/blueocean-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/blueocean-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/blueocean-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/blueocean-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/blueocean-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/blueocean-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/blueocean-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/blueocean-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/blueocean-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/blueocean-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/blueocean-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/blueocean-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/blueocean-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/blueocean-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/blueocean-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/blueocean-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/blueocean-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/blueocean-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/blueocean-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/blueocean-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/blueocean-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/blueocean-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/blueocean-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/blueocean-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/blueocean-plugin/deployments", + "created_at": "2016-01-23T18:02:45Z", + "updated_at": "2019-10-25T12:11:50Z", + "pushed_at": "2019-10-18T13:31:15Z", + "git_url": "git://github.com/jenkinsci/blueocean-plugin.git", + "ssh_url": "git@github.com:jenkinsci/blueocean-plugin.git", + "clone_url": "https://github.com/jenkinsci/blueocean-plugin.git", + "svn_url": "https://github.com/jenkinsci/blueocean-plugin", + "homepage": "https://jenkins.io/projects/blueocean/", + "size": 28762, + "stargazers_count": 2560, + "watchers_count": 2560, + "language": "Java", + "has_issues": false, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 462, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 18, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 462, + "open_issues": 18, + "watchers": 2560, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 50266934, + "node_id": "MDEwOlJlcG9zaXRvcnk1MDI2NjkzNA==", + "name": "jenkins-charm", + "full_name": "jenkinsci/jenkins-charm", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jenkins-charm", + "description": "Juju charm to deploy and scale Jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jenkins-charm", + "forks_url": "https://api.github.com/repos/jenkinsci/jenkins-charm/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jenkins-charm/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jenkins-charm/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jenkins-charm/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jenkins-charm/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jenkins-charm/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jenkins-charm/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jenkins-charm/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jenkins-charm/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jenkins-charm/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jenkins-charm/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jenkins-charm/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jenkins-charm/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jenkins-charm/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jenkins-charm/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jenkins-charm/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jenkins-charm/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jenkins-charm/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jenkins-charm/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jenkins-charm/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jenkins-charm/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jenkins-charm/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jenkins-charm/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jenkins-charm/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jenkins-charm/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jenkins-charm/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jenkins-charm/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jenkins-charm/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jenkins-charm/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jenkins-charm/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jenkins-charm/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jenkins-charm/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jenkins-charm/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jenkins-charm/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jenkins-charm/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jenkins-charm/deployments", + "created_at": "2016-01-24T01:21:53Z", + "updated_at": "2019-10-11T16:21:39Z", + "pushed_at": "2019-10-11T16:21:36Z", + "git_url": "git://github.com/jenkinsci/jenkins-charm.git", + "ssh_url": "git@github.com:jenkinsci/jenkins-charm.git", + "clone_url": "https://github.com/jenkinsci/jenkins-charm.git", + "svn_url": "https://github.com/jenkinsci/jenkins-charm", + "homepage": null, + "size": 486, + "stargazers_count": 11, + "watchers_count": 11, + "language": "Python", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 25, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 17, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 25, + "open_issues": 17, + "watchers": 11, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 51611822, + "node_id": "MDEwOlJlcG9zaXRvcnk1MTYxMTgyMg==", + "name": "marathon-plugin", + "full_name": "jenkinsci/marathon-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/marathon-plugin", + "description": "Marathon plugin for Jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/marathon-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/marathon-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/marathon-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/marathon-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/marathon-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/marathon-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/marathon-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/marathon-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/marathon-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/marathon-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/marathon-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/marathon-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/marathon-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/marathon-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/marathon-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/marathon-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/marathon-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/marathon-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/marathon-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/marathon-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/marathon-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/marathon-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/marathon-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/marathon-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/marathon-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/marathon-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/marathon-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/marathon-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/marathon-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/marathon-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/marathon-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/marathon-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/marathon-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/marathon-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/marathon-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/marathon-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/marathon-plugin/deployments", + "created_at": "2016-02-12T19:42:21Z", + "updated_at": "2019-03-12T23:06:23Z", + "pushed_at": "2019-10-08T16:28:52Z", + "git_url": "git://github.com/jenkinsci/marathon-plugin.git", + "ssh_url": "git@github.com:jenkinsci/marathon-plugin.git", + "clone_url": "https://github.com/jenkinsci/marathon-plugin.git", + "svn_url": "https://github.com/jenkinsci/marathon-plugin", + "homepage": null, + "size": 258, + "stargazers_count": 44, + "watchers_count": 44, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 25, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 25, + "open_issues": 3, + "watchers": 44, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 51646701, + "node_id": "MDEwOlJlcG9zaXRvcnk1MTY0NjcwMQ==", + "name": "fortify-on-demand-uploader-plugin", + "full_name": "jenkinsci/fortify-on-demand-uploader-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/fortify-on-demand-uploader-plugin", + "description": "Fortify on Demand Uploader", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/fortify-on-demand-uploader-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/fortify-on-demand-uploader-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/fortify-on-demand-uploader-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/fortify-on-demand-uploader-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/fortify-on-demand-uploader-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/fortify-on-demand-uploader-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/fortify-on-demand-uploader-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/fortify-on-demand-uploader-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/fortify-on-demand-uploader-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/fortify-on-demand-uploader-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/fortify-on-demand-uploader-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/fortify-on-demand-uploader-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/fortify-on-demand-uploader-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/fortify-on-demand-uploader-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/fortify-on-demand-uploader-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/fortify-on-demand-uploader-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/fortify-on-demand-uploader-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/fortify-on-demand-uploader-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/fortify-on-demand-uploader-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/fortify-on-demand-uploader-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/fortify-on-demand-uploader-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/fortify-on-demand-uploader-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/fortify-on-demand-uploader-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/fortify-on-demand-uploader-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/fortify-on-demand-uploader-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/fortify-on-demand-uploader-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/fortify-on-demand-uploader-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/fortify-on-demand-uploader-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/fortify-on-demand-uploader-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/fortify-on-demand-uploader-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/fortify-on-demand-uploader-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/fortify-on-demand-uploader-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/fortify-on-demand-uploader-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/fortify-on-demand-uploader-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/fortify-on-demand-uploader-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/fortify-on-demand-uploader-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/fortify-on-demand-uploader-plugin/deployments", + "created_at": "2016-02-13T13:20:29Z", + "updated_at": "2019-10-23T14:38:58Z", + "pushed_at": "2019-10-23T14:38:56Z", + "git_url": "git://github.com/jenkinsci/fortify-on-demand-uploader-plugin.git", + "ssh_url": "git@github.com:jenkinsci/fortify-on-demand-uploader-plugin.git", + "clone_url": "https://github.com/jenkinsci/fortify-on-demand-uploader-plugin.git", + "svn_url": "https://github.com/jenkinsci/fortify-on-demand-uploader-plugin", + "homepage": "", + "size": 651, + "stargazers_count": 7, + "watchers_count": 7, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 24, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 4, + "license": null, + "forks": 24, + "open_issues": 4, + "watchers": 7, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 51783467, + "node_id": "MDEwOlJlcG9zaXRvcnk1MTc4MzQ2Nw==", + "name": "loadfocus-loadtest-plugin", + "full_name": "jenkinsci/loadfocus-loadtest-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/loadfocus-loadtest-plugin", + "description": "Load Testing LoadFocus.com Jenkins Plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/loadfocus-loadtest-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/loadfocus-loadtest-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/loadfocus-loadtest-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/loadfocus-loadtest-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/loadfocus-loadtest-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/loadfocus-loadtest-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/loadfocus-loadtest-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/loadfocus-loadtest-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/loadfocus-loadtest-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/loadfocus-loadtest-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/loadfocus-loadtest-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/loadfocus-loadtest-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/loadfocus-loadtest-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/loadfocus-loadtest-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/loadfocus-loadtest-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/loadfocus-loadtest-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/loadfocus-loadtest-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/loadfocus-loadtest-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/loadfocus-loadtest-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/loadfocus-loadtest-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/loadfocus-loadtest-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/loadfocus-loadtest-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/loadfocus-loadtest-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/loadfocus-loadtest-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/loadfocus-loadtest-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/loadfocus-loadtest-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/loadfocus-loadtest-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/loadfocus-loadtest-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/loadfocus-loadtest-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/loadfocus-loadtest-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/loadfocus-loadtest-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/loadfocus-loadtest-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/loadfocus-loadtest-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/loadfocus-loadtest-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/loadfocus-loadtest-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/loadfocus-loadtest-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/loadfocus-loadtest-plugin/deployments", + "created_at": "2016-02-15T20:30:58Z", + "updated_at": "2016-02-16T16:28:52Z", + "pushed_at": "2016-02-23T10:55:48Z", + "git_url": "git://github.com/jenkinsci/loadfocus-loadtest-plugin.git", + "ssh_url": "git@github.com:jenkinsci/loadfocus-loadtest-plugin.git", + "clone_url": "https://github.com/jenkinsci/loadfocus-loadtest-plugin.git", + "svn_url": "https://github.com/jenkinsci/loadfocus-loadtest-plugin", + "homepage": null, + "size": 47, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 52036472, + "node_id": "MDEwOlJlcG9zaXRvcnk1MjAzNjQ3Mg==", + "name": "onealert-trigger-plugin", + "full_name": "jenkinsci/onealert-trigger-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/onealert-trigger-plugin", + "description": "jenkins plugin for onealert-trigger", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/onealert-trigger-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/onealert-trigger-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/onealert-trigger-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/onealert-trigger-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/onealert-trigger-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/onealert-trigger-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/onealert-trigger-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/onealert-trigger-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/onealert-trigger-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/onealert-trigger-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/onealert-trigger-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/onealert-trigger-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/onealert-trigger-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/onealert-trigger-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/onealert-trigger-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/onealert-trigger-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/onealert-trigger-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/onealert-trigger-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/onealert-trigger-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/onealert-trigger-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/onealert-trigger-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/onealert-trigger-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/onealert-trigger-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/onealert-trigger-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/onealert-trigger-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/onealert-trigger-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/onealert-trigger-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/onealert-trigger-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/onealert-trigger-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/onealert-trigger-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/onealert-trigger-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/onealert-trigger-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/onealert-trigger-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/onealert-trigger-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/onealert-trigger-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/onealert-trigger-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/onealert-trigger-plugin/deployments", + "created_at": "2016-02-18T20:29:24Z", + "updated_at": "2016-02-18T20:29:25Z", + "pushed_at": "2016-02-16T02:38:24Z", + "git_url": "git://github.com/jenkinsci/onealert-trigger-plugin.git", + "ssh_url": "git@github.com:jenkinsci/onealert-trigger-plugin.git", + "clone_url": "https://github.com/jenkinsci/onealert-trigger-plugin.git", + "svn_url": "https://github.com/jenkinsci/onealert-trigger-plugin", + "homepage": null, + "size": 8, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 52040377, + "node_id": "MDEwOlJlcG9zaXRvcnk1MjA0MDM3Nw==", + "name": "sap-hcp-deployer-plugin", + "full_name": "jenkinsci/sap-hcp-deployer-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/sap-hcp-deployer-plugin", + "description": "Jenkins plugin for deploying applications to SAP Hana Cloud Platform", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/sap-hcp-deployer-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/sap-hcp-deployer-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/sap-hcp-deployer-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/sap-hcp-deployer-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/sap-hcp-deployer-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/sap-hcp-deployer-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/sap-hcp-deployer-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/sap-hcp-deployer-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/sap-hcp-deployer-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/sap-hcp-deployer-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/sap-hcp-deployer-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/sap-hcp-deployer-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/sap-hcp-deployer-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/sap-hcp-deployer-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/sap-hcp-deployer-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/sap-hcp-deployer-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/sap-hcp-deployer-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/sap-hcp-deployer-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/sap-hcp-deployer-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/sap-hcp-deployer-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/sap-hcp-deployer-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/sap-hcp-deployer-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/sap-hcp-deployer-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/sap-hcp-deployer-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/sap-hcp-deployer-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/sap-hcp-deployer-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/sap-hcp-deployer-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/sap-hcp-deployer-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/sap-hcp-deployer-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/sap-hcp-deployer-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/sap-hcp-deployer-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/sap-hcp-deployer-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/sap-hcp-deployer-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/sap-hcp-deployer-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/sap-hcp-deployer-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/sap-hcp-deployer-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/sap-hcp-deployer-plugin/deployments", + "created_at": "2016-02-18T21:33:26Z", + "updated_at": "2017-09-18T18:03:24Z", + "pushed_at": "2017-04-09T05:42:11Z", + "git_url": "git://github.com/jenkinsci/sap-hcp-deployer-plugin.git", + "ssh_url": "git@github.com:jenkinsci/sap-hcp-deployer-plugin.git", + "clone_url": "https://github.com/jenkinsci/sap-hcp-deployer-plugin.git", + "svn_url": "https://github.com/jenkinsci/sap-hcp-deployer-plugin", + "homepage": null, + "size": 14, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 4, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 52041168, + "node_id": "MDEwOlJlcG9zaXRvcnk1MjA0MTE2OA==", + "name": "simple-travis-runner-plugin", + "full_name": "jenkinsci/simple-travis-runner-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/simple-travis-runner-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/simple-travis-runner-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/simple-travis-runner-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/simple-travis-runner-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/simple-travis-runner-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/simple-travis-runner-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/simple-travis-runner-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/simple-travis-runner-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/simple-travis-runner-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/simple-travis-runner-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/simple-travis-runner-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/simple-travis-runner-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/simple-travis-runner-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/simple-travis-runner-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/simple-travis-runner-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/simple-travis-runner-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/simple-travis-runner-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/simple-travis-runner-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/simple-travis-runner-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/simple-travis-runner-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/simple-travis-runner-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/simple-travis-runner-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/simple-travis-runner-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/simple-travis-runner-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/simple-travis-runner-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/simple-travis-runner-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/simple-travis-runner-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/simple-travis-runner-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/simple-travis-runner-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/simple-travis-runner-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/simple-travis-runner-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/simple-travis-runner-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/simple-travis-runner-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/simple-travis-runner-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/simple-travis-runner-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/simple-travis-runner-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/simple-travis-runner-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/simple-travis-runner-plugin/deployments", + "created_at": "2016-02-18T21:47:04Z", + "updated_at": "2019-08-08T11:15:21Z", + "pushed_at": "2016-02-25T20:02:30Z", + "git_url": "git://github.com/jenkinsci/simple-travis-runner-plugin.git", + "ssh_url": "git@github.com:jenkinsci/simple-travis-runner-plugin.git", + "clone_url": "https://github.com/jenkinsci/simple-travis-runner-plugin.git", + "svn_url": "https://github.com/jenkinsci/simple-travis-runner-plugin", + "homepage": null, + "size": 51, + "stargazers_count": 23, + "watchers_count": 23, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 8, + "mirror_url": null, + "archived": true, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 8, + "open_issues": 0, + "watchers": 23, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 52213033, + "node_id": "MDEwOlJlcG9zaXRvcnk1MjIxMzAzMw==", + "name": "performance-signature-dynatrace-plugin", + "full_name": "jenkinsci/performance-signature-dynatrace-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/performance-signature-dynatrace-plugin", + "description": "Performance Signature with Dynatrace for Jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/performance-signature-dynatrace-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/performance-signature-dynatrace-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/performance-signature-dynatrace-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/performance-signature-dynatrace-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/performance-signature-dynatrace-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/performance-signature-dynatrace-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/performance-signature-dynatrace-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/performance-signature-dynatrace-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/performance-signature-dynatrace-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/performance-signature-dynatrace-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/performance-signature-dynatrace-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/performance-signature-dynatrace-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/performance-signature-dynatrace-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/performance-signature-dynatrace-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/performance-signature-dynatrace-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/performance-signature-dynatrace-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/performance-signature-dynatrace-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/performance-signature-dynatrace-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/performance-signature-dynatrace-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/performance-signature-dynatrace-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/performance-signature-dynatrace-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/performance-signature-dynatrace-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/performance-signature-dynatrace-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/performance-signature-dynatrace-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/performance-signature-dynatrace-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/performance-signature-dynatrace-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/performance-signature-dynatrace-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/performance-signature-dynatrace-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/performance-signature-dynatrace-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/performance-signature-dynatrace-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/performance-signature-dynatrace-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/performance-signature-dynatrace-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/performance-signature-dynatrace-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/performance-signature-dynatrace-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/performance-signature-dynatrace-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/performance-signature-dynatrace-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/performance-signature-dynatrace-plugin/deployments", + "created_at": "2016-02-21T15:31:04Z", + "updated_at": "2019-10-17T09:01:34Z", + "pushed_at": "2019-10-23T05:25:52Z", + "git_url": "git://github.com/jenkinsci/performance-signature-dynatrace-plugin.git", + "ssh_url": "git@github.com:jenkinsci/performance-signature-dynatrace-plugin.git", + "clone_url": "https://github.com/jenkinsci/performance-signature-dynatrace-plugin.git", + "svn_url": "https://github.com/jenkinsci/performance-signature-dynatrace-plugin", + "homepage": "https://github.com/jenkinsci/performance-signature-dynatrace-plugin/blob/master/README.md", + "size": 9318, + "stargazers_count": 7, + "watchers_count": 7, + "language": "Java", + "has_issues": false, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 13, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 13, + "open_issues": 1, + "watchers": 7, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 52213722, + "node_id": "MDEwOlJlcG9zaXRvcnk1MjIxMzcyMg==", + "name": "simple-build-for-pipeline-plugin", + "full_name": "jenkinsci/simple-build-for-pipeline-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/simple-build-for-pipeline-plugin", + "description": "sample Jenkinsfile", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/simple-build-for-pipeline-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/simple-build-for-pipeline-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/simple-build-for-pipeline-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/simple-build-for-pipeline-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/simple-build-for-pipeline-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/simple-build-for-pipeline-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/simple-build-for-pipeline-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/simple-build-for-pipeline-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/simple-build-for-pipeline-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/simple-build-for-pipeline-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/simple-build-for-pipeline-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/simple-build-for-pipeline-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/simple-build-for-pipeline-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/simple-build-for-pipeline-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/simple-build-for-pipeline-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/simple-build-for-pipeline-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/simple-build-for-pipeline-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/simple-build-for-pipeline-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/simple-build-for-pipeline-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/simple-build-for-pipeline-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/simple-build-for-pipeline-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/simple-build-for-pipeline-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/simple-build-for-pipeline-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/simple-build-for-pipeline-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/simple-build-for-pipeline-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/simple-build-for-pipeline-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/simple-build-for-pipeline-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/simple-build-for-pipeline-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/simple-build-for-pipeline-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/simple-build-for-pipeline-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/simple-build-for-pipeline-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/simple-build-for-pipeline-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/simple-build-for-pipeline-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/simple-build-for-pipeline-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/simple-build-for-pipeline-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/simple-build-for-pipeline-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/simple-build-for-pipeline-plugin/deployments", + "created_at": "2016-02-21T15:46:32Z", + "updated_at": "2019-10-18T08:42:51Z", + "pushed_at": "2019-10-08T11:47:42Z", + "git_url": "git://github.com/jenkinsci/simple-build-for-pipeline-plugin.git", + "ssh_url": "git@github.com:jenkinsci/simple-build-for-pipeline-plugin.git", + "clone_url": "https://github.com/jenkinsci/simple-build-for-pipeline-plugin.git", + "svn_url": "https://github.com/jenkinsci/simple-build-for-pipeline-plugin", + "homepage": null, + "size": 135, + "stargazers_count": 58, + "watchers_count": 58, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 54, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 54, + "open_issues": 1, + "watchers": 58, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 53005056, + "node_id": "MDEwOlJlcG9zaXRvcnk1MzAwNTA1Ng==", + "name": "salesforce-migration-assistant-plugin", + "full_name": "jenkinsci/salesforce-migration-assistant-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/salesforce-migration-assistant-plugin", + "description": "Salesforce Migration Assistant plugin for Jenkins CI", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/salesforce-migration-assistant-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/salesforce-migration-assistant-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/salesforce-migration-assistant-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/salesforce-migration-assistant-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/salesforce-migration-assistant-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/salesforce-migration-assistant-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/salesforce-migration-assistant-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/salesforce-migration-assistant-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/salesforce-migration-assistant-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/salesforce-migration-assistant-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/salesforce-migration-assistant-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/salesforce-migration-assistant-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/salesforce-migration-assistant-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/salesforce-migration-assistant-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/salesforce-migration-assistant-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/salesforce-migration-assistant-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/salesforce-migration-assistant-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/salesforce-migration-assistant-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/salesforce-migration-assistant-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/salesforce-migration-assistant-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/salesforce-migration-assistant-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/salesforce-migration-assistant-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/salesforce-migration-assistant-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/salesforce-migration-assistant-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/salesforce-migration-assistant-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/salesforce-migration-assistant-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/salesforce-migration-assistant-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/salesforce-migration-assistant-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/salesforce-migration-assistant-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/salesforce-migration-assistant-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/salesforce-migration-assistant-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/salesforce-migration-assistant-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/salesforce-migration-assistant-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/salesforce-migration-assistant-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/salesforce-migration-assistant-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/salesforce-migration-assistant-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/salesforce-migration-assistant-plugin/deployments", + "created_at": "2016-03-02T23:43:37Z", + "updated_at": "2019-10-05T10:07:13Z", + "pushed_at": "2017-07-27T07:35:56Z", + "git_url": "git://github.com/jenkinsci/salesforce-migration-assistant-plugin.git", + "ssh_url": "git@github.com:jenkinsci/salesforce-migration-assistant-plugin.git", + "clone_url": "https://github.com/jenkinsci/salesforce-migration-assistant-plugin.git", + "svn_url": "https://github.com/jenkinsci/salesforce-migration-assistant-plugin", + "homepage": "", + "size": 14917, + "stargazers_count": 24, + "watchers_count": 24, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 12, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 16, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 12, + "open_issues": 16, + "watchers": 24, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 53006182, + "node_id": "MDEwOlJlcG9zaXRvcnk1MzAwNjE4Mg==", + "name": "octoperf-plugin", + "full_name": "jenkinsci/octoperf-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/octoperf-plugin", + "description": "Continuous Integration Load testing with Octoperf and Jenkins.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/octoperf-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/octoperf-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/octoperf-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/octoperf-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/octoperf-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/octoperf-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/octoperf-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/octoperf-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/octoperf-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/octoperf-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/octoperf-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/octoperf-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/octoperf-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/octoperf-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/octoperf-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/octoperf-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/octoperf-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/octoperf-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/octoperf-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/octoperf-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/octoperf-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/octoperf-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/octoperf-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/octoperf-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/octoperf-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/octoperf-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/octoperf-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/octoperf-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/octoperf-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/octoperf-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/octoperf-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/octoperf-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/octoperf-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/octoperf-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/octoperf-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/octoperf-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/octoperf-plugin/deployments", + "created_at": "2016-03-03T00:08:12Z", + "updated_at": "2019-10-04T07:25:50Z", + "pushed_at": "2019-10-04T07:25:48Z", + "git_url": "git://github.com/jenkinsci/octoperf-plugin.git", + "ssh_url": "git@github.com:jenkinsci/octoperf-plugin.git", + "clone_url": "https://github.com/jenkinsci/octoperf-plugin.git", + "svn_url": "https://github.com/jenkinsci/octoperf-plugin", + "homepage": "https://octoperf.com", + "size": 185, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 53128787, + "node_id": "MDEwOlJlcG9zaXRvcnk1MzEyODc4Nw==", + "name": "one-shot-executor-plugin", + "full_name": "jenkinsci/one-shot-executor-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/one-shot-executor-plugin", + "description": "infrastructure plugin for One-Shot Jenkins Slaves", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/one-shot-executor-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/one-shot-executor-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/one-shot-executor-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/one-shot-executor-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/one-shot-executor-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/one-shot-executor-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/one-shot-executor-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/one-shot-executor-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/one-shot-executor-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/one-shot-executor-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/one-shot-executor-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/one-shot-executor-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/one-shot-executor-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/one-shot-executor-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/one-shot-executor-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/one-shot-executor-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/one-shot-executor-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/one-shot-executor-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/one-shot-executor-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/one-shot-executor-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/one-shot-executor-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/one-shot-executor-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/one-shot-executor-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/one-shot-executor-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/one-shot-executor-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/one-shot-executor-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/one-shot-executor-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/one-shot-executor-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/one-shot-executor-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/one-shot-executor-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/one-shot-executor-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/one-shot-executor-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/one-shot-executor-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/one-shot-executor-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/one-shot-executor-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/one-shot-executor-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/one-shot-executor-plugin/deployments", + "created_at": "2016-03-04T10:48:55Z", + "updated_at": "2019-09-16T09:22:20Z", + "pushed_at": "2017-10-25T11:25:43Z", + "git_url": "git://github.com/jenkinsci/one-shot-executor-plugin.git", + "ssh_url": "git@github.com:jenkinsci/one-shot-executor-plugin.git", + "clone_url": "https://github.com/jenkinsci/one-shot-executor-plugin.git", + "svn_url": "https://github.com/jenkinsci/one-shot-executor-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/One-Shot+Executor", + "size": 88, + "stargazers_count": 7, + "watchers_count": 7, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 4, + "open_issues": 0, + "watchers": 7, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 53154390, + "node_id": "MDEwOlJlcG9zaXRvcnk1MzE1NDM5MA==", + "name": "github-organization-folder-plugin", + "full_name": "jenkinsci/github-organization-folder-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/github-organization-folder-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/github-organization-folder-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/github-organization-folder-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/github-organization-folder-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/github-organization-folder-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/github-organization-folder-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/github-organization-folder-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/github-organization-folder-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/github-organization-folder-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/github-organization-folder-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/github-organization-folder-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/github-organization-folder-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/github-organization-folder-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/github-organization-folder-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/github-organization-folder-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/github-organization-folder-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/github-organization-folder-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/github-organization-folder-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/github-organization-folder-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/github-organization-folder-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/github-organization-folder-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/github-organization-folder-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/github-organization-folder-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/github-organization-folder-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/github-organization-folder-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/github-organization-folder-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/github-organization-folder-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/github-organization-folder-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/github-organization-folder-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/github-organization-folder-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/github-organization-folder-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/github-organization-folder-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/github-organization-folder-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/github-organization-folder-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/github-organization-folder-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/github-organization-folder-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/github-organization-folder-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/github-organization-folder-plugin/deployments", + "created_at": "2016-03-04T17:46:11Z", + "updated_at": "2019-07-15T11:14:28Z", + "pushed_at": "2018-06-15T12:13:11Z", + "git_url": "git://github.com/jenkinsci/github-organization-folder-plugin.git", + "ssh_url": "git@github.com:jenkinsci/github-organization-folder-plugin.git", + "clone_url": "https://github.com/jenkinsci/github-organization-folder-plugin.git", + "svn_url": "https://github.com/jenkinsci/github-organization-folder-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/GitHub+Organization+Folder+Plugin", + "size": 129, + "stargazers_count": 35, + "watchers_count": 35, + "language": "Java", + "has_issues": false, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 26, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 26, + "open_issues": 1, + "watchers": 35, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 53277397, + "node_id": "MDEwOlJlcG9zaXRvcnk1MzI3NzM5Nw==", + "name": "ca-apm-plugin", + "full_name": "jenkinsci/ca-apm-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/ca-apm-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/ca-apm-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/ca-apm-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/ca-apm-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/ca-apm-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/ca-apm-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/ca-apm-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/ca-apm-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/ca-apm-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/ca-apm-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/ca-apm-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/ca-apm-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/ca-apm-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/ca-apm-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/ca-apm-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/ca-apm-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/ca-apm-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/ca-apm-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/ca-apm-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/ca-apm-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/ca-apm-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/ca-apm-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/ca-apm-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/ca-apm-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/ca-apm-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/ca-apm-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/ca-apm-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/ca-apm-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/ca-apm-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/ca-apm-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/ca-apm-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/ca-apm-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/ca-apm-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/ca-apm-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/ca-apm-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/ca-apm-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/ca-apm-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/ca-apm-plugin/deployments", + "created_at": "2016-03-06T21:34:21Z", + "updated_at": "2019-09-05T09:20:54Z", + "pushed_at": "2019-09-05T09:20:53Z", + "git_url": "git://github.com/jenkinsci/ca-apm-plugin.git", + "ssh_url": "git@github.com:jenkinsci/ca-apm-plugin.git", + "clone_url": "https://github.com/jenkinsci/ca-apm-plugin.git", + "svn_url": "https://github.com/jenkinsci/ca-apm-plugin", + "homepage": null, + "size": 6082, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 53277767, + "node_id": "MDEwOlJlcG9zaXRvcnk1MzI3Nzc2Nw==", + "name": "agile-cockpit-notification-plugin", + "full_name": "jenkinsci/agile-cockpit-notification-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/agile-cockpit-notification-plugin", + "description": "This plugin can be used by cockpit users to get the Jenkins build information.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/agile-cockpit-notification-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/agile-cockpit-notification-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/agile-cockpit-notification-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/agile-cockpit-notification-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/agile-cockpit-notification-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/agile-cockpit-notification-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/agile-cockpit-notification-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/agile-cockpit-notification-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/agile-cockpit-notification-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/agile-cockpit-notification-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/agile-cockpit-notification-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/agile-cockpit-notification-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/agile-cockpit-notification-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/agile-cockpit-notification-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/agile-cockpit-notification-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/agile-cockpit-notification-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/agile-cockpit-notification-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/agile-cockpit-notification-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/agile-cockpit-notification-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/agile-cockpit-notification-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/agile-cockpit-notification-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/agile-cockpit-notification-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/agile-cockpit-notification-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/agile-cockpit-notification-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/agile-cockpit-notification-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/agile-cockpit-notification-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/agile-cockpit-notification-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/agile-cockpit-notification-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/agile-cockpit-notification-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/agile-cockpit-notification-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/agile-cockpit-notification-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/agile-cockpit-notification-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/agile-cockpit-notification-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/agile-cockpit-notification-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/agile-cockpit-notification-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/agile-cockpit-notification-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/agile-cockpit-notification-plugin/deployments", + "created_at": "2016-03-06T21:43:21Z", + "updated_at": "2016-08-02T09:47:00Z", + "pushed_at": "2016-03-10T07:13:05Z", + "git_url": "git://github.com/jenkinsci/agile-cockpit-notification-plugin.git", + "ssh_url": "git@github.com:jenkinsci/agile-cockpit-notification-plugin.git", + "clone_url": "https://github.com/jenkinsci/agile-cockpit-notification-plugin.git", + "svn_url": "https://github.com/jenkinsci/agile-cockpit-notification-plugin", + "homepage": null, + "size": 25, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 53278837, + "node_id": "MDEwOlJlcG9zaXRvcnk1MzI3ODgzNw==", + "name": "violation-comments-to-github-plugin", + "full_name": "jenkinsci/violation-comments-to-github-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/violation-comments-to-github-plugin", + "description": "Comments GitHub pull requests with static code analyzer findings.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/violation-comments-to-github-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-github-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-github-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-github-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-github-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-github-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-github-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-github-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-github-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-github-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-github-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-github-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-github-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-github-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-github-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-github-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-github-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-github-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-github-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-github-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-github-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-github-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-github-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-github-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-github-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-github-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-github-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-github-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-github-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-github-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-github-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-github-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-github-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-github-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-github-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-github-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/violation-comments-to-github-plugin/deployments", + "created_at": "2016-03-06T22:10:22Z", + "updated_at": "2019-10-24T18:42:19Z", + "pushed_at": "2019-10-24T18:42:17Z", + "git_url": "git://github.com/jenkinsci/violation-comments-to-github-plugin.git", + "ssh_url": "git@github.com:jenkinsci/violation-comments-to-github-plugin.git", + "clone_url": "https://github.com/jenkinsci/violation-comments-to-github-plugin.git", + "svn_url": "https://github.com/jenkinsci/violation-comments-to-github-plugin", + "homepage": "https://plugins.jenkins.io/violation-comments-to-github", + "size": 857, + "stargazers_count": 17, + "watchers_count": 17, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": true, + "forks_count": 16, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 5, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 16, + "open_issues": 5, + "watchers": 17, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 53688131, + "node_id": "MDEwOlJlcG9zaXRvcnk1MzY4ODEzMQ==", + "name": "bitbucket-branch-source-plugin", + "full_name": "jenkinsci/bitbucket-branch-source-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/bitbucket-branch-source-plugin", + "description": "Bitbucket Branch Source Plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/bitbucket-branch-source-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/bitbucket-branch-source-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/bitbucket-branch-source-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/bitbucket-branch-source-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/bitbucket-branch-source-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/bitbucket-branch-source-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/bitbucket-branch-source-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/bitbucket-branch-source-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/bitbucket-branch-source-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/bitbucket-branch-source-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/bitbucket-branch-source-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/bitbucket-branch-source-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/bitbucket-branch-source-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/bitbucket-branch-source-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/bitbucket-branch-source-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/bitbucket-branch-source-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/bitbucket-branch-source-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/bitbucket-branch-source-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/bitbucket-branch-source-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/bitbucket-branch-source-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/bitbucket-branch-source-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/bitbucket-branch-source-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/bitbucket-branch-source-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/bitbucket-branch-source-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/bitbucket-branch-source-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/bitbucket-branch-source-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/bitbucket-branch-source-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/bitbucket-branch-source-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/bitbucket-branch-source-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/bitbucket-branch-source-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/bitbucket-branch-source-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/bitbucket-branch-source-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/bitbucket-branch-source-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/bitbucket-branch-source-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/bitbucket-branch-source-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/bitbucket-branch-source-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/bitbucket-branch-source-plugin/deployments", + "created_at": "2016-03-11T18:28:58Z", + "updated_at": "2019-10-23T20:47:42Z", + "pushed_at": "2019-10-23T20:53:41Z", + "git_url": "git://github.com/jenkinsci/bitbucket-branch-source-plugin.git", + "ssh_url": "git@github.com:jenkinsci/bitbucket-branch-source-plugin.git", + "clone_url": "https://github.com/jenkinsci/bitbucket-branch-source-plugin.git", + "svn_url": "https://github.com/jenkinsci/bitbucket-branch-source-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Bitbucket+Branch+Source+Plugin", + "size": 1467, + "stargazers_count": 121, + "watchers_count": 121, + "language": "Java", + "has_issues": true, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 208, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 22, + "license": null, + "forks": 208, + "open_issues": 22, + "watchers": 121, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 53787718, + "node_id": "MDEwOlJlcG9zaXRvcnk1Mzc4NzcxOA==", + "name": "nexus-artifact-uploader-plugin", + "full_name": "jenkinsci/nexus-artifact-uploader-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/nexus-artifact-uploader-plugin", + "description": "This plugin goal is to upload artifacts generated from non-maven projects to Sonatype Nexus", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/nexus-artifact-uploader-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/nexus-artifact-uploader-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/nexus-artifact-uploader-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/nexus-artifact-uploader-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/nexus-artifact-uploader-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/nexus-artifact-uploader-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/nexus-artifact-uploader-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/nexus-artifact-uploader-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/nexus-artifact-uploader-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/nexus-artifact-uploader-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/nexus-artifact-uploader-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/nexus-artifact-uploader-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/nexus-artifact-uploader-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/nexus-artifact-uploader-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/nexus-artifact-uploader-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/nexus-artifact-uploader-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/nexus-artifact-uploader-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/nexus-artifact-uploader-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/nexus-artifact-uploader-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/nexus-artifact-uploader-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/nexus-artifact-uploader-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/nexus-artifact-uploader-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/nexus-artifact-uploader-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/nexus-artifact-uploader-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/nexus-artifact-uploader-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/nexus-artifact-uploader-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/nexus-artifact-uploader-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/nexus-artifact-uploader-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/nexus-artifact-uploader-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/nexus-artifact-uploader-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/nexus-artifact-uploader-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/nexus-artifact-uploader-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/nexus-artifact-uploader-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/nexus-artifact-uploader-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/nexus-artifact-uploader-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/nexus-artifact-uploader-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/nexus-artifact-uploader-plugin/deployments", + "created_at": "2016-03-13T13:55:19Z", + "updated_at": "2019-10-22T19:41:56Z", + "pushed_at": "2019-10-22T12:16:27Z", + "git_url": "git://github.com/jenkinsci/nexus-artifact-uploader-plugin.git", + "ssh_url": "git@github.com:jenkinsci/nexus-artifact-uploader-plugin.git", + "clone_url": "https://github.com/jenkinsci/nexus-artifact-uploader-plugin.git", + "svn_url": "https://github.com/jenkinsci/nexus-artifact-uploader-plugin", + "homepage": "", + "size": 84, + "stargazers_count": 23, + "watchers_count": 23, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 37, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": null, + "forks": 37, + "open_issues": 3, + "watchers": 23, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 53788080, + "node_id": "MDEwOlJlcG9zaXRvcnk1Mzc4ODA4MA==", + "name": "sonargraph-integration-plugin", + "full_name": "jenkinsci/sonargraph-integration-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/sonargraph-integration-plugin", + "description": "Jenkins Sonargraph Integration Plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/sonargraph-integration-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/sonargraph-integration-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/sonargraph-integration-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/sonargraph-integration-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/sonargraph-integration-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/sonargraph-integration-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/sonargraph-integration-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/sonargraph-integration-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/sonargraph-integration-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/sonargraph-integration-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/sonargraph-integration-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/sonargraph-integration-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/sonargraph-integration-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/sonargraph-integration-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/sonargraph-integration-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/sonargraph-integration-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/sonargraph-integration-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/sonargraph-integration-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/sonargraph-integration-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/sonargraph-integration-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/sonargraph-integration-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/sonargraph-integration-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/sonargraph-integration-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/sonargraph-integration-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/sonargraph-integration-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/sonargraph-integration-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/sonargraph-integration-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/sonargraph-integration-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/sonargraph-integration-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/sonargraph-integration-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/sonargraph-integration-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/sonargraph-integration-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/sonargraph-integration-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/sonargraph-integration-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/sonargraph-integration-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/sonargraph-integration-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/sonargraph-integration-plugin/deployments", + "created_at": "2016-03-13T14:02:39Z", + "updated_at": "2019-09-05T19:27:50Z", + "pushed_at": "2019-10-08T11:16:30Z", + "git_url": "git://github.com/jenkinsci/sonargraph-integration-plugin.git", + "ssh_url": "git@github.com:jenkinsci/sonargraph-integration-plugin.git", + "clone_url": "https://github.com/jenkinsci/sonargraph-integration-plugin.git", + "svn_url": "https://github.com/jenkinsci/sonargraph-integration-plugin", + "homepage": "", + "size": 465, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 7, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 7, + "open_issues": 1, + "watchers": 0, + "default_branch": "develop", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 53788269, + "node_id": "MDEwOlJlcG9zaXRvcnk1Mzc4ODI2OQ==", + "name": "opsramp-notifier-plugin", + "full_name": "jenkinsci/opsramp-notifier-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/opsramp-notifier-plugin", + "description": "A Jenkins plugin to receive build status events as OpsRamp alerts", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/opsramp-notifier-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/opsramp-notifier-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/opsramp-notifier-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/opsramp-notifier-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/opsramp-notifier-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/opsramp-notifier-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/opsramp-notifier-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/opsramp-notifier-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/opsramp-notifier-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/opsramp-notifier-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/opsramp-notifier-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/opsramp-notifier-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/opsramp-notifier-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/opsramp-notifier-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/opsramp-notifier-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/opsramp-notifier-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/opsramp-notifier-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/opsramp-notifier-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/opsramp-notifier-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/opsramp-notifier-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/opsramp-notifier-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/opsramp-notifier-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/opsramp-notifier-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/opsramp-notifier-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/opsramp-notifier-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/opsramp-notifier-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/opsramp-notifier-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/opsramp-notifier-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/opsramp-notifier-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/opsramp-notifier-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/opsramp-notifier-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/opsramp-notifier-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/opsramp-notifier-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/opsramp-notifier-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/opsramp-notifier-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/opsramp-notifier-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/opsramp-notifier-plugin/deployments", + "created_at": "2016-03-13T14:06:28Z", + "updated_at": "2019-09-12T11:13:08Z", + "pushed_at": "2018-10-29T12:13:42Z", + "git_url": "git://github.com/jenkinsci/opsramp-notifier-plugin.git", + "ssh_url": "git@github.com:jenkinsci/opsramp-notifier-plugin.git", + "clone_url": "https://github.com/jenkinsci/opsramp-notifier-plugin.git", + "svn_url": "https://github.com/jenkinsci/opsramp-notifier-plugin", + "homepage": "", + "size": 52, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 53886475, + "node_id": "MDEwOlJlcG9zaXRvcnk1Mzg4NjQ3NQ==", + "name": "assembla-merge-request-builder-plugin", + "full_name": "jenkinsci/assembla-merge-request-builder-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/assembla-merge-request-builder-plugin", + "description": "Assembla Jenkins Merge Request Builder", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/assembla-merge-request-builder-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/assembla-merge-request-builder-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/assembla-merge-request-builder-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/assembla-merge-request-builder-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/assembla-merge-request-builder-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/assembla-merge-request-builder-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/assembla-merge-request-builder-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/assembla-merge-request-builder-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/assembla-merge-request-builder-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/assembla-merge-request-builder-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/assembla-merge-request-builder-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/assembla-merge-request-builder-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/assembla-merge-request-builder-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/assembla-merge-request-builder-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/assembla-merge-request-builder-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/assembla-merge-request-builder-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/assembla-merge-request-builder-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/assembla-merge-request-builder-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/assembla-merge-request-builder-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/assembla-merge-request-builder-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/assembla-merge-request-builder-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/assembla-merge-request-builder-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/assembla-merge-request-builder-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/assembla-merge-request-builder-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/assembla-merge-request-builder-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/assembla-merge-request-builder-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/assembla-merge-request-builder-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/assembla-merge-request-builder-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/assembla-merge-request-builder-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/assembla-merge-request-builder-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/assembla-merge-request-builder-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/assembla-merge-request-builder-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/assembla-merge-request-builder-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/assembla-merge-request-builder-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/assembla-merge-request-builder-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/assembla-merge-request-builder-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/assembla-merge-request-builder-plugin/deployments", + "created_at": "2016-03-14T19:42:58Z", + "updated_at": "2018-09-19T10:46:09Z", + "pushed_at": "2018-12-19T18:54:05Z", + "git_url": "git://github.com/jenkinsci/assembla-merge-request-builder-plugin.git", + "ssh_url": "git@github.com:jenkinsci/assembla-merge-request-builder-plugin.git", + "clone_url": "https://github.com/jenkinsci/assembla-merge-request-builder-plugin.git", + "svn_url": "https://github.com/jenkinsci/assembla-merge-request-builder-plugin", + "homepage": null, + "size": 98, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 4, + "open_issues": 1, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 54485415, + "node_id": "MDEwOlJlcG9zaXRvcnk1NDQ4NTQxNQ==", + "name": "cloud-stats-plugin", + "full_name": "jenkinsci/cloud-stats-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/cloud-stats-plugin", + "description": "Aggregate past cloud provisioning activities into a report", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/cloud-stats-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/cloud-stats-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/cloud-stats-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/cloud-stats-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/cloud-stats-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/cloud-stats-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/cloud-stats-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/cloud-stats-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/cloud-stats-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/cloud-stats-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/cloud-stats-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/cloud-stats-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/cloud-stats-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/cloud-stats-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/cloud-stats-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/cloud-stats-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/cloud-stats-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/cloud-stats-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/cloud-stats-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/cloud-stats-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/cloud-stats-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/cloud-stats-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/cloud-stats-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/cloud-stats-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/cloud-stats-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/cloud-stats-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/cloud-stats-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/cloud-stats-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/cloud-stats-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/cloud-stats-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/cloud-stats-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/cloud-stats-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/cloud-stats-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/cloud-stats-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/cloud-stats-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/cloud-stats-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/cloud-stats-plugin/deployments", + "created_at": "2016-03-22T15:14:21Z", + "updated_at": "2019-10-09T07:11:43Z", + "pushed_at": "2019-10-09T07:11:41Z", + "git_url": "git://github.com/jenkinsci/cloud-stats-plugin.git", + "ssh_url": "git@github.com:jenkinsci/cloud-stats-plugin.git", + "clone_url": "https://github.com/jenkinsci/cloud-stats-plugin.git", + "svn_url": "https://github.com/jenkinsci/cloud-stats-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Cloud+Statistics+Plugin", + "size": 268, + "stargazers_count": 9, + "watchers_count": 9, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 10, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 10, + "open_issues": 2, + "watchers": 9, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 54486254, + "node_id": "MDEwOlJlcG9zaXRvcnk1NDQ4NjI1NA==", + "name": "pipeline-view-plugin", + "full_name": "jenkinsci/pipeline-view-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pipeline-view-plugin", + "description": "Jenkins Pipeline (aka Workflow) viewer ", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/pipeline-view-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pipeline-view-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pipeline-view-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pipeline-view-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pipeline-view-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pipeline-view-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pipeline-view-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pipeline-view-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pipeline-view-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pipeline-view-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pipeline-view-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pipeline-view-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pipeline-view-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pipeline-view-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pipeline-view-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pipeline-view-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pipeline-view-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pipeline-view-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pipeline-view-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pipeline-view-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pipeline-view-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pipeline-view-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pipeline-view-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pipeline-view-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pipeline-view-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pipeline-view-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pipeline-view-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pipeline-view-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pipeline-view-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pipeline-view-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pipeline-view-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pipeline-view-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pipeline-view-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pipeline-view-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pipeline-view-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pipeline-view-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pipeline-view-plugin/deployments", + "created_at": "2016-03-22T15:24:35Z", + "updated_at": "2019-04-09T00:25:05Z", + "pushed_at": "2017-01-12T13:47:40Z", + "git_url": "git://github.com/jenkinsci/pipeline-view-plugin.git", + "ssh_url": "git@github.com:jenkinsci/pipeline-view-plugin.git", + "clone_url": "https://github.com/jenkinsci/pipeline-view-plugin.git", + "svn_url": "https://github.com/jenkinsci/pipeline-view-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Pipeline+View+Plugin", + "size": 336, + "stargazers_count": 15, + "watchers_count": 15, + "language": "JavaScript", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 7, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": null, + "forks": 7, + "open_issues": 3, + "watchers": 15, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 54595769, + "node_id": "MDEwOlJlcG9zaXRvcnk1NDU5NTc2OQ==", + "name": "sge-cloud-plugin", + "full_name": "jenkinsci/sge-cloud-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/sge-cloud-plugin", + "description": "Submit Jenkins jobs to Sun Grid Engine (SGE), Oracle Grid Engine (OGE) or Univa Grid Engine (UGE)", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/sge-cloud-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/sge-cloud-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/sge-cloud-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/sge-cloud-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/sge-cloud-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/sge-cloud-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/sge-cloud-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/sge-cloud-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/sge-cloud-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/sge-cloud-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/sge-cloud-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/sge-cloud-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/sge-cloud-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/sge-cloud-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/sge-cloud-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/sge-cloud-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/sge-cloud-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/sge-cloud-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/sge-cloud-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/sge-cloud-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/sge-cloud-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/sge-cloud-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/sge-cloud-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/sge-cloud-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/sge-cloud-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/sge-cloud-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/sge-cloud-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/sge-cloud-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/sge-cloud-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/sge-cloud-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/sge-cloud-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/sge-cloud-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/sge-cloud-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/sge-cloud-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/sge-cloud-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/sge-cloud-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/sge-cloud-plugin/deployments", + "created_at": "2016-03-23T21:56:55Z", + "updated_at": "2019-07-23T21:24:05Z", + "pushed_at": "2019-07-23T21:24:03Z", + "git_url": "git://github.com/jenkinsci/sge-cloud-plugin.git", + "ssh_url": "git@github.com:jenkinsci/sge-cloud-plugin.git", + "clone_url": "https://github.com/jenkinsci/sge-cloud-plugin.git", + "svn_url": "https://github.com/jenkinsci/sge-cloud-plugin", + "homepage": "https://plugins.jenkins.io/sge-cloud-plugin", + "size": 822, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 4, + "open_issues": 1, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 54597177, + "node_id": "MDEwOlJlcG9zaXRvcnk1NDU5NzE3Nw==", + "name": "docker-flow-plugin", + "full_name": "jenkinsci/docker-flow-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/docker-flow-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/docker-flow-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/docker-flow-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/docker-flow-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/docker-flow-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/docker-flow-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/docker-flow-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/docker-flow-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/docker-flow-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/docker-flow-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/docker-flow-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/docker-flow-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/docker-flow-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/docker-flow-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/docker-flow-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/docker-flow-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/docker-flow-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/docker-flow-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/docker-flow-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/docker-flow-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/docker-flow-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/docker-flow-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/docker-flow-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/docker-flow-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/docker-flow-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/docker-flow-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/docker-flow-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/docker-flow-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/docker-flow-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/docker-flow-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/docker-flow-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/docker-flow-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/docker-flow-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/docker-flow-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/docker-flow-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/docker-flow-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/docker-flow-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/docker-flow-plugin/deployments", + "created_at": "2016-03-23T22:26:20Z", + "updated_at": "2016-03-23T22:26:21Z", + "pushed_at": "2016-03-12T21:57:54Z", + "git_url": "git://github.com/jenkinsci/docker-flow-plugin.git", + "ssh_url": "git@github.com:jenkinsci/docker-flow-plugin.git", + "clone_url": "https://github.com/jenkinsci/docker-flow-plugin.git", + "svn_url": "https://github.com/jenkinsci/docker-flow-plugin", + "homepage": null, + "size": 28, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 54611967, + "node_id": "MDEwOlJlcG9zaXRvcnk1NDYxMTk2Nw==", + "name": "flyway-runner-plugin", + "full_name": "jenkinsci/flyway-runner-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/flyway-runner-plugin", + "description": "Adds Flyway as an build step in Jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/flyway-runner-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/flyway-runner-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/flyway-runner-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/flyway-runner-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/flyway-runner-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/flyway-runner-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/flyway-runner-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/flyway-runner-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/flyway-runner-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/flyway-runner-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/flyway-runner-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/flyway-runner-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/flyway-runner-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/flyway-runner-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/flyway-runner-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/flyway-runner-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/flyway-runner-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/flyway-runner-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/flyway-runner-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/flyway-runner-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/flyway-runner-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/flyway-runner-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/flyway-runner-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/flyway-runner-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/flyway-runner-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/flyway-runner-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/flyway-runner-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/flyway-runner-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/flyway-runner-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/flyway-runner-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/flyway-runner-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/flyway-runner-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/flyway-runner-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/flyway-runner-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/flyway-runner-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/flyway-runner-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/flyway-runner-plugin/deployments", + "created_at": "2016-03-24T03:29:11Z", + "updated_at": "2019-07-02T02:40:47Z", + "pushed_at": "2019-10-08T12:29:37Z", + "git_url": "git://github.com/jenkinsci/flyway-runner-plugin.git", + "ssh_url": "git@github.com:jenkinsci/flyway-runner-plugin.git", + "clone_url": "https://github.com/jenkinsci/flyway-runner-plugin.git", + "svn_url": "https://github.com/jenkinsci/flyway-runner-plugin", + "homepage": "", + "size": 54, + "stargazers_count": 10, + "watchers_count": 10, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 9, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 9, + "open_issues": 1, + "watchers": 10, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 54612271, + "node_id": "MDEwOlJlcG9zaXRvcnk1NDYxMjI3MQ==", + "name": "cron-shelve-plugin", + "full_name": "jenkinsci/cron-shelve-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/cron-shelve-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/cron-shelve-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/cron-shelve-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/cron-shelve-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/cron-shelve-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/cron-shelve-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/cron-shelve-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/cron-shelve-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/cron-shelve-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/cron-shelve-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/cron-shelve-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/cron-shelve-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/cron-shelve-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/cron-shelve-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/cron-shelve-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/cron-shelve-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/cron-shelve-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/cron-shelve-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/cron-shelve-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/cron-shelve-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/cron-shelve-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/cron-shelve-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/cron-shelve-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/cron-shelve-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/cron-shelve-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/cron-shelve-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/cron-shelve-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/cron-shelve-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/cron-shelve-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/cron-shelve-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/cron-shelve-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/cron-shelve-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/cron-shelve-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/cron-shelve-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/cron-shelve-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/cron-shelve-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/cron-shelve-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/cron-shelve-plugin/deployments", + "created_at": "2016-03-24T03:35:28Z", + "updated_at": "2016-03-24T11:02:25Z", + "pushed_at": "2018-04-18T01:14:32Z", + "git_url": "git://github.com/jenkinsci/cron-shelve-plugin.git", + "ssh_url": "git@github.com:jenkinsci/cron-shelve-plugin.git", + "clone_url": "https://github.com/jenkinsci/cron-shelve-plugin.git", + "svn_url": "https://github.com/jenkinsci/cron-shelve-plugin", + "homepage": null, + "size": 77, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 2, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 54671421, + "node_id": "MDEwOlJlcG9zaXRvcnk1NDY3MTQyMQ==", + "name": "job-fan-in-plugin", + "full_name": "jenkinsci/job-fan-in-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/job-fan-in-plugin", + "description": "Jenkins Job FanIn Plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/job-fan-in-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/job-fan-in-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/job-fan-in-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/job-fan-in-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/job-fan-in-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/job-fan-in-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/job-fan-in-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/job-fan-in-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/job-fan-in-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/job-fan-in-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/job-fan-in-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/job-fan-in-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/job-fan-in-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/job-fan-in-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/job-fan-in-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/job-fan-in-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/job-fan-in-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/job-fan-in-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/job-fan-in-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/job-fan-in-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/job-fan-in-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/job-fan-in-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/job-fan-in-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/job-fan-in-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/job-fan-in-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/job-fan-in-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/job-fan-in-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/job-fan-in-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/job-fan-in-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/job-fan-in-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/job-fan-in-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/job-fan-in-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/job-fan-in-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/job-fan-in-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/job-fan-in-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/job-fan-in-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/job-fan-in-plugin/deployments", + "created_at": "2016-03-24T20:18:07Z", + "updated_at": "2019-10-08T19:36:44Z", + "pushed_at": "2019-10-08T19:36:42Z", + "git_url": "git://github.com/jenkinsci/job-fan-in-plugin.git", + "ssh_url": "git@github.com:jenkinsci/job-fan-in-plugin.git", + "clone_url": "https://github.com/jenkinsci/job-fan-in-plugin.git", + "svn_url": "https://github.com/jenkinsci/job-fan-in-plugin", + "homepage": "", + "size": 36239, + "stargazers_count": 14, + "watchers_count": 14, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 13, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 13, + "open_issues": 0, + "watchers": 14, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/__files/organizations_107424_repos-aec88ab4-fa24-43a9-93c9-82026978b8a7.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/__files/organizations_107424_repos-aec88ab4-fa24-43a9-93c9-82026978b8a7.json new file mode 100644 index 0000000000..8221de583c --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/__files/organizations_107424_repos-aec88ab4-fa24-43a9-93c9-82026978b8a7.json @@ -0,0 +1,10358 @@ +[ + { + "id": 177645928, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzc2NDU5Mjg=", + "name": "zoom-plugin", + "full_name": "jenkinsci/zoom-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/zoom-plugin", + "description": "This plugin allows to post build notifications to a Zoom channel.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/zoom-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/zoom-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/zoom-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/zoom-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/zoom-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/zoom-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/zoom-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/zoom-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/zoom-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/zoom-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/zoom-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/zoom-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/zoom-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/zoom-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/zoom-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/zoom-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/zoom-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/zoom-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/zoom-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/zoom-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/zoom-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/zoom-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/zoom-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/zoom-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/zoom-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/zoom-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/zoom-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/zoom-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/zoom-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/zoom-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/zoom-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/zoom-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/zoom-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/zoom-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/zoom-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/zoom-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/zoom-plugin/deployments", + "created_at": "2019-03-25T18:53:10Z", + "updated_at": "2019-09-04T10:23:27Z", + "pushed_at": "2019-09-04T10:23:26Z", + "git_url": "git://github.com/jenkinsci/zoom-plugin.git", + "ssh_url": "git@github.com:jenkinsci/zoom-plugin.git", + "clone_url": "https://github.com/jenkinsci/zoom-plugin.git", + "svn_url": "https://github.com/jenkinsci/zoom-plugin", + "homepage": "", + "size": 57, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 1, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 177665684, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzc2NjU2ODQ=", + "name": "loadninja-plugin", + "full_name": "jenkinsci/loadninja-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/loadninja-plugin", + "description": "LoadNinja Jenkin's plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/loadninja-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/loadninja-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/loadninja-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/loadninja-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/loadninja-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/loadninja-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/loadninja-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/loadninja-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/loadninja-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/loadninja-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/loadninja-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/loadninja-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/loadninja-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/loadninja-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/loadninja-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/loadninja-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/loadninja-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/loadninja-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/loadninja-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/loadninja-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/loadninja-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/loadninja-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/loadninja-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/loadninja-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/loadninja-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/loadninja-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/loadninja-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/loadninja-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/loadninja-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/loadninja-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/loadninja-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/loadninja-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/loadninja-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/loadninja-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/loadninja-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/loadninja-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/loadninja-plugin/deployments", + "created_at": "2019-03-25T21:13:53Z", + "updated_at": "2019-06-27T16:11:38Z", + "pushed_at": "2019-06-27T16:11:36Z", + "git_url": "git://github.com/jenkinsci/loadninja-plugin.git", + "ssh_url": "git@github.com:jenkinsci/loadninja-plugin.git", + "clone_url": "https://github.com/jenkinsci/loadninja-plugin.git", + "svn_url": "https://github.com/jenkinsci/loadninja-plugin", + "homepage": null, + "size": 30, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 178453168, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzg0NTMxNjg=", + "name": "lib-multiline-secrets-ui", + "full_name": "jenkinsci/lib-multiline-secrets-ui", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/lib-multiline-secrets-ui", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/lib-multiline-secrets-ui", + "forks_url": "https://api.github.com/repos/jenkinsci/lib-multiline-secrets-ui/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/lib-multiline-secrets-ui/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/lib-multiline-secrets-ui/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/lib-multiline-secrets-ui/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/lib-multiline-secrets-ui/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/lib-multiline-secrets-ui/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/lib-multiline-secrets-ui/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/lib-multiline-secrets-ui/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/lib-multiline-secrets-ui/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/lib-multiline-secrets-ui/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/lib-multiline-secrets-ui/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/lib-multiline-secrets-ui/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/lib-multiline-secrets-ui/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/lib-multiline-secrets-ui/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/lib-multiline-secrets-ui/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/lib-multiline-secrets-ui/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/lib-multiline-secrets-ui/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/lib-multiline-secrets-ui/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/lib-multiline-secrets-ui/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/lib-multiline-secrets-ui/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/lib-multiline-secrets-ui/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/lib-multiline-secrets-ui/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/lib-multiline-secrets-ui/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/lib-multiline-secrets-ui/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/lib-multiline-secrets-ui/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/lib-multiline-secrets-ui/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/lib-multiline-secrets-ui/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/lib-multiline-secrets-ui/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/lib-multiline-secrets-ui/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/lib-multiline-secrets-ui/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/lib-multiline-secrets-ui/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/lib-multiline-secrets-ui/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/lib-multiline-secrets-ui/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/lib-multiline-secrets-ui/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/lib-multiline-secrets-ui/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/lib-multiline-secrets-ui/deployments", + "created_at": "2019-03-29T17:58:45Z", + "updated_at": "2019-07-02T21:08:44Z", + "pushed_at": "2019-07-02T21:08:42Z", + "git_url": "git://github.com/jenkinsci/lib-multiline-secrets-ui.git", + "ssh_url": "git@github.com:jenkinsci/lib-multiline-secrets-ui.git", + "clone_url": "https://github.com/jenkinsci/lib-multiline-secrets-ui.git", + "svn_url": "https://github.com/jenkinsci/lib-multiline-secrets-ui", + "homepage": null, + "size": 16, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 178893925, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzg4OTM5MjU=", + "name": "ibm-g11n-pipeline-plugin", + "full_name": "jenkinsci/ibm-g11n-pipeline-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/ibm-g11n-pipeline-plugin", + "description": "Jenkins plugin for IBM Globalization Pipeline", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/ibm-g11n-pipeline-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/ibm-g11n-pipeline-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/ibm-g11n-pipeline-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/ibm-g11n-pipeline-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/ibm-g11n-pipeline-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/ibm-g11n-pipeline-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/ibm-g11n-pipeline-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/ibm-g11n-pipeline-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/ibm-g11n-pipeline-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/ibm-g11n-pipeline-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/ibm-g11n-pipeline-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/ibm-g11n-pipeline-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/ibm-g11n-pipeline-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/ibm-g11n-pipeline-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/ibm-g11n-pipeline-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/ibm-g11n-pipeline-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/ibm-g11n-pipeline-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/ibm-g11n-pipeline-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/ibm-g11n-pipeline-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/ibm-g11n-pipeline-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/ibm-g11n-pipeline-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/ibm-g11n-pipeline-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/ibm-g11n-pipeline-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/ibm-g11n-pipeline-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/ibm-g11n-pipeline-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/ibm-g11n-pipeline-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/ibm-g11n-pipeline-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/ibm-g11n-pipeline-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/ibm-g11n-pipeline-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/ibm-g11n-pipeline-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/ibm-g11n-pipeline-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/ibm-g11n-pipeline-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/ibm-g11n-pipeline-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/ibm-g11n-pipeline-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/ibm-g11n-pipeline-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/ibm-g11n-pipeline-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/ibm-g11n-pipeline-plugin/deployments", + "created_at": "2019-04-01T15:35:46Z", + "updated_at": "2019-08-26T19:43:16Z", + "pushed_at": "2019-08-26T19:43:14Z", + "git_url": "git://github.com/jenkinsci/ibm-g11n-pipeline-plugin.git", + "ssh_url": "git@github.com:jenkinsci/ibm-g11n-pipeline-plugin.git", + "clone_url": "https://github.com/jenkinsci/ibm-g11n-pipeline-plugin.git", + "svn_url": "https://github.com/jenkinsci/ibm-g11n-pipeline-plugin", + "homepage": null, + "size": 5080, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": true, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 5, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 179163449, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzkxNjM0NDk=", + "name": "qaconsole-test-automation-reporter-plugin", + "full_name": "jenkinsci/qaconsole-test-automation-reporter-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/qaconsole-test-automation-reporter-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/qaconsole-test-automation-reporter-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/qaconsole-test-automation-reporter-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/qaconsole-test-automation-reporter-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/qaconsole-test-automation-reporter-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/qaconsole-test-automation-reporter-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/qaconsole-test-automation-reporter-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/qaconsole-test-automation-reporter-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/qaconsole-test-automation-reporter-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/qaconsole-test-automation-reporter-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/qaconsole-test-automation-reporter-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/qaconsole-test-automation-reporter-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/qaconsole-test-automation-reporter-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/qaconsole-test-automation-reporter-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/qaconsole-test-automation-reporter-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/qaconsole-test-automation-reporter-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/qaconsole-test-automation-reporter-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/qaconsole-test-automation-reporter-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/qaconsole-test-automation-reporter-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/qaconsole-test-automation-reporter-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/qaconsole-test-automation-reporter-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/qaconsole-test-automation-reporter-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/qaconsole-test-automation-reporter-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/qaconsole-test-automation-reporter-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/qaconsole-test-automation-reporter-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/qaconsole-test-automation-reporter-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/qaconsole-test-automation-reporter-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/qaconsole-test-automation-reporter-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/qaconsole-test-automation-reporter-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/qaconsole-test-automation-reporter-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/qaconsole-test-automation-reporter-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/qaconsole-test-automation-reporter-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/qaconsole-test-automation-reporter-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/qaconsole-test-automation-reporter-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/qaconsole-test-automation-reporter-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/qaconsole-test-automation-reporter-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/qaconsole-test-automation-reporter-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/qaconsole-test-automation-reporter-plugin/deployments", + "created_at": "2019-04-02T21:44:39Z", + "updated_at": "2019-04-02T21:44:51Z", + "pushed_at": "2019-04-02T19:01:07Z", + "git_url": "git://github.com/jenkinsci/qaconsole-test-automation-reporter-plugin.git", + "ssh_url": "git@github.com:jenkinsci/qaconsole-test-automation-reporter-plugin.git", + "clone_url": "https://github.com/jenkinsci/qaconsole-test-automation-reporter-plugin.git", + "svn_url": "https://github.com/jenkinsci/qaconsole-test-automation-reporter-plugin", + "homepage": null, + "size": 6, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 179594364, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzk1OTQzNjQ=", + "name": "pipeline-gitstatuswrapper-plugin", + "full_name": "jenkinsci/pipeline-gitstatuswrapper-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pipeline-gitstatuswrapper-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/pipeline-gitstatuswrapper-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pipeline-gitstatuswrapper-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pipeline-gitstatuswrapper-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pipeline-gitstatuswrapper-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pipeline-gitstatuswrapper-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pipeline-gitstatuswrapper-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pipeline-gitstatuswrapper-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pipeline-gitstatuswrapper-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pipeline-gitstatuswrapper-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pipeline-gitstatuswrapper-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pipeline-gitstatuswrapper-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pipeline-gitstatuswrapper-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pipeline-gitstatuswrapper-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pipeline-gitstatuswrapper-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pipeline-gitstatuswrapper-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pipeline-gitstatuswrapper-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pipeline-gitstatuswrapper-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pipeline-gitstatuswrapper-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pipeline-gitstatuswrapper-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pipeline-gitstatuswrapper-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pipeline-gitstatuswrapper-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pipeline-gitstatuswrapper-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pipeline-gitstatuswrapper-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pipeline-gitstatuswrapper-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pipeline-gitstatuswrapper-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pipeline-gitstatuswrapper-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pipeline-gitstatuswrapper-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pipeline-gitstatuswrapper-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pipeline-gitstatuswrapper-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pipeline-gitstatuswrapper-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pipeline-gitstatuswrapper-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pipeline-gitstatuswrapper-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pipeline-gitstatuswrapper-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pipeline-gitstatuswrapper-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pipeline-gitstatuswrapper-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pipeline-gitstatuswrapper-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pipeline-gitstatuswrapper-plugin/deployments", + "created_at": "2019-04-04T23:59:44Z", + "updated_at": "2019-07-31T16:09:51Z", + "pushed_at": "2019-07-31T16:09:49Z", + "git_url": "git://github.com/jenkinsci/pipeline-gitstatuswrapper-plugin.git", + "ssh_url": "git@github.com:jenkinsci/pipeline-gitstatuswrapper-plugin.git", + "clone_url": "https://github.com/jenkinsci/pipeline-gitstatuswrapper-plugin.git", + "svn_url": "https://github.com/jenkinsci/pipeline-gitstatuswrapper-plugin", + "homepage": null, + "size": 106, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 2, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 179879896, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzk4Nzk4OTY=", + "name": "matlab-plugin", + "full_name": "jenkinsci/matlab-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/matlab-plugin", + "description": "The Jenkins plugin for MATLAB® enables you to easily run your MATLAB tests and generate test artifacts in formats such as JUnit, TAP, and Cobertura code coverage reports. ", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/matlab-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/matlab-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/matlab-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/matlab-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/matlab-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/matlab-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/matlab-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/matlab-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/matlab-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/matlab-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/matlab-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/matlab-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/matlab-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/matlab-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/matlab-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/matlab-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/matlab-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/matlab-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/matlab-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/matlab-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/matlab-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/matlab-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/matlab-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/matlab-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/matlab-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/matlab-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/matlab-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/matlab-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/matlab-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/matlab-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/matlab-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/matlab-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/matlab-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/matlab-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/matlab-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/matlab-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/matlab-plugin/deployments", + "created_at": "2019-04-06T19:54:18Z", + "updated_at": "2019-09-16T15:48:40Z", + "pushed_at": "2019-08-21T10:00:08Z", + "git_url": "git://github.com/jenkinsci/matlab-plugin.git", + "ssh_url": "git@github.com:jenkinsci/matlab-plugin.git", + "clone_url": "https://github.com/jenkinsci/matlab-plugin.git", + "svn_url": "https://github.com/jenkinsci/matlab-plugin", + "homepage": "", + "size": 97, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 180224239, + "node_id": "MDEwOlJlcG9zaXRvcnkxODAyMjQyMzk=", + "name": "qrebel-plugin", + "full_name": "jenkinsci/qrebel-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/qrebel-plugin", + "description": "Jenkins plugin for QRebel which allows you to specify rules when to fail build.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/qrebel-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/qrebel-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/qrebel-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/qrebel-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/qrebel-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/qrebel-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/qrebel-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/qrebel-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/qrebel-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/qrebel-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/qrebel-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/qrebel-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/qrebel-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/qrebel-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/qrebel-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/qrebel-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/qrebel-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/qrebel-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/qrebel-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/qrebel-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/qrebel-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/qrebel-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/qrebel-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/qrebel-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/qrebel-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/qrebel-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/qrebel-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/qrebel-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/qrebel-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/qrebel-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/qrebel-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/qrebel-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/qrebel-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/qrebel-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/qrebel-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/qrebel-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/qrebel-plugin/deployments", + "created_at": "2019-04-08T20:04:16Z", + "updated_at": "2019-04-24T09:03:42Z", + "pushed_at": "2019-04-10T08:43:03Z", + "git_url": "git://github.com/jenkinsci/qrebel-plugin.git", + "ssh_url": "git@github.com:jenkinsci/qrebel-plugin.git", + "clone_url": "https://github.com/jenkinsci/qrebel-plugin.git", + "svn_url": "https://github.com/jenkinsci/qrebel-plugin", + "homepage": null, + "size": 247, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 180578701, + "node_id": "MDEwOlJlcG9zaXRvcnkxODA1Nzg3MDE=", + "name": "localization-support-plugin", + "full_name": "jenkinsci/localization-support-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/localization-support-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/localization-support-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/localization-support-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/localization-support-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/localization-support-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/localization-support-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/localization-support-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/localization-support-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/localization-support-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/localization-support-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/localization-support-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/localization-support-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/localization-support-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/localization-support-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/localization-support-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/localization-support-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/localization-support-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/localization-support-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/localization-support-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/localization-support-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/localization-support-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/localization-support-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/localization-support-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/localization-support-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/localization-support-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/localization-support-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/localization-support-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/localization-support-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/localization-support-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/localization-support-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/localization-support-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/localization-support-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/localization-support-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/localization-support-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/localization-support-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/localization-support-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/localization-support-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/localization-support-plugin/deployments", + "created_at": "2019-04-10T12:38:23Z", + "updated_at": "2019-05-07T21:53:41Z", + "pushed_at": "2019-05-07T23:25:07Z", + "git_url": "git://github.com/jenkinsci/localization-support-plugin.git", + "ssh_url": "git@github.com:jenkinsci/localization-support-plugin.git", + "clone_url": "https://github.com/jenkinsci/localization-support-plugin.git", + "svn_url": "https://github.com/jenkinsci/localization-support-plugin", + "homepage": null, + "size": 29, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 180668892, + "node_id": "MDEwOlJlcG9zaXRvcnkxODA2Njg4OTI=", + "name": "lib-support-log-formatter", + "full_name": "jenkinsci/lib-support-log-formatter", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/lib-support-log-formatter", + "description": "Java logging formatter extracted to a standalone library.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/lib-support-log-formatter", + "forks_url": "https://api.github.com/repos/jenkinsci/lib-support-log-formatter/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/lib-support-log-formatter/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/lib-support-log-formatter/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/lib-support-log-formatter/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/lib-support-log-formatter/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/lib-support-log-formatter/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/lib-support-log-formatter/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/lib-support-log-formatter/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/lib-support-log-formatter/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/lib-support-log-formatter/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/lib-support-log-formatter/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/lib-support-log-formatter/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/lib-support-log-formatter/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/lib-support-log-formatter/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/lib-support-log-formatter/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/lib-support-log-formatter/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/lib-support-log-formatter/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/lib-support-log-formatter/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/lib-support-log-formatter/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/lib-support-log-formatter/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/lib-support-log-formatter/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/lib-support-log-formatter/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/lib-support-log-formatter/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/lib-support-log-formatter/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/lib-support-log-formatter/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/lib-support-log-formatter/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/lib-support-log-formatter/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/lib-support-log-formatter/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/lib-support-log-formatter/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/lib-support-log-formatter/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/lib-support-log-formatter/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/lib-support-log-formatter/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/lib-support-log-formatter/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/lib-support-log-formatter/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/lib-support-log-formatter/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/lib-support-log-formatter/deployments", + "created_at": "2019-04-10T21:49:30Z", + "updated_at": "2019-04-10T23:02:35Z", + "pushed_at": "2019-04-10T23:02:34Z", + "git_url": "git://github.com/jenkinsci/lib-support-log-formatter.git", + "ssh_url": "git@github.com:jenkinsci/lib-support-log-formatter.git", + "clone_url": "https://github.com/jenkinsci/lib-support-log-formatter.git", + "svn_url": "https://github.com/jenkinsci/lib-support-log-formatter", + "homepage": null, + "size": 10, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 181009443, + "node_id": "MDEwOlJlcG9zaXRvcnkxODEwMDk0NDM=", + "name": "icq-notification-plugin", + "full_name": "jenkinsci/icq-notification-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/icq-notification-plugin", + "description": "The plugin allows to send Jenkins notifications to ICQ", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/icq-notification-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/icq-notification-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/icq-notification-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/icq-notification-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/icq-notification-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/icq-notification-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/icq-notification-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/icq-notification-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/icq-notification-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/icq-notification-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/icq-notification-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/icq-notification-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/icq-notification-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/icq-notification-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/icq-notification-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/icq-notification-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/icq-notification-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/icq-notification-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/icq-notification-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/icq-notification-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/icq-notification-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/icq-notification-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/icq-notification-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/icq-notification-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/icq-notification-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/icq-notification-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/icq-notification-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/icq-notification-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/icq-notification-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/icq-notification-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/icq-notification-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/icq-notification-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/icq-notification-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/icq-notification-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/icq-notification-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/icq-notification-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/icq-notification-plugin/deployments", + "created_at": "2019-04-12T13:02:49Z", + "updated_at": "2019-04-30T18:00:57Z", + "pushed_at": "2019-04-30T18:00:56Z", + "git_url": "git://github.com/jenkinsci/icq-notification-plugin.git", + "ssh_url": "git@github.com:jenkinsci/icq-notification-plugin.git", + "clone_url": "https://github.com/jenkinsci/icq-notification-plugin.git", + "svn_url": "https://github.com/jenkinsci/icq-notification-plugin", + "homepage": "https://wiki.jenkins.io/display/JENKINS/ICQ+Notification+Plugin", + "size": 90, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Kotlin", + "has_issues": false, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 181883990, + "node_id": "MDEwOlJlcG9zaXRvcnkxODE4ODM5OTA=", + "name": "scmskip-plugin", + "full_name": "jenkinsci/scmskip-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/scmskip-plugin", + "description": "Jenkins SCM Skip Plugin checks for matching pattern in scm commit message and aborts current build if it matches.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/scmskip-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/scmskip-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/scmskip-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/scmskip-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/scmskip-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/scmskip-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/scmskip-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/scmskip-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/scmskip-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/scmskip-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/scmskip-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/scmskip-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/scmskip-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/scmskip-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/scmskip-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/scmskip-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/scmskip-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/scmskip-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/scmskip-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/scmskip-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/scmskip-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/scmskip-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/scmskip-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/scmskip-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/scmskip-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/scmskip-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/scmskip-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/scmskip-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/scmskip-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/scmskip-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/scmskip-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/scmskip-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/scmskip-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/scmskip-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/scmskip-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/scmskip-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/scmskip-plugin/deployments", + "created_at": "2019-04-17T12:11:33Z", + "updated_at": "2019-08-15T11:00:53Z", + "pushed_at": "2019-04-30T19:45:35Z", + "git_url": "git://github.com/jenkinsci/scmskip-plugin.git", + "ssh_url": "git@github.com:jenkinsci/scmskip-plugin.git", + "clone_url": "https://github.com/jenkinsci/scmskip-plugin.git", + "svn_url": "https://github.com/jenkinsci/scmskip-plugin", + "homepage": "https://wiki.jenkins.io/display/JENKINS/SCM+Skip+Plugin", + "size": 174, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 181922638, + "node_id": "MDEwOlJlcG9zaXRvcnkxODE5MjI2Mzg=", + "name": "build-symlink-plugin", + "full_name": "jenkinsci/build-symlink-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/build-symlink-plugin", + "description": "Creates symbolic links to build directories.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/build-symlink-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/build-symlink-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/build-symlink-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/build-symlink-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/build-symlink-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/build-symlink-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/build-symlink-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/build-symlink-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/build-symlink-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/build-symlink-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/build-symlink-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/build-symlink-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/build-symlink-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/build-symlink-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/build-symlink-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/build-symlink-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/build-symlink-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/build-symlink-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/build-symlink-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/build-symlink-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/build-symlink-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/build-symlink-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/build-symlink-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/build-symlink-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/build-symlink-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/build-symlink-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/build-symlink-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/build-symlink-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/build-symlink-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/build-symlink-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/build-symlink-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/build-symlink-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/build-symlink-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/build-symlink-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/build-symlink-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/build-symlink-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/build-symlink-plugin/deployments", + "created_at": "2019-04-17T15:47:59Z", + "updated_at": "2019-07-15T13:56:46Z", + "pushed_at": "2019-07-15T13:57:33Z", + "git_url": "git://github.com/jenkinsci/build-symlink-plugin.git", + "ssh_url": "git@github.com:jenkinsci/build-symlink-plugin.git", + "clone_url": "https://github.com/jenkinsci/build-symlink-plugin.git", + "svn_url": "https://github.com/jenkinsci/build-symlink-plugin", + "homepage": null, + "size": 25, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 182071580, + "node_id": "MDEwOlJlcG9zaXRvcnkxODIwNzE1ODA=", + "name": "deepsecurity-smartcheck-plugin", + "full_name": "jenkinsci/deepsecurity-smartcheck-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/deepsecurity-smartcheck-plugin", + "description": "Jenkins plugin that requests image scans from Deep Security Smart Check", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/deepsecurity-smartcheck-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/deepsecurity-smartcheck-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/deepsecurity-smartcheck-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/deepsecurity-smartcheck-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/deepsecurity-smartcheck-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/deepsecurity-smartcheck-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/deepsecurity-smartcheck-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/deepsecurity-smartcheck-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/deepsecurity-smartcheck-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/deepsecurity-smartcheck-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/deepsecurity-smartcheck-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/deepsecurity-smartcheck-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/deepsecurity-smartcheck-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/deepsecurity-smartcheck-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/deepsecurity-smartcheck-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/deepsecurity-smartcheck-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/deepsecurity-smartcheck-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/deepsecurity-smartcheck-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/deepsecurity-smartcheck-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/deepsecurity-smartcheck-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/deepsecurity-smartcheck-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/deepsecurity-smartcheck-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/deepsecurity-smartcheck-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/deepsecurity-smartcheck-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/deepsecurity-smartcheck-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/deepsecurity-smartcheck-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/deepsecurity-smartcheck-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/deepsecurity-smartcheck-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/deepsecurity-smartcheck-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/deepsecurity-smartcheck-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/deepsecurity-smartcheck-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/deepsecurity-smartcheck-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/deepsecurity-smartcheck-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/deepsecurity-smartcheck-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/deepsecurity-smartcheck-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/deepsecurity-smartcheck-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/deepsecurity-smartcheck-plugin/deployments", + "created_at": "2019-04-18T11:00:35Z", + "updated_at": "2019-05-14T19:37:59Z", + "pushed_at": "2019-05-14T19:38:11Z", + "git_url": "git://github.com/jenkinsci/deepsecurity-smartcheck-plugin.git", + "ssh_url": "git@github.com:jenkinsci/deepsecurity-smartcheck-plugin.git", + "clone_url": "https://github.com/jenkinsci/deepsecurity-smartcheck-plugin.git", + "svn_url": "https://github.com/jenkinsci/deepsecurity-smartcheck-plugin", + "homepage": "", + "size": 117, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": true, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 182266769, + "node_id": "MDEwOlJlcG9zaXRvcnkxODIyNjY3Njk=", + "name": "metrics-datadog-plugin", + "full_name": "jenkinsci/metrics-datadog-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/metrics-datadog-plugin", + "description": "Metrics Plugin reporter for DataDog", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/metrics-datadog-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/metrics-datadog-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/metrics-datadog-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/metrics-datadog-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/metrics-datadog-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/metrics-datadog-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/metrics-datadog-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/metrics-datadog-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/metrics-datadog-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/metrics-datadog-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/metrics-datadog-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/metrics-datadog-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/metrics-datadog-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/metrics-datadog-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/metrics-datadog-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/metrics-datadog-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/metrics-datadog-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/metrics-datadog-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/metrics-datadog-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/metrics-datadog-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/metrics-datadog-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/metrics-datadog-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/metrics-datadog-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/metrics-datadog-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/metrics-datadog-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/metrics-datadog-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/metrics-datadog-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/metrics-datadog-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/metrics-datadog-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/metrics-datadog-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/metrics-datadog-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/metrics-datadog-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/metrics-datadog-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/metrics-datadog-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/metrics-datadog-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/metrics-datadog-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/metrics-datadog-plugin/deployments", + "created_at": "2019-04-19T13:12:40Z", + "updated_at": "2019-04-23T10:31:40Z", + "pushed_at": "2019-05-16T14:40:04Z", + "git_url": "git://github.com/jenkinsci/metrics-datadog-plugin.git", + "ssh_url": "git@github.com:jenkinsci/metrics-datadog-plugin.git", + "clone_url": "https://github.com/jenkinsci/metrics-datadog-plugin.git", + "svn_url": "https://github.com/jenkinsci/metrics-datadog-plugin", + "homepage": "", + "size": 44, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 2, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 182299702, + "node_id": "MDEwOlJlcG9zaXRvcnkxODIyOTk3MDI=", + "name": "uipath-automation-package-plugin", + "full_name": "jenkinsci/uipath-automation-package-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/uipath-automation-package-plugin", + "description": "A Jenkins plugin for packaging UiPath project and deploying it to UiPath Orchestrator", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/uipath-automation-package-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/uipath-automation-package-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/uipath-automation-package-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/uipath-automation-package-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/uipath-automation-package-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/uipath-automation-package-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/uipath-automation-package-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/uipath-automation-package-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/uipath-automation-package-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/uipath-automation-package-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/uipath-automation-package-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/uipath-automation-package-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/uipath-automation-package-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/uipath-automation-package-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/uipath-automation-package-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/uipath-automation-package-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/uipath-automation-package-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/uipath-automation-package-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/uipath-automation-package-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/uipath-automation-package-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/uipath-automation-package-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/uipath-automation-package-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/uipath-automation-package-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/uipath-automation-package-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/uipath-automation-package-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/uipath-automation-package-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/uipath-automation-package-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/uipath-automation-package-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/uipath-automation-package-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/uipath-automation-package-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/uipath-automation-package-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/uipath-automation-package-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/uipath-automation-package-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/uipath-automation-package-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/uipath-automation-package-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/uipath-automation-package-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/uipath-automation-package-plugin/deployments", + "created_at": "2019-04-19T17:11:49Z", + "updated_at": "2019-10-14T09:10:34Z", + "pushed_at": "2019-08-21T07:37:10Z", + "git_url": "git://github.com/jenkinsci/uipath-automation-package-plugin.git", + "ssh_url": "git@github.com:jenkinsci/uipath-automation-package-plugin.git", + "clone_url": "https://github.com/jenkinsci/uipath-automation-package-plugin.git", + "svn_url": "https://github.com/jenkinsci/uipath-automation-package-plugin", + "homepage": null, + "size": 2112, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": true, + "forks_count": 11, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 11, + "open_issues": 0, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 183306038, + "node_id": "MDEwOlJlcG9zaXRvcnkxODMzMDYwMzg=", + "name": "maven-snapshot-check-plugin", + "full_name": "jenkinsci/maven-snapshot-check-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/maven-snapshot-check-plugin", + "description": "https://plugins.jenkins.io/maven-snapshot-check ", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/maven-snapshot-check-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/maven-snapshot-check-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/maven-snapshot-check-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/maven-snapshot-check-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/maven-snapshot-check-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/maven-snapshot-check-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/maven-snapshot-check-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/maven-snapshot-check-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/maven-snapshot-check-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/maven-snapshot-check-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/maven-snapshot-check-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/maven-snapshot-check-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/maven-snapshot-check-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/maven-snapshot-check-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/maven-snapshot-check-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/maven-snapshot-check-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/maven-snapshot-check-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/maven-snapshot-check-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/maven-snapshot-check-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/maven-snapshot-check-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/maven-snapshot-check-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/maven-snapshot-check-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/maven-snapshot-check-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/maven-snapshot-check-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/maven-snapshot-check-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/maven-snapshot-check-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/maven-snapshot-check-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/maven-snapshot-check-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/maven-snapshot-check-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/maven-snapshot-check-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/maven-snapshot-check-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/maven-snapshot-check-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/maven-snapshot-check-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/maven-snapshot-check-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/maven-snapshot-check-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/maven-snapshot-check-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/maven-snapshot-check-plugin/deployments", + "created_at": "2019-04-24T20:59:50Z", + "updated_at": "2019-10-08T12:41:49Z", + "pushed_at": "2019-10-08T12:41:47Z", + "git_url": "git://github.com/jenkinsci/maven-snapshot-check-plugin.git", + "ssh_url": "git@github.com:jenkinsci/maven-snapshot-check-plugin.git", + "clone_url": "https://github.com/jenkinsci/maven-snapshot-check-plugin.git", + "svn_url": "https://github.com/jenkinsci/maven-snapshot-check-plugin", + "homepage": "", + "size": 160, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 5, + "open_issues": 2, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 184103807, + "node_id": "MDEwOlJlcG9zaXRvcnkxODQxMDM4MDc=", + "name": "gitlab-api-plugin", + "full_name": "jenkinsci/gitlab-api-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/gitlab-api-plugin", + "description": "Wraps Gitlab API into a plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/gitlab-api-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/gitlab-api-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/gitlab-api-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/gitlab-api-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/gitlab-api-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/gitlab-api-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/gitlab-api-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/gitlab-api-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/gitlab-api-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/gitlab-api-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/gitlab-api-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/gitlab-api-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/gitlab-api-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/gitlab-api-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/gitlab-api-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/gitlab-api-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/gitlab-api-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/gitlab-api-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/gitlab-api-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/gitlab-api-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/gitlab-api-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/gitlab-api-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/gitlab-api-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/gitlab-api-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/gitlab-api-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/gitlab-api-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/gitlab-api-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/gitlab-api-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/gitlab-api-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/gitlab-api-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/gitlab-api-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/gitlab-api-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/gitlab-api-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/gitlab-api-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/gitlab-api-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/gitlab-api-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/gitlab-api-plugin/deployments", + "created_at": "2019-04-29T16:12:36Z", + "updated_at": "2019-09-30T03:21:15Z", + "pushed_at": "2019-08-16T10:19:48Z", + "git_url": "git://github.com/jenkinsci/gitlab-api-plugin.git", + "ssh_url": "git@github.com:jenkinsci/gitlab-api-plugin.git", + "clone_url": "https://github.com/jenkinsci/gitlab-api-plugin.git", + "svn_url": "https://github.com/jenkinsci/gitlab-api-plugin", + "homepage": "https://wiki.jenkins.io/display/JENKINS/GitLab+API+Plugin", + "size": 35, + "stargazers_count": 12, + "watchers_count": 12, + "language": null, + "has_issues": false, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 4, + "open_issues": 0, + "watchers": 12, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 184116119, + "node_id": "MDEwOlJlcG9zaXRvcnkxODQxMTYxMTk=", + "name": "config-driven-pipeline-plugin", + "full_name": "jenkinsci/config-driven-pipeline-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/config-driven-pipeline-plugin", + "description": "Reuse Jenkinsfiles across repositories and hydrate commands and settings with config from each repository", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/config-driven-pipeline-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/config-driven-pipeline-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/config-driven-pipeline-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/config-driven-pipeline-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/config-driven-pipeline-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/config-driven-pipeline-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/config-driven-pipeline-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/config-driven-pipeline-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/config-driven-pipeline-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/config-driven-pipeline-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/config-driven-pipeline-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/config-driven-pipeline-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/config-driven-pipeline-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/config-driven-pipeline-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/config-driven-pipeline-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/config-driven-pipeline-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/config-driven-pipeline-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/config-driven-pipeline-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/config-driven-pipeline-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/config-driven-pipeline-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/config-driven-pipeline-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/config-driven-pipeline-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/config-driven-pipeline-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/config-driven-pipeline-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/config-driven-pipeline-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/config-driven-pipeline-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/config-driven-pipeline-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/config-driven-pipeline-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/config-driven-pipeline-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/config-driven-pipeline-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/config-driven-pipeline-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/config-driven-pipeline-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/config-driven-pipeline-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/config-driven-pipeline-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/config-driven-pipeline-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/config-driven-pipeline-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/config-driven-pipeline-plugin/deployments", + "created_at": "2019-04-29T17:41:22Z", + "updated_at": "2019-10-25T00:38:36Z", + "pushed_at": "2019-10-24T19:53:28Z", + "git_url": "git://github.com/jenkinsci/config-driven-pipeline-plugin.git", + "ssh_url": "git@github.com:jenkinsci/config-driven-pipeline-plugin.git", + "clone_url": "https://github.com/jenkinsci/config-driven-pipeline-plugin.git", + "svn_url": "https://github.com/jenkinsci/config-driven-pipeline-plugin", + "homepage": "", + "size": 81, + "stargazers_count": 8, + "watchers_count": 8, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 2, + "open_issues": 0, + "watchers": 8, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 184147609, + "node_id": "MDEwOlJlcG9zaXRvcnkxODQxNDc2MDk=", + "name": "multibranch-build-strategy-extension-plugin", + "full_name": "jenkinsci/multibranch-build-strategy-extension-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/multibranch-build-strategy-extension-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/multibranch-build-strategy-extension-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/multibranch-build-strategy-extension-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/multibranch-build-strategy-extension-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/multibranch-build-strategy-extension-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/multibranch-build-strategy-extension-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/multibranch-build-strategy-extension-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/multibranch-build-strategy-extension-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/multibranch-build-strategy-extension-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/multibranch-build-strategy-extension-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/multibranch-build-strategy-extension-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/multibranch-build-strategy-extension-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/multibranch-build-strategy-extension-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/multibranch-build-strategy-extension-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/multibranch-build-strategy-extension-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/multibranch-build-strategy-extension-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/multibranch-build-strategy-extension-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/multibranch-build-strategy-extension-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/multibranch-build-strategy-extension-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/multibranch-build-strategy-extension-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/multibranch-build-strategy-extension-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/multibranch-build-strategy-extension-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/multibranch-build-strategy-extension-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/multibranch-build-strategy-extension-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/multibranch-build-strategy-extension-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/multibranch-build-strategy-extension-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/multibranch-build-strategy-extension-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/multibranch-build-strategy-extension-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/multibranch-build-strategy-extension-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/multibranch-build-strategy-extension-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/multibranch-build-strategy-extension-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/multibranch-build-strategy-extension-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/multibranch-build-strategy-extension-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/multibranch-build-strategy-extension-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/multibranch-build-strategy-extension-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/multibranch-build-strategy-extension-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/multibranch-build-strategy-extension-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/multibranch-build-strategy-extension-plugin/deployments", + "created_at": "2019-04-29T21:36:57Z", + "updated_at": "2019-07-26T15:10:32Z", + "pushed_at": "2019-07-25T20:26:16Z", + "git_url": "git://github.com/jenkinsci/multibranch-build-strategy-extension-plugin.git", + "ssh_url": "git@github.com:jenkinsci/multibranch-build-strategy-extension-plugin.git", + "clone_url": "https://github.com/jenkinsci/multibranch-build-strategy-extension-plugin.git", + "svn_url": "https://github.com/jenkinsci/multibranch-build-strategy-extension-plugin", + "homepage": null, + "size": 327, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 2, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 184290505, + "node_id": "MDEwOlJlcG9zaXRvcnkxODQyOTA1MDU=", + "name": "jdcloud-codedeploy-plugin", + "full_name": "jenkinsci/jdcloud-codedeploy-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jdcloud-codedeploy-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/jdcloud-codedeploy-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/jdcloud-codedeploy-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jdcloud-codedeploy-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jdcloud-codedeploy-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jdcloud-codedeploy-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jdcloud-codedeploy-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jdcloud-codedeploy-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jdcloud-codedeploy-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jdcloud-codedeploy-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jdcloud-codedeploy-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jdcloud-codedeploy-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jdcloud-codedeploy-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jdcloud-codedeploy-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jdcloud-codedeploy-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jdcloud-codedeploy-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jdcloud-codedeploy-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jdcloud-codedeploy-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jdcloud-codedeploy-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jdcloud-codedeploy-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jdcloud-codedeploy-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jdcloud-codedeploy-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jdcloud-codedeploy-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jdcloud-codedeploy-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jdcloud-codedeploy-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jdcloud-codedeploy-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jdcloud-codedeploy-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jdcloud-codedeploy-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jdcloud-codedeploy-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jdcloud-codedeploy-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jdcloud-codedeploy-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jdcloud-codedeploy-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jdcloud-codedeploy-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jdcloud-codedeploy-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jdcloud-codedeploy-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jdcloud-codedeploy-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jdcloud-codedeploy-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jdcloud-codedeploy-plugin/deployments", + "created_at": "2019-04-30T15:50:19Z", + "updated_at": "2019-05-08T11:35:00Z", + "pushed_at": "2019-05-08T11:34:59Z", + "git_url": "git://github.com/jenkinsci/jdcloud-codedeploy-plugin.git", + "ssh_url": "git@github.com:jenkinsci/jdcloud-codedeploy-plugin.git", + "clone_url": "https://github.com/jenkinsci/jdcloud-codedeploy-plugin.git", + "svn_url": "https://github.com/jenkinsci/jdcloud-codedeploy-plugin", + "homepage": null, + "size": 36, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 184587553, + "node_id": "MDEwOlJlcG9zaXRvcnkxODQ1ODc1NTM=", + "name": "datatheorem-mobile-app-security-plugin", + "full_name": "jenkinsci/datatheorem-mobile-app-security-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/datatheorem-mobile-app-security-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/datatheorem-mobile-app-security-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/datatheorem-mobile-app-security-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/datatheorem-mobile-app-security-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/datatheorem-mobile-app-security-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/datatheorem-mobile-app-security-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/datatheorem-mobile-app-security-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/datatheorem-mobile-app-security-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/datatheorem-mobile-app-security-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/datatheorem-mobile-app-security-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/datatheorem-mobile-app-security-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/datatheorem-mobile-app-security-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/datatheorem-mobile-app-security-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/datatheorem-mobile-app-security-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/datatheorem-mobile-app-security-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/datatheorem-mobile-app-security-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/datatheorem-mobile-app-security-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/datatheorem-mobile-app-security-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/datatheorem-mobile-app-security-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/datatheorem-mobile-app-security-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/datatheorem-mobile-app-security-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/datatheorem-mobile-app-security-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/datatheorem-mobile-app-security-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/datatheorem-mobile-app-security-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/datatheorem-mobile-app-security-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/datatheorem-mobile-app-security-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/datatheorem-mobile-app-security-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/datatheorem-mobile-app-security-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/datatheorem-mobile-app-security-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/datatheorem-mobile-app-security-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/datatheorem-mobile-app-security-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/datatheorem-mobile-app-security-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/datatheorem-mobile-app-security-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/datatheorem-mobile-app-security-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/datatheorem-mobile-app-security-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/datatheorem-mobile-app-security-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/datatheorem-mobile-app-security-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/datatheorem-mobile-app-security-plugin/deployments", + "created_at": "2019-05-02T13:38:32Z", + "updated_at": "2019-09-06T13:03:12Z", + "pushed_at": "2019-10-01T13:20:03Z", + "git_url": "git://github.com/jenkinsci/datatheorem-mobile-app-security-plugin.git", + "ssh_url": "git@github.com:jenkinsci/datatheorem-mobile-app-security-plugin.git", + "clone_url": "https://github.com/jenkinsci/datatheorem-mobile-app-security-plugin.git", + "svn_url": "https://github.com/jenkinsci/datatheorem-mobile-app-security-plugin", + "homepage": null, + "size": 63, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 184822096, + "node_id": "MDEwOlJlcG9zaXRvcnkxODQ4MjIwOTY=", + "name": "results-cache-plugin", + "full_name": "jenkinsci/results-cache-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/results-cache-plugin", + "description": "Jenkins Plugin that allows to avoid the execution of the same job with the same parameters more than once in order to save resources and time", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/results-cache-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/results-cache-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/results-cache-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/results-cache-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/results-cache-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/results-cache-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/results-cache-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/results-cache-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/results-cache-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/results-cache-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/results-cache-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/results-cache-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/results-cache-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/results-cache-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/results-cache-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/results-cache-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/results-cache-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/results-cache-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/results-cache-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/results-cache-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/results-cache-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/results-cache-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/results-cache-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/results-cache-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/results-cache-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/results-cache-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/results-cache-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/results-cache-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/results-cache-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/results-cache-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/results-cache-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/results-cache-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/results-cache-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/results-cache-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/results-cache-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/results-cache-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/results-cache-plugin/deployments", + "created_at": "2019-05-03T21:25:23Z", + "updated_at": "2019-05-15T14:00:09Z", + "pushed_at": "2019-05-13T07:11:50Z", + "git_url": "git://github.com/jenkinsci/results-cache-plugin.git", + "ssh_url": "git@github.com:jenkinsci/results-cache-plugin.git", + "clone_url": "https://github.com/jenkinsci/results-cache-plugin.git", + "svn_url": "https://github.com/jenkinsci/results-cache-plugin", + "homepage": null, + "size": 144, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 185452229, + "node_id": "MDEwOlJlcG9zaXRvcnkxODU0NTIyMjk=", + "name": "multibranch-scan-webhook-trigger-plugin", + "full_name": "jenkinsci/multibranch-scan-webhook-trigger-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/multibranch-scan-webhook-trigger-plugin", + "description": "multibranch-scan-webhook-trigger", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/multibranch-scan-webhook-trigger-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/multibranch-scan-webhook-trigger-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/multibranch-scan-webhook-trigger-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/multibranch-scan-webhook-trigger-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/multibranch-scan-webhook-trigger-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/multibranch-scan-webhook-trigger-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/multibranch-scan-webhook-trigger-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/multibranch-scan-webhook-trigger-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/multibranch-scan-webhook-trigger-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/multibranch-scan-webhook-trigger-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/multibranch-scan-webhook-trigger-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/multibranch-scan-webhook-trigger-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/multibranch-scan-webhook-trigger-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/multibranch-scan-webhook-trigger-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/multibranch-scan-webhook-trigger-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/multibranch-scan-webhook-trigger-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/multibranch-scan-webhook-trigger-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/multibranch-scan-webhook-trigger-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/multibranch-scan-webhook-trigger-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/multibranch-scan-webhook-trigger-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/multibranch-scan-webhook-trigger-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/multibranch-scan-webhook-trigger-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/multibranch-scan-webhook-trigger-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/multibranch-scan-webhook-trigger-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/multibranch-scan-webhook-trigger-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/multibranch-scan-webhook-trigger-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/multibranch-scan-webhook-trigger-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/multibranch-scan-webhook-trigger-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/multibranch-scan-webhook-trigger-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/multibranch-scan-webhook-trigger-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/multibranch-scan-webhook-trigger-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/multibranch-scan-webhook-trigger-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/multibranch-scan-webhook-trigger-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/multibranch-scan-webhook-trigger-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/multibranch-scan-webhook-trigger-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/multibranch-scan-webhook-trigger-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/multibranch-scan-webhook-trigger-plugin/deployments", + "created_at": "2019-05-07T17:53:29Z", + "updated_at": "2019-10-22T15:13:33Z", + "pushed_at": "2019-06-15T18:42:18Z", + "git_url": "git://github.com/jenkinsci/multibranch-scan-webhook-trigger-plugin.git", + "ssh_url": "git@github.com:jenkinsci/multibranch-scan-webhook-trigger-plugin.git", + "clone_url": "https://github.com/jenkinsci/multibranch-scan-webhook-trigger-plugin.git", + "svn_url": "https://github.com/jenkinsci/multibranch-scan-webhook-trigger-plugin", + "homepage": null, + "size": 178, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 186436161, + "node_id": "MDEwOlJlcG9zaXRvcnkxODY0MzYxNjE=", + "name": "pipeline-config-history-plugin", + "full_name": "jenkinsci/pipeline-config-history-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pipeline-config-history-plugin", + "description": "Jenkins pipeline-config-history plugin ", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/pipeline-config-history-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pipeline-config-history-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pipeline-config-history-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pipeline-config-history-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pipeline-config-history-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pipeline-config-history-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pipeline-config-history-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pipeline-config-history-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pipeline-config-history-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pipeline-config-history-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pipeline-config-history-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pipeline-config-history-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pipeline-config-history-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pipeline-config-history-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pipeline-config-history-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pipeline-config-history-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pipeline-config-history-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pipeline-config-history-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pipeline-config-history-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pipeline-config-history-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pipeline-config-history-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pipeline-config-history-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pipeline-config-history-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pipeline-config-history-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pipeline-config-history-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pipeline-config-history-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pipeline-config-history-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pipeline-config-history-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pipeline-config-history-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pipeline-config-history-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pipeline-config-history-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pipeline-config-history-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pipeline-config-history-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pipeline-config-history-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pipeline-config-history-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pipeline-config-history-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pipeline-config-history-plugin/deployments", + "created_at": "2019-05-13T14:28:38Z", + "updated_at": "2019-10-10T14:22:53Z", + "pushed_at": "2019-09-24T09:11:16Z", + "git_url": "git://github.com/jenkinsci/pipeline-config-history-plugin.git", + "ssh_url": "git@github.com:jenkinsci/pipeline-config-history-plugin.git", + "clone_url": "https://github.com/jenkinsci/pipeline-config-history-plugin.git", + "svn_url": "https://github.com/jenkinsci/pipeline-config-history-plugin", + "homepage": "https://plugins.jenkins.io/pipeline-config-history", + "size": 348, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 186439401, + "node_id": "MDEwOlJlcG9zaXRvcnkxODY0Mzk0MDE=", + "name": "assertthat-bdd-jira-plugin", + "full_name": "jenkinsci/assertthat-bdd-jira-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/assertthat-bdd-jira-plugin", + "description": "Jenkins plugin for interaction with AssertThat BDD Jira plugin.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/assertthat-bdd-jira-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/assertthat-bdd-jira-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/assertthat-bdd-jira-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/assertthat-bdd-jira-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/assertthat-bdd-jira-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/assertthat-bdd-jira-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/assertthat-bdd-jira-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/assertthat-bdd-jira-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/assertthat-bdd-jira-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/assertthat-bdd-jira-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/assertthat-bdd-jira-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/assertthat-bdd-jira-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/assertthat-bdd-jira-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/assertthat-bdd-jira-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/assertthat-bdd-jira-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/assertthat-bdd-jira-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/assertthat-bdd-jira-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/assertthat-bdd-jira-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/assertthat-bdd-jira-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/assertthat-bdd-jira-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/assertthat-bdd-jira-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/assertthat-bdd-jira-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/assertthat-bdd-jira-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/assertthat-bdd-jira-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/assertthat-bdd-jira-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/assertthat-bdd-jira-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/assertthat-bdd-jira-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/assertthat-bdd-jira-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/assertthat-bdd-jira-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/assertthat-bdd-jira-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/assertthat-bdd-jira-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/assertthat-bdd-jira-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/assertthat-bdd-jira-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/assertthat-bdd-jira-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/assertthat-bdd-jira-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/assertthat-bdd-jira-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/assertthat-bdd-jira-plugin/deployments", + "created_at": "2019-05-13T14:46:35Z", + "updated_at": "2019-10-08T15:36:40Z", + "pushed_at": "2019-10-08T15:38:22Z", + "git_url": "git://github.com/jenkinsci/assertthat-bdd-jira-plugin.git", + "ssh_url": "git@github.com:jenkinsci/assertthat-bdd-jira-plugin.git", + "clone_url": "https://github.com/jenkinsci/assertthat-bdd-jira-plugin.git", + "svn_url": "https://github.com/jenkinsci/assertthat-bdd-jira-plugin", + "homepage": "https://assertthat.com", + "size": 161, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 186439740, + "node_id": "MDEwOlJlcG9zaXRvcnkxODY0Mzk3NDA=", + "name": "adoptopenjdk-plugin", + "full_name": "jenkinsci/adoptopenjdk-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/adoptopenjdk-plugin", + "description": "Jenkins plugin for installing OpenJDK from adoptopenjdk.net", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/adoptopenjdk-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/adoptopenjdk-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/adoptopenjdk-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/adoptopenjdk-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/adoptopenjdk-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/adoptopenjdk-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/adoptopenjdk-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/adoptopenjdk-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/adoptopenjdk-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/adoptopenjdk-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/adoptopenjdk-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/adoptopenjdk-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/adoptopenjdk-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/adoptopenjdk-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/adoptopenjdk-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/adoptopenjdk-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/adoptopenjdk-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/adoptopenjdk-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/adoptopenjdk-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/adoptopenjdk-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/adoptopenjdk-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/adoptopenjdk-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/adoptopenjdk-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/adoptopenjdk-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/adoptopenjdk-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/adoptopenjdk-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/adoptopenjdk-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/adoptopenjdk-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/adoptopenjdk-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/adoptopenjdk-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/adoptopenjdk-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/adoptopenjdk-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/adoptopenjdk-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/adoptopenjdk-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/adoptopenjdk-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/adoptopenjdk-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/adoptopenjdk-plugin/deployments", + "created_at": "2019-05-13T14:48:30Z", + "updated_at": "2019-09-09T15:00:07Z", + "pushed_at": "2019-09-09T15:00:05Z", + "git_url": "git://github.com/jenkinsci/adoptopenjdk-plugin.git", + "ssh_url": "git@github.com:jenkinsci/adoptopenjdk-plugin.git", + "clone_url": "https://github.com/jenkinsci/adoptopenjdk-plugin.git", + "svn_url": "https://github.com/jenkinsci/adoptopenjdk-plugin", + "homepage": null, + "size": 60, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 4, + "open_issues": 0, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 186543600, + "node_id": "MDEwOlJlcG9zaXRvcnkxODY1NDM2MDA=", + "name": "aws-secrets-manager-credentials-provider-plugin", + "full_name": "jenkinsci/aws-secrets-manager-credentials-provider-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/aws-secrets-manager-credentials-provider-plugin", + "description": "AWS Secrets Manager Credentials Provider for Jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/aws-secrets-manager-credentials-provider-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/aws-secrets-manager-credentials-provider-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/aws-secrets-manager-credentials-provider-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/aws-secrets-manager-credentials-provider-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/aws-secrets-manager-credentials-provider-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/aws-secrets-manager-credentials-provider-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/aws-secrets-manager-credentials-provider-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/aws-secrets-manager-credentials-provider-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/aws-secrets-manager-credentials-provider-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/aws-secrets-manager-credentials-provider-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/aws-secrets-manager-credentials-provider-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/aws-secrets-manager-credentials-provider-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/aws-secrets-manager-credentials-provider-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/aws-secrets-manager-credentials-provider-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/aws-secrets-manager-credentials-provider-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/aws-secrets-manager-credentials-provider-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/aws-secrets-manager-credentials-provider-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/aws-secrets-manager-credentials-provider-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/aws-secrets-manager-credentials-provider-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/aws-secrets-manager-credentials-provider-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/aws-secrets-manager-credentials-provider-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/aws-secrets-manager-credentials-provider-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/aws-secrets-manager-credentials-provider-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/aws-secrets-manager-credentials-provider-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/aws-secrets-manager-credentials-provider-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/aws-secrets-manager-credentials-provider-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/aws-secrets-manager-credentials-provider-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/aws-secrets-manager-credentials-provider-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/aws-secrets-manager-credentials-provider-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/aws-secrets-manager-credentials-provider-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/aws-secrets-manager-credentials-provider-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/aws-secrets-manager-credentials-provider-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/aws-secrets-manager-credentials-provider-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/aws-secrets-manager-credentials-provider-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/aws-secrets-manager-credentials-provider-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/aws-secrets-manager-credentials-provider-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/aws-secrets-manager-credentials-provider-plugin/deployments", + "created_at": "2019-05-14T04:17:43Z", + "updated_at": "2019-10-08T17:45:29Z", + "pushed_at": "2019-10-24T13:02:24Z", + "git_url": "git://github.com/jenkinsci/aws-secrets-manager-credentials-provider-plugin.git", + "ssh_url": "git@github.com:jenkinsci/aws-secrets-manager-credentials-provider-plugin.git", + "clone_url": "https://github.com/jenkinsci/aws-secrets-manager-credentials-provider-plugin.git", + "svn_url": "https://github.com/jenkinsci/aws-secrets-manager-credentials-provider-plugin", + "homepage": null, + "size": 1081, + "stargazers_count": 22, + "watchers_count": 22, + "language": "Java", + "has_issues": false, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 7, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 7, + "open_issues": 1, + "watchers": 22, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 186647972, + "node_id": "MDEwOlJlcG9zaXRvcnkxODY2NDc5NzI=", + "name": "experitest-cloud-plugin", + "full_name": "jenkinsci/experitest-cloud-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/experitest-cloud-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/experitest-cloud-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/experitest-cloud-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/experitest-cloud-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/experitest-cloud-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/experitest-cloud-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/experitest-cloud-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/experitest-cloud-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/experitest-cloud-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/experitest-cloud-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/experitest-cloud-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/experitest-cloud-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/experitest-cloud-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/experitest-cloud-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/experitest-cloud-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/experitest-cloud-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/experitest-cloud-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/experitest-cloud-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/experitest-cloud-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/experitest-cloud-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/experitest-cloud-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/experitest-cloud-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/experitest-cloud-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/experitest-cloud-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/experitest-cloud-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/experitest-cloud-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/experitest-cloud-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/experitest-cloud-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/experitest-cloud-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/experitest-cloud-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/experitest-cloud-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/experitest-cloud-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/experitest-cloud-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/experitest-cloud-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/experitest-cloud-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/experitest-cloud-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/experitest-cloud-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/experitest-cloud-plugin/deployments", + "created_at": "2019-05-14T15:14:28Z", + "updated_at": "2019-07-21T15:18:07Z", + "pushed_at": "2019-07-21T15:18:05Z", + "git_url": "git://github.com/jenkinsci/experitest-cloud-plugin.git", + "ssh_url": "git@github.com:jenkinsci/experitest-cloud-plugin.git", + "clone_url": "https://github.com/jenkinsci/experitest-cloud-plugin.git", + "svn_url": "https://github.com/jenkinsci/experitest-cloud-plugin", + "homepage": null, + "size": 52, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 186910980, + "node_id": "MDEwOlJlcG9zaXRvcnkxODY5MTA5ODA=", + "name": "git-forensics-plugin", + "full_name": "jenkinsci/git-forensics-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/git-forensics-plugin", + "description": "Jenkins plug-in that mines and analyzes data from a Git repository", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/git-forensics-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/git-forensics-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/git-forensics-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/git-forensics-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/git-forensics-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/git-forensics-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/git-forensics-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/git-forensics-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/git-forensics-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/git-forensics-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/git-forensics-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/git-forensics-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/git-forensics-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/git-forensics-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/git-forensics-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/git-forensics-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/git-forensics-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/git-forensics-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/git-forensics-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/git-forensics-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/git-forensics-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/git-forensics-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/git-forensics-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/git-forensics-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/git-forensics-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/git-forensics-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/git-forensics-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/git-forensics-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/git-forensics-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/git-forensics-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/git-forensics-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/git-forensics-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/git-forensics-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/git-forensics-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/git-forensics-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/git-forensics-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/git-forensics-plugin/deployments", + "created_at": "2019-05-15T22:25:52Z", + "updated_at": "2019-10-25T18:44:05Z", + "pushed_at": "2019-10-25T18:44:04Z", + "git_url": "git://github.com/jenkinsci/git-forensics-plugin.git", + "ssh_url": "git@github.com:jenkinsci/git-forensics-plugin.git", + "clone_url": "https://github.com/jenkinsci/git-forensics-plugin.git", + "svn_url": "https://github.com/jenkinsci/git-forensics-plugin", + "homepage": "", + "size": 325, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 3, + "open_issues": 1, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 187220179, + "node_id": "MDEwOlJlcG9zaXRvcnkxODcyMjAxNzk=", + "name": "dbforge-devops-automation-for-sqlserver-plugin", + "full_name": "jenkinsci/dbforge-devops-automation-for-sqlserver-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/dbforge-devops-automation-for-sqlserver-plugin", + "description": "Devart dbForge DevOps Automation for SQL Server Plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/dbforge-devops-automation-for-sqlserver-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/dbforge-devops-automation-for-sqlserver-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/dbforge-devops-automation-for-sqlserver-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/dbforge-devops-automation-for-sqlserver-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/dbforge-devops-automation-for-sqlserver-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/dbforge-devops-automation-for-sqlserver-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/dbforge-devops-automation-for-sqlserver-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/dbforge-devops-automation-for-sqlserver-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/dbforge-devops-automation-for-sqlserver-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/dbforge-devops-automation-for-sqlserver-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/dbforge-devops-automation-for-sqlserver-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/dbforge-devops-automation-for-sqlserver-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/dbforge-devops-automation-for-sqlserver-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/dbforge-devops-automation-for-sqlserver-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/dbforge-devops-automation-for-sqlserver-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/dbforge-devops-automation-for-sqlserver-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/dbforge-devops-automation-for-sqlserver-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/dbforge-devops-automation-for-sqlserver-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/dbforge-devops-automation-for-sqlserver-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/dbforge-devops-automation-for-sqlserver-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/dbforge-devops-automation-for-sqlserver-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/dbforge-devops-automation-for-sqlserver-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/dbforge-devops-automation-for-sqlserver-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/dbforge-devops-automation-for-sqlserver-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/dbforge-devops-automation-for-sqlserver-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/dbforge-devops-automation-for-sqlserver-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/dbforge-devops-automation-for-sqlserver-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/dbforge-devops-automation-for-sqlserver-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/dbforge-devops-automation-for-sqlserver-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/dbforge-devops-automation-for-sqlserver-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/dbforge-devops-automation-for-sqlserver-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/dbforge-devops-automation-for-sqlserver-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/dbforge-devops-automation-for-sqlserver-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/dbforge-devops-automation-for-sqlserver-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/dbforge-devops-automation-for-sqlserver-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/dbforge-devops-automation-for-sqlserver-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/dbforge-devops-automation-for-sqlserver-plugin/deployments", + "created_at": "2019-05-17T13:21:25Z", + "updated_at": "2019-10-07T08:26:32Z", + "pushed_at": "2019-10-07T08:26:31Z", + "git_url": "git://github.com/jenkinsci/dbforge-devops-automation-for-sqlserver-plugin.git", + "ssh_url": "git@github.com:jenkinsci/dbforge-devops-automation-for-sqlserver-plugin.git", + "clone_url": "https://github.com/jenkinsci/dbforge-devops-automation-for-sqlserver-plugin.git", + "svn_url": "https://github.com/jenkinsci/dbforge-devops-automation-for-sqlserver-plugin", + "homepage": null, + "size": 55, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 187671356, + "node_id": "MDEwOlJlcG9zaXRvcnkxODc2NzEzNTY=", + "name": "h2-api-plugin", + "full_name": "jenkinsci/h2-api-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/h2-api-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/h2-api-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/h2-api-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/h2-api-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/h2-api-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/h2-api-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/h2-api-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/h2-api-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/h2-api-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/h2-api-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/h2-api-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/h2-api-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/h2-api-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/h2-api-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/h2-api-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/h2-api-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/h2-api-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/h2-api-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/h2-api-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/h2-api-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/h2-api-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/h2-api-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/h2-api-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/h2-api-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/h2-api-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/h2-api-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/h2-api-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/h2-api-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/h2-api-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/h2-api-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/h2-api-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/h2-api-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/h2-api-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/h2-api-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/h2-api-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/h2-api-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/h2-api-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/h2-api-plugin/deployments", + "created_at": "2019-05-20T15:52:04Z", + "updated_at": "2019-05-22T12:43:28Z", + "pushed_at": "2019-10-08T11:50:55Z", + "git_url": "git://github.com/jenkinsci/h2-api-plugin.git", + "ssh_url": "git@github.com:jenkinsci/h2-api-plugin.git", + "clone_url": "https://github.com/jenkinsci/h2-api-plugin.git", + "svn_url": "https://github.com/jenkinsci/h2-api-plugin", + "homepage": "", + "size": 4, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 187671541, + "node_id": "MDEwOlJlcG9zaXRvcnkxODc2NzE1NDE=", + "name": "requests-plugin", + "full_name": "jenkinsci/requests-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/requests-plugin", + "description": "Jenkins Requests Plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/requests-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/requests-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/requests-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/requests-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/requests-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/requests-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/requests-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/requests-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/requests-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/requests-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/requests-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/requests-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/requests-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/requests-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/requests-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/requests-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/requests-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/requests-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/requests-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/requests-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/requests-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/requests-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/requests-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/requests-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/requests-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/requests-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/requests-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/requests-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/requests-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/requests-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/requests-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/requests-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/requests-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/requests-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/requests-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/requests-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/requests-plugin/deployments", + "created_at": "2019-05-20T15:53:23Z", + "updated_at": "2019-05-30T17:51:54Z", + "pushed_at": "2019-05-30T17:51:53Z", + "git_url": "git://github.com/jenkinsci/requests-plugin.git", + "ssh_url": "git@github.com:jenkinsci/requests-plugin.git", + "clone_url": "https://github.com/jenkinsci/requests-plugin.git", + "svn_url": "https://github.com/jenkinsci/requests-plugin", + "homepage": null, + "size": 65, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 188067916, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgwNjc5MTY=", + "name": "mysql-api-plugin", + "full_name": "jenkinsci/mysql-api-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/mysql-api-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/mysql-api-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/mysql-api-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/mysql-api-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/mysql-api-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/mysql-api-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/mysql-api-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/mysql-api-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/mysql-api-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/mysql-api-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/mysql-api-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/mysql-api-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/mysql-api-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/mysql-api-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/mysql-api-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/mysql-api-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/mysql-api-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/mysql-api-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/mysql-api-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/mysql-api-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/mysql-api-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/mysql-api-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/mysql-api-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/mysql-api-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/mysql-api-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/mysql-api-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/mysql-api-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/mysql-api-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/mysql-api-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/mysql-api-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/mysql-api-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/mysql-api-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/mysql-api-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/mysql-api-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/mysql-api-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/mysql-api-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/mysql-api-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/mysql-api-plugin/deployments", + "created_at": "2019-05-22T15:39:43Z", + "updated_at": "2019-05-23T20:08:47Z", + "pushed_at": "2019-05-23T20:08:45Z", + "git_url": "git://github.com/jenkinsci/mysql-api-plugin.git", + "ssh_url": "git@github.com:jenkinsci/mysql-api-plugin.git", + "clone_url": "https://github.com/jenkinsci/mysql-api-plugin.git", + "svn_url": "https://github.com/jenkinsci/mysql-api-plugin", + "homepage": "", + "size": 31, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 188068286, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgwNjgyODY=", + "name": "postgresql-api-plugin", + "full_name": "jenkinsci/postgresql-api-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/postgresql-api-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/postgresql-api-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/postgresql-api-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/postgresql-api-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/postgresql-api-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/postgresql-api-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/postgresql-api-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/postgresql-api-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/postgresql-api-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/postgresql-api-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/postgresql-api-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/postgresql-api-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/postgresql-api-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/postgresql-api-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/postgresql-api-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/postgresql-api-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/postgresql-api-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/postgresql-api-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/postgresql-api-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/postgresql-api-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/postgresql-api-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/postgresql-api-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/postgresql-api-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/postgresql-api-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/postgresql-api-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/postgresql-api-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/postgresql-api-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/postgresql-api-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/postgresql-api-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/postgresql-api-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/postgresql-api-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/postgresql-api-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/postgresql-api-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/postgresql-api-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/postgresql-api-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/postgresql-api-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/postgresql-api-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/postgresql-api-plugin/deployments", + "created_at": "2019-05-22T15:41:51Z", + "updated_at": "2019-05-23T16:46:17Z", + "pushed_at": "2019-05-23T16:46:15Z", + "git_url": "git://github.com/jenkinsci/postgresql-api-plugin.git", + "ssh_url": "git@github.com:jenkinsci/postgresql-api-plugin.git", + "clone_url": "https://github.com/jenkinsci/postgresql-api-plugin.git", + "svn_url": "https://github.com/jenkinsci/postgresql-api-plugin", + "homepage": "", + "size": 4, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 188435060, + "node_id": "MDEwOlJlcG9zaXRvcnkxODg0MzUwNjA=", + "name": ".github", + "full_name": "jenkinsci/.github", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/.github", + "description": "Global configurations for the jenkinsci GitHub organization", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/.github", + "forks_url": "https://api.github.com/repos/jenkinsci/.github/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/.github/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/.github/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/.github/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/.github/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/.github/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/.github/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/.github/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/.github/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/.github/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/.github/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/.github/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/.github/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/.github/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/.github/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/.github/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/.github/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/.github/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/.github/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/.github/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/.github/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/.github/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/.github/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/.github/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/.github/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/.github/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/.github/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/.github/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/.github/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/.github/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/.github/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/.github/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/.github/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/.github/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/.github/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/.github/deployments", + "created_at": "2019-05-24T14:22:27Z", + "updated_at": "2019-10-24T14:52:28Z", + "pushed_at": "2019-10-07T10:03:18Z", + "git_url": "git://github.com/jenkinsci/.github.git", + "ssh_url": "git@github.com:jenkinsci/.github.git", + "clone_url": "https://github.com/jenkinsci/.github.git", + "svn_url": "https://github.com/jenkinsci/.github", + "homepage": null, + "size": 48, + "stargazers_count": 5, + "watchers_count": 5, + "language": null, + "has_issues": true, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 7, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 4, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 7, + "open_issues": 4, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 188951431, + "node_id": "MDEwOlJlcG9zaXRvcnkxODg5NTE0MzE=", + "name": "xooa-plugin", + "full_name": "jenkinsci/xooa-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/xooa-plugin", + "description": "This plugin allows you to add a build step which will automatically upgrade the xooa blockchain application.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/xooa-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/xooa-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/xooa-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/xooa-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/xooa-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/xooa-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/xooa-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/xooa-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/xooa-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/xooa-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/xooa-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/xooa-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/xooa-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/xooa-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/xooa-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/xooa-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/xooa-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/xooa-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/xooa-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/xooa-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/xooa-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/xooa-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/xooa-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/xooa-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/xooa-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/xooa-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/xooa-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/xooa-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/xooa-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/xooa-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/xooa-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/xooa-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/xooa-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/xooa-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/xooa-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/xooa-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/xooa-plugin/deployments", + "created_at": "2019-05-28T04:03:31Z", + "updated_at": "2019-08-21T05:43:46Z", + "pushed_at": "2019-08-21T05:43:44Z", + "git_url": "git://github.com/jenkinsci/xooa-plugin.git", + "ssh_url": "git@github.com:jenkinsci/xooa-plugin.git", + "clone_url": "https://github.com/jenkinsci/xooa-plugin.git", + "svn_url": "https://github.com/jenkinsci/xooa-plugin", + "homepage": null, + "size": 20, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 189222531, + "node_id": "MDEwOlJlcG9zaXRvcnkxODkyMjI1MzE=", + "name": "castecho-plugin", + "full_name": "jenkinsci/castecho-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/castecho-plugin", + "description": "CastEcho plugin for Jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/castecho-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/castecho-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/castecho-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/castecho-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/castecho-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/castecho-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/castecho-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/castecho-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/castecho-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/castecho-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/castecho-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/castecho-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/castecho-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/castecho-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/castecho-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/castecho-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/castecho-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/castecho-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/castecho-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/castecho-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/castecho-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/castecho-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/castecho-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/castecho-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/castecho-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/castecho-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/castecho-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/castecho-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/castecho-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/castecho-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/castecho-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/castecho-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/castecho-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/castecho-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/castecho-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/castecho-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/castecho-plugin/deployments", + "created_at": "2019-05-29T12:37:56Z", + "updated_at": "2019-06-11T11:38:28Z", + "pushed_at": "2019-06-11T11:38:26Z", + "git_url": "git://github.com/jenkinsci/castecho-plugin.git", + "ssh_url": "git@github.com:jenkinsci/castecho-plugin.git", + "clone_url": "https://github.com/jenkinsci/castecho-plugin.git", + "svn_url": "https://github.com/jenkinsci/castecho-plugin", + "homepage": "", + "size": 25, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 189223971, + "node_id": "MDEwOlJlcG9zaXRvcnkxODkyMjM5NzE=", + "name": "azure-dev-spaces-plugin", + "full_name": "jenkinsci/azure-dev-spaces-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/azure-dev-spaces-plugin", + "description": "Jenkins Azure Dev Spaces plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/azure-dev-spaces-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/azure-dev-spaces-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/azure-dev-spaces-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/azure-dev-spaces-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/azure-dev-spaces-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/azure-dev-spaces-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/azure-dev-spaces-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/azure-dev-spaces-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/azure-dev-spaces-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/azure-dev-spaces-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/azure-dev-spaces-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/azure-dev-spaces-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/azure-dev-spaces-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/azure-dev-spaces-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/azure-dev-spaces-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/azure-dev-spaces-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/azure-dev-spaces-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/azure-dev-spaces-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/azure-dev-spaces-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/azure-dev-spaces-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/azure-dev-spaces-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/azure-dev-spaces-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/azure-dev-spaces-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/azure-dev-spaces-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/azure-dev-spaces-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/azure-dev-spaces-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/azure-dev-spaces-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/azure-dev-spaces-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/azure-dev-spaces-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/azure-dev-spaces-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/azure-dev-spaces-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/azure-dev-spaces-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/azure-dev-spaces-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/azure-dev-spaces-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/azure-dev-spaces-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/azure-dev-spaces-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/azure-dev-spaces-plugin/deployments", + "created_at": "2019-05-29T12:46:35Z", + "updated_at": "2019-09-05T07:13:54Z", + "pushed_at": "2019-09-05T07:13:52Z", + "git_url": "git://github.com/jenkinsci/azure-dev-spaces-plugin.git", + "ssh_url": "git@github.com:jenkinsci/azure-dev-spaces-plugin.git", + "clone_url": "https://github.com/jenkinsci/azure-dev-spaces-plugin.git", + "svn_url": "https://github.com/jenkinsci/azure-dev-spaces-plugin", + "homepage": null, + "size": 67, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "dev", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 189225087, + "node_id": "MDEwOlJlcG9zaXRvcnkxODkyMjUwODc=", + "name": "appcenter-plugin", + "full_name": "jenkinsci/appcenter-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/appcenter-plugin", + "description": "Jenkins plugin to upload artefacts to AppCenter", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/appcenter-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/appcenter-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/appcenter-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/appcenter-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/appcenter-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/appcenter-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/appcenter-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/appcenter-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/appcenter-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/appcenter-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/appcenter-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/appcenter-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/appcenter-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/appcenter-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/appcenter-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/appcenter-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/appcenter-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/appcenter-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/appcenter-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/appcenter-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/appcenter-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/appcenter-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/appcenter-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/appcenter-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/appcenter-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/appcenter-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/appcenter-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/appcenter-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/appcenter-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/appcenter-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/appcenter-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/appcenter-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/appcenter-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/appcenter-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/appcenter-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/appcenter-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/appcenter-plugin/deployments", + "created_at": "2019-05-29T12:53:26Z", + "updated_at": "2019-10-21T21:57:58Z", + "pushed_at": "2019-10-22T13:46:48Z", + "git_url": "git://github.com/jenkinsci/appcenter-plugin.git", + "ssh_url": "git@github.com:jenkinsci/appcenter-plugin.git", + "clone_url": "https://github.com/jenkinsci/appcenter-plugin.git", + "svn_url": "https://github.com/jenkinsci/appcenter-plugin", + "homepage": "", + "size": 107, + "stargazers_count": 13, + "watchers_count": 13, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 18, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 18, + "open_issues": 3, + "watchers": 13, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 189257621, + "node_id": "MDEwOlJlcG9zaXRvcnkxODkyNTc2MjE=", + "name": "git-automerger-plugin", + "full_name": "jenkinsci/git-automerger-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/git-automerger-plugin", + "description": "Tool for auto-merging releases branches into master. ", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/git-automerger-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/git-automerger-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/git-automerger-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/git-automerger-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/git-automerger-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/git-automerger-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/git-automerger-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/git-automerger-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/git-automerger-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/git-automerger-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/git-automerger-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/git-automerger-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/git-automerger-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/git-automerger-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/git-automerger-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/git-automerger-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/git-automerger-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/git-automerger-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/git-automerger-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/git-automerger-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/git-automerger-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/git-automerger-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/git-automerger-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/git-automerger-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/git-automerger-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/git-automerger-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/git-automerger-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/git-automerger-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/git-automerger-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/git-automerger-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/git-automerger-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/git-automerger-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/git-automerger-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/git-automerger-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/git-automerger-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/git-automerger-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/git-automerger-plugin/deployments", + "created_at": "2019-05-29T16:02:07Z", + "updated_at": "2019-08-12T14:19:48Z", + "pushed_at": "2019-08-12T14:20:24Z", + "git_url": "git://github.com/jenkinsci/git-automerger-plugin.git", + "ssh_url": "git@github.com:jenkinsci/git-automerger-plugin.git", + "clone_url": "https://github.com/jenkinsci/git-automerger-plugin.git", + "svn_url": "https://github.com/jenkinsci/git-automerger-plugin", + "homepage": null, + "size": 129, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Kotlin", + "has_issues": true, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 2, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 190084016, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTAwODQwMTY=", + "name": "openedge-plugin", + "full_name": "jenkinsci/openedge-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/openedge-plugin", + "description": "Jenkins plugin for OpenEdge", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/openedge-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/openedge-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/openedge-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/openedge-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/openedge-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/openedge-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/openedge-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/openedge-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/openedge-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/openedge-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/openedge-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/openedge-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/openedge-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/openedge-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/openedge-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/openedge-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/openedge-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/openedge-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/openedge-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/openedge-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/openedge-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/openedge-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/openedge-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/openedge-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/openedge-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/openedge-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/openedge-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/openedge-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/openedge-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/openedge-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/openedge-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/openedge-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/openedge-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/openedge-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/openedge-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/openedge-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/openedge-plugin/deployments", + "created_at": "2019-06-03T21:21:11Z", + "updated_at": "2019-06-07T13:47:36Z", + "pushed_at": "2019-06-07T14:41:59Z", + "git_url": "git://github.com/jenkinsci/openedge-plugin.git", + "ssh_url": "git@github.com:jenkinsci/openedge-plugin.git", + "clone_url": "https://github.com/jenkinsci/openedge-plugin.git", + "svn_url": "https://github.com/jenkinsci/openedge-plugin", + "homepage": null, + "size": 34, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 3, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 190419065, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTA0MTkwNjU=", + "name": "plugin-installation-manager-tool", + "full_name": "jenkinsci/plugin-installation-manager-tool", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/plugin-installation-manager-tool", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/plugin-installation-manager-tool", + "forks_url": "https://api.github.com/repos/jenkinsci/plugin-installation-manager-tool/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/plugin-installation-manager-tool/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/plugin-installation-manager-tool/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/plugin-installation-manager-tool/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/plugin-installation-manager-tool/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/plugin-installation-manager-tool/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/plugin-installation-manager-tool/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/plugin-installation-manager-tool/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/plugin-installation-manager-tool/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/plugin-installation-manager-tool/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/plugin-installation-manager-tool/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/plugin-installation-manager-tool/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/plugin-installation-manager-tool/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/plugin-installation-manager-tool/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/plugin-installation-manager-tool/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/plugin-installation-manager-tool/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/plugin-installation-manager-tool/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/plugin-installation-manager-tool/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/plugin-installation-manager-tool/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/plugin-installation-manager-tool/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/plugin-installation-manager-tool/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/plugin-installation-manager-tool/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/plugin-installation-manager-tool/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/plugin-installation-manager-tool/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/plugin-installation-manager-tool/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/plugin-installation-manager-tool/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/plugin-installation-manager-tool/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/plugin-installation-manager-tool/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/plugin-installation-manager-tool/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/plugin-installation-manager-tool/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/plugin-installation-manager-tool/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/plugin-installation-manager-tool/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/plugin-installation-manager-tool/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/plugin-installation-manager-tool/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/plugin-installation-manager-tool/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/plugin-installation-manager-tool/deployments", + "created_at": "2019-06-05T15:18:41Z", + "updated_at": "2019-10-25T23:56:56Z", + "pushed_at": "2019-10-24T14:43:39Z", + "git_url": "git://github.com/jenkinsci/plugin-installation-manager-tool.git", + "ssh_url": "git@github.com:jenkinsci/plugin-installation-manager-tool.git", + "clone_url": "https://github.com/jenkinsci/plugin-installation-manager-tool.git", + "svn_url": "https://github.com/jenkinsci/plugin-installation-manager-tool", + "homepage": null, + "size": 10112, + "stargazers_count": 36, + "watchers_count": 36, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 9, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 9, + "open_issues": 1, + "watchers": 36, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 190642135, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTA2NDIxMzU=", + "name": "variables-replace-plugin", + "full_name": "jenkinsci/variables-replace-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/variables-replace-plugin", + "description": "This plugin allows to replace easily variables in files content.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/variables-replace-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/variables-replace-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/variables-replace-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/variables-replace-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/variables-replace-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/variables-replace-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/variables-replace-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/variables-replace-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/variables-replace-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/variables-replace-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/variables-replace-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/variables-replace-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/variables-replace-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/variables-replace-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/variables-replace-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/variables-replace-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/variables-replace-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/variables-replace-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/variables-replace-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/variables-replace-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/variables-replace-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/variables-replace-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/variables-replace-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/variables-replace-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/variables-replace-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/variables-replace-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/variables-replace-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/variables-replace-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/variables-replace-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/variables-replace-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/variables-replace-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/variables-replace-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/variables-replace-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/variables-replace-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/variables-replace-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/variables-replace-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/variables-replace-plugin/deployments", + "created_at": "2019-06-06T20:01:39Z", + "updated_at": "2019-06-11T22:24:07Z", + "pushed_at": "2019-06-11T22:24:06Z", + "git_url": "git://github.com/jenkinsci/variables-replace-plugin.git", + "ssh_url": "git@github.com:jenkinsci/variables-replace-plugin.git", + "clone_url": "https://github.com/jenkinsci/variables-replace-plugin.git", + "svn_url": "https://github.com/jenkinsci/variables-replace-plugin", + "homepage": "", + "size": 73447, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 190769846, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTA3Njk4NDY=", + "name": "multi-branch-priority-sorter-plugin", + "full_name": "jenkinsci/multi-branch-priority-sorter-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/multi-branch-priority-sorter-plugin", + "description": "Support for multi-branch priority setting", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/multi-branch-priority-sorter-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/multi-branch-priority-sorter-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/multi-branch-priority-sorter-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/multi-branch-priority-sorter-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/multi-branch-priority-sorter-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/multi-branch-priority-sorter-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/multi-branch-priority-sorter-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/multi-branch-priority-sorter-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/multi-branch-priority-sorter-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/multi-branch-priority-sorter-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/multi-branch-priority-sorter-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/multi-branch-priority-sorter-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/multi-branch-priority-sorter-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/multi-branch-priority-sorter-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/multi-branch-priority-sorter-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/multi-branch-priority-sorter-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/multi-branch-priority-sorter-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/multi-branch-priority-sorter-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/multi-branch-priority-sorter-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/multi-branch-priority-sorter-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/multi-branch-priority-sorter-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/multi-branch-priority-sorter-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/multi-branch-priority-sorter-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/multi-branch-priority-sorter-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/multi-branch-priority-sorter-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/multi-branch-priority-sorter-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/multi-branch-priority-sorter-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/multi-branch-priority-sorter-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/multi-branch-priority-sorter-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/multi-branch-priority-sorter-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/multi-branch-priority-sorter-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/multi-branch-priority-sorter-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/multi-branch-priority-sorter-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/multi-branch-priority-sorter-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/multi-branch-priority-sorter-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/multi-branch-priority-sorter-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/multi-branch-priority-sorter-plugin/deployments", + "created_at": "2019-06-07T15:44:56Z", + "updated_at": "2019-06-21T10:08:21Z", + "pushed_at": "2019-06-14T03:52:19Z", + "git_url": "git://github.com/jenkinsci/multi-branch-priority-sorter-plugin.git", + "ssh_url": "git@github.com:jenkinsci/multi-branch-priority-sorter-plugin.git", + "clone_url": "https://github.com/jenkinsci/multi-branch-priority-sorter-plugin.git", + "svn_url": "https://github.com/jenkinsci/multi-branch-priority-sorter-plugin", + "homepage": "", + "size": 8, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Shell", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 190770012, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTA3NzAwMTI=", + "name": "aliyun-oss-uploader-plugin", + "full_name": "jenkinsci/aliyun-oss-uploader-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/aliyun-oss-uploader-plugin", + "description": "Aliyun OSS uploader", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/aliyun-oss-uploader-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/aliyun-oss-uploader-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/aliyun-oss-uploader-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/aliyun-oss-uploader-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/aliyun-oss-uploader-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/aliyun-oss-uploader-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/aliyun-oss-uploader-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/aliyun-oss-uploader-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/aliyun-oss-uploader-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/aliyun-oss-uploader-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/aliyun-oss-uploader-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/aliyun-oss-uploader-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/aliyun-oss-uploader-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/aliyun-oss-uploader-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/aliyun-oss-uploader-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/aliyun-oss-uploader-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/aliyun-oss-uploader-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/aliyun-oss-uploader-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/aliyun-oss-uploader-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/aliyun-oss-uploader-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/aliyun-oss-uploader-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/aliyun-oss-uploader-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/aliyun-oss-uploader-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/aliyun-oss-uploader-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/aliyun-oss-uploader-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/aliyun-oss-uploader-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/aliyun-oss-uploader-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/aliyun-oss-uploader-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/aliyun-oss-uploader-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/aliyun-oss-uploader-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/aliyun-oss-uploader-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/aliyun-oss-uploader-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/aliyun-oss-uploader-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/aliyun-oss-uploader-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/aliyun-oss-uploader-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/aliyun-oss-uploader-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/aliyun-oss-uploader-plugin/deployments", + "created_at": "2019-06-07T15:45:57Z", + "updated_at": "2019-10-10T07:01:11Z", + "pushed_at": "2019-08-19T01:53:52Z", + "git_url": "git://github.com/jenkinsci/aliyun-oss-uploader-plugin.git", + "ssh_url": "git@github.com:jenkinsci/aliyun-oss-uploader-plugin.git", + "clone_url": "https://github.com/jenkinsci/aliyun-oss-uploader-plugin.git", + "svn_url": "https://github.com/jenkinsci/aliyun-oss-uploader-plugin", + "homepage": "", + "size": 140, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 2, + "open_issues": 0, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 191288863, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTEyODg4NjM=", + "name": "localization-tr-plugin", + "full_name": "jenkinsci/localization-tr-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/localization-tr-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/localization-tr-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/localization-tr-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/localization-tr-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/localization-tr-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/localization-tr-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/localization-tr-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/localization-tr-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/localization-tr-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/localization-tr-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/localization-tr-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/localization-tr-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/localization-tr-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/localization-tr-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/localization-tr-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/localization-tr-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/localization-tr-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/localization-tr-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/localization-tr-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/localization-tr-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/localization-tr-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/localization-tr-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/localization-tr-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/localization-tr-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/localization-tr-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/localization-tr-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/localization-tr-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/localization-tr-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/localization-tr-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/localization-tr-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/localization-tr-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/localization-tr-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/localization-tr-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/localization-tr-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/localization-tr-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/localization-tr-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/localization-tr-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/localization-tr-plugin/deployments", + "created_at": "2019-06-11T03:43:10Z", + "updated_at": "2019-10-23T08:07:35Z", + "pushed_at": "2019-06-09T14:37:31Z", + "git_url": "git://github.com/jenkinsci/localization-tr-plugin.git", + "ssh_url": "git@github.com:jenkinsci/localization-tr-plugin.git", + "clone_url": "https://github.com/jenkinsci/localization-tr-plugin.git", + "svn_url": "https://github.com/jenkinsci/localization-tr-plugin", + "homepage": null, + "size": 61, + "stargazers_count": 4, + "watchers_count": 4, + "language": "HTML", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 191651217, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTE2NTEyMTc=", + "name": "alauda-devops-credentials-provider-plugin", + "full_name": "jenkinsci/alauda-devops-credentials-provider-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/alauda-devops-credentials-provider-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/alauda-devops-credentials-provider-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/alauda-devops-credentials-provider-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/alauda-devops-credentials-provider-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/alauda-devops-credentials-provider-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/alauda-devops-credentials-provider-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/alauda-devops-credentials-provider-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/alauda-devops-credentials-provider-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/alauda-devops-credentials-provider-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/alauda-devops-credentials-provider-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/alauda-devops-credentials-provider-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/alauda-devops-credentials-provider-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/alauda-devops-credentials-provider-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/alauda-devops-credentials-provider-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/alauda-devops-credentials-provider-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/alauda-devops-credentials-provider-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/alauda-devops-credentials-provider-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/alauda-devops-credentials-provider-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/alauda-devops-credentials-provider-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/alauda-devops-credentials-provider-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/alauda-devops-credentials-provider-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/alauda-devops-credentials-provider-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/alauda-devops-credentials-provider-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/alauda-devops-credentials-provider-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/alauda-devops-credentials-provider-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/alauda-devops-credentials-provider-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/alauda-devops-credentials-provider-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/alauda-devops-credentials-provider-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/alauda-devops-credentials-provider-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/alauda-devops-credentials-provider-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/alauda-devops-credentials-provider-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/alauda-devops-credentials-provider-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/alauda-devops-credentials-provider-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/alauda-devops-credentials-provider-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/alauda-devops-credentials-provider-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/alauda-devops-credentials-provider-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/alauda-devops-credentials-provider-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/alauda-devops-credentials-provider-plugin/deployments", + "created_at": "2019-06-12T22:07:30Z", + "updated_at": "2019-09-23T11:31:08Z", + "pushed_at": "2019-10-11T12:12:27Z", + "git_url": "git://github.com/jenkinsci/alauda-devops-credentials-provider-plugin.git", + "ssh_url": "git@github.com:jenkinsci/alauda-devops-credentials-provider-plugin.git", + "clone_url": "https://github.com/jenkinsci/alauda-devops-credentials-provider-plugin.git", + "svn_url": "https://github.com/jenkinsci/alauda-devops-credentials-provider-plugin", + "homepage": null, + "size": 120, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 191651516, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTE2NTE1MTY=", + "name": "forensics-api-plugin", + "full_name": "jenkinsci/forensics-api-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/forensics-api-plugin", + "description": "Jenkins plug-that defines an API to mine and analyze data from a source control repository", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/forensics-api-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/forensics-api-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/forensics-api-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/forensics-api-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/forensics-api-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/forensics-api-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/forensics-api-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/forensics-api-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/forensics-api-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/forensics-api-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/forensics-api-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/forensics-api-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/forensics-api-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/forensics-api-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/forensics-api-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/forensics-api-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/forensics-api-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/forensics-api-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/forensics-api-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/forensics-api-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/forensics-api-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/forensics-api-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/forensics-api-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/forensics-api-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/forensics-api-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/forensics-api-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/forensics-api-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/forensics-api-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/forensics-api-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/forensics-api-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/forensics-api-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/forensics-api-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/forensics-api-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/forensics-api-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/forensics-api-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/forensics-api-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/forensics-api-plugin/deployments", + "created_at": "2019-06-12T22:10:38Z", + "updated_at": "2019-10-25T18:42:42Z", + "pushed_at": "2019-10-25T18:42:41Z", + "git_url": "git://github.com/jenkinsci/forensics-api-plugin.git", + "ssh_url": "git@github.com:jenkinsci/forensics-api-plugin.git", + "clone_url": "https://github.com/jenkinsci/forensics-api-plugin.git", + "svn_url": "https://github.com/jenkinsci/forensics-api-plugin", + "homepage": "", + "size": 255, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 3, + "open_issues": 2, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 191963208, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTE5NjMyMDg=", + "name": "workflow-cps-global-lib-http-plugin", + "full_name": "jenkinsci/workflow-cps-global-lib-http-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/workflow-cps-global-lib-http-plugin", + "description": "The goal of this plugin is to provide a way to retrieve shared libraries via HTTP(s) when referenced using the @Library declaration in a Jenkinsfile", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/workflow-cps-global-lib-http-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/workflow-cps-global-lib-http-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/workflow-cps-global-lib-http-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/workflow-cps-global-lib-http-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/workflow-cps-global-lib-http-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/workflow-cps-global-lib-http-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/workflow-cps-global-lib-http-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/workflow-cps-global-lib-http-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/workflow-cps-global-lib-http-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/workflow-cps-global-lib-http-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/workflow-cps-global-lib-http-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/workflow-cps-global-lib-http-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/workflow-cps-global-lib-http-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/workflow-cps-global-lib-http-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/workflow-cps-global-lib-http-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/workflow-cps-global-lib-http-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/workflow-cps-global-lib-http-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/workflow-cps-global-lib-http-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/workflow-cps-global-lib-http-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/workflow-cps-global-lib-http-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/workflow-cps-global-lib-http-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/workflow-cps-global-lib-http-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/workflow-cps-global-lib-http-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/workflow-cps-global-lib-http-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/workflow-cps-global-lib-http-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/workflow-cps-global-lib-http-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/workflow-cps-global-lib-http-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/workflow-cps-global-lib-http-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/workflow-cps-global-lib-http-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/workflow-cps-global-lib-http-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/workflow-cps-global-lib-http-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/workflow-cps-global-lib-http-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/workflow-cps-global-lib-http-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/workflow-cps-global-lib-http-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/workflow-cps-global-lib-http-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/workflow-cps-global-lib-http-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/workflow-cps-global-lib-http-plugin/deployments", + "created_at": "2019-06-14T15:06:29Z", + "updated_at": "2019-07-07T01:48:15Z", + "pushed_at": "2019-10-22T15:41:13Z", + "git_url": "git://github.com/jenkinsci/workflow-cps-global-lib-http-plugin.git", + "ssh_url": "git@github.com:jenkinsci/workflow-cps-global-lib-http-plugin.git", + "clone_url": "https://github.com/jenkinsci/workflow-cps-global-lib-http-plugin.git", + "svn_url": "https://github.com/jenkinsci/workflow-cps-global-lib-http-plugin", + "homepage": "", + "size": 84, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 1, + "open_issues": 2, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 192347914, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTIzNDc5MTQ=", + "name": "alauda-kubernetes-support-plugin", + "full_name": "jenkinsci/alauda-kubernetes-support-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/alauda-kubernetes-support-plugin", + "description": "This plugin allows users to config kubernetes and share configuration to other plugins.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/alauda-kubernetes-support-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/alauda-kubernetes-support-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/alauda-kubernetes-support-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/alauda-kubernetes-support-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/alauda-kubernetes-support-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/alauda-kubernetes-support-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/alauda-kubernetes-support-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/alauda-kubernetes-support-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/alauda-kubernetes-support-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/alauda-kubernetes-support-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/alauda-kubernetes-support-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/alauda-kubernetes-support-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/alauda-kubernetes-support-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/alauda-kubernetes-support-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/alauda-kubernetes-support-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/alauda-kubernetes-support-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/alauda-kubernetes-support-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/alauda-kubernetes-support-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/alauda-kubernetes-support-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/alauda-kubernetes-support-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/alauda-kubernetes-support-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/alauda-kubernetes-support-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/alauda-kubernetes-support-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/alauda-kubernetes-support-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/alauda-kubernetes-support-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/alauda-kubernetes-support-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/alauda-kubernetes-support-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/alauda-kubernetes-support-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/alauda-kubernetes-support-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/alauda-kubernetes-support-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/alauda-kubernetes-support-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/alauda-kubernetes-support-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/alauda-kubernetes-support-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/alauda-kubernetes-support-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/alauda-kubernetes-support-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/alauda-kubernetes-support-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/alauda-kubernetes-support-plugin/deployments", + "created_at": "2019-06-17T13:01:00Z", + "updated_at": "2019-09-23T11:05:57Z", + "pushed_at": "2019-09-23T11:05:55Z", + "git_url": "git://github.com/jenkinsci/alauda-kubernetes-support-plugin.git", + "ssh_url": "git@github.com:jenkinsci/alauda-kubernetes-support-plugin.git", + "clone_url": "https://github.com/jenkinsci/alauda-kubernetes-support-plugin.git", + "svn_url": "https://github.com/jenkinsci/alauda-kubernetes-support-plugin", + "homepage": "", + "size": 146, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 192590197, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTI1OTAxOTc=", + "name": "cryptomove-plugin", + "full_name": "jenkinsci/cryptomove-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/cryptomove-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/cryptomove-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/cryptomove-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/cryptomove-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/cryptomove-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/cryptomove-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/cryptomove-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/cryptomove-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/cryptomove-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/cryptomove-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/cryptomove-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/cryptomove-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/cryptomove-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/cryptomove-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/cryptomove-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/cryptomove-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/cryptomove-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/cryptomove-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/cryptomove-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/cryptomove-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/cryptomove-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/cryptomove-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/cryptomove-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/cryptomove-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/cryptomove-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/cryptomove-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/cryptomove-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/cryptomove-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/cryptomove-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/cryptomove-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/cryptomove-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/cryptomove-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/cryptomove-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/cryptomove-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/cryptomove-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/cryptomove-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/cryptomove-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/cryptomove-plugin/deployments", + "created_at": "2019-06-18T18:08:29Z", + "updated_at": "2019-08-28T16:00:57Z", + "pushed_at": "2019-08-28T16:00:55Z", + "git_url": "git://github.com/jenkinsci/cryptomove-plugin.git", + "ssh_url": "git@github.com:jenkinsci/cryptomove-plugin.git", + "clone_url": "https://github.com/jenkinsci/cryptomove-plugin.git", + "svn_url": "https://github.com/jenkinsci/cryptomove-plugin", + "homepage": null, + "size": 89, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 192819031, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTI4MTkwMzE=", + "name": "atlassian-jira-software-cloud-plugin", + "full_name": "jenkinsci/atlassian-jira-software-cloud-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/atlassian-jira-software-cloud-plugin", + "description": "Atlassian Jira Software Cloud Plugin https://wiki.jenkins.io/display/JENKINS/Atlassian+Jira+Software+Cloud+Plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/atlassian-jira-software-cloud-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/atlassian-jira-software-cloud-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/atlassian-jira-software-cloud-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/atlassian-jira-software-cloud-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/atlassian-jira-software-cloud-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/atlassian-jira-software-cloud-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/atlassian-jira-software-cloud-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/atlassian-jira-software-cloud-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/atlassian-jira-software-cloud-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/atlassian-jira-software-cloud-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/atlassian-jira-software-cloud-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/atlassian-jira-software-cloud-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/atlassian-jira-software-cloud-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/atlassian-jira-software-cloud-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/atlassian-jira-software-cloud-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/atlassian-jira-software-cloud-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/atlassian-jira-software-cloud-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/atlassian-jira-software-cloud-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/atlassian-jira-software-cloud-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/atlassian-jira-software-cloud-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/atlassian-jira-software-cloud-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/atlassian-jira-software-cloud-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/atlassian-jira-software-cloud-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/atlassian-jira-software-cloud-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/atlassian-jira-software-cloud-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/atlassian-jira-software-cloud-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/atlassian-jira-software-cloud-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/atlassian-jira-software-cloud-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/atlassian-jira-software-cloud-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/atlassian-jira-software-cloud-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/atlassian-jira-software-cloud-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/atlassian-jira-software-cloud-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/atlassian-jira-software-cloud-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/atlassian-jira-software-cloud-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/atlassian-jira-software-cloud-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/atlassian-jira-software-cloud-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/atlassian-jira-software-cloud-plugin/deployments", + "created_at": "2019-06-19T23:53:04Z", + "updated_at": "2019-10-23T02:43:12Z", + "pushed_at": "2019-10-23T02:43:14Z", + "git_url": "git://github.com/jenkinsci/atlassian-jira-software-cloud-plugin.git", + "ssh_url": "git@github.com:jenkinsci/atlassian-jira-software-cloud-plugin.git", + "clone_url": "https://github.com/jenkinsci/atlassian-jira-software-cloud-plugin.git", + "svn_url": "https://github.com/jenkinsci/atlassian-jira-software-cloud-plugin", + "homepage": "", + "size": 193, + "stargazers_count": 13, + "watchers_count": 13, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 3, + "open_issues": 0, + "watchers": 13, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 192912272, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTI5MTIyNzI=", + "name": "autoaction-step-plugin", + "full_name": "jenkinsci/autoaction-step-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/autoaction-step-plugin", + "description": "Run the auto actions from \"flat lines\" scripts based on Selenium WebDriver", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/autoaction-step-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/autoaction-step-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/autoaction-step-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/autoaction-step-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/autoaction-step-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/autoaction-step-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/autoaction-step-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/autoaction-step-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/autoaction-step-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/autoaction-step-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/autoaction-step-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/autoaction-step-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/autoaction-step-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/autoaction-step-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/autoaction-step-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/autoaction-step-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/autoaction-step-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/autoaction-step-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/autoaction-step-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/autoaction-step-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/autoaction-step-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/autoaction-step-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/autoaction-step-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/autoaction-step-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/autoaction-step-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/autoaction-step-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/autoaction-step-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/autoaction-step-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/autoaction-step-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/autoaction-step-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/autoaction-step-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/autoaction-step-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/autoaction-step-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/autoaction-step-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/autoaction-step-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/autoaction-step-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/autoaction-step-plugin/deployments", + "created_at": "2019-06-20T12:01:19Z", + "updated_at": "2019-06-28T12:30:47Z", + "pushed_at": "2019-06-28T12:30:45Z", + "git_url": "git://github.com/jenkinsci/autoaction-step-plugin.git", + "ssh_url": "git@github.com:jenkinsci/autoaction-step-plugin.git", + "clone_url": "https://github.com/jenkinsci/autoaction-step-plugin.git", + "svn_url": "https://github.com/jenkinsci/autoaction-step-plugin", + "homepage": null, + "size": 25, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 193127017, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTMxMjcwMTc=", + "name": "frugal-testing-plugin", + "full_name": "jenkinsci/frugal-testing-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/frugal-testing-plugin", + "description": "Jenkins plugin for Frugal Testing's webapp", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/frugal-testing-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/frugal-testing-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/frugal-testing-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/frugal-testing-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/frugal-testing-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/frugal-testing-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/frugal-testing-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/frugal-testing-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/frugal-testing-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/frugal-testing-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/frugal-testing-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/frugal-testing-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/frugal-testing-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/frugal-testing-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/frugal-testing-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/frugal-testing-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/frugal-testing-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/frugal-testing-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/frugal-testing-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/frugal-testing-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/frugal-testing-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/frugal-testing-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/frugal-testing-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/frugal-testing-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/frugal-testing-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/frugal-testing-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/frugal-testing-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/frugal-testing-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/frugal-testing-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/frugal-testing-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/frugal-testing-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/frugal-testing-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/frugal-testing-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/frugal-testing-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/frugal-testing-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/frugal-testing-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/frugal-testing-plugin/deployments", + "created_at": "2019-06-21T16:09:13Z", + "updated_at": "2019-07-08T11:06:22Z", + "pushed_at": "2019-07-08T11:06:20Z", + "git_url": "git://github.com/jenkinsci/frugal-testing-plugin.git", + "ssh_url": "git@github.com:jenkinsci/frugal-testing-plugin.git", + "clone_url": "https://github.com/jenkinsci/frugal-testing-plugin.git", + "svn_url": "https://github.com/jenkinsci/frugal-testing-plugin", + "homepage": null, + "size": 67, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 194018473, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTQwMTg0NzM=", + "name": "graphql-server-plugin", + "full_name": "jenkinsci/graphql-server-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/graphql-server-plugin", + "description": "A GraphQL implementation of the Jenkins API", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/graphql-server-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/graphql-server-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/graphql-server-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/graphql-server-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/graphql-server-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/graphql-server-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/graphql-server-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/graphql-server-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/graphql-server-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/graphql-server-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/graphql-server-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/graphql-server-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/graphql-server-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/graphql-server-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/graphql-server-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/graphql-server-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/graphql-server-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/graphql-server-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/graphql-server-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/graphql-server-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/graphql-server-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/graphql-server-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/graphql-server-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/graphql-server-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/graphql-server-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/graphql-server-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/graphql-server-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/graphql-server-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/graphql-server-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/graphql-server-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/graphql-server-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/graphql-server-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/graphql-server-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/graphql-server-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/graphql-server-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/graphql-server-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/graphql-server-plugin/deployments", + "created_at": "2019-06-27T03:46:34Z", + "updated_at": "2019-10-23T18:27:21Z", + "pushed_at": "2019-10-23T18:27:27Z", + "git_url": "git://github.com/jenkinsci/graphql-server-plugin.git", + "ssh_url": "git@github.com:jenkinsci/graphql-server-plugin.git", + "clone_url": "https://github.com/jenkinsci/graphql-server-plugin.git", + "svn_url": "https://github.com/jenkinsci/graphql-server-plugin", + "homepage": "https://plugins.jenkins.io/graphql-server", + "size": 820, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 2, + "open_issues": 0, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 194896555, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTQ4OTY1NTU=", + "name": "reqtify-plugin", + "full_name": "jenkinsci/reqtify-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/reqtify-plugin", + "description": "Reqtify plugin for Jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/reqtify-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/reqtify-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/reqtify-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/reqtify-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/reqtify-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/reqtify-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/reqtify-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/reqtify-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/reqtify-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/reqtify-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/reqtify-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/reqtify-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/reqtify-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/reqtify-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/reqtify-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/reqtify-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/reqtify-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/reqtify-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/reqtify-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/reqtify-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/reqtify-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/reqtify-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/reqtify-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/reqtify-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/reqtify-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/reqtify-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/reqtify-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/reqtify-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/reqtify-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/reqtify-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/reqtify-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/reqtify-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/reqtify-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/reqtify-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/reqtify-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/reqtify-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/reqtify-plugin/deployments", + "created_at": "2019-07-02T16:11:45Z", + "updated_at": "2019-10-04T11:58:34Z", + "pushed_at": "2019-10-04T11:58:32Z", + "git_url": "git://github.com/jenkinsci/reqtify-plugin.git", + "ssh_url": "git@github.com:jenkinsci/reqtify-plugin.git", + "clone_url": "https://github.com/jenkinsci/reqtify-plugin.git", + "svn_url": "https://github.com/jenkinsci/reqtify-plugin", + "homepage": "", + "size": 49, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 195846048, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTU4NDYwNDg=", + "name": "acunetix-360-scan-plugin", + "full_name": "jenkinsci/acunetix-360-scan-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/acunetix-360-scan-plugin", + "description": "Allows users to start security scans via Acunetix 360", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/acunetix-360-scan-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/acunetix-360-scan-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/acunetix-360-scan-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/acunetix-360-scan-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/acunetix-360-scan-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/acunetix-360-scan-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/acunetix-360-scan-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/acunetix-360-scan-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/acunetix-360-scan-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/acunetix-360-scan-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/acunetix-360-scan-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/acunetix-360-scan-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/acunetix-360-scan-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/acunetix-360-scan-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/acunetix-360-scan-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/acunetix-360-scan-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/acunetix-360-scan-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/acunetix-360-scan-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/acunetix-360-scan-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/acunetix-360-scan-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/acunetix-360-scan-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/acunetix-360-scan-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/acunetix-360-scan-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/acunetix-360-scan-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/acunetix-360-scan-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/acunetix-360-scan-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/acunetix-360-scan-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/acunetix-360-scan-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/acunetix-360-scan-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/acunetix-360-scan-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/acunetix-360-scan-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/acunetix-360-scan-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/acunetix-360-scan-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/acunetix-360-scan-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/acunetix-360-scan-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/acunetix-360-scan-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/acunetix-360-scan-plugin/deployments", + "created_at": "2019-07-08T16:04:25Z", + "updated_at": "2019-07-10T12:03:14Z", + "pushed_at": "2019-07-10T12:03:12Z", + "git_url": "git://github.com/jenkinsci/acunetix-360-scan-plugin.git", + "ssh_url": "git@github.com:jenkinsci/acunetix-360-scan-plugin.git", + "clone_url": "https://github.com/jenkinsci/acunetix-360-scan-plugin.git", + "svn_url": "https://github.com/jenkinsci/acunetix-360-scan-plugin", + "homepage": "https://www.acunetix.com", + "size": 30, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 195999538, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTU5OTk1Mzg=", + "name": "strict-crumb-issuer-plugin", + "full_name": "jenkinsci/strict-crumb-issuer-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/strict-crumb-issuer-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/strict-crumb-issuer-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/strict-crumb-issuer-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/strict-crumb-issuer-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/strict-crumb-issuer-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/strict-crumb-issuer-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/strict-crumb-issuer-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/strict-crumb-issuer-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/strict-crumb-issuer-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/strict-crumb-issuer-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/strict-crumb-issuer-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/strict-crumb-issuer-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/strict-crumb-issuer-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/strict-crumb-issuer-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/strict-crumb-issuer-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/strict-crumb-issuer-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/strict-crumb-issuer-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/strict-crumb-issuer-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/strict-crumb-issuer-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/strict-crumb-issuer-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/strict-crumb-issuer-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/strict-crumb-issuer-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/strict-crumb-issuer-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/strict-crumb-issuer-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/strict-crumb-issuer-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/strict-crumb-issuer-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/strict-crumb-issuer-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/strict-crumb-issuer-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/strict-crumb-issuer-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/strict-crumb-issuer-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/strict-crumb-issuer-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/strict-crumb-issuer-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/strict-crumb-issuer-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/strict-crumb-issuer-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/strict-crumb-issuer-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/strict-crumb-issuer-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/strict-crumb-issuer-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/strict-crumb-issuer-plugin/deployments", + "created_at": "2019-07-09T11:58:07Z", + "updated_at": "2019-07-18T15:09:32Z", + "pushed_at": "2019-07-18T09:20:37Z", + "git_url": "git://github.com/jenkinsci/strict-crumb-issuer-plugin.git", + "ssh_url": "git@github.com:jenkinsci/strict-crumb-issuer-plugin.git", + "clone_url": "https://github.com/jenkinsci/strict-crumb-issuer-plugin.git", + "svn_url": "https://github.com/jenkinsci/strict-crumb-issuer-plugin", + "homepage": null, + "size": 19, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 196042786, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTYwNDI3ODY=", + "name": "remote-file-plugin", + "full_name": "jenkinsci/remote-file-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/remote-file-plugin", + "description": "Remote File Plugin Repository", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/remote-file-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/remote-file-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/remote-file-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/remote-file-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/remote-file-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/remote-file-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/remote-file-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/remote-file-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/remote-file-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/remote-file-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/remote-file-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/remote-file-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/remote-file-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/remote-file-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/remote-file-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/remote-file-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/remote-file-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/remote-file-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/remote-file-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/remote-file-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/remote-file-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/remote-file-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/remote-file-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/remote-file-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/remote-file-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/remote-file-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/remote-file-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/remote-file-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/remote-file-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/remote-file-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/remote-file-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/remote-file-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/remote-file-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/remote-file-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/remote-file-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/remote-file-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/remote-file-plugin/deployments", + "created_at": "2019-07-09T16:10:53Z", + "updated_at": "2019-10-21T17:23:25Z", + "pushed_at": "2019-10-19T15:57:59Z", + "git_url": "git://github.com/jenkinsci/remote-file-plugin.git", + "ssh_url": "git@github.com:jenkinsci/remote-file-plugin.git", + "clone_url": "https://github.com/jenkinsci/remote-file-plugin.git", + "svn_url": "https://github.com/jenkinsci/remote-file-plugin", + "homepage": "", + "size": 305, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 2, + "open_issues": 0, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 196048675, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTYwNDg2NzU=", + "name": "bom", + "full_name": "jenkinsci/bom", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/bom", + "description": "JENKINS-47498: allow plugin dependencies to be specified via BOM", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/bom", + "forks_url": "https://api.github.com/repos/jenkinsci/bom/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/bom/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/bom/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/bom/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/bom/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/bom/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/bom/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/bom/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/bom/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/bom/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/bom/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/bom/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/bom/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/bom/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/bom/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/bom/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/bom/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/bom/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/bom/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/bom/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/bom/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/bom/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/bom/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/bom/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/bom/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/bom/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/bom/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/bom/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/bom/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/bom/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/bom/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/bom/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/bom/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/bom/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/bom/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/bom/deployments", + "created_at": "2019-07-09T16:50:20Z", + "updated_at": "2019-10-22T11:56:07Z", + "pushed_at": "2019-10-23T06:09:22Z", + "git_url": "git://github.com/jenkinsci/bom.git", + "ssh_url": "git@github.com:jenkinsci/bom.git", + "clone_url": "https://github.com/jenkinsci/bom.git", + "svn_url": "https://github.com/jenkinsci/bom", + "homepage": null, + "size": 296, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Shell", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 7, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 9, + "license": null, + "forks": 7, + "open_issues": 9, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 196085216, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTYwODUyMTY=", + "name": "meterian-scanner-plugin", + "full_name": "jenkinsci/meterian-scanner-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/meterian-scanner-plugin", + "description": "The official Meterian plugin for Jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/meterian-scanner-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/meterian-scanner-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/meterian-scanner-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/meterian-scanner-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/meterian-scanner-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/meterian-scanner-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/meterian-scanner-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/meterian-scanner-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/meterian-scanner-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/meterian-scanner-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/meterian-scanner-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/meterian-scanner-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/meterian-scanner-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/meterian-scanner-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/meterian-scanner-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/meterian-scanner-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/meterian-scanner-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/meterian-scanner-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/meterian-scanner-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/meterian-scanner-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/meterian-scanner-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/meterian-scanner-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/meterian-scanner-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/meterian-scanner-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/meterian-scanner-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/meterian-scanner-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/meterian-scanner-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/meterian-scanner-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/meterian-scanner-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/meterian-scanner-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/meterian-scanner-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/meterian-scanner-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/meterian-scanner-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/meterian-scanner-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/meterian-scanner-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/meterian-scanner-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/meterian-scanner-plugin/deployments", + "created_at": "2019-07-09T21:17:44Z", + "updated_at": "2019-07-10T08:30:58Z", + "pushed_at": "2019-07-30T22:46:51Z", + "git_url": "git://github.com/jenkinsci/meterian-scanner-plugin.git", + "ssh_url": "git@github.com:jenkinsci/meterian-scanner-plugin.git", + "clone_url": "https://github.com/jenkinsci/meterian-scanner-plugin.git", + "svn_url": "https://github.com/jenkinsci/meterian-scanner-plugin", + "homepage": null, + "size": 229, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 2, + "open_issues": 2, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 196230781, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTYyMzA3ODE=", + "name": "myappci-plugin", + "full_name": "jenkinsci/myappci-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/myappci-plugin", + "description": "Build plugin to publish mobile apps to MyAppCI", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/myappci-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/myappci-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/myappci-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/myappci-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/myappci-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/myappci-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/myappci-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/myappci-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/myappci-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/myappci-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/myappci-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/myappci-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/myappci-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/myappci-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/myappci-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/myappci-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/myappci-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/myappci-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/myappci-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/myappci-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/myappci-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/myappci-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/myappci-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/myappci-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/myappci-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/myappci-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/myappci-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/myappci-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/myappci-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/myappci-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/myappci-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/myappci-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/myappci-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/myappci-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/myappci-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/myappci-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/myappci-plugin/deployments", + "created_at": "2019-07-10T15:28:51Z", + "updated_at": "2019-07-17T09:59:27Z", + "pushed_at": "2019-07-23T06:10:54Z", + "git_url": "git://github.com/jenkinsci/myappci-plugin.git", + "ssh_url": "git@github.com:jenkinsci/myappci-plugin.git", + "clone_url": "https://github.com/jenkinsci/myappci-plugin.git", + "svn_url": "https://github.com/jenkinsci/myappci-plugin", + "homepage": null, + "size": 18985, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 196424253, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTY0MjQyNTM=", + "name": "sonarqube-generic-coverage-plugin", + "full_name": "jenkinsci/sonarqube-generic-coverage-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/sonarqube-generic-coverage-plugin", + "description": "Jenkins SonarQube generic coverage plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/sonarqube-generic-coverage-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/sonarqube-generic-coverage-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/sonarqube-generic-coverage-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/sonarqube-generic-coverage-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/sonarqube-generic-coverage-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/sonarqube-generic-coverage-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/sonarqube-generic-coverage-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/sonarqube-generic-coverage-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/sonarqube-generic-coverage-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/sonarqube-generic-coverage-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/sonarqube-generic-coverage-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/sonarqube-generic-coverage-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/sonarqube-generic-coverage-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/sonarqube-generic-coverage-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/sonarqube-generic-coverage-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/sonarqube-generic-coverage-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/sonarqube-generic-coverage-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/sonarqube-generic-coverage-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/sonarqube-generic-coverage-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/sonarqube-generic-coverage-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/sonarqube-generic-coverage-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/sonarqube-generic-coverage-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/sonarqube-generic-coverage-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/sonarqube-generic-coverage-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/sonarqube-generic-coverage-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/sonarqube-generic-coverage-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/sonarqube-generic-coverage-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/sonarqube-generic-coverage-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/sonarqube-generic-coverage-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/sonarqube-generic-coverage-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/sonarqube-generic-coverage-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/sonarqube-generic-coverage-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/sonarqube-generic-coverage-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/sonarqube-generic-coverage-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/sonarqube-generic-coverage-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/sonarqube-generic-coverage-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/sonarqube-generic-coverage-plugin/deployments", + "created_at": "2019-07-11T15:49:38Z", + "updated_at": "2019-07-29T08:35:25Z", + "pushed_at": "2019-07-29T08:35:23Z", + "git_url": "git://github.com/jenkinsci/sonarqube-generic-coverage-plugin.git", + "ssh_url": "git@github.com:jenkinsci/sonarqube-generic-coverage-plugin.git", + "clone_url": "https://github.com/jenkinsci/sonarqube-generic-coverage-plugin.git", + "svn_url": "https://github.com/jenkinsci/sonarqube-generic-coverage-plugin", + "homepage": "", + "size": 5, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 196527053, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTY1MjcwNTM=", + "name": "folder-auth-plugin", + "full_name": "jenkinsci/folder-auth-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/folder-auth-plugin", + "description": "Authorization Plugin for Jenkins that works on folders", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/folder-auth-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/folder-auth-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/folder-auth-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/folder-auth-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/folder-auth-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/folder-auth-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/folder-auth-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/folder-auth-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/folder-auth-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/folder-auth-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/folder-auth-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/folder-auth-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/folder-auth-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/folder-auth-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/folder-auth-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/folder-auth-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/folder-auth-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/folder-auth-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/folder-auth-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/folder-auth-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/folder-auth-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/folder-auth-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/folder-auth-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/folder-auth-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/folder-auth-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/folder-auth-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/folder-auth-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/folder-auth-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/folder-auth-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/folder-auth-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/folder-auth-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/folder-auth-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/folder-auth-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/folder-auth-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/folder-auth-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/folder-auth-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/folder-auth-plugin/deployments", + "created_at": "2019-07-12T07:05:13Z", + "updated_at": "2019-10-14T13:23:24Z", + "pushed_at": "2019-10-25T10:15:03Z", + "git_url": "git://github.com/jenkinsci/folder-auth-plugin.git", + "ssh_url": "git@github.com:jenkinsci/folder-auth-plugin.git", + "clone_url": "https://github.com/jenkinsci/folder-auth-plugin.git", + "svn_url": "https://github.com/jenkinsci/folder-auth-plugin", + "homepage": "https://plugins.jenkins.io/folder-auth", + "size": 448, + "stargazers_count": 7, + "watchers_count": 7, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 4, + "open_issues": 3, + "watchers": 7, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 196585523, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTY1ODU1MjM=", + "name": "gitlab-branch-source-plugin", + "full_name": "jenkinsci/gitlab-branch-source-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/gitlab-branch-source-plugin", + "description": "A Jenkins Plugin for GitLab Multibranch Pipeline jobs and Folder Organization", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/gitlab-branch-source-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/gitlab-branch-source-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/gitlab-branch-source-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/gitlab-branch-source-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/gitlab-branch-source-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/gitlab-branch-source-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/gitlab-branch-source-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/gitlab-branch-source-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/gitlab-branch-source-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/gitlab-branch-source-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/gitlab-branch-source-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/gitlab-branch-source-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/gitlab-branch-source-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/gitlab-branch-source-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/gitlab-branch-source-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/gitlab-branch-source-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/gitlab-branch-source-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/gitlab-branch-source-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/gitlab-branch-source-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/gitlab-branch-source-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/gitlab-branch-source-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/gitlab-branch-source-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/gitlab-branch-source-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/gitlab-branch-source-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/gitlab-branch-source-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/gitlab-branch-source-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/gitlab-branch-source-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/gitlab-branch-source-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/gitlab-branch-source-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/gitlab-branch-source-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/gitlab-branch-source-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/gitlab-branch-source-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/gitlab-branch-source-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/gitlab-branch-source-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/gitlab-branch-source-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/gitlab-branch-source-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/gitlab-branch-source-plugin/deployments", + "created_at": "2019-07-12T13:38:18Z", + "updated_at": "2019-10-24T16:02:08Z", + "pushed_at": "2019-10-25T16:31:41Z", + "git_url": "git://github.com/jenkinsci/gitlab-branch-source-plugin.git", + "ssh_url": "git@github.com:jenkinsci/gitlab-branch-source-plugin.git", + "clone_url": "https://github.com/jenkinsci/gitlab-branch-source-plugin.git", + "svn_url": "https://github.com/jenkinsci/gitlab-branch-source-plugin", + "homepage": "https://plugins.jenkins.io/gitlab-branch-source", + "size": 1081, + "stargazers_count": 34, + "watchers_count": 34, + "language": "Java", + "has_issues": false, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 11, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 11, + "open_issues": 3, + "watchers": 34, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 196616494, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTY2MTY0OTQ=", + "name": "sweagle-plugin", + "full_name": "jenkinsci/sweagle-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/sweagle-plugin", + "description": "SWEAGLE provides a quality gate for your configuration data. Includes versioning, management, and validation of all types of config data.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/sweagle-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/sweagle-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/sweagle-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/sweagle-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/sweagle-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/sweagle-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/sweagle-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/sweagle-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/sweagle-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/sweagle-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/sweagle-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/sweagle-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/sweagle-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/sweagle-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/sweagle-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/sweagle-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/sweagle-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/sweagle-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/sweagle-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/sweagle-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/sweagle-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/sweagle-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/sweagle-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/sweagle-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/sweagle-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/sweagle-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/sweagle-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/sweagle-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/sweagle-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/sweagle-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/sweagle-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/sweagle-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/sweagle-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/sweagle-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/sweagle-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/sweagle-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/sweagle-plugin/deployments", + "created_at": "2019-07-12T17:11:17Z", + "updated_at": "2019-10-16T15:15:56Z", + "pushed_at": "2019-10-16T15:15:54Z", + "git_url": "git://github.com/jenkinsci/sweagle-plugin.git", + "ssh_url": "git@github.com:jenkinsci/sweagle-plugin.git", + "clone_url": "https://github.com/jenkinsci/sweagle-plugin.git", + "svn_url": "https://github.com/jenkinsci/sweagle-plugin", + "homepage": "https://www.sweagle.com", + "size": 441, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 7, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 7, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 196794666, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTY3OTQ2NjY=", + "name": "beagle-security-plugin", + "full_name": "jenkinsci/beagle-security-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/beagle-security-plugin", + "description": "Jenkins Plugin to trigger Beagle Security test.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/beagle-security-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/beagle-security-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/beagle-security-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/beagle-security-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/beagle-security-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/beagle-security-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/beagle-security-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/beagle-security-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/beagle-security-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/beagle-security-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/beagle-security-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/beagle-security-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/beagle-security-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/beagle-security-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/beagle-security-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/beagle-security-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/beagle-security-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/beagle-security-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/beagle-security-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/beagle-security-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/beagle-security-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/beagle-security-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/beagle-security-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/beagle-security-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/beagle-security-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/beagle-security-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/beagle-security-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/beagle-security-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/beagle-security-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/beagle-security-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/beagle-security-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/beagle-security-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/beagle-security-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/beagle-security-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/beagle-security-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/beagle-security-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/beagle-security-plugin/deployments", + "created_at": "2019-07-14T04:46:57Z", + "updated_at": "2019-07-22T14:01:42Z", + "pushed_at": "2019-07-22T14:01:40Z", + "git_url": "git://github.com/jenkinsci/beagle-security-plugin.git", + "ssh_url": "git@github.com:jenkinsci/beagle-security-plugin.git", + "clone_url": "https://github.com/jenkinsci/beagle-security-plugin.git", + "svn_url": "https://github.com/jenkinsci/beagle-security-plugin", + "homepage": "", + "size": 26, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 198004261, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTgwMDQyNjE=", + "name": "fast-track-plugin", + "full_name": "jenkinsci/fast-track-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/fast-track-plugin", + "description": "Optimize the build queue using some simple (configurable) rules.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/fast-track-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/fast-track-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/fast-track-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/fast-track-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/fast-track-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/fast-track-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/fast-track-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/fast-track-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/fast-track-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/fast-track-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/fast-track-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/fast-track-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/fast-track-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/fast-track-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/fast-track-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/fast-track-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/fast-track-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/fast-track-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/fast-track-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/fast-track-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/fast-track-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/fast-track-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/fast-track-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/fast-track-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/fast-track-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/fast-track-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/fast-track-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/fast-track-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/fast-track-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/fast-track-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/fast-track-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/fast-track-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/fast-track-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/fast-track-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/fast-track-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/fast-track-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/fast-track-plugin/deployments", + "created_at": "2019-07-21T02:44:43Z", + "updated_at": "2019-07-23T10:17:37Z", + "pushed_at": "2019-07-22T17:46:59Z", + "git_url": "git://github.com/jenkinsci/fast-track-plugin.git", + "ssh_url": "git@github.com:jenkinsci/fast-track-plugin.git", + "clone_url": "https://github.com/jenkinsci/fast-track-plugin.git", + "svn_url": "https://github.com/jenkinsci/fast-track-plugin", + "homepage": "", + "size": 73, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 198296376, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTgyOTYzNzY=", + "name": "leo-auth-plugin", + "full_name": "jenkinsci/leo-auth-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/leo-auth-plugin", + "description": "jenkins auth with mysql or jwt", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/leo-auth-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/leo-auth-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/leo-auth-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/leo-auth-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/leo-auth-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/leo-auth-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/leo-auth-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/leo-auth-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/leo-auth-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/leo-auth-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/leo-auth-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/leo-auth-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/leo-auth-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/leo-auth-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/leo-auth-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/leo-auth-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/leo-auth-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/leo-auth-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/leo-auth-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/leo-auth-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/leo-auth-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/leo-auth-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/leo-auth-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/leo-auth-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/leo-auth-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/leo-auth-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/leo-auth-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/leo-auth-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/leo-auth-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/leo-auth-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/leo-auth-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/leo-auth-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/leo-auth-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/leo-auth-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/leo-auth-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/leo-auth-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/leo-auth-plugin/deployments", + "created_at": "2019-07-22T20:20:34Z", + "updated_at": "2019-07-26T03:19:20Z", + "pushed_at": "2019-07-23T08:28:55Z", + "git_url": "git://github.com/jenkinsci/leo-auth-plugin.git", + "ssh_url": "git@github.com:jenkinsci/leo-auth-plugin.git", + "clone_url": "https://github.com/jenkinsci/leo-auth-plugin.git", + "svn_url": "https://github.com/jenkinsci/leo-auth-plugin", + "homepage": null, + "size": 27, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 198428624, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTg0Mjg2MjQ=", + "name": "qy-wechat-notification-plugin", + "full_name": "jenkinsci/qy-wechat-notification-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/qy-wechat-notification-plugin", + "description": "企业微信Jenkins构建通知插件", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/qy-wechat-notification-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/qy-wechat-notification-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/qy-wechat-notification-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/qy-wechat-notification-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/qy-wechat-notification-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/qy-wechat-notification-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/qy-wechat-notification-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/qy-wechat-notification-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/qy-wechat-notification-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/qy-wechat-notification-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/qy-wechat-notification-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/qy-wechat-notification-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/qy-wechat-notification-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/qy-wechat-notification-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/qy-wechat-notification-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/qy-wechat-notification-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/qy-wechat-notification-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/qy-wechat-notification-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/qy-wechat-notification-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/qy-wechat-notification-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/qy-wechat-notification-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/qy-wechat-notification-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/qy-wechat-notification-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/qy-wechat-notification-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/qy-wechat-notification-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/qy-wechat-notification-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/qy-wechat-notification-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/qy-wechat-notification-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/qy-wechat-notification-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/qy-wechat-notification-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/qy-wechat-notification-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/qy-wechat-notification-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/qy-wechat-notification-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/qy-wechat-notification-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/qy-wechat-notification-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/qy-wechat-notification-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/qy-wechat-notification-plugin/deployments", + "created_at": "2019-07-23T12:43:50Z", + "updated_at": "2019-10-24T11:48:32Z", + "pushed_at": "2019-10-12T01:50:55Z", + "git_url": "git://github.com/jenkinsci/qy-wechat-notification-plugin.git", + "ssh_url": "git@github.com:jenkinsci/qy-wechat-notification-plugin.git", + "clone_url": "https://github.com/jenkinsci/qy-wechat-notification-plugin.git", + "svn_url": "https://github.com/jenkinsci/qy-wechat-notification-plugin", + "homepage": "", + "size": 48, + "stargazers_count": 16, + "watchers_count": 16, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 10, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 10, + "open_issues": 0, + "watchers": 16, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 198784085, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTg3ODQwODU=", + "name": "custom-build-properties-plugin", + "full_name": "jenkinsci/custom-build-properties-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/custom-build-properties-plugin", + "description": "Jenkins Plugin - Custom Build Properties", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/custom-build-properties-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/custom-build-properties-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/custom-build-properties-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/custom-build-properties-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/custom-build-properties-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/custom-build-properties-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/custom-build-properties-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/custom-build-properties-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/custom-build-properties-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/custom-build-properties-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/custom-build-properties-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/custom-build-properties-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/custom-build-properties-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/custom-build-properties-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/custom-build-properties-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/custom-build-properties-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/custom-build-properties-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/custom-build-properties-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/custom-build-properties-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/custom-build-properties-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/custom-build-properties-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/custom-build-properties-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/custom-build-properties-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/custom-build-properties-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/custom-build-properties-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/custom-build-properties-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/custom-build-properties-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/custom-build-properties-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/custom-build-properties-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/custom-build-properties-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/custom-build-properties-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/custom-build-properties-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/custom-build-properties-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/custom-build-properties-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/custom-build-properties-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/custom-build-properties-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/custom-build-properties-plugin/deployments", + "created_at": "2019-07-25T07:49:30Z", + "updated_at": "2019-07-26T14:27:44Z", + "pushed_at": "2019-07-26T14:27:42Z", + "git_url": "git://github.com/jenkinsci/custom-build-properties-plugin.git", + "ssh_url": "git@github.com:jenkinsci/custom-build-properties-plugin.git", + "clone_url": "https://github.com/jenkinsci/custom-build-properties-plugin.git", + "svn_url": "https://github.com/jenkinsci/custom-build-properties-plugin", + "homepage": null, + "size": 49, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 198803784, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTg4MDM3ODQ=", + "name": "atlassian-bitbucket-server-integration-plugin", + "full_name": "jenkinsci/atlassian-bitbucket-server-integration-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/atlassian-bitbucket-server-integration-plugin", + "description": "Atlassian supported Jenkins plugin to integrate Jenkins with Atlassian's Bitbucket Server", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/atlassian-bitbucket-server-integration-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/atlassian-bitbucket-server-integration-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/atlassian-bitbucket-server-integration-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/atlassian-bitbucket-server-integration-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/atlassian-bitbucket-server-integration-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/atlassian-bitbucket-server-integration-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/atlassian-bitbucket-server-integration-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/atlassian-bitbucket-server-integration-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/atlassian-bitbucket-server-integration-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/atlassian-bitbucket-server-integration-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/atlassian-bitbucket-server-integration-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/atlassian-bitbucket-server-integration-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/atlassian-bitbucket-server-integration-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/atlassian-bitbucket-server-integration-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/atlassian-bitbucket-server-integration-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/atlassian-bitbucket-server-integration-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/atlassian-bitbucket-server-integration-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/atlassian-bitbucket-server-integration-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/atlassian-bitbucket-server-integration-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/atlassian-bitbucket-server-integration-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/atlassian-bitbucket-server-integration-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/atlassian-bitbucket-server-integration-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/atlassian-bitbucket-server-integration-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/atlassian-bitbucket-server-integration-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/atlassian-bitbucket-server-integration-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/atlassian-bitbucket-server-integration-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/atlassian-bitbucket-server-integration-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/atlassian-bitbucket-server-integration-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/atlassian-bitbucket-server-integration-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/atlassian-bitbucket-server-integration-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/atlassian-bitbucket-server-integration-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/atlassian-bitbucket-server-integration-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/atlassian-bitbucket-server-integration-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/atlassian-bitbucket-server-integration-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/atlassian-bitbucket-server-integration-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/atlassian-bitbucket-server-integration-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/atlassian-bitbucket-server-integration-plugin/deployments", + "created_at": "2019-07-25T09:45:44Z", + "updated_at": "2019-10-25T03:04:16Z", + "pushed_at": "2019-10-25T03:04:14Z", + "git_url": "git://github.com/jenkinsci/atlassian-bitbucket-server-integration-plugin.git", + "ssh_url": "git@github.com:jenkinsci/atlassian-bitbucket-server-integration-plugin.git", + "clone_url": "https://github.com/jenkinsci/atlassian-bitbucket-server-integration-plugin.git", + "svn_url": "https://github.com/jenkinsci/atlassian-bitbucket-server-integration-plugin", + "homepage": null, + "size": 512, + "stargazers_count": 9, + "watchers_count": 9, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 2, + "open_issues": 0, + "watchers": 9, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 199720895, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTk3MjA4OTU=", + "name": "amqp-build-trigger-plugin", + "full_name": "jenkinsci/amqp-build-trigger-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/amqp-build-trigger-plugin", + "description": "Build trigger for Jenkins which triggers builds based on JMS messages received broker.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/amqp-build-trigger-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/amqp-build-trigger-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/amqp-build-trigger-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/amqp-build-trigger-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/amqp-build-trigger-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/amqp-build-trigger-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/amqp-build-trigger-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/amqp-build-trigger-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/amqp-build-trigger-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/amqp-build-trigger-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/amqp-build-trigger-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/amqp-build-trigger-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/amqp-build-trigger-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/amqp-build-trigger-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/amqp-build-trigger-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/amqp-build-trigger-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/amqp-build-trigger-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/amqp-build-trigger-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/amqp-build-trigger-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/amqp-build-trigger-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/amqp-build-trigger-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/amqp-build-trigger-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/amqp-build-trigger-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/amqp-build-trigger-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/amqp-build-trigger-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/amqp-build-trigger-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/amqp-build-trigger-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/amqp-build-trigger-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/amqp-build-trigger-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/amqp-build-trigger-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/amqp-build-trigger-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/amqp-build-trigger-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/amqp-build-trigger-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/amqp-build-trigger-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/amqp-build-trigger-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/amqp-build-trigger-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/amqp-build-trigger-plugin/deployments", + "created_at": "2019-07-30T20:15:11Z", + "updated_at": "2019-08-27T14:34:40Z", + "pushed_at": "2019-08-27T14:34:38Z", + "git_url": "git://github.com/jenkinsci/amqp-build-trigger-plugin.git", + "ssh_url": "git@github.com:jenkinsci/amqp-build-trigger-plugin.git", + "clone_url": "https://github.com/jenkinsci/amqp-build-trigger-plugin.git", + "svn_url": "https://github.com/jenkinsci/amqp-build-trigger-plugin", + "homepage": null, + "size": 438, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 200445306, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDA0NDUzMDY=", + "name": "thycotic-vault-plugin", + "full_name": "jenkinsci/thycotic-vault-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/thycotic-vault-plugin", + "description": "DevOps Secrets Vault Jenkins Plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/thycotic-vault-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/thycotic-vault-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/thycotic-vault-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/thycotic-vault-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/thycotic-vault-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/thycotic-vault-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/thycotic-vault-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/thycotic-vault-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/thycotic-vault-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/thycotic-vault-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/thycotic-vault-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/thycotic-vault-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/thycotic-vault-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/thycotic-vault-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/thycotic-vault-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/thycotic-vault-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/thycotic-vault-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/thycotic-vault-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/thycotic-vault-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/thycotic-vault-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/thycotic-vault-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/thycotic-vault-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/thycotic-vault-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/thycotic-vault-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/thycotic-vault-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/thycotic-vault-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/thycotic-vault-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/thycotic-vault-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/thycotic-vault-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/thycotic-vault-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/thycotic-vault-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/thycotic-vault-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/thycotic-vault-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/thycotic-vault-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/thycotic-vault-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/thycotic-vault-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/thycotic-vault-plugin/deployments", + "created_at": "2019-08-04T03:31:57Z", + "updated_at": "2019-08-12T14:28:44Z", + "pushed_at": "2019-08-12T14:28:42Z", + "git_url": "git://github.com/jenkinsci/thycotic-vault-plugin.git", + "ssh_url": "git@github.com:jenkinsci/thycotic-vault-plugin.git", + "clone_url": "https://github.com/jenkinsci/thycotic-vault-plugin.git", + "svn_url": "https://github.com/jenkinsci/thycotic-vault-plugin", + "homepage": null, + "size": 182, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 200445371, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDA0NDUzNzE=", + "name": "instana-plugin", + "full_name": "jenkinsci/instana-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/instana-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/instana-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/instana-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/instana-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/instana-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/instana-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/instana-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/instana-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/instana-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/instana-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/instana-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/instana-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/instana-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/instana-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/instana-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/instana-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/instana-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/instana-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/instana-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/instana-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/instana-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/instana-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/instana-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/instana-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/instana-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/instana-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/instana-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/instana-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/instana-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/instana-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/instana-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/instana-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/instana-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/instana-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/instana-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/instana-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/instana-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/instana-plugin/deployments", + "created_at": "2019-08-04T03:32:52Z", + "updated_at": "2019-10-02T07:30:14Z", + "pushed_at": "2019-10-04T15:09:06Z", + "git_url": "git://github.com/jenkinsci/instana-plugin.git", + "ssh_url": "git@github.com:jenkinsci/instana-plugin.git", + "clone_url": "https://github.com/jenkinsci/instana-plugin.git", + "svn_url": "https://github.com/jenkinsci/instana-plugin", + "homepage": null, + "size": 557, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 3, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 200649961, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDA2NDk5NjE=", + "name": "flock-plugin", + "full_name": "jenkinsci/flock-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/flock-plugin", + "description": "Flock notification plugin for Jenkins", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/flock-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/flock-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/flock-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/flock-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/flock-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/flock-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/flock-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/flock-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/flock-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/flock-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/flock-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/flock-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/flock-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/flock-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/flock-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/flock-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/flock-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/flock-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/flock-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/flock-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/flock-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/flock-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/flock-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/flock-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/flock-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/flock-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/flock-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/flock-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/flock-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/flock-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/flock-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/flock-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/flock-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/flock-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/flock-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/flock-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/flock-plugin/deployments", + "created_at": "2019-08-05T12:20:06Z", + "updated_at": "2019-08-31T22:36:25Z", + "pushed_at": "2019-09-10T09:47:37Z", + "git_url": "git://github.com/jenkinsci/flock-plugin.git", + "ssh_url": "git@github.com:jenkinsci/flock-plugin.git", + "clone_url": "https://github.com/jenkinsci/flock-plugin.git", + "svn_url": "https://github.com/jenkinsci/flock-plugin", + "homepage": null, + "size": 76, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 201075311, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDEwNzUzMTE=", + "name": "macstadium-orka-plugin", + "full_name": "jenkinsci/macstadium-orka-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/macstadium-orka-plugin", + "description": "MacStadium Orka Jenkins Plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/macstadium-orka-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/macstadium-orka-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/macstadium-orka-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/macstadium-orka-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/macstadium-orka-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/macstadium-orka-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/macstadium-orka-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/macstadium-orka-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/macstadium-orka-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/macstadium-orka-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/macstadium-orka-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/macstadium-orka-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/macstadium-orka-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/macstadium-orka-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/macstadium-orka-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/macstadium-orka-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/macstadium-orka-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/macstadium-orka-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/macstadium-orka-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/macstadium-orka-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/macstadium-orka-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/macstadium-orka-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/macstadium-orka-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/macstadium-orka-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/macstadium-orka-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/macstadium-orka-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/macstadium-orka-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/macstadium-orka-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/macstadium-orka-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/macstadium-orka-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/macstadium-orka-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/macstadium-orka-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/macstadium-orka-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/macstadium-orka-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/macstadium-orka-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/macstadium-orka-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/macstadium-orka-plugin/deployments", + "created_at": "2019-08-07T15:15:36Z", + "updated_at": "2019-10-01T07:44:35Z", + "pushed_at": "2019-10-01T07:44:33Z", + "git_url": "git://github.com/jenkinsci/macstadium-orka-plugin.git", + "ssh_url": "git@github.com:jenkinsci/macstadium-orka-plugin.git", + "clone_url": "https://github.com/jenkinsci/macstadium-orka-plugin.git", + "svn_url": "https://github.com/jenkinsci/macstadium-orka-plugin", + "homepage": "https://wiki.jenkins.io/display/JENKINS/Orka+by+MacStadium", + "size": 83, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 202191175, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDIxOTExNzU=", + "name": "websocketin-notification-plugin", + "full_name": "jenkinsci/websocketin-notification-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/websocketin-notification-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/websocketin-notification-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/websocketin-notification-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/websocketin-notification-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/websocketin-notification-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/websocketin-notification-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/websocketin-notification-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/websocketin-notification-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/websocketin-notification-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/websocketin-notification-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/websocketin-notification-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/websocketin-notification-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/websocketin-notification-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/websocketin-notification-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/websocketin-notification-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/websocketin-notification-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/websocketin-notification-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/websocketin-notification-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/websocketin-notification-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/websocketin-notification-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/websocketin-notification-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/websocketin-notification-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/websocketin-notification-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/websocketin-notification-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/websocketin-notification-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/websocketin-notification-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/websocketin-notification-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/websocketin-notification-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/websocketin-notification-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/websocketin-notification-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/websocketin-notification-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/websocketin-notification-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/websocketin-notification-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/websocketin-notification-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/websocketin-notification-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/websocketin-notification-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/websocketin-notification-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/websocketin-notification-plugin/deployments", + "created_at": "2019-08-13T17:17:17Z", + "updated_at": "2019-08-16T12:24:30Z", + "pushed_at": "2019-08-16T12:24:28Z", + "git_url": "git://github.com/jenkinsci/websocketin-notification-plugin.git", + "ssh_url": "git@github.com:jenkinsci/websocketin-notification-plugin.git", + "clone_url": "https://github.com/jenkinsci/websocketin-notification-plugin.git", + "svn_url": "https://github.com/jenkinsci/websocketin-notification-plugin", + "homepage": null, + "size": 11, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 202228195, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDIyMjgxOTU=", + "name": "headspin-plugin", + "full_name": "jenkinsci/headspin-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/headspin-plugin", + "description": "HeadSpin Jenkins Plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/headspin-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/headspin-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/headspin-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/headspin-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/headspin-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/headspin-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/headspin-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/headspin-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/headspin-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/headspin-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/headspin-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/headspin-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/headspin-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/headspin-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/headspin-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/headspin-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/headspin-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/headspin-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/headspin-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/headspin-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/headspin-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/headspin-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/headspin-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/headspin-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/headspin-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/headspin-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/headspin-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/headspin-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/headspin-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/headspin-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/headspin-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/headspin-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/headspin-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/headspin-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/headspin-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/headspin-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/headspin-plugin/deployments", + "created_at": "2019-08-13T21:45:04Z", + "updated_at": "2019-08-19T01:29:53Z", + "pushed_at": "2019-08-13T22:06:45Z", + "git_url": "git://github.com/jenkinsci/headspin-plugin.git", + "ssh_url": "git@github.com:jenkinsci/headspin-plugin.git", + "clone_url": "https://github.com/jenkinsci/headspin-plugin.git", + "svn_url": "https://github.com/jenkinsci/headspin-plugin", + "homepage": null, + "size": 468, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 202472512, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDI0NzI1MTI=", + "name": "react-plugin-template", + "full_name": "jenkinsci/react-plugin-template", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/react-plugin-template", + "description": "A boilerplate to build a jenkins plugin with react-based UI .", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/react-plugin-template", + "forks_url": "https://api.github.com/repos/jenkinsci/react-plugin-template/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/react-plugin-template/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/react-plugin-template/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/react-plugin-template/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/react-plugin-template/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/react-plugin-template/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/react-plugin-template/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/react-plugin-template/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/react-plugin-template/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/react-plugin-template/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/react-plugin-template/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/react-plugin-template/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/react-plugin-template/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/react-plugin-template/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/react-plugin-template/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/react-plugin-template/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/react-plugin-template/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/react-plugin-template/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/react-plugin-template/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/react-plugin-template/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/react-plugin-template/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/react-plugin-template/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/react-plugin-template/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/react-plugin-template/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/react-plugin-template/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/react-plugin-template/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/react-plugin-template/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/react-plugin-template/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/react-plugin-template/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/react-plugin-template/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/react-plugin-template/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/react-plugin-template/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/react-plugin-template/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/react-plugin-template/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/react-plugin-template/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/react-plugin-template/deployments", + "created_at": "2019-08-15T04:12:20Z", + "updated_at": "2019-10-24T02:14:01Z", + "pushed_at": "2019-08-22T16:31:42Z", + "git_url": "git://github.com/jenkinsci/react-plugin-template.git", + "ssh_url": "git@github.com:jenkinsci/react-plugin-template.git", + "clone_url": "https://github.com/jenkinsci/react-plugin-template.git", + "svn_url": "https://github.com/jenkinsci/react-plugin-template", + "homepage": null, + "size": 11140, + "stargazers_count": 9, + "watchers_count": 9, + "language": "JavaScript", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 9, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 203138933, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDMxMzg5MzM=", + "name": "winsw-maven-packaging", + "full_name": "jenkinsci/winsw-maven-packaging", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/winsw-maven-packaging", + "description": "Maven Packaging for Windows Service Wrapper", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/winsw-maven-packaging", + "forks_url": "https://api.github.com/repos/jenkinsci/winsw-maven-packaging/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/winsw-maven-packaging/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/winsw-maven-packaging/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/winsw-maven-packaging/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/winsw-maven-packaging/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/winsw-maven-packaging/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/winsw-maven-packaging/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/winsw-maven-packaging/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/winsw-maven-packaging/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/winsw-maven-packaging/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/winsw-maven-packaging/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/winsw-maven-packaging/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/winsw-maven-packaging/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/winsw-maven-packaging/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/winsw-maven-packaging/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/winsw-maven-packaging/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/winsw-maven-packaging/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/winsw-maven-packaging/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/winsw-maven-packaging/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/winsw-maven-packaging/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/winsw-maven-packaging/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/winsw-maven-packaging/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/winsw-maven-packaging/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/winsw-maven-packaging/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/winsw-maven-packaging/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/winsw-maven-packaging/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/winsw-maven-packaging/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/winsw-maven-packaging/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/winsw-maven-packaging/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/winsw-maven-packaging/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/winsw-maven-packaging/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/winsw-maven-packaging/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/winsw-maven-packaging/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/winsw-maven-packaging/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/winsw-maven-packaging/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/winsw-maven-packaging/deployments", + "created_at": "2019-08-19T09:14:52Z", + "updated_at": "2019-08-21T15:15:16Z", + "pushed_at": "2019-08-21T15:15:14Z", + "git_url": "git://github.com/jenkinsci/winsw-maven-packaging.git", + "ssh_url": "git@github.com:jenkinsci/winsw-maven-packaging.git", + "clone_url": "https://github.com/jenkinsci/winsw-maven-packaging.git", + "svn_url": "https://github.com/jenkinsci/winsw-maven-packaging", + "homepage": null, + "size": 19, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 204016850, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDQwMTY4NTA=", + "name": "pipeline-restful-api-plugin", + "full_name": "jenkinsci/pipeline-restful-api-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pipeline-restful-api-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/pipeline-restful-api-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pipeline-restful-api-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pipeline-restful-api-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pipeline-restful-api-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pipeline-restful-api-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pipeline-restful-api-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pipeline-restful-api-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pipeline-restful-api-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pipeline-restful-api-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pipeline-restful-api-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pipeline-restful-api-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pipeline-restful-api-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pipeline-restful-api-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pipeline-restful-api-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pipeline-restful-api-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pipeline-restful-api-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pipeline-restful-api-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pipeline-restful-api-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pipeline-restful-api-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pipeline-restful-api-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pipeline-restful-api-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pipeline-restful-api-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pipeline-restful-api-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pipeline-restful-api-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pipeline-restful-api-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pipeline-restful-api-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pipeline-restful-api-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pipeline-restful-api-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pipeline-restful-api-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pipeline-restful-api-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pipeline-restful-api-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pipeline-restful-api-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pipeline-restful-api-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pipeline-restful-api-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pipeline-restful-api-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pipeline-restful-api-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pipeline-restful-api-plugin/deployments", + "created_at": "2019-08-23T14:43:18Z", + "updated_at": "2019-09-11T09:05:15Z", + "pushed_at": "2019-10-24T10:31:36Z", + "git_url": "git://github.com/jenkinsci/pipeline-restful-api-plugin.git", + "ssh_url": "git@github.com:jenkinsci/pipeline-restful-api-plugin.git", + "clone_url": "https://github.com/jenkinsci/pipeline-restful-api-plugin.git", + "svn_url": "https://github.com/jenkinsci/pipeline-restful-api-plugin", + "homepage": null, + "size": 47, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 1, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 206107283, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDYxMDcyODM=", + "name": "multibranch-action-triggers-plugin", + "full_name": "jenkinsci/multibranch-action-triggers-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/multibranch-action-triggers-plugin", + "description": "MultiBranch Actions Trigger Plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/multibranch-action-triggers-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/multibranch-action-triggers-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/multibranch-action-triggers-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/multibranch-action-triggers-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/multibranch-action-triggers-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/multibranch-action-triggers-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/multibranch-action-triggers-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/multibranch-action-triggers-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/multibranch-action-triggers-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/multibranch-action-triggers-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/multibranch-action-triggers-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/multibranch-action-triggers-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/multibranch-action-triggers-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/multibranch-action-triggers-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/multibranch-action-triggers-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/multibranch-action-triggers-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/multibranch-action-triggers-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/multibranch-action-triggers-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/multibranch-action-triggers-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/multibranch-action-triggers-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/multibranch-action-triggers-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/multibranch-action-triggers-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/multibranch-action-triggers-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/multibranch-action-triggers-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/multibranch-action-triggers-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/multibranch-action-triggers-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/multibranch-action-triggers-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/multibranch-action-triggers-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/multibranch-action-triggers-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/multibranch-action-triggers-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/multibranch-action-triggers-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/multibranch-action-triggers-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/multibranch-action-triggers-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/multibranch-action-triggers-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/multibranch-action-triggers-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/multibranch-action-triggers-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/multibranch-action-triggers-plugin/deployments", + "created_at": "2019-09-03T15:13:31Z", + "updated_at": "2019-10-23T02:48:31Z", + "pushed_at": "2019-09-30T15:40:36Z", + "git_url": "git://github.com/jenkinsci/multibranch-action-triggers-plugin.git", + "ssh_url": "git@github.com:jenkinsci/multibranch-action-triggers-plugin.git", + "clone_url": "https://github.com/jenkinsci/multibranch-action-triggers-plugin.git", + "svn_url": "https://github.com/jenkinsci/multibranch-action-triggers-plugin", + "homepage": "", + "size": 131, + "stargazers_count": 10, + "watchers_count": 10, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 2, + "open_issues": 0, + "watchers": 10, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 206107480, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDYxMDc0ODA=", + "name": "kubernetes-client-api-plugin", + "full_name": "jenkinsci/kubernetes-client-api-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/kubernetes-client-api-plugin", + "description": "Jenkins Kubernetes Client API Plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/kubernetes-client-api-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/kubernetes-client-api-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/kubernetes-client-api-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/kubernetes-client-api-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/kubernetes-client-api-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/kubernetes-client-api-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/kubernetes-client-api-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/kubernetes-client-api-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/kubernetes-client-api-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/kubernetes-client-api-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/kubernetes-client-api-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/kubernetes-client-api-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/kubernetes-client-api-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/kubernetes-client-api-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/kubernetes-client-api-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/kubernetes-client-api-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/kubernetes-client-api-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/kubernetes-client-api-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/kubernetes-client-api-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/kubernetes-client-api-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/kubernetes-client-api-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/kubernetes-client-api-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/kubernetes-client-api-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/kubernetes-client-api-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/kubernetes-client-api-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/kubernetes-client-api-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/kubernetes-client-api-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/kubernetes-client-api-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/kubernetes-client-api-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/kubernetes-client-api-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/kubernetes-client-api-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/kubernetes-client-api-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/kubernetes-client-api-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/kubernetes-client-api-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/kubernetes-client-api-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/kubernetes-client-api-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/kubernetes-client-api-plugin/deployments", + "created_at": "2019-09-03T15:14:27Z", + "updated_at": "2019-10-04T01:30:58Z", + "pushed_at": "2019-10-23T06:49:01Z", + "git_url": "git://github.com/jenkinsci/kubernetes-client-api-plugin.git", + "ssh_url": "git@github.com:jenkinsci/kubernetes-client-api-plugin.git", + "clone_url": "https://github.com/jenkinsci/kubernetes-client-api-plugin.git", + "svn_url": "https://github.com/jenkinsci/kubernetes-client-api-plugin", + "homepage": null, + "size": 37, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 4, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 3, + "open_issues": 4, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 206835575, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4MzU1NzU=", + "name": "dlisting-cov-plugin", + "full_name": "jenkinsci/dlisting-cov-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/dlisting-cov-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/dlisting-cov-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/dlisting-cov-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/dlisting-cov-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/dlisting-cov-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/dlisting-cov-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/dlisting-cov-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/dlisting-cov-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/dlisting-cov-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/dlisting-cov-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/dlisting-cov-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/dlisting-cov-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/dlisting-cov-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/dlisting-cov-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/dlisting-cov-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/dlisting-cov-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/dlisting-cov-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/dlisting-cov-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/dlisting-cov-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/dlisting-cov-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/dlisting-cov-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/dlisting-cov-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/dlisting-cov-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/dlisting-cov-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/dlisting-cov-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/dlisting-cov-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/dlisting-cov-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/dlisting-cov-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/dlisting-cov-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/dlisting-cov-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/dlisting-cov-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/dlisting-cov-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/dlisting-cov-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/dlisting-cov-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/dlisting-cov-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/dlisting-cov-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/dlisting-cov-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/dlisting-cov-plugin/deployments", + "created_at": "2019-09-06T16:40:01Z", + "updated_at": "2019-09-17T06:11:30Z", + "pushed_at": "2019-09-17T06:11:29Z", + "git_url": "git://github.com/jenkinsci/dlisting-cov-plugin.git", + "ssh_url": "git@github.com:jenkinsci/dlisting-cov-plugin.git", + "clone_url": "https://github.com/jenkinsci/dlisting-cov-plugin.git", + "svn_url": "https://github.com/jenkinsci/dlisting-cov-plugin", + "homepage": null, + "size": 5, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 208117394, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDgxMTczOTQ=", + "name": "unik-builder-plugin", + "full_name": "jenkinsci/unik-builder-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/unik-builder-plugin", + "description": "A Jenkins plugin for the uink framework", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/unik-builder-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/unik-builder-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/unik-builder-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/unik-builder-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/unik-builder-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/unik-builder-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/unik-builder-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/unik-builder-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/unik-builder-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/unik-builder-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/unik-builder-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/unik-builder-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/unik-builder-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/unik-builder-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/unik-builder-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/unik-builder-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/unik-builder-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/unik-builder-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/unik-builder-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/unik-builder-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/unik-builder-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/unik-builder-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/unik-builder-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/unik-builder-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/unik-builder-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/unik-builder-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/unik-builder-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/unik-builder-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/unik-builder-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/unik-builder-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/unik-builder-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/unik-builder-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/unik-builder-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/unik-builder-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/unik-builder-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/unik-builder-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/unik-builder-plugin/deployments", + "created_at": "2019-09-12T18:21:28Z", + "updated_at": "2019-09-18T10:07:39Z", + "pushed_at": "2019-09-18T10:07:37Z", + "git_url": "git://github.com/jenkinsci/unik-builder-plugin.git", + "ssh_url": "git@github.com:jenkinsci/unik-builder-plugin.git", + "clone_url": "https://github.com/jenkinsci/unik-builder-plugin.git", + "svn_url": "https://github.com/jenkinsci/unik-builder-plugin", + "homepage": null, + "size": 352, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 208120686, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDgxMjA2ODY=", + "name": "make-jenkins-slow-plugin", + "full_name": "jenkinsci/make-jenkins-slow-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/make-jenkins-slow-plugin", + "description": "A Jenkins plugin to make Jenkins slow.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/make-jenkins-slow-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/make-jenkins-slow-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/make-jenkins-slow-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/make-jenkins-slow-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/make-jenkins-slow-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/make-jenkins-slow-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/make-jenkins-slow-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/make-jenkins-slow-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/make-jenkins-slow-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/make-jenkins-slow-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/make-jenkins-slow-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/make-jenkins-slow-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/make-jenkins-slow-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/make-jenkins-slow-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/make-jenkins-slow-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/make-jenkins-slow-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/make-jenkins-slow-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/make-jenkins-slow-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/make-jenkins-slow-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/make-jenkins-slow-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/make-jenkins-slow-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/make-jenkins-slow-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/make-jenkins-slow-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/make-jenkins-slow-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/make-jenkins-slow-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/make-jenkins-slow-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/make-jenkins-slow-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/make-jenkins-slow-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/make-jenkins-slow-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/make-jenkins-slow-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/make-jenkins-slow-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/make-jenkins-slow-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/make-jenkins-slow-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/make-jenkins-slow-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/make-jenkins-slow-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/make-jenkins-slow-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/make-jenkins-slow-plugin/deployments", + "created_at": "2019-09-12T18:38:12Z", + "updated_at": "2019-09-22T08:37:08Z", + "pushed_at": "2019-09-05T13:21:39Z", + "git_url": "git://github.com/jenkinsci/make-jenkins-slow-plugin.git", + "ssh_url": "git@github.com:jenkinsci/make-jenkins-slow-plugin.git", + "clone_url": "https://github.com/jenkinsci/make-jenkins-slow-plugin.git", + "svn_url": "https://github.com/jenkinsci/make-jenkins-slow-plugin", + "homepage": null, + "size": 7, + "stargazers_count": 1, + "watchers_count": 1, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 208852063, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDg4NTIwNjM=", + "name": "qualys-api-security-plugin", + "full_name": "jenkinsci/qualys-api-security-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/qualys-api-security-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/qualys-api-security-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/qualys-api-security-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/qualys-api-security-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/qualys-api-security-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/qualys-api-security-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/qualys-api-security-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/qualys-api-security-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/qualys-api-security-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/qualys-api-security-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/qualys-api-security-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/qualys-api-security-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/qualys-api-security-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/qualys-api-security-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/qualys-api-security-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/qualys-api-security-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/qualys-api-security-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/qualys-api-security-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/qualys-api-security-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/qualys-api-security-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/qualys-api-security-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/qualys-api-security-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/qualys-api-security-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/qualys-api-security-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/qualys-api-security-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/qualys-api-security-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/qualys-api-security-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/qualys-api-security-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/qualys-api-security-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/qualys-api-security-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/qualys-api-security-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/qualys-api-security-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/qualys-api-security-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/qualys-api-security-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/qualys-api-security-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/qualys-api-security-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/qualys-api-security-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/qualys-api-security-plugin/deployments", + "created_at": "2019-09-16T16:55:44Z", + "updated_at": "2019-10-04T06:46:23Z", + "pushed_at": "2019-10-04T06:46:21Z", + "git_url": "git://github.com/jenkinsci/qualys-api-security-plugin.git", + "ssh_url": "git@github.com:jenkinsci/qualys-api-security-plugin.git", + "clone_url": "https://github.com/jenkinsci/qualys-api-security-plugin.git", + "svn_url": "https://github.com/jenkinsci/qualys-api-security-plugin", + "homepage": null, + "size": 356, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "gpl-3.0", + "name": "GNU General Public License v3.0", + "spdx_id": "GPL-3.0", + "url": "https://api.github.com/licenses/gpl-3.0", + "node_id": "MDc6TGljZW5zZTk=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 210639590, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTA2Mzk1OTA=", + "name": "dotcoverrunner-plugin", + "full_name": "jenkinsci/dotcoverrunner-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/dotcoverrunner-plugin", + "description": "Jenkins plugin to run tests and generate code coverage data.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/dotcoverrunner-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/dotcoverrunner-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/dotcoverrunner-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/dotcoverrunner-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/dotcoverrunner-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/dotcoverrunner-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/dotcoverrunner-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/dotcoverrunner-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/dotcoverrunner-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/dotcoverrunner-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/dotcoverrunner-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/dotcoverrunner-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/dotcoverrunner-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/dotcoverrunner-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/dotcoverrunner-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/dotcoverrunner-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/dotcoverrunner-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/dotcoverrunner-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/dotcoverrunner-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/dotcoverrunner-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/dotcoverrunner-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/dotcoverrunner-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/dotcoverrunner-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/dotcoverrunner-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/dotcoverrunner-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/dotcoverrunner-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/dotcoverrunner-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/dotcoverrunner-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/dotcoverrunner-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/dotcoverrunner-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/dotcoverrunner-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/dotcoverrunner-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/dotcoverrunner-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/dotcoverrunner-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/dotcoverrunner-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/dotcoverrunner-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/dotcoverrunner-plugin/deployments", + "created_at": "2019-09-24T15:42:28Z", + "updated_at": "2019-10-23T21:39:22Z", + "pushed_at": "2019-10-23T21:39:20Z", + "git_url": "git://github.com/jenkinsci/dotcoverrunner-plugin.git", + "ssh_url": "git@github.com:jenkinsci/dotcoverrunner-plugin.git", + "clone_url": "https://github.com/jenkinsci/dotcoverrunner-plugin.git", + "svn_url": "https://github.com/jenkinsci/dotcoverrunner-plugin", + "homepage": null, + "size": 4015, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 2, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 210640282, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTA2NDAyODI=", + "name": "color-logger-plugin", + "full_name": "jenkinsci/color-logger-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/color-logger-plugin", + "description": "Jenkins color logger plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/color-logger-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/color-logger-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/color-logger-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/color-logger-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/color-logger-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/color-logger-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/color-logger-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/color-logger-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/color-logger-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/color-logger-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/color-logger-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/color-logger-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/color-logger-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/color-logger-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/color-logger-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/color-logger-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/color-logger-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/color-logger-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/color-logger-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/color-logger-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/color-logger-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/color-logger-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/color-logger-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/color-logger-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/color-logger-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/color-logger-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/color-logger-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/color-logger-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/color-logger-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/color-logger-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/color-logger-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/color-logger-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/color-logger-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/color-logger-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/color-logger-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/color-logger-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/color-logger-plugin/deployments", + "created_at": "2019-09-24T15:45:47Z", + "updated_at": "2019-10-02T10:10:53Z", + "pushed_at": "2019-10-02T10:10:57Z", + "git_url": "git://github.com/jenkinsci/color-logger-plugin.git", + "ssh_url": "git@github.com:jenkinsci/color-logger-plugin.git", + "clone_url": "https://github.com/jenkinsci/color-logger-plugin.git", + "svn_url": "https://github.com/jenkinsci/color-logger-plugin", + "homepage": "", + "size": 20, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 211960891, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTE5NjA4OTE=", + "name": "build-history-manager-plugin", + "full_name": "jenkinsci/build-history-manager-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/build-history-manager-plugin", + "description": "Jenkins plugin that allows to define which old builds should be removed and which preserved", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/build-history-manager-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/build-history-manager-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/build-history-manager-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/build-history-manager-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/build-history-manager-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/build-history-manager-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/build-history-manager-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/build-history-manager-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/build-history-manager-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/build-history-manager-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/build-history-manager-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/build-history-manager-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/build-history-manager-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/build-history-manager-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/build-history-manager-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/build-history-manager-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/build-history-manager-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/build-history-manager-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/build-history-manager-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/build-history-manager-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/build-history-manager-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/build-history-manager-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/build-history-manager-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/build-history-manager-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/build-history-manager-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/build-history-manager-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/build-history-manager-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/build-history-manager-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/build-history-manager-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/build-history-manager-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/build-history-manager-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/build-history-manager-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/build-history-manager-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/build-history-manager-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/build-history-manager-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/build-history-manager-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/build-history-manager-plugin/deployments", + "created_at": "2019-09-30T21:28:48Z", + "updated_at": "2019-10-25T19:18:12Z", + "pushed_at": "2019-10-25T19:18:10Z", + "git_url": "git://github.com/jenkinsci/build-history-manager-plugin.git", + "ssh_url": "git@github.com:jenkinsci/build-history-manager-plugin.git", + "clone_url": "https://github.com/jenkinsci/build-history-manager-plugin.git", + "svn_url": "https://github.com/jenkinsci/build-history-manager-plugin", + "homepage": "", + "size": 151, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 2, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 213719263, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTM3MTkyNjM=", + "name": "pipeline-cps-http-plugin", + "full_name": "jenkinsci/pipeline-cps-http-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pipeline-cps-http-plugin", + "description": "Allows Jenkins to pull pipelines from an HTTP source", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/pipeline-cps-http-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pipeline-cps-http-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pipeline-cps-http-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pipeline-cps-http-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pipeline-cps-http-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pipeline-cps-http-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pipeline-cps-http-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pipeline-cps-http-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pipeline-cps-http-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pipeline-cps-http-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pipeline-cps-http-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pipeline-cps-http-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pipeline-cps-http-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pipeline-cps-http-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pipeline-cps-http-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pipeline-cps-http-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pipeline-cps-http-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pipeline-cps-http-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pipeline-cps-http-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pipeline-cps-http-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pipeline-cps-http-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pipeline-cps-http-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pipeline-cps-http-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pipeline-cps-http-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pipeline-cps-http-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pipeline-cps-http-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pipeline-cps-http-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pipeline-cps-http-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pipeline-cps-http-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pipeline-cps-http-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pipeline-cps-http-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pipeline-cps-http-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pipeline-cps-http-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pipeline-cps-http-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pipeline-cps-http-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pipeline-cps-http-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pipeline-cps-http-plugin/deployments", + "created_at": "2019-10-08T18:22:23Z", + "updated_at": "2019-10-11T20:24:08Z", + "pushed_at": "2019-10-10T00:49:28Z", + "git_url": "git://github.com/jenkinsci/pipeline-cps-http-plugin.git", + "ssh_url": "git@github.com:jenkinsci/pipeline-cps-http-plugin.git", + "clone_url": "https://github.com/jenkinsci/pipeline-cps-http-plugin.git", + "svn_url": "https://github.com/jenkinsci/pipeline-cps-http-plugin", + "homepage": null, + "size": 111, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 3, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 213719678, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTM3MTk2Nzg=", + "name": "chaos-monkey-plugin", + "full_name": "jenkinsci/chaos-monkey-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/chaos-monkey-plugin", + "description": "Introduce issues in your Jenkins instance. Should not be installed in production!", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/chaos-monkey-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/chaos-monkey-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/chaos-monkey-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/chaos-monkey-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/chaos-monkey-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/chaos-monkey-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/chaos-monkey-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/chaos-monkey-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/chaos-monkey-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/chaos-monkey-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/chaos-monkey-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/chaos-monkey-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/chaos-monkey-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/chaos-monkey-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/chaos-monkey-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/chaos-monkey-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/chaos-monkey-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/chaos-monkey-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/chaos-monkey-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/chaos-monkey-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/chaos-monkey-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/chaos-monkey-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/chaos-monkey-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/chaos-monkey-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/chaos-monkey-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/chaos-monkey-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/chaos-monkey-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/chaos-monkey-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/chaos-monkey-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/chaos-monkey-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/chaos-monkey-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/chaos-monkey-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/chaos-monkey-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/chaos-monkey-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/chaos-monkey-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/chaos-monkey-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/chaos-monkey-plugin/deployments", + "created_at": "2019-10-08T18:24:09Z", + "updated_at": "2019-10-10T20:21:47Z", + "pushed_at": "2019-10-10T20:21:45Z", + "git_url": "git://github.com/jenkinsci/chaos-monkey-plugin.git", + "ssh_url": "git@github.com:jenkinsci/chaos-monkey-plugin.git", + "clone_url": "https://github.com/jenkinsci/chaos-monkey-plugin.git", + "svn_url": "https://github.com/jenkinsci/chaos-monkey-plugin", + "homepage": null, + "size": 166, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 2, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 214234140, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTQyMzQxNDA=", + "name": "xray-connector-plugin", + "full_name": "jenkinsci/xray-connector-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/xray-connector-plugin", + "description": "Xray Test Management Connector for Jenkins", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/xray-connector-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/xray-connector-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/xray-connector-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/xray-connector-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/xray-connector-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/xray-connector-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/xray-connector-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/xray-connector-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/xray-connector-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/xray-connector-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/xray-connector-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/xray-connector-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/xray-connector-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/xray-connector-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/xray-connector-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/xray-connector-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/xray-connector-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/xray-connector-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/xray-connector-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/xray-connector-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/xray-connector-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/xray-connector-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/xray-connector-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/xray-connector-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/xray-connector-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/xray-connector-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/xray-connector-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/xray-connector-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/xray-connector-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/xray-connector-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/xray-connector-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/xray-connector-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/xray-connector-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/xray-connector-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/xray-connector-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/xray-connector-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/xray-connector-plugin/deployments", + "created_at": "2019-10-10T16:37:45Z", + "updated_at": "2019-10-18T09:32:34Z", + "pushed_at": "2019-10-18T09:32:32Z", + "git_url": "git://github.com/jenkinsci/xray-connector-plugin.git", + "ssh_url": "git@github.com:jenkinsci/xray-connector-plugin.git", + "clone_url": "https://github.com/jenkinsci/xray-connector-plugin.git", + "svn_url": "https://github.com/jenkinsci/xray-connector-plugin", + "homepage": "", + "size": 56134, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 3, + "default_branch": "develop", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 215323692, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTUzMjM2OTI=", + "name": "test-results-aggregator-plugin", + "full_name": "jenkinsci/test-results-aggregator-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/test-results-aggregator-plugin", + "description": "Aggregate Test and Job results in a single HTML/email report", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/test-results-aggregator-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/test-results-aggregator-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/test-results-aggregator-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/test-results-aggregator-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/test-results-aggregator-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/test-results-aggregator-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/test-results-aggregator-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/test-results-aggregator-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/test-results-aggregator-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/test-results-aggregator-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/test-results-aggregator-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/test-results-aggregator-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/test-results-aggregator-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/test-results-aggregator-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/test-results-aggregator-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/test-results-aggregator-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/test-results-aggregator-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/test-results-aggregator-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/test-results-aggregator-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/test-results-aggregator-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/test-results-aggregator-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/test-results-aggregator-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/test-results-aggregator-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/test-results-aggregator-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/test-results-aggregator-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/test-results-aggregator-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/test-results-aggregator-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/test-results-aggregator-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/test-results-aggregator-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/test-results-aggregator-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/test-results-aggregator-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/test-results-aggregator-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/test-results-aggregator-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/test-results-aggregator-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/test-results-aggregator-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/test-results-aggregator-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/test-results-aggregator-plugin/deployments", + "created_at": "2019-10-15T14:45:59Z", + "updated_at": "2019-10-25T19:01:48Z", + "pushed_at": "2019-10-25T19:01:46Z", + "git_url": "git://github.com/jenkinsci/test-results-aggregator-plugin.git", + "ssh_url": "git@github.com:jenkinsci/test-results-aggregator-plugin.git", + "clone_url": "https://github.com/jenkinsci/test-results-aggregator-plugin.git", + "svn_url": "https://github.com/jenkinsci/test-results-aggregator-plugin", + "homepage": "", + "size": 339, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": true, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 215324194, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTUzMjQxOTQ=", + "name": "aws-beanstalk-releaser-plugin", + "full_name": "jenkinsci/aws-beanstalk-releaser-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/aws-beanstalk-releaser-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/aws-beanstalk-releaser-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/aws-beanstalk-releaser-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/aws-beanstalk-releaser-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/aws-beanstalk-releaser-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/aws-beanstalk-releaser-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/aws-beanstalk-releaser-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/aws-beanstalk-releaser-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/aws-beanstalk-releaser-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/aws-beanstalk-releaser-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/aws-beanstalk-releaser-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/aws-beanstalk-releaser-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/aws-beanstalk-releaser-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/aws-beanstalk-releaser-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/aws-beanstalk-releaser-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/aws-beanstalk-releaser-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/aws-beanstalk-releaser-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/aws-beanstalk-releaser-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/aws-beanstalk-releaser-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/aws-beanstalk-releaser-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/aws-beanstalk-releaser-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/aws-beanstalk-releaser-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/aws-beanstalk-releaser-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/aws-beanstalk-releaser-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/aws-beanstalk-releaser-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/aws-beanstalk-releaser-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/aws-beanstalk-releaser-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/aws-beanstalk-releaser-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/aws-beanstalk-releaser-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/aws-beanstalk-releaser-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/aws-beanstalk-releaser-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/aws-beanstalk-releaser-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/aws-beanstalk-releaser-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/aws-beanstalk-releaser-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/aws-beanstalk-releaser-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/aws-beanstalk-releaser-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/aws-beanstalk-releaser-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/aws-beanstalk-releaser-plugin/deployments", + "created_at": "2019-10-15T14:48:12Z", + "updated_at": "2019-10-22T11:01:21Z", + "pushed_at": "2019-10-22T11:01:19Z", + "git_url": "git://github.com/jenkinsci/aws-beanstalk-releaser-plugin.git", + "ssh_url": "git@github.com:jenkinsci/aws-beanstalk-releaser-plugin.git", + "clone_url": "https://github.com/jenkinsci/aws-beanstalk-releaser-plugin.git", + "svn_url": "https://github.com/jenkinsci/aws-beanstalk-releaser-plugin", + "homepage": null, + "size": 62, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 216609777, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTY2MDk3Nzc=", + "name": "lighthouse-report-plugin", + "full_name": "jenkinsci/lighthouse-report-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/lighthouse-report-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/lighthouse-report-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/lighthouse-report-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/lighthouse-report-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/lighthouse-report-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/lighthouse-report-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/lighthouse-report-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/lighthouse-report-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/lighthouse-report-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/lighthouse-report-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/lighthouse-report-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/lighthouse-report-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/lighthouse-report-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/lighthouse-report-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/lighthouse-report-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/lighthouse-report-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/lighthouse-report-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/lighthouse-report-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/lighthouse-report-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/lighthouse-report-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/lighthouse-report-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/lighthouse-report-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/lighthouse-report-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/lighthouse-report-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/lighthouse-report-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/lighthouse-report-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/lighthouse-report-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/lighthouse-report-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/lighthouse-report-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/lighthouse-report-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/lighthouse-report-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/lighthouse-report-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/lighthouse-report-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/lighthouse-report-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/lighthouse-report-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/lighthouse-report-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/lighthouse-report-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/lighthouse-report-plugin/deployments", + "created_at": "2019-10-21T16:05:10Z", + "updated_at": "2019-10-21T16:47:44Z", + "pushed_at": "2019-10-21T16:47:43Z", + "git_url": "git://github.com/jenkinsci/lighthouse-report-plugin.git", + "ssh_url": "git@github.com:jenkinsci/lighthouse-report-plugin.git", + "clone_url": "https://github.com/jenkinsci/lighthouse-report-plugin.git", + "svn_url": "https://github.com/jenkinsci/lighthouse-report-plugin", + "homepage": null, + "size": 320, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 216615031, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTY2MTUwMzE=", + "name": "mac-plugin", + "full_name": "jenkinsci/mac-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/mac-plugin", + "description": "Plugin to configure Macs as Jenkins slaves", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/mac-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/mac-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/mac-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/mac-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/mac-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/mac-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/mac-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/mac-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/mac-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/mac-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/mac-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/mac-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/mac-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/mac-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/mac-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/mac-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/mac-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/mac-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/mac-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/mac-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/mac-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/mac-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/mac-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/mac-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/mac-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/mac-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/mac-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/mac-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/mac-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/mac-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/mac-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/mac-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/mac-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/mac-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/mac-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/mac-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/mac-plugin/deployments", + "created_at": "2019-10-21T16:30:10Z", + "updated_at": "2019-10-25T17:15:50Z", + "pushed_at": "2019-10-25T17:15:48Z", + "git_url": "git://github.com/jenkinsci/mac-plugin.git", + "ssh_url": "git@github.com:jenkinsci/mac-plugin.git", + "clone_url": "https://github.com/jenkinsci/mac-plugin.git", + "svn_url": "https://github.com/jenkinsci/mac-plugin", + "homepage": null, + "size": 197, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Groovy", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 216631152, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTY2MzExNTI=", + "name": "datetime-constraint-plugin", + "full_name": "jenkinsci/datetime-constraint-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/datetime-constraint-plugin", + "description": "🕐 Jenkins plugin to define day/time restrictions for pipelines", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/datetime-constraint-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/datetime-constraint-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/datetime-constraint-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/datetime-constraint-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/datetime-constraint-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/datetime-constraint-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/datetime-constraint-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/datetime-constraint-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/datetime-constraint-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/datetime-constraint-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/datetime-constraint-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/datetime-constraint-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/datetime-constraint-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/datetime-constraint-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/datetime-constraint-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/datetime-constraint-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/datetime-constraint-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/datetime-constraint-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/datetime-constraint-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/datetime-constraint-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/datetime-constraint-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/datetime-constraint-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/datetime-constraint-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/datetime-constraint-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/datetime-constraint-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/datetime-constraint-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/datetime-constraint-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/datetime-constraint-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/datetime-constraint-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/datetime-constraint-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/datetime-constraint-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/datetime-constraint-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/datetime-constraint-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/datetime-constraint-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/datetime-constraint-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/datetime-constraint-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/datetime-constraint-plugin/deployments", + "created_at": "2019-10-21T17:54:22Z", + "updated_at": "2019-10-25T19:36:22Z", + "pushed_at": "2019-10-25T19:36:20Z", + "git_url": "git://github.com/jenkinsci/datetime-constraint-plugin.git", + "ssh_url": "git@github.com:jenkinsci/datetime-constraint-plugin.git", + "clone_url": "https://github.com/jenkinsci/datetime-constraint-plugin.git", + "svn_url": "https://github.com/jenkinsci/datetime-constraint-plugin", + "homepage": "", + "size": 168838, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/__files/organizations_107424_repos-d4d7b222-62d1-4d88-bab9-ccf707f314e4.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/__files/organizations_107424_repos-d4d7b222-62d1-4d88-bab9-ccf707f314e4.json new file mode 100644 index 0000000000..bc913a39dd --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/__files/organizations_107424_repos-d4d7b222-62d1-4d88-bab9-ccf707f314e4.json @@ -0,0 +1,10076 @@ +[ + { + "id": 2705142, + "node_id": "MDEwOlJlcG9zaXRvcnkyNzA1MTQy", + "name": "rtc-plugin", + "full_name": "jenkinsci/rtc-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/rtc-plugin", + "description": "Jenkins plugin to use IBM's Rational Team Concert", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/rtc-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/rtc-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/rtc-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/rtc-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/rtc-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/rtc-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/rtc-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/rtc-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/rtc-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/rtc-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/rtc-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/rtc-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/rtc-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/rtc-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/rtc-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/rtc-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/rtc-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/rtc-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/rtc-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/rtc-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/rtc-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/rtc-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/rtc-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/rtc-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/rtc-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/rtc-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/rtc-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/rtc-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/rtc-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/rtc-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/rtc-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/rtc-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/rtc-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/rtc-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/rtc-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/rtc-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/rtc-plugin/deployments", + "created_at": "2011-11-03T21:01:55Z", + "updated_at": "2018-08-30T10:50:40Z", + "pushed_at": "2013-11-10T02:15:50Z", + "git_url": "git://github.com/jenkinsci/rtc-plugin.git", + "ssh_url": "git@github.com:jenkinsci/rtc-plugin.git", + "clone_url": "https://github.com/jenkinsci/rtc-plugin.git", + "svn_url": "https://github.com/jenkinsci/rtc-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Rational+Team+Concert+Plugin", + "size": 411, + "stargazers_count": 11, + "watchers_count": 11, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 14, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 14, + "open_issues": 2, + "watchers": 11, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2708002, + "node_id": "MDEwOlJlcG9zaXRvcnkyNzA4MDAy", + "name": "computer-queue-plugin", + "full_name": "jenkinsci/computer-queue-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/computer-queue-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/computer-queue-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/computer-queue-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/computer-queue-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/computer-queue-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/computer-queue-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/computer-queue-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/computer-queue-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/computer-queue-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/computer-queue-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/computer-queue-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/computer-queue-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/computer-queue-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/computer-queue-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/computer-queue-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/computer-queue-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/computer-queue-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/computer-queue-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/computer-queue-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/computer-queue-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/computer-queue-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/computer-queue-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/computer-queue-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/computer-queue-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/computer-queue-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/computer-queue-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/computer-queue-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/computer-queue-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/computer-queue-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/computer-queue-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/computer-queue-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/computer-queue-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/computer-queue-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/computer-queue-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/computer-queue-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/computer-queue-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/computer-queue-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/computer-queue-plugin/deployments", + "created_at": "2011-11-04T08:49:48Z", + "updated_at": "2019-08-14T11:54:18Z", + "pushed_at": "2019-08-14T11:54:16Z", + "git_url": "git://github.com/jenkinsci/computer-queue-plugin.git", + "ssh_url": "git@github.com:jenkinsci/computer-queue-plugin.git", + "clone_url": "https://github.com/jenkinsci/computer-queue-plugin.git", + "svn_url": "https://github.com/jenkinsci/computer-queue-plugin", + "homepage": "", + "size": 915, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 3, + "open_issues": 1, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2722675, + "node_id": "MDEwOlJlcG9zaXRvcnkyNzIyNjc1", + "name": "pre-build-plugin", + "full_name": "jenkinsci/pre-build-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pre-build-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/pre-build-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pre-build-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pre-build-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pre-build-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pre-build-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pre-build-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pre-build-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pre-build-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pre-build-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pre-build-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pre-build-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pre-build-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pre-build-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pre-build-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pre-build-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pre-build-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pre-build-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pre-build-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pre-build-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pre-build-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pre-build-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pre-build-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pre-build-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pre-build-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pre-build-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pre-build-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pre-build-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pre-build-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pre-build-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pre-build-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pre-build-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pre-build-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pre-build-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pre-build-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pre-build-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pre-build-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pre-build-plugin/deployments", + "created_at": "2011-11-06T22:12:43Z", + "updated_at": "2013-11-10T02:13:47Z", + "pushed_at": "2013-11-10T02:13:42Z", + "git_url": "git://github.com/jenkinsci/pre-build-plugin.git", + "ssh_url": "git@github.com:jenkinsci/pre-build-plugin.git", + "clone_url": "https://github.com/jenkinsci/pre-build-plugin.git", + "svn_url": "https://github.com/jenkinsci/pre-build-plugin", + "homepage": "", + "size": 113, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2725631, + "node_id": "MDEwOlJlcG9zaXRvcnkyNzI1NjMx", + "name": "run-condition-plugin", + "full_name": "jenkinsci/run-condition-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/run-condition-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/run-condition-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/run-condition-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/run-condition-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/run-condition-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/run-condition-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/run-condition-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/run-condition-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/run-condition-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/run-condition-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/run-condition-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/run-condition-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/run-condition-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/run-condition-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/run-condition-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/run-condition-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/run-condition-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/run-condition-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/run-condition-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/run-condition-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/run-condition-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/run-condition-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/run-condition-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/run-condition-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/run-condition-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/run-condition-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/run-condition-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/run-condition-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/run-condition-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/run-condition-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/run-condition-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/run-condition-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/run-condition-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/run-condition-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/run-condition-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/run-condition-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/run-condition-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/run-condition-plugin/deployments", + "created_at": "2011-11-07T11:20:51Z", + "updated_at": "2018-08-31T06:46:51Z", + "pushed_at": "2019-03-08T10:40:45Z", + "git_url": "git://github.com/jenkinsci/run-condition-plugin.git", + "ssh_url": "git@github.com:jenkinsci/run-condition-plugin.git", + "clone_url": "https://github.com/jenkinsci/run-condition-plugin.git", + "svn_url": "https://github.com/jenkinsci/run-condition-plugin", + "homepage": "", + "size": 136, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 17, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 4, + "license": null, + "forks": 17, + "open_issues": 4, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2725643, + "node_id": "MDEwOlJlcG9zaXRvcnkyNzI1NjQz", + "name": "flexible-publish-plugin", + "full_name": "jenkinsci/flexible-publish-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/flexible-publish-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/flexible-publish-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/flexible-publish-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/flexible-publish-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/flexible-publish-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/flexible-publish-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/flexible-publish-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/flexible-publish-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/flexible-publish-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/flexible-publish-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/flexible-publish-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/flexible-publish-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/flexible-publish-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/flexible-publish-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/flexible-publish-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/flexible-publish-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/flexible-publish-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/flexible-publish-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/flexible-publish-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/flexible-publish-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/flexible-publish-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/flexible-publish-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/flexible-publish-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/flexible-publish-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/flexible-publish-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/flexible-publish-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/flexible-publish-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/flexible-publish-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/flexible-publish-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/flexible-publish-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/flexible-publish-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/flexible-publish-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/flexible-publish-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/flexible-publish-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/flexible-publish-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/flexible-publish-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/flexible-publish-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/flexible-publish-plugin/deployments", + "created_at": "2011-11-07T11:23:45Z", + "updated_at": "2019-09-24T13:27:17Z", + "pushed_at": "2019-09-24T13:27:15Z", + "git_url": "git://github.com/jenkinsci/flexible-publish-plugin.git", + "ssh_url": "git@github.com:jenkinsci/flexible-publish-plugin.git", + "clone_url": "https://github.com/jenkinsci/flexible-publish-plugin.git", + "svn_url": "https://github.com/jenkinsci/flexible-publish-plugin", + "homepage": "", + "size": 192, + "stargazers_count": 6, + "watchers_count": 6, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 10, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 10, + "open_issues": 2, + "watchers": 6, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2732737, + "node_id": "MDEwOlJlcG9zaXRvcnkyNzMyNzM3", + "name": "started-by-envvar-plugin", + "full_name": "jenkinsci/started-by-envvar-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/started-by-envvar-plugin", + "description": "Jenkins plugin to expose a JENKINS_STARTED_BY environment variable.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/started-by-envvar-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/started-by-envvar-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/started-by-envvar-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/started-by-envvar-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/started-by-envvar-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/started-by-envvar-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/started-by-envvar-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/started-by-envvar-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/started-by-envvar-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/started-by-envvar-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/started-by-envvar-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/started-by-envvar-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/started-by-envvar-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/started-by-envvar-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/started-by-envvar-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/started-by-envvar-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/started-by-envvar-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/started-by-envvar-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/started-by-envvar-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/started-by-envvar-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/started-by-envvar-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/started-by-envvar-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/started-by-envvar-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/started-by-envvar-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/started-by-envvar-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/started-by-envvar-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/started-by-envvar-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/started-by-envvar-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/started-by-envvar-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/started-by-envvar-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/started-by-envvar-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/started-by-envvar-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/started-by-envvar-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/started-by-envvar-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/started-by-envvar-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/started-by-envvar-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/started-by-envvar-plugin/deployments", + "created_at": "2011-11-08T09:53:55Z", + "updated_at": "2013-11-10T02:19:13Z", + "pushed_at": "2019-10-08T12:14:14Z", + "git_url": "git://github.com/jenkinsci/started-by-envvar-plugin.git", + "ssh_url": "git@github.com:jenkinsci/started-by-envvar-plugin.git", + "clone_url": "https://github.com/jenkinsci/started-by-envvar-plugin.git", + "svn_url": "https://github.com/jenkinsci/started-by-envvar-plugin", + "homepage": "", + "size": 116, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 1, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2751061, + "node_id": "MDEwOlJlcG9zaXRvcnkyNzUxMDYx", + "name": "managed-scripts-plugin", + "full_name": "jenkinsci/managed-scripts-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/managed-scripts-plugin", + "description": "Jenkins plugin which allows the central configuration of scripts, these scripts can be reused as build steps in every job.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/managed-scripts-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/managed-scripts-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/managed-scripts-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/managed-scripts-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/managed-scripts-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/managed-scripts-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/managed-scripts-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/managed-scripts-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/managed-scripts-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/managed-scripts-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/managed-scripts-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/managed-scripts-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/managed-scripts-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/managed-scripts-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/managed-scripts-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/managed-scripts-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/managed-scripts-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/managed-scripts-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/managed-scripts-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/managed-scripts-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/managed-scripts-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/managed-scripts-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/managed-scripts-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/managed-scripts-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/managed-scripts-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/managed-scripts-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/managed-scripts-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/managed-scripts-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/managed-scripts-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/managed-scripts-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/managed-scripts-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/managed-scripts-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/managed-scripts-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/managed-scripts-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/managed-scripts-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/managed-scripts-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/managed-scripts-plugin/deployments", + "created_at": "2011-11-10T19:35:43Z", + "updated_at": "2019-08-06T14:06:09Z", + "pushed_at": "2019-09-24T10:39:56Z", + "git_url": "git://github.com/jenkinsci/managed-scripts-plugin.git", + "ssh_url": "git@github.com:jenkinsci/managed-scripts-plugin.git", + "clone_url": "https://github.com/jenkinsci/managed-scripts-plugin.git", + "svn_url": "https://github.com/jenkinsci/managed-scripts-plugin", + "homepage": "", + "size": 122, + "stargazers_count": 14, + "watchers_count": 14, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 17, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 17, + "open_issues": 2, + "watchers": 14, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2752185, + "node_id": "MDEwOlJlcG9zaXRvcnkyNzUyMTg1", + "name": "pathignore-plugin", + "full_name": "jenkinsci/pathignore-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pathignore-plugin", + "description": "A Ruby Jenkins plugin (the first!) to skip or execute builds based on a path filter on modified files", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/pathignore-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pathignore-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pathignore-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pathignore-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pathignore-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pathignore-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pathignore-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pathignore-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pathignore-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pathignore-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pathignore-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pathignore-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pathignore-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pathignore-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pathignore-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pathignore-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pathignore-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pathignore-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pathignore-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pathignore-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pathignore-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pathignore-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pathignore-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pathignore-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pathignore-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pathignore-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pathignore-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pathignore-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pathignore-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pathignore-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pathignore-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pathignore-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pathignore-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pathignore-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pathignore-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pathignore-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pathignore-plugin/deployments", + "created_at": "2011-11-10T22:20:51Z", + "updated_at": "2016-04-19T16:02:39Z", + "pushed_at": "2013-11-10T02:12:50Z", + "git_url": "git://github.com/jenkinsci/pathignore-plugin.git", + "ssh_url": "git@github.com:jenkinsci/pathignore-plugin.git", + "clone_url": "https://github.com/jenkinsci/pathignore-plugin.git", + "svn_url": "https://github.com/jenkinsci/pathignore-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Pathignore+Plugin", + "size": 124, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Ruby", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 11, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 11, + "open_issues": 0, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2752249, + "node_id": "MDEwOlJlcG9zaXRvcnkyNzUyMjQ5", + "name": "list-command-plugin", + "full_name": "jenkinsci/list-command-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/list-command-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/list-command-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/list-command-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/list-command-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/list-command-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/list-command-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/list-command-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/list-command-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/list-command-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/list-command-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/list-command-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/list-command-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/list-command-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/list-command-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/list-command-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/list-command-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/list-command-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/list-command-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/list-command-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/list-command-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/list-command-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/list-command-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/list-command-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/list-command-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/list-command-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/list-command-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/list-command-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/list-command-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/list-command-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/list-command-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/list-command-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/list-command-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/list-command-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/list-command-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/list-command-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/list-command-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/list-command-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/list-command-plugin/deployments", + "created_at": "2011-11-10T22:32:14Z", + "updated_at": "2015-08-20T05:01:15Z", + "pushed_at": "2019-10-08T16:41:40Z", + "git_url": "git://github.com/jenkinsci/list-command-plugin.git", + "ssh_url": "git@github.com:jenkinsci/list-command-plugin.git", + "clone_url": "https://github.com/jenkinsci/list-command-plugin.git", + "svn_url": "https://github.com/jenkinsci/list-command-plugin", + "homepage": "", + "size": 123, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 4, + "open_issues": 1, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2752267, + "node_id": "MDEwOlJlcG9zaXRvcnkyNzUyMjY3", + "name": "build-node-column-plugin", + "full_name": "jenkinsci/build-node-column-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/build-node-column-plugin", + "description": "This plugin is deprecated. Please use extra-columns-plugin instead.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/build-node-column-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/build-node-column-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/build-node-column-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/build-node-column-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/build-node-column-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/build-node-column-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/build-node-column-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/build-node-column-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/build-node-column-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/build-node-column-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/build-node-column-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/build-node-column-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/build-node-column-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/build-node-column-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/build-node-column-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/build-node-column-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/build-node-column-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/build-node-column-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/build-node-column-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/build-node-column-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/build-node-column-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/build-node-column-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/build-node-column-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/build-node-column-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/build-node-column-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/build-node-column-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/build-node-column-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/build-node-column-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/build-node-column-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/build-node-column-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/build-node-column-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/build-node-column-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/build-node-column-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/build-node-column-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/build-node-column-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/build-node-column-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/build-node-column-plugin/deployments", + "created_at": "2011-11-10T22:34:34Z", + "updated_at": "2015-12-11T00:21:47Z", + "pushed_at": "2013-11-10T01:55:29Z", + "git_url": "git://github.com/jenkinsci/build-node-column-plugin.git", + "ssh_url": "git@github.com:jenkinsci/build-node-column-plugin.git", + "clone_url": "https://github.com/jenkinsci/build-node-column-plugin.git", + "svn_url": "https://github.com/jenkinsci/build-node-column-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Extra+Columns+Plugin", + "size": 118, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2762427, + "node_id": "MDEwOlJlcG9zaXRvcnkyNzYyNDI3", + "name": "jira-issue-updater-plugin", + "full_name": "jenkinsci/jira-issue-updater-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jira-issue-updater-plugin", + "description": "Plugin which can update Jira issues as part of a maven, free-style or multi-configuration Jenkins job", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/jira-issue-updater-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/jira-issue-updater-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jira-issue-updater-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jira-issue-updater-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jira-issue-updater-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jira-issue-updater-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jira-issue-updater-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jira-issue-updater-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jira-issue-updater-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jira-issue-updater-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jira-issue-updater-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jira-issue-updater-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jira-issue-updater-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jira-issue-updater-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jira-issue-updater-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jira-issue-updater-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jira-issue-updater-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jira-issue-updater-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jira-issue-updater-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jira-issue-updater-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jira-issue-updater-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jira-issue-updater-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jira-issue-updater-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jira-issue-updater-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jira-issue-updater-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jira-issue-updater-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jira-issue-updater-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jira-issue-updater-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jira-issue-updater-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jira-issue-updater-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jira-issue-updater-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jira-issue-updater-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jira-issue-updater-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jira-issue-updater-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jira-issue-updater-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jira-issue-updater-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jira-issue-updater-plugin/deployments", + "created_at": "2011-11-12T16:34:49Z", + "updated_at": "2019-10-08T12:18:07Z", + "pushed_at": "2019-10-08T12:18:05Z", + "git_url": "git://github.com/jenkinsci/jira-issue-updater-plugin.git", + "ssh_url": "git@github.com:jenkinsci/jira-issue-updater-plugin.git", + "clone_url": "https://github.com/jenkinsci/jira-issue-updater-plugin.git", + "svn_url": "https://github.com/jenkinsci/jira-issue-updater-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Jira+Issue+Updater+Plugin", + "size": 2313, + "stargazers_count": 17, + "watchers_count": 17, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 33, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 33, + "open_issues": 1, + "watchers": 17, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2766770, + "node_id": "MDEwOlJlcG9zaXRvcnkyNzY2Nzcw", + "name": "any-buildstep-plugin", + "full_name": "jenkinsci/any-buildstep-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/any-buildstep-plugin", + "description": "Run publishers as builders and builders as publishers :-/", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/any-buildstep-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/any-buildstep-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/any-buildstep-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/any-buildstep-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/any-buildstep-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/any-buildstep-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/any-buildstep-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/any-buildstep-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/any-buildstep-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/any-buildstep-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/any-buildstep-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/any-buildstep-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/any-buildstep-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/any-buildstep-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/any-buildstep-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/any-buildstep-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/any-buildstep-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/any-buildstep-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/any-buildstep-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/any-buildstep-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/any-buildstep-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/any-buildstep-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/any-buildstep-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/any-buildstep-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/any-buildstep-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/any-buildstep-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/any-buildstep-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/any-buildstep-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/any-buildstep-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/any-buildstep-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/any-buildstep-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/any-buildstep-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/any-buildstep-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/any-buildstep-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/any-buildstep-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/any-buildstep-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/any-buildstep-plugin/deployments", + "created_at": "2011-11-13T15:02:48Z", + "updated_at": "2018-07-19T06:48:58Z", + "pushed_at": "2019-10-08T10:08:26Z", + "git_url": "git://github.com/jenkinsci/any-buildstep-plugin.git", + "ssh_url": "git@github.com:jenkinsci/any-buildstep-plugin.git", + "clone_url": "https://github.com/jenkinsci/any-buildstep-plugin.git", + "svn_url": "https://github.com/jenkinsci/any-buildstep-plugin", + "homepage": "", + "size": 13, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 6, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2784273, + "node_id": "MDEwOlJlcG9zaXRvcnkyNzg0Mjcz", + "name": "trac-publisher-plugin", + "full_name": "jenkinsci/trac-publisher-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/trac-publisher-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/trac-publisher-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/trac-publisher-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/trac-publisher-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/trac-publisher-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/trac-publisher-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/trac-publisher-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/trac-publisher-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/trac-publisher-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/trac-publisher-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/trac-publisher-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/trac-publisher-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/trac-publisher-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/trac-publisher-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/trac-publisher-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/trac-publisher-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/trac-publisher-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/trac-publisher-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/trac-publisher-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/trac-publisher-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/trac-publisher-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/trac-publisher-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/trac-publisher-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/trac-publisher-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/trac-publisher-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/trac-publisher-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/trac-publisher-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/trac-publisher-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/trac-publisher-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/trac-publisher-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/trac-publisher-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/trac-publisher-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/trac-publisher-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/trac-publisher-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/trac-publisher-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/trac-publisher-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/trac-publisher-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/trac-publisher-plugin/deployments", + "created_at": "2011-11-15T23:46:16Z", + "updated_at": "2017-02-04T12:28:29Z", + "pushed_at": "2013-11-10T02:21:11Z", + "git_url": "git://github.com/jenkinsci/trac-publisher-plugin.git", + "ssh_url": "git@github.com:jenkinsci/trac-publisher-plugin.git", + "clone_url": "https://github.com/jenkinsci/trac-publisher-plugin.git", + "svn_url": "https://github.com/jenkinsci/trac-publisher-plugin", + "homepage": "", + "size": 165, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 4, + "open_issues": 0, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2784539, + "node_id": "MDEwOlJlcG9zaXRvcnkyNzg0NTM5", + "name": "coverity-plugin", + "full_name": "jenkinsci/coverity-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/coverity-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/coverity-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/coverity-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/coverity-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/coverity-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/coverity-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/coverity-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/coverity-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/coverity-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/coverity-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/coverity-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/coverity-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/coverity-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/coverity-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/coverity-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/coverity-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/coverity-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/coverity-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/coverity-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/coverity-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/coverity-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/coverity-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/coverity-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/coverity-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/coverity-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/coverity-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/coverity-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/coverity-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/coverity-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/coverity-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/coverity-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/coverity-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/coverity-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/coverity-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/coverity-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/coverity-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/coverity-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/coverity-plugin/deployments", + "created_at": "2011-11-16T00:38:18Z", + "updated_at": "2019-09-29T03:02:06Z", + "pushed_at": "2019-04-23T20:27:57Z", + "git_url": "git://github.com/jenkinsci/coverity-plugin.git", + "ssh_url": "git@github.com:jenkinsci/coverity-plugin.git", + "clone_url": "https://github.com/jenkinsci/coverity-plugin.git", + "svn_url": "https://github.com/jenkinsci/coverity-plugin", + "homepage": "", + "size": 4713, + "stargazers_count": 37, + "watchers_count": 37, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 41, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 41, + "open_issues": 0, + "watchers": 37, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2786563, + "node_id": "MDEwOlJlcG9zaXRvcnkyNzg2NTYz", + "name": "nsis-plugin", + "full_name": "jenkinsci/nsis-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/nsis-plugin", + "description": "Jenkins nsis plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/nsis-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/nsis-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/nsis-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/nsis-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/nsis-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/nsis-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/nsis-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/nsis-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/nsis-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/nsis-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/nsis-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/nsis-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/nsis-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/nsis-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/nsis-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/nsis-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/nsis-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/nsis-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/nsis-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/nsis-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/nsis-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/nsis-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/nsis-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/nsis-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/nsis-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/nsis-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/nsis-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/nsis-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/nsis-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/nsis-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/nsis-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/nsis-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/nsis-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/nsis-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/nsis-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/nsis-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/nsis-plugin/deployments", + "created_at": "2011-11-16T08:45:25Z", + "updated_at": "2013-11-10T02:12:23Z", + "pushed_at": "2013-11-10T02:12:19Z", + "git_url": "git://github.com/jenkinsci/nsis-plugin.git", + "ssh_url": "git@github.com:jenkinsci/nsis-plugin.git", + "clone_url": "https://github.com/jenkinsci/nsis-plugin.git", + "svn_url": "https://github.com/jenkinsci/nsis-plugin", + "homepage": "", + "size": 113, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2799397, + "node_id": "MDEwOlJlcG9zaXRvcnkyNzk5Mzk3", + "name": "gravatar-plugin", + "full_name": "jenkinsci/gravatar-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/gravatar-plugin", + "description": "A plugin for Jenkins to show Gravatar for user pages.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/gravatar-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/gravatar-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/gravatar-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/gravatar-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/gravatar-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/gravatar-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/gravatar-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/gravatar-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/gravatar-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/gravatar-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/gravatar-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/gravatar-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/gravatar-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/gravatar-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/gravatar-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/gravatar-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/gravatar-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/gravatar-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/gravatar-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/gravatar-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/gravatar-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/gravatar-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/gravatar-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/gravatar-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/gravatar-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/gravatar-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/gravatar-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/gravatar-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/gravatar-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/gravatar-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/gravatar-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/gravatar-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/gravatar-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/gravatar-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/gravatar-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/gravatar-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/gravatar-plugin/deployments", + "created_at": "2011-11-17T23:22:58Z", + "updated_at": "2016-12-08T21:18:24Z", + "pushed_at": "2019-10-08T10:09:39Z", + "git_url": "git://github.com/jenkinsci/gravatar-plugin.git", + "ssh_url": "git@github.com:jenkinsci/gravatar-plugin.git", + "clone_url": "https://github.com/jenkinsci/gravatar-plugin.git", + "svn_url": "https://github.com/jenkinsci/gravatar-plugin", + "homepage": "", + "size": 312, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 6, + "open_issues": 1, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2814831, + "node_id": "MDEwOlJlcG9zaXRvcnkyODE0ODMx", + "name": "create-fingerprint-plugin", + "full_name": "jenkinsci/create-fingerprint-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/create-fingerprint-plugin", + "description": "A plugin to create a Fingerprint before the end of the build", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/create-fingerprint-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/create-fingerprint-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/create-fingerprint-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/create-fingerprint-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/create-fingerprint-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/create-fingerprint-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/create-fingerprint-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/create-fingerprint-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/create-fingerprint-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/create-fingerprint-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/create-fingerprint-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/create-fingerprint-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/create-fingerprint-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/create-fingerprint-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/create-fingerprint-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/create-fingerprint-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/create-fingerprint-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/create-fingerprint-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/create-fingerprint-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/create-fingerprint-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/create-fingerprint-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/create-fingerprint-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/create-fingerprint-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/create-fingerprint-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/create-fingerprint-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/create-fingerprint-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/create-fingerprint-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/create-fingerprint-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/create-fingerprint-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/create-fingerprint-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/create-fingerprint-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/create-fingerprint-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/create-fingerprint-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/create-fingerprint-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/create-fingerprint-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/create-fingerprint-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/create-fingerprint-plugin/deployments", + "created_at": "2011-11-20T17:54:25Z", + "updated_at": "2014-07-23T19:19:16Z", + "pushed_at": "2019-10-08T11:41:57Z", + "git_url": "git://github.com/jenkinsci/create-fingerprint-plugin.git", + "ssh_url": "git@github.com:jenkinsci/create-fingerprint-plugin.git", + "clone_url": "https://github.com/jenkinsci/create-fingerprint-plugin.git", + "svn_url": "https://github.com/jenkinsci/create-fingerprint-plugin", + "homepage": "", + "size": 187, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 5, + "open_issues": 1, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2973683, + "node_id": "MDEwOlJlcG9zaXRvcnkyOTczNjgz", + "name": "jenkins_ruby_api", + "full_name": "jenkinsci/jenkins_ruby_api", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jenkins_ruby_api", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jenkins_ruby_api", + "forks_url": "https://api.github.com/repos/jenkinsci/jenkins_ruby_api/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jenkins_ruby_api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jenkins_ruby_api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jenkins_ruby_api/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jenkins_ruby_api/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jenkins_ruby_api/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jenkins_ruby_api/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jenkins_ruby_api/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jenkins_ruby_api/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jenkins_ruby_api/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jenkins_ruby_api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jenkins_ruby_api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jenkins_ruby_api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jenkins_ruby_api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jenkins_ruby_api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jenkins_ruby_api/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jenkins_ruby_api/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jenkins_ruby_api/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jenkins_ruby_api/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jenkins_ruby_api/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jenkins_ruby_api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jenkins_ruby_api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jenkins_ruby_api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jenkins_ruby_api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jenkins_ruby_api/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jenkins_ruby_api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jenkins_ruby_api/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jenkins_ruby_api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jenkins_ruby_api/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jenkins_ruby_api/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jenkins_ruby_api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jenkins_ruby_api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jenkins_ruby_api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jenkins_ruby_api/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jenkins_ruby_api/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jenkins_ruby_api/deployments", + "created_at": "2011-12-13T16:48:50Z", + "updated_at": "2013-11-10T02:06:45Z", + "pushed_at": "2013-11-10T02:06:38Z", + "git_url": "git://github.com/jenkinsci/jenkins_ruby_api.git", + "ssh_url": "git@github.com:jenkinsci/jenkins_ruby_api.git", + "clone_url": "https://github.com/jenkinsci/jenkins_ruby_api.git", + "svn_url": "https://github.com/jenkinsci/jenkins_ruby_api", + "homepage": "", + "size": 76, + "stargazers_count": 1, + "watchers_count": 1, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2976872, + "node_id": "MDEwOlJlcG9zaXRvcnkyOTc2ODcy", + "name": "gradle-jpi-plugin", + "full_name": "jenkinsci/gradle-jpi-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/gradle-jpi-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/gradle-jpi-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/gradle-jpi-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/gradle-jpi-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/gradle-jpi-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/gradle-jpi-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/gradle-jpi-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/gradle-jpi-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/gradle-jpi-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/gradle-jpi-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/gradle-jpi-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/gradle-jpi-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/gradle-jpi-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/gradle-jpi-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/gradle-jpi-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/gradle-jpi-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/gradle-jpi-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/gradle-jpi-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/gradle-jpi-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/gradle-jpi-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/gradle-jpi-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/gradle-jpi-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/gradle-jpi-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/gradle-jpi-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/gradle-jpi-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/gradle-jpi-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/gradle-jpi-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/gradle-jpi-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/gradle-jpi-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/gradle-jpi-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/gradle-jpi-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/gradle-jpi-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/gradle-jpi-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/gradle-jpi-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/gradle-jpi-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/gradle-jpi-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/gradle-jpi-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/gradle-jpi-plugin/deployments", + "created_at": "2011-12-14T01:29:45Z", + "updated_at": "2019-09-07T16:14:37Z", + "pushed_at": "2019-09-07T16:14:35Z", + "git_url": "git://github.com/jenkinsci/gradle-jpi-plugin.git", + "ssh_url": "git@github.com:jenkinsci/gradle-jpi-plugin.git", + "clone_url": "https://github.com/jenkinsci/gradle-jpi-plugin.git", + "svn_url": "https://github.com/jenkinsci/gradle-jpi-plugin", + "homepage": "", + "size": 1236, + "stargazers_count": 55, + "watchers_count": 55, + "language": "Groovy", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 43, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 43, + "open_issues": 2, + "watchers": 55, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2983981, + "node_id": "MDEwOlJlcG9zaXRvcnkyOTgzOTgx", + "name": "jenkins-scripts", + "full_name": "jenkinsci/jenkins-scripts", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jenkins-scripts", + "description": "Scripts in Groovy, shell, Ruby, Python, whatever for managing/interacting with Jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jenkins-scripts", + "forks_url": "https://api.github.com/repos/jenkinsci/jenkins-scripts/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jenkins-scripts/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jenkins-scripts/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jenkins-scripts/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jenkins-scripts/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jenkins-scripts/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jenkins-scripts/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jenkins-scripts/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jenkins-scripts/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jenkins-scripts/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jenkins-scripts/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jenkins-scripts/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jenkins-scripts/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jenkins-scripts/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jenkins-scripts/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jenkins-scripts/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jenkins-scripts/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jenkins-scripts/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jenkins-scripts/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jenkins-scripts/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jenkins-scripts/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jenkins-scripts/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jenkins-scripts/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jenkins-scripts/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jenkins-scripts/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jenkins-scripts/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jenkins-scripts/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jenkins-scripts/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jenkins-scripts/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jenkins-scripts/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jenkins-scripts/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jenkins-scripts/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jenkins-scripts/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jenkins-scripts/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jenkins-scripts/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jenkins-scripts/deployments", + "created_at": "2011-12-14T23:13:25Z", + "updated_at": "2019-10-23T22:14:15Z", + "pushed_at": "2019-07-30T22:19:20Z", + "git_url": "git://github.com/jenkinsci/jenkins-scripts.git", + "ssh_url": "git@github.com:jenkinsci/jenkins-scripts.git", + "clone_url": "https://github.com/jenkinsci/jenkins-scripts.git", + "svn_url": "https://github.com/jenkinsci/jenkins-scripts", + "homepage": "", + "size": 192, + "stargazers_count": 625, + "watchers_count": 625, + "language": "Groovy", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 315, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 5, + "license": null, + "forks": 315, + "open_issues": 5, + "watchers": 625, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2989282, + "node_id": "MDEwOlJlcG9zaXRvcnkyOTg5Mjgy", + "name": "jpi.rb", + "full_name": "jenkinsci/jpi.rb", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jpi.rb", + "description": "Ruby tools for building Jenkins plugins", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/jpi.rb", + "forks_url": "https://api.github.com/repos/jenkinsci/jpi.rb/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jpi.rb/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jpi.rb/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jpi.rb/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jpi.rb/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jpi.rb/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jpi.rb/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jpi.rb/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jpi.rb/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jpi.rb/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jpi.rb/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jpi.rb/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jpi.rb/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jpi.rb/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jpi.rb/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jpi.rb/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jpi.rb/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jpi.rb/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jpi.rb/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jpi.rb/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jpi.rb/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jpi.rb/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jpi.rb/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jpi.rb/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jpi.rb/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jpi.rb/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jpi.rb/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jpi.rb/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jpi.rb/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jpi.rb/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jpi.rb/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jpi.rb/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jpi.rb/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jpi.rb/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jpi.rb/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jpi.rb/deployments", + "created_at": "2011-12-15T17:19:59Z", + "updated_at": "2013-11-10T02:07:49Z", + "pushed_at": "2013-11-10T02:07:44Z", + "git_url": "git://github.com/jenkinsci/jpi.rb.git", + "ssh_url": "git@github.com:jenkinsci/jpi.rb.git", + "clone_url": "https://github.com/jenkinsci/jpi.rb.git", + "svn_url": "https://github.com/jenkinsci/jpi.rb", + "homepage": "http://jenkins-ci.org", + "size": 201, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Ruby", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 2989297, + "node_id": "MDEwOlJlcG9zaXRvcnkyOTg5Mjk3", + "name": "jenkins-plugin-runtime.rb", + "full_name": "jenkinsci/jenkins-plugin-runtime.rb", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jenkins-plugin-runtime.rb", + "description": "The idomatic Ruby API for building Jenkins CI plugins", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/jenkins-plugin-runtime.rb", + "forks_url": "https://api.github.com/repos/jenkinsci/jenkins-plugin-runtime.rb/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jenkins-plugin-runtime.rb/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jenkins-plugin-runtime.rb/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jenkins-plugin-runtime.rb/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jenkins-plugin-runtime.rb/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jenkins-plugin-runtime.rb/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jenkins-plugin-runtime.rb/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jenkins-plugin-runtime.rb/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jenkins-plugin-runtime.rb/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jenkins-plugin-runtime.rb/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jenkins-plugin-runtime.rb/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jenkins-plugin-runtime.rb/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jenkins-plugin-runtime.rb/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jenkins-plugin-runtime.rb/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jenkins-plugin-runtime.rb/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jenkins-plugin-runtime.rb/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jenkins-plugin-runtime.rb/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jenkins-plugin-runtime.rb/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jenkins-plugin-runtime.rb/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jenkins-plugin-runtime.rb/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jenkins-plugin-runtime.rb/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jenkins-plugin-runtime.rb/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jenkins-plugin-runtime.rb/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jenkins-plugin-runtime.rb/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jenkins-plugin-runtime.rb/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jenkins-plugin-runtime.rb/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jenkins-plugin-runtime.rb/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jenkins-plugin-runtime.rb/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jenkins-plugin-runtime.rb/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jenkins-plugin-runtime.rb/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jenkins-plugin-runtime.rb/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jenkins-plugin-runtime.rb/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jenkins-plugin-runtime.rb/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jenkins-plugin-runtime.rb/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jenkins-plugin-runtime.rb/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jenkins-plugin-runtime.rb/deployments", + "created_at": "2011-12-15T17:21:49Z", + "updated_at": "2019-08-13T14:54:13Z", + "pushed_at": "2013-11-10T02:06:29Z", + "git_url": "git://github.com/jenkinsci/jenkins-plugin-runtime.rb.git", + "ssh_url": "git@github.com:jenkinsci/jenkins-plugin-runtime.rb.git", + "clone_url": "https://github.com/jenkinsci/jenkins-plugin-runtime.rb.git", + "svn_url": "https://github.com/jenkinsci/jenkins-plugin-runtime.rb", + "homepage": "http://jenkins-ci.org", + "size": 1531, + "stargazers_count": 7, + "watchers_count": 7, + "language": "Ruby", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 2, + "open_issues": 1, + "watchers": 7, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 3006429, + "node_id": "MDEwOlJlcG9zaXRvcnkzMDA2NDI5", + "name": "xtrigger-lib", + "full_name": "jenkinsci/xtrigger-lib", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/xtrigger-lib", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/xtrigger-lib", + "forks_url": "https://api.github.com/repos/jenkinsci/xtrigger-lib/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/xtrigger-lib/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/xtrigger-lib/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/xtrigger-lib/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/xtrigger-lib/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/xtrigger-lib/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/xtrigger-lib/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/xtrigger-lib/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/xtrigger-lib/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/xtrigger-lib/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/xtrigger-lib/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/xtrigger-lib/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/xtrigger-lib/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/xtrigger-lib/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/xtrigger-lib/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/xtrigger-lib/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/xtrigger-lib/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/xtrigger-lib/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/xtrigger-lib/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/xtrigger-lib/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/xtrigger-lib/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/xtrigger-lib/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/xtrigger-lib/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/xtrigger-lib/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/xtrigger-lib/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/xtrigger-lib/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/xtrigger-lib/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/xtrigger-lib/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/xtrigger-lib/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/xtrigger-lib/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/xtrigger-lib/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/xtrigger-lib/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/xtrigger-lib/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/xtrigger-lib/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/xtrigger-lib/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/xtrigger-lib/deployments", + "created_at": "2011-12-18T15:15:06Z", + "updated_at": "2019-07-21T21:06:04Z", + "pushed_at": "2019-07-21T21:06:02Z", + "git_url": "git://github.com/jenkinsci/xtrigger-lib.git", + "ssh_url": "git@github.com:jenkinsci/xtrigger-lib.git", + "clone_url": "https://github.com/jenkinsci/xtrigger-lib.git", + "svn_url": "https://github.com/jenkinsci/xtrigger-lib", + "homepage": "", + "size": 101, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 17, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": null, + "forks": 17, + "open_issues": 3, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 3016624, + "node_id": "MDEwOlJlcG9zaXRvcnkzMDE2NjI0", + "name": "junit-attachments-plugin", + "full_name": "jenkinsci/junit-attachments-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/junit-attachments-plugin", + "description": "Jenkins junit-attachments plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/junit-attachments-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/junit-attachments-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/junit-attachments-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/junit-attachments-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/junit-attachments-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/junit-attachments-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/junit-attachments-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/junit-attachments-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/junit-attachments-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/junit-attachments-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/junit-attachments-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/junit-attachments-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/junit-attachments-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/junit-attachments-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/junit-attachments-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/junit-attachments-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/junit-attachments-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/junit-attachments-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/junit-attachments-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/junit-attachments-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/junit-attachments-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/junit-attachments-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/junit-attachments-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/junit-attachments-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/junit-attachments-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/junit-attachments-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/junit-attachments-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/junit-attachments-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/junit-attachments-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/junit-attachments-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/junit-attachments-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/junit-attachments-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/junit-attachments-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/junit-attachments-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/junit-attachments-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/junit-attachments-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/junit-attachments-plugin/deployments", + "created_at": "2011-12-20T02:01:36Z", + "updated_at": "2019-10-22T20:59:29Z", + "pushed_at": "2019-08-20T11:52:39Z", + "git_url": "git://github.com/jenkinsci/junit-attachments-plugin.git", + "ssh_url": "git@github.com:jenkinsci/junit-attachments-plugin.git", + "clone_url": "https://github.com/jenkinsci/junit-attachments-plugin.git", + "svn_url": "https://github.com/jenkinsci/junit-attachments-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 150, + "stargazers_count": 13, + "watchers_count": 13, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 33, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 7, + "license": null, + "forks": 33, + "open_issues": 7, + "watchers": 13, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 3016650, + "node_id": "MDEwOlJlcG9zaXRvcnkzMDE2NjUw", + "name": "silktestsuite-plugin", + "full_name": "jenkinsci/silktestsuite-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/silktestsuite-plugin", + "description": "Jenkins silktestsuite plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/silktestsuite-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/silktestsuite-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/silktestsuite-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/silktestsuite-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/silktestsuite-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/silktestsuite-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/silktestsuite-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/silktestsuite-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/silktestsuite-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/silktestsuite-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/silktestsuite-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/silktestsuite-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/silktestsuite-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/silktestsuite-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/silktestsuite-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/silktestsuite-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/silktestsuite-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/silktestsuite-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/silktestsuite-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/silktestsuite-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/silktestsuite-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/silktestsuite-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/silktestsuite-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/silktestsuite-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/silktestsuite-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/silktestsuite-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/silktestsuite-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/silktestsuite-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/silktestsuite-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/silktestsuite-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/silktestsuite-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/silktestsuite-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/silktestsuite-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/silktestsuite-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/silktestsuite-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/silktestsuite-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/silktestsuite-plugin/deployments", + "created_at": "2011-12-20T02:07:58Z", + "updated_at": "2015-09-16T16:50:34Z", + "pushed_at": "2015-09-16T16:52:35Z", + "git_url": "git://github.com/jenkinsci/silktestsuite-plugin.git", + "ssh_url": "git@github.com:jenkinsci/silktestsuite-plugin.git", + "clone_url": "https://github.com/jenkinsci/silktestsuite-plugin.git", + "svn_url": "https://github.com/jenkinsci/silktestsuite-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 1443, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 1, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 3017729, + "node_id": "MDEwOlJlcG9zaXRvcnkzMDE3NzI5", + "name": "chromedriver-plugin", + "full_name": "jenkinsci/chromedriver-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/chromedriver-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/chromedriver-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/chromedriver-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/chromedriver-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/chromedriver-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/chromedriver-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/chromedriver-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/chromedriver-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/chromedriver-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/chromedriver-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/chromedriver-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/chromedriver-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/chromedriver-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/chromedriver-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/chromedriver-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/chromedriver-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/chromedriver-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/chromedriver-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/chromedriver-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/chromedriver-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/chromedriver-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/chromedriver-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/chromedriver-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/chromedriver-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/chromedriver-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/chromedriver-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/chromedriver-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/chromedriver-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/chromedriver-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/chromedriver-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/chromedriver-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/chromedriver-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/chromedriver-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/chromedriver-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/chromedriver-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/chromedriver-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/chromedriver-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/chromedriver-plugin/deployments", + "created_at": "2011-12-20T06:28:15Z", + "updated_at": "2019-06-14T14:28:55Z", + "pushed_at": "2019-10-08T11:19:45Z", + "git_url": "git://github.com/jenkinsci/chromedriver-plugin.git", + "ssh_url": "git@github.com:jenkinsci/chromedriver-plugin.git", + "clone_url": "https://github.com/jenkinsci/chromedriver-plugin.git", + "svn_url": "https://github.com/jenkinsci/chromedriver-plugin", + "homepage": "", + "size": 144, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 10, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 10, + "open_issues": 2, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 3020629, + "node_id": "MDEwOlJlcG9zaXRvcnkzMDIwNjI5", + "name": "karotz-plugin", + "full_name": "jenkinsci/karotz-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/karotz-plugin", + "description": "Karotz Plugin for Jenins.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/karotz-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/karotz-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/karotz-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/karotz-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/karotz-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/karotz-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/karotz-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/karotz-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/karotz-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/karotz-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/karotz-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/karotz-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/karotz-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/karotz-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/karotz-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/karotz-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/karotz-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/karotz-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/karotz-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/karotz-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/karotz-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/karotz-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/karotz-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/karotz-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/karotz-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/karotz-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/karotz-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/karotz-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/karotz-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/karotz-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/karotz-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/karotz-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/karotz-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/karotz-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/karotz-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/karotz-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/karotz-plugin/deployments", + "created_at": "2011-12-20T16:02:06Z", + "updated_at": "2017-05-26T06:32:57Z", + "pushed_at": "2013-11-10T02:08:13Z", + "git_url": "git://github.com/jenkinsci/karotz-plugin.git", + "ssh_url": "git@github.com:jenkinsci/karotz-plugin.git", + "clone_url": "https://github.com/jenkinsci/karotz-plugin.git", + "svn_url": "https://github.com/jenkinsci/karotz-plugin", + "homepage": "", + "size": 206, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 3042615, + "node_id": "MDEwOlJlcG9zaXRvcnkzMDQyNjE1", + "name": "sshd-module", + "full_name": "jenkinsci/sshd-module", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/sshd-module", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/sshd-module", + "forks_url": "https://api.github.com/repos/jenkinsci/sshd-module/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/sshd-module/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/sshd-module/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/sshd-module/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/sshd-module/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/sshd-module/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/sshd-module/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/sshd-module/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/sshd-module/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/sshd-module/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/sshd-module/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/sshd-module/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/sshd-module/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/sshd-module/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/sshd-module/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/sshd-module/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/sshd-module/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/sshd-module/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/sshd-module/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/sshd-module/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/sshd-module/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/sshd-module/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/sshd-module/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/sshd-module/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/sshd-module/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/sshd-module/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/sshd-module/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/sshd-module/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/sshd-module/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/sshd-module/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/sshd-module/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/sshd-module/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/sshd-module/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/sshd-module/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/sshd-module/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/sshd-module/deployments", + "created_at": "2011-12-23T22:26:33Z", + "updated_at": "2019-08-16T21:01:27Z", + "pushed_at": "2019-08-16T21:01:25Z", + "git_url": "git://github.com/jenkinsci/sshd-module.git", + "ssh_url": "git@github.com:jenkinsci/sshd-module.git", + "clone_url": "https://github.com/jenkinsci/sshd-module.git", + "svn_url": "https://github.com/jenkinsci/sshd-module", + "homepage": "", + "size": 102, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 21, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 21, + "open_issues": 1, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 3043329, + "node_id": "MDEwOlJlcG9zaXRvcnkzMDQzMzI5", + "name": "stepcounter-plugin", + "full_name": "jenkinsci/stepcounter-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/stepcounter-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/stepcounter-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/stepcounter-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/stepcounter-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/stepcounter-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/stepcounter-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/stepcounter-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/stepcounter-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/stepcounter-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/stepcounter-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/stepcounter-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/stepcounter-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/stepcounter-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/stepcounter-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/stepcounter-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/stepcounter-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/stepcounter-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/stepcounter-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/stepcounter-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/stepcounter-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/stepcounter-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/stepcounter-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/stepcounter-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/stepcounter-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/stepcounter-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/stepcounter-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/stepcounter-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/stepcounter-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/stepcounter-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/stepcounter-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/stepcounter-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/stepcounter-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/stepcounter-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/stepcounter-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/stepcounter-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/stepcounter-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/stepcounter-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/stepcounter-plugin/deployments", + "created_at": "2011-12-24T02:19:54Z", + "updated_at": "2017-01-06T04:51:36Z", + "pushed_at": "2019-10-08T12:40:48Z", + "git_url": "git://github.com/jenkinsci/stepcounter-plugin.git", + "ssh_url": "git@github.com:jenkinsci/stepcounter-plugin.git", + "clone_url": "https://github.com/jenkinsci/stepcounter-plugin.git", + "svn_url": "https://github.com/jenkinsci/stepcounter-plugin", + "homepage": "", + "size": 4809, + "stargazers_count": 9, + "watchers_count": 9, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 8, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 8, + "open_issues": 2, + "watchers": 9, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 3055886, + "node_id": "MDEwOlJlcG9zaXRvcnkzMDU1ODg2", + "name": "twilio-notifier-plugin", + "full_name": "jenkinsci/twilio-notifier-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/twilio-notifier-plugin", + "description": "A Jenkins plugin which uses Twilio to send sms notifications and calls with text to speech", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/twilio-notifier-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/twilio-notifier-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/twilio-notifier-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/twilio-notifier-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/twilio-notifier-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/twilio-notifier-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/twilio-notifier-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/twilio-notifier-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/twilio-notifier-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/twilio-notifier-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/twilio-notifier-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/twilio-notifier-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/twilio-notifier-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/twilio-notifier-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/twilio-notifier-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/twilio-notifier-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/twilio-notifier-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/twilio-notifier-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/twilio-notifier-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/twilio-notifier-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/twilio-notifier-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/twilio-notifier-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/twilio-notifier-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/twilio-notifier-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/twilio-notifier-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/twilio-notifier-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/twilio-notifier-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/twilio-notifier-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/twilio-notifier-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/twilio-notifier-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/twilio-notifier-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/twilio-notifier-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/twilio-notifier-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/twilio-notifier-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/twilio-notifier-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/twilio-notifier-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/twilio-notifier-plugin/deployments", + "created_at": "2011-12-27T09:45:44Z", + "updated_at": "2013-11-10T02:21:30Z", + "pushed_at": "2013-11-10T02:21:26Z", + "git_url": "git://github.com/jenkinsci/twilio-notifier-plugin.git", + "ssh_url": "git@github.com:jenkinsci/twilio-notifier-plugin.git", + "clone_url": "https://github.com/jenkinsci/twilio-notifier-plugin.git", + "svn_url": "https://github.com/jenkinsci/twilio-notifier-plugin", + "homepage": "", + "size": 123, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 4, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 3057443, + "node_id": "MDEwOlJlcG9zaXRvcnkzMDU3NDQz", + "name": "rvm-plugin", + "full_name": "jenkinsci/rvm-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/rvm-plugin", + "description": "rvm plugin for Jenkins CI", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/rvm-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/rvm-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/rvm-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/rvm-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/rvm-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/rvm-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/rvm-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/rvm-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/rvm-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/rvm-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/rvm-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/rvm-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/rvm-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/rvm-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/rvm-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/rvm-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/rvm-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/rvm-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/rvm-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/rvm-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/rvm-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/rvm-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/rvm-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/rvm-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/rvm-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/rvm-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/rvm-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/rvm-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/rvm-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/rvm-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/rvm-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/rvm-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/rvm-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/rvm-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/rvm-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/rvm-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/rvm-plugin/deployments", + "created_at": "2011-12-27T16:13:48Z", + "updated_at": "2017-12-15T18:49:02Z", + "pushed_at": "2016-09-27T15:36:32Z", + "git_url": "git://github.com/jenkinsci/rvm-plugin.git", + "ssh_url": "git@github.com:jenkinsci/rvm-plugin.git", + "clone_url": "https://github.com/jenkinsci/rvm-plugin.git", + "svn_url": "https://github.com/jenkinsci/rvm-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/RVM+Plugin", + "size": 13185, + "stargazers_count": 28, + "watchers_count": 28, + "language": "Ruby", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 24, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 24, + "open_issues": 1, + "watchers": 28, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 3059107, + "node_id": "MDEwOlJlcG9zaXRvcnkzMDU5MTA3", + "name": "associated-files-plugin", + "full_name": "jenkinsci/associated-files-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/associated-files-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/associated-files-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/associated-files-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/associated-files-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/associated-files-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/associated-files-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/associated-files-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/associated-files-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/associated-files-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/associated-files-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/associated-files-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/associated-files-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/associated-files-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/associated-files-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/associated-files-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/associated-files-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/associated-files-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/associated-files-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/associated-files-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/associated-files-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/associated-files-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/associated-files-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/associated-files-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/associated-files-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/associated-files-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/associated-files-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/associated-files-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/associated-files-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/associated-files-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/associated-files-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/associated-files-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/associated-files-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/associated-files-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/associated-files-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/associated-files-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/associated-files-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/associated-files-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/associated-files-plugin/deployments", + "created_at": "2011-12-27T21:27:44Z", + "updated_at": "2018-01-30T12:11:48Z", + "pushed_at": "2013-11-11T20:18:44Z", + "git_url": "git://github.com/jenkinsci/associated-files-plugin.git", + "ssh_url": "git@github.com:jenkinsci/associated-files-plugin.git", + "clone_url": "https://github.com/jenkinsci/associated-files-plugin.git", + "svn_url": "https://github.com/jenkinsci/associated-files-plugin", + "homepage": "", + "size": 119, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Groovy", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 3098451, + "node_id": "MDEwOlJlcG9zaXRvcnkzMDk4NDUx", + "name": "beer-plugin", + "full_name": "jenkinsci/beer-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/beer-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/beer-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/beer-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/beer-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/beer-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/beer-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/beer-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/beer-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/beer-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/beer-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/beer-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/beer-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/beer-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/beer-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/beer-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/beer-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/beer-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/beer-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/beer-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/beer-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/beer-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/beer-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/beer-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/beer-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/beer-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/beer-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/beer-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/beer-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/beer-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/beer-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/beer-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/beer-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/beer-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/beer-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/beer-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/beer-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/beer-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/beer-plugin/deployments", + "created_at": "2012-01-04T00:11:39Z", + "updated_at": "2019-07-15T11:44:57Z", + "pushed_at": "2019-06-20T20:52:24Z", + "git_url": "git://github.com/jenkinsci/beer-plugin.git", + "ssh_url": "git@github.com:jenkinsci/beer-plugin.git", + "clone_url": "https://github.com/jenkinsci/beer-plugin.git", + "svn_url": "https://github.com/jenkinsci/beer-plugin", + "homepage": "", + "size": 2587, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 7, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 7, + "open_issues": 2, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 3104071, + "node_id": "MDEwOlJlcG9zaXRvcnkzMTA0MDcx", + "name": "github-api-plugin", + "full_name": "jenkinsci/github-api-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/github-api-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/github-api-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/github-api-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/github-api-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/github-api-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/github-api-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/github-api-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/github-api-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/github-api-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/github-api-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/github-api-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/github-api-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/github-api-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/github-api-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/github-api-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/github-api-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/github-api-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/github-api-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/github-api-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/github-api-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/github-api-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/github-api-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/github-api-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/github-api-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/github-api-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/github-api-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/github-api-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/github-api-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/github-api-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/github-api-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/github-api-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/github-api-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/github-api-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/github-api-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/github-api-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/github-api-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/github-api-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/github-api-plugin/deployments", + "created_at": "2012-01-04T18:05:22Z", + "updated_at": "2019-08-28T01:52:42Z", + "pushed_at": "2019-08-28T01:52:40Z", + "git_url": "git://github.com/jenkinsci/github-api-plugin.git", + "ssh_url": "git@github.com:jenkinsci/github-api-plugin.git", + "clone_url": "https://github.com/jenkinsci/github-api-plugin.git", + "svn_url": "https://github.com/jenkinsci/github-api-plugin", + "homepage": "", + "size": 93, + "stargazers_count": 11, + "watchers_count": 11, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 46, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 46, + "open_issues": 0, + "watchers": 11, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 3119830, + "node_id": "MDEwOlJlcG9zaXRvcnkzMTE5ODMw", + "name": "pollscm-plugin", + "full_name": "jenkinsci/pollscm-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pollscm-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/pollscm-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pollscm-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pollscm-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pollscm-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pollscm-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pollscm-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pollscm-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pollscm-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pollscm-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pollscm-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pollscm-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pollscm-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pollscm-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pollscm-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pollscm-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pollscm-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pollscm-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pollscm-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pollscm-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pollscm-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pollscm-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pollscm-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pollscm-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pollscm-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pollscm-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pollscm-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pollscm-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pollscm-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pollscm-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pollscm-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pollscm-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pollscm-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pollscm-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pollscm-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pollscm-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pollscm-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pollscm-plugin/deployments", + "created_at": "2012-01-06T17:59:41Z", + "updated_at": "2017-07-10T15:25:44Z", + "pushed_at": "2019-10-08T11:22:33Z", + "git_url": "git://github.com/jenkinsci/pollscm-plugin.git", + "ssh_url": "git@github.com:jenkinsci/pollscm-plugin.git", + "clone_url": "https://github.com/jenkinsci/pollscm-plugin.git", + "svn_url": "https://github.com/jenkinsci/pollscm-plugin", + "homepage": "", + "size": 31, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 2, + "open_issues": 2, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 3124618, + "node_id": "MDEwOlJlcG9zaXRvcnkzMTI0NjE4", + "name": "countjobs-viewstabbar-plugin", + "full_name": "jenkinsci/countjobs-viewstabbar-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/countjobs-viewstabbar-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/countjobs-viewstabbar-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/countjobs-viewstabbar-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/countjobs-viewstabbar-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/countjobs-viewstabbar-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/countjobs-viewstabbar-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/countjobs-viewstabbar-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/countjobs-viewstabbar-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/countjobs-viewstabbar-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/countjobs-viewstabbar-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/countjobs-viewstabbar-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/countjobs-viewstabbar-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/countjobs-viewstabbar-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/countjobs-viewstabbar-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/countjobs-viewstabbar-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/countjobs-viewstabbar-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/countjobs-viewstabbar-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/countjobs-viewstabbar-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/countjobs-viewstabbar-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/countjobs-viewstabbar-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/countjobs-viewstabbar-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/countjobs-viewstabbar-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/countjobs-viewstabbar-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/countjobs-viewstabbar-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/countjobs-viewstabbar-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/countjobs-viewstabbar-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/countjobs-viewstabbar-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/countjobs-viewstabbar-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/countjobs-viewstabbar-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/countjobs-viewstabbar-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/countjobs-viewstabbar-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/countjobs-viewstabbar-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/countjobs-viewstabbar-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/countjobs-viewstabbar-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/countjobs-viewstabbar-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/countjobs-viewstabbar-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/countjobs-viewstabbar-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/countjobs-viewstabbar-plugin/deployments", + "created_at": "2012-01-07T14:00:01Z", + "updated_at": "2019-10-22T21:50:20Z", + "pushed_at": "2019-10-22T21:50:18Z", + "git_url": "git://github.com/jenkinsci/countjobs-viewstabbar-plugin.git", + "ssh_url": "git@github.com:jenkinsci/countjobs-viewstabbar-plugin.git", + "clone_url": "https://github.com/jenkinsci/countjobs-viewstabbar-plugin.git", + "svn_url": "https://github.com/jenkinsci/countjobs-viewstabbar-plugin", + "homepage": "", + "size": 49, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 3, + "open_issues": 0, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 3131429, + "node_id": "MDEwOlJlcG9zaXRvcnkzMTMxNDI5", + "name": "xpath-config-viewer-plugin", + "full_name": "jenkinsci/xpath-config-viewer-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/xpath-config-viewer-plugin", + "description": "Jenkins XPath Job Configuration Viewer", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/xpath-config-viewer-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/xpath-config-viewer-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/xpath-config-viewer-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/xpath-config-viewer-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/xpath-config-viewer-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/xpath-config-viewer-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/xpath-config-viewer-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/xpath-config-viewer-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/xpath-config-viewer-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/xpath-config-viewer-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/xpath-config-viewer-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/xpath-config-viewer-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/xpath-config-viewer-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/xpath-config-viewer-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/xpath-config-viewer-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/xpath-config-viewer-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/xpath-config-viewer-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/xpath-config-viewer-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/xpath-config-viewer-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/xpath-config-viewer-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/xpath-config-viewer-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/xpath-config-viewer-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/xpath-config-viewer-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/xpath-config-viewer-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/xpath-config-viewer-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/xpath-config-viewer-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/xpath-config-viewer-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/xpath-config-viewer-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/xpath-config-viewer-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/xpath-config-viewer-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/xpath-config-viewer-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/xpath-config-viewer-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/xpath-config-viewer-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/xpath-config-viewer-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/xpath-config-viewer-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/xpath-config-viewer-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/xpath-config-viewer-plugin/deployments", + "created_at": "2012-01-08T19:03:05Z", + "updated_at": "2013-11-10T02:23:43Z", + "pushed_at": "2013-11-10T02:23:10Z", + "git_url": "git://github.com/jenkinsci/xpath-config-viewer-plugin.git", + "ssh_url": "git@github.com:jenkinsci/xpath-config-viewer-plugin.git", + "clone_url": "https://github.com/jenkinsci/xpath-config-viewer-plugin.git", + "svn_url": "https://github.com/jenkinsci/xpath-config-viewer-plugin", + "homepage": "", + "size": 127, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 3140528, + "node_id": "MDEwOlJlcG9zaXRvcnkzMTQwNTI4", + "name": "envinject-lib", + "full_name": "jenkinsci/envinject-lib", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/envinject-lib", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/envinject-lib", + "forks_url": "https://api.github.com/repos/jenkinsci/envinject-lib/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/envinject-lib/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/envinject-lib/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/envinject-lib/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/envinject-lib/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/envinject-lib/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/envinject-lib/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/envinject-lib/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/envinject-lib/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/envinject-lib/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/envinject-lib/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/envinject-lib/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/envinject-lib/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/envinject-lib/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/envinject-lib/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/envinject-lib/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/envinject-lib/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/envinject-lib/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/envinject-lib/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/envinject-lib/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/envinject-lib/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/envinject-lib/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/envinject-lib/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/envinject-lib/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/envinject-lib/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/envinject-lib/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/envinject-lib/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/envinject-lib/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/envinject-lib/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/envinject-lib/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/envinject-lib/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/envinject-lib/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/envinject-lib/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/envinject-lib/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/envinject-lib/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/envinject-lib/deployments", + "created_at": "2012-01-09T22:03:42Z", + "updated_at": "2017-07-09T18:35:30Z", + "pushed_at": "2019-04-24T16:01:48Z", + "git_url": "git://github.com/jenkinsci/envinject-lib.git", + "ssh_url": "git@github.com:jenkinsci/envinject-lib.git", + "clone_url": "https://github.com/jenkinsci/envinject-lib.git", + "svn_url": "https://github.com/jenkinsci/envinject-lib", + "homepage": "", + "size": 97, + "stargazers_count": 6, + "watchers_count": 6, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 13, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 13, + "open_issues": 0, + "watchers": 6, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 3154315, + "node_id": "MDEwOlJlcG9zaXRvcnkzMTU0MzE1", + "name": "antexec-plugin", + "full_name": "jenkinsci/antexec-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/antexec-plugin", + "description": "Adding build step to Hudson/Jenkins CI that runs an Apache Ant tasks similar as one build file with only one target", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/antexec-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/antexec-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/antexec-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/antexec-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/antexec-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/antexec-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/antexec-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/antexec-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/antexec-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/antexec-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/antexec-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/antexec-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/antexec-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/antexec-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/antexec-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/antexec-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/antexec-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/antexec-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/antexec-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/antexec-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/antexec-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/antexec-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/antexec-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/antexec-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/antexec-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/antexec-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/antexec-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/antexec-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/antexec-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/antexec-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/antexec-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/antexec-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/antexec-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/antexec-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/antexec-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/antexec-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/antexec-plugin/deployments", + "created_at": "2012-01-11T14:36:32Z", + "updated_at": "2019-03-22T01:51:41Z", + "pushed_at": "2019-02-22T13:53:14Z", + "git_url": "git://github.com/jenkinsci/antexec-plugin.git", + "ssh_url": "git@github.com:jenkinsci/antexec-plugin.git", + "clone_url": "https://github.com/jenkinsci/antexec-plugin.git", + "svn_url": "https://github.com/jenkinsci/antexec-plugin", + "homepage": "", + "size": 288, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 2, + "open_issues": 0, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 3160629, + "node_id": "MDEwOlJlcG9zaXRvcnkzMTYwNjI5", + "name": "root-cause-plugin", + "full_name": "jenkinsci/root-cause-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/root-cause-plugin", + "description": "A Jenkins Plugin to display the root causes of build", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/root-cause-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/root-cause-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/root-cause-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/root-cause-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/root-cause-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/root-cause-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/root-cause-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/root-cause-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/root-cause-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/root-cause-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/root-cause-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/root-cause-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/root-cause-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/root-cause-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/root-cause-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/root-cause-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/root-cause-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/root-cause-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/root-cause-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/root-cause-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/root-cause-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/root-cause-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/root-cause-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/root-cause-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/root-cause-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/root-cause-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/root-cause-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/root-cause-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/root-cause-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/root-cause-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/root-cause-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/root-cause-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/root-cause-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/root-cause-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/root-cause-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/root-cause-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/root-cause-plugin/deployments", + "created_at": "2012-01-12T08:14:25Z", + "updated_at": "2013-11-10T02:15:48Z", + "pushed_at": "2013-11-10T02:15:40Z", + "git_url": "git://github.com/jenkinsci/root-cause-plugin.git", + "ssh_url": "git@github.com:jenkinsci/root-cause-plugin.git", + "clone_url": "https://github.com/jenkinsci/root-cause-plugin.git", + "svn_url": "https://github.com/jenkinsci/root-cause-plugin", + "homepage": "", + "size": 119, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 3172233, + "node_id": "MDEwOlJlcG9zaXRvcnkzMTcyMjMz", + "name": "ceylon-plugin", + "full_name": "jenkinsci/ceylon-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/ceylon-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/ceylon-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/ceylon-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/ceylon-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/ceylon-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/ceylon-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/ceylon-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/ceylon-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/ceylon-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/ceylon-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/ceylon-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/ceylon-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/ceylon-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/ceylon-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/ceylon-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/ceylon-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/ceylon-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/ceylon-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/ceylon-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/ceylon-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/ceylon-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/ceylon-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/ceylon-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/ceylon-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/ceylon-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/ceylon-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/ceylon-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/ceylon-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/ceylon-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/ceylon-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/ceylon-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/ceylon-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/ceylon-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/ceylon-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/ceylon-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/ceylon-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/ceylon-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/ceylon-plugin/deployments", + "created_at": "2012-01-13T16:17:57Z", + "updated_at": "2013-11-10T01:56:25Z", + "pushed_at": "2013-11-10T01:56:21Z", + "git_url": "git://github.com/jenkinsci/ceylon-plugin.git", + "ssh_url": "git@github.com:jenkinsci/ceylon-plugin.git", + "clone_url": "https://github.com/jenkinsci/ceylon-plugin.git", + "svn_url": "https://github.com/jenkinsci/ceylon-plugin", + "homepage": "", + "size": 122, + "stargazers_count": 1, + "watchers_count": 1, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 3183957, + "node_id": "MDEwOlJlcG9zaXRvcnkzMTgzOTU3", + "name": "unity3d-plugin", + "full_name": "jenkinsci/unity3d-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/unity3d-plugin", + "description": "Jenkins Unity3d plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/unity3d-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/unity3d-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/unity3d-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/unity3d-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/unity3d-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/unity3d-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/unity3d-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/unity3d-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/unity3d-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/unity3d-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/unity3d-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/unity3d-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/unity3d-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/unity3d-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/unity3d-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/unity3d-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/unity3d-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/unity3d-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/unity3d-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/unity3d-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/unity3d-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/unity3d-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/unity3d-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/unity3d-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/unity3d-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/unity3d-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/unity3d-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/unity3d-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/unity3d-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/unity3d-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/unity3d-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/unity3d-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/unity3d-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/unity3d-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/unity3d-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/unity3d-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/unity3d-plugin/deployments", + "created_at": "2012-01-15T14:29:21Z", + "updated_at": "2019-10-12T03:05:00Z", + "pushed_at": "2019-10-08T11:22:52Z", + "git_url": "git://github.com/jenkinsci/unity3d-plugin.git", + "ssh_url": "git@github.com:jenkinsci/unity3d-plugin.git", + "clone_url": "https://github.com/jenkinsci/unity3d-plugin.git", + "svn_url": "https://github.com/jenkinsci/unity3d-plugin", + "homepage": "", + "size": 1618, + "stargazers_count": 78, + "watchers_count": 78, + "language": "C#", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 49, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 16, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 49, + "open_issues": 16, + "watchers": 78, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 3184271, + "node_id": "MDEwOlJlcG9zaXRvcnkzMTg0Mjcx", + "name": "tikal-multijob-plugin", + "full_name": "jenkinsci/tikal-multijob-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/tikal-multijob-plugin", + "description": "A new multijob plugin was created by Tikal ALM team. Using this job you can add full hierarchy of Jenkins jobs that will be executed in sequence or in parallel.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/tikal-multijob-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/tikal-multijob-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/tikal-multijob-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/tikal-multijob-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/tikal-multijob-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/tikal-multijob-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/tikal-multijob-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/tikal-multijob-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/tikal-multijob-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/tikal-multijob-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/tikal-multijob-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/tikal-multijob-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/tikal-multijob-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/tikal-multijob-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/tikal-multijob-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/tikal-multijob-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/tikal-multijob-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/tikal-multijob-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/tikal-multijob-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/tikal-multijob-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/tikal-multijob-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/tikal-multijob-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/tikal-multijob-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/tikal-multijob-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/tikal-multijob-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/tikal-multijob-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/tikal-multijob-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/tikal-multijob-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/tikal-multijob-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/tikal-multijob-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/tikal-multijob-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/tikal-multijob-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/tikal-multijob-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/tikal-multijob-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/tikal-multijob-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/tikal-multijob-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/tikal-multijob-plugin/deployments", + "created_at": "2012-01-15T15:42:45Z", + "updated_at": "2019-10-17T02:57:17Z", + "pushed_at": "2019-10-08T06:14:20Z", + "git_url": "git://github.com/jenkinsci/tikal-multijob-plugin.git", + "ssh_url": "git@github.com:jenkinsci/tikal-multijob-plugin.git", + "clone_url": "https://github.com/jenkinsci/tikal-multijob-plugin.git", + "svn_url": "https://github.com/jenkinsci/tikal-multijob-plugin", + "homepage": "http://www.tikalk.com/java/forums/create-multijob-jenkins-using-tikal-multijob-plugin", + "size": 702, + "stargazers_count": 61, + "watchers_count": 61, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 120, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 64, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 120, + "open_issues": 64, + "watchers": 61, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 3185413, + "node_id": "MDEwOlJlcG9zaXRvcnkzMTg1NDEz", + "name": "mstestrunner-plugin", + "full_name": "jenkinsci/mstestrunner-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/mstestrunner-plugin", + "description": "MSTest Runner is Jenkins-CI plugin for running MSTest assemblies", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/mstestrunner-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/mstestrunner-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/mstestrunner-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/mstestrunner-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/mstestrunner-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/mstestrunner-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/mstestrunner-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/mstestrunner-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/mstestrunner-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/mstestrunner-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/mstestrunner-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/mstestrunner-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/mstestrunner-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/mstestrunner-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/mstestrunner-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/mstestrunner-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/mstestrunner-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/mstestrunner-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/mstestrunner-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/mstestrunner-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/mstestrunner-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/mstestrunner-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/mstestrunner-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/mstestrunner-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/mstestrunner-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/mstestrunner-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/mstestrunner-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/mstestrunner-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/mstestrunner-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/mstestrunner-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/mstestrunner-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/mstestrunner-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/mstestrunner-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/mstestrunner-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/mstestrunner-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/mstestrunner-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/mstestrunner-plugin/deployments", + "created_at": "2012-01-15T19:33:32Z", + "updated_at": "2019-10-09T13:12:23Z", + "pushed_at": "2019-10-09T13:12:20Z", + "git_url": "git://github.com/jenkinsci/mstestrunner-plugin.git", + "ssh_url": "git@github.com:jenkinsci/mstestrunner-plugin.git", + "clone_url": "https://github.com/jenkinsci/mstestrunner-plugin.git", + "svn_url": "https://github.com/jenkinsci/mstestrunner-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/MSTestRunner+Plugin", + "size": 65, + "stargazers_count": 6, + "watchers_count": 6, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 18, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 18, + "open_issues": 1, + "watchers": 6, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 3196906, + "node_id": "MDEwOlJlcG9zaXRvcnkzMTk2OTA2", + "name": "job-log-logger-plugin", + "full_name": "jenkinsci/job-log-logger-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/job-log-logger-plugin", + "description": "https://wiki.jenkins-ci.org/display/JENKINS/Job+Log+Logger+Plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/job-log-logger-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/job-log-logger-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/job-log-logger-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/job-log-logger-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/job-log-logger-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/job-log-logger-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/job-log-logger-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/job-log-logger-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/job-log-logger-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/job-log-logger-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/job-log-logger-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/job-log-logger-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/job-log-logger-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/job-log-logger-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/job-log-logger-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/job-log-logger-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/job-log-logger-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/job-log-logger-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/job-log-logger-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/job-log-logger-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/job-log-logger-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/job-log-logger-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/job-log-logger-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/job-log-logger-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/job-log-logger-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/job-log-logger-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/job-log-logger-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/job-log-logger-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/job-log-logger-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/job-log-logger-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/job-log-logger-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/job-log-logger-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/job-log-logger-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/job-log-logger-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/job-log-logger-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/job-log-logger-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/job-log-logger-plugin/deployments", + "created_at": "2012-01-17T05:07:12Z", + "updated_at": "2013-11-10T02:07:17Z", + "pushed_at": "2019-10-08T12:35:04Z", + "git_url": "git://github.com/jenkinsci/job-log-logger-plugin.git", + "ssh_url": "git@github.com:jenkinsci/job-log-logger-plugin.git", + "clone_url": "https://github.com/jenkinsci/job-log-logger-plugin.git", + "svn_url": "https://github.com/jenkinsci/job-log-logger-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Job+Log+Logger+Plugin", + "size": 105, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 3220459, + "node_id": "MDEwOlJlcG9zaXRvcnkzMjIwNDU5", + "name": "fogbugz-plugin", + "full_name": "jenkinsci/fogbugz-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/fogbugz-plugin", + "description": "Jenkins plugin for FogBugz", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/fogbugz-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/fogbugz-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/fogbugz-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/fogbugz-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/fogbugz-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/fogbugz-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/fogbugz-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/fogbugz-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/fogbugz-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/fogbugz-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/fogbugz-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/fogbugz-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/fogbugz-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/fogbugz-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/fogbugz-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/fogbugz-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/fogbugz-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/fogbugz-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/fogbugz-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/fogbugz-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/fogbugz-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/fogbugz-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/fogbugz-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/fogbugz-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/fogbugz-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/fogbugz-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/fogbugz-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/fogbugz-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/fogbugz-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/fogbugz-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/fogbugz-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/fogbugz-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/fogbugz-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/fogbugz-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/fogbugz-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/fogbugz-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/fogbugz-plugin/deployments", + "created_at": "2012-01-19T19:40:41Z", + "updated_at": "2015-03-15T00:43:44Z", + "pushed_at": "2019-02-13T21:03:00Z", + "git_url": "git://github.com/jenkinsci/fogbugz-plugin.git", + "ssh_url": "git@github.com:jenkinsci/fogbugz-plugin.git", + "clone_url": "https://github.com/jenkinsci/fogbugz-plugin.git", + "svn_url": "https://github.com/jenkinsci/fogbugz-plugin", + "homepage": "", + "size": 145, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 6, + "open_issues": 2, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 3227938, + "node_id": "MDEwOlJlcG9zaXRvcnkzMjI3OTM4", + "name": "localization-plugin", + "full_name": "jenkinsci/localization-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/localization-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/localization-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/localization-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/localization-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/localization-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/localization-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/localization-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/localization-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/localization-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/localization-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/localization-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/localization-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/localization-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/localization-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/localization-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/localization-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/localization-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/localization-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/localization-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/localization-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/localization-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/localization-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/localization-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/localization-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/localization-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/localization-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/localization-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/localization-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/localization-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/localization-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/localization-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/localization-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/localization-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/localization-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/localization-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/localization-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/localization-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/localization-plugin/deployments", + "created_at": "2012-01-20T16:52:10Z", + "updated_at": "2014-07-22T15:12:44Z", + "pushed_at": "2015-08-31T20:32:03Z", + "git_url": "git://github.com/jenkinsci/localization-plugin.git", + "ssh_url": "git@github.com:jenkinsci/localization-plugin.git", + "clone_url": "https://github.com/jenkinsci/localization-plugin.git", + "svn_url": "https://github.com/jenkinsci/localization-plugin", + "homepage": "", + "size": 176, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 3234671, + "node_id": "MDEwOlJlcG9zaXRvcnkzMjM0Njcx", + "name": "hipchat-plugin", + "full_name": "jenkinsci/hipchat-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/hipchat-plugin", + "description": "HipChat notification plugin for Jenkins", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/hipchat-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/hipchat-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/hipchat-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/hipchat-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/hipchat-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/hipchat-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/hipchat-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/hipchat-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/hipchat-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/hipchat-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/hipchat-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/hipchat-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/hipchat-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/hipchat-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/hipchat-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/hipchat-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/hipchat-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/hipchat-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/hipchat-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/hipchat-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/hipchat-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/hipchat-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/hipchat-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/hipchat-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/hipchat-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/hipchat-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/hipchat-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/hipchat-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/hipchat-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/hipchat-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/hipchat-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/hipchat-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/hipchat-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/hipchat-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/hipchat-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/hipchat-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/hipchat-plugin/deployments", + "created_at": "2012-01-21T16:29:07Z", + "updated_at": "2018-12-20T21:33:57Z", + "pushed_at": "2018-09-25T16:09:16Z", + "git_url": "git://github.com/jenkinsci/hipchat-plugin.git", + "ssh_url": "git@github.com:jenkinsci/hipchat-plugin.git", + "clone_url": "https://github.com/jenkinsci/hipchat-plugin.git", + "svn_url": "https://github.com/jenkinsci/hipchat-plugin", + "homepage": "http://wiki.jenkins-ci.org/display/JENKINS/HipChat+Plugin", + "size": 344, + "stargazers_count": 56, + "watchers_count": 56, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 91, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 17, + "license": null, + "forks": 91, + "open_issues": 17, + "watchers": 56, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 3243048, + "node_id": "MDEwOlJlcG9zaXRvcnkzMjQzMDQ4", + "name": "shared-objects-plugin", + "full_name": "jenkinsci/shared-objects-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/shared-objects-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/shared-objects-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/shared-objects-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/shared-objects-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/shared-objects-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/shared-objects-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/shared-objects-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/shared-objects-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/shared-objects-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/shared-objects-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/shared-objects-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/shared-objects-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/shared-objects-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/shared-objects-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/shared-objects-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/shared-objects-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/shared-objects-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/shared-objects-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/shared-objects-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/shared-objects-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/shared-objects-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/shared-objects-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/shared-objects-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/shared-objects-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/shared-objects-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/shared-objects-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/shared-objects-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/shared-objects-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/shared-objects-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/shared-objects-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/shared-objects-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/shared-objects-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/shared-objects-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/shared-objects-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/shared-objects-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/shared-objects-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/shared-objects-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/shared-objects-plugin/deployments", + "created_at": "2012-01-23T00:00:51Z", + "updated_at": "2013-11-10T02:17:25Z", + "pushed_at": "2016-11-03T12:48:35Z", + "git_url": "git://github.com/jenkinsci/shared-objects-plugin.git", + "ssh_url": "git@github.com:jenkinsci/shared-objects-plugin.git", + "clone_url": "https://github.com/jenkinsci/shared-objects-plugin.git", + "svn_url": "https://github.com/jenkinsci/shared-objects-plugin", + "homepage": "", + "size": 228, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 2, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 3258872, + "node_id": "MDEwOlJlcG9zaXRvcnkzMjU4ODcy", + "name": "groovy-choice-parameter-plugin", + "full_name": "jenkinsci/groovy-choice-parameter-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/groovy-choice-parameter-plugin", + "description": "a groovy-configurable choice parameter for builds", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/groovy-choice-parameter-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/groovy-choice-parameter-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/groovy-choice-parameter-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/groovy-choice-parameter-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/groovy-choice-parameter-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/groovy-choice-parameter-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/groovy-choice-parameter-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/groovy-choice-parameter-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/groovy-choice-parameter-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/groovy-choice-parameter-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/groovy-choice-parameter-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/groovy-choice-parameter-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/groovy-choice-parameter-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/groovy-choice-parameter-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/groovy-choice-parameter-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/groovy-choice-parameter-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/groovy-choice-parameter-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/groovy-choice-parameter-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/groovy-choice-parameter-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/groovy-choice-parameter-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/groovy-choice-parameter-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/groovy-choice-parameter-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/groovy-choice-parameter-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/groovy-choice-parameter-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/groovy-choice-parameter-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/groovy-choice-parameter-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/groovy-choice-parameter-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/groovy-choice-parameter-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/groovy-choice-parameter-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/groovy-choice-parameter-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/groovy-choice-parameter-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/groovy-choice-parameter-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/groovy-choice-parameter-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/groovy-choice-parameter-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/groovy-choice-parameter-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/groovy-choice-parameter-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/groovy-choice-parameter-plugin/deployments", + "created_at": "2012-01-24T19:18:18Z", + "updated_at": "2014-07-22T15:53:38Z", + "pushed_at": "2014-07-22T15:53:38Z", + "git_url": "git://github.com/jenkinsci/groovy-choice-parameter-plugin.git", + "ssh_url": "git@github.com:jenkinsci/groovy-choice-parameter-plugin.git", + "clone_url": "https://github.com/jenkinsci/groovy-choice-parameter-plugin.git", + "svn_url": "https://github.com/jenkinsci/groovy-choice-parameter-plugin", + "homepage": "", + "size": 120, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 3271310, + "node_id": "MDEwOlJlcG9zaXRvcnkzMjcxMzEw", + "name": "keyboard-shortcuts-plugin", + "full_name": "jenkinsci/keyboard-shortcuts-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/keyboard-shortcuts-plugin", + "description": "Speed your operation without a mouse click.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/keyboard-shortcuts-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/keyboard-shortcuts-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/keyboard-shortcuts-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/keyboard-shortcuts-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/keyboard-shortcuts-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/keyboard-shortcuts-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/keyboard-shortcuts-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/keyboard-shortcuts-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/keyboard-shortcuts-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/keyboard-shortcuts-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/keyboard-shortcuts-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/keyboard-shortcuts-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/keyboard-shortcuts-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/keyboard-shortcuts-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/keyboard-shortcuts-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/keyboard-shortcuts-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/keyboard-shortcuts-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/keyboard-shortcuts-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/keyboard-shortcuts-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/keyboard-shortcuts-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/keyboard-shortcuts-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/keyboard-shortcuts-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/keyboard-shortcuts-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/keyboard-shortcuts-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/keyboard-shortcuts-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/keyboard-shortcuts-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/keyboard-shortcuts-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/keyboard-shortcuts-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/keyboard-shortcuts-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/keyboard-shortcuts-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/keyboard-shortcuts-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/keyboard-shortcuts-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/keyboard-shortcuts-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/keyboard-shortcuts-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/keyboard-shortcuts-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/keyboard-shortcuts-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/keyboard-shortcuts-plugin/deployments", + "created_at": "2012-01-26T04:42:28Z", + "updated_at": "2019-10-09T00:13:39Z", + "pushed_at": "2019-10-09T00:13:37Z", + "git_url": "git://github.com/jenkinsci/keyboard-shortcuts-plugin.git", + "ssh_url": "git@github.com:jenkinsci/keyboard-shortcuts-plugin.git", + "clone_url": "https://github.com/jenkinsci/keyboard-shortcuts-plugin.git", + "svn_url": "https://github.com/jenkinsci/keyboard-shortcuts-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Keyboard+Shortcuts+Plugin", + "size": 178, + "stargazers_count": 4, + "watchers_count": 4, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 8, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 8, + "open_issues": 2, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 3278689, + "node_id": "MDEwOlJlcG9zaXRvcnkzMjc4Njg5", + "name": "event-streamer-plugin", + "full_name": "jenkinsci/event-streamer-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/event-streamer-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/event-streamer-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/event-streamer-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/event-streamer-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/event-streamer-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/event-streamer-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/event-streamer-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/event-streamer-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/event-streamer-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/event-streamer-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/event-streamer-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/event-streamer-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/event-streamer-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/event-streamer-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/event-streamer-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/event-streamer-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/event-streamer-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/event-streamer-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/event-streamer-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/event-streamer-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/event-streamer-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/event-streamer-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/event-streamer-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/event-streamer-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/event-streamer-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/event-streamer-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/event-streamer-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/event-streamer-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/event-streamer-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/event-streamer-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/event-streamer-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/event-streamer-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/event-streamer-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/event-streamer-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/event-streamer-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/event-streamer-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/event-streamer-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/event-streamer-plugin/deployments", + "created_at": "2012-01-26T23:47:03Z", + "updated_at": "2014-05-12T06:37:35Z", + "pushed_at": "2013-11-10T02:01:34Z", + "git_url": "git://github.com/jenkinsci/event-streamer-plugin.git", + "ssh_url": "git@github.com:jenkinsci/event-streamer-plugin.git", + "clone_url": "https://github.com/jenkinsci/event-streamer-plugin.git", + "svn_url": "https://github.com/jenkinsci/event-streamer-plugin", + "homepage": "", + "size": 96, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Ruby", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 3299841, + "node_id": "MDEwOlJlcG9zaXRvcnkzMjk5ODQx", + "name": "xvfb-plugin", + "full_name": "jenkinsci/xvfb-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/xvfb-plugin", + "description": "Plugin for Jenkins-CI that starts and stops Xvfb on job start/end", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/xvfb-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/xvfb-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/xvfb-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/xvfb-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/xvfb-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/xvfb-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/xvfb-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/xvfb-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/xvfb-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/xvfb-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/xvfb-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/xvfb-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/xvfb-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/xvfb-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/xvfb-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/xvfb-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/xvfb-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/xvfb-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/xvfb-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/xvfb-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/xvfb-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/xvfb-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/xvfb-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/xvfb-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/xvfb-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/xvfb-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/xvfb-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/xvfb-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/xvfb-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/xvfb-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/xvfb-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/xvfb-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/xvfb-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/xvfb-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/xvfb-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/xvfb-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/xvfb-plugin/deployments", + "created_at": "2012-01-29T21:12:00Z", + "updated_at": "2019-09-26T09:46:14Z", + "pushed_at": "2019-09-26T09:46:12Z", + "git_url": "git://github.com/jenkinsci/xvfb-plugin.git", + "ssh_url": "git@github.com:jenkinsci/xvfb-plugin.git", + "clone_url": "https://github.com/jenkinsci/xvfb-plugin.git", + "svn_url": "https://github.com/jenkinsci/xvfb-plugin", + "homepage": "", + "size": 163, + "stargazers_count": 19, + "watchers_count": 19, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 19, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 19, + "open_issues": 0, + "watchers": 19, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 3318877, + "node_id": "MDEwOlJlcG9zaXRvcnkzMzE4ODc3", + "name": "eggplant-plugin", + "full_name": "jenkinsci/eggplant-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/eggplant-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/eggplant-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/eggplant-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/eggplant-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/eggplant-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/eggplant-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/eggplant-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/eggplant-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/eggplant-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/eggplant-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/eggplant-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/eggplant-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/eggplant-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/eggplant-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/eggplant-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/eggplant-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/eggplant-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/eggplant-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/eggplant-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/eggplant-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/eggplant-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/eggplant-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/eggplant-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/eggplant-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/eggplant-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/eggplant-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/eggplant-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/eggplant-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/eggplant-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/eggplant-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/eggplant-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/eggplant-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/eggplant-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/eggplant-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/eggplant-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/eggplant-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/eggplant-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/eggplant-plugin/deployments", + "created_at": "2012-01-31T21:06:46Z", + "updated_at": "2014-04-21T20:34:07Z", + "pushed_at": "2016-11-29T10:47:12Z", + "git_url": "git://github.com/jenkinsci/eggplant-plugin.git", + "ssh_url": "git@github.com:jenkinsci/eggplant-plugin.git", + "clone_url": "https://github.com/jenkinsci/eggplant-plugin.git", + "svn_url": "https://github.com/jenkinsci/eggplant-plugin", + "homepage": "", + "size": 394, + "stargazers_count": 6, + "watchers_count": 6, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 6, + "open_issues": 1, + "watchers": 6, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 3367160, + "node_id": "MDEwOlJlcG9zaXRvcnkzMzY3MTYw", + "name": "model-selenium-project", + "full_name": "jenkinsci/model-selenium-project", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/model-selenium-project", + "description": "Sample project to run Selenium test", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/model-selenium-project", + "forks_url": "https://api.github.com/repos/jenkinsci/model-selenium-project/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/model-selenium-project/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/model-selenium-project/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/model-selenium-project/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/model-selenium-project/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/model-selenium-project/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/model-selenium-project/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/model-selenium-project/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/model-selenium-project/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/model-selenium-project/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/model-selenium-project/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/model-selenium-project/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/model-selenium-project/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/model-selenium-project/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/model-selenium-project/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/model-selenium-project/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/model-selenium-project/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/model-selenium-project/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/model-selenium-project/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/model-selenium-project/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/model-selenium-project/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/model-selenium-project/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/model-selenium-project/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/model-selenium-project/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/model-selenium-project/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/model-selenium-project/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/model-selenium-project/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/model-selenium-project/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/model-selenium-project/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/model-selenium-project/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/model-selenium-project/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/model-selenium-project/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/model-selenium-project/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/model-selenium-project/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/model-selenium-project/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/model-selenium-project/deployments", + "created_at": "2012-02-06T13:26:21Z", + "updated_at": "2013-11-10T02:11:27Z", + "pushed_at": "2013-11-10T02:11:21Z", + "git_url": "git://github.com/jenkinsci/model-selenium-project.git", + "ssh_url": "git@github.com:jenkinsci/model-selenium-project.git", + "clone_url": "https://github.com/jenkinsci/model-selenium-project.git", + "svn_url": "https://github.com/jenkinsci/model-selenium-project", + "homepage": "", + "size": 100, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 3402619, + "node_id": "MDEwOlJlcG9zaXRvcnkzNDAyNjE5", + "name": "marketing", + "full_name": "jenkinsci/marketing", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/marketing", + "description": "Jenkins project marketing materials", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/marketing", + "forks_url": "https://api.github.com/repos/jenkinsci/marketing/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/marketing/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/marketing/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/marketing/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/marketing/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/marketing/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/marketing/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/marketing/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/marketing/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/marketing/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/marketing/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/marketing/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/marketing/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/marketing/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/marketing/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/marketing/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/marketing/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/marketing/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/marketing/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/marketing/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/marketing/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/marketing/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/marketing/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/marketing/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/marketing/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/marketing/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/marketing/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/marketing/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/marketing/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/marketing/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/marketing/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/marketing/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/marketing/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/marketing/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/marketing/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/marketing/deployments", + "created_at": "2012-02-09T23:51:05Z", + "updated_at": "2013-11-10T02:10:22Z", + "pushed_at": "2013-11-10T02:10:19Z", + "git_url": "git://github.com/jenkinsci/marketing.git", + "ssh_url": "git@github.com:jenkinsci/marketing.git", + "clone_url": "https://github.com/jenkinsci/marketing.git", + "svn_url": "https://github.com/jenkinsci/marketing", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Jenkins+CIA+Program", + "size": 164, + "stargazers_count": 1, + "watchers_count": 1, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 3415738, + "node_id": "MDEwOlJlcG9zaXRvcnkzNDE1NzM4", + "name": "script-scm-plugin", + "full_name": "jenkinsci/script-scm-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/script-scm-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/script-scm-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/script-scm-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/script-scm-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/script-scm-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/script-scm-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/script-scm-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/script-scm-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/script-scm-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/script-scm-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/script-scm-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/script-scm-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/script-scm-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/script-scm-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/script-scm-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/script-scm-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/script-scm-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/script-scm-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/script-scm-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/script-scm-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/script-scm-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/script-scm-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/script-scm-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/script-scm-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/script-scm-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/script-scm-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/script-scm-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/script-scm-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/script-scm-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/script-scm-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/script-scm-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/script-scm-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/script-scm-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/script-scm-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/script-scm-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/script-scm-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/script-scm-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/script-scm-plugin/deployments", + "created_at": "2012-02-11T14:59:05Z", + "updated_at": "2015-05-06T21:30:10Z", + "pushed_at": "2017-09-20T01:32:30Z", + "git_url": "git://github.com/jenkinsci/script-scm-plugin.git", + "ssh_url": "git@github.com:jenkinsci/script-scm-plugin.git", + "clone_url": "https://github.com/jenkinsci/script-scm-plugin.git", + "svn_url": "https://github.com/jenkinsci/script-scm-plugin", + "homepage": "", + "size": 62, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 5, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 3422969, + "node_id": "MDEwOlJlcG9zaXRvcnkzNDIyOTY5", + "name": "ivy-report-plugin", + "full_name": "jenkinsci/ivy-report-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/ivy-report-plugin", + "description": "This plugin integrates ivy reports to Jenkins.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/ivy-report-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/ivy-report-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/ivy-report-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/ivy-report-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/ivy-report-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/ivy-report-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/ivy-report-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/ivy-report-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/ivy-report-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/ivy-report-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/ivy-report-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/ivy-report-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/ivy-report-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/ivy-report-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/ivy-report-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/ivy-report-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/ivy-report-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/ivy-report-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/ivy-report-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/ivy-report-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/ivy-report-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/ivy-report-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/ivy-report-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/ivy-report-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/ivy-report-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/ivy-report-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/ivy-report-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/ivy-report-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/ivy-report-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/ivy-report-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/ivy-report-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/ivy-report-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/ivy-report-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/ivy-report-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/ivy-report-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/ivy-report-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/ivy-report-plugin/deployments", + "created_at": "2012-02-12T16:24:29Z", + "updated_at": "2013-11-10T02:05:58Z", + "pushed_at": "2019-10-08T16:42:53Z", + "git_url": "git://github.com/jenkinsci/ivy-report-plugin.git", + "ssh_url": "git@github.com:jenkinsci/ivy-report-plugin.git", + "clone_url": "https://github.com/jenkinsci/ivy-report-plugin.git", + "svn_url": "https://github.com/jenkinsci/ivy-report-plugin", + "homepage": "", + "size": 1881, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 3, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 3432083, + "node_id": "MDEwOlJlcG9zaXRvcnkzNDMyMDgz", + "name": "custom-tools-plugin", + "full_name": "jenkinsci/custom-tools-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/custom-tools-plugin", + "description": "A generic tool installer for Jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/custom-tools-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/custom-tools-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/custom-tools-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/custom-tools-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/custom-tools-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/custom-tools-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/custom-tools-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/custom-tools-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/custom-tools-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/custom-tools-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/custom-tools-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/custom-tools-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/custom-tools-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/custom-tools-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/custom-tools-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/custom-tools-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/custom-tools-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/custom-tools-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/custom-tools-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/custom-tools-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/custom-tools-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/custom-tools-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/custom-tools-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/custom-tools-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/custom-tools-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/custom-tools-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/custom-tools-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/custom-tools-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/custom-tools-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/custom-tools-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/custom-tools-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/custom-tools-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/custom-tools-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/custom-tools-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/custom-tools-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/custom-tools-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/custom-tools-plugin/deployments", + "created_at": "2012-02-13T17:08:43Z", + "updated_at": "2019-10-03T18:24:23Z", + "pushed_at": "2019-10-08T00:14:04Z", + "git_url": "git://github.com/jenkinsci/custom-tools-plugin.git", + "ssh_url": "git@github.com:jenkinsci/custom-tools-plugin.git", + "clone_url": "https://github.com/jenkinsci/custom-tools-plugin.git", + "svn_url": "https://github.com/jenkinsci/custom-tools-plugin", + "homepage": "https://plugins.jenkins.io/custom-tools-plugin", + "size": 702, + "stargazers_count": 12, + "watchers_count": 12, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 28, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 6, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 28, + "open_issues": 6, + "watchers": 12, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 3442555, + "node_id": "MDEwOlJlcG9zaXRvcnkzNDQyNTU1", + "name": "ezwall-plugin", + "full_name": "jenkinsci/ezwall-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/ezwall-plugin", + "description": "A Jenkins plugin that simply add a button to display a fullscreen buildwall on each view.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/ezwall-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/ezwall-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/ezwall-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/ezwall-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/ezwall-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/ezwall-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/ezwall-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/ezwall-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/ezwall-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/ezwall-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/ezwall-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/ezwall-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/ezwall-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/ezwall-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/ezwall-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/ezwall-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/ezwall-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/ezwall-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/ezwall-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/ezwall-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/ezwall-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/ezwall-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/ezwall-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/ezwall-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/ezwall-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/ezwall-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/ezwall-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/ezwall-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/ezwall-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/ezwall-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/ezwall-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/ezwall-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/ezwall-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/ezwall-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/ezwall-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/ezwall-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/ezwall-plugin/deployments", + "created_at": "2012-02-14T18:26:51Z", + "updated_at": "2015-03-20T08:29:03Z", + "pushed_at": "2019-10-08T16:28:33Z", + "git_url": "git://github.com/jenkinsci/ezwall-plugin.git", + "ssh_url": "git@github.com:jenkinsci/ezwall-plugin.git", + "clone_url": "https://github.com/jenkinsci/ezwall-plugin.git", + "svn_url": "https://github.com/jenkinsci/ezwall-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/EzWall+Plugin", + "size": 402, + "stargazers_count": 2, + "watchers_count": 2, + "language": "CSS", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 4, + "open_issues": 3, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 3442741, + "node_id": "MDEwOlJlcG9zaXRvcnkzNDQyNzQx", + "name": "build-user-vars-plugin", + "full_name": "jenkinsci/build-user-vars-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/build-user-vars-plugin", + "description": "Jenkins build user variables plugin: injects name of user started the build into build variables set.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/build-user-vars-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/build-user-vars-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/build-user-vars-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/build-user-vars-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/build-user-vars-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/build-user-vars-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/build-user-vars-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/build-user-vars-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/build-user-vars-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/build-user-vars-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/build-user-vars-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/build-user-vars-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/build-user-vars-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/build-user-vars-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/build-user-vars-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/build-user-vars-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/build-user-vars-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/build-user-vars-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/build-user-vars-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/build-user-vars-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/build-user-vars-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/build-user-vars-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/build-user-vars-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/build-user-vars-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/build-user-vars-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/build-user-vars-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/build-user-vars-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/build-user-vars-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/build-user-vars-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/build-user-vars-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/build-user-vars-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/build-user-vars-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/build-user-vars-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/build-user-vars-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/build-user-vars-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/build-user-vars-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/build-user-vars-plugin/deployments", + "created_at": "2012-02-14T18:49:35Z", + "updated_at": "2019-07-01T15:13:00Z", + "pushed_at": "2019-09-24T09:44:42Z", + "git_url": "git://github.com/jenkinsci/build-user-vars-plugin.git", + "ssh_url": "git@github.com:jenkinsci/build-user-vars-plugin.git", + "clone_url": "https://github.com/jenkinsci/build-user-vars-plugin.git", + "svn_url": "https://github.com/jenkinsci/build-user-vars-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Build+User+Vars+Plugin", + "size": 38, + "stargazers_count": 17, + "watchers_count": 17, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 23, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 7, + "license": null, + "forks": 23, + "open_issues": 7, + "watchers": 17, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 3456527, + "node_id": "MDEwOlJlcG9zaXRvcnkzNDU2NTI3", + "name": "build-metrics-plugin", + "full_name": "jenkinsci/build-metrics-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/build-metrics-plugin", + "description": "Build Metrics Plugin for Jenkins ", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/build-metrics-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/build-metrics-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/build-metrics-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/build-metrics-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/build-metrics-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/build-metrics-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/build-metrics-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/build-metrics-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/build-metrics-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/build-metrics-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/build-metrics-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/build-metrics-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/build-metrics-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/build-metrics-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/build-metrics-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/build-metrics-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/build-metrics-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/build-metrics-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/build-metrics-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/build-metrics-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/build-metrics-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/build-metrics-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/build-metrics-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/build-metrics-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/build-metrics-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/build-metrics-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/build-metrics-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/build-metrics-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/build-metrics-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/build-metrics-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/build-metrics-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/build-metrics-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/build-metrics-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/build-metrics-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/build-metrics-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/build-metrics-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/build-metrics-plugin/deployments", + "created_at": "2012-02-16T03:10:54Z", + "updated_at": "2019-05-21T10:03:00Z", + "pushed_at": "2019-10-08T10:00:44Z", + "git_url": "git://github.com/jenkinsci/build-metrics-plugin.git", + "ssh_url": "git@github.com:jenkinsci/build-metrics-plugin.git", + "clone_url": "https://github.com/jenkinsci/build-metrics-plugin.git", + "svn_url": "https://github.com/jenkinsci/build-metrics-plugin", + "homepage": "", + "size": 49, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 13, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 4, + "license": null, + "forks": 13, + "open_issues": 4, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 3494428, + "node_id": "MDEwOlJlcG9zaXRvcnkzNDk0NDI4", + "name": "ion-deployer-plugin", + "full_name": "jenkinsci/ion-deployer-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/ion-deployer-plugin", + "description": "iON plugin for jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/ion-deployer-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/ion-deployer-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/ion-deployer-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/ion-deployer-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/ion-deployer-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/ion-deployer-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/ion-deployer-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/ion-deployer-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/ion-deployer-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/ion-deployer-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/ion-deployer-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/ion-deployer-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/ion-deployer-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/ion-deployer-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/ion-deployer-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/ion-deployer-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/ion-deployer-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/ion-deployer-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/ion-deployer-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/ion-deployer-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/ion-deployer-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/ion-deployer-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/ion-deployer-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/ion-deployer-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/ion-deployer-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/ion-deployer-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/ion-deployer-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/ion-deployer-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/ion-deployer-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/ion-deployer-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/ion-deployer-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/ion-deployer-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/ion-deployer-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/ion-deployer-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/ion-deployer-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/ion-deployer-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/ion-deployer-plugin/deployments", + "created_at": "2012-02-20T14:37:48Z", + "updated_at": "2013-11-10T02:05:37Z", + "pushed_at": "2013-11-10T02:05:31Z", + "git_url": "git://github.com/jenkinsci/ion-deployer-plugin.git", + "ssh_url": "git@github.com:jenkinsci/ion-deployer-plugin.git", + "clone_url": "https://github.com/jenkinsci/ion-deployer-plugin.git", + "svn_url": "https://github.com/jenkinsci/ion-deployer-plugin", + "homepage": "", + "size": 111, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 3494443, + "node_id": "MDEwOlJlcG9zaXRvcnkzNDk0NDQz", + "name": "testingbot-plugin", + "full_name": "jenkinsci/testingbot-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/testingbot-plugin", + "description": "Plugin for Jenkins and TestingBot's Selenium grid", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/testingbot-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/testingbot-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/testingbot-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/testingbot-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/testingbot-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/testingbot-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/testingbot-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/testingbot-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/testingbot-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/testingbot-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/testingbot-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/testingbot-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/testingbot-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/testingbot-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/testingbot-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/testingbot-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/testingbot-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/testingbot-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/testingbot-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/testingbot-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/testingbot-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/testingbot-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/testingbot-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/testingbot-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/testingbot-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/testingbot-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/testingbot-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/testingbot-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/testingbot-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/testingbot-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/testingbot-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/testingbot-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/testingbot-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/testingbot-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/testingbot-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/testingbot-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/testingbot-plugin/deployments", + "created_at": "2012-02-20T14:39:31Z", + "updated_at": "2017-11-17T17:17:31Z", + "pushed_at": "2019-10-08T16:31:36Z", + "git_url": "git://github.com/jenkinsci/testingbot-plugin.git", + "ssh_url": "git@github.com:jenkinsci/testingbot-plugin.git", + "clone_url": "https://github.com/jenkinsci/testingbot-plugin.git", + "svn_url": "https://github.com/jenkinsci/testingbot-plugin", + "homepage": "https://testingbot.com", + "size": 338, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 3494782, + "node_id": "MDEwOlJlcG9zaXRvcnkzNDk0Nzgy", + "name": "backend-war-size-tracker", + "full_name": "jenkinsci/backend-war-size-tracker", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/backend-war-size-tracker", + "description": "Jenkins WAR Size Tracker", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/backend-war-size-tracker", + "forks_url": "https://api.github.com/repos/jenkinsci/backend-war-size-tracker/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/backend-war-size-tracker/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/backend-war-size-tracker/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/backend-war-size-tracker/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/backend-war-size-tracker/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/backend-war-size-tracker/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/backend-war-size-tracker/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/backend-war-size-tracker/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/backend-war-size-tracker/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/backend-war-size-tracker/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/backend-war-size-tracker/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/backend-war-size-tracker/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/backend-war-size-tracker/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/backend-war-size-tracker/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/backend-war-size-tracker/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/backend-war-size-tracker/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/backend-war-size-tracker/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/backend-war-size-tracker/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/backend-war-size-tracker/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/backend-war-size-tracker/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/backend-war-size-tracker/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/backend-war-size-tracker/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/backend-war-size-tracker/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/backend-war-size-tracker/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/backend-war-size-tracker/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/backend-war-size-tracker/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/backend-war-size-tracker/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/backend-war-size-tracker/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/backend-war-size-tracker/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/backend-war-size-tracker/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/backend-war-size-tracker/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/backend-war-size-tracker/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/backend-war-size-tracker/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/backend-war-size-tracker/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/backend-war-size-tracker/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/backend-war-size-tracker/deployments", + "created_at": "2012-02-20T15:21:20Z", + "updated_at": "2018-01-03T17:52:54Z", + "pushed_at": "2013-11-10T01:54:23Z", + "git_url": "git://github.com/jenkinsci/backend-war-size-tracker.git", + "ssh_url": "git@github.com:jenkinsci/backend-war-size-tracker.git", + "clone_url": "https://github.com/jenkinsci/backend-war-size-tracker.git", + "svn_url": "https://github.com/jenkinsci/backend-war-size-tracker", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Jenkins+WAR+Size+Tracker", + "size": 113, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": true, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 3504037, + "node_id": "MDEwOlJlcG9zaXRvcnkzNTA0MDM3", + "name": "svn-revert-plugin", + "full_name": "jenkinsci/svn-revert-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/svn-revert-plugin", + "description": "An automatic revert plugin for Jenkins CI, reverting SVN commits that break the build.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/svn-revert-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/svn-revert-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/svn-revert-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/svn-revert-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/svn-revert-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/svn-revert-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/svn-revert-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/svn-revert-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/svn-revert-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/svn-revert-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/svn-revert-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/svn-revert-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/svn-revert-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/svn-revert-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/svn-revert-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/svn-revert-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/svn-revert-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/svn-revert-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/svn-revert-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/svn-revert-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/svn-revert-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/svn-revert-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/svn-revert-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/svn-revert-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/svn-revert-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/svn-revert-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/svn-revert-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/svn-revert-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/svn-revert-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/svn-revert-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/svn-revert-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/svn-revert-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/svn-revert-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/svn-revert-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/svn-revert-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/svn-revert-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/svn-revert-plugin/deployments", + "created_at": "2012-02-21T13:26:50Z", + "updated_at": "2019-10-08T13:41:43Z", + "pushed_at": "2019-10-08T13:41:41Z", + "git_url": "git://github.com/jenkinsci/svn-revert-plugin.git", + "ssh_url": "git@github.com:jenkinsci/svn-revert-plugin.git", + "clone_url": "https://github.com/jenkinsci/svn-revert-plugin.git", + "svn_url": "https://github.com/jenkinsci/svn-revert-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/SVN+Revert+Plugin", + "size": 331, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 4, + "open_issues": 0, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 3514460, + "node_id": "MDEwOlJlcG9zaXRvcnkzNTE0NDYw", + "name": "slave-prerequisites-plugin", + "full_name": "jenkinsci/slave-prerequisites-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/slave-prerequisites-plugin", + "description": "This plugin allows to check prerequisites on slave before a job can run a build on it", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/slave-prerequisites-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/slave-prerequisites-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/slave-prerequisites-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/slave-prerequisites-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/slave-prerequisites-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/slave-prerequisites-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/slave-prerequisites-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/slave-prerequisites-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/slave-prerequisites-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/slave-prerequisites-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/slave-prerequisites-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/slave-prerequisites-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/slave-prerequisites-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/slave-prerequisites-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/slave-prerequisites-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/slave-prerequisites-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/slave-prerequisites-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/slave-prerequisites-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/slave-prerequisites-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/slave-prerequisites-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/slave-prerequisites-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/slave-prerequisites-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/slave-prerequisites-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/slave-prerequisites-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/slave-prerequisites-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/slave-prerequisites-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/slave-prerequisites-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/slave-prerequisites-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/slave-prerequisites-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/slave-prerequisites-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/slave-prerequisites-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/slave-prerequisites-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/slave-prerequisites-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/slave-prerequisites-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/slave-prerequisites-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/slave-prerequisites-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/slave-prerequisites-plugin/deployments", + "created_at": "2012-02-22T12:46:54Z", + "updated_at": "2019-09-16T09:22:50Z", + "pushed_at": "2019-10-08T12:33:49Z", + "git_url": "git://github.com/jenkinsci/slave-prerequisites-plugin.git", + "ssh_url": "git@github.com:jenkinsci/slave-prerequisites-plugin.git", + "clone_url": "https://github.com/jenkinsci/slave-prerequisites-plugin.git", + "svn_url": "https://github.com/jenkinsci/slave-prerequisites-plugin", + "homepage": "http://wiki.jenkins-ci.org/display/JENKINS/Slave+Prerequisites+Plugin", + "size": 106, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 6, + "open_issues": 3, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 3528768, + "node_id": "MDEwOlJlcG9zaXRvcnkzNTI4NzY4", + "name": "credentials-plugin", + "full_name": "jenkinsci/credentials-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/credentials-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/credentials-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/credentials-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/credentials-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/credentials-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/credentials-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/credentials-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/credentials-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/credentials-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/credentials-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/credentials-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/credentials-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/credentials-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/credentials-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/credentials-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/credentials-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/credentials-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/credentials-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/credentials-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/credentials-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/credentials-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/credentials-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/credentials-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/credentials-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/credentials-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/credentials-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/credentials-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/credentials-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/credentials-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/credentials-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/credentials-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/credentials-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/credentials-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/credentials-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/credentials-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/credentials-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/credentials-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/credentials-plugin/deployments", + "created_at": "2012-02-23T18:57:07Z", + "updated_at": "2019-10-07T15:03:40Z", + "pushed_at": "2019-10-07T15:03:38Z", + "git_url": "git://github.com/jenkinsci/credentials-plugin.git", + "ssh_url": "git@github.com:jenkinsci/credentials-plugin.git", + "clone_url": "https://github.com/jenkinsci/credentials-plugin.git", + "svn_url": "https://github.com/jenkinsci/credentials-plugin", + "homepage": "http://wiki.jenkins-ci.org/display/JENKINS/Credentials+Plugin", + "size": 9666, + "stargazers_count": 45, + "watchers_count": 45, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 156, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 4, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 156, + "open_issues": 4, + "watchers": 45, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 3537104, + "node_id": "MDEwOlJlcG9zaXRvcnkzNTM3MTA0", + "name": "drmemory-plugin", + "full_name": "jenkinsci/drmemory-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/drmemory-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/drmemory-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/drmemory-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/drmemory-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/drmemory-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/drmemory-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/drmemory-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/drmemory-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/drmemory-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/drmemory-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/drmemory-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/drmemory-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/drmemory-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/drmemory-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/drmemory-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/drmemory-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/drmemory-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/drmemory-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/drmemory-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/drmemory-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/drmemory-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/drmemory-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/drmemory-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/drmemory-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/drmemory-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/drmemory-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/drmemory-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/drmemory-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/drmemory-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/drmemory-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/drmemory-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/drmemory-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/drmemory-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/drmemory-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/drmemory-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/drmemory-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/drmemory-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/drmemory-plugin/deployments", + "created_at": "2012-02-24T15:50:50Z", + "updated_at": "2018-06-20T12:14:54Z", + "pushed_at": "2018-06-20T12:14:53Z", + "git_url": "git://github.com/jenkinsci/drmemory-plugin.git", + "ssh_url": "git@github.com:jenkinsci/drmemory-plugin.git", + "clone_url": "https://github.com/jenkinsci/drmemory-plugin.git", + "svn_url": "https://github.com/jenkinsci/drmemory-plugin", + "homepage": "", + "size": 81, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 3570748, + "node_id": "MDEwOlJlcG9zaXRvcnkzNTcwNzQ4", + "name": "ssh-credentials-plugin", + "full_name": "jenkinsci/ssh-credentials-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/ssh-credentials-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/ssh-credentials-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/ssh-credentials-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/ssh-credentials-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/ssh-credentials-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/ssh-credentials-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/ssh-credentials-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/ssh-credentials-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/ssh-credentials-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/ssh-credentials-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/ssh-credentials-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/ssh-credentials-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/ssh-credentials-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/ssh-credentials-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/ssh-credentials-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/ssh-credentials-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/ssh-credentials-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/ssh-credentials-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/ssh-credentials-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/ssh-credentials-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/ssh-credentials-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/ssh-credentials-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/ssh-credentials-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/ssh-credentials-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/ssh-credentials-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/ssh-credentials-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/ssh-credentials-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/ssh-credentials-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/ssh-credentials-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/ssh-credentials-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/ssh-credentials-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/ssh-credentials-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/ssh-credentials-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/ssh-credentials-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/ssh-credentials-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/ssh-credentials-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/ssh-credentials-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/ssh-credentials-plugin/deployments", + "created_at": "2012-02-28T12:24:15Z", + "updated_at": "2019-10-07T17:59:15Z", + "pushed_at": "2019-10-07T17:59:13Z", + "git_url": "git://github.com/jenkinsci/ssh-credentials-plugin.git", + "ssh_url": "git@github.com:jenkinsci/ssh-credentials-plugin.git", + "clone_url": "https://github.com/jenkinsci/ssh-credentials-plugin.git", + "svn_url": "https://github.com/jenkinsci/ssh-credentials-plugin", + "homepage": "", + "size": 322, + "stargazers_count": 19, + "watchers_count": 19, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 47, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 47, + "open_issues": 1, + "watchers": 19, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 3589675, + "node_id": "MDEwOlJlcG9zaXRvcnkzNTg5Njc1", + "name": "openJDK-native-plugin", + "full_name": "jenkinsci/openJDK-native-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/openJDK-native-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/openJDK-native-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/openJDK-native-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/openJDK-native-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/openJDK-native-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/openJDK-native-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/openJDK-native-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/openJDK-native-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/openJDK-native-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/openJDK-native-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/openJDK-native-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/openJDK-native-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/openJDK-native-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/openJDK-native-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/openJDK-native-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/openJDK-native-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/openJDK-native-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/openJDK-native-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/openJDK-native-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/openJDK-native-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/openJDK-native-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/openJDK-native-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/openJDK-native-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/openJDK-native-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/openJDK-native-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/openJDK-native-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/openJDK-native-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/openJDK-native-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/openJDK-native-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/openJDK-native-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/openJDK-native-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/openJDK-native-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/openJDK-native-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/openJDK-native-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/openJDK-native-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/openJDK-native-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/openJDK-native-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/openJDK-native-plugin/deployments", + "created_at": "2012-03-01T06:56:48Z", + "updated_at": "2019-10-10T08:56:04Z", + "pushed_at": "2019-10-10T08:56:03Z", + "git_url": "git://github.com/jenkinsci/openJDK-native-plugin.git", + "ssh_url": "git@github.com:jenkinsci/openJDK-native-plugin.git", + "clone_url": "https://github.com/jenkinsci/openJDK-native-plugin.git", + "svn_url": "https://github.com/jenkinsci/openJDK-native-plugin", + "homepage": "", + "size": 17, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 7, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 7, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 3590702, + "node_id": "MDEwOlJlcG9zaXRvcnkzNTkwNzAy", + "name": "anchor-chain-plugin", + "full_name": "jenkinsci/anchor-chain-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/anchor-chain-plugin", + "description": "AnchorChain Jenkins plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/anchor-chain-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/anchor-chain-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/anchor-chain-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/anchor-chain-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/anchor-chain-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/anchor-chain-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/anchor-chain-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/anchor-chain-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/anchor-chain-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/anchor-chain-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/anchor-chain-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/anchor-chain-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/anchor-chain-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/anchor-chain-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/anchor-chain-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/anchor-chain-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/anchor-chain-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/anchor-chain-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/anchor-chain-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/anchor-chain-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/anchor-chain-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/anchor-chain-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/anchor-chain-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/anchor-chain-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/anchor-chain-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/anchor-chain-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/anchor-chain-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/anchor-chain-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/anchor-chain-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/anchor-chain-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/anchor-chain-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/anchor-chain-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/anchor-chain-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/anchor-chain-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/anchor-chain-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/anchor-chain-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/anchor-chain-plugin/deployments", + "created_at": "2012-03-01T09:42:42Z", + "updated_at": "2015-03-25T08:13:54Z", + "pushed_at": "2019-10-08T12:31:25Z", + "git_url": "git://github.com/jenkinsci/anchor-chain-plugin.git", + "ssh_url": "git@github.com:jenkinsci/anchor-chain-plugin.git", + "clone_url": "https://github.com/jenkinsci/anchor-chain-plugin.git", + "svn_url": "https://github.com/jenkinsci/anchor-chain-plugin", + "homepage": "", + "size": 165, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 5, + "open_issues": 2, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 3615387, + "node_id": "MDEwOlJlcG9zaXRvcnkzNjE1Mzg3", + "name": "thread-dump-action-plugin", + "full_name": "jenkinsci/thread-dump-action-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/thread-dump-action-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/thread-dump-action-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/thread-dump-action-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/thread-dump-action-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/thread-dump-action-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/thread-dump-action-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/thread-dump-action-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/thread-dump-action-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/thread-dump-action-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/thread-dump-action-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/thread-dump-action-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/thread-dump-action-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/thread-dump-action-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/thread-dump-action-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/thread-dump-action-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/thread-dump-action-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/thread-dump-action-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/thread-dump-action-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/thread-dump-action-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/thread-dump-action-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/thread-dump-action-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/thread-dump-action-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/thread-dump-action-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/thread-dump-action-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/thread-dump-action-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/thread-dump-action-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/thread-dump-action-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/thread-dump-action-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/thread-dump-action-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/thread-dump-action-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/thread-dump-action-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/thread-dump-action-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/thread-dump-action-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/thread-dump-action-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/thread-dump-action-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/thread-dump-action-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/thread-dump-action-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/thread-dump-action-plugin/deployments", + "created_at": "2012-03-04T02:03:54Z", + "updated_at": "2013-11-10T02:20:58Z", + "pushed_at": "2013-11-10T02:20:53Z", + "git_url": "git://github.com/jenkinsci/thread-dump-action-plugin.git", + "ssh_url": "git@github.com:jenkinsci/thread-dump-action-plugin.git", + "clone_url": "https://github.com/jenkinsci/thread-dump-action-plugin.git", + "svn_url": "https://github.com/jenkinsci/thread-dump-action-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Thread+Dump+Action+Plugin", + "size": 107, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 3653994, + "node_id": "MDEwOlJlcG9zaXRvcnkzNjUzOTk0", + "name": "memegen-plugin", + "full_name": "jenkinsci/memegen-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/memegen-plugin", + "description": "Meme Generator plugin for Jenkins CI server", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/memegen-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/memegen-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/memegen-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/memegen-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/memegen-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/memegen-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/memegen-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/memegen-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/memegen-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/memegen-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/memegen-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/memegen-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/memegen-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/memegen-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/memegen-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/memegen-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/memegen-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/memegen-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/memegen-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/memegen-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/memegen-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/memegen-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/memegen-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/memegen-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/memegen-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/memegen-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/memegen-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/memegen-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/memegen-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/memegen-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/memegen-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/memegen-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/memegen-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/memegen-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/memegen-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/memegen-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/memegen-plugin/deployments", + "created_at": "2012-03-07T21:53:28Z", + "updated_at": "2019-08-13T14:58:24Z", + "pushed_at": "2016-04-14T22:59:22Z", + "git_url": "git://github.com/jenkinsci/memegen-plugin.git", + "ssh_url": "git@github.com:jenkinsci/memegen-plugin.git", + "clone_url": "https://github.com/jenkinsci/memegen-plugin.git", + "svn_url": "https://github.com/jenkinsci/memegen-plugin", + "homepage": "http://wiki.jenkins-ci.org/display/JENKINS/Meme+Generator+Plugin", + "size": 79, + "stargazers_count": 8, + "watchers_count": 8, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 6, + "open_issues": 3, + "watchers": 8, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 3656258, + "node_id": "MDEwOlJlcG9zaXRvcnkzNjU2MjU4", + "name": "github-sqs-plugin", + "full_name": "jenkinsci/github-sqs-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/github-sqs-plugin", + "description": "This plugin triggers builds on events from the GitHub that are published via Amazon Web Services Simple Queue Service.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/github-sqs-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/github-sqs-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/github-sqs-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/github-sqs-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/github-sqs-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/github-sqs-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/github-sqs-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/github-sqs-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/github-sqs-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/github-sqs-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/github-sqs-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/github-sqs-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/github-sqs-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/github-sqs-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/github-sqs-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/github-sqs-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/github-sqs-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/github-sqs-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/github-sqs-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/github-sqs-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/github-sqs-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/github-sqs-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/github-sqs-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/github-sqs-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/github-sqs-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/github-sqs-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/github-sqs-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/github-sqs-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/github-sqs-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/github-sqs-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/github-sqs-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/github-sqs-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/github-sqs-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/github-sqs-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/github-sqs-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/github-sqs-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/github-sqs-plugin/deployments", + "created_at": "2012-03-08T03:09:14Z", + "updated_at": "2019-05-16T08:34:23Z", + "pushed_at": "2018-11-05T19:00:38Z", + "git_url": "git://github.com/jenkinsci/github-sqs-plugin.git", + "ssh_url": "git@github.com:jenkinsci/github-sqs-plugin.git", + "clone_url": "https://github.com/jenkinsci/github-sqs-plugin.git", + "svn_url": "https://github.com/jenkinsci/github-sqs-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/GitHub+SQS+Plugin", + "size": 93, + "stargazers_count": 7, + "watchers_count": 7, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 35, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 35, + "open_issues": 2, + "watchers": 7, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 3656324, + "node_id": "MDEwOlJlcG9zaXRvcnkzNjU2MzI0", + "name": "job-poll-action-plugin", + "full_name": "jenkinsci/job-poll-action-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/job-poll-action-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/job-poll-action-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/job-poll-action-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/job-poll-action-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/job-poll-action-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/job-poll-action-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/job-poll-action-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/job-poll-action-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/job-poll-action-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/job-poll-action-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/job-poll-action-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/job-poll-action-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/job-poll-action-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/job-poll-action-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/job-poll-action-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/job-poll-action-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/job-poll-action-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/job-poll-action-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/job-poll-action-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/job-poll-action-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/job-poll-action-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/job-poll-action-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/job-poll-action-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/job-poll-action-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/job-poll-action-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/job-poll-action-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/job-poll-action-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/job-poll-action-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/job-poll-action-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/job-poll-action-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/job-poll-action-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/job-poll-action-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/job-poll-action-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/job-poll-action-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/job-poll-action-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/job-poll-action-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/job-poll-action-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/job-poll-action-plugin/deployments", + "created_at": "2012-03-08T03:18:54Z", + "updated_at": "2016-05-06T20:20:47Z", + "pushed_at": "2019-10-08T12:25:55Z", + "git_url": "git://github.com/jenkinsci/job-poll-action-plugin.git", + "ssh_url": "git@github.com:jenkinsci/job-poll-action-plugin.git", + "clone_url": "https://github.com/jenkinsci/job-poll-action-plugin.git", + "svn_url": "https://github.com/jenkinsci/job-poll-action-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Job+Poll+Action+Plugin", + "size": 22, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 4, + "open_issues": 3, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 3665853, + "node_id": "MDEwOlJlcG9zaXRvcnkzNjY1ODUz", + "name": "android-lint-plugin", + "full_name": "jenkinsci/android-lint-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/android-lint-plugin", + "description": "Android Lint parser plugin for Jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/android-lint-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/android-lint-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/android-lint-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/android-lint-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/android-lint-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/android-lint-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/android-lint-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/android-lint-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/android-lint-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/android-lint-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/android-lint-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/android-lint-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/android-lint-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/android-lint-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/android-lint-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/android-lint-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/android-lint-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/android-lint-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/android-lint-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/android-lint-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/android-lint-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/android-lint-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/android-lint-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/android-lint-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/android-lint-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/android-lint-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/android-lint-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/android-lint-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/android-lint-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/android-lint-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/android-lint-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/android-lint-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/android-lint-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/android-lint-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/android-lint-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/android-lint-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/android-lint-plugin/deployments", + "created_at": "2012-03-09T00:15:25Z", + "updated_at": "2019-10-08T20:46:01Z", + "pushed_at": "2019-10-08T20:45:59Z", + "git_url": "git://github.com/jenkinsci/android-lint-plugin.git", + "ssh_url": "git@github.com:jenkinsci/android-lint-plugin.git", + "clone_url": "https://github.com/jenkinsci/android-lint-plugin.git", + "svn_url": "https://github.com/jenkinsci/android-lint-plugin", + "homepage": "http://wiki.jenkins-ci.org/display/JENKINS/Android+Lint+Plugin", + "size": 98, + "stargazers_count": 44, + "watchers_count": 44, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 27, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 27, + "open_issues": 1, + "watchers": 44, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 3669870, + "node_id": "MDEwOlJlcG9zaXRvcnkzNjY5ODcw", + "name": "browser-axis-plugin", + "full_name": "jenkinsci/browser-axis-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/browser-axis-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/browser-axis-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/browser-axis-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/browser-axis-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/browser-axis-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/browser-axis-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/browser-axis-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/browser-axis-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/browser-axis-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/browser-axis-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/browser-axis-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/browser-axis-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/browser-axis-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/browser-axis-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/browser-axis-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/browser-axis-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/browser-axis-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/browser-axis-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/browser-axis-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/browser-axis-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/browser-axis-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/browser-axis-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/browser-axis-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/browser-axis-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/browser-axis-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/browser-axis-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/browser-axis-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/browser-axis-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/browser-axis-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/browser-axis-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/browser-axis-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/browser-axis-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/browser-axis-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/browser-axis-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/browser-axis-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/browser-axis-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/browser-axis-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/browser-axis-plugin/deployments", + "created_at": "2012-03-09T11:01:57Z", + "updated_at": "2013-09-05T01:02:00Z", + "pushed_at": "2013-06-10T09:21:54Z", + "git_url": "git://github.com/jenkinsci/browser-axis-plugin.git", + "ssh_url": "git@github.com:jenkinsci/browser-axis-plugin.git", + "clone_url": "https://github.com/jenkinsci/browser-axis-plugin.git", + "svn_url": "https://github.com/jenkinsci/browser-axis-plugin", + "homepage": "", + "size": 118, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 3690769, + "node_id": "MDEwOlJlcG9zaXRvcnkzNjkwNzY5", + "name": "rbenv-plugin", + "full_name": "jenkinsci/rbenv-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/rbenv-plugin", + "description": "Jenkins rbenv plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/rbenv-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/rbenv-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/rbenv-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/rbenv-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/rbenv-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/rbenv-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/rbenv-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/rbenv-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/rbenv-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/rbenv-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/rbenv-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/rbenv-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/rbenv-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/rbenv-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/rbenv-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/rbenv-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/rbenv-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/rbenv-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/rbenv-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/rbenv-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/rbenv-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/rbenv-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/rbenv-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/rbenv-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/rbenv-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/rbenv-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/rbenv-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/rbenv-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/rbenv-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/rbenv-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/rbenv-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/rbenv-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/rbenv-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/rbenv-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/rbenv-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/rbenv-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/rbenv-plugin/deployments", + "created_at": "2012-03-12T00:26:12Z", + "updated_at": "2019-09-17T06:00:39Z", + "pushed_at": "2016-04-18T01:57:10Z", + "git_url": "git://github.com/jenkinsci/rbenv-plugin.git", + "ssh_url": "git@github.com:jenkinsci/rbenv-plugin.git", + "clone_url": "https://github.com/jenkinsci/rbenv-plugin.git", + "svn_url": "https://github.com/jenkinsci/rbenv-plugin", + "homepage": "", + "size": 67, + "stargazers_count": 61, + "watchers_count": 61, + "language": "Ruby", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 20, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 15, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 20, + "open_issues": 15, + "watchers": 61, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 3704406, + "node_id": "MDEwOlJlcG9zaXRvcnkzNzA0NDA2", + "name": "vagrant-plugin", + "full_name": "jenkinsci/vagrant-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/vagrant-plugin", + "description": "Vagrant plugin for Jenkins", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/vagrant-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/vagrant-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/vagrant-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/vagrant-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/vagrant-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/vagrant-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/vagrant-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/vagrant-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/vagrant-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/vagrant-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/vagrant-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/vagrant-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/vagrant-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/vagrant-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/vagrant-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/vagrant-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/vagrant-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/vagrant-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/vagrant-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/vagrant-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/vagrant-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/vagrant-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/vagrant-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/vagrant-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/vagrant-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/vagrant-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/vagrant-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/vagrant-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/vagrant-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/vagrant-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/vagrant-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/vagrant-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/vagrant-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/vagrant-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/vagrant-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/vagrant-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/vagrant-plugin/deployments", + "created_at": "2012-03-13T08:03:17Z", + "updated_at": "2019-07-15T11:03:24Z", + "pushed_at": "2017-11-01T11:24:59Z", + "git_url": "git://github.com/jenkinsci/vagrant-plugin.git", + "ssh_url": "git@github.com:jenkinsci/vagrant-plugin.git", + "clone_url": "https://github.com/jenkinsci/vagrant-plugin.git", + "svn_url": "https://github.com/jenkinsci/vagrant-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Vagrant-plugin", + "size": 46, + "stargazers_count": 33, + "watchers_count": 33, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 19, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 19, + "open_issues": 0, + "watchers": 33, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 3720913, + "node_id": "MDEwOlJlcG9zaXRvcnkzNzIwOTEz", + "name": "anything-goes-formatter-plugin", + "full_name": "jenkinsci/anything-goes-formatter-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/anything-goes-formatter-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/anything-goes-formatter-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/anything-goes-formatter-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/anything-goes-formatter-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/anything-goes-formatter-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/anything-goes-formatter-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/anything-goes-formatter-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/anything-goes-formatter-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/anything-goes-formatter-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/anything-goes-formatter-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/anything-goes-formatter-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/anything-goes-formatter-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/anything-goes-formatter-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/anything-goes-formatter-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/anything-goes-formatter-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/anything-goes-formatter-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/anything-goes-formatter-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/anything-goes-formatter-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/anything-goes-formatter-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/anything-goes-formatter-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/anything-goes-formatter-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/anything-goes-formatter-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/anything-goes-formatter-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/anything-goes-formatter-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/anything-goes-formatter-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/anything-goes-formatter-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/anything-goes-formatter-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/anything-goes-formatter-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/anything-goes-formatter-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/anything-goes-formatter-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/anything-goes-formatter-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/anything-goes-formatter-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/anything-goes-formatter-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/anything-goes-formatter-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/anything-goes-formatter-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/anything-goes-formatter-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/anything-goes-formatter-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/anything-goes-formatter-plugin/deployments", + "created_at": "2012-03-14T18:38:56Z", + "updated_at": "2018-07-19T06:49:29Z", + "pushed_at": "2019-10-08T11:48:38Z", + "git_url": "git://github.com/jenkinsci/anything-goes-formatter-plugin.git", + "ssh_url": "git@github.com:jenkinsci/anything-goes-formatter-plugin.git", + "clone_url": "https://github.com/jenkinsci/anything-goes-formatter-plugin.git", + "svn_url": "https://github.com/jenkinsci/anything-goes-formatter-plugin", + "homepage": "", + "size": 6, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 3, + "open_issues": 2, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 3779633, + "node_id": "MDEwOlJlcG9zaXRvcnkzNzc5NjMz", + "name": "cvsclient", + "full_name": "jenkinsci/cvsclient", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/cvsclient", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/cvsclient", + "forks_url": "https://api.github.com/repos/jenkinsci/cvsclient/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/cvsclient/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/cvsclient/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/cvsclient/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/cvsclient/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/cvsclient/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/cvsclient/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/cvsclient/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/cvsclient/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/cvsclient/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/cvsclient/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/cvsclient/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/cvsclient/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/cvsclient/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/cvsclient/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/cvsclient/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/cvsclient/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/cvsclient/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/cvsclient/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/cvsclient/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/cvsclient/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/cvsclient/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/cvsclient/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/cvsclient/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/cvsclient/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/cvsclient/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/cvsclient/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/cvsclient/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/cvsclient/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/cvsclient/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/cvsclient/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/cvsclient/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/cvsclient/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/cvsclient/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/cvsclient/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/cvsclient/deployments", + "created_at": "2012-03-20T20:25:02Z", + "updated_at": "2019-04-29T20:33:42Z", + "pushed_at": "2019-04-29T20:33:39Z", + "git_url": "git://github.com/jenkinsci/cvsclient.git", + "ssh_url": "git@github.com:jenkinsci/cvsclient.git", + "clone_url": "https://github.com/jenkinsci/cvsclient.git", + "svn_url": "https://github.com/jenkinsci/cvsclient", + "homepage": "", + "size": 376, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 5, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 3786204, + "node_id": "MDEwOlJlcG9zaXRvcnkzNzg2MjA0", + "name": "smartfrog-plugin", + "full_name": "jenkinsci/smartfrog-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/smartfrog-plugin", + "description": "Jenkins/Hudson SmartFrog Plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/smartfrog-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/smartfrog-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/smartfrog-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/smartfrog-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/smartfrog-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/smartfrog-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/smartfrog-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/smartfrog-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/smartfrog-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/smartfrog-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/smartfrog-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/smartfrog-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/smartfrog-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/smartfrog-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/smartfrog-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/smartfrog-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/smartfrog-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/smartfrog-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/smartfrog-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/smartfrog-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/smartfrog-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/smartfrog-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/smartfrog-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/smartfrog-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/smartfrog-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/smartfrog-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/smartfrog-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/smartfrog-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/smartfrog-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/smartfrog-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/smartfrog-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/smartfrog-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/smartfrog-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/smartfrog-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/smartfrog-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/smartfrog-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/smartfrog-plugin/deployments", + "created_at": "2012-03-21T12:19:50Z", + "updated_at": "2018-06-15T13:19:26Z", + "pushed_at": "2018-06-15T13:19:24Z", + "git_url": "git://github.com/jenkinsci/smartfrog-plugin.git", + "ssh_url": "git@github.com:jenkinsci/smartfrog-plugin.git", + "clone_url": "https://github.com/jenkinsci/smartfrog-plugin.git", + "svn_url": "https://github.com/jenkinsci/smartfrog-plugin", + "homepage": "http://www.smartfrog.org/", + "size": 306, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 6, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 3837894, + "node_id": "MDEwOlJlcG9zaXRvcnkzODM3ODk0", + "name": "plexus-utils", + "full_name": "jenkinsci/plexus-utils", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/plexus-utils", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/plexus-utils", + "forks_url": "https://api.github.com/repos/jenkinsci/plexus-utils/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/plexus-utils/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/plexus-utils/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/plexus-utils/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/plexus-utils/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/plexus-utils/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/plexus-utils/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/plexus-utils/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/plexus-utils/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/plexus-utils/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/plexus-utils/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/plexus-utils/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/plexus-utils/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/plexus-utils/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/plexus-utils/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/plexus-utils/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/plexus-utils/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/plexus-utils/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/plexus-utils/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/plexus-utils/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/plexus-utils/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/plexus-utils/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/plexus-utils/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/plexus-utils/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/plexus-utils/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/plexus-utils/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/plexus-utils/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/plexus-utils/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/plexus-utils/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/plexus-utils/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/plexus-utils/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/plexus-utils/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/plexus-utils/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/plexus-utils/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/plexus-utils/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/plexus-utils/deployments", + "created_at": "2012-03-26T22:01:14Z", + "updated_at": "2014-02-28T14:55:07Z", + "pushed_at": "2012-03-26T22:20:30Z", + "git_url": "git://github.com/jenkinsci/plexus-utils.git", + "ssh_url": "git@github.com:jenkinsci/plexus-utils.git", + "clone_url": "https://github.com/jenkinsci/plexus-utils.git", + "svn_url": "https://github.com/jenkinsci/plexus-utils", + "homepage": "", + "size": 1265, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 3845805, + "node_id": "MDEwOlJlcG9zaXRvcnkzODQ1ODA1", + "name": "node-offline-notification-plugin", + "full_name": "jenkinsci/node-offline-notification-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/node-offline-notification-plugin", + "description": "Configure a node with emails to notify in case that node goes down.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/node-offline-notification-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/node-offline-notification-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/node-offline-notification-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/node-offline-notification-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/node-offline-notification-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/node-offline-notification-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/node-offline-notification-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/node-offline-notification-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/node-offline-notification-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/node-offline-notification-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/node-offline-notification-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/node-offline-notification-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/node-offline-notification-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/node-offline-notification-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/node-offline-notification-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/node-offline-notification-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/node-offline-notification-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/node-offline-notification-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/node-offline-notification-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/node-offline-notification-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/node-offline-notification-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/node-offline-notification-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/node-offline-notification-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/node-offline-notification-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/node-offline-notification-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/node-offline-notification-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/node-offline-notification-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/node-offline-notification-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/node-offline-notification-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/node-offline-notification-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/node-offline-notification-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/node-offline-notification-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/node-offline-notification-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/node-offline-notification-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/node-offline-notification-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/node-offline-notification-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/node-offline-notification-plugin/deployments", + "created_at": "2012-03-27T16:20:43Z", + "updated_at": "2013-11-10T02:12:15Z", + "pushed_at": "2015-03-20T13:16:42Z", + "git_url": "git://github.com/jenkinsci/node-offline-notification-plugin.git", + "ssh_url": "git@github.com:jenkinsci/node-offline-notification-plugin.git", + "clone_url": "https://github.com/jenkinsci/node-offline-notification-plugin.git", + "svn_url": "https://github.com/jenkinsci/node-offline-notification-plugin", + "homepage": "", + "size": 136, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Ruby", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 3869990, + "node_id": "MDEwOlJlcG9zaXRvcnkzODY5OTkw", + "name": "display-upstream-changes-plugin", + "full_name": "jenkinsci/display-upstream-changes-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/display-upstream-changes-plugin", + "description": "a simple jenkins plugin to display all changes for upstream builds on the build page", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/display-upstream-changes-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/display-upstream-changes-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/display-upstream-changes-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/display-upstream-changes-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/display-upstream-changes-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/display-upstream-changes-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/display-upstream-changes-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/display-upstream-changes-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/display-upstream-changes-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/display-upstream-changes-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/display-upstream-changes-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/display-upstream-changes-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/display-upstream-changes-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/display-upstream-changes-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/display-upstream-changes-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/display-upstream-changes-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/display-upstream-changes-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/display-upstream-changes-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/display-upstream-changes-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/display-upstream-changes-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/display-upstream-changes-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/display-upstream-changes-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/display-upstream-changes-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/display-upstream-changes-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/display-upstream-changes-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/display-upstream-changes-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/display-upstream-changes-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/display-upstream-changes-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/display-upstream-changes-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/display-upstream-changes-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/display-upstream-changes-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/display-upstream-changes-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/display-upstream-changes-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/display-upstream-changes-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/display-upstream-changes-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/display-upstream-changes-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/display-upstream-changes-plugin/deployments", + "created_at": "2012-03-29T19:59:17Z", + "updated_at": "2019-01-17T01:14:57Z", + "pushed_at": "2019-10-08T12:25:20Z", + "git_url": "git://github.com/jenkinsci/display-upstream-changes-plugin.git", + "ssh_url": "git@github.com:jenkinsci/display-upstream-changes-plugin.git", + "clone_url": "https://github.com/jenkinsci/display-upstream-changes-plugin.git", + "svn_url": "https://github.com/jenkinsci/display-upstream-changes-plugin", + "homepage": "", + "size": 33, + "stargazers_count": 6, + "watchers_count": 6, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 3, + "open_issues": 1, + "watchers": 6, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 3876965, + "node_id": "MDEwOlJlcG9zaXRvcnkzODc2OTY1", + "name": "git-notes-plugin", + "full_name": "jenkinsci/git-notes-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/git-notes-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/git-notes-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/git-notes-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/git-notes-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/git-notes-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/git-notes-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/git-notes-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/git-notes-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/git-notes-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/git-notes-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/git-notes-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/git-notes-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/git-notes-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/git-notes-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/git-notes-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/git-notes-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/git-notes-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/git-notes-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/git-notes-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/git-notes-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/git-notes-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/git-notes-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/git-notes-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/git-notes-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/git-notes-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/git-notes-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/git-notes-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/git-notes-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/git-notes-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/git-notes-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/git-notes-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/git-notes-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/git-notes-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/git-notes-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/git-notes-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/git-notes-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/git-notes-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/git-notes-plugin/deployments", + "created_at": "2012-03-30T13:40:11Z", + "updated_at": "2019-06-30T03:14:49Z", + "pushed_at": "2013-11-10T02:03:28Z", + "git_url": "git://github.com/jenkinsci/git-notes-plugin.git", + "ssh_url": "git@github.com:jenkinsci/git-notes-plugin.git", + "clone_url": "https://github.com/jenkinsci/git-notes-plugin.git", + "svn_url": "https://github.com/jenkinsci/git-notes-plugin", + "homepage": "", + "size": 196, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Ruby", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 3901277, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTAxMjc3", + "name": "Matrix-sorter-plugin", + "full_name": "jenkinsci/Matrix-sorter-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/Matrix-sorter-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/Matrix-sorter-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/Matrix-sorter-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/Matrix-sorter-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/Matrix-sorter-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/Matrix-sorter-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/Matrix-sorter-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/Matrix-sorter-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/Matrix-sorter-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/Matrix-sorter-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/Matrix-sorter-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/Matrix-sorter-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/Matrix-sorter-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/Matrix-sorter-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/Matrix-sorter-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/Matrix-sorter-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/Matrix-sorter-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/Matrix-sorter-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/Matrix-sorter-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/Matrix-sorter-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/Matrix-sorter-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/Matrix-sorter-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/Matrix-sorter-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/Matrix-sorter-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/Matrix-sorter-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/Matrix-sorter-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/Matrix-sorter-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/Matrix-sorter-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/Matrix-sorter-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/Matrix-sorter-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/Matrix-sorter-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/Matrix-sorter-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/Matrix-sorter-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/Matrix-sorter-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/Matrix-sorter-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/Matrix-sorter-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/Matrix-sorter-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/Matrix-sorter-plugin/deployments", + "created_at": "2012-04-02T14:10:02Z", + "updated_at": "2019-08-14T11:52:04Z", + "pushed_at": "2019-10-08T12:42:32Z", + "git_url": "git://github.com/jenkinsci/Matrix-sorter-plugin.git", + "ssh_url": "git@github.com:jenkinsci/Matrix-sorter-plugin.git", + "clone_url": "https://github.com/jenkinsci/Matrix-sorter-plugin.git", + "svn_url": "https://github.com/jenkinsci/Matrix-sorter-plugin", + "homepage": "", + "size": 52812, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 3, + "open_issues": 1, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 3902908, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTAyOTA4", + "name": "prqa-plugin", + "full_name": "jenkinsci/prqa-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/prqa-plugin", + "description": "Programming Research Plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/prqa-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/prqa-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/prqa-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/prqa-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/prqa-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/prqa-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/prqa-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/prqa-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/prqa-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/prqa-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/prqa-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/prqa-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/prqa-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/prqa-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/prqa-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/prqa-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/prqa-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/prqa-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/prqa-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/prqa-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/prqa-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/prqa-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/prqa-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/prqa-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/prqa-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/prqa-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/prqa-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/prqa-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/prqa-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/prqa-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/prqa-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/prqa-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/prqa-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/prqa-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/prqa-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/prqa-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/prqa-plugin/deployments", + "created_at": "2012-04-02T16:41:14Z", + "updated_at": "2019-03-22T13:02:17Z", + "pushed_at": "2019-03-22T13:04:22Z", + "git_url": "git://github.com/jenkinsci/prqa-plugin.git", + "ssh_url": "git@github.com:jenkinsci/prqa-plugin.git", + "clone_url": "https://github.com/jenkinsci/prqa-plugin.git", + "svn_url": "https://github.com/jenkinsci/prqa-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/PRQA+Plugin", + "size": 58229, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 9, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 9, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 3915029, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTE1MDI5", + "name": "build-flow-plugin", + "full_name": "jenkinsci/build-flow-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/build-flow-plugin", + "description": "A plugin to manage job orchestration", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/build-flow-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/build-flow-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/build-flow-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/build-flow-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/build-flow-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/build-flow-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/build-flow-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/build-flow-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/build-flow-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/build-flow-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/build-flow-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/build-flow-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/build-flow-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/build-flow-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/build-flow-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/build-flow-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/build-flow-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/build-flow-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/build-flow-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/build-flow-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/build-flow-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/build-flow-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/build-flow-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/build-flow-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/build-flow-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/build-flow-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/build-flow-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/build-flow-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/build-flow-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/build-flow-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/build-flow-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/build-flow-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/build-flow-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/build-flow-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/build-flow-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/build-flow-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/build-flow-plugin/deployments", + "created_at": "2012-04-03T05:39:43Z", + "updated_at": "2019-09-11T20:28:42Z", + "pushed_at": "2016-08-04T08:14:47Z", + "git_url": "git://github.com/jenkinsci/build-flow-plugin.git", + "ssh_url": "git@github.com:jenkinsci/build-flow-plugin.git", + "clone_url": "https://github.com/jenkinsci/build-flow-plugin.git", + "svn_url": "https://github.com/jenkinsci/build-flow-plugin", + "homepage": "", + "size": 1026, + "stargazers_count": 103, + "watchers_count": 103, + "language": "Groovy", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 100, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 5, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 100, + "open_issues": 5, + "watchers": 103, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 3920633, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTIwNjMz", + "name": "file-leak-detector-plugin", + "full_name": "jenkinsci/file-leak-detector-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/file-leak-detector-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/file-leak-detector-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/file-leak-detector-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/file-leak-detector-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/file-leak-detector-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/file-leak-detector-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/file-leak-detector-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/file-leak-detector-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/file-leak-detector-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/file-leak-detector-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/file-leak-detector-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/file-leak-detector-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/file-leak-detector-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/file-leak-detector-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/file-leak-detector-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/file-leak-detector-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/file-leak-detector-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/file-leak-detector-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/file-leak-detector-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/file-leak-detector-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/file-leak-detector-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/file-leak-detector-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/file-leak-detector-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/file-leak-detector-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/file-leak-detector-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/file-leak-detector-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/file-leak-detector-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/file-leak-detector-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/file-leak-detector-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/file-leak-detector-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/file-leak-detector-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/file-leak-detector-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/file-leak-detector-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/file-leak-detector-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/file-leak-detector-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/file-leak-detector-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/file-leak-detector-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/file-leak-detector-plugin/deployments", + "created_at": "2012-04-03T17:32:57Z", + "updated_at": "2018-11-02T17:32:22Z", + "pushed_at": "2019-10-08T12:34:08Z", + "git_url": "git://github.com/jenkinsci/file-leak-detector-plugin.git", + "ssh_url": "git@github.com:jenkinsci/file-leak-detector-plugin.git", + "clone_url": "https://github.com/jenkinsci/file-leak-detector-plugin.git", + "svn_url": "https://github.com/jenkinsci/file-leak-detector-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/File+Leak+Detector+Plugin", + "size": 34, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 7, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 7, + "open_issues": 2, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 3933544, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTMzNTQ0", + "name": "require-tool-plugin", + "full_name": "jenkinsci/require-tool-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/require-tool-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/require-tool-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/require-tool-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/require-tool-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/require-tool-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/require-tool-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/require-tool-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/require-tool-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/require-tool-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/require-tool-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/require-tool-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/require-tool-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/require-tool-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/require-tool-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/require-tool-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/require-tool-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/require-tool-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/require-tool-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/require-tool-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/require-tool-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/require-tool-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/require-tool-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/require-tool-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/require-tool-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/require-tool-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/require-tool-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/require-tool-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/require-tool-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/require-tool-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/require-tool-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/require-tool-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/require-tool-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/require-tool-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/require-tool-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/require-tool-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/require-tool-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/require-tool-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/require-tool-plugin/deployments", + "created_at": "2012-04-04T21:40:14Z", + "updated_at": "2013-11-10T02:15:28Z", + "pushed_at": "2013-11-10T02:15:24Z", + "git_url": "git://github.com/jenkinsci/require-tool-plugin.git", + "ssh_url": "git@github.com:jenkinsci/require-tool-plugin.git", + "clone_url": "https://github.com/jenkinsci/require-tool-plugin.git", + "svn_url": "https://github.com/jenkinsci/require-tool-plugin", + "homepage": "", + "size": 104, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Ruby", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 3946463, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTQ2NDYz", + "name": "backend-deprecation-checker", + "full_name": "jenkinsci/backend-deprecation-checker", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/backend-deprecation-checker", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/backend-deprecation-checker", + "forks_url": "https://api.github.com/repos/jenkinsci/backend-deprecation-checker/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/backend-deprecation-checker/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/backend-deprecation-checker/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/backend-deprecation-checker/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/backend-deprecation-checker/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/backend-deprecation-checker/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/backend-deprecation-checker/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/backend-deprecation-checker/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/backend-deprecation-checker/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/backend-deprecation-checker/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/backend-deprecation-checker/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/backend-deprecation-checker/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/backend-deprecation-checker/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/backend-deprecation-checker/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/backend-deprecation-checker/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/backend-deprecation-checker/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/backend-deprecation-checker/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/backend-deprecation-checker/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/backend-deprecation-checker/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/backend-deprecation-checker/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/backend-deprecation-checker/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/backend-deprecation-checker/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/backend-deprecation-checker/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/backend-deprecation-checker/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/backend-deprecation-checker/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/backend-deprecation-checker/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/backend-deprecation-checker/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/backend-deprecation-checker/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/backend-deprecation-checker/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/backend-deprecation-checker/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/backend-deprecation-checker/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/backend-deprecation-checker/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/backend-deprecation-checker/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/backend-deprecation-checker/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/backend-deprecation-checker/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/backend-deprecation-checker/deployments", + "created_at": "2012-04-06T03:18:03Z", + "updated_at": "2018-01-03T17:53:04Z", + "pushed_at": "2013-11-10T01:53:50Z", + "git_url": "git://github.com/jenkinsci/backend-deprecation-checker.git", + "ssh_url": "git@github.com:jenkinsci/backend-deprecation-checker.git", + "clone_url": "https://github.com/jenkinsci/backend-deprecation-checker.git", + "svn_url": "https://github.com/jenkinsci/backend-deprecation-checker", + "homepage": "", + "size": 108, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": true, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 3981907, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTgxOTA3", + "name": "async-http-client-plugin", + "full_name": "jenkinsci/async-http-client-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/async-http-client-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/async-http-client-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/async-http-client-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/async-http-client-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/async-http-client-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/async-http-client-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/async-http-client-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/async-http-client-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/async-http-client-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/async-http-client-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/async-http-client-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/async-http-client-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/async-http-client-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/async-http-client-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/async-http-client-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/async-http-client-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/async-http-client-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/async-http-client-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/async-http-client-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/async-http-client-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/async-http-client-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/async-http-client-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/async-http-client-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/async-http-client-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/async-http-client-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/async-http-client-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/async-http-client-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/async-http-client-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/async-http-client-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/async-http-client-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/async-http-client-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/async-http-client-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/async-http-client-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/async-http-client-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/async-http-client-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/async-http-client-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/async-http-client-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/async-http-client-plugin/deployments", + "created_at": "2012-04-10T12:18:41Z", + "updated_at": "2019-04-16T08:21:58Z", + "pushed_at": "2019-09-24T10:31:34Z", + "git_url": "git://github.com/jenkinsci/async-http-client-plugin.git", + "ssh_url": "git@github.com:jenkinsci/async-http-client-plugin.git", + "clone_url": "https://github.com/jenkinsci/async-http-client-plugin.git", + "svn_url": "https://github.com/jenkinsci/async-http-client-plugin", + "homepage": "http://wiki.jenkins-ci.org/display/JENKINS/Async+Http+Client+Plugin", + "size": 44, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 9, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 9, + "open_issues": 1, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 3982648, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTgyNjQ4", + "name": "tag-cloud-plugin", + "full_name": "jenkinsci/tag-cloud-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/tag-cloud-plugin", + "description": "A Jenkins plugin to scan a project's source and generate a tag cloud of commonly used words", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/tag-cloud-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/tag-cloud-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/tag-cloud-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/tag-cloud-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/tag-cloud-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/tag-cloud-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/tag-cloud-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/tag-cloud-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/tag-cloud-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/tag-cloud-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/tag-cloud-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/tag-cloud-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/tag-cloud-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/tag-cloud-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/tag-cloud-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/tag-cloud-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/tag-cloud-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/tag-cloud-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/tag-cloud-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/tag-cloud-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/tag-cloud-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/tag-cloud-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/tag-cloud-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/tag-cloud-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/tag-cloud-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/tag-cloud-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/tag-cloud-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/tag-cloud-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/tag-cloud-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/tag-cloud-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/tag-cloud-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/tag-cloud-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/tag-cloud-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/tag-cloud-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/tag-cloud-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/tag-cloud-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/tag-cloud-plugin/deployments", + "created_at": "2012-04-10T13:42:15Z", + "updated_at": "2019-09-10T17:06:04Z", + "pushed_at": "2013-11-10T02:19:58Z", + "git_url": "git://github.com/jenkinsci/tag-cloud-plugin.git", + "ssh_url": "git@github.com:jenkinsci/tag-cloud-plugin.git", + "clone_url": "https://github.com/jenkinsci/tag-cloud-plugin.git", + "svn_url": "https://github.com/jenkinsci/tag-cloud-plugin", + "homepage": "", + "size": 681, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 3991273, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTkxMjcz", + "name": "read-only-configurations-plugin", + "full_name": "jenkinsci/read-only-configurations-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/read-only-configurations-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/read-only-configurations-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/read-only-configurations-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/read-only-configurations-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/read-only-configurations-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/read-only-configurations-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/read-only-configurations-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/read-only-configurations-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/read-only-configurations-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/read-only-configurations-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/read-only-configurations-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/read-only-configurations-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/read-only-configurations-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/read-only-configurations-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/read-only-configurations-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/read-only-configurations-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/read-only-configurations-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/read-only-configurations-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/read-only-configurations-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/read-only-configurations-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/read-only-configurations-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/read-only-configurations-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/read-only-configurations-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/read-only-configurations-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/read-only-configurations-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/read-only-configurations-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/read-only-configurations-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/read-only-configurations-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/read-only-configurations-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/read-only-configurations-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/read-only-configurations-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/read-only-configurations-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/read-only-configurations-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/read-only-configurations-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/read-only-configurations-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/read-only-configurations-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/read-only-configurations-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/read-only-configurations-plugin/deployments", + "created_at": "2012-04-11T07:40:05Z", + "updated_at": "2019-08-14T12:09:42Z", + "pushed_at": "2019-09-04T21:15:10Z", + "git_url": "git://github.com/jenkinsci/read-only-configurations-plugin.git", + "ssh_url": "git@github.com:jenkinsci/read-only-configurations-plugin.git", + "clone_url": "https://github.com/jenkinsci/read-only-configurations-plugin.git", + "svn_url": "https://github.com/jenkinsci/read-only-configurations-plugin", + "homepage": "", + "size": 40, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 7, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 7, + "open_issues": 2, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 4006416, + "node_id": "MDEwOlJlcG9zaXRvcnk0MDA2NDE2", + "name": "cucumber-jvm-reports-plugin", + "full_name": "jenkinsci/cucumber-jvm-reports-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/cucumber-jvm-reports-plugin", + "description": "Publishes Cucumber-JVM reports on Jenkins", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/cucumber-jvm-reports-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/cucumber-jvm-reports-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/cucumber-jvm-reports-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/cucumber-jvm-reports-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/cucumber-jvm-reports-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/cucumber-jvm-reports-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/cucumber-jvm-reports-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/cucumber-jvm-reports-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/cucumber-jvm-reports-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/cucumber-jvm-reports-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/cucumber-jvm-reports-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/cucumber-jvm-reports-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/cucumber-jvm-reports-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/cucumber-jvm-reports-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/cucumber-jvm-reports-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/cucumber-jvm-reports-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/cucumber-jvm-reports-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/cucumber-jvm-reports-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/cucumber-jvm-reports-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/cucumber-jvm-reports-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/cucumber-jvm-reports-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/cucumber-jvm-reports-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/cucumber-jvm-reports-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/cucumber-jvm-reports-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/cucumber-jvm-reports-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/cucumber-jvm-reports-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/cucumber-jvm-reports-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/cucumber-jvm-reports-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/cucumber-jvm-reports-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/cucumber-jvm-reports-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/cucumber-jvm-reports-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/cucumber-jvm-reports-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/cucumber-jvm-reports-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/cucumber-jvm-reports-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/cucumber-jvm-reports-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/cucumber-jvm-reports-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/cucumber-jvm-reports-plugin/deployments", + "created_at": "2012-04-12T15:53:10Z", + "updated_at": "2018-12-11T18:55:52Z", + "pushed_at": "2013-11-10T01:59:10Z", + "git_url": "git://github.com/jenkinsci/cucumber-jvm-reports-plugin.git", + "ssh_url": "git@github.com:jenkinsci/cucumber-jvm-reports-plugin.git", + "clone_url": "https://github.com/jenkinsci/cucumber-jvm-reports-plugin.git", + "svn_url": "https://github.com/jenkinsci/cucumber-jvm-reports-plugin", + "homepage": "", + "size": 1863, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Ruby", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 4025505, + "node_id": "MDEwOlJlcG9zaXRvcnk0MDI1NTA1", + "name": "weblogic-deployer-plugin", + "full_name": "jenkinsci/weblogic-deployer-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/weblogic-deployer-plugin", + "description": "Jenkins plugin to deploy some artifacts to a Weblogic server", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/weblogic-deployer-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/weblogic-deployer-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/weblogic-deployer-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/weblogic-deployer-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/weblogic-deployer-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/weblogic-deployer-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/weblogic-deployer-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/weblogic-deployer-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/weblogic-deployer-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/weblogic-deployer-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/weblogic-deployer-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/weblogic-deployer-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/weblogic-deployer-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/weblogic-deployer-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/weblogic-deployer-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/weblogic-deployer-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/weblogic-deployer-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/weblogic-deployer-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/weblogic-deployer-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/weblogic-deployer-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/weblogic-deployer-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/weblogic-deployer-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/weblogic-deployer-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/weblogic-deployer-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/weblogic-deployer-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/weblogic-deployer-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/weblogic-deployer-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/weblogic-deployer-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/weblogic-deployer-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/weblogic-deployer-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/weblogic-deployer-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/weblogic-deployer-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/weblogic-deployer-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/weblogic-deployer-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/weblogic-deployer-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/weblogic-deployer-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/weblogic-deployer-plugin/deployments", + "created_at": "2012-04-14T14:58:51Z", + "updated_at": "2019-10-11T22:16:53Z", + "pushed_at": "2019-10-11T22:16:51Z", + "git_url": "git://github.com/jenkinsci/weblogic-deployer-plugin.git", + "ssh_url": "git@github.com:jenkinsci/weblogic-deployer-plugin.git", + "clone_url": "https://github.com/jenkinsci/weblogic-deployer-plugin.git", + "svn_url": "https://github.com/jenkinsci/weblogic-deployer-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/WebLogic+Deployer+Plugin", + "size": 486, + "stargazers_count": 15, + "watchers_count": 15, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 18, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 18, + "open_issues": 1, + "watchers": 15, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 4041423, + "node_id": "MDEwOlJlcG9zaXRvcnk0MDQxNDIz", + "name": "maven-metadata-plugin", + "full_name": "jenkinsci/maven-metadata-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/maven-metadata-plugin", + "description": "A plugin for Jenkins to retrieve a maven repository maven-metadata.xml file and present the versions in it as a drop-down list of available versions.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/maven-metadata-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/maven-metadata-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/maven-metadata-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/maven-metadata-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/maven-metadata-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/maven-metadata-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/maven-metadata-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/maven-metadata-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/maven-metadata-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/maven-metadata-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/maven-metadata-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/maven-metadata-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/maven-metadata-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/maven-metadata-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/maven-metadata-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/maven-metadata-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/maven-metadata-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/maven-metadata-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/maven-metadata-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/maven-metadata-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/maven-metadata-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/maven-metadata-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/maven-metadata-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/maven-metadata-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/maven-metadata-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/maven-metadata-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/maven-metadata-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/maven-metadata-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/maven-metadata-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/maven-metadata-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/maven-metadata-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/maven-metadata-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/maven-metadata-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/maven-metadata-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/maven-metadata-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/maven-metadata-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/maven-metadata-plugin/deployments", + "created_at": "2012-04-16T14:11:52Z", + "updated_at": "2019-09-25T11:52:35Z", + "pushed_at": "2019-09-25T11:52:33Z", + "git_url": "git://github.com/jenkinsci/maven-metadata-plugin.git", + "ssh_url": "git@github.com:jenkinsci/maven-metadata-plugin.git", + "clone_url": "https://github.com/jenkinsci/maven-metadata-plugin.git", + "svn_url": "https://github.com/jenkinsci/maven-metadata-plugin", + "homepage": "", + "size": 147, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 14, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 14, + "open_issues": 1, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 4042934, + "node_id": "MDEwOlJlcG9zaXRvcnk0MDQyOTM0", + "name": "cloudbees-plugin-gateway", + "full_name": "jenkinsci/cloudbees-plugin-gateway", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/cloudbees-plugin-gateway", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/cloudbees-plugin-gateway", + "forks_url": "https://api.github.com/repos/jenkinsci/cloudbees-plugin-gateway/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/cloudbees-plugin-gateway/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/cloudbees-plugin-gateway/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/cloudbees-plugin-gateway/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/cloudbees-plugin-gateway/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/cloudbees-plugin-gateway/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/cloudbees-plugin-gateway/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/cloudbees-plugin-gateway/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/cloudbees-plugin-gateway/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/cloudbees-plugin-gateway/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/cloudbees-plugin-gateway/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/cloudbees-plugin-gateway/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/cloudbees-plugin-gateway/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/cloudbees-plugin-gateway/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/cloudbees-plugin-gateway/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/cloudbees-plugin-gateway/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/cloudbees-plugin-gateway/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/cloudbees-plugin-gateway/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/cloudbees-plugin-gateway/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/cloudbees-plugin-gateway/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/cloudbees-plugin-gateway/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/cloudbees-plugin-gateway/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/cloudbees-plugin-gateway/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/cloudbees-plugin-gateway/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/cloudbees-plugin-gateway/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/cloudbees-plugin-gateway/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/cloudbees-plugin-gateway/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/cloudbees-plugin-gateway/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/cloudbees-plugin-gateway/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/cloudbees-plugin-gateway/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/cloudbees-plugin-gateway/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/cloudbees-plugin-gateway/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/cloudbees-plugin-gateway/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/cloudbees-plugin-gateway/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/cloudbees-plugin-gateway/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/cloudbees-plugin-gateway/deployments", + "created_at": "2012-04-16T16:43:05Z", + "updated_at": "2015-04-29T09:08:43Z", + "pushed_at": "2015-12-14T21:40:42Z", + "git_url": "git://github.com/jenkinsci/cloudbees-plugin-gateway.git", + "ssh_url": "git@github.com:jenkinsci/cloudbees-plugin-gateway.git", + "clone_url": "https://github.com/jenkinsci/cloudbees-plugin-gateway.git", + "svn_url": "https://github.com/jenkinsci/cloudbees-plugin-gateway", + "homepage": "", + "size": 81, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/__files/organizations_107424_repos-d4de5f04-8979-4506-b24d-f4e2ca3af58a.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/__files/organizations_107424_repos-d4de5f04-8979-4506-b24d-f4e2ca3af58a.json new file mode 100644 index 0000000000..21f402a478 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/__files/organizations_107424_repos-d4de5f04-8979-4506-b24d-f4e2ca3af58a.json @@ -0,0 +1,10082 @@ +[ + { + "id": 1163744, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzQ0", + "name": "skype-im-plugin", + "full_name": "jenkinsci/skype-im-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/skype-im-plugin", + "description": "Jenkins skype-im plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/skype-im-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/skype-im-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/skype-im-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/skype-im-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/skype-im-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/skype-im-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/skype-im-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/skype-im-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/skype-im-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/skype-im-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/skype-im-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/skype-im-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/skype-im-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/skype-im-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/skype-im-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/skype-im-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/skype-im-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/skype-im-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/skype-im-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/skype-im-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/skype-im-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/skype-im-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/skype-im-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/skype-im-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/skype-im-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/skype-im-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/skype-im-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/skype-im-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/skype-im-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/skype-im-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/skype-im-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/skype-im-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/skype-im-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/skype-im-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/skype-im-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/skype-im-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/skype-im-plugin/deployments", + "created_at": "2010-12-13T05:52:39Z", + "updated_at": "2017-12-15T18:55:36Z", + "pushed_at": "2019-10-08T12:36:32Z", + "git_url": "git://github.com/jenkinsci/skype-im-plugin.git", + "ssh_url": "git@github.com:jenkinsci/skype-im-plugin.git", + "clone_url": "https://github.com/jenkinsci/skype-im-plugin.git", + "svn_url": "https://github.com/jenkinsci/skype-im-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 3676, + "stargazers_count": 13, + "watchers_count": 13, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 19, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 19, + "open_issues": 2, + "watchers": 13, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163745, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzQ1", + "name": "shelve-project-plugin", + "full_name": "jenkinsci/shelve-project-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/shelve-project-plugin", + "description": "Jenkins shelve-project-plugin plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/shelve-project-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/shelve-project-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/shelve-project-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/shelve-project-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/shelve-project-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/shelve-project-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/shelve-project-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/shelve-project-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/shelve-project-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/shelve-project-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/shelve-project-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/shelve-project-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/shelve-project-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/shelve-project-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/shelve-project-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/shelve-project-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/shelve-project-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/shelve-project-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/shelve-project-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/shelve-project-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/shelve-project-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/shelve-project-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/shelve-project-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/shelve-project-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/shelve-project-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/shelve-project-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/shelve-project-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/shelve-project-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/shelve-project-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/shelve-project-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/shelve-project-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/shelve-project-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/shelve-project-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/shelve-project-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/shelve-project-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/shelve-project-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/shelve-project-plugin/deployments", + "created_at": "2010-12-13T05:52:41Z", + "updated_at": "2019-10-25T08:09:10Z", + "pushed_at": "2019-09-07T19:02:19Z", + "git_url": "git://github.com/jenkinsci/shelve-project-plugin.git", + "ssh_url": "git@github.com:jenkinsci/shelve-project-plugin.git", + "clone_url": "https://github.com/jenkinsci/shelve-project-plugin.git", + "svn_url": "https://github.com/jenkinsci/shelve-project-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 177, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 15, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 15, + "open_issues": 0, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163746, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzQ2", + "name": "skype-plugin", + "full_name": "jenkinsci/skype-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/skype-plugin", + "description": "Jenkins skype plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/skype-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/skype-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/skype-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/skype-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/skype-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/skype-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/skype-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/skype-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/skype-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/skype-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/skype-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/skype-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/skype-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/skype-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/skype-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/skype-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/skype-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/skype-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/skype-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/skype-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/skype-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/skype-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/skype-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/skype-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/skype-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/skype-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/skype-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/skype-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/skype-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/skype-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/skype-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/skype-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/skype-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/skype-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/skype-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/skype-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/skype-plugin/deployments", + "created_at": "2010-12-13T05:52:44Z", + "updated_at": "2013-11-13T00:49:26Z", + "pushed_at": "2013-11-10T02:17:50Z", + "git_url": "git://github.com/jenkinsci/skype-plugin.git", + "ssh_url": "git@github.com:jenkinsci/skype-plugin.git", + "clone_url": "https://github.com/jenkinsci/skype-plugin.git", + "svn_url": "https://github.com/jenkinsci/skype-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 424, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 3, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163747, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzQ3", + "name": "slave-squatter-plugin", + "full_name": "jenkinsci/slave-squatter-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/slave-squatter-plugin", + "description": "Jenkins slave-squatter plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/slave-squatter-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/slave-squatter-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/slave-squatter-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/slave-squatter-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/slave-squatter-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/slave-squatter-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/slave-squatter-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/slave-squatter-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/slave-squatter-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/slave-squatter-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/slave-squatter-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/slave-squatter-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/slave-squatter-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/slave-squatter-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/slave-squatter-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/slave-squatter-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/slave-squatter-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/slave-squatter-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/slave-squatter-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/slave-squatter-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/slave-squatter-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/slave-squatter-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/slave-squatter-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/slave-squatter-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/slave-squatter-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/slave-squatter-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/slave-squatter-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/slave-squatter-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/slave-squatter-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/slave-squatter-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/slave-squatter-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/slave-squatter-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/slave-squatter-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/slave-squatter-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/slave-squatter-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/slave-squatter-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/slave-squatter-plugin/deployments", + "created_at": "2010-12-13T05:52:46Z", + "updated_at": "2013-11-10T02:18:06Z", + "pushed_at": "2019-10-08T16:29:47Z", + "git_url": "git://github.com/jenkinsci/slave-squatter-plugin.git", + "ssh_url": "git@github.com:jenkinsci/slave-squatter-plugin.git", + "clone_url": "https://github.com/jenkinsci/slave-squatter-plugin.git", + "svn_url": "https://github.com/jenkinsci/slave-squatter-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 122, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 4, + "open_issues": 1, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163748, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzQ4", + "name": "sitemonitor-plugin", + "full_name": "jenkinsci/sitemonitor-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/sitemonitor-plugin", + "description": "Jenkins sitemonitor plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/sitemonitor-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/sitemonitor-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/sitemonitor-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/sitemonitor-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/sitemonitor-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/sitemonitor-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/sitemonitor-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/sitemonitor-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/sitemonitor-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/sitemonitor-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/sitemonitor-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/sitemonitor-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/sitemonitor-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/sitemonitor-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/sitemonitor-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/sitemonitor-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/sitemonitor-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/sitemonitor-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/sitemonitor-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/sitemonitor-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/sitemonitor-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/sitemonitor-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/sitemonitor-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/sitemonitor-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/sitemonitor-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/sitemonitor-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/sitemonitor-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/sitemonitor-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/sitemonitor-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/sitemonitor-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/sitemonitor-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/sitemonitor-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/sitemonitor-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/sitemonitor-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/sitemonitor-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/sitemonitor-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/sitemonitor-plugin/deployments", + "created_at": "2010-12-13T05:52:47Z", + "updated_at": "2019-09-11T16:03:19Z", + "pushed_at": "2019-10-08T11:20:03Z", + "git_url": "git://github.com/jenkinsci/sitemonitor-plugin.git", + "ssh_url": "git@github.com:jenkinsci/sitemonitor-plugin.git", + "clone_url": "https://github.com/jenkinsci/sitemonitor-plugin.git", + "svn_url": "https://github.com/jenkinsci/sitemonitor-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 250, + "stargazers_count": 18, + "watchers_count": 18, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 26, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 5, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 26, + "open_issues": 5, + "watchers": 18, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163750, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzUw", + "name": "sourcemonitor-plugin", + "full_name": "jenkinsci/sourcemonitor-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/sourcemonitor-plugin", + "description": "Jenkins sourcemonitor plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/sourcemonitor-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/sourcemonitor-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/sourcemonitor-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/sourcemonitor-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/sourcemonitor-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/sourcemonitor-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/sourcemonitor-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/sourcemonitor-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/sourcemonitor-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/sourcemonitor-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/sourcemonitor-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/sourcemonitor-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/sourcemonitor-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/sourcemonitor-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/sourcemonitor-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/sourcemonitor-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/sourcemonitor-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/sourcemonitor-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/sourcemonitor-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/sourcemonitor-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/sourcemonitor-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/sourcemonitor-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/sourcemonitor-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/sourcemonitor-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/sourcemonitor-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/sourcemonitor-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/sourcemonitor-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/sourcemonitor-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/sourcemonitor-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/sourcemonitor-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/sourcemonitor-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/sourcemonitor-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/sourcemonitor-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/sourcemonitor-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/sourcemonitor-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/sourcemonitor-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/sourcemonitor-plugin/deployments", + "created_at": "2010-12-13T05:53:10Z", + "updated_at": "2018-04-03T02:12:32Z", + "pushed_at": "2017-11-30T16:17:17Z", + "git_url": "git://github.com/jenkinsci/sourcemonitor-plugin.git", + "ssh_url": "git@github.com:jenkinsci/sourcemonitor-plugin.git", + "clone_url": "https://github.com/jenkinsci/sourcemonitor-plugin.git", + "svn_url": "https://github.com/jenkinsci/sourcemonitor-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 34, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 9, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 9, + "open_issues": 1, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163751, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzUx", + "name": "sounds-plugin", + "full_name": "jenkinsci/sounds-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/sounds-plugin", + "description": "Jenkins sounds plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/sounds-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/sounds-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/sounds-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/sounds-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/sounds-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/sounds-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/sounds-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/sounds-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/sounds-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/sounds-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/sounds-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/sounds-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/sounds-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/sounds-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/sounds-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/sounds-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/sounds-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/sounds-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/sounds-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/sounds-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/sounds-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/sounds-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/sounds-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/sounds-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/sounds-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/sounds-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/sounds-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/sounds-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/sounds-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/sounds-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/sounds-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/sounds-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/sounds-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/sounds-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/sounds-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/sounds-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/sounds-plugin/deployments", + "created_at": "2010-12-13T05:53:11Z", + "updated_at": "2018-03-28T16:47:37Z", + "pushed_at": "2019-10-15T16:47:00Z", + "git_url": "git://github.com/jenkinsci/sounds-plugin.git", + "ssh_url": "git@github.com:jenkinsci/sounds-plugin.git", + "clone_url": "https://github.com/jenkinsci/sounds-plugin.git", + "svn_url": "https://github.com/jenkinsci/sounds-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 1770, + "stargazers_count": 7, + "watchers_count": 7, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 7, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 7, + "open_issues": 2, + "watchers": 7, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163752, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzUy", + "name": "speaks-plugin", + "full_name": "jenkinsci/speaks-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/speaks-plugin", + "description": "Jenkins speaks plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/speaks-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/speaks-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/speaks-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/speaks-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/speaks-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/speaks-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/speaks-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/speaks-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/speaks-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/speaks-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/speaks-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/speaks-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/speaks-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/speaks-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/speaks-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/speaks-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/speaks-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/speaks-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/speaks-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/speaks-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/speaks-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/speaks-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/speaks-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/speaks-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/speaks-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/speaks-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/speaks-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/speaks-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/speaks-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/speaks-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/speaks-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/speaks-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/speaks-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/speaks-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/speaks-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/speaks-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/speaks-plugin/deployments", + "created_at": "2010-12-13T05:53:19Z", + "updated_at": "2013-11-10T02:18:35Z", + "pushed_at": "2013-11-10T02:18:26Z", + "git_url": "git://github.com/jenkinsci/speaks-plugin.git", + "ssh_url": "git@github.com:jenkinsci/speaks-plugin.git", + "clone_url": "https://github.com/jenkinsci/speaks-plugin.git", + "svn_url": "https://github.com/jenkinsci/speaks-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 9120, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163753, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzUz", + "name": "source-ip-realm-plugin", + "full_name": "jenkinsci/source-ip-realm-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/source-ip-realm-plugin", + "description": "Jenkins source-ip-realm plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/source-ip-realm-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/source-ip-realm-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/source-ip-realm-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/source-ip-realm-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/source-ip-realm-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/source-ip-realm-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/source-ip-realm-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/source-ip-realm-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/source-ip-realm-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/source-ip-realm-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/source-ip-realm-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/source-ip-realm-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/source-ip-realm-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/source-ip-realm-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/source-ip-realm-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/source-ip-realm-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/source-ip-realm-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/source-ip-realm-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/source-ip-realm-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/source-ip-realm-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/source-ip-realm-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/source-ip-realm-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/source-ip-realm-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/source-ip-realm-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/source-ip-realm-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/source-ip-realm-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/source-ip-realm-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/source-ip-realm-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/source-ip-realm-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/source-ip-realm-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/source-ip-realm-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/source-ip-realm-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/source-ip-realm-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/source-ip-realm-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/source-ip-realm-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/source-ip-realm-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/source-ip-realm-plugin/deployments", + "created_at": "2010-12-13T05:53:20Z", + "updated_at": "2013-11-10T02:18:32Z", + "pushed_at": "2013-11-10T02:18:22Z", + "git_url": "git://github.com/jenkinsci/source-ip-realm-plugin.git", + "ssh_url": "git@github.com:jenkinsci/source-ip-realm-plugin.git", + "clone_url": "https://github.com/jenkinsci/source-ip-realm-plugin.git", + "svn_url": "https://github.com/jenkinsci/source-ip-realm-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 112, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163754, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzU0", + "name": "sloccount-plugin", + "full_name": "jenkinsci/sloccount-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/sloccount-plugin", + "description": "Jenkins sloccount plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/sloccount-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/sloccount-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/sloccount-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/sloccount-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/sloccount-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/sloccount-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/sloccount-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/sloccount-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/sloccount-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/sloccount-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/sloccount-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/sloccount-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/sloccount-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/sloccount-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/sloccount-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/sloccount-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/sloccount-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/sloccount-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/sloccount-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/sloccount-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/sloccount-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/sloccount-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/sloccount-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/sloccount-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/sloccount-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/sloccount-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/sloccount-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/sloccount-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/sloccount-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/sloccount-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/sloccount-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/sloccount-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/sloccount-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/sloccount-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/sloccount-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/sloccount-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/sloccount-plugin/deployments", + "created_at": "2010-12-13T05:53:21Z", + "updated_at": "2019-01-17T10:25:25Z", + "pushed_at": "2019-10-08T10:17:00Z", + "git_url": "git://github.com/jenkinsci/sloccount-plugin.git", + "ssh_url": "git@github.com:jenkinsci/sloccount-plugin.git", + "clone_url": "https://github.com/jenkinsci/sloccount-plugin.git", + "svn_url": "https://github.com/jenkinsci/sloccount-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 284, + "stargazers_count": 13, + "watchers_count": 13, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 24, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 24, + "open_issues": 2, + "watchers": 13, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163756, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzU2", + "name": "ssh-cli-plugin", + "full_name": "jenkinsci/ssh-cli-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/ssh-cli-plugin", + "description": "Jenkins ssh-cli plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/ssh-cli-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/ssh-cli-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/ssh-cli-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/ssh-cli-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/ssh-cli-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/ssh-cli-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/ssh-cli-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/ssh-cli-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/ssh-cli-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/ssh-cli-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/ssh-cli-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/ssh-cli-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/ssh-cli-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/ssh-cli-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/ssh-cli-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/ssh-cli-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/ssh-cli-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/ssh-cli-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/ssh-cli-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/ssh-cli-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/ssh-cli-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/ssh-cli-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/ssh-cli-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/ssh-cli-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/ssh-cli-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/ssh-cli-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/ssh-cli-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/ssh-cli-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/ssh-cli-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/ssh-cli-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/ssh-cli-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/ssh-cli-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/ssh-cli-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/ssh-cli-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/ssh-cli-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/ssh-cli-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/ssh-cli-plugin/deployments", + "created_at": "2010-12-13T05:53:27Z", + "updated_at": "2014-03-05T06:55:47Z", + "pushed_at": "2013-11-10T02:18:44Z", + "git_url": "git://github.com/jenkinsci/ssh-cli-plugin.git", + "ssh_url": "git@github.com:jenkinsci/ssh-cli-plugin.git", + "clone_url": "https://github.com/jenkinsci/ssh-cli-plugin.git", + "svn_url": "https://github.com/jenkinsci/ssh-cli-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 112, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163757, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzU3", + "name": "sfee-plugin", + "full_name": "jenkinsci/sfee-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/sfee-plugin", + "description": "Jenkins sfee plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/sfee-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/sfee-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/sfee-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/sfee-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/sfee-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/sfee-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/sfee-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/sfee-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/sfee-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/sfee-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/sfee-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/sfee-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/sfee-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/sfee-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/sfee-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/sfee-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/sfee-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/sfee-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/sfee-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/sfee-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/sfee-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/sfee-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/sfee-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/sfee-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/sfee-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/sfee-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/sfee-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/sfee-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/sfee-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/sfee-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/sfee-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/sfee-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/sfee-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/sfee-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/sfee-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/sfee-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/sfee-plugin/deployments", + "created_at": "2010-12-13T05:53:30Z", + "updated_at": "2013-11-10T02:17:25Z", + "pushed_at": "2013-11-10T02:17:19Z", + "git_url": "git://github.com/jenkinsci/sfee-plugin.git", + "ssh_url": "git@github.com:jenkinsci/sfee-plugin.git", + "clone_url": "https://github.com/jenkinsci/sfee-plugin.git", + "svn_url": "https://github.com/jenkinsci/sfee-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 226, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163758, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzU4", + "name": "slave-status-plugin", + "full_name": "jenkinsci/slave-status-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/slave-status-plugin", + "description": "Jenkins slave-status plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/slave-status-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/slave-status-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/slave-status-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/slave-status-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/slave-status-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/slave-status-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/slave-status-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/slave-status-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/slave-status-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/slave-status-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/slave-status-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/slave-status-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/slave-status-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/slave-status-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/slave-status-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/slave-status-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/slave-status-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/slave-status-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/slave-status-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/slave-status-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/slave-status-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/slave-status-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/slave-status-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/slave-status-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/slave-status-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/slave-status-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/slave-status-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/slave-status-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/slave-status-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/slave-status-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/slave-status-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/slave-status-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/slave-status-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/slave-status-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/slave-status-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/slave-status-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/slave-status-plugin/deployments", + "created_at": "2010-12-13T05:53:30Z", + "updated_at": "2013-11-10T02:18:12Z", + "pushed_at": "2019-10-08T11:15:10Z", + "git_url": "git://github.com/jenkinsci/slave-status-plugin.git", + "ssh_url": "git@github.com:jenkinsci/slave-status-plugin.git", + "clone_url": "https://github.com/jenkinsci/slave-status-plugin.git", + "svn_url": "https://github.com/jenkinsci/slave-status-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 200, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 3, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163759, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzU5", + "name": "springbeandoc-plugin", + "full_name": "jenkinsci/springbeandoc-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/springbeandoc-plugin", + "description": "Jenkins springbeandoc plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/springbeandoc-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/springbeandoc-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/springbeandoc-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/springbeandoc-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/springbeandoc-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/springbeandoc-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/springbeandoc-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/springbeandoc-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/springbeandoc-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/springbeandoc-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/springbeandoc-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/springbeandoc-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/springbeandoc-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/springbeandoc-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/springbeandoc-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/springbeandoc-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/springbeandoc-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/springbeandoc-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/springbeandoc-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/springbeandoc-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/springbeandoc-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/springbeandoc-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/springbeandoc-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/springbeandoc-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/springbeandoc-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/springbeandoc-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/springbeandoc-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/springbeandoc-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/springbeandoc-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/springbeandoc-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/springbeandoc-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/springbeandoc-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/springbeandoc-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/springbeandoc-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/springbeandoc-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/springbeandoc-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/springbeandoc-plugin/deployments", + "created_at": "2010-12-13T05:53:31Z", + "updated_at": "2013-11-10T02:18:33Z", + "pushed_at": "2013-11-10T02:18:28Z", + "git_url": "git://github.com/jenkinsci/springbeandoc-plugin.git", + "ssh_url": "git@github.com:jenkinsci/springbeandoc-plugin.git", + "clone_url": "https://github.com/jenkinsci/springbeandoc-plugin.git", + "svn_url": "https://github.com/jenkinsci/springbeandoc-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 144, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163760, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzYw", + "name": "sidebar-link-plugin", + "full_name": "jenkinsci/sidebar-link-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/sidebar-link-plugin", + "description": "Jenkins sidebar-link plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/sidebar-link-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/sidebar-link-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/sidebar-link-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/sidebar-link-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/sidebar-link-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/sidebar-link-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/sidebar-link-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/sidebar-link-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/sidebar-link-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/sidebar-link-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/sidebar-link-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/sidebar-link-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/sidebar-link-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/sidebar-link-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/sidebar-link-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/sidebar-link-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/sidebar-link-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/sidebar-link-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/sidebar-link-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/sidebar-link-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/sidebar-link-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/sidebar-link-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/sidebar-link-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/sidebar-link-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/sidebar-link-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/sidebar-link-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/sidebar-link-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/sidebar-link-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/sidebar-link-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/sidebar-link-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/sidebar-link-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/sidebar-link-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/sidebar-link-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/sidebar-link-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/sidebar-link-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/sidebar-link-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/sidebar-link-plugin/deployments", + "created_at": "2010-12-13T05:53:32Z", + "updated_at": "2019-10-04T03:56:31Z", + "pushed_at": "2019-09-24T20:14:47Z", + "git_url": "git://github.com/jenkinsci/sidebar-link-plugin.git", + "ssh_url": "git@github.com:jenkinsci/sidebar-link-plugin.git", + "clone_url": "https://github.com/jenkinsci/sidebar-link-plugin.git", + "svn_url": "https://github.com/jenkinsci/sidebar-link-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 113, + "stargazers_count": 19, + "watchers_count": 19, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 28, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 28, + "open_issues": 1, + "watchers": 19, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163761, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzYx", + "name": "staf-plugin", + "full_name": "jenkinsci/staf-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/staf-plugin", + "description": "Jenkins staf plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/staf-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/staf-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/staf-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/staf-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/staf-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/staf-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/staf-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/staf-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/staf-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/staf-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/staf-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/staf-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/staf-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/staf-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/staf-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/staf-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/staf-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/staf-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/staf-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/staf-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/staf-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/staf-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/staf-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/staf-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/staf-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/staf-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/staf-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/staf-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/staf-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/staf-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/staf-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/staf-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/staf-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/staf-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/staf-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/staf-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/staf-plugin/deployments", + "created_at": "2010-12-13T05:53:32Z", + "updated_at": "2013-12-21T21:51:26Z", + "pushed_at": "2013-11-10T02:19:04Z", + "git_url": "git://github.com/jenkinsci/staf-plugin.git", + "ssh_url": "git@github.com:jenkinsci/staf-plugin.git", + "clone_url": "https://github.com/jenkinsci/staf-plugin.git", + "svn_url": "https://github.com/jenkinsci/staf-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 136, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163764, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzY0", + "name": "status-view-plugin", + "full_name": "jenkinsci/status-view-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/status-view-plugin", + "description": "Jenkins status-view plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/status-view-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/status-view-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/status-view-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/status-view-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/status-view-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/status-view-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/status-view-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/status-view-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/status-view-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/status-view-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/status-view-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/status-view-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/status-view-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/status-view-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/status-view-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/status-view-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/status-view-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/status-view-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/status-view-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/status-view-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/status-view-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/status-view-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/status-view-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/status-view-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/status-view-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/status-view-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/status-view-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/status-view-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/status-view-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/status-view-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/status-view-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/status-view-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/status-view-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/status-view-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/status-view-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/status-view-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/status-view-plugin/deployments", + "created_at": "2010-12-13T05:53:56Z", + "updated_at": "2013-11-10T02:19:22Z", + "pushed_at": "2013-11-10T02:19:17Z", + "git_url": "git://github.com/jenkinsci/status-view-plugin.git", + "ssh_url": "git@github.com:jenkinsci/status-view-plugin.git", + "clone_url": "https://github.com/jenkinsci/status-view-plugin.git", + "svn_url": "https://github.com/jenkinsci/status-view-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 339, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163765, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzY1", + "name": "svnmerge-plugin", + "full_name": "jenkinsci/svnmerge-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/svnmerge-plugin", + "description": "Jenkins svnmerge plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/svnmerge-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/svnmerge-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/svnmerge-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/svnmerge-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/svnmerge-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/svnmerge-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/svnmerge-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/svnmerge-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/svnmerge-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/svnmerge-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/svnmerge-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/svnmerge-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/svnmerge-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/svnmerge-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/svnmerge-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/svnmerge-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/svnmerge-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/svnmerge-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/svnmerge-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/svnmerge-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/svnmerge-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/svnmerge-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/svnmerge-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/svnmerge-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/svnmerge-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/svnmerge-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/svnmerge-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/svnmerge-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/svnmerge-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/svnmerge-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/svnmerge-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/svnmerge-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/svnmerge-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/svnmerge-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/svnmerge-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/svnmerge-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/svnmerge-plugin/deployments", + "created_at": "2010-12-13T05:54:13Z", + "updated_at": "2019-10-09T00:34:10Z", + "pushed_at": "2019-10-09T00:34:08Z", + "git_url": "git://github.com/jenkinsci/svnmerge-plugin.git", + "ssh_url": "git@github.com:jenkinsci/svnmerge-plugin.git", + "clone_url": "https://github.com/jenkinsci/svnmerge-plugin.git", + "svn_url": "https://github.com/jenkinsci/svnmerge-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 243, + "stargazers_count": 9, + "watchers_count": 9, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 28, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 4, + "license": null, + "forks": 28, + "open_issues": 4, + "watchers": 9, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163766, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzY2", + "name": "svnimport-plugin", + "full_name": "jenkinsci/svnimport-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/svnimport-plugin", + "description": "Jenkins svnimport plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/svnimport-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/svnimport-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/svnimport-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/svnimport-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/svnimport-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/svnimport-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/svnimport-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/svnimport-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/svnimport-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/svnimport-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/svnimport-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/svnimport-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/svnimport-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/svnimport-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/svnimport-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/svnimport-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/svnimport-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/svnimport-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/svnimport-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/svnimport-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/svnimport-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/svnimport-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/svnimport-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/svnimport-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/svnimport-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/svnimport-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/svnimport-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/svnimport-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/svnimport-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/svnimport-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/svnimport-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/svnimport-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/svnimport-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/svnimport-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/svnimport-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/svnimport-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/svnimport-plugin/deployments", + "created_at": "2010-12-13T05:54:16Z", + "updated_at": "2013-11-10T02:19:45Z", + "pushed_at": "2013-11-10T02:19:43Z", + "git_url": "git://github.com/jenkinsci/svnimport-plugin.git", + "ssh_url": "git@github.com:jenkinsci/svnimport-plugin.git", + "clone_url": "https://github.com/jenkinsci/svnimport-plugin.git", + "svn_url": "https://github.com/jenkinsci/svnimport-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 112, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163767, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzY3", + "name": "statusmonitor-plugin", + "full_name": "jenkinsci/statusmonitor-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/statusmonitor-plugin", + "description": "Jenkins statusmonitor plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/statusmonitor-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/statusmonitor-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/statusmonitor-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/statusmonitor-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/statusmonitor-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/statusmonitor-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/statusmonitor-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/statusmonitor-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/statusmonitor-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/statusmonitor-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/statusmonitor-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/statusmonitor-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/statusmonitor-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/statusmonitor-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/statusmonitor-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/statusmonitor-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/statusmonitor-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/statusmonitor-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/statusmonitor-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/statusmonitor-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/statusmonitor-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/statusmonitor-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/statusmonitor-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/statusmonitor-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/statusmonitor-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/statusmonitor-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/statusmonitor-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/statusmonitor-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/statusmonitor-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/statusmonitor-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/statusmonitor-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/statusmonitor-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/statusmonitor-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/statusmonitor-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/statusmonitor-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/statusmonitor-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/statusmonitor-plugin/deployments", + "created_at": "2010-12-13T05:54:19Z", + "updated_at": "2018-08-14T08:04:43Z", + "pushed_at": "2019-10-08T11:23:44Z", + "git_url": "git://github.com/jenkinsci/statusmonitor-plugin.git", + "ssh_url": "git@github.com:jenkinsci/statusmonitor-plugin.git", + "clone_url": "https://github.com/jenkinsci/statusmonitor-plugin.git", + "svn_url": "https://github.com/jenkinsci/statusmonitor-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 870, + "stargazers_count": 15, + "watchers_count": 15, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 17, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 17, + "open_issues": 2, + "watchers": 15, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163768, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzY4", + "name": "svn-release-mgr-plugin", + "full_name": "jenkinsci/svn-release-mgr-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/svn-release-mgr-plugin", + "description": "Jenkins svn-release-mgr plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/svn-release-mgr-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/svn-release-mgr-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/svn-release-mgr-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/svn-release-mgr-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/svn-release-mgr-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/svn-release-mgr-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/svn-release-mgr-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/svn-release-mgr-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/svn-release-mgr-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/svn-release-mgr-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/svn-release-mgr-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/svn-release-mgr-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/svn-release-mgr-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/svn-release-mgr-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/svn-release-mgr-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/svn-release-mgr-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/svn-release-mgr-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/svn-release-mgr-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/svn-release-mgr-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/svn-release-mgr-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/svn-release-mgr-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/svn-release-mgr-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/svn-release-mgr-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/svn-release-mgr-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/svn-release-mgr-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/svn-release-mgr-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/svn-release-mgr-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/svn-release-mgr-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/svn-release-mgr-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/svn-release-mgr-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/svn-release-mgr-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/svn-release-mgr-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/svn-release-mgr-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/svn-release-mgr-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/svn-release-mgr-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/svn-release-mgr-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/svn-release-mgr-plugin/deployments", + "created_at": "2010-12-13T05:54:23Z", + "updated_at": "2013-11-22T19:19:07Z", + "pushed_at": "2013-11-10T02:19:34Z", + "git_url": "git://github.com/jenkinsci/svn-release-mgr-plugin.git", + "ssh_url": "git@github.com:jenkinsci/svn-release-mgr-plugin.git", + "clone_url": "https://github.com/jenkinsci/svn-release-mgr-plugin.git", + "svn_url": "https://github.com/jenkinsci/svn-release-mgr-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 183, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 3, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163769, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzY5", + "name": "svnpublisher-plugin", + "full_name": "jenkinsci/svnpublisher-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/svnpublisher-plugin", + "description": "Jenkins svnpublisher plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/svnpublisher-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/svnpublisher-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/svnpublisher-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/svnpublisher-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/svnpublisher-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/svnpublisher-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/svnpublisher-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/svnpublisher-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/svnpublisher-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/svnpublisher-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/svnpublisher-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/svnpublisher-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/svnpublisher-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/svnpublisher-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/svnpublisher-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/svnpublisher-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/svnpublisher-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/svnpublisher-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/svnpublisher-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/svnpublisher-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/svnpublisher-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/svnpublisher-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/svnpublisher-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/svnpublisher-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/svnpublisher-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/svnpublisher-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/svnpublisher-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/svnpublisher-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/svnpublisher-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/svnpublisher-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/svnpublisher-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/svnpublisher-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/svnpublisher-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/svnpublisher-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/svnpublisher-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/svnpublisher-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/svnpublisher-plugin/deployments", + "created_at": "2010-12-13T05:54:28Z", + "updated_at": "2017-09-28T09:40:55Z", + "pushed_at": "2013-11-10T02:19:51Z", + "git_url": "git://github.com/jenkinsci/svnpublisher-plugin.git", + "ssh_url": "git@github.com:jenkinsci/svnpublisher-plugin.git", + "clone_url": "https://github.com/jenkinsci/svnpublisher-plugin.git", + "svn_url": "https://github.com/jenkinsci/svnpublisher-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 119, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 5, + "open_issues": 1, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163771, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzcx", + "name": "systemloadaverage-monitor-plugin", + "full_name": "jenkinsci/systemloadaverage-monitor-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/systemloadaverage-monitor-plugin", + "description": "Jenkins systemloadaverage-monitor plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/systemloadaverage-monitor-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/systemloadaverage-monitor-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/systemloadaverage-monitor-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/systemloadaverage-monitor-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/systemloadaverage-monitor-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/systemloadaverage-monitor-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/systemloadaverage-monitor-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/systemloadaverage-monitor-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/systemloadaverage-monitor-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/systemloadaverage-monitor-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/systemloadaverage-monitor-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/systemloadaverage-monitor-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/systemloadaverage-monitor-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/systemloadaverage-monitor-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/systemloadaverage-monitor-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/systemloadaverage-monitor-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/systemloadaverage-monitor-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/systemloadaverage-monitor-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/systemloadaverage-monitor-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/systemloadaverage-monitor-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/systemloadaverage-monitor-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/systemloadaverage-monitor-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/systemloadaverage-monitor-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/systemloadaverage-monitor-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/systemloadaverage-monitor-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/systemloadaverage-monitor-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/systemloadaverage-monitor-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/systemloadaverage-monitor-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/systemloadaverage-monitor-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/systemloadaverage-monitor-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/systemloadaverage-monitor-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/systemloadaverage-monitor-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/systemloadaverage-monitor-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/systemloadaverage-monitor-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/systemloadaverage-monitor-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/systemloadaverage-monitor-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/systemloadaverage-monitor-plugin/deployments", + "created_at": "2010-12-13T05:54:50Z", + "updated_at": "2019-10-22T11:58:26Z", + "pushed_at": "2019-10-22T11:58:24Z", + "git_url": "git://github.com/jenkinsci/systemloadaverage-monitor-plugin.git", + "ssh_url": "git@github.com:jenkinsci/systemloadaverage-monitor-plugin.git", + "clone_url": "https://github.com/jenkinsci/systemloadaverage-monitor-plugin.git", + "svn_url": "https://github.com/jenkinsci/systemloadaverage-monitor-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 24, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163772, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzcy", + "name": "svncompat14-plugin", + "full_name": "jenkinsci/svncompat14-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/svncompat14-plugin", + "description": "Jenkins svncompat14 plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/svncompat14-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/svncompat14-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/svncompat14-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/svncompat14-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/svncompat14-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/svncompat14-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/svncompat14-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/svncompat14-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/svncompat14-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/svncompat14-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/svncompat14-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/svncompat14-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/svncompat14-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/svncompat14-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/svncompat14-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/svncompat14-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/svncompat14-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/svncompat14-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/svncompat14-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/svncompat14-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/svncompat14-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/svncompat14-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/svncompat14-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/svncompat14-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/svncompat14-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/svncompat14-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/svncompat14-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/svncompat14-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/svncompat14-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/svncompat14-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/svncompat14-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/svncompat14-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/svncompat14-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/svncompat14-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/svncompat14-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/svncompat14-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/svncompat14-plugin/deployments", + "created_at": "2010-12-13T05:54:56Z", + "updated_at": "2013-11-10T02:19:45Z", + "pushed_at": "2019-10-08T11:31:23Z", + "git_url": "git://github.com/jenkinsci/svncompat14-plugin.git", + "ssh_url": "git@github.com:jenkinsci/svncompat14-plugin.git", + "clone_url": "https://github.com/jenkinsci/svncompat14-plugin.git", + "svn_url": "https://github.com/jenkinsci/svncompat14-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 152, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 2, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163773, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzcz", + "name": "terminal-plugin", + "full_name": "jenkinsci/terminal-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/terminal-plugin", + "description": "Jenkins terminal plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/terminal-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/terminal-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/terminal-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/terminal-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/terminal-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/terminal-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/terminal-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/terminal-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/terminal-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/terminal-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/terminal-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/terminal-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/terminal-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/terminal-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/terminal-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/terminal-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/terminal-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/terminal-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/terminal-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/terminal-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/terminal-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/terminal-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/terminal-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/terminal-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/terminal-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/terminal-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/terminal-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/terminal-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/terminal-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/terminal-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/terminal-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/terminal-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/terminal-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/terminal-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/terminal-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/terminal-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/terminal-plugin/deployments", + "created_at": "2010-12-13T05:54:57Z", + "updated_at": "2013-12-19T15:05:14Z", + "pushed_at": "2019-10-08T12:16:37Z", + "git_url": "git://github.com/jenkinsci/terminal-plugin.git", + "ssh_url": "git@github.com:jenkinsci/terminal-plugin.git", + "clone_url": "https://github.com/jenkinsci/terminal-plugin.git", + "svn_url": "https://github.com/jenkinsci/terminal-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 90, + "stargazers_count": 2, + "watchers_count": 2, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 4, + "open_issues": 1, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163777, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzc3", + "name": "swarm-plugin", + "full_name": "jenkinsci/swarm-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/swarm-plugin", + "description": "Jenkins swarm plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/swarm-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/swarm-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/swarm-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/swarm-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/swarm-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/swarm-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/swarm-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/swarm-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/swarm-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/swarm-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/swarm-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/swarm-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/swarm-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/swarm-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/swarm-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/swarm-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/swarm-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/swarm-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/swarm-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/swarm-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/swarm-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/swarm-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/swarm-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/swarm-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/swarm-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/swarm-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/swarm-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/swarm-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/swarm-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/swarm-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/swarm-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/swarm-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/swarm-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/swarm-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/swarm-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/swarm-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/swarm-plugin/deployments", + "created_at": "2010-12-13T05:55:20Z", + "updated_at": "2019-10-25T14:11:57Z", + "pushed_at": "2019-10-25T14:11:56Z", + "git_url": "git://github.com/jenkinsci/swarm-plugin.git", + "ssh_url": "git@github.com:jenkinsci/swarm-plugin.git", + "clone_url": "https://github.com/jenkinsci/swarm-plugin.git", + "svn_url": "https://github.com/jenkinsci/swarm-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 527, + "stargazers_count": 104, + "watchers_count": 104, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 95, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": null, + "forks": 95, + "open_issues": 3, + "watchers": 104, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163778, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzc4", + "name": "template-project-plugin", + "full_name": "jenkinsci/template-project-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/template-project-plugin", + "description": "Jenkins template-project plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/template-project-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/template-project-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/template-project-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/template-project-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/template-project-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/template-project-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/template-project-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/template-project-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/template-project-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/template-project-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/template-project-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/template-project-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/template-project-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/template-project-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/template-project-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/template-project-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/template-project-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/template-project-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/template-project-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/template-project-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/template-project-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/template-project-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/template-project-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/template-project-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/template-project-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/template-project-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/template-project-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/template-project-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/template-project-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/template-project-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/template-project-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/template-project-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/template-project-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/template-project-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/template-project-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/template-project-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/template-project-plugin/deployments", + "created_at": "2010-12-13T05:55:22Z", + "updated_at": "2019-05-03T00:53:18Z", + "pushed_at": "2019-10-08T10:09:59Z", + "git_url": "git://github.com/jenkinsci/template-project-plugin.git", + "ssh_url": "git@github.com:jenkinsci/template-project-plugin.git", + "clone_url": "https://github.com/jenkinsci/template-project-plugin.git", + "svn_url": "https://github.com/jenkinsci/template-project-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 166, + "stargazers_count": 18, + "watchers_count": 18, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 35, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 7, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 35, + "open_issues": 7, + "watchers": 18, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163779, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzc5", + "name": "synergy_scm-plugin", + "full_name": "jenkinsci/synergy_scm-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/synergy_scm-plugin", + "description": "Jenkins synergy_scm plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/synergy_scm-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/synergy_scm-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/synergy_scm-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/synergy_scm-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/synergy_scm-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/synergy_scm-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/synergy_scm-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/synergy_scm-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/synergy_scm-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/synergy_scm-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/synergy_scm-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/synergy_scm-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/synergy_scm-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/synergy_scm-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/synergy_scm-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/synergy_scm-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/synergy_scm-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/synergy_scm-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/synergy_scm-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/synergy_scm-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/synergy_scm-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/synergy_scm-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/synergy_scm-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/synergy_scm-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/synergy_scm-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/synergy_scm-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/synergy_scm-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/synergy_scm-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/synergy_scm-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/synergy_scm-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/synergy_scm-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/synergy_scm-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/synergy_scm-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/synergy_scm-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/synergy_scm-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/synergy_scm-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/synergy_scm-plugin/deployments", + "created_at": "2010-12-13T05:55:25Z", + "updated_at": "2019-02-05T08:31:33Z", + "pushed_at": "2017-04-11T13:26:17Z", + "git_url": "git://github.com/jenkinsci/synergy_scm-plugin.git", + "ssh_url": "git@github.com:jenkinsci/synergy_scm-plugin.git", + "clone_url": "https://github.com/jenkinsci/synergy_scm-plugin.git", + "svn_url": "https://github.com/jenkinsci/synergy_scm-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 427, + "stargazers_count": 9, + "watchers_count": 9, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 14, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 14, + "open_issues": 2, + "watchers": 9, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163780, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzgw", + "name": "svncompat13-plugin", + "full_name": "jenkinsci/svncompat13-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/svncompat13-plugin", + "description": "Jenkins svncompat13 plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/svncompat13-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/svncompat13-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/svncompat13-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/svncompat13-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/svncompat13-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/svncompat13-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/svncompat13-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/svncompat13-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/svncompat13-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/svncompat13-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/svncompat13-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/svncompat13-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/svncompat13-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/svncompat13-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/svncompat13-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/svncompat13-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/svncompat13-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/svncompat13-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/svncompat13-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/svncompat13-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/svncompat13-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/svncompat13-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/svncompat13-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/svncompat13-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/svncompat13-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/svncompat13-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/svncompat13-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/svncompat13-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/svncompat13-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/svncompat13-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/svncompat13-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/svncompat13-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/svncompat13-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/svncompat13-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/svncompat13-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/svncompat13-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/svncompat13-plugin/deployments", + "created_at": "2010-12-13T05:55:26Z", + "updated_at": "2013-11-10T02:19:44Z", + "pushed_at": "2019-10-08T12:32:56Z", + "git_url": "git://github.com/jenkinsci/svncompat13-plugin.git", + "ssh_url": "git@github.com:jenkinsci/svncompat13-plugin.git", + "clone_url": "https://github.com/jenkinsci/svncompat13-plugin.git", + "svn_url": "https://github.com/jenkinsci/svncompat13-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 236, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 2, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163782, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzgy", + "name": "testlink-plugin", + "full_name": "jenkinsci/testlink-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/testlink-plugin", + "description": "Jenkins testlink plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/testlink-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/testlink-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/testlink-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/testlink-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/testlink-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/testlink-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/testlink-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/testlink-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/testlink-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/testlink-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/testlink-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/testlink-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/testlink-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/testlink-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/testlink-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/testlink-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/testlink-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/testlink-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/testlink-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/testlink-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/testlink-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/testlink-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/testlink-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/testlink-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/testlink-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/testlink-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/testlink-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/testlink-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/testlink-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/testlink-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/testlink-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/testlink-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/testlink-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/testlink-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/testlink-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/testlink-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/testlink-plugin/deployments", + "created_at": "2010-12-13T05:56:04Z", + "updated_at": "2019-09-17T03:57:03Z", + "pushed_at": "2019-08-02T08:01:24Z", + "git_url": "git://github.com/jenkinsci/testlink-plugin.git", + "ssh_url": "git@github.com:jenkinsci/testlink-plugin.git", + "clone_url": "https://github.com/jenkinsci/testlink-plugin.git", + "svn_url": "https://github.com/jenkinsci/testlink-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 30896, + "stargazers_count": 43, + "watchers_count": 43, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 73, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 5, + "license": null, + "forks": 73, + "open_issues": 5, + "watchers": 43, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163783, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzgz", + "name": "testabilityexplorer-plugin", + "full_name": "jenkinsci/testabilityexplorer-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/testabilityexplorer-plugin", + "description": "Jenkins testabilityexplorer plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/testabilityexplorer-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/testabilityexplorer-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/testabilityexplorer-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/testabilityexplorer-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/testabilityexplorer-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/testabilityexplorer-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/testabilityexplorer-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/testabilityexplorer-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/testabilityexplorer-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/testabilityexplorer-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/testabilityexplorer-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/testabilityexplorer-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/testabilityexplorer-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/testabilityexplorer-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/testabilityexplorer-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/testabilityexplorer-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/testabilityexplorer-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/testabilityexplorer-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/testabilityexplorer-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/testabilityexplorer-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/testabilityexplorer-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/testabilityexplorer-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/testabilityexplorer-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/testabilityexplorer-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/testabilityexplorer-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/testabilityexplorer-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/testabilityexplorer-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/testabilityexplorer-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/testabilityexplorer-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/testabilityexplorer-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/testabilityexplorer-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/testabilityexplorer-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/testabilityexplorer-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/testabilityexplorer-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/testabilityexplorer-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/testabilityexplorer-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/testabilityexplorer-plugin/deployments", + "created_at": "2010-12-13T05:56:22Z", + "updated_at": "2016-04-16T01:48:30Z", + "pushed_at": "2016-04-16T01:48:31Z", + "git_url": "git://github.com/jenkinsci/testabilityexplorer-plugin.git", + "ssh_url": "git@github.com:jenkinsci/testabilityexplorer-plugin.git", + "clone_url": "https://github.com/jenkinsci/testabilityexplorer-plugin.git", + "svn_url": "https://github.com/jenkinsci/testabilityexplorer-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 231, + "stargazers_count": 1, + "watchers_count": 1, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163784, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzg0", + "name": "svn-tag-plugin", + "full_name": "jenkinsci/svn-tag-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/svn-tag-plugin", + "description": "Jenkins svn-tag plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/svn-tag-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/svn-tag-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/svn-tag-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/svn-tag-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/svn-tag-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/svn-tag-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/svn-tag-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/svn-tag-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/svn-tag-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/svn-tag-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/svn-tag-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/svn-tag-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/svn-tag-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/svn-tag-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/svn-tag-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/svn-tag-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/svn-tag-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/svn-tag-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/svn-tag-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/svn-tag-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/svn-tag-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/svn-tag-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/svn-tag-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/svn-tag-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/svn-tag-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/svn-tag-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/svn-tag-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/svn-tag-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/svn-tag-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/svn-tag-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/svn-tag-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/svn-tag-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/svn-tag-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/svn-tag-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/svn-tag-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/svn-tag-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/svn-tag-plugin/deployments", + "created_at": "2010-12-13T05:56:31Z", + "updated_at": "2017-12-15T18:54:36Z", + "pushed_at": "2016-03-14T13:01:33Z", + "git_url": "git://github.com/jenkinsci/svn-tag-plugin.git", + "ssh_url": "git@github.com:jenkinsci/svn-tag-plugin.git", + "clone_url": "https://github.com/jenkinsci/svn-tag-plugin.git", + "svn_url": "https://github.com/jenkinsci/svn-tag-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 21125, + "stargazers_count": 9, + "watchers_count": 9, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 24, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 4, + "license": null, + "forks": 24, + "open_issues": 4, + "watchers": 9, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163785, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzg1", + "name": "tmpcleaner-plugin", + "full_name": "jenkinsci/tmpcleaner-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/tmpcleaner-plugin", + "description": "Jenkins tmpcleaner plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/tmpcleaner-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/tmpcleaner-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/tmpcleaner-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/tmpcleaner-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/tmpcleaner-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/tmpcleaner-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/tmpcleaner-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/tmpcleaner-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/tmpcleaner-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/tmpcleaner-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/tmpcleaner-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/tmpcleaner-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/tmpcleaner-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/tmpcleaner-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/tmpcleaner-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/tmpcleaner-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/tmpcleaner-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/tmpcleaner-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/tmpcleaner-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/tmpcleaner-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/tmpcleaner-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/tmpcleaner-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/tmpcleaner-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/tmpcleaner-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/tmpcleaner-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/tmpcleaner-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/tmpcleaner-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/tmpcleaner-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/tmpcleaner-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/tmpcleaner-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/tmpcleaner-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/tmpcleaner-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/tmpcleaner-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/tmpcleaner-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/tmpcleaner-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/tmpcleaner-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/tmpcleaner-plugin/deployments", + "created_at": "2010-12-13T05:56:32Z", + "updated_at": "2018-06-18T09:54:56Z", + "pushed_at": "2019-10-08T11:52:07Z", + "git_url": "git://github.com/jenkinsci/tmpcleaner-plugin.git", + "ssh_url": "git@github.com:jenkinsci/tmpcleaner-plugin.git", + "clone_url": "https://github.com/jenkinsci/tmpcleaner-plugin.git", + "svn_url": "https://github.com/jenkinsci/tmpcleaner-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 30, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 7, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 7, + "open_issues": 1, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163788, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzg4", + "name": "testng-plugin-plugin", + "full_name": "jenkinsci/testng-plugin-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/testng-plugin-plugin", + "description": "TestNG Reports Plugin for Jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/testng-plugin-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/testng-plugin-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/testng-plugin-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/testng-plugin-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/testng-plugin-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/testng-plugin-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/testng-plugin-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/testng-plugin-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/testng-plugin-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/testng-plugin-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/testng-plugin-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/testng-plugin-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/testng-plugin-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/testng-plugin-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/testng-plugin-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/testng-plugin-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/testng-plugin-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/testng-plugin-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/testng-plugin-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/testng-plugin-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/testng-plugin-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/testng-plugin-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/testng-plugin-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/testng-plugin-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/testng-plugin-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/testng-plugin-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/testng-plugin-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/testng-plugin-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/testng-plugin-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/testng-plugin-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/testng-plugin-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/testng-plugin-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/testng-plugin-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/testng-plugin-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/testng-plugin-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/testng-plugin-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/testng-plugin-plugin/deployments", + "created_at": "2010-12-13T05:56:38Z", + "updated_at": "2019-07-17T21:31:10Z", + "pushed_at": "2019-09-24T10:21:35Z", + "git_url": "git://github.com/jenkinsci/testng-plugin-plugin.git", + "ssh_url": "git@github.com:jenkinsci/testng-plugin-plugin.git", + "clone_url": "https://github.com/jenkinsci/testng-plugin-plugin.git", + "svn_url": "https://github.com/jenkinsci/testng-plugin-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/testng-plugin", + "size": 767, + "stargazers_count": 53, + "watchers_count": 53, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 83, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 4, + "license": null, + "forks": 83, + "open_issues": 4, + "watchers": 53, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163789, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzg5", + "name": "toolenv-plugin", + "full_name": "jenkinsci/toolenv-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/toolenv-plugin", + "description": "Jenkins toolenv plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/toolenv-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/toolenv-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/toolenv-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/toolenv-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/toolenv-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/toolenv-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/toolenv-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/toolenv-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/toolenv-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/toolenv-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/toolenv-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/toolenv-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/toolenv-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/toolenv-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/toolenv-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/toolenv-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/toolenv-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/toolenv-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/toolenv-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/toolenv-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/toolenv-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/toolenv-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/toolenv-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/toolenv-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/toolenv-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/toolenv-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/toolenv-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/toolenv-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/toolenv-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/toolenv-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/toolenv-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/toolenv-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/toolenv-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/toolenv-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/toolenv-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/toolenv-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/toolenv-plugin/deployments", + "created_at": "2010-12-13T05:56:39Z", + "updated_at": "2019-06-19T16:43:01Z", + "pushed_at": "2019-10-08T11:37:14Z", + "git_url": "git://github.com/jenkinsci/toolenv-plugin.git", + "ssh_url": "git@github.com:jenkinsci/toolenv-plugin.git", + "clone_url": "https://github.com/jenkinsci/toolenv-plugin.git", + "svn_url": "https://github.com/jenkinsci/toolenv-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 20, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 7, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 7, + "open_issues": 2, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163790, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzkw", + "name": "timestamper-plugin", + "full_name": "jenkinsci/timestamper-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/timestamper-plugin", + "description": "Jenkins timestamper plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/timestamper-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/timestamper-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/timestamper-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/timestamper-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/timestamper-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/timestamper-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/timestamper-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/timestamper-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/timestamper-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/timestamper-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/timestamper-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/timestamper-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/timestamper-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/timestamper-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/timestamper-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/timestamper-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/timestamper-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/timestamper-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/timestamper-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/timestamper-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/timestamper-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/timestamper-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/timestamper-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/timestamper-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/timestamper-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/timestamper-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/timestamper-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/timestamper-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/timestamper-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/timestamper-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/timestamper-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/timestamper-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/timestamper-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/timestamper-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/timestamper-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/timestamper-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/timestamper-plugin/deployments", + "created_at": "2010-12-13T05:56:42Z", + "updated_at": "2019-09-24T08:29:33Z", + "pushed_at": "2019-10-25T20:52:21Z", + "git_url": "git://github.com/jenkinsci/timestamper-plugin.git", + "ssh_url": "git@github.com:jenkinsci/timestamper-plugin.git", + "clone_url": "https://github.com/jenkinsci/timestamper-plugin.git", + "svn_url": "https://github.com/jenkinsci/timestamper-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 744, + "stargazers_count": 26, + "watchers_count": 26, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 48, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 6, + "license": null, + "forks": 48, + "open_issues": 6, + "watchers": 26, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163791, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzkx", + "name": "ssh-slaves-plugin", + "full_name": "jenkinsci/ssh-slaves-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/ssh-slaves-plugin", + "description": "Jenkins ssh-slaves plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/ssh-slaves-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/ssh-slaves-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/ssh-slaves-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/ssh-slaves-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/ssh-slaves-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/ssh-slaves-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/ssh-slaves-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/ssh-slaves-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/ssh-slaves-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/ssh-slaves-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/ssh-slaves-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/ssh-slaves-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/ssh-slaves-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/ssh-slaves-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/ssh-slaves-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/ssh-slaves-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/ssh-slaves-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/ssh-slaves-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/ssh-slaves-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/ssh-slaves-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/ssh-slaves-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/ssh-slaves-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/ssh-slaves-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/ssh-slaves-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/ssh-slaves-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/ssh-slaves-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/ssh-slaves-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/ssh-slaves-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/ssh-slaves-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/ssh-slaves-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/ssh-slaves-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/ssh-slaves-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/ssh-slaves-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/ssh-slaves-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/ssh-slaves-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/ssh-slaves-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/ssh-slaves-plugin/deployments", + "created_at": "2010-12-13T05:56:44Z", + "updated_at": "2019-10-13T21:55:11Z", + "pushed_at": "2019-10-14T17:10:28Z", + "git_url": "git://github.com/jenkinsci/ssh-slaves-plugin.git", + "ssh_url": "git@github.com:jenkinsci/ssh-slaves-plugin.git", + "clone_url": "https://github.com/jenkinsci/ssh-slaves-plugin.git", + "svn_url": "https://github.com/jenkinsci/ssh-slaves-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 1647, + "stargazers_count": 49, + "watchers_count": 49, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 106, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 106, + "open_issues": 2, + "watchers": 49, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163792, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzky", + "name": "ssh-plugin", + "full_name": "jenkinsci/ssh-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/ssh-plugin", + "description": "Jenkins ssh plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/ssh-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/ssh-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/ssh-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/ssh-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/ssh-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/ssh-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/ssh-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/ssh-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/ssh-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/ssh-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/ssh-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/ssh-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/ssh-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/ssh-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/ssh-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/ssh-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/ssh-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/ssh-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/ssh-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/ssh-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/ssh-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/ssh-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/ssh-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/ssh-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/ssh-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/ssh-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/ssh-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/ssh-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/ssh-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/ssh-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/ssh-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/ssh-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/ssh-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/ssh-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/ssh-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/ssh-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/ssh-plugin/deployments", + "created_at": "2010-12-13T05:56:45Z", + "updated_at": "2019-10-03T15:13:57Z", + "pushed_at": "2019-09-20T20:57:31Z", + "git_url": "git://github.com/jenkinsci/ssh-plugin.git", + "ssh_url": "git@github.com:jenkinsci/ssh-plugin.git", + "clone_url": "https://github.com/jenkinsci/ssh-plugin.git", + "svn_url": "https://github.com/jenkinsci/ssh-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 285, + "stargazers_count": 45, + "watchers_count": 45, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 49, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": null, + "forks": 49, + "open_issues": 3, + "watchers": 45, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163794, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzk0", + "name": "tracking-svn-plugin", + "full_name": "jenkinsci/tracking-svn-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/tracking-svn-plugin", + "description": "Jenkins tracking-svn plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/tracking-svn-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/tracking-svn-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/tracking-svn-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/tracking-svn-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/tracking-svn-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/tracking-svn-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/tracking-svn-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/tracking-svn-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/tracking-svn-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/tracking-svn-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/tracking-svn-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/tracking-svn-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/tracking-svn-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/tracking-svn-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/tracking-svn-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/tracking-svn-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/tracking-svn-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/tracking-svn-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/tracking-svn-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/tracking-svn-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/tracking-svn-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/tracking-svn-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/tracking-svn-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/tracking-svn-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/tracking-svn-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/tracking-svn-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/tracking-svn-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/tracking-svn-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/tracking-svn-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/tracking-svn-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/tracking-svn-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/tracking-svn-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/tracking-svn-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/tracking-svn-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/tracking-svn-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/tracking-svn-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/tracking-svn-plugin/deployments", + "created_at": "2010-12-13T05:56:51Z", + "updated_at": "2015-11-28T23:27:08Z", + "pushed_at": "2019-10-08T11:53:20Z", + "git_url": "git://github.com/jenkinsci/tracking-svn-plugin.git", + "ssh_url": "git@github.com:jenkinsci/tracking-svn-plugin.git", + "clone_url": "https://github.com/jenkinsci/tracking-svn-plugin.git", + "svn_url": "https://github.com/jenkinsci/tracking-svn-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 27, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 5, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163795, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzk1", + "name": "starteam-plugin", + "full_name": "jenkinsci/starteam-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/starteam-plugin", + "description": "Jenkins starteam plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/starteam-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/starteam-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/starteam-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/starteam-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/starteam-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/starteam-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/starteam-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/starteam-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/starteam-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/starteam-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/starteam-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/starteam-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/starteam-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/starteam-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/starteam-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/starteam-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/starteam-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/starteam-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/starteam-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/starteam-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/starteam-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/starteam-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/starteam-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/starteam-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/starteam-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/starteam-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/starteam-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/starteam-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/starteam-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/starteam-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/starteam-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/starteam-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/starteam-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/starteam-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/starteam-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/starteam-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/starteam-plugin/deployments", + "created_at": "2010-12-13T05:57:07Z", + "updated_at": "2019-08-13T14:39:36Z", + "pushed_at": "2016-04-16T01:47:30Z", + "git_url": "git://github.com/jenkinsci/starteam-plugin.git", + "ssh_url": "git@github.com:jenkinsci/starteam-plugin.git", + "clone_url": "https://github.com/jenkinsci/starteam-plugin.git", + "svn_url": "https://github.com/jenkinsci/starteam-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 291, + "stargazers_count": 14, + "watchers_count": 14, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 20, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 20, + "open_issues": 0, + "watchers": 14, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163796, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzk2", + "name": "ucm4svn-plugin", + "full_name": "jenkinsci/ucm4svn-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/ucm4svn-plugin", + "description": "Jenkins ucm4svn plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/ucm4svn-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/ucm4svn-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/ucm4svn-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/ucm4svn-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/ucm4svn-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/ucm4svn-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/ucm4svn-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/ucm4svn-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/ucm4svn-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/ucm4svn-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/ucm4svn-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/ucm4svn-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/ucm4svn-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/ucm4svn-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/ucm4svn-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/ucm4svn-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/ucm4svn-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/ucm4svn-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/ucm4svn-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/ucm4svn-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/ucm4svn-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/ucm4svn-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/ucm4svn-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/ucm4svn-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/ucm4svn-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/ucm4svn-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/ucm4svn-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/ucm4svn-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/ucm4svn-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/ucm4svn-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/ucm4svn-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/ucm4svn-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/ucm4svn-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/ucm4svn-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/ucm4svn-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/ucm4svn-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/ucm4svn-plugin/deployments", + "created_at": "2010-12-13T05:57:25Z", + "updated_at": "2013-11-10T02:21:36Z", + "pushed_at": "2013-11-10T02:21:29Z", + "git_url": "git://github.com/jenkinsci/ucm4svn-plugin.git", + "ssh_url": "git@github.com:jenkinsci/ucm4svn-plugin.git", + "clone_url": "https://github.com/jenkinsci/ucm4svn-plugin.git", + "svn_url": "https://github.com/jenkinsci/ucm4svn-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 120, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163797, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzk3", + "name": "unity-asset-server-plugin", + "full_name": "jenkinsci/unity-asset-server-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/unity-asset-server-plugin", + "description": "Jenkins unity-asset-server plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/unity-asset-server-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/unity-asset-server-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/unity-asset-server-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/unity-asset-server-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/unity-asset-server-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/unity-asset-server-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/unity-asset-server-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/unity-asset-server-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/unity-asset-server-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/unity-asset-server-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/unity-asset-server-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/unity-asset-server-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/unity-asset-server-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/unity-asset-server-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/unity-asset-server-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/unity-asset-server-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/unity-asset-server-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/unity-asset-server-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/unity-asset-server-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/unity-asset-server-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/unity-asset-server-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/unity-asset-server-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/unity-asset-server-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/unity-asset-server-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/unity-asset-server-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/unity-asset-server-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/unity-asset-server-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/unity-asset-server-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/unity-asset-server-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/unity-asset-server-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/unity-asset-server-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/unity-asset-server-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/unity-asset-server-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/unity-asset-server-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/unity-asset-server-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/unity-asset-server-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/unity-asset-server-plugin/deployments", + "created_at": "2010-12-13T05:57:31Z", + "updated_at": "2017-08-31T07:07:31Z", + "pushed_at": "2013-11-10T02:21:35Z", + "git_url": "git://github.com/jenkinsci/unity-asset-server-plugin.git", + "ssh_url": "git@github.com:jenkinsci/unity-asset-server-plugin.git", + "clone_url": "https://github.com/jenkinsci/unity-asset-server-plugin.git", + "svn_url": "https://github.com/jenkinsci/unity-asset-server-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 124, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 4, + "open_issues": 0, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163798, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzk4", + "name": "utplsql-plugin", + "full_name": "jenkinsci/utplsql-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/utplsql-plugin", + "description": "Jenkins utplsql plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/utplsql-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/utplsql-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/utplsql-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/utplsql-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/utplsql-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/utplsql-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/utplsql-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/utplsql-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/utplsql-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/utplsql-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/utplsql-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/utplsql-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/utplsql-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/utplsql-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/utplsql-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/utplsql-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/utplsql-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/utplsql-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/utplsql-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/utplsql-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/utplsql-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/utplsql-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/utplsql-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/utplsql-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/utplsql-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/utplsql-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/utplsql-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/utplsql-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/utplsql-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/utplsql-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/utplsql-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/utplsql-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/utplsql-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/utplsql-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/utplsql-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/utplsql-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/utplsql-plugin/deployments", + "created_at": "2010-12-13T05:57:42Z", + "updated_at": "2016-10-31T17:52:52Z", + "pushed_at": "2017-01-23T21:21:30Z", + "git_url": "git://github.com/jenkinsci/utplsql-plugin.git", + "ssh_url": "git@github.com:jenkinsci/utplsql-plugin.git", + "clone_url": "https://github.com/jenkinsci/utplsql-plugin.git", + "svn_url": "https://github.com/jenkinsci/utplsql-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 43, + "stargazers_count": 7, + "watchers_count": 7, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 5, + "open_issues": 0, + "watchers": 7, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163799, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzk5", + "name": "text-finder-plugin", + "full_name": "jenkinsci/text-finder-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/text-finder-plugin", + "description": "Jenkins text-finder plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/text-finder-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/text-finder-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/text-finder-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/text-finder-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/text-finder-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/text-finder-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/text-finder-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/text-finder-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/text-finder-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/text-finder-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/text-finder-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/text-finder-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/text-finder-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/text-finder-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/text-finder-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/text-finder-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/text-finder-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/text-finder-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/text-finder-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/text-finder-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/text-finder-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/text-finder-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/text-finder-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/text-finder-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/text-finder-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/text-finder-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/text-finder-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/text-finder-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/text-finder-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/text-finder-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/text-finder-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/text-finder-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/text-finder-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/text-finder-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/text-finder-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/text-finder-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/text-finder-plugin/deployments", + "created_at": "2010-12-13T05:57:56Z", + "updated_at": "2019-08-01T17:22:29Z", + "pushed_at": "2019-10-11T09:38:05Z", + "git_url": "git://github.com/jenkinsci/text-finder-plugin.git", + "ssh_url": "git@github.com:jenkinsci/text-finder-plugin.git", + "clone_url": "https://github.com/jenkinsci/text-finder-plugin.git", + "svn_url": "https://github.com/jenkinsci/text-finder-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 151, + "stargazers_count": 17, + "watchers_count": 17, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 33, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 33, + "open_issues": 2, + "watchers": 17, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163800, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzODAw", + "name": "tusarnotifier-plugin", + "full_name": "jenkinsci/tusarnotifier-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/tusarnotifier-plugin", + "description": "Jenkins tusarnotifier plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/tusarnotifier-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/tusarnotifier-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/tusarnotifier-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/tusarnotifier-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/tusarnotifier-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/tusarnotifier-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/tusarnotifier-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/tusarnotifier-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/tusarnotifier-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/tusarnotifier-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/tusarnotifier-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/tusarnotifier-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/tusarnotifier-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/tusarnotifier-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/tusarnotifier-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/tusarnotifier-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/tusarnotifier-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/tusarnotifier-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/tusarnotifier-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/tusarnotifier-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/tusarnotifier-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/tusarnotifier-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/tusarnotifier-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/tusarnotifier-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/tusarnotifier-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/tusarnotifier-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/tusarnotifier-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/tusarnotifier-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/tusarnotifier-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/tusarnotifier-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/tusarnotifier-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/tusarnotifier-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/tusarnotifier-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/tusarnotifier-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/tusarnotifier-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/tusarnotifier-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/tusarnotifier-plugin/deployments", + "created_at": "2010-12-13T05:58:01Z", + "updated_at": "2013-11-10T02:21:28Z", + "pushed_at": "2013-11-10T02:21:22Z", + "git_url": "git://github.com/jenkinsci/tusarnotifier-plugin.git", + "ssh_url": "git@github.com:jenkinsci/tusarnotifier-plugin.git", + "clone_url": "https://github.com/jenkinsci/tusarnotifier-plugin.git", + "svn_url": "https://github.com/jenkinsci/tusarnotifier-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 340, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163801, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzODAx", + "name": "tuxdroid-plugin", + "full_name": "jenkinsci/tuxdroid-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/tuxdroid-plugin", + "description": "Jenkins tuxdroid plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/tuxdroid-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/tuxdroid-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/tuxdroid-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/tuxdroid-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/tuxdroid-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/tuxdroid-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/tuxdroid-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/tuxdroid-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/tuxdroid-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/tuxdroid-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/tuxdroid-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/tuxdroid-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/tuxdroid-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/tuxdroid-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/tuxdroid-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/tuxdroid-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/tuxdroid-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/tuxdroid-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/tuxdroid-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/tuxdroid-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/tuxdroid-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/tuxdroid-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/tuxdroid-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/tuxdroid-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/tuxdroid-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/tuxdroid-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/tuxdroid-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/tuxdroid-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/tuxdroid-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/tuxdroid-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/tuxdroid-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/tuxdroid-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/tuxdroid-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/tuxdroid-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/tuxdroid-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/tuxdroid-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/tuxdroid-plugin/deployments", + "created_at": "2010-12-13T05:58:01Z", + "updated_at": "2013-11-10T02:21:29Z", + "pushed_at": "2013-11-10T02:21:24Z", + "git_url": "git://github.com/jenkinsci/tuxdroid-plugin.git", + "ssh_url": "git@github.com:jenkinsci/tuxdroid-plugin.git", + "clone_url": "https://github.com/jenkinsci/tuxdroid-plugin.git", + "svn_url": "https://github.com/jenkinsci/tuxdroid-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 214, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 3, + "open_issues": 1, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163802, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzODAy", + "name": "validating-string-parameter-plugin", + "full_name": "jenkinsci/validating-string-parameter-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/validating-string-parameter-plugin", + "description": "Jenkins validating-string-parameter plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/validating-string-parameter-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/validating-string-parameter-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/validating-string-parameter-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/validating-string-parameter-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/validating-string-parameter-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/validating-string-parameter-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/validating-string-parameter-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/validating-string-parameter-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/validating-string-parameter-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/validating-string-parameter-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/validating-string-parameter-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/validating-string-parameter-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/validating-string-parameter-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/validating-string-parameter-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/validating-string-parameter-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/validating-string-parameter-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/validating-string-parameter-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/validating-string-parameter-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/validating-string-parameter-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/validating-string-parameter-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/validating-string-parameter-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/validating-string-parameter-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/validating-string-parameter-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/validating-string-parameter-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/validating-string-parameter-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/validating-string-parameter-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/validating-string-parameter-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/validating-string-parameter-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/validating-string-parameter-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/validating-string-parameter-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/validating-string-parameter-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/validating-string-parameter-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/validating-string-parameter-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/validating-string-parameter-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/validating-string-parameter-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/validating-string-parameter-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/validating-string-parameter-plugin/deployments", + "created_at": "2010-12-13T05:58:05Z", + "updated_at": "2019-08-13T09:47:28Z", + "pushed_at": "2019-09-03T16:52:53Z", + "git_url": "git://github.com/jenkinsci/validating-string-parameter-plugin.git", + "ssh_url": "git@github.com:jenkinsci/validating-string-parameter-plugin.git", + "clone_url": "https://github.com/jenkinsci/validating-string-parameter-plugin.git", + "svn_url": "https://github.com/jenkinsci/validating-string-parameter-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 55, + "stargazers_count": 10, + "watchers_count": 10, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 29, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 29, + "open_issues": 2, + "watchers": 10, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163803, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzODAz", + "name": "translation-plugin", + "full_name": "jenkinsci/translation-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/translation-plugin", + "description": "Jenkins translation plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/translation-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/translation-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/translation-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/translation-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/translation-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/translation-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/translation-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/translation-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/translation-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/translation-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/translation-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/translation-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/translation-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/translation-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/translation-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/translation-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/translation-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/translation-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/translation-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/translation-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/translation-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/translation-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/translation-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/translation-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/translation-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/translation-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/translation-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/translation-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/translation-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/translation-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/translation-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/translation-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/translation-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/translation-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/translation-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/translation-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/translation-plugin/deployments", + "created_at": "2010-12-13T05:58:14Z", + "updated_at": "2019-01-03T09:08:37Z", + "pushed_at": "2019-01-03T09:08:35Z", + "git_url": "git://github.com/jenkinsci/translation-plugin.git", + "ssh_url": "git@github.com:jenkinsci/translation-plugin.git", + "clone_url": "https://github.com/jenkinsci/translation-plugin.git", + "svn_url": "https://github.com/jenkinsci/translation-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 109, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 14, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 14, + "open_issues": 2, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163804, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzODA0", + "name": "versionnumber-plugin", + "full_name": "jenkinsci/versionnumber-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/versionnumber-plugin", + "description": "Jenkins versionnumber plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/versionnumber-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/versionnumber-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/versionnumber-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/versionnumber-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/versionnumber-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/versionnumber-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/versionnumber-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/versionnumber-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/versionnumber-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/versionnumber-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/versionnumber-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/versionnumber-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/versionnumber-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/versionnumber-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/versionnumber-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/versionnumber-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/versionnumber-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/versionnumber-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/versionnumber-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/versionnumber-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/versionnumber-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/versionnumber-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/versionnumber-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/versionnumber-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/versionnumber-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/versionnumber-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/versionnumber-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/versionnumber-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/versionnumber-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/versionnumber-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/versionnumber-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/versionnumber-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/versionnumber-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/versionnumber-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/versionnumber-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/versionnumber-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/versionnumber-plugin/deployments", + "created_at": "2010-12-13T05:58:19Z", + "updated_at": "2018-11-02T22:08:01Z", + "pushed_at": "2019-09-24T10:27:48Z", + "git_url": "git://github.com/jenkinsci/versionnumber-plugin.git", + "ssh_url": "git@github.com:jenkinsci/versionnumber-plugin.git", + "clone_url": "https://github.com/jenkinsci/versionnumber-plugin.git", + "svn_url": "https://github.com/jenkinsci/versionnumber-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 131, + "stargazers_count": 12, + "watchers_count": 12, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 30, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 10, + "license": null, + "forks": 30, + "open_issues": 10, + "watchers": 12, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163805, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzODA1", + "name": "twitter-plugin", + "full_name": "jenkinsci/twitter-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/twitter-plugin", + "description": "Jenkins twitter plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/twitter-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/twitter-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/twitter-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/twitter-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/twitter-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/twitter-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/twitter-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/twitter-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/twitter-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/twitter-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/twitter-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/twitter-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/twitter-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/twitter-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/twitter-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/twitter-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/twitter-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/twitter-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/twitter-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/twitter-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/twitter-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/twitter-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/twitter-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/twitter-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/twitter-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/twitter-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/twitter-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/twitter-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/twitter-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/twitter-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/twitter-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/twitter-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/twitter-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/twitter-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/twitter-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/twitter-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/twitter-plugin/deployments", + "created_at": "2010-12-13T05:58:24Z", + "updated_at": "2017-12-15T18:57:59Z", + "pushed_at": "2016-04-16T01:48:56Z", + "git_url": "git://github.com/jenkinsci/twitter-plugin.git", + "ssh_url": "git@github.com:jenkinsci/twitter-plugin.git", + "clone_url": "https://github.com/jenkinsci/twitter-plugin.git", + "svn_url": "https://github.com/jenkinsci/twitter-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 116, + "stargazers_count": 9, + "watchers_count": 9, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 12, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 12, + "open_issues": 0, + "watchers": 9, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163806, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzODA2", + "name": "tfs-plugin", + "full_name": "jenkinsci/tfs-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/tfs-plugin", + "description": "Jenkins tfs plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/tfs-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/tfs-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/tfs-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/tfs-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/tfs-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/tfs-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/tfs-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/tfs-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/tfs-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/tfs-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/tfs-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/tfs-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/tfs-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/tfs-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/tfs-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/tfs-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/tfs-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/tfs-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/tfs-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/tfs-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/tfs-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/tfs-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/tfs-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/tfs-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/tfs-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/tfs-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/tfs-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/tfs-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/tfs-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/tfs-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/tfs-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/tfs-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/tfs-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/tfs-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/tfs-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/tfs-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/tfs-plugin/deployments", + "created_at": "2010-12-13T05:58:27Z", + "updated_at": "2019-10-16T18:43:19Z", + "pushed_at": "2019-10-05T11:25:31Z", + "git_url": "git://github.com/jenkinsci/tfs-plugin.git", + "ssh_url": "git@github.com:jenkinsci/tfs-plugin.git", + "clone_url": "https://github.com/jenkinsci/tfs-plugin.git", + "svn_url": "https://github.com/jenkinsci/tfs-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 60604, + "stargazers_count": 126, + "watchers_count": 126, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 162, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 28, + "license": null, + "forks": 162, + "open_issues": 28, + "watchers": 126, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163807, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzODA3", + "name": "view-job-filters-plugin", + "full_name": "jenkinsci/view-job-filters-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/view-job-filters-plugin", + "description": "Jenkins view-job-filters plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/view-job-filters-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/view-job-filters-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/view-job-filters-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/view-job-filters-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/view-job-filters-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/view-job-filters-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/view-job-filters-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/view-job-filters-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/view-job-filters-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/view-job-filters-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/view-job-filters-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/view-job-filters-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/view-job-filters-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/view-job-filters-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/view-job-filters-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/view-job-filters-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/view-job-filters-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/view-job-filters-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/view-job-filters-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/view-job-filters-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/view-job-filters-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/view-job-filters-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/view-job-filters-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/view-job-filters-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/view-job-filters-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/view-job-filters-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/view-job-filters-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/view-job-filters-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/view-job-filters-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/view-job-filters-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/view-job-filters-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/view-job-filters-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/view-job-filters-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/view-job-filters-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/view-job-filters-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/view-job-filters-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/view-job-filters-plugin/deployments", + "created_at": "2010-12-13T05:58:46Z", + "updated_at": "2018-11-22T02:36:32Z", + "pushed_at": "2019-09-24T10:12:04Z", + "git_url": "git://github.com/jenkinsci/view-job-filters-plugin.git", + "ssh_url": "git@github.com:jenkinsci/view-job-filters-plugin.git", + "clone_url": "https://github.com/jenkinsci/view-job-filters-plugin.git", + "svn_url": "https://github.com/jenkinsci/view-job-filters-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 560, + "stargazers_count": 7, + "watchers_count": 7, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 26, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 4, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 26, + "open_issues": 4, + "watchers": 7, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163808, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzODA4", + "name": "virtualization-plugin", + "full_name": "jenkinsci/virtualization-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/virtualization-plugin", + "description": "Jenkins virtualization plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/virtualization-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/virtualization-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/virtualization-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/virtualization-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/virtualization-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/virtualization-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/virtualization-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/virtualization-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/virtualization-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/virtualization-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/virtualization-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/virtualization-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/virtualization-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/virtualization-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/virtualization-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/virtualization-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/virtualization-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/virtualization-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/virtualization-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/virtualization-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/virtualization-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/virtualization-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/virtualization-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/virtualization-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/virtualization-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/virtualization-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/virtualization-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/virtualization-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/virtualization-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/virtualization-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/virtualization-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/virtualization-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/virtualization-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/virtualization-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/virtualization-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/virtualization-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/virtualization-plugin/deployments", + "created_at": "2010-12-13T05:58:48Z", + "updated_at": "2013-11-10T02:22:20Z", + "pushed_at": "2013-11-10T02:22:19Z", + "git_url": "git://github.com/jenkinsci/virtualization-plugin.git", + "ssh_url": "git@github.com:jenkinsci/virtualization-plugin.git", + "clone_url": "https://github.com/jenkinsci/virtualization-plugin.git", + "svn_url": "https://github.com/jenkinsci/virtualization-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 115, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 3, + "open_issues": 0, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163809, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzODA5", + "name": "viewVC-plugin", + "full_name": "jenkinsci/viewVC-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/viewVC-plugin", + "description": "Jenkins viewVC plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/viewVC-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/viewVC-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/viewVC-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/viewVC-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/viewVC-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/viewVC-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/viewVC-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/viewVC-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/viewVC-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/viewVC-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/viewVC-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/viewVC-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/viewVC-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/viewVC-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/viewVC-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/viewVC-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/viewVC-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/viewVC-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/viewVC-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/viewVC-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/viewVC-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/viewVC-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/viewVC-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/viewVC-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/viewVC-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/viewVC-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/viewVC-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/viewVC-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/viewVC-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/viewVC-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/viewVC-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/viewVC-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/viewVC-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/viewVC-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/viewVC-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/viewVC-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/viewVC-plugin/deployments", + "created_at": "2010-12-13T05:58:50Z", + "updated_at": "2014-01-23T12:25:33Z", + "pushed_at": "2019-10-08T12:23:48Z", + "git_url": "git://github.com/jenkinsci/viewVC-plugin.git", + "ssh_url": "git@github.com:jenkinsci/viewVC-plugin.git", + "clone_url": "https://github.com/jenkinsci/viewVC-plugin.git", + "svn_url": "https://github.com/jenkinsci/viewVC-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 291, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 6, + "open_issues": 1, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163810, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzODEw", + "name": "url-change-trigger-plugin", + "full_name": "jenkinsci/url-change-trigger-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/url-change-trigger-plugin", + "description": "Jenkins url-change-trigger plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/url-change-trigger-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/url-change-trigger-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/url-change-trigger-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/url-change-trigger-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/url-change-trigger-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/url-change-trigger-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/url-change-trigger-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/url-change-trigger-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/url-change-trigger-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/url-change-trigger-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/url-change-trigger-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/url-change-trigger-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/url-change-trigger-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/url-change-trigger-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/url-change-trigger-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/url-change-trigger-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/url-change-trigger-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/url-change-trigger-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/url-change-trigger-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/url-change-trigger-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/url-change-trigger-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/url-change-trigger-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/url-change-trigger-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/url-change-trigger-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/url-change-trigger-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/url-change-trigger-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/url-change-trigger-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/url-change-trigger-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/url-change-trigger-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/url-change-trigger-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/url-change-trigger-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/url-change-trigger-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/url-change-trigger-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/url-change-trigger-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/url-change-trigger-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/url-change-trigger-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/url-change-trigger-plugin/deployments", + "created_at": "2010-12-13T05:59:00Z", + "updated_at": "2016-08-08T17:37:41Z", + "pushed_at": "2013-11-10T02:21:46Z", + "git_url": "git://github.com/jenkinsci/url-change-trigger-plugin.git", + "ssh_url": "git@github.com:jenkinsci/url-change-trigger-plugin.git", + "clone_url": "https://github.com/jenkinsci/url-change-trigger-plugin.git", + "svn_url": "https://github.com/jenkinsci/url-change-trigger-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 174, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 4, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163811, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzODEx", + "name": "virtualbox-plugin", + "full_name": "jenkinsci/virtualbox-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/virtualbox-plugin", + "description": "Jenkins virtualbox plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/virtualbox-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/virtualbox-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/virtualbox-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/virtualbox-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/virtualbox-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/virtualbox-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/virtualbox-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/virtualbox-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/virtualbox-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/virtualbox-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/virtualbox-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/virtualbox-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/virtualbox-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/virtualbox-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/virtualbox-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/virtualbox-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/virtualbox-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/virtualbox-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/virtualbox-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/virtualbox-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/virtualbox-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/virtualbox-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/virtualbox-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/virtualbox-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/virtualbox-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/virtualbox-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/virtualbox-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/virtualbox-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/virtualbox-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/virtualbox-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/virtualbox-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/virtualbox-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/virtualbox-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/virtualbox-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/virtualbox-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/virtualbox-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/virtualbox-plugin/deployments", + "created_at": "2010-12-13T05:59:02Z", + "updated_at": "2019-10-09T01:42:38Z", + "pushed_at": "2019-10-09T01:42:35Z", + "git_url": "git://github.com/jenkinsci/virtualbox-plugin.git", + "ssh_url": "git@github.com:jenkinsci/virtualbox-plugin.git", + "clone_url": "https://github.com/jenkinsci/virtualbox-plugin.git", + "svn_url": "https://github.com/jenkinsci/virtualbox-plugin", + "homepage": "http://wiki.jenkins-ci.org/display/JENKINS/VirtualBox+Plugin", + "size": 28746, + "stargazers_count": 32, + "watchers_count": 32, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 62, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": null, + "forks": 62, + "open_issues": 3, + "watchers": 32, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163812, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzODEy", + "name": "trac-plugin", + "full_name": "jenkinsci/trac-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/trac-plugin", + "description": "Jenkins trac plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/trac-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/trac-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/trac-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/trac-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/trac-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/trac-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/trac-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/trac-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/trac-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/trac-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/trac-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/trac-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/trac-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/trac-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/trac-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/trac-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/trac-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/trac-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/trac-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/trac-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/trac-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/trac-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/trac-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/trac-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/trac-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/trac-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/trac-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/trac-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/trac-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/trac-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/trac-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/trac-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/trac-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/trac-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/trac-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/trac-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/trac-plugin/deployments", + "created_at": "2010-12-13T05:59:03Z", + "updated_at": "2019-08-13T14:39:36Z", + "pushed_at": "2019-10-08T12:34:27Z", + "git_url": "git://github.com/jenkinsci/trac-plugin.git", + "ssh_url": "git@github.com:jenkinsci/trac-plugin.git", + "clone_url": "https://github.com/jenkinsci/trac-plugin.git", + "svn_url": "https://github.com/jenkinsci/trac-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 356, + "stargazers_count": 12, + "watchers_count": 12, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 12, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 12, + "open_issues": 2, + "watchers": 12, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163813, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzODEz", + "name": "ws7-plugin", + "full_name": "jenkinsci/ws7-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/ws7-plugin", + "description": "Jenkins ws7 plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/ws7-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/ws7-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/ws7-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/ws7-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/ws7-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/ws7-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/ws7-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/ws7-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/ws7-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/ws7-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/ws7-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/ws7-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/ws7-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/ws7-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/ws7-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/ws7-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/ws7-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/ws7-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/ws7-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/ws7-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/ws7-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/ws7-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/ws7-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/ws7-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/ws7-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/ws7-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/ws7-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/ws7-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/ws7-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/ws7-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/ws7-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/ws7-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/ws7-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/ws7-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/ws7-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/ws7-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/ws7-plugin/deployments", + "created_at": "2010-12-13T05:59:34Z", + "updated_at": "2013-11-10T02:23:08Z", + "pushed_at": "2013-11-10T02:23:02Z", + "git_url": "git://github.com/jenkinsci/ws7-plugin.git", + "ssh_url": "git@github.com:jenkinsci/ws7-plugin.git", + "clone_url": "https://github.com/jenkinsci/ws7-plugin.git", + "svn_url": "https://github.com/jenkinsci/ws7-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 116, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163814, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzODE0", + "name": "was-builder-plugin", + "full_name": "jenkinsci/was-builder-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/was-builder-plugin", + "description": "Jenkins was-builder plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/was-builder-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/was-builder-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/was-builder-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/was-builder-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/was-builder-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/was-builder-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/was-builder-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/was-builder-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/was-builder-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/was-builder-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/was-builder-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/was-builder-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/was-builder-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/was-builder-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/was-builder-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/was-builder-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/was-builder-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/was-builder-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/was-builder-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/was-builder-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/was-builder-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/was-builder-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/was-builder-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/was-builder-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/was-builder-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/was-builder-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/was-builder-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/was-builder-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/was-builder-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/was-builder-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/was-builder-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/was-builder-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/was-builder-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/was-builder-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/was-builder-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/was-builder-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/was-builder-plugin/deployments", + "created_at": "2010-12-13T05:59:48Z", + "updated_at": "2013-11-10T02:22:39Z", + "pushed_at": "2019-10-08T16:19:49Z", + "git_url": "git://github.com/jenkinsci/was-builder-plugin.git", + "ssh_url": "git@github.com:jenkinsci/was-builder-plugin.git", + "clone_url": "https://github.com/jenkinsci/was-builder-plugin.git", + "svn_url": "https://github.com/jenkinsci/was-builder-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 220, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 2, + "open_issues": 1, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163815, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzODE1", + "name": "wsclean-plugin", + "full_name": "jenkinsci/wsclean-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/wsclean-plugin", + "description": "Jenkins wsclean plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/wsclean-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/wsclean-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/wsclean-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/wsclean-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/wsclean-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/wsclean-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/wsclean-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/wsclean-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/wsclean-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/wsclean-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/wsclean-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/wsclean-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/wsclean-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/wsclean-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/wsclean-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/wsclean-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/wsclean-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/wsclean-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/wsclean-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/wsclean-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/wsclean-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/wsclean-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/wsclean-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/wsclean-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/wsclean-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/wsclean-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/wsclean-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/wsclean-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/wsclean-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/wsclean-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/wsclean-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/wsclean-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/wsclean-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/wsclean-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/wsclean-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/wsclean-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/wsclean-plugin/deployments", + "created_at": "2010-12-13T05:59:53Z", + "updated_at": "2019-09-24T14:32:47Z", + "pushed_at": "2019-09-24T14:32:46Z", + "git_url": "git://github.com/jenkinsci/wsclean-plugin.git", + "ssh_url": "git@github.com:jenkinsci/wsclean-plugin.git", + "clone_url": "https://github.com/jenkinsci/wsclean-plugin.git", + "svn_url": "https://github.com/jenkinsci/wsclean-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 81, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 8, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 8, + "open_issues": 1, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163816, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzODE2", + "name": "vss-plugin", + "full_name": "jenkinsci/vss-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/vss-plugin", + "description": "Jenkins vss plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/vss-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/vss-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/vss-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/vss-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/vss-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/vss-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/vss-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/vss-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/vss-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/vss-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/vss-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/vss-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/vss-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/vss-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/vss-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/vss-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/vss-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/vss-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/vss-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/vss-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/vss-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/vss-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/vss-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/vss-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/vss-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/vss-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/vss-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/vss-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/vss-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/vss-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/vss-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/vss-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/vss-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/vss-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/vss-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/vss-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/vss-plugin/deployments", + "created_at": "2010-12-13T05:59:57Z", + "updated_at": "2018-04-19T15:26:01Z", + "pushed_at": "2018-02-16T14:42:26Z", + "git_url": "git://github.com/jenkinsci/vss-plugin.git", + "ssh_url": "git@github.com:jenkinsci/vss-plugin.git", + "clone_url": "https://github.com/jenkinsci/vss-plugin.git", + "svn_url": "https://github.com/jenkinsci/vss-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 227, + "stargazers_count": 6, + "watchers_count": 6, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 9, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 9, + "open_issues": 2, + "watchers": 6, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163817, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzODE3", + "name": "webtestpresenter-plugin", + "full_name": "jenkinsci/webtestpresenter-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/webtestpresenter-plugin", + "description": "Jenkins webtestpresenter plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/webtestpresenter-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/webtestpresenter-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/webtestpresenter-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/webtestpresenter-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/webtestpresenter-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/webtestpresenter-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/webtestpresenter-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/webtestpresenter-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/webtestpresenter-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/webtestpresenter-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/webtestpresenter-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/webtestpresenter-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/webtestpresenter-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/webtestpresenter-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/webtestpresenter-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/webtestpresenter-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/webtestpresenter-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/webtestpresenter-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/webtestpresenter-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/webtestpresenter-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/webtestpresenter-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/webtestpresenter-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/webtestpresenter-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/webtestpresenter-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/webtestpresenter-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/webtestpresenter-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/webtestpresenter-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/webtestpresenter-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/webtestpresenter-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/webtestpresenter-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/webtestpresenter-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/webtestpresenter-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/webtestpresenter-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/webtestpresenter-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/webtestpresenter-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/webtestpresenter-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/webtestpresenter-plugin/deployments", + "created_at": "2010-12-13T05:59:58Z", + "updated_at": "2013-11-10T02:22:42Z", + "pushed_at": "2013-11-10T02:22:40Z", + "git_url": "git://github.com/jenkinsci/webtestpresenter-plugin.git", + "ssh_url": "git@github.com:jenkinsci/webtestpresenter-plugin.git", + "clone_url": "https://github.com/jenkinsci/webtestpresenter-plugin.git", + "svn_url": "https://github.com/jenkinsci/webtestpresenter-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 172, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163818, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzODE4", + "name": "xfpanel-plugin", + "full_name": "jenkinsci/xfpanel-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/xfpanel-plugin", + "description": "Jenkins xfpanel plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/xfpanel-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/xfpanel-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/xfpanel-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/xfpanel-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/xfpanel-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/xfpanel-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/xfpanel-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/xfpanel-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/xfpanel-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/xfpanel-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/xfpanel-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/xfpanel-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/xfpanel-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/xfpanel-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/xfpanel-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/xfpanel-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/xfpanel-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/xfpanel-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/xfpanel-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/xfpanel-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/xfpanel-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/xfpanel-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/xfpanel-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/xfpanel-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/xfpanel-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/xfpanel-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/xfpanel-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/xfpanel-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/xfpanel-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/xfpanel-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/xfpanel-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/xfpanel-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/xfpanel-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/xfpanel-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/xfpanel-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/xfpanel-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/xfpanel-plugin/deployments", + "created_at": "2010-12-13T05:59:58Z", + "updated_at": "2019-07-08T15:00:10Z", + "pushed_at": "2019-10-08T12:24:26Z", + "git_url": "git://github.com/jenkinsci/xfpanel-plugin.git", + "ssh_url": "git@github.com:jenkinsci/xfpanel-plugin.git", + "clone_url": "https://github.com/jenkinsci/xfpanel-plugin.git", + "svn_url": "https://github.com/jenkinsci/xfpanel-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 2862, + "stargazers_count": 11, + "watchers_count": 11, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 35, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 6, + "license": null, + "forks": 35, + "open_issues": 6, + "watchers": 11, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163819, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzODE5", + "name": "windmill-plugin", + "full_name": "jenkinsci/windmill-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/windmill-plugin", + "description": "Jenkins windmill plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/windmill-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/windmill-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/windmill-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/windmill-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/windmill-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/windmill-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/windmill-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/windmill-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/windmill-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/windmill-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/windmill-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/windmill-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/windmill-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/windmill-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/windmill-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/windmill-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/windmill-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/windmill-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/windmill-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/windmill-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/windmill-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/windmill-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/windmill-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/windmill-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/windmill-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/windmill-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/windmill-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/windmill-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/windmill-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/windmill-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/windmill-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/windmill-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/windmill-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/windmill-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/windmill-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/windmill-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/windmill-plugin/deployments", + "created_at": "2010-12-13T05:59:58Z", + "updated_at": "2014-02-03T06:40:35Z", + "pushed_at": "2013-11-10T02:22:47Z", + "git_url": "git://github.com/jenkinsci/windmill-plugin.git", + "ssh_url": "git@github.com:jenkinsci/windmill-plugin.git", + "clone_url": "https://github.com/jenkinsci/windmill-plugin.git", + "svn_url": "https://github.com/jenkinsci/windmill-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 168, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163821, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzODIx", + "name": "xshell-plugin", + "full_name": "jenkinsci/xshell-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/xshell-plugin", + "description": "Jenkins xshell plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/xshell-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/xshell-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/xshell-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/xshell-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/xshell-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/xshell-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/xshell-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/xshell-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/xshell-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/xshell-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/xshell-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/xshell-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/xshell-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/xshell-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/xshell-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/xshell-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/xshell-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/xshell-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/xshell-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/xshell-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/xshell-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/xshell-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/xshell-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/xshell-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/xshell-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/xshell-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/xshell-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/xshell-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/xshell-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/xshell-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/xshell-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/xshell-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/xshell-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/xshell-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/xshell-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/xshell-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/xshell-plugin/deployments", + "created_at": "2010-12-13T06:00:06Z", + "updated_at": "2018-08-16T19:33:48Z", + "pushed_at": "2019-10-08T11:34:12Z", + "git_url": "git://github.com/jenkinsci/xshell-plugin.git", + "ssh_url": "git@github.com:jenkinsci/xshell-plugin.git", + "clone_url": "https://github.com/jenkinsci/xshell-plugin.git", + "svn_url": "https://github.com/jenkinsci/xshell-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 53, + "stargazers_count": 10, + "watchers_count": 10, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 17, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 17, + "open_issues": 1, + "watchers": 10, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163822, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzODIy", + "name": "vmware-plugin", + "full_name": "jenkinsci/vmware-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/vmware-plugin", + "description": "Jenkins vmware plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/vmware-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/vmware-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/vmware-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/vmware-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/vmware-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/vmware-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/vmware-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/vmware-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/vmware-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/vmware-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/vmware-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/vmware-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/vmware-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/vmware-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/vmware-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/vmware-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/vmware-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/vmware-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/vmware-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/vmware-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/vmware-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/vmware-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/vmware-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/vmware-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/vmware-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/vmware-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/vmware-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/vmware-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/vmware-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/vmware-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/vmware-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/vmware-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/vmware-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/vmware-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/vmware-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/vmware-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/vmware-plugin/deployments", + "created_at": "2010-12-13T06:00:11Z", + "updated_at": "2013-11-10T02:22:23Z", + "pushed_at": "2013-11-10T02:22:22Z", + "git_url": "git://github.com/jenkinsci/vmware-plugin.git", + "ssh_url": "git@github.com:jenkinsci/vmware-plugin.git", + "clone_url": "https://github.com/jenkinsci/vmware-plugin.git", + "svn_url": "https://github.com/jenkinsci/vmware-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 1689, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163825, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzODI1", + "name": "zfs-plugin", + "full_name": "jenkinsci/zfs-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/zfs-plugin", + "description": "Jenkins zfs plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/zfs-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/zfs-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/zfs-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/zfs-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/zfs-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/zfs-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/zfs-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/zfs-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/zfs-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/zfs-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/zfs-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/zfs-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/zfs-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/zfs-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/zfs-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/zfs-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/zfs-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/zfs-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/zfs-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/zfs-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/zfs-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/zfs-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/zfs-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/zfs-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/zfs-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/zfs-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/zfs-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/zfs-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/zfs-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/zfs-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/zfs-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/zfs-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/zfs-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/zfs-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/zfs-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/zfs-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/zfs-plugin/deployments", + "created_at": "2010-12-13T06:00:29Z", + "updated_at": "2017-11-21T20:53:37Z", + "pushed_at": "2013-11-10T02:23:35Z", + "git_url": "git://github.com/jenkinsci/zfs-plugin.git", + "ssh_url": "git@github.com:jenkinsci/zfs-plugin.git", + "clone_url": "https://github.com/jenkinsci/zfs-plugin.git", + "svn_url": "https://github.com/jenkinsci/zfs-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 132, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163827, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzODI3", + "name": "zentimestamp-plugin", + "full_name": "jenkinsci/zentimestamp-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/zentimestamp-plugin", + "description": "Jenkins zentimestamp plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/zentimestamp-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/zentimestamp-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/zentimestamp-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/zentimestamp-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/zentimestamp-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/zentimestamp-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/zentimestamp-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/zentimestamp-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/zentimestamp-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/zentimestamp-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/zentimestamp-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/zentimestamp-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/zentimestamp-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/zentimestamp-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/zentimestamp-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/zentimestamp-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/zentimestamp-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/zentimestamp-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/zentimestamp-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/zentimestamp-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/zentimestamp-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/zentimestamp-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/zentimestamp-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/zentimestamp-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/zentimestamp-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/zentimestamp-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/zentimestamp-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/zentimestamp-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/zentimestamp-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/zentimestamp-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/zentimestamp-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/zentimestamp-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/zentimestamp-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/zentimestamp-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/zentimestamp-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/zentimestamp-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/zentimestamp-plugin/deployments", + "created_at": "2010-12-13T06:00:35Z", + "updated_at": "2015-04-07T19:55:25Z", + "pushed_at": "2019-10-08T10:05:17Z", + "git_url": "git://github.com/jenkinsci/zentimestamp-plugin.git", + "ssh_url": "git@github.com:jenkinsci/zentimestamp-plugin.git", + "clone_url": "https://github.com/jenkinsci/zentimestamp-plugin.git", + "svn_url": "https://github.com/jenkinsci/zentimestamp-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 321, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 6, + "open_issues": 1, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163828, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzODI4", + "name": "violations-plugin", + "full_name": "jenkinsci/violations-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/violations-plugin", + "description": "Jenkins violations plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/violations-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/violations-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/violations-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/violations-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/violations-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/violations-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/violations-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/violations-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/violations-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/violations-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/violations-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/violations-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/violations-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/violations-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/violations-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/violations-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/violations-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/violations-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/violations-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/violations-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/violations-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/violations-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/violations-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/violations-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/violations-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/violations-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/violations-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/violations-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/violations-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/violations-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/violations-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/violations-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/violations-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/violations-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/violations-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/violations-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/violations-plugin/deployments", + "created_at": "2010-12-13T06:00:39Z", + "updated_at": "2019-07-15T10:58:52Z", + "pushed_at": "2019-09-24T10:19:30Z", + "git_url": "git://github.com/jenkinsci/violations-plugin.git", + "ssh_url": "git@github.com:jenkinsci/violations-plugin.git", + "clone_url": "https://github.com/jenkinsci/violations-plugin.git", + "svn_url": "https://github.com/jenkinsci/violations-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 974, + "stargazers_count": 54, + "watchers_count": 54, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 75, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 38, + "license": null, + "forks": 75, + "open_issues": 38, + "watchers": 54, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163829, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzODI5", + "name": "xvnc-plugin", + "full_name": "jenkinsci/xvnc-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/xvnc-plugin", + "description": "Jenkins xvnc plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/xvnc-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/xvnc-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/xvnc-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/xvnc-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/xvnc-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/xvnc-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/xvnc-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/xvnc-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/xvnc-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/xvnc-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/xvnc-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/xvnc-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/xvnc-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/xvnc-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/xvnc-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/xvnc-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/xvnc-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/xvnc-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/xvnc-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/xvnc-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/xvnc-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/xvnc-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/xvnc-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/xvnc-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/xvnc-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/xvnc-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/xvnc-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/xvnc-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/xvnc-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/xvnc-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/xvnc-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/xvnc-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/xvnc-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/xvnc-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/xvnc-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/xvnc-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/xvnc-plugin/deployments", + "created_at": "2010-12-13T06:00:41Z", + "updated_at": "2018-05-29T12:22:30Z", + "pushed_at": "2018-05-29T12:22:28Z", + "git_url": "git://github.com/jenkinsci/xvnc-plugin.git", + "ssh_url": "git@github.com:jenkinsci/xvnc-plugin.git", + "clone_url": "https://github.com/jenkinsci/xvnc-plugin.git", + "svn_url": "https://github.com/jenkinsci/xvnc-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 212, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 16, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 16, + "open_issues": 2, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1165813, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTY1ODEz", + "name": "jclouds-plugin", + "full_name": "jenkinsci/jclouds-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jclouds-plugin", + "description": "Jenkins jclouds plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jclouds-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/jclouds-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jclouds-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jclouds-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jclouds-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jclouds-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jclouds-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jclouds-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jclouds-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jclouds-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jclouds-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jclouds-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jclouds-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jclouds-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jclouds-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jclouds-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jclouds-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jclouds-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jclouds-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jclouds-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jclouds-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jclouds-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jclouds-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jclouds-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jclouds-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jclouds-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jclouds-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jclouds-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jclouds-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jclouds-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jclouds-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jclouds-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jclouds-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jclouds-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jclouds-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jclouds-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jclouds-plugin/deployments", + "created_at": "2010-12-13T20:08:29Z", + "updated_at": "2019-10-08T14:16:15Z", + "pushed_at": "2019-10-08T14:16:12Z", + "git_url": "git://github.com/jenkinsci/jclouds-plugin.git", + "ssh_url": "git@github.com:jenkinsci/jclouds-plugin.git", + "clone_url": "https://github.com/jenkinsci/jclouds-plugin.git", + "svn_url": "https://github.com/jenkinsci/jclouds-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/JClouds+Plugin", + "size": 1076, + "stargazers_count": 66, + "watchers_count": 66, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 93, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 4, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 93, + "open_issues": 4, + "watchers": 66, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1166266, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTY2MjY2", + "name": "hudsontrayapp-plugin", + "full_name": "jenkinsci/hudsontrayapp-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/hudsontrayapp-plugin", + "description": "Jenkins hudsontrayapp plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/hudsontrayapp-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/hudsontrayapp-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/hudsontrayapp-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/hudsontrayapp-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/hudsontrayapp-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/hudsontrayapp-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/hudsontrayapp-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/hudsontrayapp-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/hudsontrayapp-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/hudsontrayapp-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/hudsontrayapp-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/hudsontrayapp-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/hudsontrayapp-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/hudsontrayapp-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/hudsontrayapp-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/hudsontrayapp-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/hudsontrayapp-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/hudsontrayapp-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/hudsontrayapp-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/hudsontrayapp-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/hudsontrayapp-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/hudsontrayapp-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/hudsontrayapp-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/hudsontrayapp-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/hudsontrayapp-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/hudsontrayapp-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/hudsontrayapp-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/hudsontrayapp-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/hudsontrayapp-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/hudsontrayapp-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/hudsontrayapp-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/hudsontrayapp-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/hudsontrayapp-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/hudsontrayapp-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/hudsontrayapp-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/hudsontrayapp-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/hudsontrayapp-plugin/deployments", + "created_at": "2010-12-13T22:44:17Z", + "updated_at": "2014-01-31T16:52:31Z", + "pushed_at": "2014-01-31T16:52:28Z", + "git_url": "git://github.com/jenkinsci/hudsontrayapp-plugin.git", + "ssh_url": "git@github.com:jenkinsci/hudsontrayapp-plugin.git", + "clone_url": "https://github.com/jenkinsci/hudsontrayapp-plugin.git", + "svn_url": "https://github.com/jenkinsci/hudsontrayapp-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 1645, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1166901, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTY2OTAx", + "name": "depgraph-view-plugin", + "full_name": "jenkinsci/depgraph-view-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/depgraph-view-plugin", + "description": "A Jenkins plugin to view the dependency graph", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/depgraph-view-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/depgraph-view-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/depgraph-view-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/depgraph-view-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/depgraph-view-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/depgraph-view-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/depgraph-view-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/depgraph-view-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/depgraph-view-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/depgraph-view-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/depgraph-view-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/depgraph-view-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/depgraph-view-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/depgraph-view-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/depgraph-view-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/depgraph-view-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/depgraph-view-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/depgraph-view-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/depgraph-view-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/depgraph-view-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/depgraph-view-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/depgraph-view-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/depgraph-view-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/depgraph-view-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/depgraph-view-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/depgraph-view-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/depgraph-view-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/depgraph-view-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/depgraph-view-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/depgraph-view-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/depgraph-view-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/depgraph-view-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/depgraph-view-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/depgraph-view-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/depgraph-view-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/depgraph-view-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/depgraph-view-plugin/deployments", + "created_at": "2010-12-14T02:52:03Z", + "updated_at": "2019-08-13T14:39:39Z", + "pushed_at": "2019-09-24T10:32:35Z", + "git_url": "git://github.com/jenkinsci/depgraph-view-plugin.git", + "ssh_url": "git@github.com:jenkinsci/depgraph-view-plugin.git", + "clone_url": "https://github.com/jenkinsci/depgraph-view-plugin.git", + "svn_url": "https://github.com/jenkinsci/depgraph-view-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 427, + "stargazers_count": 15, + "watchers_count": 15, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 32, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 6, + "license": null, + "forks": 32, + "open_issues": 6, + "watchers": 15, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1169048, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTY5MDQ4", + "name": "SmoothDashboardView-plugin", + "full_name": "jenkinsci/SmoothDashboardView-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/SmoothDashboardView-plugin", + "description": "Jenkins SmoothDashboardView plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/SmoothDashboardView-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/SmoothDashboardView-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/SmoothDashboardView-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/SmoothDashboardView-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/SmoothDashboardView-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/SmoothDashboardView-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/SmoothDashboardView-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/SmoothDashboardView-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/SmoothDashboardView-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/SmoothDashboardView-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/SmoothDashboardView-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/SmoothDashboardView-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/SmoothDashboardView-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/SmoothDashboardView-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/SmoothDashboardView-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/SmoothDashboardView-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/SmoothDashboardView-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/SmoothDashboardView-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/SmoothDashboardView-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/SmoothDashboardView-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/SmoothDashboardView-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/SmoothDashboardView-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/SmoothDashboardView-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/SmoothDashboardView-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/SmoothDashboardView-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/SmoothDashboardView-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/SmoothDashboardView-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/SmoothDashboardView-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/SmoothDashboardView-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/SmoothDashboardView-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/SmoothDashboardView-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/SmoothDashboardView-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/SmoothDashboardView-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/SmoothDashboardView-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/SmoothDashboardView-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/SmoothDashboardView-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/SmoothDashboardView-plugin/deployments", + "created_at": "2010-12-14T19:46:53Z", + "updated_at": "2013-11-10T01:51:27Z", + "pushed_at": "2013-11-10T01:51:18Z", + "git_url": "git://github.com/jenkinsci/SmoothDashboardView-plugin.git", + "ssh_url": "git@github.com:jenkinsci/SmoothDashboardView-plugin.git", + "clone_url": "https://github.com/jenkinsci/SmoothDashboardView-plugin.git", + "svn_url": "https://github.com/jenkinsci/SmoothDashboardView-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 116, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1169118, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTY5MTE4", + "name": "lastfailureversioncolumn-plugin", + "full_name": "jenkinsci/lastfailureversioncolumn-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/lastfailureversioncolumn-plugin", + "description": "Jenkins lastfailureversioncolumn plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/lastfailureversioncolumn-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/lastfailureversioncolumn-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/lastfailureversioncolumn-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/lastfailureversioncolumn-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/lastfailureversioncolumn-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/lastfailureversioncolumn-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/lastfailureversioncolumn-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/lastfailureversioncolumn-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/lastfailureversioncolumn-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/lastfailureversioncolumn-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/lastfailureversioncolumn-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/lastfailureversioncolumn-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/lastfailureversioncolumn-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/lastfailureversioncolumn-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/lastfailureversioncolumn-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/lastfailureversioncolumn-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/lastfailureversioncolumn-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/lastfailureversioncolumn-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/lastfailureversioncolumn-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/lastfailureversioncolumn-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/lastfailureversioncolumn-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/lastfailureversioncolumn-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/lastfailureversioncolumn-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/lastfailureversioncolumn-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/lastfailureversioncolumn-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/lastfailureversioncolumn-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/lastfailureversioncolumn-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/lastfailureversioncolumn-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/lastfailureversioncolumn-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/lastfailureversioncolumn-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/lastfailureversioncolumn-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/lastfailureversioncolumn-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/lastfailureversioncolumn-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/lastfailureversioncolumn-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/lastfailureversioncolumn-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/lastfailureversioncolumn-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/lastfailureversioncolumn-plugin/deployments", + "created_at": "2010-12-14T20:09:05Z", + "updated_at": "2013-11-10T02:08:48Z", + "pushed_at": "2019-10-08T12:38:58Z", + "git_url": "git://github.com/jenkinsci/lastfailureversioncolumn-plugin.git", + "ssh_url": "git@github.com:jenkinsci/lastfailureversioncolumn-plugin.git", + "clone_url": "https://github.com/jenkinsci/lastfailureversioncolumn-plugin.git", + "svn_url": "https://github.com/jenkinsci/lastfailureversioncolumn-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 140, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 2, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1169119, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTY5MTE5", + "name": "lastsuccessversioncolumn-plugin", + "full_name": "jenkinsci/lastsuccessversioncolumn-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/lastsuccessversioncolumn-plugin", + "description": "Jenkins lastsuccessversioncolumn plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/lastsuccessversioncolumn-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/lastsuccessversioncolumn-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/lastsuccessversioncolumn-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/lastsuccessversioncolumn-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/lastsuccessversioncolumn-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/lastsuccessversioncolumn-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/lastsuccessversioncolumn-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/lastsuccessversioncolumn-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/lastsuccessversioncolumn-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/lastsuccessversioncolumn-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/lastsuccessversioncolumn-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/lastsuccessversioncolumn-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/lastsuccessversioncolumn-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/lastsuccessversioncolumn-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/lastsuccessversioncolumn-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/lastsuccessversioncolumn-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/lastsuccessversioncolumn-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/lastsuccessversioncolumn-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/lastsuccessversioncolumn-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/lastsuccessversioncolumn-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/lastsuccessversioncolumn-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/lastsuccessversioncolumn-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/lastsuccessversioncolumn-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/lastsuccessversioncolumn-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/lastsuccessversioncolumn-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/lastsuccessversioncolumn-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/lastsuccessversioncolumn-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/lastsuccessversioncolumn-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/lastsuccessversioncolumn-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/lastsuccessversioncolumn-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/lastsuccessversioncolumn-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/lastsuccessversioncolumn-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/lastsuccessversioncolumn-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/lastsuccessversioncolumn-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/lastsuccessversioncolumn-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/lastsuccessversioncolumn-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/lastsuccessversioncolumn-plugin/deployments", + "created_at": "2010-12-14T20:09:07Z", + "updated_at": "2014-01-10T09:55:22Z", + "pushed_at": "2019-10-08T12:28:40Z", + "git_url": "git://github.com/jenkinsci/lastsuccessversioncolumn-plugin.git", + "ssh_url": "git@github.com:jenkinsci/lastsuccessversioncolumn-plugin.git", + "clone_url": "https://github.com/jenkinsci/lastsuccessversioncolumn-plugin.git", + "svn_url": "https://github.com/jenkinsci/lastsuccessversioncolumn-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 144, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 3, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1169124, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTY5MTI0", + "name": "jbpm-plugin", + "full_name": "jenkinsci/jbpm-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jbpm-plugin", + "description": "Jenkins jbpm plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jbpm-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/jbpm-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jbpm-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jbpm-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jbpm-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jbpm-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jbpm-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jbpm-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jbpm-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jbpm-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jbpm-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jbpm-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jbpm-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jbpm-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jbpm-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jbpm-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jbpm-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jbpm-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jbpm-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jbpm-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jbpm-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jbpm-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jbpm-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jbpm-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jbpm-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jbpm-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jbpm-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jbpm-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jbpm-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jbpm-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jbpm-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jbpm-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jbpm-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jbpm-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jbpm-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jbpm-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jbpm-plugin/deployments", + "created_at": "2010-12-14T20:09:40Z", + "updated_at": "2014-05-07T00:40:29Z", + "pushed_at": "2013-11-10T02:06:12Z", + "git_url": "git://github.com/jenkinsci/jbpm-plugin.git", + "ssh_url": "git@github.com:jenkinsci/jbpm-plugin.git", + "clone_url": "https://github.com/jenkinsci/jbpm-plugin.git", + "svn_url": "https://github.com/jenkinsci/jbpm-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 170, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1169132, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTY5MTMy", + "name": "lastsuccessdescriptioncolumn-plugin", + "full_name": "jenkinsci/lastsuccessdescriptioncolumn-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/lastsuccessdescriptioncolumn-plugin", + "description": "Jenkins lastsuccessdescriptioncolumn plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/lastsuccessdescriptioncolumn-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/lastsuccessdescriptioncolumn-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/lastsuccessdescriptioncolumn-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/lastsuccessdescriptioncolumn-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/lastsuccessdescriptioncolumn-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/lastsuccessdescriptioncolumn-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/lastsuccessdescriptioncolumn-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/lastsuccessdescriptioncolumn-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/lastsuccessdescriptioncolumn-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/lastsuccessdescriptioncolumn-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/lastsuccessdescriptioncolumn-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/lastsuccessdescriptioncolumn-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/lastsuccessdescriptioncolumn-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/lastsuccessdescriptioncolumn-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/lastsuccessdescriptioncolumn-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/lastsuccessdescriptioncolumn-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/lastsuccessdescriptioncolumn-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/lastsuccessdescriptioncolumn-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/lastsuccessdescriptioncolumn-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/lastsuccessdescriptioncolumn-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/lastsuccessdescriptioncolumn-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/lastsuccessdescriptioncolumn-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/lastsuccessdescriptioncolumn-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/lastsuccessdescriptioncolumn-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/lastsuccessdescriptioncolumn-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/lastsuccessdescriptioncolumn-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/lastsuccessdescriptioncolumn-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/lastsuccessdescriptioncolumn-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/lastsuccessdescriptioncolumn-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/lastsuccessdescriptioncolumn-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/lastsuccessdescriptioncolumn-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/lastsuccessdescriptioncolumn-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/lastsuccessdescriptioncolumn-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/lastsuccessdescriptioncolumn-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/lastsuccessdescriptioncolumn-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/lastsuccessdescriptioncolumn-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/lastsuccessdescriptioncolumn-plugin/deployments", + "created_at": "2010-12-14T20:11:31Z", + "updated_at": "2013-11-10T02:08:49Z", + "pushed_at": "2016-04-16T01:34:50Z", + "git_url": "git://github.com/jenkinsci/lastsuccessdescriptioncolumn-plugin.git", + "ssh_url": "git@github.com:jenkinsci/lastsuccessdescriptioncolumn-plugin.git", + "clone_url": "https://github.com/jenkinsci/lastsuccessdescriptioncolumn-plugin.git", + "svn_url": "https://github.com/jenkinsci/lastsuccessdescriptioncolumn-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 17, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1169156, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTY5MTU2", + "name": "multiline-tabbar-plugin-plugin", + "full_name": "jenkinsci/multiline-tabbar-plugin-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/multiline-tabbar-plugin-plugin", + "description": "Jenkins multiline-tabbar-plugin plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/multiline-tabbar-plugin-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/multiline-tabbar-plugin-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/multiline-tabbar-plugin-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/multiline-tabbar-plugin-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/multiline-tabbar-plugin-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/multiline-tabbar-plugin-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/multiline-tabbar-plugin-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/multiline-tabbar-plugin-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/multiline-tabbar-plugin-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/multiline-tabbar-plugin-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/multiline-tabbar-plugin-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/multiline-tabbar-plugin-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/multiline-tabbar-plugin-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/multiline-tabbar-plugin-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/multiline-tabbar-plugin-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/multiline-tabbar-plugin-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/multiline-tabbar-plugin-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/multiline-tabbar-plugin-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/multiline-tabbar-plugin-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/multiline-tabbar-plugin-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/multiline-tabbar-plugin-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/multiline-tabbar-plugin-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/multiline-tabbar-plugin-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/multiline-tabbar-plugin-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/multiline-tabbar-plugin-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/multiline-tabbar-plugin-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/multiline-tabbar-plugin-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/multiline-tabbar-plugin-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/multiline-tabbar-plugin-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/multiline-tabbar-plugin-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/multiline-tabbar-plugin-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/multiline-tabbar-plugin-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/multiline-tabbar-plugin-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/multiline-tabbar-plugin-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/multiline-tabbar-plugin-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/multiline-tabbar-plugin-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/multiline-tabbar-plugin-plugin/deployments", + "created_at": "2010-12-14T20:17:48Z", + "updated_at": "2014-01-31T00:28:38Z", + "pushed_at": "2013-11-10T02:11:44Z", + "git_url": "git://github.com/jenkinsci/multiline-tabbar-plugin-plugin.git", + "ssh_url": "git@github.com:jenkinsci/multiline-tabbar-plugin-plugin.git", + "clone_url": "https://github.com/jenkinsci/multiline-tabbar-plugin-plugin.git", + "svn_url": "https://github.com/jenkinsci/multiline-tabbar-plugin-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 116, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1169157, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTY5MTU3", + "name": "klaros-testmanagement-plugin", + "full_name": "jenkinsci/klaros-testmanagement-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/klaros-testmanagement-plugin", + "description": "Jenkins klaros-testmanagement plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/klaros-testmanagement-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/klaros-testmanagement-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/klaros-testmanagement-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/klaros-testmanagement-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/klaros-testmanagement-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/klaros-testmanagement-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/klaros-testmanagement-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/klaros-testmanagement-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/klaros-testmanagement-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/klaros-testmanagement-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/klaros-testmanagement-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/klaros-testmanagement-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/klaros-testmanagement-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/klaros-testmanagement-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/klaros-testmanagement-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/klaros-testmanagement-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/klaros-testmanagement-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/klaros-testmanagement-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/klaros-testmanagement-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/klaros-testmanagement-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/klaros-testmanagement-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/klaros-testmanagement-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/klaros-testmanagement-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/klaros-testmanagement-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/klaros-testmanagement-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/klaros-testmanagement-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/klaros-testmanagement-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/klaros-testmanagement-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/klaros-testmanagement-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/klaros-testmanagement-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/klaros-testmanagement-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/klaros-testmanagement-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/klaros-testmanagement-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/klaros-testmanagement-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/klaros-testmanagement-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/klaros-testmanagement-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/klaros-testmanagement-plugin/deployments", + "created_at": "2010-12-14T20:17:48Z", + "updated_at": "2019-10-18T15:02:01Z", + "pushed_at": "2019-10-18T15:01:59Z", + "git_url": "git://github.com/jenkinsci/klaros-testmanagement-plugin.git", + "ssh_url": "git@github.com:jenkinsci/klaros-testmanagement-plugin.git", + "clone_url": "https://github.com/jenkinsci/klaros-testmanagement-plugin.git", + "svn_url": "https://github.com/jenkinsci/klaros-testmanagement-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 196, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1169159, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTY5MTU5", + "name": "rebuild-plugin", + "full_name": "jenkinsci/rebuild-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/rebuild-plugin", + "description": "Jenkins rebuild plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/rebuild-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/rebuild-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/rebuild-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/rebuild-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/rebuild-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/rebuild-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/rebuild-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/rebuild-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/rebuild-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/rebuild-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/rebuild-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/rebuild-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/rebuild-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/rebuild-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/rebuild-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/rebuild-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/rebuild-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/rebuild-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/rebuild-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/rebuild-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/rebuild-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/rebuild-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/rebuild-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/rebuild-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/rebuild-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/rebuild-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/rebuild-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/rebuild-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/rebuild-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/rebuild-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/rebuild-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/rebuild-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/rebuild-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/rebuild-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/rebuild-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/rebuild-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/rebuild-plugin/deployments", + "created_at": "2010-12-14T20:18:28Z", + "updated_at": "2019-10-16T19:33:14Z", + "pushed_at": "2019-10-16T19:33:12Z", + "git_url": "git://github.com/jenkinsci/rebuild-plugin.git", + "ssh_url": "git@github.com:jenkinsci/rebuild-plugin.git", + "clone_url": "https://github.com/jenkinsci/rebuild-plugin.git", + "svn_url": "https://github.com/jenkinsci/rebuild-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Rebuild+Plugin", + "size": 261, + "stargazers_count": 34, + "watchers_count": 34, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 76, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 9, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 76, + "open_issues": 9, + "watchers": 34, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1169162, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTY5MTYy", + "name": "ci-game-plugin", + "full_name": "jenkinsci/ci-game-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/ci-game-plugin", + "description": "Jenkins ci-game plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/ci-game-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/ci-game-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/ci-game-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/ci-game-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/ci-game-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/ci-game-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/ci-game-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/ci-game-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/ci-game-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/ci-game-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/ci-game-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/ci-game-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/ci-game-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/ci-game-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/ci-game-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/ci-game-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/ci-game-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/ci-game-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/ci-game-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/ci-game-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/ci-game-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/ci-game-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/ci-game-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/ci-game-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/ci-game-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/ci-game-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/ci-game-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/ci-game-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/ci-game-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/ci-game-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/ci-game-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/ci-game-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/ci-game-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/ci-game-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/ci-game-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/ci-game-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/ci-game-plugin/deployments", + "created_at": "2010-12-14T20:19:41Z", + "updated_at": "2019-08-05T03:49:56Z", + "pushed_at": "2019-10-08T11:28:19Z", + "git_url": "git://github.com/jenkinsci/ci-game-plugin.git", + "ssh_url": "git@github.com:jenkinsci/ci-game-plugin.git", + "clone_url": "https://github.com/jenkinsci/ci-game-plugin.git", + "svn_url": "https://github.com/jenkinsci/ci-game-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 586, + "stargazers_count": 38, + "watchers_count": 38, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 51, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 4, + "license": null, + "forks": 51, + "open_issues": 4, + "watchers": 38, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1169172, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTY5MTcy", + "name": "selenium-grails-plugin", + "full_name": "jenkinsci/selenium-grails-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/selenium-grails-plugin", + "description": "Jenkins selenium-grails plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/selenium-grails-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/selenium-grails-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/selenium-grails-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/selenium-grails-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/selenium-grails-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/selenium-grails-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/selenium-grails-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/selenium-grails-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/selenium-grails-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/selenium-grails-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/selenium-grails-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/selenium-grails-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/selenium-grails-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/selenium-grails-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/selenium-grails-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/selenium-grails-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/selenium-grails-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/selenium-grails-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/selenium-grails-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/selenium-grails-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/selenium-grails-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/selenium-grails-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/selenium-grails-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/selenium-grails-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/selenium-grails-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/selenium-grails-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/selenium-grails-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/selenium-grails-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/selenium-grails-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/selenium-grails-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/selenium-grails-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/selenium-grails-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/selenium-grails-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/selenium-grails-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/selenium-grails-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/selenium-grails-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/selenium-grails-plugin/deployments", + "created_at": "2010-12-14T20:23:26Z", + "updated_at": "2013-11-10T02:17:04Z", + "pushed_at": "2013-11-10T02:16:59Z", + "git_url": "git://github.com/jenkinsci/selenium-grails-plugin.git", + "ssh_url": "git@github.com:jenkinsci/selenium-grails-plugin.git", + "clone_url": "https://github.com/jenkinsci/selenium-grails-plugin.git", + "svn_url": "https://github.com/jenkinsci/selenium-grails-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 120, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1169179, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTY5MTc5", + "name": "staging-plugin", + "full_name": "jenkinsci/staging-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/staging-plugin", + "description": "Jenkins staging plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/staging-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/staging-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/staging-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/staging-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/staging-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/staging-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/staging-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/staging-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/staging-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/staging-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/staging-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/staging-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/staging-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/staging-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/staging-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/staging-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/staging-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/staging-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/staging-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/staging-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/staging-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/staging-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/staging-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/staging-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/staging-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/staging-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/staging-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/staging-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/staging-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/staging-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/staging-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/staging-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/staging-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/staging-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/staging-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/staging-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/staging-plugin/deployments", + "created_at": "2010-12-14T20:25:06Z", + "updated_at": "2013-11-10T02:19:11Z", + "pushed_at": "2013-11-10T02:19:06Z", + "git_url": "git://github.com/jenkinsci/staging-plugin.git", + "ssh_url": "git@github.com:jenkinsci/staging-plugin.git", + "clone_url": "https://github.com/jenkinsci/staging-plugin.git", + "svn_url": "https://github.com/jenkinsci/staging-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 140, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1169182, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTY5MTgy", + "name": "startup-trigger-plugin", + "full_name": "jenkinsci/startup-trigger-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/startup-trigger-plugin", + "description": "Jenkins startup-trigger-plugin plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/startup-trigger-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/startup-trigger-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/startup-trigger-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/startup-trigger-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/startup-trigger-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/startup-trigger-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/startup-trigger-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/startup-trigger-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/startup-trigger-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/startup-trigger-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/startup-trigger-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/startup-trigger-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/startup-trigger-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/startup-trigger-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/startup-trigger-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/startup-trigger-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/startup-trigger-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/startup-trigger-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/startup-trigger-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/startup-trigger-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/startup-trigger-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/startup-trigger-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/startup-trigger-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/startup-trigger-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/startup-trigger-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/startup-trigger-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/startup-trigger-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/startup-trigger-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/startup-trigger-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/startup-trigger-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/startup-trigger-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/startup-trigger-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/startup-trigger-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/startup-trigger-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/startup-trigger-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/startup-trigger-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/startup-trigger-plugin/deployments", + "created_at": "2010-12-14T20:26:21Z", + "updated_at": "2019-04-13T05:10:43Z", + "pushed_at": "2019-10-08T10:07:24Z", + "git_url": "git://github.com/jenkinsci/startup-trigger-plugin.git", + "ssh_url": "git@github.com:jenkinsci/startup-trigger-plugin.git", + "clone_url": "https://github.com/jenkinsci/startup-trigger-plugin.git", + "svn_url": "https://github.com/jenkinsci/startup-trigger-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 101, + "stargazers_count": 6, + "watchers_count": 6, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 11, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 11, + "open_issues": 1, + "watchers": 6, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1169186, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTY5MTg2", + "name": "schmant-plugin", + "full_name": "jenkinsci/schmant-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/schmant-plugin", + "description": "Jenkins schmant plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/schmant-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/schmant-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/schmant-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/schmant-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/schmant-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/schmant-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/schmant-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/schmant-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/schmant-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/schmant-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/schmant-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/schmant-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/schmant-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/schmant-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/schmant-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/schmant-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/schmant-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/schmant-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/schmant-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/schmant-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/schmant-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/schmant-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/schmant-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/schmant-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/schmant-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/schmant-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/schmant-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/schmant-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/schmant-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/schmant-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/schmant-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/schmant-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/schmant-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/schmant-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/schmant-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/schmant-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/schmant-plugin/deployments", + "created_at": "2010-12-14T20:28:45Z", + "updated_at": "2013-11-10T02:16:32Z", + "pushed_at": "2013-11-10T02:16:21Z", + "git_url": "git://github.com/jenkinsci/schmant-plugin.git", + "ssh_url": "git@github.com:jenkinsci/schmant-plugin.git", + "clone_url": "https://github.com/jenkinsci/schmant-plugin.git", + "svn_url": "https://github.com/jenkinsci/schmant-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 144, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1169195, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTY5MTk1", + "name": "selenium-plugin", + "full_name": "jenkinsci/selenium-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/selenium-plugin", + "description": "Jenkins selenium plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/selenium-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/selenium-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/selenium-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/selenium-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/selenium-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/selenium-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/selenium-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/selenium-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/selenium-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/selenium-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/selenium-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/selenium-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/selenium-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/selenium-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/selenium-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/selenium-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/selenium-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/selenium-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/selenium-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/selenium-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/selenium-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/selenium-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/selenium-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/selenium-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/selenium-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/selenium-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/selenium-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/selenium-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/selenium-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/selenium-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/selenium-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/selenium-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/selenium-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/selenium-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/selenium-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/selenium-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/selenium-plugin/deployments", + "created_at": "2010-12-14T20:32:06Z", + "updated_at": "2019-09-23T19:44:46Z", + "pushed_at": "2019-10-08T10:04:58Z", + "git_url": "git://github.com/jenkinsci/selenium-plugin.git", + "ssh_url": "git@github.com:jenkinsci/selenium-plugin.git", + "clone_url": "https://github.com/jenkinsci/selenium-plugin.git", + "svn_url": "https://github.com/jenkinsci/selenium-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 180715, + "stargazers_count": 108, + "watchers_count": 108, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 102, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 23, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 102, + "open_issues": 23, + "watchers": 108, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1169202, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTY5MjAy", + "name": "selenium-aes-plugin", + "full_name": "jenkinsci/selenium-aes-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/selenium-aes-plugin", + "description": "Jenkins selenium-aes plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/selenium-aes-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/selenium-aes-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/selenium-aes-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/selenium-aes-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/selenium-aes-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/selenium-aes-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/selenium-aes-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/selenium-aes-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/selenium-aes-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/selenium-aes-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/selenium-aes-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/selenium-aes-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/selenium-aes-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/selenium-aes-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/selenium-aes-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/selenium-aes-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/selenium-aes-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/selenium-aes-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/selenium-aes-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/selenium-aes-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/selenium-aes-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/selenium-aes-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/selenium-aes-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/selenium-aes-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/selenium-aes-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/selenium-aes-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/selenium-aes-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/selenium-aes-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/selenium-aes-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/selenium-aes-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/selenium-aes-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/selenium-aes-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/selenium-aes-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/selenium-aes-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/selenium-aes-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/selenium-aes-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/selenium-aes-plugin/deployments", + "created_at": "2010-12-14T20:32:51Z", + "updated_at": "2014-03-05T07:34:13Z", + "pushed_at": "2019-10-08T12:26:45Z", + "git_url": "git://github.com/jenkinsci/selenium-aes-plugin.git", + "ssh_url": "git@github.com:jenkinsci/selenium-aes-plugin.git", + "clone_url": "https://github.com/jenkinsci/selenium-aes-plugin.git", + "svn_url": "https://github.com/jenkinsci/selenium-aes-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 148, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 2, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1169203, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTY5MjAz", + "name": "m2release-plugin", + "full_name": "jenkinsci/m2release-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/m2release-plugin", + "description": "Jenkins m2release plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/m2release-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/m2release-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/m2release-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/m2release-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/m2release-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/m2release-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/m2release-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/m2release-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/m2release-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/m2release-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/m2release-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/m2release-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/m2release-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/m2release-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/m2release-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/m2release-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/m2release-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/m2release-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/m2release-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/m2release-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/m2release-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/m2release-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/m2release-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/m2release-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/m2release-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/m2release-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/m2release-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/m2release-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/m2release-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/m2release-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/m2release-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/m2release-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/m2release-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/m2release-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/m2release-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/m2release-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/m2release-plugin/deployments", + "created_at": "2010-12-14T20:33:26Z", + "updated_at": "2019-07-31T13:08:48Z", + "pushed_at": "2019-09-24T09:47:20Z", + "git_url": "git://github.com/jenkinsci/m2release-plugin.git", + "ssh_url": "git@github.com:jenkinsci/m2release-plugin.git", + "clone_url": "https://github.com/jenkinsci/m2release-plugin.git", + "svn_url": "https://github.com/jenkinsci/m2release-plugin", + "homepage": "https://jenkins.io", + "size": 414, + "stargazers_count": 27, + "watchers_count": 27, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 65, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 9, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 65, + "open_issues": 9, + "watchers": 27, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1169208, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTY5MjA4", + "name": "dry-plugin", + "full_name": "jenkinsci/dry-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/dry-plugin", + "description": "Jenkins dry plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/dry-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/dry-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/dry-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/dry-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/dry-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/dry-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/dry-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/dry-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/dry-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/dry-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/dry-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/dry-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/dry-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/dry-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/dry-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/dry-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/dry-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/dry-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/dry-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/dry-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/dry-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/dry-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/dry-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/dry-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/dry-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/dry-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/dry-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/dry-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/dry-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/dry-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/dry-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/dry-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/dry-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/dry-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/dry-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/dry-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/dry-plugin/deployments", + "created_at": "2010-12-14T20:34:41Z", + "updated_at": "2019-09-24T11:34:14Z", + "pushed_at": "2019-09-24T11:34:12Z", + "git_url": "git://github.com/jenkinsci/dry-plugin.git", + "ssh_url": "git@github.com:jenkinsci/dry-plugin.git", + "clone_url": "https://github.com/jenkinsci/dry-plugin.git", + "svn_url": "https://github.com/jenkinsci/dry-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 896, + "stargazers_count": 16, + "watchers_count": 16, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 15, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 15, + "open_issues": 1, + "watchers": 16, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1169210, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTY5MjEw", + "name": "ec2-plugin", + "full_name": "jenkinsci/ec2-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/ec2-plugin", + "description": "Jenkins ec2 plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/ec2-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/ec2-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/ec2-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/ec2-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/ec2-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/ec2-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/ec2-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/ec2-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/ec2-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/ec2-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/ec2-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/ec2-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/ec2-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/ec2-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/ec2-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/ec2-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/ec2-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/ec2-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/ec2-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/ec2-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/ec2-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/ec2-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/ec2-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/ec2-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/ec2-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/ec2-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/ec2-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/ec2-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/ec2-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/ec2-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/ec2-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/ec2-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/ec2-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/ec2-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/ec2-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/ec2-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/ec2-plugin/deployments", + "created_at": "2010-12-14T20:35:53Z", + "updated_at": "2019-10-24T15:21:30Z", + "pushed_at": "2019-10-22T03:51:48Z", + "git_url": "git://github.com/jenkinsci/ec2-plugin.git", + "ssh_url": "git@github.com:jenkinsci/ec2-plugin.git", + "clone_url": "https://github.com/jenkinsci/ec2-plugin.git", + "svn_url": "https://github.com/jenkinsci/ec2-plugin", + "homepage": "https://wiki.jenkins.io/display/JENKINS/Amazon+EC2+Plugin", + "size": 1956, + "stargazers_count": 205, + "watchers_count": 205, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 446, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 19, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 446, + "open_issues": 19, + "watchers": 205, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1169212, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTY5MjEy", + "name": "pmd-plugin", + "full_name": "jenkinsci/pmd-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pmd-plugin", + "description": "Jenkins pmd plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/pmd-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pmd-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pmd-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pmd-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pmd-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pmd-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pmd-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pmd-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pmd-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pmd-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pmd-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pmd-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pmd-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pmd-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pmd-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pmd-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pmd-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pmd-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pmd-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pmd-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pmd-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pmd-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pmd-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pmd-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pmd-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pmd-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pmd-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pmd-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pmd-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pmd-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pmd-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pmd-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pmd-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pmd-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pmd-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pmd-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pmd-plugin/deployments", + "created_at": "2010-12-14T20:36:15Z", + "updated_at": "2019-09-24T11:33:56Z", + "pushed_at": "2019-09-24T11:33:53Z", + "git_url": "git://github.com/jenkinsci/pmd-plugin.git", + "ssh_url": "git@github.com:jenkinsci/pmd-plugin.git", + "clone_url": "https://github.com/jenkinsci/pmd-plugin.git", + "svn_url": "https://github.com/jenkinsci/pmd-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 1420, + "stargazers_count": 26, + "watchers_count": 26, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 20, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 20, + "open_issues": 1, + "watchers": 26, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1169217, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTY5MjE3", + "name": "labeled-test-groups-publisher-plugin", + "full_name": "jenkinsci/labeled-test-groups-publisher-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/labeled-test-groups-publisher-plugin", + "description": "Jenkins labeled-test-groups-publisher plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/labeled-test-groups-publisher-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/labeled-test-groups-publisher-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/labeled-test-groups-publisher-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/labeled-test-groups-publisher-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/labeled-test-groups-publisher-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/labeled-test-groups-publisher-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/labeled-test-groups-publisher-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/labeled-test-groups-publisher-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/labeled-test-groups-publisher-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/labeled-test-groups-publisher-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/labeled-test-groups-publisher-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/labeled-test-groups-publisher-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/labeled-test-groups-publisher-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/labeled-test-groups-publisher-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/labeled-test-groups-publisher-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/labeled-test-groups-publisher-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/labeled-test-groups-publisher-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/labeled-test-groups-publisher-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/labeled-test-groups-publisher-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/labeled-test-groups-publisher-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/labeled-test-groups-publisher-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/labeled-test-groups-publisher-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/labeled-test-groups-publisher-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/labeled-test-groups-publisher-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/labeled-test-groups-publisher-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/labeled-test-groups-publisher-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/labeled-test-groups-publisher-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/labeled-test-groups-publisher-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/labeled-test-groups-publisher-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/labeled-test-groups-publisher-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/labeled-test-groups-publisher-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/labeled-test-groups-publisher-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/labeled-test-groups-publisher-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/labeled-test-groups-publisher-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/labeled-test-groups-publisher-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/labeled-test-groups-publisher-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/labeled-test-groups-publisher-plugin/deployments", + "created_at": "2010-12-14T20:37:04Z", + "updated_at": "2019-10-08T16:48:00Z", + "pushed_at": "2019-10-08T16:47:57Z", + "git_url": "git://github.com/jenkinsci/labeled-test-groups-publisher-plugin.git", + "ssh_url": "git@github.com:jenkinsci/labeled-test-groups-publisher-plugin.git", + "clone_url": "https://github.com/jenkinsci/labeled-test-groups-publisher-plugin.git", + "svn_url": "https://github.com/jenkinsci/labeled-test-groups-publisher-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 131, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 7, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 7, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1169220, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTY5MjIw", + "name": "performance-plugin", + "full_name": "jenkinsci/performance-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/performance-plugin", + "description": "Performance Test Running and Reporting for Jenkins CI", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/performance-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/performance-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/performance-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/performance-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/performance-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/performance-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/performance-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/performance-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/performance-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/performance-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/performance-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/performance-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/performance-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/performance-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/performance-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/performance-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/performance-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/performance-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/performance-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/performance-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/performance-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/performance-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/performance-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/performance-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/performance-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/performance-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/performance-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/performance-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/performance-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/performance-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/performance-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/performance-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/performance-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/performance-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/performance-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/performance-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/performance-plugin/deployments", + "created_at": "2010-12-14T20:37:47Z", + "updated_at": "2019-10-21T21:57:36Z", + "pushed_at": "2019-09-25T14:23:45Z", + "git_url": "git://github.com/jenkinsci/performance-plugin.git", + "ssh_url": "git@github.com:jenkinsci/performance-plugin.git", + "clone_url": "https://github.com/jenkinsci/performance-plugin.git", + "svn_url": "https://github.com/jenkinsci/performance-plugin", + "homepage": "", + "size": 2367, + "stargazers_count": 154, + "watchers_count": 154, + "language": "Java", + "has_issues": false, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": true, + "forks_count": 182, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 182, + "open_issues": 1, + "watchers": 154, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1169225, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTY5MjI1", + "name": "tasks-plugin", + "full_name": "jenkinsci/tasks-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/tasks-plugin", + "description": "Jenkins tasks plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/tasks-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/tasks-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/tasks-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/tasks-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/tasks-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/tasks-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/tasks-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/tasks-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/tasks-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/tasks-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/tasks-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/tasks-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/tasks-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/tasks-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/tasks-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/tasks-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/tasks-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/tasks-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/tasks-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/tasks-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/tasks-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/tasks-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/tasks-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/tasks-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/tasks-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/tasks-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/tasks-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/tasks-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/tasks-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/tasks-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/tasks-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/tasks-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/tasks-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/tasks-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/tasks-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/tasks-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/tasks-plugin/deployments", + "created_at": "2010-12-14T20:39:05Z", + "updated_at": "2019-09-24T11:34:25Z", + "pushed_at": "2019-09-24T11:34:23Z", + "git_url": "git://github.com/jenkinsci/tasks-plugin.git", + "ssh_url": "git@github.com:jenkinsci/tasks-plugin.git", + "clone_url": "https://github.com/jenkinsci/tasks-plugin.git", + "svn_url": "https://github.com/jenkinsci/tasks-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 2022, + "stargazers_count": 7, + "watchers_count": 7, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 9, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 9, + "open_issues": 0, + "watchers": 7, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1169230, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTY5MjMw", + "name": "warnings-plugin", + "full_name": "jenkinsci/warnings-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/warnings-plugin", + "description": "Jenkins warnings plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/warnings-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/warnings-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/warnings-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/warnings-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/warnings-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/warnings-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/warnings-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/warnings-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/warnings-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/warnings-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/warnings-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/warnings-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/warnings-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/warnings-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/warnings-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/warnings-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/warnings-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/warnings-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/warnings-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/warnings-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/warnings-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/warnings-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/warnings-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/warnings-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/warnings-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/warnings-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/warnings-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/warnings-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/warnings-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/warnings-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/warnings-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/warnings-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/warnings-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/warnings-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/warnings-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/warnings-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/warnings-plugin/deployments", + "created_at": "2010-12-14T20:42:03Z", + "updated_at": "2019-09-24T11:33:36Z", + "pushed_at": "2019-09-24T11:34:41Z", + "git_url": "git://github.com/jenkinsci/warnings-plugin.git", + "ssh_url": "git@github.com:jenkinsci/warnings-plugin.git", + "clone_url": "https://github.com/jenkinsci/warnings-plugin.git", + "svn_url": "https://github.com/jenkinsci/warnings-plugin", + "homepage": "https://plugins.jenkins.io/warnings", + "size": 13793, + "stargazers_count": 69, + "watchers_count": 69, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 158, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 158, + "open_issues": 1, + "watchers": 69, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1169248, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTY5MjQ4", + "name": "xunit-plugin", + "full_name": "jenkinsci/xunit-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/xunit-plugin", + "description": "Jenkins xunit plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/xunit-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/xunit-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/xunit-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/xunit-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/xunit-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/xunit-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/xunit-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/xunit-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/xunit-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/xunit-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/xunit-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/xunit-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/xunit-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/xunit-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/xunit-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/xunit-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/xunit-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/xunit-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/xunit-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/xunit-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/xunit-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/xunit-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/xunit-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/xunit-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/xunit-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/xunit-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/xunit-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/xunit-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/xunit-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/xunit-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/xunit-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/xunit-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/xunit-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/xunit-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/xunit-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/xunit-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/xunit-plugin/deployments", + "created_at": "2010-12-14T20:48:15Z", + "updated_at": "2019-10-21T14:36:02Z", + "pushed_at": "2019-10-21T14:36:00Z", + "git_url": "git://github.com/jenkinsci/xunit-plugin.git", + "ssh_url": "git@github.com:jenkinsci/xunit-plugin.git", + "clone_url": "https://github.com/jenkinsci/xunit-plugin.git", + "svn_url": "https://github.com/jenkinsci/xunit-plugin", + "homepage": "https://plugins.jenkins.io/xunit", + "size": 1698, + "stargazers_count": 63, + "watchers_count": 63, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 120, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 120, + "open_issues": 2, + "watchers": 63, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1169309, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTY5MzA5", + "name": "findbugs-plugin", + "full_name": "jenkinsci/findbugs-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/findbugs-plugin", + "description": "Jenkins findbugs plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/findbugs-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/findbugs-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/findbugs-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/findbugs-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/findbugs-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/findbugs-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/findbugs-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/findbugs-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/findbugs-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/findbugs-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/findbugs-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/findbugs-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/findbugs-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/findbugs-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/findbugs-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/findbugs-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/findbugs-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/findbugs-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/findbugs-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/findbugs-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/findbugs-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/findbugs-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/findbugs-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/findbugs-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/findbugs-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/findbugs-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/findbugs-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/findbugs-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/findbugs-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/findbugs-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/findbugs-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/findbugs-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/findbugs-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/findbugs-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/findbugs-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/findbugs-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/findbugs-plugin/deployments", + "created_at": "2010-12-14T21:12:42Z", + "updated_at": "2019-09-24T11:33:43Z", + "pushed_at": "2019-09-24T11:33:40Z", + "git_url": "git://github.com/jenkinsci/findbugs-plugin.git", + "ssh_url": "git@github.com:jenkinsci/findbugs-plugin.git", + "clone_url": "https://github.com/jenkinsci/findbugs-plugin.git", + "svn_url": "https://github.com/jenkinsci/findbugs-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 3490, + "stargazers_count": 42, + "watchers_count": 42, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 50, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 50, + "open_issues": 0, + "watchers": 42, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1175683, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTc1Njgz", + "name": "s3-plugin", + "full_name": "jenkinsci/s3-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/s3-plugin", + "description": "Upload Jenkins build artifacts to Amazon S3", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/s3-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/s3-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/s3-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/s3-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/s3-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/s3-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/s3-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/s3-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/s3-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/s3-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/s3-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/s3-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/s3-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/s3-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/s3-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/s3-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/s3-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/s3-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/s3-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/s3-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/s3-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/s3-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/s3-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/s3-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/s3-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/s3-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/s3-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/s3-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/s3-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/s3-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/s3-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/s3-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/s3-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/s3-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/s3-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/s3-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/s3-plugin/deployments", + "created_at": "2010-12-16T23:28:08Z", + "updated_at": "2019-10-07T03:32:45Z", + "pushed_at": "2019-09-24T10:24:27Z", + "git_url": "git://github.com/jenkinsci/s3-plugin.git", + "ssh_url": "git@github.com:jenkinsci/s3-plugin.git", + "clone_url": "https://github.com/jenkinsci/s3-plugin.git", + "svn_url": "https://github.com/jenkinsci/s3-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 10429, + "stargazers_count": 96, + "watchers_count": 96, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 167, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 18, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 167, + "open_issues": 18, + "watchers": 96, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1208022, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjA4MDIy", + "name": "analysis-config-plugin", + "full_name": "jenkinsci/analysis-config-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/analysis-config-plugin", + "description": "Jenkins analysis-config plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/analysis-config-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/analysis-config-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/analysis-config-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/analysis-config-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/analysis-config-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/analysis-config-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/analysis-config-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/analysis-config-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/analysis-config-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/analysis-config-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/analysis-config-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/analysis-config-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/analysis-config-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/analysis-config-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/analysis-config-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/analysis-config-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/analysis-config-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/analysis-config-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/analysis-config-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/analysis-config-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/analysis-config-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/analysis-config-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/analysis-config-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/analysis-config-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/analysis-config-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/analysis-config-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/analysis-config-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/analysis-config-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/analysis-config-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/analysis-config-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/analysis-config-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/analysis-config-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/analysis-config-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/analysis-config-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/analysis-config-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/analysis-config-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/analysis-config-plugin/deployments", + "created_at": "2010-12-30T09:02:59Z", + "updated_at": "2018-08-31T18:23:28Z", + "pushed_at": "2018-08-31T18:23:27Z", + "git_url": "git://github.com/jenkinsci/analysis-config-plugin.git", + "ssh_url": "git@github.com:jenkinsci/analysis-config-plugin.git", + "clone_url": "https://github.com/jenkinsci/analysis-config-plugin.git", + "svn_url": "https://github.com/jenkinsci/analysis-config-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 90, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Shell", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 11, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 11, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/__files/organizations_107424_repos-d68a564a-7eca-47ca-af21-1bb492309cfc.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/__files/organizations_107424_repos-d68a564a-7eca-47ca-af21-1bb492309cfc.json new file mode 100644 index 0000000000..31d0a1e870 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/__files/organizations_107424_repos-d68a564a-7eca-47ca-af21-1bb492309cfc.json @@ -0,0 +1,10034 @@ +[ + { + "id": 1163633, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjMz", + "name": "kundo-plugin", + "full_name": "jenkinsci/kundo-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/kundo-plugin", + "description": "Jenkins kundo plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/kundo-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/kundo-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/kundo-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/kundo-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/kundo-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/kundo-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/kundo-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/kundo-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/kundo-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/kundo-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/kundo-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/kundo-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/kundo-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/kundo-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/kundo-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/kundo-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/kundo-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/kundo-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/kundo-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/kundo-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/kundo-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/kundo-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/kundo-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/kundo-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/kundo-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/kundo-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/kundo-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/kundo-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/kundo-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/kundo-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/kundo-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/kundo-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/kundo-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/kundo-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/kundo-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/kundo-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/kundo-plugin/deployments", + "created_at": "2010-12-13T05:43:02Z", + "updated_at": "2014-04-06T22:50:25Z", + "pushed_at": "2013-11-10T02:08:30Z", + "git_url": "git://github.com/jenkinsci/kundo-plugin.git", + "ssh_url": "git@github.com:jenkinsci/kundo-plugin.git", + "clone_url": "https://github.com/jenkinsci/kundo-plugin.git", + "svn_url": "https://github.com/jenkinsci/kundo-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 128, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163634, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjM0", + "name": "local-groovy-cli-plugin", + "full_name": "jenkinsci/local-groovy-cli-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/local-groovy-cli-plugin", + "description": "Jenkins local-groovy-cli plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/local-groovy-cli-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/local-groovy-cli-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/local-groovy-cli-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/local-groovy-cli-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/local-groovy-cli-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/local-groovy-cli-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/local-groovy-cli-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/local-groovy-cli-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/local-groovy-cli-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/local-groovy-cli-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/local-groovy-cli-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/local-groovy-cli-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/local-groovy-cli-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/local-groovy-cli-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/local-groovy-cli-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/local-groovy-cli-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/local-groovy-cli-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/local-groovy-cli-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/local-groovy-cli-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/local-groovy-cli-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/local-groovy-cli-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/local-groovy-cli-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/local-groovy-cli-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/local-groovy-cli-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/local-groovy-cli-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/local-groovy-cli-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/local-groovy-cli-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/local-groovy-cli-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/local-groovy-cli-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/local-groovy-cli-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/local-groovy-cli-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/local-groovy-cli-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/local-groovy-cli-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/local-groovy-cli-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/local-groovy-cli-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/local-groovy-cli-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/local-groovy-cli-plugin/deployments", + "created_at": "2010-12-13T05:43:50Z", + "updated_at": "2016-09-07T04:50:24Z", + "pushed_at": "2013-11-10T02:09:41Z", + "git_url": "git://github.com/jenkinsci/local-groovy-cli-plugin.git", + "ssh_url": "git@github.com:jenkinsci/local-groovy-cli-plugin.git", + "clone_url": "https://github.com/jenkinsci/local-groovy-cli-plugin.git", + "svn_url": "https://github.com/jenkinsci/local-groovy-cli-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 108, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163635, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjM1", + "name": "libvirt-slave-plugin", + "full_name": "jenkinsci/libvirt-slave-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/libvirt-slave-plugin", + "description": "Jenkins libvirt-slave plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/libvirt-slave-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/libvirt-slave-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/libvirt-slave-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/libvirt-slave-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/libvirt-slave-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/libvirt-slave-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/libvirt-slave-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/libvirt-slave-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/libvirt-slave-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/libvirt-slave-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/libvirt-slave-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/libvirt-slave-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/libvirt-slave-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/libvirt-slave-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/libvirt-slave-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/libvirt-slave-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/libvirt-slave-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/libvirt-slave-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/libvirt-slave-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/libvirt-slave-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/libvirt-slave-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/libvirt-slave-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/libvirt-slave-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/libvirt-slave-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/libvirt-slave-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/libvirt-slave-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/libvirt-slave-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/libvirt-slave-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/libvirt-slave-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/libvirt-slave-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/libvirt-slave-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/libvirt-slave-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/libvirt-slave-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/libvirt-slave-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/libvirt-slave-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/libvirt-slave-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/libvirt-slave-plugin/deployments", + "created_at": "2010-12-13T05:43:50Z", + "updated_at": "2019-10-08T22:41:13Z", + "pushed_at": "2019-10-08T22:41:11Z", + "git_url": "git://github.com/jenkinsci/libvirt-slave-plugin.git", + "ssh_url": "git@github.com:jenkinsci/libvirt-slave-plugin.git", + "clone_url": "https://github.com/jenkinsci/libvirt-slave-plugin.git", + "svn_url": "https://github.com/jenkinsci/libvirt-slave-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 169, + "stargazers_count": 22, + "watchers_count": 22, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 35, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": null, + "forks": 35, + "open_issues": 3, + "watchers": 22, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163636, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjM2", + "name": "locked-files-report-plugin", + "full_name": "jenkinsci/locked-files-report-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/locked-files-report-plugin", + "description": "Jenkins locked-files-report plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/locked-files-report-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/locked-files-report-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/locked-files-report-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/locked-files-report-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/locked-files-report-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/locked-files-report-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/locked-files-report-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/locked-files-report-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/locked-files-report-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/locked-files-report-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/locked-files-report-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/locked-files-report-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/locked-files-report-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/locked-files-report-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/locked-files-report-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/locked-files-report-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/locked-files-report-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/locked-files-report-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/locked-files-report-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/locked-files-report-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/locked-files-report-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/locked-files-report-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/locked-files-report-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/locked-files-report-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/locked-files-report-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/locked-files-report-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/locked-files-report-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/locked-files-report-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/locked-files-report-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/locked-files-report-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/locked-files-report-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/locked-files-report-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/locked-files-report-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/locked-files-report-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/locked-files-report-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/locked-files-report-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/locked-files-report-plugin/deployments", + "created_at": "2010-12-13T05:43:51Z", + "updated_at": "2014-05-10T16:45:49Z", + "pushed_at": "2013-11-10T02:09:46Z", + "git_url": "git://github.com/jenkinsci/locked-files-report-plugin.git", + "ssh_url": "git@github.com:jenkinsci/locked-files-report-plugin.git", + "clone_url": "https://github.com/jenkinsci/locked-files-report-plugin.git", + "svn_url": "https://github.com/jenkinsci/locked-files-report-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 149, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163637, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjM3", + "name": "lavalamp-plugin", + "full_name": "jenkinsci/lavalamp-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/lavalamp-plugin", + "description": "Jenkins lavalamp plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/lavalamp-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/lavalamp-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/lavalamp-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/lavalamp-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/lavalamp-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/lavalamp-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/lavalamp-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/lavalamp-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/lavalamp-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/lavalamp-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/lavalamp-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/lavalamp-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/lavalamp-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/lavalamp-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/lavalamp-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/lavalamp-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/lavalamp-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/lavalamp-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/lavalamp-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/lavalamp-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/lavalamp-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/lavalamp-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/lavalamp-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/lavalamp-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/lavalamp-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/lavalamp-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/lavalamp-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/lavalamp-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/lavalamp-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/lavalamp-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/lavalamp-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/lavalamp-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/lavalamp-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/lavalamp-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/lavalamp-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/lavalamp-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/lavalamp-plugin/deployments", + "created_at": "2010-12-13T05:43:52Z", + "updated_at": "2016-05-21T18:18:50Z", + "pushed_at": "2013-11-10T02:08:44Z", + "git_url": "git://github.com/jenkinsci/lavalamp-plugin.git", + "ssh_url": "git@github.com:jenkinsci/lavalamp-plugin.git", + "clone_url": "https://github.com/jenkinsci/lavalamp-plugin.git", + "svn_url": "https://github.com/jenkinsci/lavalamp-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 1164, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163638, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjM4", + "name": "log-parser-plugin", + "full_name": "jenkinsci/log-parser-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/log-parser-plugin", + "description": "Jenkins log-parser plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/log-parser-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/log-parser-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/log-parser-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/log-parser-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/log-parser-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/log-parser-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/log-parser-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/log-parser-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/log-parser-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/log-parser-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/log-parser-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/log-parser-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/log-parser-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/log-parser-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/log-parser-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/log-parser-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/log-parser-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/log-parser-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/log-parser-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/log-parser-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/log-parser-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/log-parser-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/log-parser-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/log-parser-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/log-parser-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/log-parser-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/log-parser-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/log-parser-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/log-parser-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/log-parser-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/log-parser-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/log-parser-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/log-parser-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/log-parser-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/log-parser-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/log-parser-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/log-parser-plugin/deployments", + "created_at": "2010-12-13T05:43:52Z", + "updated_at": "2019-09-12T17:32:43Z", + "pushed_at": "2019-09-12T17:32:41Z", + "git_url": "git://github.com/jenkinsci/log-parser-plugin.git", + "ssh_url": "git@github.com:jenkinsci/log-parser-plugin.git", + "clone_url": "https://github.com/jenkinsci/log-parser-plugin.git", + "svn_url": "https://github.com/jenkinsci/log-parser-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 221, + "stargazers_count": 34, + "watchers_count": 34, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 56, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 56, + "open_issues": 0, + "watchers": 34, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163639, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjM5", + "name": "locale-plugin", + "full_name": "jenkinsci/locale-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/locale-plugin", + "description": "Jenkins locale plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/locale-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/locale-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/locale-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/locale-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/locale-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/locale-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/locale-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/locale-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/locale-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/locale-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/locale-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/locale-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/locale-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/locale-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/locale-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/locale-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/locale-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/locale-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/locale-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/locale-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/locale-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/locale-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/locale-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/locale-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/locale-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/locale-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/locale-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/locale-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/locale-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/locale-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/locale-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/locale-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/locale-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/locale-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/locale-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/locale-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/locale-plugin/deployments", + "created_at": "2010-12-13T05:43:52Z", + "updated_at": "2019-06-26T05:46:48Z", + "pushed_at": "2019-05-15T05:59:26Z", + "git_url": "git://github.com/jenkinsci/locale-plugin.git", + "ssh_url": "git@github.com:jenkinsci/locale-plugin.git", + "clone_url": "https://github.com/jenkinsci/locale-plugin.git", + "svn_url": "https://github.com/jenkinsci/locale-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 56, + "stargazers_count": 9, + "watchers_count": 9, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 11, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 11, + "open_issues": 1, + "watchers": 9, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163640, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjQw", + "name": "mask-passwords-plugin", + "full_name": "jenkinsci/mask-passwords-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/mask-passwords-plugin", + "description": "Jenkins mask-passwords plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/mask-passwords-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/mask-passwords-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/mask-passwords-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/mask-passwords-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/mask-passwords-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/mask-passwords-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/mask-passwords-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/mask-passwords-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/mask-passwords-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/mask-passwords-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/mask-passwords-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/mask-passwords-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/mask-passwords-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/mask-passwords-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/mask-passwords-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/mask-passwords-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/mask-passwords-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/mask-passwords-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/mask-passwords-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/mask-passwords-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/mask-passwords-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/mask-passwords-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/mask-passwords-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/mask-passwords-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/mask-passwords-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/mask-passwords-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/mask-passwords-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/mask-passwords-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/mask-passwords-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/mask-passwords-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/mask-passwords-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/mask-passwords-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/mask-passwords-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/mask-passwords-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/mask-passwords-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/mask-passwords-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/mask-passwords-plugin/deployments", + "created_at": "2010-12-13T05:44:03Z", + "updated_at": "2019-05-25T18:47:37Z", + "pushed_at": "2019-08-05T19:30:33Z", + "git_url": "git://github.com/jenkinsci/mask-passwords-plugin.git", + "ssh_url": "git@github.com:jenkinsci/mask-passwords-plugin.git", + "clone_url": "https://github.com/jenkinsci/mask-passwords-plugin.git", + "svn_url": "https://github.com/jenkinsci/mask-passwords-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 122, + "stargazers_count": 16, + "watchers_count": 16, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 43, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 43, + "open_issues": 1, + "watchers": 16, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163641, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjQx", + "name": "m2-repo-reaper-plugin", + "full_name": "jenkinsci/m2-repo-reaper-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/m2-repo-reaper-plugin", + "description": "Jenkins m2-repo-reaper plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/m2-repo-reaper-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/m2-repo-reaper-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/m2-repo-reaper-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/m2-repo-reaper-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/m2-repo-reaper-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/m2-repo-reaper-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/m2-repo-reaper-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/m2-repo-reaper-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/m2-repo-reaper-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/m2-repo-reaper-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/m2-repo-reaper-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/m2-repo-reaper-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/m2-repo-reaper-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/m2-repo-reaper-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/m2-repo-reaper-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/m2-repo-reaper-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/m2-repo-reaper-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/m2-repo-reaper-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/m2-repo-reaper-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/m2-repo-reaper-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/m2-repo-reaper-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/m2-repo-reaper-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/m2-repo-reaper-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/m2-repo-reaper-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/m2-repo-reaper-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/m2-repo-reaper-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/m2-repo-reaper-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/m2-repo-reaper-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/m2-repo-reaper-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/m2-repo-reaper-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/m2-repo-reaper-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/m2-repo-reaper-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/m2-repo-reaper-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/m2-repo-reaper-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/m2-repo-reaper-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/m2-repo-reaper-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/m2-repo-reaper-plugin/deployments", + "created_at": "2010-12-13T05:44:03Z", + "updated_at": "2014-04-14T11:22:56Z", + "pushed_at": "2016-04-16T01:35:29Z", + "git_url": "git://github.com/jenkinsci/m2-repo-reaper-plugin.git", + "ssh_url": "git@github.com:jenkinsci/m2-repo-reaper-plugin.git", + "clone_url": "https://github.com/jenkinsci/m2-repo-reaper-plugin.git", + "svn_url": "https://github.com/jenkinsci/m2-repo-reaper-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 8, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 2, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163642, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjQy", + "name": "logaction-plugin", + "full_name": "jenkinsci/logaction-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/logaction-plugin", + "description": "Jenkins logaction plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/logaction-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/logaction-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/logaction-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/logaction-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/logaction-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/logaction-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/logaction-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/logaction-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/logaction-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/logaction-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/logaction-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/logaction-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/logaction-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/logaction-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/logaction-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/logaction-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/logaction-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/logaction-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/logaction-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/logaction-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/logaction-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/logaction-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/logaction-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/logaction-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/logaction-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/logaction-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/logaction-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/logaction-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/logaction-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/logaction-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/logaction-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/logaction-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/logaction-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/logaction-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/logaction-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/logaction-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/logaction-plugin/deployments", + "created_at": "2010-12-13T05:44:09Z", + "updated_at": "2014-09-27T18:22:56Z", + "pushed_at": "2014-09-27T18:22:56Z", + "git_url": "git://github.com/jenkinsci/logaction-plugin.git", + "ssh_url": "git@github.com:jenkinsci/logaction-plugin.git", + "clone_url": "https://github.com/jenkinsci/logaction-plugin.git", + "svn_url": "https://github.com/jenkinsci/logaction-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 180, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163643, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjQz", + "name": "ldapemail-plugin", + "full_name": "jenkinsci/ldapemail-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/ldapemail-plugin", + "description": "Jenkins ldapemail plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/ldapemail-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/ldapemail-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/ldapemail-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/ldapemail-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/ldapemail-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/ldapemail-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/ldapemail-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/ldapemail-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/ldapemail-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/ldapemail-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/ldapemail-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/ldapemail-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/ldapemail-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/ldapemail-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/ldapemail-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/ldapemail-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/ldapemail-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/ldapemail-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/ldapemail-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/ldapemail-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/ldapemail-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/ldapemail-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/ldapemail-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/ldapemail-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/ldapemail-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/ldapemail-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/ldapemail-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/ldapemail-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/ldapemail-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/ldapemail-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/ldapemail-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/ldapemail-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/ldapemail-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/ldapemail-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/ldapemail-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/ldapemail-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/ldapemail-plugin/deployments", + "created_at": "2010-12-13T05:44:12Z", + "updated_at": "2014-07-08T20:19:33Z", + "pushed_at": "2019-10-08T10:03:07Z", + "git_url": "git://github.com/jenkinsci/ldapemail-plugin.git", + "ssh_url": "git@github.com:jenkinsci/ldapemail-plugin.git", + "clone_url": "https://github.com/jenkinsci/ldapemail-plugin.git", + "svn_url": "https://github.com/jenkinsci/ldapemail-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 81, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 4, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163644, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjQ0", + "name": "matrixtieparent-plugin", + "full_name": "jenkinsci/matrixtieparent-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/matrixtieparent-plugin", + "description": "Jenkins matrixtieparent plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/matrixtieparent-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/matrixtieparent-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/matrixtieparent-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/matrixtieparent-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/matrixtieparent-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/matrixtieparent-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/matrixtieparent-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/matrixtieparent-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/matrixtieparent-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/matrixtieparent-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/matrixtieparent-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/matrixtieparent-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/matrixtieparent-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/matrixtieparent-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/matrixtieparent-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/matrixtieparent-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/matrixtieparent-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/matrixtieparent-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/matrixtieparent-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/matrixtieparent-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/matrixtieparent-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/matrixtieparent-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/matrixtieparent-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/matrixtieparent-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/matrixtieparent-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/matrixtieparent-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/matrixtieparent-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/matrixtieparent-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/matrixtieparent-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/matrixtieparent-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/matrixtieparent-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/matrixtieparent-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/matrixtieparent-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/matrixtieparent-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/matrixtieparent-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/matrixtieparent-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/matrixtieparent-plugin/deployments", + "created_at": "2010-12-13T05:44:13Z", + "updated_at": "2014-09-11T11:51:43Z", + "pushed_at": "2019-10-08T12:10:40Z", + "git_url": "git://github.com/jenkinsci/matrixtieparent-plugin.git", + "ssh_url": "git@github.com:jenkinsci/matrixtieparent-plugin.git", + "clone_url": "https://github.com/jenkinsci/matrixtieparent-plugin.git", + "svn_url": "https://github.com/jenkinsci/matrixtieparent-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 146, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 3, + "open_issues": 1, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163645, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjQ1", + "name": "maven-dump-test-dependencies-plugin", + "full_name": "jenkinsci/maven-dump-test-dependencies-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/maven-dump-test-dependencies-plugin", + "description": "Jenkins maven-dump-test-dependencies plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/maven-dump-test-dependencies-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/maven-dump-test-dependencies-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/maven-dump-test-dependencies-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/maven-dump-test-dependencies-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/maven-dump-test-dependencies-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/maven-dump-test-dependencies-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/maven-dump-test-dependencies-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/maven-dump-test-dependencies-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/maven-dump-test-dependencies-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/maven-dump-test-dependencies-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/maven-dump-test-dependencies-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/maven-dump-test-dependencies-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/maven-dump-test-dependencies-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/maven-dump-test-dependencies-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/maven-dump-test-dependencies-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/maven-dump-test-dependencies-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/maven-dump-test-dependencies-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/maven-dump-test-dependencies-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/maven-dump-test-dependencies-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/maven-dump-test-dependencies-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/maven-dump-test-dependencies-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/maven-dump-test-dependencies-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/maven-dump-test-dependencies-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/maven-dump-test-dependencies-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/maven-dump-test-dependencies-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/maven-dump-test-dependencies-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/maven-dump-test-dependencies-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/maven-dump-test-dependencies-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/maven-dump-test-dependencies-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/maven-dump-test-dependencies-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/maven-dump-test-dependencies-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/maven-dump-test-dependencies-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/maven-dump-test-dependencies-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/maven-dump-test-dependencies-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/maven-dump-test-dependencies-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/maven-dump-test-dependencies-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/maven-dump-test-dependencies-plugin/deployments", + "created_at": "2010-12-13T05:44:13Z", + "updated_at": "2013-11-10T02:10:33Z", + "pushed_at": "2013-11-10T02:10:32Z", + "git_url": "git://github.com/jenkinsci/maven-dump-test-dependencies-plugin.git", + "ssh_url": "git@github.com:jenkinsci/maven-dump-test-dependencies-plugin.git", + "clone_url": "https://github.com/jenkinsci/maven-dump-test-dependencies-plugin.git", + "svn_url": "https://github.com/jenkinsci/maven-dump-test-dependencies-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 108, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163646, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjQ2", + "name": "maven-info-plugin", + "full_name": "jenkinsci/maven-info-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/maven-info-plugin", + "description": "Jenkins maven-info plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/maven-info-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/maven-info-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/maven-info-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/maven-info-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/maven-info-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/maven-info-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/maven-info-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/maven-info-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/maven-info-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/maven-info-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/maven-info-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/maven-info-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/maven-info-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/maven-info-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/maven-info-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/maven-info-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/maven-info-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/maven-info-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/maven-info-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/maven-info-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/maven-info-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/maven-info-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/maven-info-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/maven-info-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/maven-info-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/maven-info-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/maven-info-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/maven-info-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/maven-info-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/maven-info-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/maven-info-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/maven-info-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/maven-info-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/maven-info-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/maven-info-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/maven-info-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/maven-info-plugin/deployments", + "created_at": "2010-12-13T05:44:19Z", + "updated_at": "2016-11-15T07:06:06Z", + "pushed_at": "2019-09-24T10:35:06Z", + "git_url": "git://github.com/jenkinsci/maven-info-plugin.git", + "ssh_url": "git@github.com:jenkinsci/maven-info-plugin.git", + "clone_url": "https://github.com/jenkinsci/maven-info-plugin.git", + "svn_url": "https://github.com/jenkinsci/maven-info-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 127, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 14, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 4, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 14, + "open_issues": 4, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163647, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjQ3", + "name": "maven-repo-cleaner-plugin", + "full_name": "jenkinsci/maven-repo-cleaner-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/maven-repo-cleaner-plugin", + "description": "Jenkins maven-repo-cleaner plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/maven-repo-cleaner-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/maven-repo-cleaner-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/maven-repo-cleaner-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/maven-repo-cleaner-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/maven-repo-cleaner-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/maven-repo-cleaner-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/maven-repo-cleaner-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/maven-repo-cleaner-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/maven-repo-cleaner-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/maven-repo-cleaner-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/maven-repo-cleaner-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/maven-repo-cleaner-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/maven-repo-cleaner-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/maven-repo-cleaner-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/maven-repo-cleaner-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/maven-repo-cleaner-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/maven-repo-cleaner-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/maven-repo-cleaner-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/maven-repo-cleaner-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/maven-repo-cleaner-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/maven-repo-cleaner-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/maven-repo-cleaner-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/maven-repo-cleaner-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/maven-repo-cleaner-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/maven-repo-cleaner-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/maven-repo-cleaner-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/maven-repo-cleaner-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/maven-repo-cleaner-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/maven-repo-cleaner-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/maven-repo-cleaner-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/maven-repo-cleaner-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/maven-repo-cleaner-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/maven-repo-cleaner-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/maven-repo-cleaner-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/maven-repo-cleaner-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/maven-repo-cleaner-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/maven-repo-cleaner-plugin/deployments", + "created_at": "2010-12-13T05:44:20Z", + "updated_at": "2019-10-08T10:42:09Z", + "pushed_at": "2019-10-08T10:42:07Z", + "git_url": "git://github.com/jenkinsci/maven-repo-cleaner-plugin.git", + "ssh_url": "git@github.com:jenkinsci/maven-repo-cleaner-plugin.git", + "clone_url": "https://github.com/jenkinsci/maven-repo-cleaner-plugin.git", + "svn_url": "https://github.com/jenkinsci/maven-repo-cleaner-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 31, + "stargazers_count": 7, + "watchers_count": 7, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 9, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 9, + "open_issues": 1, + "watchers": 7, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163648, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjQ4", + "name": "maven3-plugin", + "full_name": "jenkinsci/maven3-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/maven3-plugin", + "description": "Jenkins maven3 plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/maven3-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/maven3-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/maven3-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/maven3-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/maven3-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/maven3-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/maven3-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/maven3-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/maven3-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/maven3-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/maven3-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/maven3-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/maven3-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/maven3-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/maven3-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/maven3-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/maven3-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/maven3-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/maven3-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/maven3-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/maven3-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/maven3-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/maven3-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/maven3-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/maven3-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/maven3-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/maven3-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/maven3-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/maven3-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/maven3-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/maven3-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/maven3-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/maven3-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/maven3-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/maven3-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/maven3-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/maven3-plugin/deployments", + "created_at": "2010-12-13T05:44:30Z", + "updated_at": "2013-11-10T02:11:00Z", + "pushed_at": "2013-11-10T02:10:55Z", + "git_url": "git://github.com/jenkinsci/maven3-plugin.git", + "ssh_url": "git@github.com:jenkinsci/maven3-plugin.git", + "clone_url": "https://github.com/jenkinsci/maven3-plugin.git", + "svn_url": "https://github.com/jenkinsci/maven3-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 116, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 1, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163649, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjQ5", + "name": "m2-extra-steps-plugin", + "full_name": "jenkinsci/m2-extra-steps-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/m2-extra-steps-plugin", + "description": "Jenkins m2-extra-steps plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/m2-extra-steps-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/m2-extra-steps-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/m2-extra-steps-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/m2-extra-steps-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/m2-extra-steps-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/m2-extra-steps-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/m2-extra-steps-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/m2-extra-steps-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/m2-extra-steps-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/m2-extra-steps-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/m2-extra-steps-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/m2-extra-steps-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/m2-extra-steps-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/m2-extra-steps-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/m2-extra-steps-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/m2-extra-steps-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/m2-extra-steps-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/m2-extra-steps-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/m2-extra-steps-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/m2-extra-steps-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/m2-extra-steps-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/m2-extra-steps-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/m2-extra-steps-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/m2-extra-steps-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/m2-extra-steps-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/m2-extra-steps-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/m2-extra-steps-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/m2-extra-steps-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/m2-extra-steps-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/m2-extra-steps-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/m2-extra-steps-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/m2-extra-steps-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/m2-extra-steps-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/m2-extra-steps-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/m2-extra-steps-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/m2-extra-steps-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/m2-extra-steps-plugin/deployments", + "created_at": "2010-12-13T05:44:31Z", + "updated_at": "2014-06-19T14:50:59Z", + "pushed_at": "2014-06-19T14:50:59Z", + "git_url": "git://github.com/jenkinsci/m2-extra-steps-plugin.git", + "ssh_url": "git@github.com:jenkinsci/m2-extra-steps-plugin.git", + "clone_url": "https://github.com/jenkinsci/m2-extra-steps-plugin.git", + "svn_url": "https://github.com/jenkinsci/m2-extra-steps-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 166, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 4, + "open_issues": 0, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163650, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjUw", + "name": "maven-dependency-update-trigger-plugin", + "full_name": "jenkinsci/maven-dependency-update-trigger-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/maven-dependency-update-trigger-plugin", + "description": "Jenkins maven-dependency-update-trigger plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/maven-dependency-update-trigger-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/maven-dependency-update-trigger-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/maven-dependency-update-trigger-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/maven-dependency-update-trigger-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/maven-dependency-update-trigger-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/maven-dependency-update-trigger-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/maven-dependency-update-trigger-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/maven-dependency-update-trigger-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/maven-dependency-update-trigger-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/maven-dependency-update-trigger-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/maven-dependency-update-trigger-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/maven-dependency-update-trigger-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/maven-dependency-update-trigger-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/maven-dependency-update-trigger-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/maven-dependency-update-trigger-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/maven-dependency-update-trigger-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/maven-dependency-update-trigger-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/maven-dependency-update-trigger-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/maven-dependency-update-trigger-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/maven-dependency-update-trigger-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/maven-dependency-update-trigger-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/maven-dependency-update-trigger-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/maven-dependency-update-trigger-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/maven-dependency-update-trigger-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/maven-dependency-update-trigger-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/maven-dependency-update-trigger-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/maven-dependency-update-trigger-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/maven-dependency-update-trigger-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/maven-dependency-update-trigger-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/maven-dependency-update-trigger-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/maven-dependency-update-trigger-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/maven-dependency-update-trigger-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/maven-dependency-update-trigger-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/maven-dependency-update-trigger-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/maven-dependency-update-trigger-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/maven-dependency-update-trigger-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/maven-dependency-update-trigger-plugin/deployments", + "created_at": "2010-12-13T05:44:35Z", + "updated_at": "2019-10-08T10:42:56Z", + "pushed_at": "2019-10-08T10:42:54Z", + "git_url": "git://github.com/jenkinsci/maven-dependency-update-trigger-plugin.git", + "ssh_url": "git@github.com:jenkinsci/maven-dependency-update-trigger-plugin.git", + "clone_url": "https://github.com/jenkinsci/maven-dependency-update-trigger-plugin.git", + "svn_url": "https://github.com/jenkinsci/maven-dependency-update-trigger-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 93, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 10, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 6, + "license": null, + "forks": 10, + "open_issues": 6, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163651, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjUx", + "name": "measurement-plots-plugin", + "full_name": "jenkinsci/measurement-plots-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/measurement-plots-plugin", + "description": "Jenkins measurement-plots plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/measurement-plots-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/measurement-plots-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/measurement-plots-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/measurement-plots-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/measurement-plots-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/measurement-plots-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/measurement-plots-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/measurement-plots-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/measurement-plots-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/measurement-plots-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/measurement-plots-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/measurement-plots-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/measurement-plots-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/measurement-plots-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/measurement-plots-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/measurement-plots-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/measurement-plots-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/measurement-plots-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/measurement-plots-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/measurement-plots-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/measurement-plots-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/measurement-plots-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/measurement-plots-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/measurement-plots-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/measurement-plots-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/measurement-plots-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/measurement-plots-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/measurement-plots-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/measurement-plots-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/measurement-plots-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/measurement-plots-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/measurement-plots-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/measurement-plots-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/measurement-plots-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/measurement-plots-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/measurement-plots-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/measurement-plots-plugin/deployments", + "created_at": "2010-12-13T05:44:42Z", + "updated_at": "2016-10-07T08:03:15Z", + "pushed_at": "2014-07-22T17:59:26Z", + "git_url": "git://github.com/jenkinsci/measurement-plots-plugin.git", + "ssh_url": "git@github.com:jenkinsci/measurement-plots-plugin.git", + "clone_url": "https://github.com/jenkinsci/measurement-plots-plugin.git", + "svn_url": "https://github.com/jenkinsci/measurement-plots-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 134, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 3, + "open_issues": 0, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163652, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjUy", + "name": "maven-scm-plugin", + "full_name": "jenkinsci/maven-scm-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/maven-scm-plugin", + "description": "Jenkins maven-scm plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/maven-scm-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/maven-scm-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/maven-scm-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/maven-scm-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/maven-scm-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/maven-scm-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/maven-scm-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/maven-scm-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/maven-scm-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/maven-scm-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/maven-scm-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/maven-scm-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/maven-scm-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/maven-scm-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/maven-scm-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/maven-scm-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/maven-scm-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/maven-scm-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/maven-scm-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/maven-scm-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/maven-scm-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/maven-scm-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/maven-scm-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/maven-scm-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/maven-scm-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/maven-scm-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/maven-scm-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/maven-scm-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/maven-scm-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/maven-scm-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/maven-scm-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/maven-scm-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/maven-scm-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/maven-scm-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/maven-scm-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/maven-scm-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/maven-scm-plugin/deployments", + "created_at": "2010-12-13T05:44:46Z", + "updated_at": "2013-12-14T12:11:45Z", + "pushed_at": "2013-11-10T02:10:51Z", + "git_url": "git://github.com/jenkinsci/maven-scm-plugin.git", + "ssh_url": "git@github.com:jenkinsci/maven-scm-plugin.git", + "clone_url": "https://github.com/jenkinsci/maven-scm-plugin.git", + "svn_url": "https://github.com/jenkinsci/maven-scm-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 164, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163653, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjUz", + "name": "mibsr-m2-plugin", + "full_name": "jenkinsci/mibsr-m2-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/mibsr-m2-plugin", + "description": "Jenkins mibsr-m2 plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/mibsr-m2-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/mibsr-m2-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/mibsr-m2-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/mibsr-m2-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/mibsr-m2-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/mibsr-m2-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/mibsr-m2-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/mibsr-m2-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/mibsr-m2-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/mibsr-m2-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/mibsr-m2-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/mibsr-m2-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/mibsr-m2-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/mibsr-m2-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/mibsr-m2-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/mibsr-m2-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/mibsr-m2-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/mibsr-m2-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/mibsr-m2-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/mibsr-m2-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/mibsr-m2-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/mibsr-m2-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/mibsr-m2-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/mibsr-m2-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/mibsr-m2-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/mibsr-m2-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/mibsr-m2-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/mibsr-m2-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/mibsr-m2-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/mibsr-m2-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/mibsr-m2-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/mibsr-m2-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/mibsr-m2-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/mibsr-m2-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/mibsr-m2-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/mibsr-m2-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/mibsr-m2-plugin/deployments", + "created_at": "2010-12-13T05:44:48Z", + "updated_at": "2013-11-10T02:11:14Z", + "pushed_at": "2013-11-10T02:11:11Z", + "git_url": "git://github.com/jenkinsci/mibsr-m2-plugin.git", + "ssh_url": "git@github.com:jenkinsci/mibsr-m2-plugin.git", + "clone_url": "https://github.com/jenkinsci/mibsr-m2-plugin.git", + "svn_url": "https://github.com/jenkinsci/mibsr-m2-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 112, + "stargazers_count": 1, + "watchers_count": 1, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163654, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjU0", + "name": "maven-deployment-linker-plugin", + "full_name": "jenkinsci/maven-deployment-linker-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/maven-deployment-linker-plugin", + "description": "Jenkins maven-deployment-linker plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/maven-deployment-linker-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/maven-deployment-linker-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/maven-deployment-linker-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/maven-deployment-linker-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/maven-deployment-linker-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/maven-deployment-linker-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/maven-deployment-linker-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/maven-deployment-linker-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/maven-deployment-linker-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/maven-deployment-linker-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/maven-deployment-linker-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/maven-deployment-linker-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/maven-deployment-linker-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/maven-deployment-linker-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/maven-deployment-linker-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/maven-deployment-linker-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/maven-deployment-linker-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/maven-deployment-linker-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/maven-deployment-linker-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/maven-deployment-linker-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/maven-deployment-linker-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/maven-deployment-linker-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/maven-deployment-linker-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/maven-deployment-linker-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/maven-deployment-linker-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/maven-deployment-linker-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/maven-deployment-linker-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/maven-deployment-linker-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/maven-deployment-linker-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/maven-deployment-linker-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/maven-deployment-linker-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/maven-deployment-linker-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/maven-deployment-linker-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/maven-deployment-linker-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/maven-deployment-linker-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/maven-deployment-linker-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/maven-deployment-linker-plugin/deployments", + "created_at": "2010-12-13T05:44:50Z", + "updated_at": "2017-10-29T17:33:04Z", + "pushed_at": "2018-11-25T13:38:51Z", + "git_url": "git://github.com/jenkinsci/maven-deployment-linker-plugin.git", + "ssh_url": "git@github.com:jenkinsci/maven-deployment-linker-plugin.git", + "clone_url": "https://github.com/jenkinsci/maven-deployment-linker-plugin.git", + "svn_url": "https://github.com/jenkinsci/maven-deployment-linker-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 42, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 18, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 18, + "open_issues": 2, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163655, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjU1", + "name": "locks-and-latches-plugin", + "full_name": "jenkinsci/locks-and-latches-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/locks-and-latches-plugin", + "description": "Jenkins locks-and-latches plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/locks-and-latches-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/locks-and-latches-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/locks-and-latches-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/locks-and-latches-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/locks-and-latches-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/locks-and-latches-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/locks-and-latches-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/locks-and-latches-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/locks-and-latches-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/locks-and-latches-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/locks-and-latches-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/locks-and-latches-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/locks-and-latches-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/locks-and-latches-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/locks-and-latches-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/locks-and-latches-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/locks-and-latches-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/locks-and-latches-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/locks-and-latches-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/locks-and-latches-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/locks-and-latches-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/locks-and-latches-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/locks-and-latches-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/locks-and-latches-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/locks-and-latches-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/locks-and-latches-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/locks-and-latches-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/locks-and-latches-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/locks-and-latches-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/locks-and-latches-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/locks-and-latches-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/locks-and-latches-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/locks-and-latches-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/locks-and-latches-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/locks-and-latches-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/locks-and-latches-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/locks-and-latches-plugin/deployments", + "created_at": "2010-12-13T05:44:51Z", + "updated_at": "2017-06-15T16:49:37Z", + "pushed_at": "2013-11-10T02:09:48Z", + "git_url": "git://github.com/jenkinsci/locks-and-latches-plugin.git", + "ssh_url": "git@github.com:jenkinsci/locks-and-latches-plugin.git", + "clone_url": "https://github.com/jenkinsci/locks-and-latches-plugin.git", + "svn_url": "https://github.com/jenkinsci/locks-and-latches-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 218, + "stargazers_count": 10, + "watchers_count": 10, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 9, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": null, + "forks": 9, + "open_issues": 3, + "watchers": 10, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163656, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjU2", + "name": "mozmill-plugin", + "full_name": "jenkinsci/mozmill-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/mozmill-plugin", + "description": "Jenkins mozmill plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/mozmill-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/mozmill-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/mozmill-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/mozmill-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/mozmill-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/mozmill-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/mozmill-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/mozmill-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/mozmill-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/mozmill-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/mozmill-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/mozmill-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/mozmill-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/mozmill-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/mozmill-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/mozmill-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/mozmill-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/mozmill-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/mozmill-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/mozmill-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/mozmill-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/mozmill-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/mozmill-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/mozmill-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/mozmill-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/mozmill-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/mozmill-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/mozmill-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/mozmill-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/mozmill-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/mozmill-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/mozmill-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/mozmill-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/mozmill-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/mozmill-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/mozmill-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/mozmill-plugin/deployments", + "created_at": "2010-12-13T05:45:11Z", + "updated_at": "2013-11-10T02:11:38Z", + "pushed_at": "2013-11-10T02:11:32Z", + "git_url": "git://github.com/jenkinsci/mozmill-plugin.git", + "ssh_url": "git@github.com:jenkinsci/mozmill-plugin.git", + "clone_url": "https://github.com/jenkinsci/mozmill-plugin.git", + "svn_url": "https://github.com/jenkinsci/mozmill-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 8656, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163658, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjU4", + "name": "maven1-snapshot-plugin-plugin", + "full_name": "jenkinsci/maven1-snapshot-plugin-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/maven1-snapshot-plugin-plugin", + "description": "Jenkins maven1-snapshot-plugin plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/maven1-snapshot-plugin-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/maven1-snapshot-plugin-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/maven1-snapshot-plugin-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/maven1-snapshot-plugin-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/maven1-snapshot-plugin-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/maven1-snapshot-plugin-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/maven1-snapshot-plugin-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/maven1-snapshot-plugin-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/maven1-snapshot-plugin-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/maven1-snapshot-plugin-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/maven1-snapshot-plugin-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/maven1-snapshot-plugin-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/maven1-snapshot-plugin-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/maven1-snapshot-plugin-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/maven1-snapshot-plugin-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/maven1-snapshot-plugin-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/maven1-snapshot-plugin-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/maven1-snapshot-plugin-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/maven1-snapshot-plugin-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/maven1-snapshot-plugin-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/maven1-snapshot-plugin-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/maven1-snapshot-plugin-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/maven1-snapshot-plugin-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/maven1-snapshot-plugin-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/maven1-snapshot-plugin-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/maven1-snapshot-plugin-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/maven1-snapshot-plugin-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/maven1-snapshot-plugin-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/maven1-snapshot-plugin-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/maven1-snapshot-plugin-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/maven1-snapshot-plugin-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/maven1-snapshot-plugin-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/maven1-snapshot-plugin-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/maven1-snapshot-plugin-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/maven1-snapshot-plugin-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/maven1-snapshot-plugin-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/maven1-snapshot-plugin-plugin/deployments", + "created_at": "2010-12-13T05:45:28Z", + "updated_at": "2013-11-10T02:11:03Z", + "pushed_at": "2013-11-10T02:10:54Z", + "git_url": "git://github.com/jenkinsci/maven1-snapshot-plugin-plugin.git", + "ssh_url": "git@github.com:jenkinsci/maven1-snapshot-plugin-plugin.git", + "clone_url": "https://github.com/jenkinsci/maven1-snapshot-plugin-plugin.git", + "svn_url": "https://github.com/jenkinsci/maven1-snapshot-plugin-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 212, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163659, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjU5", + "name": "mysql-auth-plugin", + "full_name": "jenkinsci/mysql-auth-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/mysql-auth-plugin", + "description": "Jenkins mysql-auth plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/mysql-auth-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/mysql-auth-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/mysql-auth-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/mysql-auth-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/mysql-auth-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/mysql-auth-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/mysql-auth-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/mysql-auth-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/mysql-auth-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/mysql-auth-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/mysql-auth-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/mysql-auth-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/mysql-auth-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/mysql-auth-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/mysql-auth-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/mysql-auth-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/mysql-auth-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/mysql-auth-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/mysql-auth-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/mysql-auth-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/mysql-auth-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/mysql-auth-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/mysql-auth-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/mysql-auth-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/mysql-auth-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/mysql-auth-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/mysql-auth-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/mysql-auth-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/mysql-auth-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/mysql-auth-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/mysql-auth-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/mysql-auth-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/mysql-auth-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/mysql-auth-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/mysql-auth-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/mysql-auth-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/mysql-auth-plugin/deployments", + "created_at": "2010-12-13T05:45:30Z", + "updated_at": "2016-11-16T02:25:46Z", + "pushed_at": "2015-11-17T18:44:52Z", + "git_url": "git://github.com/jenkinsci/mysql-auth-plugin.git", + "ssh_url": "git@github.com:jenkinsci/mysql-auth-plugin.git", + "clone_url": "https://github.com/jenkinsci/mysql-auth-plugin.git", + "svn_url": "https://github.com/jenkinsci/mysql-auth-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 122, + "stargazers_count": 12, + "watchers_count": 12, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 9, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 9, + "open_issues": 2, + "watchers": 12, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163660, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjYw", + "name": "next-build-number-plugin", + "full_name": "jenkinsci/next-build-number-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/next-build-number-plugin", + "description": "Jenkins next-build-number plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/next-build-number-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/next-build-number-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/next-build-number-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/next-build-number-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/next-build-number-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/next-build-number-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/next-build-number-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/next-build-number-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/next-build-number-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/next-build-number-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/next-build-number-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/next-build-number-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/next-build-number-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/next-build-number-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/next-build-number-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/next-build-number-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/next-build-number-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/next-build-number-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/next-build-number-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/next-build-number-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/next-build-number-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/next-build-number-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/next-build-number-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/next-build-number-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/next-build-number-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/next-build-number-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/next-build-number-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/next-build-number-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/next-build-number-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/next-build-number-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/next-build-number-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/next-build-number-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/next-build-number-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/next-build-number-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/next-build-number-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/next-build-number-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/next-build-number-plugin/deployments", + "created_at": "2010-12-13T05:45:44Z", + "updated_at": "2019-09-02T15:08:34Z", + "pushed_at": "2019-09-02T15:16:09Z", + "git_url": "git://github.com/jenkinsci/next-build-number-plugin.git", + "ssh_url": "git@github.com:jenkinsci/next-build-number-plugin.git", + "clone_url": "https://github.com/jenkinsci/next-build-number-plugin.git", + "svn_url": "https://github.com/jenkinsci/next-build-number-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 37, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 8, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 8, + "open_issues": 0, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163661, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjYx", + "name": "nodejs-plugin", + "full_name": "jenkinsci/nodejs-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/nodejs-plugin", + "description": "Jenkins nodejs plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/nodejs-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/nodejs-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/nodejs-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/nodejs-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/nodejs-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/nodejs-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/nodejs-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/nodejs-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/nodejs-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/nodejs-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/nodejs-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/nodejs-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/nodejs-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/nodejs-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/nodejs-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/nodejs-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/nodejs-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/nodejs-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/nodejs-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/nodejs-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/nodejs-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/nodejs-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/nodejs-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/nodejs-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/nodejs-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/nodejs-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/nodejs-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/nodejs-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/nodejs-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/nodejs-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/nodejs-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/nodejs-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/nodejs-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/nodejs-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/nodejs-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/nodejs-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/nodejs-plugin/deployments", + "created_at": "2010-12-13T05:45:55Z", + "updated_at": "2019-10-24T14:19:32Z", + "pushed_at": "2019-10-14T07:50:18Z", + "git_url": "git://github.com/jenkinsci/nodejs-plugin.git", + "ssh_url": "git@github.com:jenkinsci/nodejs-plugin.git", + "clone_url": "https://github.com/jenkinsci/nodejs-plugin.git", + "svn_url": "https://github.com/jenkinsci/nodejs-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 404, + "stargazers_count": 48, + "watchers_count": 48, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 56, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 56, + "open_issues": 0, + "watchers": 48, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163662, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjYy", + "name": "nested-view-plugin", + "full_name": "jenkinsci/nested-view-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/nested-view-plugin", + "description": "Jenkins nested-view plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/nested-view-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/nested-view-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/nested-view-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/nested-view-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/nested-view-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/nested-view-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/nested-view-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/nested-view-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/nested-view-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/nested-view-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/nested-view-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/nested-view-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/nested-view-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/nested-view-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/nested-view-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/nested-view-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/nested-view-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/nested-view-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/nested-view-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/nested-view-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/nested-view-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/nested-view-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/nested-view-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/nested-view-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/nested-view-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/nested-view-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/nested-view-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/nested-view-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/nested-view-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/nested-view-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/nested-view-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/nested-view-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/nested-view-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/nested-view-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/nested-view-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/nested-view-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/nested-view-plugin/deployments", + "created_at": "2010-12-13T05:46:04Z", + "updated_at": "2018-11-07T13:18:13Z", + "pushed_at": "2019-09-25T20:28:15Z", + "git_url": "git://github.com/jenkinsci/nested-view-plugin.git", + "ssh_url": "git@github.com:jenkinsci/nested-view-plugin.git", + "clone_url": "https://github.com/jenkinsci/nested-view-plugin.git", + "svn_url": "https://github.com/jenkinsci/nested-view-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 113, + "stargazers_count": 7, + "watchers_count": 7, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 21, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 21, + "open_issues": 1, + "watchers": 7, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163663, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjYz", + "name": "nodenamecolumn-plugin", + "full_name": "jenkinsci/nodenamecolumn-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/nodenamecolumn-plugin", + "description": "Jenkins nodenamecolumn plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/nodenamecolumn-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/nodenamecolumn-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/nodenamecolumn-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/nodenamecolumn-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/nodenamecolumn-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/nodenamecolumn-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/nodenamecolumn-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/nodenamecolumn-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/nodenamecolumn-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/nodenamecolumn-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/nodenamecolumn-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/nodenamecolumn-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/nodenamecolumn-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/nodenamecolumn-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/nodenamecolumn-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/nodenamecolumn-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/nodenamecolumn-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/nodenamecolumn-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/nodenamecolumn-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/nodenamecolumn-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/nodenamecolumn-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/nodenamecolumn-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/nodenamecolumn-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/nodenamecolumn-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/nodenamecolumn-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/nodenamecolumn-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/nodenamecolumn-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/nodenamecolumn-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/nodenamecolumn-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/nodenamecolumn-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/nodenamecolumn-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/nodenamecolumn-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/nodenamecolumn-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/nodenamecolumn-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/nodenamecolumn-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/nodenamecolumn-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/nodenamecolumn-plugin/deployments", + "created_at": "2010-12-13T05:46:04Z", + "updated_at": "2018-07-19T07:04:32Z", + "pushed_at": "2019-10-08T11:48:56Z", + "git_url": "git://github.com/jenkinsci/nodenamecolumn-plugin.git", + "ssh_url": "git@github.com:jenkinsci/nodenamecolumn-plugin.git", + "clone_url": "https://github.com/jenkinsci/nodenamecolumn-plugin.git", + "svn_url": "https://github.com/jenkinsci/nodenamecolumn-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 12, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 4, + "open_issues": 2, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163664, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjY0", + "name": "network-monitor-plugin", + "full_name": "jenkinsci/network-monitor-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/network-monitor-plugin", + "description": "Jenkins network-monitor plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/network-monitor-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/network-monitor-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/network-monitor-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/network-monitor-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/network-monitor-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/network-monitor-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/network-monitor-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/network-monitor-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/network-monitor-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/network-monitor-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/network-monitor-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/network-monitor-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/network-monitor-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/network-monitor-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/network-monitor-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/network-monitor-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/network-monitor-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/network-monitor-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/network-monitor-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/network-monitor-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/network-monitor-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/network-monitor-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/network-monitor-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/network-monitor-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/network-monitor-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/network-monitor-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/network-monitor-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/network-monitor-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/network-monitor-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/network-monitor-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/network-monitor-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/network-monitor-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/network-monitor-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/network-monitor-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/network-monitor-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/network-monitor-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/network-monitor-plugin/deployments", + "created_at": "2010-12-13T05:46:16Z", + "updated_at": "2013-11-10T02:12:03Z", + "pushed_at": "2019-10-08T16:23:34Z", + "git_url": "git://github.com/jenkinsci/network-monitor-plugin.git", + "ssh_url": "git@github.com:jenkinsci/network-monitor-plugin.git", + "clone_url": "https://github.com/jenkinsci/network-monitor-plugin.git", + "svn_url": "https://github.com/jenkinsci/network-monitor-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 180, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 2, + "open_issues": 1, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163665, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjY1", + "name": "ncover-plugin", + "full_name": "jenkinsci/ncover-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/ncover-plugin", + "description": "Jenkins ncover plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/ncover-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/ncover-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/ncover-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/ncover-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/ncover-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/ncover-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/ncover-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/ncover-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/ncover-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/ncover-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/ncover-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/ncover-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/ncover-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/ncover-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/ncover-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/ncover-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/ncover-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/ncover-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/ncover-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/ncover-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/ncover-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/ncover-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/ncover-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/ncover-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/ncover-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/ncover-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/ncover-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/ncover-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/ncover-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/ncover-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/ncover-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/ncover-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/ncover-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/ncover-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/ncover-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/ncover-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/ncover-plugin/deployments", + "created_at": "2010-12-13T05:46:19Z", + "updated_at": "2014-01-15T15:50:01Z", + "pushed_at": "2013-11-10T02:11:55Z", + "git_url": "git://github.com/jenkinsci/ncover-plugin.git", + "ssh_url": "git@github.com:jenkinsci/ncover-plugin.git", + "clone_url": "https://github.com/jenkinsci/ncover-plugin.git", + "svn_url": "https://github.com/jenkinsci/ncover-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 136, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163666, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjY2", + "name": "nsiqcollector-plugin", + "full_name": "jenkinsci/nsiqcollector-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/nsiqcollector-plugin", + "description": "Jenkins nsiqcollector plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/nsiqcollector-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/nsiqcollector-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/nsiqcollector-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/nsiqcollector-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/nsiqcollector-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/nsiqcollector-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/nsiqcollector-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/nsiqcollector-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/nsiqcollector-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/nsiqcollector-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/nsiqcollector-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/nsiqcollector-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/nsiqcollector-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/nsiqcollector-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/nsiqcollector-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/nsiqcollector-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/nsiqcollector-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/nsiqcollector-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/nsiqcollector-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/nsiqcollector-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/nsiqcollector-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/nsiqcollector-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/nsiqcollector-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/nsiqcollector-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/nsiqcollector-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/nsiqcollector-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/nsiqcollector-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/nsiqcollector-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/nsiqcollector-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/nsiqcollector-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/nsiqcollector-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/nsiqcollector-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/nsiqcollector-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/nsiqcollector-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/nsiqcollector-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/nsiqcollector-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/nsiqcollector-plugin/deployments", + "created_at": "2010-12-13T05:46:20Z", + "updated_at": "2015-09-02T12:55:55Z", + "pushed_at": "2019-10-08T16:32:32Z", + "git_url": "git://github.com/jenkinsci/nsiqcollector-plugin.git", + "ssh_url": "git@github.com:jenkinsci/nsiqcollector-plugin.git", + "clone_url": "https://github.com/jenkinsci/nsiqcollector-plugin.git", + "svn_url": "https://github.com/jenkinsci/nsiqcollector-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 167, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 5, + "open_issues": 1, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163667, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjY3", + "name": "mstest-plugin", + "full_name": "jenkinsci/mstest-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/mstest-plugin", + "description": "Jenkins mstest plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/mstest-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/mstest-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/mstest-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/mstest-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/mstest-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/mstest-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/mstest-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/mstest-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/mstest-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/mstest-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/mstest-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/mstest-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/mstest-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/mstest-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/mstest-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/mstest-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/mstest-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/mstest-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/mstest-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/mstest-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/mstest-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/mstest-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/mstest-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/mstest-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/mstest-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/mstest-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/mstest-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/mstest-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/mstest-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/mstest-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/mstest-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/mstest-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/mstest-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/mstest-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/mstest-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/mstest-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/mstest-plugin/deployments", + "created_at": "2010-12-13T05:46:22Z", + "updated_at": "2019-10-10T22:57:51Z", + "pushed_at": "2019-09-25T01:30:47Z", + "git_url": "git://github.com/jenkinsci/mstest-plugin.git", + "ssh_url": "git@github.com:jenkinsci/mstest-plugin.git", + "clone_url": "https://github.com/jenkinsci/mstest-plugin.git", + "svn_url": "https://github.com/jenkinsci/mstest-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 511, + "stargazers_count": 20, + "watchers_count": 20, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 26, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 26, + "open_issues": 1, + "watchers": 20, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163668, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjY4", + "name": "naginator-plugin", + "full_name": "jenkinsci/naginator-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/naginator-plugin", + "description": "Jenkins naginator plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/naginator-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/naginator-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/naginator-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/naginator-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/naginator-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/naginator-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/naginator-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/naginator-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/naginator-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/naginator-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/naginator-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/naginator-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/naginator-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/naginator-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/naginator-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/naginator-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/naginator-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/naginator-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/naginator-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/naginator-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/naginator-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/naginator-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/naginator-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/naginator-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/naginator-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/naginator-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/naginator-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/naginator-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/naginator-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/naginator-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/naginator-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/naginator-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/naginator-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/naginator-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/naginator-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/naginator-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/naginator-plugin/deployments", + "created_at": "2010-12-13T05:46:24Z", + "updated_at": "2019-09-24T13:26:45Z", + "pushed_at": "2019-09-24T13:26:39Z", + "git_url": "git://github.com/jenkinsci/naginator-plugin.git", + "ssh_url": "git@github.com:jenkinsci/naginator-plugin.git", + "clone_url": "https://github.com/jenkinsci/naginator-plugin.git", + "svn_url": "https://github.com/jenkinsci/naginator-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 267, + "stargazers_count": 14, + "watchers_count": 14, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 40, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 40, + "open_issues": 2, + "watchers": 14, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163669, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjY5", + "name": "origo-issue-notifier-plugin", + "full_name": "jenkinsci/origo-issue-notifier-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/origo-issue-notifier-plugin", + "description": "Jenkins origo-issue-notifier plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/origo-issue-notifier-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/origo-issue-notifier-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/origo-issue-notifier-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/origo-issue-notifier-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/origo-issue-notifier-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/origo-issue-notifier-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/origo-issue-notifier-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/origo-issue-notifier-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/origo-issue-notifier-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/origo-issue-notifier-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/origo-issue-notifier-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/origo-issue-notifier-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/origo-issue-notifier-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/origo-issue-notifier-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/origo-issue-notifier-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/origo-issue-notifier-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/origo-issue-notifier-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/origo-issue-notifier-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/origo-issue-notifier-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/origo-issue-notifier-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/origo-issue-notifier-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/origo-issue-notifier-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/origo-issue-notifier-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/origo-issue-notifier-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/origo-issue-notifier-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/origo-issue-notifier-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/origo-issue-notifier-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/origo-issue-notifier-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/origo-issue-notifier-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/origo-issue-notifier-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/origo-issue-notifier-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/origo-issue-notifier-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/origo-issue-notifier-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/origo-issue-notifier-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/origo-issue-notifier-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/origo-issue-notifier-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/origo-issue-notifier-plugin/deployments", + "created_at": "2010-12-13T05:46:25Z", + "updated_at": "2013-11-10T02:12:33Z", + "pushed_at": "2013-11-10T02:12:32Z", + "git_url": "git://github.com/jenkinsci/origo-issue-notifier-plugin.git", + "ssh_url": "git@github.com:jenkinsci/origo-issue-notifier-plugin.git", + "clone_url": "https://github.com/jenkinsci/origo-issue-notifier-plugin.git", + "svn_url": "https://github.com/jenkinsci/origo-issue-notifier-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 116, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163670, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjcw", + "name": "msbuild-plugin", + "full_name": "jenkinsci/msbuild-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/msbuild-plugin", + "description": "Jenkins msbuild plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/msbuild-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/msbuild-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/msbuild-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/msbuild-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/msbuild-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/msbuild-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/msbuild-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/msbuild-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/msbuild-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/msbuild-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/msbuild-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/msbuild-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/msbuild-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/msbuild-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/msbuild-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/msbuild-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/msbuild-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/msbuild-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/msbuild-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/msbuild-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/msbuild-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/msbuild-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/msbuild-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/msbuild-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/msbuild-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/msbuild-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/msbuild-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/msbuild-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/msbuild-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/msbuild-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/msbuild-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/msbuild-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/msbuild-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/msbuild-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/msbuild-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/msbuild-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/msbuild-plugin/deployments", + "created_at": "2010-12-13T05:46:26Z", + "updated_at": "2019-05-20T08:50:04Z", + "pushed_at": "2019-09-20T21:01:16Z", + "git_url": "git://github.com/jenkinsci/msbuild-plugin.git", + "ssh_url": "git@github.com:jenkinsci/msbuild-plugin.git", + "clone_url": "https://github.com/jenkinsci/msbuild-plugin.git", + "svn_url": "https://github.com/jenkinsci/msbuild-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 212, + "stargazers_count": 55, + "watchers_count": 55, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 68, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": null, + "forks": 68, + "open_issues": 3, + "watchers": 55, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163671, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjcx", + "name": "nabaztag-plugin", + "full_name": "jenkinsci/nabaztag-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/nabaztag-plugin", + "description": "Jenkins nabaztag plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/nabaztag-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/nabaztag-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/nabaztag-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/nabaztag-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/nabaztag-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/nabaztag-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/nabaztag-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/nabaztag-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/nabaztag-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/nabaztag-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/nabaztag-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/nabaztag-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/nabaztag-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/nabaztag-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/nabaztag-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/nabaztag-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/nabaztag-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/nabaztag-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/nabaztag-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/nabaztag-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/nabaztag-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/nabaztag-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/nabaztag-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/nabaztag-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/nabaztag-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/nabaztag-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/nabaztag-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/nabaztag-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/nabaztag-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/nabaztag-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/nabaztag-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/nabaztag-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/nabaztag-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/nabaztag-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/nabaztag-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/nabaztag-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/nabaztag-plugin/deployments", + "created_at": "2010-12-13T05:46:26Z", + "updated_at": "2013-11-10T02:12:00Z", + "pushed_at": "2013-11-10T02:11:50Z", + "git_url": "git://github.com/jenkinsci/nabaztag-plugin.git", + "ssh_url": "git@github.com:jenkinsci/nabaztag-plugin.git", + "clone_url": "https://github.com/jenkinsci/nabaztag-plugin.git", + "svn_url": "https://github.com/jenkinsci/nabaztag-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 161, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163672, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjcy", + "name": "nant-plugin", + "full_name": "jenkinsci/nant-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/nant-plugin", + "description": "Jenkins nant plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/nant-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/nant-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/nant-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/nant-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/nant-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/nant-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/nant-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/nant-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/nant-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/nant-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/nant-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/nant-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/nant-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/nant-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/nant-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/nant-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/nant-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/nant-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/nant-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/nant-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/nant-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/nant-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/nant-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/nant-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/nant-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/nant-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/nant-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/nant-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/nant-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/nant-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/nant-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/nant-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/nant-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/nant-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/nant-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/nant-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/nant-plugin/deployments", + "created_at": "2010-12-13T05:46:26Z", + "updated_at": "2017-06-09T10:55:44Z", + "pushed_at": "2019-10-08T10:04:26Z", + "git_url": "git://github.com/jenkinsci/nant-plugin.git", + "ssh_url": "git@github.com:jenkinsci/nant-plugin.git", + "clone_url": "https://github.com/jenkinsci/nant-plugin.git", + "svn_url": "https://github.com/jenkinsci/nant-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 255, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 5, + "open_issues": 2, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163673, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjcz", + "name": "monitoring-plugin", + "full_name": "jenkinsci/monitoring-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/monitoring-plugin", + "description": "Jenkins monitoring plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/monitoring-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/monitoring-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/monitoring-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/monitoring-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/monitoring-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/monitoring-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/monitoring-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/monitoring-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/monitoring-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/monitoring-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/monitoring-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/monitoring-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/monitoring-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/monitoring-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/monitoring-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/monitoring-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/monitoring-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/monitoring-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/monitoring-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/monitoring-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/monitoring-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/monitoring-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/monitoring-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/monitoring-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/monitoring-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/monitoring-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/monitoring-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/monitoring-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/monitoring-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/monitoring-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/monitoring-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/monitoring-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/monitoring-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/monitoring-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/monitoring-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/monitoring-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/monitoring-plugin/deployments", + "created_at": "2010-12-13T05:46:27Z", + "updated_at": "2019-10-15T22:53:51Z", + "pushed_at": "2019-10-15T22:53:49Z", + "git_url": "git://github.com/jenkinsci/monitoring-plugin.git", + "ssh_url": "git@github.com:jenkinsci/monitoring-plugin.git", + "clone_url": "https://github.com/jenkinsci/monitoring-plugin.git", + "svn_url": "https://github.com/jenkinsci/monitoring-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 987, + "stargazers_count": 13, + "watchers_count": 13, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 14, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 14, + "open_issues": 0, + "watchers": 13, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163674, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjc0", + "name": "parameter-defaults-options-plugin", + "full_name": "jenkinsci/parameter-defaults-options-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/parameter-defaults-options-plugin", + "description": "Jenkins parameter-defaults-options plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/parameter-defaults-options-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/parameter-defaults-options-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/parameter-defaults-options-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/parameter-defaults-options-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/parameter-defaults-options-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/parameter-defaults-options-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/parameter-defaults-options-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/parameter-defaults-options-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/parameter-defaults-options-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/parameter-defaults-options-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/parameter-defaults-options-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/parameter-defaults-options-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/parameter-defaults-options-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/parameter-defaults-options-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/parameter-defaults-options-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/parameter-defaults-options-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/parameter-defaults-options-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/parameter-defaults-options-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/parameter-defaults-options-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/parameter-defaults-options-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/parameter-defaults-options-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/parameter-defaults-options-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/parameter-defaults-options-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/parameter-defaults-options-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/parameter-defaults-options-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/parameter-defaults-options-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/parameter-defaults-options-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/parameter-defaults-options-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/parameter-defaults-options-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/parameter-defaults-options-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/parameter-defaults-options-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/parameter-defaults-options-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/parameter-defaults-options-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/parameter-defaults-options-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/parameter-defaults-options-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/parameter-defaults-options-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/parameter-defaults-options-plugin/deployments", + "created_at": "2010-12-13T05:46:30Z", + "updated_at": "2014-03-05T09:42:18Z", + "pushed_at": "2013-11-10T02:12:44Z", + "git_url": "git://github.com/jenkinsci/parameter-defaults-options-plugin.git", + "ssh_url": "git@github.com:jenkinsci/parameter-defaults-options-plugin.git", + "clone_url": "https://github.com/jenkinsci/parameter-defaults-options-plugin.git", + "svn_url": "https://github.com/jenkinsci/parameter-defaults-options-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 116, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163675, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjc1", + "name": "mantis-plugin", + "full_name": "jenkinsci/mantis-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/mantis-plugin", + "description": "Jenkins mantis plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/mantis-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/mantis-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/mantis-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/mantis-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/mantis-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/mantis-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/mantis-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/mantis-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/mantis-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/mantis-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/mantis-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/mantis-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/mantis-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/mantis-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/mantis-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/mantis-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/mantis-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/mantis-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/mantis-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/mantis-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/mantis-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/mantis-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/mantis-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/mantis-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/mantis-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/mantis-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/mantis-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/mantis-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/mantis-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/mantis-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/mantis-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/mantis-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/mantis-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/mantis-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/mantis-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/mantis-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/mantis-plugin/deployments", + "created_at": "2010-12-13T05:46:30Z", + "updated_at": "2019-07-17T16:22:58Z", + "pushed_at": "2019-10-08T16:13:48Z", + "git_url": "git://github.com/jenkinsci/mantis-plugin.git", + "ssh_url": "git@github.com:jenkinsci/mantis-plugin.git", + "clone_url": "https://github.com/jenkinsci/mantis-plugin.git", + "svn_url": "https://github.com/jenkinsci/mantis-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 1193, + "stargazers_count": 15, + "watchers_count": 15, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 18, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": null, + "forks": 18, + "open_issues": 3, + "watchers": 15, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163677, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjc3", + "name": "nunit-plugin", + "full_name": "jenkinsci/nunit-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/nunit-plugin", + "description": "Jenkins nunit plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/nunit-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/nunit-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/nunit-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/nunit-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/nunit-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/nunit-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/nunit-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/nunit-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/nunit-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/nunit-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/nunit-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/nunit-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/nunit-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/nunit-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/nunit-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/nunit-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/nunit-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/nunit-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/nunit-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/nunit-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/nunit-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/nunit-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/nunit-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/nunit-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/nunit-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/nunit-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/nunit-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/nunit-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/nunit-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/nunit-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/nunit-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/nunit-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/nunit-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/nunit-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/nunit-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/nunit-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/nunit-plugin/deployments", + "created_at": "2010-12-13T05:46:59Z", + "updated_at": "2019-06-08T04:08:06Z", + "pushed_at": "2019-06-08T04:08:04Z", + "git_url": "git://github.com/jenkinsci/nunit-plugin.git", + "ssh_url": "git@github.com:jenkinsci/nunit-plugin.git", + "clone_url": "https://github.com/jenkinsci/nunit-plugin.git", + "svn_url": "https://github.com/jenkinsci/nunit-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 646, + "stargazers_count": 35, + "watchers_count": 35, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 49, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 49, + "open_issues": 1, + "watchers": 35, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163679, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjc5", + "name": "piwikanalytics-plugin", + "full_name": "jenkinsci/piwikanalytics-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/piwikanalytics-plugin", + "description": "Jenkins piwikanalytics plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/piwikanalytics-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/piwikanalytics-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/piwikanalytics-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/piwikanalytics-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/piwikanalytics-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/piwikanalytics-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/piwikanalytics-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/piwikanalytics-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/piwikanalytics-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/piwikanalytics-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/piwikanalytics-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/piwikanalytics-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/piwikanalytics-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/piwikanalytics-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/piwikanalytics-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/piwikanalytics-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/piwikanalytics-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/piwikanalytics-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/piwikanalytics-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/piwikanalytics-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/piwikanalytics-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/piwikanalytics-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/piwikanalytics-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/piwikanalytics-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/piwikanalytics-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/piwikanalytics-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/piwikanalytics-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/piwikanalytics-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/piwikanalytics-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/piwikanalytics-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/piwikanalytics-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/piwikanalytics-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/piwikanalytics-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/piwikanalytics-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/piwikanalytics-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/piwikanalytics-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/piwikanalytics-plugin/deployments", + "created_at": "2010-12-13T05:47:08Z", + "updated_at": "2015-06-16T09:52:23Z", + "pushed_at": "2016-05-20T06:56:24Z", + "git_url": "git://github.com/jenkinsci/piwikanalytics-plugin.git", + "ssh_url": "git@github.com:jenkinsci/piwikanalytics-plugin.git", + "clone_url": "https://github.com/jenkinsci/piwikanalytics-plugin.git", + "svn_url": "https://github.com/jenkinsci/piwikanalytics-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 38, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 3, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163680, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjgw", + "name": "persona-plugin", + "full_name": "jenkinsci/persona-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/persona-plugin", + "description": "Jenkins persona plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/persona-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/persona-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/persona-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/persona-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/persona-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/persona-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/persona-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/persona-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/persona-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/persona-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/persona-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/persona-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/persona-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/persona-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/persona-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/persona-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/persona-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/persona-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/persona-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/persona-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/persona-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/persona-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/persona-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/persona-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/persona-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/persona-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/persona-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/persona-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/persona-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/persona-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/persona-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/persona-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/persona-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/persona-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/persona-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/persona-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/persona-plugin/deployments", + "created_at": "2010-12-13T05:47:16Z", + "updated_at": "2017-12-15T18:54:39Z", + "pushed_at": "2019-10-08T12:41:09Z", + "git_url": "git://github.com/jenkinsci/persona-plugin.git", + "ssh_url": "git@github.com:jenkinsci/persona-plugin.git", + "clone_url": "https://github.com/jenkinsci/persona-plugin.git", + "svn_url": "https://github.com/jenkinsci/persona-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 455, + "stargazers_count": 10, + "watchers_count": 10, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 18, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 18, + "open_issues": 2, + "watchers": 10, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163681, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjgx", + "name": "platformlabeler-plugin", + "full_name": "jenkinsci/platformlabeler-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/platformlabeler-plugin", + "description": "Jenkins Platform Labeler plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/platformlabeler-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/platformlabeler-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/platformlabeler-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/platformlabeler-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/platformlabeler-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/platformlabeler-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/platformlabeler-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/platformlabeler-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/platformlabeler-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/platformlabeler-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/platformlabeler-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/platformlabeler-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/platformlabeler-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/platformlabeler-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/platformlabeler-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/platformlabeler-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/platformlabeler-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/platformlabeler-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/platformlabeler-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/platformlabeler-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/platformlabeler-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/platformlabeler-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/platformlabeler-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/platformlabeler-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/platformlabeler-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/platformlabeler-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/platformlabeler-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/platformlabeler-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/platformlabeler-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/platformlabeler-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/platformlabeler-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/platformlabeler-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/platformlabeler-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/platformlabeler-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/platformlabeler-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/platformlabeler-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/platformlabeler-plugin/deployments", + "created_at": "2010-12-13T05:47:17Z", + "updated_at": "2019-10-23T05:44:41Z", + "pushed_at": "2019-10-23T05:44:39Z", + "git_url": "git://github.com/jenkinsci/platformlabeler-plugin.git", + "ssh_url": "git@github.com:jenkinsci/platformlabeler-plugin.git", + "clone_url": "https://github.com/jenkinsci/platformlabeler-plugin.git", + "svn_url": "https://github.com/jenkinsci/platformlabeler-plugin", + "homepage": "https://plugins.jenkins.io/platformlabeler", + "size": 330, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": true, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 15, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 15, + "open_issues": 1, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163682, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjgy", + "name": "perfpublisher-plugin", + "full_name": "jenkinsci/perfpublisher-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/perfpublisher-plugin", + "description": "Jenkins perfpublisher plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/perfpublisher-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/perfpublisher-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/perfpublisher-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/perfpublisher-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/perfpublisher-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/perfpublisher-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/perfpublisher-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/perfpublisher-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/perfpublisher-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/perfpublisher-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/perfpublisher-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/perfpublisher-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/perfpublisher-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/perfpublisher-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/perfpublisher-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/perfpublisher-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/perfpublisher-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/perfpublisher-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/perfpublisher-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/perfpublisher-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/perfpublisher-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/perfpublisher-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/perfpublisher-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/perfpublisher-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/perfpublisher-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/perfpublisher-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/perfpublisher-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/perfpublisher-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/perfpublisher-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/perfpublisher-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/perfpublisher-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/perfpublisher-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/perfpublisher-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/perfpublisher-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/perfpublisher-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/perfpublisher-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/perfpublisher-plugin/deployments", + "created_at": "2010-12-13T05:47:21Z", + "updated_at": "2019-08-20T10:47:43Z", + "pushed_at": "2019-08-20T10:47:40Z", + "git_url": "git://github.com/jenkinsci/perfpublisher-plugin.git", + "ssh_url": "git@github.com:jenkinsci/perfpublisher-plugin.git", + "clone_url": "https://github.com/jenkinsci/perfpublisher-plugin.git", + "svn_url": "https://github.com/jenkinsci/perfpublisher-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 514, + "stargazers_count": 7, + "watchers_count": 7, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 10, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": null, + "forks": 10, + "open_issues": 3, + "watchers": 7, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163683, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjgz", + "name": "proc-plugin", + "full_name": "jenkinsci/proc-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/proc-plugin", + "description": "Jenkins proc plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/proc-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/proc-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/proc-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/proc-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/proc-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/proc-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/proc-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/proc-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/proc-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/proc-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/proc-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/proc-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/proc-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/proc-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/proc-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/proc-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/proc-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/proc-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/proc-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/proc-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/proc-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/proc-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/proc-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/proc-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/proc-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/proc-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/proc-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/proc-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/proc-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/proc-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/proc-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/proc-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/proc-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/proc-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/proc-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/proc-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/proc-plugin/deployments", + "created_at": "2010-12-13T05:47:42Z", + "updated_at": "2014-01-23T00:09:44Z", + "pushed_at": "2013-11-10T02:13:50Z", + "git_url": "git://github.com/jenkinsci/proc-plugin.git", + "ssh_url": "git@github.com:jenkinsci/proc-plugin.git", + "clone_url": "https://github.com/jenkinsci/proc-plugin.git", + "svn_url": "https://github.com/jenkinsci/proc-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 124, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163684, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjg0", + "name": "pure-coverage-plugin", + "full_name": "jenkinsci/pure-coverage-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pure-coverage-plugin", + "description": "Jenkins pure-coverage plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/pure-coverage-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pure-coverage-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pure-coverage-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pure-coverage-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pure-coverage-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pure-coverage-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pure-coverage-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pure-coverage-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pure-coverage-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pure-coverage-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pure-coverage-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pure-coverage-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pure-coverage-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pure-coverage-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pure-coverage-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pure-coverage-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pure-coverage-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pure-coverage-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pure-coverage-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pure-coverage-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pure-coverage-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pure-coverage-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pure-coverage-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pure-coverage-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pure-coverage-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pure-coverage-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pure-coverage-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pure-coverage-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pure-coverage-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pure-coverage-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pure-coverage-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pure-coverage-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pure-coverage-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pure-coverage-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pure-coverage-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pure-coverage-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pure-coverage-plugin/deployments", + "created_at": "2010-12-13T05:47:52Z", + "updated_at": "2017-06-16T01:59:17Z", + "pushed_at": "2013-11-10T02:14:20Z", + "git_url": "git://github.com/jenkinsci/pure-coverage-plugin.git", + "ssh_url": "git@github.com:jenkinsci/pure-coverage-plugin.git", + "clone_url": "https://github.com/jenkinsci/pure-coverage-plugin.git", + "svn_url": "https://github.com/jenkinsci/pure-coverage-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 5353, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163688, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjg4", + "name": "parameterized-trigger-plugin", + "full_name": "jenkinsci/parameterized-trigger-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/parameterized-trigger-plugin", + "description": "Jenkins parameterized-trigger plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/parameterized-trigger-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/parameterized-trigger-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/parameterized-trigger-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/parameterized-trigger-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/parameterized-trigger-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/parameterized-trigger-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/parameterized-trigger-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/parameterized-trigger-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/parameterized-trigger-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/parameterized-trigger-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/parameterized-trigger-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/parameterized-trigger-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/parameterized-trigger-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/parameterized-trigger-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/parameterized-trigger-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/parameterized-trigger-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/parameterized-trigger-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/parameterized-trigger-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/parameterized-trigger-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/parameterized-trigger-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/parameterized-trigger-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/parameterized-trigger-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/parameterized-trigger-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/parameterized-trigger-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/parameterized-trigger-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/parameterized-trigger-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/parameterized-trigger-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/parameterized-trigger-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/parameterized-trigger-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/parameterized-trigger-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/parameterized-trigger-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/parameterized-trigger-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/parameterized-trigger-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/parameterized-trigger-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/parameterized-trigger-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/parameterized-trigger-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/parameterized-trigger-plugin/deployments", + "created_at": "2010-12-13T05:48:13Z", + "updated_at": "2019-09-19T16:46:37Z", + "pushed_at": "2019-10-17T15:58:38Z", + "git_url": "git://github.com/jenkinsci/parameterized-trigger-plugin.git", + "ssh_url": "git@github.com:jenkinsci/parameterized-trigger-plugin.git", + "clone_url": "https://github.com/jenkinsci/parameterized-trigger-plugin.git", + "svn_url": "https://github.com/jenkinsci/parameterized-trigger-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 735, + "stargazers_count": 47, + "watchers_count": 47, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 150, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 13, + "license": null, + "forks": 150, + "open_issues": 13, + "watchers": 47, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163689, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjg5", + "name": "powershell-plugin", + "full_name": "jenkinsci/powershell-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/powershell-plugin", + "description": "Jenkins powershell plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/powershell-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/powershell-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/powershell-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/powershell-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/powershell-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/powershell-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/powershell-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/powershell-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/powershell-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/powershell-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/powershell-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/powershell-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/powershell-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/powershell-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/powershell-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/powershell-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/powershell-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/powershell-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/powershell-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/powershell-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/powershell-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/powershell-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/powershell-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/powershell-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/powershell-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/powershell-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/powershell-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/powershell-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/powershell-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/powershell-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/powershell-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/powershell-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/powershell-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/powershell-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/powershell-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/powershell-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/powershell-plugin/deployments", + "created_at": "2010-12-13T05:48:13Z", + "updated_at": "2019-10-05T08:39:36Z", + "pushed_at": "2019-09-24T14:31:16Z", + "git_url": "git://github.com/jenkinsci/powershell-plugin.git", + "ssh_url": "git@github.com:jenkinsci/powershell-plugin.git", + "clone_url": "https://github.com/jenkinsci/powershell-plugin.git", + "svn_url": "https://github.com/jenkinsci/powershell-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 34, + "stargazers_count": 18, + "watchers_count": 18, + "language": "HTML", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 27, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 27, + "open_issues": 2, + "watchers": 18, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163690, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjkw", + "name": "pview-plugin", + "full_name": "jenkinsci/pview-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pview-plugin", + "description": "Jenkins pview plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/pview-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pview-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pview-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pview-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pview-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pview-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pview-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pview-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pview-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pview-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pview-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pview-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pview-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pview-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pview-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pview-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pview-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pview-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pview-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pview-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pview-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pview-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pview-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pview-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pview-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pview-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pview-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pview-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pview-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pview-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pview-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pview-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pview-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pview-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pview-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pview-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pview-plugin/deployments", + "created_at": "2010-12-13T05:48:25Z", + "updated_at": "2017-05-21T05:29:38Z", + "pushed_at": "2019-10-08T11:34:30Z", + "git_url": "git://github.com/jenkinsci/pview-plugin.git", + "ssh_url": "git@github.com:jenkinsci/pview-plugin.git", + "clone_url": "https://github.com/jenkinsci/pview-plugin.git", + "svn_url": "https://github.com/jenkinsci/pview-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 132, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 3, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163691, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjkx", + "name": "pwauth-plugin", + "full_name": "jenkinsci/pwauth-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pwauth-plugin", + "description": "Jenkins pwauth plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/pwauth-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pwauth-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pwauth-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pwauth-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pwauth-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pwauth-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pwauth-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pwauth-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pwauth-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pwauth-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pwauth-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pwauth-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pwauth-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pwauth-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pwauth-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pwauth-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pwauth-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pwauth-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pwauth-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pwauth-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pwauth-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pwauth-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pwauth-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pwauth-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pwauth-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pwauth-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pwauth-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pwauth-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pwauth-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pwauth-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pwauth-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pwauth-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pwauth-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pwauth-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pwauth-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pwauth-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pwauth-plugin/deployments", + "created_at": "2010-12-13T05:48:26Z", + "updated_at": "2014-03-02T14:35:32Z", + "pushed_at": "2019-10-08T16:17:08Z", + "git_url": "git://github.com/jenkinsci/pwauth-plugin.git", + "ssh_url": "git@github.com:jenkinsci/pwauth-plugin.git", + "clone_url": "https://github.com/jenkinsci/pwauth-plugin.git", + "svn_url": "https://github.com/jenkinsci/pwauth-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 20, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 3, + "open_issues": 2, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163692, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjky", + "name": "pvcs_scm-plugin", + "full_name": "jenkinsci/pvcs_scm-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pvcs_scm-plugin", + "description": "Jenkins pvcs_scm plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/pvcs_scm-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pvcs_scm-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pvcs_scm-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pvcs_scm-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pvcs_scm-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pvcs_scm-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pvcs_scm-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pvcs_scm-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pvcs_scm-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pvcs_scm-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pvcs_scm-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pvcs_scm-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pvcs_scm-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pvcs_scm-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pvcs_scm-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pvcs_scm-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pvcs_scm-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pvcs_scm-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pvcs_scm-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pvcs_scm-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pvcs_scm-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pvcs_scm-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pvcs_scm-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pvcs_scm-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pvcs_scm-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pvcs_scm-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pvcs_scm-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pvcs_scm-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pvcs_scm-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pvcs_scm-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pvcs_scm-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pvcs_scm-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pvcs_scm-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pvcs_scm-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pvcs_scm-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pvcs_scm-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pvcs_scm-plugin/deployments", + "created_at": "2010-12-13T05:48:31Z", + "updated_at": "2018-01-18T19:33:59Z", + "pushed_at": "2018-01-23T19:26:22Z", + "git_url": "git://github.com/jenkinsci/pvcs_scm-plugin.git", + "ssh_url": "git@github.com:jenkinsci/pvcs_scm-plugin.git", + "clone_url": "https://github.com/jenkinsci/pvcs_scm-plugin.git", + "svn_url": "https://github.com/jenkinsci/pvcs_scm-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 275, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 3, + "open_issues": 1, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163693, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjkz", + "name": "promoted-builds-simple-plugin", + "full_name": "jenkinsci/promoted-builds-simple-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/promoted-builds-simple-plugin", + "description": "Jenkins promoted-builds-simple plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/promoted-builds-simple-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/promoted-builds-simple-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/promoted-builds-simple-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/promoted-builds-simple-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/promoted-builds-simple-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/promoted-builds-simple-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/promoted-builds-simple-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/promoted-builds-simple-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/promoted-builds-simple-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/promoted-builds-simple-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/promoted-builds-simple-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/promoted-builds-simple-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/promoted-builds-simple-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/promoted-builds-simple-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/promoted-builds-simple-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/promoted-builds-simple-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/promoted-builds-simple-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/promoted-builds-simple-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/promoted-builds-simple-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/promoted-builds-simple-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/promoted-builds-simple-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/promoted-builds-simple-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/promoted-builds-simple-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/promoted-builds-simple-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/promoted-builds-simple-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/promoted-builds-simple-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/promoted-builds-simple-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/promoted-builds-simple-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/promoted-builds-simple-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/promoted-builds-simple-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/promoted-builds-simple-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/promoted-builds-simple-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/promoted-builds-simple-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/promoted-builds-simple-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/promoted-builds-simple-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/promoted-builds-simple-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/promoted-builds-simple-plugin/deployments", + "created_at": "2010-12-13T05:48:31Z", + "updated_at": "2013-11-10T02:14:04Z", + "pushed_at": "2019-10-08T11:27:23Z", + "git_url": "git://github.com/jenkinsci/promoted-builds-simple-plugin.git", + "ssh_url": "git@github.com:jenkinsci/promoted-builds-simple-plugin.git", + "clone_url": "https://github.com/jenkinsci/promoted-builds-simple-plugin.git", + "svn_url": "https://github.com/jenkinsci/promoted-builds-simple-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 181, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 12, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": null, + "forks": 12, + "open_issues": 3, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163695, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjk1", + "name": "plot-plugin", + "full_name": "jenkinsci/plot-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/plot-plugin", + "description": "Jenkins plot plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/plot-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/plot-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/plot-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/plot-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/plot-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/plot-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/plot-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/plot-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/plot-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/plot-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/plot-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/plot-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/plot-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/plot-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/plot-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/plot-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/plot-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/plot-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/plot-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/plot-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/plot-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/plot-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/plot-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/plot-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/plot-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/plot-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/plot-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/plot-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/plot-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/plot-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/plot-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/plot-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/plot-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/plot-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/plot-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/plot-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/plot-plugin/deployments", + "created_at": "2010-12-13T05:48:36Z", + "updated_at": "2019-09-24T11:57:17Z", + "pushed_at": "2019-09-24T11:49:11Z", + "git_url": "git://github.com/jenkinsci/plot-plugin.git", + "ssh_url": "git@github.com:jenkinsci/plot-plugin.git", + "clone_url": "https://github.com/jenkinsci/plot-plugin.git", + "svn_url": "https://github.com/jenkinsci/plot-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 587, + "stargazers_count": 48, + "watchers_count": 48, + "language": "Java", + "has_issues": false, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 82, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 82, + "open_issues": 1, + "watchers": 48, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163696, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjk2", + "name": "qmakebuilder-plugin", + "full_name": "jenkinsci/qmakebuilder-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/qmakebuilder-plugin", + "description": "Jenkins qmakebuilder plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/qmakebuilder-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/qmakebuilder-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/qmakebuilder-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/qmakebuilder-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/qmakebuilder-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/qmakebuilder-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/qmakebuilder-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/qmakebuilder-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/qmakebuilder-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/qmakebuilder-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/qmakebuilder-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/qmakebuilder-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/qmakebuilder-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/qmakebuilder-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/qmakebuilder-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/qmakebuilder-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/qmakebuilder-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/qmakebuilder-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/qmakebuilder-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/qmakebuilder-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/qmakebuilder-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/qmakebuilder-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/qmakebuilder-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/qmakebuilder-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/qmakebuilder-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/qmakebuilder-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/qmakebuilder-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/qmakebuilder-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/qmakebuilder-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/qmakebuilder-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/qmakebuilder-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/qmakebuilder-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/qmakebuilder-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/qmakebuilder-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/qmakebuilder-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/qmakebuilder-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/qmakebuilder-plugin/deployments", + "created_at": "2010-12-13T05:48:51Z", + "updated_at": "2019-03-06T13:01:16Z", + "pushed_at": "2016-04-16T01:39:55Z", + "git_url": "git://github.com/jenkinsci/qmakebuilder-plugin.git", + "ssh_url": "git@github.com:jenkinsci/qmakebuilder-plugin.git", + "clone_url": "https://github.com/jenkinsci/qmakebuilder-plugin.git", + "svn_url": "https://github.com/jenkinsci/qmakebuilder-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 12, + "stargazers_count": 6, + "watchers_count": 6, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 7, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 7, + "open_issues": 0, + "watchers": 6, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163697, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjk3", + "name": "qc-plugin", + "full_name": "jenkinsci/qc-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/qc-plugin", + "description": "Jenkins qc plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/qc-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/qc-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/qc-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/qc-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/qc-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/qc-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/qc-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/qc-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/qc-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/qc-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/qc-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/qc-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/qc-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/qc-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/qc-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/qc-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/qc-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/qc-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/qc-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/qc-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/qc-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/qc-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/qc-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/qc-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/qc-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/qc-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/qc-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/qc-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/qc-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/qc-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/qc-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/qc-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/qc-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/qc-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/qc-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/qc-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/qc-plugin/deployments", + "created_at": "2010-12-13T05:48:51Z", + "updated_at": "2014-04-02T11:08:45Z", + "pushed_at": "2019-10-08T16:26:01Z", + "git_url": "git://github.com/jenkinsci/qc-plugin.git", + "ssh_url": "git@github.com:jenkinsci/qc-plugin.git", + "clone_url": "https://github.com/jenkinsci/qc-plugin.git", + "svn_url": "https://github.com/jenkinsci/qc-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 59, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 4, + "open_issues": 2, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163698, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjk4", + "name": "python-plugin", + "full_name": "jenkinsci/python-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/python-plugin", + "description": "Jenkins python plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/python-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/python-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/python-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/python-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/python-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/python-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/python-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/python-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/python-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/python-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/python-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/python-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/python-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/python-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/python-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/python-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/python-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/python-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/python-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/python-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/python-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/python-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/python-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/python-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/python-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/python-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/python-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/python-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/python-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/python-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/python-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/python-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/python-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/python-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/python-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/python-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/python-plugin/deployments", + "created_at": "2010-12-13T05:48:51Z", + "updated_at": "2018-07-19T06:56:58Z", + "pushed_at": "2018-07-19T06:56:56Z", + "git_url": "git://github.com/jenkinsci/python-plugin.git", + "ssh_url": "git@github.com:jenkinsci/python-plugin.git", + "clone_url": "https://github.com/jenkinsci/python-plugin.git", + "svn_url": "https://github.com/jenkinsci/python-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 22, + "stargazers_count": 13, + "watchers_count": 13, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 14, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 14, + "open_issues": 2, + "watchers": 13, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163699, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNjk5", + "name": "phing-plugin", + "full_name": "jenkinsci/phing-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/phing-plugin", + "description": "Jenkins phing plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/phing-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/phing-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/phing-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/phing-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/phing-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/phing-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/phing-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/phing-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/phing-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/phing-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/phing-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/phing-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/phing-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/phing-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/phing-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/phing-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/phing-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/phing-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/phing-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/phing-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/phing-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/phing-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/phing-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/phing-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/phing-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/phing-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/phing-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/phing-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/phing-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/phing-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/phing-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/phing-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/phing-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/phing-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/phing-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/phing-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/phing-plugin/deployments", + "created_at": "2010-12-13T05:48:51Z", + "updated_at": "2019-08-19T06:30:57Z", + "pushed_at": "2019-10-08T11:33:55Z", + "git_url": "git://github.com/jenkinsci/phing-plugin.git", + "ssh_url": "git@github.com:jenkinsci/phing-plugin.git", + "clone_url": "https://github.com/jenkinsci/phing-plugin.git", + "svn_url": "https://github.com/jenkinsci/phing-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 455, + "stargazers_count": 7, + "watchers_count": 7, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 3, + "open_issues": 1, + "watchers": 7, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163700, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzAw", + "name": "postbuild-task-plugin", + "full_name": "jenkinsci/postbuild-task-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/postbuild-task-plugin", + "description": "Jenkins postbuild-task plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/postbuild-task-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/postbuild-task-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/postbuild-task-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/postbuild-task-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/postbuild-task-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/postbuild-task-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/postbuild-task-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/postbuild-task-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/postbuild-task-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/postbuild-task-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/postbuild-task-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/postbuild-task-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/postbuild-task-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/postbuild-task-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/postbuild-task-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/postbuild-task-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/postbuild-task-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/postbuild-task-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/postbuild-task-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/postbuild-task-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/postbuild-task-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/postbuild-task-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/postbuild-task-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/postbuild-task-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/postbuild-task-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/postbuild-task-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/postbuild-task-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/postbuild-task-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/postbuild-task-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/postbuild-task-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/postbuild-task-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/postbuild-task-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/postbuild-task-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/postbuild-task-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/postbuild-task-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/postbuild-task-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/postbuild-task-plugin/deployments", + "created_at": "2010-12-13T05:48:53Z", + "updated_at": "2018-07-19T07:02:40Z", + "pushed_at": "2019-09-24T09:43:53Z", + "git_url": "git://github.com/jenkinsci/postbuild-task-plugin.git", + "ssh_url": "git@github.com:jenkinsci/postbuild-task-plugin.git", + "clone_url": "https://github.com/jenkinsci/postbuild-task-plugin.git", + "svn_url": "https://github.com/jenkinsci/postbuild-task-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 44, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 11, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": null, + "forks": 11, + "open_issues": 3, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163701, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzAx", + "name": "port-allocator-plugin", + "full_name": "jenkinsci/port-allocator-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/port-allocator-plugin", + "description": "Jenkins port-allocator plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/port-allocator-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/port-allocator-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/port-allocator-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/port-allocator-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/port-allocator-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/port-allocator-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/port-allocator-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/port-allocator-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/port-allocator-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/port-allocator-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/port-allocator-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/port-allocator-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/port-allocator-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/port-allocator-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/port-allocator-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/port-allocator-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/port-allocator-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/port-allocator-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/port-allocator-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/port-allocator-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/port-allocator-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/port-allocator-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/port-allocator-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/port-allocator-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/port-allocator-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/port-allocator-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/port-allocator-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/port-allocator-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/port-allocator-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/port-allocator-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/port-allocator-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/port-allocator-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/port-allocator-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/port-allocator-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/port-allocator-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/port-allocator-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/port-allocator-plugin/deployments", + "created_at": "2010-12-13T05:48:59Z", + "updated_at": "2018-07-19T07:02:55Z", + "pushed_at": "2019-09-24T10:33:16Z", + "git_url": "git://github.com/jenkinsci/port-allocator-plugin.git", + "ssh_url": "git@github.com:jenkinsci/port-allocator-plugin.git", + "clone_url": "https://github.com/jenkinsci/port-allocator-plugin.git", + "svn_url": "https://github.com/jenkinsci/port-allocator-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 151, + "stargazers_count": 6, + "watchers_count": 6, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 31, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 6, + "license": null, + "forks": 31, + "open_issues": 6, + "watchers": 6, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163703, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzAz", + "name": "polarion-plugin", + "full_name": "jenkinsci/polarion-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/polarion-plugin", + "description": "Jenkins polarion plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/polarion-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/polarion-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/polarion-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/polarion-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/polarion-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/polarion-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/polarion-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/polarion-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/polarion-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/polarion-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/polarion-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/polarion-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/polarion-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/polarion-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/polarion-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/polarion-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/polarion-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/polarion-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/polarion-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/polarion-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/polarion-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/polarion-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/polarion-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/polarion-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/polarion-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/polarion-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/polarion-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/polarion-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/polarion-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/polarion-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/polarion-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/polarion-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/polarion-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/polarion-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/polarion-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/polarion-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/polarion-plugin/deployments", + "created_at": "2010-12-13T05:49:12Z", + "updated_at": "2013-11-10T02:13:39Z", + "pushed_at": "2019-10-08T16:19:32Z", + "git_url": "git://github.com/jenkinsci/polarion-plugin.git", + "ssh_url": "git@github.com:jenkinsci/polarion-plugin.git", + "clone_url": "https://github.com/jenkinsci/polarion-plugin.git", + "svn_url": "https://github.com/jenkinsci/polarion-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 248, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 2, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163705, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzA1", + "name": "mercurial-plugin", + "full_name": "jenkinsci/mercurial-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/mercurial-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/mercurial-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/mercurial-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/mercurial-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/mercurial-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/mercurial-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/mercurial-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/mercurial-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/mercurial-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/mercurial-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/mercurial-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/mercurial-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/mercurial-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/mercurial-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/mercurial-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/mercurial-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/mercurial-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/mercurial-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/mercurial-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/mercurial-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/mercurial-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/mercurial-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/mercurial-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/mercurial-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/mercurial-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/mercurial-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/mercurial-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/mercurial-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/mercurial-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/mercurial-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/mercurial-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/mercurial-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/mercurial-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/mercurial-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/mercurial-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/mercurial-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/mercurial-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/mercurial-plugin/deployments", + "created_at": "2010-12-13T05:49:17Z", + "updated_at": "2019-08-20T11:19:00Z", + "pushed_at": "2019-09-27T01:01:46Z", + "git_url": "git://github.com/jenkinsci/mercurial-plugin.git", + "ssh_url": "git@github.com:jenkinsci/mercurial-plugin.git", + "clone_url": "https://github.com/jenkinsci/mercurial-plugin.git", + "svn_url": "https://github.com/jenkinsci/mercurial-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Mercurial+Plugin", + "size": 1241, + "stargazers_count": 52, + "watchers_count": 52, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 114, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 114, + "open_issues": 2, + "watchers": 52, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163706, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzA2", + "name": "rad-builder-plugin", + "full_name": "jenkinsci/rad-builder-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/rad-builder-plugin", + "description": "Jenkins rad-builder plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/rad-builder-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/rad-builder-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/rad-builder-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/rad-builder-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/rad-builder-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/rad-builder-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/rad-builder-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/rad-builder-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/rad-builder-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/rad-builder-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/rad-builder-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/rad-builder-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/rad-builder-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/rad-builder-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/rad-builder-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/rad-builder-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/rad-builder-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/rad-builder-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/rad-builder-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/rad-builder-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/rad-builder-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/rad-builder-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/rad-builder-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/rad-builder-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/rad-builder-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/rad-builder-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/rad-builder-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/rad-builder-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/rad-builder-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/rad-builder-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/rad-builder-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/rad-builder-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/rad-builder-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/rad-builder-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/rad-builder-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/rad-builder-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/rad-builder-plugin/deployments", + "created_at": "2010-12-13T05:49:38Z", + "updated_at": "2013-11-10T02:14:51Z", + "pushed_at": "2013-11-10T02:14:46Z", + "git_url": "git://github.com/jenkinsci/rad-builder-plugin.git", + "ssh_url": "git@github.com:jenkinsci/rad-builder-plugin.git", + "clone_url": "https://github.com/jenkinsci/rad-builder-plugin.git", + "svn_url": "https://github.com/jenkinsci/rad-builder-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 216, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163707, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzA3", + "name": "radiatorview-plugin", + "full_name": "jenkinsci/radiatorview-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/radiatorview-plugin", + "description": "Jenkins radiatorview plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/radiatorview-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/radiatorview-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/radiatorview-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/radiatorview-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/radiatorview-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/radiatorview-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/radiatorview-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/radiatorview-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/radiatorview-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/radiatorview-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/radiatorview-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/radiatorview-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/radiatorview-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/radiatorview-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/radiatorview-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/radiatorview-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/radiatorview-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/radiatorview-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/radiatorview-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/radiatorview-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/radiatorview-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/radiatorview-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/radiatorview-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/radiatorview-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/radiatorview-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/radiatorview-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/radiatorview-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/radiatorview-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/radiatorview-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/radiatorview-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/radiatorview-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/radiatorview-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/radiatorview-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/radiatorview-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/radiatorview-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/radiatorview-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/radiatorview-plugin/deployments", + "created_at": "2010-12-13T05:49:44Z", + "updated_at": "2017-12-15T18:44:55Z", + "pushed_at": "2019-10-25T17:04:34Z", + "git_url": "git://github.com/jenkinsci/radiatorview-plugin.git", + "ssh_url": "git@github.com:jenkinsci/radiatorview-plugin.git", + "clone_url": "https://github.com/jenkinsci/radiatorview-plugin.git", + "svn_url": "https://github.com/jenkinsci/radiatorview-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 175, + "stargazers_count": 22, + "watchers_count": 22, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 35, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": null, + "forks": 35, + "open_issues": 3, + "watchers": 22, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163708, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzA4", + "name": "rhapsodybuilder-plugin", + "full_name": "jenkinsci/rhapsodybuilder-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/rhapsodybuilder-plugin", + "description": "Jenkins rhapsodybuilder plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/rhapsodybuilder-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/rhapsodybuilder-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/rhapsodybuilder-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/rhapsodybuilder-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/rhapsodybuilder-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/rhapsodybuilder-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/rhapsodybuilder-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/rhapsodybuilder-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/rhapsodybuilder-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/rhapsodybuilder-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/rhapsodybuilder-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/rhapsodybuilder-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/rhapsodybuilder-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/rhapsodybuilder-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/rhapsodybuilder-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/rhapsodybuilder-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/rhapsodybuilder-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/rhapsodybuilder-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/rhapsodybuilder-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/rhapsodybuilder-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/rhapsodybuilder-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/rhapsodybuilder-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/rhapsodybuilder-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/rhapsodybuilder-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/rhapsodybuilder-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/rhapsodybuilder-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/rhapsodybuilder-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/rhapsodybuilder-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/rhapsodybuilder-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/rhapsodybuilder-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/rhapsodybuilder-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/rhapsodybuilder-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/rhapsodybuilder-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/rhapsodybuilder-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/rhapsodybuilder-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/rhapsodybuilder-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/rhapsodybuilder-plugin/deployments", + "created_at": "2010-12-13T05:49:46Z", + "updated_at": "2013-11-10T02:15:31Z", + "pushed_at": "2013-11-10T02:15:30Z", + "git_url": "git://github.com/jenkinsci/rhapsodybuilder-plugin.git", + "ssh_url": "git@github.com:jenkinsci/rhapsodybuilder-plugin.git", + "clone_url": "https://github.com/jenkinsci/rhapsodybuilder-plugin.git", + "svn_url": "https://github.com/jenkinsci/rhapsodybuilder-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 108, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163709, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzA5", + "name": "reviewboard-plugin", + "full_name": "jenkinsci/reviewboard-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/reviewboard-plugin", + "description": "Jenkins reviewboard plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/reviewboard-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/reviewboard-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/reviewboard-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/reviewboard-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/reviewboard-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/reviewboard-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/reviewboard-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/reviewboard-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/reviewboard-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/reviewboard-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/reviewboard-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/reviewboard-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/reviewboard-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/reviewboard-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/reviewboard-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/reviewboard-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/reviewboard-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/reviewboard-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/reviewboard-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/reviewboard-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/reviewboard-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/reviewboard-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/reviewboard-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/reviewboard-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/reviewboard-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/reviewboard-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/reviewboard-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/reviewboard-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/reviewboard-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/reviewboard-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/reviewboard-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/reviewboard-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/reviewboard-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/reviewboard-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/reviewboard-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/reviewboard-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/reviewboard-plugin/deployments", + "created_at": "2010-12-13T05:49:46Z", + "updated_at": "2018-08-24T02:00:13Z", + "pushed_at": "2013-11-10T02:15:29Z", + "git_url": "git://github.com/jenkinsci/reviewboard-plugin.git", + "ssh_url": "git@github.com:jenkinsci/reviewboard-plugin.git", + "clone_url": "https://github.com/jenkinsci/reviewboard-plugin.git", + "svn_url": "https://github.com/jenkinsci/reviewboard-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 139, + "stargazers_count": 7, + "watchers_count": 7, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 3, + "open_issues": 0, + "watchers": 7, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163710, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzEw", + "name": "remote-queue-plugin", + "full_name": "jenkinsci/remote-queue-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/remote-queue-plugin", + "description": "Jenkins remote-queue plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/remote-queue-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/remote-queue-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/remote-queue-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/remote-queue-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/remote-queue-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/remote-queue-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/remote-queue-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/remote-queue-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/remote-queue-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/remote-queue-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/remote-queue-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/remote-queue-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/remote-queue-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/remote-queue-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/remote-queue-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/remote-queue-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/remote-queue-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/remote-queue-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/remote-queue-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/remote-queue-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/remote-queue-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/remote-queue-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/remote-queue-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/remote-queue-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/remote-queue-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/remote-queue-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/remote-queue-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/remote-queue-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/remote-queue-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/remote-queue-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/remote-queue-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/remote-queue-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/remote-queue-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/remote-queue-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/remote-queue-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/remote-queue-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/remote-queue-plugin/deployments", + "created_at": "2010-12-13T05:49:46Z", + "updated_at": "2014-03-04T05:08:49Z", + "pushed_at": "2013-11-10T02:15:14Z", + "git_url": "git://github.com/jenkinsci/remote-queue-plugin.git", + "ssh_url": "git@github.com:jenkinsci/remote-queue-plugin.git", + "clone_url": "https://github.com/jenkinsci/remote-queue-plugin.git", + "svn_url": "https://github.com/jenkinsci/remote-queue-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 4584, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163711, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzEx", + "name": "repository-connector-plugin", + "full_name": "jenkinsci/repository-connector-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/repository-connector-plugin", + "description": "Jenkins repository-connector plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/repository-connector-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/repository-connector-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/repository-connector-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/repository-connector-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/repository-connector-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/repository-connector-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/repository-connector-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/repository-connector-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/repository-connector-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/repository-connector-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/repository-connector-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/repository-connector-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/repository-connector-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/repository-connector-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/repository-connector-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/repository-connector-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/repository-connector-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/repository-connector-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/repository-connector-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/repository-connector-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/repository-connector-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/repository-connector-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/repository-connector-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/repository-connector-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/repository-connector-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/repository-connector-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/repository-connector-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/repository-connector-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/repository-connector-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/repository-connector-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/repository-connector-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/repository-connector-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/repository-connector-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/repository-connector-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/repository-connector-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/repository-connector-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/repository-connector-plugin/deployments", + "created_at": "2010-12-13T05:49:56Z", + "updated_at": "2019-10-23T14:08:04Z", + "pushed_at": "2019-09-24T10:38:28Z", + "git_url": "git://github.com/jenkinsci/repository-connector-plugin.git", + "ssh_url": "git@github.com:jenkinsci/repository-connector-plugin.git", + "clone_url": "https://github.com/jenkinsci/repository-connector-plugin.git", + "svn_url": "https://github.com/jenkinsci/repository-connector-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 202, + "stargazers_count": 18, + "watchers_count": 18, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 45, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 5, + "license": null, + "forks": 45, + "open_issues": 5, + "watchers": 18, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163712, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzEy", + "name": "pxe-plugin", + "full_name": "jenkinsci/pxe-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pxe-plugin", + "description": "Jenkins pxe plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/pxe-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pxe-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pxe-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pxe-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pxe-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pxe-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pxe-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pxe-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pxe-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pxe-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pxe-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pxe-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pxe-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pxe-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pxe-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pxe-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pxe-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pxe-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pxe-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pxe-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pxe-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pxe-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pxe-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pxe-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pxe-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pxe-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pxe-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pxe-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pxe-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pxe-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pxe-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pxe-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pxe-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pxe-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pxe-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pxe-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pxe-plugin/deployments", + "created_at": "2010-12-13T05:49:59Z", + "updated_at": "2013-11-10T02:14:37Z", + "pushed_at": "2013-11-10T02:14:34Z", + "git_url": "git://github.com/jenkinsci/pxe-plugin.git", + "ssh_url": "git@github.com:jenkinsci/pxe-plugin.git", + "clone_url": "https://github.com/jenkinsci/pxe-plugin.git", + "svn_url": "https://github.com/jenkinsci/pxe-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 436, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163713, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzEz", + "name": "role-strategy-plugin", + "full_name": "jenkinsci/role-strategy-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/role-strategy-plugin", + "description": "Jenkins Role-Strategy plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/role-strategy-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/role-strategy-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/role-strategy-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/role-strategy-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/role-strategy-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/role-strategy-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/role-strategy-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/role-strategy-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/role-strategy-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/role-strategy-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/role-strategy-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/role-strategy-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/role-strategy-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/role-strategy-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/role-strategy-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/role-strategy-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/role-strategy-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/role-strategy-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/role-strategy-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/role-strategy-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/role-strategy-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/role-strategy-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/role-strategy-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/role-strategy-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/role-strategy-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/role-strategy-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/role-strategy-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/role-strategy-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/role-strategy-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/role-strategy-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/role-strategy-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/role-strategy-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/role-strategy-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/role-strategy-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/role-strategy-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/role-strategy-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/role-strategy-plugin/deployments", + "created_at": "2010-12-13T05:50:02Z", + "updated_at": "2019-10-17T03:03:17Z", + "pushed_at": "2019-10-14T15:14:03Z", + "git_url": "git://github.com/jenkinsci/role-strategy-plugin.git", + "ssh_url": "git@github.com:jenkinsci/role-strategy-plugin.git", + "clone_url": "https://github.com/jenkinsci/role-strategy-plugin.git", + "svn_url": "https://github.com/jenkinsci/role-strategy-plugin", + "homepage": "https://plugins.jenkins.io/role-strategy", + "size": 706, + "stargazers_count": 60, + "watchers_count": 60, + "language": "Java", + "has_issues": false, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 96, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 15, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 96, + "open_issues": 15, + "watchers": 60, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163714, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzE0", + "name": "regexemail-plugin", + "full_name": "jenkinsci/regexemail-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/regexemail-plugin", + "description": "Jenkins regexemail plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/regexemail-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/regexemail-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/regexemail-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/regexemail-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/regexemail-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/regexemail-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/regexemail-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/regexemail-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/regexemail-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/regexemail-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/regexemail-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/regexemail-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/regexemail-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/regexemail-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/regexemail-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/regexemail-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/regexemail-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/regexemail-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/regexemail-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/regexemail-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/regexemail-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/regexemail-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/regexemail-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/regexemail-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/regexemail-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/regexemail-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/regexemail-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/regexemail-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/regexemail-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/regexemail-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/regexemail-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/regexemail-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/regexemail-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/regexemail-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/regexemail-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/regexemail-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/regexemail-plugin/deployments", + "created_at": "2010-12-13T05:50:09Z", + "updated_at": "2014-04-09T04:25:12Z", + "pushed_at": "2013-11-10T02:15:05Z", + "git_url": "git://github.com/jenkinsci/regexemail-plugin.git", + "ssh_url": "git@github.com:jenkinsci/regexemail-plugin.git", + "clone_url": "https://github.com/jenkinsci/regexemail-plugin.git", + "svn_url": "https://github.com/jenkinsci/regexemail-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 204, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163715, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzE1", + "name": "rotatews-plugin", + "full_name": "jenkinsci/rotatews-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/rotatews-plugin", + "description": "Jenkins rotatews plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/rotatews-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/rotatews-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/rotatews-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/rotatews-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/rotatews-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/rotatews-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/rotatews-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/rotatews-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/rotatews-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/rotatews-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/rotatews-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/rotatews-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/rotatews-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/rotatews-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/rotatews-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/rotatews-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/rotatews-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/rotatews-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/rotatews-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/rotatews-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/rotatews-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/rotatews-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/rotatews-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/rotatews-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/rotatews-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/rotatews-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/rotatews-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/rotatews-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/rotatews-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/rotatews-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/rotatews-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/rotatews-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/rotatews-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/rotatews-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/rotatews-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/rotatews-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/rotatews-plugin/deployments", + "created_at": "2010-12-13T05:50:30Z", + "updated_at": "2015-08-21T20:09:46Z", + "pushed_at": "2015-08-21T20:12:58Z", + "git_url": "git://github.com/jenkinsci/rotatews-plugin.git", + "ssh_url": "git@github.com:jenkinsci/rotatews-plugin.git", + "clone_url": "https://github.com/jenkinsci/rotatews-plugin.git", + "svn_url": "https://github.com/jenkinsci/rotatews-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 155, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163716, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzE2", + "name": "saferestart-plugin", + "full_name": "jenkinsci/saferestart-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/saferestart-plugin", + "description": "Jenkins saferestart plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/saferestart-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/saferestart-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/saferestart-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/saferestart-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/saferestart-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/saferestart-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/saferestart-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/saferestart-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/saferestart-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/saferestart-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/saferestart-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/saferestart-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/saferestart-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/saferestart-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/saferestart-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/saferestart-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/saferestart-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/saferestart-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/saferestart-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/saferestart-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/saferestart-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/saferestart-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/saferestart-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/saferestart-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/saferestart-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/saferestart-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/saferestart-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/saferestart-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/saferestart-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/saferestart-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/saferestart-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/saferestart-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/saferestart-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/saferestart-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/saferestart-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/saferestart-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/saferestart-plugin/deployments", + "created_at": "2010-12-13T05:50:31Z", + "updated_at": "2018-07-19T06:57:50Z", + "pushed_at": "2019-09-24T10:18:28Z", + "git_url": "git://github.com/jenkinsci/saferestart-plugin.git", + "ssh_url": "git@github.com:jenkinsci/saferestart-plugin.git", + "clone_url": "https://github.com/jenkinsci/saferestart-plugin.git", + "svn_url": "https://github.com/jenkinsci/saferestart-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 42, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 6, + "open_issues": 1, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163718, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzE4", + "name": "sametime-plugin", + "full_name": "jenkinsci/sametime-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/sametime-plugin", + "description": "Jenkins sametime plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/sametime-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/sametime-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/sametime-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/sametime-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/sametime-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/sametime-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/sametime-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/sametime-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/sametime-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/sametime-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/sametime-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/sametime-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/sametime-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/sametime-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/sametime-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/sametime-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/sametime-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/sametime-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/sametime-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/sametime-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/sametime-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/sametime-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/sametime-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/sametime-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/sametime-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/sametime-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/sametime-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/sametime-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/sametime-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/sametime-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/sametime-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/sametime-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/sametime-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/sametime-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/sametime-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/sametime-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/sametime-plugin/deployments", + "created_at": "2010-12-13T05:50:47Z", + "updated_at": "2017-07-11T13:52:48Z", + "pushed_at": "2016-04-16T01:41:47Z", + "git_url": "git://github.com/jenkinsci/sametime-plugin.git", + "ssh_url": "git@github.com:jenkinsci/sametime-plugin.git", + "clone_url": "https://github.com/jenkinsci/sametime-plugin.git", + "svn_url": "https://github.com/jenkinsci/sametime-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 753, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 3, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163719, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzE5", + "name": "release-plugin", + "full_name": "jenkinsci/release-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/release-plugin", + "description": "Jenkins release plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/release-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/release-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/release-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/release-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/release-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/release-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/release-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/release-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/release-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/release-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/release-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/release-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/release-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/release-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/release-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/release-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/release-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/release-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/release-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/release-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/release-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/release-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/release-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/release-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/release-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/release-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/release-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/release-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/release-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/release-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/release-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/release-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/release-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/release-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/release-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/release-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/release-plugin/deployments", + "created_at": "2010-12-13T05:50:47Z", + "updated_at": "2019-03-05T14:16:22Z", + "pushed_at": "2018-11-18T13:30:00Z", + "git_url": "git://github.com/jenkinsci/release-plugin.git", + "ssh_url": "git@github.com:jenkinsci/release-plugin.git", + "clone_url": "https://github.com/jenkinsci/release-plugin.git", + "svn_url": "https://github.com/jenkinsci/release-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 16229, + "stargazers_count": 24, + "watchers_count": 24, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 50, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": null, + "forks": 50, + "open_issues": 3, + "watchers": 24, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163720, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzIw", + "name": "redmine-plugin", + "full_name": "jenkinsci/redmine-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/redmine-plugin", + "description": "Jenkins redmine plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/redmine-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/redmine-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/redmine-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/redmine-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/redmine-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/redmine-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/redmine-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/redmine-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/redmine-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/redmine-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/redmine-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/redmine-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/redmine-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/redmine-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/redmine-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/redmine-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/redmine-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/redmine-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/redmine-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/redmine-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/redmine-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/redmine-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/redmine-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/redmine-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/redmine-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/redmine-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/redmine-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/redmine-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/redmine-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/redmine-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/redmine-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/redmine-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/redmine-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/redmine-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/redmine-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/redmine-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/redmine-plugin/deployments", + "created_at": "2010-12-13T05:50:48Z", + "updated_at": "2019-10-08T11:56:29Z", + "pushed_at": "2019-10-08T11:56:27Z", + "git_url": "git://github.com/jenkinsci/redmine-plugin.git", + "ssh_url": "git@github.com:jenkinsci/redmine-plugin.git", + "clone_url": "https://github.com/jenkinsci/redmine-plugin.git", + "svn_url": "https://github.com/jenkinsci/redmine-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 317, + "stargazers_count": 25, + "watchers_count": 25, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 37, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 37, + "open_issues": 1, + "watchers": 25, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163721, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzIx", + "name": "screenshot-plugin", + "full_name": "jenkinsci/screenshot-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/screenshot-plugin", + "description": "Jenkins screenshot plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/screenshot-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/screenshot-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/screenshot-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/screenshot-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/screenshot-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/screenshot-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/screenshot-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/screenshot-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/screenshot-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/screenshot-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/screenshot-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/screenshot-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/screenshot-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/screenshot-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/screenshot-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/screenshot-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/screenshot-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/screenshot-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/screenshot-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/screenshot-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/screenshot-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/screenshot-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/screenshot-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/screenshot-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/screenshot-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/screenshot-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/screenshot-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/screenshot-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/screenshot-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/screenshot-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/screenshot-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/screenshot-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/screenshot-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/screenshot-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/screenshot-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/screenshot-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/screenshot-plugin/deployments", + "created_at": "2010-12-13T05:50:58Z", + "updated_at": "2013-11-10T02:16:39Z", + "pushed_at": "2013-11-10T02:16:34Z", + "git_url": "git://github.com/jenkinsci/screenshot-plugin.git", + "ssh_url": "git@github.com:jenkinsci/screenshot-plugin.git", + "clone_url": "https://github.com/jenkinsci/screenshot-plugin.git", + "svn_url": "https://github.com/jenkinsci/screenshot-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 108, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163722, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzIy", + "name": "scis-ad-plugin", + "full_name": "jenkinsci/scis-ad-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/scis-ad-plugin", + "description": "Jenkins scis-ad plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/scis-ad-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/scis-ad-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/scis-ad-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/scis-ad-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/scis-ad-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/scis-ad-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/scis-ad-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/scis-ad-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/scis-ad-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/scis-ad-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/scis-ad-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/scis-ad-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/scis-ad-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/scis-ad-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/scis-ad-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/scis-ad-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/scis-ad-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/scis-ad-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/scis-ad-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/scis-ad-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/scis-ad-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/scis-ad-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/scis-ad-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/scis-ad-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/scis-ad-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/scis-ad-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/scis-ad-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/scis-ad-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/scis-ad-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/scis-ad-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/scis-ad-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/scis-ad-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/scis-ad-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/scis-ad-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/scis-ad-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/scis-ad-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/scis-ad-plugin/deployments", + "created_at": "2010-12-13T05:51:01Z", + "updated_at": "2013-11-10T02:16:25Z", + "pushed_at": "2013-11-10T02:16:23Z", + "git_url": "git://github.com/jenkinsci/scis-ad-plugin.git", + "ssh_url": "git@github.com:jenkinsci/scis-ad-plugin.git", + "clone_url": "https://github.com/jenkinsci/scis-ad-plugin.git", + "svn_url": "https://github.com/jenkinsci/scis-ad-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 128, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163723, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzIz", + "name": "ruby-plugin", + "full_name": "jenkinsci/ruby-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/ruby-plugin", + "description": "Jenkins ruby plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/ruby-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/ruby-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/ruby-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/ruby-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/ruby-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/ruby-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/ruby-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/ruby-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/ruby-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/ruby-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/ruby-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/ruby-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/ruby-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/ruby-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/ruby-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/ruby-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/ruby-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/ruby-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/ruby-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/ruby-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/ruby-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/ruby-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/ruby-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/ruby-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/ruby-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/ruby-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/ruby-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/ruby-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/ruby-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/ruby-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/ruby-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/ruby-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/ruby-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/ruby-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/ruby-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/ruby-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/ruby-plugin/deployments", + "created_at": "2010-12-13T05:51:07Z", + "updated_at": "2013-11-10T02:15:58Z", + "pushed_at": "2013-11-10T02:15:53Z", + "git_url": "git://github.com/jenkinsci/ruby-plugin.git", + "ssh_url": "git@github.com:jenkinsci/ruby-plugin.git", + "clone_url": "https://github.com/jenkinsci/ruby-plugin.git", + "svn_url": "https://github.com/jenkinsci/ruby-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 158, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 3, + "open_issues": 1, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163724, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzI0", + "name": "scm-sync-configuration-plugin", + "full_name": "jenkinsci/scm-sync-configuration-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/scm-sync-configuration-plugin", + "description": "Jenkins scm-sync-configuration plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/scm-sync-configuration-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/scm-sync-configuration-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/scm-sync-configuration-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/scm-sync-configuration-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/scm-sync-configuration-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/scm-sync-configuration-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/scm-sync-configuration-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/scm-sync-configuration-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/scm-sync-configuration-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/scm-sync-configuration-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/scm-sync-configuration-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/scm-sync-configuration-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/scm-sync-configuration-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/scm-sync-configuration-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/scm-sync-configuration-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/scm-sync-configuration-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/scm-sync-configuration-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/scm-sync-configuration-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/scm-sync-configuration-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/scm-sync-configuration-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/scm-sync-configuration-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/scm-sync-configuration-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/scm-sync-configuration-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/scm-sync-configuration-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/scm-sync-configuration-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/scm-sync-configuration-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/scm-sync-configuration-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/scm-sync-configuration-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/scm-sync-configuration-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/scm-sync-configuration-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/scm-sync-configuration-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/scm-sync-configuration-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/scm-sync-configuration-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/scm-sync-configuration-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/scm-sync-configuration-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/scm-sync-configuration-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/scm-sync-configuration-plugin/deployments", + "created_at": "2010-12-13T05:51:08Z", + "updated_at": "2019-07-25T17:32:25Z", + "pushed_at": "2019-09-24T10:29:13Z", + "git_url": "git://github.com/jenkinsci/scm-sync-configuration-plugin.git", + "ssh_url": "git@github.com:jenkinsci/scm-sync-configuration-plugin.git", + "clone_url": "https://github.com/jenkinsci/scm-sync-configuration-plugin.git", + "svn_url": "https://github.com/jenkinsci/scm-sync-configuration-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 623, + "stargazers_count": 117, + "watchers_count": 117, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 133, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 46, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 133, + "open_issues": 46, + "watchers": 117, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163725, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzI1", + "name": "scons-plugin", + "full_name": "jenkinsci/scons-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/scons-plugin", + "description": "Jenkins scons plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/scons-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/scons-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/scons-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/scons-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/scons-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/scons-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/scons-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/scons-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/scons-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/scons-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/scons-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/scons-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/scons-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/scons-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/scons-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/scons-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/scons-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/scons-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/scons-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/scons-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/scons-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/scons-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/scons-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/scons-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/scons-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/scons-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/scons-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/scons-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/scons-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/scons-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/scons-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/scons-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/scons-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/scons-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/scons-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/scons-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/scons-plugin/deployments", + "created_at": "2010-12-13T05:51:10Z", + "updated_at": "2013-11-10T02:16:32Z", + "pushed_at": "2013-11-10T02:16:29Z", + "git_url": "git://github.com/jenkinsci/scons-plugin.git", + "ssh_url": "git@github.com:jenkinsci/scons-plugin.git", + "clone_url": "https://github.com/jenkinsci/scons-plugin.git", + "svn_url": "https://github.com/jenkinsci/scons-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 164, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163726, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzI2", + "name": "schedule-failed-builds-plugin", + "full_name": "jenkinsci/schedule-failed-builds-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/schedule-failed-builds-plugin", + "description": "Jenkins schedule-failed-builds plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/schedule-failed-builds-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/schedule-failed-builds-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/schedule-failed-builds-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/schedule-failed-builds-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/schedule-failed-builds-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/schedule-failed-builds-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/schedule-failed-builds-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/schedule-failed-builds-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/schedule-failed-builds-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/schedule-failed-builds-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/schedule-failed-builds-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/schedule-failed-builds-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/schedule-failed-builds-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/schedule-failed-builds-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/schedule-failed-builds-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/schedule-failed-builds-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/schedule-failed-builds-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/schedule-failed-builds-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/schedule-failed-builds-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/schedule-failed-builds-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/schedule-failed-builds-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/schedule-failed-builds-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/schedule-failed-builds-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/schedule-failed-builds-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/schedule-failed-builds-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/schedule-failed-builds-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/schedule-failed-builds-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/schedule-failed-builds-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/schedule-failed-builds-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/schedule-failed-builds-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/schedule-failed-builds-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/schedule-failed-builds-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/schedule-failed-builds-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/schedule-failed-builds-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/schedule-failed-builds-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/schedule-failed-builds-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/schedule-failed-builds-plugin/deployments", + "created_at": "2010-12-13T05:51:14Z", + "updated_at": "2013-11-10T02:16:23Z", + "pushed_at": "2013-11-10T02:16:19Z", + "git_url": "git://github.com/jenkinsci/schedule-failed-builds-plugin.git", + "ssh_url": "git@github.com:jenkinsci/schedule-failed-builds-plugin.git", + "clone_url": "https://github.com/jenkinsci/schedule-failed-builds-plugin.git", + "svn_url": "https://github.com/jenkinsci/schedule-failed-builds-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 144, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163727, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzI3", + "name": "script-realm-plugin", + "full_name": "jenkinsci/script-realm-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/script-realm-plugin", + "description": "Jenkins script-realm plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/script-realm-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/script-realm-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/script-realm-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/script-realm-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/script-realm-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/script-realm-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/script-realm-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/script-realm-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/script-realm-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/script-realm-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/script-realm-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/script-realm-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/script-realm-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/script-realm-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/script-realm-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/script-realm-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/script-realm-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/script-realm-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/script-realm-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/script-realm-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/script-realm-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/script-realm-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/script-realm-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/script-realm-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/script-realm-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/script-realm-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/script-realm-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/script-realm-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/script-realm-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/script-realm-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/script-realm-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/script-realm-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/script-realm-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/script-realm-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/script-realm-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/script-realm-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/script-realm-plugin/deployments", + "created_at": "2010-12-13T05:51:15Z", + "updated_at": "2019-02-05T09:54:53Z", + "pushed_at": "2019-10-08T16:23:13Z", + "git_url": "git://github.com/jenkinsci/script-realm-plugin.git", + "ssh_url": "git@github.com:jenkinsci/script-realm-plugin.git", + "clone_url": "https://github.com/jenkinsci/script-realm-plugin.git", + "svn_url": "https://github.com/jenkinsci/script-realm-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 351, + "stargazers_count": 8, + "watchers_count": 8, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 9, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 4, + "license": null, + "forks": 9, + "open_issues": 4, + "watchers": 8, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163728, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzI4", + "name": "sauce-ondemand-plugin", + "full_name": "jenkinsci/sauce-ondemand-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/sauce-ondemand-plugin", + "description": "Jenkins sauce-ondemand plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/sauce-ondemand-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/sauce-ondemand-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/sauce-ondemand-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/sauce-ondemand-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/sauce-ondemand-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/sauce-ondemand-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/sauce-ondemand-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/sauce-ondemand-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/sauce-ondemand-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/sauce-ondemand-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/sauce-ondemand-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/sauce-ondemand-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/sauce-ondemand-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/sauce-ondemand-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/sauce-ondemand-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/sauce-ondemand-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/sauce-ondemand-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/sauce-ondemand-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/sauce-ondemand-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/sauce-ondemand-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/sauce-ondemand-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/sauce-ondemand-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/sauce-ondemand-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/sauce-ondemand-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/sauce-ondemand-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/sauce-ondemand-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/sauce-ondemand-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/sauce-ondemand-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/sauce-ondemand-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/sauce-ondemand-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/sauce-ondemand-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/sauce-ondemand-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/sauce-ondemand-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/sauce-ondemand-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/sauce-ondemand-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/sauce-ondemand-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/sauce-ondemand-plugin/deployments", + "created_at": "2010-12-13T05:51:17Z", + "updated_at": "2019-07-15T10:04:40Z", + "pushed_at": "2019-10-22T18:02:05Z", + "git_url": "git://github.com/jenkinsci/sauce-ondemand-plugin.git", + "ssh_url": "git@github.com:jenkinsci/sauce-ondemand-plugin.git", + "clone_url": "https://github.com/jenkinsci/sauce-ondemand-plugin.git", + "svn_url": "https://github.com/jenkinsci/sauce-ondemand-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 1587, + "stargazers_count": 21, + "watchers_count": 21, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 43, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 43, + "open_issues": 3, + "watchers": 21, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163729, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzI5", + "name": "script-realm-extended-plugin", + "full_name": "jenkinsci/script-realm-extended-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/script-realm-extended-plugin", + "description": "Jenkins script-realm-extended plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/script-realm-extended-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/script-realm-extended-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/script-realm-extended-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/script-realm-extended-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/script-realm-extended-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/script-realm-extended-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/script-realm-extended-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/script-realm-extended-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/script-realm-extended-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/script-realm-extended-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/script-realm-extended-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/script-realm-extended-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/script-realm-extended-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/script-realm-extended-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/script-realm-extended-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/script-realm-extended-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/script-realm-extended-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/script-realm-extended-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/script-realm-extended-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/script-realm-extended-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/script-realm-extended-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/script-realm-extended-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/script-realm-extended-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/script-realm-extended-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/script-realm-extended-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/script-realm-extended-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/script-realm-extended-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/script-realm-extended-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/script-realm-extended-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/script-realm-extended-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/script-realm-extended-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/script-realm-extended-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/script-realm-extended-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/script-realm-extended-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/script-realm-extended-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/script-realm-extended-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/script-realm-extended-plugin/deployments", + "created_at": "2010-12-13T05:51:29Z", + "updated_at": "2013-11-10T02:16:45Z", + "pushed_at": "2013-11-10T02:16:36Z", + "git_url": "git://github.com/jenkinsci/script-realm-extended-plugin.git", + "ssh_url": "git@github.com:jenkinsci/script-realm-extended-plugin.git", + "clone_url": "https://github.com/jenkinsci/script-realm-extended-plugin.git", + "svn_url": "https://github.com/jenkinsci/script-realm-extended-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 108, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163731, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzMx", + "name": "promoted-builds-plugin", + "full_name": "jenkinsci/promoted-builds-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/promoted-builds-plugin", + "description": "Jenkins Promoted Builds Plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/promoted-builds-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/promoted-builds-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/promoted-builds-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/promoted-builds-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/promoted-builds-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/promoted-builds-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/promoted-builds-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/promoted-builds-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/promoted-builds-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/promoted-builds-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/promoted-builds-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/promoted-builds-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/promoted-builds-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/promoted-builds-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/promoted-builds-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/promoted-builds-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/promoted-builds-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/promoted-builds-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/promoted-builds-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/promoted-builds-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/promoted-builds-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/promoted-builds-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/promoted-builds-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/promoted-builds-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/promoted-builds-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/promoted-builds-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/promoted-builds-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/promoted-builds-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/promoted-builds-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/promoted-builds-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/promoted-builds-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/promoted-builds-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/promoted-builds-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/promoted-builds-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/promoted-builds-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/promoted-builds-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/promoted-builds-plugin/deployments", + "created_at": "2010-12-13T05:51:37Z", + "updated_at": "2019-10-07T23:53:30Z", + "pushed_at": "2019-10-08T00:30:45Z", + "git_url": "git://github.com/jenkinsci/promoted-builds-plugin.git", + "ssh_url": "git@github.com:jenkinsci/promoted-builds-plugin.git", + "clone_url": "https://github.com/jenkinsci/promoted-builds-plugin.git", + "svn_url": "https://github.com/jenkinsci/promoted-builds-plugin", + "homepage": "https://plugins.jenkins.io/promoted-builds", + "size": 1141, + "stargazers_count": 93, + "watchers_count": 93, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 149, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 14, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 149, + "open_issues": 14, + "watchers": 93, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163732, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzMy", + "name": "perforce-plugin", + "full_name": "jenkinsci/perforce-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/perforce-plugin", + "description": "Jenkins perforce plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/perforce-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/perforce-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/perforce-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/perforce-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/perforce-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/perforce-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/perforce-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/perforce-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/perforce-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/perforce-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/perforce-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/perforce-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/perforce-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/perforce-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/perforce-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/perforce-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/perforce-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/perforce-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/perforce-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/perforce-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/perforce-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/perforce-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/perforce-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/perforce-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/perforce-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/perforce-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/perforce-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/perforce-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/perforce-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/perforce-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/perforce-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/perforce-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/perforce-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/perforce-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/perforce-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/perforce-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/perforce-plugin/deployments", + "created_at": "2010-12-13T05:51:46Z", + "updated_at": "2019-08-13T14:39:36Z", + "pushed_at": "2018-02-12T17:14:38Z", + "git_url": "git://github.com/jenkinsci/perforce-plugin.git", + "ssh_url": "git@github.com:jenkinsci/perforce-plugin.git", + "clone_url": "https://github.com/jenkinsci/perforce-plugin.git", + "svn_url": "https://github.com/jenkinsci/perforce-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 2063, + "stargazers_count": 54, + "watchers_count": 54, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 80, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 5, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 80, + "open_issues": 5, + "watchers": 54, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163733, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzMz", + "name": "security-no-captcha-plugin", + "full_name": "jenkinsci/security-no-captcha-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/security-no-captcha-plugin", + "description": "Jenkins security-no-captcha plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/security-no-captcha-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/security-no-captcha-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/security-no-captcha-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/security-no-captcha-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/security-no-captcha-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/security-no-captcha-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/security-no-captcha-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/security-no-captcha-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/security-no-captcha-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/security-no-captcha-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/security-no-captcha-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/security-no-captcha-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/security-no-captcha-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/security-no-captcha-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/security-no-captcha-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/security-no-captcha-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/security-no-captcha-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/security-no-captcha-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/security-no-captcha-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/security-no-captcha-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/security-no-captcha-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/security-no-captcha-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/security-no-captcha-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/security-no-captcha-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/security-no-captcha-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/security-no-captcha-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/security-no-captcha-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/security-no-captcha-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/security-no-captcha-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/security-no-captcha-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/security-no-captcha-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/security-no-captcha-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/security-no-captcha-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/security-no-captcha-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/security-no-captcha-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/security-no-captcha-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/security-no-captcha-plugin/deployments", + "created_at": "2010-12-13T05:51:51Z", + "updated_at": "2014-04-03T20:30:48Z", + "pushed_at": "2013-11-10T02:16:50Z", + "git_url": "git://github.com/jenkinsci/security-no-captcha-plugin.git", + "ssh_url": "git@github.com:jenkinsci/security-no-captcha-plugin.git", + "clone_url": "https://github.com/jenkinsci/security-no-captcha-plugin.git", + "svn_url": "https://github.com/jenkinsci/security-no-captcha-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 116, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163734, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzM0", + "name": "scriptler-plugin", + "full_name": "jenkinsci/scriptler-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/scriptler-plugin", + "description": "Jenkins scriptler plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/scriptler-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/scriptler-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/scriptler-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/scriptler-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/scriptler-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/scriptler-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/scriptler-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/scriptler-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/scriptler-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/scriptler-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/scriptler-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/scriptler-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/scriptler-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/scriptler-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/scriptler-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/scriptler-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/scriptler-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/scriptler-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/scriptler-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/scriptler-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/scriptler-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/scriptler-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/scriptler-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/scriptler-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/scriptler-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/scriptler-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/scriptler-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/scriptler-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/scriptler-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/scriptler-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/scriptler-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/scriptler-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/scriptler-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/scriptler-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/scriptler-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/scriptler-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/scriptler-plugin/deployments", + "created_at": "2010-12-13T05:51:56Z", + "updated_at": "2019-09-28T00:10:39Z", + "pushed_at": "2019-10-18T08:36:18Z", + "git_url": "git://github.com/jenkinsci/scriptler-plugin.git", + "ssh_url": "git@github.com:jenkinsci/scriptler-plugin.git", + "clone_url": "https://github.com/jenkinsci/scriptler-plugin.git", + "svn_url": "https://github.com/jenkinsci/scriptler-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 467, + "stargazers_count": 20, + "watchers_count": 20, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 40, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 40, + "open_issues": 2, + "watchers": 20, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163735, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzM1", + "name": "sep-plugin", + "full_name": "jenkinsci/sep-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/sep-plugin", + "description": "Jenkins sep plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/sep-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/sep-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/sep-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/sep-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/sep-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/sep-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/sep-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/sep-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/sep-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/sep-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/sep-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/sep-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/sep-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/sep-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/sep-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/sep-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/sep-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/sep-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/sep-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/sep-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/sep-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/sep-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/sep-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/sep-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/sep-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/sep-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/sep-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/sep-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/sep-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/sep-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/sep-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/sep-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/sep-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/sep-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/sep-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/sep-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/sep-plugin/deployments", + "created_at": "2010-12-13T05:52:02Z", + "updated_at": "2014-01-18T15:35:27Z", + "pushed_at": "2013-11-10T02:17:10Z", + "git_url": "git://github.com/jenkinsci/sep-plugin.git", + "ssh_url": "git@github.com:jenkinsci/sep-plugin.git", + "clone_url": "https://github.com/jenkinsci/sep-plugin.git", + "svn_url": "https://github.com/jenkinsci/sep-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 120, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163736, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzM2", + "name": "scp-plugin", + "full_name": "jenkinsci/scp-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/scp-plugin", + "description": "Jenkins scp plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/scp-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/scp-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/scp-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/scp-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/scp-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/scp-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/scp-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/scp-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/scp-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/scp-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/scp-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/scp-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/scp-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/scp-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/scp-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/scp-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/scp-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/scp-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/scp-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/scp-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/scp-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/scp-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/scp-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/scp-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/scp-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/scp-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/scp-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/scp-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/scp-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/scp-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/scp-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/scp-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/scp-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/scp-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/scp-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/scp-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/scp-plugin/deployments", + "created_at": "2010-12-13T05:52:09Z", + "updated_at": "2019-10-23T17:14:05Z", + "pushed_at": "2019-09-24T10:38:58Z", + "git_url": "git://github.com/jenkinsci/scp-plugin.git", + "ssh_url": "git@github.com:jenkinsci/scp-plugin.git", + "clone_url": "https://github.com/jenkinsci/scp-plugin.git", + "svn_url": "https://github.com/jenkinsci/scp-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 146, + "stargazers_count": 15, + "watchers_count": 15, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 32, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 10, + "license": null, + "forks": 32, + "open_issues": 10, + "watchers": 15, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163737, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzM3", + "name": "serenitec-plugin", + "full_name": "jenkinsci/serenitec-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/serenitec-plugin", + "description": "Jenkins serenitec plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/serenitec-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/serenitec-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/serenitec-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/serenitec-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/serenitec-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/serenitec-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/serenitec-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/serenitec-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/serenitec-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/serenitec-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/serenitec-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/serenitec-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/serenitec-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/serenitec-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/serenitec-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/serenitec-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/serenitec-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/serenitec-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/serenitec-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/serenitec-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/serenitec-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/serenitec-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/serenitec-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/serenitec-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/serenitec-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/serenitec-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/serenitec-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/serenitec-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/serenitec-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/serenitec-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/serenitec-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/serenitec-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/serenitec-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/serenitec-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/serenitec-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/serenitec-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/serenitec-plugin/deployments", + "created_at": "2010-12-13T05:52:09Z", + "updated_at": "2014-01-14T09:19:50Z", + "pushed_at": "2013-11-10T02:17:12Z", + "git_url": "git://github.com/jenkinsci/serenitec-plugin.git", + "ssh_url": "git@github.com:jenkinsci/serenitec-plugin.git", + "clone_url": "https://github.com/jenkinsci/serenitec-plugin.git", + "svn_url": "https://github.com/jenkinsci/serenitec-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 224, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163738, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzM4", + "name": "secret-plugin", + "full_name": "jenkinsci/secret-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/secret-plugin", + "description": "Jenkins secret plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/secret-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/secret-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/secret-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/secret-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/secret-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/secret-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/secret-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/secret-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/secret-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/secret-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/secret-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/secret-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/secret-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/secret-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/secret-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/secret-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/secret-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/secret-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/secret-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/secret-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/secret-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/secret-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/secret-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/secret-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/secret-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/secret-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/secret-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/secret-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/secret-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/secret-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/secret-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/secret-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/secret-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/secret-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/secret-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/secret-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/secret-plugin/deployments", + "created_at": "2010-12-13T05:52:09Z", + "updated_at": "2015-11-22T20:14:09Z", + "pushed_at": "2016-04-16T01:42:49Z", + "git_url": "git://github.com/jenkinsci/secret-plugin.git", + "ssh_url": "git@github.com:jenkinsci/secret-plugin.git", + "clone_url": "https://github.com/jenkinsci/secret-plugin.git", + "svn_url": "https://github.com/jenkinsci/secret-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Build+Secret+Plugin", + "size": 22, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 4, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163739, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzM5", + "name": "setenv-plugin", + "full_name": "jenkinsci/setenv-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/setenv-plugin", + "description": "Jenkins setenv plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/setenv-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/setenv-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/setenv-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/setenv-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/setenv-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/setenv-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/setenv-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/setenv-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/setenv-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/setenv-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/setenv-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/setenv-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/setenv-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/setenv-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/setenv-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/setenv-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/setenv-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/setenv-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/setenv-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/setenv-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/setenv-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/setenv-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/setenv-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/setenv-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/setenv-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/setenv-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/setenv-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/setenv-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/setenv-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/setenv-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/setenv-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/setenv-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/setenv-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/setenv-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/setenv-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/setenv-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/setenv-plugin/deployments", + "created_at": "2010-12-13T05:52:10Z", + "updated_at": "2014-04-16T19:51:15Z", + "pushed_at": "2013-11-10T02:17:16Z", + "git_url": "git://github.com/jenkinsci/setenv-plugin.git", + "ssh_url": "git@github.com:jenkinsci/setenv-plugin.git", + "clone_url": "https://github.com/jenkinsci/setenv-plugin.git", + "svn_url": "https://github.com/jenkinsci/setenv-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 114, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163740, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzQw", + "name": "seleniumhq-plugin", + "full_name": "jenkinsci/seleniumhq-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/seleniumhq-plugin", + "description": "Jenkins seleniumhq plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/seleniumhq-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/seleniumhq-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/seleniumhq-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/seleniumhq-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/seleniumhq-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/seleniumhq-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/seleniumhq-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/seleniumhq-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/seleniumhq-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/seleniumhq-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/seleniumhq-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/seleniumhq-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/seleniumhq-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/seleniumhq-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/seleniumhq-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/seleniumhq-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/seleniumhq-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/seleniumhq-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/seleniumhq-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/seleniumhq-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/seleniumhq-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/seleniumhq-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/seleniumhq-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/seleniumhq-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/seleniumhq-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/seleniumhq-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/seleniumhq-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/seleniumhq-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/seleniumhq-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/seleniumhq-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/seleniumhq-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/seleniumhq-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/seleniumhq-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/seleniumhq-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/seleniumhq-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/seleniumhq-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/seleniumhq-plugin/deployments", + "created_at": "2010-12-13T05:52:10Z", + "updated_at": "2017-05-31T05:08:34Z", + "pushed_at": "2013-11-10T02:17:05Z", + "git_url": "git://github.com/jenkinsci/seleniumhq-plugin.git", + "ssh_url": "git@github.com:jenkinsci/seleniumhq-plugin.git", + "clone_url": "https://github.com/jenkinsci/seleniumhq-plugin.git", + "svn_url": "https://github.com/jenkinsci/seleniumhq-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 203, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 6, + "open_issues": 2, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163741, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzQx", + "name": "sectioned-view-plugin", + "full_name": "jenkinsci/sectioned-view-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/sectioned-view-plugin", + "description": "Jenkins sectioned-view plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/sectioned-view-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/sectioned-view-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/sectioned-view-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/sectioned-view-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/sectioned-view-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/sectioned-view-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/sectioned-view-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/sectioned-view-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/sectioned-view-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/sectioned-view-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/sectioned-view-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/sectioned-view-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/sectioned-view-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/sectioned-view-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/sectioned-view-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/sectioned-view-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/sectioned-view-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/sectioned-view-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/sectioned-view-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/sectioned-view-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/sectioned-view-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/sectioned-view-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/sectioned-view-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/sectioned-view-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/sectioned-view-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/sectioned-view-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/sectioned-view-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/sectioned-view-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/sectioned-view-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/sectioned-view-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/sectioned-view-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/sectioned-view-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/sectioned-view-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/sectioned-view-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/sectioned-view-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/sectioned-view-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/sectioned-view-plugin/deployments", + "created_at": "2010-12-13T05:52:15Z", + "updated_at": "2019-07-11T00:16:57Z", + "pushed_at": "2019-10-08T09:59:31Z", + "git_url": "git://github.com/jenkinsci/sectioned-view-plugin.git", + "ssh_url": "git@github.com:jenkinsci/sectioned-view-plugin.git", + "clone_url": "https://github.com/jenkinsci/sectioned-view-plugin.git", + "svn_url": "https://github.com/jenkinsci/sectioned-view-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 244, + "stargazers_count": 9, + "watchers_count": 9, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 27, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 7, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 27, + "open_issues": 7, + "watchers": 9, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163742, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzQy", + "name": "serenity-plugin", + "full_name": "jenkinsci/serenity-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/serenity-plugin", + "description": "Jenkins serenity plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/serenity-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/serenity-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/serenity-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/serenity-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/serenity-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/serenity-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/serenity-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/serenity-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/serenity-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/serenity-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/serenity-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/serenity-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/serenity-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/serenity-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/serenity-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/serenity-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/serenity-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/serenity-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/serenity-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/serenity-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/serenity-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/serenity-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/serenity-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/serenity-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/serenity-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/serenity-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/serenity-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/serenity-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/serenity-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/serenity-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/serenity-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/serenity-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/serenity-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/serenity-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/serenity-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/serenity-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/serenity-plugin/deployments", + "created_at": "2010-12-13T05:52:28Z", + "updated_at": "2016-06-07T14:29:38Z", + "pushed_at": "2019-10-08T16:15:18Z", + "git_url": "git://github.com/jenkinsci/serenity-plugin.git", + "ssh_url": "git@github.com:jenkinsci/serenity-plugin.git", + "clone_url": "https://github.com/jenkinsci/serenity-plugin.git", + "svn_url": "https://github.com/jenkinsci/serenity-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 58390, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 4, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163743, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNzQz", + "name": "skype-status-plugin", + "full_name": "jenkinsci/skype-status-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/skype-status-plugin", + "description": "Jenkins skype-status plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/skype-status-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/skype-status-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/skype-status-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/skype-status-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/skype-status-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/skype-status-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/skype-status-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/skype-status-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/skype-status-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/skype-status-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/skype-status-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/skype-status-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/skype-status-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/skype-status-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/skype-status-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/skype-status-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/skype-status-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/skype-status-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/skype-status-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/skype-status-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/skype-status-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/skype-status-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/skype-status-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/skype-status-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/skype-status-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/skype-status-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/skype-status-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/skype-status-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/skype-status-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/skype-status-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/skype-status-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/skype-status-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/skype-status-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/skype-status-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/skype-status-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/skype-status-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/skype-status-plugin/deployments", + "created_at": "2010-12-13T05:52:35Z", + "updated_at": "2013-11-10T02:18:02Z", + "pushed_at": "2013-11-10T02:17:52Z", + "git_url": "git://github.com/jenkinsci/skype-status-plugin.git", + "ssh_url": "git@github.com:jenkinsci/skype-status-plugin.git", + "clone_url": "https://github.com/jenkinsci/skype-status-plugin.git", + "svn_url": "https://github.com/jenkinsci/skype-status-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 108, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/__files/organizations_107424_repos-d95d3c51-42d4-4138-86ba-95b07d066993.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/__files/organizations_107424_repos-d95d3c51-42d4-4138-86ba-95b07d066993.json new file mode 100644 index 0000000000..5956daf951 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/__files/organizations_107424_repos-d95d3c51-42d4-4138-86ba-95b07d066993.json @@ -0,0 +1,416 @@ +[ + { + "id": 217084385, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTcwODQzODU=", + "name": "qualys-was-plugin", + "full_name": "jenkinsci/qualys-was-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/qualys-was-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/qualys-was-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/qualys-was-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/qualys-was-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/qualys-was-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/qualys-was-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/qualys-was-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/qualys-was-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/qualys-was-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/qualys-was-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/qualys-was-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/qualys-was-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/qualys-was-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/qualys-was-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/qualys-was-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/qualys-was-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/qualys-was-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/qualys-was-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/qualys-was-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/qualys-was-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/qualys-was-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/qualys-was-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/qualys-was-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/qualys-was-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/qualys-was-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/qualys-was-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/qualys-was-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/qualys-was-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/qualys-was-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/qualys-was-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/qualys-was-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/qualys-was-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/qualys-was-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/qualys-was-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/qualys-was-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/qualys-was-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/qualys-was-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/qualys-was-plugin/deployments", + "created_at": "2019-10-23T14:56:53Z", + "updated_at": "2019-10-24T09:01:49Z", + "pushed_at": "2019-10-24T09:01:47Z", + "git_url": "git://github.com/jenkinsci/qualys-was-plugin.git", + "ssh_url": "git@github.com:jenkinsci/qualys-was-plugin.git", + "clone_url": "https://github.com/jenkinsci/qualys-was-plugin.git", + "svn_url": "https://github.com/jenkinsci/qualys-was-plugin", + "homepage": null, + "size": 736, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "gpl-3.0", + "name": "GNU General Public License v3.0", + "spdx_id": "GPL-3.0", + "url": "https://api.github.com/licenses/gpl-3.0", + "node_id": "MDc6TGljZW5zZTk=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 217381572, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTczODE1NzI=", + "name": "opencover-plugin", + "full_name": "jenkinsci/opencover-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/opencover-plugin", + "description": "Jenkins OpenCover Plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/opencover-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/opencover-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/opencover-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/opencover-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/opencover-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/opencover-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/opencover-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/opencover-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/opencover-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/opencover-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/opencover-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/opencover-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/opencover-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/opencover-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/opencover-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/opencover-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/opencover-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/opencover-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/opencover-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/opencover-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/opencover-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/opencover-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/opencover-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/opencover-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/opencover-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/opencover-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/opencover-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/opencover-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/opencover-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/opencover-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/opencover-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/opencover-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/opencover-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/opencover-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/opencover-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/opencover-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/opencover-plugin/deployments", + "created_at": "2019-10-24T19:39:47Z", + "updated_at": "2019-10-24T21:19:14Z", + "pushed_at": "2019-10-24T21:19:12Z", + "git_url": "git://github.com/jenkinsci/opencover-plugin.git", + "ssh_url": "git@github.com:jenkinsci/opencover-plugin.git", + "clone_url": "https://github.com/jenkinsci/opencover-plugin.git", + "svn_url": "https://github.com/jenkinsci/opencover-plugin", + "homepage": "", + "size": 15, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 217419171, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTc0MTkxNzE=", + "name": "convert-to-declarative", + "full_name": "jenkinsci/convert-to-declarative", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/convert-to-declarative", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/convert-to-declarative", + "forks_url": "https://api.github.com/repos/jenkinsci/convert-to-declarative/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/convert-to-declarative/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/convert-to-declarative/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/convert-to-declarative/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/convert-to-declarative/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/convert-to-declarative/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/convert-to-declarative/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/convert-to-declarative/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/convert-to-declarative/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/convert-to-declarative/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/convert-to-declarative/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/convert-to-declarative/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/convert-to-declarative/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/convert-to-declarative/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/convert-to-declarative/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/convert-to-declarative/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/convert-to-declarative/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/convert-to-declarative/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/convert-to-declarative/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/convert-to-declarative/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/convert-to-declarative/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/convert-to-declarative/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/convert-to-declarative/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/convert-to-declarative/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/convert-to-declarative/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/convert-to-declarative/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/convert-to-declarative/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/convert-to-declarative/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/convert-to-declarative/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/convert-to-declarative/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/convert-to-declarative/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/convert-to-declarative/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/convert-to-declarative/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/convert-to-declarative/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/convert-to-declarative/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/convert-to-declarative/deployments", + "created_at": "2019-10-25T00:33:34Z", + "updated_at": "2019-10-25T09:23:43Z", + "pushed_at": "2019-10-25T09:23:41Z", + "git_url": "git://github.com/jenkinsci/convert-to-declarative.git", + "ssh_url": "git@github.com:jenkinsci/convert-to-declarative.git", + "clone_url": "https://github.com/jenkinsci/convert-to-declarative.git", + "svn_url": "https://github.com/jenkinsci/convert-to-declarative", + "homepage": null, + "size": 235, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 217578084, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTc1NzgwODQ=", + "name": "concurrent-step-plugin", + "full_name": "jenkinsci/concurrent-step-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/concurrent-step-plugin", + "description": "Jenkins plugin to use utils in Java concurrent package.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/concurrent-step-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/concurrent-step-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/concurrent-step-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/concurrent-step-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/concurrent-step-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/concurrent-step-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/concurrent-step-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/concurrent-step-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/concurrent-step-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/concurrent-step-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/concurrent-step-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/concurrent-step-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/concurrent-step-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/concurrent-step-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/concurrent-step-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/concurrent-step-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/concurrent-step-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/concurrent-step-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/concurrent-step-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/concurrent-step-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/concurrent-step-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/concurrent-step-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/concurrent-step-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/concurrent-step-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/concurrent-step-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/concurrent-step-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/concurrent-step-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/concurrent-step-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/concurrent-step-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/concurrent-step-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/concurrent-step-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/concurrent-step-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/concurrent-step-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/concurrent-step-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/concurrent-step-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/concurrent-step-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/concurrent-step-plugin/deployments", + "created_at": "2019-10-25T16:54:36Z", + "updated_at": "2019-10-25T16:54:50Z", + "pushed_at": "2019-10-25T14:59:36Z", + "git_url": "git://github.com/jenkinsci/concurrent-step-plugin.git", + "ssh_url": "git@github.com:jenkinsci/concurrent-step-plugin.git", + "clone_url": "https://github.com/jenkinsci/concurrent-step-plugin.git", + "svn_url": "https://github.com/jenkinsci/concurrent-step-plugin", + "homepage": null, + "size": 45, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/__files/organizations_107424_repos-db791f4d-4464-4055-80ae-83d017b7596d.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/__files/organizations_107424_repos-db791f4d-4464-4055-80ae-83d017b7596d.json new file mode 100644 index 0000000000..f27e5c5134 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/__files/organizations_107424_repos-db791f4d-4464-4055-80ae-83d017b7596d.json @@ -0,0 +1,10070 @@ +[ + { + "id": 1217626, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjE3NjI2", + "name": "nightly-dilbert-plugin", + "full_name": "jenkinsci/nightly-dilbert-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/nightly-dilbert-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/nightly-dilbert-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/nightly-dilbert-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/nightly-dilbert-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/nightly-dilbert-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/nightly-dilbert-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/nightly-dilbert-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/nightly-dilbert-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/nightly-dilbert-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/nightly-dilbert-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/nightly-dilbert-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/nightly-dilbert-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/nightly-dilbert-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/nightly-dilbert-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/nightly-dilbert-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/nightly-dilbert-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/nightly-dilbert-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/nightly-dilbert-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/nightly-dilbert-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/nightly-dilbert-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/nightly-dilbert-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/nightly-dilbert-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/nightly-dilbert-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/nightly-dilbert-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/nightly-dilbert-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/nightly-dilbert-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/nightly-dilbert-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/nightly-dilbert-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/nightly-dilbert-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/nightly-dilbert-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/nightly-dilbert-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/nightly-dilbert-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/nightly-dilbert-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/nightly-dilbert-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/nightly-dilbert-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/nightly-dilbert-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/nightly-dilbert-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/nightly-dilbert-plugin/deployments", + "created_at": "2011-01-03T21:24:45Z", + "updated_at": "2013-11-10T02:12:12Z", + "pushed_at": "2013-11-10T02:12:07Z", + "git_url": "git://github.com/jenkinsci/nightly-dilbert-plugin.git", + "ssh_url": "git@github.com:jenkinsci/nightly-dilbert-plugin.git", + "clone_url": "https://github.com/jenkinsci/nightly-dilbert-plugin.git", + "svn_url": "https://github.com/jenkinsci/nightly-dilbert-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 76, + "stargazers_count": 1, + "watchers_count": 1, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1217631, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjE3NjMx", + "name": "notification-plugin", + "full_name": "jenkinsci/notification-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/notification-plugin", + "description": "Jenkins Notification Plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/notification-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/notification-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/notification-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/notification-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/notification-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/notification-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/notification-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/notification-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/notification-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/notification-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/notification-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/notification-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/notification-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/notification-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/notification-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/notification-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/notification-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/notification-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/notification-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/notification-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/notification-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/notification-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/notification-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/notification-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/notification-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/notification-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/notification-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/notification-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/notification-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/notification-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/notification-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/notification-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/notification-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/notification-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/notification-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/notification-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/notification-plugin/deployments", + "created_at": "2011-01-03T21:27:38Z", + "updated_at": "2019-09-14T00:50:10Z", + "pushed_at": "2019-10-23T20:56:47Z", + "git_url": "git://github.com/jenkinsci/notification-plugin.git", + "ssh_url": "git@github.com:jenkinsci/notification-plugin.git", + "clone_url": "https://github.com/jenkinsci/notification-plugin.git", + "svn_url": "https://github.com/jenkinsci/notification-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Notification+Plugin", + "size": 182, + "stargazers_count": 47, + "watchers_count": 47, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 87, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 4, + "license": null, + "forks": 87, + "open_issues": 4, + "watchers": 47, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1223984, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjIzOTg0", + "name": "sbt-plugin", + "full_name": "jenkinsci/sbt-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/sbt-plugin", + "description": "Jenkins sbt plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/sbt-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/sbt-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/sbt-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/sbt-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/sbt-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/sbt-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/sbt-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/sbt-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/sbt-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/sbt-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/sbt-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/sbt-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/sbt-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/sbt-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/sbt-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/sbt-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/sbt-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/sbt-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/sbt-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/sbt-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/sbt-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/sbt-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/sbt-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/sbt-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/sbt-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/sbt-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/sbt-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/sbt-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/sbt-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/sbt-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/sbt-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/sbt-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/sbt-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/sbt-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/sbt-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/sbt-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/sbt-plugin/deployments", + "created_at": "2011-01-05T19:39:40Z", + "updated_at": "2019-01-28T08:52:16Z", + "pushed_at": "2019-10-08T10:03:46Z", + "git_url": "git://github.com/jenkinsci/sbt-plugin.git", + "ssh_url": "git@github.com:jenkinsci/sbt-plugin.git", + "clone_url": "https://github.com/jenkinsci/sbt-plugin.git", + "svn_url": "https://github.com/jenkinsci/sbt-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 59, + "stargazers_count": 61, + "watchers_count": 61, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 29, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 8, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 29, + "open_issues": 8, + "watchers": 61, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1224032, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjI0MDMy", + "name": "flashlog-plugin", + "full_name": "jenkinsci/flashlog-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/flashlog-plugin", + "description": "Jenkins plugin which allows you to capture the flash logs during a build. This is useful to debug unit tests or integration tests. NOTE: currently tested under CENT OS / OS X. Windows integration is ready but is not tested at the moment. Will post updates when tested.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/flashlog-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/flashlog-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/flashlog-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/flashlog-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/flashlog-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/flashlog-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/flashlog-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/flashlog-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/flashlog-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/flashlog-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/flashlog-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/flashlog-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/flashlog-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/flashlog-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/flashlog-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/flashlog-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/flashlog-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/flashlog-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/flashlog-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/flashlog-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/flashlog-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/flashlog-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/flashlog-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/flashlog-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/flashlog-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/flashlog-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/flashlog-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/flashlog-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/flashlog-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/flashlog-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/flashlog-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/flashlog-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/flashlog-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/flashlog-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/flashlog-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/flashlog-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/flashlog-plugin/deployments", + "created_at": "2011-01-05T19:48:34Z", + "updated_at": "2013-11-10T02:02:47Z", + "pushed_at": "2013-11-10T02:02:41Z", + "git_url": "git://github.com/jenkinsci/flashlog-plugin.git", + "ssh_url": "git@github.com:jenkinsci/flashlog-plugin.git", + "clone_url": "https://github.com/jenkinsci/flashlog-plugin.git", + "svn_url": "https://github.com/jenkinsci/flashlog-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 766, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1238404, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjM4NDA0", + "name": "seleniumhtmlreport-plugin", + "full_name": "jenkinsci/seleniumhtmlreport-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/seleniumhtmlreport-plugin", + "description": "Hudson plugin for selenium reports", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/seleniumhtmlreport-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/seleniumhtmlreport-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/seleniumhtmlreport-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/seleniumhtmlreport-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/seleniumhtmlreport-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/seleniumhtmlreport-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/seleniumhtmlreport-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/seleniumhtmlreport-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/seleniumhtmlreport-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/seleniumhtmlreport-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/seleniumhtmlreport-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/seleniumhtmlreport-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/seleniumhtmlreport-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/seleniumhtmlreport-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/seleniumhtmlreport-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/seleniumhtmlreport-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/seleniumhtmlreport-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/seleniumhtmlreport-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/seleniumhtmlreport-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/seleniumhtmlreport-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/seleniumhtmlreport-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/seleniumhtmlreport-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/seleniumhtmlreport-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/seleniumhtmlreport-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/seleniumhtmlreport-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/seleniumhtmlreport-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/seleniumhtmlreport-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/seleniumhtmlreport-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/seleniumhtmlreport-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/seleniumhtmlreport-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/seleniumhtmlreport-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/seleniumhtmlreport-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/seleniumhtmlreport-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/seleniumhtmlreport-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/seleniumhtmlreport-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/seleniumhtmlreport-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/seleniumhtmlreport-plugin/deployments", + "created_at": "2011-01-10T16:01:21Z", + "updated_at": "2019-05-24T02:01:19Z", + "pushed_at": "2015-10-11T12:29:03Z", + "git_url": "git://github.com/jenkinsci/seleniumhtmlreport-plugin.git", + "ssh_url": "git@github.com:jenkinsci/seleniumhtmlreport-plugin.git", + "clone_url": "https://github.com/jenkinsci/seleniumhtmlreport-plugin.git", + "svn_url": "https://github.com/jenkinsci/seleniumhtmlreport-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/seleniumhtmlreport+Plugin", + "size": 197, + "stargazers_count": 16, + "watchers_count": 16, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 12, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 12, + "open_issues": 0, + "watchers": 16, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1267871, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjY3ODcx", + "name": "dropdown-viewstabbar-plugin", + "full_name": "jenkinsci/dropdown-viewstabbar-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/dropdown-viewstabbar-plugin", + "description": "Provides a drop down menu for selecting views.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/dropdown-viewstabbar-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/dropdown-viewstabbar-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/dropdown-viewstabbar-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/dropdown-viewstabbar-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/dropdown-viewstabbar-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/dropdown-viewstabbar-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/dropdown-viewstabbar-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/dropdown-viewstabbar-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/dropdown-viewstabbar-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/dropdown-viewstabbar-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/dropdown-viewstabbar-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/dropdown-viewstabbar-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/dropdown-viewstabbar-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/dropdown-viewstabbar-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/dropdown-viewstabbar-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/dropdown-viewstabbar-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/dropdown-viewstabbar-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/dropdown-viewstabbar-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/dropdown-viewstabbar-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/dropdown-viewstabbar-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/dropdown-viewstabbar-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/dropdown-viewstabbar-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/dropdown-viewstabbar-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/dropdown-viewstabbar-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/dropdown-viewstabbar-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/dropdown-viewstabbar-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/dropdown-viewstabbar-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/dropdown-viewstabbar-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/dropdown-viewstabbar-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/dropdown-viewstabbar-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/dropdown-viewstabbar-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/dropdown-viewstabbar-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/dropdown-viewstabbar-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/dropdown-viewstabbar-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/dropdown-viewstabbar-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/dropdown-viewstabbar-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/dropdown-viewstabbar-plugin/deployments", + "created_at": "2011-01-18T17:41:54Z", + "updated_at": "2015-10-16T16:41:13Z", + "pushed_at": "2019-10-08T11:43:50Z", + "git_url": "git://github.com/jenkinsci/dropdown-viewstabbar-plugin.git", + "ssh_url": "git@github.com:jenkinsci/dropdown-viewstabbar-plugin.git", + "clone_url": "https://github.com/jenkinsci/dropdown-viewstabbar-plugin.git", + "svn_url": "https://github.com/jenkinsci/dropdown-viewstabbar-plugin", + "homepage": "http://wiki.jenkins-ci.org/display/JENKINS/DropDown+ViewsTabBar+Plugin", + "size": 288, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": true, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 5, + "open_issues": 1, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1279996, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjc5OTk2", + "name": "pom", + "full_name": "jenkinsci/pom", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pom", + "description": "Parent POM", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/pom", + "forks_url": "https://api.github.com/repos/jenkinsci/pom/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pom/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pom/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pom/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pom/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pom/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pom/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pom/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pom/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pom/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pom/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pom/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pom/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pom/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pom/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pom/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pom/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pom/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pom/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pom/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pom/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pom/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pom/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pom/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pom/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pom/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pom/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pom/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pom/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pom/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pom/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pom/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pom/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pom/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pom/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pom/deployments", + "created_at": "2011-01-21T21:19:35Z", + "updated_at": "2019-10-18T12:14:58Z", + "pushed_at": "2019-10-21T07:45:54Z", + "git_url": "git://github.com/jenkinsci/pom.git", + "ssh_url": "git@github.com:jenkinsci/pom.git", + "clone_url": "https://github.com/jenkinsci/pom.git", + "svn_url": "https://github.com/jenkinsci/pom", + "homepage": "https://jenkins.io", + "size": 269, + "stargazers_count": 8, + "watchers_count": 8, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 25, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 12, + "license": null, + "forks": 25, + "open_issues": 12, + "watchers": 8, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1280036, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjgwMDM2", + "name": "lib-test-annotations", + "full_name": "jenkinsci/lib-test-annotations", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/lib-test-annotations", + "description": "test annotations", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/lib-test-annotations", + "forks_url": "https://api.github.com/repos/jenkinsci/lib-test-annotations/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/lib-test-annotations/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/lib-test-annotations/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/lib-test-annotations/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/lib-test-annotations/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/lib-test-annotations/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/lib-test-annotations/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/lib-test-annotations/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/lib-test-annotations/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/lib-test-annotations/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/lib-test-annotations/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/lib-test-annotations/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/lib-test-annotations/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/lib-test-annotations/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/lib-test-annotations/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/lib-test-annotations/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/lib-test-annotations/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/lib-test-annotations/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/lib-test-annotations/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/lib-test-annotations/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/lib-test-annotations/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/lib-test-annotations/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/lib-test-annotations/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/lib-test-annotations/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/lib-test-annotations/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/lib-test-annotations/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/lib-test-annotations/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/lib-test-annotations/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/lib-test-annotations/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/lib-test-annotations/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/lib-test-annotations/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/lib-test-annotations/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/lib-test-annotations/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/lib-test-annotations/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/lib-test-annotations/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/lib-test-annotations/deployments", + "created_at": "2011-01-21T21:29:33Z", + "updated_at": "2019-07-28T22:22:30Z", + "pushed_at": "2019-07-19T03:48:48Z", + "git_url": "git://github.com/jenkinsci/lib-test-annotations.git", + "ssh_url": "git@github.com:jenkinsci/lib-test-annotations.git", + "clone_url": "https://github.com/jenkinsci/lib-test-annotations.git", + "svn_url": "https://github.com/jenkinsci/lib-test-annotations", + "homepage": "http://hudson-labs.org/", + "size": 11, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 4, + "open_issues": 1, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1282620, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjgyNjIw", + "name": "openid-plugin", + "full_name": "jenkinsci/openid-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/openid-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/openid-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/openid-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/openid-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/openid-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/openid-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/openid-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/openid-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/openid-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/openid-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/openid-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/openid-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/openid-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/openid-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/openid-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/openid-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/openid-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/openid-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/openid-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/openid-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/openid-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/openid-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/openid-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/openid-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/openid-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/openid-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/openid-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/openid-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/openid-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/openid-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/openid-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/openid-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/openid-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/openid-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/openid-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/openid-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/openid-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/openid-plugin/deployments", + "created_at": "2011-01-22T18:57:32Z", + "updated_at": "2019-01-25T16:16:06Z", + "pushed_at": "2019-01-25T16:15:58Z", + "git_url": "git://github.com/jenkinsci/openid-plugin.git", + "ssh_url": "git@github.com:jenkinsci/openid-plugin.git", + "clone_url": "https://github.com/jenkinsci/openid-plugin.git", + "svn_url": "https://github.com/jenkinsci/openid-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/OpenID+Plugin", + "size": 240, + "stargazers_count": 18, + "watchers_count": 18, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 33, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 33, + "open_issues": 1, + "watchers": 18, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1288196, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjg4MTk2", + "name": "updatejob-plugin", + "full_name": "jenkinsci/updatejob-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/updatejob-plugin", + "description": "Hudson CLI extension to update an existing job", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/updatejob-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/updatejob-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/updatejob-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/updatejob-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/updatejob-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/updatejob-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/updatejob-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/updatejob-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/updatejob-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/updatejob-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/updatejob-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/updatejob-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/updatejob-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/updatejob-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/updatejob-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/updatejob-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/updatejob-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/updatejob-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/updatejob-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/updatejob-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/updatejob-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/updatejob-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/updatejob-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/updatejob-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/updatejob-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/updatejob-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/updatejob-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/updatejob-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/updatejob-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/updatejob-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/updatejob-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/updatejob-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/updatejob-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/updatejob-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/updatejob-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/updatejob-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/updatejob-plugin/deployments", + "created_at": "2011-01-24T16:12:13Z", + "updated_at": "2017-01-29T11:09:34Z", + "pushed_at": "2013-11-10T02:21:41Z", + "git_url": "git://github.com/jenkinsci/updatejob-plugin.git", + "ssh_url": "git@github.com:jenkinsci/updatejob-plugin.git", + "clone_url": "https://github.com/jenkinsci/updatejob-plugin.git", + "svn_url": "https://github.com/jenkinsci/updatejob-plugin", + "homepage": "", + "size": 237, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1289681, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjg5Njgx", + "name": "play-plugin", + "full_name": "jenkinsci/play-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/play-plugin", + "description": "Jenkins plugin for Play! framework.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/play-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/play-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/play-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/play-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/play-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/play-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/play-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/play-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/play-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/play-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/play-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/play-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/play-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/play-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/play-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/play-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/play-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/play-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/play-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/play-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/play-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/play-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/play-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/play-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/play-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/play-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/play-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/play-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/play-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/play-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/play-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/play-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/play-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/play-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/play-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/play-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/play-plugin/deployments", + "created_at": "2011-01-24T23:34:31Z", + "updated_at": "2017-08-09T16:36:03Z", + "pushed_at": "2019-10-08T16:21:20Z", + "git_url": "git://github.com/jenkinsci/play-plugin.git", + "ssh_url": "git@github.com:jenkinsci/play-plugin.git", + "clone_url": "https://github.com/jenkinsci/play-plugin.git", + "svn_url": "https://github.com/jenkinsci/play-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 222, + "stargazers_count": 10, + "watchers_count": 10, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 6, + "open_issues": 1, + "watchers": 10, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1294517, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjk0NTE3", + "name": "dumpinfo-buildwrapper-plugin", + "full_name": "jenkinsci/dumpinfo-buildwrapper-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/dumpinfo-buildwrapper-plugin", + "description": "Dumps vital information about the Jenkins instance into the job log.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/dumpinfo-buildwrapper-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/dumpinfo-buildwrapper-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/dumpinfo-buildwrapper-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/dumpinfo-buildwrapper-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/dumpinfo-buildwrapper-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/dumpinfo-buildwrapper-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/dumpinfo-buildwrapper-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/dumpinfo-buildwrapper-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/dumpinfo-buildwrapper-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/dumpinfo-buildwrapper-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/dumpinfo-buildwrapper-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/dumpinfo-buildwrapper-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/dumpinfo-buildwrapper-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/dumpinfo-buildwrapper-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/dumpinfo-buildwrapper-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/dumpinfo-buildwrapper-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/dumpinfo-buildwrapper-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/dumpinfo-buildwrapper-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/dumpinfo-buildwrapper-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/dumpinfo-buildwrapper-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/dumpinfo-buildwrapper-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/dumpinfo-buildwrapper-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/dumpinfo-buildwrapper-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/dumpinfo-buildwrapper-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/dumpinfo-buildwrapper-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/dumpinfo-buildwrapper-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/dumpinfo-buildwrapper-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/dumpinfo-buildwrapper-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/dumpinfo-buildwrapper-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/dumpinfo-buildwrapper-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/dumpinfo-buildwrapper-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/dumpinfo-buildwrapper-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/dumpinfo-buildwrapper-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/dumpinfo-buildwrapper-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/dumpinfo-buildwrapper-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/dumpinfo-buildwrapper-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/dumpinfo-buildwrapper-plugin/deployments", + "created_at": "2011-01-26T07:45:18Z", + "updated_at": "2014-01-29T10:48:35Z", + "pushed_at": "2013-11-10T02:00:54Z", + "git_url": "git://github.com/jenkinsci/dumpinfo-buildwrapper-plugin.git", + "ssh_url": "git@github.com:jenkinsci/dumpinfo-buildwrapper-plugin.git", + "clone_url": "https://github.com/jenkinsci/dumpinfo-buildwrapper-plugin.git", + "svn_url": "https://github.com/jenkinsci/dumpinfo-buildwrapper-plugin", + "homepage": "http://wiki.jenkins-ci.org/display/JENKINS/DumpInfo+BuildWrapper+Plugin", + "size": 366, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": true, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1307015, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzA3MDE1", + "name": "hudson-clone-workspace-scm-plugin-plugin", + "full_name": "jenkinsci/hudson-clone-workspace-scm-plugin-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/hudson-clone-workspace-scm-plugin-plugin", + "description": "Jenkins hudson-clone-workspace-scm-plugin plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/hudson-clone-workspace-scm-plugin-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/hudson-clone-workspace-scm-plugin-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/hudson-clone-workspace-scm-plugin-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/hudson-clone-workspace-scm-plugin-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/hudson-clone-workspace-scm-plugin-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/hudson-clone-workspace-scm-plugin-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/hudson-clone-workspace-scm-plugin-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/hudson-clone-workspace-scm-plugin-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/hudson-clone-workspace-scm-plugin-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/hudson-clone-workspace-scm-plugin-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/hudson-clone-workspace-scm-plugin-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/hudson-clone-workspace-scm-plugin-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/hudson-clone-workspace-scm-plugin-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/hudson-clone-workspace-scm-plugin-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/hudson-clone-workspace-scm-plugin-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/hudson-clone-workspace-scm-plugin-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/hudson-clone-workspace-scm-plugin-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/hudson-clone-workspace-scm-plugin-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/hudson-clone-workspace-scm-plugin-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/hudson-clone-workspace-scm-plugin-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/hudson-clone-workspace-scm-plugin-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/hudson-clone-workspace-scm-plugin-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/hudson-clone-workspace-scm-plugin-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/hudson-clone-workspace-scm-plugin-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/hudson-clone-workspace-scm-plugin-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/hudson-clone-workspace-scm-plugin-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/hudson-clone-workspace-scm-plugin-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/hudson-clone-workspace-scm-plugin-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/hudson-clone-workspace-scm-plugin-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/hudson-clone-workspace-scm-plugin-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/hudson-clone-workspace-scm-plugin-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/hudson-clone-workspace-scm-plugin-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/hudson-clone-workspace-scm-plugin-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/hudson-clone-workspace-scm-plugin-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/hudson-clone-workspace-scm-plugin-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/hudson-clone-workspace-scm-plugin-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/hudson-clone-workspace-scm-plugin-plugin/deployments", + "created_at": "2011-01-29T20:08:42Z", + "updated_at": "2013-11-10T02:05:11Z", + "pushed_at": "2013-11-10T02:05:04Z", + "git_url": "git://github.com/jenkinsci/hudson-clone-workspace-scm-plugin-plugin.git", + "ssh_url": "git@github.com:jenkinsci/hudson-clone-workspace-scm-plugin-plugin.git", + "clone_url": "https://github.com/jenkinsci/hudson-clone-workspace-scm-plugin-plugin.git", + "svn_url": "https://github.com/jenkinsci/hudson-clone-workspace-scm-plugin-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 120, + "stargazers_count": 1, + "watchers_count": 1, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1313304, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzEzMzA0", + "name": "sicci-for-xcode-plugin", + "full_name": "jenkinsci/sicci-for-xcode-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/sicci-for-xcode-plugin", + "description": "SICCI for Xcode: a Jenkins plugin to build, test... your iOS and OS X projects", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/sicci-for-xcode-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/sicci-for-xcode-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/sicci-for-xcode-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/sicci-for-xcode-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/sicci-for-xcode-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/sicci-for-xcode-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/sicci-for-xcode-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/sicci-for-xcode-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/sicci-for-xcode-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/sicci-for-xcode-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/sicci-for-xcode-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/sicci-for-xcode-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/sicci-for-xcode-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/sicci-for-xcode-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/sicci-for-xcode-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/sicci-for-xcode-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/sicci-for-xcode-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/sicci-for-xcode-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/sicci-for-xcode-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/sicci-for-xcode-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/sicci-for-xcode-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/sicci-for-xcode-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/sicci-for-xcode-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/sicci-for-xcode-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/sicci-for-xcode-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/sicci-for-xcode-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/sicci-for-xcode-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/sicci-for-xcode-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/sicci-for-xcode-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/sicci-for-xcode-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/sicci-for-xcode-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/sicci-for-xcode-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/sicci-for-xcode-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/sicci-for-xcode-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/sicci-for-xcode-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/sicci-for-xcode-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/sicci-for-xcode-plugin/deployments", + "created_at": "2011-01-31T18:59:43Z", + "updated_at": "2017-07-21T10:08:07Z", + "pushed_at": "2019-10-08T12:27:02Z", + "git_url": "git://github.com/jenkinsci/sicci-for-xcode-plugin.git", + "ssh_url": "git@github.com:jenkinsci/sicci-for-xcode-plugin.git", + "clone_url": "https://github.com/jenkinsci/sicci-for-xcode-plugin.git", + "svn_url": "https://github.com/jenkinsci/sicci-for-xcode-plugin", + "homepage": "http://wiki.jenkins-ci.org/display/JENKINS/SICCI+for+Xcode+Plugin", + "size": 1134, + "stargazers_count": 17, + "watchers_count": 17, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "gpl-3.0", + "name": "GNU General Public License v3.0", + "spdx_id": "GPL-3.0", + "url": "https://api.github.com/licenses/gpl-3.0", + "node_id": "MDc6TGljZW5zZTk=" + }, + "forks": 2, + "open_issues": 1, + "watchers": 17, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1319238, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE5MjM4", + "name": "firefox-extension-buildmonitor", + "full_name": "jenkinsci/firefox-extension-buildmonitor", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/firefox-extension-buildmonitor", + "description": "Jenkins Firefox Add-on BuildMonitor", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/firefox-extension-buildmonitor", + "forks_url": "https://api.github.com/repos/jenkinsci/firefox-extension-buildmonitor/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/firefox-extension-buildmonitor/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/firefox-extension-buildmonitor/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/firefox-extension-buildmonitor/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/firefox-extension-buildmonitor/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/firefox-extension-buildmonitor/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/firefox-extension-buildmonitor/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/firefox-extension-buildmonitor/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/firefox-extension-buildmonitor/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/firefox-extension-buildmonitor/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/firefox-extension-buildmonitor/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/firefox-extension-buildmonitor/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/firefox-extension-buildmonitor/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/firefox-extension-buildmonitor/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/firefox-extension-buildmonitor/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/firefox-extension-buildmonitor/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/firefox-extension-buildmonitor/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/firefox-extension-buildmonitor/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/firefox-extension-buildmonitor/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/firefox-extension-buildmonitor/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/firefox-extension-buildmonitor/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/firefox-extension-buildmonitor/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/firefox-extension-buildmonitor/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/firefox-extension-buildmonitor/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/firefox-extension-buildmonitor/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/firefox-extension-buildmonitor/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/firefox-extension-buildmonitor/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/firefox-extension-buildmonitor/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/firefox-extension-buildmonitor/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/firefox-extension-buildmonitor/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/firefox-extension-buildmonitor/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/firefox-extension-buildmonitor/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/firefox-extension-buildmonitor/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/firefox-extension-buildmonitor/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/firefox-extension-buildmonitor/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/firefox-extension-buildmonitor/deployments", + "created_at": "2011-02-02T04:36:30Z", + "updated_at": "2016-05-21T20:41:57Z", + "pushed_at": "2011-05-15T06:00:46Z", + "git_url": "git://github.com/jenkinsci/firefox-extension-buildmonitor.git", + "ssh_url": "git@github.com:jenkinsci/firefox-extension-buildmonitor.git", + "clone_url": "https://github.com/jenkinsci/firefox-extension-buildmonitor.git", + "svn_url": "https://github.com/jenkinsci/firefox-extension-buildmonitor", + "homepage": "http://wiki.jenkins-ci.org/display/JENKINS/Firefox+Add-on+Build+Monitor", + "size": 963, + "stargazers_count": 2, + "watchers_count": 2, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 6, + "open_issues": 1, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1319285, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE5Mjg1", + "name": "lib-annotation-indexer", + "full_name": "jenkinsci/lib-annotation-indexer", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/lib-annotation-indexer", + "description": "Jenkins annotation-indexer library", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/lib-annotation-indexer", + "forks_url": "https://api.github.com/repos/jenkinsci/lib-annotation-indexer/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/lib-annotation-indexer/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/lib-annotation-indexer/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/lib-annotation-indexer/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/lib-annotation-indexer/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/lib-annotation-indexer/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/lib-annotation-indexer/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/lib-annotation-indexer/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/lib-annotation-indexer/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/lib-annotation-indexer/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/lib-annotation-indexer/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/lib-annotation-indexer/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/lib-annotation-indexer/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/lib-annotation-indexer/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/lib-annotation-indexer/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/lib-annotation-indexer/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/lib-annotation-indexer/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/lib-annotation-indexer/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/lib-annotation-indexer/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/lib-annotation-indexer/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/lib-annotation-indexer/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/lib-annotation-indexer/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/lib-annotation-indexer/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/lib-annotation-indexer/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/lib-annotation-indexer/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/lib-annotation-indexer/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/lib-annotation-indexer/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/lib-annotation-indexer/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/lib-annotation-indexer/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/lib-annotation-indexer/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/lib-annotation-indexer/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/lib-annotation-indexer/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/lib-annotation-indexer/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/lib-annotation-indexer/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/lib-annotation-indexer/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/lib-annotation-indexer/deployments", + "created_at": "2011-02-02T04:57:25Z", + "updated_at": "2019-09-16T09:26:13Z", + "pushed_at": "2019-09-16T11:51:55Z", + "git_url": "git://github.com/jenkinsci/lib-annotation-indexer.git", + "ssh_url": "git@github.com:jenkinsci/lib-annotation-indexer.git", + "clone_url": "https://github.com/jenkinsci/lib-annotation-indexer.git", + "svn_url": "https://github.com/jenkinsci/lib-annotation-indexer", + "homepage": "https://jenkins.io", + "size": 61, + "stargazers_count": 6, + "watchers_count": 6, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 7, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 7, + "open_issues": 1, + "watchers": 6, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1319297, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE5Mjk3", + "name": "lib-confluence-api", + "full_name": "jenkinsci/lib-confluence-api", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/lib-confluence-api", + "description": "Jenkins confluence-api library", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/lib-confluence-api", + "forks_url": "https://api.github.com/repos/jenkinsci/lib-confluence-api/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/lib-confluence-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/lib-confluence-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/lib-confluence-api/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/lib-confluence-api/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/lib-confluence-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/lib-confluence-api/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/lib-confluence-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/lib-confluence-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/lib-confluence-api/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/lib-confluence-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/lib-confluence-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/lib-confluence-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/lib-confluence-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/lib-confluence-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/lib-confluence-api/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/lib-confluence-api/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/lib-confluence-api/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/lib-confluence-api/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/lib-confluence-api/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/lib-confluence-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/lib-confluence-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/lib-confluence-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/lib-confluence-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/lib-confluence-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/lib-confluence-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/lib-confluence-api/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/lib-confluence-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/lib-confluence-api/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/lib-confluence-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/lib-confluence-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/lib-confluence-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/lib-confluence-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/lib-confluence-api/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/lib-confluence-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/lib-confluence-api/deployments", + "created_at": "2011-02-02T05:02:37Z", + "updated_at": "2013-11-10T02:09:03Z", + "pushed_at": "2013-11-10T02:08:58Z", + "git_url": "git://github.com/jenkinsci/lib-confluence-api.git", + "ssh_url": "git@github.com:jenkinsci/lib-confluence-api.git", + "clone_url": "https://github.com/jenkinsci/lib-confluence-api.git", + "svn_url": "https://github.com/jenkinsci/lib-confluence-api", + "homepage": "http://jenkins-ci.org/", + "size": 112, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1319298, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE5Mjk4", + "name": "lib-crypto-util", + "full_name": "jenkinsci/lib-crypto-util", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/lib-crypto-util", + "description": "Jenkins crypto-util library", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/lib-crypto-util", + "forks_url": "https://api.github.com/repos/jenkinsci/lib-crypto-util/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/lib-crypto-util/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/lib-crypto-util/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/lib-crypto-util/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/lib-crypto-util/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/lib-crypto-util/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/lib-crypto-util/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/lib-crypto-util/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/lib-crypto-util/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/lib-crypto-util/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/lib-crypto-util/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/lib-crypto-util/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/lib-crypto-util/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/lib-crypto-util/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/lib-crypto-util/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/lib-crypto-util/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/lib-crypto-util/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/lib-crypto-util/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/lib-crypto-util/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/lib-crypto-util/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/lib-crypto-util/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/lib-crypto-util/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/lib-crypto-util/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/lib-crypto-util/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/lib-crypto-util/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/lib-crypto-util/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/lib-crypto-util/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/lib-crypto-util/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/lib-crypto-util/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/lib-crypto-util/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/lib-crypto-util/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/lib-crypto-util/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/lib-crypto-util/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/lib-crypto-util/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/lib-crypto-util/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/lib-crypto-util/deployments", + "created_at": "2011-02-02T05:02:51Z", + "updated_at": "2014-03-18T23:12:55Z", + "pushed_at": "2019-06-02T10:07:50Z", + "git_url": "git://github.com/jenkinsci/lib-crypto-util.git", + "ssh_url": "git@github.com:jenkinsci/lib-crypto-util.git", + "clone_url": "https://github.com/jenkinsci/lib-crypto-util.git", + "svn_url": "https://github.com/jenkinsci/lib-crypto-util", + "homepage": "http://jenkins-ci.org/", + "size": 184, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": null, + "forks": 2, + "open_issues": 3, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1319301, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE5MzAx", + "name": "lib-embedded-rhino-debugger", + "full_name": "jenkinsci/lib-embedded-rhino-debugger", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/lib-embedded-rhino-debugger", + "description": "Jenkins embedded-rhino-debugger library", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/lib-embedded-rhino-debugger", + "forks_url": "https://api.github.com/repos/jenkinsci/lib-embedded-rhino-debugger/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/lib-embedded-rhino-debugger/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/lib-embedded-rhino-debugger/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/lib-embedded-rhino-debugger/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/lib-embedded-rhino-debugger/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/lib-embedded-rhino-debugger/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/lib-embedded-rhino-debugger/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/lib-embedded-rhino-debugger/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/lib-embedded-rhino-debugger/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/lib-embedded-rhino-debugger/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/lib-embedded-rhino-debugger/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/lib-embedded-rhino-debugger/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/lib-embedded-rhino-debugger/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/lib-embedded-rhino-debugger/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/lib-embedded-rhino-debugger/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/lib-embedded-rhino-debugger/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/lib-embedded-rhino-debugger/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/lib-embedded-rhino-debugger/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/lib-embedded-rhino-debugger/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/lib-embedded-rhino-debugger/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/lib-embedded-rhino-debugger/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/lib-embedded-rhino-debugger/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/lib-embedded-rhino-debugger/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/lib-embedded-rhino-debugger/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/lib-embedded-rhino-debugger/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/lib-embedded-rhino-debugger/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/lib-embedded-rhino-debugger/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/lib-embedded-rhino-debugger/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/lib-embedded-rhino-debugger/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/lib-embedded-rhino-debugger/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/lib-embedded-rhino-debugger/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/lib-embedded-rhino-debugger/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/lib-embedded-rhino-debugger/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/lib-embedded-rhino-debugger/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/lib-embedded-rhino-debugger/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/lib-embedded-rhino-debugger/deployments", + "created_at": "2011-02-02T05:03:09Z", + "updated_at": "2013-11-10T02:09:13Z", + "pushed_at": "2013-11-10T02:09:02Z", + "git_url": "git://github.com/jenkinsci/lib-embedded-rhino-debugger.git", + "ssh_url": "git@github.com:jenkinsci/lib-embedded-rhino-debugger.git", + "clone_url": "https://github.com/jenkinsci/lib-embedded-rhino-debugger.git", + "svn_url": "https://github.com/jenkinsci/lib-embedded-rhino-debugger", + "homepage": "http://jenkins-ci.org/", + "size": 196, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1319302, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE5MzAy", + "name": "lib-jenkins-maven-artifact-manager", + "full_name": "jenkinsci/lib-jenkins-maven-artifact-manager", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/lib-jenkins-maven-artifact-manager", + "description": "Jenkins hudson-maven-artifact-manager library", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/lib-jenkins-maven-artifact-manager", + "forks_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-maven-artifact-manager/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-maven-artifact-manager/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-maven-artifact-manager/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-maven-artifact-manager/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-maven-artifact-manager/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-maven-artifact-manager/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-maven-artifact-manager/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-maven-artifact-manager/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-maven-artifact-manager/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-maven-artifact-manager/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-maven-artifact-manager/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-maven-artifact-manager/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-maven-artifact-manager/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-maven-artifact-manager/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-maven-artifact-manager/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-maven-artifact-manager/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-maven-artifact-manager/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-maven-artifact-manager/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-maven-artifact-manager/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-maven-artifact-manager/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-maven-artifact-manager/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-maven-artifact-manager/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-maven-artifact-manager/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-maven-artifact-manager/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-maven-artifact-manager/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-maven-artifact-manager/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-maven-artifact-manager/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-maven-artifact-manager/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-maven-artifact-manager/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-maven-artifact-manager/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-maven-artifact-manager/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-maven-artifact-manager/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-maven-artifact-manager/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-maven-artifact-manager/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-maven-artifact-manager/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-maven-artifact-manager/deployments", + "created_at": "2011-02-02T05:03:24Z", + "updated_at": "2016-08-11T21:59:24Z", + "pushed_at": "2016-08-11T21:59:18Z", + "git_url": "git://github.com/jenkinsci/lib-jenkins-maven-artifact-manager.git", + "ssh_url": "git@github.com:jenkinsci/lib-jenkins-maven-artifact-manager.git", + "clone_url": "https://github.com/jenkinsci/lib-jenkins-maven-artifact-manager.git", + "svn_url": "https://github.com/jenkinsci/lib-jenkins-maven-artifact-manager", + "homepage": "https://jenkins.io", + "size": 34, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 4, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1319303, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE5MzAz", + "name": "lib-jenkins-maven-embedder", + "full_name": "jenkinsci/lib-jenkins-maven-embedder", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/lib-jenkins-maven-embedder", + "description": "Jenkins hudson-maven-embedder library", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/lib-jenkins-maven-embedder", + "forks_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-maven-embedder/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-maven-embedder/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-maven-embedder/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-maven-embedder/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-maven-embedder/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-maven-embedder/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-maven-embedder/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-maven-embedder/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-maven-embedder/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-maven-embedder/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-maven-embedder/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-maven-embedder/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-maven-embedder/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-maven-embedder/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-maven-embedder/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-maven-embedder/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-maven-embedder/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-maven-embedder/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-maven-embedder/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-maven-embedder/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-maven-embedder/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-maven-embedder/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-maven-embedder/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-maven-embedder/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-maven-embedder/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-maven-embedder/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-maven-embedder/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-maven-embedder/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-maven-embedder/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-maven-embedder/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-maven-embedder/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-maven-embedder/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-maven-embedder/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-maven-embedder/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-maven-embedder/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/lib-jenkins-maven-embedder/deployments", + "created_at": "2011-02-02T05:03:43Z", + "updated_at": "2019-01-22T11:57:52Z", + "pushed_at": "2019-06-12T00:22:47Z", + "git_url": "git://github.com/jenkinsci/lib-jenkins-maven-embedder.git", + "ssh_url": "git@github.com:jenkinsci/lib-jenkins-maven-embedder.git", + "clone_url": "https://github.com/jenkinsci/lib-jenkins-maven-embedder.git", + "svn_url": "https://github.com/jenkinsci/lib-jenkins-maven-embedder", + "homepage": "https://jenkins.io", + "size": 2896, + "stargazers_count": 16, + "watchers_count": 16, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 17, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 17, + "open_issues": 3, + "watchers": 16, + "default_branch": "maven-3.1.0", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1319304, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE5MzA0", + "name": "lib-jira-api", + "full_name": "jenkinsci/lib-jira-api", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/lib-jira-api", + "description": "Jenkins jira-api library", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/lib-jira-api", + "forks_url": "https://api.github.com/repos/jenkinsci/lib-jira-api/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/lib-jira-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/lib-jira-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/lib-jira-api/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/lib-jira-api/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/lib-jira-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/lib-jira-api/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/lib-jira-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/lib-jira-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/lib-jira-api/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/lib-jira-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/lib-jira-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/lib-jira-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/lib-jira-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/lib-jira-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/lib-jira-api/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/lib-jira-api/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/lib-jira-api/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/lib-jira-api/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/lib-jira-api/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/lib-jira-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/lib-jira-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/lib-jira-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/lib-jira-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/lib-jira-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/lib-jira-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/lib-jira-api/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/lib-jira-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/lib-jira-api/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/lib-jira-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/lib-jira-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/lib-jira-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/lib-jira-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/lib-jira-api/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/lib-jira-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/lib-jira-api/deployments", + "created_at": "2011-02-02T05:04:04Z", + "updated_at": "2018-11-22T02:25:04Z", + "pushed_at": "2018-11-22T02:25:02Z", + "git_url": "git://github.com/jenkinsci/lib-jira-api.git", + "ssh_url": "git@github.com:jenkinsci/lib-jira-api.git", + "clone_url": "https://github.com/jenkinsci/lib-jira-api.git", + "svn_url": "https://github.com/jenkinsci/lib-jira-api", + "homepage": "https://jenkins.io", + "size": 610, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": true, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 4, + "open_issues": 0, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1319305, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE5MzA1", + "name": "lib-onepass-blob-tree", + "full_name": "jenkinsci/lib-onepass-blob-tree", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/lib-onepass-blob-tree", + "description": "Jenkins onepass-blob-tree library", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/lib-onepass-blob-tree", + "forks_url": "https://api.github.com/repos/jenkinsci/lib-onepass-blob-tree/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/lib-onepass-blob-tree/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/lib-onepass-blob-tree/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/lib-onepass-blob-tree/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/lib-onepass-blob-tree/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/lib-onepass-blob-tree/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/lib-onepass-blob-tree/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/lib-onepass-blob-tree/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/lib-onepass-blob-tree/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/lib-onepass-blob-tree/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/lib-onepass-blob-tree/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/lib-onepass-blob-tree/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/lib-onepass-blob-tree/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/lib-onepass-blob-tree/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/lib-onepass-blob-tree/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/lib-onepass-blob-tree/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/lib-onepass-blob-tree/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/lib-onepass-blob-tree/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/lib-onepass-blob-tree/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/lib-onepass-blob-tree/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/lib-onepass-blob-tree/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/lib-onepass-blob-tree/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/lib-onepass-blob-tree/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/lib-onepass-blob-tree/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/lib-onepass-blob-tree/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/lib-onepass-blob-tree/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/lib-onepass-blob-tree/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/lib-onepass-blob-tree/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/lib-onepass-blob-tree/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/lib-onepass-blob-tree/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/lib-onepass-blob-tree/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/lib-onepass-blob-tree/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/lib-onepass-blob-tree/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/lib-onepass-blob-tree/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/lib-onepass-blob-tree/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/lib-onepass-blob-tree/deployments", + "created_at": "2011-02-02T05:04:18Z", + "updated_at": "2013-11-10T02:09:23Z", + "pushed_at": "2013-11-10T02:09:12Z", + "git_url": "git://github.com/jenkinsci/lib-onepass-blob-tree.git", + "ssh_url": "git@github.com:jenkinsci/lib-onepass-blob-tree.git", + "clone_url": "https://github.com/jenkinsci/lib-onepass-blob-tree.git", + "svn_url": "https://github.com/jenkinsci/lib-onepass-blob-tree", + "homepage": "http://jenkins-ci.org/", + "size": 120, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1319307, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE5MzA3", + "name": "lib-task-reactor", + "full_name": "jenkinsci/lib-task-reactor", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/lib-task-reactor", + "description": "Jenkins task-reactor library", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/lib-task-reactor", + "forks_url": "https://api.github.com/repos/jenkinsci/lib-task-reactor/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/lib-task-reactor/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/lib-task-reactor/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/lib-task-reactor/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/lib-task-reactor/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/lib-task-reactor/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/lib-task-reactor/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/lib-task-reactor/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/lib-task-reactor/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/lib-task-reactor/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/lib-task-reactor/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/lib-task-reactor/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/lib-task-reactor/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/lib-task-reactor/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/lib-task-reactor/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/lib-task-reactor/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/lib-task-reactor/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/lib-task-reactor/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/lib-task-reactor/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/lib-task-reactor/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/lib-task-reactor/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/lib-task-reactor/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/lib-task-reactor/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/lib-task-reactor/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/lib-task-reactor/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/lib-task-reactor/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/lib-task-reactor/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/lib-task-reactor/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/lib-task-reactor/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/lib-task-reactor/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/lib-task-reactor/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/lib-task-reactor/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/lib-task-reactor/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/lib-task-reactor/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/lib-task-reactor/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/lib-task-reactor/deployments", + "created_at": "2011-02-02T05:04:33Z", + "updated_at": "2017-12-28T07:51:29Z", + "pushed_at": "2018-02-01T15:25:19Z", + "git_url": "git://github.com/jenkinsci/lib-task-reactor.git", + "ssh_url": "git@github.com:jenkinsci/lib-task-reactor.git", + "clone_url": "https://github.com/jenkinsci/lib-task-reactor.git", + "svn_url": "https://github.com/jenkinsci/lib-task-reactor", + "homepage": "http://jenkins-ci.org/", + "size": 68, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 3, + "open_issues": 1, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1319308, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE5MzA4", + "name": "lib-windows-remote-command", + "full_name": "jenkinsci/lib-windows-remote-command", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/lib-windows-remote-command", + "description": "Jenkins windows-remote-command library", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/lib-windows-remote-command", + "forks_url": "https://api.github.com/repos/jenkinsci/lib-windows-remote-command/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/lib-windows-remote-command/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/lib-windows-remote-command/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/lib-windows-remote-command/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/lib-windows-remote-command/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/lib-windows-remote-command/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/lib-windows-remote-command/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/lib-windows-remote-command/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/lib-windows-remote-command/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/lib-windows-remote-command/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/lib-windows-remote-command/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/lib-windows-remote-command/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/lib-windows-remote-command/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/lib-windows-remote-command/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/lib-windows-remote-command/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/lib-windows-remote-command/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/lib-windows-remote-command/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/lib-windows-remote-command/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/lib-windows-remote-command/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/lib-windows-remote-command/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/lib-windows-remote-command/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/lib-windows-remote-command/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/lib-windows-remote-command/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/lib-windows-remote-command/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/lib-windows-remote-command/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/lib-windows-remote-command/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/lib-windows-remote-command/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/lib-windows-remote-command/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/lib-windows-remote-command/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/lib-windows-remote-command/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/lib-windows-remote-command/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/lib-windows-remote-command/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/lib-windows-remote-command/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/lib-windows-remote-command/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/lib-windows-remote-command/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/lib-windows-remote-command/deployments", + "created_at": "2011-02-02T05:04:47Z", + "updated_at": "2019-06-17T03:16:36Z", + "pushed_at": "2013-11-13T01:41:26Z", + "git_url": "git://github.com/jenkinsci/lib-windows-remote-command.git", + "ssh_url": "git@github.com:jenkinsci/lib-windows-remote-command.git", + "clone_url": "https://github.com/jenkinsci/lib-windows-remote-command.git", + "svn_url": "https://github.com/jenkinsci/lib-windows-remote-command", + "homepage": "http://jenkins-ci.org/", + "size": 164, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 6, + "open_issues": 0, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1325155, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzI1MTU1", + "name": "backend-crowd-javanet-directory", + "full_name": "jenkinsci/backend-crowd-javanet-directory", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/backend-crowd-javanet-directory", + "description": "Jenkins backend: crowd-javanet-directory", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/backend-crowd-javanet-directory", + "forks_url": "https://api.github.com/repos/jenkinsci/backend-crowd-javanet-directory/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/backend-crowd-javanet-directory/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/backend-crowd-javanet-directory/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/backend-crowd-javanet-directory/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/backend-crowd-javanet-directory/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/backend-crowd-javanet-directory/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/backend-crowd-javanet-directory/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/backend-crowd-javanet-directory/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/backend-crowd-javanet-directory/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/backend-crowd-javanet-directory/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/backend-crowd-javanet-directory/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/backend-crowd-javanet-directory/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/backend-crowd-javanet-directory/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/backend-crowd-javanet-directory/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/backend-crowd-javanet-directory/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/backend-crowd-javanet-directory/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/backend-crowd-javanet-directory/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/backend-crowd-javanet-directory/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/backend-crowd-javanet-directory/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/backend-crowd-javanet-directory/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/backend-crowd-javanet-directory/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/backend-crowd-javanet-directory/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/backend-crowd-javanet-directory/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/backend-crowd-javanet-directory/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/backend-crowd-javanet-directory/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/backend-crowd-javanet-directory/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/backend-crowd-javanet-directory/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/backend-crowd-javanet-directory/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/backend-crowd-javanet-directory/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/backend-crowd-javanet-directory/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/backend-crowd-javanet-directory/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/backend-crowd-javanet-directory/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/backend-crowd-javanet-directory/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/backend-crowd-javanet-directory/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/backend-crowd-javanet-directory/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/backend-crowd-javanet-directory/deployments", + "created_at": "2011-02-03T18:32:59Z", + "updated_at": "2018-01-03T17:50:29Z", + "pushed_at": "2011-02-03T18:33:05Z", + "git_url": "git://github.com/jenkinsci/backend-crowd-javanet-directory.git", + "ssh_url": "git@github.com:jenkinsci/backend-crowd-javanet-directory.git", + "clone_url": "https://github.com/jenkinsci/backend-crowd-javanet-directory.git", + "svn_url": "https://github.com/jenkinsci/backend-crowd-javanet-directory", + "homepage": "http://jenkins-ci.org/", + "size": 112, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": true, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 3, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1325156, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzI1MTU2", + "name": "backend-jenkins-plugin-changes-plugin", + "full_name": "jenkinsci/backend-jenkins-plugin-changes-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/backend-jenkins-plugin-changes-plugin", + "description": "Jenkins backend: plugin-changes-report", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/backend-jenkins-plugin-changes-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/backend-jenkins-plugin-changes-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/backend-jenkins-plugin-changes-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/backend-jenkins-plugin-changes-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/backend-jenkins-plugin-changes-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/backend-jenkins-plugin-changes-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/backend-jenkins-plugin-changes-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/backend-jenkins-plugin-changes-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/backend-jenkins-plugin-changes-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/backend-jenkins-plugin-changes-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/backend-jenkins-plugin-changes-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/backend-jenkins-plugin-changes-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/backend-jenkins-plugin-changes-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/backend-jenkins-plugin-changes-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/backend-jenkins-plugin-changes-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/backend-jenkins-plugin-changes-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/backend-jenkins-plugin-changes-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/backend-jenkins-plugin-changes-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/backend-jenkins-plugin-changes-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/backend-jenkins-plugin-changes-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/backend-jenkins-plugin-changes-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/backend-jenkins-plugin-changes-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/backend-jenkins-plugin-changes-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/backend-jenkins-plugin-changes-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/backend-jenkins-plugin-changes-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/backend-jenkins-plugin-changes-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/backend-jenkins-plugin-changes-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/backend-jenkins-plugin-changes-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/backend-jenkins-plugin-changes-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/backend-jenkins-plugin-changes-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/backend-jenkins-plugin-changes-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/backend-jenkins-plugin-changes-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/backend-jenkins-plugin-changes-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/backend-jenkins-plugin-changes-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/backend-jenkins-plugin-changes-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/backend-jenkins-plugin-changes-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/backend-jenkins-plugin-changes-plugin/deployments", + "created_at": "2011-02-03T18:33:12Z", + "updated_at": "2018-01-03T17:54:07Z", + "pushed_at": "2014-03-15T02:22:22Z", + "git_url": "git://github.com/jenkinsci/backend-jenkins-plugin-changes-plugin.git", + "ssh_url": "git@github.com:jenkinsci/backend-jenkins-plugin-changes-plugin.git", + "clone_url": "https://github.com/jenkinsci/backend-jenkins-plugin-changes-plugin.git", + "svn_url": "https://github.com/jenkinsci/backend-jenkins-plugin-changes-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 244, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Python", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": true, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1325157, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzI1MTU3", + "name": "backend-l10n-applier", + "full_name": "jenkinsci/backend-l10n-applier", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/backend-l10n-applier", + "description": "Jenkins backend: l10n-applier", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/backend-l10n-applier", + "forks_url": "https://api.github.com/repos/jenkinsci/backend-l10n-applier/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/backend-l10n-applier/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/backend-l10n-applier/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/backend-l10n-applier/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/backend-l10n-applier/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/backend-l10n-applier/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/backend-l10n-applier/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/backend-l10n-applier/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/backend-l10n-applier/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/backend-l10n-applier/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/backend-l10n-applier/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/backend-l10n-applier/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/backend-l10n-applier/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/backend-l10n-applier/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/backend-l10n-applier/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/backend-l10n-applier/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/backend-l10n-applier/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/backend-l10n-applier/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/backend-l10n-applier/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/backend-l10n-applier/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/backend-l10n-applier/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/backend-l10n-applier/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/backend-l10n-applier/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/backend-l10n-applier/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/backend-l10n-applier/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/backend-l10n-applier/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/backend-l10n-applier/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/backend-l10n-applier/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/backend-l10n-applier/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/backend-l10n-applier/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/backend-l10n-applier/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/backend-l10n-applier/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/backend-l10n-applier/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/backend-l10n-applier/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/backend-l10n-applier/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/backend-l10n-applier/deployments", + "created_at": "2011-02-03T18:33:32Z", + "updated_at": "2018-01-03T17:53:57Z", + "pushed_at": "2013-10-21T05:19:48Z", + "git_url": "git://github.com/jenkinsci/backend-l10n-applier.git", + "ssh_url": "git@github.com:jenkinsci/backend-l10n-applier.git", + "clone_url": "https://github.com/jenkinsci/backend-l10n-applier.git", + "svn_url": "https://github.com/jenkinsci/backend-l10n-applier", + "homepage": "http://jenkins-ci.org/", + "size": 144, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": true, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1325161, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzI1MTYx", + "name": "backend-plugin2rpm", + "full_name": "jenkinsci/backend-plugin2rpm", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/backend-plugin2rpm", + "description": "Jenkins backend: plugin2rpm", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/backend-plugin2rpm", + "forks_url": "https://api.github.com/repos/jenkinsci/backend-plugin2rpm/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/backend-plugin2rpm/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/backend-plugin2rpm/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/backend-plugin2rpm/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/backend-plugin2rpm/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/backend-plugin2rpm/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/backend-plugin2rpm/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/backend-plugin2rpm/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/backend-plugin2rpm/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/backend-plugin2rpm/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/backend-plugin2rpm/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/backend-plugin2rpm/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/backend-plugin2rpm/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/backend-plugin2rpm/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/backend-plugin2rpm/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/backend-plugin2rpm/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/backend-plugin2rpm/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/backend-plugin2rpm/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/backend-plugin2rpm/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/backend-plugin2rpm/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/backend-plugin2rpm/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/backend-plugin2rpm/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/backend-plugin2rpm/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/backend-plugin2rpm/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/backend-plugin2rpm/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/backend-plugin2rpm/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/backend-plugin2rpm/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/backend-plugin2rpm/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/backend-plugin2rpm/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/backend-plugin2rpm/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/backend-plugin2rpm/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/backend-plugin2rpm/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/backend-plugin2rpm/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/backend-plugin2rpm/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/backend-plugin2rpm/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/backend-plugin2rpm/deployments", + "created_at": "2011-02-03T18:33:59Z", + "updated_at": "2018-01-03T17:49:42Z", + "pushed_at": "2011-02-03T18:34:05Z", + "git_url": "git://github.com/jenkinsci/backend-plugin2rpm.git", + "ssh_url": "git@github.com:jenkinsci/backend-plugin2rpm.git", + "clone_url": "https://github.com/jenkinsci/backend-plugin2rpm.git", + "svn_url": "https://github.com/jenkinsci/backend-plugin2rpm", + "homepage": "http://jenkins-ci.org/", + "size": 96, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": true, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1325163, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzI1MTYz", + "name": "backend-update-center", + "full_name": "jenkinsci/backend-update-center", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/backend-update-center", + "description": "Jenkins backend: update-center", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/backend-update-center", + "forks_url": "https://api.github.com/repos/jenkinsci/backend-update-center/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/backend-update-center/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/backend-update-center/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/backend-update-center/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/backend-update-center/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/backend-update-center/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/backend-update-center/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/backend-update-center/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/backend-update-center/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/backend-update-center/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/backend-update-center/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/backend-update-center/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/backend-update-center/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/backend-update-center/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/backend-update-center/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/backend-update-center/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/backend-update-center/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/backend-update-center/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/backend-update-center/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/backend-update-center/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/backend-update-center/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/backend-update-center/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/backend-update-center/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/backend-update-center/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/backend-update-center/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/backend-update-center/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/backend-update-center/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/backend-update-center/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/backend-update-center/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/backend-update-center/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/backend-update-center/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/backend-update-center/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/backend-update-center/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/backend-update-center/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/backend-update-center/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/backend-update-center/deployments", + "created_at": "2011-02-03T18:34:14Z", + "updated_at": "2018-01-03T17:49:31Z", + "pushed_at": "2011-02-03T18:34:20Z", + "git_url": "git://github.com/jenkinsci/backend-update-center.git", + "ssh_url": "git@github.com:jenkinsci/backend-update-center.git", + "clone_url": "https://github.com/jenkinsci/backend-update-center.git", + "svn_url": "https://github.com/jenkinsci/backend-update-center", + "homepage": "http://jenkins-ci.org/", + "size": 280, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": true, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1325270, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzI1Mjcw", + "name": "extras-android", + "full_name": "jenkinsci/extras-android", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/extras-android", + "description": "Jenkins extras: android", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/extras-android", + "forks_url": "https://api.github.com/repos/jenkinsci/extras-android/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/extras-android/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/extras-android/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/extras-android/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/extras-android/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/extras-android/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/extras-android/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/extras-android/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/extras-android/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/extras-android/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/extras-android/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/extras-android/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/extras-android/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/extras-android/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/extras-android/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/extras-android/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/extras-android/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/extras-android/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/extras-android/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/extras-android/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/extras-android/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/extras-android/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/extras-android/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/extras-android/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/extras-android/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/extras-android/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/extras-android/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/extras-android/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/extras-android/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/extras-android/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/extras-android/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/extras-android/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/extras-android/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/extras-android/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/extras-android/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/extras-android/deployments", + "created_at": "2011-02-03T18:56:06Z", + "updated_at": "2013-11-10T02:02:00Z", + "pushed_at": "2013-11-10T02:01:57Z", + "git_url": "git://github.com/jenkinsci/extras-android.git", + "ssh_url": "git@github.com:jenkinsci/extras-android.git", + "clone_url": "https://github.com/jenkinsci/extras-android.git", + "svn_url": "https://github.com/jenkinsci/extras-android", + "homepage": "http://jenkins-ci.org/", + "size": 248, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1325280, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzI1Mjgw", + "name": "extras-client-demo", + "full_name": "jenkinsci/extras-client-demo", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/extras-client-demo", + "description": "Jenkins extras: client-demo", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/extras-client-demo", + "forks_url": "https://api.github.com/repos/jenkinsci/extras-client-demo/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/extras-client-demo/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/extras-client-demo/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/extras-client-demo/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/extras-client-demo/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/extras-client-demo/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/extras-client-demo/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/extras-client-demo/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/extras-client-demo/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/extras-client-demo/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/extras-client-demo/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/extras-client-demo/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/extras-client-demo/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/extras-client-demo/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/extras-client-demo/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/extras-client-demo/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/extras-client-demo/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/extras-client-demo/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/extras-client-demo/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/extras-client-demo/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/extras-client-demo/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/extras-client-demo/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/extras-client-demo/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/extras-client-demo/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/extras-client-demo/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/extras-client-demo/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/extras-client-demo/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/extras-client-demo/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/extras-client-demo/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/extras-client-demo/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/extras-client-demo/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/extras-client-demo/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/extras-client-demo/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/extras-client-demo/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/extras-client-demo/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/extras-client-demo/deployments", + "created_at": "2011-02-03T18:57:48Z", + "updated_at": "2019-06-27T12:01:55Z", + "pushed_at": "2013-11-10T02:01:58Z", + "git_url": "git://github.com/jenkinsci/extras-client-demo.git", + "ssh_url": "git@github.com:jenkinsci/extras-client-demo.git", + "clone_url": "https://github.com/jenkinsci/extras-client-demo.git", + "svn_url": "https://github.com/jenkinsci/extras-client-demo", + "homepage": "http://jenkins-ci.org/", + "size": 94, + "stargazers_count": 19, + "watchers_count": 19, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 28, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 28, + "open_issues": 0, + "watchers": 19, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1325281, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzI1Mjgx", + "name": "extras-ec2-launcher", + "full_name": "jenkinsci/extras-ec2-launcher", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/extras-ec2-launcher", + "description": "Jenkins extras: ec2-launcher", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/extras-ec2-launcher", + "forks_url": "https://api.github.com/repos/jenkinsci/extras-ec2-launcher/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/extras-ec2-launcher/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/extras-ec2-launcher/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/extras-ec2-launcher/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/extras-ec2-launcher/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/extras-ec2-launcher/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/extras-ec2-launcher/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/extras-ec2-launcher/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/extras-ec2-launcher/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/extras-ec2-launcher/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/extras-ec2-launcher/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/extras-ec2-launcher/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/extras-ec2-launcher/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/extras-ec2-launcher/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/extras-ec2-launcher/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/extras-ec2-launcher/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/extras-ec2-launcher/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/extras-ec2-launcher/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/extras-ec2-launcher/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/extras-ec2-launcher/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/extras-ec2-launcher/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/extras-ec2-launcher/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/extras-ec2-launcher/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/extras-ec2-launcher/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/extras-ec2-launcher/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/extras-ec2-launcher/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/extras-ec2-launcher/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/extras-ec2-launcher/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/extras-ec2-launcher/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/extras-ec2-launcher/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/extras-ec2-launcher/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/extras-ec2-launcher/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/extras-ec2-launcher/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/extras-ec2-launcher/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/extras-ec2-launcher/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/extras-ec2-launcher/deployments", + "created_at": "2011-02-03T18:58:06Z", + "updated_at": "2013-11-10T02:02:01Z", + "pushed_at": "2013-11-10T02:02:00Z", + "git_url": "git://github.com/jenkinsci/extras-ec2-launcher.git", + "ssh_url": "git@github.com:jenkinsci/extras-ec2-launcher.git", + "clone_url": "https://github.com/jenkinsci/extras-ec2-launcher.git", + "svn_url": "https://github.com/jenkinsci/extras-ec2-launcher", + "homepage": "http://jenkins-ci.org/", + "size": 148, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1325285, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzI1Mjg1", + "name": "extras-executable-war", + "full_name": "jenkinsci/extras-executable-war", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/extras-executable-war", + "description": "Jenkins extras: executable-war", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/extras-executable-war", + "forks_url": "https://api.github.com/repos/jenkinsci/extras-executable-war/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/extras-executable-war/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/extras-executable-war/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/extras-executable-war/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/extras-executable-war/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/extras-executable-war/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/extras-executable-war/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/extras-executable-war/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/extras-executable-war/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/extras-executable-war/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/extras-executable-war/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/extras-executable-war/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/extras-executable-war/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/extras-executable-war/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/extras-executable-war/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/extras-executable-war/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/extras-executable-war/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/extras-executable-war/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/extras-executable-war/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/extras-executable-war/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/extras-executable-war/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/extras-executable-war/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/extras-executable-war/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/extras-executable-war/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/extras-executable-war/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/extras-executable-war/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/extras-executable-war/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/extras-executable-war/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/extras-executable-war/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/extras-executable-war/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/extras-executable-war/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/extras-executable-war/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/extras-executable-war/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/extras-executable-war/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/extras-executable-war/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/extras-executable-war/deployments", + "created_at": "2011-02-03T18:58:27Z", + "updated_at": "2019-10-04T02:49:45Z", + "pushed_at": "2019-07-08T06:59:11Z", + "git_url": "git://github.com/jenkinsci/extras-executable-war.git", + "ssh_url": "git@github.com:jenkinsci/extras-executable-war.git", + "clone_url": "https://github.com/jenkinsci/extras-executable-war.git", + "svn_url": "https://github.com/jenkinsci/extras-executable-war", + "homepage": "http://jenkins-ci.org/", + "size": 190, + "stargazers_count": 10, + "watchers_count": 10, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 21, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 21, + "open_issues": 0, + "watchers": 10, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1325288, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzI1Mjg4", + "name": "extras-file-change-monitor", + "full_name": "jenkinsci/extras-file-change-monitor", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/extras-file-change-monitor", + "description": "Jenkins extras: file-change-monitor", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/extras-file-change-monitor", + "forks_url": "https://api.github.com/repos/jenkinsci/extras-file-change-monitor/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/extras-file-change-monitor/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/extras-file-change-monitor/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/extras-file-change-monitor/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/extras-file-change-monitor/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/extras-file-change-monitor/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/extras-file-change-monitor/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/extras-file-change-monitor/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/extras-file-change-monitor/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/extras-file-change-monitor/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/extras-file-change-monitor/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/extras-file-change-monitor/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/extras-file-change-monitor/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/extras-file-change-monitor/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/extras-file-change-monitor/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/extras-file-change-monitor/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/extras-file-change-monitor/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/extras-file-change-monitor/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/extras-file-change-monitor/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/extras-file-change-monitor/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/extras-file-change-monitor/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/extras-file-change-monitor/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/extras-file-change-monitor/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/extras-file-change-monitor/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/extras-file-change-monitor/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/extras-file-change-monitor/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/extras-file-change-monitor/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/extras-file-change-monitor/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/extras-file-change-monitor/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/extras-file-change-monitor/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/extras-file-change-monitor/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/extras-file-change-monitor/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/extras-file-change-monitor/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/extras-file-change-monitor/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/extras-file-change-monitor/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/extras-file-change-monitor/deployments", + "created_at": "2011-02-03T18:58:47Z", + "updated_at": "2013-11-10T02:02:08Z", + "pushed_at": "2013-11-10T02:02:03Z", + "git_url": "git://github.com/jenkinsci/extras-file-change-monitor.git", + "ssh_url": "git@github.com:jenkinsci/extras-file-change-monitor.git", + "clone_url": "https://github.com/jenkinsci/extras-file-change-monitor.git", + "svn_url": "https://github.com/jenkinsci/extras-file-change-monitor", + "homepage": "http://jenkins-ci.org/", + "size": 108, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1325292, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzI1Mjky", + "name": "extras-jenkins-magic", + "full_name": "jenkinsci/extras-jenkins-magic", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/extras-jenkins-magic", + "description": "Jenkins extras: hudson-magic", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/extras-jenkins-magic", + "forks_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-magic/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-magic/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-magic/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-magic/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-magic/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-magic/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-magic/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-magic/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-magic/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-magic/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-magic/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-magic/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-magic/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-magic/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-magic/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-magic/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-magic/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-magic/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-magic/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-magic/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-magic/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-magic/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-magic/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-magic/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-magic/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-magic/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-magic/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-magic/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-magic/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-magic/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-magic/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-magic/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-magic/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-magic/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-magic/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-magic/deployments", + "created_at": "2011-02-03T18:59:16Z", + "updated_at": "2013-11-10T02:02:07Z", + "pushed_at": "2013-11-10T02:02:05Z", + "git_url": "git://github.com/jenkinsci/extras-jenkins-magic.git", + "ssh_url": "git@github.com:jenkinsci/extras-jenkins-magic.git", + "clone_url": "https://github.com/jenkinsci/extras-jenkins-magic.git", + "svn_url": "https://github.com/jenkinsci/extras-jenkins-magic", + "homepage": "http://jenkins-ci.org/", + "size": 128, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Python", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1325295, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzI1Mjk1", + "name": "extras-jenkins-tools", + "full_name": "jenkinsci/extras-jenkins-tools", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/extras-jenkins-tools", + "description": "Jenkins extras: hudson-tools", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/extras-jenkins-tools", + "forks_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-tools/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-tools/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-tools/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-tools/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-tools/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-tools/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-tools/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-tools/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-tools/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-tools/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-tools/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-tools/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-tools/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-tools/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-tools/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-tools/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-tools/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-tools/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-tools/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-tools/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-tools/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-tools/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-tools/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-tools/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-tools/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-tools/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-tools/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-tools/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-tools/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-tools/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-tools/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-tools/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-tools/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-tools/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-tools/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-tools/deployments", + "created_at": "2011-02-03T18:59:37Z", + "updated_at": "2018-12-19T13:51:40Z", + "pushed_at": "2013-11-10T02:02:07Z", + "git_url": "git://github.com/jenkinsci/extras-jenkins-tools.git", + "ssh_url": "git@github.com:jenkinsci/extras-jenkins-tools.git", + "clone_url": "https://github.com/jenkinsci/extras-jenkins-tools.git", + "svn_url": "https://github.com/jenkinsci/extras-jenkins-tools", + "homepage": "http://jenkins-ci.org/", + "size": 152, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": true, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1325297, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzI1Mjk3", + "name": "extras-jenkins-wiki-plugin", + "full_name": "jenkinsci/extras-jenkins-wiki-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/extras-jenkins-wiki-plugin", + "description": "Jenkins extras: hudson-wiki-plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/extras-jenkins-wiki-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-wiki-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-wiki-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-wiki-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-wiki-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-wiki-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-wiki-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-wiki-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-wiki-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-wiki-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-wiki-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-wiki-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-wiki-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-wiki-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-wiki-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-wiki-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-wiki-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-wiki-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-wiki-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-wiki-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-wiki-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-wiki-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-wiki-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-wiki-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-wiki-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-wiki-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-wiki-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-wiki-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-wiki-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-wiki-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-wiki-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-wiki-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-wiki-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-wiki-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-wiki-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-wiki-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/extras-jenkins-wiki-plugin/deployments", + "created_at": "2011-02-03T19:00:01Z", + "updated_at": "2013-11-10T02:02:14Z", + "pushed_at": "2013-11-10T02:02:08Z", + "git_url": "git://github.com/jenkinsci/extras-jenkins-wiki-plugin.git", + "ssh_url": "git@github.com:jenkinsci/extras-jenkins-wiki-plugin.git", + "clone_url": "https://github.com/jenkinsci/extras-jenkins-wiki-plugin.git", + "svn_url": "https://github.com/jenkinsci/extras-jenkins-wiki-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 108, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1325300, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzI1MzAw", + "name": "extras-jinterop-wmi", + "full_name": "jenkinsci/extras-jinterop-wmi", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/extras-jinterop-wmi", + "description": "Jenkins extras: jinterop-wmi", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/extras-jinterop-wmi", + "forks_url": "https://api.github.com/repos/jenkinsci/extras-jinterop-wmi/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/extras-jinterop-wmi/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/extras-jinterop-wmi/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/extras-jinterop-wmi/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/extras-jinterop-wmi/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/extras-jinterop-wmi/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/extras-jinterop-wmi/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/extras-jinterop-wmi/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/extras-jinterop-wmi/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/extras-jinterop-wmi/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/extras-jinterop-wmi/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/extras-jinterop-wmi/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/extras-jinterop-wmi/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/extras-jinterop-wmi/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/extras-jinterop-wmi/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/extras-jinterop-wmi/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/extras-jinterop-wmi/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/extras-jinterop-wmi/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/extras-jinterop-wmi/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/extras-jinterop-wmi/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/extras-jinterop-wmi/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/extras-jinterop-wmi/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/extras-jinterop-wmi/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/extras-jinterop-wmi/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/extras-jinterop-wmi/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/extras-jinterop-wmi/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/extras-jinterop-wmi/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/extras-jinterop-wmi/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/extras-jinterop-wmi/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/extras-jinterop-wmi/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/extras-jinterop-wmi/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/extras-jinterop-wmi/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/extras-jinterop-wmi/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/extras-jinterop-wmi/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/extras-jinterop-wmi/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/extras-jinterop-wmi/deployments", + "created_at": "2011-02-03T19:00:26Z", + "updated_at": "2018-07-17T03:38:18Z", + "pushed_at": "2013-11-10T02:02:10Z", + "git_url": "git://github.com/jenkinsci/extras-jinterop-wmi.git", + "ssh_url": "git@github.com:jenkinsci/extras-jinterop-wmi.git", + "clone_url": "https://github.com/jenkinsci/extras-jinterop-wmi.git", + "svn_url": "https://github.com/jenkinsci/extras-jinterop-wmi", + "homepage": "http://jenkins-ci.org/", + "size": 124, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1325302, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzI1MzAy", + "name": "extras-maven2.1-interceptor", + "full_name": "jenkinsci/extras-maven2.1-interceptor", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/extras-maven2.1-interceptor", + "description": "Jenkins extras: maven2.1-interceptor", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/extras-maven2.1-interceptor", + "forks_url": "https://api.github.com/repos/jenkinsci/extras-maven2.1-interceptor/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/extras-maven2.1-interceptor/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/extras-maven2.1-interceptor/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/extras-maven2.1-interceptor/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/extras-maven2.1-interceptor/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/extras-maven2.1-interceptor/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/extras-maven2.1-interceptor/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/extras-maven2.1-interceptor/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/extras-maven2.1-interceptor/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/extras-maven2.1-interceptor/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/extras-maven2.1-interceptor/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/extras-maven2.1-interceptor/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/extras-maven2.1-interceptor/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/extras-maven2.1-interceptor/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/extras-maven2.1-interceptor/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/extras-maven2.1-interceptor/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/extras-maven2.1-interceptor/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/extras-maven2.1-interceptor/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/extras-maven2.1-interceptor/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/extras-maven2.1-interceptor/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/extras-maven2.1-interceptor/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/extras-maven2.1-interceptor/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/extras-maven2.1-interceptor/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/extras-maven2.1-interceptor/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/extras-maven2.1-interceptor/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/extras-maven2.1-interceptor/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/extras-maven2.1-interceptor/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/extras-maven2.1-interceptor/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/extras-maven2.1-interceptor/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/extras-maven2.1-interceptor/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/extras-maven2.1-interceptor/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/extras-maven2.1-interceptor/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/extras-maven2.1-interceptor/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/extras-maven2.1-interceptor/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/extras-maven2.1-interceptor/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/extras-maven2.1-interceptor/deployments", + "created_at": "2011-02-03T19:00:42Z", + "updated_at": "2013-11-10T02:02:22Z", + "pushed_at": "2013-11-10T02:02:12Z", + "git_url": "git://github.com/jenkinsci/extras-maven2.1-interceptor.git", + "ssh_url": "git@github.com:jenkinsci/extras-maven2.1-interceptor.git", + "clone_url": "https://github.com/jenkinsci/extras-maven2.1-interceptor.git", + "svn_url": "https://github.com/jenkinsci/extras-maven2.1-interceptor", + "homepage": "http://jenkins-ci.org/", + "size": 104, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1325303, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzI1MzAz", + "name": "extras-memory-monitor", + "full_name": "jenkinsci/extras-memory-monitor", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/extras-memory-monitor", + "description": "Jenkins extras: memory-monitor", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/extras-memory-monitor", + "forks_url": "https://api.github.com/repos/jenkinsci/extras-memory-monitor/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/extras-memory-monitor/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/extras-memory-monitor/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/extras-memory-monitor/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/extras-memory-monitor/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/extras-memory-monitor/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/extras-memory-monitor/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/extras-memory-monitor/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/extras-memory-monitor/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/extras-memory-monitor/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/extras-memory-monitor/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/extras-memory-monitor/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/extras-memory-monitor/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/extras-memory-monitor/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/extras-memory-monitor/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/extras-memory-monitor/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/extras-memory-monitor/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/extras-memory-monitor/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/extras-memory-monitor/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/extras-memory-monitor/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/extras-memory-monitor/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/extras-memory-monitor/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/extras-memory-monitor/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/extras-memory-monitor/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/extras-memory-monitor/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/extras-memory-monitor/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/extras-memory-monitor/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/extras-memory-monitor/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/extras-memory-monitor/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/extras-memory-monitor/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/extras-memory-monitor/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/extras-memory-monitor/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/extras-memory-monitor/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/extras-memory-monitor/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/extras-memory-monitor/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/extras-memory-monitor/deployments", + "created_at": "2011-02-03T19:00:59Z", + "updated_at": "2014-10-14T10:39:11Z", + "pushed_at": "2014-10-14T10:39:54Z", + "git_url": "git://github.com/jenkinsci/extras-memory-monitor.git", + "ssh_url": "git@github.com:jenkinsci/extras-memory-monitor.git", + "clone_url": "https://github.com/jenkinsci/extras-memory-monitor.git", + "svn_url": "https://github.com/jenkinsci/extras-memory-monitor", + "homepage": "http://jenkins-ci.org/", + "size": 308, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 3, + "open_issues": 0, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1325304, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzI1MzA0", + "name": "extras-nofinal", + "full_name": "jenkinsci/extras-nofinal", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/extras-nofinal", + "description": "Jenkins extras: nofinal", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/extras-nofinal", + "forks_url": "https://api.github.com/repos/jenkinsci/extras-nofinal/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/extras-nofinal/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/extras-nofinal/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/extras-nofinal/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/extras-nofinal/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/extras-nofinal/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/extras-nofinal/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/extras-nofinal/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/extras-nofinal/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/extras-nofinal/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/extras-nofinal/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/extras-nofinal/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/extras-nofinal/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/extras-nofinal/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/extras-nofinal/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/extras-nofinal/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/extras-nofinal/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/extras-nofinal/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/extras-nofinal/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/extras-nofinal/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/extras-nofinal/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/extras-nofinal/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/extras-nofinal/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/extras-nofinal/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/extras-nofinal/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/extras-nofinal/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/extras-nofinal/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/extras-nofinal/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/extras-nofinal/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/extras-nofinal/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/extras-nofinal/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/extras-nofinal/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/extras-nofinal/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/extras-nofinal/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/extras-nofinal/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/extras-nofinal/deployments", + "created_at": "2011-02-03T19:01:21Z", + "updated_at": "2015-01-16T10:42:15Z", + "pushed_at": "2013-11-10T02:02:16Z", + "git_url": "git://github.com/jenkinsci/extras-nofinal.git", + "ssh_url": "git@github.com:jenkinsci/extras-nofinal.git", + "clone_url": "https://github.com/jenkinsci/extras-nofinal.git", + "svn_url": "https://github.com/jenkinsci/extras-nofinal", + "homepage": "http://jenkins-ci.org/", + "size": 104, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1325306, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzI1MzA2", + "name": "extras-nofinal-test", + "full_name": "jenkinsci/extras-nofinal-test", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/extras-nofinal-test", + "description": "Jenkins extras: nofinal-test", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/extras-nofinal-test", + "forks_url": "https://api.github.com/repos/jenkinsci/extras-nofinal-test/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/extras-nofinal-test/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/extras-nofinal-test/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/extras-nofinal-test/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/extras-nofinal-test/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/extras-nofinal-test/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/extras-nofinal-test/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/extras-nofinal-test/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/extras-nofinal-test/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/extras-nofinal-test/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/extras-nofinal-test/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/extras-nofinal-test/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/extras-nofinal-test/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/extras-nofinal-test/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/extras-nofinal-test/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/extras-nofinal-test/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/extras-nofinal-test/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/extras-nofinal-test/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/extras-nofinal-test/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/extras-nofinal-test/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/extras-nofinal-test/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/extras-nofinal-test/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/extras-nofinal-test/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/extras-nofinal-test/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/extras-nofinal-test/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/extras-nofinal-test/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/extras-nofinal-test/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/extras-nofinal-test/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/extras-nofinal-test/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/extras-nofinal-test/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/extras-nofinal-test/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/extras-nofinal-test/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/extras-nofinal-test/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/extras-nofinal-test/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/extras-nofinal-test/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/extras-nofinal-test/deployments", + "created_at": "2011-02-03T19:01:43Z", + "updated_at": "2013-11-10T02:02:21Z", + "pushed_at": "2013-11-10T02:02:18Z", + "git_url": "git://github.com/jenkinsci/extras-nofinal-test.git", + "ssh_url": "git@github.com:jenkinsci/extras-nofinal-test.git", + "clone_url": "https://github.com/jenkinsci/extras-nofinal-test.git", + "svn_url": "https://github.com/jenkinsci/extras-nofinal-test", + "homepage": "http://jenkins-ci.org/", + "size": 100, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1325309, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzI1MzA5", + "name": "extras-tester", + "full_name": "jenkinsci/extras-tester", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/extras-tester", + "description": "Jenkins extras: tester", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/extras-tester", + "forks_url": "https://api.github.com/repos/jenkinsci/extras-tester/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/extras-tester/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/extras-tester/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/extras-tester/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/extras-tester/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/extras-tester/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/extras-tester/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/extras-tester/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/extras-tester/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/extras-tester/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/extras-tester/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/extras-tester/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/extras-tester/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/extras-tester/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/extras-tester/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/extras-tester/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/extras-tester/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/extras-tester/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/extras-tester/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/extras-tester/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/extras-tester/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/extras-tester/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/extras-tester/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/extras-tester/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/extras-tester/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/extras-tester/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/extras-tester/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/extras-tester/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/extras-tester/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/extras-tester/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/extras-tester/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/extras-tester/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/extras-tester/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/extras-tester/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/extras-tester/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/extras-tester/deployments", + "created_at": "2011-02-03T19:02:34Z", + "updated_at": "2013-11-10T02:02:26Z", + "pushed_at": "2013-11-10T02:02:20Z", + "git_url": "git://github.com/jenkinsci/extras-tester.git", + "ssh_url": "git@github.com:jenkinsci/extras-tester.git", + "clone_url": "https://github.com/jenkinsci/extras-tester.git", + "svn_url": "https://github.com/jenkinsci/extras-tester", + "homepage": "http://jenkins-ci.org/", + "size": 148, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1326576, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzI2NTc2", + "name": "console-column-plugin", + "full_name": "jenkinsci/console-column-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/console-column-plugin", + "description": "Provide a fast-path console link available for views.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/console-column-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/console-column-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/console-column-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/console-column-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/console-column-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/console-column-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/console-column-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/console-column-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/console-column-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/console-column-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/console-column-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/console-column-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/console-column-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/console-column-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/console-column-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/console-column-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/console-column-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/console-column-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/console-column-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/console-column-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/console-column-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/console-column-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/console-column-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/console-column-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/console-column-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/console-column-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/console-column-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/console-column-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/console-column-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/console-column-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/console-column-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/console-column-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/console-column-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/console-column-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/console-column-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/console-column-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/console-column-plugin/deployments", + "created_at": "2011-02-04T01:47:17Z", + "updated_at": "2018-07-19T09:55:40Z", + "pushed_at": "2019-10-08T10:07:04Z", + "git_url": "git://github.com/jenkinsci/console-column-plugin.git", + "ssh_url": "git@github.com:jenkinsci/console-column-plugin.git", + "clone_url": "https://github.com/jenkinsci/console-column-plugin.git", + "svn_url": "https://github.com/jenkinsci/console-column-plugin", + "homepage": "http://wiki.jenkins-ci.org/display/JENKINS/Console+Column+Plugin", + "size": 182, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": true, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 6, + "open_issues": 1, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1330814, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzMwODE0", + "name": "publish-over-plugin", + "full_name": "jenkinsci/publish-over-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/publish-over-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/publish-over-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/publish-over-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/publish-over-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/publish-over-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/publish-over-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/publish-over-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/publish-over-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/publish-over-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/publish-over-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/publish-over-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/publish-over-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/publish-over-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/publish-over-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/publish-over-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/publish-over-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/publish-over-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/publish-over-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/publish-over-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/publish-over-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/publish-over-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/publish-over-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/publish-over-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/publish-over-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/publish-over-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/publish-over-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/publish-over-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/publish-over-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/publish-over-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/publish-over-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/publish-over-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/publish-over-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/publish-over-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/publish-over-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/publish-over-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/publish-over-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/publish-over-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/publish-over-plugin/deployments", + "created_at": "2011-02-05T06:56:36Z", + "updated_at": "2019-10-02T16:05:35Z", + "pushed_at": "2019-10-16T18:54:24Z", + "git_url": "git://github.com/jenkinsci/publish-over-plugin.git", + "ssh_url": "git@github.com:jenkinsci/publish-over-plugin.git", + "clone_url": "https://github.com/jenkinsci/publish-over-plugin.git", + "svn_url": "https://github.com/jenkinsci/publish-over-plugin", + "homepage": "", + "size": 279, + "stargazers_count": 12, + "watchers_count": 12, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 18, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 18, + "open_issues": 2, + "watchers": 12, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1330815, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzMwODE1", + "name": "publish-over-ftp-plugin", + "full_name": "jenkinsci/publish-over-ftp-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/publish-over-ftp-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/publish-over-ftp-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/publish-over-ftp-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/publish-over-ftp-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/publish-over-ftp-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/publish-over-ftp-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/publish-over-ftp-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/publish-over-ftp-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/publish-over-ftp-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/publish-over-ftp-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/publish-over-ftp-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/publish-over-ftp-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/publish-over-ftp-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/publish-over-ftp-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/publish-over-ftp-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/publish-over-ftp-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/publish-over-ftp-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/publish-over-ftp-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/publish-over-ftp-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/publish-over-ftp-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/publish-over-ftp-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/publish-over-ftp-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/publish-over-ftp-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/publish-over-ftp-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/publish-over-ftp-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/publish-over-ftp-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/publish-over-ftp-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/publish-over-ftp-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/publish-over-ftp-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/publish-over-ftp-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/publish-over-ftp-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/publish-over-ftp-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/publish-over-ftp-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/publish-over-ftp-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/publish-over-ftp-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/publish-over-ftp-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/publish-over-ftp-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/publish-over-ftp-plugin/deployments", + "created_at": "2011-02-05T06:56:49Z", + "updated_at": "2019-10-03T18:30:04Z", + "pushed_at": "2019-10-03T18:29:59Z", + "git_url": "git://github.com/jenkinsci/publish-over-ftp-plugin.git", + "ssh_url": "git@github.com:jenkinsci/publish-over-ftp-plugin.git", + "clone_url": "https://github.com/jenkinsci/publish-over-ftp-plugin.git", + "svn_url": "https://github.com/jenkinsci/publish-over-ftp-plugin", + "homepage": "", + "size": 370, + "stargazers_count": 19, + "watchers_count": 19, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 24, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 24, + "open_issues": 0, + "watchers": 19, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1330817, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzMwODE3", + "name": "publish-over-ssh-plugin", + "full_name": "jenkinsci/publish-over-ssh-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/publish-over-ssh-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/publish-over-ssh-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/publish-over-ssh-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/publish-over-ssh-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/publish-over-ssh-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/publish-over-ssh-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/publish-over-ssh-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/publish-over-ssh-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/publish-over-ssh-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/publish-over-ssh-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/publish-over-ssh-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/publish-over-ssh-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/publish-over-ssh-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/publish-over-ssh-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/publish-over-ssh-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/publish-over-ssh-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/publish-over-ssh-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/publish-over-ssh-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/publish-over-ssh-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/publish-over-ssh-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/publish-over-ssh-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/publish-over-ssh-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/publish-over-ssh-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/publish-over-ssh-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/publish-over-ssh-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/publish-over-ssh-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/publish-over-ssh-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/publish-over-ssh-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/publish-over-ssh-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/publish-over-ssh-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/publish-over-ssh-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/publish-over-ssh-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/publish-over-ssh-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/publish-over-ssh-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/publish-over-ssh-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/publish-over-ssh-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/publish-over-ssh-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/publish-over-ssh-plugin/deployments", + "created_at": "2011-02-05T06:56:59Z", + "updated_at": "2019-10-02T16:09:06Z", + "pushed_at": "2019-10-02T16:09:03Z", + "git_url": "git://github.com/jenkinsci/publish-over-ssh-plugin.git", + "ssh_url": "git@github.com:jenkinsci/publish-over-ssh-plugin.git", + "clone_url": "https://github.com/jenkinsci/publish-over-ssh-plugin.git", + "svn_url": "https://github.com/jenkinsci/publish-over-ssh-plugin", + "homepage": "", + "size": 526, + "stargazers_count": 64, + "watchers_count": 64, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 82, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 5, + "license": null, + "forks": 82, + "open_issues": 5, + "watchers": 64, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1341292, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzQxMjky", + "name": "mibsr-plugin", + "full_name": "jenkinsci/mibsr-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/mibsr-plugin", + "description": "Jenkins mibsr plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/mibsr-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/mibsr-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/mibsr-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/mibsr-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/mibsr-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/mibsr-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/mibsr-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/mibsr-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/mibsr-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/mibsr-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/mibsr-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/mibsr-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/mibsr-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/mibsr-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/mibsr-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/mibsr-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/mibsr-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/mibsr-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/mibsr-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/mibsr-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/mibsr-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/mibsr-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/mibsr-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/mibsr-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/mibsr-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/mibsr-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/mibsr-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/mibsr-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/mibsr-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/mibsr-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/mibsr-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/mibsr-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/mibsr-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/mibsr-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/mibsr-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/mibsr-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/mibsr-plugin/deployments", + "created_at": "2011-02-08T08:46:45Z", + "updated_at": "2013-11-10T02:11:21Z", + "pushed_at": "2013-11-10T02:11:13Z", + "git_url": "git://github.com/jenkinsci/mibsr-plugin.git", + "ssh_url": "git@github.com:jenkinsci/mibsr-plugin.git", + "clone_url": "https://github.com/jenkinsci/mibsr-plugin.git", + "svn_url": "https://github.com/jenkinsci/mibsr-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 172, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1350114, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzUwMTE0", + "name": "ws-cleanup-plugin", + "full_name": "jenkinsci/ws-cleanup-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/ws-cleanup-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/ws-cleanup-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/ws-cleanup-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/ws-cleanup-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/ws-cleanup-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/ws-cleanup-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/ws-cleanup-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/ws-cleanup-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/ws-cleanup-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/ws-cleanup-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/ws-cleanup-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/ws-cleanup-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/ws-cleanup-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/ws-cleanup-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/ws-cleanup-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/ws-cleanup-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/ws-cleanup-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/ws-cleanup-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/ws-cleanup-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/ws-cleanup-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/ws-cleanup-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/ws-cleanup-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/ws-cleanup-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/ws-cleanup-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/ws-cleanup-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/ws-cleanup-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/ws-cleanup-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/ws-cleanup-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/ws-cleanup-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/ws-cleanup-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/ws-cleanup-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/ws-cleanup-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/ws-cleanup-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/ws-cleanup-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/ws-cleanup-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/ws-cleanup-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/ws-cleanup-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/ws-cleanup-plugin/deployments", + "created_at": "2011-02-10T10:03:00Z", + "updated_at": "2019-09-23T18:26:48Z", + "pushed_at": "2019-09-23T18:26:45Z", + "git_url": "git://github.com/jenkinsci/ws-cleanup-plugin.git", + "ssh_url": "git@github.com:jenkinsci/ws-cleanup-plugin.git", + "clone_url": "https://github.com/jenkinsci/ws-cleanup-plugin.git", + "svn_url": "https://github.com/jenkinsci/ws-cleanup-plugin", + "homepage": "", + "size": 214, + "stargazers_count": 24, + "watchers_count": 24, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 39, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 39, + "open_issues": 3, + "watchers": 24, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1350120, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzUwMTIw", + "name": "keep-slave-offline-plugin", + "full_name": "jenkinsci/keep-slave-offline-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/keep-slave-offline-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/keep-slave-offline-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/keep-slave-offline-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/keep-slave-offline-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/keep-slave-offline-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/keep-slave-offline-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/keep-slave-offline-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/keep-slave-offline-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/keep-slave-offline-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/keep-slave-offline-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/keep-slave-offline-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/keep-slave-offline-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/keep-slave-offline-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/keep-slave-offline-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/keep-slave-offline-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/keep-slave-offline-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/keep-slave-offline-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/keep-slave-offline-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/keep-slave-offline-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/keep-slave-offline-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/keep-slave-offline-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/keep-slave-offline-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/keep-slave-offline-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/keep-slave-offline-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/keep-slave-offline-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/keep-slave-offline-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/keep-slave-offline-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/keep-slave-offline-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/keep-slave-offline-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/keep-slave-offline-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/keep-slave-offline-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/keep-slave-offline-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/keep-slave-offline-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/keep-slave-offline-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/keep-slave-offline-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/keep-slave-offline-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/keep-slave-offline-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/keep-slave-offline-plugin/deployments", + "created_at": "2011-02-10T10:04:47Z", + "updated_at": "2017-01-29T11:08:28Z", + "pushed_at": "2014-05-26T08:36:08Z", + "git_url": "git://github.com/jenkinsci/keep-slave-offline-plugin.git", + "ssh_url": "git@github.com:jenkinsci/keep-slave-offline-plugin.git", + "clone_url": "https://github.com/jenkinsci/keep-slave-offline-plugin.git", + "svn_url": "https://github.com/jenkinsci/keep-slave-offline-plugin", + "homepage": "", + "size": 123, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1350134, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzUwMTM0", + "name": "exclude-matrix-parent-plugin", + "full_name": "jenkinsci/exclude-matrix-parent-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/exclude-matrix-parent-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/exclude-matrix-parent-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/exclude-matrix-parent-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/exclude-matrix-parent-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/exclude-matrix-parent-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/exclude-matrix-parent-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/exclude-matrix-parent-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/exclude-matrix-parent-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/exclude-matrix-parent-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/exclude-matrix-parent-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/exclude-matrix-parent-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/exclude-matrix-parent-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/exclude-matrix-parent-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/exclude-matrix-parent-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/exclude-matrix-parent-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/exclude-matrix-parent-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/exclude-matrix-parent-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/exclude-matrix-parent-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/exclude-matrix-parent-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/exclude-matrix-parent-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/exclude-matrix-parent-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/exclude-matrix-parent-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/exclude-matrix-parent-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/exclude-matrix-parent-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/exclude-matrix-parent-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/exclude-matrix-parent-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/exclude-matrix-parent-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/exclude-matrix-parent-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/exclude-matrix-parent-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/exclude-matrix-parent-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/exclude-matrix-parent-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/exclude-matrix-parent-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/exclude-matrix-parent-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/exclude-matrix-parent-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/exclude-matrix-parent-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/exclude-matrix-parent-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/exclude-matrix-parent-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/exclude-matrix-parent-plugin/deployments", + "created_at": "2011-02-10T10:08:51Z", + "updated_at": "2018-07-10T13:40:01Z", + "pushed_at": "2018-06-18T10:03:43Z", + "git_url": "git://github.com/jenkinsci/exclude-matrix-parent-plugin.git", + "ssh_url": "git@github.com:jenkinsci/exclude-matrix-parent-plugin.git", + "clone_url": "https://github.com/jenkinsci/exclude-matrix-parent-plugin.git", + "svn_url": "https://github.com/jenkinsci/exclude-matrix-parent-plugin", + "homepage": "", + "size": 7, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1350138, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzUwMTM4", + "name": "copy-project-link-plugin", + "full_name": "jenkinsci/copy-project-link-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/copy-project-link-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/copy-project-link-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/copy-project-link-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/copy-project-link-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/copy-project-link-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/copy-project-link-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/copy-project-link-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/copy-project-link-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/copy-project-link-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/copy-project-link-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/copy-project-link-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/copy-project-link-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/copy-project-link-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/copy-project-link-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/copy-project-link-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/copy-project-link-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/copy-project-link-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/copy-project-link-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/copy-project-link-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/copy-project-link-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/copy-project-link-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/copy-project-link-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/copy-project-link-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/copy-project-link-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/copy-project-link-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/copy-project-link-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/copy-project-link-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/copy-project-link-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/copy-project-link-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/copy-project-link-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/copy-project-link-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/copy-project-link-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/copy-project-link-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/copy-project-link-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/copy-project-link-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/copy-project-link-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/copy-project-link-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/copy-project-link-plugin/deployments", + "created_at": "2011-02-10T10:09:37Z", + "updated_at": "2019-10-08T13:27:10Z", + "pushed_at": "2019-10-08T13:27:08Z", + "git_url": "git://github.com/jenkinsci/copy-project-link-plugin.git", + "ssh_url": "git@github.com:jenkinsci/copy-project-link-plugin.git", + "clone_url": "https://github.com/jenkinsci/copy-project-link-plugin.git", + "svn_url": "https://github.com/jenkinsci/copy-project-link-plugin", + "homepage": "", + "size": 28, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 8, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 8, + "open_issues": 1, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1350141, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzUwMTQx", + "name": "signal-killer", + "full_name": "jenkinsci/signal-killer", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/signal-killer", + "description": "Sends signal to a process to be killed", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/signal-killer", + "forks_url": "https://api.github.com/repos/jenkinsci/signal-killer/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/signal-killer/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/signal-killer/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/signal-killer/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/signal-killer/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/signal-killer/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/signal-killer/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/signal-killer/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/signal-killer/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/signal-killer/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/signal-killer/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/signal-killer/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/signal-killer/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/signal-killer/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/signal-killer/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/signal-killer/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/signal-killer/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/signal-killer/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/signal-killer/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/signal-killer/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/signal-killer/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/signal-killer/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/signal-killer/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/signal-killer/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/signal-killer/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/signal-killer/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/signal-killer/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/signal-killer/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/signal-killer/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/signal-killer/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/signal-killer/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/signal-killer/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/signal-killer/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/signal-killer/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/signal-killer/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/signal-killer/deployments", + "created_at": "2011-02-10T10:09:57Z", + "updated_at": "2018-11-26T12:57:07Z", + "pushed_at": "2018-09-17T10:11:15Z", + "git_url": "git://github.com/jenkinsci/signal-killer.git", + "ssh_url": "git@github.com:jenkinsci/signal-killer.git", + "clone_url": "https://github.com/jenkinsci/signal-killer.git", + "svn_url": "https://github.com/jenkinsci/signal-killer", + "homepage": "", + "size": 10, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 2, + "open_issues": 0, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1350900, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzUwOTAw", + "name": "rundeck-plugin", + "full_name": "jenkinsci/rundeck-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/rundeck-plugin", + "description": "Jenkins plugin for Rundeck integration : trigger, notifier and option provider.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/rundeck-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/rundeck-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/rundeck-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/rundeck-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/rundeck-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/rundeck-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/rundeck-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/rundeck-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/rundeck-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/rundeck-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/rundeck-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/rundeck-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/rundeck-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/rundeck-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/rundeck-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/rundeck-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/rundeck-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/rundeck-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/rundeck-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/rundeck-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/rundeck-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/rundeck-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/rundeck-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/rundeck-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/rundeck-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/rundeck-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/rundeck-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/rundeck-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/rundeck-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/rundeck-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/rundeck-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/rundeck-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/rundeck-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/rundeck-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/rundeck-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/rundeck-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/rundeck-plugin/deployments", + "created_at": "2011-02-10T14:46:42Z", + "updated_at": "2019-05-08T22:03:10Z", + "pushed_at": "2019-05-08T22:03:08Z", + "git_url": "git://github.com/jenkinsci/rundeck-plugin.git", + "ssh_url": "git@github.com:jenkinsci/rundeck-plugin.git", + "clone_url": "https://github.com/jenkinsci/rundeck-plugin.git", + "svn_url": "https://github.com/jenkinsci/rundeck-plugin", + "homepage": "http://wiki.jenkins-ci.org/display/JENKINS/Rundeck+Plugin", + "size": 331, + "stargazers_count": 31, + "watchers_count": 31, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 43, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 43, + "open_issues": 0, + "watchers": 31, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1362386, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzYyMzg2", + "name": "unicorn-plugin", + "full_name": "jenkinsci/unicorn-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/unicorn-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/unicorn-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/unicorn-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/unicorn-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/unicorn-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/unicorn-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/unicorn-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/unicorn-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/unicorn-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/unicorn-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/unicorn-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/unicorn-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/unicorn-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/unicorn-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/unicorn-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/unicorn-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/unicorn-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/unicorn-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/unicorn-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/unicorn-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/unicorn-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/unicorn-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/unicorn-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/unicorn-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/unicorn-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/unicorn-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/unicorn-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/unicorn-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/unicorn-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/unicorn-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/unicorn-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/unicorn-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/unicorn-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/unicorn-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/unicorn-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/unicorn-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/unicorn-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/unicorn-plugin/deployments", + "created_at": "2011-02-13T17:56:12Z", + "updated_at": "2013-11-10T02:21:42Z", + "pushed_at": "2013-11-10T02:21:32Z", + "git_url": "git://github.com/jenkinsci/unicorn-plugin.git", + "ssh_url": "git@github.com:jenkinsci/unicorn-plugin.git", + "clone_url": "https://github.com/jenkinsci/unicorn-plugin.git", + "svn_url": "https://github.com/jenkinsci/unicorn-plugin", + "homepage": "", + "size": 201, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 1, + "open_issues": 1, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1365954, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzY1OTU0", + "name": "ScheduledTasksView-plugin", + "full_name": "jenkinsci/ScheduledTasksView-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/ScheduledTasksView-plugin", + "description": "Hudson/Jenkins Plugin to show scheduled tasks", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/ScheduledTasksView-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/ScheduledTasksView-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/ScheduledTasksView-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/ScheduledTasksView-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/ScheduledTasksView-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/ScheduledTasksView-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/ScheduledTasksView-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/ScheduledTasksView-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/ScheduledTasksView-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/ScheduledTasksView-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/ScheduledTasksView-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/ScheduledTasksView-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/ScheduledTasksView-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/ScheduledTasksView-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/ScheduledTasksView-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/ScheduledTasksView-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/ScheduledTasksView-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/ScheduledTasksView-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/ScheduledTasksView-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/ScheduledTasksView-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/ScheduledTasksView-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/ScheduledTasksView-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/ScheduledTasksView-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/ScheduledTasksView-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/ScheduledTasksView-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/ScheduledTasksView-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/ScheduledTasksView-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/ScheduledTasksView-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/ScheduledTasksView-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/ScheduledTasksView-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/ScheduledTasksView-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/ScheduledTasksView-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/ScheduledTasksView-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/ScheduledTasksView-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/ScheduledTasksView-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/ScheduledTasksView-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/ScheduledTasksView-plugin/deployments", + "created_at": "2011-02-14T16:55:52Z", + "updated_at": "2013-11-10T01:51:21Z", + "pushed_at": "2013-11-10T01:51:15Z", + "git_url": "git://github.com/jenkinsci/ScheduledTasksView-plugin.git", + "ssh_url": "git@github.com:jenkinsci/ScheduledTasksView-plugin.git", + "clone_url": "https://github.com/jenkinsci/ScheduledTasksView-plugin.git", + "svn_url": "https://github.com/jenkinsci/ScheduledTasksView-plugin", + "homepage": "", + "size": 383, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1368664, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzY4NjY0", + "name": "clang-scanbuild-plugin", + "full_name": "jenkinsci/clang-scanbuild-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/clang-scanbuild-plugin", + "description": "Jenkins plugin which enables static analysis of XCode projects using Clang scan-build", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/clang-scanbuild-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/clang-scanbuild-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/clang-scanbuild-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/clang-scanbuild-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/clang-scanbuild-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/clang-scanbuild-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/clang-scanbuild-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/clang-scanbuild-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/clang-scanbuild-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/clang-scanbuild-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/clang-scanbuild-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/clang-scanbuild-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/clang-scanbuild-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/clang-scanbuild-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/clang-scanbuild-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/clang-scanbuild-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/clang-scanbuild-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/clang-scanbuild-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/clang-scanbuild-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/clang-scanbuild-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/clang-scanbuild-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/clang-scanbuild-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/clang-scanbuild-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/clang-scanbuild-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/clang-scanbuild-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/clang-scanbuild-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/clang-scanbuild-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/clang-scanbuild-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/clang-scanbuild-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/clang-scanbuild-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/clang-scanbuild-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/clang-scanbuild-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/clang-scanbuild-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/clang-scanbuild-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/clang-scanbuild-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/clang-scanbuild-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/clang-scanbuild-plugin/deployments", + "created_at": "2011-02-15T09:00:11Z", + "updated_at": "2018-11-10T09:45:47Z", + "pushed_at": "2019-06-03T09:45:49Z", + "git_url": "git://github.com/jenkinsci/clang-scanbuild-plugin.git", + "ssh_url": "git@github.com:jenkinsci/clang-scanbuild-plugin.git", + "clone_url": "https://github.com/jenkinsci/clang-scanbuild-plugin.git", + "svn_url": "https://github.com/jenkinsci/clang-scanbuild-plugin", + "homepage": "http://wiki.jenkins-ci.org/display/JENKINS/Clang+Scan-Build+Plugin", + "size": 626, + "stargazers_count": 31, + "watchers_count": 31, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 23, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 23, + "open_issues": 3, + "watchers": 31, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1376255, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzc2MjU1", + "name": "token-macro-plugin", + "full_name": "jenkinsci/token-macro-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/token-macro-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/token-macro-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/token-macro-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/token-macro-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/token-macro-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/token-macro-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/token-macro-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/token-macro-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/token-macro-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/token-macro-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/token-macro-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/token-macro-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/token-macro-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/token-macro-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/token-macro-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/token-macro-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/token-macro-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/token-macro-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/token-macro-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/token-macro-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/token-macro-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/token-macro-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/token-macro-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/token-macro-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/token-macro-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/token-macro-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/token-macro-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/token-macro-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/token-macro-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/token-macro-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/token-macro-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/token-macro-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/token-macro-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/token-macro-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/token-macro-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/token-macro-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/token-macro-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/token-macro-plugin/deployments", + "created_at": "2011-02-16T23:51:39Z", + "updated_at": "2019-10-22T17:23:39Z", + "pushed_at": "2019-10-22T17:23:37Z", + "git_url": "git://github.com/jenkinsci/token-macro-plugin.git", + "ssh_url": "git@github.com:jenkinsci/token-macro-plugin.git", + "clone_url": "https://github.com/jenkinsci/token-macro-plugin.git", + "svn_url": "https://github.com/jenkinsci/token-macro-plugin", + "homepage": "", + "size": 281, + "stargazers_count": 15, + "watchers_count": 15, + "language": "Java", + "has_issues": false, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 39, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 39, + "open_issues": 0, + "watchers": 15, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1380207, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzgwMjA3", + "name": "build-name-setter-plugin", + "full_name": "jenkinsci/build-name-setter-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/build-name-setter-plugin", + "description": "Build Name Setter Plugin for Jenkins CI", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/build-name-setter-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/build-name-setter-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/build-name-setter-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/build-name-setter-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/build-name-setter-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/build-name-setter-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/build-name-setter-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/build-name-setter-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/build-name-setter-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/build-name-setter-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/build-name-setter-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/build-name-setter-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/build-name-setter-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/build-name-setter-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/build-name-setter-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/build-name-setter-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/build-name-setter-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/build-name-setter-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/build-name-setter-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/build-name-setter-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/build-name-setter-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/build-name-setter-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/build-name-setter-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/build-name-setter-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/build-name-setter-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/build-name-setter-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/build-name-setter-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/build-name-setter-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/build-name-setter-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/build-name-setter-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/build-name-setter-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/build-name-setter-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/build-name-setter-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/build-name-setter-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/build-name-setter-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/build-name-setter-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/build-name-setter-plugin/deployments", + "created_at": "2011-02-17T22:34:53Z", + "updated_at": "2019-10-04T21:19:29Z", + "pushed_at": "2019-10-04T21:19:27Z", + "git_url": "git://github.com/jenkinsci/build-name-setter-plugin.git", + "ssh_url": "git@github.com:jenkinsci/build-name-setter-plugin.git", + "clone_url": "https://github.com/jenkinsci/build-name-setter-plugin.git", + "svn_url": "https://github.com/jenkinsci/build-name-setter-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Build+Name+Setter+Plugin", + "size": 179, + "stargazers_count": 21, + "watchers_count": 21, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 36, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 36, + "open_issues": 1, + "watchers": 21, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1399074, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzk5MDc0", + "name": "confluence-publisher-plugin", + "full_name": "jenkinsci/confluence-publisher-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/confluence-publisher-plugin", + "description": "Jenkins Plugin to publish artifacts to Atlassian Confluence", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/confluence-publisher-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/confluence-publisher-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/confluence-publisher-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/confluence-publisher-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/confluence-publisher-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/confluence-publisher-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/confluence-publisher-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/confluence-publisher-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/confluence-publisher-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/confluence-publisher-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/confluence-publisher-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/confluence-publisher-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/confluence-publisher-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/confluence-publisher-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/confluence-publisher-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/confluence-publisher-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/confluence-publisher-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/confluence-publisher-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/confluence-publisher-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/confluence-publisher-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/confluence-publisher-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/confluence-publisher-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/confluence-publisher-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/confluence-publisher-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/confluence-publisher-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/confluence-publisher-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/confluence-publisher-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/confluence-publisher-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/confluence-publisher-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/confluence-publisher-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/confluence-publisher-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/confluence-publisher-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/confluence-publisher-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/confluence-publisher-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/confluence-publisher-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/confluence-publisher-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/confluence-publisher-plugin/deployments", + "created_at": "2011-02-22T19:47:44Z", + "updated_at": "2019-02-22T10:46:33Z", + "pushed_at": "2019-10-08T10:12:08Z", + "git_url": "git://github.com/jenkinsci/confluence-publisher-plugin.git", + "ssh_url": "git@github.com:jenkinsci/confluence-publisher-plugin.git", + "clone_url": "https://github.com/jenkinsci/confluence-publisher-plugin.git", + "svn_url": "https://github.com/jenkinsci/confluence-publisher-plugin", + "homepage": "", + "size": 212, + "stargazers_count": 14, + "watchers_count": 14, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 27, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 27, + "open_issues": 1, + "watchers": 14, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1400156, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDAwMTU2", + "name": "backend-github-repository-list", + "full_name": "jenkinsci/backend-github-repository-list", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/backend-github-repository-list", + "description": "Generates GitHub repository list", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/backend-github-repository-list", + "forks_url": "https://api.github.com/repos/jenkinsci/backend-github-repository-list/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/backend-github-repository-list/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/backend-github-repository-list/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/backend-github-repository-list/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/backend-github-repository-list/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/backend-github-repository-list/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/backend-github-repository-list/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/backend-github-repository-list/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/backend-github-repository-list/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/backend-github-repository-list/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/backend-github-repository-list/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/backend-github-repository-list/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/backend-github-repository-list/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/backend-github-repository-list/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/backend-github-repository-list/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/backend-github-repository-list/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/backend-github-repository-list/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/backend-github-repository-list/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/backend-github-repository-list/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/backend-github-repository-list/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/backend-github-repository-list/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/backend-github-repository-list/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/backend-github-repository-list/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/backend-github-repository-list/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/backend-github-repository-list/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/backend-github-repository-list/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/backend-github-repository-list/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/backend-github-repository-list/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/backend-github-repository-list/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/backend-github-repository-list/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/backend-github-repository-list/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/backend-github-repository-list/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/backend-github-repository-list/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/backend-github-repository-list/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/backend-github-repository-list/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/backend-github-repository-list/deployments", + "created_at": "2011-02-23T00:01:35Z", + "updated_at": "2018-01-03T17:53:41Z", + "pushed_at": "2013-10-20T21:23:40Z", + "git_url": "git://github.com/jenkinsci/backend-github-repository-list.git", + "ssh_url": "git@github.com:jenkinsci/backend-github-repository-list.git", + "clone_url": "https://github.com/jenkinsci/backend-github-repository-list.git", + "svn_url": "https://github.com/jenkinsci/backend-github-repository-list", + "homepage": "http://jenkins-ci.org/", + "size": 120, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": true, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1402915, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDAyOTE1", + "name": "walldisplay-plugin", + "full_name": "jenkinsci/walldisplay-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/walldisplay-plugin", + "description": "Jenkins Wall Display", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/walldisplay-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/walldisplay-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/walldisplay-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/walldisplay-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/walldisplay-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/walldisplay-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/walldisplay-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/walldisplay-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/walldisplay-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/walldisplay-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/walldisplay-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/walldisplay-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/walldisplay-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/walldisplay-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/walldisplay-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/walldisplay-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/walldisplay-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/walldisplay-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/walldisplay-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/walldisplay-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/walldisplay-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/walldisplay-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/walldisplay-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/walldisplay-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/walldisplay-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/walldisplay-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/walldisplay-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/walldisplay-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/walldisplay-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/walldisplay-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/walldisplay-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/walldisplay-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/walldisplay-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/walldisplay-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/walldisplay-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/walldisplay-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/walldisplay-plugin/deployments", + "created_at": "2011-02-23T16:37:07Z", + "updated_at": "2019-08-13T14:42:07Z", + "pushed_at": "2019-10-08T11:14:51Z", + "git_url": "git://github.com/jenkinsci/walldisplay-plugin.git", + "ssh_url": "git@github.com:jenkinsci/walldisplay-plugin.git", + "clone_url": "https://github.com/jenkinsci/walldisplay-plugin.git", + "svn_url": "https://github.com/jenkinsci/walldisplay-plugin", + "homepage": "", + "size": 859, + "stargazers_count": 49, + "watchers_count": 49, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 64, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": null, + "forks": 64, + "open_issues": 3, + "watchers": 49, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1422147, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDIyMTQ3", + "name": "plasticscm-plugin", + "full_name": "jenkinsci/plasticscm-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/plasticscm-plugin", + "description": "A plugin for Jenkins to be able to use Plastic SCM", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/plasticscm-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/plasticscm-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/plasticscm-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/plasticscm-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/plasticscm-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/plasticscm-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/plasticscm-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/plasticscm-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/plasticscm-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/plasticscm-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/plasticscm-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/plasticscm-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/plasticscm-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/plasticscm-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/plasticscm-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/plasticscm-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/plasticscm-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/plasticscm-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/plasticscm-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/plasticscm-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/plasticscm-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/plasticscm-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/plasticscm-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/plasticscm-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/plasticscm-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/plasticscm-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/plasticscm-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/plasticscm-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/plasticscm-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/plasticscm-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/plasticscm-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/plasticscm-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/plasticscm-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/plasticscm-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/plasticscm-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/plasticscm-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/plasticscm-plugin/deployments", + "created_at": "2011-02-28T16:16:52Z", + "updated_at": "2019-08-29T13:59:17Z", + "pushed_at": "2019-09-16T14:22:50Z", + "git_url": "git://github.com/jenkinsci/plasticscm-plugin.git", + "ssh_url": "git@github.com:jenkinsci/plasticscm-plugin.git", + "clone_url": "https://github.com/jenkinsci/plasticscm-plugin.git", + "svn_url": "https://github.com/jenkinsci/plasticscm-plugin", + "homepage": "", + "size": 293, + "stargazers_count": 8, + "watchers_count": 8, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 15, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 15, + "open_issues": 1, + "watchers": 8, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1424158, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDI0MTU4", + "name": "integrity-plugin", + "full_name": "jenkinsci/integrity-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/integrity-plugin", + "description": "This Jenkins plugin provides SCM integration capabilities to PTC Integrity Lifecycle Manager for Configuration Management.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/integrity-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/integrity-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/integrity-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/integrity-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/integrity-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/integrity-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/integrity-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/integrity-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/integrity-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/integrity-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/integrity-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/integrity-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/integrity-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/integrity-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/integrity-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/integrity-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/integrity-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/integrity-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/integrity-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/integrity-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/integrity-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/integrity-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/integrity-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/integrity-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/integrity-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/integrity-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/integrity-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/integrity-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/integrity-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/integrity-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/integrity-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/integrity-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/integrity-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/integrity-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/integrity-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/integrity-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/integrity-plugin/deployments", + "created_at": "2011-03-01T00:58:26Z", + "updated_at": "2019-04-10T08:02:30Z", + "pushed_at": "2019-10-08T16:40:07Z", + "git_url": "git://github.com/jenkinsci/integrity-plugin.git", + "ssh_url": "git@github.com:jenkinsci/integrity-plugin.git", + "clone_url": "https://github.com/jenkinsci/integrity-plugin.git", + "svn_url": "https://github.com/jenkinsci/integrity-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/PTC+Integrity+Plugin", + "size": 1161, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 32, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 32, + "open_issues": 1, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1428100, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDI4MTAw", + "name": "multiple-scms-plugin", + "full_name": "jenkinsci/multiple-scms-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/multiple-scms-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/multiple-scms-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/multiple-scms-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/multiple-scms-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/multiple-scms-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/multiple-scms-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/multiple-scms-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/multiple-scms-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/multiple-scms-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/multiple-scms-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/multiple-scms-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/multiple-scms-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/multiple-scms-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/multiple-scms-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/multiple-scms-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/multiple-scms-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/multiple-scms-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/multiple-scms-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/multiple-scms-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/multiple-scms-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/multiple-scms-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/multiple-scms-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/multiple-scms-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/multiple-scms-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/multiple-scms-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/multiple-scms-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/multiple-scms-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/multiple-scms-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/multiple-scms-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/multiple-scms-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/multiple-scms-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/multiple-scms-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/multiple-scms-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/multiple-scms-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/multiple-scms-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/multiple-scms-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/multiple-scms-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/multiple-scms-plugin/deployments", + "created_at": "2011-03-01T21:57:08Z", + "updated_at": "2019-10-01T15:31:52Z", + "pushed_at": "2018-10-30T15:49:27Z", + "git_url": "git://github.com/jenkinsci/multiple-scms-plugin.git", + "ssh_url": "git@github.com:jenkinsci/multiple-scms-plugin.git", + "clone_url": "https://github.com/jenkinsci/multiple-scms-plugin.git", + "svn_url": "https://github.com/jenkinsci/multiple-scms-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Multiple+SCMs+Plugin", + "size": 143, + "stargazers_count": 39, + "watchers_count": 39, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 60, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 60, + "open_issues": 3, + "watchers": 39, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1428564, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDI4NTY0", + "name": "copy-data-to-workspace-plugin", + "full_name": "jenkinsci/copy-data-to-workspace-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/copy-data-to-workspace-plugin", + "description": "Jenkins copy-data-to-workspace-plugin plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/copy-data-to-workspace-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/copy-data-to-workspace-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/copy-data-to-workspace-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/copy-data-to-workspace-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/copy-data-to-workspace-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/copy-data-to-workspace-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/copy-data-to-workspace-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/copy-data-to-workspace-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/copy-data-to-workspace-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/copy-data-to-workspace-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/copy-data-to-workspace-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/copy-data-to-workspace-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/copy-data-to-workspace-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/copy-data-to-workspace-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/copy-data-to-workspace-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/copy-data-to-workspace-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/copy-data-to-workspace-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/copy-data-to-workspace-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/copy-data-to-workspace-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/copy-data-to-workspace-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/copy-data-to-workspace-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/copy-data-to-workspace-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/copy-data-to-workspace-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/copy-data-to-workspace-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/copy-data-to-workspace-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/copy-data-to-workspace-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/copy-data-to-workspace-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/copy-data-to-workspace-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/copy-data-to-workspace-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/copy-data-to-workspace-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/copy-data-to-workspace-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/copy-data-to-workspace-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/copy-data-to-workspace-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/copy-data-to-workspace-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/copy-data-to-workspace-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/copy-data-to-workspace-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/copy-data-to-workspace-plugin/deployments", + "created_at": "2011-03-02T00:10:15Z", + "updated_at": "2017-01-29T11:00:52Z", + "pushed_at": "2013-11-10T01:58:21Z", + "git_url": "git://github.com/jenkinsci/copy-data-to-workspace-plugin.git", + "ssh_url": "git@github.com:jenkinsci/copy-data-to-workspace-plugin.git", + "clone_url": "https://github.com/jenkinsci/copy-data-to-workspace-plugin.git", + "svn_url": "https://github.com/jenkinsci/copy-data-to-workspace-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 128, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 3, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1428642, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDI4NjQy", + "name": "selection-tasks-plugin-plugin", + "full_name": "jenkinsci/selection-tasks-plugin-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/selection-tasks-plugin-plugin", + "description": "Jenkins selection-tasks-plugin plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/selection-tasks-plugin-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/selection-tasks-plugin-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/selection-tasks-plugin-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/selection-tasks-plugin-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/selection-tasks-plugin-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/selection-tasks-plugin-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/selection-tasks-plugin-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/selection-tasks-plugin-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/selection-tasks-plugin-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/selection-tasks-plugin-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/selection-tasks-plugin-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/selection-tasks-plugin-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/selection-tasks-plugin-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/selection-tasks-plugin-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/selection-tasks-plugin-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/selection-tasks-plugin-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/selection-tasks-plugin-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/selection-tasks-plugin-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/selection-tasks-plugin-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/selection-tasks-plugin-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/selection-tasks-plugin-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/selection-tasks-plugin-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/selection-tasks-plugin-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/selection-tasks-plugin-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/selection-tasks-plugin-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/selection-tasks-plugin-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/selection-tasks-plugin-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/selection-tasks-plugin-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/selection-tasks-plugin-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/selection-tasks-plugin-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/selection-tasks-plugin-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/selection-tasks-plugin-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/selection-tasks-plugin-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/selection-tasks-plugin-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/selection-tasks-plugin-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/selection-tasks-plugin-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/selection-tasks-plugin-plugin/deployments", + "created_at": "2011-03-02T00:35:39Z", + "updated_at": "2013-11-10T02:16:56Z", + "pushed_at": "2019-10-08T16:12:53Z", + "git_url": "git://github.com/jenkinsci/selection-tasks-plugin-plugin.git", + "ssh_url": "git@github.com:jenkinsci/selection-tasks-plugin-plugin.git", + "clone_url": "https://github.com/jenkinsci/selection-tasks-plugin-plugin.git", + "svn_url": "https://github.com/jenkinsci/selection-tasks-plugin-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 116, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 1, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1428643, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDI4NjQz", + "name": "seleniumrc-plugin-plugin", + "full_name": "jenkinsci/seleniumrc-plugin-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/seleniumrc-plugin-plugin", + "description": "Jenkins seleniumrc-plugin plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/seleniumrc-plugin-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/seleniumrc-plugin-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/seleniumrc-plugin-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/seleniumrc-plugin-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/seleniumrc-plugin-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/seleniumrc-plugin-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/seleniumrc-plugin-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/seleniumrc-plugin-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/seleniumrc-plugin-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/seleniumrc-plugin-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/seleniumrc-plugin-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/seleniumrc-plugin-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/seleniumrc-plugin-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/seleniumrc-plugin-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/seleniumrc-plugin-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/seleniumrc-plugin-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/seleniumrc-plugin-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/seleniumrc-plugin-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/seleniumrc-plugin-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/seleniumrc-plugin-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/seleniumrc-plugin-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/seleniumrc-plugin-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/seleniumrc-plugin-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/seleniumrc-plugin-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/seleniumrc-plugin-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/seleniumrc-plugin-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/seleniumrc-plugin-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/seleniumrc-plugin-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/seleniumrc-plugin-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/seleniumrc-plugin-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/seleniumrc-plugin-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/seleniumrc-plugin-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/seleniumrc-plugin-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/seleniumrc-plugin-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/seleniumrc-plugin-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/seleniumrc-plugin-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/seleniumrc-plugin-plugin/deployments", + "created_at": "2011-03-02T00:35:59Z", + "updated_at": "2013-11-10T02:17:17Z", + "pushed_at": "2019-10-08T12:08:45Z", + "git_url": "git://github.com/jenkinsci/seleniumrc-plugin-plugin.git", + "ssh_url": "git@github.com:jenkinsci/seleniumrc-plugin-plugin.git", + "clone_url": "https://github.com/jenkinsci/seleniumrc-plugin-plugin.git", + "svn_url": "https://github.com/jenkinsci/seleniumrc-plugin-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 108, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 1, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1428648, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDI4NjQ4", + "name": "storable-configs-plugin-plugin", + "full_name": "jenkinsci/storable-configs-plugin-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/storable-configs-plugin-plugin", + "description": "Jenkins storable-configs-plugin plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/storable-configs-plugin-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/storable-configs-plugin-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/storable-configs-plugin-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/storable-configs-plugin-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/storable-configs-plugin-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/storable-configs-plugin-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/storable-configs-plugin-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/storable-configs-plugin-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/storable-configs-plugin-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/storable-configs-plugin-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/storable-configs-plugin-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/storable-configs-plugin-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/storable-configs-plugin-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/storable-configs-plugin-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/storable-configs-plugin-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/storable-configs-plugin-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/storable-configs-plugin-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/storable-configs-plugin-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/storable-configs-plugin-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/storable-configs-plugin-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/storable-configs-plugin-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/storable-configs-plugin-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/storable-configs-plugin-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/storable-configs-plugin-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/storable-configs-plugin-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/storable-configs-plugin-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/storable-configs-plugin-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/storable-configs-plugin-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/storable-configs-plugin-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/storable-configs-plugin-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/storable-configs-plugin-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/storable-configs-plugin-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/storable-configs-plugin-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/storable-configs-plugin-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/storable-configs-plugin-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/storable-configs-plugin-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/storable-configs-plugin-plugin/deployments", + "created_at": "2011-03-02T00:38:49Z", + "updated_at": "2013-11-10T02:19:27Z", + "pushed_at": "2019-10-08T16:45:54Z", + "git_url": "git://github.com/jenkinsci/storable-configs-plugin-plugin.git", + "ssh_url": "git@github.com:jenkinsci/storable-configs-plugin-plugin.git", + "clone_url": "https://github.com/jenkinsci/storable-configs-plugin-plugin.git", + "svn_url": "https://github.com/jenkinsci/storable-configs-plugin-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 116, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 2, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1454183, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDU0MTgz", + "name": "pucm-plugin", + "full_name": "jenkinsci/pucm-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pucm-plugin", + "description": "Praqmatic UCM", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/pucm-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pucm-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pucm-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pucm-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pucm-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pucm-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pucm-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pucm-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pucm-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pucm-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pucm-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pucm-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pucm-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pucm-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pucm-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pucm-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pucm-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pucm-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pucm-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pucm-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pucm-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pucm-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pucm-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pucm-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pucm-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pucm-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pucm-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pucm-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pucm-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pucm-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pucm-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pucm-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pucm-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pucm-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pucm-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pucm-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pucm-plugin/deployments", + "created_at": "2011-03-08T10:49:44Z", + "updated_at": "2013-11-10T02:14:21Z", + "pushed_at": "2013-11-10T02:14:14Z", + "git_url": "git://github.com/jenkinsci/pucm-plugin.git", + "ssh_url": "git@github.com:jenkinsci/pucm-plugin.git", + "clone_url": "https://github.com/jenkinsci/pucm-plugin.git", + "svn_url": "https://github.com/jenkinsci/pucm-plugin", + "homepage": "", + "size": 38452, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1455714, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDU1NzE0", + "name": "jigomerge-plugin", + "full_name": "jenkinsci/jigomerge-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jigomerge-plugin", + "description": "Jigomerge Jenkins Plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/jigomerge-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/jigomerge-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jigomerge-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jigomerge-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jigomerge-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jigomerge-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jigomerge-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jigomerge-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jigomerge-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jigomerge-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jigomerge-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jigomerge-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jigomerge-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jigomerge-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jigomerge-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jigomerge-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jigomerge-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jigomerge-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jigomerge-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jigomerge-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jigomerge-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jigomerge-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jigomerge-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jigomerge-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jigomerge-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jigomerge-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jigomerge-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jigomerge-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jigomerge-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jigomerge-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jigomerge-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jigomerge-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jigomerge-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jigomerge-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jigomerge-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jigomerge-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jigomerge-plugin/deployments", + "created_at": "2011-03-08T18:22:41Z", + "updated_at": "2017-07-19T16:22:17Z", + "pushed_at": "2016-08-04T04:45:14Z", + "git_url": "git://github.com/jenkinsci/jigomerge-plugin.git", + "ssh_url": "git@github.com:jenkinsci/jigomerge-plugin.git", + "clone_url": "https://github.com/jenkinsci/jigomerge-plugin.git", + "svn_url": "https://github.com/jenkinsci/jigomerge-plugin", + "homepage": "http://code.google.com/p/jigomerge/", + "size": 67, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Groovy", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 5, + "open_issues": 0, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1479983, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDc5OTgz", + "name": "maven-interceptors", + "full_name": "jenkinsci/maven-interceptors", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/maven-interceptors", + "description": "Intercepts Maven execution", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/maven-interceptors", + "forks_url": "https://api.github.com/repos/jenkinsci/maven-interceptors/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/maven-interceptors/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/maven-interceptors/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/maven-interceptors/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/maven-interceptors/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/maven-interceptors/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/maven-interceptors/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/maven-interceptors/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/maven-interceptors/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/maven-interceptors/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/maven-interceptors/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/maven-interceptors/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/maven-interceptors/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/maven-interceptors/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/maven-interceptors/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/maven-interceptors/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/maven-interceptors/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/maven-interceptors/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/maven-interceptors/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/maven-interceptors/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/maven-interceptors/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/maven-interceptors/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/maven-interceptors/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/maven-interceptors/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/maven-interceptors/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/maven-interceptors/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/maven-interceptors/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/maven-interceptors/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/maven-interceptors/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/maven-interceptors/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/maven-interceptors/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/maven-interceptors/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/maven-interceptors/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/maven-interceptors/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/maven-interceptors/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/maven-interceptors/deployments", + "created_at": "2011-03-14T20:47:20Z", + "updated_at": "2019-07-08T16:36:53Z", + "pushed_at": "2019-06-12T00:16:27Z", + "git_url": "git://github.com/jenkinsci/maven-interceptors.git", + "ssh_url": "git@github.com:jenkinsci/maven-interceptors.git", + "clone_url": "https://github.com/jenkinsci/maven-interceptors.git", + "svn_url": "https://github.com/jenkinsci/maven-interceptors", + "homepage": "https://jenkins.io", + "size": 245, + "stargazers_count": 11, + "watchers_count": 11, + "language": "Java", + "has_issues": false, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 24, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 24, + "open_issues": 2, + "watchers": 11, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1488959, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDg4OTU5", + "name": "periodicbackup-plugin", + "full_name": "jenkinsci/periodicbackup-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/periodicbackup-plugin", + "description": "Jenkins plugin to backup periodically", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/periodicbackup-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/periodicbackup-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/periodicbackup-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/periodicbackup-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/periodicbackup-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/periodicbackup-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/periodicbackup-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/periodicbackup-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/periodicbackup-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/periodicbackup-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/periodicbackup-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/periodicbackup-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/periodicbackup-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/periodicbackup-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/periodicbackup-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/periodicbackup-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/periodicbackup-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/periodicbackup-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/periodicbackup-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/periodicbackup-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/periodicbackup-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/periodicbackup-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/periodicbackup-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/periodicbackup-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/periodicbackup-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/periodicbackup-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/periodicbackup-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/periodicbackup-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/periodicbackup-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/periodicbackup-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/periodicbackup-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/periodicbackup-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/periodicbackup-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/periodicbackup-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/periodicbackup-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/periodicbackup-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/periodicbackup-plugin/deployments", + "created_at": "2011-03-16T20:53:50Z", + "updated_at": "2019-03-16T05:52:50Z", + "pushed_at": "2017-07-10T15:20:10Z", + "git_url": "git://github.com/jenkinsci/periodicbackup-plugin.git", + "ssh_url": "git@github.com:jenkinsci/periodicbackup-plugin.git", + "clone_url": "https://github.com/jenkinsci/periodicbackup-plugin.git", + "svn_url": "https://github.com/jenkinsci/periodicbackup-plugin", + "homepage": "", + "size": 366, + "stargazers_count": 11, + "watchers_count": 11, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": true, + "forks_count": 12, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 12, + "open_issues": 0, + "watchers": 11, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1498444, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDk4NDQ0", + "name": "instance-identity-module", + "full_name": "jenkinsci/instance-identity-module", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/instance-identity-module", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/instance-identity-module", + "forks_url": "https://api.github.com/repos/jenkinsci/instance-identity-module/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/instance-identity-module/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/instance-identity-module/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/instance-identity-module/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/instance-identity-module/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/instance-identity-module/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/instance-identity-module/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/instance-identity-module/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/instance-identity-module/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/instance-identity-module/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/instance-identity-module/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/instance-identity-module/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/instance-identity-module/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/instance-identity-module/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/instance-identity-module/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/instance-identity-module/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/instance-identity-module/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/instance-identity-module/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/instance-identity-module/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/instance-identity-module/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/instance-identity-module/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/instance-identity-module/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/instance-identity-module/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/instance-identity-module/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/instance-identity-module/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/instance-identity-module/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/instance-identity-module/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/instance-identity-module/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/instance-identity-module/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/instance-identity-module/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/instance-identity-module/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/instance-identity-module/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/instance-identity-module/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/instance-identity-module/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/instance-identity-module/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/instance-identity-module/deployments", + "created_at": "2011-03-18T23:25:39Z", + "updated_at": "2019-04-16T01:02:49Z", + "pushed_at": "2019-06-01T18:53:29Z", + "git_url": "git://github.com/jenkinsci/instance-identity-module.git", + "ssh_url": "git@github.com:jenkinsci/instance-identity-module.git", + "clone_url": "https://github.com/jenkinsci/instance-identity-module.git", + "svn_url": "https://github.com/jenkinsci/instance-identity-module", + "homepage": "http://jenkins-ci.org/", + "size": 95, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 14, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 5, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 14, + "open_issues": 5, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1499269, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDk5MjY5", + "name": "versioncolumn-plugin", + "full_name": "jenkinsci/versioncolumn-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/versioncolumn-plugin", + "description": "Plugin for monitoring Java and Remoting versions on Jenkins agents", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/versioncolumn-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/versioncolumn-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/versioncolumn-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/versioncolumn-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/versioncolumn-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/versioncolumn-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/versioncolumn-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/versioncolumn-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/versioncolumn-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/versioncolumn-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/versioncolumn-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/versioncolumn-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/versioncolumn-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/versioncolumn-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/versioncolumn-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/versioncolumn-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/versioncolumn-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/versioncolumn-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/versioncolumn-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/versioncolumn-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/versioncolumn-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/versioncolumn-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/versioncolumn-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/versioncolumn-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/versioncolumn-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/versioncolumn-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/versioncolumn-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/versioncolumn-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/versioncolumn-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/versioncolumn-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/versioncolumn-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/versioncolumn-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/versioncolumn-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/versioncolumn-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/versioncolumn-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/versioncolumn-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/versioncolumn-plugin/deployments", + "created_at": "2011-03-19T06:49:11Z", + "updated_at": "2019-07-04T21:27:46Z", + "pushed_at": "2019-10-23T05:26:30Z", + "git_url": "git://github.com/jenkinsci/versioncolumn-plugin.git", + "ssh_url": "git@github.com:jenkinsci/versioncolumn-plugin.git", + "clone_url": "https://github.com/jenkinsci/versioncolumn-plugin.git", + "svn_url": "https://github.com/jenkinsci/versioncolumn-plugin", + "homepage": "http://wiki.jenkins-ci.org/display/JENKINS/VersionColumn+Plugin", + "size": 45, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 4, + "license": null, + "forks": 5, + "open_issues": 4, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1523390, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTIzMzkw", + "name": "tepco-plugin", + "full_name": "jenkinsci/tepco-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/tepco-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/tepco-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/tepco-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/tepco-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/tepco-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/tepco-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/tepco-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/tepco-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/tepco-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/tepco-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/tepco-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/tepco-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/tepco-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/tepco-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/tepco-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/tepco-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/tepco-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/tepco-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/tepco-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/tepco-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/tepco-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/tepco-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/tepco-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/tepco-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/tepco-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/tepco-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/tepco-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/tepco-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/tepco-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/tepco-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/tepco-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/tepco-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/tepco-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/tepco-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/tepco-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/tepco-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/tepco-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/tepco-plugin/deployments", + "created_at": "2011-03-24T23:15:34Z", + "updated_at": "2013-12-18T08:17:54Z", + "pushed_at": "2013-11-10T02:20:16Z", + "git_url": "git://github.com/jenkinsci/tepco-plugin.git", + "ssh_url": "git@github.com:jenkinsci/tepco-plugin.git", + "clone_url": "https://github.com/jenkinsci/tepco-plugin.git", + "svn_url": "https://github.com/jenkinsci/tepco-plugin", + "homepage": "", + "size": 648, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1530451, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTMwNDUx", + "name": "project-stats-plugin", + "full_name": "jenkinsci/project-stats-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/project-stats-plugin", + "description": "Jenkins project-stats plugin: provides new dashboard-view portlets and new columns for displaying project statistics", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/project-stats-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/project-stats-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/project-stats-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/project-stats-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/project-stats-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/project-stats-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/project-stats-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/project-stats-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/project-stats-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/project-stats-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/project-stats-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/project-stats-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/project-stats-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/project-stats-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/project-stats-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/project-stats-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/project-stats-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/project-stats-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/project-stats-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/project-stats-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/project-stats-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/project-stats-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/project-stats-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/project-stats-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/project-stats-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/project-stats-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/project-stats-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/project-stats-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/project-stats-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/project-stats-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/project-stats-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/project-stats-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/project-stats-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/project-stats-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/project-stats-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/project-stats-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/project-stats-plugin/deployments", + "created_at": "2011-03-26T20:25:48Z", + "updated_at": "2013-11-10T02:13:56Z", + "pushed_at": "2019-10-08T10:11:14Z", + "git_url": "git://github.com/jenkinsci/project-stats-plugin.git", + "ssh_url": "git@github.com:jenkinsci/project-stats-plugin.git", + "clone_url": "https://github.com/jenkinsci/project-stats-plugin.git", + "svn_url": "https://github.com/jenkinsci/project-stats-plugin", + "homepage": "http://wiki.jenkins-ci.org/display/JENKINS/Project+Statistics+Plugin", + "size": 154, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 7, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 7, + "open_issues": 1, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1531036, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTMxMDM2", + "name": "reverse-proxy-auth-plugin", + "full_name": "jenkinsci/reverse-proxy-auth-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/reverse-proxy-auth-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/reverse-proxy-auth-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/reverse-proxy-auth-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/reverse-proxy-auth-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/reverse-proxy-auth-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/reverse-proxy-auth-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/reverse-proxy-auth-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/reverse-proxy-auth-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/reverse-proxy-auth-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/reverse-proxy-auth-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/reverse-proxy-auth-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/reverse-proxy-auth-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/reverse-proxy-auth-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/reverse-proxy-auth-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/reverse-proxy-auth-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/reverse-proxy-auth-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/reverse-proxy-auth-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/reverse-proxy-auth-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/reverse-proxy-auth-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/reverse-proxy-auth-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/reverse-proxy-auth-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/reverse-proxy-auth-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/reverse-proxy-auth-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/reverse-proxy-auth-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/reverse-proxy-auth-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/reverse-proxy-auth-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/reverse-proxy-auth-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/reverse-proxy-auth-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/reverse-proxy-auth-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/reverse-proxy-auth-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/reverse-proxy-auth-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/reverse-proxy-auth-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/reverse-proxy-auth-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/reverse-proxy-auth-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/reverse-proxy-auth-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/reverse-proxy-auth-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/reverse-proxy-auth-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/reverse-proxy-auth-plugin/deployments", + "created_at": "2011-03-27T00:12:32Z", + "updated_at": "2018-02-06T09:43:43Z", + "pushed_at": "2019-02-06T11:47:45Z", + "git_url": "git://github.com/jenkinsci/reverse-proxy-auth-plugin.git", + "ssh_url": "git@github.com:jenkinsci/reverse-proxy-auth-plugin.git", + "clone_url": "https://github.com/jenkinsci/reverse-proxy-auth-plugin.git", + "svn_url": "https://github.com/jenkinsci/reverse-proxy-auth-plugin", + "homepage": "", + "size": 193, + "stargazers_count": 12, + "watchers_count": 12, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 37, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 37, + "open_issues": 2, + "watchers": 12, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1531513, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTMxNTEz", + "name": "refit-plugin", + "full_name": "jenkinsci/refit-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/refit-plugin", + "description": "Jenkins refit plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/refit-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/refit-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/refit-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/refit-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/refit-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/refit-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/refit-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/refit-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/refit-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/refit-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/refit-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/refit-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/refit-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/refit-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/refit-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/refit-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/refit-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/refit-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/refit-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/refit-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/refit-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/refit-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/refit-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/refit-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/refit-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/refit-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/refit-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/refit-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/refit-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/refit-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/refit-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/refit-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/refit-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/refit-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/refit-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/refit-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/refit-plugin/deployments", + "created_at": "2011-03-27T03:30:43Z", + "updated_at": "2014-07-22T15:10:31Z", + "pushed_at": "2014-07-22T15:10:31Z", + "git_url": "git://github.com/jenkinsci/refit-plugin.git", + "ssh_url": "git@github.com:jenkinsci/refit-plugin.git", + "clone_url": "https://github.com/jenkinsci/refit-plugin.git", + "svn_url": "https://github.com/jenkinsci/refit-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 188, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1533672, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTMzNjcy", + "name": "wiki-publisher-plugin", + "full_name": "jenkinsci/wiki-publisher-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/wiki-publisher-plugin", + "description": "Jenkins plugin for publishing build results to a wiki page", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/wiki-publisher-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/wiki-publisher-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/wiki-publisher-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/wiki-publisher-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/wiki-publisher-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/wiki-publisher-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/wiki-publisher-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/wiki-publisher-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/wiki-publisher-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/wiki-publisher-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/wiki-publisher-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/wiki-publisher-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/wiki-publisher-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/wiki-publisher-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/wiki-publisher-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/wiki-publisher-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/wiki-publisher-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/wiki-publisher-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/wiki-publisher-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/wiki-publisher-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/wiki-publisher-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/wiki-publisher-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/wiki-publisher-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/wiki-publisher-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/wiki-publisher-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/wiki-publisher-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/wiki-publisher-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/wiki-publisher-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/wiki-publisher-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/wiki-publisher-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/wiki-publisher-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/wiki-publisher-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/wiki-publisher-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/wiki-publisher-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/wiki-publisher-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/wiki-publisher-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/wiki-publisher-plugin/deployments", + "created_at": "2011-03-27T18:55:56Z", + "updated_at": "2013-11-10T02:22:48Z", + "pushed_at": "2013-11-10T02:22:45Z", + "git_url": "git://github.com/jenkinsci/wiki-publisher-plugin.git", + "ssh_url": "git@github.com:jenkinsci/wiki-publisher-plugin.git", + "clone_url": "https://github.com/jenkinsci/wiki-publisher-plugin.git", + "svn_url": "https://github.com/jenkinsci/wiki-publisher-plugin", + "homepage": "jenkins-ci.org", + "size": 590, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1533675, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTMzNjc1", + "name": "major-minor-plugin", + "full_name": "jenkinsci/major-minor-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/major-minor-plugin", + "description": "Jenkins plugin that allows build names of the form major.minor.revision. A new environment variable BUILD_NAME is available for scripts to get access to the build name", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/major-minor-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/major-minor-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/major-minor-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/major-minor-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/major-minor-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/major-minor-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/major-minor-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/major-minor-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/major-minor-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/major-minor-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/major-minor-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/major-minor-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/major-minor-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/major-minor-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/major-minor-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/major-minor-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/major-minor-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/major-minor-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/major-minor-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/major-minor-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/major-minor-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/major-minor-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/major-minor-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/major-minor-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/major-minor-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/major-minor-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/major-minor-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/major-minor-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/major-minor-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/major-minor-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/major-minor-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/major-minor-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/major-minor-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/major-minor-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/major-minor-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/major-minor-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/major-minor-plugin/deployments", + "created_at": "2011-03-27T18:56:20Z", + "updated_at": "2013-11-10T02:10:19Z", + "pushed_at": "2013-11-10T02:10:14Z", + "git_url": "git://github.com/jenkinsci/major-minor-plugin.git", + "ssh_url": "git@github.com:jenkinsci/major-minor-plugin.git", + "clone_url": "https://github.com/jenkinsci/major-minor-plugin.git", + "svn_url": "https://github.com/jenkinsci/major-minor-plugin", + "homepage": "", + "size": 378, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1536911, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTM2OTEx", + "name": "oslc-cm-plugin", + "full_name": "jenkinsci/oslc-cm-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/oslc-cm-plugin", + "description": "A jenkins plugin which acts as an OSLC-CM consumer, creating bug reports on build failures.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/oslc-cm-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/oslc-cm-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/oslc-cm-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/oslc-cm-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/oslc-cm-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/oslc-cm-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/oslc-cm-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/oslc-cm-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/oslc-cm-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/oslc-cm-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/oslc-cm-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/oslc-cm-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/oslc-cm-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/oslc-cm-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/oslc-cm-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/oslc-cm-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/oslc-cm-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/oslc-cm-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/oslc-cm-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/oslc-cm-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/oslc-cm-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/oslc-cm-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/oslc-cm-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/oslc-cm-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/oslc-cm-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/oslc-cm-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/oslc-cm-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/oslc-cm-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/oslc-cm-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/oslc-cm-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/oslc-cm-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/oslc-cm-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/oslc-cm-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/oslc-cm-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/oslc-cm-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/oslc-cm-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/oslc-cm-plugin/deployments", + "created_at": "2011-03-28T14:32:26Z", + "updated_at": "2013-11-19T22:05:08Z", + "pushed_at": "2013-11-10T02:12:34Z", + "git_url": "git://github.com/jenkinsci/oslc-cm-plugin.git", + "ssh_url": "git@github.com:jenkinsci/oslc-cm-plugin.git", + "clone_url": "https://github.com/jenkinsci/oslc-cm-plugin.git", + "svn_url": "https://github.com/jenkinsci/oslc-cm-plugin", + "homepage": "", + "size": 806, + "stargazers_count": 6, + "watchers_count": 6, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 2, + "open_issues": 0, + "watchers": 6, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1538364, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTM4MzY0", + "name": "mail-commander-plugin", + "full_name": "jenkinsci/mail-commander-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/mail-commander-plugin", + "description": "Mail Commander (Jenkins Plugin)", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/mail-commander-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/mail-commander-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/mail-commander-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/mail-commander-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/mail-commander-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/mail-commander-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/mail-commander-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/mail-commander-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/mail-commander-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/mail-commander-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/mail-commander-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/mail-commander-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/mail-commander-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/mail-commander-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/mail-commander-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/mail-commander-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/mail-commander-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/mail-commander-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/mail-commander-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/mail-commander-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/mail-commander-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/mail-commander-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/mail-commander-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/mail-commander-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/mail-commander-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/mail-commander-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/mail-commander-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/mail-commander-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/mail-commander-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/mail-commander-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/mail-commander-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/mail-commander-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/mail-commander-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/mail-commander-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/mail-commander-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/mail-commander-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/mail-commander-plugin/deployments", + "created_at": "2011-03-28T19:59:35Z", + "updated_at": "2013-11-10T02:10:08Z", + "pushed_at": "2019-10-08T12:37:46Z", + "git_url": "git://github.com/jenkinsci/mail-commander-plugin.git", + "ssh_url": "git@github.com:jenkinsci/mail-commander-plugin.git", + "clone_url": "https://github.com/jenkinsci/mail-commander-plugin.git", + "svn_url": "https://github.com/jenkinsci/mail-commander-plugin", + "homepage": "", + "size": 1031, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 2, + "open_issues": 1, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1541846, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTQxODQ2", + "name": "darcs-plugin", + "full_name": "jenkinsci/darcs-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/darcs-plugin", + "description": "This plugin integrates Darcs SCM into Jenkins Continious Integration server.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/darcs-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/darcs-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/darcs-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/darcs-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/darcs-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/darcs-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/darcs-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/darcs-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/darcs-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/darcs-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/darcs-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/darcs-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/darcs-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/darcs-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/darcs-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/darcs-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/darcs-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/darcs-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/darcs-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/darcs-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/darcs-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/darcs-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/darcs-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/darcs-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/darcs-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/darcs-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/darcs-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/darcs-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/darcs-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/darcs-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/darcs-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/darcs-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/darcs-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/darcs-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/darcs-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/darcs-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/darcs-plugin/deployments", + "created_at": "2011-03-29T15:06:11Z", + "updated_at": "2013-11-10T01:59:40Z", + "pushed_at": "2013-11-10T01:59:35Z", + "git_url": "git://github.com/jenkinsci/darcs-plugin.git", + "ssh_url": "git@github.com:jenkinsci/darcs-plugin.git", + "clone_url": "https://github.com/jenkinsci/darcs-plugin.git", + "svn_url": "https://github.com/jenkinsci/darcs-plugin", + "homepage": "http://jenkinsci.github.com/darcs-plugin/", + "size": 903, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": true, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 2, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1569081, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTY5MDgx", + "name": "plugin-compat-tester", + "full_name": "jenkinsci/plugin-compat-tester", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/plugin-compat-tester", + "description": "Jenkins Plugin Compatibility Tester", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/plugin-compat-tester", + "forks_url": "https://api.github.com/repos/jenkinsci/plugin-compat-tester/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/plugin-compat-tester/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/plugin-compat-tester/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/plugin-compat-tester/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/plugin-compat-tester/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/plugin-compat-tester/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/plugin-compat-tester/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/plugin-compat-tester/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/plugin-compat-tester/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/plugin-compat-tester/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/plugin-compat-tester/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/plugin-compat-tester/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/plugin-compat-tester/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/plugin-compat-tester/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/plugin-compat-tester/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/plugin-compat-tester/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/plugin-compat-tester/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/plugin-compat-tester/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/plugin-compat-tester/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/plugin-compat-tester/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/plugin-compat-tester/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/plugin-compat-tester/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/plugin-compat-tester/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/plugin-compat-tester/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/plugin-compat-tester/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/plugin-compat-tester/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/plugin-compat-tester/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/plugin-compat-tester/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/plugin-compat-tester/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/plugin-compat-tester/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/plugin-compat-tester/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/plugin-compat-tester/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/plugin-compat-tester/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/plugin-compat-tester/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/plugin-compat-tester/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/plugin-compat-tester/deployments", + "created_at": "2011-04-04T20:59:01Z", + "updated_at": "2019-10-21T17:37:52Z", + "pushed_at": "2019-10-23T10:17:17Z", + "git_url": "git://github.com/jenkinsci/plugin-compat-tester.git", + "ssh_url": "git@github.com:jenkinsci/plugin-compat-tester.git", + "clone_url": "https://github.com/jenkinsci/plugin-compat-tester.git", + "svn_url": "https://github.com/jenkinsci/plugin-compat-tester", + "homepage": "", + "size": 1267, + "stargazers_count": 16, + "watchers_count": 16, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 33, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 18, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 33, + "open_issues": 18, + "watchers": 16, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1651962, + "node_id": "MDEwOlJlcG9zaXRvcnkxNjUxOTYy", + "name": "escaped-markup-plugin", + "full_name": "jenkinsci/escaped-markup-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/escaped-markup-plugin", + "description": "Jenkins Escaped Markup Plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/escaped-markup-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/escaped-markup-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/escaped-markup-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/escaped-markup-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/escaped-markup-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/escaped-markup-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/escaped-markup-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/escaped-markup-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/escaped-markup-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/escaped-markup-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/escaped-markup-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/escaped-markup-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/escaped-markup-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/escaped-markup-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/escaped-markup-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/escaped-markup-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/escaped-markup-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/escaped-markup-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/escaped-markup-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/escaped-markup-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/escaped-markup-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/escaped-markup-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/escaped-markup-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/escaped-markup-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/escaped-markup-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/escaped-markup-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/escaped-markup-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/escaped-markup-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/escaped-markup-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/escaped-markup-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/escaped-markup-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/escaped-markup-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/escaped-markup-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/escaped-markup-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/escaped-markup-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/escaped-markup-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/escaped-markup-plugin/deployments", + "created_at": "2011-04-22T23:54:27Z", + "updated_at": "2016-09-22T03:10:21Z", + "pushed_at": "2013-11-10T02:01:32Z", + "git_url": "git://github.com/jenkinsci/escaped-markup-plugin.git", + "ssh_url": "git@github.com:jenkinsci/escaped-markup-plugin.git", + "clone_url": "https://github.com/jenkinsci/escaped-markup-plugin.git", + "svn_url": "https://github.com/jenkinsci/escaped-markup-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Escaped+Markup+Plugin", + "size": 711, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1667535, + "node_id": "MDEwOlJlcG9zaXRvcnkxNjY3NTM1", + "name": "merge-queue-plugin", + "full_name": "jenkinsci/merge-queue-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/merge-queue-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/merge-queue-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/merge-queue-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/merge-queue-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/merge-queue-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/merge-queue-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/merge-queue-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/merge-queue-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/merge-queue-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/merge-queue-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/merge-queue-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/merge-queue-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/merge-queue-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/merge-queue-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/merge-queue-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/merge-queue-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/merge-queue-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/merge-queue-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/merge-queue-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/merge-queue-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/merge-queue-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/merge-queue-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/merge-queue-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/merge-queue-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/merge-queue-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/merge-queue-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/merge-queue-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/merge-queue-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/merge-queue-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/merge-queue-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/merge-queue-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/merge-queue-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/merge-queue-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/merge-queue-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/merge-queue-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/merge-queue-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/merge-queue-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/merge-queue-plugin/deployments", + "created_at": "2011-04-26T21:11:48Z", + "updated_at": "2017-06-05T17:46:27Z", + "pushed_at": "2013-11-10T02:11:06Z", + "git_url": "git://github.com/jenkinsci/merge-queue-plugin.git", + "ssh_url": "git@github.com:jenkinsci/merge-queue-plugin.git", + "clone_url": "https://github.com/jenkinsci/merge-queue-plugin.git", + "svn_url": "https://github.com/jenkinsci/merge-queue-plugin", + "homepage": "", + "size": 98, + "stargazers_count": 8, + "watchers_count": 8, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 8, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1677548, + "node_id": "MDEwOlJlcG9zaXRvcnkxNjc3NTQ4", + "name": "cloudbees-deployer-plugin", + "full_name": "jenkinsci/cloudbees-deployer-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/cloudbees-deployer-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/cloudbees-deployer-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/cloudbees-deployer-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/cloudbees-deployer-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/cloudbees-deployer-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/cloudbees-deployer-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/cloudbees-deployer-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/cloudbees-deployer-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/cloudbees-deployer-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/cloudbees-deployer-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/cloudbees-deployer-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/cloudbees-deployer-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/cloudbees-deployer-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/cloudbees-deployer-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/cloudbees-deployer-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/cloudbees-deployer-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/cloudbees-deployer-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/cloudbees-deployer-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/cloudbees-deployer-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/cloudbees-deployer-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/cloudbees-deployer-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/cloudbees-deployer-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/cloudbees-deployer-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/cloudbees-deployer-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/cloudbees-deployer-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/cloudbees-deployer-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/cloudbees-deployer-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/cloudbees-deployer-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/cloudbees-deployer-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/cloudbees-deployer-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/cloudbees-deployer-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/cloudbees-deployer-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/cloudbees-deployer-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/cloudbees-deployer-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/cloudbees-deployer-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/cloudbees-deployer-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/cloudbees-deployer-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/cloudbees-deployer-plugin/deployments", + "created_at": "2011-04-28T20:18:02Z", + "updated_at": "2019-07-15T11:04:13Z", + "pushed_at": "2014-10-29T11:29:31Z", + "git_url": "git://github.com/jenkinsci/cloudbees-deployer-plugin.git", + "ssh_url": "git@github.com:jenkinsci/cloudbees-deployer-plugin.git", + "clone_url": "https://github.com/jenkinsci/cloudbees-deployer-plugin.git", + "svn_url": "https://github.com/jenkinsci/cloudbees-deployer-plugin", + "homepage": "", + "size": 102428, + "stargazers_count": 7, + "watchers_count": 7, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 8, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 8, + "open_issues": 0, + "watchers": 7, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1687571, + "node_id": "MDEwOlJlcG9zaXRvcnkxNjg3NTcx", + "name": "kerberos-authenticator-plugin", + "full_name": "jenkinsci/kerberos-authenticator-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/kerberos-authenticator-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/kerberos-authenticator-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/kerberos-authenticator-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/kerberos-authenticator-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/kerberos-authenticator-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/kerberos-authenticator-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/kerberos-authenticator-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/kerberos-authenticator-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/kerberos-authenticator-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/kerberos-authenticator-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/kerberos-authenticator-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/kerberos-authenticator-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/kerberos-authenticator-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/kerberos-authenticator-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/kerberos-authenticator-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/kerberos-authenticator-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/kerberos-authenticator-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/kerberos-authenticator-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/kerberos-authenticator-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/kerberos-authenticator-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/kerberos-authenticator-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/kerberos-authenticator-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/kerberos-authenticator-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/kerberos-authenticator-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/kerberos-authenticator-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/kerberos-authenticator-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/kerberos-authenticator-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/kerberos-authenticator-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/kerberos-authenticator-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/kerberos-authenticator-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/kerberos-authenticator-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/kerberos-authenticator-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/kerberos-authenticator-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/kerberos-authenticator-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/kerberos-authenticator-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/kerberos-authenticator-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/kerberos-authenticator-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/kerberos-authenticator-plugin/deployments", + "created_at": "2011-05-01T11:41:47Z", + "updated_at": "2016-09-27T03:02:30Z", + "pushed_at": "2013-11-10T02:08:19Z", + "git_url": "git://github.com/jenkinsci/kerberos-authenticator-plugin.git", + "ssh_url": "git@github.com:jenkinsci/kerberos-authenticator-plugin.git", + "clone_url": "https://github.com/jenkinsci/kerberos-authenticator-plugin.git", + "svn_url": "https://github.com/jenkinsci/kerberos-authenticator-plugin", + "homepage": "", + "size": 123, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1687657, + "node_id": "MDEwOlJlcG9zaXRvcnkxNjg3NjU3", + "name": "built-on-column-plugin", + "full_name": "jenkinsci/built-on-column-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/built-on-column-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/built-on-column-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/built-on-column-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/built-on-column-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/built-on-column-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/built-on-column-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/built-on-column-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/built-on-column-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/built-on-column-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/built-on-column-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/built-on-column-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/built-on-column-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/built-on-column-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/built-on-column-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/built-on-column-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/built-on-column-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/built-on-column-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/built-on-column-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/built-on-column-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/built-on-column-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/built-on-column-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/built-on-column-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/built-on-column-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/built-on-column-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/built-on-column-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/built-on-column-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/built-on-column-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/built-on-column-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/built-on-column-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/built-on-column-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/built-on-column-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/built-on-column-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/built-on-column-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/built-on-column-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/built-on-column-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/built-on-column-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/built-on-column-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/built-on-column-plugin/deployments", + "created_at": "2011-05-01T12:21:34Z", + "updated_at": "2018-09-28T20:48:52Z", + "pushed_at": "2018-07-19T09:56:47Z", + "git_url": "git://github.com/jenkinsci/built-on-column-plugin.git", + "ssh_url": "git@github.com:jenkinsci/built-on-column-plugin.git", + "clone_url": "https://github.com/jenkinsci/built-on-column-plugin.git", + "svn_url": "https://github.com/jenkinsci/built-on-column-plugin", + "homepage": "", + "size": 10, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1687772, + "node_id": "MDEwOlJlcG9zaXRvcnkxNjg3Nzcy", + "name": "klocwork-plugin", + "full_name": "jenkinsci/klocwork-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/klocwork-plugin", + "description": "Jenkins Klocwork Plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/klocwork-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/klocwork-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/klocwork-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/klocwork-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/klocwork-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/klocwork-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/klocwork-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/klocwork-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/klocwork-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/klocwork-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/klocwork-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/klocwork-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/klocwork-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/klocwork-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/klocwork-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/klocwork-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/klocwork-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/klocwork-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/klocwork-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/klocwork-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/klocwork-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/klocwork-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/klocwork-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/klocwork-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/klocwork-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/klocwork-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/klocwork-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/klocwork-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/klocwork-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/klocwork-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/klocwork-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/klocwork-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/klocwork-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/klocwork-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/klocwork-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/klocwork-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/klocwork-plugin/deployments", + "created_at": "2011-05-01T13:24:59Z", + "updated_at": "2019-10-08T13:29:24Z", + "pushed_at": "2019-10-08T13:29:22Z", + "git_url": "git://github.com/jenkinsci/klocwork-plugin.git", + "ssh_url": "git@github.com:jenkinsci/klocwork-plugin.git", + "clone_url": "https://github.com/jenkinsci/klocwork-plugin.git", + "svn_url": "https://github.com/jenkinsci/klocwork-plugin", + "homepage": "", + "size": 785, + "stargazers_count": 17, + "watchers_count": 17, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 23, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 23, + "open_issues": 1, + "watchers": 17, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1687959, + "node_id": "MDEwOlJlcG9zaXRvcnkxNjg3OTU5", + "name": "jruby-xstream", + "full_name": "jenkinsci/jruby-xstream", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jruby-xstream", + "description": "JRuby support for XStream", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jruby-xstream", + "forks_url": "https://api.github.com/repos/jenkinsci/jruby-xstream/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jruby-xstream/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jruby-xstream/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jruby-xstream/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jruby-xstream/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jruby-xstream/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jruby-xstream/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jruby-xstream/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jruby-xstream/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jruby-xstream/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jruby-xstream/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jruby-xstream/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jruby-xstream/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jruby-xstream/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jruby-xstream/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jruby-xstream/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jruby-xstream/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jruby-xstream/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jruby-xstream/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jruby-xstream/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jruby-xstream/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jruby-xstream/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jruby-xstream/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jruby-xstream/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jruby-xstream/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jruby-xstream/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jruby-xstream/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jruby-xstream/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jruby-xstream/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jruby-xstream/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jruby-xstream/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jruby-xstream/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jruby-xstream/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jruby-xstream/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jruby-xstream/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jruby-xstream/deployments", + "created_at": "2011-05-01T14:34:10Z", + "updated_at": "2019-08-13T14:44:48Z", + "pushed_at": "2016-08-19T04:13:36Z", + "git_url": "git://github.com/jenkinsci/jruby-xstream.git", + "ssh_url": "git@github.com:jenkinsci/jruby-xstream.git", + "clone_url": "https://github.com/jenkinsci/jruby-xstream.git", + "svn_url": "https://github.com/jenkinsci/jruby-xstream", + "homepage": "", + "size": 147, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 2, + "open_issues": 1, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1688160, + "node_id": "MDEwOlJlcG9zaXRvcnkxNjg4MTYw", + "name": "extra-columns-plugin", + "full_name": "jenkinsci/extra-columns-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/extra-columns-plugin", + "description": "Jenkins extra-columns-plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/extra-columns-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/extra-columns-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/extra-columns-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/extra-columns-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/extra-columns-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/extra-columns-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/extra-columns-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/extra-columns-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/extra-columns-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/extra-columns-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/extra-columns-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/extra-columns-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/extra-columns-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/extra-columns-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/extra-columns-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/extra-columns-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/extra-columns-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/extra-columns-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/extra-columns-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/extra-columns-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/extra-columns-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/extra-columns-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/extra-columns-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/extra-columns-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/extra-columns-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/extra-columns-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/extra-columns-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/extra-columns-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/extra-columns-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/extra-columns-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/extra-columns-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/extra-columns-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/extra-columns-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/extra-columns-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/extra-columns-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/extra-columns-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/extra-columns-plugin/deployments", + "created_at": "2011-05-01T15:41:57Z", + "updated_at": "2019-09-27T23:08:39Z", + "pushed_at": "2019-09-27T23:08:37Z", + "git_url": "git://github.com/jenkinsci/extra-columns-plugin.git", + "ssh_url": "git@github.com:jenkinsci/extra-columns-plugin.git", + "clone_url": "https://github.com/jenkinsci/extra-columns-plugin.git", + "svn_url": "https://github.com/jenkinsci/extra-columns-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Extra+Columns+Plugin", + "size": 244, + "stargazers_count": 12, + "watchers_count": 12, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 30, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 30, + "open_issues": 1, + "watchers": 12, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1713583, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzEzNTgz", + "name": "intellij-jenkins-control-plugin", + "full_name": "jenkinsci/intellij-jenkins-control-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/intellij-jenkins-control-plugin", + "description": "A simple Intellij plugin that integrates Jenkins Continuous Integration Server", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/intellij-jenkins-control-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/intellij-jenkins-control-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/intellij-jenkins-control-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/intellij-jenkins-control-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/intellij-jenkins-control-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/intellij-jenkins-control-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/intellij-jenkins-control-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/intellij-jenkins-control-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/intellij-jenkins-control-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/intellij-jenkins-control-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/intellij-jenkins-control-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/intellij-jenkins-control-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/intellij-jenkins-control-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/intellij-jenkins-control-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/intellij-jenkins-control-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/intellij-jenkins-control-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/intellij-jenkins-control-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/intellij-jenkins-control-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/intellij-jenkins-control-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/intellij-jenkins-control-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/intellij-jenkins-control-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/intellij-jenkins-control-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/intellij-jenkins-control-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/intellij-jenkins-control-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/intellij-jenkins-control-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/intellij-jenkins-control-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/intellij-jenkins-control-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/intellij-jenkins-control-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/intellij-jenkins-control-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/intellij-jenkins-control-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/intellij-jenkins-control-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/intellij-jenkins-control-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/intellij-jenkins-control-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/intellij-jenkins-control-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/intellij-jenkins-control-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/intellij-jenkins-control-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/intellij-jenkins-control-plugin/deployments", + "created_at": "2011-05-06T22:25:02Z", + "updated_at": "2019-06-10T19:54:17Z", + "pushed_at": "2013-11-10T02:05:29Z", + "git_url": "git://github.com/jenkinsci/intellij-jenkins-control-plugin.git", + "ssh_url": "git@github.com:jenkinsci/intellij-jenkins-control-plugin.git", + "clone_url": "https://github.com/jenkinsci/intellij-jenkins-control-plugin.git", + "svn_url": "https://github.com/jenkinsci/intellij-jenkins-control-plugin", + "homepage": "", + "size": 133, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 2, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1717479, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzE3NDc5", + "name": "matrix-reloaded-plugin", + "full_name": "jenkinsci/matrix-reloaded-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/matrix-reloaded-plugin", + "description": "A Jenkins plugin to rebuild matrix builds", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/matrix-reloaded-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/matrix-reloaded-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/matrix-reloaded-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/matrix-reloaded-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/matrix-reloaded-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/matrix-reloaded-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/matrix-reloaded-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/matrix-reloaded-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/matrix-reloaded-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/matrix-reloaded-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/matrix-reloaded-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/matrix-reloaded-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/matrix-reloaded-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/matrix-reloaded-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/matrix-reloaded-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/matrix-reloaded-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/matrix-reloaded-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/matrix-reloaded-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/matrix-reloaded-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/matrix-reloaded-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/matrix-reloaded-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/matrix-reloaded-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/matrix-reloaded-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/matrix-reloaded-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/matrix-reloaded-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/matrix-reloaded-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/matrix-reloaded-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/matrix-reloaded-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/matrix-reloaded-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/matrix-reloaded-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/matrix-reloaded-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/matrix-reloaded-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/matrix-reloaded-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/matrix-reloaded-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/matrix-reloaded-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/matrix-reloaded-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/matrix-reloaded-plugin/deployments", + "created_at": "2011-05-08T02:22:04Z", + "updated_at": "2019-02-07T10:44:31Z", + "pushed_at": "2019-10-08T11:42:35Z", + "git_url": "git://github.com/jenkinsci/matrix-reloaded-plugin.git", + "ssh_url": "git@github.com:jenkinsci/matrix-reloaded-plugin.git", + "clone_url": "https://github.com/jenkinsci/matrix-reloaded-plugin.git", + "svn_url": "https://github.com/jenkinsci/matrix-reloaded-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Matrix+Reloaded+Plugin", + "size": 185, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 10, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 10, + "open_issues": 2, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1744310, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzQ0MzEw", + "name": "publish-over-cifs-plugin", + "full_name": "jenkinsci/publish-over-cifs-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/publish-over-cifs-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/publish-over-cifs-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/publish-over-cifs-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/publish-over-cifs-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/publish-over-cifs-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/publish-over-cifs-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/publish-over-cifs-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/publish-over-cifs-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/publish-over-cifs-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/publish-over-cifs-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/publish-over-cifs-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/publish-over-cifs-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/publish-over-cifs-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/publish-over-cifs-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/publish-over-cifs-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/publish-over-cifs-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/publish-over-cifs-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/publish-over-cifs-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/publish-over-cifs-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/publish-over-cifs-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/publish-over-cifs-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/publish-over-cifs-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/publish-over-cifs-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/publish-over-cifs-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/publish-over-cifs-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/publish-over-cifs-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/publish-over-cifs-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/publish-over-cifs-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/publish-over-cifs-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/publish-over-cifs-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/publish-over-cifs-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/publish-over-cifs-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/publish-over-cifs-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/publish-over-cifs-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/publish-over-cifs-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/publish-over-cifs-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/publish-over-cifs-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/publish-over-cifs-plugin/deployments", + "created_at": "2011-05-13T16:54:36Z", + "updated_at": "2019-10-02T16:06:53Z", + "pushed_at": "2019-10-02T16:06:49Z", + "git_url": "git://github.com/jenkinsci/publish-over-cifs-plugin.git", + "ssh_url": "git@github.com:jenkinsci/publish-over-cifs-plugin.git", + "clone_url": "https://github.com/jenkinsci/publish-over-cifs-plugin.git", + "svn_url": "https://github.com/jenkinsci/publish-over-cifs-plugin", + "homepage": "", + "size": 213, + "stargazers_count": 11, + "watchers_count": 11, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 21, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 21, + "open_issues": 0, + "watchers": 11, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1750678, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzUwNjc4", + "name": "cloverphp-plugin", + "full_name": "jenkinsci/cloverphp-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/cloverphp-plugin", + "description": "Clover PHP Plugin for Jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/cloverphp-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/cloverphp-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/cloverphp-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/cloverphp-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/cloverphp-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/cloverphp-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/cloverphp-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/cloverphp-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/cloverphp-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/cloverphp-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/cloverphp-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/cloverphp-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/cloverphp-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/cloverphp-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/cloverphp-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/cloverphp-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/cloverphp-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/cloverphp-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/cloverphp-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/cloverphp-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/cloverphp-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/cloverphp-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/cloverphp-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/cloverphp-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/cloverphp-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/cloverphp-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/cloverphp-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/cloverphp-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/cloverphp-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/cloverphp-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/cloverphp-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/cloverphp-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/cloverphp-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/cloverphp-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/cloverphp-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/cloverphp-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/cloverphp-plugin/deployments", + "created_at": "2011-05-15T10:45:55Z", + "updated_at": "2019-06-10T04:34:30Z", + "pushed_at": "2019-10-08T10:01:21Z", + "git_url": "git://github.com/jenkinsci/cloverphp-plugin.git", + "ssh_url": "git@github.com:jenkinsci/cloverphp-plugin.git", + "clone_url": "https://github.com/jenkinsci/cloverphp-plugin.git", + "svn_url": "https://github.com/jenkinsci/cloverphp-plugin", + "homepage": "", + "size": 163, + "stargazers_count": 10, + "watchers_count": 10, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 14, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": null, + "forks": 14, + "open_issues": 3, + "watchers": 10, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1774596, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzc0NTk2", + "name": "groovyaxis-plugin", + "full_name": "jenkinsci/groovyaxis-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/groovyaxis-plugin", + "description": "Dynamic Axis creation for Matrix jobs using Groovy", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/groovyaxis-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/groovyaxis-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/groovyaxis-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/groovyaxis-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/groovyaxis-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/groovyaxis-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/groovyaxis-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/groovyaxis-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/groovyaxis-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/groovyaxis-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/groovyaxis-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/groovyaxis-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/groovyaxis-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/groovyaxis-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/groovyaxis-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/groovyaxis-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/groovyaxis-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/groovyaxis-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/groovyaxis-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/groovyaxis-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/groovyaxis-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/groovyaxis-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/groovyaxis-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/groovyaxis-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/groovyaxis-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/groovyaxis-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/groovyaxis-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/groovyaxis-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/groovyaxis-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/groovyaxis-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/groovyaxis-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/groovyaxis-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/groovyaxis-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/groovyaxis-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/groovyaxis-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/groovyaxis-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/groovyaxis-plugin/deployments", + "created_at": "2011-05-20T02:52:59Z", + "updated_at": "2014-07-22T15:54:08Z", + "pushed_at": "2014-07-22T15:54:08Z", + "git_url": "git://github.com/jenkinsci/groovyaxis-plugin.git", + "ssh_url": "git@github.com:jenkinsci/groovyaxis-plugin.git", + "clone_url": "https://github.com/jenkinsci/groovyaxis-plugin.git", + "svn_url": "https://github.com/jenkinsci/groovyaxis-plugin", + "homepage": "", + "size": 140, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 3, + "open_issues": 0, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1793052, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzkzMDUy", + "name": "tepco-epuw-plugin", + "full_name": "jenkinsci/tepco-epuw-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/tepco-epuw-plugin", + "description": "This is a Jenkins plugin that shows current TEPCO electric power usage and a graph of daily usage.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/tepco-epuw-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/tepco-epuw-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/tepco-epuw-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/tepco-epuw-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/tepco-epuw-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/tepco-epuw-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/tepco-epuw-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/tepco-epuw-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/tepco-epuw-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/tepco-epuw-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/tepco-epuw-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/tepco-epuw-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/tepco-epuw-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/tepco-epuw-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/tepco-epuw-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/tepco-epuw-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/tepco-epuw-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/tepco-epuw-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/tepco-epuw-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/tepco-epuw-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/tepco-epuw-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/tepco-epuw-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/tepco-epuw-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/tepco-epuw-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/tepco-epuw-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/tepco-epuw-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/tepco-epuw-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/tepco-epuw-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/tepco-epuw-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/tepco-epuw-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/tepco-epuw-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/tepco-epuw-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/tepco-epuw-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/tepco-epuw-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/tepco-epuw-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/tepco-epuw-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/tepco-epuw-plugin/deployments", + "created_at": "2011-05-24T11:35:50Z", + "updated_at": "2013-11-10T02:20:18Z", + "pushed_at": "2013-11-10T02:20:14Z", + "git_url": "git://github.com/jenkinsci/tepco-epuw-plugin.git", + "ssh_url": "git@github.com:jenkinsci/tepco-epuw-plugin.git", + "clone_url": "https://github.com/jenkinsci/tepco-epuw-plugin.git", + "svn_url": "https://github.com/jenkinsci/tepco-epuw-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/TEPCO+Electric+Power+Usage+Widget", + "size": 106, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/__files/organizations_107424_repos-df03bd6c-ec4b-4911-8d43-58d2e2498eeb.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/__files/organizations_107424_repos-df03bd6c-ec4b-4911-8d43-58d2e2498eeb.json new file mode 100644 index 0000000000..c406a97f28 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/__files/organizations_107424_repos-df03bd6c-ec4b-4911-8d43-58d2e2498eeb.json @@ -0,0 +1,10082 @@ +[ + { + "id": 8759227, + "node_id": "MDEwOlJlcG9zaXRvcnk4NzU5MjI3", + "name": "build-flow-pipeline-integration-sandbox", + "full_name": "jenkinsci/build-flow-pipeline-integration-sandbox", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/build-flow-pipeline-integration-sandbox", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/build-flow-pipeline-integration-sandbox", + "forks_url": "https://api.github.com/repos/jenkinsci/build-flow-pipeline-integration-sandbox/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/build-flow-pipeline-integration-sandbox/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/build-flow-pipeline-integration-sandbox/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/build-flow-pipeline-integration-sandbox/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/build-flow-pipeline-integration-sandbox/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/build-flow-pipeline-integration-sandbox/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/build-flow-pipeline-integration-sandbox/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/build-flow-pipeline-integration-sandbox/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/build-flow-pipeline-integration-sandbox/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/build-flow-pipeline-integration-sandbox/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/build-flow-pipeline-integration-sandbox/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/build-flow-pipeline-integration-sandbox/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/build-flow-pipeline-integration-sandbox/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/build-flow-pipeline-integration-sandbox/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/build-flow-pipeline-integration-sandbox/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/build-flow-pipeline-integration-sandbox/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/build-flow-pipeline-integration-sandbox/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/build-flow-pipeline-integration-sandbox/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/build-flow-pipeline-integration-sandbox/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/build-flow-pipeline-integration-sandbox/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/build-flow-pipeline-integration-sandbox/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/build-flow-pipeline-integration-sandbox/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/build-flow-pipeline-integration-sandbox/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/build-flow-pipeline-integration-sandbox/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/build-flow-pipeline-integration-sandbox/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/build-flow-pipeline-integration-sandbox/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/build-flow-pipeline-integration-sandbox/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/build-flow-pipeline-integration-sandbox/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/build-flow-pipeline-integration-sandbox/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/build-flow-pipeline-integration-sandbox/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/build-flow-pipeline-integration-sandbox/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/build-flow-pipeline-integration-sandbox/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/build-flow-pipeline-integration-sandbox/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/build-flow-pipeline-integration-sandbox/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/build-flow-pipeline-integration-sandbox/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/build-flow-pipeline-integration-sandbox/deployments", + "created_at": "2013-03-13T18:58:52Z", + "updated_at": "2013-11-10T01:55:20Z", + "pushed_at": "2013-11-10T01:55:17Z", + "git_url": "git://github.com/jenkinsci/build-flow-pipeline-integration-sandbox.git", + "ssh_url": "git@github.com:jenkinsci/build-flow-pipeline-integration-sandbox.git", + "clone_url": "https://github.com/jenkinsci/build-flow-pipeline-integration-sandbox.git", + "svn_url": "https://github.com/jenkinsci/build-flow-pipeline-integration-sandbox", + "homepage": "", + "size": 112, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 8803561, + "node_id": "MDEwOlJlcG9zaXRvcnk4ODAzNTYx", + "name": "jgit", + "full_name": "jenkinsci/jgit", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jgit", + "description": "JGit project repository (jgit)", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/jgit", + "forks_url": "https://api.github.com/repos/jenkinsci/jgit/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jgit/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jgit/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jgit/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jgit/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jgit/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jgit/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jgit/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jgit/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jgit/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jgit/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jgit/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jgit/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jgit/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jgit/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jgit/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jgit/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jgit/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jgit/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jgit/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jgit/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jgit/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jgit/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jgit/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jgit/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jgit/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jgit/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jgit/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jgit/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jgit/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jgit/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jgit/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jgit/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jgit/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jgit/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jgit/deployments", + "created_at": "2013-03-15T16:19:35Z", + "updated_at": "2013-03-17T10:05:44Z", + "pushed_at": "2013-03-17T10:05:42Z", + "git_url": "git://github.com/jenkinsci/jgit.git", + "ssh_url": "git@github.com:jenkinsci/jgit.git", + "clone_url": "https://github.com/jenkinsci/jgit.git", + "svn_url": "https://github.com/jenkinsci/jgit", + "homepage": "http://eclipse.org/jgit", + "size": 6731, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 8916287, + "node_id": "MDEwOlJlcG9zaXRvcnk4OTE2Mjg3", + "name": "mock-slave-plugin", + "full_name": "jenkinsci/mock-slave-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/mock-slave-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/mock-slave-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/mock-slave-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/mock-slave-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/mock-slave-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/mock-slave-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/mock-slave-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/mock-slave-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/mock-slave-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/mock-slave-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/mock-slave-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/mock-slave-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/mock-slave-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/mock-slave-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/mock-slave-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/mock-slave-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/mock-slave-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/mock-slave-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/mock-slave-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/mock-slave-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/mock-slave-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/mock-slave-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/mock-slave-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/mock-slave-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/mock-slave-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/mock-slave-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/mock-slave-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/mock-slave-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/mock-slave-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/mock-slave-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/mock-slave-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/mock-slave-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/mock-slave-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/mock-slave-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/mock-slave-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/mock-slave-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/mock-slave-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/mock-slave-plugin/deployments", + "created_at": "2013-03-20T22:54:47Z", + "updated_at": "2019-02-25T20:39:31Z", + "pushed_at": "2019-10-23T05:24:11Z", + "git_url": "git://github.com/jenkinsci/mock-slave-plugin.git", + "ssh_url": "git@github.com:jenkinsci/mock-slave-plugin.git", + "clone_url": "https://github.com/jenkinsci/mock-slave-plugin.git", + "svn_url": "https://github.com/jenkinsci/mock-slave-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Mock+Slave+Plugin", + "size": 81, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 4, + "license": null, + "forks": 5, + "open_issues": 4, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 8931060, + "node_id": "MDEwOlJlcG9zaXRvcnk4OTMxMDYw", + "name": "mogotest-plugin", + "full_name": "jenkinsci/mogotest-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/mogotest-plugin", + "description": "A Jenkins plugin for the Mogotest service.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/mogotest-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/mogotest-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/mogotest-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/mogotest-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/mogotest-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/mogotest-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/mogotest-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/mogotest-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/mogotest-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/mogotest-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/mogotest-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/mogotest-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/mogotest-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/mogotest-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/mogotest-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/mogotest-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/mogotest-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/mogotest-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/mogotest-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/mogotest-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/mogotest-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/mogotest-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/mogotest-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/mogotest-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/mogotest-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/mogotest-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/mogotest-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/mogotest-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/mogotest-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/mogotest-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/mogotest-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/mogotest-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/mogotest-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/mogotest-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/mogotest-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/mogotest-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/mogotest-plugin/deployments", + "created_at": "2013-03-21T14:49:32Z", + "updated_at": "2013-11-10T02:11:26Z", + "pushed_at": "2013-11-10T02:11:23Z", + "git_url": "git://github.com/jenkinsci/mogotest-plugin.git", + "ssh_url": "git@github.com:jenkinsci/mogotest-plugin.git", + "clone_url": "https://github.com/jenkinsci/mogotest-plugin.git", + "svn_url": "https://github.com/jenkinsci/mogotest-plugin", + "homepage": null, + "size": 122, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 8994654, + "node_id": "MDEwOlJlcG9zaXRvcnk4OTk0NjU0", + "name": "netio-plugin", + "full_name": "jenkinsci/netio-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/netio-plugin", + "description": "Jenkins plugin for turning on the Netio 230B when a jenkins build fails", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/netio-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/netio-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/netio-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/netio-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/netio-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/netio-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/netio-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/netio-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/netio-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/netio-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/netio-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/netio-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/netio-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/netio-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/netio-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/netio-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/netio-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/netio-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/netio-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/netio-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/netio-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/netio-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/netio-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/netio-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/netio-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/netio-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/netio-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/netio-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/netio-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/netio-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/netio-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/netio-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/netio-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/netio-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/netio-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/netio-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/netio-plugin/deployments", + "created_at": "2013-03-24T22:50:17Z", + "updated_at": "2014-06-11T14:17:28Z", + "pushed_at": "2013-11-10T02:11:59Z", + "git_url": "git://github.com/jenkinsci/netio-plugin.git", + "ssh_url": "git@github.com:jenkinsci/netio-plugin.git", + "clone_url": "https://github.com/jenkinsci/netio-plugin.git", + "svn_url": "https://github.com/jenkinsci/netio-plugin", + "homepage": null, + "size": 256, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 8994718, + "node_id": "MDEwOlJlcG9zaXRvcnk4OTk0NzE4", + "name": "build-alias-setter-plugin", + "full_name": "jenkinsci/build-alias-setter-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/build-alias-setter-plugin", + "description": "Identify your builds using custom aliases", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/build-alias-setter-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/build-alias-setter-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/build-alias-setter-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/build-alias-setter-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/build-alias-setter-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/build-alias-setter-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/build-alias-setter-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/build-alias-setter-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/build-alias-setter-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/build-alias-setter-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/build-alias-setter-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/build-alias-setter-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/build-alias-setter-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/build-alias-setter-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/build-alias-setter-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/build-alias-setter-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/build-alias-setter-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/build-alias-setter-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/build-alias-setter-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/build-alias-setter-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/build-alias-setter-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/build-alias-setter-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/build-alias-setter-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/build-alias-setter-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/build-alias-setter-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/build-alias-setter-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/build-alias-setter-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/build-alias-setter-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/build-alias-setter-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/build-alias-setter-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/build-alias-setter-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/build-alias-setter-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/build-alias-setter-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/build-alias-setter-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/build-alias-setter-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/build-alias-setter-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/build-alias-setter-plugin/deployments", + "created_at": "2013-03-24T22:55:29Z", + "updated_at": "2019-10-09T07:15:15Z", + "pushed_at": "2019-10-09T07:15:13Z", + "git_url": "git://github.com/jenkinsci/build-alias-setter-plugin.git", + "ssh_url": "git@github.com:jenkinsci/build-alias-setter-plugin.git", + "clone_url": "https://github.com/jenkinsci/build-alias-setter-plugin.git", + "svn_url": "https://github.com/jenkinsci/build-alias-setter-plugin", + "homepage": "http://wiki.jenkins-ci.org/display/JENKINS/Build+Alias+Setter+Plugin", + "size": 42, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 6, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 8995358, + "node_id": "MDEwOlJlcG9zaXRvcnk4OTk1MzU4", + "name": "selenium-builder-plugin", + "full_name": "jenkinsci/selenium-builder-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/selenium-builder-plugin", + "description": "Jenkins plugin to invoke Selenium Builder scripts", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/selenium-builder-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/selenium-builder-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/selenium-builder-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/selenium-builder-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/selenium-builder-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/selenium-builder-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/selenium-builder-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/selenium-builder-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/selenium-builder-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/selenium-builder-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/selenium-builder-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/selenium-builder-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/selenium-builder-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/selenium-builder-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/selenium-builder-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/selenium-builder-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/selenium-builder-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/selenium-builder-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/selenium-builder-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/selenium-builder-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/selenium-builder-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/selenium-builder-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/selenium-builder-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/selenium-builder-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/selenium-builder-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/selenium-builder-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/selenium-builder-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/selenium-builder-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/selenium-builder-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/selenium-builder-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/selenium-builder-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/selenium-builder-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/selenium-builder-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/selenium-builder-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/selenium-builder-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/selenium-builder-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/selenium-builder-plugin/deployments", + "created_at": "2013-03-24T23:53:07Z", + "updated_at": "2015-04-29T10:03:29Z", + "pushed_at": "2019-10-08T11:53:37Z", + "git_url": "git://github.com/jenkinsci/selenium-builder-plugin.git", + "ssh_url": "git@github.com:jenkinsci/selenium-builder-plugin.git", + "clone_url": "https://github.com/jenkinsci/selenium-builder-plugin.git", + "svn_url": "https://github.com/jenkinsci/selenium-builder-plugin", + "homepage": null, + "size": 265, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 2, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 9027413, + "node_id": "MDEwOlJlcG9zaXRvcnk5MDI3NDEz", + "name": "pitmutation-plugin", + "full_name": "jenkinsci/pitmutation-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pitmutation-plugin", + "description": "PIT Mutation reporting plugin for Jenkins", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/pitmutation-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pitmutation-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pitmutation-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pitmutation-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pitmutation-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pitmutation-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pitmutation-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pitmutation-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pitmutation-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pitmutation-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pitmutation-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pitmutation-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pitmutation-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pitmutation-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pitmutation-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pitmutation-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pitmutation-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pitmutation-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pitmutation-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pitmutation-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pitmutation-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pitmutation-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pitmutation-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pitmutation-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pitmutation-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pitmutation-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pitmutation-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pitmutation-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pitmutation-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pitmutation-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pitmutation-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pitmutation-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pitmutation-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pitmutation-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pitmutation-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pitmutation-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pitmutation-plugin/deployments", + "created_at": "2013-03-26T09:57:21Z", + "updated_at": "2019-10-08T18:21:42Z", + "pushed_at": "2019-10-08T18:21:40Z", + "git_url": "git://github.com/jenkinsci/pitmutation-plugin.git", + "ssh_url": "git@github.com:jenkinsci/pitmutation-plugin.git", + "clone_url": "https://github.com/jenkinsci/pitmutation-plugin.git", + "svn_url": "https://github.com/jenkinsci/pitmutation-plugin", + "homepage": "", + "size": 308, + "stargazers_count": 9, + "watchers_count": 9, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 19, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 19, + "open_issues": 0, + "watchers": 9, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 9027584, + "node_id": "MDEwOlJlcG9zaXRvcnk5MDI3NTg0", + "name": "gearman-plugin", + "full_name": "jenkinsci/gearman-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/gearman-plugin", + "description": "The jenkins gearman plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/gearman-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/gearman-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/gearman-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/gearman-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/gearman-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/gearman-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/gearman-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/gearman-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/gearman-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/gearman-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/gearman-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/gearman-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/gearman-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/gearman-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/gearman-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/gearman-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/gearman-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/gearman-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/gearman-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/gearman-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/gearman-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/gearman-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/gearman-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/gearman-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/gearman-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/gearman-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/gearman-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/gearman-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/gearman-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/gearman-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/gearman-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/gearman-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/gearman-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/gearman-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/gearman-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/gearman-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/gearman-plugin/deployments", + "created_at": "2013-03-26T10:08:02Z", + "updated_at": "2018-07-19T09:50:00Z", + "pushed_at": "2018-07-19T09:49:59Z", + "git_url": "git://github.com/jenkinsci/gearman-plugin.git", + "ssh_url": "git@github.com:jenkinsci/gearman-plugin.git", + "clone_url": "https://github.com/jenkinsci/gearman-plugin.git", + "svn_url": "https://github.com/jenkinsci/gearman-plugin", + "homepage": "This Jenkins plugin is used to support multiple Jenkins masters", + "size": 132, + "stargazers_count": 1, + "watchers_count": 1, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": false, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 9029376, + "node_id": "MDEwOlJlcG9zaXRvcnk5MDI5Mzc2", + "name": "windows-exe-runner-plugin", + "full_name": "jenkinsci/windows-exe-runner-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/windows-exe-runner-plugin", + "description": "Jenkins Windows Exe Runner Plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/windows-exe-runner-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/windows-exe-runner-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/windows-exe-runner-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/windows-exe-runner-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/windows-exe-runner-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/windows-exe-runner-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/windows-exe-runner-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/windows-exe-runner-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/windows-exe-runner-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/windows-exe-runner-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/windows-exe-runner-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/windows-exe-runner-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/windows-exe-runner-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/windows-exe-runner-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/windows-exe-runner-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/windows-exe-runner-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/windows-exe-runner-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/windows-exe-runner-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/windows-exe-runner-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/windows-exe-runner-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/windows-exe-runner-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/windows-exe-runner-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/windows-exe-runner-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/windows-exe-runner-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/windows-exe-runner-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/windows-exe-runner-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/windows-exe-runner-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/windows-exe-runner-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/windows-exe-runner-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/windows-exe-runner-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/windows-exe-runner-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/windows-exe-runner-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/windows-exe-runner-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/windows-exe-runner-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/windows-exe-runner-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/windows-exe-runner-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/windows-exe-runner-plugin/deployments", + "created_at": "2013-03-26T12:06:37Z", + "updated_at": "2019-09-03T18:53:34Z", + "pushed_at": "2019-10-08T11:28:00Z", + "git_url": "git://github.com/jenkinsci/windows-exe-runner-plugin.git", + "ssh_url": "git@github.com:jenkinsci/windows-exe-runner-plugin.git", + "clone_url": "https://github.com/jenkinsci/windows-exe-runner-plugin.git", + "svn_url": "https://github.com/jenkinsci/windows-exe-runner-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Windows+Exe+Runner+Plugin", + "size": 34, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 6, + "open_issues": 1, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 9029696, + "node_id": "MDEwOlJlcG9zaXRvcnk5MDI5Njk2", + "name": "JiraTestResultReporter-plugin", + "full_name": "jenkinsci/JiraTestResultReporter-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/JiraTestResultReporter-plugin", + "description": "A plug-in for Jenkins that creates issues in Jira for failed unit tests.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/JiraTestResultReporter-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/JiraTestResultReporter-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/JiraTestResultReporter-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/JiraTestResultReporter-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/JiraTestResultReporter-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/JiraTestResultReporter-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/JiraTestResultReporter-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/JiraTestResultReporter-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/JiraTestResultReporter-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/JiraTestResultReporter-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/JiraTestResultReporter-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/JiraTestResultReporter-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/JiraTestResultReporter-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/JiraTestResultReporter-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/JiraTestResultReporter-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/JiraTestResultReporter-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/JiraTestResultReporter-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/JiraTestResultReporter-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/JiraTestResultReporter-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/JiraTestResultReporter-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/JiraTestResultReporter-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/JiraTestResultReporter-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/JiraTestResultReporter-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/JiraTestResultReporter-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/JiraTestResultReporter-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/JiraTestResultReporter-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/JiraTestResultReporter-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/JiraTestResultReporter-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/JiraTestResultReporter-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/JiraTestResultReporter-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/JiraTestResultReporter-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/JiraTestResultReporter-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/JiraTestResultReporter-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/JiraTestResultReporter-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/JiraTestResultReporter-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/JiraTestResultReporter-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/JiraTestResultReporter-plugin/deployments", + "created_at": "2013-03-26T12:27:03Z", + "updated_at": "2018-11-01T15:25:03Z", + "pushed_at": "2019-10-08T11:16:48Z", + "git_url": "git://github.com/jenkinsci/JiraTestResultReporter-plugin.git", + "ssh_url": "git@github.com:jenkinsci/JiraTestResultReporter-plugin.git", + "clone_url": "https://github.com/jenkinsci/JiraTestResultReporter-plugin.git", + "svn_url": "https://github.com/jenkinsci/JiraTestResultReporter-plugin", + "homepage": "", + "size": 1352, + "stargazers_count": 17, + "watchers_count": 17, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 32, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 6, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 32, + "open_issues": 6, + "watchers": 17, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 9087818, + "node_id": "MDEwOlJlcG9zaXRvcnk5MDg3ODE4", + "name": "cloudbees-enterprise-plugins-plugin", + "full_name": "jenkinsci/cloudbees-enterprise-plugins-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/cloudbees-enterprise-plugins-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/cloudbees-enterprise-plugins-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/cloudbees-enterprise-plugins-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/cloudbees-enterprise-plugins-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/cloudbees-enterprise-plugins-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/cloudbees-enterprise-plugins-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/cloudbees-enterprise-plugins-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/cloudbees-enterprise-plugins-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/cloudbees-enterprise-plugins-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/cloudbees-enterprise-plugins-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/cloudbees-enterprise-plugins-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/cloudbees-enterprise-plugins-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/cloudbees-enterprise-plugins-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/cloudbees-enterprise-plugins-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/cloudbees-enterprise-plugins-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/cloudbees-enterprise-plugins-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/cloudbees-enterprise-plugins-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/cloudbees-enterprise-plugins-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/cloudbees-enterprise-plugins-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/cloudbees-enterprise-plugins-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/cloudbees-enterprise-plugins-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/cloudbees-enterprise-plugins-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/cloudbees-enterprise-plugins-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/cloudbees-enterprise-plugins-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/cloudbees-enterprise-plugins-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/cloudbees-enterprise-plugins-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/cloudbees-enterprise-plugins-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/cloudbees-enterprise-plugins-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/cloudbees-enterprise-plugins-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/cloudbees-enterprise-plugins-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/cloudbees-enterprise-plugins-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/cloudbees-enterprise-plugins-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/cloudbees-enterprise-plugins-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/cloudbees-enterprise-plugins-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/cloudbees-enterprise-plugins-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/cloudbees-enterprise-plugins-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/cloudbees-enterprise-plugins-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/cloudbees-enterprise-plugins-plugin/deployments", + "created_at": "2013-03-28T22:34:05Z", + "updated_at": "2016-04-20T18:49:46Z", + "pushed_at": "2015-10-19T13:45:52Z", + "git_url": "git://github.com/jenkinsci/cloudbees-enterprise-plugins-plugin.git", + "ssh_url": "git@github.com:jenkinsci/cloudbees-enterprise-plugins-plugin.git", + "clone_url": "https://github.com/jenkinsci/cloudbees-enterprise-plugins-plugin.git", + "svn_url": "https://github.com/jenkinsci/cloudbees-enterprise-plugins-plugin", + "homepage": "", + "size": 449, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 2, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 9128955, + "node_id": "MDEwOlJlcG9zaXRvcnk5MTI4OTU1", + "name": "rabbitmq-consumer-plugin", + "full_name": "jenkinsci/rabbitmq-consumer-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/rabbitmq-consumer-plugin", + "description": "This is Jenkins plugin to connect RabbitMQ then consume messages in queue.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/rabbitmq-consumer-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/rabbitmq-consumer-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/rabbitmq-consumer-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/rabbitmq-consumer-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/rabbitmq-consumer-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/rabbitmq-consumer-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/rabbitmq-consumer-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/rabbitmq-consumer-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/rabbitmq-consumer-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/rabbitmq-consumer-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/rabbitmq-consumer-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/rabbitmq-consumer-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/rabbitmq-consumer-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/rabbitmq-consumer-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/rabbitmq-consumer-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/rabbitmq-consumer-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/rabbitmq-consumer-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/rabbitmq-consumer-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/rabbitmq-consumer-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/rabbitmq-consumer-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/rabbitmq-consumer-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/rabbitmq-consumer-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/rabbitmq-consumer-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/rabbitmq-consumer-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/rabbitmq-consumer-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/rabbitmq-consumer-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/rabbitmq-consumer-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/rabbitmq-consumer-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/rabbitmq-consumer-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/rabbitmq-consumer-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/rabbitmq-consumer-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/rabbitmq-consumer-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/rabbitmq-consumer-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/rabbitmq-consumer-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/rabbitmq-consumer-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/rabbitmq-consumer-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/rabbitmq-consumer-plugin/deployments", + "created_at": "2013-03-31T10:45:49Z", + "updated_at": "2019-03-07T10:14:07Z", + "pushed_at": "2018-01-30T07:20:00Z", + "git_url": "git://github.com/jenkinsci/rabbitmq-consumer-plugin.git", + "ssh_url": "git@github.com:jenkinsci/rabbitmq-consumer-plugin.git", + "clone_url": "https://github.com/jenkinsci/rabbitmq-consumer-plugin.git", + "svn_url": "https://github.com/jenkinsci/rabbitmq-consumer-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/RabbitMQ+Consumer+Plugin", + "size": 219, + "stargazers_count": 8, + "watchers_count": 8, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 14, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 14, + "open_issues": 0, + "watchers": 8, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 9128959, + "node_id": "MDEwOlJlcG9zaXRvcnk5MTI4OTU5", + "name": "rabbitmq-build-trigger-plugin", + "full_name": "jenkinsci/rabbitmq-build-trigger-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/rabbitmq-build-trigger-plugin", + "description": "This is a Jenkins plugin to trigger buuid using remote build message in RabbitMQ queue.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/rabbitmq-build-trigger-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/rabbitmq-build-trigger-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/rabbitmq-build-trigger-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/rabbitmq-build-trigger-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/rabbitmq-build-trigger-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/rabbitmq-build-trigger-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/rabbitmq-build-trigger-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/rabbitmq-build-trigger-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/rabbitmq-build-trigger-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/rabbitmq-build-trigger-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/rabbitmq-build-trigger-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/rabbitmq-build-trigger-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/rabbitmq-build-trigger-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/rabbitmq-build-trigger-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/rabbitmq-build-trigger-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/rabbitmq-build-trigger-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/rabbitmq-build-trigger-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/rabbitmq-build-trigger-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/rabbitmq-build-trigger-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/rabbitmq-build-trigger-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/rabbitmq-build-trigger-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/rabbitmq-build-trigger-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/rabbitmq-build-trigger-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/rabbitmq-build-trigger-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/rabbitmq-build-trigger-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/rabbitmq-build-trigger-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/rabbitmq-build-trigger-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/rabbitmq-build-trigger-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/rabbitmq-build-trigger-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/rabbitmq-build-trigger-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/rabbitmq-build-trigger-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/rabbitmq-build-trigger-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/rabbitmq-build-trigger-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/rabbitmq-build-trigger-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/rabbitmq-build-trigger-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/rabbitmq-build-trigger-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/rabbitmq-build-trigger-plugin/deployments", + "created_at": "2013-03-31T10:46:09Z", + "updated_at": "2018-12-15T20:57:24Z", + "pushed_at": "2018-12-07T07:15:55Z", + "git_url": "git://github.com/jenkinsci/rabbitmq-build-trigger-plugin.git", + "ssh_url": "git@github.com:jenkinsci/rabbitmq-build-trigger-plugin.git", + "clone_url": "https://github.com/jenkinsci/rabbitmq-build-trigger-plugin.git", + "svn_url": "https://github.com/jenkinsci/rabbitmq-build-trigger-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/RabbitMQ+Build+Trigger+Plugin", + "size": 92, + "stargazers_count": 10, + "watchers_count": 10, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 16, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 4, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 16, + "open_issues": 4, + "watchers": 10, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 9132843, + "node_id": "MDEwOlJlcG9zaXRvcnk5MTMyODQz", + "name": "pushover-notifier-plugin", + "full_name": "jenkinsci/pushover-notifier-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pushover-notifier-plugin", + "description": "A PushOver notifier plugin for the Jenkins buildserver", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/pushover-notifier-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pushover-notifier-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pushover-notifier-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pushover-notifier-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pushover-notifier-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pushover-notifier-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pushover-notifier-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pushover-notifier-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pushover-notifier-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pushover-notifier-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pushover-notifier-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pushover-notifier-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pushover-notifier-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pushover-notifier-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pushover-notifier-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pushover-notifier-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pushover-notifier-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pushover-notifier-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pushover-notifier-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pushover-notifier-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pushover-notifier-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pushover-notifier-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pushover-notifier-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pushover-notifier-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pushover-notifier-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pushover-notifier-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pushover-notifier-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pushover-notifier-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pushover-notifier-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pushover-notifier-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pushover-notifier-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pushover-notifier-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pushover-notifier-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pushover-notifier-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pushover-notifier-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pushover-notifier-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pushover-notifier-plugin/deployments", + "created_at": "2013-03-31T16:38:48Z", + "updated_at": "2018-02-01T20:10:37Z", + "pushed_at": "2016-12-29T08:52:25Z", + "git_url": "git://github.com/jenkinsci/pushover-notifier-plugin.git", + "ssh_url": "git@github.com:jenkinsci/pushover-notifier-plugin.git", + "clone_url": "https://github.com/jenkinsci/pushover-notifier-plugin.git", + "svn_url": "https://github.com/jenkinsci/pushover-notifier-plugin", + "homepage": null, + "size": 75, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 1, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 9167128, + "node_id": "MDEwOlJlcG9zaXRvcnk5MTY3MTI4", + "name": "mqtt-notification-plugin", + "full_name": "jenkinsci/mqtt-notification-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/mqtt-notification-plugin", + "description": "A Jenkins Notifier plugin using MQTT", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/mqtt-notification-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/mqtt-notification-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/mqtt-notification-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/mqtt-notification-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/mqtt-notification-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/mqtt-notification-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/mqtt-notification-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/mqtt-notification-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/mqtt-notification-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/mqtt-notification-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/mqtt-notification-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/mqtt-notification-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/mqtt-notification-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/mqtt-notification-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/mqtt-notification-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/mqtt-notification-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/mqtt-notification-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/mqtt-notification-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/mqtt-notification-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/mqtt-notification-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/mqtt-notification-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/mqtt-notification-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/mqtt-notification-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/mqtt-notification-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/mqtt-notification-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/mqtt-notification-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/mqtt-notification-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/mqtt-notification-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/mqtt-notification-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/mqtt-notification-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/mqtt-notification-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/mqtt-notification-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/mqtt-notification-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/mqtt-notification-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/mqtt-notification-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/mqtt-notification-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/mqtt-notification-plugin/deployments", + "created_at": "2013-04-02T09:48:36Z", + "updated_at": "2018-06-26T20:29:26Z", + "pushed_at": "2018-06-26T20:29:24Z", + "git_url": "git://github.com/jenkinsci/mqtt-notification-plugin.git", + "ssh_url": "git@github.com:jenkinsci/mqtt-notification-plugin.git", + "clone_url": "https://github.com/jenkinsci/mqtt-notification-plugin.git", + "svn_url": "https://github.com/jenkinsci/mqtt-notification-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/MQTT+Notification+Plugin", + "size": 55, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 9, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 9, + "open_issues": 0, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 9200539, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjAwNTM5", + "name": "humbug-plugin", + "full_name": "jenkinsci/humbug-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/humbug-plugin", + "description": "Jenkins plugin for Humbug notifications of build status", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/humbug-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/humbug-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/humbug-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/humbug-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/humbug-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/humbug-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/humbug-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/humbug-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/humbug-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/humbug-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/humbug-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/humbug-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/humbug-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/humbug-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/humbug-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/humbug-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/humbug-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/humbug-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/humbug-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/humbug-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/humbug-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/humbug-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/humbug-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/humbug-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/humbug-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/humbug-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/humbug-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/humbug-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/humbug-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/humbug-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/humbug-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/humbug-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/humbug-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/humbug-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/humbug-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/humbug-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/humbug-plugin/deployments", + "created_at": "2013-04-03T17:27:41Z", + "updated_at": "2019-02-06T10:12:11Z", + "pushed_at": "2019-02-06T10:12:09Z", + "git_url": "git://github.com/jenkinsci/humbug-plugin.git", + "ssh_url": "git@github.com:jenkinsci/humbug-plugin.git", + "clone_url": "https://github.com/jenkinsci/humbug-plugin.git", + "svn_url": "https://github.com/jenkinsci/humbug-plugin", + "homepage": null, + "size": 126, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 3, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 9200587, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjAwNTg3", + "name": "jshint-checkstyle-plugin", + "full_name": "jenkinsci/jshint-checkstyle-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jshint-checkstyle-plugin", + "description": "A copy of the Checkstyle plugin for Jenkins, used to monitor JSLint warnings based on the Checkstyle XML format", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/jshint-checkstyle-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/jshint-checkstyle-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jshint-checkstyle-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jshint-checkstyle-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jshint-checkstyle-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jshint-checkstyle-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jshint-checkstyle-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jshint-checkstyle-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jshint-checkstyle-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jshint-checkstyle-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jshint-checkstyle-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jshint-checkstyle-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jshint-checkstyle-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jshint-checkstyle-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jshint-checkstyle-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jshint-checkstyle-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jshint-checkstyle-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jshint-checkstyle-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jshint-checkstyle-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jshint-checkstyle-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jshint-checkstyle-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jshint-checkstyle-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jshint-checkstyle-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jshint-checkstyle-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jshint-checkstyle-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jshint-checkstyle-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jshint-checkstyle-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jshint-checkstyle-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jshint-checkstyle-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jshint-checkstyle-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jshint-checkstyle-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jshint-checkstyle-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jshint-checkstyle-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jshint-checkstyle-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jshint-checkstyle-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jshint-checkstyle-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jshint-checkstyle-plugin/deployments", + "created_at": "2013-04-03T17:29:55Z", + "updated_at": "2013-11-10T07:36:50Z", + "pushed_at": "2013-11-10T02:07:55Z", + "git_url": "git://github.com/jenkinsci/jshint-checkstyle-plugin.git", + "ssh_url": "git@github.com:jenkinsci/jshint-checkstyle-plugin.git", + "clone_url": "https://github.com/jenkinsci/jshint-checkstyle-plugin.git", + "svn_url": "https://github.com/jenkinsci/jshint-checkstyle-plugin", + "homepage": "", + "size": 1483, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 2, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 9200713, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjAwNzEz", + "name": "windows-azure-storage-plugin", + "full_name": "jenkinsci/windows-azure-storage-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/windows-azure-storage-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/windows-azure-storage-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/windows-azure-storage-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/windows-azure-storage-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/windows-azure-storage-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/windows-azure-storage-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/windows-azure-storage-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/windows-azure-storage-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/windows-azure-storage-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/windows-azure-storage-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/windows-azure-storage-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/windows-azure-storage-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/windows-azure-storage-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/windows-azure-storage-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/windows-azure-storage-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/windows-azure-storage-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/windows-azure-storage-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/windows-azure-storage-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/windows-azure-storage-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/windows-azure-storage-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/windows-azure-storage-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/windows-azure-storage-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/windows-azure-storage-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/windows-azure-storage-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/windows-azure-storage-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/windows-azure-storage-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/windows-azure-storage-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/windows-azure-storage-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/windows-azure-storage-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/windows-azure-storage-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/windows-azure-storage-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/windows-azure-storage-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/windows-azure-storage-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/windows-azure-storage-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/windows-azure-storage-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/windows-azure-storage-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/windows-azure-storage-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/windows-azure-storage-plugin/deployments", + "created_at": "2013-04-03T17:35:44Z", + "updated_at": "2019-09-30T06:42:22Z", + "pushed_at": "2019-10-08T11:30:27Z", + "git_url": "git://github.com/jenkinsci/windows-azure-storage-plugin.git", + "ssh_url": "git@github.com:jenkinsci/windows-azure-storage-plugin.git", + "clone_url": "https://github.com/jenkinsci/windows-azure-storage-plugin.git", + "svn_url": "https://github.com/jenkinsci/windows-azure-storage-plugin", + "homepage": "", + "size": 645, + "stargazers_count": 19, + "watchers_count": 19, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 42, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 42, + "open_issues": 1, + "watchers": 19, + "default_branch": "dev", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 9201087, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjAxMDg3", + "name": "lechat-plugin", + "full_name": "jenkinsci/lechat-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/lechat-plugin", + "description": "Basically forked the HipChat plugin and made things LeChatish.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/lechat-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/lechat-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/lechat-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/lechat-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/lechat-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/lechat-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/lechat-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/lechat-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/lechat-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/lechat-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/lechat-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/lechat-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/lechat-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/lechat-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/lechat-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/lechat-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/lechat-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/lechat-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/lechat-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/lechat-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/lechat-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/lechat-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/lechat-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/lechat-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/lechat-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/lechat-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/lechat-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/lechat-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/lechat-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/lechat-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/lechat-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/lechat-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/lechat-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/lechat-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/lechat-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/lechat-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/lechat-plugin/deployments", + "created_at": "2013-04-03T17:53:59Z", + "updated_at": "2013-11-10T02:08:57Z", + "pushed_at": "2013-11-10T02:08:52Z", + "git_url": "git://github.com/jenkinsci/lechat-plugin.git", + "ssh_url": "git@github.com:jenkinsci/lechat-plugin.git", + "clone_url": "https://github.com/jenkinsci/lechat-plugin.git", + "svn_url": "https://github.com/jenkinsci/lechat-plugin", + "homepage": null, + "size": 117, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 9260191, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjYwMTkx", + "name": "update-sites-manager-plugin", + "full_name": "jenkinsci/update-sites-manager-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/update-sites-manager-plugin", + "description": "Jenkins plugin to manage UpdateSites, where Jenkins accesses in order to retrieve plugins.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/update-sites-manager-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/update-sites-manager-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/update-sites-manager-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/update-sites-manager-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/update-sites-manager-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/update-sites-manager-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/update-sites-manager-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/update-sites-manager-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/update-sites-manager-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/update-sites-manager-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/update-sites-manager-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/update-sites-manager-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/update-sites-manager-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/update-sites-manager-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/update-sites-manager-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/update-sites-manager-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/update-sites-manager-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/update-sites-manager-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/update-sites-manager-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/update-sites-manager-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/update-sites-manager-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/update-sites-manager-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/update-sites-manager-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/update-sites-manager-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/update-sites-manager-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/update-sites-manager-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/update-sites-manager-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/update-sites-manager-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/update-sites-manager-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/update-sites-manager-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/update-sites-manager-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/update-sites-manager-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/update-sites-manager-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/update-sites-manager-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/update-sites-manager-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/update-sites-manager-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/update-sites-manager-plugin/deployments", + "created_at": "2013-04-06T13:17:59Z", + "updated_at": "2019-10-09T08:27:35Z", + "pushed_at": "2019-10-09T08:27:32Z", + "git_url": "git://github.com/jenkinsci/update-sites-manager-plugin.git", + "ssh_url": "git@github.com:jenkinsci/update-sites-manager-plugin.git", + "clone_url": "https://github.com/jenkinsci/update-sites-manager-plugin.git", + "svn_url": "https://github.com/jenkinsci/update-sites-manager-plugin", + "homepage": null, + "size": 143, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 7, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 7, + "open_issues": 1, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 9299022, + "node_id": "MDEwOlJlcG9zaXRvcnk5Mjk5MDIy", + "name": "elastic-axis-plugin", + "full_name": "jenkinsci/elastic-axis-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/elastic-axis-plugin", + "description": "A jenkins plugin that allow running a multi configuration job on all slaves of a label", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/elastic-axis-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/elastic-axis-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/elastic-axis-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/elastic-axis-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/elastic-axis-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/elastic-axis-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/elastic-axis-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/elastic-axis-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/elastic-axis-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/elastic-axis-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/elastic-axis-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/elastic-axis-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/elastic-axis-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/elastic-axis-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/elastic-axis-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/elastic-axis-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/elastic-axis-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/elastic-axis-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/elastic-axis-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/elastic-axis-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/elastic-axis-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/elastic-axis-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/elastic-axis-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/elastic-axis-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/elastic-axis-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/elastic-axis-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/elastic-axis-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/elastic-axis-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/elastic-axis-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/elastic-axis-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/elastic-axis-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/elastic-axis-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/elastic-axis-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/elastic-axis-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/elastic-axis-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/elastic-axis-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/elastic-axis-plugin/deployments", + "created_at": "2013-04-08T14:53:57Z", + "updated_at": "2019-03-29T05:50:12Z", + "pushed_at": "2019-10-08T11:50:35Z", + "git_url": "git://github.com/jenkinsci/elastic-axis-plugin.git", + "ssh_url": "git@github.com:jenkinsci/elastic-axis-plugin.git", + "clone_url": "https://github.com/jenkinsci/elastic-axis-plugin.git", + "svn_url": "https://github.com/jenkinsci/elastic-axis-plugin", + "homepage": null, + "size": 22, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 8, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 8, + "open_issues": 1, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 9299337, + "node_id": "MDEwOlJlcG9zaXRvcnk5Mjk5MzM3", + "name": "rhnpush-plugin", + "full_name": "jenkinsci/rhnpush-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/rhnpush-plugin", + "description": "Jenkins rhnpush plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/rhnpush-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/rhnpush-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/rhnpush-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/rhnpush-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/rhnpush-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/rhnpush-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/rhnpush-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/rhnpush-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/rhnpush-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/rhnpush-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/rhnpush-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/rhnpush-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/rhnpush-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/rhnpush-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/rhnpush-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/rhnpush-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/rhnpush-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/rhnpush-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/rhnpush-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/rhnpush-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/rhnpush-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/rhnpush-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/rhnpush-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/rhnpush-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/rhnpush-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/rhnpush-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/rhnpush-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/rhnpush-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/rhnpush-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/rhnpush-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/rhnpush-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/rhnpush-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/rhnpush-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/rhnpush-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/rhnpush-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/rhnpush-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/rhnpush-plugin/deployments", + "created_at": "2013-04-08T15:08:09Z", + "updated_at": "2018-11-05T09:44:37Z", + "pushed_at": "2018-09-23T14:53:29Z", + "git_url": "git://github.com/jenkinsci/rhnpush-plugin.git", + "ssh_url": "git@github.com:jenkinsci/rhnpush-plugin.git", + "clone_url": "https://github.com/jenkinsci/rhnpush-plugin.git", + "svn_url": "https://github.com/jenkinsci/rhnpush-plugin", + "homepage": null, + "size": 95, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 3, + "open_issues": 1, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 9304884, + "node_id": "MDEwOlJlcG9zaXRvcnk5MzA0ODg0", + "name": "wix-plugin", + "full_name": "jenkinsci/wix-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/wix-plugin", + "description": "WIX Builder for Jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/wix-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/wix-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/wix-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/wix-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/wix-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/wix-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/wix-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/wix-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/wix-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/wix-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/wix-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/wix-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/wix-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/wix-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/wix-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/wix-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/wix-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/wix-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/wix-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/wix-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/wix-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/wix-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/wix-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/wix-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/wix-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/wix-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/wix-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/wix-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/wix-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/wix-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/wix-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/wix-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/wix-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/wix-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/wix-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/wix-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/wix-plugin/deployments", + "created_at": "2013-04-08T19:29:54Z", + "updated_at": "2019-03-02T13:33:19Z", + "pushed_at": "2019-10-08T16:27:35Z", + "git_url": "git://github.com/jenkinsci/wix-plugin.git", + "ssh_url": "git@github.com:jenkinsci/wix-plugin.git", + "clone_url": "https://github.com/jenkinsci/wix-plugin.git", + "svn_url": "https://github.com/jenkinsci/wix-plugin", + "homepage": null, + "size": 182, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 4, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 9305004, + "node_id": "MDEwOlJlcG9zaXRvcnk5MzA1MDA0", + "name": "jobrequeue-plugin", + "full_name": "jenkinsci/jobrequeue-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jobrequeue-plugin", + "description": "A Jenkins plugin to requeue any jobs that fail due to the remote slave going down.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jobrequeue-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/jobrequeue-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jobrequeue-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jobrequeue-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jobrequeue-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jobrequeue-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jobrequeue-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jobrequeue-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jobrequeue-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jobrequeue-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jobrequeue-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jobrequeue-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jobrequeue-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jobrequeue-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jobrequeue-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jobrequeue-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jobrequeue-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jobrequeue-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jobrequeue-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jobrequeue-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jobrequeue-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jobrequeue-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jobrequeue-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jobrequeue-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jobrequeue-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jobrequeue-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jobrequeue-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jobrequeue-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jobrequeue-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jobrequeue-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jobrequeue-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jobrequeue-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jobrequeue-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jobrequeue-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jobrequeue-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jobrequeue-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jobrequeue-plugin/deployments", + "created_at": "2013-04-08T19:35:45Z", + "updated_at": "2016-09-07T15:59:44Z", + "pushed_at": "2019-10-08T16:36:34Z", + "git_url": "git://github.com/jenkinsci/jobrequeue-plugin.git", + "ssh_url": "git@github.com:jenkinsci/jobrequeue-plugin.git", + "clone_url": "https://github.com/jenkinsci/jobrequeue-plugin.git", + "svn_url": "https://github.com/jenkinsci/jobrequeue-plugin", + "homepage": null, + "size": 13, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 6, + "open_issues": 1, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 9348904, + "node_id": "MDEwOlJlcG9zaXRvcnk5MzQ4OTA0", + "name": "golo-plugin", + "full_name": "jenkinsci/golo-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/golo-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/golo-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/golo-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/golo-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/golo-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/golo-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/golo-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/golo-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/golo-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/golo-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/golo-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/golo-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/golo-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/golo-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/golo-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/golo-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/golo-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/golo-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/golo-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/golo-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/golo-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/golo-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/golo-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/golo-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/golo-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/golo-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/golo-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/golo-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/golo-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/golo-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/golo-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/golo-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/golo-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/golo-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/golo-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/golo-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/golo-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/golo-plugin/deployments", + "created_at": "2013-04-10T15:11:09Z", + "updated_at": "2015-06-09T15:20:42Z", + "pushed_at": "2013-11-10T02:03:57Z", + "git_url": "git://github.com/jenkinsci/golo-plugin.git", + "ssh_url": "git@github.com:jenkinsci/golo-plugin.git", + "clone_url": "https://github.com/jenkinsci/golo-plugin.git", + "svn_url": "https://github.com/jenkinsci/golo-plugin", + "homepage": null, + "size": 365, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 9353078, + "node_id": "MDEwOlJlcG9zaXRvcnk5MzUzMDc4", + "name": "sparkle-appcast-plugin", + "full_name": "jenkinsci/sparkle-appcast-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/sparkle-appcast-plugin", + "description": "Jenkins plugin to create Sparkle Appcasts.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/sparkle-appcast-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/sparkle-appcast-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/sparkle-appcast-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/sparkle-appcast-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/sparkle-appcast-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/sparkle-appcast-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/sparkle-appcast-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/sparkle-appcast-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/sparkle-appcast-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/sparkle-appcast-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/sparkle-appcast-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/sparkle-appcast-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/sparkle-appcast-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/sparkle-appcast-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/sparkle-appcast-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/sparkle-appcast-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/sparkle-appcast-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/sparkle-appcast-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/sparkle-appcast-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/sparkle-appcast-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/sparkle-appcast-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/sparkle-appcast-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/sparkle-appcast-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/sparkle-appcast-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/sparkle-appcast-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/sparkle-appcast-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/sparkle-appcast-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/sparkle-appcast-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/sparkle-appcast-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/sparkle-appcast-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/sparkle-appcast-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/sparkle-appcast-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/sparkle-appcast-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/sparkle-appcast-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/sparkle-appcast-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/sparkle-appcast-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/sparkle-appcast-plugin/deployments", + "created_at": "2013-04-10T18:34:21Z", + "updated_at": "2013-11-10T02:18:29Z", + "pushed_at": "2013-11-10T02:18:25Z", + "git_url": "git://github.com/jenkinsci/sparkle-appcast-plugin.git", + "ssh_url": "git@github.com:jenkinsci/sparkle-appcast-plugin.git", + "clone_url": "https://github.com/jenkinsci/sparkle-appcast-plugin.git", + "svn_url": "https://github.com/jenkinsci/sparkle-appcast-plugin", + "homepage": null, + "size": 82, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Ruby", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 9367124, + "node_id": "MDEwOlJlcG9zaXRvcnk5MzY3MTI0", + "name": "rpmsign-plugin", + "full_name": "jenkinsci/rpmsign-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/rpmsign-plugin", + "description": "Jenkins RPM sign plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/rpmsign-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/rpmsign-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/rpmsign-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/rpmsign-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/rpmsign-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/rpmsign-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/rpmsign-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/rpmsign-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/rpmsign-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/rpmsign-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/rpmsign-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/rpmsign-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/rpmsign-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/rpmsign-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/rpmsign-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/rpmsign-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/rpmsign-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/rpmsign-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/rpmsign-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/rpmsign-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/rpmsign-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/rpmsign-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/rpmsign-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/rpmsign-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/rpmsign-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/rpmsign-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/rpmsign-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/rpmsign-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/rpmsign-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/rpmsign-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/rpmsign-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/rpmsign-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/rpmsign-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/rpmsign-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/rpmsign-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/rpmsign-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/rpmsign-plugin/deployments", + "created_at": "2013-04-11T09:56:51Z", + "updated_at": "2019-10-18T02:41:37Z", + "pushed_at": "2019-10-10T17:29:32Z", + "git_url": "git://github.com/jenkinsci/rpmsign-plugin.git", + "ssh_url": "git@github.com:jenkinsci/rpmsign-plugin.git", + "clone_url": "https://github.com/jenkinsci/rpmsign-plugin.git", + "svn_url": "https://github.com/jenkinsci/rpmsign-plugin", + "homepage": "", + "size": 39, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 15, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 4, + "license": null, + "forks": 15, + "open_issues": 4, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 9434610, + "node_id": "MDEwOlJlcG9zaXRvcnk5NDM0NjEw", + "name": "sonargraph-plugin", + "full_name": "jenkinsci/sonargraph-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/sonargraph-plugin", + "description": "Integration of Sonargraph into Jenkins", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/sonargraph-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/sonargraph-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/sonargraph-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/sonargraph-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/sonargraph-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/sonargraph-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/sonargraph-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/sonargraph-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/sonargraph-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/sonargraph-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/sonargraph-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/sonargraph-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/sonargraph-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/sonargraph-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/sonargraph-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/sonargraph-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/sonargraph-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/sonargraph-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/sonargraph-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/sonargraph-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/sonargraph-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/sonargraph-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/sonargraph-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/sonargraph-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/sonargraph-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/sonargraph-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/sonargraph-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/sonargraph-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/sonargraph-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/sonargraph-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/sonargraph-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/sonargraph-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/sonargraph-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/sonargraph-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/sonargraph-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/sonargraph-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/sonargraph-plugin/deployments", + "created_at": "2013-04-14T20:12:54Z", + "updated_at": "2018-07-19T06:55:13Z", + "pushed_at": "2019-10-08T11:13:40Z", + "git_url": "git://github.com/jenkinsci/sonargraph-plugin.git", + "ssh_url": "git@github.com:jenkinsci/sonargraph-plugin.git", + "clone_url": "https://github.com/jenkinsci/sonargraph-plugin.git", + "svn_url": "https://github.com/jenkinsci/sonargraph-plugin", + "homepage": null, + "size": 17822, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 3, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 9434755, + "node_id": "MDEwOlJlcG9zaXRvcnk5NDM0NzU1", + "name": "sms-plugin", + "full_name": "jenkinsci/sms-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/sms-plugin", + "description": "SMS Notification for Jenkins", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/sms-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/sms-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/sms-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/sms-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/sms-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/sms-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/sms-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/sms-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/sms-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/sms-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/sms-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/sms-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/sms-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/sms-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/sms-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/sms-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/sms-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/sms-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/sms-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/sms-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/sms-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/sms-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/sms-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/sms-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/sms-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/sms-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/sms-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/sms-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/sms-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/sms-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/sms-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/sms-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/sms-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/sms-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/sms-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/sms-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/sms-plugin/deployments", + "created_at": "2013-04-14T20:23:17Z", + "updated_at": "2019-06-13T16:32:36Z", + "pushed_at": "2019-10-08T12:43:12Z", + "git_url": "git://github.com/jenkinsci/sms-plugin.git", + "ssh_url": "git@github.com:jenkinsci/sms-plugin.git", + "clone_url": "https://github.com/jenkinsci/sms-plugin.git", + "svn_url": "https://github.com/jenkinsci/sms-plugin", + "homepage": null, + "size": 54412, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 5, + "open_issues": 1, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 9471203, + "node_id": "MDEwOlJlcG9zaXRvcnk5NDcxMjAz", + "name": "cluster-stats-plugin", + "full_name": "jenkinsci/cluster-stats-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/cluster-stats-plugin", + "description": "Jenkins Cluster Statistics Plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/cluster-stats-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/cluster-stats-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/cluster-stats-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/cluster-stats-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/cluster-stats-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/cluster-stats-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/cluster-stats-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/cluster-stats-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/cluster-stats-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/cluster-stats-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/cluster-stats-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/cluster-stats-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/cluster-stats-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/cluster-stats-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/cluster-stats-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/cluster-stats-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/cluster-stats-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/cluster-stats-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/cluster-stats-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/cluster-stats-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/cluster-stats-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/cluster-stats-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/cluster-stats-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/cluster-stats-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/cluster-stats-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/cluster-stats-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/cluster-stats-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/cluster-stats-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/cluster-stats-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/cluster-stats-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/cluster-stats-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/cluster-stats-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/cluster-stats-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/cluster-stats-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/cluster-stats-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/cluster-stats-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/cluster-stats-plugin/deployments", + "created_at": "2013-04-16T11:43:14Z", + "updated_at": "2017-05-23T11:49:13Z", + "pushed_at": "2014-12-30T09:42:30Z", + "git_url": "git://github.com/jenkinsci/cluster-stats-plugin.git", + "ssh_url": "git@github.com:jenkinsci/cluster-stats-plugin.git", + "clone_url": "https://github.com/jenkinsci/cluster-stats-plugin.git", + "svn_url": "https://github.com/jenkinsci/cluster-stats-plugin", + "homepage": null, + "size": 735, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 4, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 9492966, + "node_id": "MDEwOlJlcG9zaXRvcnk5NDkyOTY2", + "name": "kwjlib", + "full_name": "jenkinsci/kwjlib", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/kwjlib", + "description": "Klocwork Review Web API java library", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/kwjlib", + "forks_url": "https://api.github.com/repos/jenkinsci/kwjlib/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/kwjlib/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/kwjlib/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/kwjlib/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/kwjlib/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/kwjlib/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/kwjlib/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/kwjlib/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/kwjlib/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/kwjlib/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/kwjlib/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/kwjlib/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/kwjlib/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/kwjlib/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/kwjlib/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/kwjlib/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/kwjlib/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/kwjlib/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/kwjlib/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/kwjlib/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/kwjlib/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/kwjlib/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/kwjlib/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/kwjlib/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/kwjlib/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/kwjlib/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/kwjlib/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/kwjlib/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/kwjlib/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/kwjlib/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/kwjlib/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/kwjlib/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/kwjlib/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/kwjlib/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/kwjlib/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/kwjlib/deployments", + "created_at": "2013-04-17T08:33:20Z", + "updated_at": "2014-01-25T02:58:21Z", + "pushed_at": "2013-03-27T11:05:24Z", + "git_url": "git://github.com/jenkinsci/kwjlib.git", + "ssh_url": "git@github.com:jenkinsci/kwjlib.git", + "clone_url": "https://github.com/jenkinsci/kwjlib.git", + "svn_url": "https://github.com/jenkinsci/kwjlib", + "homepage": null, + "size": 223, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 3, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 9519229, + "node_id": "MDEwOlJlcG9zaXRvcnk5NTE5MjI5", + "name": "youtrack-plugin", + "full_name": "jenkinsci/youtrack-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/youtrack-plugin", + "description": "A plugin for integrating YouTrack Bug Tracker with Jenkins", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/youtrack-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/youtrack-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/youtrack-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/youtrack-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/youtrack-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/youtrack-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/youtrack-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/youtrack-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/youtrack-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/youtrack-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/youtrack-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/youtrack-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/youtrack-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/youtrack-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/youtrack-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/youtrack-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/youtrack-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/youtrack-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/youtrack-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/youtrack-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/youtrack-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/youtrack-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/youtrack-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/youtrack-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/youtrack-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/youtrack-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/youtrack-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/youtrack-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/youtrack-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/youtrack-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/youtrack-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/youtrack-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/youtrack-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/youtrack-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/youtrack-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/youtrack-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/youtrack-plugin/deployments", + "created_at": "2013-04-18T10:36:36Z", + "updated_at": "2019-07-23T14:59:55Z", + "pushed_at": "2019-05-02T15:37:29Z", + "git_url": "git://github.com/jenkinsci/youtrack-plugin.git", + "ssh_url": "git@github.com:jenkinsci/youtrack-plugin.git", + "clone_url": "https://github.com/jenkinsci/youtrack-plugin.git", + "svn_url": "https://github.com/jenkinsci/youtrack-plugin", + "homepage": null, + "size": 2138, + "stargazers_count": 12, + "watchers_count": 12, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 8, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 8, + "open_issues": 1, + "watchers": 12, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 9519984, + "node_id": "MDEwOlJlcG9zaXRvcnk5NTE5OTg0", + "name": "jqs-monitoring-plugin", + "full_name": "jenkinsci/jqs-monitoring-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jqs-monitoring-plugin", + "description": "Monitoring Plug-in for Jenkins.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jqs-monitoring-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/jqs-monitoring-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jqs-monitoring-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jqs-monitoring-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jqs-monitoring-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jqs-monitoring-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jqs-monitoring-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jqs-monitoring-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jqs-monitoring-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jqs-monitoring-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jqs-monitoring-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jqs-monitoring-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jqs-monitoring-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jqs-monitoring-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jqs-monitoring-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jqs-monitoring-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jqs-monitoring-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jqs-monitoring-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jqs-monitoring-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jqs-monitoring-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jqs-monitoring-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jqs-monitoring-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jqs-monitoring-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jqs-monitoring-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jqs-monitoring-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jqs-monitoring-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jqs-monitoring-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jqs-monitoring-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jqs-monitoring-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jqs-monitoring-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jqs-monitoring-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jqs-monitoring-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jqs-monitoring-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jqs-monitoring-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jqs-monitoring-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jqs-monitoring-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jqs-monitoring-plugin/deployments", + "created_at": "2013-04-18T11:23:41Z", + "updated_at": "2019-10-08T12:25:23Z", + "pushed_at": "2019-10-08T12:25:21Z", + "git_url": "git://github.com/jenkinsci/jqs-monitoring-plugin.git", + "ssh_url": "git@github.com:jenkinsci/jqs-monitoring-plugin.git", + "clone_url": "https://github.com/jenkinsci/jqs-monitoring-plugin.git", + "svn_url": "https://github.com/jenkinsci/jqs-monitoring-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/JQS+Monitoring+Plugin", + "size": 90, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 3, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 9521744, + "node_id": "MDEwOlJlcG9zaXRvcnk5NTIxNzQ0", + "name": "email-ext-recipients-column-plugin", + "full_name": "jenkinsci/email-ext-recipients-column-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/email-ext-recipients-column-plugin", + "description": "Enables you to see the recipients configured in email-ext plugin in a ListView column.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/email-ext-recipients-column-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/email-ext-recipients-column-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/email-ext-recipients-column-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/email-ext-recipients-column-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/email-ext-recipients-column-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/email-ext-recipients-column-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/email-ext-recipients-column-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/email-ext-recipients-column-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/email-ext-recipients-column-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/email-ext-recipients-column-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/email-ext-recipients-column-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/email-ext-recipients-column-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/email-ext-recipients-column-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/email-ext-recipients-column-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/email-ext-recipients-column-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/email-ext-recipients-column-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/email-ext-recipients-column-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/email-ext-recipients-column-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/email-ext-recipients-column-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/email-ext-recipients-column-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/email-ext-recipients-column-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/email-ext-recipients-column-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/email-ext-recipients-column-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/email-ext-recipients-column-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/email-ext-recipients-column-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/email-ext-recipients-column-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/email-ext-recipients-column-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/email-ext-recipients-column-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/email-ext-recipients-column-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/email-ext-recipients-column-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/email-ext-recipients-column-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/email-ext-recipients-column-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/email-ext-recipients-column-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/email-ext-recipients-column-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/email-ext-recipients-column-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/email-ext-recipients-column-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/email-ext-recipients-column-plugin/deployments", + "created_at": "2013-04-18T13:02:17Z", + "updated_at": "2018-07-17T13:40:27Z", + "pushed_at": "2019-10-08T09:49:20Z", + "git_url": "git://github.com/jenkinsci/email-ext-recipients-column-plugin.git", + "ssh_url": "git@github.com:jenkinsci/email-ext-recipients-column-plugin.git", + "clone_url": "https://github.com/jenkinsci/email-ext-recipients-column-plugin.git", + "svn_url": "https://github.com/jenkinsci/email-ext-recipients-column-plugin", + "homepage": null, + "size": 13, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 4, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 9527474, + "node_id": "MDEwOlJlcG9zaXRvcnk5NTI3NDc0", + "name": "sra-deploy-plugin", + "full_name": "jenkinsci/sra-deploy-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/sra-deploy-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/sra-deploy-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/sra-deploy-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/sra-deploy-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/sra-deploy-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/sra-deploy-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/sra-deploy-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/sra-deploy-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/sra-deploy-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/sra-deploy-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/sra-deploy-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/sra-deploy-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/sra-deploy-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/sra-deploy-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/sra-deploy-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/sra-deploy-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/sra-deploy-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/sra-deploy-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/sra-deploy-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/sra-deploy-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/sra-deploy-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/sra-deploy-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/sra-deploy-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/sra-deploy-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/sra-deploy-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/sra-deploy-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/sra-deploy-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/sra-deploy-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/sra-deploy-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/sra-deploy-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/sra-deploy-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/sra-deploy-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/sra-deploy-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/sra-deploy-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/sra-deploy-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/sra-deploy-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/sra-deploy-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/sra-deploy-plugin/deployments", + "created_at": "2013-04-18T17:24:38Z", + "updated_at": "2015-03-27T14:53:22Z", + "pushed_at": "2016-02-03T05:11:48Z", + "git_url": "git://github.com/jenkinsci/sra-deploy-plugin.git", + "ssh_url": "git@github.com:jenkinsci/sra-deploy-plugin.git", + "clone_url": "https://github.com/jenkinsci/sra-deploy-plugin.git", + "svn_url": "https://github.com/jenkinsci/sra-deploy-plugin", + "homepage": "", + "size": 8814, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 1, + "open_issues": 2, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 9617641, + "node_id": "MDEwOlJlcG9zaXRvcnk5NjE3NjQx", + "name": "build-pipeline-plugin", + "full_name": "jenkinsci/build-pipeline-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/build-pipeline-plugin", + "description": "Build Pipeline Plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/build-pipeline-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/build-pipeline-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/build-pipeline-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/build-pipeline-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/build-pipeline-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/build-pipeline-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/build-pipeline-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/build-pipeline-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/build-pipeline-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/build-pipeline-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/build-pipeline-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/build-pipeline-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/build-pipeline-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/build-pipeline-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/build-pipeline-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/build-pipeline-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/build-pipeline-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/build-pipeline-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/build-pipeline-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/build-pipeline-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/build-pipeline-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/build-pipeline-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/build-pipeline-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/build-pipeline-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/build-pipeline-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/build-pipeline-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/build-pipeline-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/build-pipeline-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/build-pipeline-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/build-pipeline-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/build-pipeline-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/build-pipeline-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/build-pipeline-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/build-pipeline-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/build-pipeline-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/build-pipeline-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/build-pipeline-plugin/deployments", + "created_at": "2013-04-23T07:32:33Z", + "updated_at": "2019-10-10T04:48:18Z", + "pushed_at": "2019-10-10T04:48:04Z", + "git_url": "git://github.com/jenkinsci/build-pipeline-plugin.git", + "ssh_url": "git@github.com:jenkinsci/build-pipeline-plugin.git", + "clone_url": "https://github.com/jenkinsci/build-pipeline-plugin.git", + "svn_url": "https://github.com/jenkinsci/build-pipeline-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Build+Pipeline+Plugin", + "size": 1606, + "stargazers_count": 109, + "watchers_count": 109, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 162, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 6, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 162, + "open_issues": 6, + "watchers": 109, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 9636156, + "node_id": "MDEwOlJlcG9zaXRvcnk5NjM2MTU2", + "name": "build-view-column-plugin", + "full_name": "jenkinsci/build-view-column-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/build-view-column-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/build-view-column-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/build-view-column-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/build-view-column-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/build-view-column-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/build-view-column-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/build-view-column-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/build-view-column-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/build-view-column-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/build-view-column-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/build-view-column-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/build-view-column-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/build-view-column-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/build-view-column-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/build-view-column-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/build-view-column-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/build-view-column-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/build-view-column-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/build-view-column-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/build-view-column-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/build-view-column-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/build-view-column-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/build-view-column-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/build-view-column-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/build-view-column-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/build-view-column-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/build-view-column-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/build-view-column-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/build-view-column-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/build-view-column-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/build-view-column-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/build-view-column-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/build-view-column-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/build-view-column-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/build-view-column-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/build-view-column-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/build-view-column-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/build-view-column-plugin/deployments", + "created_at": "2013-04-24T00:18:27Z", + "updated_at": "2018-07-19T09:58:09Z", + "pushed_at": "2018-07-19T09:58:08Z", + "git_url": "git://github.com/jenkinsci/build-view-column-plugin.git", + "ssh_url": "git@github.com:jenkinsci/build-view-column-plugin.git", + "clone_url": "https://github.com/jenkinsci/build-view-column-plugin.git", + "svn_url": "https://github.com/jenkinsci/build-view-column-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Build+View+Column+Plugin", + "size": 16, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 9703399, + "node_id": "MDEwOlJlcG9zaXRvcnk5NzAzMzk5", + "name": "rally-plugin", + "full_name": "jenkinsci/rally-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/rally-plugin", + "description": "Jenkins plugin for Rally integration", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/rally-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/rally-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/rally-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/rally-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/rally-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/rally-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/rally-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/rally-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/rally-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/rally-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/rally-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/rally-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/rally-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/rally-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/rally-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/rally-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/rally-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/rally-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/rally-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/rally-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/rally-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/rally-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/rally-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/rally-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/rally-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/rally-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/rally-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/rally-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/rally-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/rally-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/rally-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/rally-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/rally-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/rally-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/rally-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/rally-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/rally-plugin/deployments", + "created_at": "2013-04-26T20:14:30Z", + "updated_at": "2018-12-17T20:44:46Z", + "pushed_at": "2018-06-08T08:21:18Z", + "git_url": "git://github.com/jenkinsci/rally-plugin.git", + "ssh_url": "git@github.com:jenkinsci/rally-plugin.git", + "clone_url": "https://github.com/jenkinsci/rally-plugin.git", + "svn_url": "https://github.com/jenkinsci/rally-plugin", + "homepage": "http://jenkinsci.github.io/rally-plugin/", + "size": 4263, + "stargazers_count": 8, + "watchers_count": 8, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 13, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 12, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 13, + "open_issues": 12, + "watchers": 8, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 9760772, + "node_id": "MDEwOlJlcG9zaXRvcnk5NzYwNzcy", + "name": "suppress-stack-trace-plugin", + "full_name": "jenkinsci/suppress-stack-trace-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/suppress-stack-trace-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/suppress-stack-trace-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/suppress-stack-trace-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/suppress-stack-trace-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/suppress-stack-trace-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/suppress-stack-trace-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/suppress-stack-trace-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/suppress-stack-trace-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/suppress-stack-trace-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/suppress-stack-trace-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/suppress-stack-trace-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/suppress-stack-trace-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/suppress-stack-trace-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/suppress-stack-trace-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/suppress-stack-trace-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/suppress-stack-trace-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/suppress-stack-trace-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/suppress-stack-trace-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/suppress-stack-trace-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/suppress-stack-trace-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/suppress-stack-trace-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/suppress-stack-trace-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/suppress-stack-trace-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/suppress-stack-trace-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/suppress-stack-trace-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/suppress-stack-trace-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/suppress-stack-trace-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/suppress-stack-trace-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/suppress-stack-trace-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/suppress-stack-trace-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/suppress-stack-trace-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/suppress-stack-trace-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/suppress-stack-trace-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/suppress-stack-trace-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/suppress-stack-trace-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/suppress-stack-trace-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/suppress-stack-trace-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/suppress-stack-trace-plugin/deployments", + "created_at": "2013-04-30T00:01:01Z", + "updated_at": "2016-03-22T16:51:02Z", + "pushed_at": "2016-07-06T17:29:12Z", + "git_url": "git://github.com/jenkinsci/suppress-stack-trace-plugin.git", + "ssh_url": "git@github.com:jenkinsci/suppress-stack-trace-plugin.git", + "clone_url": "https://github.com/jenkinsci/suppress-stack-trace-plugin.git", + "svn_url": "https://github.com/jenkinsci/suppress-stack-trace-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Suppress+Stack+Trace+Plugin", + "size": 31, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 3, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 9767863, + "node_id": "MDEwOlJlcG9zaXRvcnk5NzY3ODYz", + "name": "job-parameter-summary-plugin", + "full_name": "jenkinsci/job-parameter-summary-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/job-parameter-summary-plugin", + "description": "Display job parameter summary on main job page", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/job-parameter-summary-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/job-parameter-summary-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/job-parameter-summary-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/job-parameter-summary-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/job-parameter-summary-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/job-parameter-summary-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/job-parameter-summary-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/job-parameter-summary-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/job-parameter-summary-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/job-parameter-summary-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/job-parameter-summary-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/job-parameter-summary-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/job-parameter-summary-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/job-parameter-summary-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/job-parameter-summary-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/job-parameter-summary-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/job-parameter-summary-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/job-parameter-summary-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/job-parameter-summary-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/job-parameter-summary-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/job-parameter-summary-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/job-parameter-summary-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/job-parameter-summary-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/job-parameter-summary-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/job-parameter-summary-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/job-parameter-summary-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/job-parameter-summary-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/job-parameter-summary-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/job-parameter-summary-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/job-parameter-summary-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/job-parameter-summary-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/job-parameter-summary-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/job-parameter-summary-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/job-parameter-summary-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/job-parameter-summary-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/job-parameter-summary-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/job-parameter-summary-plugin/deployments", + "created_at": "2013-04-30T09:22:31Z", + "updated_at": "2019-10-08T13:24:17Z", + "pushed_at": "2019-10-08T13:24:15Z", + "git_url": "git://github.com/jenkinsci/job-parameter-summary-plugin.git", + "ssh_url": "git@github.com:jenkinsci/job-parameter-summary-plugin.git", + "clone_url": "https://github.com/jenkinsci/job-parameter-summary-plugin.git", + "svn_url": "https://github.com/jenkinsci/job-parameter-summary-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Job+Parameter+Summary+Plugin", + "size": 20, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 9767881, + "node_id": "MDEwOlJlcG9zaXRvcnk5NzY3ODgx", + "name": "external-scheduler-plugin", + "full_name": "jenkinsci/external-scheduler-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/external-scheduler-plugin", + "description": "DEPRECATED: do not use", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/external-scheduler-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/external-scheduler-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/external-scheduler-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/external-scheduler-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/external-scheduler-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/external-scheduler-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/external-scheduler-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/external-scheduler-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/external-scheduler-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/external-scheduler-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/external-scheduler-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/external-scheduler-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/external-scheduler-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/external-scheduler-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/external-scheduler-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/external-scheduler-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/external-scheduler-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/external-scheduler-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/external-scheduler-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/external-scheduler-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/external-scheduler-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/external-scheduler-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/external-scheduler-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/external-scheduler-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/external-scheduler-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/external-scheduler-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/external-scheduler-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/external-scheduler-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/external-scheduler-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/external-scheduler-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/external-scheduler-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/external-scheduler-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/external-scheduler-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/external-scheduler-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/external-scheduler-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/external-scheduler-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/external-scheduler-plugin/deployments", + "created_at": "2013-04-30T09:23:38Z", + "updated_at": "2018-07-13T06:29:54Z", + "pushed_at": "2018-07-13T06:29:53Z", + "git_url": "git://github.com/jenkinsci/external-scheduler-plugin.git", + "ssh_url": "git@github.com:jenkinsci/external-scheduler-plugin.git", + "clone_url": "https://github.com/jenkinsci/external-scheduler-plugin.git", + "svn_url": "https://github.com/jenkinsci/external-scheduler-plugin", + "homepage": "", + "size": 99, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 3, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 9960681, + "node_id": "MDEwOlJlcG9zaXRvcnk5OTYwNjgx", + "name": "veracode-scanner-plugin", + "full_name": "jenkinsci/veracode-scanner-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/veracode-scanner-plugin", + "description": "A jenkins plug-in for submitting files for scanning to veracode.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/veracode-scanner-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/veracode-scanner-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/veracode-scanner-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/veracode-scanner-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/veracode-scanner-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/veracode-scanner-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/veracode-scanner-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/veracode-scanner-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/veracode-scanner-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/veracode-scanner-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/veracode-scanner-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/veracode-scanner-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/veracode-scanner-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/veracode-scanner-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/veracode-scanner-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/veracode-scanner-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/veracode-scanner-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/veracode-scanner-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/veracode-scanner-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/veracode-scanner-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/veracode-scanner-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/veracode-scanner-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/veracode-scanner-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/veracode-scanner-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/veracode-scanner-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/veracode-scanner-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/veracode-scanner-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/veracode-scanner-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/veracode-scanner-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/veracode-scanner-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/veracode-scanner-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/veracode-scanner-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/veracode-scanner-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/veracode-scanner-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/veracode-scanner-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/veracode-scanner-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/veracode-scanner-plugin/deployments", + "created_at": "2013-05-09T14:20:32Z", + "updated_at": "2017-06-15T17:17:56Z", + "pushed_at": "2019-10-08T16:11:19Z", + "git_url": "git://github.com/jenkinsci/veracode-scanner-plugin.git", + "ssh_url": "git@github.com:jenkinsci/veracode-scanner-plugin.git", + "clone_url": "https://github.com/jenkinsci/veracode-scanner-plugin.git", + "svn_url": "https://github.com/jenkinsci/veracode-scanner-plugin", + "homepage": null, + "size": 48, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 9, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 9, + "open_issues": 1, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 10027298, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDAyNzI5OA==", + "name": "mongodb-document-upload-plugin", + "full_name": "jenkinsci/mongodb-document-upload-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/mongodb-document-upload-plugin", + "description": "A Jenkins plugin for uploading JSON documents.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/mongodb-document-upload-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/mongodb-document-upload-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/mongodb-document-upload-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/mongodb-document-upload-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/mongodb-document-upload-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/mongodb-document-upload-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/mongodb-document-upload-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/mongodb-document-upload-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/mongodb-document-upload-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/mongodb-document-upload-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/mongodb-document-upload-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/mongodb-document-upload-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/mongodb-document-upload-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/mongodb-document-upload-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/mongodb-document-upload-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/mongodb-document-upload-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/mongodb-document-upload-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/mongodb-document-upload-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/mongodb-document-upload-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/mongodb-document-upload-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/mongodb-document-upload-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/mongodb-document-upload-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/mongodb-document-upload-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/mongodb-document-upload-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/mongodb-document-upload-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/mongodb-document-upload-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/mongodb-document-upload-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/mongodb-document-upload-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/mongodb-document-upload-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/mongodb-document-upload-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/mongodb-document-upload-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/mongodb-document-upload-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/mongodb-document-upload-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/mongodb-document-upload-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/mongodb-document-upload-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/mongodb-document-upload-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/mongodb-document-upload-plugin/deployments", + "created_at": "2013-05-13T08:17:39Z", + "updated_at": "2016-05-29T22:35:08Z", + "pushed_at": "2015-04-28T09:06:33Z", + "git_url": "git://github.com/jenkinsci/mongodb-document-upload-plugin.git", + "ssh_url": "git@github.com:jenkinsci/mongodb-document-upload-plugin.git", + "clone_url": "https://github.com/jenkinsci/mongodb-document-upload-plugin.git", + "svn_url": "https://github.com/jenkinsci/mongodb-document-upload-plugin", + "homepage": null, + "size": 198, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 10055312, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDA1NTMxMg==", + "name": "build-token-root-plugin", + "full_name": "jenkinsci/build-token-root-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/build-token-root-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/build-token-root-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/build-token-root-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/build-token-root-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/build-token-root-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/build-token-root-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/build-token-root-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/build-token-root-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/build-token-root-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/build-token-root-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/build-token-root-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/build-token-root-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/build-token-root-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/build-token-root-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/build-token-root-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/build-token-root-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/build-token-root-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/build-token-root-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/build-token-root-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/build-token-root-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/build-token-root-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/build-token-root-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/build-token-root-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/build-token-root-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/build-token-root-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/build-token-root-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/build-token-root-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/build-token-root-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/build-token-root-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/build-token-root-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/build-token-root-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/build-token-root-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/build-token-root-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/build-token-root-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/build-token-root-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/build-token-root-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/build-token-root-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/build-token-root-plugin/deployments", + "created_at": "2013-05-14T13:13:09Z", + "updated_at": "2019-09-27T00:16:43Z", + "pushed_at": "2019-10-18T12:32:38Z", + "git_url": "git://github.com/jenkinsci/build-token-root-plugin.git", + "ssh_url": "git@github.com:jenkinsci/build-token-root-plugin.git", + "clone_url": "https://github.com/jenkinsci/build-token-root-plugin.git", + "svn_url": "https://github.com/jenkinsci/build-token-root-plugin", + "homepage": "", + "size": 53, + "stargazers_count": 7, + "watchers_count": 7, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 16, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": null, + "forks": 16, + "open_issues": 3, + "watchers": 7, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 10065289, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDA2NTI4OQ==", + "name": "job-node-stalker-plugin", + "full_name": "jenkinsci/job-node-stalker-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/job-node-stalker-plugin", + "description": "Jenkins plugin that when configured will make the job to run where the referenced job has ran on previous build", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/job-node-stalker-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/job-node-stalker-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/job-node-stalker-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/job-node-stalker-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/job-node-stalker-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/job-node-stalker-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/job-node-stalker-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/job-node-stalker-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/job-node-stalker-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/job-node-stalker-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/job-node-stalker-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/job-node-stalker-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/job-node-stalker-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/job-node-stalker-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/job-node-stalker-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/job-node-stalker-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/job-node-stalker-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/job-node-stalker-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/job-node-stalker-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/job-node-stalker-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/job-node-stalker-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/job-node-stalker-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/job-node-stalker-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/job-node-stalker-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/job-node-stalker-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/job-node-stalker-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/job-node-stalker-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/job-node-stalker-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/job-node-stalker-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/job-node-stalker-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/job-node-stalker-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/job-node-stalker-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/job-node-stalker-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/job-node-stalker-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/job-node-stalker-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/job-node-stalker-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/job-node-stalker-plugin/deployments", + "created_at": "2013-05-14T21:26:58Z", + "updated_at": "2015-10-26T05:18:03Z", + "pushed_at": "2019-10-08T11:51:31Z", + "git_url": "git://github.com/jenkinsci/job-node-stalker-plugin.git", + "ssh_url": "git@github.com:jenkinsci/job-node-stalker-plugin.git", + "clone_url": "https://github.com/jenkinsci/job-node-stalker-plugin.git", + "svn_url": "https://github.com/jenkinsci/job-node-stalker-plugin", + "homepage": "", + "size": 103, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 6, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 10065359, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDA2NTM1OQ==", + "name": "collabnet-automic-deploy-plugin", + "full_name": "jenkinsci/collabnet-automic-deploy-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/collabnet-automic-deploy-plugin", + "description": "Jenkins plugin to support continuous deployment using Collabnet Teamforge and UC4", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/collabnet-automic-deploy-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/collabnet-automic-deploy-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/collabnet-automic-deploy-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/collabnet-automic-deploy-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/collabnet-automic-deploy-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/collabnet-automic-deploy-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/collabnet-automic-deploy-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/collabnet-automic-deploy-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/collabnet-automic-deploy-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/collabnet-automic-deploy-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/collabnet-automic-deploy-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/collabnet-automic-deploy-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/collabnet-automic-deploy-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/collabnet-automic-deploy-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/collabnet-automic-deploy-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/collabnet-automic-deploy-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/collabnet-automic-deploy-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/collabnet-automic-deploy-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/collabnet-automic-deploy-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/collabnet-automic-deploy-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/collabnet-automic-deploy-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/collabnet-automic-deploy-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/collabnet-automic-deploy-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/collabnet-automic-deploy-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/collabnet-automic-deploy-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/collabnet-automic-deploy-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/collabnet-automic-deploy-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/collabnet-automic-deploy-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/collabnet-automic-deploy-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/collabnet-automic-deploy-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/collabnet-automic-deploy-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/collabnet-automic-deploy-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/collabnet-automic-deploy-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/collabnet-automic-deploy-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/collabnet-automic-deploy-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/collabnet-automic-deploy-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/collabnet-automic-deploy-plugin/deployments", + "created_at": "2013-05-14T21:31:22Z", + "updated_at": "2013-11-10T01:57:33Z", + "pushed_at": "2013-11-10T01:57:31Z", + "git_url": "git://github.com/jenkinsci/collabnet-automic-deploy-plugin.git", + "ssh_url": "git@github.com:jenkinsci/collabnet-automic-deploy-plugin.git", + "clone_url": "https://github.com/jenkinsci/collabnet-automic-deploy-plugin.git", + "svn_url": "https://github.com/jenkinsci/collabnet-automic-deploy-plugin", + "homepage": null, + "size": 2040, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 10083228, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDA4MzIyOA==", + "name": "pretested-integration-plugin", + "full_name": "jenkinsci/pretested-integration-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pretested-integration-plugin", + "description": "A generic pretest commit plugin for Jenkins CI", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/pretested-integration-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pretested-integration-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pretested-integration-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pretested-integration-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pretested-integration-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pretested-integration-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pretested-integration-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pretested-integration-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pretested-integration-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pretested-integration-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pretested-integration-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pretested-integration-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pretested-integration-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pretested-integration-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pretested-integration-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pretested-integration-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pretested-integration-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pretested-integration-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pretested-integration-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pretested-integration-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pretested-integration-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pretested-integration-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pretested-integration-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pretested-integration-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pretested-integration-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pretested-integration-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pretested-integration-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pretested-integration-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pretested-integration-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pretested-integration-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pretested-integration-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pretested-integration-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pretested-integration-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pretested-integration-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pretested-integration-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pretested-integration-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pretested-integration-plugin/deployments", + "created_at": "2013-05-15T16:33:08Z", + "updated_at": "2017-07-18T07:24:40Z", + "pushed_at": "2018-02-26T12:19:48Z", + "git_url": "git://github.com/jenkinsci/pretested-integration-plugin.git", + "ssh_url": "git@github.com:jenkinsci/pretested-integration-plugin.git", + "clone_url": "https://github.com/jenkinsci/pretested-integration-plugin.git", + "svn_url": "https://github.com/jenkinsci/pretested-integration-plugin", + "homepage": null, + "size": 1517, + "stargazers_count": 11, + "watchers_count": 11, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 6, + "open_issues": 0, + "watchers": 11, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 10121794, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDEyMTc5NA==", + "name": "extreme-feedback-plugin", + "full_name": "jenkinsci/extreme-feedback-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/extreme-feedback-plugin", + "description": "A Jenkins plugin to manage the eXtreme Feedback lamps available on http://www.gitgear.com/xfd", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/extreme-feedback-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/extreme-feedback-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/extreme-feedback-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/extreme-feedback-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/extreme-feedback-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/extreme-feedback-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/extreme-feedback-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/extreme-feedback-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/extreme-feedback-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/extreme-feedback-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/extreme-feedback-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/extreme-feedback-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/extreme-feedback-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/extreme-feedback-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/extreme-feedback-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/extreme-feedback-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/extreme-feedback-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/extreme-feedback-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/extreme-feedback-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/extreme-feedback-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/extreme-feedback-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/extreme-feedback-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/extreme-feedback-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/extreme-feedback-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/extreme-feedback-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/extreme-feedback-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/extreme-feedback-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/extreme-feedback-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/extreme-feedback-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/extreme-feedback-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/extreme-feedback-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/extreme-feedback-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/extreme-feedback-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/extreme-feedback-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/extreme-feedback-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/extreme-feedback-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/extreme-feedback-plugin/deployments", + "created_at": "2013-05-17T11:17:23Z", + "updated_at": "2015-09-03T09:37:15Z", + "pushed_at": "2016-02-02T19:33:44Z", + "git_url": "git://github.com/jenkinsci/extreme-feedback-plugin.git", + "ssh_url": "git@github.com:jenkinsci/extreme-feedback-plugin.git", + "clone_url": "https://github.com/jenkinsci/extreme-feedback-plugin.git", + "svn_url": "https://github.com/jenkinsci/extreme-feedback-plugin", + "homepage": "http://www.gitgear.com/xfd", + "size": 164, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 6, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 10146783, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDE0Njc4Mw==", + "name": "iOS-AdHoc-Deployment-Plugin", + "full_name": "jenkinsci/iOS-AdHoc-Deployment-Plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/iOS-AdHoc-Deployment-Plugin", + "description": "This plugin helps to add Over The Air Ad-hoc deployment for your iOS builds.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/iOS-AdHoc-Deployment-Plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/iOS-AdHoc-Deployment-Plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/iOS-AdHoc-Deployment-Plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/iOS-AdHoc-Deployment-Plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/iOS-AdHoc-Deployment-Plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/iOS-AdHoc-Deployment-Plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/iOS-AdHoc-Deployment-Plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/iOS-AdHoc-Deployment-Plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/iOS-AdHoc-Deployment-Plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/iOS-AdHoc-Deployment-Plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/iOS-AdHoc-Deployment-Plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/iOS-AdHoc-Deployment-Plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/iOS-AdHoc-Deployment-Plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/iOS-AdHoc-Deployment-Plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/iOS-AdHoc-Deployment-Plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/iOS-AdHoc-Deployment-Plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/iOS-AdHoc-Deployment-Plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/iOS-AdHoc-Deployment-Plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/iOS-AdHoc-Deployment-Plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/iOS-AdHoc-Deployment-Plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/iOS-AdHoc-Deployment-Plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/iOS-AdHoc-Deployment-Plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/iOS-AdHoc-Deployment-Plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/iOS-AdHoc-Deployment-Plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/iOS-AdHoc-Deployment-Plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/iOS-AdHoc-Deployment-Plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/iOS-AdHoc-Deployment-Plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/iOS-AdHoc-Deployment-Plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/iOS-AdHoc-Deployment-Plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/iOS-AdHoc-Deployment-Plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/iOS-AdHoc-Deployment-Plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/iOS-AdHoc-Deployment-Plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/iOS-AdHoc-Deployment-Plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/iOS-AdHoc-Deployment-Plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/iOS-AdHoc-Deployment-Plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/iOS-AdHoc-Deployment-Plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/iOS-AdHoc-Deployment-Plugin/deployments", + "created_at": "2013-05-18T20:31:35Z", + "updated_at": "2017-03-20T16:07:08Z", + "pushed_at": "2015-08-14T20:18:22Z", + "git_url": "git://github.com/jenkinsci/iOS-AdHoc-Deployment-Plugin.git", + "ssh_url": "git@github.com:jenkinsci/iOS-AdHoc-Deployment-Plugin.git", + "clone_url": "https://github.com/jenkinsci/iOS-AdHoc-Deployment-Plugin.git", + "svn_url": "https://github.com/jenkinsci/iOS-AdHoc-Deployment-Plugin", + "homepage": null, + "size": 101316, + "stargazers_count": 9, + "watchers_count": 9, + "language": "Ruby", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 6, + "open_issues": 2, + "watchers": 9, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 10190599, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDE5MDU5OQ==", + "name": "gitlab-merge-request-builder-plugin", + "full_name": "jenkinsci/gitlab-merge-request-builder-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/gitlab-merge-request-builder-plugin", + "description": "A plugin that allows jenkins to build merge requests in Gitlab", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/gitlab-merge-request-builder-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/gitlab-merge-request-builder-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/gitlab-merge-request-builder-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/gitlab-merge-request-builder-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/gitlab-merge-request-builder-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/gitlab-merge-request-builder-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/gitlab-merge-request-builder-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/gitlab-merge-request-builder-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/gitlab-merge-request-builder-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/gitlab-merge-request-builder-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/gitlab-merge-request-builder-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/gitlab-merge-request-builder-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/gitlab-merge-request-builder-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/gitlab-merge-request-builder-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/gitlab-merge-request-builder-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/gitlab-merge-request-builder-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/gitlab-merge-request-builder-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/gitlab-merge-request-builder-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/gitlab-merge-request-builder-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/gitlab-merge-request-builder-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/gitlab-merge-request-builder-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/gitlab-merge-request-builder-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/gitlab-merge-request-builder-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/gitlab-merge-request-builder-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/gitlab-merge-request-builder-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/gitlab-merge-request-builder-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/gitlab-merge-request-builder-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/gitlab-merge-request-builder-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/gitlab-merge-request-builder-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/gitlab-merge-request-builder-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/gitlab-merge-request-builder-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/gitlab-merge-request-builder-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/gitlab-merge-request-builder-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/gitlab-merge-request-builder-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/gitlab-merge-request-builder-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/gitlab-merge-request-builder-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/gitlab-merge-request-builder-plugin/deployments", + "created_at": "2013-05-21T07:54:06Z", + "updated_at": "2019-08-14T03:38:56Z", + "pushed_at": "2019-09-24T10:29:47Z", + "git_url": "git://github.com/jenkinsci/gitlab-merge-request-builder-plugin.git", + "ssh_url": "git@github.com:jenkinsci/gitlab-merge-request-builder-plugin.git", + "clone_url": "https://github.com/jenkinsci/gitlab-merge-request-builder-plugin.git", + "svn_url": "https://github.com/jenkinsci/gitlab-merge-request-builder-plugin", + "homepage": null, + "size": 182, + "stargazers_count": 26, + "watchers_count": 26, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 7, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 7, + "open_issues": 1, + "watchers": 26, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 10192773, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDE5Mjc3Mw==", + "name": "matrix-checkout-strategies-plugin", + "full_name": "jenkinsci/matrix-checkout-strategies-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/matrix-checkout-strategies-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/matrix-checkout-strategies-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/matrix-checkout-strategies-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/matrix-checkout-strategies-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/matrix-checkout-strategies-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/matrix-checkout-strategies-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/matrix-checkout-strategies-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/matrix-checkout-strategies-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/matrix-checkout-strategies-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/matrix-checkout-strategies-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/matrix-checkout-strategies-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/matrix-checkout-strategies-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/matrix-checkout-strategies-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/matrix-checkout-strategies-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/matrix-checkout-strategies-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/matrix-checkout-strategies-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/matrix-checkout-strategies-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/matrix-checkout-strategies-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/matrix-checkout-strategies-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/matrix-checkout-strategies-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/matrix-checkout-strategies-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/matrix-checkout-strategies-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/matrix-checkout-strategies-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/matrix-checkout-strategies-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/matrix-checkout-strategies-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/matrix-checkout-strategies-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/matrix-checkout-strategies-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/matrix-checkout-strategies-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/matrix-checkout-strategies-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/matrix-checkout-strategies-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/matrix-checkout-strategies-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/matrix-checkout-strategies-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/matrix-checkout-strategies-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/matrix-checkout-strategies-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/matrix-checkout-strategies-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/matrix-checkout-strategies-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/matrix-checkout-strategies-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/matrix-checkout-strategies-plugin/deployments", + "created_at": "2013-05-21T10:02:50Z", + "updated_at": "2013-11-10T02:10:30Z", + "pushed_at": "2013-11-10T02:10:23Z", + "git_url": "git://github.com/jenkinsci/matrix-checkout-strategies-plugin.git", + "ssh_url": "git@github.com:jenkinsci/matrix-checkout-strategies-plugin.git", + "clone_url": "https://github.com/jenkinsci/matrix-checkout-strategies-plugin.git", + "svn_url": "https://github.com/jenkinsci/matrix-checkout-strategies-plugin", + "homepage": null, + "size": 74, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 10248248, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDI0ODI0OA==", + "name": "scala-junit-name-decoder-plugin", + "full_name": "jenkinsci/scala-junit-name-decoder-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/scala-junit-name-decoder-plugin", + "description": "Jenkins plugin to display Scala JUnit test names as they would appear in the source code", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/scala-junit-name-decoder-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/scala-junit-name-decoder-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/scala-junit-name-decoder-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/scala-junit-name-decoder-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/scala-junit-name-decoder-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/scala-junit-name-decoder-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/scala-junit-name-decoder-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/scala-junit-name-decoder-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/scala-junit-name-decoder-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/scala-junit-name-decoder-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/scala-junit-name-decoder-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/scala-junit-name-decoder-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/scala-junit-name-decoder-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/scala-junit-name-decoder-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/scala-junit-name-decoder-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/scala-junit-name-decoder-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/scala-junit-name-decoder-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/scala-junit-name-decoder-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/scala-junit-name-decoder-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/scala-junit-name-decoder-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/scala-junit-name-decoder-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/scala-junit-name-decoder-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/scala-junit-name-decoder-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/scala-junit-name-decoder-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/scala-junit-name-decoder-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/scala-junit-name-decoder-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/scala-junit-name-decoder-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/scala-junit-name-decoder-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/scala-junit-name-decoder-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/scala-junit-name-decoder-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/scala-junit-name-decoder-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/scala-junit-name-decoder-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/scala-junit-name-decoder-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/scala-junit-name-decoder-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/scala-junit-name-decoder-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/scala-junit-name-decoder-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/scala-junit-name-decoder-plugin/deployments", + "created_at": "2013-05-23T16:33:44Z", + "updated_at": "2013-11-10T02:16:19Z", + "pushed_at": "2013-11-10T02:16:16Z", + "git_url": "git://github.com/jenkinsci/scala-junit-name-decoder-plugin.git", + "ssh_url": "git@github.com:jenkinsci/scala-junit-name-decoder-plugin.git", + "clone_url": "https://github.com/jenkinsci/scala-junit-name-decoder-plugin.git", + "svn_url": "https://github.com/jenkinsci/scala-junit-name-decoder-plugin", + "homepage": null, + "size": 137, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 10272524, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDI3MjUyNA==", + "name": "categorized-view-plugin", + "full_name": "jenkinsci/categorized-view-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/categorized-view-plugin", + "description": "This is a plugin to create a new view named Categorized Jobs View, where jobs are grouped dynamically by regular expressions", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/categorized-view-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/categorized-view-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/categorized-view-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/categorized-view-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/categorized-view-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/categorized-view-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/categorized-view-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/categorized-view-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/categorized-view-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/categorized-view-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/categorized-view-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/categorized-view-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/categorized-view-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/categorized-view-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/categorized-view-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/categorized-view-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/categorized-view-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/categorized-view-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/categorized-view-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/categorized-view-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/categorized-view-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/categorized-view-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/categorized-view-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/categorized-view-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/categorized-view-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/categorized-view-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/categorized-view-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/categorized-view-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/categorized-view-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/categorized-view-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/categorized-view-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/categorized-view-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/categorized-view-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/categorized-view-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/categorized-view-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/categorized-view-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/categorized-view-plugin/deployments", + "created_at": "2013-05-24T18:31:11Z", + "updated_at": "2019-07-02T20:15:21Z", + "pushed_at": "2019-10-08T09:51:36Z", + "git_url": "git://github.com/jenkinsci/categorized-view-plugin.git", + "ssh_url": "git@github.com:jenkinsci/categorized-view-plugin.git", + "clone_url": "https://github.com/jenkinsci/categorized-view-plugin.git", + "svn_url": "https://github.com/jenkinsci/categorized-view-plugin", + "homepage": "", + "size": 98, + "stargazers_count": 8, + "watchers_count": 8, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 17, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 7, + "license": null, + "forks": 17, + "open_issues": 7, + "watchers": 8, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 10284067, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDI4NDA2Nw==", + "name": "pyenv-plugin", + "full_name": "jenkinsci/pyenv-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pyenv-plugin", + "description": "Jenkins pyenv plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/pyenv-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pyenv-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pyenv-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pyenv-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pyenv-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pyenv-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pyenv-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pyenv-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pyenv-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pyenv-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pyenv-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pyenv-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pyenv-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pyenv-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pyenv-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pyenv-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pyenv-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pyenv-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pyenv-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pyenv-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pyenv-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pyenv-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pyenv-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pyenv-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pyenv-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pyenv-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pyenv-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pyenv-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pyenv-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pyenv-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pyenv-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pyenv-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pyenv-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pyenv-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pyenv-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pyenv-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pyenv-plugin/deployments", + "created_at": "2013-05-25T12:51:22Z", + "updated_at": "2019-08-05T08:14:11Z", + "pushed_at": "2016-11-25T09:53:47Z", + "git_url": "git://github.com/jenkinsci/pyenv-plugin.git", + "ssh_url": "git@github.com:jenkinsci/pyenv-plugin.git", + "clone_url": "https://github.com/jenkinsci/pyenv-plugin.git", + "svn_url": "https://github.com/jenkinsci/pyenv-plugin", + "homepage": null, + "size": 38, + "stargazers_count": 10, + "watchers_count": 10, + "language": "Ruby", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 3, + "open_issues": 0, + "watchers": 10, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 10315848, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDMxNTg0OA==", + "name": "writable-filesystem-monitor", + "full_name": "jenkinsci/writable-filesystem-monitor", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/writable-filesystem-monitor", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/writable-filesystem-monitor", + "forks_url": "https://api.github.com/repos/jenkinsci/writable-filesystem-monitor/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/writable-filesystem-monitor/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/writable-filesystem-monitor/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/writable-filesystem-monitor/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/writable-filesystem-monitor/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/writable-filesystem-monitor/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/writable-filesystem-monitor/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/writable-filesystem-monitor/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/writable-filesystem-monitor/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/writable-filesystem-monitor/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/writable-filesystem-monitor/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/writable-filesystem-monitor/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/writable-filesystem-monitor/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/writable-filesystem-monitor/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/writable-filesystem-monitor/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/writable-filesystem-monitor/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/writable-filesystem-monitor/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/writable-filesystem-monitor/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/writable-filesystem-monitor/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/writable-filesystem-monitor/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/writable-filesystem-monitor/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/writable-filesystem-monitor/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/writable-filesystem-monitor/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/writable-filesystem-monitor/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/writable-filesystem-monitor/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/writable-filesystem-monitor/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/writable-filesystem-monitor/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/writable-filesystem-monitor/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/writable-filesystem-monitor/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/writable-filesystem-monitor/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/writable-filesystem-monitor/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/writable-filesystem-monitor/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/writable-filesystem-monitor/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/writable-filesystem-monitor/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/writable-filesystem-monitor/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/writable-filesystem-monitor/deployments", + "created_at": "2013-05-27T13:56:48Z", + "updated_at": "2013-11-10T02:23:01Z", + "pushed_at": "2013-11-10T02:22:58Z", + "git_url": "git://github.com/jenkinsci/writable-filesystem-monitor.git", + "ssh_url": "git@github.com:jenkinsci/writable-filesystem-monitor.git", + "clone_url": "https://github.com/jenkinsci/writable-filesystem-monitor.git", + "svn_url": "https://github.com/jenkinsci/writable-filesystem-monitor", + "homepage": "", + "size": 124, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 10355149, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDM1NTE0OQ==", + "name": "bitbucket-oauth-plugin", + "full_name": "jenkinsci/bitbucket-oauth-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/bitbucket-oauth-plugin", + "description": "A Jenkins Plugin that supports authentication via Bitbucket OAuth", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/bitbucket-oauth-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/bitbucket-oauth-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/bitbucket-oauth-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/bitbucket-oauth-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/bitbucket-oauth-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/bitbucket-oauth-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/bitbucket-oauth-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/bitbucket-oauth-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/bitbucket-oauth-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/bitbucket-oauth-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/bitbucket-oauth-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/bitbucket-oauth-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/bitbucket-oauth-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/bitbucket-oauth-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/bitbucket-oauth-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/bitbucket-oauth-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/bitbucket-oauth-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/bitbucket-oauth-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/bitbucket-oauth-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/bitbucket-oauth-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/bitbucket-oauth-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/bitbucket-oauth-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/bitbucket-oauth-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/bitbucket-oauth-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/bitbucket-oauth-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/bitbucket-oauth-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/bitbucket-oauth-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/bitbucket-oauth-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/bitbucket-oauth-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/bitbucket-oauth-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/bitbucket-oauth-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/bitbucket-oauth-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/bitbucket-oauth-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/bitbucket-oauth-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/bitbucket-oauth-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/bitbucket-oauth-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/bitbucket-oauth-plugin/deployments", + "created_at": "2013-05-29T08:23:38Z", + "updated_at": "2019-10-14T08:26:53Z", + "pushed_at": "2019-10-14T08:26:51Z", + "git_url": "git://github.com/jenkinsci/bitbucket-oauth-plugin.git", + "ssh_url": "git@github.com:jenkinsci/bitbucket-oauth-plugin.git", + "clone_url": "https://github.com/jenkinsci/bitbucket-oauth-plugin.git", + "svn_url": "https://github.com/jenkinsci/bitbucket-oauth-plugin", + "homepage": "", + "size": 49, + "stargazers_count": 14, + "watchers_count": 14, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 13, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 13, + "open_issues": 0, + "watchers": 14, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 10359623, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDM1OTYyMw==", + "name": "rusalad-plugin", + "full_name": "jenkinsci/rusalad-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/rusalad-plugin", + "description": "Test result publisher for Russian Salad test suite. See https://code.google.com/p/russian-salad/", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/rusalad-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/rusalad-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/rusalad-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/rusalad-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/rusalad-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/rusalad-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/rusalad-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/rusalad-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/rusalad-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/rusalad-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/rusalad-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/rusalad-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/rusalad-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/rusalad-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/rusalad-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/rusalad-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/rusalad-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/rusalad-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/rusalad-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/rusalad-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/rusalad-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/rusalad-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/rusalad-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/rusalad-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/rusalad-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/rusalad-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/rusalad-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/rusalad-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/rusalad-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/rusalad-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/rusalad-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/rusalad-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/rusalad-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/rusalad-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/rusalad-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/rusalad-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/rusalad-plugin/deployments", + "created_at": "2013-05-29T12:58:21Z", + "updated_at": "2013-11-10T02:16:07Z", + "pushed_at": "2013-11-10T02:16:01Z", + "git_url": "git://github.com/jenkinsci/rusalad-plugin.git", + "ssh_url": "git@github.com:jenkinsci/rusalad-plugin.git", + "clone_url": "https://github.com/jenkinsci/rusalad-plugin.git", + "svn_url": "https://github.com/jenkinsci/rusalad-plugin", + "homepage": null, + "size": 401, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 10414359, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDQxNDM1OQ==", + "name": "parallel-test-executor-plugin", + "full_name": "jenkinsci/parallel-test-executor-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/parallel-test-executor-plugin", + "description": "Parallel test executor plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/parallel-test-executor-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/parallel-test-executor-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/parallel-test-executor-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/parallel-test-executor-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/parallel-test-executor-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/parallel-test-executor-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/parallel-test-executor-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/parallel-test-executor-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/parallel-test-executor-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/parallel-test-executor-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/parallel-test-executor-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/parallel-test-executor-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/parallel-test-executor-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/parallel-test-executor-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/parallel-test-executor-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/parallel-test-executor-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/parallel-test-executor-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/parallel-test-executor-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/parallel-test-executor-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/parallel-test-executor-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/parallel-test-executor-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/parallel-test-executor-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/parallel-test-executor-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/parallel-test-executor-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/parallel-test-executor-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/parallel-test-executor-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/parallel-test-executor-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/parallel-test-executor-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/parallel-test-executor-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/parallel-test-executor-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/parallel-test-executor-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/parallel-test-executor-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/parallel-test-executor-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/parallel-test-executor-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/parallel-test-executor-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/parallel-test-executor-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/parallel-test-executor-plugin/deployments", + "created_at": "2013-05-31T22:46:53Z", + "updated_at": "2019-09-23T12:16:40Z", + "pushed_at": "2019-10-14T13:20:38Z", + "git_url": "git://github.com/jenkinsci/parallel-test-executor-plugin.git", + "ssh_url": "git@github.com:jenkinsci/parallel-test-executor-plugin.git", + "clone_url": "https://github.com/jenkinsci/parallel-test-executor-plugin.git", + "svn_url": "https://github.com/jenkinsci/parallel-test-executor-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Parallel+Test+Executor+Plugin", + "size": 242, + "stargazers_count": 38, + "watchers_count": 38, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 49, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 23, + "license": null, + "forks": 49, + "open_issues": 23, + "watchers": 38, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 10419213, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDQxOTIxMw==", + "name": "nuget-plugin", + "full_name": "jenkinsci/nuget-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/nuget-plugin", + "description": "A Jenkins plugin for nuget", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/nuget-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/nuget-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/nuget-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/nuget-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/nuget-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/nuget-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/nuget-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/nuget-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/nuget-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/nuget-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/nuget-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/nuget-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/nuget-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/nuget-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/nuget-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/nuget-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/nuget-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/nuget-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/nuget-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/nuget-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/nuget-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/nuget-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/nuget-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/nuget-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/nuget-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/nuget-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/nuget-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/nuget-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/nuget-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/nuget-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/nuget-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/nuget-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/nuget-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/nuget-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/nuget-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/nuget-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/nuget-plugin/deployments", + "created_at": "2013-06-01T07:29:45Z", + "updated_at": "2019-07-15T11:03:24Z", + "pushed_at": "2019-10-08T10:14:33Z", + "git_url": "git://github.com/jenkinsci/nuget-plugin.git", + "ssh_url": "git@github.com:jenkinsci/nuget-plugin.git", + "clone_url": "https://github.com/jenkinsci/nuget-plugin.git", + "svn_url": "https://github.com/jenkinsci/nuget-plugin", + "homepage": null, + "size": 92, + "stargazers_count": 9, + "watchers_count": 9, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 13, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 13, + "open_issues": 2, + "watchers": 9, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 10420600, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDQyMDYwMA==", + "name": "icescrum-plugin", + "full_name": "jenkinsci/icescrum-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/icescrum-plugin", + "description": "Jenkins plugin for iceScrum", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/icescrum-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/icescrum-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/icescrum-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/icescrum-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/icescrum-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/icescrum-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/icescrum-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/icescrum-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/icescrum-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/icescrum-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/icescrum-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/icescrum-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/icescrum-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/icescrum-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/icescrum-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/icescrum-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/icescrum-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/icescrum-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/icescrum-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/icescrum-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/icescrum-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/icescrum-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/icescrum-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/icescrum-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/icescrum-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/icescrum-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/icescrum-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/icescrum-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/icescrum-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/icescrum-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/icescrum-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/icescrum-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/icescrum-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/icescrum-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/icescrum-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/icescrum-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/icescrum-plugin/deployments", + "created_at": "2013-06-01T10:04:43Z", + "updated_at": "2019-09-30T20:52:21Z", + "pushed_at": "2019-09-30T20:52:19Z", + "git_url": "git://github.com/jenkinsci/icescrum-plugin.git", + "ssh_url": "git@github.com:jenkinsci/icescrum-plugin.git", + "clone_url": "https://github.com/jenkinsci/icescrum-plugin.git", + "svn_url": "https://github.com/jenkinsci/icescrum-plugin", + "homepage": null, + "size": 72, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 4, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 10440709, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDQ0MDcwOQ==", + "name": "parallel-test-executor-plugin-sample", + "full_name": "jenkinsci/parallel-test-executor-plugin-sample", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/parallel-test-executor-plugin-sample", + "description": "Sample project for parallel test executor plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/parallel-test-executor-plugin-sample", + "forks_url": "https://api.github.com/repos/jenkinsci/parallel-test-executor-plugin-sample/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/parallel-test-executor-plugin-sample/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/parallel-test-executor-plugin-sample/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/parallel-test-executor-plugin-sample/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/parallel-test-executor-plugin-sample/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/parallel-test-executor-plugin-sample/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/parallel-test-executor-plugin-sample/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/parallel-test-executor-plugin-sample/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/parallel-test-executor-plugin-sample/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/parallel-test-executor-plugin-sample/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/parallel-test-executor-plugin-sample/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/parallel-test-executor-plugin-sample/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/parallel-test-executor-plugin-sample/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/parallel-test-executor-plugin-sample/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/parallel-test-executor-plugin-sample/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/parallel-test-executor-plugin-sample/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/parallel-test-executor-plugin-sample/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/parallel-test-executor-plugin-sample/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/parallel-test-executor-plugin-sample/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/parallel-test-executor-plugin-sample/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/parallel-test-executor-plugin-sample/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/parallel-test-executor-plugin-sample/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/parallel-test-executor-plugin-sample/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/parallel-test-executor-plugin-sample/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/parallel-test-executor-plugin-sample/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/parallel-test-executor-plugin-sample/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/parallel-test-executor-plugin-sample/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/parallel-test-executor-plugin-sample/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/parallel-test-executor-plugin-sample/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/parallel-test-executor-plugin-sample/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/parallel-test-executor-plugin-sample/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/parallel-test-executor-plugin-sample/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/parallel-test-executor-plugin-sample/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/parallel-test-executor-plugin-sample/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/parallel-test-executor-plugin-sample/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/parallel-test-executor-plugin-sample/deployments", + "created_at": "2013-06-02T19:01:08Z", + "updated_at": "2019-09-05T14:03:19Z", + "pushed_at": "2019-02-18T22:00:59Z", + "git_url": "git://github.com/jenkinsci/parallel-test-executor-plugin-sample.git", + "ssh_url": "git@github.com:jenkinsci/parallel-test-executor-plugin-sample.git", + "clone_url": "https://github.com/jenkinsci/parallel-test-executor-plugin-sample.git", + "svn_url": "https://github.com/jenkinsci/parallel-test-executor-plugin-sample", + "homepage": null, + "size": 7659, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Shell", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 10, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 10, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 10442624, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDQ0MjYyNA==", + "name": "rest-service-scheduler-plugin", + "full_name": "jenkinsci/rest-service-scheduler-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/rest-service-scheduler-plugin", + "description": "DEPRECATED: do not use ", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/rest-service-scheduler-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/rest-service-scheduler-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/rest-service-scheduler-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/rest-service-scheduler-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/rest-service-scheduler-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/rest-service-scheduler-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/rest-service-scheduler-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/rest-service-scheduler-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/rest-service-scheduler-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/rest-service-scheduler-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/rest-service-scheduler-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/rest-service-scheduler-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/rest-service-scheduler-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/rest-service-scheduler-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/rest-service-scheduler-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/rest-service-scheduler-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/rest-service-scheduler-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/rest-service-scheduler-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/rest-service-scheduler-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/rest-service-scheduler-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/rest-service-scheduler-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/rest-service-scheduler-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/rest-service-scheduler-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/rest-service-scheduler-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/rest-service-scheduler-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/rest-service-scheduler-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/rest-service-scheduler-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/rest-service-scheduler-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/rest-service-scheduler-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/rest-service-scheduler-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/rest-service-scheduler-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/rest-service-scheduler-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/rest-service-scheduler-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/rest-service-scheduler-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/rest-service-scheduler-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/rest-service-scheduler-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/rest-service-scheduler-plugin/deployments", + "created_at": "2013-06-02T21:40:52Z", + "updated_at": "2019-01-23T08:57:24Z", + "pushed_at": "2019-01-23T08:57:23Z", + "git_url": "git://github.com/jenkinsci/rest-service-scheduler-plugin.git", + "ssh_url": "git@github.com:jenkinsci/rest-service-scheduler-plugin.git", + "clone_url": "https://github.com/jenkinsci/rest-service-scheduler-plugin.git", + "svn_url": "https://github.com/jenkinsci/rest-service-scheduler-plugin", + "homepage": "", + "size": 17, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 10473346, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDQ3MzM0Ng==", + "name": "leastload-plugin", + "full_name": "jenkinsci/leastload-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/leastload-plugin", + "description": "Least Load Plugin - Alters Load Balancer to choose least loaded node", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/leastload-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/leastload-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/leastload-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/leastload-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/leastload-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/leastload-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/leastload-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/leastload-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/leastload-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/leastload-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/leastload-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/leastload-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/leastload-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/leastload-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/leastload-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/leastload-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/leastload-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/leastload-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/leastload-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/leastload-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/leastload-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/leastload-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/leastload-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/leastload-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/leastload-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/leastload-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/leastload-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/leastload-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/leastload-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/leastload-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/leastload-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/leastload-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/leastload-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/leastload-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/leastload-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/leastload-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/leastload-plugin/deployments", + "created_at": "2013-06-04T07:39:27Z", + "updated_at": "2019-10-14T06:05:27Z", + "pushed_at": "2019-10-08T11:31:41Z", + "git_url": "git://github.com/jenkinsci/leastload-plugin.git", + "ssh_url": "git@github.com:jenkinsci/leastload-plugin.git", + "clone_url": "https://github.com/jenkinsci/leastload-plugin.git", + "svn_url": "https://github.com/jenkinsci/leastload-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Least+Load+Plugin", + "size": 43, + "stargazers_count": 14, + "watchers_count": 14, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 15, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 5, + "license": null, + "forks": 15, + "open_issues": 5, + "watchers": 14, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 10479613, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDQ3OTYxMw==", + "name": "team-views-plugin", + "full_name": "jenkinsci/team-views-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/team-views-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/team-views-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/team-views-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/team-views-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/team-views-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/team-views-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/team-views-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/team-views-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/team-views-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/team-views-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/team-views-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/team-views-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/team-views-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/team-views-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/team-views-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/team-views-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/team-views-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/team-views-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/team-views-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/team-views-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/team-views-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/team-views-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/team-views-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/team-views-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/team-views-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/team-views-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/team-views-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/team-views-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/team-views-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/team-views-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/team-views-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/team-views-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/team-views-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/team-views-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/team-views-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/team-views-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/team-views-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/team-views-plugin/deployments", + "created_at": "2013-06-04T13:47:18Z", + "updated_at": "2013-11-10T02:20:14Z", + "pushed_at": "2019-10-08T12:39:35Z", + "git_url": "git://github.com/jenkinsci/team-views-plugin.git", + "ssh_url": "git@github.com:jenkinsci/team-views-plugin.git", + "clone_url": "https://github.com/jenkinsci/team-views-plugin.git", + "svn_url": "https://github.com/jenkinsci/team-views-plugin", + "homepage": "", + "size": 172, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 2, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 10481023, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDQ4MTAyMw==", + "name": "groovy-script-scheduler-plugin", + "full_name": "jenkinsci/groovy-script-scheduler-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/groovy-script-scheduler-plugin", + "description": "Delegate scheduler decisions to custom Groovy script", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/groovy-script-scheduler-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/groovy-script-scheduler-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/groovy-script-scheduler-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/groovy-script-scheduler-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/groovy-script-scheduler-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/groovy-script-scheduler-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/groovy-script-scheduler-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/groovy-script-scheduler-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/groovy-script-scheduler-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/groovy-script-scheduler-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/groovy-script-scheduler-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/groovy-script-scheduler-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/groovy-script-scheduler-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/groovy-script-scheduler-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/groovy-script-scheduler-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/groovy-script-scheduler-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/groovy-script-scheduler-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/groovy-script-scheduler-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/groovy-script-scheduler-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/groovy-script-scheduler-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/groovy-script-scheduler-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/groovy-script-scheduler-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/groovy-script-scheduler-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/groovy-script-scheduler-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/groovy-script-scheduler-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/groovy-script-scheduler-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/groovy-script-scheduler-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/groovy-script-scheduler-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/groovy-script-scheduler-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/groovy-script-scheduler-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/groovy-script-scheduler-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/groovy-script-scheduler-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/groovy-script-scheduler-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/groovy-script-scheduler-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/groovy-script-scheduler-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/groovy-script-scheduler-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/groovy-script-scheduler-plugin/deployments", + "created_at": "2013-06-04T14:50:31Z", + "updated_at": "2016-06-05T06:43:24Z", + "pushed_at": "2013-06-04T14:53:40Z", + "git_url": "git://github.com/jenkinsci/groovy-script-scheduler-plugin.git", + "ssh_url": "git@github.com:jenkinsci/groovy-script-scheduler-plugin.git", + "clone_url": "https://github.com/jenkinsci/groovy-script-scheduler-plugin.git", + "svn_url": "https://github.com/jenkinsci/groovy-script-scheduler-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Groovy+Script+Scheduler+Plugin", + "size": 108, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 10502151, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDUwMjE1MQ==", + "name": "groovy-label-assignment-plugin", + "full_name": "jenkinsci/groovy-label-assignment-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/groovy-label-assignment-plugin", + "description": "Jenkins plugin to set label dynamically with scripts ", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/groovy-label-assignment-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/groovy-label-assignment-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/groovy-label-assignment-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/groovy-label-assignment-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/groovy-label-assignment-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/groovy-label-assignment-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/groovy-label-assignment-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/groovy-label-assignment-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/groovy-label-assignment-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/groovy-label-assignment-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/groovy-label-assignment-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/groovy-label-assignment-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/groovy-label-assignment-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/groovy-label-assignment-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/groovy-label-assignment-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/groovy-label-assignment-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/groovy-label-assignment-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/groovy-label-assignment-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/groovy-label-assignment-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/groovy-label-assignment-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/groovy-label-assignment-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/groovy-label-assignment-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/groovy-label-assignment-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/groovy-label-assignment-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/groovy-label-assignment-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/groovy-label-assignment-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/groovy-label-assignment-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/groovy-label-assignment-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/groovy-label-assignment-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/groovy-label-assignment-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/groovy-label-assignment-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/groovy-label-assignment-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/groovy-label-assignment-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/groovy-label-assignment-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/groovy-label-assignment-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/groovy-label-assignment-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/groovy-label-assignment-plugin/deployments", + "created_at": "2013-06-05T12:38:28Z", + "updated_at": "2019-10-09T08:15:00Z", + "pushed_at": "2019-10-09T08:14:58Z", + "git_url": "git://github.com/jenkinsci/groovy-label-assignment-plugin.git", + "ssh_url": "git@github.com:jenkinsci/groovy-label-assignment-plugin.git", + "clone_url": "https://github.com/jenkinsci/groovy-label-assignment-plugin.git", + "svn_url": "https://github.com/jenkinsci/groovy-label-assignment-plugin", + "homepage": null, + "size": 64, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 6, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 10545007, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDU0NTAwNw==", + "name": "test-plexus-component", + "full_name": "jenkinsci/test-plexus-component", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/test-plexus-component", + "description": "A plexus component in a jar file for testing Maven integration in Jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/test-plexus-component", + "forks_url": "https://api.github.com/repos/jenkinsci/test-plexus-component/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/test-plexus-component/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/test-plexus-component/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/test-plexus-component/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/test-plexus-component/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/test-plexus-component/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/test-plexus-component/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/test-plexus-component/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/test-plexus-component/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/test-plexus-component/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/test-plexus-component/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/test-plexus-component/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/test-plexus-component/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/test-plexus-component/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/test-plexus-component/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/test-plexus-component/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/test-plexus-component/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/test-plexus-component/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/test-plexus-component/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/test-plexus-component/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/test-plexus-component/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/test-plexus-component/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/test-plexus-component/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/test-plexus-component/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/test-plexus-component/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/test-plexus-component/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/test-plexus-component/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/test-plexus-component/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/test-plexus-component/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/test-plexus-component/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/test-plexus-component/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/test-plexus-component/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/test-plexus-component/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/test-plexus-component/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/test-plexus-component/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/test-plexus-component/deployments", + "created_at": "2013-06-07T07:51:54Z", + "updated_at": "2014-04-03T19:20:07Z", + "pushed_at": "2013-06-07T07:55:18Z", + "git_url": "git://github.com/jenkinsci/test-plexus-component.git", + "ssh_url": "git@github.com:jenkinsci/test-plexus-component.git", + "clone_url": "https://github.com/jenkinsci/test-plexus-component.git", + "svn_url": "https://github.com/jenkinsci/test-plexus-component", + "homepage": null, + "size": 116, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 10558507, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDU1ODUwNw==", + "name": "enhanced-old-build-discarder-plugin", + "full_name": "jenkinsci/enhanced-old-build-discarder-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/enhanced-old-build-discarder-plugin", + "description": "Implements a DiscardOldBuild strategy for jenkins that prevents removal of build history if the build is unstable", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/enhanced-old-build-discarder-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/enhanced-old-build-discarder-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/enhanced-old-build-discarder-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/enhanced-old-build-discarder-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/enhanced-old-build-discarder-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/enhanced-old-build-discarder-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/enhanced-old-build-discarder-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/enhanced-old-build-discarder-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/enhanced-old-build-discarder-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/enhanced-old-build-discarder-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/enhanced-old-build-discarder-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/enhanced-old-build-discarder-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/enhanced-old-build-discarder-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/enhanced-old-build-discarder-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/enhanced-old-build-discarder-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/enhanced-old-build-discarder-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/enhanced-old-build-discarder-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/enhanced-old-build-discarder-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/enhanced-old-build-discarder-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/enhanced-old-build-discarder-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/enhanced-old-build-discarder-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/enhanced-old-build-discarder-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/enhanced-old-build-discarder-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/enhanced-old-build-discarder-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/enhanced-old-build-discarder-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/enhanced-old-build-discarder-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/enhanced-old-build-discarder-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/enhanced-old-build-discarder-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/enhanced-old-build-discarder-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/enhanced-old-build-discarder-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/enhanced-old-build-discarder-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/enhanced-old-build-discarder-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/enhanced-old-build-discarder-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/enhanced-old-build-discarder-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/enhanced-old-build-discarder-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/enhanced-old-build-discarder-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/enhanced-old-build-discarder-plugin/deployments", + "created_at": "2013-06-07T20:41:12Z", + "updated_at": "2019-08-01T18:02:23Z", + "pushed_at": "2019-08-01T18:02:21Z", + "git_url": "git://github.com/jenkinsci/enhanced-old-build-discarder-plugin.git", + "ssh_url": "git@github.com:jenkinsci/enhanced-old-build-discarder-plugin.git", + "clone_url": "https://github.com/jenkinsci/enhanced-old-build-discarder-plugin.git", + "svn_url": "https://github.com/jenkinsci/enhanced-old-build-discarder-plugin", + "homepage": null, + "size": 99, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 3, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 10609224, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDYwOTIyNA==", + "name": "build-with-parameters-plugin", + "full_name": "jenkinsci/build-with-parameters-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/build-with-parameters-plugin", + "description": "Allows the user to provide parameters for a build in the url (similar to /job/JOBNAME/buildWithParameters), prompting for confirmation before triggering the job.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/build-with-parameters-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/build-with-parameters-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/build-with-parameters-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/build-with-parameters-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/build-with-parameters-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/build-with-parameters-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/build-with-parameters-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/build-with-parameters-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/build-with-parameters-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/build-with-parameters-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/build-with-parameters-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/build-with-parameters-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/build-with-parameters-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/build-with-parameters-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/build-with-parameters-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/build-with-parameters-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/build-with-parameters-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/build-with-parameters-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/build-with-parameters-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/build-with-parameters-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/build-with-parameters-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/build-with-parameters-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/build-with-parameters-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/build-with-parameters-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/build-with-parameters-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/build-with-parameters-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/build-with-parameters-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/build-with-parameters-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/build-with-parameters-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/build-with-parameters-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/build-with-parameters-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/build-with-parameters-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/build-with-parameters-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/build-with-parameters-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/build-with-parameters-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/build-with-parameters-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/build-with-parameters-plugin/deployments", + "created_at": "2013-06-10T20:52:30Z", + "updated_at": "2019-07-02T07:56:13Z", + "pushed_at": "2019-09-24T10:17:07Z", + "git_url": "git://github.com/jenkinsci/build-with-parameters-plugin.git", + "ssh_url": "git@github.com:jenkinsci/build-with-parameters-plugin.git", + "clone_url": "https://github.com/jenkinsci/build-with-parameters-plugin.git", + "svn_url": "https://github.com/jenkinsci/build-with-parameters-plugin", + "homepage": null, + "size": 143, + "stargazers_count": 14, + "watchers_count": 14, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 25, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": null, + "forks": 25, + "open_issues": 3, + "watchers": 14, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 10626382, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDYyNjM4Mg==", + "name": "datical-db-plugin", + "full_name": "jenkinsci/datical-db-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/datical-db-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/datical-db-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/datical-db-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/datical-db-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/datical-db-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/datical-db-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/datical-db-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/datical-db-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/datical-db-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/datical-db-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/datical-db-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/datical-db-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/datical-db-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/datical-db-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/datical-db-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/datical-db-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/datical-db-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/datical-db-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/datical-db-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/datical-db-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/datical-db-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/datical-db-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/datical-db-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/datical-db-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/datical-db-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/datical-db-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/datical-db-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/datical-db-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/datical-db-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/datical-db-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/datical-db-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/datical-db-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/datical-db-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/datical-db-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/datical-db-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/datical-db-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/datical-db-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/datical-db-plugin/deployments", + "created_at": "2013-06-11T17:06:47Z", + "updated_at": "2017-06-28T14:30:10Z", + "pushed_at": "2017-08-01T14:51:04Z", + "git_url": "git://github.com/jenkinsci/datical-db-plugin.git", + "ssh_url": "git@github.com:jenkinsci/datical-db-plugin.git", + "clone_url": "https://github.com/jenkinsci/datical-db-plugin.git", + "svn_url": "https://github.com/jenkinsci/datical-db-plugin", + "homepage": null, + "size": 57250, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 2, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 10732823, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDczMjgyMw==", + "name": "loaderio-plugin", + "full_name": "jenkinsci/loaderio-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/loaderio-plugin", + "description": "loaderio jenkins plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/loaderio-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/loaderio-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/loaderio-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/loaderio-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/loaderio-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/loaderio-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/loaderio-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/loaderio-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/loaderio-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/loaderio-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/loaderio-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/loaderio-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/loaderio-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/loaderio-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/loaderio-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/loaderio-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/loaderio-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/loaderio-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/loaderio-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/loaderio-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/loaderio-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/loaderio-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/loaderio-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/loaderio-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/loaderio-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/loaderio-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/loaderio-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/loaderio-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/loaderio-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/loaderio-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/loaderio-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/loaderio-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/loaderio-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/loaderio-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/loaderio-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/loaderio-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/loaderio-plugin/deployments", + "created_at": "2013-06-17T08:09:57Z", + "updated_at": "2016-06-08T14:00:02Z", + "pushed_at": "2013-11-10T02:09:39Z", + "git_url": "git://github.com/jenkinsci/loaderio-plugin.git", + "ssh_url": "git@github.com:jenkinsci/loaderio-plugin.git", + "clone_url": "https://github.com/jenkinsci/loaderio-plugin.git", + "svn_url": "https://github.com/jenkinsci/loaderio-plugin", + "homepage": null, + "size": 218, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 10741919, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDc0MTkxOQ==", + "name": "mount-point-disk-space-monitor-plugin", + "full_name": "jenkinsci/mount-point-disk-space-monitor-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/mount-point-disk-space-monitor-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/mount-point-disk-space-monitor-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/mount-point-disk-space-monitor-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/mount-point-disk-space-monitor-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/mount-point-disk-space-monitor-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/mount-point-disk-space-monitor-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/mount-point-disk-space-monitor-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/mount-point-disk-space-monitor-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/mount-point-disk-space-monitor-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/mount-point-disk-space-monitor-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/mount-point-disk-space-monitor-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/mount-point-disk-space-monitor-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/mount-point-disk-space-monitor-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/mount-point-disk-space-monitor-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/mount-point-disk-space-monitor-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/mount-point-disk-space-monitor-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/mount-point-disk-space-monitor-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/mount-point-disk-space-monitor-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/mount-point-disk-space-monitor-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/mount-point-disk-space-monitor-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/mount-point-disk-space-monitor-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/mount-point-disk-space-monitor-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/mount-point-disk-space-monitor-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/mount-point-disk-space-monitor-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/mount-point-disk-space-monitor-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/mount-point-disk-space-monitor-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/mount-point-disk-space-monitor-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/mount-point-disk-space-monitor-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/mount-point-disk-space-monitor-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/mount-point-disk-space-monitor-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/mount-point-disk-space-monitor-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/mount-point-disk-space-monitor-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/mount-point-disk-space-monitor-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/mount-point-disk-space-monitor-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/mount-point-disk-space-monitor-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/mount-point-disk-space-monitor-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/mount-point-disk-space-monitor-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/mount-point-disk-space-monitor-plugin/deployments", + "created_at": "2013-06-17T16:36:58Z", + "updated_at": "2018-01-09T03:29:05Z", + "pushed_at": "2013-06-17T16:39:48Z", + "git_url": "git://github.com/jenkinsci/mount-point-disk-space-monitor-plugin.git", + "ssh_url": "git@github.com:jenkinsci/mount-point-disk-space-monitor-plugin.git", + "clone_url": "https://github.com/jenkinsci/mount-point-disk-space-monitor-plugin.git", + "svn_url": "https://github.com/jenkinsci/mount-point-disk-space-monitor-plugin", + "homepage": null, + "size": 108, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 10773104, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDc3MzEwNA==", + "name": "app.io-plugin", + "full_name": "jenkinsci/app.io-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/app.io-plugin", + "description": "Jenkins CI plugin for App.io", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/app.io-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/app.io-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/app.io-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/app.io-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/app.io-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/app.io-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/app.io-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/app.io-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/app.io-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/app.io-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/app.io-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/app.io-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/app.io-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/app.io-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/app.io-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/app.io-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/app.io-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/app.io-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/app.io-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/app.io-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/app.io-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/app.io-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/app.io-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/app.io-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/app.io-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/app.io-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/app.io-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/app.io-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/app.io-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/app.io-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/app.io-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/app.io-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/app.io-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/app.io-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/app.io-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/app.io-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/app.io-plugin/deployments", + "created_at": "2013-06-18T20:42:12Z", + "updated_at": "2014-07-10T13:19:12Z", + "pushed_at": "2013-11-10T01:52:52Z", + "git_url": "git://github.com/jenkinsci/app.io-plugin.git", + "ssh_url": "git@github.com:jenkinsci/app.io-plugin.git", + "clone_url": "https://github.com/jenkinsci/app.io-plugin.git", + "svn_url": "https://github.com/jenkinsci/app.io-plugin", + "homepage": null, + "size": 393, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 1, + "open_issues": 1, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 10783034, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDc4MzAzNA==", + "name": "rich-text-publisher-plugin", + "full_name": "jenkinsci/rich-text-publisher-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/rich-text-publisher-plugin", + "description": "Jenkins Rich Text Pulisher plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/rich-text-publisher-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/rich-text-publisher-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/rich-text-publisher-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/rich-text-publisher-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/rich-text-publisher-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/rich-text-publisher-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/rich-text-publisher-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/rich-text-publisher-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/rich-text-publisher-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/rich-text-publisher-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/rich-text-publisher-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/rich-text-publisher-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/rich-text-publisher-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/rich-text-publisher-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/rich-text-publisher-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/rich-text-publisher-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/rich-text-publisher-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/rich-text-publisher-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/rich-text-publisher-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/rich-text-publisher-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/rich-text-publisher-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/rich-text-publisher-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/rich-text-publisher-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/rich-text-publisher-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/rich-text-publisher-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/rich-text-publisher-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/rich-text-publisher-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/rich-text-publisher-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/rich-text-publisher-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/rich-text-publisher-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/rich-text-publisher-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/rich-text-publisher-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/rich-text-publisher-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/rich-text-publisher-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/rich-text-publisher-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/rich-text-publisher-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/rich-text-publisher-plugin/deployments", + "created_at": "2013-06-19T06:34:58Z", + "updated_at": "2018-07-19T06:59:11Z", + "pushed_at": "2019-10-08T11:13:21Z", + "git_url": "git://github.com/jenkinsci/rich-text-publisher-plugin.git", + "ssh_url": "git@github.com:jenkinsci/rich-text-publisher-plugin.git", + "clone_url": "https://github.com/jenkinsci/rich-text-publisher-plugin.git", + "svn_url": "https://github.com/jenkinsci/rich-text-publisher-plugin", + "homepage": null, + "size": 78, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 13, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 13, + "open_issues": 2, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 10803255, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDgwMzI1NQ==", + "name": "test-stability-plugin", + "full_name": "jenkinsci/test-stability-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/test-stability-plugin", + "description": "Test stability statistics plugin for Jenkins", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/test-stability-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/test-stability-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/test-stability-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/test-stability-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/test-stability-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/test-stability-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/test-stability-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/test-stability-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/test-stability-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/test-stability-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/test-stability-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/test-stability-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/test-stability-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/test-stability-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/test-stability-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/test-stability-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/test-stability-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/test-stability-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/test-stability-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/test-stability-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/test-stability-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/test-stability-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/test-stability-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/test-stability-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/test-stability-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/test-stability-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/test-stability-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/test-stability-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/test-stability-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/test-stability-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/test-stability-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/test-stability-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/test-stability-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/test-stability-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/test-stability-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/test-stability-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/test-stability-plugin/deployments", + "created_at": "2013-06-19T18:34:04Z", + "updated_at": "2019-06-09T10:17:51Z", + "pushed_at": "2017-12-12T05:51:05Z", + "git_url": "git://github.com/jenkinsci/test-stability-plugin.git", + "ssh_url": "git@github.com:jenkinsci/test-stability-plugin.git", + "clone_url": "https://github.com/jenkinsci/test-stability-plugin.git", + "svn_url": "https://github.com/jenkinsci/test-stability-plugin", + "homepage": null, + "size": 67, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 15, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 15, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 10842256, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDg0MjI1Ng==", + "name": "call-remote-job-plugin", + "full_name": "jenkinsci/call-remote-job-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/call-remote-job-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/call-remote-job-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/call-remote-job-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/call-remote-job-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/call-remote-job-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/call-remote-job-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/call-remote-job-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/call-remote-job-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/call-remote-job-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/call-remote-job-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/call-remote-job-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/call-remote-job-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/call-remote-job-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/call-remote-job-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/call-remote-job-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/call-remote-job-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/call-remote-job-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/call-remote-job-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/call-remote-job-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/call-remote-job-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/call-remote-job-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/call-remote-job-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/call-remote-job-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/call-remote-job-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/call-remote-job-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/call-remote-job-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/call-remote-job-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/call-remote-job-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/call-remote-job-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/call-remote-job-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/call-remote-job-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/call-remote-job-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/call-remote-job-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/call-remote-job-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/call-remote-job-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/call-remote-job-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/call-remote-job-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/call-remote-job-plugin/deployments", + "created_at": "2013-06-21T12:40:07Z", + "updated_at": "2018-01-31T10:24:25Z", + "pushed_at": "2019-10-08T11:49:14Z", + "git_url": "git://github.com/jenkinsci/call-remote-job-plugin.git", + "ssh_url": "git@github.com:jenkinsci/call-remote-job-plugin.git", + "clone_url": "https://github.com/jenkinsci/call-remote-job-plugin.git", + "svn_url": "https://github.com/jenkinsci/call-remote-job-plugin", + "homepage": null, + "size": 290, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 4, + "open_issues": 1, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 10880480, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDg4MDQ4MA==", + "name": "cloudforge-plugin", + "full_name": "jenkinsci/cloudforge-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/cloudforge-plugin", + "description": "Extends jenkinsci/subversion-plugin with custom notification for CloudForge web commit hooks", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/cloudforge-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/cloudforge-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/cloudforge-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/cloudforge-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/cloudforge-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/cloudforge-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/cloudforge-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/cloudforge-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/cloudforge-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/cloudforge-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/cloudforge-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/cloudforge-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/cloudforge-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/cloudforge-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/cloudforge-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/cloudforge-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/cloudforge-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/cloudforge-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/cloudforge-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/cloudforge-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/cloudforge-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/cloudforge-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/cloudforge-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/cloudforge-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/cloudforge-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/cloudforge-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/cloudforge-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/cloudforge-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/cloudforge-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/cloudforge-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/cloudforge-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/cloudforge-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/cloudforge-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/cloudforge-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/cloudforge-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/cloudforge-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/cloudforge-plugin/deployments", + "created_at": "2013-06-23T08:11:23Z", + "updated_at": "2016-02-17T16:49:00Z", + "pushed_at": "2014-08-07T20:56:21Z", + "git_url": "git://github.com/jenkinsci/cloudforge-plugin.git", + "ssh_url": "git@github.com:jenkinsci/cloudforge-plugin.git", + "clone_url": "https://github.com/jenkinsci/cloudforge-plugin.git", + "svn_url": "https://github.com/jenkinsci/cloudforge-plugin", + "homepage": null, + "size": 167, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 10989138, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDk4OTEzOA==", + "name": "git-chooser-alternative-plugin", + "full_name": "jenkinsci/git-chooser-alternative-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/git-chooser-alternative-plugin", + "description": "An alternative build chooser plugin for the Jenkins git plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/git-chooser-alternative-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/git-chooser-alternative-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/git-chooser-alternative-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/git-chooser-alternative-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/git-chooser-alternative-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/git-chooser-alternative-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/git-chooser-alternative-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/git-chooser-alternative-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/git-chooser-alternative-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/git-chooser-alternative-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/git-chooser-alternative-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/git-chooser-alternative-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/git-chooser-alternative-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/git-chooser-alternative-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/git-chooser-alternative-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/git-chooser-alternative-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/git-chooser-alternative-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/git-chooser-alternative-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/git-chooser-alternative-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/git-chooser-alternative-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/git-chooser-alternative-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/git-chooser-alternative-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/git-chooser-alternative-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/git-chooser-alternative-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/git-chooser-alternative-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/git-chooser-alternative-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/git-chooser-alternative-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/git-chooser-alternative-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/git-chooser-alternative-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/git-chooser-alternative-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/git-chooser-alternative-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/git-chooser-alternative-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/git-chooser-alternative-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/git-chooser-alternative-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/git-chooser-alternative-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/git-chooser-alternative-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/git-chooser-alternative-plugin/deployments", + "created_at": "2013-06-27T06:22:03Z", + "updated_at": "2017-07-14T03:16:31Z", + "pushed_at": "2019-10-08T12:13:39Z", + "git_url": "git://github.com/jenkinsci/git-chooser-alternative-plugin.git", + "ssh_url": "git@github.com:jenkinsci/git-chooser-alternative-plugin.git", + "clone_url": "https://github.com/jenkinsci/git-chooser-alternative-plugin.git", + "svn_url": "https://github.com/jenkinsci/git-chooser-alternative-plugin", + "homepage": null, + "size": 25, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 3, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 11069586, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTA2OTU4Ng==", + "name": "simple-parameterized-builds-report-plugin", + "full_name": "jenkinsci/simple-parameterized-builds-report-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/simple-parameterized-builds-report-plugin", + "description": "For a given Parameterized Project, this plugin shows the builds sorted by the parameters used to execute the builds", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/simple-parameterized-builds-report-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/simple-parameterized-builds-report-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/simple-parameterized-builds-report-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/simple-parameterized-builds-report-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/simple-parameterized-builds-report-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/simple-parameterized-builds-report-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/simple-parameterized-builds-report-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/simple-parameterized-builds-report-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/simple-parameterized-builds-report-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/simple-parameterized-builds-report-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/simple-parameterized-builds-report-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/simple-parameterized-builds-report-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/simple-parameterized-builds-report-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/simple-parameterized-builds-report-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/simple-parameterized-builds-report-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/simple-parameterized-builds-report-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/simple-parameterized-builds-report-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/simple-parameterized-builds-report-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/simple-parameterized-builds-report-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/simple-parameterized-builds-report-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/simple-parameterized-builds-report-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/simple-parameterized-builds-report-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/simple-parameterized-builds-report-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/simple-parameterized-builds-report-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/simple-parameterized-builds-report-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/simple-parameterized-builds-report-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/simple-parameterized-builds-report-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/simple-parameterized-builds-report-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/simple-parameterized-builds-report-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/simple-parameterized-builds-report-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/simple-parameterized-builds-report-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/simple-parameterized-builds-report-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/simple-parameterized-builds-report-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/simple-parameterized-builds-report-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/simple-parameterized-builds-report-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/simple-parameterized-builds-report-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/simple-parameterized-builds-report-plugin/deployments", + "created_at": "2013-06-30T12:21:01Z", + "updated_at": "2016-05-08T22:35:50Z", + "pushed_at": "2016-05-08T22:45:00Z", + "git_url": "git://github.com/jenkinsci/simple-parameterized-builds-report-plugin.git", + "ssh_url": "git@github.com:jenkinsci/simple-parameterized-builds-report-plugin.git", + "clone_url": "https://github.com/jenkinsci/simple-parameterized-builds-report-plugin.git", + "svn_url": "https://github.com/jenkinsci/simple-parameterized-builds-report-plugin", + "homepage": null, + "size": 50, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 5, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 11154779, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTE1NDc3OQ==", + "name": "build-environment-plugin", + "full_name": "jenkinsci/build-environment-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/build-environment-plugin", + "description": "Build Environment Plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/build-environment-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/build-environment-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/build-environment-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/build-environment-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/build-environment-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/build-environment-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/build-environment-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/build-environment-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/build-environment-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/build-environment-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/build-environment-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/build-environment-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/build-environment-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/build-environment-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/build-environment-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/build-environment-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/build-environment-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/build-environment-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/build-environment-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/build-environment-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/build-environment-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/build-environment-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/build-environment-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/build-environment-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/build-environment-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/build-environment-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/build-environment-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/build-environment-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/build-environment-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/build-environment-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/build-environment-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/build-environment-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/build-environment-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/build-environment-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/build-environment-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/build-environment-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/build-environment-plugin/deployments", + "created_at": "2013-07-03T15:47:36Z", + "updated_at": "2019-09-24T10:54:42Z", + "pushed_at": "2019-09-24T10:54:39Z", + "git_url": "git://github.com/jenkinsci/build-environment-plugin.git", + "ssh_url": "git@github.com:jenkinsci/build-environment-plugin.git", + "clone_url": "https://github.com/jenkinsci/build-environment-plugin.git", + "svn_url": "https://github.com/jenkinsci/build-environment-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Build+Environment+Plugin", + "size": 95, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 6, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 11163388, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTE2MzM4OA==", + "name": "mlattach-plugin", + "full_name": "jenkinsci/mlattach-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/mlattach-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/mlattach-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/mlattach-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/mlattach-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/mlattach-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/mlattach-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/mlattach-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/mlattach-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/mlattach-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/mlattach-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/mlattach-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/mlattach-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/mlattach-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/mlattach-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/mlattach-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/mlattach-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/mlattach-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/mlattach-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/mlattach-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/mlattach-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/mlattach-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/mlattach-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/mlattach-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/mlattach-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/mlattach-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/mlattach-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/mlattach-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/mlattach-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/mlattach-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/mlattach-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/mlattach-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/mlattach-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/mlattach-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/mlattach-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/mlattach-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/mlattach-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/mlattach-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/mlattach-plugin/deployments", + "created_at": "2013-07-03T23:16:20Z", + "updated_at": "2013-11-10T02:11:18Z", + "pushed_at": "2013-11-10T02:11:15Z", + "git_url": "git://github.com/jenkinsci/mlattach-plugin.git", + "ssh_url": "git@github.com:jenkinsci/mlattach-plugin.git", + "clone_url": "https://github.com/jenkinsci/mlattach-plugin.git", + "svn_url": "https://github.com/jenkinsci/mlattach-plugin", + "homepage": "", + "size": 136, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 11197179, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTE5NzE3OQ==", + "name": "newgen-servers-plugin", + "full_name": "jenkinsci/newgen-servers-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/newgen-servers-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/newgen-servers-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/newgen-servers-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/newgen-servers-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/newgen-servers-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/newgen-servers-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/newgen-servers-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/newgen-servers-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/newgen-servers-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/newgen-servers-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/newgen-servers-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/newgen-servers-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/newgen-servers-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/newgen-servers-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/newgen-servers-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/newgen-servers-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/newgen-servers-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/newgen-servers-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/newgen-servers-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/newgen-servers-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/newgen-servers-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/newgen-servers-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/newgen-servers-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/newgen-servers-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/newgen-servers-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/newgen-servers-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/newgen-servers-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/newgen-servers-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/newgen-servers-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/newgen-servers-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/newgen-servers-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/newgen-servers-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/newgen-servers-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/newgen-servers-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/newgen-servers-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/newgen-servers-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/newgen-servers-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/newgen-servers-plugin/deployments", + "created_at": "2013-07-05T10:27:43Z", + "updated_at": "2014-04-07T11:59:31Z", + "pushed_at": "2014-04-07T11:59:32Z", + "git_url": "git://github.com/jenkinsci/newgen-servers-plugin.git", + "ssh_url": "git@github.com:jenkinsci/newgen-servers-plugin.git", + "clone_url": "https://github.com/jenkinsci/newgen-servers-plugin.git", + "svn_url": "https://github.com/jenkinsci/newgen-servers-plugin", + "homepage": "", + "size": 172, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 11229020, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTIyOTAyMA==", + "name": "backend-pull-request-greeter", + "full_name": "jenkinsci/backend-pull-request-greeter", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/backend-pull-request-greeter", + "description": "Adds a comment to the newly filed pull request", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/backend-pull-request-greeter", + "forks_url": "https://api.github.com/repos/jenkinsci/backend-pull-request-greeter/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/backend-pull-request-greeter/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/backend-pull-request-greeter/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/backend-pull-request-greeter/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/backend-pull-request-greeter/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/backend-pull-request-greeter/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/backend-pull-request-greeter/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/backend-pull-request-greeter/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/backend-pull-request-greeter/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/backend-pull-request-greeter/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/backend-pull-request-greeter/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/backend-pull-request-greeter/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/backend-pull-request-greeter/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/backend-pull-request-greeter/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/backend-pull-request-greeter/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/backend-pull-request-greeter/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/backend-pull-request-greeter/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/backend-pull-request-greeter/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/backend-pull-request-greeter/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/backend-pull-request-greeter/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/backend-pull-request-greeter/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/backend-pull-request-greeter/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/backend-pull-request-greeter/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/backend-pull-request-greeter/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/backend-pull-request-greeter/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/backend-pull-request-greeter/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/backend-pull-request-greeter/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/backend-pull-request-greeter/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/backend-pull-request-greeter/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/backend-pull-request-greeter/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/backend-pull-request-greeter/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/backend-pull-request-greeter/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/backend-pull-request-greeter/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/backend-pull-request-greeter/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/backend-pull-request-greeter/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/backend-pull-request-greeter/deployments", + "created_at": "2013-07-07T05:19:38Z", + "updated_at": "2018-01-03T17:50:46Z", + "pushed_at": "2016-02-21T20:15:26Z", + "git_url": "git://github.com/jenkinsci/backend-pull-request-greeter.git", + "ssh_url": "git@github.com:jenkinsci/backend-pull-request-greeter.git", + "clone_url": "https://github.com/jenkinsci/backend-pull-request-greeter.git", + "svn_url": "https://github.com/jenkinsci/backend-pull-request-greeter", + "homepage": null, + "size": 10, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": true, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 3, + "open_issues": 2, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 11230777, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTIzMDc3Nw==", + "name": "dynamic-search-view-plugin", + "full_name": "jenkinsci/dynamic-search-view-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/dynamic-search-view-plugin", + "description": "Dynamic Search View Plugin for Jenkins", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/dynamic-search-view-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/dynamic-search-view-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/dynamic-search-view-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/dynamic-search-view-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/dynamic-search-view-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/dynamic-search-view-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/dynamic-search-view-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/dynamic-search-view-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/dynamic-search-view-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/dynamic-search-view-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/dynamic-search-view-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/dynamic-search-view-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/dynamic-search-view-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/dynamic-search-view-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/dynamic-search-view-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/dynamic-search-view-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/dynamic-search-view-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/dynamic-search-view-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/dynamic-search-view-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/dynamic-search-view-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/dynamic-search-view-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/dynamic-search-view-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/dynamic-search-view-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/dynamic-search-view-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/dynamic-search-view-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/dynamic-search-view-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/dynamic-search-view-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/dynamic-search-view-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/dynamic-search-view-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/dynamic-search-view-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/dynamic-search-view-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/dynamic-search-view-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/dynamic-search-view-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/dynamic-search-view-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/dynamic-search-view-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/dynamic-search-view-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/dynamic-search-view-plugin/deployments", + "created_at": "2013-07-07T08:37:30Z", + "updated_at": "2018-02-26T18:39:14Z", + "pushed_at": "2018-02-27T07:52:00Z", + "git_url": "git://github.com/jenkinsci/dynamic-search-view-plugin.git", + "ssh_url": "git@github.com:jenkinsci/dynamic-search-view-plugin.git", + "clone_url": "https://github.com/jenkinsci/dynamic-search-view-plugin.git", + "svn_url": "https://github.com/jenkinsci/dynamic-search-view-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Dynamic+Search+View+Plugin", + "size": 88, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 3, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 11329317, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTMyOTMxNw==", + "name": "cucumber-performance-plugin", + "full_name": "jenkinsci/cucumber-performance-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/cucumber-performance-plugin", + "description": "Jenkins plugin for Cucumber-JVM performance reporting", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/cucumber-performance-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/cucumber-performance-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/cucumber-performance-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/cucumber-performance-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/cucumber-performance-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/cucumber-performance-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/cucumber-performance-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/cucumber-performance-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/cucumber-performance-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/cucumber-performance-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/cucumber-performance-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/cucumber-performance-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/cucumber-performance-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/cucumber-performance-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/cucumber-performance-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/cucumber-performance-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/cucumber-performance-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/cucumber-performance-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/cucumber-performance-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/cucumber-performance-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/cucumber-performance-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/cucumber-performance-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/cucumber-performance-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/cucumber-performance-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/cucumber-performance-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/cucumber-performance-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/cucumber-performance-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/cucumber-performance-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/cucumber-performance-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/cucumber-performance-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/cucumber-performance-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/cucumber-performance-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/cucumber-performance-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/cucumber-performance-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/cucumber-performance-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/cucumber-performance-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/cucumber-performance-plugin/deployments", + "created_at": "2013-07-11T01:21:15Z", + "updated_at": "2019-07-08T06:17:14Z", + "pushed_at": "2016-12-06T14:23:29Z", + "git_url": "git://github.com/jenkinsci/cucumber-performance-plugin.git", + "ssh_url": "git@github.com:jenkinsci/cucumber-performance-plugin.git", + "clone_url": "https://github.com/jenkinsci/cucumber-performance-plugin.git", + "svn_url": "https://github.com/jenkinsci/cucumber-performance-plugin", + "homepage": "", + "size": 1395, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 5, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 11373851, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTM3Mzg1MQ==", + "name": "ownership-plugin", + "full_name": "jenkinsci/ownership-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/ownership-plugin", + "description": "Jenkins plugin. Provides explicit ownership of jobs and agents", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/ownership-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/ownership-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/ownership-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/ownership-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/ownership-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/ownership-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/ownership-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/ownership-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/ownership-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/ownership-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/ownership-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/ownership-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/ownership-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/ownership-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/ownership-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/ownership-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/ownership-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/ownership-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/ownership-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/ownership-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/ownership-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/ownership-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/ownership-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/ownership-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/ownership-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/ownership-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/ownership-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/ownership-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/ownership-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/ownership-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/ownership-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/ownership-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/ownership-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/ownership-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/ownership-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/ownership-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/ownership-plugin/deployments", + "created_at": "2013-07-12T17:08:07Z", + "updated_at": "2019-10-21T15:12:53Z", + "pushed_at": "2019-10-08T00:14:10Z", + "git_url": "git://github.com/jenkinsci/ownership-plugin.git", + "ssh_url": "git@github.com:jenkinsci/ownership-plugin.git", + "clone_url": "https://github.com/jenkinsci/ownership-plugin.git", + "svn_url": "https://github.com/jenkinsci/ownership-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Ownership+Plugin", + "size": 3698, + "stargazers_count": 18, + "watchers_count": 18, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 29, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 6, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 29, + "open_issues": 6, + "watchers": 18, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 11374099, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTM3NDA5OQ==", + "name": "ec2-cloud-axis-plugin", + "full_name": "jenkinsci/ec2-cloud-axis-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/ec2-cloud-axis-plugin", + "description": "This plugin enables a new Axis that is capable of running a matrix build over an arbitrary number of instances", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/ec2-cloud-axis-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/ec2-cloud-axis-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/ec2-cloud-axis-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/ec2-cloud-axis-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/ec2-cloud-axis-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/ec2-cloud-axis-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/ec2-cloud-axis-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/ec2-cloud-axis-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/ec2-cloud-axis-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/ec2-cloud-axis-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/ec2-cloud-axis-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/ec2-cloud-axis-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/ec2-cloud-axis-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/ec2-cloud-axis-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/ec2-cloud-axis-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/ec2-cloud-axis-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/ec2-cloud-axis-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/ec2-cloud-axis-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/ec2-cloud-axis-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/ec2-cloud-axis-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/ec2-cloud-axis-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/ec2-cloud-axis-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/ec2-cloud-axis-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/ec2-cloud-axis-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/ec2-cloud-axis-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/ec2-cloud-axis-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/ec2-cloud-axis-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/ec2-cloud-axis-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/ec2-cloud-axis-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/ec2-cloud-axis-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/ec2-cloud-axis-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/ec2-cloud-axis-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/ec2-cloud-axis-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/ec2-cloud-axis-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/ec2-cloud-axis-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/ec2-cloud-axis-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/ec2-cloud-axis-plugin/deployments", + "created_at": "2013-07-12T17:23:00Z", + "updated_at": "2015-07-31T00:38:12Z", + "pushed_at": "2018-10-11T11:33:21Z", + "git_url": "git://github.com/jenkinsci/ec2-cloud-axis-plugin.git", + "ssh_url": "git@github.com:jenkinsci/ec2-cloud-axis-plugin.git", + "clone_url": "https://github.com/jenkinsci/ec2-cloud-axis-plugin.git", + "svn_url": "https://github.com/jenkinsci/ec2-cloud-axis-plugin", + "homepage": null, + "size": 648, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 4, + "open_issues": 1, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 11384992, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTM4NDk5Mg==", + "name": "concurrent-login-plugin", + "full_name": "jenkinsci/concurrent-login-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/concurrent-login-plugin", + "description": "To intercept concurrent login in Jenkins ", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/concurrent-login-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/concurrent-login-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/concurrent-login-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/concurrent-login-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/concurrent-login-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/concurrent-login-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/concurrent-login-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/concurrent-login-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/concurrent-login-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/concurrent-login-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/concurrent-login-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/concurrent-login-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/concurrent-login-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/concurrent-login-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/concurrent-login-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/concurrent-login-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/concurrent-login-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/concurrent-login-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/concurrent-login-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/concurrent-login-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/concurrent-login-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/concurrent-login-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/concurrent-login-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/concurrent-login-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/concurrent-login-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/concurrent-login-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/concurrent-login-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/concurrent-login-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/concurrent-login-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/concurrent-login-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/concurrent-login-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/concurrent-login-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/concurrent-login-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/concurrent-login-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/concurrent-login-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/concurrent-login-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/concurrent-login-plugin/deployments", + "created_at": "2013-07-13T07:59:54Z", + "updated_at": "2013-11-10T01:57:57Z", + "pushed_at": "2013-11-10T01:57:47Z", + "git_url": "git://github.com/jenkinsci/concurrent-login-plugin.git", + "ssh_url": "git@github.com:jenkinsci/concurrent-login-plugin.git", + "clone_url": "https://github.com/jenkinsci/concurrent-login-plugin.git", + "svn_url": "https://github.com/jenkinsci/concurrent-login-plugin", + "homepage": null, + "size": 143, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 11405997, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTQwNTk5Nw==", + "name": "iosbuilder-plugin", + "full_name": "jenkinsci/iosbuilder-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/iosbuilder-plugin", + "description": "iOS builder plugin for Jenkins", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/iosbuilder-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/iosbuilder-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/iosbuilder-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/iosbuilder-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/iosbuilder-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/iosbuilder-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/iosbuilder-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/iosbuilder-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/iosbuilder-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/iosbuilder-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/iosbuilder-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/iosbuilder-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/iosbuilder-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/iosbuilder-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/iosbuilder-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/iosbuilder-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/iosbuilder-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/iosbuilder-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/iosbuilder-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/iosbuilder-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/iosbuilder-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/iosbuilder-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/iosbuilder-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/iosbuilder-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/iosbuilder-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/iosbuilder-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/iosbuilder-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/iosbuilder-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/iosbuilder-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/iosbuilder-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/iosbuilder-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/iosbuilder-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/iosbuilder-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/iosbuilder-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/iosbuilder-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/iosbuilder-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/iosbuilder-plugin/deployments", + "created_at": "2013-07-14T16:53:07Z", + "updated_at": "2013-11-10T02:05:43Z", + "pushed_at": "2013-11-10T02:05:37Z", + "git_url": "git://github.com/jenkinsci/iosbuilder-plugin.git", + "ssh_url": "git@github.com:jenkinsci/iosbuilder-plugin.git", + "clone_url": "https://github.com/jenkinsci/iosbuilder-plugin.git", + "svn_url": "https://github.com/jenkinsci/iosbuilder-plugin", + "homepage": null, + "size": 2182, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 11480016, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTQ4MDAxNg==", + "name": "shared-workspace-plugin", + "full_name": "jenkinsci/shared-workspace-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/shared-workspace-plugin", + "description": "Jenkins plugin for sharing workspaces", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/shared-workspace-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/shared-workspace-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/shared-workspace-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/shared-workspace-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/shared-workspace-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/shared-workspace-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/shared-workspace-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/shared-workspace-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/shared-workspace-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/shared-workspace-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/shared-workspace-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/shared-workspace-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/shared-workspace-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/shared-workspace-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/shared-workspace-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/shared-workspace-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/shared-workspace-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/shared-workspace-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/shared-workspace-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/shared-workspace-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/shared-workspace-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/shared-workspace-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/shared-workspace-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/shared-workspace-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/shared-workspace-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/shared-workspace-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/shared-workspace-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/shared-workspace-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/shared-workspace-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/shared-workspace-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/shared-workspace-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/shared-workspace-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/shared-workspace-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/shared-workspace-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/shared-workspace-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/shared-workspace-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/shared-workspace-plugin/deployments", + "created_at": "2013-07-17T15:43:21Z", + "updated_at": "2018-02-09T06:33:48Z", + "pushed_at": "2019-10-08T11:24:57Z", + "git_url": "git://github.com/jenkinsci/shared-workspace-plugin.git", + "ssh_url": "git@github.com:jenkinsci/shared-workspace-plugin.git", + "clone_url": "https://github.com/jenkinsci/shared-workspace-plugin.git", + "svn_url": "https://github.com/jenkinsci/shared-workspace-plugin", + "homepage": null, + "size": 180, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 2, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 11544390, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTU0NDM5MA==", + "name": "extra-tool-installers-plugin", + "full_name": "jenkinsci/extra-tool-installers-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/extra-tool-installers-plugin", + "description": "Jenkins plugin. Provides generic tool installers", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/extra-tool-installers-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/extra-tool-installers-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/extra-tool-installers-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/extra-tool-installers-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/extra-tool-installers-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/extra-tool-installers-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/extra-tool-installers-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/extra-tool-installers-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/extra-tool-installers-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/extra-tool-installers-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/extra-tool-installers-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/extra-tool-installers-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/extra-tool-installers-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/extra-tool-installers-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/extra-tool-installers-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/extra-tool-installers-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/extra-tool-installers-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/extra-tool-installers-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/extra-tool-installers-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/extra-tool-installers-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/extra-tool-installers-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/extra-tool-installers-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/extra-tool-installers-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/extra-tool-installers-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/extra-tool-installers-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/extra-tool-installers-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/extra-tool-installers-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/extra-tool-installers-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/extra-tool-installers-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/extra-tool-installers-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/extra-tool-installers-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/extra-tool-installers-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/extra-tool-installers-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/extra-tool-installers-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/extra-tool-installers-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/extra-tool-installers-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/extra-tool-installers-plugin/deployments", + "created_at": "2013-07-20T08:35:07Z", + "updated_at": "2019-09-23T12:02:20Z", + "pushed_at": "2019-09-23T12:02:18Z", + "git_url": "git://github.com/jenkinsci/extra-tool-installers-plugin.git", + "ssh_url": "git@github.com:jenkinsci/extra-tool-installers-plugin.git", + "clone_url": "https://github.com/jenkinsci/extra-tool-installers-plugin.git", + "svn_url": "https://github.com/jenkinsci/extra-tool-installers-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Extra+Tool+Installers+Plugin", + "size": 90, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 5, + "open_issues": 3, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 11557903, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTU1NzkwMw==", + "name": "gem-publisher-plugin", + "full_name": "jenkinsci/gem-publisher-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/gem-publisher-plugin", + "description": "Publish Rubygems to rubygems.org from Jenkins", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/gem-publisher-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/gem-publisher-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/gem-publisher-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/gem-publisher-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/gem-publisher-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/gem-publisher-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/gem-publisher-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/gem-publisher-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/gem-publisher-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/gem-publisher-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/gem-publisher-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/gem-publisher-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/gem-publisher-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/gem-publisher-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/gem-publisher-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/gem-publisher-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/gem-publisher-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/gem-publisher-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/gem-publisher-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/gem-publisher-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/gem-publisher-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/gem-publisher-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/gem-publisher-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/gem-publisher-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/gem-publisher-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/gem-publisher-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/gem-publisher-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/gem-publisher-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/gem-publisher-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/gem-publisher-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/gem-publisher-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/gem-publisher-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/gem-publisher-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/gem-publisher-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/gem-publisher-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/gem-publisher-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/gem-publisher-plugin/deployments", + "created_at": "2013-07-21T06:04:33Z", + "updated_at": "2013-11-10T02:03:17Z", + "pushed_at": "2013-11-10T02:03:13Z", + "git_url": "git://github.com/jenkinsci/gem-publisher-plugin.git", + "ssh_url": "git@github.com:jenkinsci/gem-publisher-plugin.git", + "clone_url": "https://github.com/jenkinsci/gem-publisher-plugin.git", + "svn_url": "https://github.com/jenkinsci/gem-publisher-plugin", + "homepage": null, + "size": 145, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 11587316, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTU4NzMxNg==", + "name": "rapiddeploy-plugin", + "full_name": "jenkinsci/rapiddeploy-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/rapiddeploy-plugin", + "description": "Jenkins plugin for RapidDeploy", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/rapiddeploy-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/rapiddeploy-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/rapiddeploy-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/rapiddeploy-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/rapiddeploy-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/rapiddeploy-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/rapiddeploy-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/rapiddeploy-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/rapiddeploy-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/rapiddeploy-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/rapiddeploy-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/rapiddeploy-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/rapiddeploy-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/rapiddeploy-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/rapiddeploy-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/rapiddeploy-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/rapiddeploy-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/rapiddeploy-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/rapiddeploy-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/rapiddeploy-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/rapiddeploy-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/rapiddeploy-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/rapiddeploy-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/rapiddeploy-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/rapiddeploy-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/rapiddeploy-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/rapiddeploy-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/rapiddeploy-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/rapiddeploy-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/rapiddeploy-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/rapiddeploy-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/rapiddeploy-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/rapiddeploy-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/rapiddeploy-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/rapiddeploy-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/rapiddeploy-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/rapiddeploy-plugin/deployments", + "created_at": "2013-07-22T17:16:35Z", + "updated_at": "2019-04-04T16:13:21Z", + "pushed_at": "2019-04-04T16:13:20Z", + "git_url": "git://github.com/jenkinsci/rapiddeploy-plugin.git", + "ssh_url": "git@github.com:jenkinsci/rapiddeploy-plugin.git", + "clone_url": "https://github.com/jenkinsci/rapiddeploy-plugin.git", + "svn_url": "https://github.com/jenkinsci/rapiddeploy-plugin", + "homepage": null, + "size": 131, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 11622240, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYyMjI0MA==", + "name": "flyweight-build-step-plugin", + "full_name": "jenkinsci/flyweight-build-step-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/flyweight-build-step-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/flyweight-build-step-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/flyweight-build-step-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/flyweight-build-step-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/flyweight-build-step-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/flyweight-build-step-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/flyweight-build-step-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/flyweight-build-step-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/flyweight-build-step-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/flyweight-build-step-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/flyweight-build-step-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/flyweight-build-step-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/flyweight-build-step-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/flyweight-build-step-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/flyweight-build-step-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/flyweight-build-step-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/flyweight-build-step-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/flyweight-build-step-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/flyweight-build-step-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/flyweight-build-step-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/flyweight-build-step-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/flyweight-build-step-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/flyweight-build-step-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/flyweight-build-step-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/flyweight-build-step-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/flyweight-build-step-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/flyweight-build-step-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/flyweight-build-step-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/flyweight-build-step-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/flyweight-build-step-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/flyweight-build-step-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/flyweight-build-step-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/flyweight-build-step-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/flyweight-build-step-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/flyweight-build-step-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/flyweight-build-step-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/flyweight-build-step-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/flyweight-build-step-plugin/deployments", + "created_at": "2013-07-24T00:01:16Z", + "updated_at": "2013-11-10T02:02:51Z", + "pushed_at": "2013-11-10T02:02:45Z", + "git_url": "git://github.com/jenkinsci/flyweight-build-step-plugin.git", + "ssh_url": "git@github.com:jenkinsci/flyweight-build-step-plugin.git", + "clone_url": "https://github.com/jenkinsci/flyweight-build-step-plugin.git", + "svn_url": "https://github.com/jenkinsci/flyweight-build-step-plugin", + "homepage": "", + "size": 128, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 11671190, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTY3MTE5MA==", + "name": "beaker-builder-plugin", + "full_name": "jenkinsci/beaker-builder-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/beaker-builder-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/beaker-builder-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/beaker-builder-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/beaker-builder-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/beaker-builder-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/beaker-builder-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/beaker-builder-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/beaker-builder-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/beaker-builder-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/beaker-builder-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/beaker-builder-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/beaker-builder-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/beaker-builder-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/beaker-builder-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/beaker-builder-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/beaker-builder-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/beaker-builder-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/beaker-builder-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/beaker-builder-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/beaker-builder-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/beaker-builder-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/beaker-builder-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/beaker-builder-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/beaker-builder-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/beaker-builder-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/beaker-builder-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/beaker-builder-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/beaker-builder-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/beaker-builder-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/beaker-builder-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/beaker-builder-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/beaker-builder-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/beaker-builder-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/beaker-builder-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/beaker-builder-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/beaker-builder-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/beaker-builder-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/beaker-builder-plugin/deployments", + "created_at": "2013-07-25T21:13:33Z", + "updated_at": "2019-09-10T07:54:17Z", + "pushed_at": "2019-09-10T07:54:15Z", + "git_url": "git://github.com/jenkinsci/beaker-builder-plugin.git", + "ssh_url": "git@github.com:jenkinsci/beaker-builder-plugin.git", + "clone_url": "https://github.com/jenkinsci/beaker-builder-plugin.git", + "svn_url": "https://github.com/jenkinsci/beaker-builder-plugin", + "homepage": null, + "size": 106, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 11683040, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTY4MzA0MA==", + "name": "kerberos-auth-plugin", + "full_name": "jenkinsci/kerberos-auth-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/kerberos-auth-plugin", + "description": "Kerberos Based Security Module", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/kerberos-auth-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/kerberos-auth-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/kerberos-auth-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/kerberos-auth-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/kerberos-auth-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/kerberos-auth-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/kerberos-auth-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/kerberos-auth-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/kerberos-auth-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/kerberos-auth-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/kerberos-auth-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/kerberos-auth-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/kerberos-auth-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/kerberos-auth-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/kerberos-auth-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/kerberos-auth-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/kerberos-auth-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/kerberos-auth-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/kerberos-auth-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/kerberos-auth-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/kerberos-auth-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/kerberos-auth-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/kerberos-auth-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/kerberos-auth-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/kerberos-auth-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/kerberos-auth-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/kerberos-auth-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/kerberos-auth-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/kerberos-auth-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/kerberos-auth-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/kerberos-auth-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/kerberos-auth-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/kerberos-auth-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/kerberos-auth-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/kerberos-auth-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/kerberos-auth-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/kerberos-auth-plugin/deployments", + "created_at": "2013-07-26T10:01:01Z", + "updated_at": "2014-01-29T21:06:29Z", + "pushed_at": "2013-07-26T10:02:46Z", + "git_url": "git://github.com/jenkinsci/kerberos-auth-plugin.git", + "ssh_url": "git@github.com:jenkinsci/kerberos-auth-plugin.git", + "clone_url": "https://github.com/jenkinsci/kerberos-auth-plugin.git", + "svn_url": "https://github.com/jenkinsci/kerberos-auth-plugin", + "homepage": null, + "size": 112, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 11751233, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTc1MTIzMw==", + "name": "archived-artifact-url-viewer-plugin", + "full_name": "jenkinsci/archived-artifact-url-viewer-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/archived-artifact-url-viewer-plugin", + "description": "Jenkins plugin to view contents of a file inside a zip or jar file under a subdirectory of artifacts directory of a build", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/archived-artifact-url-viewer-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/archived-artifact-url-viewer-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/archived-artifact-url-viewer-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/archived-artifact-url-viewer-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/archived-artifact-url-viewer-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/archived-artifact-url-viewer-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/archived-artifact-url-viewer-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/archived-artifact-url-viewer-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/archived-artifact-url-viewer-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/archived-artifact-url-viewer-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/archived-artifact-url-viewer-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/archived-artifact-url-viewer-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/archived-artifact-url-viewer-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/archived-artifact-url-viewer-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/archived-artifact-url-viewer-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/archived-artifact-url-viewer-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/archived-artifact-url-viewer-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/archived-artifact-url-viewer-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/archived-artifact-url-viewer-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/archived-artifact-url-viewer-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/archived-artifact-url-viewer-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/archived-artifact-url-viewer-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/archived-artifact-url-viewer-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/archived-artifact-url-viewer-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/archived-artifact-url-viewer-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/archived-artifact-url-viewer-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/archived-artifact-url-viewer-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/archived-artifact-url-viewer-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/archived-artifact-url-viewer-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/archived-artifact-url-viewer-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/archived-artifact-url-viewer-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/archived-artifact-url-viewer-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/archived-artifact-url-viewer-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/archived-artifact-url-viewer-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/archived-artifact-url-viewer-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/archived-artifact-url-viewer-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/archived-artifact-url-viewer-plugin/deployments", + "created_at": "2013-07-29T22:28:57Z", + "updated_at": "2014-02-20T12:43:42Z", + "pushed_at": "2013-08-04T14:39:38Z", + "git_url": "git://github.com/jenkinsci/archived-artifact-url-viewer-plugin.git", + "ssh_url": "git@github.com:jenkinsci/archived-artifact-url-viewer-plugin.git", + "clone_url": "https://github.com/jenkinsci/archived-artifact-url-viewer-plugin.git", + "svn_url": "https://github.com/jenkinsci/archived-artifact-url-viewer-plugin", + "homepage": null, + "size": 144, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 11776720, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTc3NjcyMA==", + "name": "bytecode-compatibility-transformer", + "full_name": "jenkinsci/bytecode-compatibility-transformer", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/bytecode-compatibility-transformer", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/bytecode-compatibility-transformer", + "forks_url": "https://api.github.com/repos/jenkinsci/bytecode-compatibility-transformer/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/bytecode-compatibility-transformer/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/bytecode-compatibility-transformer/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/bytecode-compatibility-transformer/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/bytecode-compatibility-transformer/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/bytecode-compatibility-transformer/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/bytecode-compatibility-transformer/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/bytecode-compatibility-transformer/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/bytecode-compatibility-transformer/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/bytecode-compatibility-transformer/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/bytecode-compatibility-transformer/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/bytecode-compatibility-transformer/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/bytecode-compatibility-transformer/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/bytecode-compatibility-transformer/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/bytecode-compatibility-transformer/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/bytecode-compatibility-transformer/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/bytecode-compatibility-transformer/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/bytecode-compatibility-transformer/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/bytecode-compatibility-transformer/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/bytecode-compatibility-transformer/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/bytecode-compatibility-transformer/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/bytecode-compatibility-transformer/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/bytecode-compatibility-transformer/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/bytecode-compatibility-transformer/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/bytecode-compatibility-transformer/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/bytecode-compatibility-transformer/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/bytecode-compatibility-transformer/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/bytecode-compatibility-transformer/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/bytecode-compatibility-transformer/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/bytecode-compatibility-transformer/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/bytecode-compatibility-transformer/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/bytecode-compatibility-transformer/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/bytecode-compatibility-transformer/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/bytecode-compatibility-transformer/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/bytecode-compatibility-transformer/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/bytecode-compatibility-transformer/deployments", + "created_at": "2013-07-30T22:08:33Z", + "updated_at": "2019-02-07T10:44:42Z", + "pushed_at": "2018-06-21T10:56:07Z", + "git_url": "git://github.com/jenkinsci/bytecode-compatibility-transformer.git", + "ssh_url": "git@github.com:jenkinsci/bytecode-compatibility-transformer.git", + "clone_url": "https://github.com/jenkinsci/bytecode-compatibility-transformer.git", + "svn_url": "https://github.com/jenkinsci/bytecode-compatibility-transformer", + "homepage": "", + "size": 128, + "stargazers_count": 7, + "watchers_count": 7, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 8, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 8, + "open_issues": 0, + "watchers": 7, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 11785704, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTc4NTcwNA==", + "name": "accelerated-build-now-plugin", + "full_name": "jenkinsci/accelerated-build-now-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/accelerated-build-now-plugin", + "description": "accelerated-build-now-plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/accelerated-build-now-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/accelerated-build-now-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/accelerated-build-now-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/accelerated-build-now-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/accelerated-build-now-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/accelerated-build-now-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/accelerated-build-now-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/accelerated-build-now-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/accelerated-build-now-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/accelerated-build-now-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/accelerated-build-now-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/accelerated-build-now-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/accelerated-build-now-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/accelerated-build-now-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/accelerated-build-now-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/accelerated-build-now-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/accelerated-build-now-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/accelerated-build-now-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/accelerated-build-now-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/accelerated-build-now-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/accelerated-build-now-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/accelerated-build-now-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/accelerated-build-now-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/accelerated-build-now-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/accelerated-build-now-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/accelerated-build-now-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/accelerated-build-now-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/accelerated-build-now-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/accelerated-build-now-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/accelerated-build-now-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/accelerated-build-now-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/accelerated-build-now-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/accelerated-build-now-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/accelerated-build-now-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/accelerated-build-now-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/accelerated-build-now-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/accelerated-build-now-plugin/deployments", + "created_at": "2013-07-31T07:58:45Z", + "updated_at": "2016-08-04T06:35:11Z", + "pushed_at": "2019-10-08T12:29:54Z", + "git_url": "git://github.com/jenkinsci/accelerated-build-now-plugin.git", + "ssh_url": "git@github.com:jenkinsci/accelerated-build-now-plugin.git", + "clone_url": "https://github.com/jenkinsci/accelerated-build-now-plugin.git", + "svn_url": "https://github.com/jenkinsci/accelerated-build-now-plugin", + "homepage": null, + "size": 397, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 4, + "open_issues": 1, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/__files/organizations_107424_repos-e0e43c36-cd33-4f86-b35d-165f964bf15e.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/__files/organizations_107424_repos-e0e43c36-cd33-4f86-b35d-165f964bf15e.json new file mode 100644 index 0000000000..881e9dea3a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/__files/organizations_107424_repos-e0e43c36-cd33-4f86-b35d-165f964bf15e.json @@ -0,0 +1,10322 @@ +[ + { + "id": 120496864, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjA0OTY4NjQ=", + "name": "radargun-reporting-plugin", + "full_name": "jenkinsci/radargun-reporting-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/radargun-reporting-plugin", + "description": "Report RadarGun performance tests in Jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/radargun-reporting-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/radargun-reporting-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/radargun-reporting-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/radargun-reporting-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/radargun-reporting-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/radargun-reporting-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/radargun-reporting-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/radargun-reporting-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/radargun-reporting-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/radargun-reporting-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/radargun-reporting-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/radargun-reporting-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/radargun-reporting-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/radargun-reporting-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/radargun-reporting-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/radargun-reporting-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/radargun-reporting-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/radargun-reporting-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/radargun-reporting-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/radargun-reporting-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/radargun-reporting-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/radargun-reporting-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/radargun-reporting-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/radargun-reporting-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/radargun-reporting-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/radargun-reporting-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/radargun-reporting-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/radargun-reporting-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/radargun-reporting-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/radargun-reporting-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/radargun-reporting-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/radargun-reporting-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/radargun-reporting-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/radargun-reporting-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/radargun-reporting-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/radargun-reporting-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/radargun-reporting-plugin/deployments", + "created_at": "2018-02-06T17:31:53Z", + "updated_at": "2018-02-14T15:36:19Z", + "pushed_at": "2018-03-05T13:34:20Z", + "git_url": "git://github.com/jenkinsci/radargun-reporting-plugin.git", + "ssh_url": "git@github.com:jenkinsci/radargun-reporting-plugin.git", + "clone_url": "https://github.com/jenkinsci/radargun-reporting-plugin.git", + "svn_url": "https://github.com/jenkinsci/radargun-reporting-plugin", + "homepage": null, + "size": 10429, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": true, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 120497255, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjA0OTcyNTU=", + "name": "genexus-plugin", + "full_name": "jenkinsci/genexus-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/genexus-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/genexus-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/genexus-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/genexus-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/genexus-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/genexus-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/genexus-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/genexus-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/genexus-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/genexus-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/genexus-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/genexus-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/genexus-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/genexus-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/genexus-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/genexus-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/genexus-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/genexus-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/genexus-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/genexus-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/genexus-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/genexus-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/genexus-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/genexus-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/genexus-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/genexus-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/genexus-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/genexus-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/genexus-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/genexus-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/genexus-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/genexus-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/genexus-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/genexus-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/genexus-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/genexus-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/genexus-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/genexus-plugin/deployments", + "created_at": "2018-02-06T17:34:52Z", + "updated_at": "2019-02-08T20:34:38Z", + "pushed_at": "2019-02-08T20:34:37Z", + "git_url": "git://github.com/jenkinsci/genexus-plugin.git", + "ssh_url": "git@github.com:jenkinsci/genexus-plugin.git", + "clone_url": "https://github.com/jenkinsci/genexus-plugin.git", + "svn_url": "https://github.com/jenkinsci/genexus-plugin", + "homepage": null, + "size": 143, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 120497590, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjA0OTc1OTA=", + "name": "stackify-deployment-recorder-plugin", + "full_name": "jenkinsci/stackify-deployment-recorder-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/stackify-deployment-recorder-plugin", + "description": "Jenkins Plugin to Record Deployments in Stackify Retrace", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/stackify-deployment-recorder-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/stackify-deployment-recorder-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/stackify-deployment-recorder-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/stackify-deployment-recorder-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/stackify-deployment-recorder-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/stackify-deployment-recorder-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/stackify-deployment-recorder-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/stackify-deployment-recorder-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/stackify-deployment-recorder-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/stackify-deployment-recorder-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/stackify-deployment-recorder-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/stackify-deployment-recorder-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/stackify-deployment-recorder-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/stackify-deployment-recorder-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/stackify-deployment-recorder-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/stackify-deployment-recorder-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/stackify-deployment-recorder-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/stackify-deployment-recorder-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/stackify-deployment-recorder-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/stackify-deployment-recorder-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/stackify-deployment-recorder-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/stackify-deployment-recorder-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/stackify-deployment-recorder-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/stackify-deployment-recorder-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/stackify-deployment-recorder-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/stackify-deployment-recorder-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/stackify-deployment-recorder-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/stackify-deployment-recorder-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/stackify-deployment-recorder-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/stackify-deployment-recorder-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/stackify-deployment-recorder-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/stackify-deployment-recorder-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/stackify-deployment-recorder-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/stackify-deployment-recorder-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/stackify-deployment-recorder-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/stackify-deployment-recorder-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/stackify-deployment-recorder-plugin/deployments", + "created_at": "2018-02-06T17:37:18Z", + "updated_at": "2018-02-06T19:28:59Z", + "pushed_at": "2018-02-12T20:36:15Z", + "git_url": "git://github.com/jenkinsci/stackify-deployment-recorder-plugin.git", + "ssh_url": "git@github.com:jenkinsci/stackify-deployment-recorder-plugin.git", + "clone_url": "https://github.com/jenkinsci/stackify-deployment-recorder-plugin.git", + "svn_url": "https://github.com/jenkinsci/stackify-deployment-recorder-plugin", + "homepage": null, + "size": 891, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 121262923, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjEyNjI5MjM=", + "name": "dev-notifier-plugin", + "full_name": "jenkinsci/dev-notifier-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/dev-notifier-plugin", + "description": "Jenkins plugin for email notifications about builds", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/dev-notifier-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/dev-notifier-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/dev-notifier-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/dev-notifier-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/dev-notifier-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/dev-notifier-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/dev-notifier-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/dev-notifier-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/dev-notifier-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/dev-notifier-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/dev-notifier-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/dev-notifier-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/dev-notifier-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/dev-notifier-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/dev-notifier-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/dev-notifier-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/dev-notifier-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/dev-notifier-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/dev-notifier-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/dev-notifier-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/dev-notifier-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/dev-notifier-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/dev-notifier-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/dev-notifier-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/dev-notifier-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/dev-notifier-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/dev-notifier-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/dev-notifier-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/dev-notifier-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/dev-notifier-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/dev-notifier-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/dev-notifier-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/dev-notifier-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/dev-notifier-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/dev-notifier-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/dev-notifier-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/dev-notifier-plugin/deployments", + "created_at": "2018-02-12T15:20:23Z", + "updated_at": "2018-08-23T11:20:52Z", + "pushed_at": "2018-08-23T11:20:51Z", + "git_url": "git://github.com/jenkinsci/dev-notifier-plugin.git", + "ssh_url": "git@github.com:jenkinsci/dev-notifier-plugin.git", + "clone_url": "https://github.com/jenkinsci/dev-notifier-plugin.git", + "svn_url": "https://github.com/jenkinsci/dev-notifier-plugin", + "homepage": "", + "size": 396, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Kotlin", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 121294400, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjEyOTQ0MDA=", + "name": "qmetry-test-management-plugin", + "full_name": "jenkinsci/qmetry-test-management-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/qmetry-test-management-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/qmetry-test-management-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/qmetry-test-management-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/qmetry-test-management-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/qmetry-test-management-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/qmetry-test-management-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/qmetry-test-management-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/qmetry-test-management-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/qmetry-test-management-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/qmetry-test-management-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/qmetry-test-management-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/qmetry-test-management-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/qmetry-test-management-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/qmetry-test-management-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/qmetry-test-management-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/qmetry-test-management-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/qmetry-test-management-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/qmetry-test-management-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/qmetry-test-management-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/qmetry-test-management-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/qmetry-test-management-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/qmetry-test-management-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/qmetry-test-management-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/qmetry-test-management-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/qmetry-test-management-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/qmetry-test-management-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/qmetry-test-management-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/qmetry-test-management-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/qmetry-test-management-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/qmetry-test-management-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/qmetry-test-management-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/qmetry-test-management-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/qmetry-test-management-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/qmetry-test-management-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/qmetry-test-management-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/qmetry-test-management-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/qmetry-test-management-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/qmetry-test-management-plugin/deployments", + "created_at": "2018-02-12T19:54:31Z", + "updated_at": "2019-09-25T05:14:50Z", + "pushed_at": "2019-09-25T05:14:49Z", + "git_url": "git://github.com/jenkinsci/qmetry-test-management-plugin.git", + "ssh_url": "git@github.com:jenkinsci/qmetry-test-management-plugin.git", + "clone_url": "https://github.com/jenkinsci/qmetry-test-management-plugin.git", + "svn_url": "https://github.com/jenkinsci/qmetry-test-management-plugin", + "homepage": null, + "size": 100, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "gpl-3.0", + "name": "GNU General Public License v3.0", + "spdx_id": "GPL-3.0", + "url": "https://api.github.com/licenses/gpl-3.0", + "node_id": "MDc6TGljZW5zZTk=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 121533060, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjE1MzMwNjA=", + "name": "docker-swarm-plugin", + "full_name": "jenkinsci/docker-swarm-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/docker-swarm-plugin", + "description": "Jenkins plugin which allows to add a Docker Swarm as a cloud agent provider", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/docker-swarm-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/docker-swarm-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/docker-swarm-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/docker-swarm-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/docker-swarm-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/docker-swarm-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/docker-swarm-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/docker-swarm-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/docker-swarm-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/docker-swarm-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/docker-swarm-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/docker-swarm-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/docker-swarm-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/docker-swarm-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/docker-swarm-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/docker-swarm-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/docker-swarm-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/docker-swarm-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/docker-swarm-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/docker-swarm-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/docker-swarm-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/docker-swarm-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/docker-swarm-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/docker-swarm-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/docker-swarm-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/docker-swarm-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/docker-swarm-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/docker-swarm-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/docker-swarm-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/docker-swarm-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/docker-swarm-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/docker-swarm-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/docker-swarm-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/docker-swarm-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/docker-swarm-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/docker-swarm-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/docker-swarm-plugin/deployments", + "created_at": "2018-02-14T16:25:40Z", + "updated_at": "2019-10-23T05:20:45Z", + "pushed_at": "2019-10-23T05:20:43Z", + "git_url": "git://github.com/jenkinsci/docker-swarm-plugin.git", + "ssh_url": "git@github.com:jenkinsci/docker-swarm-plugin.git", + "clone_url": "https://github.com/jenkinsci/docker-swarm-plugin.git", + "svn_url": "https://github.com/jenkinsci/docker-swarm-plugin", + "homepage": "", + "size": 1186, + "stargazers_count": 26, + "watchers_count": 26, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 18, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 21, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 18, + "open_issues": 21, + "watchers": 26, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 122377387, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjIzNzczODc=", + "name": "apprenda-plugin", + "full_name": "jenkinsci/apprenda-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/apprenda-plugin", + "description": "The Apprenda Jenkins integration allows you to continuously deliver your projects to the Apprenda platform.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/apprenda-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/apprenda-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/apprenda-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/apprenda-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/apprenda-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/apprenda-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/apprenda-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/apprenda-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/apprenda-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/apprenda-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/apprenda-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/apprenda-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/apprenda-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/apprenda-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/apprenda-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/apprenda-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/apprenda-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/apprenda-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/apprenda-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/apprenda-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/apprenda-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/apprenda-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/apprenda-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/apprenda-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/apprenda-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/apprenda-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/apprenda-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/apprenda-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/apprenda-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/apprenda-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/apprenda-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/apprenda-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/apprenda-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/apprenda-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/apprenda-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/apprenda-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/apprenda-plugin/deployments", + "created_at": "2018-02-21T18:40:56Z", + "updated_at": "2018-10-20T02:10:24Z", + "pushed_at": "2018-06-27T01:25:11Z", + "git_url": "git://github.com/jenkinsci/apprenda-plugin.git", + "ssh_url": "git@github.com:jenkinsci/apprenda-plugin.git", + "clone_url": "https://github.com/jenkinsci/apprenda-plugin.git", + "svn_url": "https://github.com/jenkinsci/apprenda-plugin", + "homepage": null, + "size": 391, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 2, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 122379307, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjIzNzkzMDc=", + "name": "agent-loadbalance-plugin", + "full_name": "jenkinsci/agent-loadbalance-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/agent-loadbalance-plugin", + "description": "Agent LoadBalance Plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/agent-loadbalance-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/agent-loadbalance-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/agent-loadbalance-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/agent-loadbalance-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/agent-loadbalance-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/agent-loadbalance-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/agent-loadbalance-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/agent-loadbalance-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/agent-loadbalance-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/agent-loadbalance-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/agent-loadbalance-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/agent-loadbalance-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/agent-loadbalance-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/agent-loadbalance-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/agent-loadbalance-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/agent-loadbalance-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/agent-loadbalance-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/agent-loadbalance-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/agent-loadbalance-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/agent-loadbalance-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/agent-loadbalance-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/agent-loadbalance-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/agent-loadbalance-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/agent-loadbalance-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/agent-loadbalance-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/agent-loadbalance-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/agent-loadbalance-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/agent-loadbalance-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/agent-loadbalance-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/agent-loadbalance-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/agent-loadbalance-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/agent-loadbalance-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/agent-loadbalance-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/agent-loadbalance-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/agent-loadbalance-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/agent-loadbalance-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/agent-loadbalance-plugin/deployments", + "created_at": "2018-02-21T18:57:33Z", + "updated_at": "2018-02-26T03:02:11Z", + "pushed_at": "2018-02-27T03:48:30Z", + "git_url": "git://github.com/jenkinsci/agent-loadbalance-plugin.git", + "ssh_url": "git@github.com:jenkinsci/agent-loadbalance-plugin.git", + "clone_url": "https://github.com/jenkinsci/agent-loadbalance-plugin.git", + "svn_url": "https://github.com/jenkinsci/agent-loadbalance-plugin", + "homepage": "http://surenpi.com", + "size": 26, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 122379394, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjIzNzkzOTQ=", + "name": "kotlin-plugin-pom", + "full_name": "jenkinsci/kotlin-plugin-pom", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/kotlin-plugin-pom", + "description": "Parent POM for Kotlin based Jenkins Plugins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/kotlin-plugin-pom", + "forks_url": "https://api.github.com/repos/jenkinsci/kotlin-plugin-pom/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/kotlin-plugin-pom/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/kotlin-plugin-pom/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/kotlin-plugin-pom/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/kotlin-plugin-pom/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/kotlin-plugin-pom/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/kotlin-plugin-pom/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/kotlin-plugin-pom/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/kotlin-plugin-pom/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/kotlin-plugin-pom/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/kotlin-plugin-pom/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/kotlin-plugin-pom/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/kotlin-plugin-pom/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/kotlin-plugin-pom/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/kotlin-plugin-pom/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/kotlin-plugin-pom/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/kotlin-plugin-pom/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/kotlin-plugin-pom/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/kotlin-plugin-pom/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/kotlin-plugin-pom/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/kotlin-plugin-pom/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/kotlin-plugin-pom/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/kotlin-plugin-pom/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/kotlin-plugin-pom/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/kotlin-plugin-pom/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/kotlin-plugin-pom/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/kotlin-plugin-pom/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/kotlin-plugin-pom/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/kotlin-plugin-pom/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/kotlin-plugin-pom/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/kotlin-plugin-pom/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/kotlin-plugin-pom/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/kotlin-plugin-pom/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/kotlin-plugin-pom/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/kotlin-plugin-pom/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/kotlin-plugin-pom/deployments", + "created_at": "2018-02-21T18:58:09Z", + "updated_at": "2019-10-06T14:05:45Z", + "pushed_at": "2019-01-21T13:29:18Z", + "git_url": "git://github.com/jenkinsci/kotlin-plugin-pom.git", + "ssh_url": "git@github.com:jenkinsci/kotlin-plugin-pom.git", + "clone_url": "https://github.com/jenkinsci/kotlin-plugin-pom.git", + "svn_url": "https://github.com/jenkinsci/kotlin-plugin-pom", + "homepage": null, + "size": 6, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 2, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 122379881, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjIzNzk4ODE=", + "name": "kotlin-v1-stdlib-jdk8-plugin", + "full_name": "jenkinsci/kotlin-v1-stdlib-jdk8-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/kotlin-v1-stdlib-jdk8-plugin", + "description": "Bundles Kotlin 1.x Standard Library", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/kotlin-v1-stdlib-jdk8-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/kotlin-v1-stdlib-jdk8-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/kotlin-v1-stdlib-jdk8-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/kotlin-v1-stdlib-jdk8-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/kotlin-v1-stdlib-jdk8-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/kotlin-v1-stdlib-jdk8-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/kotlin-v1-stdlib-jdk8-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/kotlin-v1-stdlib-jdk8-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/kotlin-v1-stdlib-jdk8-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/kotlin-v1-stdlib-jdk8-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/kotlin-v1-stdlib-jdk8-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/kotlin-v1-stdlib-jdk8-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/kotlin-v1-stdlib-jdk8-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/kotlin-v1-stdlib-jdk8-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/kotlin-v1-stdlib-jdk8-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/kotlin-v1-stdlib-jdk8-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/kotlin-v1-stdlib-jdk8-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/kotlin-v1-stdlib-jdk8-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/kotlin-v1-stdlib-jdk8-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/kotlin-v1-stdlib-jdk8-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/kotlin-v1-stdlib-jdk8-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/kotlin-v1-stdlib-jdk8-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/kotlin-v1-stdlib-jdk8-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/kotlin-v1-stdlib-jdk8-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/kotlin-v1-stdlib-jdk8-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/kotlin-v1-stdlib-jdk8-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/kotlin-v1-stdlib-jdk8-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/kotlin-v1-stdlib-jdk8-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/kotlin-v1-stdlib-jdk8-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/kotlin-v1-stdlib-jdk8-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/kotlin-v1-stdlib-jdk8-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/kotlin-v1-stdlib-jdk8-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/kotlin-v1-stdlib-jdk8-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/kotlin-v1-stdlib-jdk8-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/kotlin-v1-stdlib-jdk8-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/kotlin-v1-stdlib-jdk8-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/kotlin-v1-stdlib-jdk8-plugin/deployments", + "created_at": "2018-02-21T19:02:35Z", + "updated_at": "2019-10-06T14:04:46Z", + "pushed_at": "2019-01-31T02:16:06Z", + "git_url": "git://github.com/jenkinsci/kotlin-v1-stdlib-jdk8-plugin.git", + "ssh_url": "git@github.com:jenkinsci/kotlin-v1-stdlib-jdk8-plugin.git", + "clone_url": "https://github.com/jenkinsci/kotlin-v1-stdlib-jdk8-plugin.git", + "svn_url": "https://github.com/jenkinsci/kotlin-v1-stdlib-jdk8-plugin", + "homepage": null, + "size": 14, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 2, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 122380142, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjIzODAxNDI=", + "name": "badge-plugin", + "full_name": "jenkinsci/badge-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/badge-plugin", + "description": "Jenkins Badge plugin https://jenkins.io/", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/badge-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/badge-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/badge-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/badge-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/badge-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/badge-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/badge-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/badge-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/badge-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/badge-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/badge-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/badge-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/badge-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/badge-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/badge-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/badge-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/badge-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/badge-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/badge-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/badge-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/badge-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/badge-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/badge-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/badge-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/badge-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/badge-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/badge-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/badge-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/badge-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/badge-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/badge-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/badge-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/badge-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/badge-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/badge-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/badge-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/badge-plugin/deployments", + "created_at": "2018-02-21T19:04:59Z", + "updated_at": "2019-10-04T03:33:01Z", + "pushed_at": "2019-10-04T03:32:59Z", + "git_url": "git://github.com/jenkinsci/badge-plugin.git", + "ssh_url": "git@github.com:jenkinsci/badge-plugin.git", + "clone_url": "https://github.com/jenkinsci/badge-plugin.git", + "svn_url": "https://github.com/jenkinsci/badge-plugin", + "homepage": "", + "size": 290, + "stargazers_count": 14, + "watchers_count": 14, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": true, + "forks_count": 15, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 15, + "open_issues": 2, + "watchers": 14, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 122662195, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjI2NjIxOTU=", + "name": "partyparrotstatus-plugin", + "full_name": "jenkinsci/partyparrotstatus-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/partyparrotstatus-plugin", + "description": "A party parrot set of icons for Jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/partyparrotstatus-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/partyparrotstatus-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/partyparrotstatus-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/partyparrotstatus-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/partyparrotstatus-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/partyparrotstatus-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/partyparrotstatus-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/partyparrotstatus-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/partyparrotstatus-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/partyparrotstatus-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/partyparrotstatus-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/partyparrotstatus-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/partyparrotstatus-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/partyparrotstatus-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/partyparrotstatus-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/partyparrotstatus-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/partyparrotstatus-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/partyparrotstatus-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/partyparrotstatus-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/partyparrotstatus-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/partyparrotstatus-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/partyparrotstatus-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/partyparrotstatus-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/partyparrotstatus-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/partyparrotstatus-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/partyparrotstatus-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/partyparrotstatus-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/partyparrotstatus-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/partyparrotstatus-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/partyparrotstatus-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/partyparrotstatus-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/partyparrotstatus-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/partyparrotstatus-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/partyparrotstatus-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/partyparrotstatus-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/partyparrotstatus-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/partyparrotstatus-plugin/deployments", + "created_at": "2018-02-23T19:11:26Z", + "updated_at": "2019-10-21T16:57:26Z", + "pushed_at": "2018-02-27T12:57:23Z", + "git_url": "git://github.com/jenkinsci/partyparrotstatus-plugin.git", + "ssh_url": "git@github.com:jenkinsci/partyparrotstatus-plugin.git", + "clone_url": "https://github.com/jenkinsci/partyparrotstatus-plugin.git", + "svn_url": "https://github.com/jenkinsci/partyparrotstatus-plugin", + "homepage": null, + "size": 687, + "stargazers_count": 48, + "watchers_count": 48, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 48, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 122682923, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjI2ODI5MjM=", + "name": "itest-plugin", + "full_name": "jenkinsci/itest-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/itest-plugin", + "description": "Spirent-iTest-Jenkins-Plugin Public Code Repository for the Spirent iTest Jenkins Plugin - https://wiki.jenkins-ci.org/display/JENKINS/Spirent+iTest+Plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/itest-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/itest-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/itest-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/itest-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/itest-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/itest-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/itest-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/itest-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/itest-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/itest-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/itest-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/itest-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/itest-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/itest-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/itest-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/itest-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/itest-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/itest-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/itest-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/itest-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/itest-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/itest-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/itest-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/itest-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/itest-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/itest-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/itest-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/itest-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/itest-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/itest-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/itest-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/itest-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/itest-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/itest-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/itest-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/itest-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/itest-plugin/deployments", + "created_at": "2018-02-23T23:21:24Z", + "updated_at": "2018-04-06T10:34:06Z", + "pushed_at": "2018-04-06T10:34:05Z", + "git_url": "git://github.com/jenkinsci/itest-plugin.git", + "ssh_url": "git@github.com:jenkinsci/itest-plugin.git", + "clone_url": "https://github.com/jenkinsci/itest-plugin.git", + "svn_url": "https://github.com/jenkinsci/itest-plugin", + "homepage": null, + "size": 40, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 122790633, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjI3OTA2MzM=", + "name": "jenkinsfile-runner", + "full_name": "jenkinsci/jenkinsfile-runner", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jenkinsfile-runner", + "description": "A command line tool to run Jenkinsfile as a function", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner", + "forks_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jenkinsfile-runner/deployments", + "created_at": "2018-02-24T23:56:01Z", + "updated_at": "2019-10-25T21:30:18Z", + "pushed_at": "2019-10-25T02:12:26Z", + "git_url": "git://github.com/jenkinsci/jenkinsfile-runner.git", + "ssh_url": "git@github.com:jenkinsci/jenkinsfile-runner.git", + "clone_url": "https://github.com/jenkinsci/jenkinsfile-runner.git", + "svn_url": "https://github.com/jenkinsci/jenkinsfile-runner", + "homepage": "", + "size": 1066, + "stargazers_count": 397, + "watchers_count": 397, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 121, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 27, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 121, + "open_issues": 27, + "watchers": 397, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 123582471, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjM1ODI0NzE=", + "name": "ibm-continuous-release-plugin", + "full_name": "jenkinsci/ibm-continuous-release-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/ibm-continuous-release-plugin", + "description": "Jenkins plugin for IBM Continuous Release offering", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/ibm-continuous-release-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/ibm-continuous-release-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/ibm-continuous-release-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/ibm-continuous-release-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/ibm-continuous-release-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/ibm-continuous-release-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/ibm-continuous-release-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/ibm-continuous-release-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/ibm-continuous-release-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/ibm-continuous-release-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/ibm-continuous-release-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/ibm-continuous-release-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/ibm-continuous-release-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/ibm-continuous-release-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/ibm-continuous-release-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/ibm-continuous-release-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/ibm-continuous-release-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/ibm-continuous-release-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/ibm-continuous-release-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/ibm-continuous-release-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/ibm-continuous-release-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/ibm-continuous-release-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/ibm-continuous-release-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/ibm-continuous-release-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/ibm-continuous-release-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/ibm-continuous-release-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/ibm-continuous-release-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/ibm-continuous-release-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/ibm-continuous-release-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/ibm-continuous-release-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/ibm-continuous-release-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/ibm-continuous-release-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/ibm-continuous-release-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/ibm-continuous-release-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/ibm-continuous-release-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/ibm-continuous-release-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/ibm-continuous-release-plugin/deployments", + "created_at": "2018-03-02T13:29:35Z", + "updated_at": "2018-05-02T15:51:43Z", + "pushed_at": "2018-07-11T15:00:45Z", + "git_url": "git://github.com/jenkinsci/ibm-continuous-release-plugin.git", + "ssh_url": "git@github.com:jenkinsci/ibm-continuous-release-plugin.git", + "clone_url": "https://github.com/jenkinsci/ibm-continuous-release-plugin.git", + "svn_url": "https://github.com/jenkinsci/ibm-continuous-release-plugin", + "homepage": null, + "size": 13512, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 124214174, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjQyMTQxNzQ=", + "name": "loadium-plugin", + "full_name": "jenkinsci/loadium-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/loadium-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/loadium-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/loadium-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/loadium-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/loadium-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/loadium-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/loadium-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/loadium-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/loadium-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/loadium-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/loadium-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/loadium-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/loadium-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/loadium-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/loadium-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/loadium-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/loadium-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/loadium-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/loadium-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/loadium-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/loadium-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/loadium-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/loadium-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/loadium-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/loadium-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/loadium-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/loadium-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/loadium-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/loadium-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/loadium-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/loadium-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/loadium-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/loadium-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/loadium-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/loadium-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/loadium-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/loadium-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/loadium-plugin/deployments", + "created_at": "2018-03-07T09:46:44Z", + "updated_at": "2019-10-16T11:53:56Z", + "pushed_at": "2019-10-16T11:53:54Z", + "git_url": "git://github.com/jenkinsci/loadium-plugin.git", + "ssh_url": "git@github.com:jenkinsci/loadium-plugin.git", + "clone_url": "https://github.com/jenkinsci/loadium-plugin.git", + "svn_url": "https://github.com/jenkinsci/loadium-plugin", + "homepage": null, + "size": 89, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 5, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 124274199, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjQyNzQxOTk=", + "name": "gprbuild-plugin", + "full_name": "jenkinsci/gprbuild-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/gprbuild-plugin", + "description": "This Jenkins plugin allows building GNAT projects with GPRbuild", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/gprbuild-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/gprbuild-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/gprbuild-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/gprbuild-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/gprbuild-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/gprbuild-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/gprbuild-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/gprbuild-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/gprbuild-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/gprbuild-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/gprbuild-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/gprbuild-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/gprbuild-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/gprbuild-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/gprbuild-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/gprbuild-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/gprbuild-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/gprbuild-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/gprbuild-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/gprbuild-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/gprbuild-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/gprbuild-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/gprbuild-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/gprbuild-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/gprbuild-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/gprbuild-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/gprbuild-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/gprbuild-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/gprbuild-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/gprbuild-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/gprbuild-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/gprbuild-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/gprbuild-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/gprbuild-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/gprbuild-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/gprbuild-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/gprbuild-plugin/deployments", + "created_at": "2018-03-07T17:59:31Z", + "updated_at": "2018-03-08T15:02:19Z", + "pushed_at": "2018-03-09T22:05:14Z", + "git_url": "git://github.com/jenkinsci/gprbuild-plugin.git", + "ssh_url": "git@github.com:jenkinsci/gprbuild-plugin.git", + "clone_url": "https://github.com/jenkinsci/gprbuild-plugin.git", + "svn_url": "https://github.com/jenkinsci/gprbuild-plugin", + "homepage": null, + "size": 19, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 124917607, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjQ5MTc2MDc=", + "name": "quamotion-cloud-plugin", + "full_name": "jenkinsci/quamotion-cloud-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/quamotion-cloud-plugin", + "description": "Jenkins plugin to interact with Quamotion Cloud", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/quamotion-cloud-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/quamotion-cloud-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/quamotion-cloud-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/quamotion-cloud-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/quamotion-cloud-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/quamotion-cloud-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/quamotion-cloud-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/quamotion-cloud-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/quamotion-cloud-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/quamotion-cloud-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/quamotion-cloud-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/quamotion-cloud-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/quamotion-cloud-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/quamotion-cloud-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/quamotion-cloud-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/quamotion-cloud-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/quamotion-cloud-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/quamotion-cloud-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/quamotion-cloud-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/quamotion-cloud-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/quamotion-cloud-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/quamotion-cloud-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/quamotion-cloud-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/quamotion-cloud-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/quamotion-cloud-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/quamotion-cloud-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/quamotion-cloud-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/quamotion-cloud-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/quamotion-cloud-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/quamotion-cloud-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/quamotion-cloud-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/quamotion-cloud-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/quamotion-cloud-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/quamotion-cloud-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/quamotion-cloud-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/quamotion-cloud-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/quamotion-cloud-plugin/deployments", + "created_at": "2018-03-12T16:20:43Z", + "updated_at": "2018-03-12T16:20:54Z", + "pushed_at": "2018-03-12T09:18:22Z", + "git_url": "git://github.com/jenkinsci/quamotion-cloud-plugin.git", + "ssh_url": "git@github.com:jenkinsci/quamotion-cloud-plugin.git", + "clone_url": "https://github.com/jenkinsci/quamotion-cloud-plugin.git", + "svn_url": "https://github.com/jenkinsci/quamotion-cloud-plugin", + "homepage": null, + "size": 21, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 124917897, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjQ5MTc4OTc=", + "name": "arestocats-plugin", + "full_name": "jenkinsci/arestocats-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/arestocats-plugin", + "description": "Jenkins-Plugin for https://github.com/aixigo/arestocats", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/arestocats-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/arestocats-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/arestocats-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/arestocats-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/arestocats-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/arestocats-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/arestocats-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/arestocats-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/arestocats-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/arestocats-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/arestocats-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/arestocats-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/arestocats-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/arestocats-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/arestocats-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/arestocats-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/arestocats-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/arestocats-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/arestocats-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/arestocats-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/arestocats-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/arestocats-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/arestocats-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/arestocats-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/arestocats-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/arestocats-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/arestocats-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/arestocats-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/arestocats-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/arestocats-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/arestocats-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/arestocats-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/arestocats-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/arestocats-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/arestocats-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/arestocats-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/arestocats-plugin/deployments", + "created_at": "2018-03-12T16:23:05Z", + "updated_at": "2018-06-10T20:25:02Z", + "pushed_at": "2019-06-04T11:51:01Z", + "git_url": "git://github.com/jenkinsci/arestocats-plugin.git", + "ssh_url": "git@github.com:jenkinsci/arestocats-plugin.git", + "clone_url": "https://github.com/jenkinsci/arestocats-plugin.git", + "svn_url": "https://github.com/jenkinsci/arestocats-plugin", + "homepage": null, + "size": 755, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 2, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 125072568, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjUwNzI1Njg=", + "name": "jdk-tool-plugin", + "full_name": "jenkinsci/jdk-tool-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jdk-tool-plugin", + "description": "Oracle Java SE Development Kit Installer Plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jdk-tool-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/jdk-tool-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jdk-tool-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jdk-tool-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jdk-tool-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jdk-tool-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jdk-tool-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jdk-tool-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jdk-tool-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jdk-tool-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jdk-tool-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jdk-tool-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jdk-tool-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jdk-tool-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jdk-tool-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jdk-tool-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jdk-tool-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jdk-tool-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jdk-tool-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jdk-tool-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jdk-tool-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jdk-tool-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jdk-tool-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jdk-tool-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jdk-tool-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jdk-tool-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jdk-tool-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jdk-tool-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jdk-tool-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jdk-tool-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jdk-tool-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jdk-tool-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jdk-tool-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jdk-tool-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jdk-tool-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jdk-tool-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jdk-tool-plugin/deployments", + "created_at": "2018-03-13T15:23:12Z", + "updated_at": "2019-10-07T08:18:59Z", + "pushed_at": "2019-10-07T08:19:08Z", + "git_url": "git://github.com/jenkinsci/jdk-tool-plugin.git", + "ssh_url": "git@github.com:jenkinsci/jdk-tool-plugin.git", + "clone_url": "https://github.com/jenkinsci/jdk-tool-plugin.git", + "svn_url": "https://github.com/jenkinsci/jdk-tool-plugin", + "homepage": "https://plugins.jenkins.io/jdk-tool", + "size": 80, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 11, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 11, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 125103897, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjUxMDM4OTc=", + "name": "google-compute-engine-plugin", + "full_name": "jenkinsci/google-compute-engine-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/google-compute-engine-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/google-compute-engine-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/google-compute-engine-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/google-compute-engine-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/google-compute-engine-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/google-compute-engine-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/google-compute-engine-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/google-compute-engine-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/google-compute-engine-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/google-compute-engine-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/google-compute-engine-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/google-compute-engine-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/google-compute-engine-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/google-compute-engine-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/google-compute-engine-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/google-compute-engine-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/google-compute-engine-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/google-compute-engine-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/google-compute-engine-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/google-compute-engine-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/google-compute-engine-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/google-compute-engine-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/google-compute-engine-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/google-compute-engine-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/google-compute-engine-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/google-compute-engine-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/google-compute-engine-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/google-compute-engine-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/google-compute-engine-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/google-compute-engine-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/google-compute-engine-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/google-compute-engine-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/google-compute-engine-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/google-compute-engine-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/google-compute-engine-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/google-compute-engine-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/google-compute-engine-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/google-compute-engine-plugin/deployments", + "created_at": "2018-03-13T19:30:03Z", + "updated_at": "2019-10-17T20:06:26Z", + "pushed_at": "2019-10-25T23:34:08Z", + "git_url": "git://github.com/jenkinsci/google-compute-engine-plugin.git", + "ssh_url": "git@github.com:jenkinsci/google-compute-engine-plugin.git", + "clone_url": "https://github.com/jenkinsci/google-compute-engine-plugin.git", + "svn_url": "https://github.com/jenkinsci/google-compute-engine-plugin", + "homepage": null, + "size": 1024, + "stargazers_count": 23, + "watchers_count": 23, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 20, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 21, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 20, + "open_issues": 21, + "watchers": 23, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 125394140, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjUzOTQxNDA=", + "name": "kubernetes-credentials-provider-plugin", + "full_name": "jenkinsci/kubernetes-credentials-provider-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/kubernetes-credentials-provider-plugin", + "description": "Credentials provider that allows storing credentials in Kubernetes", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/kubernetes-credentials-provider-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/kubernetes-credentials-provider-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/kubernetes-credentials-provider-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/kubernetes-credentials-provider-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/kubernetes-credentials-provider-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/kubernetes-credentials-provider-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/kubernetes-credentials-provider-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/kubernetes-credentials-provider-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/kubernetes-credentials-provider-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/kubernetes-credentials-provider-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/kubernetes-credentials-provider-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/kubernetes-credentials-provider-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/kubernetes-credentials-provider-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/kubernetes-credentials-provider-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/kubernetes-credentials-provider-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/kubernetes-credentials-provider-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/kubernetes-credentials-provider-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/kubernetes-credentials-provider-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/kubernetes-credentials-provider-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/kubernetes-credentials-provider-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/kubernetes-credentials-provider-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/kubernetes-credentials-provider-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/kubernetes-credentials-provider-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/kubernetes-credentials-provider-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/kubernetes-credentials-provider-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/kubernetes-credentials-provider-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/kubernetes-credentials-provider-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/kubernetes-credentials-provider-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/kubernetes-credentials-provider-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/kubernetes-credentials-provider-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/kubernetes-credentials-provider-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/kubernetes-credentials-provider-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/kubernetes-credentials-provider-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/kubernetes-credentials-provider-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/kubernetes-credentials-provider-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/kubernetes-credentials-provider-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/kubernetes-credentials-provider-plugin/deployments", + "created_at": "2018-03-15T16:14:49Z", + "updated_at": "2019-10-16T23:08:52Z", + "pushed_at": "2019-10-17T20:25:07Z", + "git_url": "git://github.com/jenkinsci/kubernetes-credentials-provider-plugin.git", + "ssh_url": "git@github.com:jenkinsci/kubernetes-credentials-provider-plugin.git", + "clone_url": "https://github.com/jenkinsci/kubernetes-credentials-provider-plugin.git", + "svn_url": "https://github.com/jenkinsci/kubernetes-credentials-provider-plugin", + "homepage": "https://jenkinsci.github.io/kubernetes-credentials-provider-plugin/", + "size": 212, + "stargazers_count": 23, + "watchers_count": 23, + "language": "Java", + "has_issues": false, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": true, + "forks_count": 21, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 21, + "open_issues": 2, + "watchers": 23, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 126665656, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjY2NjU2NTY=", + "name": "custom-war-packager", + "full_name": "jenkinsci/custom-war-packager", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/custom-war-packager", + "description": "Custom Jenkins WAR packager for Jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/custom-war-packager", + "forks_url": "https://api.github.com/repos/jenkinsci/custom-war-packager/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/custom-war-packager/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/custom-war-packager/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/custom-war-packager/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/custom-war-packager/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/custom-war-packager/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/custom-war-packager/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/custom-war-packager/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/custom-war-packager/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/custom-war-packager/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/custom-war-packager/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/custom-war-packager/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/custom-war-packager/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/custom-war-packager/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/custom-war-packager/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/custom-war-packager/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/custom-war-packager/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/custom-war-packager/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/custom-war-packager/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/custom-war-packager/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/custom-war-packager/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/custom-war-packager/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/custom-war-packager/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/custom-war-packager/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/custom-war-packager/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/custom-war-packager/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/custom-war-packager/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/custom-war-packager/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/custom-war-packager/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/custom-war-packager/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/custom-war-packager/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/custom-war-packager/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/custom-war-packager/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/custom-war-packager/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/custom-war-packager/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/custom-war-packager/deployments", + "created_at": "2018-03-25T04:50:40Z", + "updated_at": "2019-10-22T19:58:51Z", + "pushed_at": "2019-10-24T05:23:57Z", + "git_url": "git://github.com/jenkinsci/custom-war-packager.git", + "ssh_url": "git@github.com:jenkinsci/custom-war-packager.git", + "clone_url": "https://github.com/jenkinsci/custom-war-packager.git", + "svn_url": "https://github.com/jenkinsci/custom-war-packager", + "homepage": "https://jenkins.io/blog/2018/10/16/custom-war-packager/", + "size": 438, + "stargazers_count": 57, + "watchers_count": 57, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 41, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 21, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 41, + "open_issues": 21, + "watchers": 57, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 126857357, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjY4NTczNTc=", + "name": "aws-parameter-store-plugin", + "full_name": "jenkinsci/aws-parameter-store-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/aws-parameter-store-plugin", + "description": "Jenkins AWS Parameter Store Plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/aws-parameter-store-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/aws-parameter-store-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/aws-parameter-store-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/aws-parameter-store-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/aws-parameter-store-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/aws-parameter-store-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/aws-parameter-store-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/aws-parameter-store-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/aws-parameter-store-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/aws-parameter-store-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/aws-parameter-store-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/aws-parameter-store-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/aws-parameter-store-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/aws-parameter-store-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/aws-parameter-store-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/aws-parameter-store-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/aws-parameter-store-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/aws-parameter-store-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/aws-parameter-store-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/aws-parameter-store-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/aws-parameter-store-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/aws-parameter-store-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/aws-parameter-store-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/aws-parameter-store-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/aws-parameter-store-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/aws-parameter-store-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/aws-parameter-store-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/aws-parameter-store-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/aws-parameter-store-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/aws-parameter-store-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/aws-parameter-store-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/aws-parameter-store-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/aws-parameter-store-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/aws-parameter-store-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/aws-parameter-store-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/aws-parameter-store-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/aws-parameter-store-plugin/deployments", + "created_at": "2018-03-26T16:26:30Z", + "updated_at": "2019-08-20T15:40:21Z", + "pushed_at": "2019-10-08T15:19:51Z", + "git_url": "git://github.com/jenkinsci/aws-parameter-store-plugin.git", + "ssh_url": "git@github.com:jenkinsci/aws-parameter-store-plugin.git", + "clone_url": "https://github.com/jenkinsci/aws-parameter-store-plugin.git", + "svn_url": "https://github.com/jenkinsci/aws-parameter-store-plugin", + "homepage": null, + "size": 120, + "stargazers_count": 9, + "watchers_count": 9, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 5, + "open_issues": 1, + "watchers": 9, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 126857422, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjY4NTc0MjI=", + "name": "build-token-trigger-plugin", + "full_name": "jenkinsci/build-token-trigger-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/build-token-trigger-plugin", + "description": "Build Token Trigger Plugin for Jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/build-token-trigger-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/build-token-trigger-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/build-token-trigger-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/build-token-trigger-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/build-token-trigger-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/build-token-trigger-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/build-token-trigger-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/build-token-trigger-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/build-token-trigger-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/build-token-trigger-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/build-token-trigger-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/build-token-trigger-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/build-token-trigger-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/build-token-trigger-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/build-token-trigger-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/build-token-trigger-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/build-token-trigger-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/build-token-trigger-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/build-token-trigger-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/build-token-trigger-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/build-token-trigger-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/build-token-trigger-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/build-token-trigger-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/build-token-trigger-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/build-token-trigger-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/build-token-trigger-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/build-token-trigger-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/build-token-trigger-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/build-token-trigger-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/build-token-trigger-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/build-token-trigger-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/build-token-trigger-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/build-token-trigger-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/build-token-trigger-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/build-token-trigger-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/build-token-trigger-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/build-token-trigger-plugin/deployments", + "created_at": "2018-03-26T16:27:04Z", + "updated_at": "2018-07-24T21:38:36Z", + "pushed_at": "2018-03-29T11:28:43Z", + "git_url": "git://github.com/jenkinsci/build-token-trigger-plugin.git", + "ssh_url": "git@github.com:jenkinsci/build-token-trigger-plugin.git", + "clone_url": "https://github.com/jenkinsci/build-token-trigger-plugin.git", + "svn_url": "https://github.com/jenkinsci/build-token-trigger-plugin", + "homepage": "http://plugins.jenkins.io/build-token-trigger", + "size": 524, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 126857607, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjY4NTc2MDc=", + "name": "bitbucket-approval-filter-plugin", + "full_name": "jenkinsci/bitbucket-approval-filter-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/bitbucket-approval-filter-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/bitbucket-approval-filter-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/bitbucket-approval-filter-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/bitbucket-approval-filter-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/bitbucket-approval-filter-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/bitbucket-approval-filter-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/bitbucket-approval-filter-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/bitbucket-approval-filter-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/bitbucket-approval-filter-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/bitbucket-approval-filter-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/bitbucket-approval-filter-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/bitbucket-approval-filter-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/bitbucket-approval-filter-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/bitbucket-approval-filter-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/bitbucket-approval-filter-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/bitbucket-approval-filter-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/bitbucket-approval-filter-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/bitbucket-approval-filter-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/bitbucket-approval-filter-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/bitbucket-approval-filter-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/bitbucket-approval-filter-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/bitbucket-approval-filter-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/bitbucket-approval-filter-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/bitbucket-approval-filter-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/bitbucket-approval-filter-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/bitbucket-approval-filter-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/bitbucket-approval-filter-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/bitbucket-approval-filter-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/bitbucket-approval-filter-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/bitbucket-approval-filter-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/bitbucket-approval-filter-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/bitbucket-approval-filter-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/bitbucket-approval-filter-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/bitbucket-approval-filter-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/bitbucket-approval-filter-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/bitbucket-approval-filter-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/bitbucket-approval-filter-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/bitbucket-approval-filter-plugin/deployments", + "created_at": "2018-03-26T16:28:36Z", + "updated_at": "2019-10-25T02:42:50Z", + "pushed_at": "2019-10-25T02:42:48Z", + "git_url": "git://github.com/jenkinsci/bitbucket-approval-filter-plugin.git", + "ssh_url": "git@github.com:jenkinsci/bitbucket-approval-filter-plugin.git", + "clone_url": "https://github.com/jenkinsci/bitbucket-approval-filter-plugin.git", + "svn_url": "https://github.com/jenkinsci/bitbucket-approval-filter-plugin", + "homepage": null, + "size": 35, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 2, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 126866282, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjY4NjYyODI=", + "name": "folder-properties-plugin", + "full_name": "jenkinsci/folder-properties-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/folder-properties-plugin", + "description": "A Jenkins plugin for defining properties at folder level which can then be inherited by the jobs contained inside it.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/folder-properties-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/folder-properties-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/folder-properties-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/folder-properties-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/folder-properties-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/folder-properties-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/folder-properties-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/folder-properties-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/folder-properties-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/folder-properties-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/folder-properties-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/folder-properties-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/folder-properties-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/folder-properties-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/folder-properties-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/folder-properties-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/folder-properties-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/folder-properties-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/folder-properties-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/folder-properties-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/folder-properties-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/folder-properties-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/folder-properties-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/folder-properties-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/folder-properties-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/folder-properties-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/folder-properties-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/folder-properties-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/folder-properties-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/folder-properties-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/folder-properties-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/folder-properties-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/folder-properties-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/folder-properties-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/folder-properties-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/folder-properties-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/folder-properties-plugin/deployments", + "created_at": "2018-03-26T17:40:19Z", + "updated_at": "2019-10-15T21:13:58Z", + "pushed_at": "2018-07-31T15:10:04Z", + "git_url": "git://github.com/jenkinsci/folder-properties-plugin.git", + "ssh_url": "git@github.com:jenkinsci/folder-properties-plugin.git", + "clone_url": "https://github.com/jenkinsci/folder-properties-plugin.git", + "svn_url": "https://github.com/jenkinsci/folder-properties-plugin", + "homepage": null, + "size": 128, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 127051186, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjcwNTExODY=", + "name": "artifact-manager-s3-plugin", + "full_name": "jenkinsci/artifact-manager-s3-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/artifact-manager-s3-plugin", + "description": " Artifact manager implementation for Amazon S3", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/artifact-manager-s3-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/artifact-manager-s3-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/artifact-manager-s3-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/artifact-manager-s3-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/artifact-manager-s3-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/artifact-manager-s3-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/artifact-manager-s3-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/artifact-manager-s3-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/artifact-manager-s3-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/artifact-manager-s3-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/artifact-manager-s3-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/artifact-manager-s3-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/artifact-manager-s3-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/artifact-manager-s3-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/artifact-manager-s3-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/artifact-manager-s3-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/artifact-manager-s3-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/artifact-manager-s3-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/artifact-manager-s3-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/artifact-manager-s3-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/artifact-manager-s3-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/artifact-manager-s3-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/artifact-manager-s3-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/artifact-manager-s3-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/artifact-manager-s3-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/artifact-manager-s3-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/artifact-manager-s3-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/artifact-manager-s3-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/artifact-manager-s3-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/artifact-manager-s3-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/artifact-manager-s3-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/artifact-manager-s3-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/artifact-manager-s3-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/artifact-manager-s3-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/artifact-manager-s3-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/artifact-manager-s3-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/artifact-manager-s3-plugin/deployments", + "created_at": "2018-03-27T22:07:06Z", + "updated_at": "2019-10-24T22:54:15Z", + "pushed_at": "2019-10-21T19:54:17Z", + "git_url": "git://github.com/jenkinsci/artifact-manager-s3-plugin.git", + "ssh_url": "git@github.com:jenkinsci/artifact-manager-s3-plugin.git", + "clone_url": "https://github.com/jenkinsci/artifact-manager-s3-plugin.git", + "svn_url": "https://github.com/jenkinsci/artifact-manager-s3-plugin", + "homepage": "", + "size": 2215, + "stargazers_count": 33, + "watchers_count": 33, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 26, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 8, + "license": null, + "forks": 26, + "open_issues": 8, + "watchers": 33, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 127327639, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjczMjc2Mzk=", + "name": "nodepool-agents-plugin", + "full_name": "jenkinsci/nodepool-agents-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/nodepool-agents-plugin", + "description": "Nodepool plugin for Jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/nodepool-agents-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/nodepool-agents-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/nodepool-agents-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/nodepool-agents-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/nodepool-agents-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/nodepool-agents-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/nodepool-agents-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/nodepool-agents-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/nodepool-agents-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/nodepool-agents-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/nodepool-agents-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/nodepool-agents-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/nodepool-agents-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/nodepool-agents-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/nodepool-agents-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/nodepool-agents-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/nodepool-agents-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/nodepool-agents-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/nodepool-agents-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/nodepool-agents-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/nodepool-agents-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/nodepool-agents-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/nodepool-agents-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/nodepool-agents-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/nodepool-agents-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/nodepool-agents-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/nodepool-agents-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/nodepool-agents-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/nodepool-agents-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/nodepool-agents-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/nodepool-agents-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/nodepool-agents-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/nodepool-agents-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/nodepool-agents-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/nodepool-agents-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/nodepool-agents-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/nodepool-agents-plugin/deployments", + "created_at": "2018-03-29T17:52:55Z", + "updated_at": "2019-03-01T13:16:36Z", + "pushed_at": "2019-03-01T13:16:34Z", + "git_url": "git://github.com/jenkinsci/nodepool-agents-plugin.git", + "ssh_url": "git@github.com:jenkinsci/nodepool-agents-plugin.git", + "clone_url": "https://github.com/jenkinsci/nodepool-agents-plugin.git", + "svn_url": "https://github.com/jenkinsci/nodepool-agents-plugin", + "homepage": null, + "size": 543, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 4, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 127327714, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjczMjc3MTQ=", + "name": "owl-reporter-plugin", + "full_name": "jenkinsci/owl-reporter-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/owl-reporter-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/owl-reporter-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/owl-reporter-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/owl-reporter-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/owl-reporter-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/owl-reporter-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/owl-reporter-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/owl-reporter-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/owl-reporter-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/owl-reporter-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/owl-reporter-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/owl-reporter-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/owl-reporter-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/owl-reporter-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/owl-reporter-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/owl-reporter-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/owl-reporter-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/owl-reporter-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/owl-reporter-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/owl-reporter-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/owl-reporter-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/owl-reporter-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/owl-reporter-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/owl-reporter-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/owl-reporter-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/owl-reporter-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/owl-reporter-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/owl-reporter-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/owl-reporter-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/owl-reporter-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/owl-reporter-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/owl-reporter-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/owl-reporter-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/owl-reporter-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/owl-reporter-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/owl-reporter-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/owl-reporter-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/owl-reporter-plugin/deployments", + "created_at": "2018-03-29T17:53:39Z", + "updated_at": "2018-04-02T13:12:26Z", + "pushed_at": "2018-08-02T14:40:42Z", + "git_url": "git://github.com/jenkinsci/owl-reporter-plugin.git", + "ssh_url": "git@github.com:jenkinsci/owl-reporter-plugin.git", + "clone_url": "https://github.com/jenkinsci/owl-reporter-plugin.git", + "svn_url": "https://github.com/jenkinsci/owl-reporter-plugin", + "homepage": null, + "size": 39, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 127775882, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjc3NzU4ODI=", + "name": "rabbitmq-publisher-plugin", + "full_name": "jenkinsci/rabbitmq-publisher-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/rabbitmq-publisher-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/rabbitmq-publisher-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/rabbitmq-publisher-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/rabbitmq-publisher-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/rabbitmq-publisher-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/rabbitmq-publisher-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/rabbitmq-publisher-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/rabbitmq-publisher-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/rabbitmq-publisher-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/rabbitmq-publisher-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/rabbitmq-publisher-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/rabbitmq-publisher-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/rabbitmq-publisher-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/rabbitmq-publisher-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/rabbitmq-publisher-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/rabbitmq-publisher-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/rabbitmq-publisher-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/rabbitmq-publisher-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/rabbitmq-publisher-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/rabbitmq-publisher-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/rabbitmq-publisher-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/rabbitmq-publisher-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/rabbitmq-publisher-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/rabbitmq-publisher-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/rabbitmq-publisher-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/rabbitmq-publisher-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/rabbitmq-publisher-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/rabbitmq-publisher-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/rabbitmq-publisher-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/rabbitmq-publisher-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/rabbitmq-publisher-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/rabbitmq-publisher-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/rabbitmq-publisher-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/rabbitmq-publisher-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/rabbitmq-publisher-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/rabbitmq-publisher-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/rabbitmq-publisher-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/rabbitmq-publisher-plugin/deployments", + "created_at": "2018-04-02T15:36:28Z", + "updated_at": "2019-07-08T11:13:14Z", + "pushed_at": "2019-07-08T11:17:28Z", + "git_url": "git://github.com/jenkinsci/rabbitmq-publisher-plugin.git", + "ssh_url": "git@github.com:jenkinsci/rabbitmq-publisher-plugin.git", + "clone_url": "https://github.com/jenkinsci/rabbitmq-publisher-plugin.git", + "svn_url": "https://github.com/jenkinsci/rabbitmq-publisher-plugin", + "homepage": null, + "size": 135, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 6, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 127922240, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjc5MjIyNDA=", + "name": "exam-plugin", + "full_name": "jenkinsci/exam-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/exam-plugin", + "description": "This plugin integrates the RESTapi of the Testautomation tool EXAM for automated test execution.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/exam-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/exam-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/exam-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/exam-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/exam-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/exam-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/exam-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/exam-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/exam-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/exam-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/exam-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/exam-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/exam-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/exam-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/exam-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/exam-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/exam-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/exam-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/exam-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/exam-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/exam-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/exam-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/exam-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/exam-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/exam-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/exam-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/exam-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/exam-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/exam-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/exam-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/exam-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/exam-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/exam-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/exam-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/exam-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/exam-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/exam-plugin/deployments", + "created_at": "2018-04-03T14:37:50Z", + "updated_at": "2019-05-09T14:29:30Z", + "pushed_at": "2019-07-14T20:50:18Z", + "git_url": "git://github.com/jenkinsci/exam-plugin.git", + "ssh_url": "git@github.com:jenkinsci/exam-plugin.git", + "clone_url": "https://github.com/jenkinsci/exam-plugin.git", + "svn_url": "https://github.com/jenkinsci/exam-plugin", + "homepage": "https://www.exam-ta.de", + "size": 313, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 2, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 127933818, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjc5MzM4MTg=", + "name": "jx-resources-plugin", + "full_name": "jenkinsci/jx-resources-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jx-resources-plugin", + "description": "Jenkins plugin for managing Jenkins X kubernetes resources", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jx-resources-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/jx-resources-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jx-resources-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jx-resources-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jx-resources-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jx-resources-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jx-resources-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jx-resources-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jx-resources-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jx-resources-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jx-resources-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jx-resources-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jx-resources-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jx-resources-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jx-resources-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jx-resources-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jx-resources-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jx-resources-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jx-resources-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jx-resources-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jx-resources-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jx-resources-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jx-resources-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jx-resources-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jx-resources-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jx-resources-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jx-resources-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jx-resources-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jx-resources-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jx-resources-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jx-resources-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jx-resources-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jx-resources-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jx-resources-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jx-resources-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jx-resources-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jx-resources-plugin/deployments", + "created_at": "2018-04-03T16:03:57Z", + "updated_at": "2019-06-11T13:17:09Z", + "pushed_at": "2019-06-11T13:17:07Z", + "git_url": "git://github.com/jenkinsci/jx-resources-plugin.git", + "ssh_url": "git@github.com:jenkinsci/jx-resources-plugin.git", + "clone_url": "https://github.com/jenkinsci/jx-resources-plugin.git", + "svn_url": "https://github.com/jenkinsci/jx-resources-plugin", + "homepage": null, + "size": 111, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 9, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 9, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 128096122, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjgwOTYxMjI=", + "name": "sensedia-api-platform-plugin", + "full_name": "jenkinsci/sensedia-api-platform-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/sensedia-api-platform-plugin", + "description": "It is a continuous integration and continuous delivery Jenkins plugin for Sensedia API Platform", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/sensedia-api-platform-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/sensedia-api-platform-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/sensedia-api-platform-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/sensedia-api-platform-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/sensedia-api-platform-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/sensedia-api-platform-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/sensedia-api-platform-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/sensedia-api-platform-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/sensedia-api-platform-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/sensedia-api-platform-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/sensedia-api-platform-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/sensedia-api-platform-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/sensedia-api-platform-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/sensedia-api-platform-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/sensedia-api-platform-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/sensedia-api-platform-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/sensedia-api-platform-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/sensedia-api-platform-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/sensedia-api-platform-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/sensedia-api-platform-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/sensedia-api-platform-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/sensedia-api-platform-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/sensedia-api-platform-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/sensedia-api-platform-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/sensedia-api-platform-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/sensedia-api-platform-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/sensedia-api-platform-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/sensedia-api-platform-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/sensedia-api-platform-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/sensedia-api-platform-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/sensedia-api-platform-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/sensedia-api-platform-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/sensedia-api-platform-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/sensedia-api-platform-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/sensedia-api-platform-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/sensedia-api-platform-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/sensedia-api-platform-plugin/deployments", + "created_at": "2018-04-04T17:22:12Z", + "updated_at": "2019-01-24T16:32:44Z", + "pushed_at": "2018-04-05T18:40:49Z", + "git_url": "git://github.com/jenkinsci/sensedia-api-platform-plugin.git", + "ssh_url": "git@github.com:jenkinsci/sensedia-api-platform-plugin.git", + "clone_url": "https://github.com/jenkinsci/sensedia-api-platform-plugin.git", + "svn_url": "https://github.com/jenkinsci/sensedia-api-platform-plugin", + "homepage": null, + "size": 31, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 128225589, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjgyMjU1ODk=", + "name": "snowglobe-plugin", + "full_name": "jenkinsci/snowglobe-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/snowglobe-plugin", + "description": "Snowglobe plugin for Jenkins", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/snowglobe-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/snowglobe-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/snowglobe-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/snowglobe-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/snowglobe-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/snowglobe-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/snowglobe-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/snowglobe-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/snowglobe-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/snowglobe-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/snowglobe-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/snowglobe-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/snowglobe-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/snowglobe-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/snowglobe-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/snowglobe-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/snowglobe-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/snowglobe-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/snowglobe-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/snowglobe-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/snowglobe-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/snowglobe-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/snowglobe-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/snowglobe-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/snowglobe-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/snowglobe-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/snowglobe-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/snowglobe-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/snowglobe-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/snowglobe-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/snowglobe-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/snowglobe-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/snowglobe-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/snowglobe-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/snowglobe-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/snowglobe-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/snowglobe-plugin/deployments", + "created_at": "2018-04-05T15:25:09Z", + "updated_at": "2018-04-19T13:07:03Z", + "pushed_at": "2018-04-19T13:07:02Z", + "git_url": "git://github.com/jenkinsci/snowglobe-plugin.git", + "ssh_url": "git@github.com:jenkinsci/snowglobe-plugin.git", + "clone_url": "https://github.com/jenkinsci/snowglobe-plugin.git", + "svn_url": "https://github.com/jenkinsci/snowglobe-plugin", + "homepage": null, + "size": 46, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 128414767, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjg0MTQ3Njc=", + "name": "evergreen-plugin", + "full_name": "jenkinsci/evergreen-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/evergreen-plugin", + "description": "Plugin used for internal configuration of Jenkins for Evergreen", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/evergreen-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/evergreen-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/evergreen-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/evergreen-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/evergreen-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/evergreen-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/evergreen-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/evergreen-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/evergreen-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/evergreen-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/evergreen-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/evergreen-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/evergreen-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/evergreen-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/evergreen-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/evergreen-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/evergreen-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/evergreen-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/evergreen-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/evergreen-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/evergreen-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/evergreen-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/evergreen-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/evergreen-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/evergreen-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/evergreen-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/evergreen-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/evergreen-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/evergreen-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/evergreen-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/evergreen-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/evergreen-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/evergreen-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/evergreen-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/evergreen-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/evergreen-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/evergreen-plugin/deployments", + "created_at": "2018-04-06T15:46:30Z", + "updated_at": "2019-07-13T21:50:57Z", + "pushed_at": "2019-07-13T21:50:55Z", + "git_url": "git://github.com/jenkinsci/evergreen-plugin.git", + "ssh_url": "git@github.com:jenkinsci/evergreen-plugin.git", + "clone_url": "https://github.com/jenkinsci/evergreen-plugin.git", + "svn_url": "https://github.com/jenkinsci/evergreen-plugin", + "homepage": "https://jenkins.io/blog/2018/04/06/jenkins-essentials/", + "size": 96, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 129112387, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjkxMTIzODc=", + "name": "mabl-integration-plugin", + "full_name": "jenkinsci/mabl-integration-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/mabl-integration-plugin", + "description": "build steps to launch and report on mabl journeys", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/mabl-integration-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/mabl-integration-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/mabl-integration-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/mabl-integration-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/mabl-integration-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/mabl-integration-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/mabl-integration-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/mabl-integration-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/mabl-integration-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/mabl-integration-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/mabl-integration-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/mabl-integration-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/mabl-integration-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/mabl-integration-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/mabl-integration-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/mabl-integration-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/mabl-integration-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/mabl-integration-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/mabl-integration-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/mabl-integration-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/mabl-integration-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/mabl-integration-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/mabl-integration-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/mabl-integration-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/mabl-integration-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/mabl-integration-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/mabl-integration-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/mabl-integration-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/mabl-integration-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/mabl-integration-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/mabl-integration-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/mabl-integration-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/mabl-integration-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/mabl-integration-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/mabl-integration-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/mabl-integration-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/mabl-integration-plugin/deployments", + "created_at": "2018-04-11T15:08:57Z", + "updated_at": "2019-10-25T18:58:20Z", + "pushed_at": "2019-10-25T18:58:18Z", + "git_url": "git://github.com/jenkinsci/mabl-integration-plugin.git", + "ssh_url": "git@github.com:jenkinsci/mabl-integration-plugin.git", + "clone_url": "https://github.com/jenkinsci/mabl-integration-plugin.git", + "svn_url": "https://github.com/jenkinsci/mabl-integration-plugin", + "homepage": null, + "size": 286, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 4, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 5, + "open_issues": 4, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 130237201, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzAyMzcyMDE=", + "name": "log-file-filter-plugin", + "full_name": "jenkinsci/log-file-filter-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/log-file-filter-plugin", + "description": "Jenkins plugin which filters information from the logs", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/log-file-filter-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/log-file-filter-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/log-file-filter-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/log-file-filter-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/log-file-filter-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/log-file-filter-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/log-file-filter-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/log-file-filter-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/log-file-filter-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/log-file-filter-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/log-file-filter-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/log-file-filter-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/log-file-filter-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/log-file-filter-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/log-file-filter-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/log-file-filter-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/log-file-filter-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/log-file-filter-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/log-file-filter-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/log-file-filter-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/log-file-filter-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/log-file-filter-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/log-file-filter-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/log-file-filter-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/log-file-filter-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/log-file-filter-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/log-file-filter-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/log-file-filter-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/log-file-filter-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/log-file-filter-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/log-file-filter-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/log-file-filter-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/log-file-filter-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/log-file-filter-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/log-file-filter-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/log-file-filter-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/log-file-filter-plugin/deployments", + "created_at": "2018-04-19T15:34:50Z", + "updated_at": "2019-10-14T12:14:25Z", + "pushed_at": "2019-09-21T13:48:24Z", + "git_url": "git://github.com/jenkinsci/log-file-filter-plugin.git", + "ssh_url": "git@github.com:jenkinsci/log-file-filter-plugin.git", + "clone_url": "https://github.com/jenkinsci/log-file-filter-plugin.git", + "svn_url": "https://github.com/jenkinsci/log-file-filter-plugin", + "homepage": "", + "size": 172, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 130237357, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzAyMzczNTc=", + "name": "logback-nats-appender-plugin", + "full_name": "jenkinsci/logback-nats-appender-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/logback-nats-appender-plugin", + "description": "Plugin providing a LOGBack appender to NATS topic", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/logback-nats-appender-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/logback-nats-appender-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/logback-nats-appender-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/logback-nats-appender-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/logback-nats-appender-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/logback-nats-appender-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/logback-nats-appender-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/logback-nats-appender-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/logback-nats-appender-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/logback-nats-appender-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/logback-nats-appender-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/logback-nats-appender-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/logback-nats-appender-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/logback-nats-appender-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/logback-nats-appender-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/logback-nats-appender-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/logback-nats-appender-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/logback-nats-appender-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/logback-nats-appender-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/logback-nats-appender-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/logback-nats-appender-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/logback-nats-appender-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/logback-nats-appender-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/logback-nats-appender-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/logback-nats-appender-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/logback-nats-appender-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/logback-nats-appender-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/logback-nats-appender-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/logback-nats-appender-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/logback-nats-appender-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/logback-nats-appender-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/logback-nats-appender-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/logback-nats-appender-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/logback-nats-appender-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/logback-nats-appender-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/logback-nats-appender-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/logback-nats-appender-plugin/deployments", + "created_at": "2018-04-19T15:36:10Z", + "updated_at": "2018-04-19T21:12:14Z", + "pushed_at": "2018-08-19T15:11:37Z", + "git_url": "git://github.com/jenkinsci/logback-nats-appender-plugin.git", + "ssh_url": "git@github.com:jenkinsci/logback-nats-appender-plugin.git", + "clone_url": "https://github.com/jenkinsci/logback-nats-appender-plugin.git", + "svn_url": "https://github.com/jenkinsci/logback-nats-appender-plugin", + "homepage": null, + "size": 10, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 130956379, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzA5NTYzNzk=", + "name": "icedq-plugin", + "full_name": "jenkinsci/icedq-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/icedq-plugin", + "description": "My Plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/icedq-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/icedq-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/icedq-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/icedq-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/icedq-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/icedq-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/icedq-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/icedq-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/icedq-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/icedq-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/icedq-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/icedq-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/icedq-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/icedq-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/icedq-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/icedq-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/icedq-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/icedq-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/icedq-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/icedq-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/icedq-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/icedq-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/icedq-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/icedq-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/icedq-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/icedq-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/icedq-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/icedq-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/icedq-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/icedq-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/icedq-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/icedq-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/icedq-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/icedq-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/icedq-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/icedq-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/icedq-plugin/deployments", + "created_at": "2018-04-25T05:44:23Z", + "updated_at": "2018-06-29T13:46:29Z", + "pushed_at": "2018-06-29T13:46:27Z", + "git_url": "git://github.com/jenkinsci/icedq-plugin.git", + "ssh_url": "git@github.com:jenkinsci/icedq-plugin.git", + "clone_url": "https://github.com/jenkinsci/icedq-plugin.git", + "svn_url": "https://github.com/jenkinsci/icedq-plugin", + "homepage": null, + "size": 5189, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 131205228, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzEyMDUyMjg=", + "name": "simple-pull-request-job-plugin", + "full_name": "jenkinsci/simple-pull-request-job-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/simple-pull-request-job-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/simple-pull-request-job-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/simple-pull-request-job-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/simple-pull-request-job-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/simple-pull-request-job-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/simple-pull-request-job-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/simple-pull-request-job-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/simple-pull-request-job-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/simple-pull-request-job-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/simple-pull-request-job-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/simple-pull-request-job-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/simple-pull-request-job-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/simple-pull-request-job-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/simple-pull-request-job-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/simple-pull-request-job-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/simple-pull-request-job-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/simple-pull-request-job-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/simple-pull-request-job-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/simple-pull-request-job-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/simple-pull-request-job-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/simple-pull-request-job-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/simple-pull-request-job-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/simple-pull-request-job-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/simple-pull-request-job-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/simple-pull-request-job-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/simple-pull-request-job-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/simple-pull-request-job-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/simple-pull-request-job-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/simple-pull-request-job-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/simple-pull-request-job-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/simple-pull-request-job-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/simple-pull-request-job-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/simple-pull-request-job-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/simple-pull-request-job-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/simple-pull-request-job-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/simple-pull-request-job-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/simple-pull-request-job-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/simple-pull-request-job-plugin/deployments", + "created_at": "2018-04-26T20:08:02Z", + "updated_at": "2019-10-17T01:40:39Z", + "pushed_at": "2018-10-07T14:36:00Z", + "git_url": "git://github.com/jenkinsci/simple-pull-request-job-plugin.git", + "ssh_url": "git@github.com:jenkinsci/simple-pull-request-job-plugin.git", + "clone_url": "https://github.com/jenkinsci/simple-pull-request-job-plugin.git", + "svn_url": "https://github.com/jenkinsci/simple-pull-request-job-plugin", + "homepage": null, + "size": 290, + "stargazers_count": 31, + "watchers_count": 31, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 19, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 19, + "open_issues": 2, + "watchers": 31, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 131619335, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE2MTkzMzU=", + "name": "code-coverage-api-plugin", + "full_name": "jenkinsci/code-coverage-api-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/code-coverage-api-plugin", + "description": "Jenkins Code Coverage API Plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/code-coverage-api-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/code-coverage-api-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/code-coverage-api-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/code-coverage-api-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/code-coverage-api-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/code-coverage-api-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/code-coverage-api-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/code-coverage-api-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/code-coverage-api-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/code-coverage-api-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/code-coverage-api-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/code-coverage-api-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/code-coverage-api-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/code-coverage-api-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/code-coverage-api-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/code-coverage-api-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/code-coverage-api-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/code-coverage-api-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/code-coverage-api-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/code-coverage-api-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/code-coverage-api-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/code-coverage-api-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/code-coverage-api-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/code-coverage-api-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/code-coverage-api-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/code-coverage-api-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/code-coverage-api-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/code-coverage-api-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/code-coverage-api-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/code-coverage-api-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/code-coverage-api-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/code-coverage-api-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/code-coverage-api-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/code-coverage-api-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/code-coverage-api-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/code-coverage-api-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/code-coverage-api-plugin/deployments", + "created_at": "2018-04-30T16:26:59Z", + "updated_at": "2019-10-18T03:10:03Z", + "pushed_at": "2019-10-18T03:10:01Z", + "git_url": "git://github.com/jenkinsci/code-coverage-api-plugin.git", + "ssh_url": "git@github.com:jenkinsci/code-coverage-api-plugin.git", + "clone_url": "https://github.com/jenkinsci/code-coverage-api-plugin.git", + "svn_url": "https://github.com/jenkinsci/code-coverage-api-plugin", + "homepage": "", + "size": 817, + "stargazers_count": 57, + "watchers_count": 57, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 18, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 15, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 18, + "open_issues": 15, + "watchers": 57, + "default_branch": "dev", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 131724014, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE3MjQwMTQ=", + "name": "git-changelist-maven-extension", + "full_name": "jenkinsci/git-changelist-maven-extension", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/git-changelist-maven-extension", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/git-changelist-maven-extension", + "forks_url": "https://api.github.com/repos/jenkinsci/git-changelist-maven-extension/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/git-changelist-maven-extension/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/git-changelist-maven-extension/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/git-changelist-maven-extension/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/git-changelist-maven-extension/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/git-changelist-maven-extension/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/git-changelist-maven-extension/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/git-changelist-maven-extension/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/git-changelist-maven-extension/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/git-changelist-maven-extension/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/git-changelist-maven-extension/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/git-changelist-maven-extension/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/git-changelist-maven-extension/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/git-changelist-maven-extension/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/git-changelist-maven-extension/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/git-changelist-maven-extension/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/git-changelist-maven-extension/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/git-changelist-maven-extension/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/git-changelist-maven-extension/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/git-changelist-maven-extension/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/git-changelist-maven-extension/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/git-changelist-maven-extension/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/git-changelist-maven-extension/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/git-changelist-maven-extension/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/git-changelist-maven-extension/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/git-changelist-maven-extension/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/git-changelist-maven-extension/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/git-changelist-maven-extension/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/git-changelist-maven-extension/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/git-changelist-maven-extension/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/git-changelist-maven-extension/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/git-changelist-maven-extension/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/git-changelist-maven-extension/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/git-changelist-maven-extension/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/git-changelist-maven-extension/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/git-changelist-maven-extension/deployments", + "created_at": "2018-05-01T14:40:49Z", + "updated_at": "2018-05-10T18:12:53Z", + "pushed_at": "2018-05-10T18:09:38Z", + "git_url": "git://github.com/jenkinsci/git-changelist-maven-extension.git", + "ssh_url": "git@github.com:jenkinsci/git-changelist-maven-extension.git", + "clone_url": "https://github.com/jenkinsci/git-changelist-maven-extension.git", + "svn_url": "https://github.com/jenkinsci/git-changelist-maven-extension", + "homepage": null, + "size": 27, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": true, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 131765311, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzE3NjUzMTE=", + "name": "ci-with-toad-devops-toolkit-plugin", + "full_name": "jenkinsci/ci-with-toad-devops-toolkit-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/ci-with-toad-devops-toolkit-plugin", + "description": "Enables Oracle users to automate various DevOps tasks such as performing PL/SQL code analysis, running unit tests, and executing scripts.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/ci-with-toad-devops-toolkit-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/ci-with-toad-devops-toolkit-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/ci-with-toad-devops-toolkit-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/ci-with-toad-devops-toolkit-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/ci-with-toad-devops-toolkit-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/ci-with-toad-devops-toolkit-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/ci-with-toad-devops-toolkit-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/ci-with-toad-devops-toolkit-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/ci-with-toad-devops-toolkit-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/ci-with-toad-devops-toolkit-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/ci-with-toad-devops-toolkit-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/ci-with-toad-devops-toolkit-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/ci-with-toad-devops-toolkit-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/ci-with-toad-devops-toolkit-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/ci-with-toad-devops-toolkit-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/ci-with-toad-devops-toolkit-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/ci-with-toad-devops-toolkit-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/ci-with-toad-devops-toolkit-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/ci-with-toad-devops-toolkit-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/ci-with-toad-devops-toolkit-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/ci-with-toad-devops-toolkit-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/ci-with-toad-devops-toolkit-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/ci-with-toad-devops-toolkit-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/ci-with-toad-devops-toolkit-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/ci-with-toad-devops-toolkit-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/ci-with-toad-devops-toolkit-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/ci-with-toad-devops-toolkit-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/ci-with-toad-devops-toolkit-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/ci-with-toad-devops-toolkit-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/ci-with-toad-devops-toolkit-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/ci-with-toad-devops-toolkit-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/ci-with-toad-devops-toolkit-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/ci-with-toad-devops-toolkit-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/ci-with-toad-devops-toolkit-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/ci-with-toad-devops-toolkit-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/ci-with-toad-devops-toolkit-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/ci-with-toad-devops-toolkit-plugin/deployments", + "created_at": "2018-05-01T21:31:30Z", + "updated_at": "2019-01-29T22:12:10Z", + "pushed_at": "2019-08-07T18:16:23Z", + "git_url": "git://github.com/jenkinsci/ci-with-toad-devops-toolkit-plugin.git", + "ssh_url": "git@github.com:jenkinsci/ci-with-toad-devops-toolkit-plugin.git", + "clone_url": "https://github.com/jenkinsci/ci-with-toad-devops-toolkit-plugin.git", + "svn_url": "https://github.com/jenkinsci/ci-with-toad-devops-toolkit-plugin", + "homepage": null, + "size": 46, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 132161673, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzIxNjE2NzM=", + "name": "remoting-kafka-plugin", + "full_name": "jenkinsci/remoting-kafka-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/remoting-kafka-plugin", + "description": "Jenkins Remoting over Kafka", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/remoting-kafka-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/remoting-kafka-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/remoting-kafka-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/remoting-kafka-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/remoting-kafka-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/remoting-kafka-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/remoting-kafka-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/remoting-kafka-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/remoting-kafka-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/remoting-kafka-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/remoting-kafka-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/remoting-kafka-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/remoting-kafka-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/remoting-kafka-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/remoting-kafka-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/remoting-kafka-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/remoting-kafka-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/remoting-kafka-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/remoting-kafka-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/remoting-kafka-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/remoting-kafka-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/remoting-kafka-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/remoting-kafka-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/remoting-kafka-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/remoting-kafka-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/remoting-kafka-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/remoting-kafka-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/remoting-kafka-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/remoting-kafka-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/remoting-kafka-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/remoting-kafka-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/remoting-kafka-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/remoting-kafka-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/remoting-kafka-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/remoting-kafka-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/remoting-kafka-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/remoting-kafka-plugin/deployments", + "created_at": "2018-05-04T16:05:06Z", + "updated_at": "2019-10-22T17:03:34Z", + "pushed_at": "2019-08-20T14:42:54Z", + "git_url": "git://github.com/jenkinsci/remoting-kafka-plugin.git", + "ssh_url": "git@github.com:jenkinsci/remoting-kafka-plugin.git", + "clone_url": "https://github.com/jenkinsci/remoting-kafka-plugin.git", + "svn_url": "https://github.com/jenkinsci/remoting-kafka-plugin", + "homepage": "", + "size": 391, + "stargazers_count": 25, + "watchers_count": 25, + "language": "Java", + "has_issues": false, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 12, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 12, + "open_issues": 2, + "watchers": 25, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 132265983, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzIyNjU5ODM=", + "name": "alauda-devops-sync-plugin", + "full_name": "jenkinsci/alauda-devops-sync-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/alauda-devops-sync-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/alauda-devops-sync-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/alauda-devops-sync-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/alauda-devops-sync-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/alauda-devops-sync-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/alauda-devops-sync-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/alauda-devops-sync-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/alauda-devops-sync-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/alauda-devops-sync-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/alauda-devops-sync-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/alauda-devops-sync-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/alauda-devops-sync-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/alauda-devops-sync-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/alauda-devops-sync-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/alauda-devops-sync-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/alauda-devops-sync-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/alauda-devops-sync-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/alauda-devops-sync-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/alauda-devops-sync-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/alauda-devops-sync-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/alauda-devops-sync-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/alauda-devops-sync-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/alauda-devops-sync-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/alauda-devops-sync-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/alauda-devops-sync-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/alauda-devops-sync-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/alauda-devops-sync-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/alauda-devops-sync-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/alauda-devops-sync-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/alauda-devops-sync-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/alauda-devops-sync-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/alauda-devops-sync-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/alauda-devops-sync-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/alauda-devops-sync-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/alauda-devops-sync-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/alauda-devops-sync-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/alauda-devops-sync-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/alauda-devops-sync-plugin/deployments", + "created_at": "2018-05-05T16:37:24Z", + "updated_at": "2019-10-21T10:02:46Z", + "pushed_at": "2019-10-25T03:17:34Z", + "git_url": "git://github.com/jenkinsci/alauda-devops-sync-plugin.git", + "ssh_url": "git@github.com:jenkinsci/alauda-devops-sync-plugin.git", + "clone_url": "https://github.com/jenkinsci/alauda-devops-sync-plugin.git", + "svn_url": "https://github.com/jenkinsci/alauda-devops-sync-plugin", + "homepage": "http://www.alauda.cn/", + "size": 1125, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 2, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 132518320, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzI1MTgzMjA=", + "name": "incrementals-tools", + "full_name": "jenkinsci/incrementals-tools", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/incrementals-tools", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/incrementals-tools", + "forks_url": "https://api.github.com/repos/jenkinsci/incrementals-tools/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/incrementals-tools/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/incrementals-tools/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/incrementals-tools/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/incrementals-tools/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/incrementals-tools/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/incrementals-tools/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/incrementals-tools/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/incrementals-tools/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/incrementals-tools/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/incrementals-tools/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/incrementals-tools/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/incrementals-tools/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/incrementals-tools/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/incrementals-tools/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/incrementals-tools/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/incrementals-tools/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/incrementals-tools/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/incrementals-tools/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/incrementals-tools/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/incrementals-tools/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/incrementals-tools/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/incrementals-tools/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/incrementals-tools/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/incrementals-tools/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/incrementals-tools/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/incrementals-tools/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/incrementals-tools/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/incrementals-tools/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/incrementals-tools/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/incrementals-tools/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/incrementals-tools/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/incrementals-tools/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/incrementals-tools/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/incrementals-tools/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/incrementals-tools/deployments", + "created_at": "2018-05-07T21:28:10Z", + "updated_at": "2019-10-11T21:54:50Z", + "pushed_at": "2019-10-11T21:54:48Z", + "git_url": "git://github.com/jenkinsci/incrementals-tools.git", + "ssh_url": "git@github.com:jenkinsci/incrementals-tools.git", + "clone_url": "https://github.com/jenkinsci/incrementals-tools.git", + "svn_url": "https://github.com/jenkinsci/incrementals-tools", + "homepage": null, + "size": 165, + "stargazers_count": 10, + "watchers_count": 10, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 9, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 9, + "open_issues": 0, + "watchers": 10, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 132519850, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzI1MTk4NTA=", + "name": "alauda-pipeline-plugin", + "full_name": "jenkinsci/alauda-pipeline-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/alauda-pipeline-plugin", + "description": "Jenkins plugin which aims to provide a readable, concise, comprehensive, and fluent syntax for rich interactions with an Alauda API Server", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/alauda-pipeline-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/alauda-pipeline-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/alauda-pipeline-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/alauda-pipeline-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/alauda-pipeline-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/alauda-pipeline-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/alauda-pipeline-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/alauda-pipeline-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/alauda-pipeline-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/alauda-pipeline-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/alauda-pipeline-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/alauda-pipeline-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/alauda-pipeline-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/alauda-pipeline-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/alauda-pipeline-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/alauda-pipeline-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/alauda-pipeline-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/alauda-pipeline-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/alauda-pipeline-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/alauda-pipeline-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/alauda-pipeline-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/alauda-pipeline-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/alauda-pipeline-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/alauda-pipeline-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/alauda-pipeline-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/alauda-pipeline-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/alauda-pipeline-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/alauda-pipeline-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/alauda-pipeline-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/alauda-pipeline-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/alauda-pipeline-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/alauda-pipeline-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/alauda-pipeline-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/alauda-pipeline-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/alauda-pipeline-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/alauda-pipeline-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/alauda-pipeline-plugin/deployments", + "created_at": "2018-05-07T21:47:10Z", + "updated_at": "2019-06-21T12:38:35Z", + "pushed_at": "2019-06-21T12:38:33Z", + "git_url": "git://github.com/jenkinsci/alauda-pipeline-plugin.git", + "ssh_url": "git@github.com:jenkinsci/alauda-pipeline-plugin.git", + "clone_url": "https://github.com/jenkinsci/alauda-pipeline-plugin.git", + "svn_url": "https://github.com/jenkinsci/alauda-pipeline-plugin", + "homepage": "https://wiki.jenkins.io/display/JENKINS/Alauda+Pipeline+Plugin", + "size": 95, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 132791262, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzI3OTEyNjI=", + "name": "embotics-vcommander-plugin", + "full_name": "jenkinsci/embotics-vcommander-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/embotics-vcommander-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/embotics-vcommander-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/embotics-vcommander-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/embotics-vcommander-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/embotics-vcommander-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/embotics-vcommander-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/embotics-vcommander-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/embotics-vcommander-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/embotics-vcommander-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/embotics-vcommander-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/embotics-vcommander-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/embotics-vcommander-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/embotics-vcommander-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/embotics-vcommander-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/embotics-vcommander-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/embotics-vcommander-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/embotics-vcommander-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/embotics-vcommander-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/embotics-vcommander-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/embotics-vcommander-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/embotics-vcommander-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/embotics-vcommander-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/embotics-vcommander-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/embotics-vcommander-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/embotics-vcommander-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/embotics-vcommander-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/embotics-vcommander-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/embotics-vcommander-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/embotics-vcommander-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/embotics-vcommander-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/embotics-vcommander-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/embotics-vcommander-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/embotics-vcommander-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/embotics-vcommander-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/embotics-vcommander-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/embotics-vcommander-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/embotics-vcommander-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/embotics-vcommander-plugin/deployments", + "created_at": "2018-05-09T17:29:25Z", + "updated_at": "2019-01-11T16:26:36Z", + "pushed_at": "2019-01-11T16:26:34Z", + "git_url": "git://github.com/jenkinsci/embotics-vcommander-plugin.git", + "ssh_url": "git@github.com:jenkinsci/embotics-vcommander-plugin.git", + "clone_url": "https://github.com/jenkinsci/embotics-vcommander-plugin.git", + "svn_url": "https://github.com/jenkinsci/embotics-vcommander-plugin", + "homepage": null, + "size": 64, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 133523415, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzM1MjM0MTU=", + "name": "hugo-plugin", + "full_name": "jenkinsci/hugo-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/hugo-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/hugo-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/hugo-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/hugo-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/hugo-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/hugo-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/hugo-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/hugo-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/hugo-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/hugo-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/hugo-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/hugo-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/hugo-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/hugo-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/hugo-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/hugo-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/hugo-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/hugo-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/hugo-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/hugo-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/hugo-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/hugo-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/hugo-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/hugo-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/hugo-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/hugo-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/hugo-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/hugo-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/hugo-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/hugo-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/hugo-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/hugo-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/hugo-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/hugo-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/hugo-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/hugo-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/hugo-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/hugo-plugin/deployments", + "created_at": "2018-05-15T13:51:51Z", + "updated_at": "2019-09-04T00:00:02Z", + "pushed_at": "2019-09-04T00:00:45Z", + "git_url": "git://github.com/jenkinsci/hugo-plugin.git", + "ssh_url": "git@github.com:jenkinsci/hugo-plugin.git", + "clone_url": "https://github.com/jenkinsci/hugo-plugin.git", + "svn_url": "https://github.com/jenkinsci/hugo-plugin", + "homepage": "https://wiki.jenkins.io/display/JENKINS/Hugo+Plugin", + "size": 64, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 2, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 134454336, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzQ0NTQzMzY=", + "name": "clever-cloud-plugin", + "full_name": "jenkinsci/clever-cloud-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/clever-cloud-plugin", + "description": "Clever Cloud plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/clever-cloud-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/clever-cloud-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/clever-cloud-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/clever-cloud-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/clever-cloud-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/clever-cloud-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/clever-cloud-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/clever-cloud-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/clever-cloud-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/clever-cloud-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/clever-cloud-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/clever-cloud-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/clever-cloud-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/clever-cloud-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/clever-cloud-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/clever-cloud-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/clever-cloud-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/clever-cloud-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/clever-cloud-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/clever-cloud-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/clever-cloud-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/clever-cloud-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/clever-cloud-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/clever-cloud-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/clever-cloud-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/clever-cloud-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/clever-cloud-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/clever-cloud-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/clever-cloud-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/clever-cloud-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/clever-cloud-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/clever-cloud-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/clever-cloud-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/clever-cloud-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/clever-cloud-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/clever-cloud-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/clever-cloud-plugin/deployments", + "created_at": "2018-05-22T17:53:49Z", + "updated_at": "2018-05-25T12:41:14Z", + "pushed_at": "2018-05-25T12:41:12Z", + "git_url": "git://github.com/jenkinsci/clever-cloud-plugin.git", + "ssh_url": "git@github.com:jenkinsci/clever-cloud-plugin.git", + "clone_url": "https://github.com/jenkinsci/clever-cloud-plugin.git", + "svn_url": "https://github.com/jenkinsci/clever-cloud-plugin", + "homepage": "https://wiki.jenkins.io/display/JENKINS/Clever+Cloud+Plugin", + "size": 86, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 134454572, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzQ0NTQ1NzI=", + "name": "chef-cookbook-pipeline-plugin", + "full_name": "jenkinsci/chef-cookbook-pipeline-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/chef-cookbook-pipeline-plugin", + "description": "A Jenkins plugin implementing a simple cookbook workflow and integrations with Chef Automate 2.0", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/chef-cookbook-pipeline-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/chef-cookbook-pipeline-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/chef-cookbook-pipeline-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/chef-cookbook-pipeline-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/chef-cookbook-pipeline-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/chef-cookbook-pipeline-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/chef-cookbook-pipeline-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/chef-cookbook-pipeline-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/chef-cookbook-pipeline-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/chef-cookbook-pipeline-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/chef-cookbook-pipeline-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/chef-cookbook-pipeline-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/chef-cookbook-pipeline-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/chef-cookbook-pipeline-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/chef-cookbook-pipeline-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/chef-cookbook-pipeline-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/chef-cookbook-pipeline-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/chef-cookbook-pipeline-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/chef-cookbook-pipeline-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/chef-cookbook-pipeline-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/chef-cookbook-pipeline-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/chef-cookbook-pipeline-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/chef-cookbook-pipeline-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/chef-cookbook-pipeline-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/chef-cookbook-pipeline-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/chef-cookbook-pipeline-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/chef-cookbook-pipeline-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/chef-cookbook-pipeline-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/chef-cookbook-pipeline-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/chef-cookbook-pipeline-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/chef-cookbook-pipeline-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/chef-cookbook-pipeline-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/chef-cookbook-pipeline-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/chef-cookbook-pipeline-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/chef-cookbook-pipeline-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/chef-cookbook-pipeline-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/chef-cookbook-pipeline-plugin/deployments", + "created_at": "2018-05-22T17:55:37Z", + "updated_at": "2019-07-12T19:07:07Z", + "pushed_at": "2018-08-29T23:07:17Z", + "git_url": "git://github.com/jenkinsci/chef-cookbook-pipeline-plugin.git", + "ssh_url": "git@github.com:jenkinsci/chef-cookbook-pipeline-plugin.git", + "clone_url": "https://github.com/jenkinsci/chef-cookbook-pipeline-plugin.git", + "svn_url": "https://github.com/jenkinsci/chef-cookbook-pipeline-plugin", + "homepage": null, + "size": 262, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 2, + "open_issues": 0, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 135165103, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzUxNjUxMDM=", + "name": "soapui-pro-functional-testing-plugin", + "full_name": "jenkinsci/soapui-pro-functional-testing-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/soapui-pro-functional-testing-plugin", + "description": "SoapUI PRO Functional Testing Plugin Repo", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/soapui-pro-functional-testing-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/soapui-pro-functional-testing-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/soapui-pro-functional-testing-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/soapui-pro-functional-testing-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/soapui-pro-functional-testing-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/soapui-pro-functional-testing-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/soapui-pro-functional-testing-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/soapui-pro-functional-testing-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/soapui-pro-functional-testing-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/soapui-pro-functional-testing-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/soapui-pro-functional-testing-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/soapui-pro-functional-testing-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/soapui-pro-functional-testing-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/soapui-pro-functional-testing-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/soapui-pro-functional-testing-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/soapui-pro-functional-testing-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/soapui-pro-functional-testing-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/soapui-pro-functional-testing-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/soapui-pro-functional-testing-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/soapui-pro-functional-testing-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/soapui-pro-functional-testing-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/soapui-pro-functional-testing-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/soapui-pro-functional-testing-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/soapui-pro-functional-testing-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/soapui-pro-functional-testing-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/soapui-pro-functional-testing-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/soapui-pro-functional-testing-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/soapui-pro-functional-testing-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/soapui-pro-functional-testing-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/soapui-pro-functional-testing-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/soapui-pro-functional-testing-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/soapui-pro-functional-testing-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/soapui-pro-functional-testing-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/soapui-pro-functional-testing-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/soapui-pro-functional-testing-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/soapui-pro-functional-testing-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/soapui-pro-functional-testing-plugin/deployments", + "created_at": "2018-05-28T13:32:12Z", + "updated_at": "2019-09-26T10:40:53Z", + "pushed_at": "2019-08-27T12:40:34Z", + "git_url": "git://github.com/jenkinsci/soapui-pro-functional-testing-plugin.git", + "ssh_url": "git@github.com:jenkinsci/soapui-pro-functional-testing-plugin.git", + "clone_url": "https://github.com/jenkinsci/soapui-pro-functional-testing-plugin.git", + "svn_url": "https://github.com/jenkinsci/soapui-pro-functional-testing-plugin", + "homepage": "", + "size": 90, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "gpl-3.0", + "name": "GNU General Public License v3.0", + "spdx_id": "GPL-3.0", + "url": "https://api.github.com/licenses/gpl-3.0", + "node_id": "MDc6TGljZW5zZTk=" + }, + "forks": 2, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 135165543, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzUxNjU1NDM=", + "name": "neuvector-vulnerability-scanner-plugin", + "full_name": "jenkinsci/neuvector-vulnerability-scanner-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/neuvector-vulnerability-scanner-plugin", + "description": "Jenkins plugin that adds NeuVector registry and image scanning as a build step", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/neuvector-vulnerability-scanner-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/neuvector-vulnerability-scanner-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/neuvector-vulnerability-scanner-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/neuvector-vulnerability-scanner-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/neuvector-vulnerability-scanner-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/neuvector-vulnerability-scanner-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/neuvector-vulnerability-scanner-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/neuvector-vulnerability-scanner-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/neuvector-vulnerability-scanner-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/neuvector-vulnerability-scanner-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/neuvector-vulnerability-scanner-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/neuvector-vulnerability-scanner-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/neuvector-vulnerability-scanner-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/neuvector-vulnerability-scanner-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/neuvector-vulnerability-scanner-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/neuvector-vulnerability-scanner-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/neuvector-vulnerability-scanner-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/neuvector-vulnerability-scanner-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/neuvector-vulnerability-scanner-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/neuvector-vulnerability-scanner-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/neuvector-vulnerability-scanner-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/neuvector-vulnerability-scanner-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/neuvector-vulnerability-scanner-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/neuvector-vulnerability-scanner-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/neuvector-vulnerability-scanner-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/neuvector-vulnerability-scanner-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/neuvector-vulnerability-scanner-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/neuvector-vulnerability-scanner-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/neuvector-vulnerability-scanner-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/neuvector-vulnerability-scanner-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/neuvector-vulnerability-scanner-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/neuvector-vulnerability-scanner-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/neuvector-vulnerability-scanner-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/neuvector-vulnerability-scanner-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/neuvector-vulnerability-scanner-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/neuvector-vulnerability-scanner-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/neuvector-vulnerability-scanner-plugin/deployments", + "created_at": "2018-05-28T13:36:03Z", + "updated_at": "2019-09-21T22:40:40Z", + "pushed_at": "2019-09-21T22:40:38Z", + "git_url": "git://github.com/jenkinsci/neuvector-vulnerability-scanner-plugin.git", + "ssh_url": "git@github.com:jenkinsci/neuvector-vulnerability-scanner-plugin.git", + "clone_url": "https://github.com/jenkinsci/neuvector-vulnerability-scanner-plugin.git", + "svn_url": "https://github.com/jenkinsci/neuvector-vulnerability-scanner-plugin", + "homepage": "", + "size": 50, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 135166193, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzUxNjYxOTM=", + "name": "pangolin-testrail-connector-plugin", + "full_name": "jenkinsci/pangolin-testrail-connector-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pangolin-testrail-connector-plugin", + "description": "Agiletestware Pangolin Connector for TestRail", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/pangolin-testrail-connector-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pangolin-testrail-connector-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pangolin-testrail-connector-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pangolin-testrail-connector-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pangolin-testrail-connector-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pangolin-testrail-connector-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pangolin-testrail-connector-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pangolin-testrail-connector-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pangolin-testrail-connector-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pangolin-testrail-connector-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pangolin-testrail-connector-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pangolin-testrail-connector-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pangolin-testrail-connector-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pangolin-testrail-connector-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pangolin-testrail-connector-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pangolin-testrail-connector-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pangolin-testrail-connector-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pangolin-testrail-connector-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pangolin-testrail-connector-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pangolin-testrail-connector-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pangolin-testrail-connector-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pangolin-testrail-connector-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pangolin-testrail-connector-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pangolin-testrail-connector-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pangolin-testrail-connector-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pangolin-testrail-connector-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pangolin-testrail-connector-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pangolin-testrail-connector-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pangolin-testrail-connector-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pangolin-testrail-connector-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pangolin-testrail-connector-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pangolin-testrail-connector-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pangolin-testrail-connector-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pangolin-testrail-connector-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pangolin-testrail-connector-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pangolin-testrail-connector-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pangolin-testrail-connector-plugin/deployments", + "created_at": "2018-05-28T13:41:30Z", + "updated_at": "2019-09-05T15:59:04Z", + "pushed_at": "2019-09-05T15:59:02Z", + "git_url": "git://github.com/jenkinsci/pangolin-testrail-connector-plugin.git", + "ssh_url": "git@github.com:jenkinsci/pangolin-testrail-connector-plugin.git", + "clone_url": "https://github.com/jenkinsci/pangolin-testrail-connector-plugin.git", + "svn_url": "https://github.com/jenkinsci/pangolin-testrail-connector-plugin", + "homepage": "http://agiletestware.com/pangolin", + "size": 115, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 135166389, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzUxNjYzODk=", + "name": "osf-builder-suite-for-sfcc-data-import-plugin", + "full_name": "jenkinsci/osf-builder-suite-for-sfcc-data-import-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/osf-builder-suite-for-sfcc-data-import-plugin", + "description": "OSF Builder Suite For Salesforce Commerce Cloud :: Data Import", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-data-import-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-data-import-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-data-import-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-data-import-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-data-import-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-data-import-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-data-import-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-data-import-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-data-import-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-data-import-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-data-import-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-data-import-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-data-import-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-data-import-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-data-import-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-data-import-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-data-import-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-data-import-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-data-import-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-data-import-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-data-import-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-data-import-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-data-import-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-data-import-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-data-import-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-data-import-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-data-import-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-data-import-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-data-import-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-data-import-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-data-import-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-data-import-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-data-import-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-data-import-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-data-import-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-data-import-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-for-sfcc-data-import-plugin/deployments", + "created_at": "2018-05-28T13:43:15Z", + "updated_at": "2019-07-31T10:34:06Z", + "pushed_at": "2019-07-31T10:34:05Z", + "git_url": "git://github.com/jenkinsci/osf-builder-suite-for-sfcc-data-import-plugin.git", + "ssh_url": "git@github.com:jenkinsci/osf-builder-suite-for-sfcc-data-import-plugin.git", + "clone_url": "https://github.com/jenkinsci/osf-builder-suite-for-sfcc-data-import-plugin.git", + "svn_url": "https://github.com/jenkinsci/osf-builder-suite-for-sfcc-data-import-plugin", + "homepage": "", + "size": 64, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 136123735, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzYxMjM3MzU=", + "name": "influxdb-query-plugin", + "full_name": "jenkinsci/influxdb-query-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/influxdb-query-plugin", + "description": "Jenkins plugin for querying influxdb as post build step.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/influxdb-query-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/influxdb-query-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/influxdb-query-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/influxdb-query-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/influxdb-query-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/influxdb-query-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/influxdb-query-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/influxdb-query-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/influxdb-query-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/influxdb-query-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/influxdb-query-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/influxdb-query-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/influxdb-query-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/influxdb-query-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/influxdb-query-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/influxdb-query-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/influxdb-query-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/influxdb-query-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/influxdb-query-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/influxdb-query-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/influxdb-query-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/influxdb-query-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/influxdb-query-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/influxdb-query-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/influxdb-query-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/influxdb-query-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/influxdb-query-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/influxdb-query-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/influxdb-query-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/influxdb-query-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/influxdb-query-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/influxdb-query-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/influxdb-query-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/influxdb-query-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/influxdb-query-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/influxdb-query-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/influxdb-query-plugin/deployments", + "created_at": "2018-06-05T05:18:27Z", + "updated_at": "2018-12-12T13:22:14Z", + "pushed_at": "2018-12-12T13:22:12Z", + "git_url": "git://github.com/jenkinsci/influxdb-query-plugin.git", + "ssh_url": "git@github.com:jenkinsci/influxdb-query-plugin.git", + "clone_url": "https://github.com/jenkinsci/influxdb-query-plugin.git", + "svn_url": "https://github.com/jenkinsci/influxdb-query-plugin", + "homepage": null, + "size": 3069, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 2, + "open_issues": 1, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 136123909, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzYxMjM5MDk=", + "name": "netsparker-cloud-scan-plugin", + "full_name": "jenkinsci/netsparker-cloud-scan-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/netsparker-cloud-scan-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/netsparker-cloud-scan-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/netsparker-cloud-scan-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/netsparker-cloud-scan-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/netsparker-cloud-scan-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/netsparker-cloud-scan-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/netsparker-cloud-scan-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/netsparker-cloud-scan-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/netsparker-cloud-scan-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/netsparker-cloud-scan-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/netsparker-cloud-scan-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/netsparker-cloud-scan-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/netsparker-cloud-scan-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/netsparker-cloud-scan-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/netsparker-cloud-scan-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/netsparker-cloud-scan-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/netsparker-cloud-scan-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/netsparker-cloud-scan-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/netsparker-cloud-scan-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/netsparker-cloud-scan-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/netsparker-cloud-scan-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/netsparker-cloud-scan-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/netsparker-cloud-scan-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/netsparker-cloud-scan-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/netsparker-cloud-scan-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/netsparker-cloud-scan-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/netsparker-cloud-scan-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/netsparker-cloud-scan-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/netsparker-cloud-scan-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/netsparker-cloud-scan-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/netsparker-cloud-scan-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/netsparker-cloud-scan-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/netsparker-cloud-scan-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/netsparker-cloud-scan-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/netsparker-cloud-scan-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/netsparker-cloud-scan-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/netsparker-cloud-scan-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/netsparker-cloud-scan-plugin/deployments", + "created_at": "2018-06-05T05:20:48Z", + "updated_at": "2019-10-10T09:22:14Z", + "pushed_at": "2019-10-10T09:22:12Z", + "git_url": "git://github.com/jenkinsci/netsparker-cloud-scan-plugin.git", + "ssh_url": "git@github.com:jenkinsci/netsparker-cloud-scan-plugin.git", + "clone_url": "https://github.com/jenkinsci/netsparker-cloud-scan-plugin.git", + "svn_url": "https://github.com/jenkinsci/netsparker-cloud-scan-plugin", + "homepage": null, + "size": 88, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 136123986, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzYxMjM5ODY=", + "name": "aqua-microscanner-plugin", + "full_name": "jenkinsci/aqua-microscanner-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/aqua-microscanner-plugin", + "description": "Enables scanning of docker builds in Jenkins for OS package vulnerabilities.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/aqua-microscanner-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/aqua-microscanner-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/aqua-microscanner-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/aqua-microscanner-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/aqua-microscanner-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/aqua-microscanner-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/aqua-microscanner-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/aqua-microscanner-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/aqua-microscanner-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/aqua-microscanner-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/aqua-microscanner-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/aqua-microscanner-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/aqua-microscanner-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/aqua-microscanner-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/aqua-microscanner-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/aqua-microscanner-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/aqua-microscanner-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/aqua-microscanner-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/aqua-microscanner-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/aqua-microscanner-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/aqua-microscanner-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/aqua-microscanner-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/aqua-microscanner-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/aqua-microscanner-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/aqua-microscanner-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/aqua-microscanner-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/aqua-microscanner-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/aqua-microscanner-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/aqua-microscanner-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/aqua-microscanner-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/aqua-microscanner-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/aqua-microscanner-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/aqua-microscanner-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/aqua-microscanner-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/aqua-microscanner-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/aqua-microscanner-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/aqua-microscanner-plugin/deployments", + "created_at": "2018-06-05T05:21:46Z", + "updated_at": "2019-10-18T13:46:01Z", + "pushed_at": "2019-09-19T09:47:04Z", + "git_url": "git://github.com/jenkinsci/aqua-microscanner-plugin.git", + "ssh_url": "git@github.com:jenkinsci/aqua-microscanner-plugin.git", + "clone_url": "https://github.com/jenkinsci/aqua-microscanner-plugin.git", + "svn_url": "https://github.com/jenkinsci/aqua-microscanner-plugin", + "homepage": "", + "size": 357, + "stargazers_count": 24, + "watchers_count": 24, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 14, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 5, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 14, + "open_issues": 5, + "watchers": 24, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 136124138, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzYxMjQxMzg=", + "name": "inodes-monitor-plugin", + "full_name": "jenkinsci/inodes-monitor-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/inodes-monitor-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/inodes-monitor-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/inodes-monitor-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/inodes-monitor-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/inodes-monitor-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/inodes-monitor-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/inodes-monitor-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/inodes-monitor-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/inodes-monitor-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/inodes-monitor-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/inodes-monitor-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/inodes-monitor-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/inodes-monitor-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/inodes-monitor-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/inodes-monitor-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/inodes-monitor-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/inodes-monitor-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/inodes-monitor-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/inodes-monitor-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/inodes-monitor-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/inodes-monitor-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/inodes-monitor-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/inodes-monitor-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/inodes-monitor-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/inodes-monitor-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/inodes-monitor-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/inodes-monitor-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/inodes-monitor-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/inodes-monitor-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/inodes-monitor-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/inodes-monitor-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/inodes-monitor-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/inodes-monitor-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/inodes-monitor-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/inodes-monitor-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/inodes-monitor-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/inodes-monitor-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/inodes-monitor-plugin/deployments", + "created_at": "2018-06-05T05:23:24Z", + "updated_at": "2018-06-07T09:17:33Z", + "pushed_at": "2018-06-07T09:17:32Z", + "git_url": "git://github.com/jenkinsci/inodes-monitor-plugin.git", + "ssh_url": "git@github.com:jenkinsci/inodes-monitor-plugin.git", + "clone_url": "https://github.com/jenkinsci/inodes-monitor-plugin.git", + "svn_url": "https://github.com/jenkinsci/inodes-monitor-plugin", + "homepage": null, + "size": 25, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 136124288, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzYxMjQyODg=", + "name": "google-admin-sdk-plugin", + "full_name": "jenkinsci/google-admin-sdk-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/google-admin-sdk-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/google-admin-sdk-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/google-admin-sdk-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/google-admin-sdk-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/google-admin-sdk-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/google-admin-sdk-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/google-admin-sdk-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/google-admin-sdk-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/google-admin-sdk-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/google-admin-sdk-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/google-admin-sdk-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/google-admin-sdk-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/google-admin-sdk-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/google-admin-sdk-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/google-admin-sdk-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/google-admin-sdk-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/google-admin-sdk-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/google-admin-sdk-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/google-admin-sdk-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/google-admin-sdk-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/google-admin-sdk-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/google-admin-sdk-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/google-admin-sdk-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/google-admin-sdk-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/google-admin-sdk-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/google-admin-sdk-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/google-admin-sdk-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/google-admin-sdk-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/google-admin-sdk-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/google-admin-sdk-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/google-admin-sdk-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/google-admin-sdk-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/google-admin-sdk-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/google-admin-sdk-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/google-admin-sdk-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/google-admin-sdk-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/google-admin-sdk-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/google-admin-sdk-plugin/deployments", + "created_at": "2018-06-05T05:25:00Z", + "updated_at": "2018-06-29T07:18:39Z", + "pushed_at": "2018-06-29T07:18:38Z", + "git_url": "git://github.com/jenkinsci/google-admin-sdk-plugin.git", + "ssh_url": "git@github.com:jenkinsci/google-admin-sdk-plugin.git", + "clone_url": "https://github.com/jenkinsci/google-admin-sdk-plugin.git", + "svn_url": "https://github.com/jenkinsci/google-admin-sdk-plugin", + "homepage": null, + "size": 31, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 136993569, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzY5OTM1Njk=", + "name": "inflectra-spira-integration-plugin", + "full_name": "jenkinsci/inflectra-spira-integration-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/inflectra-spira-integration-plugin", + "description": "Jenkins plugin for integrating with Inflectra's Spira suite of ALM tools", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/inflectra-spira-integration-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/inflectra-spira-integration-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/inflectra-spira-integration-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/inflectra-spira-integration-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/inflectra-spira-integration-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/inflectra-spira-integration-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/inflectra-spira-integration-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/inflectra-spira-integration-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/inflectra-spira-integration-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/inflectra-spira-integration-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/inflectra-spira-integration-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/inflectra-spira-integration-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/inflectra-spira-integration-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/inflectra-spira-integration-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/inflectra-spira-integration-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/inflectra-spira-integration-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/inflectra-spira-integration-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/inflectra-spira-integration-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/inflectra-spira-integration-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/inflectra-spira-integration-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/inflectra-spira-integration-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/inflectra-spira-integration-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/inflectra-spira-integration-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/inflectra-spira-integration-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/inflectra-spira-integration-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/inflectra-spira-integration-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/inflectra-spira-integration-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/inflectra-spira-integration-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/inflectra-spira-integration-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/inflectra-spira-integration-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/inflectra-spira-integration-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/inflectra-spira-integration-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/inflectra-spira-integration-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/inflectra-spira-integration-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/inflectra-spira-integration-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/inflectra-spira-integration-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/inflectra-spira-integration-plugin/deployments", + "created_at": "2018-06-11T23:54:24Z", + "updated_at": "2018-07-02T15:28:32Z", + "pushed_at": "2018-07-02T15:28:30Z", + "git_url": "git://github.com/jenkinsci/inflectra-spira-integration-plugin.git", + "ssh_url": "git@github.com:jenkinsci/inflectra-spira-integration-plugin.git", + "clone_url": "https://github.com/jenkinsci/inflectra-spira-integration-plugin.git", + "svn_url": "https://github.com/jenkinsci/inflectra-spira-integration-plugin", + "homepage": "", + "size": 73298, + "stargazers_count": 0, + "watchers_count": 0, + "language": "HTML", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 137106043, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzcxMDYwNDM=", + "name": "clearcase-ucm-api-plugin", + "full_name": "jenkinsci/clearcase-ucm-api-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/clearcase-ucm-api-plugin", + "description": "ClearCase Oriented Object Library", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-api-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-api-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-api-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-api-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-api-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-api-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-api-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-api-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-api-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-api-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-api-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-api-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-api-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-api-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-api-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-api-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-api-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-api-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-api-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-api-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-api-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-api-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-api-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-api-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-api-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-api-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-api-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-api-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-api-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-api-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-api-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-api-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-api-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-api-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-api-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-api-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-api-plugin/deployments", + "created_at": "2018-06-12T17:29:35Z", + "updated_at": "2018-06-12T17:29:44Z", + "pushed_at": "2018-06-12T06:56:15Z", + "git_url": "git://github.com/jenkinsci/clearcase-ucm-api-plugin.git", + "ssh_url": "git@github.com:jenkinsci/clearcase-ucm-api-plugin.git", + "clone_url": "https://github.com/jenkinsci/clearcase-ucm-api-plugin.git", + "svn_url": "https://github.com/jenkinsci/clearcase-ucm-api-plugin", + "homepage": "wiki.praqma.net/cool", + "size": 4076, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 137115042, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzcxMTUwNDI=", + "name": "overops-query-plugin", + "full_name": "jenkinsci/overops-query-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/overops-query-plugin", + "description": "The plugin provides a mechanism for querying OverOps as a post build step to ensure continuous reliability.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/overops-query-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/overops-query-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/overops-query-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/overops-query-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/overops-query-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/overops-query-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/overops-query-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/overops-query-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/overops-query-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/overops-query-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/overops-query-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/overops-query-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/overops-query-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/overops-query-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/overops-query-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/overops-query-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/overops-query-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/overops-query-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/overops-query-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/overops-query-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/overops-query-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/overops-query-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/overops-query-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/overops-query-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/overops-query-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/overops-query-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/overops-query-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/overops-query-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/overops-query-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/overops-query-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/overops-query-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/overops-query-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/overops-query-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/overops-query-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/overops-query-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/overops-query-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/overops-query-plugin/deployments", + "created_at": "2018-06-12T18:56:23Z", + "updated_at": "2019-06-27T15:10:33Z", + "pushed_at": "2019-06-27T15:10:31Z", + "git_url": "git://github.com/jenkinsci/overops-query-plugin.git", + "ssh_url": "git@github.com:jenkinsci/overops-query-plugin.git", + "clone_url": "https://github.com/jenkinsci/overops-query-plugin.git", + "svn_url": "https://github.com/jenkinsci/overops-query-plugin", + "homepage": null, + "size": 621, + "stargazers_count": 6, + "watchers_count": 6, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 6, + "open_issues": 1, + "watchers": 6, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 137383498, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzczODM0OTg=", + "name": "stride-notification-plugin", + "full_name": "jenkinsci/stride-notification-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/stride-notification-plugin", + "description": "Jenkins plugin for notifying the build details to stride chat rooms.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/stride-notification-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/stride-notification-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/stride-notification-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/stride-notification-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/stride-notification-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/stride-notification-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/stride-notification-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/stride-notification-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/stride-notification-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/stride-notification-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/stride-notification-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/stride-notification-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/stride-notification-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/stride-notification-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/stride-notification-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/stride-notification-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/stride-notification-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/stride-notification-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/stride-notification-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/stride-notification-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/stride-notification-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/stride-notification-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/stride-notification-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/stride-notification-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/stride-notification-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/stride-notification-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/stride-notification-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/stride-notification-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/stride-notification-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/stride-notification-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/stride-notification-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/stride-notification-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/stride-notification-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/stride-notification-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/stride-notification-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/stride-notification-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/stride-notification-plugin/deployments", + "created_at": "2018-06-14T16:34:12Z", + "updated_at": "2018-06-26T10:24:27Z", + "pushed_at": "2019-02-04T12:36:39Z", + "git_url": "git://github.com/jenkinsci/stride-notification-plugin.git", + "ssh_url": "git@github.com:jenkinsci/stride-notification-plugin.git", + "clone_url": "https://github.com/jenkinsci/stride-notification-plugin.git", + "svn_url": "https://github.com/jenkinsci/stride-notification-plugin", + "homepage": null, + "size": 71725, + "stargazers_count": 1, + "watchers_count": 1, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 1, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 137405760, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzc0MDU3NjA=", + "name": "additional-metrics-plugin", + "full_name": "jenkinsci/additional-metrics-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/additional-metrics-plugin", + "description": "Provides additional metrics for List Views", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/additional-metrics-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/additional-metrics-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/additional-metrics-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/additional-metrics-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/additional-metrics-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/additional-metrics-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/additional-metrics-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/additional-metrics-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/additional-metrics-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/additional-metrics-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/additional-metrics-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/additional-metrics-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/additional-metrics-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/additional-metrics-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/additional-metrics-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/additional-metrics-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/additional-metrics-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/additional-metrics-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/additional-metrics-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/additional-metrics-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/additional-metrics-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/additional-metrics-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/additional-metrics-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/additional-metrics-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/additional-metrics-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/additional-metrics-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/additional-metrics-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/additional-metrics-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/additional-metrics-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/additional-metrics-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/additional-metrics-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/additional-metrics-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/additional-metrics-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/additional-metrics-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/additional-metrics-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/additional-metrics-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/additional-metrics-plugin/deployments", + "created_at": "2018-06-14T20:26:53Z", + "updated_at": "2019-10-08T17:07:30Z", + "pushed_at": "2019-10-08T17:07:28Z", + "git_url": "git://github.com/jenkinsci/additional-metrics-plugin.git", + "ssh_url": "git@github.com:jenkinsci/additional-metrics-plugin.git", + "clone_url": "https://github.com/jenkinsci/additional-metrics-plugin.git", + "svn_url": "https://github.com/jenkinsci/additional-metrics-plugin", + "homepage": "", + "size": 71, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 2, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 137690357, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzc2OTAzNTc=", + "name": "jwt-support-plugin", + "full_name": "jenkinsci/jwt-support-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jwt-support-plugin", + "description": "Adds Support to use JSON Web Tokens as access tokens", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/jwt-support-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/jwt-support-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jwt-support-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jwt-support-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jwt-support-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jwt-support-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jwt-support-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jwt-support-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jwt-support-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jwt-support-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jwt-support-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jwt-support-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jwt-support-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jwt-support-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jwt-support-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jwt-support-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jwt-support-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jwt-support-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jwt-support-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jwt-support-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jwt-support-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jwt-support-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jwt-support-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jwt-support-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jwt-support-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jwt-support-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jwt-support-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jwt-support-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jwt-support-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jwt-support-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jwt-support-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jwt-support-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jwt-support-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jwt-support-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jwt-support-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jwt-support-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jwt-support-plugin/deployments", + "created_at": "2018-06-17T22:11:02Z", + "updated_at": "2019-07-19T15:58:08Z", + "pushed_at": "2018-07-19T14:23:37Z", + "git_url": "git://github.com/jenkinsci/jwt-support-plugin.git", + "ssh_url": "git@github.com:jenkinsci/jwt-support-plugin.git", + "clone_url": "https://github.com/jenkinsci/jwt-support-plugin.git", + "svn_url": "https://github.com/jenkinsci/jwt-support-plugin", + "homepage": null, + "size": 120, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 138057357, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzgwNTczNTc=", + "name": "jaxb-plugin", + "full_name": "jenkinsci/jaxb-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jaxb-plugin", + "description": "Detached JAXB plugin for Java 11", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jaxb-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/jaxb-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jaxb-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jaxb-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jaxb-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jaxb-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jaxb-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jaxb-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jaxb-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jaxb-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jaxb-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jaxb-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jaxb-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jaxb-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jaxb-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jaxb-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jaxb-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jaxb-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jaxb-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jaxb-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jaxb-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jaxb-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jaxb-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jaxb-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jaxb-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jaxb-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jaxb-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jaxb-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jaxb-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jaxb-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jaxb-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jaxb-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jaxb-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jaxb-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jaxb-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jaxb-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jaxb-plugin/deployments", + "created_at": "2018-06-20T16:15:51Z", + "updated_at": "2019-06-04T05:14:46Z", + "pushed_at": "2019-06-04T05:14:44Z", + "git_url": "git://github.com/jenkinsci/jaxb-plugin.git", + "ssh_url": "git@github.com:jenkinsci/jaxb-plugin.git", + "clone_url": "https://github.com/jenkinsci/jaxb-plugin.git", + "svn_url": "https://github.com/jenkinsci/jaxb-plugin", + "homepage": "https://plugins.jenkins.io/jaxb", + "size": 19, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 7, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 7, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 138196132, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzgxOTYxMzI=", + "name": "r7insight-log-forwarder-plugin", + "full_name": "jenkinsci/r7insight-log-forwarder-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/r7insight-log-forwarder-plugin", + "description": "Jenkins plugin for sending Jenkins logs to Rapid7 Insight Platform ", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/r7insight-log-forwarder-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/r7insight-log-forwarder-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/r7insight-log-forwarder-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/r7insight-log-forwarder-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/r7insight-log-forwarder-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/r7insight-log-forwarder-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/r7insight-log-forwarder-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/r7insight-log-forwarder-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/r7insight-log-forwarder-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/r7insight-log-forwarder-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/r7insight-log-forwarder-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/r7insight-log-forwarder-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/r7insight-log-forwarder-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/r7insight-log-forwarder-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/r7insight-log-forwarder-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/r7insight-log-forwarder-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/r7insight-log-forwarder-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/r7insight-log-forwarder-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/r7insight-log-forwarder-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/r7insight-log-forwarder-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/r7insight-log-forwarder-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/r7insight-log-forwarder-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/r7insight-log-forwarder-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/r7insight-log-forwarder-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/r7insight-log-forwarder-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/r7insight-log-forwarder-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/r7insight-log-forwarder-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/r7insight-log-forwarder-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/r7insight-log-forwarder-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/r7insight-log-forwarder-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/r7insight-log-forwarder-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/r7insight-log-forwarder-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/r7insight-log-forwarder-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/r7insight-log-forwarder-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/r7insight-log-forwarder-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/r7insight-log-forwarder-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/r7insight-log-forwarder-plugin/deployments", + "created_at": "2018-06-21T16:32:38Z", + "updated_at": "2018-07-02T08:00:12Z", + "pushed_at": "2018-07-02T08:00:10Z", + "git_url": "git://github.com/jenkinsci/r7insight-log-forwarder-plugin.git", + "ssh_url": "git@github.com:jenkinsci/r7insight-log-forwarder-plugin.git", + "clone_url": "https://github.com/jenkinsci/r7insight-log-forwarder-plugin.git", + "svn_url": "https://github.com/jenkinsci/r7insight-log-forwarder-plugin", + "homepage": null, + "size": 66, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 138341489, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzgzNDE0ODk=", + "name": "jna-posix-api-plugin", + "full_name": "jenkinsci/jna-posix-api-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jna-posix-api-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jna-posix-api-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/jna-posix-api-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jna-posix-api-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jna-posix-api-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jna-posix-api-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jna-posix-api-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jna-posix-api-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jna-posix-api-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jna-posix-api-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jna-posix-api-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jna-posix-api-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jna-posix-api-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jna-posix-api-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jna-posix-api-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jna-posix-api-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jna-posix-api-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jna-posix-api-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jna-posix-api-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jna-posix-api-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jna-posix-api-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jna-posix-api-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jna-posix-api-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jna-posix-api-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jna-posix-api-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jna-posix-api-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jna-posix-api-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jna-posix-api-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jna-posix-api-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jna-posix-api-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jna-posix-api-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jna-posix-api-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jna-posix-api-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jna-posix-api-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jna-posix-api-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jna-posix-api-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jna-posix-api-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jna-posix-api-plugin/deployments", + "created_at": "2018-06-22T19:35:55Z", + "updated_at": "2019-09-16T09:21:49Z", + "pushed_at": "2018-06-25T07:46:20Z", + "git_url": "git://github.com/jenkinsci/jna-posix-api-plugin.git", + "ssh_url": "git@github.com:jenkinsci/jna-posix-api-plugin.git", + "clone_url": "https://github.com/jenkinsci/jna-posix-api-plugin.git", + "svn_url": "https://github.com/jenkinsci/jna-posix-api-plugin", + "homepage": null, + "size": 2, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 138341543, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzgzNDE1NDM=", + "name": "jnr-posix-api-plugin", + "full_name": "jenkinsci/jnr-posix-api-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jnr-posix-api-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jnr-posix-api-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/jnr-posix-api-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jnr-posix-api-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jnr-posix-api-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jnr-posix-api-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jnr-posix-api-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jnr-posix-api-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jnr-posix-api-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jnr-posix-api-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jnr-posix-api-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jnr-posix-api-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jnr-posix-api-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jnr-posix-api-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jnr-posix-api-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jnr-posix-api-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jnr-posix-api-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jnr-posix-api-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jnr-posix-api-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jnr-posix-api-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jnr-posix-api-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jnr-posix-api-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jnr-posix-api-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jnr-posix-api-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jnr-posix-api-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jnr-posix-api-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jnr-posix-api-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jnr-posix-api-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jnr-posix-api-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jnr-posix-api-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jnr-posix-api-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jnr-posix-api-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jnr-posix-api-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jnr-posix-api-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jnr-posix-api-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jnr-posix-api-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jnr-posix-api-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jnr-posix-api-plugin/deployments", + "created_at": "2018-06-22T19:36:40Z", + "updated_at": "2019-09-16T09:21:50Z", + "pushed_at": "2018-06-21T16:11:15Z", + "git_url": "git://github.com/jenkinsci/jnr-posix-api-plugin.git", + "ssh_url": "git@github.com:jenkinsci/jnr-posix-api-plugin.git", + "clone_url": "https://github.com/jenkinsci/jnr-posix-api-plugin.git", + "svn_url": "https://github.com/jenkinsci/jnr-posix-api-plugin", + "homepage": null, + "size": 2, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 138756063, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzg3NTYwNjM=", + "name": "login-theme-plugin", + "full_name": "jenkinsci/login-theme-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/login-theme-plugin", + "description": "Simple plugin to customize the Jenkins 2.128+ login and signup pages", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/login-theme-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/login-theme-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/login-theme-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/login-theme-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/login-theme-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/login-theme-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/login-theme-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/login-theme-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/login-theme-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/login-theme-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/login-theme-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/login-theme-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/login-theme-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/login-theme-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/login-theme-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/login-theme-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/login-theme-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/login-theme-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/login-theme-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/login-theme-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/login-theme-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/login-theme-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/login-theme-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/login-theme-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/login-theme-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/login-theme-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/login-theme-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/login-theme-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/login-theme-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/login-theme-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/login-theme-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/login-theme-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/login-theme-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/login-theme-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/login-theme-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/login-theme-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/login-theme-plugin/deployments", + "created_at": "2018-06-26T15:14:38Z", + "updated_at": "2019-10-10T16:53:23Z", + "pushed_at": "2019-10-21T13:41:10Z", + "git_url": "git://github.com/jenkinsci/login-theme-plugin.git", + "ssh_url": "git@github.com:jenkinsci/login-theme-plugin.git", + "clone_url": "https://github.com/jenkinsci/login-theme-plugin.git", + "svn_url": "https://github.com/jenkinsci/login-theme-plugin", + "homepage": null, + "size": 14, + "stargazers_count": 5, + "watchers_count": 5, + "language": "HTML", + "has_issues": false, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 7, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 7, + "open_issues": 2, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 138756422, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzg3NTY0MjI=", + "name": "ssh-steps-plugin", + "full_name": "jenkinsci/ssh-steps-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/ssh-steps-plugin", + "description": "Jenkins pipeline steps which provides SSH facilities such as command execution or file transfer for continuous delivery. ", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/ssh-steps-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/ssh-steps-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/ssh-steps-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/ssh-steps-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/ssh-steps-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/ssh-steps-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/ssh-steps-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/ssh-steps-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/ssh-steps-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/ssh-steps-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/ssh-steps-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/ssh-steps-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/ssh-steps-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/ssh-steps-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/ssh-steps-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/ssh-steps-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/ssh-steps-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/ssh-steps-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/ssh-steps-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/ssh-steps-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/ssh-steps-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/ssh-steps-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/ssh-steps-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/ssh-steps-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/ssh-steps-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/ssh-steps-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/ssh-steps-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/ssh-steps-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/ssh-steps-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/ssh-steps-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/ssh-steps-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/ssh-steps-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/ssh-steps-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/ssh-steps-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/ssh-steps-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/ssh-steps-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/ssh-steps-plugin/deployments", + "created_at": "2018-06-26T15:17:40Z", + "updated_at": "2019-10-16T09:50:44Z", + "pushed_at": "2019-08-07T13:59:29Z", + "git_url": "git://github.com/jenkinsci/ssh-steps-plugin.git", + "ssh_url": "git@github.com:jenkinsci/ssh-steps-plugin.git", + "clone_url": "https://github.com/jenkinsci/ssh-steps-plugin.git", + "svn_url": "https://github.com/jenkinsci/ssh-steps-plugin", + "homepage": "https://plugins.jenkins.io/ssh-steps", + "size": 5435, + "stargazers_count": 93, + "watchers_count": 93, + "language": "Java", + "has_issues": false, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": true, + "forks_count": 23, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 23, + "open_issues": 0, + "watchers": 93, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 138909426, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzg5MDk0MjY=", + "name": "nirmata-plugin", + "full_name": "jenkinsci/nirmata-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/nirmata-plugin", + "description": "Enables synchronization of YAML/JSON files stored in a Git repository with a Kubernetes application managed on the Nirmata platform", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/nirmata-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/nirmata-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/nirmata-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/nirmata-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/nirmata-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/nirmata-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/nirmata-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/nirmata-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/nirmata-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/nirmata-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/nirmata-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/nirmata-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/nirmata-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/nirmata-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/nirmata-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/nirmata-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/nirmata-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/nirmata-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/nirmata-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/nirmata-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/nirmata-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/nirmata-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/nirmata-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/nirmata-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/nirmata-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/nirmata-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/nirmata-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/nirmata-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/nirmata-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/nirmata-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/nirmata-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/nirmata-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/nirmata-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/nirmata-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/nirmata-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/nirmata-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/nirmata-plugin/deployments", + "created_at": "2018-06-27T16:56:25Z", + "updated_at": "2018-12-14T19:30:07Z", + "pushed_at": "2018-12-14T19:30:06Z", + "git_url": "git://github.com/jenkinsci/nirmata-plugin.git", + "ssh_url": "git@github.com:jenkinsci/nirmata-plugin.git", + "clone_url": "https://github.com/jenkinsci/nirmata-plugin.git", + "svn_url": "https://github.com/jenkinsci/nirmata-plugin", + "homepage": null, + "size": 97, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 138909697, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzg5MDk2OTc=", + "name": "kryptowire-plugin", + "full_name": "jenkinsci/kryptowire-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/kryptowire-plugin", + "description": "kryptowire jenkins plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/kryptowire-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/kryptowire-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/kryptowire-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/kryptowire-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/kryptowire-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/kryptowire-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/kryptowire-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/kryptowire-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/kryptowire-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/kryptowire-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/kryptowire-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/kryptowire-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/kryptowire-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/kryptowire-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/kryptowire-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/kryptowire-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/kryptowire-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/kryptowire-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/kryptowire-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/kryptowire-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/kryptowire-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/kryptowire-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/kryptowire-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/kryptowire-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/kryptowire-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/kryptowire-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/kryptowire-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/kryptowire-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/kryptowire-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/kryptowire-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/kryptowire-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/kryptowire-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/kryptowire-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/kryptowire-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/kryptowire-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/kryptowire-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/kryptowire-plugin/deployments", + "created_at": "2018-06-27T16:59:07Z", + "updated_at": "2019-03-06T01:34:16Z", + "pushed_at": "2019-09-11T21:24:03Z", + "git_url": "git://github.com/jenkinsci/kryptowire-plugin.git", + "ssh_url": "git@github.com:jenkinsci/kryptowire-plugin.git", + "clone_url": "https://github.com/jenkinsci/kryptowire-plugin.git", + "svn_url": "https://github.com/jenkinsci/kryptowire-plugin", + "homepage": null, + "size": 554, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 1, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 140005588, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDAwMDU1ODg=", + "name": "aws-global-configuration-plugin", + "full_name": "jenkinsci/aws-global-configuration-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/aws-global-configuration-plugin", + "description": "Common configuration for the AWS cloud native plugins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/aws-global-configuration-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/aws-global-configuration-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/aws-global-configuration-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/aws-global-configuration-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/aws-global-configuration-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/aws-global-configuration-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/aws-global-configuration-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/aws-global-configuration-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/aws-global-configuration-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/aws-global-configuration-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/aws-global-configuration-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/aws-global-configuration-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/aws-global-configuration-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/aws-global-configuration-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/aws-global-configuration-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/aws-global-configuration-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/aws-global-configuration-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/aws-global-configuration-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/aws-global-configuration-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/aws-global-configuration-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/aws-global-configuration-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/aws-global-configuration-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/aws-global-configuration-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/aws-global-configuration-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/aws-global-configuration-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/aws-global-configuration-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/aws-global-configuration-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/aws-global-configuration-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/aws-global-configuration-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/aws-global-configuration-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/aws-global-configuration-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/aws-global-configuration-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/aws-global-configuration-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/aws-global-configuration-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/aws-global-configuration-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/aws-global-configuration-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/aws-global-configuration-plugin/deployments", + "created_at": "2018-07-06T16:07:44Z", + "updated_at": "2019-05-21T10:57:56Z", + "pushed_at": "2019-03-27T22:19:10Z", + "git_url": "git://github.com/jenkinsci/aws-global-configuration-plugin.git", + "ssh_url": "git@github.com:jenkinsci/aws-global-configuration-plugin.git", + "clone_url": "https://github.com/jenkinsci/aws-global-configuration-plugin.git", + "svn_url": "https://github.com/jenkinsci/aws-global-configuration-plugin", + "homepage": "", + "size": 84, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 4, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 140005782, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDAwMDU3ODI=", + "name": "osf-builder-suite-xml-linter-plugin", + "full_name": "jenkinsci/osf-builder-suite-xml-linter-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/osf-builder-suite-xml-linter-plugin", + "description": "OSF Builder Suite :: XML Linter", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-xml-linter-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-xml-linter-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-xml-linter-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-xml-linter-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-xml-linter-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-xml-linter-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-xml-linter-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-xml-linter-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-xml-linter-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-xml-linter-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-xml-linter-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-xml-linter-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-xml-linter-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-xml-linter-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-xml-linter-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-xml-linter-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-xml-linter-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-xml-linter-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-xml-linter-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-xml-linter-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-xml-linter-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-xml-linter-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-xml-linter-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-xml-linter-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-xml-linter-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-xml-linter-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-xml-linter-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-xml-linter-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-xml-linter-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-xml-linter-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-xml-linter-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-xml-linter-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-xml-linter-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-xml-linter-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-xml-linter-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-xml-linter-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-xml-linter-plugin/deployments", + "created_at": "2018-07-06T16:09:40Z", + "updated_at": "2019-04-03T17:40:32Z", + "pushed_at": "2019-04-03T17:40:29Z", + "git_url": "git://github.com/jenkinsci/osf-builder-suite-xml-linter-plugin.git", + "ssh_url": "git@github.com:jenkinsci/osf-builder-suite-xml-linter-plugin.git", + "clone_url": "https://github.com/jenkinsci/osf-builder-suite-xml-linter-plugin.git", + "svn_url": "https://github.com/jenkinsci/osf-builder-suite-xml-linter-plugin", + "homepage": "", + "size": 14, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 140339851, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDAzMzk4NTE=", + "name": "habitat-plugin", + "full_name": "jenkinsci/habitat-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/habitat-plugin", + "description": "Jenkins plugin for Habitat", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/habitat-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/habitat-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/habitat-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/habitat-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/habitat-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/habitat-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/habitat-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/habitat-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/habitat-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/habitat-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/habitat-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/habitat-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/habitat-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/habitat-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/habitat-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/habitat-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/habitat-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/habitat-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/habitat-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/habitat-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/habitat-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/habitat-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/habitat-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/habitat-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/habitat-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/habitat-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/habitat-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/habitat-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/habitat-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/habitat-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/habitat-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/habitat-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/habitat-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/habitat-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/habitat-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/habitat-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/habitat-plugin/deployments", + "created_at": "2018-07-09T20:40:15Z", + "updated_at": "2019-03-04T16:58:58Z", + "pushed_at": "2019-03-04T16:58:57Z", + "git_url": "git://github.com/jenkinsci/habitat-plugin.git", + "ssh_url": "git@github.com:jenkinsci/habitat-plugin.git", + "clone_url": "https://github.com/jenkinsci/habitat-plugin.git", + "svn_url": "https://github.com/jenkinsci/habitat-plugin", + "homepage": null, + "size": 111, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 4, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 2, + "open_issues": 4, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 140339932, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDAzMzk5MzI=", + "name": "calendar-view-plugin", + "full_name": "jenkinsci/calendar-view-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/calendar-view-plugin", + "description": "Jenkins Calendar View Plugin: Shows past and future builds in a calendar view", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/calendar-view-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/calendar-view-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/calendar-view-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/calendar-view-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/calendar-view-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/calendar-view-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/calendar-view-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/calendar-view-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/calendar-view-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/calendar-view-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/calendar-view-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/calendar-view-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/calendar-view-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/calendar-view-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/calendar-view-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/calendar-view-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/calendar-view-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/calendar-view-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/calendar-view-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/calendar-view-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/calendar-view-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/calendar-view-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/calendar-view-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/calendar-view-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/calendar-view-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/calendar-view-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/calendar-view-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/calendar-view-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/calendar-view-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/calendar-view-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/calendar-view-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/calendar-view-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/calendar-view-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/calendar-view-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/calendar-view-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/calendar-view-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/calendar-view-plugin/deployments", + "created_at": "2018-07-09T20:41:16Z", + "updated_at": "2019-08-07T22:02:23Z", + "pushed_at": "2019-10-25T19:28:12Z", + "git_url": "git://github.com/jenkinsci/calendar-view-plugin.git", + "ssh_url": "git@github.com:jenkinsci/calendar-view-plugin.git", + "clone_url": "https://github.com/jenkinsci/calendar-view-plugin.git", + "svn_url": "https://github.com/jenkinsci/calendar-view-plugin", + "homepage": "", + "size": 4293, + "stargazers_count": 12, + "watchers_count": 12, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 10, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 10, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 10, + "open_issues": 10, + "watchers": 12, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 140596991, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDA1OTY5OTE=", + "name": "practitest-integration-plugin", + "full_name": "jenkinsci/practitest-integration-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/practitest-integration-plugin", + "description": "PractiTest plugin for Jenkins", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/practitest-integration-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/practitest-integration-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/practitest-integration-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/practitest-integration-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/practitest-integration-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/practitest-integration-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/practitest-integration-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/practitest-integration-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/practitest-integration-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/practitest-integration-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/practitest-integration-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/practitest-integration-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/practitest-integration-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/practitest-integration-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/practitest-integration-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/practitest-integration-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/practitest-integration-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/practitest-integration-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/practitest-integration-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/practitest-integration-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/practitest-integration-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/practitest-integration-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/practitest-integration-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/practitest-integration-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/practitest-integration-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/practitest-integration-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/practitest-integration-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/practitest-integration-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/practitest-integration-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/practitest-integration-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/practitest-integration-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/practitest-integration-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/practitest-integration-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/practitest-integration-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/practitest-integration-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/practitest-integration-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/practitest-integration-plugin/deployments", + "created_at": "2018-07-11T15:45:00Z", + "updated_at": "2018-07-11T15:45:14Z", + "pushed_at": "2018-07-11T13:46:29Z", + "git_url": "git://github.com/jenkinsci/practitest-integration-plugin.git", + "ssh_url": "git@github.com:jenkinsci/practitest-integration-plugin.git", + "clone_url": "https://github.com/jenkinsci/practitest-integration-plugin.git", + "svn_url": "https://github.com/jenkinsci/practitest-integration-plugin", + "homepage": null, + "size": 20, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 140605888, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDA2MDU4ODg=", + "name": "docker-compose-build-step-plugin", + "full_name": "jenkinsci/docker-compose-build-step-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/docker-compose-build-step-plugin", + "description": "Docker Compose Build Step Plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/docker-compose-build-step-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/docker-compose-build-step-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/docker-compose-build-step-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/docker-compose-build-step-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/docker-compose-build-step-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/docker-compose-build-step-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/docker-compose-build-step-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/docker-compose-build-step-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/docker-compose-build-step-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/docker-compose-build-step-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/docker-compose-build-step-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/docker-compose-build-step-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/docker-compose-build-step-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/docker-compose-build-step-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/docker-compose-build-step-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/docker-compose-build-step-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/docker-compose-build-step-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/docker-compose-build-step-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/docker-compose-build-step-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/docker-compose-build-step-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/docker-compose-build-step-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/docker-compose-build-step-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/docker-compose-build-step-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/docker-compose-build-step-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/docker-compose-build-step-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/docker-compose-build-step-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/docker-compose-build-step-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/docker-compose-build-step-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/docker-compose-build-step-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/docker-compose-build-step-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/docker-compose-build-step-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/docker-compose-build-step-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/docker-compose-build-step-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/docker-compose-build-step-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/docker-compose-build-step-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/docker-compose-build-step-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/docker-compose-build-step-plugin/deployments", + "created_at": "2018-07-11T17:06:35Z", + "updated_at": "2019-09-17T09:42:10Z", + "pushed_at": "2018-07-12T18:39:18Z", + "git_url": "git://github.com/jenkinsci/docker-compose-build-step-plugin.git", + "ssh_url": "git@github.com:jenkinsci/docker-compose-build-step-plugin.git", + "clone_url": "https://github.com/jenkinsci/docker-compose-build-step-plugin.git", + "svn_url": "https://github.com/jenkinsci/docker-compose-build-step-plugin", + "homepage": "", + "size": 265, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 141285153, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDEyODUxNTM=", + "name": "urbancode-velocity-plugin", + "full_name": "jenkinsci/urbancode-velocity-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/urbancode-velocity-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/urbancode-velocity-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/urbancode-velocity-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/urbancode-velocity-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/urbancode-velocity-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/urbancode-velocity-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/urbancode-velocity-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/urbancode-velocity-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/urbancode-velocity-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/urbancode-velocity-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/urbancode-velocity-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/urbancode-velocity-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/urbancode-velocity-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/urbancode-velocity-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/urbancode-velocity-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/urbancode-velocity-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/urbancode-velocity-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/urbancode-velocity-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/urbancode-velocity-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/urbancode-velocity-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/urbancode-velocity-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/urbancode-velocity-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/urbancode-velocity-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/urbancode-velocity-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/urbancode-velocity-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/urbancode-velocity-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/urbancode-velocity-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/urbancode-velocity-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/urbancode-velocity-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/urbancode-velocity-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/urbancode-velocity-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/urbancode-velocity-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/urbancode-velocity-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/urbancode-velocity-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/urbancode-velocity-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/urbancode-velocity-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/urbancode-velocity-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/urbancode-velocity-plugin/deployments", + "created_at": "2018-07-17T12:13:41Z", + "updated_at": "2019-08-19T16:34:25Z", + "pushed_at": "2019-08-19T16:34:23Z", + "git_url": "git://github.com/jenkinsci/urbancode-velocity-plugin.git", + "ssh_url": "git@github.com:jenkinsci/urbancode-velocity-plugin.git", + "clone_url": "https://github.com/jenkinsci/urbancode-velocity-plugin.git", + "svn_url": "https://github.com/jenkinsci/urbancode-velocity-plugin", + "homepage": null, + "size": 13888, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 7, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 7, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 141289117, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDEyODkxMTc=", + "name": "osf-builder-suite-standalone-sonar-linter-plugin", + "full_name": "jenkinsci/osf-builder-suite-standalone-sonar-linter-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/osf-builder-suite-standalone-sonar-linter-plugin", + "description": "OSF Builder Suite :: Standalone Sonar Linter", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-standalone-sonar-linter-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-standalone-sonar-linter-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-standalone-sonar-linter-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-standalone-sonar-linter-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-standalone-sonar-linter-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-standalone-sonar-linter-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-standalone-sonar-linter-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-standalone-sonar-linter-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-standalone-sonar-linter-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-standalone-sonar-linter-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-standalone-sonar-linter-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-standalone-sonar-linter-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-standalone-sonar-linter-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-standalone-sonar-linter-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-standalone-sonar-linter-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-standalone-sonar-linter-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-standalone-sonar-linter-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-standalone-sonar-linter-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-standalone-sonar-linter-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-standalone-sonar-linter-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-standalone-sonar-linter-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-standalone-sonar-linter-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-standalone-sonar-linter-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-standalone-sonar-linter-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-standalone-sonar-linter-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-standalone-sonar-linter-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-standalone-sonar-linter-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-standalone-sonar-linter-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-standalone-sonar-linter-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-standalone-sonar-linter-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-standalone-sonar-linter-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-standalone-sonar-linter-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-standalone-sonar-linter-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-standalone-sonar-linter-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-standalone-sonar-linter-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-standalone-sonar-linter-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/osf-builder-suite-standalone-sonar-linter-plugin/deployments", + "created_at": "2018-07-17T12:50:04Z", + "updated_at": "2019-08-26T09:47:49Z", + "pushed_at": "2019-04-03T16:36:49Z", + "git_url": "git://github.com/jenkinsci/osf-builder-suite-standalone-sonar-linter-plugin.git", + "ssh_url": "git@github.com:jenkinsci/osf-builder-suite-standalone-sonar-linter-plugin.git", + "clone_url": "https://github.com/jenkinsci/osf-builder-suite-standalone-sonar-linter-plugin.git", + "svn_url": "https://github.com/jenkinsci/osf-builder-suite-standalone-sonar-linter-plugin", + "homepage": "", + "size": 23, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 141289563, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDEyODk1NjM=", + "name": "line-notify-plugin", + "full_name": "jenkinsci/line-notify-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/line-notify-plugin", + "description": "jenkins Line Notify Plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/line-notify-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/line-notify-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/line-notify-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/line-notify-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/line-notify-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/line-notify-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/line-notify-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/line-notify-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/line-notify-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/line-notify-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/line-notify-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/line-notify-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/line-notify-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/line-notify-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/line-notify-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/line-notify-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/line-notify-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/line-notify-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/line-notify-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/line-notify-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/line-notify-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/line-notify-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/line-notify-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/line-notify-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/line-notify-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/line-notify-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/line-notify-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/line-notify-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/line-notify-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/line-notify-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/line-notify-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/line-notify-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/line-notify-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/line-notify-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/line-notify-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/line-notify-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/line-notify-plugin/deployments", + "created_at": "2018-07-17T12:54:07Z", + "updated_at": "2019-01-24T06:54:44Z", + "pushed_at": "2019-10-25T15:29:11Z", + "git_url": "git://github.com/jenkinsci/line-notify-plugin.git", + "ssh_url": "git@github.com:jenkinsci/line-notify-plugin.git", + "clone_url": "https://github.com/jenkinsci/line-notify-plugin.git", + "svn_url": "https://github.com/jenkinsci/line-notify-plugin", + "homepage": null, + "size": 23, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 2, + "open_issues": 1, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 141296282, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDEyOTYyODI=", + "name": "jdependency", + "full_name": "jenkinsci/jdependency", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jdependency", + "description": "This library provides an API to analyse and modify class dependencies. It provides the core to the maven2 minijar plugin and provides something in the middle between jarjar and proguard.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/jdependency", + "forks_url": "https://api.github.com/repos/jenkinsci/jdependency/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jdependency/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jdependency/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jdependency/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jdependency/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jdependency/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jdependency/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jdependency/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jdependency/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jdependency/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jdependency/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jdependency/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jdependency/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jdependency/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jdependency/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jdependency/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jdependency/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jdependency/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jdependency/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jdependency/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jdependency/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jdependency/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jdependency/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jdependency/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jdependency/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jdependency/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jdependency/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jdependency/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jdependency/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jdependency/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jdependency/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jdependency/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jdependency/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jdependency/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jdependency/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jdependency/deployments", + "created_at": "2018-07-17T13:50:35Z", + "updated_at": "2018-09-27T14:29:15Z", + "pushed_at": "2018-09-27T14:29:14Z", + "git_url": "git://github.com/jenkinsci/jdependency.git", + "ssh_url": "git@github.com:jenkinsci/jdependency.git", + "clone_url": "https://github.com/jenkinsci/jdependency.git", + "svn_url": "https://github.com/jenkinsci/jdependency", + "homepage": "http://github.com/tcurdt/jdependency", + "size": 1232, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "2.0-jenkins-1", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 141438494, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDE0Mzg0OTQ=", + "name": "testweaver-plugin", + "full_name": "jenkinsci/testweaver-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/testweaver-plugin", + "description": "Integrates Jenkins with TestWeaver", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/testweaver-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/testweaver-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/testweaver-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/testweaver-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/testweaver-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/testweaver-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/testweaver-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/testweaver-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/testweaver-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/testweaver-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/testweaver-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/testweaver-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/testweaver-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/testweaver-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/testweaver-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/testweaver-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/testweaver-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/testweaver-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/testweaver-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/testweaver-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/testweaver-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/testweaver-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/testweaver-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/testweaver-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/testweaver-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/testweaver-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/testweaver-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/testweaver-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/testweaver-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/testweaver-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/testweaver-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/testweaver-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/testweaver-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/testweaver-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/testweaver-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/testweaver-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/testweaver-plugin/deployments", + "created_at": "2018-07-18T13:27:20Z", + "updated_at": "2019-08-20T07:33:39Z", + "pushed_at": "2019-08-20T07:33:37Z", + "git_url": "git://github.com/jenkinsci/testweaver-plugin.git", + "ssh_url": "git@github.com:jenkinsci/testweaver-plugin.git", + "clone_url": "https://github.com/jenkinsci/testweaver-plugin.git", + "svn_url": "https://github.com/jenkinsci/testweaver-plugin", + "homepage": null, + "size": 27, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 141457393, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDE0NTczOTM=", + "name": "sdelements-plugin", + "full_name": "jenkinsci/sdelements-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/sdelements-plugin", + "description": "Jenkins plugin for SD Elements risk assessment tool by Security Compass", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/sdelements-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/sdelements-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/sdelements-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/sdelements-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/sdelements-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/sdelements-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/sdelements-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/sdelements-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/sdelements-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/sdelements-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/sdelements-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/sdelements-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/sdelements-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/sdelements-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/sdelements-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/sdelements-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/sdelements-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/sdelements-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/sdelements-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/sdelements-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/sdelements-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/sdelements-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/sdelements-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/sdelements-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/sdelements-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/sdelements-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/sdelements-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/sdelements-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/sdelements-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/sdelements-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/sdelements-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/sdelements-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/sdelements-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/sdelements-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/sdelements-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/sdelements-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/sdelements-plugin/deployments", + "created_at": "2018-07-18T15:54:24Z", + "updated_at": "2018-09-19T17:51:30Z", + "pushed_at": "2018-09-19T17:51:29Z", + "git_url": "git://github.com/jenkinsci/sdelements-plugin.git", + "ssh_url": "git@github.com:jenkinsci/sdelements-plugin.git", + "clone_url": "https://github.com/jenkinsci/sdelements-plugin.git", + "svn_url": "https://github.com/jenkinsci/sdelements-plugin", + "homepage": "", + "size": 741, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 141579811, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDE1Nzk4MTE=", + "name": "gitee-plugin", + "full_name": "jenkinsci/gitee-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/gitee-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/gitee-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/gitee-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/gitee-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/gitee-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/gitee-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/gitee-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/gitee-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/gitee-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/gitee-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/gitee-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/gitee-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/gitee-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/gitee-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/gitee-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/gitee-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/gitee-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/gitee-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/gitee-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/gitee-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/gitee-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/gitee-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/gitee-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/gitee-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/gitee-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/gitee-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/gitee-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/gitee-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/gitee-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/gitee-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/gitee-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/gitee-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/gitee-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/gitee-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/gitee-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/gitee-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/gitee-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/gitee-plugin/deployments", + "created_at": "2018-07-19T12:57:58Z", + "updated_at": "2019-10-24T10:41:25Z", + "pushed_at": "2019-10-24T10:41:23Z", + "git_url": "git://github.com/jenkinsci/gitee-plugin.git", + "ssh_url": "git@github.com:jenkinsci/gitee-plugin.git", + "clone_url": "https://github.com/jenkinsci/gitee-plugin.git", + "svn_url": "https://github.com/jenkinsci/gitee-plugin", + "homepage": null, + "size": 5548, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "gpl-2.0", + "name": "GNU General Public License v2.0", + "spdx_id": "GPL-2.0", + "url": "https://api.github.com/licenses/gpl-2.0", + "node_id": "MDc6TGljZW5zZTg=" + }, + "forks": 2, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 142293680, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDIyOTM2ODA=", + "name": "llvm-cov-plugin", + "full_name": "jenkinsci/llvm-cov-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/llvm-cov-plugin", + "description": "Jenkins llvm-cov plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/llvm-cov-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/llvm-cov-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/llvm-cov-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/llvm-cov-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/llvm-cov-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/llvm-cov-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/llvm-cov-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/llvm-cov-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/llvm-cov-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/llvm-cov-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/llvm-cov-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/llvm-cov-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/llvm-cov-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/llvm-cov-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/llvm-cov-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/llvm-cov-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/llvm-cov-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/llvm-cov-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/llvm-cov-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/llvm-cov-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/llvm-cov-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/llvm-cov-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/llvm-cov-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/llvm-cov-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/llvm-cov-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/llvm-cov-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/llvm-cov-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/llvm-cov-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/llvm-cov-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/llvm-cov-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/llvm-cov-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/llvm-cov-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/llvm-cov-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/llvm-cov-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/llvm-cov-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/llvm-cov-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/llvm-cov-plugin/deployments", + "created_at": "2018-07-25T11:58:45Z", + "updated_at": "2019-07-29T08:39:13Z", + "pushed_at": "2019-07-29T08:39:11Z", + "git_url": "git://github.com/jenkinsci/llvm-cov-plugin.git", + "ssh_url": "git@github.com:jenkinsci/llvm-cov-plugin.git", + "clone_url": "https://github.com/jenkinsci/llvm-cov-plugin.git", + "svn_url": "https://github.com/jenkinsci/llvm-cov-plugin", + "homepage": null, + "size": 28, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 2, + "open_issues": 1, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 142307397, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDIzMDczOTc=", + "name": "cachet-gating-plugin", + "full_name": "jenkinsci/cachet-gating-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/cachet-gating-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/cachet-gating-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/cachet-gating-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/cachet-gating-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/cachet-gating-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/cachet-gating-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/cachet-gating-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/cachet-gating-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/cachet-gating-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/cachet-gating-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/cachet-gating-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/cachet-gating-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/cachet-gating-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/cachet-gating-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/cachet-gating-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/cachet-gating-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/cachet-gating-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/cachet-gating-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/cachet-gating-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/cachet-gating-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/cachet-gating-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/cachet-gating-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/cachet-gating-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/cachet-gating-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/cachet-gating-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/cachet-gating-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/cachet-gating-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/cachet-gating-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/cachet-gating-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/cachet-gating-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/cachet-gating-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/cachet-gating-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/cachet-gating-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/cachet-gating-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/cachet-gating-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/cachet-gating-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/cachet-gating-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/cachet-gating-plugin/deployments", + "created_at": "2018-07-25T13:56:26Z", + "updated_at": "2019-03-14T12:51:25Z", + "pushed_at": "2019-10-22T08:58:30Z", + "git_url": "git://github.com/jenkinsci/cachet-gating-plugin.git", + "ssh_url": "git@github.com:jenkinsci/cachet-gating-plugin.git", + "clone_url": "https://github.com/jenkinsci/cachet-gating-plugin.git", + "svn_url": "https://github.com/jenkinsci/cachet-gating-plugin", + "homepage": null, + "size": 57, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 7, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 3, + "open_issues": 7, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 142320203, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDIzMjAyMDM=", + "name": "external-logging-api-plugin", + "full_name": "jenkinsci/external-logging-api-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/external-logging-api-plugin", + "description": "External Logging API Plugin for Jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/external-logging-api-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/external-logging-api-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/external-logging-api-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/external-logging-api-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/external-logging-api-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/external-logging-api-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/external-logging-api-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/external-logging-api-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/external-logging-api-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/external-logging-api-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/external-logging-api-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/external-logging-api-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/external-logging-api-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/external-logging-api-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/external-logging-api-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/external-logging-api-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/external-logging-api-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/external-logging-api-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/external-logging-api-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/external-logging-api-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/external-logging-api-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/external-logging-api-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/external-logging-api-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/external-logging-api-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/external-logging-api-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/external-logging-api-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/external-logging-api-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/external-logging-api-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/external-logging-api-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/external-logging-api-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/external-logging-api-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/external-logging-api-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/external-logging-api-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/external-logging-api-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/external-logging-api-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/external-logging-api-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/external-logging-api-plugin/deployments", + "created_at": "2018-07-25T15:36:30Z", + "updated_at": "2018-09-06T10:55:15Z", + "pushed_at": "2019-01-03T11:58:01Z", + "git_url": "git://github.com/jenkinsci/external-logging-api-plugin.git", + "ssh_url": "git@github.com:jenkinsci/external-logging-api-plugin.git", + "clone_url": "https://github.com/jenkinsci/external-logging-api-plugin.git", + "svn_url": "https://github.com/jenkinsci/external-logging-api-plugin", + "homepage": null, + "size": 94, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 142320415, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDIzMjA0MTU=", + "name": "external-logging-elasticsearch-plugin", + "full_name": "jenkinsci/external-logging-elasticsearch-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/external-logging-elasticsearch-plugin", + "description": "External Logging implementation for the Logstash Plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/external-logging-elasticsearch-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/external-logging-elasticsearch-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/external-logging-elasticsearch-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/external-logging-elasticsearch-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/external-logging-elasticsearch-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/external-logging-elasticsearch-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/external-logging-elasticsearch-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/external-logging-elasticsearch-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/external-logging-elasticsearch-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/external-logging-elasticsearch-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/external-logging-elasticsearch-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/external-logging-elasticsearch-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/external-logging-elasticsearch-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/external-logging-elasticsearch-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/external-logging-elasticsearch-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/external-logging-elasticsearch-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/external-logging-elasticsearch-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/external-logging-elasticsearch-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/external-logging-elasticsearch-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/external-logging-elasticsearch-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/external-logging-elasticsearch-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/external-logging-elasticsearch-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/external-logging-elasticsearch-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/external-logging-elasticsearch-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/external-logging-elasticsearch-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/external-logging-elasticsearch-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/external-logging-elasticsearch-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/external-logging-elasticsearch-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/external-logging-elasticsearch-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/external-logging-elasticsearch-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/external-logging-elasticsearch-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/external-logging-elasticsearch-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/external-logging-elasticsearch-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/external-logging-elasticsearch-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/external-logging-elasticsearch-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/external-logging-elasticsearch-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/external-logging-elasticsearch-plugin/deployments", + "created_at": "2018-07-25T15:38:15Z", + "updated_at": "2019-10-21T07:30:30Z", + "pushed_at": "2018-08-07T16:03:06Z", + "git_url": "git://github.com/jenkinsci/external-logging-elasticsearch-plugin.git", + "ssh_url": "git@github.com:jenkinsci/external-logging-elasticsearch-plugin.git", + "clone_url": "https://github.com/jenkinsci/external-logging-elasticsearch-plugin.git", + "svn_url": "https://github.com/jenkinsci/external-logging-elasticsearch-plugin", + "homepage": null, + "size": 50, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 2, + "open_issues": 1, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 142320558, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDIzMjA1NTg=", + "name": "skip-notifications-trait-plugin", + "full_name": "jenkinsci/skip-notifications-trait-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/skip-notifications-trait-plugin", + "description": "Add a Jenkins trait to disable build notifications", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/skip-notifications-trait-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/skip-notifications-trait-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/skip-notifications-trait-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/skip-notifications-trait-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/skip-notifications-trait-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/skip-notifications-trait-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/skip-notifications-trait-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/skip-notifications-trait-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/skip-notifications-trait-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/skip-notifications-trait-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/skip-notifications-trait-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/skip-notifications-trait-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/skip-notifications-trait-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/skip-notifications-trait-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/skip-notifications-trait-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/skip-notifications-trait-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/skip-notifications-trait-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/skip-notifications-trait-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/skip-notifications-trait-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/skip-notifications-trait-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/skip-notifications-trait-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/skip-notifications-trait-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/skip-notifications-trait-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/skip-notifications-trait-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/skip-notifications-trait-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/skip-notifications-trait-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/skip-notifications-trait-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/skip-notifications-trait-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/skip-notifications-trait-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/skip-notifications-trait-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/skip-notifications-trait-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/skip-notifications-trait-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/skip-notifications-trait-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/skip-notifications-trait-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/skip-notifications-trait-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/skip-notifications-trait-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/skip-notifications-trait-plugin/deployments", + "created_at": "2018-07-25T15:39:26Z", + "updated_at": "2019-10-02T20:10:51Z", + "pushed_at": "2019-05-22T23:09:41Z", + "git_url": "git://github.com/jenkinsci/skip-notifications-trait-plugin.git", + "ssh_url": "git@github.com:jenkinsci/skip-notifications-trait-plugin.git", + "clone_url": "https://github.com/jenkinsci/skip-notifications-trait-plugin.git", + "svn_url": "https://github.com/jenkinsci/skip-notifications-trait-plugin", + "homepage": null, + "size": 16, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 142321555, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDIzMjE1NTU=", + "name": "gitblit-plugin", + "full_name": "jenkinsci/gitblit-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/gitblit-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/gitblit-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/gitblit-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/gitblit-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/gitblit-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/gitblit-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/gitblit-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/gitblit-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/gitblit-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/gitblit-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/gitblit-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/gitblit-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/gitblit-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/gitblit-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/gitblit-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/gitblit-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/gitblit-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/gitblit-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/gitblit-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/gitblit-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/gitblit-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/gitblit-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/gitblit-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/gitblit-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/gitblit-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/gitblit-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/gitblit-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/gitblit-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/gitblit-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/gitblit-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/gitblit-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/gitblit-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/gitblit-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/gitblit-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/gitblit-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/gitblit-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/gitblit-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/gitblit-plugin/deployments", + "created_at": "2018-07-25T15:47:51Z", + "updated_at": "2019-02-27T12:04:52Z", + "pushed_at": "2019-02-27T12:04:50Z", + "git_url": "git://github.com/jenkinsci/gitblit-plugin.git", + "ssh_url": "git@github.com:jenkinsci/gitblit-plugin.git", + "clone_url": "https://github.com/jenkinsci/gitblit-plugin.git", + "svn_url": "https://github.com/jenkinsci/gitblit-plugin", + "homepage": null, + "size": 124, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 143071712, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDMwNzE3MTI=", + "name": "pipeline-cloudwatch-logs-plugin", + "full_name": "jenkinsci/pipeline-cloudwatch-logs-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pipeline-cloudwatch-logs-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/pipeline-cloudwatch-logs-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pipeline-cloudwatch-logs-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pipeline-cloudwatch-logs-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pipeline-cloudwatch-logs-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pipeline-cloudwatch-logs-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pipeline-cloudwatch-logs-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pipeline-cloudwatch-logs-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pipeline-cloudwatch-logs-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pipeline-cloudwatch-logs-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pipeline-cloudwatch-logs-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pipeline-cloudwatch-logs-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pipeline-cloudwatch-logs-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pipeline-cloudwatch-logs-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pipeline-cloudwatch-logs-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pipeline-cloudwatch-logs-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pipeline-cloudwatch-logs-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pipeline-cloudwatch-logs-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pipeline-cloudwatch-logs-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pipeline-cloudwatch-logs-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pipeline-cloudwatch-logs-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pipeline-cloudwatch-logs-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pipeline-cloudwatch-logs-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pipeline-cloudwatch-logs-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pipeline-cloudwatch-logs-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pipeline-cloudwatch-logs-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pipeline-cloudwatch-logs-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pipeline-cloudwatch-logs-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pipeline-cloudwatch-logs-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pipeline-cloudwatch-logs-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pipeline-cloudwatch-logs-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pipeline-cloudwatch-logs-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pipeline-cloudwatch-logs-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pipeline-cloudwatch-logs-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pipeline-cloudwatch-logs-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pipeline-cloudwatch-logs-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pipeline-cloudwatch-logs-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pipeline-cloudwatch-logs-plugin/deployments", + "created_at": "2018-07-31T21:23:35Z", + "updated_at": "2019-09-27T04:24:40Z", + "pushed_at": "2019-09-27T00:58:42Z", + "git_url": "git://github.com/jenkinsci/pipeline-cloudwatch-logs-plugin.git", + "ssh_url": "git@github.com:jenkinsci/pipeline-cloudwatch-logs-plugin.git", + "clone_url": "https://github.com/jenkinsci/pipeline-cloudwatch-logs-plugin.git", + "svn_url": "https://github.com/jenkinsci/pipeline-cloudwatch-logs-plugin", + "homepage": null, + "size": 193, + "stargazers_count": 9, + "watchers_count": 9, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 6, + "open_issues": 1, + "watchers": 9, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 143725330, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDM3MjUzMzA=", + "name": "ca-service-virtualization-plugin", + "full_name": "jenkinsci/ca-service-virtualization-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/ca-service-virtualization-plugin", + "description": "This plugin provides out of the box integration of CA Service Virtualization capabilities into continuous integration pipelines.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/ca-service-virtualization-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/ca-service-virtualization-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/ca-service-virtualization-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/ca-service-virtualization-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/ca-service-virtualization-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/ca-service-virtualization-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/ca-service-virtualization-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/ca-service-virtualization-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/ca-service-virtualization-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/ca-service-virtualization-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/ca-service-virtualization-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/ca-service-virtualization-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/ca-service-virtualization-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/ca-service-virtualization-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/ca-service-virtualization-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/ca-service-virtualization-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/ca-service-virtualization-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/ca-service-virtualization-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/ca-service-virtualization-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/ca-service-virtualization-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/ca-service-virtualization-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/ca-service-virtualization-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/ca-service-virtualization-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/ca-service-virtualization-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/ca-service-virtualization-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/ca-service-virtualization-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/ca-service-virtualization-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/ca-service-virtualization-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/ca-service-virtualization-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/ca-service-virtualization-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/ca-service-virtualization-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/ca-service-virtualization-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/ca-service-virtualization-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/ca-service-virtualization-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/ca-service-virtualization-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/ca-service-virtualization-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/ca-service-virtualization-plugin/deployments", + "created_at": "2018-08-06T12:27:09Z", + "updated_at": "2018-10-18T16:05:38Z", + "pushed_at": "2018-10-18T16:05:37Z", + "git_url": "git://github.com/jenkinsci/ca-service-virtualization-plugin.git", + "ssh_url": "git@github.com:jenkinsci/ca-service-virtualization-plugin.git", + "clone_url": "https://github.com/jenkinsci/ca-service-virtualization-plugin.git", + "svn_url": "https://github.com/jenkinsci/ca-service-virtualization-plugin", + "homepage": "https://wiki.jenkins.io/display/JENKINS/CA+Service+Virtualization+Plugin", + "size": 352, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "epl-2.0", + "name": "Eclipse Public License 2.0", + "spdx_id": "EPL-2.0", + "url": "https://api.github.com/licenses/epl-2.0", + "node_id": "MDc6TGljZW5zZTMy" + }, + "forks": 4, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 144304992, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDQzMDQ5OTI=", + "name": "labelled-steps-plugin", + "full_name": "jenkinsci/labelled-steps-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/labelled-steps-plugin", + "description": "Replacements for Jenkins pipeline `sh` and `bat` steps to allow displaying a custom label in the BlueOcean UI.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/labelled-steps-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/labelled-steps-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/labelled-steps-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/labelled-steps-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/labelled-steps-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/labelled-steps-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/labelled-steps-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/labelled-steps-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/labelled-steps-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/labelled-steps-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/labelled-steps-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/labelled-steps-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/labelled-steps-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/labelled-steps-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/labelled-steps-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/labelled-steps-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/labelled-steps-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/labelled-steps-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/labelled-steps-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/labelled-steps-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/labelled-steps-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/labelled-steps-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/labelled-steps-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/labelled-steps-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/labelled-steps-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/labelled-steps-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/labelled-steps-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/labelled-steps-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/labelled-steps-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/labelled-steps-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/labelled-steps-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/labelled-steps-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/labelled-steps-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/labelled-steps-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/labelled-steps-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/labelled-steps-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/labelled-steps-plugin/deployments", + "created_at": "2018-08-10T15:43:54Z", + "updated_at": "2019-04-12T01:48:07Z", + "pushed_at": "2018-12-02T15:40:11Z", + "git_url": "git://github.com/jenkinsci/labelled-steps-plugin.git", + "ssh_url": "git@github.com:jenkinsci/labelled-steps-plugin.git", + "clone_url": "https://github.com/jenkinsci/labelled-steps-plugin.git", + "svn_url": "https://github.com/jenkinsci/labelled-steps-plugin", + "homepage": "https://plugins.jenkins.io/labelled-steps", + "size": 9, + "stargazers_count": 6, + "watchers_count": 6, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 2, + "open_issues": 0, + "watchers": 6, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 144305047, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDQzMDUwNDc=", + "name": "github-coverage-reporter-plugin", + "full_name": "jenkinsci/github-coverage-reporter-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/github-coverage-reporter-plugin", + "description": "Jenkins plugin for reporting test coverage as a PR status check", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/github-coverage-reporter-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/github-coverage-reporter-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/github-coverage-reporter-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/github-coverage-reporter-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/github-coverage-reporter-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/github-coverage-reporter-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/github-coverage-reporter-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/github-coverage-reporter-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/github-coverage-reporter-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/github-coverage-reporter-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/github-coverage-reporter-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/github-coverage-reporter-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/github-coverage-reporter-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/github-coverage-reporter-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/github-coverage-reporter-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/github-coverage-reporter-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/github-coverage-reporter-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/github-coverage-reporter-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/github-coverage-reporter-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/github-coverage-reporter-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/github-coverage-reporter-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/github-coverage-reporter-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/github-coverage-reporter-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/github-coverage-reporter-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/github-coverage-reporter-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/github-coverage-reporter-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/github-coverage-reporter-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/github-coverage-reporter-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/github-coverage-reporter-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/github-coverage-reporter-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/github-coverage-reporter-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/github-coverage-reporter-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/github-coverage-reporter-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/github-coverage-reporter-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/github-coverage-reporter-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/github-coverage-reporter-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/github-coverage-reporter-plugin/deployments", + "created_at": "2018-08-10T15:44:25Z", + "updated_at": "2019-09-10T16:39:00Z", + "pushed_at": "2019-09-16T21:56:12Z", + "git_url": "git://github.com/jenkinsci/github-coverage-reporter-plugin.git", + "ssh_url": "git@github.com:jenkinsci/github-coverage-reporter-plugin.git", + "clone_url": "https://github.com/jenkinsci/github-coverage-reporter-plugin.git", + "svn_url": "https://github.com/jenkinsci/github-coverage-reporter-plugin", + "homepage": null, + "size": 433, + "stargazers_count": 16, + "watchers_count": 16, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 7, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 7, + "open_issues": 1, + "watchers": 16, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 144305121, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDQzMDUxMjE=", + "name": "content-replace-plugin", + "full_name": "jenkinsci/content-replace-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/content-replace-plugin", + "description": "A plugin for Jenkins allows you to replace file content with regex expressions.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/content-replace-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/content-replace-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/content-replace-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/content-replace-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/content-replace-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/content-replace-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/content-replace-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/content-replace-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/content-replace-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/content-replace-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/content-replace-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/content-replace-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/content-replace-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/content-replace-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/content-replace-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/content-replace-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/content-replace-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/content-replace-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/content-replace-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/content-replace-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/content-replace-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/content-replace-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/content-replace-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/content-replace-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/content-replace-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/content-replace-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/content-replace-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/content-replace-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/content-replace-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/content-replace-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/content-replace-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/content-replace-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/content-replace-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/content-replace-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/content-replace-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/content-replace-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/content-replace-plugin/deployments", + "created_at": "2018-08-10T15:45:04Z", + "updated_at": "2019-08-21T01:45:28Z", + "pushed_at": "2019-08-20T04:52:31Z", + "git_url": "git://github.com/jenkinsci/content-replace-plugin.git", + "ssh_url": "git@github.com:jenkinsci/content-replace-plugin.git", + "clone_url": "https://github.com/jenkinsci/content-replace-plugin.git", + "svn_url": "https://github.com/jenkinsci/content-replace-plugin", + "homepage": null, + "size": 36, + "stargazers_count": 12, + "watchers_count": 12, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 3, + "open_issues": 1, + "watchers": 12, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 144305195, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDQzMDUxOTU=", + "name": "google-chat-notification-plugin", + "full_name": "jenkinsci/google-chat-notification-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/google-chat-notification-plugin", + "description": "Google Chat Notification Jenkins Plugin to send build status", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/google-chat-notification-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/google-chat-notification-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/google-chat-notification-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/google-chat-notification-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/google-chat-notification-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/google-chat-notification-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/google-chat-notification-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/google-chat-notification-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/google-chat-notification-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/google-chat-notification-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/google-chat-notification-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/google-chat-notification-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/google-chat-notification-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/google-chat-notification-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/google-chat-notification-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/google-chat-notification-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/google-chat-notification-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/google-chat-notification-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/google-chat-notification-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/google-chat-notification-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/google-chat-notification-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/google-chat-notification-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/google-chat-notification-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/google-chat-notification-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/google-chat-notification-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/google-chat-notification-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/google-chat-notification-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/google-chat-notification-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/google-chat-notification-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/google-chat-notification-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/google-chat-notification-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/google-chat-notification-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/google-chat-notification-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/google-chat-notification-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/google-chat-notification-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/google-chat-notification-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/google-chat-notification-plugin/deployments", + "created_at": "2018-08-10T15:45:44Z", + "updated_at": "2019-09-26T15:50:56Z", + "pushed_at": "2019-10-16T10:32:43Z", + "git_url": "git://github.com/jenkinsci/google-chat-notification-plugin.git", + "ssh_url": "git@github.com:jenkinsci/google-chat-notification-plugin.git", + "clone_url": "https://github.com/jenkinsci/google-chat-notification-plugin.git", + "svn_url": "https://github.com/jenkinsci/google-chat-notification-plugin", + "homepage": null, + "size": 743, + "stargazers_count": 12, + "watchers_count": 12, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 12, + "license": null, + "forks": 6, + "open_issues": 12, + "watchers": 12, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/__files/organizations_107424_repos-e66682bb-4a55-4cf9-9092-9c3aaf6dc915.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/__files/organizations_107424_repos-e66682bb-4a55-4cf9-9092-9c3aaf6dc915.json new file mode 100644 index 0000000000..b81f387e4e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/__files/organizations_107424_repos-e66682bb-4a55-4cf9-9092-9c3aaf6dc915.json @@ -0,0 +1,10232 @@ +[ + { + "id": 55185768, + "node_id": "MDEwOlJlcG9zaXRvcnk1NTE4NTc2OA==", + "name": "cucumber-living-documentation-plugin", + "full_name": "jenkinsci/cucumber-living-documentation-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/cucumber-living-documentation-plugin", + "description": "https://wiki.jenkins-ci.org/display/JENKINS/Cucumber+Living+Documentation+Plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/cucumber-living-documentation-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/cucumber-living-documentation-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/cucumber-living-documentation-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/cucumber-living-documentation-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/cucumber-living-documentation-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/cucumber-living-documentation-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/cucumber-living-documentation-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/cucumber-living-documentation-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/cucumber-living-documentation-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/cucumber-living-documentation-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/cucumber-living-documentation-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/cucumber-living-documentation-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/cucumber-living-documentation-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/cucumber-living-documentation-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/cucumber-living-documentation-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/cucumber-living-documentation-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/cucumber-living-documentation-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/cucumber-living-documentation-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/cucumber-living-documentation-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/cucumber-living-documentation-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/cucumber-living-documentation-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/cucumber-living-documentation-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/cucumber-living-documentation-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/cucumber-living-documentation-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/cucumber-living-documentation-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/cucumber-living-documentation-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/cucumber-living-documentation-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/cucumber-living-documentation-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/cucumber-living-documentation-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/cucumber-living-documentation-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/cucumber-living-documentation-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/cucumber-living-documentation-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/cucumber-living-documentation-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/cucumber-living-documentation-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/cucumber-living-documentation-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/cucumber-living-documentation-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/cucumber-living-documentation-plugin/deployments", + "created_at": "2016-03-31T21:59:45Z", + "updated_at": "2019-02-10T15:55:39Z", + "pushed_at": "2019-02-10T15:55:37Z", + "git_url": "git://github.com/jenkinsci/cucumber-living-documentation-plugin.git", + "ssh_url": "git@github.com:jenkinsci/cucumber-living-documentation-plugin.git", + "clone_url": "https://github.com/jenkinsci/cucumber-living-documentation-plugin.git", + "svn_url": "https://github.com/jenkinsci/cucumber-living-documentation-plugin", + "homepage": "", + "size": 20626, + "stargazers_count": 12, + "watchers_count": 12, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 12, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 12, + "open_issues": 0, + "watchers": 12, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 55186378, + "node_id": "MDEwOlJlcG9zaXRvcnk1NTE4NjM3OA==", + "name": "quality-gates-plugin", + "full_name": "jenkinsci/quality-gates-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/quality-gates-plugin", + "description": "Jenkins plugin that fails the build if the predefined sonar quality gates are not green.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/quality-gates-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/quality-gates-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/quality-gates-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/quality-gates-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/quality-gates-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/quality-gates-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/quality-gates-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/quality-gates-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/quality-gates-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/quality-gates-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/quality-gates-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/quality-gates-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/quality-gates-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/quality-gates-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/quality-gates-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/quality-gates-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/quality-gates-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/quality-gates-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/quality-gates-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/quality-gates-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/quality-gates-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/quality-gates-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/quality-gates-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/quality-gates-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/quality-gates-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/quality-gates-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/quality-gates-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/quality-gates-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/quality-gates-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/quality-gates-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/quality-gates-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/quality-gates-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/quality-gates-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/quality-gates-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/quality-gates-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/quality-gates-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/quality-gates-plugin/deployments", + "created_at": "2016-03-31T22:12:32Z", + "updated_at": "2019-08-20T21:18:53Z", + "pushed_at": "2018-07-26T07:25:18Z", + "git_url": "git://github.com/jenkinsci/quality-gates-plugin.git", + "ssh_url": "git@github.com:jenkinsci/quality-gates-plugin.git", + "clone_url": "https://github.com/jenkinsci/quality-gates-plugin.git", + "svn_url": "https://github.com/jenkinsci/quality-gates-plugin", + "homepage": null, + "size": 151, + "stargazers_count": 13, + "watchers_count": 13, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 38, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": null, + "forks": 38, + "open_issues": 3, + "watchers": 13, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 55448566, + "node_id": "MDEwOlJlcG9zaXRvcnk1NTQ0ODU2Ng==", + "name": "workflow-step-api-plugin", + "full_name": "jenkinsci/workflow-step-api-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/workflow-step-api-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/workflow-step-api-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/workflow-step-api-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/workflow-step-api-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/workflow-step-api-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/workflow-step-api-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/workflow-step-api-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/workflow-step-api-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/workflow-step-api-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/workflow-step-api-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/workflow-step-api-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/workflow-step-api-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/workflow-step-api-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/workflow-step-api-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/workflow-step-api-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/workflow-step-api-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/workflow-step-api-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/workflow-step-api-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/workflow-step-api-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/workflow-step-api-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/workflow-step-api-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/workflow-step-api-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/workflow-step-api-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/workflow-step-api-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/workflow-step-api-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/workflow-step-api-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/workflow-step-api-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/workflow-step-api-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/workflow-step-api-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/workflow-step-api-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/workflow-step-api-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/workflow-step-api-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/workflow-step-api-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/workflow-step-api-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/workflow-step-api-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/workflow-step-api-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/workflow-step-api-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/workflow-step-api-plugin/deployments", + "created_at": "2016-04-04T22:01:51Z", + "updated_at": "2019-07-28T11:49:49Z", + "pushed_at": "2019-10-04T20:11:53Z", + "git_url": "git://github.com/jenkinsci/workflow-step-api-plugin.git", + "ssh_url": "git@github.com:jenkinsci/workflow-step-api-plugin.git", + "clone_url": "https://github.com/jenkinsci/workflow-step-api-plugin.git", + "svn_url": "https://github.com/jenkinsci/workflow-step-api-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Pipeline+Step+API+Plugin", + "size": 496, + "stargazers_count": 29, + "watchers_count": 29, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 34, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 6, + "license": null, + "forks": 34, + "open_issues": 6, + "watchers": 29, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 55527408, + "node_id": "MDEwOlJlcG9zaXRvcnk1NTUyNzQwOA==", + "name": "workflow-api-plugin", + "full_name": "jenkinsci/workflow-api-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/workflow-api-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/workflow-api-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/workflow-api-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/workflow-api-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/workflow-api-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/workflow-api-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/workflow-api-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/workflow-api-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/workflow-api-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/workflow-api-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/workflow-api-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/workflow-api-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/workflow-api-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/workflow-api-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/workflow-api-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/workflow-api-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/workflow-api-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/workflow-api-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/workflow-api-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/workflow-api-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/workflow-api-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/workflow-api-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/workflow-api-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/workflow-api-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/workflow-api-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/workflow-api-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/workflow-api-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/workflow-api-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/workflow-api-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/workflow-api-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/workflow-api-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/workflow-api-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/workflow-api-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/workflow-api-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/workflow-api-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/workflow-api-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/workflow-api-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/workflow-api-plugin/deployments", + "created_at": "2016-04-05T17:18:43Z", + "updated_at": "2019-10-16T01:56:35Z", + "pushed_at": "2019-10-16T02:05:36Z", + "git_url": "git://github.com/jenkinsci/workflow-api-plugin.git", + "ssh_url": "git@github.com:jenkinsci/workflow-api-plugin.git", + "clone_url": "https://github.com/jenkinsci/workflow-api-plugin.git", + "svn_url": "https://github.com/jenkinsci/workflow-api-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Pipeline+API+Plugin", + "size": 1117, + "stargazers_count": 11, + "watchers_count": 11, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 42, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 12, + "license": null, + "forks": 42, + "open_issues": 12, + "watchers": 11, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 55541308, + "node_id": "MDEwOlJlcG9zaXRvcnk1NTU0MTMwOA==", + "name": "workflow-support-plugin", + "full_name": "jenkinsci/workflow-support-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/workflow-support-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/workflow-support-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/workflow-support-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/workflow-support-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/workflow-support-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/workflow-support-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/workflow-support-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/workflow-support-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/workflow-support-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/workflow-support-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/workflow-support-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/workflow-support-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/workflow-support-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/workflow-support-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/workflow-support-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/workflow-support-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/workflow-support-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/workflow-support-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/workflow-support-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/workflow-support-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/workflow-support-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/workflow-support-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/workflow-support-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/workflow-support-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/workflow-support-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/workflow-support-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/workflow-support-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/workflow-support-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/workflow-support-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/workflow-support-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/workflow-support-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/workflow-support-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/workflow-support-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/workflow-support-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/workflow-support-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/workflow-support-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/workflow-support-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/workflow-support-plugin/deployments", + "created_at": "2016-04-05T19:59:11Z", + "updated_at": "2019-06-20T06:58:01Z", + "pushed_at": "2019-09-06T13:43:43Z", + "git_url": "git://github.com/jenkinsci/workflow-support-plugin.git", + "ssh_url": "git@github.com:jenkinsci/workflow-support-plugin.git", + "clone_url": "https://github.com/jenkinsci/workflow-support-plugin.git", + "svn_url": "https://github.com/jenkinsci/workflow-support-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Pipeline+Supporting+APIs+Plugin", + "size": 705, + "stargazers_count": 10, + "watchers_count": 10, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 48, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 6, + "license": null, + "forks": 48, + "open_issues": 6, + "watchers": 10, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 55541978, + "node_id": "MDEwOlJlcG9zaXRvcnk1NTU0MTk3OA==", + "name": "workflow-basic-steps-plugin", + "full_name": "jenkinsci/workflow-basic-steps-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/workflow-basic-steps-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/workflow-basic-steps-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/workflow-basic-steps-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/workflow-basic-steps-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/workflow-basic-steps-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/workflow-basic-steps-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/workflow-basic-steps-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/workflow-basic-steps-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/workflow-basic-steps-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/workflow-basic-steps-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/workflow-basic-steps-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/workflow-basic-steps-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/workflow-basic-steps-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/workflow-basic-steps-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/workflow-basic-steps-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/workflow-basic-steps-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/workflow-basic-steps-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/workflow-basic-steps-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/workflow-basic-steps-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/workflow-basic-steps-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/workflow-basic-steps-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/workflow-basic-steps-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/workflow-basic-steps-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/workflow-basic-steps-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/workflow-basic-steps-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/workflow-basic-steps-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/workflow-basic-steps-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/workflow-basic-steps-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/workflow-basic-steps-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/workflow-basic-steps-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/workflow-basic-steps-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/workflow-basic-steps-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/workflow-basic-steps-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/workflow-basic-steps-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/workflow-basic-steps-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/workflow-basic-steps-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/workflow-basic-steps-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/workflow-basic-steps-plugin/deployments", + "created_at": "2016-04-05T20:09:34Z", + "updated_at": "2019-08-05T17:03:01Z", + "pushed_at": "2019-10-01T20:39:39Z", + "git_url": "git://github.com/jenkinsci/workflow-basic-steps-plugin.git", + "ssh_url": "git@github.com:jenkinsci/workflow-basic-steps-plugin.git", + "clone_url": "https://github.com/jenkinsci/workflow-basic-steps-plugin.git", + "svn_url": "https://github.com/jenkinsci/workflow-basic-steps-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Pipeline+Basic+Steps+Plugin", + "size": 847, + "stargazers_count": 28, + "watchers_count": 28, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 79, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 14, + "license": null, + "forks": 79, + "open_issues": 14, + "watchers": 28, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 55542559, + "node_id": "MDEwOlJlcG9zaXRvcnk1NTU0MjU1OQ==", + "name": "workflow-durable-task-step-plugin", + "full_name": "jenkinsci/workflow-durable-task-step-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/workflow-durable-task-step-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/workflow-durable-task-step-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/workflow-durable-task-step-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/workflow-durable-task-step-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/workflow-durable-task-step-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/workflow-durable-task-step-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/workflow-durable-task-step-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/workflow-durable-task-step-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/workflow-durable-task-step-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/workflow-durable-task-step-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/workflow-durable-task-step-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/workflow-durable-task-step-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/workflow-durable-task-step-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/workflow-durable-task-step-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/workflow-durable-task-step-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/workflow-durable-task-step-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/workflow-durable-task-step-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/workflow-durable-task-step-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/workflow-durable-task-step-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/workflow-durable-task-step-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/workflow-durable-task-step-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/workflow-durable-task-step-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/workflow-durable-task-step-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/workflow-durable-task-step-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/workflow-durable-task-step-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/workflow-durable-task-step-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/workflow-durable-task-step-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/workflow-durable-task-step-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/workflow-durable-task-step-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/workflow-durable-task-step-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/workflow-durable-task-step-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/workflow-durable-task-step-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/workflow-durable-task-step-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/workflow-durable-task-step-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/workflow-durable-task-step-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/workflow-durable-task-step-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/workflow-durable-task-step-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/workflow-durable-task-step-plugin/deployments", + "created_at": "2016-04-05T20:14:38Z", + "updated_at": "2019-10-06T05:02:37Z", + "pushed_at": "2019-10-25T22:17:47Z", + "git_url": "git://github.com/jenkinsci/workflow-durable-task-step-plugin.git", + "ssh_url": "git@github.com:jenkinsci/workflow-durable-task-step-plugin.git", + "clone_url": "https://github.com/jenkinsci/workflow-durable-task-step-plugin.git", + "svn_url": "https://github.com/jenkinsci/workflow-durable-task-step-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Pipeline+Nodes+and+Processes+Plugin", + "size": 1197, + "stargazers_count": 19, + "watchers_count": 19, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 62, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 14, + "license": null, + "forks": 62, + "open_issues": 14, + "watchers": 19, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 55542776, + "node_id": "MDEwOlJlcG9zaXRvcnk1NTU0Mjc3Ng==", + "name": "workflow-scm-step-plugin", + "full_name": "jenkinsci/workflow-scm-step-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/workflow-scm-step-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/workflow-scm-step-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/workflow-scm-step-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/workflow-scm-step-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/workflow-scm-step-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/workflow-scm-step-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/workflow-scm-step-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/workflow-scm-step-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/workflow-scm-step-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/workflow-scm-step-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/workflow-scm-step-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/workflow-scm-step-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/workflow-scm-step-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/workflow-scm-step-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/workflow-scm-step-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/workflow-scm-step-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/workflow-scm-step-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/workflow-scm-step-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/workflow-scm-step-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/workflow-scm-step-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/workflow-scm-step-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/workflow-scm-step-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/workflow-scm-step-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/workflow-scm-step-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/workflow-scm-step-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/workflow-scm-step-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/workflow-scm-step-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/workflow-scm-step-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/workflow-scm-step-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/workflow-scm-step-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/workflow-scm-step-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/workflow-scm-step-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/workflow-scm-step-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/workflow-scm-step-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/workflow-scm-step-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/workflow-scm-step-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/workflow-scm-step-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/workflow-scm-step-plugin/deployments", + "created_at": "2016-04-05T20:17:50Z", + "updated_at": "2019-07-02T10:36:13Z", + "pushed_at": "2019-09-16T17:48:35Z", + "git_url": "git://github.com/jenkinsci/workflow-scm-step-plugin.git", + "ssh_url": "git@github.com:jenkinsci/workflow-scm-step-plugin.git", + "clone_url": "https://github.com/jenkinsci/workflow-scm-step-plugin.git", + "svn_url": "https://github.com/jenkinsci/workflow-scm-step-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Pipeline+SCM+Step+Plugin", + "size": 265, + "stargazers_count": 24, + "watchers_count": 24, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 51, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 4, + "license": null, + "forks": 51, + "open_issues": 4, + "watchers": 24, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 55542861, + "node_id": "MDEwOlJlcG9zaXRvcnk1NTU0Mjg2MQ==", + "name": "pipeline-build-step-plugin", + "full_name": "jenkinsci/pipeline-build-step-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pipeline-build-step-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/pipeline-build-step-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pipeline-build-step-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pipeline-build-step-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pipeline-build-step-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pipeline-build-step-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pipeline-build-step-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pipeline-build-step-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pipeline-build-step-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pipeline-build-step-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pipeline-build-step-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pipeline-build-step-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pipeline-build-step-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pipeline-build-step-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pipeline-build-step-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pipeline-build-step-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pipeline-build-step-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pipeline-build-step-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pipeline-build-step-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pipeline-build-step-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pipeline-build-step-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pipeline-build-step-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pipeline-build-step-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pipeline-build-step-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pipeline-build-step-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pipeline-build-step-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pipeline-build-step-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pipeline-build-step-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pipeline-build-step-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pipeline-build-step-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pipeline-build-step-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pipeline-build-step-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pipeline-build-step-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pipeline-build-step-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pipeline-build-step-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pipeline-build-step-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pipeline-build-step-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pipeline-build-step-plugin/deployments", + "created_at": "2016-04-05T20:19:05Z", + "updated_at": "2019-07-22T13:21:55Z", + "pushed_at": "2019-10-09T08:18:17Z", + "git_url": "git://github.com/jenkinsci/pipeline-build-step-plugin.git", + "ssh_url": "git@github.com:jenkinsci/pipeline-build-step-plugin.git", + "clone_url": "https://github.com/jenkinsci/pipeline-build-step-plugin.git", + "svn_url": "https://github.com/jenkinsci/pipeline-build-step-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Pipeline+Build+Step+Plugin", + "size": 381, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 33, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 10, + "license": null, + "forks": 33, + "open_issues": 10, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 55543019, + "node_id": "MDEwOlJlcG9zaXRvcnk1NTU0MzAxOQ==", + "name": "pipeline-input-step-plugin", + "full_name": "jenkinsci/pipeline-input-step-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pipeline-input-step-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/pipeline-input-step-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pipeline-input-step-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pipeline-input-step-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pipeline-input-step-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pipeline-input-step-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pipeline-input-step-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pipeline-input-step-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pipeline-input-step-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pipeline-input-step-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pipeline-input-step-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pipeline-input-step-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pipeline-input-step-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pipeline-input-step-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pipeline-input-step-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pipeline-input-step-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pipeline-input-step-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pipeline-input-step-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pipeline-input-step-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pipeline-input-step-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pipeline-input-step-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pipeline-input-step-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pipeline-input-step-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pipeline-input-step-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pipeline-input-step-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pipeline-input-step-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pipeline-input-step-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pipeline-input-step-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pipeline-input-step-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pipeline-input-step-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pipeline-input-step-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pipeline-input-step-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pipeline-input-step-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pipeline-input-step-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pipeline-input-step-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pipeline-input-step-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pipeline-input-step-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pipeline-input-step-plugin/deployments", + "created_at": "2016-04-05T20:21:30Z", + "updated_at": "2019-09-10T15:06:59Z", + "pushed_at": "2019-09-27T01:10:02Z", + "git_url": "git://github.com/jenkinsci/pipeline-input-step-plugin.git", + "ssh_url": "git@github.com:jenkinsci/pipeline-input-step-plugin.git", + "clone_url": "https://github.com/jenkinsci/pipeline-input-step-plugin.git", + "svn_url": "https://github.com/jenkinsci/pipeline-input-step-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Pipeline+Input+Step+Plugin", + "size": 331, + "stargazers_count": 8, + "watchers_count": 8, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 32, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 7, + "license": null, + "forks": 32, + "open_issues": 7, + "watchers": 8, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 55543130, + "node_id": "MDEwOlJlcG9zaXRvcnk1NTU0MzEzMA==", + "name": "pipeline-stage-step-plugin", + "full_name": "jenkinsci/pipeline-stage-step-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pipeline-stage-step-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/pipeline-stage-step-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pipeline-stage-step-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pipeline-stage-step-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pipeline-stage-step-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pipeline-stage-step-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pipeline-stage-step-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pipeline-stage-step-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pipeline-stage-step-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pipeline-stage-step-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pipeline-stage-step-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pipeline-stage-step-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pipeline-stage-step-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pipeline-stage-step-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pipeline-stage-step-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pipeline-stage-step-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pipeline-stage-step-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pipeline-stage-step-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pipeline-stage-step-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pipeline-stage-step-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pipeline-stage-step-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pipeline-stage-step-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pipeline-stage-step-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pipeline-stage-step-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pipeline-stage-step-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pipeline-stage-step-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pipeline-stage-step-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pipeline-stage-step-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pipeline-stage-step-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pipeline-stage-step-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pipeline-stage-step-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pipeline-stage-step-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pipeline-stage-step-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pipeline-stage-step-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pipeline-stage-step-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pipeline-stage-step-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pipeline-stage-step-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pipeline-stage-step-plugin/deployments", + "created_at": "2016-04-05T20:23:10Z", + "updated_at": "2019-07-22T13:20:41Z", + "pushed_at": "2019-09-16T17:04:15Z", + "git_url": "git://github.com/jenkinsci/pipeline-stage-step-plugin.git", + "ssh_url": "git@github.com:jenkinsci/pipeline-stage-step-plugin.git", + "clone_url": "https://github.com/jenkinsci/pipeline-stage-step-plugin.git", + "svn_url": "https://github.com/jenkinsci/pipeline-stage-step-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Pipeline+Stage+Step+Plugin", + "size": 166, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 22, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 22, + "open_issues": 1, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 55543225, + "node_id": "MDEwOlJlcG9zaXRvcnk1NTU0MzIyNQ==", + "name": "workflow-cps-plugin", + "full_name": "jenkinsci/workflow-cps-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/workflow-cps-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/workflow-cps-plugin/deployments", + "created_at": "2016-04-05T20:24:40Z", + "updated_at": "2019-10-04T07:26:30Z", + "pushed_at": "2019-10-15T04:13:40Z", + "git_url": "git://github.com/jenkinsci/workflow-cps-plugin.git", + "ssh_url": "git@github.com:jenkinsci/workflow-cps-plugin.git", + "clone_url": "https://github.com/jenkinsci/workflow-cps-plugin.git", + "svn_url": "https://github.com/jenkinsci/workflow-cps-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Pipeline+Groovy+Plugin", + "size": 3452, + "stargazers_count": 87, + "watchers_count": 87, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 137, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 22, + "license": null, + "forks": 137, + "open_issues": 22, + "watchers": 87, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 55543389, + "node_id": "MDEwOlJlcG9zaXRvcnk1NTU0MzM4OQ==", + "name": "workflow-job-plugin", + "full_name": "jenkinsci/workflow-job-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/workflow-job-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/workflow-job-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/workflow-job-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/workflow-job-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/workflow-job-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/workflow-job-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/workflow-job-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/workflow-job-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/workflow-job-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/workflow-job-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/workflow-job-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/workflow-job-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/workflow-job-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/workflow-job-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/workflow-job-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/workflow-job-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/workflow-job-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/workflow-job-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/workflow-job-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/workflow-job-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/workflow-job-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/workflow-job-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/workflow-job-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/workflow-job-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/workflow-job-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/workflow-job-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/workflow-job-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/workflow-job-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/workflow-job-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/workflow-job-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/workflow-job-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/workflow-job-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/workflow-job-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/workflow-job-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/workflow-job-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/workflow-job-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/workflow-job-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/workflow-job-plugin/deployments", + "created_at": "2016-04-05T20:27:07Z", + "updated_at": "2019-10-12T17:47:12Z", + "pushed_at": "2019-10-10T12:06:57Z", + "git_url": "git://github.com/jenkinsci/workflow-job-plugin.git", + "ssh_url": "git@github.com:jenkinsci/workflow-job-plugin.git", + "clone_url": "https://github.com/jenkinsci/workflow-job-plugin.git", + "svn_url": "https://github.com/jenkinsci/workflow-job-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Pipeline+Job+Plugin", + "size": 1150, + "stargazers_count": 17, + "watchers_count": 17, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 76, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 5, + "license": null, + "forks": 76, + "open_issues": 5, + "watchers": 17, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 55543467, + "node_id": "MDEwOlJlcG9zaXRvcnk1NTU0MzQ2Nw==", + "name": "workflow-multibranch-plugin", + "full_name": "jenkinsci/workflow-multibranch-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/workflow-multibranch-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/workflow-multibranch-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/workflow-multibranch-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/workflow-multibranch-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/workflow-multibranch-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/workflow-multibranch-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/workflow-multibranch-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/workflow-multibranch-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/workflow-multibranch-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/workflow-multibranch-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/workflow-multibranch-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/workflow-multibranch-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/workflow-multibranch-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/workflow-multibranch-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/workflow-multibranch-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/workflow-multibranch-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/workflow-multibranch-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/workflow-multibranch-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/workflow-multibranch-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/workflow-multibranch-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/workflow-multibranch-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/workflow-multibranch-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/workflow-multibranch-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/workflow-multibranch-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/workflow-multibranch-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/workflow-multibranch-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/workflow-multibranch-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/workflow-multibranch-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/workflow-multibranch-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/workflow-multibranch-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/workflow-multibranch-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/workflow-multibranch-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/workflow-multibranch-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/workflow-multibranch-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/workflow-multibranch-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/workflow-multibranch-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/workflow-multibranch-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/workflow-multibranch-plugin/deployments", + "created_at": "2016-04-05T20:28:20Z", + "updated_at": "2019-09-05T03:51:52Z", + "pushed_at": "2019-08-16T11:25:23Z", + "git_url": "git://github.com/jenkinsci/workflow-multibranch-plugin.git", + "ssh_url": "git@github.com:jenkinsci/workflow-multibranch-plugin.git", + "clone_url": "https://github.com/jenkinsci/workflow-multibranch-plugin.git", + "svn_url": "https://github.com/jenkinsci/workflow-multibranch-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Pipeline+Multibranch+Plugin", + "size": 642, + "stargazers_count": 48, + "watchers_count": 48, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 82, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 5, + "license": null, + "forks": 82, + "open_issues": 5, + "watchers": 48, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 55543575, + "node_id": "MDEwOlJlcG9zaXRvcnk1NTU0MzU3NQ==", + "name": "workflow-cps-global-lib-plugin", + "full_name": "jenkinsci/workflow-cps-global-lib-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/workflow-cps-global-lib-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/workflow-cps-global-lib-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/workflow-cps-global-lib-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/workflow-cps-global-lib-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/workflow-cps-global-lib-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/workflow-cps-global-lib-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/workflow-cps-global-lib-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/workflow-cps-global-lib-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/workflow-cps-global-lib-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/workflow-cps-global-lib-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/workflow-cps-global-lib-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/workflow-cps-global-lib-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/workflow-cps-global-lib-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/workflow-cps-global-lib-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/workflow-cps-global-lib-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/workflow-cps-global-lib-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/workflow-cps-global-lib-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/workflow-cps-global-lib-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/workflow-cps-global-lib-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/workflow-cps-global-lib-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/workflow-cps-global-lib-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/workflow-cps-global-lib-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/workflow-cps-global-lib-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/workflow-cps-global-lib-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/workflow-cps-global-lib-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/workflow-cps-global-lib-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/workflow-cps-global-lib-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/workflow-cps-global-lib-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/workflow-cps-global-lib-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/workflow-cps-global-lib-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/workflow-cps-global-lib-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/workflow-cps-global-lib-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/workflow-cps-global-lib-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/workflow-cps-global-lib-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/workflow-cps-global-lib-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/workflow-cps-global-lib-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/workflow-cps-global-lib-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/workflow-cps-global-lib-plugin/deployments", + "created_at": "2016-04-05T20:29:45Z", + "updated_at": "2019-10-11T10:49:11Z", + "pushed_at": "2019-10-04T13:32:38Z", + "git_url": "git://github.com/jenkinsci/workflow-cps-global-lib-plugin.git", + "ssh_url": "git@github.com:jenkinsci/workflow-cps-global-lib-plugin.git", + "clone_url": "https://github.com/jenkinsci/workflow-cps-global-lib-plugin.git", + "svn_url": "https://github.com/jenkinsci/workflow-cps-global-lib-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Pipeline+Shared+Groovy+Libraries+Plugin", + "size": 511, + "stargazers_count": 174, + "watchers_count": 174, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 109, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 18, + "license": null, + "forks": 109, + "open_issues": 18, + "watchers": 174, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 55543660, + "node_id": "MDEwOlJlcG9zaXRvcnk1NTU0MzY2MA==", + "name": "workflow-aggregator-plugin", + "full_name": "jenkinsci/workflow-aggregator-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/workflow-aggregator-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/workflow-aggregator-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/workflow-aggregator-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/workflow-aggregator-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/workflow-aggregator-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/workflow-aggregator-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/workflow-aggregator-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/workflow-aggregator-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/workflow-aggregator-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/workflow-aggregator-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/workflow-aggregator-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/workflow-aggregator-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/workflow-aggregator-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/workflow-aggregator-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/workflow-aggregator-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/workflow-aggregator-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/workflow-aggregator-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/workflow-aggregator-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/workflow-aggregator-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/workflow-aggregator-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/workflow-aggregator-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/workflow-aggregator-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/workflow-aggregator-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/workflow-aggregator-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/workflow-aggregator-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/workflow-aggregator-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/workflow-aggregator-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/workflow-aggregator-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/workflow-aggregator-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/workflow-aggregator-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/workflow-aggregator-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/workflow-aggregator-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/workflow-aggregator-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/workflow-aggregator-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/workflow-aggregator-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/workflow-aggregator-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/workflow-aggregator-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/workflow-aggregator-plugin/deployments", + "created_at": "2016-04-05T20:30:59Z", + "updated_at": "2019-10-11T07:24:10Z", + "pushed_at": "2019-08-18T19:35:02Z", + "git_url": "git://github.com/jenkinsci/workflow-aggregator-plugin.git", + "ssh_url": "git@github.com:jenkinsci/workflow-aggregator-plugin.git", + "clone_url": "https://github.com/jenkinsci/workflow-aggregator-plugin.git", + "svn_url": "https://github.com/jenkinsci/workflow-aggregator-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Pipeline+Plugin", + "size": 286, + "stargazers_count": 187, + "watchers_count": 187, + "language": "Shell", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 101, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 7, + "license": null, + "forks": 101, + "open_issues": 7, + "watchers": 187, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 55969725, + "node_id": "MDEwOlJlcG9zaXRvcnk1NTk2OTcyNQ==", + "name": "pipeline-milestone-step-plugin", + "full_name": "jenkinsci/pipeline-milestone-step-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pipeline-milestone-step-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/pipeline-milestone-step-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pipeline-milestone-step-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pipeline-milestone-step-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pipeline-milestone-step-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pipeline-milestone-step-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pipeline-milestone-step-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pipeline-milestone-step-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pipeline-milestone-step-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pipeline-milestone-step-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pipeline-milestone-step-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pipeline-milestone-step-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pipeline-milestone-step-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pipeline-milestone-step-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pipeline-milestone-step-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pipeline-milestone-step-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pipeline-milestone-step-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pipeline-milestone-step-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pipeline-milestone-step-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pipeline-milestone-step-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pipeline-milestone-step-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pipeline-milestone-step-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pipeline-milestone-step-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pipeline-milestone-step-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pipeline-milestone-step-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pipeline-milestone-step-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pipeline-milestone-step-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pipeline-milestone-step-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pipeline-milestone-step-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pipeline-milestone-step-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pipeline-milestone-step-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pipeline-milestone-step-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pipeline-milestone-step-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pipeline-milestone-step-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pipeline-milestone-step-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pipeline-milestone-step-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pipeline-milestone-step-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pipeline-milestone-step-plugin/deployments", + "created_at": "2016-04-11T12:20:09Z", + "updated_at": "2019-05-06T13:06:03Z", + "pushed_at": "2019-09-16T16:19:38Z", + "git_url": "git://github.com/jenkinsci/pipeline-milestone-step-plugin.git", + "ssh_url": "git@github.com:jenkinsci/pipeline-milestone-step-plugin.git", + "clone_url": "https://github.com/jenkinsci/pipeline-milestone-step-plugin.git", + "svn_url": "https://github.com/jenkinsci/pipeline-milestone-step-plugin", + "homepage": "", + "size": 60, + "stargazers_count": 7, + "watchers_count": 7, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 21, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 6, + "license": null, + "forks": 21, + "open_issues": 6, + "watchers": 7, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 55977917, + "node_id": "MDEwOlJlcG9zaXRvcnk1NTk3NzkxNw==", + "name": "hp-quality-center-plugin", + "full_name": "jenkinsci/hp-quality-center-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/hp-quality-center-plugin", + "description": "HP ALM Quality Center Plugin for Jenkins", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/hp-quality-center-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/hp-quality-center-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/hp-quality-center-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/hp-quality-center-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/hp-quality-center-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/hp-quality-center-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/hp-quality-center-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/hp-quality-center-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/hp-quality-center-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/hp-quality-center-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/hp-quality-center-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/hp-quality-center-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/hp-quality-center-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/hp-quality-center-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/hp-quality-center-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/hp-quality-center-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/hp-quality-center-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/hp-quality-center-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/hp-quality-center-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/hp-quality-center-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/hp-quality-center-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/hp-quality-center-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/hp-quality-center-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/hp-quality-center-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/hp-quality-center-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/hp-quality-center-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/hp-quality-center-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/hp-quality-center-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/hp-quality-center-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/hp-quality-center-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/hp-quality-center-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/hp-quality-center-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/hp-quality-center-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/hp-quality-center-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/hp-quality-center-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/hp-quality-center-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/hp-quality-center-plugin/deployments", + "created_at": "2016-04-11T14:11:02Z", + "updated_at": "2017-10-17T11:27:10Z", + "pushed_at": "2019-10-08T16:24:10Z", + "git_url": "git://github.com/jenkinsci/hp-quality-center-plugin.git", + "ssh_url": "git@github.com:jenkinsci/hp-quality-center-plugin.git", + "clone_url": "https://github.com/jenkinsci/hp-quality-center-plugin.git", + "svn_url": "https://github.com/jenkinsci/hp-quality-center-plugin", + "homepage": null, + "size": 43, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "lgpl-3.0", + "name": "GNU Lesser General Public License v3.0", + "spdx_id": "LGPL-3.0", + "url": "https://api.github.com/licenses/lgpl-3.0", + "node_id": "MDc6TGljZW5zZTEy" + }, + "forks": 3, + "open_issues": 1, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 55985064, + "node_id": "MDEwOlJlcG9zaXRvcnk1NTk4NTA2NA==", + "name": "file-operations-plugin", + "full_name": "jenkinsci/file-operations-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/file-operations-plugin", + "description": "File Operations as Build Step in Jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/file-operations-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/file-operations-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/file-operations-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/file-operations-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/file-operations-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/file-operations-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/file-operations-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/file-operations-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/file-operations-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/file-operations-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/file-operations-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/file-operations-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/file-operations-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/file-operations-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/file-operations-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/file-operations-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/file-operations-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/file-operations-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/file-operations-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/file-operations-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/file-operations-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/file-operations-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/file-operations-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/file-operations-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/file-operations-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/file-operations-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/file-operations-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/file-operations-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/file-operations-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/file-operations-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/file-operations-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/file-operations-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/file-operations-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/file-operations-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/file-operations-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/file-operations-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/file-operations-plugin/deployments", + "created_at": "2016-04-11T15:36:47Z", + "updated_at": "2019-10-17T01:50:47Z", + "pushed_at": "2018-11-04T17:41:11Z", + "git_url": "git://github.com/jenkinsci/file-operations-plugin.git", + "ssh_url": "git@github.com:jenkinsci/file-operations-plugin.git", + "clone_url": "https://github.com/jenkinsci/file-operations-plugin.git", + "svn_url": "https://github.com/jenkinsci/file-operations-plugin", + "homepage": "", + "size": 114, + "stargazers_count": 16, + "watchers_count": 16, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 18, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 18, + "open_issues": 0, + "watchers": 16, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 56163091, + "node_id": "MDEwOlJlcG9zaXRvcnk1NjE2MzA5MQ==", + "name": "sonarqube-plugin", + "full_name": "jenkinsci/sonarqube-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/sonarqube-plugin", + "description": "Jenkins SonarQube Plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/sonarqube-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/sonarqube-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/sonarqube-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/sonarqube-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/sonarqube-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/sonarqube-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/sonarqube-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/sonarqube-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/sonarqube-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/sonarqube-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/sonarqube-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/sonarqube-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/sonarqube-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/sonarqube-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/sonarqube-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/sonarqube-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/sonarqube-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/sonarqube-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/sonarqube-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/sonarqube-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/sonarqube-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/sonarqube-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/sonarqube-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/sonarqube-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/sonarqube-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/sonarqube-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/sonarqube-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/sonarqube-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/sonarqube-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/sonarqube-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/sonarqube-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/sonarqube-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/sonarqube-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/sonarqube-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/sonarqube-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/sonarqube-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/sonarqube-plugin/deployments", + "created_at": "2016-04-13T15:17:32Z", + "updated_at": "2019-10-24T01:25:56Z", + "pushed_at": "2019-10-22T12:23:48Z", + "git_url": "git://github.com/jenkinsci/sonarqube-plugin.git", + "ssh_url": "git@github.com:jenkinsci/sonarqube-plugin.git", + "clone_url": "https://github.com/jenkinsci/sonarqube-plugin.git", + "svn_url": "https://github.com/jenkinsci/sonarqube-plugin", + "homepage": "http://docs.sonarqube.org/display/PLUG/Jenkins+Plugin", + "size": 1445, + "stargazers_count": 29, + "watchers_count": 29, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 26, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 5, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 26, + "open_issues": 5, + "watchers": 29, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 56182781, + "node_id": "MDEwOlJlcG9zaXRvcnk1NjE4Mjc4MQ==", + "name": "google-deployment-manager-plugin", + "full_name": "jenkinsci/google-deployment-manager-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/google-deployment-manager-plugin", + "description": "Google Deployment Manager Jenkins Plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/google-deployment-manager-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/google-deployment-manager-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/google-deployment-manager-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/google-deployment-manager-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/google-deployment-manager-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/google-deployment-manager-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/google-deployment-manager-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/google-deployment-manager-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/google-deployment-manager-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/google-deployment-manager-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/google-deployment-manager-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/google-deployment-manager-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/google-deployment-manager-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/google-deployment-manager-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/google-deployment-manager-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/google-deployment-manager-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/google-deployment-manager-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/google-deployment-manager-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/google-deployment-manager-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/google-deployment-manager-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/google-deployment-manager-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/google-deployment-manager-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/google-deployment-manager-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/google-deployment-manager-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/google-deployment-manager-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/google-deployment-manager-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/google-deployment-manager-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/google-deployment-manager-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/google-deployment-manager-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/google-deployment-manager-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/google-deployment-manager-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/google-deployment-manager-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/google-deployment-manager-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/google-deployment-manager-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/google-deployment-manager-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/google-deployment-manager-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/google-deployment-manager-plugin/deployments", + "created_at": "2016-04-13T20:12:50Z", + "updated_at": "2018-01-10T21:51:53Z", + "pushed_at": "2016-04-18T18:33:35Z", + "git_url": "git://github.com/jenkinsci/google-deployment-manager-plugin.git", + "ssh_url": "git@github.com:jenkinsci/google-deployment-manager-plugin.git", + "clone_url": "https://github.com/jenkinsci/google-deployment-manager-plugin.git", + "svn_url": "https://github.com/jenkinsci/google-deployment-manager-plugin", + "homepage": "", + "size": 52, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 1, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 56311314, + "node_id": "MDEwOlJlcG9zaXRvcnk1NjMxMTMxNA==", + "name": "sinatra-chef-builder-plugin", + "full_name": "jenkinsci/sinatra-chef-builder-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/sinatra-chef-builder-plugin", + "description": "Chef sinatra jenkins plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/sinatra-chef-builder-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/sinatra-chef-builder-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/sinatra-chef-builder-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/sinatra-chef-builder-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/sinatra-chef-builder-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/sinatra-chef-builder-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/sinatra-chef-builder-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/sinatra-chef-builder-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/sinatra-chef-builder-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/sinatra-chef-builder-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/sinatra-chef-builder-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/sinatra-chef-builder-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/sinatra-chef-builder-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/sinatra-chef-builder-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/sinatra-chef-builder-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/sinatra-chef-builder-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/sinatra-chef-builder-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/sinatra-chef-builder-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/sinatra-chef-builder-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/sinatra-chef-builder-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/sinatra-chef-builder-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/sinatra-chef-builder-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/sinatra-chef-builder-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/sinatra-chef-builder-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/sinatra-chef-builder-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/sinatra-chef-builder-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/sinatra-chef-builder-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/sinatra-chef-builder-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/sinatra-chef-builder-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/sinatra-chef-builder-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/sinatra-chef-builder-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/sinatra-chef-builder-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/sinatra-chef-builder-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/sinatra-chef-builder-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/sinatra-chef-builder-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/sinatra-chef-builder-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/sinatra-chef-builder-plugin/deployments", + "created_at": "2016-04-15T10:14:47Z", + "updated_at": "2018-10-29T08:44:04Z", + "pushed_at": "2018-10-29T08:44:02Z", + "git_url": "git://github.com/jenkinsci/sinatra-chef-builder-plugin.git", + "ssh_url": "git@github.com:jenkinsci/sinatra-chef-builder-plugin.git", + "clone_url": "https://github.com/jenkinsci/sinatra-chef-builder-plugin.git", + "svn_url": "https://github.com/jenkinsci/sinatra-chef-builder-plugin", + "homepage": null, + "size": 71, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 56353969, + "node_id": "MDEwOlJlcG9zaXRvcnk1NjM1Mzk2OQ==", + "name": "prometheus-plugin", + "full_name": "jenkinsci/prometheus-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/prometheus-plugin", + "description": "Jenkins Prometheus Plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/prometheus-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/prometheus-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/prometheus-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/prometheus-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/prometheus-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/prometheus-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/prometheus-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/prometheus-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/prometheus-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/prometheus-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/prometheus-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/prometheus-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/prometheus-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/prometheus-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/prometheus-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/prometheus-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/prometheus-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/prometheus-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/prometheus-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/prometheus-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/prometheus-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/prometheus-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/prometheus-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/prometheus-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/prometheus-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/prometheus-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/prometheus-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/prometheus-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/prometheus-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/prometheus-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/prometheus-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/prometheus-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/prometheus-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/prometheus-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/prometheus-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/prometheus-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/prometheus-plugin/deployments", + "created_at": "2016-04-15T22:45:57Z", + "updated_at": "2019-10-25T09:51:57Z", + "pushed_at": "2019-10-16T10:05:26Z", + "git_url": "git://github.com/jenkinsci/prometheus-plugin.git", + "ssh_url": "git@github.com:jenkinsci/prometheus-plugin.git", + "clone_url": "https://github.com/jenkinsci/prometheus-plugin.git", + "svn_url": "https://github.com/jenkinsci/prometheus-plugin", + "homepage": null, + "size": 247, + "stargazers_count": 84, + "watchers_count": 84, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 64, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 11, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 64, + "open_issues": 11, + "watchers": 84, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 56359753, + "node_id": "MDEwOlJlcG9zaXRvcnk1NjM1OTc1Mw==", + "name": "imagecomparison-plugin", + "full_name": "jenkinsci/imagecomparison-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/imagecomparison-plugin", + "description": "Jenkins imagecomparison plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/imagecomparison-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/imagecomparison-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/imagecomparison-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/imagecomparison-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/imagecomparison-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/imagecomparison-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/imagecomparison-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/imagecomparison-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/imagecomparison-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/imagecomparison-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/imagecomparison-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/imagecomparison-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/imagecomparison-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/imagecomparison-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/imagecomparison-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/imagecomparison-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/imagecomparison-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/imagecomparison-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/imagecomparison-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/imagecomparison-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/imagecomparison-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/imagecomparison-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/imagecomparison-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/imagecomparison-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/imagecomparison-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/imagecomparison-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/imagecomparison-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/imagecomparison-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/imagecomparison-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/imagecomparison-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/imagecomparison-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/imagecomparison-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/imagecomparison-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/imagecomparison-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/imagecomparison-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/imagecomparison-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/imagecomparison-plugin/deployments", + "created_at": "2016-04-16T01:41:06Z", + "updated_at": "2016-04-16T01:41:16Z", + "pushed_at": "2016-04-16T01:41:17Z", + "git_url": "git://github.com/jenkinsci/imagecomparison-plugin.git", + "ssh_url": "git@github.com:jenkinsci/imagecomparison-plugin.git", + "clone_url": "https://github.com/jenkinsci/imagecomparison-plugin.git", + "svn_url": "https://github.com/jenkinsci/imagecomparison-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 12, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 56360262, + "node_id": "MDEwOlJlcG9zaXRvcnk1NjM2MDI2Mg==", + "name": "vncviewer-plugin", + "full_name": "jenkinsci/vncviewer-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/vncviewer-plugin", + "description": "Jenkins vncviewer plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/vncviewer-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/vncviewer-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/vncviewer-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/vncviewer-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/vncviewer-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/vncviewer-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/vncviewer-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/vncviewer-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/vncviewer-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/vncviewer-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/vncviewer-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/vncviewer-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/vncviewer-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/vncviewer-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/vncviewer-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/vncviewer-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/vncviewer-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/vncviewer-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/vncviewer-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/vncviewer-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/vncviewer-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/vncviewer-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/vncviewer-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/vncviewer-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/vncviewer-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/vncviewer-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/vncviewer-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/vncviewer-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/vncviewer-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/vncviewer-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/vncviewer-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/vncviewer-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/vncviewer-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/vncviewer-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/vncviewer-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/vncviewer-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/vncviewer-plugin/deployments", + "created_at": "2016-04-16T01:57:24Z", + "updated_at": "2019-07-23T01:38:50Z", + "pushed_at": "2019-10-08T12:32:38Z", + "git_url": "git://github.com/jenkinsci/vncviewer-plugin.git", + "ssh_url": "git@github.com:jenkinsci/vncviewer-plugin.git", + "clone_url": "https://github.com/jenkinsci/vncviewer-plugin.git", + "svn_url": "https://github.com/jenkinsci/vncviewer-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 1071, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 4, + "open_issues": 1, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 56360379, + "node_id": "MDEwOlJlcG9zaXRvcnk1NjM2MDM3OQ==", + "name": "vncrecorder-plugin", + "full_name": "jenkinsci/vncrecorder-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/vncrecorder-plugin", + "description": "Jenkins vncrecorder plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/vncrecorder-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/vncrecorder-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/vncrecorder-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/vncrecorder-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/vncrecorder-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/vncrecorder-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/vncrecorder-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/vncrecorder-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/vncrecorder-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/vncrecorder-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/vncrecorder-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/vncrecorder-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/vncrecorder-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/vncrecorder-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/vncrecorder-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/vncrecorder-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/vncrecorder-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/vncrecorder-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/vncrecorder-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/vncrecorder-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/vncrecorder-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/vncrecorder-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/vncrecorder-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/vncrecorder-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/vncrecorder-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/vncrecorder-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/vncrecorder-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/vncrecorder-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/vncrecorder-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/vncrecorder-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/vncrecorder-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/vncrecorder-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/vncrecorder-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/vncrecorder-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/vncrecorder-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/vncrecorder-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/vncrecorder-plugin/deployments", + "created_at": "2016-04-16T02:00:23Z", + "updated_at": "2016-08-18T04:30:03Z", + "pushed_at": "2016-08-23T00:14:44Z", + "git_url": "git://github.com/jenkinsci/vncrecorder-plugin.git", + "ssh_url": "git@github.com:jenkinsci/vncrecorder-plugin.git", + "clone_url": "https://github.com/jenkinsci/vncrecorder-plugin.git", + "svn_url": "https://github.com/jenkinsci/vncrecorder-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 78, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 3, + "open_issues": 0, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 56603362, + "node_id": "MDEwOlJlcG9zaXRvcnk1NjYwMzM2Mg==", + "name": "react-material-icons", + "full_name": "jenkinsci/react-material-icons", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/react-material-icons", + "description": "Simple component for anomated Material Icons in React.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/react-material-icons", + "forks_url": "https://api.github.com/repos/jenkinsci/react-material-icons/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/react-material-icons/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/react-material-icons/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/react-material-icons/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/react-material-icons/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/react-material-icons/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/react-material-icons/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/react-material-icons/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/react-material-icons/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/react-material-icons/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/react-material-icons/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/react-material-icons/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/react-material-icons/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/react-material-icons/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/react-material-icons/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/react-material-icons/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/react-material-icons/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/react-material-icons/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/react-material-icons/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/react-material-icons/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/react-material-icons/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/react-material-icons/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/react-material-icons/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/react-material-icons/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/react-material-icons/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/react-material-icons/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/react-material-icons/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/react-material-icons/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/react-material-icons/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/react-material-icons/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/react-material-icons/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/react-material-icons/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/react-material-icons/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/react-material-icons/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/react-material-icons/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/react-material-icons/deployments", + "created_at": "2016-04-19T14:21:47Z", + "updated_at": "2016-12-15T17:02:33Z", + "pushed_at": "2016-12-15T17:09:44Z", + "git_url": "git://github.com/jenkinsci/react-material-icons.git", + "ssh_url": "git@github.com:jenkinsci/react-material-icons.git", + "clone_url": "https://github.com/jenkinsci/react-material-icons.git", + "svn_url": "https://github.com/jenkinsci/react-material-icons", + "homepage": "http://friktor.github.io/react-material-icons/", + "size": 218, + "stargazers_count": 2, + "watchers_count": 2, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 3, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 56689866, + "node_id": "MDEwOlJlcG9zaXRvcnk1NjY4OTg2Ng==", + "name": "boot-clj-plugin", + "full_name": "jenkinsci/boot-clj-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/boot-clj-plugin", + "description": "Jenkins plugin which provides the Boot build tool for Clojure.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/boot-clj-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/boot-clj-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/boot-clj-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/boot-clj-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/boot-clj-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/boot-clj-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/boot-clj-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/boot-clj-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/boot-clj-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/boot-clj-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/boot-clj-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/boot-clj-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/boot-clj-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/boot-clj-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/boot-clj-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/boot-clj-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/boot-clj-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/boot-clj-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/boot-clj-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/boot-clj-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/boot-clj-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/boot-clj-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/boot-clj-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/boot-clj-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/boot-clj-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/boot-clj-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/boot-clj-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/boot-clj-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/boot-clj-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/boot-clj-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/boot-clj-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/boot-clj-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/boot-clj-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/boot-clj-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/boot-clj-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/boot-clj-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/boot-clj-plugin/deployments", + "created_at": "2016-04-20T13:38:01Z", + "updated_at": "2017-02-04T02:59:45Z", + "pushed_at": "2016-06-15T08:57:31Z", + "git_url": "git://github.com/jenkinsci/boot-clj-plugin.git", + "ssh_url": "git@github.com:jenkinsci/boot-clj-plugin.git", + "clone_url": "https://github.com/jenkinsci/boot-clj-plugin.git", + "svn_url": "https://github.com/jenkinsci/boot-clj-plugin", + "homepage": null, + "size": 8, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 56695793, + "node_id": "MDEwOlJlcG9zaXRvcnk1NjY5NTc5Mw==", + "name": "github-pr-coverage-status-plugin", + "full_name": "jenkinsci/github-pr-coverage-status-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/github-pr-coverage-status-plugin", + "description": "Nice test coverage icon for your pull requests just from Jenkins", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/github-pr-coverage-status-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/github-pr-coverage-status-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/github-pr-coverage-status-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/github-pr-coverage-status-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/github-pr-coverage-status-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/github-pr-coverage-status-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/github-pr-coverage-status-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/github-pr-coverage-status-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/github-pr-coverage-status-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/github-pr-coverage-status-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/github-pr-coverage-status-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/github-pr-coverage-status-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/github-pr-coverage-status-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/github-pr-coverage-status-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/github-pr-coverage-status-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/github-pr-coverage-status-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/github-pr-coverage-status-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/github-pr-coverage-status-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/github-pr-coverage-status-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/github-pr-coverage-status-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/github-pr-coverage-status-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/github-pr-coverage-status-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/github-pr-coverage-status-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/github-pr-coverage-status-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/github-pr-coverage-status-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/github-pr-coverage-status-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/github-pr-coverage-status-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/github-pr-coverage-status-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/github-pr-coverage-status-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/github-pr-coverage-status-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/github-pr-coverage-status-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/github-pr-coverage-status-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/github-pr-coverage-status-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/github-pr-coverage-status-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/github-pr-coverage-status-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/github-pr-coverage-status-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/github-pr-coverage-status-plugin/deployments", + "created_at": "2016-04-20T14:50:45Z", + "updated_at": "2019-10-03T14:28:11Z", + "pushed_at": "2019-10-03T14:28:08Z", + "git_url": "git://github.com/jenkinsci/github-pr-coverage-status-plugin.git", + "ssh_url": "git@github.com:jenkinsci/github-pr-coverage-status-plugin.git", + "clone_url": "https://github.com/jenkinsci/github-pr-coverage-status-plugin.git", + "svn_url": "https://github.com/jenkinsci/github-pr-coverage-status-plugin", + "homepage": "", + "size": 314, + "stargazers_count": 75, + "watchers_count": 75, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 71, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 28, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 71, + "open_issues": 28, + "watchers": 75, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 56803222, + "node_id": "MDEwOlJlcG9zaXRvcnk1NjgwMzIyMg==", + "name": "scm-sqs-plugin", + "full_name": "jenkinsci/scm-sqs-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/scm-sqs-plugin", + "description": "Jenkins plugin that triggers builds on events from CodeCommit that are published via Amazon Simple Queue Service (SQS)", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/scm-sqs-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/scm-sqs-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/scm-sqs-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/scm-sqs-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/scm-sqs-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/scm-sqs-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/scm-sqs-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/scm-sqs-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/scm-sqs-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/scm-sqs-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/scm-sqs-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/scm-sqs-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/scm-sqs-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/scm-sqs-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/scm-sqs-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/scm-sqs-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/scm-sqs-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/scm-sqs-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/scm-sqs-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/scm-sqs-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/scm-sqs-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/scm-sqs-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/scm-sqs-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/scm-sqs-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/scm-sqs-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/scm-sqs-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/scm-sqs-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/scm-sqs-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/scm-sqs-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/scm-sqs-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/scm-sqs-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/scm-sqs-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/scm-sqs-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/scm-sqs-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/scm-sqs-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/scm-sqs-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/scm-sqs-plugin/deployments", + "created_at": "2016-04-21T20:20:41Z", + "updated_at": "2019-10-24T04:42:45Z", + "pushed_at": "2016-07-08T10:20:52Z", + "git_url": "git://github.com/jenkinsci/scm-sqs-plugin.git", + "ssh_url": "git@github.com:jenkinsci/scm-sqs-plugin.git", + "clone_url": "https://github.com/jenkinsci/scm-sqs-plugin.git", + "svn_url": "https://github.com/jenkinsci/scm-sqs-plugin", + "homepage": null, + "size": 282, + "stargazers_count": 14, + "watchers_count": 14, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 5, + "open_issues": 3, + "watchers": 14, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 56803793, + "node_id": "MDEwOlJlcG9zaXRvcnk1NjgwMzc5Mw==", + "name": "nomad-plugin", + "full_name": "jenkinsci/nomad-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/nomad-plugin", + "description": "Nomad cloud plugin for Jenkins", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/nomad-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/nomad-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/nomad-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/nomad-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/nomad-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/nomad-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/nomad-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/nomad-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/nomad-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/nomad-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/nomad-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/nomad-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/nomad-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/nomad-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/nomad-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/nomad-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/nomad-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/nomad-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/nomad-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/nomad-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/nomad-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/nomad-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/nomad-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/nomad-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/nomad-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/nomad-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/nomad-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/nomad-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/nomad-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/nomad-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/nomad-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/nomad-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/nomad-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/nomad-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/nomad-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/nomad-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/nomad-plugin/deployments", + "created_at": "2016-04-21T20:31:20Z", + "updated_at": "2019-10-13T10:29:20Z", + "pushed_at": "2019-10-13T10:29:18Z", + "git_url": "git://github.com/jenkinsci/nomad-plugin.git", + "ssh_url": "git@github.com:jenkinsci/nomad-plugin.git", + "clone_url": "https://github.com/jenkinsci/nomad-plugin.git", + "svn_url": "https://github.com/jenkinsci/nomad-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Nomad+Plugin", + "size": 167, + "stargazers_count": 33, + "watchers_count": 33, + "language": "Java", + "has_issues": true, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 28, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 10, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 28, + "open_issues": 10, + "watchers": 33, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 56803901, + "node_id": "MDEwOlJlcG9zaXRvcnk1NjgwMzkwMQ==", + "name": "bmc-rpd-plugin", + "full_name": "jenkinsci/bmc-rpd-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/bmc-rpd-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/bmc-rpd-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/bmc-rpd-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/bmc-rpd-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/bmc-rpd-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/bmc-rpd-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/bmc-rpd-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/bmc-rpd-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/bmc-rpd-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/bmc-rpd-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/bmc-rpd-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/bmc-rpd-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/bmc-rpd-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/bmc-rpd-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/bmc-rpd-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/bmc-rpd-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/bmc-rpd-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/bmc-rpd-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/bmc-rpd-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/bmc-rpd-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/bmc-rpd-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/bmc-rpd-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/bmc-rpd-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/bmc-rpd-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/bmc-rpd-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/bmc-rpd-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/bmc-rpd-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/bmc-rpd-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/bmc-rpd-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/bmc-rpd-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/bmc-rpd-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/bmc-rpd-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/bmc-rpd-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/bmc-rpd-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/bmc-rpd-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/bmc-rpd-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/bmc-rpd-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/bmc-rpd-plugin/deployments", + "created_at": "2016-04-21T20:33:13Z", + "updated_at": "2016-05-02T07:37:55Z", + "pushed_at": "2016-04-22T17:04:24Z", + "git_url": "git://github.com/jenkinsci/bmc-rpd-plugin.git", + "ssh_url": "git@github.com:jenkinsci/bmc-rpd-plugin.git", + "clone_url": "https://github.com/jenkinsci/bmc-rpd-plugin.git", + "svn_url": "https://github.com/jenkinsci/bmc-rpd-plugin", + "homepage": null, + "size": 34, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 56804483, + "node_id": "MDEwOlJlcG9zaXRvcnk1NjgwNDQ4Mw==", + "name": "mq-notifier-plugin", + "full_name": "jenkinsci/mq-notifier-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/mq-notifier-plugin", + "description": "A Jenkins plugin that sends messages to an MQ, e.g. RabbitMQ whenever a build is started and finished.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/mq-notifier-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/mq-notifier-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/mq-notifier-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/mq-notifier-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/mq-notifier-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/mq-notifier-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/mq-notifier-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/mq-notifier-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/mq-notifier-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/mq-notifier-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/mq-notifier-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/mq-notifier-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/mq-notifier-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/mq-notifier-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/mq-notifier-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/mq-notifier-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/mq-notifier-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/mq-notifier-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/mq-notifier-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/mq-notifier-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/mq-notifier-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/mq-notifier-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/mq-notifier-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/mq-notifier-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/mq-notifier-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/mq-notifier-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/mq-notifier-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/mq-notifier-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/mq-notifier-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/mq-notifier-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/mq-notifier-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/mq-notifier-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/mq-notifier-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/mq-notifier-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/mq-notifier-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/mq-notifier-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/mq-notifier-plugin/deployments", + "created_at": "2016-04-21T20:44:05Z", + "updated_at": "2019-08-06T11:12:32Z", + "pushed_at": "2019-10-08T16:39:48Z", + "git_url": "git://github.com/jenkinsci/mq-notifier-plugin.git", + "ssh_url": "git@github.com:jenkinsci/mq-notifier-plugin.git", + "clone_url": "https://github.com/jenkinsci/mq-notifier-plugin.git", + "svn_url": "https://github.com/jenkinsci/mq-notifier-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/MQ+Notifier+Plugin", + "size": 110, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 14, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 14, + "open_issues": 1, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 56878504, + "node_id": "MDEwOlJlcG9zaXRvcnk1Njg3ODUwNA==", + "name": "waptpro-plugin", + "full_name": "jenkinsci/waptpro-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/waptpro-plugin", + "description": "WAPT Pro plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/waptpro-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/waptpro-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/waptpro-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/waptpro-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/waptpro-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/waptpro-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/waptpro-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/waptpro-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/waptpro-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/waptpro-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/waptpro-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/waptpro-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/waptpro-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/waptpro-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/waptpro-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/waptpro-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/waptpro-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/waptpro-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/waptpro-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/waptpro-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/waptpro-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/waptpro-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/waptpro-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/waptpro-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/waptpro-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/waptpro-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/waptpro-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/waptpro-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/waptpro-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/waptpro-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/waptpro-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/waptpro-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/waptpro-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/waptpro-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/waptpro-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/waptpro-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/waptpro-plugin/deployments", + "created_at": "2016-04-22T18:57:38Z", + "updated_at": "2017-09-11T06:16:09Z", + "pushed_at": "2017-09-12T05:16:59Z", + "git_url": "git://github.com/jenkinsci/waptpro-plugin.git", + "ssh_url": "git@github.com:jenkinsci/waptpro-plugin.git", + "clone_url": "https://github.com/jenkinsci/waptpro-plugin.git", + "svn_url": "https://github.com/jenkinsci/waptpro-plugin", + "homepage": null, + "size": 61339, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 56878738, + "node_id": "MDEwOlJlcG9zaXRvcnk1Njg3ODczOA==", + "name": "ibm-security-appscansource-scanner-plugin", + "full_name": "jenkinsci/ibm-security-appscansource-scanner-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/ibm-security-appscansource-scanner-plugin", + "description": "Jenkins plugin for executing AppScan Source", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/ibm-security-appscansource-scanner-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/ibm-security-appscansource-scanner-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/ibm-security-appscansource-scanner-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/ibm-security-appscansource-scanner-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/ibm-security-appscansource-scanner-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/ibm-security-appscansource-scanner-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/ibm-security-appscansource-scanner-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/ibm-security-appscansource-scanner-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/ibm-security-appscansource-scanner-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/ibm-security-appscansource-scanner-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/ibm-security-appscansource-scanner-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/ibm-security-appscansource-scanner-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/ibm-security-appscansource-scanner-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/ibm-security-appscansource-scanner-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/ibm-security-appscansource-scanner-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/ibm-security-appscansource-scanner-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/ibm-security-appscansource-scanner-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/ibm-security-appscansource-scanner-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/ibm-security-appscansource-scanner-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/ibm-security-appscansource-scanner-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/ibm-security-appscansource-scanner-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/ibm-security-appscansource-scanner-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/ibm-security-appscansource-scanner-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/ibm-security-appscansource-scanner-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/ibm-security-appscansource-scanner-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/ibm-security-appscansource-scanner-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/ibm-security-appscansource-scanner-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/ibm-security-appscansource-scanner-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/ibm-security-appscansource-scanner-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/ibm-security-appscansource-scanner-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/ibm-security-appscansource-scanner-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/ibm-security-appscansource-scanner-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/ibm-security-appscansource-scanner-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/ibm-security-appscansource-scanner-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/ibm-security-appscansource-scanner-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/ibm-security-appscansource-scanner-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/ibm-security-appscansource-scanner-plugin/deployments", + "created_at": "2016-04-22T19:02:11Z", + "updated_at": "2018-09-08T13:13:10Z", + "pushed_at": "2018-04-12T15:57:15Z", + "git_url": "git://github.com/jenkinsci/ibm-security-appscansource-scanner-plugin.git", + "ssh_url": "git@github.com:jenkinsci/ibm-security-appscansource-scanner-plugin.git", + "clone_url": "https://github.com/jenkinsci/ibm-security-appscansource-scanner-plugin.git", + "svn_url": "https://github.com/jenkinsci/ibm-security-appscansource-scanner-plugin", + "homepage": null, + "size": 2833, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 9, + "license": { + "key": "gpl-3.0", + "name": "GNU General Public License v3.0", + "spdx_id": "GPL-3.0", + "url": "https://api.github.com/licenses/gpl-3.0", + "node_id": "MDc6TGljZW5zZTk=" + }, + "forks": 6, + "open_issues": 9, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 57356335, + "node_id": "MDEwOlJlcG9zaXRvcnk1NzM1NjMzNQ==", + "name": "htmlresource-plugin", + "full_name": "jenkinsci/htmlresource-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/htmlresource-plugin", + "description": "html resource jenkins plugin to manage webjars", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/htmlresource-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/htmlresource-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/htmlresource-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/htmlresource-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/htmlresource-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/htmlresource-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/htmlresource-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/htmlresource-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/htmlresource-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/htmlresource-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/htmlresource-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/htmlresource-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/htmlresource-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/htmlresource-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/htmlresource-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/htmlresource-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/htmlresource-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/htmlresource-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/htmlresource-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/htmlresource-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/htmlresource-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/htmlresource-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/htmlresource-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/htmlresource-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/htmlresource-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/htmlresource-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/htmlresource-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/htmlresource-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/htmlresource-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/htmlresource-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/htmlresource-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/htmlresource-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/htmlresource-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/htmlresource-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/htmlresource-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/htmlresource-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/htmlresource-plugin/deployments", + "created_at": "2016-04-29T05:14:03Z", + "updated_at": "2016-04-29T14:06:51Z", + "pushed_at": "2019-10-08T12:28:22Z", + "git_url": "git://github.com/jenkinsci/htmlresource-plugin.git", + "ssh_url": "git@github.com:jenkinsci/htmlresource-plugin.git", + "clone_url": "https://github.com/jenkinsci/htmlresource-plugin.git", + "svn_url": "https://github.com/jenkinsci/htmlresource-plugin", + "homepage": null, + "size": 665, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 57415297, + "node_id": "MDEwOlJlcG9zaXRvcnk1NzQxNTI5Nw==", + "name": "rpi-build-status-plugin", + "full_name": "jenkinsci/rpi-build-status-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/rpi-build-status-plugin", + "description": "Show Jenkins build state via an LED on your Pi (LedBorg)", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/rpi-build-status-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/rpi-build-status-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/rpi-build-status-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/rpi-build-status-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/rpi-build-status-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/rpi-build-status-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/rpi-build-status-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/rpi-build-status-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/rpi-build-status-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/rpi-build-status-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/rpi-build-status-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/rpi-build-status-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/rpi-build-status-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/rpi-build-status-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/rpi-build-status-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/rpi-build-status-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/rpi-build-status-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/rpi-build-status-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/rpi-build-status-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/rpi-build-status-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/rpi-build-status-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/rpi-build-status-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/rpi-build-status-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/rpi-build-status-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/rpi-build-status-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/rpi-build-status-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/rpi-build-status-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/rpi-build-status-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/rpi-build-status-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/rpi-build-status-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/rpi-build-status-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/rpi-build-status-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/rpi-build-status-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/rpi-build-status-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/rpi-build-status-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/rpi-build-status-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/rpi-build-status-plugin/deployments", + "created_at": "2016-04-29T21:58:24Z", + "updated_at": "2019-05-22T00:28:17Z", + "pushed_at": "2017-06-04T22:35:57Z", + "git_url": "git://github.com/jenkinsci/rpi-build-status-plugin.git", + "ssh_url": "git@github.com:jenkinsci/rpi-build-status-plugin.git", + "clone_url": "https://github.com/jenkinsci/rpi-build-status-plugin.git", + "svn_url": "https://github.com/jenkinsci/rpi-build-status-plugin", + "homepage": "", + "size": 52, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 2, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 57895193, + "node_id": "MDEwOlJlcG9zaXRvcnk1Nzg5NTE5Mw==", + "name": "codecommit-url-helper-plugin", + "full_name": "jenkinsci/codecommit-url-helper-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/codecommit-url-helper-plugin", + "description": "AWS CodeCommit URL Helper Behaviour for Jenkins Git Plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/codecommit-url-helper-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/codecommit-url-helper-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/codecommit-url-helper-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/codecommit-url-helper-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/codecommit-url-helper-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/codecommit-url-helper-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/codecommit-url-helper-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/codecommit-url-helper-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/codecommit-url-helper-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/codecommit-url-helper-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/codecommit-url-helper-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/codecommit-url-helper-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/codecommit-url-helper-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/codecommit-url-helper-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/codecommit-url-helper-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/codecommit-url-helper-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/codecommit-url-helper-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/codecommit-url-helper-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/codecommit-url-helper-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/codecommit-url-helper-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/codecommit-url-helper-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/codecommit-url-helper-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/codecommit-url-helper-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/codecommit-url-helper-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/codecommit-url-helper-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/codecommit-url-helper-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/codecommit-url-helper-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/codecommit-url-helper-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/codecommit-url-helper-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/codecommit-url-helper-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/codecommit-url-helper-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/codecommit-url-helper-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/codecommit-url-helper-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/codecommit-url-helper-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/codecommit-url-helper-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/codecommit-url-helper-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/codecommit-url-helper-plugin/deployments", + "created_at": "2016-05-02T14:16:16Z", + "updated_at": "2018-08-19T00:26:35Z", + "pushed_at": "2019-10-08T16:17:26Z", + "git_url": "git://github.com/jenkinsci/codecommit-url-helper-plugin.git", + "ssh_url": "git@github.com:jenkinsci/codecommit-url-helper-plugin.git", + "clone_url": "https://github.com/jenkinsci/codecommit-url-helper-plugin.git", + "svn_url": "https://github.com/jenkinsci/codecommit-url-helper-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/CodeCommit+URL+Helper", + "size": 26, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 2, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 58236486, + "node_id": "MDEwOlJlcG9zaXRvcnk1ODIzNjQ4Ng==", + "name": "srcclr-installer-plugin", + "full_name": "jenkinsci/srcclr-installer-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/srcclr-installer-plugin", + "description": "The SourceClear Jenkins Installer Plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/srcclr-installer-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/srcclr-installer-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/srcclr-installer-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/srcclr-installer-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/srcclr-installer-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/srcclr-installer-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/srcclr-installer-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/srcclr-installer-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/srcclr-installer-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/srcclr-installer-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/srcclr-installer-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/srcclr-installer-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/srcclr-installer-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/srcclr-installer-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/srcclr-installer-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/srcclr-installer-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/srcclr-installer-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/srcclr-installer-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/srcclr-installer-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/srcclr-installer-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/srcclr-installer-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/srcclr-installer-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/srcclr-installer-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/srcclr-installer-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/srcclr-installer-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/srcclr-installer-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/srcclr-installer-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/srcclr-installer-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/srcclr-installer-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/srcclr-installer-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/srcclr-installer-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/srcclr-installer-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/srcclr-installer-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/srcclr-installer-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/srcclr-installer-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/srcclr-installer-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/srcclr-installer-plugin/deployments", + "created_at": "2016-05-06T21:43:11Z", + "updated_at": "2016-05-06T21:43:17Z", + "pushed_at": "2016-12-27T12:45:35Z", + "git_url": "git://github.com/jenkinsci/srcclr-installer-plugin.git", + "ssh_url": "git@github.com:jenkinsci/srcclr-installer-plugin.git", + "clone_url": "https://github.com/jenkinsci/srcclr-installer-plugin.git", + "svn_url": "https://github.com/jenkinsci/srcclr-installer-plugin", + "homepage": null, + "size": 24, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 58330635, + "node_id": "MDEwOlJlcG9zaXRvcnk1ODMzMDYzNQ==", + "name": "jenkins-design-language", + "full_name": "jenkinsci/jenkins-design-language", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jenkins-design-language", + "description": "Styles, assets, and React classes for Jenkins Design Language", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jenkins-design-language", + "forks_url": "https://api.github.com/repos/jenkinsci/jenkins-design-language/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jenkins-design-language/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jenkins-design-language/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jenkins-design-language/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jenkins-design-language/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jenkins-design-language/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jenkins-design-language/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jenkins-design-language/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jenkins-design-language/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jenkins-design-language/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jenkins-design-language/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jenkins-design-language/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jenkins-design-language/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jenkins-design-language/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jenkins-design-language/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jenkins-design-language/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jenkins-design-language/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jenkins-design-language/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jenkins-design-language/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jenkins-design-language/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jenkins-design-language/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jenkins-design-language/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jenkins-design-language/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jenkins-design-language/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jenkins-design-language/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jenkins-design-language/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jenkins-design-language/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jenkins-design-language/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jenkins-design-language/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jenkins-design-language/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jenkins-design-language/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jenkins-design-language/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jenkins-design-language/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jenkins-design-language/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jenkins-design-language/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jenkins-design-language/deployments", + "created_at": "2016-05-08T20:45:44Z", + "updated_at": "2019-10-16T10:20:47Z", + "pushed_at": "2019-03-22T22:30:18Z", + "git_url": "git://github.com/jenkinsci/jenkins-design-language.git", + "ssh_url": "git@github.com:jenkinsci/jenkins-design-language.git", + "clone_url": "https://github.com/jenkinsci/jenkins-design-language.git", + "svn_url": "https://github.com/jenkinsci/jenkins-design-language", + "homepage": "https://jenkinsci.github.io/jenkins-design-language", + "size": 9564, + "stargazers_count": 109, + "watchers_count": 109, + "language": "TypeScript", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": true, + "forks_count": 42, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 42, + "open_issues": 2, + "watchers": 109, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 58476512, + "node_id": "MDEwOlJlcG9zaXRvcnk1ODQ3NjUxMg==", + "name": "environment-manager-tools-plugin", + "full_name": "jenkinsci/environment-manager-tools-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/environment-manager-tools-plugin", + "description": "Third party integration tools for Parasoft Environment Manager", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/environment-manager-tools-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/environment-manager-tools-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/environment-manager-tools-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/environment-manager-tools-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/environment-manager-tools-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/environment-manager-tools-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/environment-manager-tools-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/environment-manager-tools-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/environment-manager-tools-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/environment-manager-tools-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/environment-manager-tools-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/environment-manager-tools-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/environment-manager-tools-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/environment-manager-tools-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/environment-manager-tools-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/environment-manager-tools-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/environment-manager-tools-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/environment-manager-tools-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/environment-manager-tools-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/environment-manager-tools-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/environment-manager-tools-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/environment-manager-tools-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/environment-manager-tools-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/environment-manager-tools-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/environment-manager-tools-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/environment-manager-tools-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/environment-manager-tools-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/environment-manager-tools-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/environment-manager-tools-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/environment-manager-tools-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/environment-manager-tools-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/environment-manager-tools-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/environment-manager-tools-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/environment-manager-tools-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/environment-manager-tools-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/environment-manager-tools-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/environment-manager-tools-plugin/deployments", + "created_at": "2016-05-10T16:21:36Z", + "updated_at": "2019-08-29T15:48:34Z", + "pushed_at": "2019-08-29T15:48:32Z", + "git_url": "git://github.com/jenkinsci/environment-manager-tools-plugin.git", + "ssh_url": "git@github.com:jenkinsci/environment-manager-tools-plugin.git", + "clone_url": "https://github.com/jenkinsci/environment-manager-tools-plugin.git", + "svn_url": "https://github.com/jenkinsci/environment-manager-tools-plugin", + "homepage": null, + "size": 23337, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 58481712, + "node_id": "MDEwOlJlcG9zaXRvcnk1ODQ4MTcxMg==", + "name": "consul-kv-builder-plugin", + "full_name": "jenkinsci/consul-kv-builder-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/consul-kv-builder-plugin", + "description": "Jenkins plugin to read/write/delete K/V pairs from/to Consul K/V store.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/consul-kv-builder-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/consul-kv-builder-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/consul-kv-builder-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/consul-kv-builder-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/consul-kv-builder-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/consul-kv-builder-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/consul-kv-builder-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/consul-kv-builder-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/consul-kv-builder-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/consul-kv-builder-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/consul-kv-builder-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/consul-kv-builder-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/consul-kv-builder-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/consul-kv-builder-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/consul-kv-builder-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/consul-kv-builder-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/consul-kv-builder-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/consul-kv-builder-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/consul-kv-builder-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/consul-kv-builder-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/consul-kv-builder-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/consul-kv-builder-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/consul-kv-builder-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/consul-kv-builder-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/consul-kv-builder-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/consul-kv-builder-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/consul-kv-builder-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/consul-kv-builder-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/consul-kv-builder-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/consul-kv-builder-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/consul-kv-builder-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/consul-kv-builder-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/consul-kv-builder-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/consul-kv-builder-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/consul-kv-builder-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/consul-kv-builder-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/consul-kv-builder-plugin/deployments", + "created_at": "2016-05-10T17:42:32Z", + "updated_at": "2019-01-18T01:01:42Z", + "pushed_at": "2019-10-08T16:38:09Z", + "git_url": "git://github.com/jenkinsci/consul-kv-builder-plugin.git", + "ssh_url": "git@github.com:jenkinsci/consul-kv-builder-plugin.git", + "clone_url": "https://github.com/jenkinsci/consul-kv-builder-plugin.git", + "svn_url": "https://github.com/jenkinsci/consul-kv-builder-plugin", + "homepage": null, + "size": 4964, + "stargazers_count": 6, + "watchers_count": 6, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 11, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 6, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 11, + "open_issues": 6, + "watchers": 6, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 58583372, + "node_id": "MDEwOlJlcG9zaXRvcnk1ODU4MzM3Mg==", + "name": "inedo-proget-plugin", + "full_name": "jenkinsci/inedo-proget-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/inedo-proget-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/inedo-proget-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/inedo-proget-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/inedo-proget-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/inedo-proget-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/inedo-proget-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/inedo-proget-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/inedo-proget-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/inedo-proget-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/inedo-proget-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/inedo-proget-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/inedo-proget-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/inedo-proget-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/inedo-proget-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/inedo-proget-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/inedo-proget-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/inedo-proget-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/inedo-proget-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/inedo-proget-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/inedo-proget-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/inedo-proget-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/inedo-proget-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/inedo-proget-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/inedo-proget-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/inedo-proget-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/inedo-proget-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/inedo-proget-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/inedo-proget-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/inedo-proget-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/inedo-proget-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/inedo-proget-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/inedo-proget-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/inedo-proget-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/inedo-proget-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/inedo-proget-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/inedo-proget-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/inedo-proget-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/inedo-proget-plugin/deployments", + "created_at": "2016-05-11T21:32:29Z", + "updated_at": "2019-09-16T07:39:46Z", + "pushed_at": "2019-09-16T07:39:44Z", + "git_url": "git://github.com/jenkinsci/inedo-proget-plugin.git", + "ssh_url": "git@github.com:jenkinsci/inedo-proget-plugin.git", + "clone_url": "https://github.com/jenkinsci/inedo-proget-plugin.git", + "svn_url": "https://github.com/jenkinsci/inedo-proget-plugin", + "homepage": null, + "size": 575, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 58914927, + "node_id": "MDEwOlJlcG9zaXRvcnk1ODkxNDkyNw==", + "name": "node-sharing-plugin", + "full_name": "jenkinsci/node-sharing-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/node-sharing-plugin", + "description": "Jenkins plugin to allow a sharing Jenkins nodes between multiple masters", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/node-sharing-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/node-sharing-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/node-sharing-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/node-sharing-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/node-sharing-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/node-sharing-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/node-sharing-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/node-sharing-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/node-sharing-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/node-sharing-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/node-sharing-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/node-sharing-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/node-sharing-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/node-sharing-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/node-sharing-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/node-sharing-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/node-sharing-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/node-sharing-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/node-sharing-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/node-sharing-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/node-sharing-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/node-sharing-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/node-sharing-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/node-sharing-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/node-sharing-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/node-sharing-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/node-sharing-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/node-sharing-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/node-sharing-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/node-sharing-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/node-sharing-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/node-sharing-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/node-sharing-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/node-sharing-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/node-sharing-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/node-sharing-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/node-sharing-plugin/deployments", + "created_at": "2016-05-16T08:09:08Z", + "updated_at": "2019-07-17T12:08:54Z", + "pushed_at": "2019-07-17T12:08:52Z", + "git_url": "git://github.com/jenkinsci/node-sharing-plugin.git", + "ssh_url": "git@github.com:jenkinsci/node-sharing-plugin.git", + "clone_url": "https://github.com/jenkinsci/node-sharing-plugin.git", + "svn_url": "https://github.com/jenkinsci/node-sharing-plugin", + "homepage": "https://wiki.jenkins.io/display/JENKINS/Node+Sharing+Plugin", + "size": 1554, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": false, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 9, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 9, + "open_issues": 0, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 58932444, + "node_id": "MDEwOlJlcG9zaXRvcnk1ODkzMjQ0NA==", + "name": "external-workspace-manager-plugin", + "full_name": "jenkinsci/external-workspace-manager-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/external-workspace-manager-plugin", + "description": "Jenkins plugin that facilitates workspace share and reuse across multiple jobs", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/external-workspace-manager-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/external-workspace-manager-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/external-workspace-manager-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/external-workspace-manager-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/external-workspace-manager-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/external-workspace-manager-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/external-workspace-manager-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/external-workspace-manager-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/external-workspace-manager-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/external-workspace-manager-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/external-workspace-manager-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/external-workspace-manager-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/external-workspace-manager-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/external-workspace-manager-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/external-workspace-manager-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/external-workspace-manager-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/external-workspace-manager-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/external-workspace-manager-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/external-workspace-manager-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/external-workspace-manager-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/external-workspace-manager-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/external-workspace-manager-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/external-workspace-manager-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/external-workspace-manager-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/external-workspace-manager-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/external-workspace-manager-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/external-workspace-manager-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/external-workspace-manager-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/external-workspace-manager-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/external-workspace-manager-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/external-workspace-manager-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/external-workspace-manager-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/external-workspace-manager-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/external-workspace-manager-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/external-workspace-manager-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/external-workspace-manager-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/external-workspace-manager-plugin/deployments", + "created_at": "2016-05-16T12:57:04Z", + "updated_at": "2019-10-08T19:04:20Z", + "pushed_at": "2019-10-24T13:58:02Z", + "git_url": "git://github.com/jenkinsci/external-workspace-manager-plugin.git", + "ssh_url": "git@github.com:jenkinsci/external-workspace-manager-plugin.git", + "clone_url": "https://github.com/jenkinsci/external-workspace-manager-plugin.git", + "svn_url": "https://github.com/jenkinsci/external-workspace-manager-plugin", + "homepage": "https://plugins.jenkins.io/external-workspace-manager", + "size": 2842, + "stargazers_count": 58, + "watchers_count": 58, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 34, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 34, + "open_issues": 3, + "watchers": 58, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 58937038, + "node_id": "MDEwOlJlcG9zaXRvcnk1ODkzNzAzOA==", + "name": "permissive-script-security-plugin", + "full_name": "jenkinsci/permissive-script-security-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/permissive-script-security-plugin", + "description": "Permissive Script Security Plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/permissive-script-security-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/permissive-script-security-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/permissive-script-security-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/permissive-script-security-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/permissive-script-security-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/permissive-script-security-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/permissive-script-security-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/permissive-script-security-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/permissive-script-security-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/permissive-script-security-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/permissive-script-security-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/permissive-script-security-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/permissive-script-security-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/permissive-script-security-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/permissive-script-security-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/permissive-script-security-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/permissive-script-security-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/permissive-script-security-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/permissive-script-security-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/permissive-script-security-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/permissive-script-security-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/permissive-script-security-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/permissive-script-security-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/permissive-script-security-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/permissive-script-security-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/permissive-script-security-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/permissive-script-security-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/permissive-script-security-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/permissive-script-security-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/permissive-script-security-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/permissive-script-security-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/permissive-script-security-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/permissive-script-security-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/permissive-script-security-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/permissive-script-security-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/permissive-script-security-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/permissive-script-security-plugin/deployments", + "created_at": "2016-05-16T14:02:40Z", + "updated_at": "2019-07-24T20:29:07Z", + "pushed_at": "2019-10-08T10:02:50Z", + "git_url": "git://github.com/jenkinsci/permissive-script-security-plugin.git", + "ssh_url": "git@github.com:jenkinsci/permissive-script-security-plugin.git", + "clone_url": "https://github.com/jenkinsci/permissive-script-security-plugin.git", + "svn_url": "https://github.com/jenkinsci/permissive-script-security-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Permissive+Script+Security+Plugin", + "size": 22, + "stargazers_count": 7, + "watchers_count": 7, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 4, + "open_issues": 2, + "watchers": 7, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 59149582, + "node_id": "MDEwOlJlcG9zaXRvcnk1OTE0OTU4Mg==", + "name": "build-pipeline-extension-layout-plugin", + "full_name": "jenkinsci/build-pipeline-extension-layout-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/build-pipeline-extension-layout-plugin", + "description": "build-pipeline-plugin extension layout for supporting build-flow jobs", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/build-pipeline-extension-layout-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/build-pipeline-extension-layout-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/build-pipeline-extension-layout-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/build-pipeline-extension-layout-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/build-pipeline-extension-layout-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/build-pipeline-extension-layout-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/build-pipeline-extension-layout-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/build-pipeline-extension-layout-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/build-pipeline-extension-layout-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/build-pipeline-extension-layout-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/build-pipeline-extension-layout-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/build-pipeline-extension-layout-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/build-pipeline-extension-layout-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/build-pipeline-extension-layout-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/build-pipeline-extension-layout-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/build-pipeline-extension-layout-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/build-pipeline-extension-layout-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/build-pipeline-extension-layout-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/build-pipeline-extension-layout-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/build-pipeline-extension-layout-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/build-pipeline-extension-layout-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/build-pipeline-extension-layout-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/build-pipeline-extension-layout-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/build-pipeline-extension-layout-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/build-pipeline-extension-layout-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/build-pipeline-extension-layout-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/build-pipeline-extension-layout-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/build-pipeline-extension-layout-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/build-pipeline-extension-layout-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/build-pipeline-extension-layout-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/build-pipeline-extension-layout-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/build-pipeline-extension-layout-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/build-pipeline-extension-layout-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/build-pipeline-extension-layout-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/build-pipeline-extension-layout-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/build-pipeline-extension-layout-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/build-pipeline-extension-layout-plugin/deployments", + "created_at": "2016-05-18T20:39:27Z", + "updated_at": "2016-05-18T21:18:13Z", + "pushed_at": "2016-09-22T01:13:00Z", + "git_url": "git://github.com/jenkinsci/build-pipeline-extension-layout-plugin.git", + "ssh_url": "git@github.com:jenkinsci/build-pipeline-extension-layout-plugin.git", + "clone_url": "https://github.com/jenkinsci/build-pipeline-extension-layout-plugin.git", + "svn_url": "https://github.com/jenkinsci/build-pipeline-extension-layout-plugin", + "homepage": null, + "size": 102, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 59150267, + "node_id": "MDEwOlJlcG9zaXRvcnk1OTE1MDI2Nw==", + "name": "gitlab-oauth-plugin", + "full_name": "jenkinsci/gitlab-oauth-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/gitlab-oauth-plugin", + "description": "jenkins authentication plugin using gitlab oauth as source", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/gitlab-oauth-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/gitlab-oauth-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/gitlab-oauth-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/gitlab-oauth-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/gitlab-oauth-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/gitlab-oauth-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/gitlab-oauth-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/gitlab-oauth-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/gitlab-oauth-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/gitlab-oauth-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/gitlab-oauth-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/gitlab-oauth-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/gitlab-oauth-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/gitlab-oauth-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/gitlab-oauth-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/gitlab-oauth-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/gitlab-oauth-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/gitlab-oauth-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/gitlab-oauth-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/gitlab-oauth-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/gitlab-oauth-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/gitlab-oauth-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/gitlab-oauth-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/gitlab-oauth-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/gitlab-oauth-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/gitlab-oauth-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/gitlab-oauth-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/gitlab-oauth-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/gitlab-oauth-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/gitlab-oauth-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/gitlab-oauth-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/gitlab-oauth-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/gitlab-oauth-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/gitlab-oauth-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/gitlab-oauth-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/gitlab-oauth-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/gitlab-oauth-plugin/deployments", + "created_at": "2016-05-18T20:49:41Z", + "updated_at": "2019-09-04T16:56:26Z", + "pushed_at": "2019-10-21T06:01:45Z", + "git_url": "git://github.com/jenkinsci/gitlab-oauth-plugin.git", + "ssh_url": "git@github.com:jenkinsci/gitlab-oauth-plugin.git", + "clone_url": "https://github.com/jenkinsci/gitlab-oauth-plugin.git", + "svn_url": "https://github.com/jenkinsci/gitlab-oauth-plugin", + "homepage": null, + "size": 469, + "stargazers_count": 17, + "watchers_count": 17, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 24, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 5, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 24, + "open_issues": 5, + "watchers": 17, + "default_branch": "develop", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 59296890, + "node_id": "MDEwOlJlcG9zaXRvcnk1OTI5Njg5MA==", + "name": "ec2-fleet-plugin", + "full_name": "jenkinsci/ec2-fleet-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/ec2-fleet-plugin", + "description": "The EC2 Spot Jenkins plugin launches EC2 Spot instances as worker nodes for Jenkins CI server, automatically scaling the capacity with the load. ", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/ec2-fleet-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/ec2-fleet-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/ec2-fleet-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/ec2-fleet-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/ec2-fleet-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/ec2-fleet-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/ec2-fleet-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/ec2-fleet-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/ec2-fleet-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/ec2-fleet-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/ec2-fleet-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/ec2-fleet-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/ec2-fleet-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/ec2-fleet-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/ec2-fleet-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/ec2-fleet-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/ec2-fleet-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/ec2-fleet-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/ec2-fleet-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/ec2-fleet-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/ec2-fleet-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/ec2-fleet-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/ec2-fleet-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/ec2-fleet-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/ec2-fleet-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/ec2-fleet-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/ec2-fleet-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/ec2-fleet-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/ec2-fleet-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/ec2-fleet-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/ec2-fleet-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/ec2-fleet-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/ec2-fleet-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/ec2-fleet-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/ec2-fleet-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/ec2-fleet-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/ec2-fleet-plugin/deployments", + "created_at": "2016-05-20T13:33:25Z", + "updated_at": "2019-10-24T17:30:33Z", + "pushed_at": "2019-10-20T04:42:05Z", + "git_url": "git://github.com/jenkinsci/ec2-fleet-plugin.git", + "ssh_url": "git@github.com:jenkinsci/ec2-fleet-plugin.git", + "clone_url": "https://github.com/jenkinsci/ec2-fleet-plugin.git", + "svn_url": "https://github.com/jenkinsci/ec2-fleet-plugin", + "homepage": null, + "size": 435, + "stargazers_count": 51, + "watchers_count": 51, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 44, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 34, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 44, + "open_issues": 34, + "watchers": 51, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 59481260, + "node_id": "MDEwOlJlcG9zaXRvcnk1OTQ4MTI2MA==", + "name": "community-gsoc2016-info", + "full_name": "jenkinsci/community-gsoc2016-info", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/community-gsoc2016-info", + "description": "GSoC2016 Info repo", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/community-gsoc2016-info", + "forks_url": "https://api.github.com/repos/jenkinsci/community-gsoc2016-info/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/community-gsoc2016-info/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/community-gsoc2016-info/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/community-gsoc2016-info/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/community-gsoc2016-info/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/community-gsoc2016-info/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/community-gsoc2016-info/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/community-gsoc2016-info/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/community-gsoc2016-info/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/community-gsoc2016-info/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/community-gsoc2016-info/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/community-gsoc2016-info/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/community-gsoc2016-info/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/community-gsoc2016-info/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/community-gsoc2016-info/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/community-gsoc2016-info/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/community-gsoc2016-info/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/community-gsoc2016-info/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/community-gsoc2016-info/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/community-gsoc2016-info/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/community-gsoc2016-info/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/community-gsoc2016-info/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/community-gsoc2016-info/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/community-gsoc2016-info/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/community-gsoc2016-info/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/community-gsoc2016-info/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/community-gsoc2016-info/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/community-gsoc2016-info/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/community-gsoc2016-info/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/community-gsoc2016-info/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/community-gsoc2016-info/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/community-gsoc2016-info/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/community-gsoc2016-info/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/community-gsoc2016-info/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/community-gsoc2016-info/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/community-gsoc2016-info/deployments", + "created_at": "2016-05-23T12:33:40Z", + "updated_at": "2016-05-23T14:04:11Z", + "pushed_at": "2016-05-23T12:33:41Z", + "git_url": "git://github.com/jenkinsci/community-gsoc2016-info.git", + "ssh_url": "git@github.com:jenkinsci/community-gsoc2016-info.git", + "clone_url": "https://github.com/jenkinsci/community-gsoc2016-info.git", + "svn_url": "https://github.com/jenkinsci/community-gsoc2016-info", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 59514337, + "node_id": "MDEwOlJlcG9zaXRvcnk1OTUxNDMzNw==", + "name": "codescan-plugin", + "full_name": "jenkinsci/codescan-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/codescan-plugin", + "description": "Jenkins plugin to run hosted CodeScan for Salesforce builds", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/codescan-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/codescan-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/codescan-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/codescan-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/codescan-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/codescan-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/codescan-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/codescan-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/codescan-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/codescan-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/codescan-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/codescan-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/codescan-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/codescan-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/codescan-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/codescan-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/codescan-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/codescan-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/codescan-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/codescan-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/codescan-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/codescan-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/codescan-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/codescan-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/codescan-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/codescan-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/codescan-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/codescan-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/codescan-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/codescan-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/codescan-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/codescan-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/codescan-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/codescan-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/codescan-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/codescan-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/codescan-plugin/deployments", + "created_at": "2016-05-23T19:59:58Z", + "updated_at": "2016-05-24T04:11:17Z", + "pushed_at": "2016-05-24T04:05:47Z", + "git_url": "git://github.com/jenkinsci/codescan-plugin.git", + "ssh_url": "git@github.com:jenkinsci/codescan-plugin.git", + "clone_url": "https://github.com/jenkinsci/codescan-plugin.git", + "svn_url": "https://github.com/jenkinsci/codescan-plugin", + "homepage": null, + "size": 11, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 59514651, + "node_id": "MDEwOlJlcG9zaXRvcnk1OTUxNDY1MQ==", + "name": "cisco-spark-plugin", + "full_name": "jenkinsci/cisco-spark-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/cisco-spark-plugin", + "description": "cisco spark plugin for jenkins", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/cisco-spark-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/cisco-spark-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/cisco-spark-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/cisco-spark-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/cisco-spark-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/cisco-spark-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/cisco-spark-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/cisco-spark-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/cisco-spark-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/cisco-spark-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/cisco-spark-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/cisco-spark-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/cisco-spark-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/cisco-spark-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/cisco-spark-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/cisco-spark-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/cisco-spark-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/cisco-spark-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/cisco-spark-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/cisco-spark-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/cisco-spark-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/cisco-spark-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/cisco-spark-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/cisco-spark-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/cisco-spark-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/cisco-spark-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/cisco-spark-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/cisco-spark-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/cisco-spark-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/cisco-spark-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/cisco-spark-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/cisco-spark-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/cisco-spark-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/cisco-spark-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/cisco-spark-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/cisco-spark-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/cisco-spark-plugin/deployments", + "created_at": "2016-05-23T20:05:07Z", + "updated_at": "2017-09-15T11:50:17Z", + "pushed_at": "2017-09-16T08:25:45Z", + "git_url": "git://github.com/jenkinsci/cisco-spark-plugin.git", + "ssh_url": "git@github.com:jenkinsci/cisco-spark-plugin.git", + "clone_url": "https://github.com/jenkinsci/cisco-spark-plugin.git", + "svn_url": "https://github.com/jenkinsci/cisco-spark-plugin", + "homepage": null, + "size": 1357, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 4, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 59514904, + "node_id": "MDEwOlJlcG9zaXRvcnk1OTUxNDkwNA==", + "name": "url-auth-sso-plugin", + "full_name": "jenkinsci/url-auth-sso-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/url-auth-sso-plugin", + "description": "Allows users to be logged in to Jenkins automatically when they are logged into another site.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/url-auth-sso-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/url-auth-sso-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/url-auth-sso-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/url-auth-sso-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/url-auth-sso-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/url-auth-sso-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/url-auth-sso-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/url-auth-sso-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/url-auth-sso-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/url-auth-sso-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/url-auth-sso-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/url-auth-sso-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/url-auth-sso-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/url-auth-sso-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/url-auth-sso-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/url-auth-sso-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/url-auth-sso-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/url-auth-sso-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/url-auth-sso-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/url-auth-sso-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/url-auth-sso-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/url-auth-sso-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/url-auth-sso-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/url-auth-sso-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/url-auth-sso-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/url-auth-sso-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/url-auth-sso-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/url-auth-sso-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/url-auth-sso-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/url-auth-sso-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/url-auth-sso-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/url-auth-sso-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/url-auth-sso-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/url-auth-sso-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/url-auth-sso-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/url-auth-sso-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/url-auth-sso-plugin/deployments", + "created_at": "2016-05-23T20:09:08Z", + "updated_at": "2019-05-08T07:52:54Z", + "pushed_at": "2019-10-08T12:30:31Z", + "git_url": "git://github.com/jenkinsci/url-auth-sso-plugin.git", + "ssh_url": "git@github.com:jenkinsci/url-auth-sso-plugin.git", + "clone_url": "https://github.com/jenkinsci/url-auth-sso-plugin.git", + "svn_url": "https://github.com/jenkinsci/url-auth-sso-plugin", + "homepage": null, + "size": 20, + "stargazers_count": 8, + "watchers_count": 8, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 7, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 7, + "open_issues": 1, + "watchers": 8, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 59515631, + "node_id": "MDEwOlJlcG9zaXRvcnk1OTUxNTYzMQ==", + "name": "pubsub-light-plugin", + "full_name": "jenkinsci/pubsub-light-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pubsub-light-plugin", + "description": "A simple Publish-Subscribe event bus module for Jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/pubsub-light-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pubsub-light-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pubsub-light-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pubsub-light-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pubsub-light-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pubsub-light-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pubsub-light-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pubsub-light-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pubsub-light-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pubsub-light-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pubsub-light-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pubsub-light-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pubsub-light-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pubsub-light-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pubsub-light-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pubsub-light-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pubsub-light-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pubsub-light-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pubsub-light-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pubsub-light-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pubsub-light-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pubsub-light-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pubsub-light-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pubsub-light-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pubsub-light-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pubsub-light-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pubsub-light-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pubsub-light-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pubsub-light-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pubsub-light-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pubsub-light-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pubsub-light-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pubsub-light-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pubsub-light-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pubsub-light-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pubsub-light-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pubsub-light-plugin/deployments", + "created_at": "2016-05-23T20:20:30Z", + "updated_at": "2019-10-19T10:49:01Z", + "pushed_at": "2019-10-19T10:48:59Z", + "git_url": "git://github.com/jenkinsci/pubsub-light-plugin.git", + "ssh_url": "git@github.com:jenkinsci/pubsub-light-plugin.git", + "clone_url": "https://github.com/jenkinsci/pubsub-light-plugin.git", + "svn_url": "https://github.com/jenkinsci/pubsub-light-plugin", + "homepage": "", + "size": 216, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": true, + "forks_count": 16, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 16, + "open_issues": 1, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 59515950, + "node_id": "MDEwOlJlcG9zaXRvcnk1OTUxNTk1MA==", + "name": "sse-gateway-plugin", + "full_name": "jenkinsci/sse-gateway-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/sse-gateway-plugin", + "description": "Server Sent Events (SSE) Gateway plugin for Jenkins.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/sse-gateway-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/sse-gateway-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/sse-gateway-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/sse-gateway-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/sse-gateway-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/sse-gateway-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/sse-gateway-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/sse-gateway-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/sse-gateway-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/sse-gateway-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/sse-gateway-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/sse-gateway-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/sse-gateway-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/sse-gateway-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/sse-gateway-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/sse-gateway-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/sse-gateway-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/sse-gateway-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/sse-gateway-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/sse-gateway-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/sse-gateway-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/sse-gateway-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/sse-gateway-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/sse-gateway-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/sse-gateway-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/sse-gateway-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/sse-gateway-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/sse-gateway-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/sse-gateway-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/sse-gateway-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/sse-gateway-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/sse-gateway-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/sse-gateway-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/sse-gateway-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/sse-gateway-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/sse-gateway-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/sse-gateway-plugin/deployments", + "created_at": "2016-05-23T20:25:40Z", + "updated_at": "2019-09-24T10:16:41Z", + "pushed_at": "2019-09-24T10:16:39Z", + "git_url": "git://github.com/jenkinsci/sse-gateway-plugin.git", + "ssh_url": "git@github.com:jenkinsci/sse-gateway-plugin.git", + "clone_url": "https://github.com/jenkinsci/sse-gateway-plugin.git", + "svn_url": "https://github.com/jenkinsci/sse-gateway-plugin", + "homepage": "", + "size": 1107, + "stargazers_count": 10, + "watchers_count": 10, + "language": "Java", + "has_issues": false, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 30, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 30, + "open_issues": 1, + "watchers": 10, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 59516261, + "node_id": "MDEwOlJlcG9zaXRvcnk1OTUxNjI2MQ==", + "name": "mdt-deployment-plugin", + "full_name": "jenkinsci/mdt-deployment-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/mdt-deployment-plugin", + "description": "MDT Deploy Plugin for jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/mdt-deployment-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/mdt-deployment-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/mdt-deployment-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/mdt-deployment-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/mdt-deployment-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/mdt-deployment-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/mdt-deployment-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/mdt-deployment-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/mdt-deployment-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/mdt-deployment-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/mdt-deployment-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/mdt-deployment-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/mdt-deployment-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/mdt-deployment-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/mdt-deployment-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/mdt-deployment-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/mdt-deployment-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/mdt-deployment-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/mdt-deployment-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/mdt-deployment-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/mdt-deployment-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/mdt-deployment-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/mdt-deployment-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/mdt-deployment-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/mdt-deployment-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/mdt-deployment-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/mdt-deployment-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/mdt-deployment-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/mdt-deployment-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/mdt-deployment-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/mdt-deployment-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/mdt-deployment-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/mdt-deployment-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/mdt-deployment-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/mdt-deployment-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/mdt-deployment-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/mdt-deployment-plugin/deployments", + "created_at": "2016-05-23T20:31:05Z", + "updated_at": "2018-10-15T22:42:48Z", + "pushed_at": "2016-06-01T14:31:41Z", + "git_url": "git://github.com/jenkinsci/mdt-deployment-plugin.git", + "ssh_url": "git@github.com:jenkinsci/mdt-deployment-plugin.git", + "clone_url": "https://github.com/jenkinsci/mdt-deployment-plugin.git", + "svn_url": "https://github.com/jenkinsci/mdt-deployment-plugin", + "homepage": null, + "size": 97, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 59516714, + "node_id": "MDEwOlJlcG9zaXRvcnk1OTUxNjcxNA==", + "name": "vsts-cd-plugin", + "full_name": "jenkinsci/vsts-cd-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/vsts-cd-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/vsts-cd-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/vsts-cd-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/vsts-cd-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/vsts-cd-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/vsts-cd-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/vsts-cd-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/vsts-cd-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/vsts-cd-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/vsts-cd-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/vsts-cd-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/vsts-cd-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/vsts-cd-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/vsts-cd-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/vsts-cd-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/vsts-cd-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/vsts-cd-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/vsts-cd-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/vsts-cd-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/vsts-cd-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/vsts-cd-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/vsts-cd-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/vsts-cd-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/vsts-cd-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/vsts-cd-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/vsts-cd-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/vsts-cd-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/vsts-cd-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/vsts-cd-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/vsts-cd-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/vsts-cd-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/vsts-cd-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/vsts-cd-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/vsts-cd-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/vsts-cd-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/vsts-cd-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/vsts-cd-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/vsts-cd-plugin/deployments", + "created_at": "2016-05-23T20:38:15Z", + "updated_at": "2016-07-29T15:22:58Z", + "pushed_at": "2016-10-07T18:11:08Z", + "git_url": "git://github.com/jenkinsci/vsts-cd-plugin.git", + "ssh_url": "git@github.com:jenkinsci/vsts-cd-plugin.git", + "clone_url": "https://github.com/jenkinsci/vsts-cd-plugin.git", + "svn_url": "https://github.com/jenkinsci/vsts-cd-plugin", + "homepage": null, + "size": 183, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 4, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 59517290, + "node_id": "MDEwOlJlcG9zaXRvcnk1OTUxNzI5MA==", + "name": "plumber-plugin", + "full_name": "jenkinsci/plumber-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/plumber-plugin", + "description": "A declarative DSL for Jenkins Pipeline. Tell the plumber what your pipeline should look like but not how to build it.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/plumber-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/plumber-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/plumber-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/plumber-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/plumber-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/plumber-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/plumber-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/plumber-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/plumber-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/plumber-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/plumber-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/plumber-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/plumber-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/plumber-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/plumber-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/plumber-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/plumber-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/plumber-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/plumber-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/plumber-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/plumber-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/plumber-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/plumber-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/plumber-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/plumber-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/plumber-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/plumber-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/plumber-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/plumber-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/plumber-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/plumber-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/plumber-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/plumber-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/plumber-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/plumber-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/plumber-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/plumber-plugin/deployments", + "created_at": "2016-05-23T20:47:30Z", + "updated_at": "2019-07-15T11:08:45Z", + "pushed_at": "2016-09-12T14:29:42Z", + "git_url": "git://github.com/jenkinsci/plumber-plugin.git", + "ssh_url": "git@github.com:jenkinsci/plumber-plugin.git", + "clone_url": "https://github.com/jenkinsci/plumber-plugin.git", + "svn_url": "https://github.com/jenkinsci/plumber-plugin", + "homepage": "", + "size": 333, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Groovy", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 5, + "open_issues": 0, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 59577677, + "node_id": "MDEwOlJlcG9zaXRvcnk1OTU3NzY3Nw==", + "name": "cucumber-annotation-indexer", + "full_name": "jenkinsci/cucumber-annotation-indexer", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/cucumber-annotation-indexer", + "description": "Index cucumber for Java annotations for efficient runtime discovery", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/cucumber-annotation-indexer", + "forks_url": "https://api.github.com/repos/jenkinsci/cucumber-annotation-indexer/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/cucumber-annotation-indexer/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/cucumber-annotation-indexer/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/cucumber-annotation-indexer/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/cucumber-annotation-indexer/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/cucumber-annotation-indexer/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/cucumber-annotation-indexer/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/cucumber-annotation-indexer/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/cucumber-annotation-indexer/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/cucumber-annotation-indexer/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/cucumber-annotation-indexer/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/cucumber-annotation-indexer/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/cucumber-annotation-indexer/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/cucumber-annotation-indexer/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/cucumber-annotation-indexer/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/cucumber-annotation-indexer/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/cucumber-annotation-indexer/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/cucumber-annotation-indexer/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/cucumber-annotation-indexer/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/cucumber-annotation-indexer/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/cucumber-annotation-indexer/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/cucumber-annotation-indexer/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/cucumber-annotation-indexer/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/cucumber-annotation-indexer/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/cucumber-annotation-indexer/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/cucumber-annotation-indexer/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/cucumber-annotation-indexer/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/cucumber-annotation-indexer/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/cucumber-annotation-indexer/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/cucumber-annotation-indexer/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/cucumber-annotation-indexer/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/cucumber-annotation-indexer/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/cucumber-annotation-indexer/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/cucumber-annotation-indexer/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/cucumber-annotation-indexer/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/cucumber-annotation-indexer/deployments", + "created_at": "2016-05-24T13:55:04Z", + "updated_at": "2016-05-24T13:55:12Z", + "pushed_at": "2016-05-24T14:12:39Z", + "git_url": "git://github.com/jenkinsci/cucumber-annotation-indexer.git", + "ssh_url": "git@github.com:jenkinsci/cucumber-annotation-indexer.git", + "clone_url": "https://github.com/jenkinsci/cucumber-annotation-indexer.git", + "svn_url": "https://github.com/jenkinsci/cucumber-annotation-indexer", + "homepage": null, + "size": 115, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 60247502, + "node_id": "MDEwOlJlcG9zaXRvcnk2MDI0NzUwMg==", + "name": "bouncycastle-api-plugin", + "full_name": "jenkinsci/bouncycastle-api-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/bouncycastle-api-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/bouncycastle-api-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/bouncycastle-api-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/bouncycastle-api-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/bouncycastle-api-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/bouncycastle-api-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/bouncycastle-api-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/bouncycastle-api-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/bouncycastle-api-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/bouncycastle-api-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/bouncycastle-api-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/bouncycastle-api-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/bouncycastle-api-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/bouncycastle-api-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/bouncycastle-api-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/bouncycastle-api-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/bouncycastle-api-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/bouncycastle-api-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/bouncycastle-api-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/bouncycastle-api-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/bouncycastle-api-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/bouncycastle-api-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/bouncycastle-api-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/bouncycastle-api-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/bouncycastle-api-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/bouncycastle-api-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/bouncycastle-api-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/bouncycastle-api-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/bouncycastle-api-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/bouncycastle-api-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/bouncycastle-api-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/bouncycastle-api-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/bouncycastle-api-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/bouncycastle-api-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/bouncycastle-api-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/bouncycastle-api-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/bouncycastle-api-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/bouncycastle-api-plugin/deployments", + "created_at": "2016-06-02T08:44:12Z", + "updated_at": "2018-12-03T12:58:02Z", + "pushed_at": "2019-09-24T09:03:51Z", + "git_url": "git://github.com/jenkinsci/bouncycastle-api-plugin.git", + "ssh_url": "git@github.com:jenkinsci/bouncycastle-api-plugin.git", + "clone_url": "https://github.com/jenkinsci/bouncycastle-api-plugin.git", + "svn_url": "https://github.com/jenkinsci/bouncycastle-api-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Bouncy+Castle+API+Plugin", + "size": 71, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 15, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 15, + "open_issues": 2, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 60301174, + "node_id": "MDEwOlJlcG9zaXRvcnk2MDMwMTE3NA==", + "name": "office-365-connector-plugin", + "full_name": "jenkinsci/office-365-connector-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/office-365-connector-plugin", + "description": "Office 365 Connector plugin sends jobs status notifications to Microsoft Teams or Outlook", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/office-365-connector-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/office-365-connector-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/office-365-connector-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/office-365-connector-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/office-365-connector-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/office-365-connector-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/office-365-connector-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/office-365-connector-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/office-365-connector-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/office-365-connector-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/office-365-connector-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/office-365-connector-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/office-365-connector-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/office-365-connector-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/office-365-connector-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/office-365-connector-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/office-365-connector-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/office-365-connector-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/office-365-connector-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/office-365-connector-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/office-365-connector-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/office-365-connector-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/office-365-connector-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/office-365-connector-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/office-365-connector-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/office-365-connector-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/office-365-connector-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/office-365-connector-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/office-365-connector-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/office-365-connector-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/office-365-connector-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/office-365-connector-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/office-365-connector-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/office-365-connector-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/office-365-connector-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/office-365-connector-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/office-365-connector-plugin/deployments", + "created_at": "2016-06-02T22:19:45Z", + "updated_at": "2019-10-16T05:31:43Z", + "pushed_at": "2019-09-02T20:17:24Z", + "git_url": "git://github.com/jenkinsci/office-365-connector-plugin.git", + "ssh_url": "git@github.com:jenkinsci/office-365-connector-plugin.git", + "clone_url": "https://github.com/jenkinsci/office-365-connector-plugin.git", + "svn_url": "https://github.com/jenkinsci/office-365-connector-plugin", + "homepage": "", + "size": 82164, + "stargazers_count": 29, + "watchers_count": 29, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 49, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 49, + "open_issues": 3, + "watchers": 29, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 60708675, + "node_id": "MDEwOlJlcG9zaXRvcnk2MDcwODY3NQ==", + "name": "spotinst-plugin", + "full_name": "jenkinsci/spotinst-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/spotinst-plugin", + "description": "Jenkins plugin to integrate with Spotinst", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/spotinst-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/spotinst-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/spotinst-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/spotinst-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/spotinst-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/spotinst-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/spotinst-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/spotinst-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/spotinst-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/spotinst-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/spotinst-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/spotinst-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/spotinst-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/spotinst-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/spotinst-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/spotinst-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/spotinst-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/spotinst-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/spotinst-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/spotinst-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/spotinst-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/spotinst-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/spotinst-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/spotinst-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/spotinst-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/spotinst-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/spotinst-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/spotinst-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/spotinst-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/spotinst-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/spotinst-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/spotinst-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/spotinst-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/spotinst-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/spotinst-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/spotinst-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/spotinst-plugin/deployments", + "created_at": "2016-06-08T15:30:17Z", + "updated_at": "2019-09-12T09:23:36Z", + "pushed_at": "2019-09-12T09:23:34Z", + "git_url": "git://github.com/jenkinsci/spotinst-plugin.git", + "ssh_url": "git@github.com:jenkinsci/spotinst-plugin.git", + "clone_url": "https://github.com/jenkinsci/spotinst-plugin.git", + "svn_url": "https://github.com/jenkinsci/spotinst-plugin", + "homepage": null, + "size": 186, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 5, + "open_issues": 0, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 60793467, + "node_id": "MDEwOlJlcG9zaXRvcnk2MDc5MzQ2Nw==", + "name": "deadmanssnitch-plugin", + "full_name": "jenkinsci/deadmanssnitch-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/deadmanssnitch-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/deadmanssnitch-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/deadmanssnitch-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/deadmanssnitch-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/deadmanssnitch-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/deadmanssnitch-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/deadmanssnitch-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/deadmanssnitch-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/deadmanssnitch-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/deadmanssnitch-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/deadmanssnitch-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/deadmanssnitch-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/deadmanssnitch-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/deadmanssnitch-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/deadmanssnitch-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/deadmanssnitch-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/deadmanssnitch-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/deadmanssnitch-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/deadmanssnitch-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/deadmanssnitch-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/deadmanssnitch-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/deadmanssnitch-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/deadmanssnitch-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/deadmanssnitch-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/deadmanssnitch-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/deadmanssnitch-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/deadmanssnitch-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/deadmanssnitch-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/deadmanssnitch-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/deadmanssnitch-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/deadmanssnitch-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/deadmanssnitch-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/deadmanssnitch-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/deadmanssnitch-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/deadmanssnitch-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/deadmanssnitch-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/deadmanssnitch-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/deadmanssnitch-plugin/deployments", + "created_at": "2016-06-09T17:27:25Z", + "updated_at": "2016-06-09T17:27:31Z", + "pushed_at": "2016-06-11T16:03:09Z", + "git_url": "git://github.com/jenkinsci/deadmanssnitch-plugin.git", + "ssh_url": "git@github.com:jenkinsci/deadmanssnitch-plugin.git", + "clone_url": "https://github.com/jenkinsci/deadmanssnitch-plugin.git", + "svn_url": "https://github.com/jenkinsci/deadmanssnitch-plugin", + "homepage": null, + "size": 12, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 60989601, + "node_id": "MDEwOlJlcG9zaXRvcnk2MDk4OTYwMQ==", + "name": "groovy-pipeline-model", + "full_name": "jenkinsci/groovy-pipeline-model", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/groovy-pipeline-model", + "description": "PoC of pipeline visual editor data model in Groovy", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/groovy-pipeline-model", + "forks_url": "https://api.github.com/repos/jenkinsci/groovy-pipeline-model/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/groovy-pipeline-model/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/groovy-pipeline-model/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/groovy-pipeline-model/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/groovy-pipeline-model/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/groovy-pipeline-model/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/groovy-pipeline-model/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/groovy-pipeline-model/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/groovy-pipeline-model/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/groovy-pipeline-model/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/groovy-pipeline-model/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/groovy-pipeline-model/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/groovy-pipeline-model/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/groovy-pipeline-model/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/groovy-pipeline-model/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/groovy-pipeline-model/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/groovy-pipeline-model/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/groovy-pipeline-model/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/groovy-pipeline-model/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/groovy-pipeline-model/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/groovy-pipeline-model/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/groovy-pipeline-model/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/groovy-pipeline-model/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/groovy-pipeline-model/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/groovy-pipeline-model/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/groovy-pipeline-model/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/groovy-pipeline-model/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/groovy-pipeline-model/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/groovy-pipeline-model/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/groovy-pipeline-model/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/groovy-pipeline-model/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/groovy-pipeline-model/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/groovy-pipeline-model/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/groovy-pipeline-model/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/groovy-pipeline-model/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/groovy-pipeline-model/deployments", + "created_at": "2016-06-12T21:15:33Z", + "updated_at": "2016-06-12T21:15:52Z", + "pushed_at": "2016-06-12T21:38:30Z", + "git_url": "git://github.com/jenkinsci/groovy-pipeline-model.git", + "ssh_url": "git@github.com:jenkinsci/groovy-pipeline-model.git", + "clone_url": "https://github.com/jenkinsci/groovy-pipeline-model.git", + "svn_url": "https://github.com/jenkinsci/groovy-pipeline-model", + "homepage": null, + "size": 14, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 61154079, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTE1NDA3OQ==", + "name": "jenkins-test-harness-htmlunit", + "full_name": "jenkinsci/jenkins-test-harness-htmlunit", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jenkins-test-harness-htmlunit", + "description": "HtmlUnit dependency to use in the Jenkins Test Harness", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness-htmlunit", + "forks_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness-htmlunit/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness-htmlunit/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness-htmlunit/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness-htmlunit/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness-htmlunit/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness-htmlunit/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness-htmlunit/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness-htmlunit/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness-htmlunit/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness-htmlunit/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness-htmlunit/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness-htmlunit/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness-htmlunit/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness-htmlunit/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness-htmlunit/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness-htmlunit/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness-htmlunit/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness-htmlunit/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness-htmlunit/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness-htmlunit/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness-htmlunit/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness-htmlunit/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness-htmlunit/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness-htmlunit/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness-htmlunit/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness-htmlunit/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness-htmlunit/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness-htmlunit/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness-htmlunit/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness-htmlunit/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness-htmlunit/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness-htmlunit/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness-htmlunit/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness-htmlunit/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness-htmlunit/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jenkins-test-harness-htmlunit/deployments", + "created_at": "2016-06-14T20:36:59Z", + "updated_at": "2019-01-18T18:31:40Z", + "pushed_at": "2019-10-09T20:20:06Z", + "git_url": "git://github.com/jenkinsci/jenkins-test-harness-htmlunit.git", + "ssh_url": "git@github.com:jenkinsci/jenkins-test-harness-htmlunit.git", + "clone_url": "https://github.com/jenkinsci/jenkins-test-harness-htmlunit.git", + "svn_url": "https://github.com/jenkinsci/jenkins-test-harness-htmlunit", + "homepage": null, + "size": 16, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 5, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 61329107, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTMyOTEwNw==", + "name": "ws-ws-replacement-plugin", + "full_name": "jenkinsci/ws-ws-replacement-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/ws-ws-replacement-plugin", + "description": "Jenkins plugin to replace spaces in job names when created on disk", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/ws-ws-replacement-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/ws-ws-replacement-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/ws-ws-replacement-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/ws-ws-replacement-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/ws-ws-replacement-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/ws-ws-replacement-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/ws-ws-replacement-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/ws-ws-replacement-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/ws-ws-replacement-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/ws-ws-replacement-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/ws-ws-replacement-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/ws-ws-replacement-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/ws-ws-replacement-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/ws-ws-replacement-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/ws-ws-replacement-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/ws-ws-replacement-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/ws-ws-replacement-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/ws-ws-replacement-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/ws-ws-replacement-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/ws-ws-replacement-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/ws-ws-replacement-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/ws-ws-replacement-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/ws-ws-replacement-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/ws-ws-replacement-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/ws-ws-replacement-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/ws-ws-replacement-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/ws-ws-replacement-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/ws-ws-replacement-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/ws-ws-replacement-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/ws-ws-replacement-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/ws-ws-replacement-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/ws-ws-replacement-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/ws-ws-replacement-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/ws-ws-replacement-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/ws-ws-replacement-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/ws-ws-replacement-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/ws-ws-replacement-plugin/deployments", + "created_at": "2016-06-16T22:12:53Z", + "updated_at": "2017-08-11T10:46:38Z", + "pushed_at": "2019-10-08T16:34:01Z", + "git_url": "git://github.com/jenkinsci/ws-ws-replacement-plugin.git", + "ssh_url": "git@github.com:jenkinsci/ws-ws-replacement-plugin.git", + "clone_url": "https://github.com/jenkinsci/ws-ws-replacement-plugin.git", + "svn_url": "https://github.com/jenkinsci/ws-ws-replacement-plugin", + "homepage": "", + "size": 16, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 3, + "open_issues": 2, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 61329234, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTMyOTIzNA==", + "name": "openshift-sync-plugin", + "full_name": "jenkinsci/openshift-sync-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/openshift-sync-plugin", + "description": "Synchronizes OpenShift BuildConfig objects as Jenkins jobs and synchronizes job status into OpenShift Build objects", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/openshift-sync-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/openshift-sync-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/openshift-sync-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/openshift-sync-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/openshift-sync-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/openshift-sync-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/openshift-sync-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/openshift-sync-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/openshift-sync-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/openshift-sync-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/openshift-sync-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/openshift-sync-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/openshift-sync-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/openshift-sync-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/openshift-sync-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/openshift-sync-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/openshift-sync-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/openshift-sync-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/openshift-sync-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/openshift-sync-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/openshift-sync-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/openshift-sync-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/openshift-sync-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/openshift-sync-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/openshift-sync-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/openshift-sync-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/openshift-sync-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/openshift-sync-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/openshift-sync-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/openshift-sync-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/openshift-sync-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/openshift-sync-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/openshift-sync-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/openshift-sync-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/openshift-sync-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/openshift-sync-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/openshift-sync-plugin/deployments", + "created_at": "2016-06-16T22:15:27Z", + "updated_at": "2019-10-23T14:37:21Z", + "pushed_at": "2019-09-26T11:03:44Z", + "git_url": "git://github.com/jenkinsci/openshift-sync-plugin.git", + "ssh_url": "git@github.com:jenkinsci/openshift-sync-plugin.git", + "clone_url": "https://github.com/jenkinsci/openshift-sync-plugin.git", + "svn_url": "https://github.com/jenkinsci/openshift-sync-plugin", + "homepage": "", + "size": 884, + "stargazers_count": 13, + "watchers_count": 13, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 62, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 62, + "open_issues": 0, + "watchers": 13, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 61347089, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTM0NzA4OQ==", + "name": "blueocean-acceptance-test", + "full_name": "jenkinsci/blueocean-acceptance-test", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/blueocean-acceptance-test", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/blueocean-acceptance-test", + "forks_url": "https://api.github.com/repos/jenkinsci/blueocean-acceptance-test/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/blueocean-acceptance-test/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/blueocean-acceptance-test/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/blueocean-acceptance-test/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/blueocean-acceptance-test/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/blueocean-acceptance-test/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/blueocean-acceptance-test/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/blueocean-acceptance-test/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/blueocean-acceptance-test/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/blueocean-acceptance-test/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/blueocean-acceptance-test/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/blueocean-acceptance-test/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/blueocean-acceptance-test/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/blueocean-acceptance-test/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/blueocean-acceptance-test/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/blueocean-acceptance-test/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/blueocean-acceptance-test/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/blueocean-acceptance-test/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/blueocean-acceptance-test/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/blueocean-acceptance-test/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/blueocean-acceptance-test/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/blueocean-acceptance-test/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/blueocean-acceptance-test/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/blueocean-acceptance-test/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/blueocean-acceptance-test/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/blueocean-acceptance-test/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/blueocean-acceptance-test/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/blueocean-acceptance-test/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/blueocean-acceptance-test/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/blueocean-acceptance-test/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/blueocean-acceptance-test/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/blueocean-acceptance-test/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/blueocean-acceptance-test/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/blueocean-acceptance-test/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/blueocean-acceptance-test/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/blueocean-acceptance-test/deployments", + "created_at": "2016-06-17T05:10:25Z", + "updated_at": "2019-08-21T20:54:45Z", + "pushed_at": "2017-05-18T23:51:50Z", + "git_url": "git://github.com/jenkinsci/blueocean-acceptance-test.git", + "ssh_url": "git@github.com:jenkinsci/blueocean-acceptance-test.git", + "clone_url": "https://github.com/jenkinsci/blueocean-acceptance-test.git", + "svn_url": "https://github.com/jenkinsci/blueocean-acceptance-test", + "homepage": null, + "size": 947, + "stargazers_count": 6, + "watchers_count": 6, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": true, + "forks_count": 20, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 20, + "open_issues": 0, + "watchers": 6, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 61433191, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTQzMzE5MQ==", + "name": "codebeamer-xunit-importer-plugin", + "full_name": "jenkinsci/codebeamer-xunit-importer-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/codebeamer-xunit-importer-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/codebeamer-xunit-importer-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/codebeamer-xunit-importer-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/codebeamer-xunit-importer-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/codebeamer-xunit-importer-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/codebeamer-xunit-importer-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/codebeamer-xunit-importer-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/codebeamer-xunit-importer-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/codebeamer-xunit-importer-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/codebeamer-xunit-importer-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/codebeamer-xunit-importer-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/codebeamer-xunit-importer-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/codebeamer-xunit-importer-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/codebeamer-xunit-importer-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/codebeamer-xunit-importer-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/codebeamer-xunit-importer-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/codebeamer-xunit-importer-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/codebeamer-xunit-importer-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/codebeamer-xunit-importer-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/codebeamer-xunit-importer-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/codebeamer-xunit-importer-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/codebeamer-xunit-importer-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/codebeamer-xunit-importer-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/codebeamer-xunit-importer-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/codebeamer-xunit-importer-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/codebeamer-xunit-importer-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/codebeamer-xunit-importer-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/codebeamer-xunit-importer-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/codebeamer-xunit-importer-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/codebeamer-xunit-importer-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/codebeamer-xunit-importer-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/codebeamer-xunit-importer-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/codebeamer-xunit-importer-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/codebeamer-xunit-importer-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/codebeamer-xunit-importer-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/codebeamer-xunit-importer-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/codebeamer-xunit-importer-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/codebeamer-xunit-importer-plugin/deployments", + "created_at": "2016-06-18T12:49:15Z", + "updated_at": "2019-05-24T14:32:56Z", + "pushed_at": "2019-05-24T14:32:55Z", + "git_url": "git://github.com/jenkinsci/codebeamer-xunit-importer-plugin.git", + "ssh_url": "git@github.com:jenkinsci/codebeamer-xunit-importer-plugin.git", + "clone_url": "https://github.com/jenkinsci/codebeamer-xunit-importer-plugin.git", + "svn_url": "https://github.com/jenkinsci/codebeamer-xunit-importer-plugin", + "homepage": null, + "size": 74, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 61433408, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTQzMzQwOA==", + "name": "parasoft-findings-plugin", + "full_name": "jenkinsci/parasoft-findings-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/parasoft-findings-plugin", + "description": "Parasoft Findings Plugin for Jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/parasoft-findings-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/parasoft-findings-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/parasoft-findings-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/parasoft-findings-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/parasoft-findings-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/parasoft-findings-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/parasoft-findings-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/parasoft-findings-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/parasoft-findings-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/parasoft-findings-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/parasoft-findings-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/parasoft-findings-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/parasoft-findings-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/parasoft-findings-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/parasoft-findings-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/parasoft-findings-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/parasoft-findings-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/parasoft-findings-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/parasoft-findings-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/parasoft-findings-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/parasoft-findings-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/parasoft-findings-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/parasoft-findings-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/parasoft-findings-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/parasoft-findings-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/parasoft-findings-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/parasoft-findings-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/parasoft-findings-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/parasoft-findings-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/parasoft-findings-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/parasoft-findings-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/parasoft-findings-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/parasoft-findings-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/parasoft-findings-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/parasoft-findings-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/parasoft-findings-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/parasoft-findings-plugin/deployments", + "created_at": "2016-06-18T12:54:47Z", + "updated_at": "2019-10-25T12:57:56Z", + "pushed_at": "2019-10-25T12:57:54Z", + "git_url": "git://github.com/jenkinsci/parasoft-findings-plugin.git", + "ssh_url": "git@github.com:jenkinsci/parasoft-findings-plugin.git", + "clone_url": "https://github.com/jenkinsci/parasoft-findings-plugin.git", + "svn_url": "https://github.com/jenkinsci/parasoft-findings-plugin", + "homepage": "https://plugins.jenkins.io/parasoft-findings", + "size": 89926, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 5, + "open_issues": 1, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 61433599, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTQzMzU5OQ==", + "name": "view-cloner-plugin", + "full_name": "jenkinsci/view-cloner-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/view-cloner-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/view-cloner-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/view-cloner-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/view-cloner-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/view-cloner-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/view-cloner-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/view-cloner-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/view-cloner-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/view-cloner-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/view-cloner-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/view-cloner-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/view-cloner-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/view-cloner-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/view-cloner-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/view-cloner-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/view-cloner-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/view-cloner-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/view-cloner-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/view-cloner-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/view-cloner-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/view-cloner-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/view-cloner-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/view-cloner-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/view-cloner-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/view-cloner-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/view-cloner-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/view-cloner-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/view-cloner-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/view-cloner-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/view-cloner-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/view-cloner-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/view-cloner-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/view-cloner-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/view-cloner-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/view-cloner-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/view-cloner-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/view-cloner-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/view-cloner-plugin/deployments", + "created_at": "2016-06-18T12:59:32Z", + "updated_at": "2016-06-19T07:21:17Z", + "pushed_at": "2019-10-08T16:35:52Z", + "git_url": "git://github.com/jenkinsci/view-cloner-plugin.git", + "ssh_url": "git@github.com:jenkinsci/view-cloner-plugin.git", + "clone_url": "https://github.com/jenkinsci/view-cloner-plugin.git", + "svn_url": "https://github.com/jenkinsci/view-cloner-plugin", + "homepage": null, + "size": 23, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 2, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 61433718, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTQzMzcxOA==", + "name": "kubernetes-ci-plugin", + "full_name": "jenkinsci/kubernetes-ci-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/kubernetes-ci-plugin", + "description": "Kubernetes CI Plugin simplifies the integration of Kubernetes and Jenkins in order to provide an easy way to implement CI/CD scenarios based on Charts", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/kubernetes-ci-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/kubernetes-ci-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/kubernetes-ci-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/kubernetes-ci-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/kubernetes-ci-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/kubernetes-ci-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/kubernetes-ci-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/kubernetes-ci-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/kubernetes-ci-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/kubernetes-ci-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/kubernetes-ci-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/kubernetes-ci-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/kubernetes-ci-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/kubernetes-ci-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/kubernetes-ci-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/kubernetes-ci-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/kubernetes-ci-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/kubernetes-ci-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/kubernetes-ci-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/kubernetes-ci-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/kubernetes-ci-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/kubernetes-ci-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/kubernetes-ci-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/kubernetes-ci-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/kubernetes-ci-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/kubernetes-ci-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/kubernetes-ci-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/kubernetes-ci-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/kubernetes-ci-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/kubernetes-ci-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/kubernetes-ci-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/kubernetes-ci-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/kubernetes-ci-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/kubernetes-ci-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/kubernetes-ci-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/kubernetes-ci-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/kubernetes-ci-plugin/deployments", + "created_at": "2016-06-18T13:02:34Z", + "updated_at": "2019-09-13T15:32:59Z", + "pushed_at": "2017-10-18T11:06:27Z", + "git_url": "git://github.com/jenkinsci/kubernetes-ci-plugin.git", + "ssh_url": "git@github.com:jenkinsci/kubernetes-ci-plugin.git", + "clone_url": "https://github.com/jenkinsci/kubernetes-ci-plugin.git", + "svn_url": "https://github.com/jenkinsci/kubernetes-ci-plugin", + "homepage": "", + "size": 476, + "stargazers_count": 47, + "watchers_count": 47, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 21, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 21, + "open_issues": 0, + "watchers": 47, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 61433804, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTQzMzgwNA==", + "name": "kubernetes-pipeline-plugin", + "full_name": "jenkinsci/kubernetes-pipeline-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/kubernetes-pipeline-plugin", + "description": "Kubernetes Pipeline is Jenkins plugin which extends Jenkins Pipeline to provide native support for using Kubernetes pods, secrets and volumes to perform builds", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/kubernetes-pipeline-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/kubernetes-pipeline-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/kubernetes-pipeline-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/kubernetes-pipeline-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/kubernetes-pipeline-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/kubernetes-pipeline-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/kubernetes-pipeline-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/kubernetes-pipeline-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/kubernetes-pipeline-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/kubernetes-pipeline-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/kubernetes-pipeline-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/kubernetes-pipeline-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/kubernetes-pipeline-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/kubernetes-pipeline-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/kubernetes-pipeline-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/kubernetes-pipeline-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/kubernetes-pipeline-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/kubernetes-pipeline-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/kubernetes-pipeline-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/kubernetes-pipeline-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/kubernetes-pipeline-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/kubernetes-pipeline-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/kubernetes-pipeline-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/kubernetes-pipeline-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/kubernetes-pipeline-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/kubernetes-pipeline-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/kubernetes-pipeline-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/kubernetes-pipeline-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/kubernetes-pipeline-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/kubernetes-pipeline-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/kubernetes-pipeline-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/kubernetes-pipeline-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/kubernetes-pipeline-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/kubernetes-pipeline-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/kubernetes-pipeline-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/kubernetes-pipeline-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/kubernetes-pipeline-plugin/deployments", + "created_at": "2016-06-18T13:04:58Z", + "updated_at": "2019-09-24T15:29:34Z", + "pushed_at": "2019-10-08T11:19:29Z", + "git_url": "git://github.com/jenkinsci/kubernetes-pipeline-plugin.git", + "ssh_url": "git@github.com:jenkinsci/kubernetes-pipeline-plugin.git", + "clone_url": "https://github.com/jenkinsci/kubernetes-pipeline-plugin.git", + "svn_url": "https://github.com/jenkinsci/kubernetes-pipeline-plugin", + "homepage": "", + "size": 450, + "stargazers_count": 125, + "watchers_count": 125, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 69, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 69, + "open_issues": 3, + "watchers": 125, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 61449300, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTQ0OTMwMA==", + "name": "aqua-security-scanner-plugin", + "full_name": "jenkinsci/aqua-security-scanner-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/aqua-security-scanner-plugin", + "description": "Jenkins plugin for image security scanning by Aqua Security", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/aqua-security-scanner-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/aqua-security-scanner-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/aqua-security-scanner-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/aqua-security-scanner-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/aqua-security-scanner-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/aqua-security-scanner-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/aqua-security-scanner-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/aqua-security-scanner-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/aqua-security-scanner-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/aqua-security-scanner-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/aqua-security-scanner-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/aqua-security-scanner-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/aqua-security-scanner-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/aqua-security-scanner-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/aqua-security-scanner-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/aqua-security-scanner-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/aqua-security-scanner-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/aqua-security-scanner-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/aqua-security-scanner-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/aqua-security-scanner-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/aqua-security-scanner-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/aqua-security-scanner-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/aqua-security-scanner-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/aqua-security-scanner-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/aqua-security-scanner-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/aqua-security-scanner-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/aqua-security-scanner-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/aqua-security-scanner-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/aqua-security-scanner-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/aqua-security-scanner-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/aqua-security-scanner-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/aqua-security-scanner-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/aqua-security-scanner-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/aqua-security-scanner-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/aqua-security-scanner-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/aqua-security-scanner-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/aqua-security-scanner-plugin/deployments", + "created_at": "2016-06-18T19:31:25Z", + "updated_at": "2019-10-22T18:19:25Z", + "pushed_at": "2019-10-10T06:38:36Z", + "git_url": "git://github.com/jenkinsci/aqua-security-scanner-plugin.git", + "ssh_url": "git@github.com:jenkinsci/aqua-security-scanner-plugin.git", + "clone_url": "https://github.com/jenkinsci/aqua-security-scanner-plugin.git", + "svn_url": "https://github.com/jenkinsci/aqua-security-scanner-plugin", + "homepage": "", + "size": 142, + "stargazers_count": 8, + "watchers_count": 8, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 16, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 16, + "open_issues": 0, + "watchers": 8, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 61449487, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTQ0OTQ4Nw==", + "name": "restricted-register-plugin", + "full_name": "jenkinsci/restricted-register-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/restricted-register-plugin", + "description": "Restricted registration plugin for Jenkins CI", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/restricted-register-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/restricted-register-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/restricted-register-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/restricted-register-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/restricted-register-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/restricted-register-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/restricted-register-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/restricted-register-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/restricted-register-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/restricted-register-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/restricted-register-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/restricted-register-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/restricted-register-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/restricted-register-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/restricted-register-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/restricted-register-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/restricted-register-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/restricted-register-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/restricted-register-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/restricted-register-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/restricted-register-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/restricted-register-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/restricted-register-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/restricted-register-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/restricted-register-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/restricted-register-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/restricted-register-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/restricted-register-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/restricted-register-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/restricted-register-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/restricted-register-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/restricted-register-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/restricted-register-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/restricted-register-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/restricted-register-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/restricted-register-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/restricted-register-plugin/deployments", + "created_at": "2016-06-18T19:36:31Z", + "updated_at": "2016-06-20T08:22:34Z", + "pushed_at": "2016-06-20T09:12:56Z", + "git_url": "git://github.com/jenkinsci/restricted-register-plugin.git", + "ssh_url": "git@github.com:jenkinsci/restricted-register-plugin.git", + "clone_url": "https://github.com/jenkinsci/restricted-register-plugin.git", + "svn_url": "https://github.com/jenkinsci/restricted-register-plugin", + "homepage": null, + "size": 118, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 61449599, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTQ0OTU5OQ==", + "name": "nvm-wrapper-plugin", + "full_name": "jenkinsci/nvm-wrapper-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/nvm-wrapper-plugin", + "description": "Jenkins new nvm Plugin ", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/nvm-wrapper-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/nvm-wrapper-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/nvm-wrapper-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/nvm-wrapper-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/nvm-wrapper-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/nvm-wrapper-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/nvm-wrapper-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/nvm-wrapper-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/nvm-wrapper-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/nvm-wrapper-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/nvm-wrapper-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/nvm-wrapper-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/nvm-wrapper-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/nvm-wrapper-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/nvm-wrapper-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/nvm-wrapper-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/nvm-wrapper-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/nvm-wrapper-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/nvm-wrapper-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/nvm-wrapper-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/nvm-wrapper-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/nvm-wrapper-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/nvm-wrapper-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/nvm-wrapper-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/nvm-wrapper-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/nvm-wrapper-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/nvm-wrapper-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/nvm-wrapper-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/nvm-wrapper-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/nvm-wrapper-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/nvm-wrapper-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/nvm-wrapper-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/nvm-wrapper-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/nvm-wrapper-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/nvm-wrapper-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/nvm-wrapper-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/nvm-wrapper-plugin/deployments", + "created_at": "2016-06-18T19:39:31Z", + "updated_at": "2019-06-20T15:59:21Z", + "pushed_at": "2019-04-05T18:10:40Z", + "git_url": "git://github.com/jenkinsci/nvm-wrapper-plugin.git", + "ssh_url": "git@github.com:jenkinsci/nvm-wrapper-plugin.git", + "clone_url": "https://github.com/jenkinsci/nvm-wrapper-plugin.git", + "svn_url": "https://github.com/jenkinsci/nvm-wrapper-plugin", + "homepage": null, + "size": 7266, + "stargazers_count": 21, + "watchers_count": 21, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 16, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 16, + "open_issues": 0, + "watchers": 21, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 61962209, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTk2MjIwOQ==", + "name": "capability-annotation", + "full_name": "jenkinsci/capability-annotation", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/capability-annotation", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/capability-annotation", + "forks_url": "https://api.github.com/repos/jenkinsci/capability-annotation/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/capability-annotation/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/capability-annotation/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/capability-annotation/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/capability-annotation/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/capability-annotation/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/capability-annotation/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/capability-annotation/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/capability-annotation/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/capability-annotation/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/capability-annotation/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/capability-annotation/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/capability-annotation/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/capability-annotation/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/capability-annotation/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/capability-annotation/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/capability-annotation/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/capability-annotation/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/capability-annotation/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/capability-annotation/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/capability-annotation/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/capability-annotation/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/capability-annotation/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/capability-annotation/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/capability-annotation/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/capability-annotation/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/capability-annotation/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/capability-annotation/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/capability-annotation/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/capability-annotation/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/capability-annotation/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/capability-annotation/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/capability-annotation/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/capability-annotation/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/capability-annotation/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/capability-annotation/deployments", + "created_at": "2016-06-25T21:27:07Z", + "updated_at": "2016-06-25T21:27:13Z", + "pushed_at": "2017-06-13T07:53:34Z", + "git_url": "git://github.com/jenkinsci/capability-annotation.git", + "ssh_url": "git@github.com:jenkinsci/capability-annotation.git", + "clone_url": "https://github.com/jenkinsci/capability-annotation.git", + "svn_url": "https://github.com/jenkinsci/capability-annotation", + "homepage": null, + "size": 21, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 61962626, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTk2MjYyNg==", + "name": "browserstack-integration-plugin", + "full_name": "jenkinsci/browserstack-integration-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/browserstack-integration-plugin", + "description": "This plugin allows you to integrate with BrowserStack.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/browserstack-integration-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/browserstack-integration-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/browserstack-integration-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/browserstack-integration-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/browserstack-integration-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/browserstack-integration-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/browserstack-integration-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/browserstack-integration-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/browserstack-integration-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/browserstack-integration-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/browserstack-integration-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/browserstack-integration-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/browserstack-integration-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/browserstack-integration-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/browserstack-integration-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/browserstack-integration-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/browserstack-integration-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/browserstack-integration-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/browserstack-integration-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/browserstack-integration-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/browserstack-integration-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/browserstack-integration-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/browserstack-integration-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/browserstack-integration-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/browserstack-integration-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/browserstack-integration-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/browserstack-integration-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/browserstack-integration-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/browserstack-integration-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/browserstack-integration-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/browserstack-integration-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/browserstack-integration-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/browserstack-integration-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/browserstack-integration-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/browserstack-integration-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/browserstack-integration-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/browserstack-integration-plugin/deployments", + "created_at": "2016-06-25T21:40:46Z", + "updated_at": "2019-08-15T01:59:07Z", + "pushed_at": "2019-02-08T08:03:59Z", + "git_url": "git://github.com/jenkinsci/browserstack-integration-plugin.git", + "ssh_url": "git@github.com:jenkinsci/browserstack-integration-plugin.git", + "clone_url": "https://github.com/jenkinsci/browserstack-integration-plugin.git", + "svn_url": "https://github.com/jenkinsci/browserstack-integration-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/BrowserStack+Plugin", + "size": 676, + "stargazers_count": 9, + "watchers_count": 9, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 17, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 17, + "open_issues": 0, + "watchers": 9, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 61962770, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTk2Mjc3MA==", + "name": "sonarqube-slack-pusher-plugin", + "full_name": "jenkinsci/sonarqube-slack-pusher-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/sonarqube-slack-pusher-plugin", + "description": "Jenkins plugin for pushing Sonar build statuses on a Slack channel.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/sonarqube-slack-pusher-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/sonarqube-slack-pusher-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/sonarqube-slack-pusher-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/sonarqube-slack-pusher-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/sonarqube-slack-pusher-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/sonarqube-slack-pusher-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/sonarqube-slack-pusher-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/sonarqube-slack-pusher-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/sonarqube-slack-pusher-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/sonarqube-slack-pusher-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/sonarqube-slack-pusher-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/sonarqube-slack-pusher-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/sonarqube-slack-pusher-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/sonarqube-slack-pusher-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/sonarqube-slack-pusher-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/sonarqube-slack-pusher-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/sonarqube-slack-pusher-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/sonarqube-slack-pusher-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/sonarqube-slack-pusher-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/sonarqube-slack-pusher-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/sonarqube-slack-pusher-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/sonarqube-slack-pusher-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/sonarqube-slack-pusher-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/sonarqube-slack-pusher-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/sonarqube-slack-pusher-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/sonarqube-slack-pusher-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/sonarqube-slack-pusher-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/sonarqube-slack-pusher-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/sonarqube-slack-pusher-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/sonarqube-slack-pusher-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/sonarqube-slack-pusher-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/sonarqube-slack-pusher-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/sonarqube-slack-pusher-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/sonarqube-slack-pusher-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/sonarqube-slack-pusher-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/sonarqube-slack-pusher-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/sonarqube-slack-pusher-plugin/deployments", + "created_at": "2016-06-25T21:45:38Z", + "updated_at": "2017-08-17T15:05:29Z", + "pushed_at": "2017-08-17T08:55:56Z", + "git_url": "git://github.com/jenkinsci/sonarqube-slack-pusher-plugin.git", + "ssh_url": "git@github.com:jenkinsci/sonarqube-slack-pusher-plugin.git", + "clone_url": "https://github.com/jenkinsci/sonarqube-slack-pusher-plugin.git", + "svn_url": "https://github.com/jenkinsci/sonarqube-slack-pusher-plugin", + "homepage": null, + "size": 174, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 62749783, + "node_id": "MDEwOlJlcG9zaXRvcnk2Mjc0OTc4Mw==", + "name": "run-selector-plugin", + "full_name": "jenkinsci/run-selector-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/run-selector-plugin", + "description": "Jenkins plugin for selecting a Run based on specific parameters", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/run-selector-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/run-selector-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/run-selector-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/run-selector-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/run-selector-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/run-selector-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/run-selector-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/run-selector-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/run-selector-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/run-selector-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/run-selector-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/run-selector-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/run-selector-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/run-selector-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/run-selector-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/run-selector-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/run-selector-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/run-selector-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/run-selector-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/run-selector-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/run-selector-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/run-selector-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/run-selector-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/run-selector-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/run-selector-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/run-selector-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/run-selector-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/run-selector-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/run-selector-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/run-selector-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/run-selector-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/run-selector-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/run-selector-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/run-selector-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/run-selector-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/run-selector-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/run-selector-plugin/deployments", + "created_at": "2016-07-06T20:01:20Z", + "updated_at": "2019-02-06T16:57:23Z", + "pushed_at": "2019-10-12T21:12:22Z", + "git_url": "git://github.com/jenkinsci/run-selector-plugin.git", + "ssh_url": "git@github.com:jenkinsci/run-selector-plugin.git", + "clone_url": "https://github.com/jenkinsci/run-selector-plugin.git", + "svn_url": "https://github.com/jenkinsci/run-selector-plugin", + "homepage": "https://plugins.jenkins.io/run-selector", + "size": 1051, + "stargazers_count": 7, + "watchers_count": 7, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 14, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 14, + "open_issues": 2, + "watchers": 7, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 63226575, + "node_id": "MDEwOlJlcG9zaXRvcnk2MzIyNjU3NQ==", + "name": "protecode-sc-plugin", + "full_name": "jenkinsci/protecode-sc-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/protecode-sc-plugin", + "description": "Protecode SC Jenkins plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/protecode-sc-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/protecode-sc-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/protecode-sc-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/protecode-sc-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/protecode-sc-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/protecode-sc-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/protecode-sc-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/protecode-sc-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/protecode-sc-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/protecode-sc-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/protecode-sc-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/protecode-sc-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/protecode-sc-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/protecode-sc-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/protecode-sc-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/protecode-sc-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/protecode-sc-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/protecode-sc-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/protecode-sc-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/protecode-sc-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/protecode-sc-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/protecode-sc-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/protecode-sc-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/protecode-sc-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/protecode-sc-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/protecode-sc-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/protecode-sc-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/protecode-sc-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/protecode-sc-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/protecode-sc-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/protecode-sc-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/protecode-sc-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/protecode-sc-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/protecode-sc-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/protecode-sc-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/protecode-sc-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/protecode-sc-plugin/deployments", + "created_at": "2016-07-13T07:58:43Z", + "updated_at": "2019-06-06T19:13:20Z", + "pushed_at": "2019-03-19T23:15:10Z", + "git_url": "git://github.com/jenkinsci/protecode-sc-plugin.git", + "ssh_url": "git@github.com:jenkinsci/protecode-sc-plugin.git", + "clone_url": "https://github.com/jenkinsci/protecode-sc-plugin.git", + "svn_url": "https://github.com/jenkinsci/protecode-sc-plugin", + "homepage": null, + "size": 39196, + "stargazers_count": 6, + "watchers_count": 6, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 12, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 12, + "open_issues": 2, + "watchers": 6, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 63226909, + "node_id": "MDEwOlJlcG9zaXRvcnk2MzIyNjkwOQ==", + "name": "composer-trigger-plugin", + "full_name": "jenkinsci/composer-trigger-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/composer-trigger-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/composer-trigger-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/composer-trigger-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/composer-trigger-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/composer-trigger-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/composer-trigger-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/composer-trigger-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/composer-trigger-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/composer-trigger-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/composer-trigger-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/composer-trigger-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/composer-trigger-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/composer-trigger-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/composer-trigger-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/composer-trigger-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/composer-trigger-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/composer-trigger-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/composer-trigger-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/composer-trigger-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/composer-trigger-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/composer-trigger-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/composer-trigger-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/composer-trigger-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/composer-trigger-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/composer-trigger-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/composer-trigger-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/composer-trigger-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/composer-trigger-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/composer-trigger-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/composer-trigger-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/composer-trigger-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/composer-trigger-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/composer-trigger-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/composer-trigger-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/composer-trigger-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/composer-trigger-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/composer-trigger-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/composer-trigger-plugin/deployments", + "created_at": "2016-07-13T08:03:36Z", + "updated_at": "2016-07-13T08:03:42Z", + "pushed_at": "2016-06-17T06:41:39Z", + "git_url": "git://github.com/jenkinsci/composer-trigger-plugin.git", + "ssh_url": "git@github.com:jenkinsci/composer-trigger-plugin.git", + "clone_url": "https://github.com/jenkinsci/composer-trigger-plugin.git", + "svn_url": "https://github.com/jenkinsci/composer-trigger-plugin", + "homepage": null, + "size": 18, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 63227269, + "node_id": "MDEwOlJlcG9zaXRvcnk2MzIyNzI2OQ==", + "name": "oic-auth-plugin", + "full_name": "jenkinsci/oic-auth-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/oic-auth-plugin", + "description": "A Jenkins plugin which lets you login to Jenkins using your own, self-hosted or public openid connect server.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/oic-auth-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/oic-auth-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/oic-auth-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/oic-auth-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/oic-auth-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/oic-auth-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/oic-auth-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/oic-auth-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/oic-auth-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/oic-auth-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/oic-auth-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/oic-auth-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/oic-auth-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/oic-auth-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/oic-auth-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/oic-auth-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/oic-auth-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/oic-auth-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/oic-auth-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/oic-auth-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/oic-auth-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/oic-auth-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/oic-auth-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/oic-auth-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/oic-auth-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/oic-auth-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/oic-auth-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/oic-auth-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/oic-auth-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/oic-auth-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/oic-auth-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/oic-auth-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/oic-auth-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/oic-auth-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/oic-auth-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/oic-auth-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/oic-auth-plugin/deployments", + "created_at": "2016-07-13T08:08:47Z", + "updated_at": "2019-10-17T06:20:41Z", + "pushed_at": "2019-10-16T00:33:02Z", + "git_url": "git://github.com/jenkinsci/oic-auth-plugin.git", + "ssh_url": "git@github.com:jenkinsci/oic-auth-plugin.git", + "clone_url": "https://github.com/jenkinsci/oic-auth-plugin.git", + "svn_url": "https://github.com/jenkinsci/oic-auth-plugin", + "homepage": "https://plugins.jenkins.io/oic-auth", + "size": 171, + "stargazers_count": 31, + "watchers_count": 31, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 42, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 20, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 42, + "open_issues": 20, + "watchers": 31, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 63228224, + "node_id": "MDEwOlJlcG9zaXRvcnk2MzIyODIyNA==", + "name": "codehealth-plugin", + "full_name": "jenkinsci/codehealth-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/codehealth-plugin", + "description": "Jenkins Codehealth Plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/codehealth-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/codehealth-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/codehealth-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/codehealth-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/codehealth-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/codehealth-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/codehealth-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/codehealth-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/codehealth-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/codehealth-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/codehealth-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/codehealth-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/codehealth-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/codehealth-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/codehealth-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/codehealth-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/codehealth-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/codehealth-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/codehealth-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/codehealth-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/codehealth-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/codehealth-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/codehealth-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/codehealth-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/codehealth-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/codehealth-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/codehealth-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/codehealth-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/codehealth-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/codehealth-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/codehealth-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/codehealth-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/codehealth-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/codehealth-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/codehealth-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/codehealth-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/codehealth-plugin/deployments", + "created_at": "2016-07-13T08:21:45Z", + "updated_at": "2016-07-13T12:42:35Z", + "pushed_at": "2016-11-07T19:41:19Z", + "git_url": "git://github.com/jenkinsci/codehealth-plugin.git", + "ssh_url": "git@github.com:jenkinsci/codehealth-plugin.git", + "clone_url": "https://github.com/jenkinsci/codehealth-plugin.git", + "svn_url": "https://github.com/jenkinsci/codehealth-plugin", + "homepage": "", + "size": 696, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 63228921, + "node_id": "MDEwOlJlcG9zaXRvcnk2MzIyODkyMQ==", + "name": "extensivetesting-plugin", + "full_name": "jenkinsci/extensivetesting-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/extensivetesting-plugin", + "description": "Run eXtensive Testing tests from Jenkins and store results", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/extensivetesting-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/extensivetesting-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/extensivetesting-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/extensivetesting-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/extensivetesting-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/extensivetesting-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/extensivetesting-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/extensivetesting-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/extensivetesting-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/extensivetesting-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/extensivetesting-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/extensivetesting-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/extensivetesting-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/extensivetesting-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/extensivetesting-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/extensivetesting-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/extensivetesting-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/extensivetesting-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/extensivetesting-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/extensivetesting-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/extensivetesting-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/extensivetesting-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/extensivetesting-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/extensivetesting-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/extensivetesting-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/extensivetesting-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/extensivetesting-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/extensivetesting-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/extensivetesting-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/extensivetesting-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/extensivetesting-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/extensivetesting-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/extensivetesting-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/extensivetesting-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/extensivetesting-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/extensivetesting-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/extensivetesting-plugin/deployments", + "created_at": "2016-07-13T08:31:02Z", + "updated_at": "2016-08-18T04:30:04Z", + "pushed_at": "2016-09-02T14:42:10Z", + "git_url": "git://github.com/jenkinsci/extensivetesting-plugin.git", + "ssh_url": "git@github.com:jenkinsci/extensivetesting-plugin.git", + "clone_url": "https://github.com/jenkinsci/extensivetesting-plugin.git", + "svn_url": "https://github.com/jenkinsci/extensivetesting-plugin", + "homepage": null, + "size": 66, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 3, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 63229296, + "node_id": "MDEwOlJlcG9zaXRvcnk2MzIyOTI5Ng==", + "name": "contrast-continuous-application-security-plugin", + "full_name": "jenkinsci/contrast-continuous-application-security-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/contrast-continuous-application-security-plugin", + "description": "Jenkins Plugin from Contrast Security", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/contrast-continuous-application-security-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/contrast-continuous-application-security-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/contrast-continuous-application-security-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/contrast-continuous-application-security-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/contrast-continuous-application-security-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/contrast-continuous-application-security-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/contrast-continuous-application-security-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/contrast-continuous-application-security-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/contrast-continuous-application-security-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/contrast-continuous-application-security-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/contrast-continuous-application-security-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/contrast-continuous-application-security-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/contrast-continuous-application-security-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/contrast-continuous-application-security-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/contrast-continuous-application-security-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/contrast-continuous-application-security-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/contrast-continuous-application-security-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/contrast-continuous-application-security-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/contrast-continuous-application-security-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/contrast-continuous-application-security-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/contrast-continuous-application-security-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/contrast-continuous-application-security-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/contrast-continuous-application-security-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/contrast-continuous-application-security-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/contrast-continuous-application-security-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/contrast-continuous-application-security-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/contrast-continuous-application-security-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/contrast-continuous-application-security-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/contrast-continuous-application-security-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/contrast-continuous-application-security-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/contrast-continuous-application-security-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/contrast-continuous-application-security-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/contrast-continuous-application-security-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/contrast-continuous-application-security-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/contrast-continuous-application-security-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/contrast-continuous-application-security-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/contrast-continuous-application-security-plugin/deployments", + "created_at": "2016-07-13T08:36:32Z", + "updated_at": "2019-10-25T20:24:23Z", + "pushed_at": "2019-10-25T20:24:20Z", + "git_url": "git://github.com/jenkinsci/contrast-continuous-application-security-plugin.git", + "ssh_url": "git@github.com:jenkinsci/contrast-continuous-application-security-plugin.git", + "clone_url": "https://github.com/jenkinsci/contrast-continuous-application-security-plugin.git", + "svn_url": "https://github.com/jenkinsci/contrast-continuous-application-security-plugin", + "homepage": "", + "size": 1411, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 7, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 7, + "open_issues": 2, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 63229611, + "node_id": "MDEwOlJlcG9zaXRvcnk2MzIyOTYxMQ==", + "name": "testodyssey-execution-plugin", + "full_name": "jenkinsci/testodyssey-execution-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/testodyssey-execution-plugin", + "description": "Jenkins plugin for triggering test execution run on Test-Odyssey from jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/testodyssey-execution-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/testodyssey-execution-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/testodyssey-execution-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/testodyssey-execution-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/testodyssey-execution-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/testodyssey-execution-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/testodyssey-execution-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/testodyssey-execution-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/testodyssey-execution-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/testodyssey-execution-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/testodyssey-execution-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/testodyssey-execution-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/testodyssey-execution-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/testodyssey-execution-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/testodyssey-execution-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/testodyssey-execution-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/testodyssey-execution-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/testodyssey-execution-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/testodyssey-execution-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/testodyssey-execution-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/testodyssey-execution-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/testodyssey-execution-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/testodyssey-execution-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/testodyssey-execution-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/testodyssey-execution-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/testodyssey-execution-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/testodyssey-execution-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/testodyssey-execution-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/testodyssey-execution-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/testodyssey-execution-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/testodyssey-execution-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/testodyssey-execution-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/testodyssey-execution-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/testodyssey-execution-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/testodyssey-execution-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/testodyssey-execution-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/testodyssey-execution-plugin/deployments", + "created_at": "2016-07-13T08:40:37Z", + "updated_at": "2017-09-25T06:30:11Z", + "pushed_at": "2017-09-26T06:13:33Z", + "git_url": "git://github.com/jenkinsci/testodyssey-execution-plugin.git", + "ssh_url": "git@github.com:jenkinsci/testodyssey-execution-plugin.git", + "clone_url": "https://github.com/jenkinsci/testodyssey-execution-plugin.git", + "svn_url": "https://github.com/jenkinsci/testodyssey-execution-plugin", + "homepage": null, + "size": 66353, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 63230428, + "node_id": "MDEwOlJlcG9zaXRvcnk2MzIzMDQyOA==", + "name": "last-changes-plugin", + "full_name": "jenkinsci/last-changes-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/last-changes-plugin", + "description": "https://wiki.jenkins-ci.org/display/JENKINS/Last+Changes+Plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/last-changes-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/last-changes-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/last-changes-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/last-changes-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/last-changes-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/last-changes-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/last-changes-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/last-changes-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/last-changes-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/last-changes-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/last-changes-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/last-changes-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/last-changes-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/last-changes-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/last-changes-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/last-changes-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/last-changes-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/last-changes-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/last-changes-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/last-changes-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/last-changes-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/last-changes-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/last-changes-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/last-changes-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/last-changes-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/last-changes-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/last-changes-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/last-changes-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/last-changes-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/last-changes-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/last-changes-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/last-changes-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/last-changes-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/last-changes-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/last-changes-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/last-changes-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/last-changes-plugin/deployments", + "created_at": "2016-07-13T08:51:52Z", + "updated_at": "2019-10-11T11:57:47Z", + "pushed_at": "2019-10-11T11:57:44Z", + "git_url": "git://github.com/jenkinsci/last-changes-plugin.git", + "ssh_url": "git@github.com:jenkinsci/last-changes-plugin.git", + "clone_url": "https://github.com/jenkinsci/last-changes-plugin.git", + "svn_url": "https://github.com/jenkinsci/last-changes-plugin", + "homepage": "", + "size": 5544, + "stargazers_count": 19, + "watchers_count": 19, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 21, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 11, + "license": null, + "forks": 21, + "open_issues": 11, + "watchers": 19, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 63230924, + "node_id": "MDEwOlJlcG9zaXRvcnk2MzIzMDkyNA==", + "name": "fabric-beta-publisher-plugin", + "full_name": "jenkinsci/fabric-beta-publisher-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/fabric-beta-publisher-plugin", + "description": "A Jenkins plugin that lets you publish Android apps to Fabric Beta", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/fabric-beta-publisher-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/fabric-beta-publisher-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/fabric-beta-publisher-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/fabric-beta-publisher-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/fabric-beta-publisher-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/fabric-beta-publisher-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/fabric-beta-publisher-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/fabric-beta-publisher-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/fabric-beta-publisher-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/fabric-beta-publisher-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/fabric-beta-publisher-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/fabric-beta-publisher-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/fabric-beta-publisher-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/fabric-beta-publisher-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/fabric-beta-publisher-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/fabric-beta-publisher-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/fabric-beta-publisher-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/fabric-beta-publisher-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/fabric-beta-publisher-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/fabric-beta-publisher-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/fabric-beta-publisher-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/fabric-beta-publisher-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/fabric-beta-publisher-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/fabric-beta-publisher-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/fabric-beta-publisher-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/fabric-beta-publisher-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/fabric-beta-publisher-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/fabric-beta-publisher-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/fabric-beta-publisher-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/fabric-beta-publisher-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/fabric-beta-publisher-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/fabric-beta-publisher-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/fabric-beta-publisher-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/fabric-beta-publisher-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/fabric-beta-publisher-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/fabric-beta-publisher-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/fabric-beta-publisher-plugin/deployments", + "created_at": "2016-07-13T08:58:04Z", + "updated_at": "2019-10-19T17:20:21Z", + "pushed_at": "2019-10-19T17:20:23Z", + "git_url": "git://github.com/jenkinsci/fabric-beta-publisher-plugin.git", + "ssh_url": "git@github.com:jenkinsci/fabric-beta-publisher-plugin.git", + "clone_url": "https://github.com/jenkinsci/fabric-beta-publisher-plugin.git", + "svn_url": "https://github.com/jenkinsci/fabric-beta-publisher-plugin", + "homepage": null, + "size": 7961, + "stargazers_count": 23, + "watchers_count": 23, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 12, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 11, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 12, + "open_issues": 11, + "watchers": 23, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 63341389, + "node_id": "MDEwOlJlcG9zaXRvcnk2MzM0MTM4OQ==", + "name": "resource-disposer-plugin", + "full_name": "jenkinsci/resource-disposer-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/resource-disposer-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/resource-disposer-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/resource-disposer-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/resource-disposer-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/resource-disposer-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/resource-disposer-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/resource-disposer-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/resource-disposer-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/resource-disposer-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/resource-disposer-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/resource-disposer-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/resource-disposer-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/resource-disposer-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/resource-disposer-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/resource-disposer-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/resource-disposer-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/resource-disposer-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/resource-disposer-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/resource-disposer-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/resource-disposer-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/resource-disposer-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/resource-disposer-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/resource-disposer-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/resource-disposer-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/resource-disposer-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/resource-disposer-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/resource-disposer-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/resource-disposer-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/resource-disposer-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/resource-disposer-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/resource-disposer-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/resource-disposer-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/resource-disposer-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/resource-disposer-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/resource-disposer-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/resource-disposer-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/resource-disposer-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/resource-disposer-plugin/deployments", + "created_at": "2016-07-14T14:01:35Z", + "updated_at": "2019-10-10T13:56:28Z", + "pushed_at": "2019-10-10T13:56:26Z", + "git_url": "git://github.com/jenkinsci/resource-disposer-plugin.git", + "ssh_url": "git@github.com:jenkinsci/resource-disposer-plugin.git", + "clone_url": "https://github.com/jenkinsci/resource-disposer-plugin.git", + "svn_url": "https://github.com/jenkinsci/resource-disposer-plugin", + "homepage": "", + "size": 87, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 5, + "open_issues": 0, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 63553502, + "node_id": "MDEwOlJlcG9zaXRvcnk2MzU1MzUwMg==", + "name": "pipeline-maven-plugin", + "full_name": "jenkinsci/pipeline-maven-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pipeline-maven-plugin", + "description": "Pipeline Maven Plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/pipeline-maven-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pipeline-maven-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pipeline-maven-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pipeline-maven-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pipeline-maven-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pipeline-maven-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pipeline-maven-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pipeline-maven-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pipeline-maven-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pipeline-maven-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pipeline-maven-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pipeline-maven-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pipeline-maven-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pipeline-maven-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pipeline-maven-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pipeline-maven-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pipeline-maven-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pipeline-maven-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pipeline-maven-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pipeline-maven-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pipeline-maven-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pipeline-maven-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pipeline-maven-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pipeline-maven-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pipeline-maven-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pipeline-maven-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pipeline-maven-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pipeline-maven-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pipeline-maven-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pipeline-maven-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pipeline-maven-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pipeline-maven-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pipeline-maven-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pipeline-maven-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pipeline-maven-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pipeline-maven-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pipeline-maven-plugin/deployments", + "created_at": "2016-07-17T21:35:29Z", + "updated_at": "2019-10-11T08:32:37Z", + "pushed_at": "2019-10-25T13:59:26Z", + "git_url": "git://github.com/jenkinsci/pipeline-maven-plugin.git", + "ssh_url": "git@github.com:jenkinsci/pipeline-maven-plugin.git", + "clone_url": "https://github.com/jenkinsci/pipeline-maven-plugin.git", + "svn_url": "https://github.com/jenkinsci/pipeline-maven-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Pipeline+Maven+Plugin", + "size": 1674, + "stargazers_count": 34, + "watchers_count": 34, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 62, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 5, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 62, + "open_issues": 5, + "watchers": 34, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 63554506, + "node_id": "MDEwOlJlcG9zaXRvcnk2MzU1NDUwNg==", + "name": "hpe-network-virtualization-plugin", + "full_name": "jenkinsci/hpe-network-virtualization-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/hpe-network-virtualization-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/hpe-network-virtualization-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/hpe-network-virtualization-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/hpe-network-virtualization-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/hpe-network-virtualization-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/hpe-network-virtualization-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/hpe-network-virtualization-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/hpe-network-virtualization-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/hpe-network-virtualization-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/hpe-network-virtualization-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/hpe-network-virtualization-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/hpe-network-virtualization-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/hpe-network-virtualization-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/hpe-network-virtualization-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/hpe-network-virtualization-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/hpe-network-virtualization-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/hpe-network-virtualization-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/hpe-network-virtualization-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/hpe-network-virtualization-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/hpe-network-virtualization-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/hpe-network-virtualization-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/hpe-network-virtualization-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/hpe-network-virtualization-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/hpe-network-virtualization-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/hpe-network-virtualization-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/hpe-network-virtualization-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/hpe-network-virtualization-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/hpe-network-virtualization-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/hpe-network-virtualization-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/hpe-network-virtualization-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/hpe-network-virtualization-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/hpe-network-virtualization-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/hpe-network-virtualization-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/hpe-network-virtualization-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/hpe-network-virtualization-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/hpe-network-virtualization-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/hpe-network-virtualization-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/hpe-network-virtualization-plugin/deployments", + "created_at": "2016-07-17T22:06:37Z", + "updated_at": "2016-08-17T12:08:53Z", + "pushed_at": "2016-08-17T14:21:34Z", + "git_url": "git://github.com/jenkinsci/hpe-network-virtualization-plugin.git", + "ssh_url": "git@github.com:jenkinsci/hpe-network-virtualization-plugin.git", + "clone_url": "https://github.com/jenkinsci/hpe-network-virtualization-plugin.git", + "svn_url": "https://github.com/jenkinsci/hpe-network-virtualization-plugin", + "homepage": null, + "size": 42, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 63704367, + "node_id": "MDEwOlJlcG9zaXRvcnk2MzcwNDM2Nw==", + "name": "influxdb-plugin", + "full_name": "jenkinsci/influxdb-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/influxdb-plugin", + "description": "Jenkins plugin to send build metrics into InfluxDB", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/influxdb-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/influxdb-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/influxdb-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/influxdb-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/influxdb-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/influxdb-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/influxdb-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/influxdb-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/influxdb-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/influxdb-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/influxdb-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/influxdb-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/influxdb-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/influxdb-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/influxdb-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/influxdb-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/influxdb-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/influxdb-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/influxdb-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/influxdb-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/influxdb-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/influxdb-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/influxdb-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/influxdb-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/influxdb-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/influxdb-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/influxdb-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/influxdb-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/influxdb-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/influxdb-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/influxdb-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/influxdb-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/influxdb-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/influxdb-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/influxdb-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/influxdb-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/influxdb-plugin/deployments", + "created_at": "2016-07-19T15:09:07Z", + "updated_at": "2019-10-23T09:05:20Z", + "pushed_at": "2019-10-23T09:50:43Z", + "git_url": "git://github.com/jenkinsci/influxdb-plugin.git", + "ssh_url": "git@github.com:jenkinsci/influxdb-plugin.git", + "clone_url": "https://github.com/jenkinsci/influxdb-plugin.git", + "svn_url": "https://github.com/jenkinsci/influxdb-plugin", + "homepage": "", + "size": 637, + "stargazers_count": 29, + "watchers_count": 29, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 49, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 49, + "open_issues": 2, + "watchers": 29, + "default_branch": "development", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 63704884, + "node_id": "MDEwOlJlcG9zaXRvcnk2MzcwNDg4NA==", + "name": "open-stf-plugin", + "full_name": "jenkinsci/open-stf-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/open-stf-plugin", + "description": "Jenkins Plugin for OpenSTF(http://openstf.io/)", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/open-stf-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/open-stf-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/open-stf-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/open-stf-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/open-stf-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/open-stf-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/open-stf-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/open-stf-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/open-stf-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/open-stf-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/open-stf-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/open-stf-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/open-stf-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/open-stf-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/open-stf-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/open-stf-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/open-stf-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/open-stf-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/open-stf-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/open-stf-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/open-stf-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/open-stf-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/open-stf-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/open-stf-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/open-stf-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/open-stf-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/open-stf-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/open-stf-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/open-stf-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/open-stf-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/open-stf-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/open-stf-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/open-stf-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/open-stf-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/open-stf-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/open-stf-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/open-stf-plugin/deployments", + "created_at": "2016-07-19T15:14:41Z", + "updated_at": "2019-01-18T02:32:30Z", + "pushed_at": "2018-08-15T08:27:07Z", + "git_url": "git://github.com/jenkinsci/open-stf-plugin.git", + "ssh_url": "git@github.com:jenkinsci/open-stf-plugin.git", + "clone_url": "https://github.com/jenkinsci/open-stf-plugin.git", + "svn_url": "https://github.com/jenkinsci/open-stf-plugin", + "homepage": null, + "size": 123, + "stargazers_count": 17, + "watchers_count": 17, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": null, + "forks": 6, + "open_issues": 3, + "watchers": 17, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 63899862, + "node_id": "MDEwOlJlcG9zaXRvcnk2Mzg5OTg2Mg==", + "name": "gogs-webhook-plugin", + "full_name": "jenkinsci/gogs-webhook-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/gogs-webhook-plugin", + "description": "Jenkins Gogs Webhook", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/gogs-webhook-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/gogs-webhook-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/gogs-webhook-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/gogs-webhook-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/gogs-webhook-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/gogs-webhook-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/gogs-webhook-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/gogs-webhook-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/gogs-webhook-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/gogs-webhook-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/gogs-webhook-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/gogs-webhook-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/gogs-webhook-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/gogs-webhook-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/gogs-webhook-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/gogs-webhook-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/gogs-webhook-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/gogs-webhook-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/gogs-webhook-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/gogs-webhook-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/gogs-webhook-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/gogs-webhook-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/gogs-webhook-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/gogs-webhook-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/gogs-webhook-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/gogs-webhook-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/gogs-webhook-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/gogs-webhook-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/gogs-webhook-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/gogs-webhook-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/gogs-webhook-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/gogs-webhook-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/gogs-webhook-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/gogs-webhook-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/gogs-webhook-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/gogs-webhook-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/gogs-webhook-plugin/deployments", + "created_at": "2016-07-21T20:21:00Z", + "updated_at": "2019-08-21T03:59:43Z", + "pushed_at": "2019-10-08T11:35:10Z", + "git_url": "git://github.com/jenkinsci/gogs-webhook-plugin.git", + "ssh_url": "git@github.com:jenkinsci/gogs-webhook-plugin.git", + "clone_url": "https://github.com/jenkinsci/gogs-webhook-plugin.git", + "svn_url": "https://github.com/jenkinsci/gogs-webhook-plugin", + "homepage": null, + "size": 1739, + "stargazers_count": 62, + "watchers_count": 62, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 43, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 7, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 43, + "open_issues": 7, + "watchers": 62, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 63907360, + "node_id": "MDEwOlJlcG9zaXRvcnk2MzkwNzM2MA==", + "name": "cucumber-trend-report-plugin", + "full_name": "jenkinsci/cucumber-trend-report-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/cucumber-trend-report-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/cucumber-trend-report-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/cucumber-trend-report-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/cucumber-trend-report-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/cucumber-trend-report-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/cucumber-trend-report-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/cucumber-trend-report-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/cucumber-trend-report-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/cucumber-trend-report-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/cucumber-trend-report-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/cucumber-trend-report-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/cucumber-trend-report-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/cucumber-trend-report-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/cucumber-trend-report-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/cucumber-trend-report-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/cucumber-trend-report-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/cucumber-trend-report-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/cucumber-trend-report-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/cucumber-trend-report-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/cucumber-trend-report-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/cucumber-trend-report-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/cucumber-trend-report-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/cucumber-trend-report-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/cucumber-trend-report-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/cucumber-trend-report-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/cucumber-trend-report-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/cucumber-trend-report-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/cucumber-trend-report-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/cucumber-trend-report-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/cucumber-trend-report-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/cucumber-trend-report-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/cucumber-trend-report-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/cucumber-trend-report-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/cucumber-trend-report-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/cucumber-trend-report-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/cucumber-trend-report-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/cucumber-trend-report-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/cucumber-trend-report-plugin/deployments", + "created_at": "2016-07-21T22:51:49Z", + "updated_at": "2016-08-18T04:30:04Z", + "pushed_at": "2019-10-08T11:38:48Z", + "git_url": "git://github.com/jenkinsci/cucumber-trend-report-plugin.git", + "ssh_url": "git@github.com:jenkinsci/cucumber-trend-report-plugin.git", + "clone_url": "https://github.com/jenkinsci/cucumber-trend-report-plugin.git", + "svn_url": "https://github.com/jenkinsci/cucumber-trend-report-plugin", + "homepage": null, + "size": 995, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 6, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 63981386, + "node_id": "MDEwOlJlcG9zaXRvcnk2Mzk4MTM4Ng==", + "name": "openshift-login-plugin", + "full_name": "jenkinsci/openshift-login-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/openshift-login-plugin", + "description": "A plugin for integrating OpenShift OAuth into Jenkins", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/openshift-login-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/openshift-login-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/openshift-login-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/openshift-login-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/openshift-login-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/openshift-login-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/openshift-login-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/openshift-login-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/openshift-login-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/openshift-login-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/openshift-login-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/openshift-login-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/openshift-login-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/openshift-login-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/openshift-login-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/openshift-login-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/openshift-login-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/openshift-login-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/openshift-login-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/openshift-login-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/openshift-login-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/openshift-login-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/openshift-login-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/openshift-login-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/openshift-login-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/openshift-login-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/openshift-login-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/openshift-login-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/openshift-login-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/openshift-login-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/openshift-login-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/openshift-login-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/openshift-login-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/openshift-login-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/openshift-login-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/openshift-login-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/openshift-login-plugin/deployments", + "created_at": "2016-07-22T20:30:07Z", + "updated_at": "2019-09-19T16:03:16Z", + "pushed_at": "2019-09-19T16:03:14Z", + "git_url": "git://github.com/jenkinsci/openshift-login-plugin.git", + "ssh_url": "git@github.com:jenkinsci/openshift-login-plugin.git", + "clone_url": "https://github.com/jenkinsci/openshift-login-plugin.git", + "svn_url": "https://github.com/jenkinsci/openshift-login-plugin", + "homepage": null, + "size": 256, + "stargazers_count": 3, + "watchers_count": 3, + "language": "HTML", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 3, + "open_issues": 0, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 63982151, + "node_id": "MDEwOlJlcG9zaXRvcnk2Mzk4MjE1MQ==", + "name": "azure-batch-parallel-plugin", + "full_name": "jenkinsci/azure-batch-parallel-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/azure-batch-parallel-plugin", + "description": "We are working on Jenkins plugin and this will enable Azure Batch service to power Jenkin workload", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/azure-batch-parallel-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/azure-batch-parallel-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/azure-batch-parallel-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/azure-batch-parallel-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/azure-batch-parallel-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/azure-batch-parallel-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/azure-batch-parallel-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/azure-batch-parallel-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/azure-batch-parallel-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/azure-batch-parallel-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/azure-batch-parallel-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/azure-batch-parallel-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/azure-batch-parallel-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/azure-batch-parallel-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/azure-batch-parallel-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/azure-batch-parallel-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/azure-batch-parallel-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/azure-batch-parallel-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/azure-batch-parallel-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/azure-batch-parallel-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/azure-batch-parallel-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/azure-batch-parallel-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/azure-batch-parallel-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/azure-batch-parallel-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/azure-batch-parallel-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/azure-batch-parallel-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/azure-batch-parallel-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/azure-batch-parallel-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/azure-batch-parallel-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/azure-batch-parallel-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/azure-batch-parallel-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/azure-batch-parallel-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/azure-batch-parallel-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/azure-batch-parallel-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/azure-batch-parallel-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/azure-batch-parallel-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/azure-batch-parallel-plugin/deployments", + "created_at": "2016-07-22T20:46:25Z", + "updated_at": "2016-10-24T20:36:03Z", + "pushed_at": "2016-10-25T06:45:57Z", + "git_url": "git://github.com/jenkinsci/azure-batch-parallel-plugin.git", + "ssh_url": "git@github.com:jenkinsci/azure-batch-parallel-plugin.git", + "clone_url": "https://github.com/jenkinsci/azure-batch-parallel-plugin.git", + "svn_url": "https://github.com/jenkinsci/azure-batch-parallel-plugin", + "homepage": null, + "size": 154, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 64148423, + "node_id": "MDEwOlJlcG9zaXRvcnk2NDE0ODQyMw==", + "name": "codefresh-plugin", + "full_name": "jenkinsci/codefresh-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/codefresh-plugin", + "description": "Jenkins plugin for Codefresh Integration", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/codefresh-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/codefresh-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/codefresh-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/codefresh-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/codefresh-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/codefresh-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/codefresh-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/codefresh-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/codefresh-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/codefresh-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/codefresh-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/codefresh-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/codefresh-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/codefresh-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/codefresh-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/codefresh-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/codefresh-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/codefresh-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/codefresh-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/codefresh-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/codefresh-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/codefresh-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/codefresh-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/codefresh-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/codefresh-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/codefresh-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/codefresh-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/codefresh-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/codefresh-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/codefresh-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/codefresh-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/codefresh-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/codefresh-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/codefresh-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/codefresh-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/codefresh-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/codefresh-plugin/deployments", + "created_at": "2016-07-25T15:57:52Z", + "updated_at": "2018-09-20T09:56:01Z", + "pushed_at": "2018-09-20T09:56:00Z", + "git_url": "git://github.com/jenkinsci/codefresh-plugin.git", + "ssh_url": "git@github.com:jenkinsci/codefresh-plugin.git", + "clone_url": "https://github.com/jenkinsci/codefresh-plugin.git", + "svn_url": "https://github.com/jenkinsci/codefresh-plugin", + "homepage": null, + "size": 118, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 5, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 64156328, + "node_id": "MDEwOlJlcG9zaXRvcnk2NDE1NjMyOA==", + "name": "console-badge-plugin", + "full_name": "jenkinsci/console-badge-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/console-badge-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/console-badge-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/console-badge-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/console-badge-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/console-badge-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/console-badge-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/console-badge-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/console-badge-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/console-badge-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/console-badge-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/console-badge-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/console-badge-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/console-badge-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/console-badge-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/console-badge-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/console-badge-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/console-badge-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/console-badge-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/console-badge-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/console-badge-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/console-badge-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/console-badge-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/console-badge-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/console-badge-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/console-badge-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/console-badge-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/console-badge-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/console-badge-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/console-badge-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/console-badge-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/console-badge-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/console-badge-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/console-badge-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/console-badge-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/console-badge-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/console-badge-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/console-badge-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/console-badge-plugin/deployments", + "created_at": "2016-07-25T17:58:34Z", + "updated_at": "2019-10-17T12:45:27Z", + "pushed_at": "2019-10-17T01:04:25Z", + "git_url": "git://github.com/jenkinsci/console-badge-plugin.git", + "ssh_url": "git@github.com:jenkinsci/console-badge-plugin.git", + "clone_url": "https://github.com/jenkinsci/console-badge-plugin.git", + "svn_url": "https://github.com/jenkinsci/console-badge-plugin", + "homepage": null, + "size": 57, + "stargazers_count": 2, + "watchers_count": 2, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 12, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 12, + "open_issues": 1, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/__files/organizations_107424_repos-ecf517ff-a34e-4190-9e4a-7ce48bccffae.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/__files/organizations_107424_repos-ecf517ff-a34e-4190-9e4a-7ce48bccffae.json new file mode 100644 index 0000000000..864c2ab65d --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/__files/organizations_107424_repos-ecf517ff-a34e-4190-9e4a-7ce48bccffae.json @@ -0,0 +1,10232 @@ +[ + { + "id": 21473670, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTQ3MzY3MA==", + "name": "build-env-propagator-plugin", + "full_name": "jenkinsci/build-env-propagator-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/build-env-propagator-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/build-env-propagator-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/build-env-propagator-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/build-env-propagator-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/build-env-propagator-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/build-env-propagator-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/build-env-propagator-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/build-env-propagator-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/build-env-propagator-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/build-env-propagator-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/build-env-propagator-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/build-env-propagator-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/build-env-propagator-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/build-env-propagator-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/build-env-propagator-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/build-env-propagator-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/build-env-propagator-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/build-env-propagator-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/build-env-propagator-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/build-env-propagator-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/build-env-propagator-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/build-env-propagator-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/build-env-propagator-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/build-env-propagator-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/build-env-propagator-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/build-env-propagator-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/build-env-propagator-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/build-env-propagator-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/build-env-propagator-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/build-env-propagator-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/build-env-propagator-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/build-env-propagator-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/build-env-propagator-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/build-env-propagator-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/build-env-propagator-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/build-env-propagator-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/build-env-propagator-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/build-env-propagator-plugin/deployments", + "created_at": "2014-07-03T19:00:16Z", + "updated_at": "2014-07-03T19:13:02Z", + "pushed_at": "2019-10-08T12:12:29Z", + "git_url": "git://github.com/jenkinsci/build-env-propagator-plugin.git", + "ssh_url": "git@github.com:jenkinsci/build-env-propagator-plugin.git", + "clone_url": "https://github.com/jenkinsci/build-env-propagator-plugin.git", + "svn_url": "https://github.com/jenkinsci/build-env-propagator-plugin", + "homepage": "", + "size": 204, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 2, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 21653983, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTY1Mzk4Mw==", + "name": "plugin-usage-plugin", + "full_name": "jenkinsci/plugin-usage-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/plugin-usage-plugin", + "description": "Jenkins plugin to analyze the plugin usage", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/plugin-usage-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/plugin-usage-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/plugin-usage-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/plugin-usage-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/plugin-usage-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/plugin-usage-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/plugin-usage-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/plugin-usage-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/plugin-usage-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/plugin-usage-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/plugin-usage-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/plugin-usage-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/plugin-usage-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/plugin-usage-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/plugin-usage-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/plugin-usage-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/plugin-usage-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/plugin-usage-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/plugin-usage-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/plugin-usage-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/plugin-usage-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/plugin-usage-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/plugin-usage-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/plugin-usage-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/plugin-usage-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/plugin-usage-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/plugin-usage-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/plugin-usage-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/plugin-usage-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/plugin-usage-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/plugin-usage-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/plugin-usage-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/plugin-usage-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/plugin-usage-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/plugin-usage-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/plugin-usage-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/plugin-usage-plugin/deployments", + "created_at": "2014-07-09T13:51:25Z", + "updated_at": "2019-10-09T14:12:38Z", + "pushed_at": "2019-10-25T18:46:23Z", + "git_url": "git://github.com/jenkinsci/plugin-usage-plugin.git", + "ssh_url": "git@github.com:jenkinsci/plugin-usage-plugin.git", + "clone_url": "https://github.com/jenkinsci/plugin-usage-plugin.git", + "svn_url": "https://github.com/jenkinsci/plugin-usage-plugin", + "homepage": null, + "size": 39, + "stargazers_count": 7, + "watchers_count": 7, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 12, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 12, + "open_issues": 2, + "watchers": 7, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 21740235, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTc0MDIzNQ==", + "name": "lenient-shutdown-plugin", + "full_name": "jenkinsci/lenient-shutdown-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/lenient-shutdown-plugin", + "description": "Lets you put Jenkins in shutdown mode but still allow any downstream builds of those currently running to also complete. Similar functionality for taking nodes temporarily offline.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/lenient-shutdown-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/lenient-shutdown-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/lenient-shutdown-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/lenient-shutdown-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/lenient-shutdown-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/lenient-shutdown-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/lenient-shutdown-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/lenient-shutdown-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/lenient-shutdown-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/lenient-shutdown-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/lenient-shutdown-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/lenient-shutdown-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/lenient-shutdown-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/lenient-shutdown-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/lenient-shutdown-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/lenient-shutdown-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/lenient-shutdown-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/lenient-shutdown-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/lenient-shutdown-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/lenient-shutdown-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/lenient-shutdown-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/lenient-shutdown-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/lenient-shutdown-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/lenient-shutdown-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/lenient-shutdown-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/lenient-shutdown-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/lenient-shutdown-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/lenient-shutdown-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/lenient-shutdown-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/lenient-shutdown-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/lenient-shutdown-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/lenient-shutdown-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/lenient-shutdown-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/lenient-shutdown-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/lenient-shutdown-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/lenient-shutdown-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/lenient-shutdown-plugin/deployments", + "created_at": "2014-07-11T14:58:56Z", + "updated_at": "2019-10-11T08:17:03Z", + "pushed_at": "2019-10-11T08:17:01Z", + "git_url": "git://github.com/jenkinsci/lenient-shutdown-plugin.git", + "ssh_url": "git@github.com:jenkinsci/lenient-shutdown-plugin.git", + "clone_url": "https://github.com/jenkinsci/lenient-shutdown-plugin.git", + "svn_url": "https://github.com/jenkinsci/lenient-shutdown-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Lenient+shutdown+plugin", + "size": 107, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 5, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 21812953, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTgxMjk1Mw==", + "name": "lifx-notifier-plugin", + "full_name": "jenkinsci/lifx-notifier-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/lifx-notifier-plugin", + "description": "Use your LIFX lightbulbs as a build indicator", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/lifx-notifier-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/lifx-notifier-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/lifx-notifier-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/lifx-notifier-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/lifx-notifier-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/lifx-notifier-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/lifx-notifier-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/lifx-notifier-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/lifx-notifier-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/lifx-notifier-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/lifx-notifier-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/lifx-notifier-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/lifx-notifier-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/lifx-notifier-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/lifx-notifier-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/lifx-notifier-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/lifx-notifier-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/lifx-notifier-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/lifx-notifier-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/lifx-notifier-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/lifx-notifier-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/lifx-notifier-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/lifx-notifier-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/lifx-notifier-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/lifx-notifier-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/lifx-notifier-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/lifx-notifier-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/lifx-notifier-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/lifx-notifier-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/lifx-notifier-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/lifx-notifier-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/lifx-notifier-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/lifx-notifier-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/lifx-notifier-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/lifx-notifier-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/lifx-notifier-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/lifx-notifier-plugin/deployments", + "created_at": "2014-07-14T08:42:58Z", + "updated_at": "2017-01-02T12:40:02Z", + "pushed_at": "2016-11-29T08:40:40Z", + "git_url": "git://github.com/jenkinsci/lifx-notifier-plugin.git", + "ssh_url": "git@github.com:jenkinsci/lifx-notifier-plugin.git", + "clone_url": "https://github.com/jenkinsci/lifx-notifier-plugin.git", + "svn_url": "https://github.com/jenkinsci/lifx-notifier-plugin", + "homepage": null, + "size": 85, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 3, + "open_issues": 0, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 21914549, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTkxNDU0OQ==", + "name": "vmanager-plugin", + "full_name": "jenkinsci/vmanager-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/vmanager-plugin", + "description": "A plugin to allow Jenkins Steps with Cadence vManager API", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/vmanager-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/vmanager-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/vmanager-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/vmanager-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/vmanager-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/vmanager-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/vmanager-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/vmanager-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/vmanager-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/vmanager-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/vmanager-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/vmanager-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/vmanager-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/vmanager-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/vmanager-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/vmanager-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/vmanager-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/vmanager-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/vmanager-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/vmanager-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/vmanager-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/vmanager-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/vmanager-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/vmanager-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/vmanager-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/vmanager-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/vmanager-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/vmanager-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/vmanager-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/vmanager-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/vmanager-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/vmanager-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/vmanager-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/vmanager-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/vmanager-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/vmanager-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/vmanager-plugin/deployments", + "created_at": "2014-07-16T19:42:21Z", + "updated_at": "2019-10-24T06:43:52Z", + "pushed_at": "2019-10-24T06:43:50Z", + "git_url": "git://github.com/jenkinsci/vmanager-plugin.git", + "ssh_url": "git@github.com:jenkinsci/vmanager-plugin.git", + "clone_url": "https://github.com/jenkinsci/vmanager-plugin.git", + "svn_url": "https://github.com/jenkinsci/vmanager-plugin", + "homepage": null, + "size": 644, + "stargazers_count": 3, + "watchers_count": 3, + "language": "JavaScript", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 5, + "open_issues": 0, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 21946687, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTk0NjY4Nw==", + "name": "proc-cleaner-plugin", + "full_name": "jenkinsci/proc-cleaner-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/proc-cleaner-plugin", + "description": "Process cleaner for Jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/proc-cleaner-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/proc-cleaner-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/proc-cleaner-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/proc-cleaner-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/proc-cleaner-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/proc-cleaner-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/proc-cleaner-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/proc-cleaner-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/proc-cleaner-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/proc-cleaner-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/proc-cleaner-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/proc-cleaner-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/proc-cleaner-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/proc-cleaner-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/proc-cleaner-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/proc-cleaner-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/proc-cleaner-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/proc-cleaner-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/proc-cleaner-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/proc-cleaner-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/proc-cleaner-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/proc-cleaner-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/proc-cleaner-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/proc-cleaner-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/proc-cleaner-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/proc-cleaner-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/proc-cleaner-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/proc-cleaner-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/proc-cleaner-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/proc-cleaner-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/proc-cleaner-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/proc-cleaner-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/proc-cleaner-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/proc-cleaner-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/proc-cleaner-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/proc-cleaner-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/proc-cleaner-plugin/deployments", + "created_at": "2014-07-17T15:11:58Z", + "updated_at": "2018-09-24T10:15:17Z", + "pushed_at": "2018-09-24T10:15:15Z", + "git_url": "git://github.com/jenkinsci/proc-cleaner-plugin.git", + "ssh_url": "git@github.com:jenkinsci/proc-cleaner-plugin.git", + "clone_url": "https://github.com/jenkinsci/proc-cleaner-plugin.git", + "svn_url": "https://github.com/jenkinsci/proc-cleaner-plugin", + "homepage": "", + "size": 164, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 3, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 21969270, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTk2OTI3MA==", + "name": "docker", + "full_name": "jenkinsci/docker", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/docker", + "description": "Docker official jenkins repo", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/docker", + "forks_url": "https://api.github.com/repos/jenkinsci/docker/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/docker/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/docker/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/docker/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/docker/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/docker/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/docker/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/docker/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/docker/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/docker/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/docker/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/docker/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/docker/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/docker/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/docker/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/docker/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/docker/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/docker/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/docker/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/docker/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/docker/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/docker/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/docker/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/docker/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/docker/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/docker/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/docker/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/docker/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/docker/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/docker/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/docker/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/docker/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/docker/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/docker/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/docker/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/docker/deployments", + "created_at": "2014-07-18T05:51:05Z", + "updated_at": "2019-10-25T19:14:47Z", + "pushed_at": "2019-10-25T18:05:10Z", + "git_url": "git://github.com/jenkinsci/docker.git", + "ssh_url": "git@github.com:jenkinsci/docker.git", + "clone_url": "https://github.com/jenkinsci/docker.git", + "svn_url": "https://github.com/jenkinsci/docker", + "homepage": "https://hub.docker.com/r/jenkins/jenkins", + "size": 609, + "stargazers_count": 3296, + "watchers_count": 3296, + "language": "Shell", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 2353, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 82, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 2353, + "open_issues": 82, + "watchers": 3296, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 21983282, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTk4MzI4Mg==", + "name": "test-results-analyzer-plugin", + "full_name": "jenkinsci/test-results-analyzer-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/test-results-analyzer-plugin", + "description": "Jenkins plugin to analyze test results for packages, classes and test-methods across all the builds.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/test-results-analyzer-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/test-results-analyzer-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/test-results-analyzer-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/test-results-analyzer-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/test-results-analyzer-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/test-results-analyzer-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/test-results-analyzer-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/test-results-analyzer-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/test-results-analyzer-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/test-results-analyzer-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/test-results-analyzer-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/test-results-analyzer-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/test-results-analyzer-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/test-results-analyzer-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/test-results-analyzer-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/test-results-analyzer-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/test-results-analyzer-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/test-results-analyzer-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/test-results-analyzer-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/test-results-analyzer-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/test-results-analyzer-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/test-results-analyzer-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/test-results-analyzer-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/test-results-analyzer-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/test-results-analyzer-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/test-results-analyzer-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/test-results-analyzer-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/test-results-analyzer-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/test-results-analyzer-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/test-results-analyzer-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/test-results-analyzer-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/test-results-analyzer-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/test-results-analyzer-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/test-results-analyzer-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/test-results-analyzer-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/test-results-analyzer-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/test-results-analyzer-plugin/deployments", + "created_at": "2014-07-18T14:38:33Z", + "updated_at": "2019-10-17T13:03:08Z", + "pushed_at": "2019-09-30T15:53:55Z", + "git_url": "git://github.com/jenkinsci/test-results-analyzer-plugin.git", + "ssh_url": "git@github.com:jenkinsci/test-results-analyzer-plugin.git", + "clone_url": "https://github.com/jenkinsci/test-results-analyzer-plugin.git", + "svn_url": "https://github.com/jenkinsci/test-results-analyzer-plugin", + "homepage": null, + "size": 794, + "stargazers_count": 33, + "watchers_count": 33, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 46, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 46, + "open_issues": 3, + "watchers": 33, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 22061186, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjA2MTE4Ng==", + "name": "queue-cleanup-plugin", + "full_name": "jenkinsci/queue-cleanup-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/queue-cleanup-plugin", + "description": "Remove stalled items waiting in Jenkins queue", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/queue-cleanup-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/queue-cleanup-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/queue-cleanup-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/queue-cleanup-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/queue-cleanup-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/queue-cleanup-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/queue-cleanup-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/queue-cleanup-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/queue-cleanup-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/queue-cleanup-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/queue-cleanup-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/queue-cleanup-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/queue-cleanup-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/queue-cleanup-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/queue-cleanup-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/queue-cleanup-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/queue-cleanup-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/queue-cleanup-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/queue-cleanup-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/queue-cleanup-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/queue-cleanup-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/queue-cleanup-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/queue-cleanup-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/queue-cleanup-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/queue-cleanup-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/queue-cleanup-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/queue-cleanup-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/queue-cleanup-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/queue-cleanup-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/queue-cleanup-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/queue-cleanup-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/queue-cleanup-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/queue-cleanup-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/queue-cleanup-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/queue-cleanup-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/queue-cleanup-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/queue-cleanup-plugin/deployments", + "created_at": "2014-07-21T10:59:00Z", + "updated_at": "2019-06-05T06:05:22Z", + "pushed_at": "2019-10-08T16:24:45Z", + "git_url": "git://github.com/jenkinsci/queue-cleanup-plugin.git", + "ssh_url": "git@github.com:jenkinsci/queue-cleanup-plugin.git", + "clone_url": "https://github.com/jenkinsci/queue-cleanup-plugin.git", + "svn_url": "https://github.com/jenkinsci/queue-cleanup-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Queue+Cleanup+Plugin", + "size": 27, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 2, + "open_issues": 1, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 22095771, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjA5NTc3MQ==", + "name": "zapper-plugin", + "full_name": "jenkinsci/zapper-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/zapper-plugin", + "description": "Run OWASP ZAP in Jenkins for automated security assessment", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/zapper-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/zapper-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/zapper-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/zapper-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/zapper-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/zapper-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/zapper-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/zapper-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/zapper-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/zapper-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/zapper-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/zapper-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/zapper-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/zapper-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/zapper-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/zapper-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/zapper-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/zapper-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/zapper-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/zapper-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/zapper-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/zapper-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/zapper-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/zapper-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/zapper-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/zapper-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/zapper-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/zapper-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/zapper-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/zapper-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/zapper-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/zapper-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/zapper-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/zapper-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/zapper-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/zapper-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/zapper-plugin/deployments", + "created_at": "2014-07-22T08:00:42Z", + "updated_at": "2019-10-13T11:14:24Z", + "pushed_at": "2019-10-13T11:14:22Z", + "git_url": "git://github.com/jenkinsci/zapper-plugin.git", + "ssh_url": "git@github.com:jenkinsci/zapper-plugin.git", + "clone_url": "https://github.com/jenkinsci/zapper-plugin.git", + "svn_url": "https://github.com/jenkinsci/zapper-plugin", + "homepage": "", + "size": 13, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 3, + "open_issues": 0, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 22096008, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjA5NjAwOA==", + "name": "http-post-plugin", + "full_name": "jenkinsci/http-post-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/http-post-plugin", + "description": "A Jenkins plugin that publishes build artifacts via HTTP POST to an URL", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/http-post-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/http-post-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/http-post-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/http-post-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/http-post-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/http-post-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/http-post-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/http-post-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/http-post-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/http-post-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/http-post-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/http-post-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/http-post-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/http-post-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/http-post-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/http-post-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/http-post-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/http-post-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/http-post-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/http-post-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/http-post-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/http-post-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/http-post-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/http-post-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/http-post-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/http-post-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/http-post-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/http-post-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/http-post-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/http-post-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/http-post-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/http-post-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/http-post-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/http-post-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/http-post-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/http-post-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/http-post-plugin/deployments", + "created_at": "2014-07-22T08:09:31Z", + "updated_at": "2019-06-20T09:20:11Z", + "pushed_at": "2019-10-08T11:20:59Z", + "git_url": "git://github.com/jenkinsci/http-post-plugin.git", + "ssh_url": "git@github.com:jenkinsci/http-post-plugin.git", + "clone_url": "https://github.com/jenkinsci/http-post-plugin.git", + "svn_url": "https://github.com/jenkinsci/http-post-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/HTTP+POST+Plugin", + "size": 198, + "stargazers_count": 8, + "watchers_count": 8, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 7, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 7, + "open_issues": 1, + "watchers": 8, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 22339425, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjMzOTQyNQ==", + "name": "notify-yo-plugin", + "full_name": "jenkinsci/notify-yo-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/notify-yo-plugin", + "description": "Jenkins plugin - Notify with Yo.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/notify-yo-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/notify-yo-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/notify-yo-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/notify-yo-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/notify-yo-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/notify-yo-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/notify-yo-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/notify-yo-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/notify-yo-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/notify-yo-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/notify-yo-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/notify-yo-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/notify-yo-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/notify-yo-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/notify-yo-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/notify-yo-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/notify-yo-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/notify-yo-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/notify-yo-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/notify-yo-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/notify-yo-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/notify-yo-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/notify-yo-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/notify-yo-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/notify-yo-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/notify-yo-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/notify-yo-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/notify-yo-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/notify-yo-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/notify-yo-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/notify-yo-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/notify-yo-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/notify-yo-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/notify-yo-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/notify-yo-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/notify-yo-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/notify-yo-plugin/deployments", + "created_at": "2014-07-28T10:49:53Z", + "updated_at": "2014-07-29T00:30:32Z", + "pushed_at": "2014-08-27T14:18:36Z", + "git_url": "git://github.com/jenkinsci/notify-yo-plugin.git", + "ssh_url": "git@github.com:jenkinsci/notify-yo-plugin.git", + "clone_url": "https://github.com/jenkinsci/notify-yo-plugin.git", + "svn_url": "https://github.com/jenkinsci/notify-yo-plugin", + "homepage": null, + "size": 134, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 22375011, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjM3NTAxMQ==", + "name": "xltestview-plugin", + "full_name": "jenkinsci/xltestview-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/xltestview-plugin", + "description": "XebiaLabs XL TestView integration plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/xltestview-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/xltestview-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/xltestview-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/xltestview-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/xltestview-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/xltestview-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/xltestview-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/xltestview-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/xltestview-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/xltestview-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/xltestview-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/xltestview-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/xltestview-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/xltestview-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/xltestview-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/xltestview-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/xltestview-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/xltestview-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/xltestview-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/xltestview-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/xltestview-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/xltestview-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/xltestview-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/xltestview-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/xltestview-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/xltestview-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/xltestview-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/xltestview-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/xltestview-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/xltestview-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/xltestview-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/xltestview-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/xltestview-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/xltestview-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/xltestview-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/xltestview-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/xltestview-plugin/deployments", + "created_at": "2014-07-29T09:40:44Z", + "updated_at": "2019-07-05T12:51:17Z", + "pushed_at": "2016-08-03T13:34:17Z", + "git_url": "git://github.com/jenkinsci/xltestview-plugin.git", + "ssh_url": "git@github.com:jenkinsci/xltestview-plugin.git", + "clone_url": "https://github.com/jenkinsci/xltestview-plugin.git", + "svn_url": "https://github.com/jenkinsci/xltestview-plugin", + "homepage": "https://xebialabs.com/products/xl-testview/", + "size": 404, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 7, + "mirror_url": null, + "archived": true, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 7, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 22379682, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjM3OTY4Mg==", + "name": "travis-yml-plugin", + "full_name": "jenkinsci/travis-yml-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/travis-yml-plugin", + "description": "Build your project using .travis.yml on Jenkins", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/travis-yml-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/travis-yml-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/travis-yml-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/travis-yml-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/travis-yml-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/travis-yml-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/travis-yml-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/travis-yml-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/travis-yml-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/travis-yml-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/travis-yml-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/travis-yml-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/travis-yml-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/travis-yml-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/travis-yml-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/travis-yml-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/travis-yml-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/travis-yml-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/travis-yml-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/travis-yml-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/travis-yml-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/travis-yml-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/travis-yml-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/travis-yml-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/travis-yml-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/travis-yml-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/travis-yml-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/travis-yml-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/travis-yml-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/travis-yml-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/travis-yml-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/travis-yml-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/travis-yml-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/travis-yml-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/travis-yml-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/travis-yml-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/travis-yml-plugin/deployments", + "created_at": "2014-07-29T12:52:58Z", + "updated_at": "2019-10-02T22:06:49Z", + "pushed_at": "2016-11-13T21:56:14Z", + "git_url": "git://github.com/jenkinsci/travis-yml-plugin.git", + "ssh_url": "git@github.com:jenkinsci/travis-yml-plugin.git", + "clone_url": "https://github.com/jenkinsci/travis-yml-plugin.git", + "svn_url": "https://github.com/jenkinsci/travis-yml-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Travis+YML+Plugin", + "size": 20, + "stargazers_count": 95, + "watchers_count": 95, + "language": "Ruby", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 11, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 11, + "open_issues": 1, + "watchers": 95, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 22442559, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjQ0MjU1OQ==", + "name": "octopus-client-plugin", + "full_name": "jenkinsci/octopus-client-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/octopus-client-plugin", + "description": "Octopus Client for Jenkins", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/octopus-client-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/octopus-client-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/octopus-client-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/octopus-client-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/octopus-client-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/octopus-client-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/octopus-client-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/octopus-client-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/octopus-client-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/octopus-client-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/octopus-client-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/octopus-client-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/octopus-client-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/octopus-client-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/octopus-client-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/octopus-client-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/octopus-client-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/octopus-client-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/octopus-client-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/octopus-client-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/octopus-client-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/octopus-client-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/octopus-client-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/octopus-client-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/octopus-client-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/octopus-client-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/octopus-client-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/octopus-client-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/octopus-client-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/octopus-client-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/octopus-client-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/octopus-client-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/octopus-client-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/octopus-client-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/octopus-client-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/octopus-client-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/octopus-client-plugin/deployments", + "created_at": "2014-07-30T19:59:53Z", + "updated_at": "2014-07-30T20:00:08Z", + "pushed_at": "2014-07-24T22:06:15Z", + "git_url": "git://github.com/jenkinsci/octopus-client-plugin.git", + "ssh_url": "git@github.com:jenkinsci/octopus-client-plugin.git", + "clone_url": "https://github.com/jenkinsci/octopus-client-plugin.git", + "svn_url": "https://github.com/jenkinsci/octopus-client-plugin", + "homepage": null, + "size": 67, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 22616043, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjYxNjA0Mw==", + "name": "libdtkit", + "full_name": "jenkinsci/libdtkit", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/libdtkit", + "description": "DTKit Library", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/libdtkit", + "forks_url": "https://api.github.com/repos/jenkinsci/libdtkit/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/libdtkit/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/libdtkit/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/libdtkit/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/libdtkit/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/libdtkit/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/libdtkit/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/libdtkit/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/libdtkit/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/libdtkit/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/libdtkit/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/libdtkit/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/libdtkit/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/libdtkit/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/libdtkit/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/libdtkit/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/libdtkit/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/libdtkit/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/libdtkit/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/libdtkit/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/libdtkit/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/libdtkit/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/libdtkit/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/libdtkit/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/libdtkit/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/libdtkit/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/libdtkit/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/libdtkit/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/libdtkit/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/libdtkit/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/libdtkit/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/libdtkit/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/libdtkit/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/libdtkit/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/libdtkit/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/libdtkit/deployments", + "created_at": "2014-08-04T18:55:56Z", + "updated_at": "2019-06-11T20:15:43Z", + "pushed_at": "2019-06-11T20:15:41Z", + "git_url": "git://github.com/jenkinsci/libdtkit.git", + "ssh_url": "git@github.com:jenkinsci/libdtkit.git", + "clone_url": "https://github.com/jenkinsci/libdtkit.git", + "svn_url": "https://github.com/jenkinsci/libdtkit", + "homepage": null, + "size": 57, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 22628664, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjYyODY2NA==", + "name": "multi-branch-project-plugin", + "full_name": "jenkinsci/multi-branch-project-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/multi-branch-project-plugin", + "description": "Jenkins plugin providing new project types for multiple branches.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/multi-branch-project-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/multi-branch-project-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/multi-branch-project-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/multi-branch-project-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/multi-branch-project-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/multi-branch-project-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/multi-branch-project-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/multi-branch-project-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/multi-branch-project-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/multi-branch-project-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/multi-branch-project-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/multi-branch-project-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/multi-branch-project-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/multi-branch-project-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/multi-branch-project-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/multi-branch-project-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/multi-branch-project-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/multi-branch-project-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/multi-branch-project-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/multi-branch-project-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/multi-branch-project-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/multi-branch-project-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/multi-branch-project-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/multi-branch-project-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/multi-branch-project-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/multi-branch-project-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/multi-branch-project-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/multi-branch-project-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/multi-branch-project-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/multi-branch-project-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/multi-branch-project-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/multi-branch-project-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/multi-branch-project-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/multi-branch-project-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/multi-branch-project-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/multi-branch-project-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/multi-branch-project-plugin/deployments", + "created_at": "2014-08-05T03:18:45Z", + "updated_at": "2019-08-13T15:47:47Z", + "pushed_at": "2017-07-11T10:54:23Z", + "git_url": "git://github.com/jenkinsci/multi-branch-project-plugin.git", + "ssh_url": "git@github.com:jenkinsci/multi-branch-project-plugin.git", + "clone_url": "https://github.com/jenkinsci/multi-branch-project-plugin.git", + "svn_url": "https://github.com/jenkinsci/multi-branch-project-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Multi-Branch+Project+Plugin", + "size": 367, + "stargazers_count": 65, + "watchers_count": 65, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 62, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 62, + "open_issues": 0, + "watchers": 65, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 22634120, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjYzNDEyMA==", + "name": "flaky-test-handler-plugin", + "full_name": "jenkinsci/flaky-test-handler-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/flaky-test-handler-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/flaky-test-handler-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/flaky-test-handler-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/flaky-test-handler-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/flaky-test-handler-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/flaky-test-handler-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/flaky-test-handler-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/flaky-test-handler-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/flaky-test-handler-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/flaky-test-handler-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/flaky-test-handler-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/flaky-test-handler-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/flaky-test-handler-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/flaky-test-handler-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/flaky-test-handler-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/flaky-test-handler-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/flaky-test-handler-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/flaky-test-handler-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/flaky-test-handler-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/flaky-test-handler-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/flaky-test-handler-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/flaky-test-handler-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/flaky-test-handler-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/flaky-test-handler-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/flaky-test-handler-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/flaky-test-handler-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/flaky-test-handler-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/flaky-test-handler-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/flaky-test-handler-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/flaky-test-handler-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/flaky-test-handler-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/flaky-test-handler-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/flaky-test-handler-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/flaky-test-handler-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/flaky-test-handler-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/flaky-test-handler-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/flaky-test-handler-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/flaky-test-handler-plugin/deployments", + "created_at": "2014-08-05T07:14:56Z", + "updated_at": "2019-10-21T05:48:04Z", + "pushed_at": "2019-10-09T19:38:42Z", + "git_url": "git://github.com/jenkinsci/flaky-test-handler-plugin.git", + "ssh_url": "git@github.com:jenkinsci/flaky-test-handler-plugin.git", + "clone_url": "https://github.com/jenkinsci/flaky-test-handler-plugin.git", + "svn_url": "https://github.com/jenkinsci/flaky-test-handler-plugin", + "homepage": "", + "size": 244, + "stargazers_count": 22, + "watchers_count": 22, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 19, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 19, + "open_issues": 1, + "watchers": 22, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 22675774, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjY3NTc3NA==", + "name": "icon-shim-plugin", + "full_name": "jenkinsci/icon-shim-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/icon-shim-plugin", + "description": "A \"shim\" plugin that allows plugins make use of the core icon tag, while still remaining backward compatible with older versions of Jenkins core that do not have the icon tag.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/icon-shim-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/icon-shim-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/icon-shim-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/icon-shim-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/icon-shim-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/icon-shim-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/icon-shim-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/icon-shim-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/icon-shim-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/icon-shim-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/icon-shim-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/icon-shim-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/icon-shim-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/icon-shim-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/icon-shim-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/icon-shim-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/icon-shim-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/icon-shim-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/icon-shim-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/icon-shim-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/icon-shim-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/icon-shim-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/icon-shim-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/icon-shim-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/icon-shim-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/icon-shim-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/icon-shim-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/icon-shim-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/icon-shim-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/icon-shim-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/icon-shim-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/icon-shim-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/icon-shim-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/icon-shim-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/icon-shim-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/icon-shim-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/icon-shim-plugin/deployments", + "created_at": "2014-08-06T08:41:45Z", + "updated_at": "2018-07-10T17:11:59Z", + "pushed_at": "2018-07-10T17:11:57Z", + "git_url": "git://github.com/jenkinsci/icon-shim-plugin.git", + "ssh_url": "git@github.com:jenkinsci/icon-shim-plugin.git", + "clone_url": "https://github.com/jenkinsci/icon-shim-plugin.git", + "svn_url": "https://github.com/jenkinsci/icon-shim-plugin", + "homepage": null, + "size": 798, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 3, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 22769840, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjc2OTg0MA==", + "name": "saml-plugin", + "full_name": "jenkinsci/saml-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/saml-plugin", + "description": "A SAML 2.0 Plugin for the Jenkins Continuous Integration server", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/saml-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/saml-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/saml-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/saml-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/saml-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/saml-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/saml-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/saml-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/saml-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/saml-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/saml-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/saml-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/saml-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/saml-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/saml-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/saml-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/saml-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/saml-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/saml-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/saml-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/saml-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/saml-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/saml-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/saml-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/saml-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/saml-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/saml-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/saml-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/saml-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/saml-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/saml-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/saml-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/saml-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/saml-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/saml-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/saml-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/saml-plugin/deployments", + "created_at": "2014-08-08T19:58:16Z", + "updated_at": "2019-10-19T12:21:08Z", + "pushed_at": "2019-10-19T12:21:06Z", + "git_url": "git://github.com/jenkinsci/saml-plugin.git", + "ssh_url": "git@github.com:jenkinsci/saml-plugin.git", + "clone_url": "https://github.com/jenkinsci/saml-plugin.git", + "svn_url": "https://github.com/jenkinsci/saml-plugin", + "homepage": null, + "size": 1416, + "stargazers_count": 38, + "watchers_count": 38, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 67, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 67, + "open_issues": 1, + "watchers": 38, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 22840826, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjg0MDgyNg==", + "name": "junit-plugin", + "full_name": "jenkinsci/junit-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/junit-plugin", + "description": "Allows JUnit-format test results to be published", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/junit-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/junit-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/junit-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/junit-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/junit-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/junit-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/junit-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/junit-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/junit-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/junit-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/junit-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/junit-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/junit-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/junit-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/junit-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/junit-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/junit-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/junit-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/junit-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/junit-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/junit-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/junit-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/junit-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/junit-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/junit-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/junit-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/junit-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/junit-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/junit-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/junit-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/junit-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/junit-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/junit-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/junit-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/junit-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/junit-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/junit-plugin/deployments", + "created_at": "2014-08-11T13:55:17Z", + "updated_at": "2019-10-23T05:40:15Z", + "pushed_at": "2019-10-24T11:17:12Z", + "git_url": "git://github.com/jenkinsci/junit-plugin.git", + "ssh_url": "git@github.com:jenkinsci/junit-plugin.git", + "clone_url": "https://github.com/jenkinsci/junit-plugin.git", + "svn_url": "https://github.com/jenkinsci/junit-plugin", + "homepage": "https://plugins.jenkins.io/junit", + "size": 1614, + "stargazers_count": 46, + "watchers_count": 46, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 214, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 28, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 214, + "open_issues": 28, + "watchers": 46, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 22994170, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjk5NDE3MA==", + "name": "kerberos-sso-plugin", + "full_name": "jenkinsci/kerberos-sso-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/kerberos-sso-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/kerberos-sso-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/kerberos-sso-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/kerberos-sso-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/kerberos-sso-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/kerberos-sso-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/kerberos-sso-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/kerberos-sso-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/kerberos-sso-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/kerberos-sso-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/kerberos-sso-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/kerberos-sso-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/kerberos-sso-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/kerberos-sso-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/kerberos-sso-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/kerberos-sso-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/kerberos-sso-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/kerberos-sso-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/kerberos-sso-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/kerberos-sso-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/kerberos-sso-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/kerberos-sso-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/kerberos-sso-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/kerberos-sso-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/kerberos-sso-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/kerberos-sso-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/kerberos-sso-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/kerberos-sso-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/kerberos-sso-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/kerberos-sso-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/kerberos-sso-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/kerberos-sso-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/kerberos-sso-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/kerberos-sso-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/kerberos-sso-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/kerberos-sso-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/kerberos-sso-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/kerberos-sso-plugin/deployments", + "created_at": "2014-08-15T15:34:11Z", + "updated_at": "2019-10-08T13:24:35Z", + "pushed_at": "2019-10-25T14:19:46Z", + "git_url": "git://github.com/jenkinsci/kerberos-sso-plugin.git", + "ssh_url": "git@github.com:jenkinsci/kerberos-sso-plugin.git", + "clone_url": "https://github.com/jenkinsci/kerberos-sso-plugin.git", + "svn_url": "https://github.com/jenkinsci/kerberos-sso-plugin", + "homepage": "", + "size": 178, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 10, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 10, + "open_issues": 1, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 23181001, + "node_id": "MDEwOlJlcG9zaXRvcnkyMzE4MTAwMQ==", + "name": "page-note-plugin", + "full_name": "jenkinsci/page-note-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/page-note-plugin", + "description": "Page note plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/page-note-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/page-note-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/page-note-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/page-note-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/page-note-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/page-note-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/page-note-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/page-note-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/page-note-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/page-note-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/page-note-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/page-note-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/page-note-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/page-note-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/page-note-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/page-note-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/page-note-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/page-note-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/page-note-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/page-note-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/page-note-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/page-note-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/page-note-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/page-note-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/page-note-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/page-note-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/page-note-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/page-note-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/page-note-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/page-note-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/page-note-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/page-note-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/page-note-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/page-note-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/page-note-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/page-note-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/page-note-plugin/deployments", + "created_at": "2014-08-21T09:10:50Z", + "updated_at": "2014-08-21T11:45:04Z", + "pushed_at": "2014-08-21T11:41:07Z", + "git_url": "git://github.com/jenkinsci/page-note-plugin.git", + "ssh_url": "git@github.com:jenkinsci/page-note-plugin.git", + "clone_url": "https://github.com/jenkinsci/page-note-plugin.git", + "svn_url": "https://github.com/jenkinsci/page-note-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Page+Note+Plugin", + "size": 212, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 23184859, + "node_id": "MDEwOlJlcG9zaXRvcnkyMzE4NDg1OQ==", + "name": "popular-jobs-plugin", + "full_name": "jenkinsci/popular-jobs-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/popular-jobs-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/popular-jobs-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/popular-jobs-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/popular-jobs-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/popular-jobs-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/popular-jobs-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/popular-jobs-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/popular-jobs-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/popular-jobs-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/popular-jobs-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/popular-jobs-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/popular-jobs-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/popular-jobs-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/popular-jobs-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/popular-jobs-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/popular-jobs-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/popular-jobs-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/popular-jobs-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/popular-jobs-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/popular-jobs-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/popular-jobs-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/popular-jobs-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/popular-jobs-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/popular-jobs-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/popular-jobs-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/popular-jobs-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/popular-jobs-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/popular-jobs-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/popular-jobs-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/popular-jobs-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/popular-jobs-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/popular-jobs-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/popular-jobs-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/popular-jobs-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/popular-jobs-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/popular-jobs-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/popular-jobs-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/popular-jobs-plugin/deployments", + "created_at": "2014-08-21T11:38:22Z", + "updated_at": "2014-08-24T09:11:39Z", + "pushed_at": "2014-08-26T16:37:27Z", + "git_url": "git://github.com/jenkinsci/popular-jobs-plugin.git", + "ssh_url": "git@github.com:jenkinsci/popular-jobs-plugin.git", + "clone_url": "https://github.com/jenkinsci/popular-jobs-plugin.git", + "svn_url": "https://github.com/jenkinsci/popular-jobs-plugin", + "homepage": null, + "size": 112, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 23444367, + "node_id": "MDEwOlJlcG9zaXRvcnkyMzQ0NDM2Nw==", + "name": "radargun-plugin", + "full_name": "jenkinsci/radargun-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/radargun-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/radargun-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/radargun-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/radargun-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/radargun-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/radargun-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/radargun-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/radargun-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/radargun-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/radargun-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/radargun-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/radargun-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/radargun-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/radargun-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/radargun-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/radargun-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/radargun-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/radargun-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/radargun-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/radargun-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/radargun-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/radargun-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/radargun-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/radargun-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/radargun-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/radargun-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/radargun-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/radargun-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/radargun-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/radargun-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/radargun-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/radargun-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/radargun-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/radargun-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/radargun-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/radargun-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/radargun-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/radargun-plugin/deployments", + "created_at": "2014-08-28T21:59:32Z", + "updated_at": "2019-08-07T20:55:27Z", + "pushed_at": "2019-08-07T20:55:26Z", + "git_url": "git://github.com/jenkinsci/radargun-plugin.git", + "ssh_url": "git@github.com:jenkinsci/radargun-plugin.git", + "clone_url": "https://github.com/jenkinsci/radargun-plugin.git", + "svn_url": "https://github.com/jenkinsci/radargun-plugin", + "homepage": null, + "size": 255, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 5, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 23485357, + "node_id": "MDEwOlJlcG9zaXRvcnkyMzQ4NTM1Nw==", + "name": "doony-plugin", + "full_name": "jenkinsci/doony-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/doony-plugin", + "description": "UI Improvements for Jenkins", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/doony-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/doony-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/doony-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/doony-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/doony-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/doony-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/doony-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/doony-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/doony-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/doony-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/doony-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/doony-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/doony-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/doony-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/doony-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/doony-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/doony-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/doony-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/doony-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/doony-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/doony-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/doony-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/doony-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/doony-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/doony-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/doony-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/doony-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/doony-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/doony-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/doony-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/doony-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/doony-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/doony-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/doony-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/doony-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/doony-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/doony-plugin/deployments", + "created_at": "2014-08-30T05:23:09Z", + "updated_at": "2014-08-30T05:23:20Z", + "pushed_at": "2014-08-29T22:25:53Z", + "git_url": "git://github.com/jenkinsci/doony-plugin.git", + "ssh_url": "git@github.com:jenkinsci/doony-plugin.git", + "clone_url": "https://github.com/jenkinsci/doony-plugin.git", + "svn_url": "https://github.com/jenkinsci/doony-plugin", + "homepage": "http://doony.org", + "size": 959, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 23513984, + "node_id": "MDEwOlJlcG9zaXRvcnkyMzUxMzk4NA==", + "name": "lucene-search-plugin", + "full_name": "jenkinsci/lucene-search-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/lucene-search-plugin", + "description": "Jenkins plugin for searching job data via Lucene or Solr", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/lucene-search-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/lucene-search-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/lucene-search-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/lucene-search-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/lucene-search-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/lucene-search-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/lucene-search-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/lucene-search-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/lucene-search-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/lucene-search-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/lucene-search-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/lucene-search-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/lucene-search-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/lucene-search-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/lucene-search-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/lucene-search-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/lucene-search-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/lucene-search-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/lucene-search-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/lucene-search-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/lucene-search-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/lucene-search-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/lucene-search-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/lucene-search-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/lucene-search-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/lucene-search-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/lucene-search-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/lucene-search-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/lucene-search-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/lucene-search-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/lucene-search-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/lucene-search-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/lucene-search-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/lucene-search-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/lucene-search-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/lucene-search-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/lucene-search-plugin/deployments", + "created_at": "2014-08-31T13:21:23Z", + "updated_at": "2016-03-16T11:52:05Z", + "pushed_at": "2019-10-18T13:34:48Z", + "git_url": "git://github.com/jenkinsci/lucene-search-plugin.git", + "ssh_url": "git@github.com:jenkinsci/lucene-search-plugin.git", + "clone_url": "https://github.com/jenkinsci/lucene-search-plugin.git", + "svn_url": "https://github.com/jenkinsci/lucene-search-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Lucene-Search", + "size": 479, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 3, + "open_issues": 3, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 23622049, + "node_id": "MDEwOlJlcG9zaXRvcnkyMzYyMjA0OQ==", + "name": "label-linked-jobs-plugin", + "full_name": "jenkinsci/label-linked-jobs-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/label-linked-jobs-plugin", + "description": "LabelPluginSettings", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/label-linked-jobs-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/label-linked-jobs-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/label-linked-jobs-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/label-linked-jobs-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/label-linked-jobs-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/label-linked-jobs-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/label-linked-jobs-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/label-linked-jobs-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/label-linked-jobs-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/label-linked-jobs-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/label-linked-jobs-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/label-linked-jobs-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/label-linked-jobs-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/label-linked-jobs-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/label-linked-jobs-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/label-linked-jobs-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/label-linked-jobs-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/label-linked-jobs-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/label-linked-jobs-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/label-linked-jobs-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/label-linked-jobs-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/label-linked-jobs-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/label-linked-jobs-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/label-linked-jobs-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/label-linked-jobs-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/label-linked-jobs-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/label-linked-jobs-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/label-linked-jobs-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/label-linked-jobs-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/label-linked-jobs-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/label-linked-jobs-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/label-linked-jobs-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/label-linked-jobs-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/label-linked-jobs-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/label-linked-jobs-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/label-linked-jobs-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/label-linked-jobs-plugin/deployments", + "created_at": "2014-09-03T13:49:01Z", + "updated_at": "2019-10-08T12:05:37Z", + "pushed_at": "2019-10-08T12:05:35Z", + "git_url": "git://github.com/jenkinsci/label-linked-jobs-plugin.git", + "ssh_url": "git@github.com:jenkinsci/label-linked-jobs-plugin.git", + "clone_url": "https://github.com/jenkinsci/label-linked-jobs-plugin.git", + "svn_url": "https://github.com/jenkinsci/label-linked-jobs-plugin", + "homepage": "", + "size": 138, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 4, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 23701779, + "node_id": "MDEwOlJlcG9zaXRvcnkyMzcwMTc3OQ==", + "name": "saltstack-plugin", + "full_name": "jenkinsci/saltstack-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/saltstack-plugin", + "description": "A quick and dirty jenkins plugin to speak to a saltstack server via the salt api", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/saltstack-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/saltstack-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/saltstack-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/saltstack-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/saltstack-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/saltstack-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/saltstack-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/saltstack-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/saltstack-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/saltstack-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/saltstack-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/saltstack-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/saltstack-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/saltstack-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/saltstack-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/saltstack-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/saltstack-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/saltstack-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/saltstack-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/saltstack-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/saltstack-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/saltstack-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/saltstack-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/saltstack-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/saltstack-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/saltstack-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/saltstack-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/saltstack-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/saltstack-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/saltstack-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/saltstack-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/saltstack-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/saltstack-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/saltstack-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/saltstack-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/saltstack-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/saltstack-plugin/deployments", + "created_at": "2014-09-05T12:12:45Z", + "updated_at": "2019-07-15T11:13:10Z", + "pushed_at": "2019-10-08T12:21:00Z", + "git_url": "git://github.com/jenkinsci/saltstack-plugin.git", + "ssh_url": "git@github.com:jenkinsci/saltstack-plugin.git", + "clone_url": "https://github.com/jenkinsci/saltstack-plugin.git", + "svn_url": "https://github.com/jenkinsci/saltstack-plugin", + "homepage": null, + "size": 1183, + "stargazers_count": 27, + "watchers_count": 27, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 24, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 10, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 24, + "open_issues": 10, + "watchers": 27, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 23844737, + "node_id": "MDEwOlJlcG9zaXRvcnkyMzg0NDczNw==", + "name": "yaml-project-plugin", + "full_name": "jenkinsci/yaml-project-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/yaml-project-plugin", + "description": "This plugin exposes a YAML Project based on Jenkins structured form submissions (JSON)", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/yaml-project-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/yaml-project-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/yaml-project-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/yaml-project-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/yaml-project-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/yaml-project-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/yaml-project-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/yaml-project-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/yaml-project-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/yaml-project-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/yaml-project-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/yaml-project-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/yaml-project-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/yaml-project-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/yaml-project-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/yaml-project-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/yaml-project-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/yaml-project-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/yaml-project-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/yaml-project-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/yaml-project-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/yaml-project-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/yaml-project-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/yaml-project-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/yaml-project-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/yaml-project-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/yaml-project-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/yaml-project-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/yaml-project-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/yaml-project-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/yaml-project-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/yaml-project-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/yaml-project-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/yaml-project-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/yaml-project-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/yaml-project-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/yaml-project-plugin/deployments", + "created_at": "2014-09-09T18:07:13Z", + "updated_at": "2018-03-03T23:19:55Z", + "pushed_at": "2017-02-08T20:40:52Z", + "git_url": "git://github.com/jenkinsci/yaml-project-plugin.git", + "ssh_url": "git@github.com:jenkinsci/yaml-project-plugin.git", + "clone_url": "https://github.com/jenkinsci/yaml-project-plugin.git", + "svn_url": "https://github.com/jenkinsci/yaml-project-plugin", + "homepage": null, + "size": 451, + "stargazers_count": 11, + "watchers_count": 11, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 7, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 7, + "open_issues": 3, + "watchers": 11, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 23872569, + "node_id": "MDEwOlJlcG9zaXRvcnkyMzg3MjU2OQ==", + "name": "CFLint-plugin", + "full_name": "jenkinsci/CFLint-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/CFLint-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/CFLint-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/CFLint-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/CFLint-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/CFLint-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/CFLint-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/CFLint-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/CFLint-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/CFLint-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/CFLint-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/CFLint-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/CFLint-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/CFLint-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/CFLint-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/CFLint-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/CFLint-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/CFLint-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/CFLint-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/CFLint-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/CFLint-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/CFLint-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/CFLint-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/CFLint-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/CFLint-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/CFLint-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/CFLint-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/CFLint-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/CFLint-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/CFLint-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/CFLint-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/CFLint-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/CFLint-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/CFLint-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/CFLint-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/CFLint-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/CFLint-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/CFLint-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/CFLint-plugin/deployments", + "created_at": "2014-09-10T11:51:39Z", + "updated_at": "2017-11-07T22:32:24Z", + "pushed_at": "2015-12-22T13:08:43Z", + "git_url": "git://github.com/jenkinsci/CFLint-plugin.git", + "ssh_url": "git@github.com:jenkinsci/CFLint-plugin.git", + "clone_url": "https://github.com/jenkinsci/CFLint-plugin.git", + "svn_url": "https://github.com/jenkinsci/CFLint-plugin", + "homepage": "", + "size": 148, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 6, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 23886495, + "node_id": "MDEwOlJlcG9zaXRvcnkyMzg4NjQ5NQ==", + "name": "webinspect-plugin", + "full_name": "jenkinsci/webinspect-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/webinspect-plugin", + "description": "Jenkins WebInspect Plugin Publisher provides the ability to upload a WebInspect scan file, from your Jenkins server to your Fortify Software Security Center (SSC) deployment.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/webinspect-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/webinspect-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/webinspect-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/webinspect-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/webinspect-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/webinspect-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/webinspect-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/webinspect-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/webinspect-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/webinspect-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/webinspect-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/webinspect-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/webinspect-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/webinspect-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/webinspect-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/webinspect-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/webinspect-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/webinspect-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/webinspect-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/webinspect-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/webinspect-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/webinspect-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/webinspect-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/webinspect-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/webinspect-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/webinspect-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/webinspect-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/webinspect-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/webinspect-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/webinspect-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/webinspect-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/webinspect-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/webinspect-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/webinspect-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/webinspect-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/webinspect-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/webinspect-plugin/deployments", + "created_at": "2014-09-10T18:23:29Z", + "updated_at": "2019-07-23T15:35:24Z", + "pushed_at": "2015-02-23T14:49:36Z", + "git_url": "git://github.com/jenkinsci/webinspect-plugin.git", + "ssh_url": "git@github.com:jenkinsci/webinspect-plugin.git", + "clone_url": "https://github.com/jenkinsci/webinspect-plugin.git", + "svn_url": "https://github.com/jenkinsci/webinspect-plugin", + "homepage": "", + "size": 296, + "stargazers_count": 8, + "watchers_count": 8, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 5, + "open_issues": 1, + "watchers": 8, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 23975692, + "node_id": "MDEwOlJlcG9zaXRvcnkyMzk3NTY5Mg==", + "name": "aws-beanstalk-publisher-plugin", + "full_name": "jenkinsci/aws-beanstalk-publisher-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/aws-beanstalk-publisher-plugin", + "description": "Jenkins AWS Elastic Beanstalk Publisher", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/aws-beanstalk-publisher-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/aws-beanstalk-publisher-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/aws-beanstalk-publisher-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/aws-beanstalk-publisher-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/aws-beanstalk-publisher-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/aws-beanstalk-publisher-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/aws-beanstalk-publisher-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/aws-beanstalk-publisher-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/aws-beanstalk-publisher-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/aws-beanstalk-publisher-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/aws-beanstalk-publisher-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/aws-beanstalk-publisher-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/aws-beanstalk-publisher-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/aws-beanstalk-publisher-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/aws-beanstalk-publisher-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/aws-beanstalk-publisher-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/aws-beanstalk-publisher-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/aws-beanstalk-publisher-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/aws-beanstalk-publisher-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/aws-beanstalk-publisher-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/aws-beanstalk-publisher-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/aws-beanstalk-publisher-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/aws-beanstalk-publisher-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/aws-beanstalk-publisher-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/aws-beanstalk-publisher-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/aws-beanstalk-publisher-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/aws-beanstalk-publisher-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/aws-beanstalk-publisher-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/aws-beanstalk-publisher-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/aws-beanstalk-publisher-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/aws-beanstalk-publisher-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/aws-beanstalk-publisher-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/aws-beanstalk-publisher-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/aws-beanstalk-publisher-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/aws-beanstalk-publisher-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/aws-beanstalk-publisher-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/aws-beanstalk-publisher-plugin/deployments", + "created_at": "2014-09-12T20:26:57Z", + "updated_at": "2019-10-07T19:42:43Z", + "pushed_at": "2019-10-08T11:52:43Z", + "git_url": "git://github.com/jenkinsci/aws-beanstalk-publisher-plugin.git", + "ssh_url": "git@github.com:jenkinsci/aws-beanstalk-publisher-plugin.git", + "clone_url": "https://github.com/jenkinsci/aws-beanstalk-publisher-plugin.git", + "svn_url": "https://github.com/jenkinsci/aws-beanstalk-publisher-plugin", + "homepage": null, + "size": 437, + "stargazers_count": 10, + "watchers_count": 10, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 16, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 11, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 16, + "open_issues": 11, + "watchers": 10, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 24141085, + "node_id": "MDEwOlJlcG9zaXRvcnkyNDE0MTA4NQ==", + "name": "chef-identity-plugin", + "full_name": "jenkinsci/chef-identity-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/chef-identity-plugin", + "description": "Jenkins CI plugin to manage Chef identities", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/chef-identity-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/chef-identity-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/chef-identity-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/chef-identity-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/chef-identity-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/chef-identity-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/chef-identity-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/chef-identity-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/chef-identity-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/chef-identity-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/chef-identity-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/chef-identity-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/chef-identity-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/chef-identity-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/chef-identity-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/chef-identity-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/chef-identity-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/chef-identity-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/chef-identity-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/chef-identity-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/chef-identity-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/chef-identity-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/chef-identity-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/chef-identity-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/chef-identity-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/chef-identity-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/chef-identity-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/chef-identity-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/chef-identity-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/chef-identity-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/chef-identity-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/chef-identity-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/chef-identity-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/chef-identity-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/chef-identity-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/chef-identity-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/chef-identity-plugin/deployments", + "created_at": "2014-09-17T10:58:22Z", + "updated_at": "2019-03-20T19:55:39Z", + "pushed_at": "2019-10-08T15:18:20Z", + "git_url": "git://github.com/jenkinsci/chef-identity-plugin.git", + "ssh_url": "git@github.com:jenkinsci/chef-identity-plugin.git", + "clone_url": "https://github.com/jenkinsci/chef-identity-plugin.git", + "svn_url": "https://github.com/jenkinsci/chef-identity-plugin", + "homepage": null, + "size": 33, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 8, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 8, + "open_issues": 2, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 24152927, + "node_id": "MDEwOlJlcG9zaXRvcnkyNDE1MjkyNw==", + "name": "dumpling-plugin", + "full_name": "jenkinsci/dumpling-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/dumpling-plugin", + "description": "Dumpling plugin for jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/dumpling-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/dumpling-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/dumpling-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/dumpling-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/dumpling-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/dumpling-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/dumpling-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/dumpling-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/dumpling-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/dumpling-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/dumpling-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/dumpling-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/dumpling-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/dumpling-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/dumpling-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/dumpling-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/dumpling-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/dumpling-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/dumpling-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/dumpling-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/dumpling-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/dumpling-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/dumpling-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/dumpling-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/dumpling-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/dumpling-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/dumpling-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/dumpling-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/dumpling-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/dumpling-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/dumpling-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/dumpling-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/dumpling-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/dumpling-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/dumpling-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/dumpling-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/dumpling-plugin/deployments", + "created_at": "2014-09-17T16:30:42Z", + "updated_at": "2016-02-08T06:55:34Z", + "pushed_at": "2019-10-08T16:35:16Z", + "git_url": "git://github.com/jenkinsci/dumpling-plugin.git", + "ssh_url": "git@github.com:jenkinsci/dumpling-plugin.git", + "clone_url": "https://github.com/jenkinsci/dumpling-plugin.git", + "svn_url": "https://github.com/jenkinsci/dumpling-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Dumpling+Plugin", + "size": 29, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 24300531, + "node_id": "MDEwOlJlcG9zaXRvcnkyNDMwMDUzMQ==", + "name": "ircbot-test", + "full_name": "jenkinsci/ircbot-test", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/ircbot-test", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/ircbot-test", + "forks_url": "https://api.github.com/repos/jenkinsci/ircbot-test/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/ircbot-test/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/ircbot-test/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/ircbot-test/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/ircbot-test/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/ircbot-test/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/ircbot-test/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/ircbot-test/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/ircbot-test/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/ircbot-test/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/ircbot-test/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/ircbot-test/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/ircbot-test/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/ircbot-test/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/ircbot-test/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/ircbot-test/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/ircbot-test/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/ircbot-test/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/ircbot-test/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/ircbot-test/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/ircbot-test/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/ircbot-test/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/ircbot-test/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/ircbot-test/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/ircbot-test/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/ircbot-test/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/ircbot-test/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/ircbot-test/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/ircbot-test/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/ircbot-test/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/ircbot-test/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/ircbot-test/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/ircbot-test/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/ircbot-test/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/ircbot-test/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/ircbot-test/deployments", + "created_at": "2014-09-21T19:05:46Z", + "updated_at": "2014-09-21T19:05:47Z", + "pushed_at": "2014-09-21T19:05:46Z", + "git_url": "git://github.com/jenkinsci/ircbot-test.git", + "ssh_url": "git@github.com:jenkinsci/ircbot-test.git", + "clone_url": "https://github.com/jenkinsci/ircbot-test.git", + "svn_url": "https://github.com/jenkinsci/ircbot-test", + "homepage": "", + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 24333079, + "node_id": "MDEwOlJlcG9zaXRvcnkyNDMzMzA3OQ==", + "name": "uithemes-plugin", + "full_name": "jenkinsci/uithemes-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/uithemes-plugin", + "description": "Plugin to help Jenkins Core and Jenkins Plugins use modularized UI styling themes", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/uithemes-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/uithemes-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/uithemes-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/uithemes-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/uithemes-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/uithemes-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/uithemes-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/uithemes-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/uithemes-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/uithemes-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/uithemes-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/uithemes-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/uithemes-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/uithemes-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/uithemes-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/uithemes-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/uithemes-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/uithemes-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/uithemes-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/uithemes-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/uithemes-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/uithemes-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/uithemes-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/uithemes-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/uithemes-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/uithemes-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/uithemes-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/uithemes-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/uithemes-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/uithemes-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/uithemes-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/uithemes-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/uithemes-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/uithemes-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/uithemes-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/uithemes-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/uithemes-plugin/deployments", + "created_at": "2014-09-22T15:00:06Z", + "updated_at": "2019-02-07T10:44:22Z", + "pushed_at": "2015-06-15T09:07:39Z", + "git_url": "git://github.com/jenkinsci/uithemes-plugin.git", + "ssh_url": "git@github.com:jenkinsci/uithemes-plugin.git", + "clone_url": "https://github.com/jenkinsci/uithemes-plugin.git", + "svn_url": "https://github.com/jenkinsci/uithemes-plugin", + "homepage": "", + "size": 719, + "stargazers_count": 12, + "watchers_count": 12, + "language": "CSS", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 5, + "open_issues": 1, + "watchers": 12, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 24414450, + "node_id": "MDEwOlJlcG9zaXRvcnkyNDQxNDQ1MA==", + "name": "sasunit-plugin", + "full_name": "jenkinsci/sasunit-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/sasunit-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/sasunit-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/sasunit-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/sasunit-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/sasunit-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/sasunit-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/sasunit-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/sasunit-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/sasunit-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/sasunit-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/sasunit-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/sasunit-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/sasunit-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/sasunit-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/sasunit-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/sasunit-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/sasunit-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/sasunit-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/sasunit-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/sasunit-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/sasunit-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/sasunit-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/sasunit-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/sasunit-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/sasunit-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/sasunit-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/sasunit-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/sasunit-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/sasunit-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/sasunit-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/sasunit-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/sasunit-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/sasunit-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/sasunit-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/sasunit-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/sasunit-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/sasunit-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/sasunit-plugin/deployments", + "created_at": "2014-09-24T12:42:03Z", + "updated_at": "2014-09-26T17:08:11Z", + "pushed_at": "2015-07-14T05:35:32Z", + "git_url": "git://github.com/jenkinsci/sasunit-plugin.git", + "ssh_url": "git@github.com:jenkinsci/sasunit-plugin.git", + "clone_url": "https://github.com/jenkinsci/sasunit-plugin.git", + "svn_url": "https://github.com/jenkinsci/sasunit-plugin", + "homepage": "", + "size": 208, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 24414877, + "node_id": "MDEwOlJlcG9zaXRvcnkyNDQxNDg3Nw==", + "name": "housekeeper-plugin", + "full_name": "jenkinsci/housekeeper-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/housekeeper-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/housekeeper-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/housekeeper-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/housekeeper-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/housekeeper-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/housekeeper-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/housekeeper-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/housekeeper-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/housekeeper-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/housekeeper-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/housekeeper-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/housekeeper-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/housekeeper-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/housekeeper-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/housekeeper-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/housekeeper-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/housekeeper-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/housekeeper-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/housekeeper-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/housekeeper-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/housekeeper-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/housekeeper-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/housekeeper-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/housekeeper-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/housekeeper-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/housekeeper-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/housekeeper-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/housekeeper-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/housekeeper-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/housekeeper-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/housekeeper-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/housekeeper-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/housekeeper-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/housekeeper-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/housekeeper-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/housekeeper-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/housekeeper-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/housekeeper-plugin/deployments", + "created_at": "2014-09-24T12:55:59Z", + "updated_at": "2014-09-24T16:13:43Z", + "pushed_at": "2014-09-29T10:41:53Z", + "git_url": "git://github.com/jenkinsci/housekeeper-plugin.git", + "ssh_url": "git@github.com:jenkinsci/housekeeper-plugin.git", + "clone_url": "https://github.com/jenkinsci/housekeeper-plugin.git", + "svn_url": "https://github.com/jenkinsci/housekeeper-plugin", + "homepage": "", + "size": 184, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 24446209, + "node_id": "MDEwOlJlcG9zaXRvcnkyNDQ0NjIwOQ==", + "name": "keep-slave-disconnected-plugin", + "full_name": "jenkinsci/keep-slave-disconnected-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/keep-slave-disconnected-plugin", + "description": "Allows configuring slaves to not reconnect when temporarily marked offline (JENKINS-13140)", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/keep-slave-disconnected-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/keep-slave-disconnected-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/keep-slave-disconnected-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/keep-slave-disconnected-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/keep-slave-disconnected-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/keep-slave-disconnected-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/keep-slave-disconnected-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/keep-slave-disconnected-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/keep-slave-disconnected-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/keep-slave-disconnected-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/keep-slave-disconnected-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/keep-slave-disconnected-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/keep-slave-disconnected-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/keep-slave-disconnected-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/keep-slave-disconnected-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/keep-slave-disconnected-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/keep-slave-disconnected-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/keep-slave-disconnected-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/keep-slave-disconnected-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/keep-slave-disconnected-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/keep-slave-disconnected-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/keep-slave-disconnected-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/keep-slave-disconnected-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/keep-slave-disconnected-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/keep-slave-disconnected-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/keep-slave-disconnected-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/keep-slave-disconnected-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/keep-slave-disconnected-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/keep-slave-disconnected-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/keep-slave-disconnected-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/keep-slave-disconnected-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/keep-slave-disconnected-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/keep-slave-disconnected-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/keep-slave-disconnected-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/keep-slave-disconnected-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/keep-slave-disconnected-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/keep-slave-disconnected-plugin/deployments", + "created_at": "2014-09-25T06:22:32Z", + "updated_at": "2019-06-28T18:43:38Z", + "pushed_at": "2014-09-25T08:51:23Z", + "git_url": "git://github.com/jenkinsci/keep-slave-disconnected-plugin.git", + "ssh_url": "git@github.com:jenkinsci/keep-slave-disconnected-plugin.git", + "clone_url": "https://github.com/jenkinsci/keep-slave-disconnected-plugin.git", + "svn_url": "https://github.com/jenkinsci/keep-slave-disconnected-plugin", + "homepage": "", + "size": 92, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 24493351, + "node_id": "MDEwOlJlcG9zaXRvcnkyNDQ5MzM1MQ==", + "name": "pushbullet-plugin", + "full_name": "jenkinsci/pushbullet-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pushbullet-plugin", + "description": "pushbullet notifier plugin for Jenkins CI", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/pushbullet-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pushbullet-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pushbullet-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pushbullet-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pushbullet-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pushbullet-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pushbullet-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pushbullet-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pushbullet-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pushbullet-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pushbullet-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pushbullet-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pushbullet-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pushbullet-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pushbullet-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pushbullet-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pushbullet-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pushbullet-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pushbullet-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pushbullet-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pushbullet-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pushbullet-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pushbullet-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pushbullet-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pushbullet-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pushbullet-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pushbullet-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pushbullet-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pushbullet-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pushbullet-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pushbullet-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pushbullet-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pushbullet-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pushbullet-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pushbullet-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pushbullet-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pushbullet-plugin/deployments", + "created_at": "2014-09-26T09:09:07Z", + "updated_at": "2014-10-03T09:02:57Z", + "pushed_at": "2014-10-02T08:16:10Z", + "git_url": "git://github.com/jenkinsci/pushbullet-plugin.git", + "ssh_url": "git@github.com:jenkinsci/pushbullet-plugin.git", + "clone_url": "https://github.com/jenkinsci/pushbullet-plugin.git", + "svn_url": "https://github.com/jenkinsci/pushbullet-plugin", + "homepage": null, + "size": 190, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": true, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 24495972, + "node_id": "MDEwOlJlcG9zaXRvcnkyNDQ5NTk3Mg==", + "name": "ec2-deployment-dashboard", + "full_name": "jenkinsci/ec2-deployment-dashboard", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/ec2-deployment-dashboard", + "description": "Jenkins plugin for a deployment dashboard", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/ec2-deployment-dashboard", + "forks_url": "https://api.github.com/repos/jenkinsci/ec2-deployment-dashboard/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/ec2-deployment-dashboard/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/ec2-deployment-dashboard/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/ec2-deployment-dashboard/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/ec2-deployment-dashboard/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/ec2-deployment-dashboard/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/ec2-deployment-dashboard/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/ec2-deployment-dashboard/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/ec2-deployment-dashboard/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/ec2-deployment-dashboard/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/ec2-deployment-dashboard/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/ec2-deployment-dashboard/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/ec2-deployment-dashboard/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/ec2-deployment-dashboard/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/ec2-deployment-dashboard/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/ec2-deployment-dashboard/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/ec2-deployment-dashboard/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/ec2-deployment-dashboard/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/ec2-deployment-dashboard/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/ec2-deployment-dashboard/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/ec2-deployment-dashboard/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/ec2-deployment-dashboard/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/ec2-deployment-dashboard/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/ec2-deployment-dashboard/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/ec2-deployment-dashboard/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/ec2-deployment-dashboard/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/ec2-deployment-dashboard/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/ec2-deployment-dashboard/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/ec2-deployment-dashboard/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/ec2-deployment-dashboard/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/ec2-deployment-dashboard/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/ec2-deployment-dashboard/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/ec2-deployment-dashboard/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/ec2-deployment-dashboard/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/ec2-deployment-dashboard/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/ec2-deployment-dashboard/deployments", + "created_at": "2014-09-26T10:42:12Z", + "updated_at": "2019-01-07T16:44:01Z", + "pushed_at": "2019-10-08T11:46:12Z", + "git_url": "git://github.com/jenkinsci/ec2-deployment-dashboard.git", + "ssh_url": "git@github.com:jenkinsci/ec2-deployment-dashboard.git", + "clone_url": "https://github.com/jenkinsci/ec2-deployment-dashboard.git", + "svn_url": "https://github.com/jenkinsci/ec2-deployment-dashboard", + "homepage": null, + "size": 1509, + "stargazers_count": 19, + "watchers_count": 19, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 12, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 12, + "open_issues": 1, + "watchers": 19, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 24498715, + "node_id": "MDEwOlJlcG9zaXRvcnkyNDQ5ODcxNQ==", + "name": "sample-extensions", + "full_name": "jenkinsci/sample-extensions", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/sample-extensions", + "description": "Sample implementation for Jenkins extension points", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/sample-extensions", + "forks_url": "https://api.github.com/repos/jenkinsci/sample-extensions/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/sample-extensions/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/sample-extensions/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/sample-extensions/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/sample-extensions/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/sample-extensions/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/sample-extensions/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/sample-extensions/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/sample-extensions/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/sample-extensions/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/sample-extensions/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/sample-extensions/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/sample-extensions/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/sample-extensions/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/sample-extensions/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/sample-extensions/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/sample-extensions/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/sample-extensions/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/sample-extensions/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/sample-extensions/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/sample-extensions/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/sample-extensions/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/sample-extensions/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/sample-extensions/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/sample-extensions/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/sample-extensions/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/sample-extensions/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/sample-extensions/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/sample-extensions/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/sample-extensions/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/sample-extensions/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/sample-extensions/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/sample-extensions/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/sample-extensions/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/sample-extensions/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/sample-extensions/deployments", + "created_at": "2014-09-26T12:31:05Z", + "updated_at": "2014-11-04T07:23:05Z", + "pushed_at": "2018-10-30T16:50:09Z", + "git_url": "git://github.com/jenkinsci/sample-extensions.git", + "ssh_url": "git@github.com:jenkinsci/sample-extensions.git", + "clone_url": "https://github.com/jenkinsci/sample-extensions.git", + "svn_url": "https://github.com/jenkinsci/sample-extensions", + "homepage": null, + "size": 128, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 3, + "open_issues": 2, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 24588877, + "node_id": "MDEwOlJlcG9zaXRvcnkyNDU4ODg3Nw==", + "name": "paaslane-plugin", + "full_name": "jenkinsci/paaslane-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/paaslane-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/paaslane-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/paaslane-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/paaslane-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/paaslane-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/paaslane-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/paaslane-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/paaslane-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/paaslane-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/paaslane-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/paaslane-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/paaslane-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/paaslane-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/paaslane-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/paaslane-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/paaslane-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/paaslane-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/paaslane-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/paaslane-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/paaslane-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/paaslane-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/paaslane-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/paaslane-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/paaslane-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/paaslane-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/paaslane-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/paaslane-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/paaslane-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/paaslane-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/paaslane-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/paaslane-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/paaslane-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/paaslane-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/paaslane-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/paaslane-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/paaslane-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/paaslane-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/paaslane-plugin/deployments", + "created_at": "2014-09-29T09:48:38Z", + "updated_at": "2015-02-04T03:15:00Z", + "pushed_at": "2015-09-03T20:17:20Z", + "git_url": "git://github.com/jenkinsci/paaslane-plugin.git", + "ssh_url": "git@github.com:jenkinsci/paaslane-plugin.git", + "clone_url": "https://github.com/jenkinsci/paaslane-plugin.git", + "svn_url": "https://github.com/jenkinsci/paaslane-plugin", + "homepage": "", + "size": 236, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 24589529, + "node_id": "MDEwOlJlcG9zaXRvcnkyNDU4OTUyOQ==", + "name": "workplace-plugin", + "full_name": "jenkinsci/workplace-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/workplace-plugin", + "description": "Jenkins Plugin for workpalce notification messages.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/workplace-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/workplace-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/workplace-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/workplace-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/workplace-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/workplace-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/workplace-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/workplace-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/workplace-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/workplace-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/workplace-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/workplace-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/workplace-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/workplace-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/workplace-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/workplace-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/workplace-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/workplace-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/workplace-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/workplace-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/workplace-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/workplace-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/workplace-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/workplace-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/workplace-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/workplace-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/workplace-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/workplace-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/workplace-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/workplace-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/workplace-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/workplace-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/workplace-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/workplace-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/workplace-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/workplace-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/workplace-plugin/deployments", + "created_at": "2014-09-29T10:06:34Z", + "updated_at": "2019-03-21T15:57:24Z", + "pushed_at": "2015-06-11T21:19:36Z", + "git_url": "git://github.com/jenkinsci/workplace-plugin.git", + "ssh_url": "git@github.com:jenkinsci/workplace-plugin.git", + "clone_url": "https://github.com/jenkinsci/workplace-plugin.git", + "svn_url": "https://github.com/jenkinsci/workplace-plugin", + "homepage": null, + "size": 206, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 3, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 24608251, + "node_id": "MDEwOlJlcG9zaXRvcnkyNDYwODI1MQ==", + "name": "analysis-model", + "full_name": "jenkinsci/analysis-model", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/analysis-model", + "description": "A library to read static analysis reports into a Java object model", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/analysis-model", + "forks_url": "https://api.github.com/repos/jenkinsci/analysis-model/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/analysis-model/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/analysis-model/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/analysis-model/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/analysis-model/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/analysis-model/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/analysis-model/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/analysis-model/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/analysis-model/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/analysis-model/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/analysis-model/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/analysis-model/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/analysis-model/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/analysis-model/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/analysis-model/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/analysis-model/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/analysis-model/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/analysis-model/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/analysis-model/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/analysis-model/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/analysis-model/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/analysis-model/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/analysis-model/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/analysis-model/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/analysis-model/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/analysis-model/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/analysis-model/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/analysis-model/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/analysis-model/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/analysis-model/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/analysis-model/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/analysis-model/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/analysis-model/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/analysis-model/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/analysis-model/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/analysis-model/deployments", + "created_at": "2014-09-29T18:48:31Z", + "updated_at": "2019-10-23T07:18:29Z", + "pushed_at": "2019-10-23T07:18:27Z", + "git_url": "git://github.com/jenkinsci/analysis-model.git", + "ssh_url": "git@github.com:jenkinsci/analysis-model.git", + "clone_url": "https://github.com/jenkinsci/analysis-model.git", + "svn_url": "https://github.com/jenkinsci/analysis-model", + "homepage": "", + "size": 8625, + "stargazers_count": 25, + "watchers_count": 25, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 61, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 61, + "open_issues": 1, + "watchers": 25, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 24608256, + "node_id": "MDEwOlJlcG9zaXRvcnkyNDYwODI1Ng==", + "name": "analysis-runner", + "full_name": "jenkinsci/analysis-runner", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/analysis-runner", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/analysis-runner", + "forks_url": "https://api.github.com/repos/jenkinsci/analysis-runner/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/analysis-runner/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/analysis-runner/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/analysis-runner/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/analysis-runner/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/analysis-runner/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/analysis-runner/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/analysis-runner/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/analysis-runner/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/analysis-runner/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/analysis-runner/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/analysis-runner/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/analysis-runner/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/analysis-runner/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/analysis-runner/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/analysis-runner/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/analysis-runner/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/analysis-runner/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/analysis-runner/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/analysis-runner/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/analysis-runner/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/analysis-runner/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/analysis-runner/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/analysis-runner/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/analysis-runner/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/analysis-runner/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/analysis-runner/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/analysis-runner/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/analysis-runner/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/analysis-runner/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/analysis-runner/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/analysis-runner/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/analysis-runner/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/analysis-runner/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/analysis-runner/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/analysis-runner/deployments", + "created_at": "2014-09-29T18:48:51Z", + "updated_at": "2014-12-25T14:59:02Z", + "pushed_at": "2014-12-25T14:59:02Z", + "git_url": "git://github.com/jenkinsci/analysis-runner.git", + "ssh_url": "git@github.com:jenkinsci/analysis-runner.git", + "clone_url": "https://github.com/jenkinsci/analysis-runner.git", + "svn_url": "https://github.com/jenkinsci/analysis-runner", + "homepage": null, + "size": 360, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 24655695, + "node_id": "MDEwOlJlcG9zaXRvcnkyNDY1NTY5NQ==", + "name": "coverage-ratcheting-plugin", + "full_name": "jenkinsci/coverage-ratcheting-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/coverage-ratcheting-plugin", + "description": "Ratchet, your Generic Jenkins Ratcheting solution.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/coverage-ratcheting-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/coverage-ratcheting-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/coverage-ratcheting-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/coverage-ratcheting-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/coverage-ratcheting-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/coverage-ratcheting-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/coverage-ratcheting-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/coverage-ratcheting-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/coverage-ratcheting-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/coverage-ratcheting-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/coverage-ratcheting-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/coverage-ratcheting-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/coverage-ratcheting-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/coverage-ratcheting-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/coverage-ratcheting-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/coverage-ratcheting-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/coverage-ratcheting-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/coverage-ratcheting-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/coverage-ratcheting-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/coverage-ratcheting-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/coverage-ratcheting-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/coverage-ratcheting-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/coverage-ratcheting-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/coverage-ratcheting-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/coverage-ratcheting-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/coverage-ratcheting-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/coverage-ratcheting-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/coverage-ratcheting-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/coverage-ratcheting-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/coverage-ratcheting-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/coverage-ratcheting-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/coverage-ratcheting-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/coverage-ratcheting-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/coverage-ratcheting-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/coverage-ratcheting-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/coverage-ratcheting-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/coverage-ratcheting-plugin/deployments", + "created_at": "2014-09-30T21:07:27Z", + "updated_at": "2014-09-30T21:07:43Z", + "pushed_at": "2014-09-30T12:33:08Z", + "git_url": "git://github.com/jenkinsci/coverage-ratcheting-plugin.git", + "ssh_url": "git@github.com:jenkinsci/coverage-ratcheting-plugin.git", + "clone_url": "https://github.com/jenkinsci/coverage-ratcheting-plugin.git", + "svn_url": "https://github.com/jenkinsci/coverage-ratcheting-plugin", + "homepage": "", + "size": 86, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "bsd-2-clause", + "name": "BSD 2-Clause \"Simplified\" License", + "spdx_id": "BSD-2-Clause", + "url": "https://api.github.com/licenses/bsd-2-clause", + "node_id": "MDc6TGljZW5zZTQ=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 24655740, + "node_id": "MDEwOlJlcG9zaXRvcnkyNDY1NTc0MA==", + "name": "commit-message-trigger-plugin", + "full_name": "jenkinsci/commit-message-trigger-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/commit-message-trigger-plugin", + "description": "Cause a build through a version system (GIT/SVN/etc) commit message", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/commit-message-trigger-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/commit-message-trigger-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/commit-message-trigger-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/commit-message-trigger-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/commit-message-trigger-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/commit-message-trigger-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/commit-message-trigger-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/commit-message-trigger-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/commit-message-trigger-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/commit-message-trigger-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/commit-message-trigger-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/commit-message-trigger-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/commit-message-trigger-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/commit-message-trigger-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/commit-message-trigger-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/commit-message-trigger-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/commit-message-trigger-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/commit-message-trigger-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/commit-message-trigger-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/commit-message-trigger-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/commit-message-trigger-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/commit-message-trigger-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/commit-message-trigger-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/commit-message-trigger-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/commit-message-trigger-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/commit-message-trigger-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/commit-message-trigger-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/commit-message-trigger-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/commit-message-trigger-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/commit-message-trigger-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/commit-message-trigger-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/commit-message-trigger-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/commit-message-trigger-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/commit-message-trigger-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/commit-message-trigger-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/commit-message-trigger-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/commit-message-trigger-plugin/deployments", + "created_at": "2014-09-30T21:09:14Z", + "updated_at": "2018-04-17T04:04:44Z", + "pushed_at": "2014-10-02T12:56:51Z", + "git_url": "git://github.com/jenkinsci/commit-message-trigger-plugin.git", + "ssh_url": "git@github.com:jenkinsci/commit-message-trigger-plugin.git", + "clone_url": "https://github.com/jenkinsci/commit-message-trigger-plugin.git", + "svn_url": "https://github.com/jenkinsci/commit-message-trigger-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Commit+Message+Trigger+Plugin", + "size": 97, + "stargazers_count": 2, + "watchers_count": 2, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 3, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 24678455, + "node_id": "MDEwOlJlcG9zaXRvcnkyNDY3ODQ1NQ==", + "name": "vaddy-plugin", + "full_name": "jenkinsci/vaddy-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/vaddy-plugin", + "description": "VAddy Jenkins plugin for web security testing.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/vaddy-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/vaddy-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/vaddy-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/vaddy-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/vaddy-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/vaddy-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/vaddy-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/vaddy-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/vaddy-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/vaddy-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/vaddy-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/vaddy-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/vaddy-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/vaddy-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/vaddy-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/vaddy-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/vaddy-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/vaddy-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/vaddy-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/vaddy-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/vaddy-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/vaddy-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/vaddy-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/vaddy-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/vaddy-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/vaddy-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/vaddy-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/vaddy-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/vaddy-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/vaddy-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/vaddy-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/vaddy-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/vaddy-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/vaddy-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/vaddy-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/vaddy-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/vaddy-plugin/deployments", + "created_at": "2014-10-01T13:00:10Z", + "updated_at": "2016-02-10T06:38:32Z", + "pushed_at": "2016-09-21T04:51:34Z", + "git_url": "git://github.com/jenkinsci/vaddy-plugin.git", + "ssh_url": "git@github.com:jenkinsci/vaddy-plugin.git", + "clone_url": "https://github.com/jenkinsci/vaddy-plugin.git", + "svn_url": "https://github.com/jenkinsci/vaddy-plugin", + "homepage": null, + "size": 5816, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 24697288, + "node_id": "MDEwOlJlcG9zaXRvcnkyNDY5NzI4OA==", + "name": "commons-fileupload", + "full_name": "jenkinsci/commons-fileupload", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/commons-fileupload", + "description": "Mirror of Apache Commons FileUpload", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/commons-fileupload", + "forks_url": "https://api.github.com/repos/jenkinsci/commons-fileupload/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/commons-fileupload/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/commons-fileupload/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/commons-fileupload/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/commons-fileupload/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/commons-fileupload/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/commons-fileupload/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/commons-fileupload/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/commons-fileupload/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/commons-fileupload/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/commons-fileupload/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/commons-fileupload/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/commons-fileupload/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/commons-fileupload/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/commons-fileupload/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/commons-fileupload/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/commons-fileupload/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/commons-fileupload/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/commons-fileupload/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/commons-fileupload/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/commons-fileupload/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/commons-fileupload/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/commons-fileupload/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/commons-fileupload/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/commons-fileupload/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/commons-fileupload/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/commons-fileupload/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/commons-fileupload/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/commons-fileupload/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/commons-fileupload/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/commons-fileupload/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/commons-fileupload/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/commons-fileupload/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/commons-fileupload/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/commons-fileupload/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/commons-fileupload/deployments", + "created_at": "2014-10-01T22:08:54Z", + "updated_at": "2014-09-25T13:39:27Z", + "pushed_at": "2018-08-02T13:53:49Z", + "git_url": "git://github.com/jenkinsci/commons-fileupload.git", + "ssh_url": "git@github.com:jenkinsci/commons-fileupload.git", + "clone_url": "https://github.com/jenkinsci/commons-fileupload.git", + "svn_url": "https://github.com/jenkinsci/commons-fileupload", + "homepage": null, + "size": 1401, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "trunk", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 24747892, + "node_id": "MDEwOlJlcG9zaXRvcnkyNDc0Nzg5Mg==", + "name": "teamconcert-git-plugin", + "full_name": "jenkinsci/teamconcert-git-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/teamconcert-git-plugin", + "description": "Integrates Rational Team Concert with Jenkins Builds which use Git as source control. This plugin will create traceability links from a Jenkins build to RTC work items and build result.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/teamconcert-git-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/teamconcert-git-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/teamconcert-git-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/teamconcert-git-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/teamconcert-git-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/teamconcert-git-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/teamconcert-git-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/teamconcert-git-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/teamconcert-git-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/teamconcert-git-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/teamconcert-git-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/teamconcert-git-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/teamconcert-git-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/teamconcert-git-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/teamconcert-git-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/teamconcert-git-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/teamconcert-git-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/teamconcert-git-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/teamconcert-git-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/teamconcert-git-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/teamconcert-git-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/teamconcert-git-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/teamconcert-git-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/teamconcert-git-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/teamconcert-git-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/teamconcert-git-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/teamconcert-git-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/teamconcert-git-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/teamconcert-git-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/teamconcert-git-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/teamconcert-git-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/teamconcert-git-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/teamconcert-git-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/teamconcert-git-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/teamconcert-git-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/teamconcert-git-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/teamconcert-git-plugin/deployments", + "created_at": "2014-10-03T05:32:10Z", + "updated_at": "2018-06-14T16:21:24Z", + "pushed_at": "2018-06-14T16:21:22Z", + "git_url": "git://github.com/jenkinsci/teamconcert-git-plugin.git", + "ssh_url": "git@github.com:jenkinsci/teamconcert-git-plugin.git", + "clone_url": "https://github.com/jenkinsci/teamconcert-git-plugin.git", + "svn_url": "https://github.com/jenkinsci/teamconcert-git-plugin", + "homepage": null, + "size": 129, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 4, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 24780609, + "node_id": "MDEwOlJlcG9zaXRvcnkyNDc4MDYwOQ==", + "name": "google-play-android-publisher-plugin", + "full_name": "jenkinsci/google-play-android-publisher-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/google-play-android-publisher-plugin", + "description": "Jenkins plugin to upload and manage Android app listings on Google Play.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/google-play-android-publisher-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/google-play-android-publisher-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/google-play-android-publisher-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/google-play-android-publisher-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/google-play-android-publisher-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/google-play-android-publisher-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/google-play-android-publisher-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/google-play-android-publisher-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/google-play-android-publisher-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/google-play-android-publisher-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/google-play-android-publisher-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/google-play-android-publisher-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/google-play-android-publisher-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/google-play-android-publisher-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/google-play-android-publisher-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/google-play-android-publisher-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/google-play-android-publisher-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/google-play-android-publisher-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/google-play-android-publisher-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/google-play-android-publisher-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/google-play-android-publisher-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/google-play-android-publisher-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/google-play-android-publisher-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/google-play-android-publisher-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/google-play-android-publisher-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/google-play-android-publisher-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/google-play-android-publisher-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/google-play-android-publisher-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/google-play-android-publisher-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/google-play-android-publisher-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/google-play-android-publisher-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/google-play-android-publisher-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/google-play-android-publisher-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/google-play-android-publisher-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/google-play-android-publisher-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/google-play-android-publisher-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/google-play-android-publisher-plugin/deployments", + "created_at": "2014-10-04T03:14:31Z", + "updated_at": "2019-10-21T13:38:44Z", + "pushed_at": "2019-10-08T20:41:29Z", + "git_url": "git://github.com/jenkinsci/google-play-android-publisher-plugin.git", + "ssh_url": "git@github.com:jenkinsci/google-play-android-publisher-plugin.git", + "clone_url": "https://github.com/jenkinsci/google-play-android-publisher-plugin.git", + "svn_url": "https://github.com/jenkinsci/google-play-android-publisher-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Google+Play+Android+Publisher+Plugin", + "size": 220, + "stargazers_count": 74, + "watchers_count": 74, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 36, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 4, + "license": null, + "forks": 36, + "open_issues": 4, + "watchers": 74, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 24810447, + "node_id": "MDEwOlJlcG9zaXRvcnkyNDgxMDQ0Nw==", + "name": "jsch-plugin", + "full_name": "jenkinsci/jsch-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jsch-plugin", + "description": "Jenkins plugin that brings the JSch library as a plugin dependency", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/jsch-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/jsch-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jsch-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jsch-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jsch-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jsch-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jsch-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jsch-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jsch-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jsch-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jsch-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jsch-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jsch-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jsch-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jsch-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jsch-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jsch-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jsch-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jsch-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jsch-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jsch-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jsch-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jsch-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jsch-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jsch-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jsch-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jsch-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jsch-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jsch-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jsch-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jsch-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jsch-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jsch-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jsch-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jsch-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jsch-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jsch-plugin/deployments", + "created_at": "2014-10-05T07:05:24Z", + "updated_at": "2019-07-29T20:54:10Z", + "pushed_at": "2019-07-29T20:54:09Z", + "git_url": "git://github.com/jenkinsci/jsch-plugin.git", + "ssh_url": "git@github.com:jenkinsci/jsch-plugin.git", + "clone_url": "https://github.com/jenkinsci/jsch-plugin.git", + "svn_url": "https://github.com/jenkinsci/jsch-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/JSch+Plugin", + "size": 38, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 10, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 10, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 24847718, + "node_id": "MDEwOlJlcG9zaXRvcnkyNDg0NzcxOA==", + "name": "dynamicparameter-plugin", + "full_name": "jenkinsci/dynamicparameter-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/dynamicparameter-plugin", + "description": "Jenkins-CI plugin allowing dynamically generated build parameter default values", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/dynamicparameter-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/dynamicparameter-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/dynamicparameter-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/dynamicparameter-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/dynamicparameter-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/dynamicparameter-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/dynamicparameter-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/dynamicparameter-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/dynamicparameter-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/dynamicparameter-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/dynamicparameter-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/dynamicparameter-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/dynamicparameter-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/dynamicparameter-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/dynamicparameter-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/dynamicparameter-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/dynamicparameter-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/dynamicparameter-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/dynamicparameter-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/dynamicparameter-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/dynamicparameter-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/dynamicparameter-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/dynamicparameter-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/dynamicparameter-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/dynamicparameter-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/dynamicparameter-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/dynamicparameter-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/dynamicparameter-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/dynamicparameter-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/dynamicparameter-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/dynamicparameter-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/dynamicparameter-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/dynamicparameter-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/dynamicparameter-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/dynamicparameter-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/dynamicparameter-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/dynamicparameter-plugin/deployments", + "created_at": "2014-10-06T13:50:37Z", + "updated_at": "2018-06-23T14:47:38Z", + "pushed_at": "2017-03-10T22:53:58Z", + "git_url": "git://github.com/jenkinsci/dynamicparameter-plugin.git", + "ssh_url": "git@github.com:jenkinsci/dynamicparameter-plugin.git", + "clone_url": "https://github.com/jenkinsci/dynamicparameter-plugin.git", + "svn_url": "https://github.com/jenkinsci/dynamicparameter-plugin", + "homepage": "", + "size": 520, + "stargazers_count": 10, + "watchers_count": 10, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 16, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 4, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 16, + "open_issues": 4, + "watchers": 10, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 24865733, + "node_id": "MDEwOlJlcG9zaXRvcnkyNDg2NTczMw==", + "name": "codedx-plugin", + "full_name": "jenkinsci/codedx-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/codedx-plugin", + "description": "A Code Dx plugin for Jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/codedx-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/codedx-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/codedx-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/codedx-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/codedx-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/codedx-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/codedx-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/codedx-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/codedx-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/codedx-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/codedx-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/codedx-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/codedx-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/codedx-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/codedx-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/codedx-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/codedx-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/codedx-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/codedx-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/codedx-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/codedx-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/codedx-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/codedx-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/codedx-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/codedx-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/codedx-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/codedx-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/codedx-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/codedx-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/codedx-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/codedx-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/codedx-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/codedx-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/codedx-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/codedx-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/codedx-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/codedx-plugin/deployments", + "created_at": "2014-10-06T21:31:26Z", + "updated_at": "2019-01-18T18:27:31Z", + "pushed_at": "2019-01-18T18:27:29Z", + "git_url": "git://github.com/jenkinsci/codedx-plugin.git", + "ssh_url": "git@github.com:jenkinsci/codedx-plugin.git", + "clone_url": "https://github.com/jenkinsci/codedx-plugin.git", + "svn_url": "https://github.com/jenkinsci/codedx-plugin", + "homepage": null, + "size": 248, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 5, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 24913351, + "node_id": "MDEwOlJlcG9zaXRvcnkyNDkxMzM1MQ==", + "name": "build-history-metrics-plugin", + "full_name": "jenkinsci/build-history-metrics-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/build-history-metrics-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/build-history-metrics-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/build-history-metrics-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/build-history-metrics-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/build-history-metrics-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/build-history-metrics-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/build-history-metrics-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/build-history-metrics-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/build-history-metrics-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/build-history-metrics-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/build-history-metrics-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/build-history-metrics-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/build-history-metrics-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/build-history-metrics-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/build-history-metrics-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/build-history-metrics-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/build-history-metrics-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/build-history-metrics-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/build-history-metrics-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/build-history-metrics-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/build-history-metrics-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/build-history-metrics-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/build-history-metrics-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/build-history-metrics-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/build-history-metrics-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/build-history-metrics-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/build-history-metrics-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/build-history-metrics-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/build-history-metrics-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/build-history-metrics-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/build-history-metrics-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/build-history-metrics-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/build-history-metrics-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/build-history-metrics-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/build-history-metrics-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/build-history-metrics-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/build-history-metrics-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/build-history-metrics-plugin/deployments", + "created_at": "2014-10-07T21:54:44Z", + "updated_at": "2018-11-13T14:16:46Z", + "pushed_at": "2019-10-08T11:31:05Z", + "git_url": "git://github.com/jenkinsci/build-history-metrics-plugin.git", + "ssh_url": "git@github.com:jenkinsci/build-history-metrics-plugin.git", + "clone_url": "https://github.com/jenkinsci/build-history-metrics-plugin.git", + "svn_url": "https://github.com/jenkinsci/build-history-metrics-plugin", + "homepage": "", + "size": 248, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 4, + "open_issues": 1, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 24933239, + "node_id": "MDEwOlJlcG9zaXRvcnkyNDkzMzIzOQ==", + "name": "freestyle-multibranch-plugin", + "full_name": "jenkinsci/freestyle-multibranch-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/freestyle-multibranch-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/freestyle-multibranch-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/freestyle-multibranch-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/freestyle-multibranch-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/freestyle-multibranch-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/freestyle-multibranch-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/freestyle-multibranch-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/freestyle-multibranch-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/freestyle-multibranch-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/freestyle-multibranch-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/freestyle-multibranch-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/freestyle-multibranch-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/freestyle-multibranch-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/freestyle-multibranch-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/freestyle-multibranch-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/freestyle-multibranch-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/freestyle-multibranch-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/freestyle-multibranch-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/freestyle-multibranch-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/freestyle-multibranch-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/freestyle-multibranch-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/freestyle-multibranch-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/freestyle-multibranch-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/freestyle-multibranch-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/freestyle-multibranch-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/freestyle-multibranch-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/freestyle-multibranch-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/freestyle-multibranch-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/freestyle-multibranch-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/freestyle-multibranch-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/freestyle-multibranch-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/freestyle-multibranch-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/freestyle-multibranch-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/freestyle-multibranch-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/freestyle-multibranch-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/freestyle-multibranch-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/freestyle-multibranch-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/freestyle-multibranch-plugin/deployments", + "created_at": "2014-10-08T09:18:15Z", + "updated_at": "2016-12-14T12:24:09Z", + "pushed_at": "2017-10-20T20:25:03Z", + "git_url": "git://github.com/jenkinsci/freestyle-multibranch-plugin.git", + "ssh_url": "git@github.com:jenkinsci/freestyle-multibranch-plugin.git", + "clone_url": "https://github.com/jenkinsci/freestyle-multibranch-plugin.git", + "svn_url": "https://github.com/jenkinsci/freestyle-multibranch-plugin", + "homepage": "", + "size": 51, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 3, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 25117538, + "node_id": "MDEwOlJlcG9zaXRvcnkyNTExNzUzOA==", + "name": "status-monitors", + "full_name": "jenkinsci/status-monitors", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/status-monitors", + "description": "Contains two applications for Jenkins within a Gradle multiproject.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/status-monitors", + "forks_url": "https://api.github.com/repos/jenkinsci/status-monitors/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/status-monitors/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/status-monitors/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/status-monitors/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/status-monitors/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/status-monitors/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/status-monitors/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/status-monitors/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/status-monitors/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/status-monitors/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/status-monitors/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/status-monitors/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/status-monitors/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/status-monitors/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/status-monitors/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/status-monitors/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/status-monitors/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/status-monitors/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/status-monitors/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/status-monitors/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/status-monitors/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/status-monitors/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/status-monitors/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/status-monitors/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/status-monitors/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/status-monitors/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/status-monitors/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/status-monitors/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/status-monitors/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/status-monitors/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/status-monitors/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/status-monitors/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/status-monitors/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/status-monitors/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/status-monitors/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/status-monitors/deployments", + "created_at": "2014-10-12T11:31:30Z", + "updated_at": "2014-10-12T11:42:20Z", + "pushed_at": "2014-10-13T13:42:57Z", + "git_url": "git://github.com/jenkinsci/status-monitors.git", + "ssh_url": "git@github.com:jenkinsci/status-monitors.git", + "clone_url": "https://github.com/jenkinsci/status-monitors.git", + "svn_url": "https://github.com/jenkinsci/status-monitors", + "homepage": null, + "size": 331, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 25148605, + "node_id": "MDEwOlJlcG9zaXRvcnkyNTE0ODYwNQ==", + "name": "bigpanda-plugin", + "full_name": "jenkinsci/bigpanda-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/bigpanda-plugin", + "description": "BigPanda Jenkins Notification Plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/bigpanda-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/bigpanda-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/bigpanda-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/bigpanda-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/bigpanda-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/bigpanda-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/bigpanda-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/bigpanda-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/bigpanda-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/bigpanda-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/bigpanda-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/bigpanda-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/bigpanda-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/bigpanda-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/bigpanda-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/bigpanda-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/bigpanda-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/bigpanda-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/bigpanda-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/bigpanda-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/bigpanda-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/bigpanda-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/bigpanda-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/bigpanda-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/bigpanda-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/bigpanda-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/bigpanda-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/bigpanda-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/bigpanda-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/bigpanda-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/bigpanda-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/bigpanda-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/bigpanda-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/bigpanda-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/bigpanda-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/bigpanda-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/bigpanda-plugin/deployments", + "created_at": "2014-10-13T07:40:29Z", + "updated_at": "2019-10-16T17:08:48Z", + "pushed_at": "2019-10-16T17:36:36Z", + "git_url": "git://github.com/jenkinsci/bigpanda-plugin.git", + "ssh_url": "git@github.com:jenkinsci/bigpanda-plugin.git", + "clone_url": "https://github.com/jenkinsci/bigpanda-plugin.git", + "svn_url": "https://github.com/jenkinsci/bigpanda-plugin", + "homepage": null, + "size": 167, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 0, + "open_issues": 1, + "watchers": 4, + "default_branch": "develop", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 25148614, + "node_id": "MDEwOlJlcG9zaXRvcnkyNTE0ODYxNA==", + "name": "qiniu-plugin", + "full_name": "jenkinsci/qiniu-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/qiniu-plugin", + "description": "Jenkins plugin to upload files to Qiniu cloud storage.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/qiniu-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/qiniu-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/qiniu-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/qiniu-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/qiniu-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/qiniu-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/qiniu-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/qiniu-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/qiniu-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/qiniu-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/qiniu-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/qiniu-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/qiniu-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/qiniu-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/qiniu-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/qiniu-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/qiniu-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/qiniu-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/qiniu-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/qiniu-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/qiniu-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/qiniu-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/qiniu-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/qiniu-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/qiniu-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/qiniu-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/qiniu-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/qiniu-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/qiniu-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/qiniu-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/qiniu-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/qiniu-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/qiniu-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/qiniu-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/qiniu-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/qiniu-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/qiniu-plugin/deployments", + "created_at": "2014-10-13T07:40:54Z", + "updated_at": "2015-03-03T05:22:36Z", + "pushed_at": "2014-10-13T05:35:36Z", + "git_url": "git://github.com/jenkinsci/qiniu-plugin.git", + "ssh_url": "git@github.com:jenkinsci/qiniu-plugin.git", + "clone_url": "https://github.com/jenkinsci/qiniu-plugin.git", + "svn_url": "https://github.com/jenkinsci/qiniu-plugin", + "homepage": null, + "size": 56926, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 25171887, + "node_id": "MDEwOlJlcG9zaXRvcnkyNTE3MTg4Nw==", + "name": "compress-buildlog-plugin", + "full_name": "jenkinsci/compress-buildlog-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/compress-buildlog-plugin", + "description": "Jenkins plugin to compress the log file after build completion (JENKINS-2551)", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/compress-buildlog-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/compress-buildlog-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/compress-buildlog-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/compress-buildlog-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/compress-buildlog-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/compress-buildlog-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/compress-buildlog-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/compress-buildlog-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/compress-buildlog-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/compress-buildlog-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/compress-buildlog-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/compress-buildlog-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/compress-buildlog-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/compress-buildlog-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/compress-buildlog-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/compress-buildlog-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/compress-buildlog-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/compress-buildlog-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/compress-buildlog-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/compress-buildlog-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/compress-buildlog-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/compress-buildlog-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/compress-buildlog-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/compress-buildlog-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/compress-buildlog-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/compress-buildlog-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/compress-buildlog-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/compress-buildlog-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/compress-buildlog-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/compress-buildlog-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/compress-buildlog-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/compress-buildlog-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/compress-buildlog-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/compress-buildlog-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/compress-buildlog-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/compress-buildlog-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/compress-buildlog-plugin/deployments", + "created_at": "2014-10-13T18:30:54Z", + "updated_at": "2019-10-08T12:07:52Z", + "pushed_at": "2019-10-08T12:07:50Z", + "git_url": "git://github.com/jenkinsci/compress-buildlog-plugin.git", + "ssh_url": "git@github.com:jenkinsci/compress-buildlog-plugin.git", + "clone_url": "https://github.com/jenkinsci/compress-buildlog-plugin.git", + "svn_url": "https://github.com/jenkinsci/compress-buildlog-plugin", + "homepage": "http://plugins.jenkins.io/compress-buildlog", + "size": 19, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 8, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 8, + "open_issues": 1, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 25359287, + "node_id": "MDEwOlJlcG9zaXRvcnkyNTM1OTI4Nw==", + "name": "environment-plugin", + "full_name": "jenkinsci/environment-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/environment-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/environment-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/environment-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/environment-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/environment-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/environment-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/environment-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/environment-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/environment-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/environment-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/environment-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/environment-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/environment-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/environment-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/environment-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/environment-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/environment-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/environment-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/environment-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/environment-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/environment-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/environment-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/environment-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/environment-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/environment-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/environment-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/environment-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/environment-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/environment-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/environment-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/environment-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/environment-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/environment-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/environment-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/environment-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/environment-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/environment-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/environment-plugin/deployments", + "created_at": "2014-10-17T13:26:09Z", + "updated_at": "2014-10-17T13:26:26Z", + "pushed_at": "2014-10-17T13:26:27Z", + "git_url": "git://github.com/jenkinsci/environment-plugin.git", + "ssh_url": "git@github.com:jenkinsci/environment-plugin.git", + "clone_url": "https://github.com/jenkinsci/environment-plugin.git", + "svn_url": "https://github.com/jenkinsci/environment-plugin", + "homepage": null, + "size": 116, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 25360825, + "node_id": "MDEwOlJlcG9zaXRvcnkyNTM2MDgyNQ==", + "name": "pushbullet-credentials-plugin", + "full_name": "jenkinsci/pushbullet-credentials-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pushbullet-credentials-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/pushbullet-credentials-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pushbullet-credentials-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pushbullet-credentials-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pushbullet-credentials-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pushbullet-credentials-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pushbullet-credentials-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pushbullet-credentials-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pushbullet-credentials-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pushbullet-credentials-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pushbullet-credentials-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pushbullet-credentials-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pushbullet-credentials-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pushbullet-credentials-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pushbullet-credentials-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pushbullet-credentials-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pushbullet-credentials-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pushbullet-credentials-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pushbullet-credentials-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pushbullet-credentials-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pushbullet-credentials-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pushbullet-credentials-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pushbullet-credentials-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pushbullet-credentials-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pushbullet-credentials-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pushbullet-credentials-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pushbullet-credentials-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pushbullet-credentials-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pushbullet-credentials-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pushbullet-credentials-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pushbullet-credentials-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pushbullet-credentials-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pushbullet-credentials-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pushbullet-credentials-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pushbullet-credentials-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pushbullet-credentials-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pushbullet-credentials-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pushbullet-credentials-plugin/deployments", + "created_at": "2014-10-17T14:03:35Z", + "updated_at": "2014-10-24T13:32:24Z", + "pushed_at": "2014-10-21T11:06:51Z", + "git_url": "git://github.com/jenkinsci/pushbullet-credentials-plugin.git", + "ssh_url": "git@github.com:jenkinsci/pushbullet-credentials-plugin.git", + "clone_url": "https://github.com/jenkinsci/pushbullet-credentials-plugin.git", + "svn_url": "https://github.com/jenkinsci/pushbullet-credentials-plugin", + "homepage": null, + "size": 162, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 25367706, + "node_id": "MDEwOlJlcG9zaXRvcnkyNTM2NzcwNg==", + "name": "SECURITY-144-compat", + "full_name": "jenkinsci/SECURITY-144-compat", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/SECURITY-144-compat", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/SECURITY-144-compat", + "forks_url": "https://api.github.com/repos/jenkinsci/SECURITY-144-compat/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/SECURITY-144-compat/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/SECURITY-144-compat/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/SECURITY-144-compat/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/SECURITY-144-compat/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/SECURITY-144-compat/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/SECURITY-144-compat/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/SECURITY-144-compat/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/SECURITY-144-compat/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/SECURITY-144-compat/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/SECURITY-144-compat/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/SECURITY-144-compat/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/SECURITY-144-compat/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/SECURITY-144-compat/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/SECURITY-144-compat/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/SECURITY-144-compat/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/SECURITY-144-compat/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/SECURITY-144-compat/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/SECURITY-144-compat/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/SECURITY-144-compat/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/SECURITY-144-compat/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/SECURITY-144-compat/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/SECURITY-144-compat/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/SECURITY-144-compat/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/SECURITY-144-compat/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/SECURITY-144-compat/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/SECURITY-144-compat/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/SECURITY-144-compat/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/SECURITY-144-compat/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/SECURITY-144-compat/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/SECURITY-144-compat/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/SECURITY-144-compat/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/SECURITY-144-compat/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/SECURITY-144-compat/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/SECURITY-144-compat/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/SECURITY-144-compat/deployments", + "created_at": "2014-10-17T16:49:53Z", + "updated_at": "2014-10-29T23:37:06Z", + "pushed_at": "2015-07-01T10:42:09Z", + "git_url": "git://github.com/jenkinsci/SECURITY-144-compat.git", + "ssh_url": "git@github.com:jenkinsci/SECURITY-144-compat.git", + "clone_url": "https://github.com/jenkinsci/SECURITY-144-compat.git", + "svn_url": "https://github.com/jenkinsci/SECURITY-144-compat", + "homepage": null, + "size": 161, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 25544241, + "node_id": "MDEwOlJlcG9zaXRvcnkyNTU0NDI0MQ==", + "name": "jna-posix", + "full_name": "jenkinsci/jna-posix", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jna-posix", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jna-posix", + "forks_url": "https://api.github.com/repos/jenkinsci/jna-posix/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jna-posix/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jna-posix/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jna-posix/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jna-posix/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jna-posix/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jna-posix/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jna-posix/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jna-posix/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jna-posix/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jna-posix/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jna-posix/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jna-posix/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jna-posix/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jna-posix/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jna-posix/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jna-posix/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jna-posix/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jna-posix/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jna-posix/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jna-posix/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jna-posix/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jna-posix/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jna-posix/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jna-posix/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jna-posix/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jna-posix/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jna-posix/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jna-posix/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jna-posix/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jna-posix/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jna-posix/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jna-posix/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jna-posix/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jna-posix/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jna-posix/deployments", + "created_at": "2014-10-21T20:25:15Z", + "updated_at": "2018-07-01T23:45:02Z", + "pushed_at": "2014-10-25T22:13:02Z", + "git_url": "git://github.com/jenkinsci/jna-posix.git", + "ssh_url": "git@github.com:jenkinsci/jna-posix.git", + "clone_url": "https://github.com/jenkinsci/jna-posix.git", + "svn_url": "https://github.com/jenkinsci/jna-posix", + "homepage": "", + "size": 1948, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 4, + "open_issues": 0, + "watchers": 3, + "default_branch": "jna-posix", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 25581374, + "node_id": "MDEwOlJlcG9zaXRvcnkyNTU4MTM3NA==", + "name": "git-tag-message-plugin", + "full_name": "jenkinsci/git-tag-message-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/git-tag-message-plugin", + "description": "Jenkins plugin which makes a git tag message available during a build.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/git-tag-message-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/git-tag-message-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/git-tag-message-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/git-tag-message-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/git-tag-message-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/git-tag-message-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/git-tag-message-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/git-tag-message-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/git-tag-message-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/git-tag-message-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/git-tag-message-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/git-tag-message-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/git-tag-message-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/git-tag-message-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/git-tag-message-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/git-tag-message-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/git-tag-message-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/git-tag-message-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/git-tag-message-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/git-tag-message-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/git-tag-message-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/git-tag-message-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/git-tag-message-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/git-tag-message-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/git-tag-message-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/git-tag-message-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/git-tag-message-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/git-tag-message-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/git-tag-message-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/git-tag-message-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/git-tag-message-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/git-tag-message-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/git-tag-message-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/git-tag-message-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/git-tag-message-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/git-tag-message-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/git-tag-message-plugin/deployments", + "created_at": "2014-10-22T12:57:06Z", + "updated_at": "2019-10-08T20:43:11Z", + "pushed_at": "2019-10-08T20:43:09Z", + "git_url": "git://github.com/jenkinsci/git-tag-message-plugin.git", + "ssh_url": "git@github.com:jenkinsci/git-tag-message-plugin.git", + "clone_url": "https://github.com/jenkinsci/git-tag-message-plugin.git", + "svn_url": "https://github.com/jenkinsci/git-tag-message-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Git+Tag+Message+Plugin", + "size": 38, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 8, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 8, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 25645947, + "node_id": "MDEwOlJlcG9zaXRvcnkyNTY0NTk0Nw==", + "name": "matrix-groovy-execution-strategy-plugin", + "full_name": "jenkinsci/matrix-groovy-execution-strategy-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/matrix-groovy-execution-strategy-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/matrix-groovy-execution-strategy-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/matrix-groovy-execution-strategy-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/matrix-groovy-execution-strategy-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/matrix-groovy-execution-strategy-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/matrix-groovy-execution-strategy-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/matrix-groovy-execution-strategy-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/matrix-groovy-execution-strategy-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/matrix-groovy-execution-strategy-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/matrix-groovy-execution-strategy-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/matrix-groovy-execution-strategy-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/matrix-groovy-execution-strategy-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/matrix-groovy-execution-strategy-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/matrix-groovy-execution-strategy-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/matrix-groovy-execution-strategy-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/matrix-groovy-execution-strategy-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/matrix-groovy-execution-strategy-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/matrix-groovy-execution-strategy-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/matrix-groovy-execution-strategy-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/matrix-groovy-execution-strategy-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/matrix-groovy-execution-strategy-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/matrix-groovy-execution-strategy-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/matrix-groovy-execution-strategy-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/matrix-groovy-execution-strategy-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/matrix-groovy-execution-strategy-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/matrix-groovy-execution-strategy-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/matrix-groovy-execution-strategy-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/matrix-groovy-execution-strategy-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/matrix-groovy-execution-strategy-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/matrix-groovy-execution-strategy-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/matrix-groovy-execution-strategy-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/matrix-groovy-execution-strategy-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/matrix-groovy-execution-strategy-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/matrix-groovy-execution-strategy-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/matrix-groovy-execution-strategy-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/matrix-groovy-execution-strategy-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/matrix-groovy-execution-strategy-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/matrix-groovy-execution-strategy-plugin/deployments", + "created_at": "2014-10-23T16:11:43Z", + "updated_at": "2017-05-04T20:09:52Z", + "pushed_at": "2017-08-11T10:46:16Z", + "git_url": "git://github.com/jenkinsci/matrix-groovy-execution-strategy-plugin.git", + "ssh_url": "git@github.com:jenkinsci/matrix-groovy-execution-strategy-plugin.git", + "clone_url": "https://github.com/jenkinsci/matrix-groovy-execution-strategy-plugin.git", + "svn_url": "https://github.com/jenkinsci/matrix-groovy-execution-strategy-plugin", + "homepage": null, + "size": 245, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Groovy", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 7, + "license": null, + "forks": 4, + "open_issues": 7, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 25679712, + "node_id": "MDEwOlJlcG9zaXRvcnkyNTY3OTcxMg==", + "name": "persistent-parameter-plugin", + "full_name": "jenkinsci/persistent-parameter-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/persistent-parameter-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/persistent-parameter-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/persistent-parameter-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/persistent-parameter-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/persistent-parameter-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/persistent-parameter-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/persistent-parameter-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/persistent-parameter-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/persistent-parameter-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/persistent-parameter-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/persistent-parameter-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/persistent-parameter-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/persistent-parameter-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/persistent-parameter-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/persistent-parameter-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/persistent-parameter-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/persistent-parameter-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/persistent-parameter-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/persistent-parameter-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/persistent-parameter-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/persistent-parameter-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/persistent-parameter-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/persistent-parameter-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/persistent-parameter-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/persistent-parameter-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/persistent-parameter-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/persistent-parameter-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/persistent-parameter-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/persistent-parameter-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/persistent-parameter-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/persistent-parameter-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/persistent-parameter-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/persistent-parameter-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/persistent-parameter-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/persistent-parameter-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/persistent-parameter-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/persistent-parameter-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/persistent-parameter-plugin/deployments", + "created_at": "2014-10-24T08:51:02Z", + "updated_at": "2018-01-11T03:34:27Z", + "pushed_at": "2019-10-08T11:14:15Z", + "git_url": "git://github.com/jenkinsci/persistent-parameter-plugin.git", + "ssh_url": "git@github.com:jenkinsci/persistent-parameter-plugin.git", + "clone_url": "https://github.com/jenkinsci/persistent-parameter-plugin.git", + "svn_url": "https://github.com/jenkinsci/persistent-parameter-plugin", + "homepage": null, + "size": 224, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 7, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 5, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 7, + "open_issues": 5, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 25816451, + "node_id": "MDEwOlJlcG9zaXRvcnkyNTgxNjQ1MQ==", + "name": "dynatrace-plugin", + "full_name": "jenkinsci/dynatrace-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/dynatrace-plugin", + "description": "Plugin for Jenkins CI server that display data collected by the Dynatrace AppMon Test Automation features", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/dynatrace-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/dynatrace-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/dynatrace-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/dynatrace-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/dynatrace-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/dynatrace-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/dynatrace-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/dynatrace-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/dynatrace-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/dynatrace-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/dynatrace-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/dynatrace-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/dynatrace-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/dynatrace-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/dynatrace-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/dynatrace-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/dynatrace-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/dynatrace-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/dynatrace-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/dynatrace-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/dynatrace-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/dynatrace-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/dynatrace-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/dynatrace-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/dynatrace-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/dynatrace-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/dynatrace-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/dynatrace-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/dynatrace-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/dynatrace-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/dynatrace-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/dynatrace-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/dynatrace-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/dynatrace-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/dynatrace-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/dynatrace-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/dynatrace-plugin/deployments", + "created_at": "2014-10-27T11:49:39Z", + "updated_at": "2019-10-09T06:05:27Z", + "pushed_at": "2019-10-09T06:05:24Z", + "git_url": "git://github.com/jenkinsci/dynatrace-plugin.git", + "ssh_url": "git@github.com:jenkinsci/dynatrace-plugin.git", + "clone_url": "https://github.com/jenkinsci/dynatrace-plugin.git", + "svn_url": "https://github.com/jenkinsci/dynatrace-plugin", + "homepage": "https://community.dynatrace.com/community/display/DL/Test+Automation+Plugin+for+Jenkins", + "size": 3468, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 19, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 19, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 25816803, + "node_id": "MDEwOlJlcG9zaXRvcnkyNTgxNjgwMw==", + "name": "packagecloud-plugin", + "full_name": "jenkinsci/packagecloud-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/packagecloud-plugin", + "description": "packagecloud.io jenkins plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/packagecloud-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/packagecloud-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/packagecloud-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/packagecloud-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/packagecloud-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/packagecloud-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/packagecloud-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/packagecloud-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/packagecloud-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/packagecloud-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/packagecloud-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/packagecloud-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/packagecloud-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/packagecloud-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/packagecloud-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/packagecloud-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/packagecloud-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/packagecloud-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/packagecloud-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/packagecloud-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/packagecloud-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/packagecloud-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/packagecloud-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/packagecloud-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/packagecloud-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/packagecloud-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/packagecloud-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/packagecloud-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/packagecloud-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/packagecloud-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/packagecloud-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/packagecloud-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/packagecloud-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/packagecloud-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/packagecloud-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/packagecloud-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/packagecloud-plugin/deployments", + "created_at": "2014-10-27T11:54:18Z", + "updated_at": "2016-10-26T15:27:10Z", + "pushed_at": "2018-02-07T03:41:07Z", + "git_url": "git://github.com/jenkinsci/packagecloud-plugin.git", + "ssh_url": "git@github.com:jenkinsci/packagecloud-plugin.git", + "clone_url": "https://github.com/jenkinsci/packagecloud-plugin.git", + "svn_url": "https://github.com/jenkinsci/packagecloud-plugin", + "homepage": null, + "size": 48, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 3, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 25816938, + "node_id": "MDEwOlJlcG9zaXRvcnkyNTgxNjkzOA==", + "name": "bumblebee-plugin", + "full_name": "jenkinsci/bumblebee-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/bumblebee-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/bumblebee-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/bumblebee-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/bumblebee-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/bumblebee-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/bumblebee-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/bumblebee-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/bumblebee-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/bumblebee-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/bumblebee-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/bumblebee-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/bumblebee-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/bumblebee-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/bumblebee-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/bumblebee-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/bumblebee-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/bumblebee-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/bumblebee-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/bumblebee-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/bumblebee-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/bumblebee-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/bumblebee-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/bumblebee-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/bumblebee-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/bumblebee-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/bumblebee-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/bumblebee-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/bumblebee-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/bumblebee-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/bumblebee-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/bumblebee-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/bumblebee-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/bumblebee-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/bumblebee-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/bumblebee-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/bumblebee-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/bumblebee-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/bumblebee-plugin/deployments", + "created_at": "2014-10-27T11:58:29Z", + "updated_at": "2019-09-27T07:55:51Z", + "pushed_at": "2019-09-27T07:55:49Z", + "git_url": "git://github.com/jenkinsci/bumblebee-plugin.git", + "ssh_url": "git@github.com:jenkinsci/bumblebee-plugin.git", + "clone_url": "https://github.com/jenkinsci/bumblebee-plugin.git", + "svn_url": "https://github.com/jenkinsci/bumblebee-plugin", + "homepage": null, + "size": 279, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 25817044, + "node_id": "MDEwOlJlcG9zaXRvcnkyNTgxNzA0NA==", + "name": "global-post-script-plugin", + "full_name": "jenkinsci/global-post-script-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/global-post-script-plugin", + "description": "Execute a global configured groovy/python script after each build of each job managed by the Jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/global-post-script-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/global-post-script-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/global-post-script-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/global-post-script-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/global-post-script-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/global-post-script-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/global-post-script-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/global-post-script-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/global-post-script-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/global-post-script-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/global-post-script-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/global-post-script-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/global-post-script-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/global-post-script-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/global-post-script-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/global-post-script-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/global-post-script-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/global-post-script-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/global-post-script-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/global-post-script-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/global-post-script-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/global-post-script-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/global-post-script-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/global-post-script-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/global-post-script-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/global-post-script-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/global-post-script-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/global-post-script-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/global-post-script-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/global-post-script-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/global-post-script-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/global-post-script-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/global-post-script-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/global-post-script-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/global-post-script-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/global-post-script-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/global-post-script-plugin/deployments", + "created_at": "2014-10-27T12:02:15Z", + "updated_at": "2019-06-28T00:24:52Z", + "pushed_at": "2019-10-08T11:15:28Z", + "git_url": "git://github.com/jenkinsci/global-post-script-plugin.git", + "ssh_url": "git@github.com:jenkinsci/global-post-script-plugin.git", + "clone_url": "https://github.com/jenkinsci/global-post-script-plugin.git", + "svn_url": "https://github.com/jenkinsci/global-post-script-plugin", + "homepage": "", + "size": 130, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 10, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 10, + "open_issues": 1, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 25846502, + "node_id": "MDEwOlJlcG9zaXRvcnkyNTg0NjUwMg==", + "name": "z-mon", + "full_name": "jenkinsci/z-mon", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/z-mon", + "description": "a jenkins build monitor plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/z-mon", + "forks_url": "https://api.github.com/repos/jenkinsci/z-mon/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/z-mon/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/z-mon/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/z-mon/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/z-mon/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/z-mon/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/z-mon/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/z-mon/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/z-mon/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/z-mon/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/z-mon/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/z-mon/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/z-mon/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/z-mon/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/z-mon/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/z-mon/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/z-mon/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/z-mon/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/z-mon/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/z-mon/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/z-mon/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/z-mon/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/z-mon/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/z-mon/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/z-mon/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/z-mon/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/z-mon/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/z-mon/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/z-mon/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/z-mon/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/z-mon/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/z-mon/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/z-mon/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/z-mon/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/z-mon/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/z-mon/deployments", + "created_at": "2014-10-28T00:55:02Z", + "updated_at": "2014-07-17T19:49:32Z", + "pushed_at": "2014-05-29T17:55:08Z", + "git_url": "git://github.com/jenkinsci/z-mon.git", + "ssh_url": "git@github.com:jenkinsci/z-mon.git", + "clone_url": "https://github.com/jenkinsci/z-mon.git", + "svn_url": "https://github.com/jenkinsci/z-mon", + "homepage": null, + "size": 1576, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 25866108, + "node_id": "MDEwOlJlcG9zaXRvcnkyNTg2NjEwOA==", + "name": "openshift-deployer-plugin", + "full_name": "jenkinsci/openshift-deployer-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/openshift-deployer-plugin", + "description": "OpenShift plugin enables Jenkins job to create containers(gears) on OpenShift and deploy applications to it", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/openshift-deployer-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/openshift-deployer-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/openshift-deployer-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/openshift-deployer-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/openshift-deployer-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/openshift-deployer-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/openshift-deployer-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/openshift-deployer-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/openshift-deployer-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/openshift-deployer-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/openshift-deployer-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/openshift-deployer-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/openshift-deployer-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/openshift-deployer-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/openshift-deployer-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/openshift-deployer-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/openshift-deployer-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/openshift-deployer-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/openshift-deployer-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/openshift-deployer-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/openshift-deployer-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/openshift-deployer-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/openshift-deployer-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/openshift-deployer-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/openshift-deployer-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/openshift-deployer-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/openshift-deployer-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/openshift-deployer-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/openshift-deployer-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/openshift-deployer-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/openshift-deployer-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/openshift-deployer-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/openshift-deployer-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/openshift-deployer-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/openshift-deployer-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/openshift-deployer-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/openshift-deployer-plugin/deployments", + "created_at": "2014-10-28T11:27:41Z", + "updated_at": "2019-04-04T14:03:45Z", + "pushed_at": "2019-10-08T16:16:50Z", + "git_url": "git://github.com/jenkinsci/openshift-deployer-plugin.git", + "ssh_url": "git@github.com:jenkinsci/openshift-deployer-plugin.git", + "clone_url": "https://github.com/jenkinsci/openshift-deployer-plugin.git", + "svn_url": "https://github.com/jenkinsci/openshift-deployer-plugin", + "homepage": null, + "size": 9502, + "stargazers_count": 8, + "watchers_count": 8, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 12, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 12, + "open_issues": 2, + "watchers": 8, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 25914642, + "node_id": "MDEwOlJlcG9zaXRvcnkyNTkxNDY0Mg==", + "name": "deployer-framework-plugin", + "full_name": "jenkinsci/deployer-framework-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/deployer-framework-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/deployer-framework-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/deployer-framework-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/deployer-framework-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/deployer-framework-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/deployer-framework-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/deployer-framework-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/deployer-framework-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/deployer-framework-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/deployer-framework-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/deployer-framework-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/deployer-framework-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/deployer-framework-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/deployer-framework-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/deployer-framework-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/deployer-framework-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/deployer-framework-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/deployer-framework-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/deployer-framework-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/deployer-framework-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/deployer-framework-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/deployer-framework-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/deployer-framework-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/deployer-framework-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/deployer-framework-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/deployer-framework-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/deployer-framework-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/deployer-framework-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/deployer-framework-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/deployer-framework-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/deployer-framework-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/deployer-framework-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/deployer-framework-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/deployer-framework-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/deployer-framework-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/deployer-framework-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/deployer-framework-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/deployer-framework-plugin/deployments", + "created_at": "2014-10-29T09:59:34Z", + "updated_at": "2019-06-11T15:02:44Z", + "pushed_at": "2019-06-29T21:38:13Z", + "git_url": "git://github.com/jenkinsci/deployer-framework-plugin.git", + "ssh_url": "git@github.com:jenkinsci/deployer-framework-plugin.git", + "clone_url": "https://github.com/jenkinsci/deployer-framework-plugin.git", + "svn_url": "https://github.com/jenkinsci/deployer-framework-plugin", + "homepage": "", + "size": 128, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 11, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 11, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 26029776, + "node_id": "MDEwOlJlcG9zaXRvcnkyNjAyOTc3Ng==", + "name": "unique-id-plugin", + "full_name": "jenkinsci/unique-id-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/unique-id-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/unique-id-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/unique-id-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/unique-id-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/unique-id-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/unique-id-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/unique-id-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/unique-id-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/unique-id-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/unique-id-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/unique-id-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/unique-id-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/unique-id-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/unique-id-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/unique-id-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/unique-id-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/unique-id-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/unique-id-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/unique-id-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/unique-id-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/unique-id-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/unique-id-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/unique-id-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/unique-id-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/unique-id-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/unique-id-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/unique-id-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/unique-id-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/unique-id-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/unique-id-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/unique-id-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/unique-id-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/unique-id-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/unique-id-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/unique-id-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/unique-id-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/unique-id-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/unique-id-plugin/deployments", + "created_at": "2014-10-31T19:11:57Z", + "updated_at": "2019-03-08T10:57:44Z", + "pushed_at": "2019-09-11T04:39:17Z", + "git_url": "git://github.com/jenkinsci/unique-id-plugin.git", + "ssh_url": "git@github.com:jenkinsci/unique-id-plugin.git", + "clone_url": "https://github.com/jenkinsci/unique-id-plugin.git", + "svn_url": "https://github.com/jenkinsci/unique-id-plugin", + "homepage": null, + "size": 99, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 9, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 9, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 26321197, + "node_id": "MDEwOlJlcG9zaXRvcnkyNjMyMTE5Nw==", + "name": "go-performance-publisher-plugin", + "full_name": "jenkinsci/go-performance-publisher-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/go-performance-publisher-plugin", + "description": "Reads Go benchmark reports and analyses the information. Records info for each build so performance can be compared over time.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/go-performance-publisher-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/go-performance-publisher-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/go-performance-publisher-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/go-performance-publisher-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/go-performance-publisher-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/go-performance-publisher-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/go-performance-publisher-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/go-performance-publisher-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/go-performance-publisher-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/go-performance-publisher-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/go-performance-publisher-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/go-performance-publisher-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/go-performance-publisher-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/go-performance-publisher-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/go-performance-publisher-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/go-performance-publisher-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/go-performance-publisher-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/go-performance-publisher-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/go-performance-publisher-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/go-performance-publisher-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/go-performance-publisher-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/go-performance-publisher-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/go-performance-publisher-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/go-performance-publisher-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/go-performance-publisher-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/go-performance-publisher-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/go-performance-publisher-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/go-performance-publisher-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/go-performance-publisher-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/go-performance-publisher-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/go-performance-publisher-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/go-performance-publisher-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/go-performance-publisher-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/go-performance-publisher-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/go-performance-publisher-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/go-performance-publisher-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/go-performance-publisher-plugin/deployments", + "created_at": "2014-11-07T13:38:46Z", + "updated_at": "2014-11-07T14:07:43Z", + "pushed_at": "2014-11-07T14:06:51Z", + "git_url": "git://github.com/jenkinsci/go-performance-publisher-plugin.git", + "ssh_url": "git@github.com:jenkinsci/go-performance-publisher-plugin.git", + "clone_url": "https://github.com/jenkinsci/go-performance-publisher-plugin.git", + "svn_url": "https://github.com/jenkinsci/go-performance-publisher-plugin", + "homepage": "", + "size": 112, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 26392012, + "node_id": "MDEwOlJlcG9zaXRvcnkyNjM5MjAxMg==", + "name": "sidebar-update-notification-plugin", + "full_name": "jenkinsci/sidebar-update-notification-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/sidebar-update-notification-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/sidebar-update-notification-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/sidebar-update-notification-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/sidebar-update-notification-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/sidebar-update-notification-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/sidebar-update-notification-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/sidebar-update-notification-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/sidebar-update-notification-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/sidebar-update-notification-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/sidebar-update-notification-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/sidebar-update-notification-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/sidebar-update-notification-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/sidebar-update-notification-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/sidebar-update-notification-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/sidebar-update-notification-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/sidebar-update-notification-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/sidebar-update-notification-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/sidebar-update-notification-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/sidebar-update-notification-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/sidebar-update-notification-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/sidebar-update-notification-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/sidebar-update-notification-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/sidebar-update-notification-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/sidebar-update-notification-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/sidebar-update-notification-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/sidebar-update-notification-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/sidebar-update-notification-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/sidebar-update-notification-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/sidebar-update-notification-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/sidebar-update-notification-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/sidebar-update-notification-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/sidebar-update-notification-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/sidebar-update-notification-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/sidebar-update-notification-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/sidebar-update-notification-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/sidebar-update-notification-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/sidebar-update-notification-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/sidebar-update-notification-plugin/deployments", + "created_at": "2014-11-09T10:09:35Z", + "updated_at": "2015-08-23T22:03:40Z", + "pushed_at": "2019-10-08T16:32:50Z", + "git_url": "git://github.com/jenkinsci/sidebar-update-notification-plugin.git", + "ssh_url": "git@github.com:jenkinsci/sidebar-update-notification-plugin.git", + "clone_url": "https://github.com/jenkinsci/sidebar-update-notification-plugin.git", + "svn_url": "https://github.com/jenkinsci/sidebar-update-notification-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Sidebar+Update+Notification+Plugin", + "size": 103, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 26395497, + "node_id": "MDEwOlJlcG9zaXRvcnkyNjM5NTQ5Nw==", + "name": "redline-plugin", + "full_name": "jenkinsci/redline-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/redline-plugin", + "description": "Redline13 Jenkins Plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/redline-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/redline-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/redline-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/redline-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/redline-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/redline-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/redline-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/redline-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/redline-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/redline-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/redline-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/redline-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/redline-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/redline-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/redline-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/redline-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/redline-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/redline-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/redline-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/redline-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/redline-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/redline-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/redline-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/redline-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/redline-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/redline-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/redline-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/redline-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/redline-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/redline-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/redline-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/redline-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/redline-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/redline-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/redline-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/redline-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/redline-plugin/deployments", + "created_at": "2014-11-09T12:53:52Z", + "updated_at": "2015-02-22T19:56:22Z", + "pushed_at": "2015-02-22T19:56:20Z", + "git_url": "git://github.com/jenkinsci/redline-plugin.git", + "ssh_url": "git@github.com:jenkinsci/redline-plugin.git", + "clone_url": "https://github.com/jenkinsci/redline-plugin.git", + "svn_url": "https://github.com/jenkinsci/redline-plugin", + "homepage": null, + "size": 190, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "lgpl-3.0", + "name": "GNU Lesser General Public License v3.0", + "spdx_id": "LGPL-3.0", + "url": "https://api.github.com/licenses/lgpl-3.0", + "node_id": "MDc6TGljZW5zZTEy" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 26429667, + "node_id": "MDEwOlJlcG9zaXRvcnkyNjQyOTY2Nw==", + "name": "bearychat-plugin", + "full_name": "jenkinsci/bearychat-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/bearychat-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/bearychat-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/bearychat-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/bearychat-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/bearychat-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/bearychat-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/bearychat-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/bearychat-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/bearychat-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/bearychat-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/bearychat-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/bearychat-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/bearychat-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/bearychat-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/bearychat-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/bearychat-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/bearychat-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/bearychat-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/bearychat-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/bearychat-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/bearychat-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/bearychat-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/bearychat-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/bearychat-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/bearychat-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/bearychat-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/bearychat-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/bearychat-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/bearychat-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/bearychat-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/bearychat-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/bearychat-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/bearychat-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/bearychat-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/bearychat-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/bearychat-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/bearychat-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/bearychat-plugin/deployments", + "created_at": "2014-11-10T09:24:16Z", + "updated_at": "2018-05-26T13:57:43Z", + "pushed_at": "2017-10-20T04:06:10Z", + "git_url": "git://github.com/jenkinsci/bearychat-plugin.git", + "ssh_url": "git@github.com:jenkinsci/bearychat-plugin.git", + "clone_url": "https://github.com/jenkinsci/bearychat-plugin.git", + "svn_url": "https://github.com/jenkinsci/bearychat-plugin", + "homepage": null, + "size": 180, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 26951584, + "node_id": "MDEwOlJlcG9zaXRvcnkyNjk1MTU4NA==", + "name": "gcloud-plugin", + "full_name": "jenkinsci/gcloud-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/gcloud-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/gcloud-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/gcloud-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/gcloud-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/gcloud-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/gcloud-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/gcloud-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/gcloud-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/gcloud-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/gcloud-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/gcloud-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/gcloud-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/gcloud-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/gcloud-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/gcloud-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/gcloud-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/gcloud-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/gcloud-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/gcloud-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/gcloud-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/gcloud-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/gcloud-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/gcloud-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/gcloud-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/gcloud-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/gcloud-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/gcloud-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/gcloud-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/gcloud-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/gcloud-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/gcloud-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/gcloud-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/gcloud-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/gcloud-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/gcloud-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/gcloud-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/gcloud-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/gcloud-plugin/deployments", + "created_at": "2014-11-21T08:18:02Z", + "updated_at": "2014-12-15T01:59:45Z", + "pushed_at": "2014-11-21T08:55:39Z", + "git_url": "git://github.com/jenkinsci/gcloud-plugin.git", + "ssh_url": "git@github.com:jenkinsci/gcloud-plugin.git", + "clone_url": "https://github.com/jenkinsci/gcloud-plugin.git", + "svn_url": "https://github.com/jenkinsci/gcloud-plugin", + "homepage": "", + "size": 104, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 3, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 27278333, + "node_id": "MDEwOlJlcG9zaXRvcnkyNzI3ODMzMw==", + "name": "discobit-autoconfig-plugin", + "full_name": "jenkinsci/discobit-autoconfig-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/discobit-autoconfig-plugin", + "description": "Plugin for Jenkins for automating discoBit configurations", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/discobit-autoconfig-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/discobit-autoconfig-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/discobit-autoconfig-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/discobit-autoconfig-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/discobit-autoconfig-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/discobit-autoconfig-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/discobit-autoconfig-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/discobit-autoconfig-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/discobit-autoconfig-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/discobit-autoconfig-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/discobit-autoconfig-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/discobit-autoconfig-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/discobit-autoconfig-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/discobit-autoconfig-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/discobit-autoconfig-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/discobit-autoconfig-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/discobit-autoconfig-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/discobit-autoconfig-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/discobit-autoconfig-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/discobit-autoconfig-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/discobit-autoconfig-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/discobit-autoconfig-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/discobit-autoconfig-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/discobit-autoconfig-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/discobit-autoconfig-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/discobit-autoconfig-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/discobit-autoconfig-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/discobit-autoconfig-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/discobit-autoconfig-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/discobit-autoconfig-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/discobit-autoconfig-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/discobit-autoconfig-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/discobit-autoconfig-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/discobit-autoconfig-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/discobit-autoconfig-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/discobit-autoconfig-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/discobit-autoconfig-plugin/deployments", + "created_at": "2014-11-28T18:38:22Z", + "updated_at": "2014-12-02T08:50:40Z", + "pushed_at": "2014-12-02T08:50:40Z", + "git_url": "git://github.com/jenkinsci/discobit-autoconfig-plugin.git", + "ssh_url": "git@github.com:jenkinsci/discobit-autoconfig-plugin.git", + "clone_url": "https://github.com/jenkinsci/discobit-autoconfig-plugin.git", + "svn_url": "https://github.com/jenkinsci/discobit-autoconfig-plugin", + "homepage": null, + "size": 105, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 27436639, + "node_id": "MDEwOlJlcG9zaXRvcnkyNzQzNjYzOQ==", + "name": "google-login-plugin", + "full_name": "jenkinsci/google-login-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/google-login-plugin", + "description": "A Jenkins plugin which lets you login to Jenkins with your Google account.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/google-login-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/google-login-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/google-login-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/google-login-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/google-login-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/google-login-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/google-login-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/google-login-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/google-login-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/google-login-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/google-login-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/google-login-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/google-login-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/google-login-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/google-login-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/google-login-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/google-login-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/google-login-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/google-login-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/google-login-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/google-login-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/google-login-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/google-login-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/google-login-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/google-login-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/google-login-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/google-login-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/google-login-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/google-login-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/google-login-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/google-login-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/google-login-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/google-login-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/google-login-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/google-login-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/google-login-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/google-login-plugin/deployments", + "created_at": "2014-12-02T14:41:32Z", + "updated_at": "2019-10-09T12:00:37Z", + "pushed_at": "2019-10-08T09:52:16Z", + "git_url": "git://github.com/jenkinsci/google-login-plugin.git", + "ssh_url": "git@github.com:jenkinsci/google-login-plugin.git", + "clone_url": "https://github.com/jenkinsci/google-login-plugin.git", + "svn_url": "https://github.com/jenkinsci/google-login-plugin", + "homepage": null, + "size": 89, + "stargazers_count": 48, + "watchers_count": 48, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 29, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 29, + "open_issues": 1, + "watchers": 48, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 27502380, + "node_id": "MDEwOlJlcG9zaXRvcnkyNzUwMjM4MA==", + "name": "cloudfoundry-plugin", + "full_name": "jenkinsci/cloudfoundry-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/cloudfoundry-plugin", + "description": "Pushes an application to Cloud Foundry at the end of a build", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/cloudfoundry-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/cloudfoundry-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/cloudfoundry-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/cloudfoundry-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/cloudfoundry-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/cloudfoundry-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/cloudfoundry-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/cloudfoundry-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/cloudfoundry-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/cloudfoundry-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/cloudfoundry-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/cloudfoundry-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/cloudfoundry-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/cloudfoundry-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/cloudfoundry-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/cloudfoundry-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/cloudfoundry-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/cloudfoundry-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/cloudfoundry-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/cloudfoundry-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/cloudfoundry-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/cloudfoundry-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/cloudfoundry-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/cloudfoundry-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/cloudfoundry-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/cloudfoundry-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/cloudfoundry-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/cloudfoundry-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/cloudfoundry-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/cloudfoundry-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/cloudfoundry-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/cloudfoundry-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/cloudfoundry-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/cloudfoundry-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/cloudfoundry-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/cloudfoundry-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/cloudfoundry-plugin/deployments", + "created_at": "2014-12-03T18:53:56Z", + "updated_at": "2019-10-23T14:51:06Z", + "pushed_at": "2019-02-19T09:13:03Z", + "git_url": "git://github.com/jenkinsci/cloudfoundry-plugin.git", + "ssh_url": "git@github.com:jenkinsci/cloudfoundry-plugin.git", + "clone_url": "https://github.com/jenkinsci/cloudfoundry-plugin.git", + "svn_url": "https://github.com/jenkinsci/cloudfoundry-plugin", + "homepage": "", + "size": 49411, + "stargazers_count": 27, + "watchers_count": 27, + "language": "Java", + "has_issues": false, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 22, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 22, + "open_issues": 0, + "watchers": 27, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 27505608, + "node_id": "MDEwOlJlcG9zaXRvcnkyNzUwNTYwOA==", + "name": "jython-postbuild-plugin", + "full_name": "jenkinsci/jython-postbuild-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jython-postbuild-plugin", + "description": "Jython plugin for Jenkins similar to the groovy postbuild plugin but that allows you to write the code in python (using jython to access java classes and methods)", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/jython-postbuild-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/jython-postbuild-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jython-postbuild-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jython-postbuild-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jython-postbuild-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jython-postbuild-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jython-postbuild-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jython-postbuild-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jython-postbuild-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jython-postbuild-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jython-postbuild-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jython-postbuild-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jython-postbuild-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jython-postbuild-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jython-postbuild-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jython-postbuild-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jython-postbuild-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jython-postbuild-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jython-postbuild-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jython-postbuild-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jython-postbuild-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jython-postbuild-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jython-postbuild-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jython-postbuild-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jython-postbuild-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jython-postbuild-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jython-postbuild-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jython-postbuild-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jython-postbuild-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jython-postbuild-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jython-postbuild-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jython-postbuild-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jython-postbuild-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jython-postbuild-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jython-postbuild-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jython-postbuild-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jython-postbuild-plugin/deployments", + "created_at": "2014-12-03T20:13:16Z", + "updated_at": "2014-12-03T20:14:13Z", + "pushed_at": "2014-12-03T19:25:44Z", + "git_url": "git://github.com/jenkinsci/jython-postbuild-plugin.git", + "ssh_url": "git@github.com:jenkinsci/jython-postbuild-plugin.git", + "clone_url": "https://github.com/jenkinsci/jython-postbuild-plugin.git", + "svn_url": "https://github.com/jenkinsci/jython-postbuild-plugin", + "homepage": null, + "size": 80, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 27519513, + "node_id": "MDEwOlJlcG9zaXRvcnkyNzUxOTUxMw==", + "name": "aws-codedeploy-plugin", + "full_name": "jenkinsci/aws-codedeploy-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/aws-codedeploy-plugin", + "description": "Jenkins plugin for AWS CodeDeploy", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/aws-codedeploy-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/aws-codedeploy-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/aws-codedeploy-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/aws-codedeploy-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/aws-codedeploy-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/aws-codedeploy-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/aws-codedeploy-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/aws-codedeploy-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/aws-codedeploy-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/aws-codedeploy-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/aws-codedeploy-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/aws-codedeploy-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/aws-codedeploy-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/aws-codedeploy-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/aws-codedeploy-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/aws-codedeploy-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/aws-codedeploy-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/aws-codedeploy-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/aws-codedeploy-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/aws-codedeploy-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/aws-codedeploy-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/aws-codedeploy-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/aws-codedeploy-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/aws-codedeploy-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/aws-codedeploy-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/aws-codedeploy-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/aws-codedeploy-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/aws-codedeploy-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/aws-codedeploy-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/aws-codedeploy-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/aws-codedeploy-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/aws-codedeploy-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/aws-codedeploy-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/aws-codedeploy-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/aws-codedeploy-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/aws-codedeploy-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/aws-codedeploy-plugin/deployments", + "created_at": "2014-12-04T02:38:48Z", + "updated_at": "2019-01-30T02:59:00Z", + "pushed_at": "2019-10-22T09:31:14Z", + "git_url": "git://github.com/jenkinsci/aws-codedeploy-plugin.git", + "ssh_url": "git@github.com:jenkinsci/aws-codedeploy-plugin.git", + "clone_url": "https://github.com/jenkinsci/aws-codedeploy-plugin.git", + "svn_url": "https://github.com/jenkinsci/aws-codedeploy-plugin", + "homepage": null, + "size": 134, + "stargazers_count": 10, + "watchers_count": 10, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 27, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 10, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 27, + "open_issues": 10, + "watchers": 10, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 27737547, + "node_id": "MDEwOlJlcG9zaXRvcnkyNzczNzU0Nw==", + "name": "google-source-plugin", + "full_name": "jenkinsci/google-source-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/google-source-plugin", + "description": "This plugin provides the credential provider to use Google Cloud Platform OAuth Credentials (provided by the Google OAuth Plugin) to access source code from https://source.developer.google.com as well as https://googlesource.com.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/google-source-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/google-source-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/google-source-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/google-source-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/google-source-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/google-source-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/google-source-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/google-source-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/google-source-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/google-source-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/google-source-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/google-source-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/google-source-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/google-source-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/google-source-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/google-source-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/google-source-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/google-source-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/google-source-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/google-source-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/google-source-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/google-source-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/google-source-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/google-source-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/google-source-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/google-source-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/google-source-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/google-source-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/google-source-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/google-source-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/google-source-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/google-source-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/google-source-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/google-source-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/google-source-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/google-source-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/google-source-plugin/deployments", + "created_at": "2014-12-08T22:05:52Z", + "updated_at": "2019-10-23T17:14:16Z", + "pushed_at": "2019-10-23T17:14:14Z", + "git_url": "git://github.com/jenkinsci/google-source-plugin.git", + "ssh_url": "git@github.com:jenkinsci/google-source-plugin.git", + "clone_url": "https://github.com/jenkinsci/google-source-plugin.git", + "svn_url": "https://github.com/jenkinsci/google-source-plugin", + "homepage": "", + "size": 49, + "stargazers_count": 6, + "watchers_count": 6, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 6, + "open_issues": 2, + "watchers": 6, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 27792928, + "node_id": "MDEwOlJlcG9zaXRvcnkyNzc5MjkyOA==", + "name": "diskcheck-plugin", + "full_name": "jenkinsci/diskcheck-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/diskcheck-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/diskcheck-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/diskcheck-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/diskcheck-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/diskcheck-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/diskcheck-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/diskcheck-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/diskcheck-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/diskcheck-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/diskcheck-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/diskcheck-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/diskcheck-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/diskcheck-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/diskcheck-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/diskcheck-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/diskcheck-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/diskcheck-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/diskcheck-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/diskcheck-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/diskcheck-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/diskcheck-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/diskcheck-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/diskcheck-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/diskcheck-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/diskcheck-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/diskcheck-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/diskcheck-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/diskcheck-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/diskcheck-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/diskcheck-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/diskcheck-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/diskcheck-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/diskcheck-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/diskcheck-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/diskcheck-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/diskcheck-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/diskcheck-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/diskcheck-plugin/deployments", + "created_at": "2014-12-09T23:38:43Z", + "updated_at": "2019-06-13T08:08:47Z", + "pushed_at": "2019-10-08T12:29:17Z", + "git_url": "git://github.com/jenkinsci/diskcheck-plugin.git", + "ssh_url": "git@github.com:jenkinsci/diskcheck-plugin.git", + "clone_url": "https://github.com/jenkinsci/diskcheck-plugin.git", + "svn_url": "https://github.com/jenkinsci/diskcheck-plugin", + "homepage": null, + "size": 35, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 10, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 5, + "license": null, + "forks": 10, + "open_issues": 5, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 27888626, + "node_id": "MDEwOlJlcG9zaXRvcnkyNzg4ODYyNg==", + "name": "gitcolony-plugin", + "full_name": "jenkinsci/gitcolony-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/gitcolony-plugin", + "description": "Plugin for Jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/gitcolony-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/gitcolony-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/gitcolony-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/gitcolony-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/gitcolony-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/gitcolony-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/gitcolony-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/gitcolony-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/gitcolony-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/gitcolony-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/gitcolony-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/gitcolony-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/gitcolony-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/gitcolony-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/gitcolony-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/gitcolony-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/gitcolony-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/gitcolony-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/gitcolony-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/gitcolony-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/gitcolony-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/gitcolony-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/gitcolony-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/gitcolony-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/gitcolony-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/gitcolony-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/gitcolony-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/gitcolony-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/gitcolony-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/gitcolony-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/gitcolony-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/gitcolony-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/gitcolony-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/gitcolony-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/gitcolony-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/gitcolony-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/gitcolony-plugin/deployments", + "created_at": "2014-12-11T19:46:51Z", + "updated_at": "2017-07-08T18:36:08Z", + "pushed_at": "2019-10-08T16:24:27Z", + "git_url": "git://github.com/jenkinsci/gitcolony-plugin.git", + "ssh_url": "git@github.com:jenkinsci/gitcolony-plugin.git", + "clone_url": "https://github.com/jenkinsci/gitcolony-plugin.git", + "svn_url": "https://github.com/jenkinsci/gitcolony-plugin", + "homepage": "https://www.gitcolony.com", + "size": 133, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 5, + "open_issues": 2, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 28144862, + "node_id": "MDEwOlJlcG9zaXRvcnkyODE0NDg2Mg==", + "name": "sahagin-plugin", + "full_name": "jenkinsci/sahagin-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/sahagin-plugin", + "description": "Sahagin Jenkins plugin. This plugin generates Sahagin HTML report from Sahagin test output data and attaches it to Jenkins build.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/sahagin-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/sahagin-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/sahagin-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/sahagin-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/sahagin-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/sahagin-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/sahagin-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/sahagin-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/sahagin-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/sahagin-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/sahagin-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/sahagin-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/sahagin-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/sahagin-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/sahagin-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/sahagin-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/sahagin-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/sahagin-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/sahagin-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/sahagin-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/sahagin-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/sahagin-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/sahagin-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/sahagin-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/sahagin-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/sahagin-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/sahagin-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/sahagin-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/sahagin-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/sahagin-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/sahagin-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/sahagin-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/sahagin-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/sahagin-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/sahagin-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/sahagin-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/sahagin-plugin/deployments", + "created_at": "2014-12-17T16:16:27Z", + "updated_at": "2016-10-27T15:16:55Z", + "pushed_at": "2017-10-16T09:59:42Z", + "git_url": "git://github.com/jenkinsci/sahagin-plugin.git", + "ssh_url": "git@github.com:jenkinsci/sahagin-plugin.git", + "clone_url": "https://github.com/jenkinsci/sahagin-plugin.git", + "svn_url": "https://github.com/jenkinsci/sahagin-plugin", + "homepage": "https://github.com/SahaginOrg/sahagin-java", + "size": 88, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 2, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 28190904, + "node_id": "MDEwOlJlcG9zaXRvcnkyODE5MDkwNA==", + "name": "javatest-report", + "full_name": "jenkinsci/javatest-report", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/javatest-report", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/javatest-report", + "forks_url": "https://api.github.com/repos/jenkinsci/javatest-report/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/javatest-report/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/javatest-report/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/javatest-report/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/javatest-report/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/javatest-report/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/javatest-report/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/javatest-report/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/javatest-report/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/javatest-report/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/javatest-report/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/javatest-report/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/javatest-report/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/javatest-report/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/javatest-report/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/javatest-report/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/javatest-report/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/javatest-report/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/javatest-report/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/javatest-report/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/javatest-report/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/javatest-report/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/javatest-report/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/javatest-report/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/javatest-report/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/javatest-report/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/javatest-report/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/javatest-report/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/javatest-report/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/javatest-report/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/javatest-report/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/javatest-report/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/javatest-report/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/javatest-report/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/javatest-report/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/javatest-report/deployments", + "created_at": "2014-12-18T16:15:24Z", + "updated_at": "2015-01-20T09:21:08Z", + "pushed_at": "2015-01-20T09:21:08Z", + "git_url": "git://github.com/jenkinsci/javatest-report.git", + "ssh_url": "git@github.com:jenkinsci/javatest-report.git", + "clone_url": "https://github.com/jenkinsci/javatest-report.git", + "svn_url": "https://github.com/jenkinsci/javatest-report", + "homepage": null, + "size": 6472, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 28243752, + "node_id": "MDEwOlJlcG9zaXRvcnkyODI0Mzc1Mg==", + "name": "customize-build-now-plugin", + "full_name": "jenkinsci/customize-build-now-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/customize-build-now-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/customize-build-now-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/customize-build-now-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/customize-build-now-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/customize-build-now-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/customize-build-now-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/customize-build-now-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/customize-build-now-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/customize-build-now-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/customize-build-now-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/customize-build-now-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/customize-build-now-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/customize-build-now-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/customize-build-now-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/customize-build-now-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/customize-build-now-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/customize-build-now-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/customize-build-now-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/customize-build-now-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/customize-build-now-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/customize-build-now-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/customize-build-now-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/customize-build-now-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/customize-build-now-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/customize-build-now-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/customize-build-now-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/customize-build-now-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/customize-build-now-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/customize-build-now-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/customize-build-now-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/customize-build-now-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/customize-build-now-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/customize-build-now-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/customize-build-now-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/customize-build-now-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/customize-build-now-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/customize-build-now-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/customize-build-now-plugin/deployments", + "created_at": "2014-12-19T19:47:05Z", + "updated_at": "2019-04-03T06:58:31Z", + "pushed_at": "2019-10-08T15:17:42Z", + "git_url": "git://github.com/jenkinsci/customize-build-now-plugin.git", + "ssh_url": "git@github.com:jenkinsci/customize-build-now-plugin.git", + "clone_url": "https://github.com/jenkinsci/customize-build-now-plugin.git", + "svn_url": "https://github.com/jenkinsci/customize-build-now-plugin", + "homepage": null, + "size": 132, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 4, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 28751640, + "node_id": "MDEwOlJlcG9zaXRvcnkyODc1MTY0MA==", + "name": "ajax-list-view-plugin", + "full_name": "jenkinsci/ajax-list-view-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/ajax-list-view-plugin", + "description": "List View Jenkins Plugin with AJAX refresh", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/ajax-list-view-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/ajax-list-view-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/ajax-list-view-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/ajax-list-view-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/ajax-list-view-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/ajax-list-view-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/ajax-list-view-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/ajax-list-view-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/ajax-list-view-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/ajax-list-view-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/ajax-list-view-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/ajax-list-view-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/ajax-list-view-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/ajax-list-view-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/ajax-list-view-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/ajax-list-view-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/ajax-list-view-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/ajax-list-view-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/ajax-list-view-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/ajax-list-view-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/ajax-list-view-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/ajax-list-view-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/ajax-list-view-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/ajax-list-view-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/ajax-list-view-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/ajax-list-view-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/ajax-list-view-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/ajax-list-view-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/ajax-list-view-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/ajax-list-view-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/ajax-list-view-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/ajax-list-view-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/ajax-list-view-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/ajax-list-view-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/ajax-list-view-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/ajax-list-view-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/ajax-list-view-plugin/deployments", + "created_at": "2015-01-03T18:45:12Z", + "updated_at": "2015-01-03T18:45:24Z", + "pushed_at": "2015-12-07T09:45:18Z", + "git_url": "git://github.com/jenkinsci/ajax-list-view-plugin.git", + "ssh_url": "git@github.com:jenkinsci/ajax-list-view-plugin.git", + "clone_url": "https://github.com/jenkinsci/ajax-list-view-plugin.git", + "svn_url": "https://github.com/jenkinsci/ajax-list-view-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 1308, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 28778709, + "node_id": "MDEwOlJlcG9zaXRvcnkyODc3ODcwOQ==", + "name": "font-awesome-icons-plugin", + "full_name": "jenkinsci/font-awesome-icons-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/font-awesome-icons-plugin", + "description": "Font Awesome Icon Theme Implementation Core Definition.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/font-awesome-icons-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/font-awesome-icons-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/font-awesome-icons-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/font-awesome-icons-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/font-awesome-icons-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/font-awesome-icons-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/font-awesome-icons-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/font-awesome-icons-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/font-awesome-icons-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/font-awesome-icons-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/font-awesome-icons-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/font-awesome-icons-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/font-awesome-icons-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/font-awesome-icons-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/font-awesome-icons-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/font-awesome-icons-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/font-awesome-icons-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/font-awesome-icons-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/font-awesome-icons-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/font-awesome-icons-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/font-awesome-icons-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/font-awesome-icons-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/font-awesome-icons-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/font-awesome-icons-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/font-awesome-icons-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/font-awesome-icons-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/font-awesome-icons-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/font-awesome-icons-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/font-awesome-icons-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/font-awesome-icons-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/font-awesome-icons-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/font-awesome-icons-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/font-awesome-icons-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/font-awesome-icons-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/font-awesome-icons-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/font-awesome-icons-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/font-awesome-icons-plugin/deployments", + "created_at": "2015-01-04T16:05:14Z", + "updated_at": "2016-04-30T00:23:38Z", + "pushed_at": "2015-01-04T16:21:08Z", + "git_url": "git://github.com/jenkinsci/font-awesome-icons-plugin.git", + "ssh_url": "git@github.com:jenkinsci/font-awesome-icons-plugin.git", + "clone_url": "https://github.com/jenkinsci/font-awesome-icons-plugin.git", + "svn_url": "https://github.com/jenkinsci/font-awesome-icons-plugin", + "homepage": null, + "size": 468, + "stargazers_count": 1, + "watchers_count": 1, + "language": "CSS", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 28832994, + "node_id": "MDEwOlJlcG9zaXRvcnkyODgzMjk5NA==", + "name": "modernstatus-plugin", + "full_name": "jenkinsci/modernstatus-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/modernstatus-plugin", + "description": "A modern set of icons for Jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/modernstatus-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/modernstatus-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/modernstatus-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/modernstatus-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/modernstatus-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/modernstatus-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/modernstatus-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/modernstatus-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/modernstatus-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/modernstatus-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/modernstatus-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/modernstatus-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/modernstatus-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/modernstatus-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/modernstatus-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/modernstatus-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/modernstatus-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/modernstatus-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/modernstatus-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/modernstatus-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/modernstatus-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/modernstatus-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/modernstatus-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/modernstatus-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/modernstatus-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/modernstatus-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/modernstatus-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/modernstatus-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/modernstatus-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/modernstatus-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/modernstatus-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/modernstatus-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/modernstatus-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/modernstatus-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/modernstatus-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/modernstatus-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/modernstatus-plugin/deployments", + "created_at": "2015-01-05T21:37:16Z", + "updated_at": "2019-10-18T00:08:35Z", + "pushed_at": "2019-10-23T20:50:42Z", + "git_url": "git://github.com/jenkinsci/modernstatus-plugin.git", + "ssh_url": "git@github.com:jenkinsci/modernstatus-plugin.git", + "clone_url": "https://github.com/jenkinsci/modernstatus-plugin.git", + "svn_url": "https://github.com/jenkinsci/modernstatus-plugin", + "homepage": "", + "size": 2250, + "stargazers_count": 10, + "watchers_count": 10, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 4, + "license": null, + "forks": 5, + "open_issues": 4, + "watchers": 10, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 28909527, + "node_id": "MDEwOlJlcG9zaXRvcnkyODkwOTUyNw==", + "name": "hidden-parameter-plugin", + "full_name": "jenkinsci/hidden-parameter-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/hidden-parameter-plugin", + "description": "jenkins hidden parameter plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/hidden-parameter-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/hidden-parameter-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/hidden-parameter-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/hidden-parameter-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/hidden-parameter-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/hidden-parameter-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/hidden-parameter-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/hidden-parameter-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/hidden-parameter-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/hidden-parameter-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/hidden-parameter-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/hidden-parameter-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/hidden-parameter-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/hidden-parameter-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/hidden-parameter-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/hidden-parameter-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/hidden-parameter-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/hidden-parameter-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/hidden-parameter-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/hidden-parameter-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/hidden-parameter-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/hidden-parameter-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/hidden-parameter-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/hidden-parameter-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/hidden-parameter-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/hidden-parameter-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/hidden-parameter-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/hidden-parameter-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/hidden-parameter-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/hidden-parameter-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/hidden-parameter-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/hidden-parameter-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/hidden-parameter-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/hidden-parameter-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/hidden-parameter-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/hidden-parameter-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/hidden-parameter-plugin/deployments", + "created_at": "2015-01-07T10:18:32Z", + "updated_at": "2019-08-15T14:18:06Z", + "pushed_at": "2019-10-08T10:05:52Z", + "git_url": "git://github.com/jenkinsci/hidden-parameter-plugin.git", + "ssh_url": "git@github.com:jenkinsci/hidden-parameter-plugin.git", + "clone_url": "https://github.com/jenkinsci/hidden-parameter-plugin.git", + "svn_url": "https://github.com/jenkinsci/hidden-parameter-plugin", + "homepage": "", + "size": 152, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 6, + "open_issues": 1, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 29594751, + "node_id": "MDEwOlJlcG9zaXRvcnkyOTU5NDc1MQ==", + "name": "juseppe", + "full_name": "jenkinsci/juseppe", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/juseppe", + "description": "Jenkins Update Site Embedded for Plugin Publishing Easily", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/juseppe", + "forks_url": "https://api.github.com/repos/jenkinsci/juseppe/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/juseppe/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/juseppe/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/juseppe/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/juseppe/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/juseppe/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/juseppe/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/juseppe/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/juseppe/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/juseppe/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/juseppe/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/juseppe/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/juseppe/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/juseppe/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/juseppe/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/juseppe/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/juseppe/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/juseppe/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/juseppe/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/juseppe/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/juseppe/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/juseppe/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/juseppe/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/juseppe/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/juseppe/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/juseppe/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/juseppe/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/juseppe/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/juseppe/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/juseppe/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/juseppe/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/juseppe/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/juseppe/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/juseppe/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/juseppe/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/juseppe/deployments", + "created_at": "2015-01-21T14:58:52Z", + "updated_at": "2019-10-15T20:31:11Z", + "pushed_at": "2019-07-04T13:40:24Z", + "git_url": "git://github.com/jenkinsci/juseppe.git", + "ssh_url": "git@github.com:jenkinsci/juseppe.git", + "clone_url": "https://github.com/jenkinsci/juseppe.git", + "svn_url": "https://github.com/jenkinsci/juseppe", + "homepage": "https://hub.docker.com/r/lanwen/juseppe/", + "size": 442, + "stargazers_count": 39, + "watchers_count": 39, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 18, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 8, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 18, + "open_issues": 8, + "watchers": 39, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 29778752, + "node_id": "MDEwOlJlcG9zaXRvcnkyOTc3ODc1Mg==", + "name": "bitbucket-approve-plugin", + "full_name": "jenkinsci/bitbucket-approve-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/bitbucket-approve-plugin", + "description": "Plugin that enables Jenkins to approve commits on Bitbucket", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/bitbucket-approve-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/bitbucket-approve-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/bitbucket-approve-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/bitbucket-approve-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/bitbucket-approve-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/bitbucket-approve-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/bitbucket-approve-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/bitbucket-approve-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/bitbucket-approve-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/bitbucket-approve-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/bitbucket-approve-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/bitbucket-approve-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/bitbucket-approve-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/bitbucket-approve-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/bitbucket-approve-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/bitbucket-approve-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/bitbucket-approve-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/bitbucket-approve-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/bitbucket-approve-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/bitbucket-approve-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/bitbucket-approve-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/bitbucket-approve-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/bitbucket-approve-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/bitbucket-approve-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/bitbucket-approve-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/bitbucket-approve-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/bitbucket-approve-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/bitbucket-approve-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/bitbucket-approve-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/bitbucket-approve-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/bitbucket-approve-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/bitbucket-approve-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/bitbucket-approve-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/bitbucket-approve-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/bitbucket-approve-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/bitbucket-approve-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/bitbucket-approve-plugin/deployments", + "created_at": "2015-01-24T14:18:04Z", + "updated_at": "2019-04-15T13:26:34Z", + "pushed_at": "2019-10-08T10:15:09Z", + "git_url": "git://github.com/jenkinsci/bitbucket-approve-plugin.git", + "ssh_url": "git@github.com:jenkinsci/bitbucket-approve-plugin.git", + "clone_url": "https://github.com/jenkinsci/bitbucket-approve-plugin.git", + "svn_url": "https://github.com/jenkinsci/bitbucket-approve-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Bitbucket+Approve+Plugin", + "size": 26, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 13, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 13, + "open_issues": 2, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 29858385, + "node_id": "MDEwOlJlcG9zaXRvcnkyOTg1ODM4NQ==", + "name": "appetize-plugin", + "full_name": "jenkinsci/appetize-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/appetize-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/appetize-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/appetize-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/appetize-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/appetize-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/appetize-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/appetize-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/appetize-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/appetize-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/appetize-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/appetize-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/appetize-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/appetize-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/appetize-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/appetize-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/appetize-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/appetize-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/appetize-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/appetize-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/appetize-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/appetize-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/appetize-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/appetize-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/appetize-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/appetize-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/appetize-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/appetize-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/appetize-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/appetize-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/appetize-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/appetize-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/appetize-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/appetize-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/appetize-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/appetize-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/appetize-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/appetize-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/appetize-plugin/deployments", + "created_at": "2015-01-26T11:38:47Z", + "updated_at": "2017-10-17T16:23:48Z", + "pushed_at": "2015-04-03T05:05:27Z", + "git_url": "git://github.com/jenkinsci/appetize-plugin.git", + "ssh_url": "git@github.com:jenkinsci/appetize-plugin.git", + "clone_url": "https://github.com/jenkinsci/appetize-plugin.git", + "svn_url": "https://github.com/jenkinsci/appetize-plugin", + "homepage": null, + "size": 189, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 4, + "open_issues": 0, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/__files/organizations_107424_repos-f533dd05-f467-4045-85f2-de7ef31e3c43.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/__files/organizations_107424_repos-f533dd05-f467-4045-85f2-de7ef31e3c43.json new file mode 100644 index 0000000000..015d53dbed --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/__files/organizations_107424_repos-f533dd05-f467-4045-85f2-de7ef31e3c43.json @@ -0,0 +1,10058 @@ +[ + { + "id": 6234674, + "node_id": "MDEwOlJlcG9zaXRvcnk2MjM0Njc0", + "name": "mock-security-realm-plugin", + "full_name": "jenkinsci/mock-security-realm-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/mock-security-realm-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/mock-security-realm-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/mock-security-realm-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/mock-security-realm-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/mock-security-realm-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/mock-security-realm-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/mock-security-realm-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/mock-security-realm-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/mock-security-realm-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/mock-security-realm-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/mock-security-realm-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/mock-security-realm-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/mock-security-realm-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/mock-security-realm-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/mock-security-realm-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/mock-security-realm-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/mock-security-realm-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/mock-security-realm-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/mock-security-realm-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/mock-security-realm-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/mock-security-realm-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/mock-security-realm-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/mock-security-realm-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/mock-security-realm-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/mock-security-realm-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/mock-security-realm-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/mock-security-realm-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/mock-security-realm-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/mock-security-realm-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/mock-security-realm-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/mock-security-realm-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/mock-security-realm-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/mock-security-realm-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/mock-security-realm-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/mock-security-realm-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/mock-security-realm-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/mock-security-realm-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/mock-security-realm-plugin/deployments", + "created_at": "2012-10-15T21:30:03Z", + "updated_at": "2019-10-08T00:15:37Z", + "pushed_at": "2019-10-08T00:15:35Z", + "git_url": "git://github.com/jenkinsci/mock-security-realm-plugin.git", + "ssh_url": "git@github.com:jenkinsci/mock-security-realm-plugin.git", + "clone_url": "https://github.com/jenkinsci/mock-security-realm-plugin.git", + "svn_url": "https://github.com/jenkinsci/mock-security-realm-plugin", + "homepage": "", + "size": 25, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 5, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 6328418, + "node_id": "MDEwOlJlcG9zaXRvcnk2MzI4NDE4", + "name": "asakusa-satellite-plugin", + "full_name": "jenkinsci/asakusa-satellite-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/asakusa-satellite-plugin", + "description": "Jenkins AsakusaSatellite Notifier", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/asakusa-satellite-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/asakusa-satellite-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/asakusa-satellite-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/asakusa-satellite-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/asakusa-satellite-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/asakusa-satellite-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/asakusa-satellite-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/asakusa-satellite-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/asakusa-satellite-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/asakusa-satellite-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/asakusa-satellite-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/asakusa-satellite-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/asakusa-satellite-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/asakusa-satellite-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/asakusa-satellite-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/asakusa-satellite-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/asakusa-satellite-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/asakusa-satellite-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/asakusa-satellite-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/asakusa-satellite-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/asakusa-satellite-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/asakusa-satellite-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/asakusa-satellite-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/asakusa-satellite-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/asakusa-satellite-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/asakusa-satellite-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/asakusa-satellite-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/asakusa-satellite-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/asakusa-satellite-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/asakusa-satellite-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/asakusa-satellite-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/asakusa-satellite-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/asakusa-satellite-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/asakusa-satellite-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/asakusa-satellite-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/asakusa-satellite-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/asakusa-satellite-plugin/deployments", + "created_at": "2012-10-22T02:34:14Z", + "updated_at": "2013-01-12T18:51:29Z", + "pushed_at": "2012-10-23T07:30:44Z", + "git_url": "git://github.com/jenkinsci/asakusa-satellite-plugin.git", + "ssh_url": "git@github.com:jenkinsci/asakusa-satellite-plugin.git", + "clone_url": "https://github.com/jenkinsci/asakusa-satellite-plugin.git", + "svn_url": "https://github.com/jenkinsci/asakusa-satellite-plugin", + "homepage": "", + "size": 145, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 6331732, + "node_id": "MDEwOlJlcG9zaXRvcnk2MzMxNzMy", + "name": "debian-package-builder-plugin", + "full_name": "jenkinsci/debian-package-builder-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/debian-package-builder-plugin", + "description": "Jenkins plugin for debian package building", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/debian-package-builder-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/debian-package-builder-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/debian-package-builder-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/debian-package-builder-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/debian-package-builder-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/debian-package-builder-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/debian-package-builder-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/debian-package-builder-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/debian-package-builder-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/debian-package-builder-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/debian-package-builder-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/debian-package-builder-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/debian-package-builder-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/debian-package-builder-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/debian-package-builder-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/debian-package-builder-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/debian-package-builder-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/debian-package-builder-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/debian-package-builder-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/debian-package-builder-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/debian-package-builder-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/debian-package-builder-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/debian-package-builder-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/debian-package-builder-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/debian-package-builder-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/debian-package-builder-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/debian-package-builder-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/debian-package-builder-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/debian-package-builder-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/debian-package-builder-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/debian-package-builder-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/debian-package-builder-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/debian-package-builder-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/debian-package-builder-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/debian-package-builder-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/debian-package-builder-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/debian-package-builder-plugin/deployments", + "created_at": "2012-10-22T08:29:03Z", + "updated_at": "2018-09-10T02:13:23Z", + "pushed_at": "2019-10-08T16:15:55Z", + "git_url": "git://github.com/jenkinsci/debian-package-builder-plugin.git", + "ssh_url": "git@github.com:jenkinsci/debian-package-builder-plugin.git", + "clone_url": "https://github.com/jenkinsci/debian-package-builder-plugin.git", + "svn_url": "https://github.com/jenkinsci/debian-package-builder-plugin", + "homepage": null, + "size": 206, + "stargazers_count": 28, + "watchers_count": 28, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 27, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 27, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 27, + "open_issues": 27, + "watchers": 28, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 6356208, + "node_id": "MDEwOlJlcG9zaXRvcnk2MzU2MjA4", + "name": "jenkins-user-event", + "full_name": "jenkinsci/jenkins-user-event", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jenkins-user-event", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jenkins-user-event", + "forks_url": "https://api.github.com/repos/jenkinsci/jenkins-user-event/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jenkins-user-event/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jenkins-user-event/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jenkins-user-event/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jenkins-user-event/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jenkins-user-event/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jenkins-user-event/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jenkins-user-event/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jenkins-user-event/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jenkins-user-event/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jenkins-user-event/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jenkins-user-event/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jenkins-user-event/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jenkins-user-event/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jenkins-user-event/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jenkins-user-event/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jenkins-user-event/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jenkins-user-event/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jenkins-user-event/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jenkins-user-event/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jenkins-user-event/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jenkins-user-event/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jenkins-user-event/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jenkins-user-event/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jenkins-user-event/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jenkins-user-event/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jenkins-user-event/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jenkins-user-event/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jenkins-user-event/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jenkins-user-event/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jenkins-user-event/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jenkins-user-event/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jenkins-user-event/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jenkins-user-event/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jenkins-user-event/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jenkins-user-event/deployments", + "created_at": "2012-10-23T16:43:04Z", + "updated_at": "2013-11-10T02:06:38Z", + "pushed_at": "2013-11-10T02:06:33Z", + "git_url": "git://github.com/jenkinsci/jenkins-user-event.git", + "ssh_url": "git@github.com:jenkinsci/jenkins-user-event.git", + "clone_url": "https://github.com/jenkinsci/jenkins-user-event.git", + "svn_url": "https://github.com/jenkinsci/jenkins-user-event", + "homepage": "", + "size": 116, + "stargazers_count": 1, + "watchers_count": 1, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 6368654, + "node_id": "MDEwOlJlcG9zaXRvcnk2MzY4NjU0", + "name": "builds-chain-fingerprinter-plugin", + "full_name": "jenkinsci/builds-chain-fingerprinter-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/builds-chain-fingerprinter-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/builds-chain-fingerprinter-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/builds-chain-fingerprinter-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/builds-chain-fingerprinter-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/builds-chain-fingerprinter-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/builds-chain-fingerprinter-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/builds-chain-fingerprinter-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/builds-chain-fingerprinter-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/builds-chain-fingerprinter-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/builds-chain-fingerprinter-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/builds-chain-fingerprinter-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/builds-chain-fingerprinter-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/builds-chain-fingerprinter-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/builds-chain-fingerprinter-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/builds-chain-fingerprinter-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/builds-chain-fingerprinter-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/builds-chain-fingerprinter-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/builds-chain-fingerprinter-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/builds-chain-fingerprinter-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/builds-chain-fingerprinter-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/builds-chain-fingerprinter-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/builds-chain-fingerprinter-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/builds-chain-fingerprinter-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/builds-chain-fingerprinter-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/builds-chain-fingerprinter-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/builds-chain-fingerprinter-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/builds-chain-fingerprinter-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/builds-chain-fingerprinter-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/builds-chain-fingerprinter-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/builds-chain-fingerprinter-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/builds-chain-fingerprinter-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/builds-chain-fingerprinter-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/builds-chain-fingerprinter-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/builds-chain-fingerprinter-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/builds-chain-fingerprinter-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/builds-chain-fingerprinter-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/builds-chain-fingerprinter-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/builds-chain-fingerprinter-plugin/deployments", + "created_at": "2012-10-24T11:15:05Z", + "updated_at": "2014-06-04T21:34:54Z", + "pushed_at": "2013-11-10T01:55:57Z", + "git_url": "git://github.com/jenkinsci/builds-chain-fingerprinter-plugin.git", + "ssh_url": "git@github.com:jenkinsci/builds-chain-fingerprinter-plugin.git", + "clone_url": "https://github.com/jenkinsci/builds-chain-fingerprinter-plugin.git", + "svn_url": "https://github.com/jenkinsci/builds-chain-fingerprinter-plugin", + "homepage": null, + "size": 146, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 6378219, + "node_id": "MDEwOlJlcG9zaXRvcnk2Mzc4MjE5", + "name": "chosen-plugin", + "full_name": "jenkinsci/chosen-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/chosen-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/chosen-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/chosen-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/chosen-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/chosen-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/chosen-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/chosen-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/chosen-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/chosen-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/chosen-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/chosen-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/chosen-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/chosen-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/chosen-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/chosen-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/chosen-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/chosen-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/chosen-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/chosen-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/chosen-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/chosen-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/chosen-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/chosen-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/chosen-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/chosen-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/chosen-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/chosen-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/chosen-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/chosen-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/chosen-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/chosen-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/chosen-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/chosen-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/chosen-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/chosen-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/chosen-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/chosen-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/chosen-plugin/deployments", + "created_at": "2012-10-24T21:56:25Z", + "updated_at": "2013-11-10T01:56:34Z", + "pushed_at": "2013-11-10T01:56:29Z", + "git_url": "git://github.com/jenkinsci/chosen-plugin.git", + "ssh_url": "git@github.com:jenkinsci/chosen-plugin.git", + "clone_url": "https://github.com/jenkinsci/chosen-plugin.git", + "svn_url": "https://github.com/jenkinsci/chosen-plugin", + "homepage": "", + "size": 144, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 6380504, + "node_id": "MDEwOlJlcG9zaXRvcnk2MzgwNTA0", + "name": "async-job-plugin", + "full_name": "jenkinsci/async-job-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/async-job-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/async-job-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/async-job-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/async-job-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/async-job-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/async-job-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/async-job-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/async-job-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/async-job-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/async-job-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/async-job-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/async-job-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/async-job-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/async-job-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/async-job-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/async-job-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/async-job-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/async-job-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/async-job-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/async-job-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/async-job-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/async-job-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/async-job-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/async-job-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/async-job-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/async-job-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/async-job-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/async-job-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/async-job-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/async-job-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/async-job-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/async-job-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/async-job-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/async-job-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/async-job-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/async-job-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/async-job-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/async-job-plugin/deployments", + "created_at": "2012-10-25T01:54:53Z", + "updated_at": "2019-04-09T12:21:20Z", + "pushed_at": "2013-11-10T01:53:33Z", + "git_url": "git://github.com/jenkinsci/async-job-plugin.git", + "ssh_url": "git@github.com:jenkinsci/async-job-plugin.git", + "clone_url": "https://github.com/jenkinsci/async-job-plugin.git", + "svn_url": "https://github.com/jenkinsci/async-job-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Async+Job+Plugin", + "size": 180, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 6386476, + "node_id": "MDEwOlJlcG9zaXRvcnk2Mzg2NDc2", + "name": "extension-filter-plugin", + "full_name": "jenkinsci/extension-filter-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/extension-filter-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/extension-filter-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/extension-filter-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/extension-filter-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/extension-filter-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/extension-filter-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/extension-filter-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/extension-filter-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/extension-filter-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/extension-filter-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/extension-filter-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/extension-filter-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/extension-filter-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/extension-filter-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/extension-filter-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/extension-filter-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/extension-filter-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/extension-filter-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/extension-filter-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/extension-filter-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/extension-filter-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/extension-filter-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/extension-filter-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/extension-filter-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/extension-filter-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/extension-filter-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/extension-filter-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/extension-filter-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/extension-filter-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/extension-filter-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/extension-filter-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/extension-filter-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/extension-filter-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/extension-filter-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/extension-filter-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/extension-filter-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/extension-filter-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/extension-filter-plugin/deployments", + "created_at": "2012-10-25T11:53:50Z", + "updated_at": "2019-05-04T20:12:22Z", + "pushed_at": "2019-05-05T15:24:45Z", + "git_url": "git://github.com/jenkinsci/extension-filter-plugin.git", + "ssh_url": "git@github.com:jenkinsci/extension-filter-plugin.git", + "clone_url": "https://github.com/jenkinsci/extension-filter-plugin.git", + "svn_url": "https://github.com/jenkinsci/extension-filter-plugin", + "homepage": "", + "size": 19, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 4, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 6399538, + "node_id": "MDEwOlJlcG9zaXRvcnk2Mzk5NTM4", + "name": "periodic-reincarnation-plugin", + "full_name": "jenkinsci/periodic-reincarnation-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/periodic-reincarnation-plugin", + "description": "Periodic Reincarnation Plugin ", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/periodic-reincarnation-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/periodic-reincarnation-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/periodic-reincarnation-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/periodic-reincarnation-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/periodic-reincarnation-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/periodic-reincarnation-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/periodic-reincarnation-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/periodic-reincarnation-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/periodic-reincarnation-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/periodic-reincarnation-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/periodic-reincarnation-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/periodic-reincarnation-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/periodic-reincarnation-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/periodic-reincarnation-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/periodic-reincarnation-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/periodic-reincarnation-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/periodic-reincarnation-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/periodic-reincarnation-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/periodic-reincarnation-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/periodic-reincarnation-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/periodic-reincarnation-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/periodic-reincarnation-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/periodic-reincarnation-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/periodic-reincarnation-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/periodic-reincarnation-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/periodic-reincarnation-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/periodic-reincarnation-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/periodic-reincarnation-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/periodic-reincarnation-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/periodic-reincarnation-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/periodic-reincarnation-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/periodic-reincarnation-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/periodic-reincarnation-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/periodic-reincarnation-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/periodic-reincarnation-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/periodic-reincarnation-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/periodic-reincarnation-plugin/deployments", + "created_at": "2012-10-26T06:20:45Z", + "updated_at": "2019-10-11T08:32:55Z", + "pushed_at": "2019-10-11T08:32:53Z", + "git_url": "git://github.com/jenkinsci/periodic-reincarnation-plugin.git", + "ssh_url": "git@github.com:jenkinsci/periodic-reincarnation-plugin.git", + "clone_url": "https://github.com/jenkinsci/periodic-reincarnation-plugin.git", + "svn_url": "https://github.com/jenkinsci/periodic-reincarnation-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Periodic+Reincarnation+Plugin", + "size": 321, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 15, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 15, + "open_issues": 0, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 6402426, + "node_id": "MDEwOlJlcG9zaXRvcnk2NDAyNDI2", + "name": "ssh-agent-plugin", + "full_name": "jenkinsci/ssh-agent-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/ssh-agent-plugin", + "description": "SSH Agent Plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/ssh-agent-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/ssh-agent-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/ssh-agent-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/ssh-agent-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/ssh-agent-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/ssh-agent-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/ssh-agent-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/ssh-agent-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/ssh-agent-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/ssh-agent-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/ssh-agent-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/ssh-agent-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/ssh-agent-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/ssh-agent-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/ssh-agent-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/ssh-agent-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/ssh-agent-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/ssh-agent-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/ssh-agent-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/ssh-agent-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/ssh-agent-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/ssh-agent-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/ssh-agent-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/ssh-agent-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/ssh-agent-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/ssh-agent-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/ssh-agent-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/ssh-agent-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/ssh-agent-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/ssh-agent-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/ssh-agent-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/ssh-agent-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/ssh-agent-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/ssh-agent-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/ssh-agent-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/ssh-agent-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/ssh-agent-plugin/deployments", + "created_at": "2012-10-26T10:55:18Z", + "updated_at": "2019-10-08T14:27:15Z", + "pushed_at": "2019-10-08T14:27:13Z", + "git_url": "git://github.com/jenkinsci/ssh-agent-plugin.git", + "ssh_url": "git@github.com:jenkinsci/ssh-agent-plugin.git", + "clone_url": "https://github.com/jenkinsci/ssh-agent-plugin.git", + "svn_url": "https://github.com/jenkinsci/ssh-agent-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/SSH+Agent+Plugin", + "size": 246, + "stargazers_count": 22, + "watchers_count": 22, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 35, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 6, + "license": null, + "forks": 35, + "open_issues": 6, + "watchers": 22, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 6470532, + "node_id": "MDEwOlJlcG9zaXRvcnk2NDcwNTMy", + "name": "global-variable-string-parameter-plugin", + "full_name": "jenkinsci/global-variable-string-parameter-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/global-variable-string-parameter-plugin", + "description": "Jenkins plugin to provide a string variable that substitutes global variables using the ${} syntax", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/global-variable-string-parameter-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/global-variable-string-parameter-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/global-variable-string-parameter-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/global-variable-string-parameter-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/global-variable-string-parameter-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/global-variable-string-parameter-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/global-variable-string-parameter-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/global-variable-string-parameter-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/global-variable-string-parameter-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/global-variable-string-parameter-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/global-variable-string-parameter-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/global-variable-string-parameter-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/global-variable-string-parameter-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/global-variable-string-parameter-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/global-variable-string-parameter-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/global-variable-string-parameter-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/global-variable-string-parameter-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/global-variable-string-parameter-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/global-variable-string-parameter-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/global-variable-string-parameter-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/global-variable-string-parameter-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/global-variable-string-parameter-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/global-variable-string-parameter-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/global-variable-string-parameter-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/global-variable-string-parameter-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/global-variable-string-parameter-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/global-variable-string-parameter-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/global-variable-string-parameter-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/global-variable-string-parameter-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/global-variable-string-parameter-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/global-variable-string-parameter-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/global-variable-string-parameter-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/global-variable-string-parameter-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/global-variable-string-parameter-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/global-variable-string-parameter-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/global-variable-string-parameter-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/global-variable-string-parameter-plugin/deployments", + "created_at": "2012-10-31T07:55:15Z", + "updated_at": "2013-11-13T01:40:25Z", + "pushed_at": "2019-10-08T09:58:22Z", + "git_url": "git://github.com/jenkinsci/global-variable-string-parameter-plugin.git", + "ssh_url": "git@github.com:jenkinsci/global-variable-string-parameter-plugin.git", + "clone_url": "https://github.com/jenkinsci/global-variable-string-parameter-plugin.git", + "svn_url": "https://github.com/jenkinsci/global-variable-string-parameter-plugin", + "homepage": "", + "size": 188, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 2, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 6486338, + "node_id": "MDEwOlJlcG9zaXRvcnk2NDg2MzM4", + "name": "exclusive-labels-plugin", + "full_name": "jenkinsci/exclusive-labels-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/exclusive-labels-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/exclusive-labels-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/exclusive-labels-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/exclusive-labels-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/exclusive-labels-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/exclusive-labels-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/exclusive-labels-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/exclusive-labels-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/exclusive-labels-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/exclusive-labels-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/exclusive-labels-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/exclusive-labels-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/exclusive-labels-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/exclusive-labels-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/exclusive-labels-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/exclusive-labels-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/exclusive-labels-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/exclusive-labels-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/exclusive-labels-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/exclusive-labels-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/exclusive-labels-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/exclusive-labels-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/exclusive-labels-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/exclusive-labels-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/exclusive-labels-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/exclusive-labels-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/exclusive-labels-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/exclusive-labels-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/exclusive-labels-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/exclusive-labels-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/exclusive-labels-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/exclusive-labels-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/exclusive-labels-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/exclusive-labels-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/exclusive-labels-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/exclusive-labels-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/exclusive-labels-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/exclusive-labels-plugin/deployments", + "created_at": "2012-11-01T07:35:37Z", + "updated_at": "2013-01-18T11:41:40Z", + "pushed_at": "2013-01-18T11:41:39Z", + "git_url": "git://github.com/jenkinsci/exclusive-labels-plugin.git", + "ssh_url": "git@github.com:jenkinsci/exclusive-labels-plugin.git", + "clone_url": "https://github.com/jenkinsci/exclusive-labels-plugin.git", + "svn_url": "https://github.com/jenkinsci/exclusive-labels-plugin", + "homepage": null, + "size": 119, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 6486369, + "node_id": "MDEwOlJlcG9zaXRvcnk2NDg2MzY5", + "name": "put-offline-slaves", + "full_name": "jenkinsci/put-offline-slaves", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/put-offline-slaves", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/put-offline-slaves", + "forks_url": "https://api.github.com/repos/jenkinsci/put-offline-slaves/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/put-offline-slaves/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/put-offline-slaves/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/put-offline-slaves/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/put-offline-slaves/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/put-offline-slaves/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/put-offline-slaves/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/put-offline-slaves/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/put-offline-slaves/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/put-offline-slaves/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/put-offline-slaves/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/put-offline-slaves/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/put-offline-slaves/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/put-offline-slaves/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/put-offline-slaves/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/put-offline-slaves/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/put-offline-slaves/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/put-offline-slaves/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/put-offline-slaves/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/put-offline-slaves/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/put-offline-slaves/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/put-offline-slaves/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/put-offline-slaves/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/put-offline-slaves/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/put-offline-slaves/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/put-offline-slaves/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/put-offline-slaves/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/put-offline-slaves/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/put-offline-slaves/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/put-offline-slaves/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/put-offline-slaves/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/put-offline-slaves/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/put-offline-slaves/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/put-offline-slaves/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/put-offline-slaves/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/put-offline-slaves/deployments", + "created_at": "2012-11-01T07:38:53Z", + "updated_at": "2019-08-14T12:07:33Z", + "pushed_at": "2019-08-14T12:07:31Z", + "git_url": "git://github.com/jenkinsci/put-offline-slaves.git", + "ssh_url": "git@github.com:jenkinsci/put-offline-slaves.git", + "clone_url": "https://github.com/jenkinsci/put-offline-slaves.git", + "svn_url": "https://github.com/jenkinsci/put-offline-slaves", + "homepage": null, + "size": 8, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 6489916, + "node_id": "MDEwOlJlcG9zaXRvcnk2NDg5OTE2", + "name": "nerrvana-plugin", + "full_name": "jenkinsci/nerrvana-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/nerrvana-plugin", + "description": "Jenkins plugin for Nerrvana Selenium cloud", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/nerrvana-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/nerrvana-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/nerrvana-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/nerrvana-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/nerrvana-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/nerrvana-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/nerrvana-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/nerrvana-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/nerrvana-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/nerrvana-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/nerrvana-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/nerrvana-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/nerrvana-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/nerrvana-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/nerrvana-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/nerrvana-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/nerrvana-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/nerrvana-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/nerrvana-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/nerrvana-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/nerrvana-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/nerrvana-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/nerrvana-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/nerrvana-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/nerrvana-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/nerrvana-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/nerrvana-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/nerrvana-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/nerrvana-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/nerrvana-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/nerrvana-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/nerrvana-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/nerrvana-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/nerrvana-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/nerrvana-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/nerrvana-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/nerrvana-plugin/deployments", + "created_at": "2012-11-01T13:18:56Z", + "updated_at": "2013-11-11T14:08:19Z", + "pushed_at": "2013-11-11T14:08:11Z", + "git_url": "git://github.com/jenkinsci/nerrvana-plugin.git", + "ssh_url": "git@github.com:jenkinsci/nerrvana-plugin.git", + "clone_url": "https://github.com/jenkinsci/nerrvana-plugin.git", + "svn_url": "https://github.com/jenkinsci/nerrvana-plugin", + "homepage": null, + "size": 3003, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 6515057, + "node_id": "MDEwOlJlcG9zaXRvcnk2NTE1MDU3", + "name": "gav-repo-map", + "full_name": "jenkinsci/gav-repo-map", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/gav-repo-map", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/gav-repo-map", + "forks_url": "https://api.github.com/repos/jenkinsci/gav-repo-map/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/gav-repo-map/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/gav-repo-map/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/gav-repo-map/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/gav-repo-map/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/gav-repo-map/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/gav-repo-map/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/gav-repo-map/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/gav-repo-map/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/gav-repo-map/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/gav-repo-map/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/gav-repo-map/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/gav-repo-map/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/gav-repo-map/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/gav-repo-map/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/gav-repo-map/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/gav-repo-map/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/gav-repo-map/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/gav-repo-map/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/gav-repo-map/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/gav-repo-map/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/gav-repo-map/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/gav-repo-map/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/gav-repo-map/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/gav-repo-map/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/gav-repo-map/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/gav-repo-map/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/gav-repo-map/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/gav-repo-map/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/gav-repo-map/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/gav-repo-map/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/gav-repo-map/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/gav-repo-map/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/gav-repo-map/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/gav-repo-map/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/gav-repo-map/deployments", + "created_at": "2012-11-03T01:12:44Z", + "updated_at": "2018-01-03T17:55:10Z", + "pushed_at": "2013-11-10T02:03:03Z", + "git_url": "git://github.com/jenkinsci/gav-repo-map.git", + "ssh_url": "git@github.com:jenkinsci/gav-repo-map.git", + "clone_url": "https://github.com/jenkinsci/gav-repo-map.git", + "svn_url": "https://github.com/jenkinsci/gav-repo-map", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/GAV-Repository+mapping", + "size": 360, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": true, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 6575811, + "node_id": "MDEwOlJlcG9zaXRvcnk2NTc1ODEx", + "name": "http-request-plugin", + "full_name": "jenkinsci/http-request-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/http-request-plugin", + "description": "This plugin does a request to an url with some parameters.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/http-request-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/http-request-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/http-request-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/http-request-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/http-request-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/http-request-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/http-request-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/http-request-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/http-request-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/http-request-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/http-request-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/http-request-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/http-request-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/http-request-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/http-request-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/http-request-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/http-request-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/http-request-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/http-request-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/http-request-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/http-request-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/http-request-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/http-request-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/http-request-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/http-request-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/http-request-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/http-request-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/http-request-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/http-request-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/http-request-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/http-request-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/http-request-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/http-request-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/http-request-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/http-request-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/http-request-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/http-request-plugin/deployments", + "created_at": "2012-11-07T08:03:37Z", + "updated_at": "2019-10-09T15:55:12Z", + "pushed_at": "2019-10-03T20:58:38Z", + "git_url": "git://github.com/jenkinsci/http-request-plugin.git", + "ssh_url": "git@github.com:jenkinsci/http-request-plugin.git", + "clone_url": "https://github.com/jenkinsci/http-request-plugin.git", + "svn_url": "https://github.com/jenkinsci/http-request-plugin", + "homepage": "https://plugins.jenkins.io/http_request", + "size": 412, + "stargazers_count": 93, + "watchers_count": 93, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 105, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 5, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 105, + "open_issues": 5, + "watchers": 93, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 6584059, + "node_id": "MDEwOlJlcG9zaXRvcnk2NTg0MDU5", + "name": "gcm-notification-plugin", + "full_name": "jenkinsci/gcm-notification-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/gcm-notification-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/gcm-notification-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/gcm-notification-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/gcm-notification-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/gcm-notification-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/gcm-notification-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/gcm-notification-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/gcm-notification-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/gcm-notification-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/gcm-notification-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/gcm-notification-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/gcm-notification-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/gcm-notification-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/gcm-notification-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/gcm-notification-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/gcm-notification-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/gcm-notification-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/gcm-notification-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/gcm-notification-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/gcm-notification-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/gcm-notification-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/gcm-notification-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/gcm-notification-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/gcm-notification-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/gcm-notification-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/gcm-notification-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/gcm-notification-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/gcm-notification-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/gcm-notification-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/gcm-notification-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/gcm-notification-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/gcm-notification-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/gcm-notification-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/gcm-notification-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/gcm-notification-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/gcm-notification-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/gcm-notification-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/gcm-notification-plugin/deployments", + "created_at": "2012-11-07T18:30:22Z", + "updated_at": "2019-08-08T11:15:41Z", + "pushed_at": "2013-11-10T02:03:07Z", + "git_url": "git://github.com/jenkinsci/gcm-notification-plugin.git", + "ssh_url": "git@github.com:jenkinsci/gcm-notification-plugin.git", + "clone_url": "https://github.com/jenkinsci/gcm-notification-plugin.git", + "svn_url": "https://github.com/jenkinsci/gcm-notification-plugin", + "homepage": "", + "size": 215, + "stargazers_count": 8, + "watchers_count": 8, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 9, + "mirror_url": null, + "archived": true, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 9, + "open_issues": 0, + "watchers": 8, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 6612073, + "node_id": "MDEwOlJlcG9zaXRvcnk2NjEyMDcz", + "name": "caliper-ci-plugin", + "full_name": "jenkinsci/caliper-ci-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/caliper-ci-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/caliper-ci-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/caliper-ci-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/caliper-ci-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/caliper-ci-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/caliper-ci-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/caliper-ci-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/caliper-ci-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/caliper-ci-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/caliper-ci-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/caliper-ci-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/caliper-ci-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/caliper-ci-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/caliper-ci-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/caliper-ci-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/caliper-ci-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/caliper-ci-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/caliper-ci-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/caliper-ci-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/caliper-ci-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/caliper-ci-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/caliper-ci-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/caliper-ci-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/caliper-ci-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/caliper-ci-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/caliper-ci-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/caliper-ci-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/caliper-ci-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/caliper-ci-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/caliper-ci-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/caliper-ci-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/caliper-ci-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/caliper-ci-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/caliper-ci-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/caliper-ci-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/caliper-ci-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/caliper-ci-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/caliper-ci-plugin/deployments", + "created_at": "2012-11-09T10:47:35Z", + "updated_at": "2019-08-13T15:11:32Z", + "pushed_at": "2012-11-10T15:49:01Z", + "git_url": "git://github.com/jenkinsci/caliper-ci-plugin.git", + "ssh_url": "git@github.com:jenkinsci/caliper-ci-plugin.git", + "clone_url": "https://github.com/jenkinsci/caliper-ci-plugin.git", + "svn_url": "https://github.com/jenkinsci/caliper-ci-plugin", + "homepage": null, + "size": 236, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 2, + "open_issues": 2, + "watchers": 4, + "default_branch": "svn", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 6612211, + "node_id": "MDEwOlJlcG9zaXRvcnk2NjEyMjEx", + "name": "thin-backup-plugin", + "full_name": "jenkinsci/thin-backup-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/thin-backup-plugin", + "description": "Stores only the relevant parts of the Jenkins workspace in a Backup.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/thin-backup-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/thin-backup-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/thin-backup-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/thin-backup-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/thin-backup-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/thin-backup-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/thin-backup-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/thin-backup-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/thin-backup-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/thin-backup-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/thin-backup-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/thin-backup-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/thin-backup-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/thin-backup-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/thin-backup-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/thin-backup-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/thin-backup-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/thin-backup-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/thin-backup-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/thin-backup-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/thin-backup-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/thin-backup-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/thin-backup-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/thin-backup-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/thin-backup-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/thin-backup-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/thin-backup-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/thin-backup-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/thin-backup-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/thin-backup-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/thin-backup-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/thin-backup-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/thin-backup-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/thin-backup-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/thin-backup-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/thin-backup-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/thin-backup-plugin/deployments", + "created_at": "2012-11-09T10:58:55Z", + "updated_at": "2019-07-22T19:17:10Z", + "pushed_at": "2019-06-27T20:05:18Z", + "git_url": "git://github.com/jenkinsci/thin-backup-plugin.git", + "ssh_url": "git@github.com:jenkinsci/thin-backup-plugin.git", + "clone_url": "https://github.com/jenkinsci/thin-backup-plugin.git", + "svn_url": "https://github.com/jenkinsci/thin-backup-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/thinBackup", + "size": 558, + "stargazers_count": 37, + "watchers_count": 37, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 45, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": null, + "forks": 45, + "open_issues": 3, + "watchers": 37, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 6617063, + "node_id": "MDEwOlJlcG9zaXRvcnk2NjE3MDYz", + "name": "slave-installer-module", + "full_name": "jenkinsci/slave-installer-module", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/slave-installer-module", + "description": "Jenkins Agent Installer Module", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/slave-installer-module", + "forks_url": "https://api.github.com/repos/jenkinsci/slave-installer-module/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/slave-installer-module/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/slave-installer-module/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/slave-installer-module/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/slave-installer-module/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/slave-installer-module/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/slave-installer-module/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/slave-installer-module/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/slave-installer-module/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/slave-installer-module/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/slave-installer-module/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/slave-installer-module/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/slave-installer-module/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/slave-installer-module/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/slave-installer-module/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/slave-installer-module/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/slave-installer-module/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/slave-installer-module/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/slave-installer-module/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/slave-installer-module/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/slave-installer-module/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/slave-installer-module/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/slave-installer-module/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/slave-installer-module/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/slave-installer-module/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/slave-installer-module/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/slave-installer-module/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/slave-installer-module/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/slave-installer-module/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/slave-installer-module/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/slave-installer-module/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/slave-installer-module/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/slave-installer-module/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/slave-installer-module/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/slave-installer-module/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/slave-installer-module/deployments", + "created_at": "2012-11-09T17:17:46Z", + "updated_at": "2019-04-16T12:29:50Z", + "pushed_at": "2019-04-16T21:49:56Z", + "git_url": "git://github.com/jenkinsci/slave-installer-module.git", + "ssh_url": "git@github.com:jenkinsci/slave-installer-module.git", + "clone_url": "https://github.com/jenkinsci/slave-installer-module.git", + "svn_url": "https://github.com/jenkinsci/slave-installer-module", + "homepage": "", + "size": 39, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 5, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 6617068, + "node_id": "MDEwOlJlcG9zaXRvcnk2NjE3MDY4", + "name": "windows-slave-installer-module", + "full_name": "jenkinsci/windows-slave-installer-module", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/windows-slave-installer-module", + "description": "Windows Agent Installer module for Jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/windows-slave-installer-module", + "forks_url": "https://api.github.com/repos/jenkinsci/windows-slave-installer-module/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/windows-slave-installer-module/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/windows-slave-installer-module/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/windows-slave-installer-module/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/windows-slave-installer-module/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/windows-slave-installer-module/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/windows-slave-installer-module/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/windows-slave-installer-module/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/windows-slave-installer-module/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/windows-slave-installer-module/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/windows-slave-installer-module/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/windows-slave-installer-module/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/windows-slave-installer-module/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/windows-slave-installer-module/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/windows-slave-installer-module/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/windows-slave-installer-module/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/windows-slave-installer-module/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/windows-slave-installer-module/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/windows-slave-installer-module/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/windows-slave-installer-module/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/windows-slave-installer-module/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/windows-slave-installer-module/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/windows-slave-installer-module/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/windows-slave-installer-module/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/windows-slave-installer-module/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/windows-slave-installer-module/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/windows-slave-installer-module/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/windows-slave-installer-module/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/windows-slave-installer-module/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/windows-slave-installer-module/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/windows-slave-installer-module/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/windows-slave-installer-module/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/windows-slave-installer-module/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/windows-slave-installer-module/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/windows-slave-installer-module/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/windows-slave-installer-module/deployments", + "created_at": "2012-11-09T17:18:01Z", + "updated_at": "2019-10-09T08:06:00Z", + "pushed_at": "2019-09-23T08:58:36Z", + "git_url": "git://github.com/jenkinsci/windows-slave-installer-module.git", + "ssh_url": "git@github.com:jenkinsci/windows-slave-installer-module.git", + "clone_url": "https://github.com/jenkinsci/windows-slave-installer-module.git", + "svn_url": "https://github.com/jenkinsci/windows-slave-installer-module", + "homepage": "", + "size": 119, + "stargazers_count": 10, + "watchers_count": 10, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 12, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 12, + "open_issues": 2, + "watchers": 10, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 6653484, + "node_id": "MDEwOlJlcG9zaXRvcnk2NjUzNDg0", + "name": "dynamic-axis-plugin", + "full_name": "jenkinsci/dynamic-axis-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/dynamic-axis-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/dynamic-axis-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/dynamic-axis-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/dynamic-axis-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/dynamic-axis-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/dynamic-axis-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/dynamic-axis-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/dynamic-axis-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/dynamic-axis-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/dynamic-axis-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/dynamic-axis-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/dynamic-axis-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/dynamic-axis-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/dynamic-axis-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/dynamic-axis-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/dynamic-axis-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/dynamic-axis-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/dynamic-axis-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/dynamic-axis-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/dynamic-axis-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/dynamic-axis-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/dynamic-axis-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/dynamic-axis-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/dynamic-axis-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/dynamic-axis-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/dynamic-axis-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/dynamic-axis-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/dynamic-axis-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/dynamic-axis-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/dynamic-axis-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/dynamic-axis-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/dynamic-axis-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/dynamic-axis-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/dynamic-axis-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/dynamic-axis-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/dynamic-axis-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/dynamic-axis-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/dynamic-axis-plugin/deployments", + "created_at": "2012-11-12T13:05:49Z", + "updated_at": "2018-07-19T09:53:20Z", + "pushed_at": "2019-10-08T11:37:50Z", + "git_url": "git://github.com/jenkinsci/dynamic-axis-plugin.git", + "ssh_url": "git@github.com:jenkinsci/dynamic-axis-plugin.git", + "clone_url": "https://github.com/jenkinsci/dynamic-axis-plugin.git", + "svn_url": "https://github.com/jenkinsci/dynamic-axis-plugin", + "homepage": null, + "size": 27, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 11, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 11, + "open_issues": 2, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 6663605, + "node_id": "MDEwOlJlcG9zaXRvcnk2NjYzNjA1", + "name": "gssh-plugin", + "full_name": "jenkinsci/gssh-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/gssh-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/gssh-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/gssh-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/gssh-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/gssh-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/gssh-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/gssh-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/gssh-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/gssh-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/gssh-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/gssh-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/gssh-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/gssh-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/gssh-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/gssh-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/gssh-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/gssh-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/gssh-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/gssh-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/gssh-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/gssh-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/gssh-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/gssh-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/gssh-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/gssh-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/gssh-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/gssh-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/gssh-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/gssh-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/gssh-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/gssh-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/gssh-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/gssh-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/gssh-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/gssh-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/gssh-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/gssh-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/gssh-plugin/deployments", + "created_at": "2012-11-13T01:21:29Z", + "updated_at": "2015-05-11T02:48:13Z", + "pushed_at": "2012-11-13T01:14:46Z", + "git_url": "git://github.com/jenkinsci/gssh-plugin.git", + "ssh_url": "git@github.com:jenkinsci/gssh-plugin.git", + "clone_url": "https://github.com/jenkinsci/gssh-plugin.git", + "svn_url": "https://github.com/jenkinsci/gssh-plugin", + "homepage": null, + "size": 85, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 6687224, + "node_id": "MDEwOlJlcG9zaXRvcnk2Njg3MjI0", + "name": "log-command-plugin", + "full_name": "jenkinsci/log-command-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/log-command-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/log-command-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/log-command-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/log-command-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/log-command-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/log-command-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/log-command-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/log-command-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/log-command-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/log-command-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/log-command-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/log-command-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/log-command-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/log-command-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/log-command-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/log-command-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/log-command-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/log-command-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/log-command-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/log-command-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/log-command-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/log-command-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/log-command-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/log-command-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/log-command-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/log-command-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/log-command-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/log-command-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/log-command-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/log-command-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/log-command-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/log-command-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/log-command-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/log-command-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/log-command-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/log-command-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/log-command-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/log-command-plugin/deployments", + "created_at": "2012-11-14T12:09:15Z", + "updated_at": "2019-10-23T22:26:20Z", + "pushed_at": "2019-10-25T05:12:26Z", + "git_url": "git://github.com/jenkinsci/log-command-plugin.git", + "ssh_url": "git@github.com:jenkinsci/log-command-plugin.git", + "clone_url": "https://github.com/jenkinsci/log-command-plugin.git", + "svn_url": "https://github.com/jenkinsci/log-command-plugin", + "homepage": null, + "size": 14, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 6726370, + "node_id": "MDEwOlJlcG9zaXRvcnk2NzI2Mzcw", + "name": "java-client-api", + "full_name": "jenkinsci/java-client-api", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/java-client-api", + "description": "A Jenkins API client for Java", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/java-client-api", + "forks_url": "https://api.github.com/repos/jenkinsci/java-client-api/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/java-client-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/java-client-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/java-client-api/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/java-client-api/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/java-client-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/java-client-api/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/java-client-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/java-client-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/java-client-api/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/java-client-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/java-client-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/java-client-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/java-client-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/java-client-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/java-client-api/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/java-client-api/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/java-client-api/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/java-client-api/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/java-client-api/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/java-client-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/java-client-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/java-client-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/java-client-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/java-client-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/java-client-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/java-client-api/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/java-client-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/java-client-api/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/java-client-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/java-client-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/java-client-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/java-client-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/java-client-api/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/java-client-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/java-client-api/deployments", + "created_at": "2012-11-16T18:47:12Z", + "updated_at": "2019-10-24T07:18:29Z", + "pushed_at": "2019-09-19T17:30:50Z", + "git_url": "git://github.com/jenkinsci/java-client-api.git", + "ssh_url": "git@github.com:jenkinsci/java-client-api.git", + "clone_url": "https://github.com/jenkinsci/java-client-api.git", + "svn_url": "https://github.com/jenkinsci/java-client-api", + "homepage": null, + "size": 1818, + "stargazers_count": 574, + "watchers_count": 574, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 373, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 110, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 373, + "open_issues": 110, + "watchers": 574, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 6738081, + "node_id": "MDEwOlJlcG9zaXRvcnk2NzM4MDgx", + "name": "upstart-slave-installer-module", + "full_name": "jenkinsci/upstart-slave-installer-module", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/upstart-slave-installer-module", + "description": "Slave installer for Linux \"upstart\" service manager", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/upstart-slave-installer-module", + "forks_url": "https://api.github.com/repos/jenkinsci/upstart-slave-installer-module/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/upstart-slave-installer-module/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/upstart-slave-installer-module/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/upstart-slave-installer-module/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/upstart-slave-installer-module/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/upstart-slave-installer-module/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/upstart-slave-installer-module/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/upstart-slave-installer-module/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/upstart-slave-installer-module/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/upstart-slave-installer-module/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/upstart-slave-installer-module/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/upstart-slave-installer-module/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/upstart-slave-installer-module/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/upstart-slave-installer-module/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/upstart-slave-installer-module/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/upstart-slave-installer-module/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/upstart-slave-installer-module/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/upstart-slave-installer-module/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/upstart-slave-installer-module/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/upstart-slave-installer-module/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/upstart-slave-installer-module/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/upstart-slave-installer-module/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/upstart-slave-installer-module/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/upstart-slave-installer-module/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/upstart-slave-installer-module/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/upstart-slave-installer-module/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/upstart-slave-installer-module/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/upstart-slave-installer-module/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/upstart-slave-installer-module/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/upstart-slave-installer-module/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/upstart-slave-installer-module/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/upstart-slave-installer-module/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/upstart-slave-installer-module/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/upstart-slave-installer-module/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/upstart-slave-installer-module/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/upstart-slave-installer-module/deployments", + "created_at": "2012-11-17T18:01:25Z", + "updated_at": "2019-04-16T12:29:10Z", + "pushed_at": "2019-04-22T16:49:23Z", + "git_url": "git://github.com/jenkinsci/upstart-slave-installer-module.git", + "ssh_url": "git@github.com:jenkinsci/upstart-slave-installer-module.git", + "clone_url": "https://github.com/jenkinsci/upstart-slave-installer-module.git", + "svn_url": "https://github.com/jenkinsci/upstart-slave-installer-module", + "homepage": null, + "size": 12, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 1, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 6742198, + "node_id": "MDEwOlJlcG9zaXRvcnk2NzQyMTk4", + "name": "recipe-plugin", + "full_name": "jenkinsci/recipe-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/recipe-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/recipe-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/recipe-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/recipe-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/recipe-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/recipe-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/recipe-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/recipe-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/recipe-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/recipe-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/recipe-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/recipe-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/recipe-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/recipe-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/recipe-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/recipe-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/recipe-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/recipe-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/recipe-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/recipe-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/recipe-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/recipe-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/recipe-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/recipe-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/recipe-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/recipe-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/recipe-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/recipe-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/recipe-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/recipe-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/recipe-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/recipe-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/recipe-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/recipe-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/recipe-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/recipe-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/recipe-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/recipe-plugin/deployments", + "created_at": "2012-11-18T01:06:50Z", + "updated_at": "2014-08-20T05:37:23Z", + "pushed_at": "2014-08-28T18:43:31Z", + "git_url": "git://github.com/jenkinsci/recipe-plugin.git", + "ssh_url": "git@github.com:jenkinsci/recipe-plugin.git", + "clone_url": "https://github.com/jenkinsci/recipe-plugin.git", + "svn_url": "https://github.com/jenkinsci/recipe-plugin", + "homepage": null, + "size": 355, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 6770641, + "node_id": "MDEwOlJlcG9zaXRvcnk2NzcwNjQx", + "name": "vertx-plugin", + "full_name": "jenkinsci/vertx-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/vertx-plugin", + "description": "Plugin that integrates Vert.x into Jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/vertx-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/vertx-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/vertx-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/vertx-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/vertx-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/vertx-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/vertx-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/vertx-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/vertx-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/vertx-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/vertx-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/vertx-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/vertx-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/vertx-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/vertx-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/vertx-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/vertx-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/vertx-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/vertx-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/vertx-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/vertx-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/vertx-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/vertx-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/vertx-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/vertx-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/vertx-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/vertx-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/vertx-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/vertx-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/vertx-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/vertx-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/vertx-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/vertx-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/vertx-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/vertx-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/vertx-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/vertx-plugin/deployments", + "created_at": "2012-11-20T01:49:42Z", + "updated_at": "2013-11-10T02:22:12Z", + "pushed_at": "2013-11-10T02:22:06Z", + "git_url": "git://github.com/jenkinsci/vertx-plugin.git", + "ssh_url": "git@github.com:jenkinsci/vertx-plugin.git", + "clone_url": "https://github.com/jenkinsci/vertx-plugin.git", + "svn_url": "https://github.com/jenkinsci/vertx-plugin", + "homepage": null, + "size": 323, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 0, + "open_issues": 1, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 6774631, + "node_id": "MDEwOlJlcG9zaXRvcnk2Nzc0NjMx", + "name": "hpe-application-automation-tools-plugin", + "full_name": "jenkinsci/hpe-application-automation-tools-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/hpe-application-automation-tools-plugin", + "description": "Jenkins plugin to run Micro Focus Application Automation Tools", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/hpe-application-automation-tools-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/hpe-application-automation-tools-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/hpe-application-automation-tools-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/hpe-application-automation-tools-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/hpe-application-automation-tools-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/hpe-application-automation-tools-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/hpe-application-automation-tools-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/hpe-application-automation-tools-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/hpe-application-automation-tools-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/hpe-application-automation-tools-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/hpe-application-automation-tools-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/hpe-application-automation-tools-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/hpe-application-automation-tools-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/hpe-application-automation-tools-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/hpe-application-automation-tools-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/hpe-application-automation-tools-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/hpe-application-automation-tools-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/hpe-application-automation-tools-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/hpe-application-automation-tools-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/hpe-application-automation-tools-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/hpe-application-automation-tools-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/hpe-application-automation-tools-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/hpe-application-automation-tools-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/hpe-application-automation-tools-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/hpe-application-automation-tools-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/hpe-application-automation-tools-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/hpe-application-automation-tools-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/hpe-application-automation-tools-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/hpe-application-automation-tools-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/hpe-application-automation-tools-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/hpe-application-automation-tools-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/hpe-application-automation-tools-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/hpe-application-automation-tools-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/hpe-application-automation-tools-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/hpe-application-automation-tools-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/hpe-application-automation-tools-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/hpe-application-automation-tools-plugin/deployments", + "created_at": "2012-11-20T08:35:49Z", + "updated_at": "2019-10-25T14:21:13Z", + "pushed_at": "2019-10-25T14:21:09Z", + "git_url": "git://github.com/jenkinsci/hpe-application-automation-tools-plugin.git", + "ssh_url": "git@github.com:jenkinsci/hpe-application-automation-tools-plugin.git", + "clone_url": "https://github.com/jenkinsci/hpe-application-automation-tools-plugin.git", + "svn_url": "https://github.com/jenkinsci/hpe-application-automation-tools-plugin", + "homepage": "https://plugins.jenkins.io/hp-application-automation-tools-plugin", + "size": 14993, + "stargazers_count": 23, + "watchers_count": 23, + "language": "Java", + "has_issues": false, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 62, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 62, + "open_issues": 1, + "watchers": 23, + "default_branch": "latest", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 6804416, + "node_id": "MDEwOlJlcG9zaXRvcnk2ODA0NDE2", + "name": "buddycloud-plugin", + "full_name": "jenkinsci/buddycloud-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/buddycloud-plugin", + "description": "A Jenkins CI plugin that pushes successful/failing build notifications to a Buddycloud channel", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/buddycloud-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/buddycloud-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/buddycloud-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/buddycloud-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/buddycloud-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/buddycloud-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/buddycloud-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/buddycloud-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/buddycloud-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/buddycloud-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/buddycloud-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/buddycloud-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/buddycloud-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/buddycloud-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/buddycloud-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/buddycloud-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/buddycloud-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/buddycloud-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/buddycloud-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/buddycloud-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/buddycloud-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/buddycloud-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/buddycloud-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/buddycloud-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/buddycloud-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/buddycloud-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/buddycloud-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/buddycloud-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/buddycloud-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/buddycloud-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/buddycloud-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/buddycloud-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/buddycloud-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/buddycloud-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/buddycloud-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/buddycloud-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/buddycloud-plugin/deployments", + "created_at": "2012-11-21T22:51:32Z", + "updated_at": "2014-02-20T19:38:08Z", + "pushed_at": "2013-11-10T01:55:03Z", + "git_url": "git://github.com/jenkinsci/buddycloud-plugin.git", + "ssh_url": "git@github.com:jenkinsci/buddycloud-plugin.git", + "clone_url": "https://github.com/jenkinsci/buddycloud-plugin.git", + "svn_url": "https://github.com/jenkinsci/buddycloud-plugin", + "homepage": null, + "size": 86, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Ruby", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 1, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 6812361, + "node_id": "MDEwOlJlcG9zaXRvcnk2ODEyMzYx", + "name": "metadata-plugin", + "full_name": "jenkinsci/metadata-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/metadata-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/metadata-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/metadata-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/metadata-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/metadata-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/metadata-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/metadata-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/metadata-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/metadata-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/metadata-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/metadata-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/metadata-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/metadata-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/metadata-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/metadata-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/metadata-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/metadata-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/metadata-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/metadata-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/metadata-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/metadata-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/metadata-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/metadata-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/metadata-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/metadata-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/metadata-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/metadata-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/metadata-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/metadata-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/metadata-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/metadata-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/metadata-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/metadata-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/metadata-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/metadata-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/metadata-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/metadata-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/metadata-plugin/deployments", + "created_at": "2012-11-22T11:51:13Z", + "updated_at": "2019-10-11T08:16:34Z", + "pushed_at": "2019-10-11T08:16:31Z", + "git_url": "git://github.com/jenkinsci/metadata-plugin.git", + "ssh_url": "git@github.com:jenkinsci/metadata-plugin.git", + "clone_url": "https://github.com/jenkinsci/metadata-plugin.git", + "svn_url": "https://github.com/jenkinsci/metadata-plugin", + "homepage": "", + "size": 4475, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 14, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 14, + "open_issues": 1, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 6812365, + "node_id": "MDEwOlJlcG9zaXRvcnk2ODEyMzY1", + "name": "external-resource-dispatcher-plugin", + "full_name": "jenkinsci/external-resource-dispatcher-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/external-resource-dispatcher-plugin", + "description": "A Jenkins plugin which adds the support for external resources in Jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/external-resource-dispatcher-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/external-resource-dispatcher-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/external-resource-dispatcher-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/external-resource-dispatcher-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/external-resource-dispatcher-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/external-resource-dispatcher-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/external-resource-dispatcher-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/external-resource-dispatcher-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/external-resource-dispatcher-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/external-resource-dispatcher-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/external-resource-dispatcher-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/external-resource-dispatcher-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/external-resource-dispatcher-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/external-resource-dispatcher-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/external-resource-dispatcher-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/external-resource-dispatcher-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/external-resource-dispatcher-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/external-resource-dispatcher-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/external-resource-dispatcher-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/external-resource-dispatcher-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/external-resource-dispatcher-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/external-resource-dispatcher-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/external-resource-dispatcher-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/external-resource-dispatcher-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/external-resource-dispatcher-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/external-resource-dispatcher-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/external-resource-dispatcher-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/external-resource-dispatcher-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/external-resource-dispatcher-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/external-resource-dispatcher-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/external-resource-dispatcher-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/external-resource-dispatcher-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/external-resource-dispatcher-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/external-resource-dispatcher-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/external-resource-dispatcher-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/external-resource-dispatcher-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/external-resource-dispatcher-plugin/deployments", + "created_at": "2012-11-22T11:51:37Z", + "updated_at": "2019-01-09T12:55:53Z", + "pushed_at": "2017-04-21T20:25:05Z", + "git_url": "git://github.com/jenkinsci/external-resource-dispatcher-plugin.git", + "ssh_url": "git@github.com:jenkinsci/external-resource-dispatcher-plugin.git", + "clone_url": "https://github.com/jenkinsci/external-resource-dispatcher-plugin.git", + "svn_url": "https://github.com/jenkinsci/external-resource-dispatcher-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/External+Resource+Dispatcher", + "size": 313, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 15, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 15, + "open_issues": 2, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 6812369, + "node_id": "MDEwOlJlcG9zaXRvcnk2ODEyMzY5", + "name": "build-failure-analyzer-plugin", + "full_name": "jenkinsci/build-failure-analyzer-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/build-failure-analyzer-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/build-failure-analyzer-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/build-failure-analyzer-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/build-failure-analyzer-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/build-failure-analyzer-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/build-failure-analyzer-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/build-failure-analyzer-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/build-failure-analyzer-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/build-failure-analyzer-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/build-failure-analyzer-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/build-failure-analyzer-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/build-failure-analyzer-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/build-failure-analyzer-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/build-failure-analyzer-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/build-failure-analyzer-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/build-failure-analyzer-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/build-failure-analyzer-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/build-failure-analyzer-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/build-failure-analyzer-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/build-failure-analyzer-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/build-failure-analyzer-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/build-failure-analyzer-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/build-failure-analyzer-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/build-failure-analyzer-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/build-failure-analyzer-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/build-failure-analyzer-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/build-failure-analyzer-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/build-failure-analyzer-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/build-failure-analyzer-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/build-failure-analyzer-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/build-failure-analyzer-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/build-failure-analyzer-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/build-failure-analyzer-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/build-failure-analyzer-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/build-failure-analyzer-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/build-failure-analyzer-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/build-failure-analyzer-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/build-failure-analyzer-plugin/deployments", + "created_at": "2012-11-22T11:51:57Z", + "updated_at": "2019-10-25T18:54:22Z", + "pushed_at": "2019-10-25T18:54:20Z", + "git_url": "git://github.com/jenkinsci/build-failure-analyzer-plugin.git", + "ssh_url": "git@github.com:jenkinsci/build-failure-analyzer-plugin.git", + "clone_url": "https://github.com/jenkinsci/build-failure-analyzer-plugin.git", + "svn_url": "https://github.com/jenkinsci/build-failure-analyzer-plugin", + "homepage": "", + "size": 1414, + "stargazers_count": 51, + "watchers_count": 51, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 111, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 5, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 111, + "open_issues": 5, + "watchers": 51, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 6834058, + "node_id": "MDEwOlJlcG9zaXRvcnk2ODM0MDU4", + "name": "application-director-plugin", + "full_name": "jenkinsci/application-director-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/application-director-plugin", + "description": "Jenkins plugin to Application Director", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/application-director-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/application-director-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/application-director-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/application-director-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/application-director-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/application-director-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/application-director-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/application-director-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/application-director-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/application-director-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/application-director-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/application-director-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/application-director-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/application-director-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/application-director-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/application-director-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/application-director-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/application-director-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/application-director-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/application-director-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/application-director-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/application-director-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/application-director-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/application-director-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/application-director-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/application-director-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/application-director-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/application-director-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/application-director-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/application-director-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/application-director-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/application-director-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/application-director-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/application-director-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/application-director-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/application-director-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/application-director-plugin/deployments", + "created_at": "2012-11-23T22:50:09Z", + "updated_at": "2013-11-10T01:53:09Z", + "pushed_at": "2013-11-10T01:53:04Z", + "git_url": "git://github.com/jenkinsci/application-director-plugin.git", + "ssh_url": "git@github.com:jenkinsci/application-director-plugin.git", + "clone_url": "https://github.com/jenkinsci/application-director-plugin.git", + "svn_url": "https://github.com/jenkinsci/application-director-plugin", + "homepage": null, + "size": 158, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 6843149, + "node_id": "MDEwOlJlcG9zaXRvcnk2ODQzMTQ5", + "name": "backend-jpi-create", + "full_name": "jenkinsci/backend-jpi-create", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/backend-jpi-create", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/backend-jpi-create", + "forks_url": "https://api.github.com/repos/jenkinsci/backend-jpi-create/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/backend-jpi-create/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/backend-jpi-create/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/backend-jpi-create/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/backend-jpi-create/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/backend-jpi-create/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/backend-jpi-create/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/backend-jpi-create/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/backend-jpi-create/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/backend-jpi-create/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/backend-jpi-create/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/backend-jpi-create/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/backend-jpi-create/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/backend-jpi-create/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/backend-jpi-create/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/backend-jpi-create/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/backend-jpi-create/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/backend-jpi-create/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/backend-jpi-create/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/backend-jpi-create/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/backend-jpi-create/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/backend-jpi-create/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/backend-jpi-create/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/backend-jpi-create/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/backend-jpi-create/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/backend-jpi-create/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/backend-jpi-create/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/backend-jpi-create/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/backend-jpi-create/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/backend-jpi-create/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/backend-jpi-create/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/backend-jpi-create/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/backend-jpi-create/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/backend-jpi-create/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/backend-jpi-create/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/backend-jpi-create/deployments", + "created_at": "2012-11-24T18:56:47Z", + "updated_at": "2018-01-03T17:52:30Z", + "pushed_at": "2014-08-02T00:54:47Z", + "git_url": "git://github.com/jenkinsci/backend-jpi-create.git", + "ssh_url": "git@github.com:jenkinsci/backend-jpi-create.git", + "clone_url": "https://github.com/jenkinsci/backend-jpi-create.git", + "svn_url": "https://github.com/jenkinsci/backend-jpi-create", + "homepage": "", + "size": 212, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": true, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 6854928, + "node_id": "MDEwOlJlcG9zaXRvcnk2ODU0OTI4", + "name": "database-plugin", + "full_name": "jenkinsci/database-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/database-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/database-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/database-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/database-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/database-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/database-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/database-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/database-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/database-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/database-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/database-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/database-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/database-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/database-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/database-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/database-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/database-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/database-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/database-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/database-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/database-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/database-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/database-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/database-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/database-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/database-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/database-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/database-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/database-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/database-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/database-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/database-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/database-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/database-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/database-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/database-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/database-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/database-plugin/deployments", + "created_at": "2012-11-25T19:51:19Z", + "updated_at": "2019-04-19T03:04:43Z", + "pushed_at": "2019-10-08T10:10:55Z", + "git_url": "git://github.com/jenkinsci/database-plugin.git", + "ssh_url": "git@github.com:jenkinsci/database-plugin.git", + "clone_url": "https://github.com/jenkinsci/database-plugin.git", + "svn_url": "https://github.com/jenkinsci/database-plugin", + "homepage": "", + "size": 61, + "stargazers_count": 6, + "watchers_count": 6, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 13, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": null, + "forks": 13, + "open_issues": 3, + "watchers": 6, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 6854932, + "node_id": "MDEwOlJlcG9zaXRvcnk2ODU0OTMy", + "name": "database-h2-plugin", + "full_name": "jenkinsci/database-h2-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/database-h2-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/database-h2-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/database-h2-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/database-h2-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/database-h2-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/database-h2-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/database-h2-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/database-h2-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/database-h2-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/database-h2-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/database-h2-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/database-h2-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/database-h2-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/database-h2-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/database-h2-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/database-h2-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/database-h2-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/database-h2-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/database-h2-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/database-h2-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/database-h2-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/database-h2-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/database-h2-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/database-h2-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/database-h2-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/database-h2-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/database-h2-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/database-h2-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/database-h2-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/database-h2-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/database-h2-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/database-h2-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/database-h2-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/database-h2-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/database-h2-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/database-h2-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/database-h2-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/database-h2-plugin/deployments", + "created_at": "2012-11-25T19:51:34Z", + "updated_at": "2015-06-30T20:57:50Z", + "pushed_at": "2019-05-29T22:46:40Z", + "git_url": "git://github.com/jenkinsci/database-h2-plugin.git", + "ssh_url": "git@github.com:jenkinsci/database-h2-plugin.git", + "clone_url": "https://github.com/jenkinsci/database-h2-plugin.git", + "svn_url": "https://github.com/jenkinsci/database-h2-plugin", + "homepage": "", + "size": 120, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 4, + "open_issues": 2, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 6860064, + "node_id": "MDEwOlJlcG9zaXRvcnk2ODYwMDY0", + "name": "database-mysql-plugin", + "full_name": "jenkinsci/database-mysql-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/database-mysql-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/database-mysql-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/database-mysql-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/database-mysql-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/database-mysql-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/database-mysql-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/database-mysql-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/database-mysql-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/database-mysql-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/database-mysql-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/database-mysql-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/database-mysql-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/database-mysql-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/database-mysql-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/database-mysql-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/database-mysql-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/database-mysql-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/database-mysql-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/database-mysql-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/database-mysql-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/database-mysql-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/database-mysql-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/database-mysql-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/database-mysql-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/database-mysql-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/database-mysql-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/database-mysql-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/database-mysql-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/database-mysql-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/database-mysql-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/database-mysql-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/database-mysql-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/database-mysql-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/database-mysql-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/database-mysql-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/database-mysql-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/database-mysql-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/database-mysql-plugin/deployments", + "created_at": "2012-11-26T05:01:38Z", + "updated_at": "2019-01-30T03:20:36Z", + "pushed_at": "2019-10-08T11:23:09Z", + "git_url": "git://github.com/jenkinsci/database-mysql-plugin.git", + "ssh_url": "git@github.com:jenkinsci/database-mysql-plugin.git", + "clone_url": "https://github.com/jenkinsci/database-mysql-plugin.git", + "svn_url": "https://github.com/jenkinsci/database-mysql-plugin", + "homepage": "", + "size": 15, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 3, + "open_issues": 2, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 6860507, + "node_id": "MDEwOlJlcG9zaXRvcnk2ODYwNTA3", + "name": "database-postgresql-plugin", + "full_name": "jenkinsci/database-postgresql-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/database-postgresql-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/database-postgresql-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/database-postgresql-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/database-postgresql-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/database-postgresql-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/database-postgresql-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/database-postgresql-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/database-postgresql-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/database-postgresql-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/database-postgresql-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/database-postgresql-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/database-postgresql-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/database-postgresql-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/database-postgresql-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/database-postgresql-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/database-postgresql-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/database-postgresql-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/database-postgresql-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/database-postgresql-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/database-postgresql-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/database-postgresql-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/database-postgresql-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/database-postgresql-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/database-postgresql-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/database-postgresql-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/database-postgresql-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/database-postgresql-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/database-postgresql-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/database-postgresql-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/database-postgresql-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/database-postgresql-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/database-postgresql-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/database-postgresql-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/database-postgresql-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/database-postgresql-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/database-postgresql-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/database-postgresql-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/database-postgresql-plugin/deployments", + "created_at": "2012-11-26T05:53:34Z", + "updated_at": "2018-11-06T08:58:57Z", + "pushed_at": "2019-10-08T12:18:46Z", + "git_url": "git://github.com/jenkinsci/database-postgresql-plugin.git", + "ssh_url": "git@github.com:jenkinsci/database-postgresql-plugin.git", + "clone_url": "https://github.com/jenkinsci/database-postgresql-plugin.git", + "svn_url": "https://github.com/jenkinsci/database-postgresql-plugin", + "homepage": "", + "size": 8, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 2, + "open_issues": 1, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 6906074, + "node_id": "MDEwOlJlcG9zaXRvcnk2OTA2MDc0", + "name": "jobgenerator-plugin", + "full_name": "jenkinsci/jobgenerator-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jobgenerator-plugin", + "description": " A job generator which can replicates itself to produce a regular job. The generation can be parameterized via the standard build parameters of Jenkins by adding Template Parameters.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/jobgenerator-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/jobgenerator-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jobgenerator-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jobgenerator-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jobgenerator-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jobgenerator-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jobgenerator-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jobgenerator-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jobgenerator-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jobgenerator-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jobgenerator-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jobgenerator-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jobgenerator-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jobgenerator-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jobgenerator-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jobgenerator-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jobgenerator-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jobgenerator-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jobgenerator-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jobgenerator-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jobgenerator-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jobgenerator-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jobgenerator-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jobgenerator-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jobgenerator-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jobgenerator-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jobgenerator-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jobgenerator-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jobgenerator-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jobgenerator-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jobgenerator-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jobgenerator-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jobgenerator-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jobgenerator-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jobgenerator-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jobgenerator-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jobgenerator-plugin/deployments", + "created_at": "2012-11-28T17:09:31Z", + "updated_at": "2019-08-29T10:57:14Z", + "pushed_at": "2019-10-08T10:16:23Z", + "git_url": "git://github.com/jenkinsci/jobgenerator-plugin.git", + "ssh_url": "git@github.com:jenkinsci/jobgenerator-plugin.git", + "clone_url": "https://github.com/jenkinsci/jobgenerator-plugin.git", + "svn_url": "https://github.com/jenkinsci/jobgenerator-plugin", + "homepage": "", + "size": 638, + "stargazers_count": 10, + "watchers_count": 10, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 18, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 5, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 18, + "open_issues": 5, + "watchers": 10, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 6906154, + "node_id": "MDEwOlJlcG9zaXRvcnk2OTA2MTU0", + "name": "mail-reminder-plugin", + "full_name": "jenkinsci/mail-reminder-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/mail-reminder-plugin", + "description": "Send Email to user when build success, fail, or result changed", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/mail-reminder-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/mail-reminder-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/mail-reminder-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/mail-reminder-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/mail-reminder-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/mail-reminder-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/mail-reminder-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/mail-reminder-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/mail-reminder-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/mail-reminder-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/mail-reminder-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/mail-reminder-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/mail-reminder-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/mail-reminder-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/mail-reminder-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/mail-reminder-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/mail-reminder-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/mail-reminder-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/mail-reminder-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/mail-reminder-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/mail-reminder-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/mail-reminder-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/mail-reminder-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/mail-reminder-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/mail-reminder-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/mail-reminder-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/mail-reminder-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/mail-reminder-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/mail-reminder-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/mail-reminder-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/mail-reminder-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/mail-reminder-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/mail-reminder-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/mail-reminder-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/mail-reminder-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/mail-reminder-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/mail-reminder-plugin/deployments", + "created_at": "2012-11-28T17:14:06Z", + "updated_at": "2013-11-10T02:10:15Z", + "pushed_at": "2013-11-10T02:10:09Z", + "git_url": "git://github.com/jenkinsci/mail-reminder-plugin.git", + "ssh_url": "git@github.com:jenkinsci/mail-reminder-plugin.git", + "clone_url": "https://github.com/jenkinsci/mail-reminder-plugin.git", + "svn_url": "https://github.com/jenkinsci/mail-reminder-plugin", + "homepage": null, + "size": 15922, + "stargazers_count": 0, + "watchers_count": 0, + "language": "CSS", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 7046383, + "node_id": "MDEwOlJlcG9zaXRvcnk3MDQ2Mzgz", + "name": "install-necessary-plugins", + "full_name": "jenkinsci/install-necessary-plugins", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/install-necessary-plugins", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/install-necessary-plugins", + "forks_url": "https://api.github.com/repos/jenkinsci/install-necessary-plugins/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/install-necessary-plugins/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/install-necessary-plugins/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/install-necessary-plugins/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/install-necessary-plugins/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/install-necessary-plugins/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/install-necessary-plugins/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/install-necessary-plugins/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/install-necessary-plugins/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/install-necessary-plugins/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/install-necessary-plugins/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/install-necessary-plugins/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/install-necessary-plugins/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/install-necessary-plugins/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/install-necessary-plugins/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/install-necessary-plugins/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/install-necessary-plugins/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/install-necessary-plugins/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/install-necessary-plugins/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/install-necessary-plugins/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/install-necessary-plugins/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/install-necessary-plugins/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/install-necessary-plugins/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/install-necessary-plugins/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/install-necessary-plugins/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/install-necessary-plugins/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/install-necessary-plugins/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/install-necessary-plugins/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/install-necessary-plugins/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/install-necessary-plugins/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/install-necessary-plugins/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/install-necessary-plugins/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/install-necessary-plugins/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/install-necessary-plugins/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/install-necessary-plugins/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/install-necessary-plugins/deployments", + "created_at": "2012-12-07T02:12:01Z", + "updated_at": "2013-12-05T09:12:02Z", + "pushed_at": "2013-11-10T02:05:19Z", + "git_url": "git://github.com/jenkinsci/install-necessary-plugins.git", + "ssh_url": "git@github.com:jenkinsci/install-necessary-plugins.git", + "clone_url": "https://github.com/jenkinsci/install-necessary-plugins.git", + "svn_url": "https://github.com/jenkinsci/install-necessary-plugins", + "homepage": "", + "size": 101, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 7059647, + "node_id": "MDEwOlJlcG9zaXRvcnk3MDU5NjQ3", + "name": "job-strongauth-simple-plugin", + "full_name": "jenkinsci/job-strongauth-simple-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/job-strongauth-simple-plugin", + "description": "jenkins job-strongauth-simple-plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/job-strongauth-simple-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/job-strongauth-simple-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/job-strongauth-simple-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/job-strongauth-simple-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/job-strongauth-simple-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/job-strongauth-simple-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/job-strongauth-simple-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/job-strongauth-simple-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/job-strongauth-simple-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/job-strongauth-simple-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/job-strongauth-simple-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/job-strongauth-simple-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/job-strongauth-simple-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/job-strongauth-simple-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/job-strongauth-simple-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/job-strongauth-simple-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/job-strongauth-simple-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/job-strongauth-simple-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/job-strongauth-simple-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/job-strongauth-simple-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/job-strongauth-simple-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/job-strongauth-simple-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/job-strongauth-simple-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/job-strongauth-simple-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/job-strongauth-simple-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/job-strongauth-simple-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/job-strongauth-simple-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/job-strongauth-simple-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/job-strongauth-simple-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/job-strongauth-simple-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/job-strongauth-simple-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/job-strongauth-simple-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/job-strongauth-simple-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/job-strongauth-simple-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/job-strongauth-simple-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/job-strongauth-simple-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/job-strongauth-simple-plugin/deployments", + "created_at": "2012-12-07T20:44:31Z", + "updated_at": "2013-11-10T02:07:28Z", + "pushed_at": "2013-11-10T02:07:23Z", + "git_url": "git://github.com/jenkinsci/job-strongauth-simple-plugin.git", + "ssh_url": "git@github.com:jenkinsci/job-strongauth-simple-plugin.git", + "clone_url": "https://github.com/jenkinsci/job-strongauth-simple-plugin.git", + "svn_url": "https://github.com/jenkinsci/job-strongauth-simple-plugin", + "homepage": null, + "size": 147, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 7062755, + "node_id": "MDEwOlJlcG9zaXRvcnk3MDYyNzU1", + "name": "activiti-explorer-plugin", + "full_name": "jenkinsci/activiti-explorer-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/activiti-explorer-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/activiti-explorer-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/activiti-explorer-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/activiti-explorer-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/activiti-explorer-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/activiti-explorer-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/activiti-explorer-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/activiti-explorer-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/activiti-explorer-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/activiti-explorer-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/activiti-explorer-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/activiti-explorer-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/activiti-explorer-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/activiti-explorer-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/activiti-explorer-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/activiti-explorer-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/activiti-explorer-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/activiti-explorer-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/activiti-explorer-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/activiti-explorer-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/activiti-explorer-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/activiti-explorer-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/activiti-explorer-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/activiti-explorer-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/activiti-explorer-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/activiti-explorer-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/activiti-explorer-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/activiti-explorer-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/activiti-explorer-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/activiti-explorer-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/activiti-explorer-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/activiti-explorer-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/activiti-explorer-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/activiti-explorer-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/activiti-explorer-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/activiti-explorer-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/activiti-explorer-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/activiti-explorer-plugin/deployments", + "created_at": "2012-12-08T01:35:32Z", + "updated_at": "2013-11-10T01:51:53Z", + "pushed_at": "2013-11-10T01:51:52Z", + "git_url": "git://github.com/jenkinsci/activiti-explorer-plugin.git", + "ssh_url": "git@github.com:jenkinsci/activiti-explorer-plugin.git", + "clone_url": "https://github.com/jenkinsci/activiti-explorer-plugin.git", + "svn_url": "https://github.com/jenkinsci/activiti-explorer-plugin", + "homepage": "", + "size": 180, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 7133285, + "node_id": "MDEwOlJlcG9zaXRvcnk3MTMzMjg1", + "name": "eloyente-plugin", + "full_name": "jenkinsci/eloyente-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/eloyente-plugin", + "description": "Jenkins plugin for job triggering by XMPP Pub/Sub events", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/eloyente-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/eloyente-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/eloyente-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/eloyente-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/eloyente-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/eloyente-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/eloyente-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/eloyente-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/eloyente-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/eloyente-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/eloyente-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/eloyente-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/eloyente-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/eloyente-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/eloyente-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/eloyente-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/eloyente-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/eloyente-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/eloyente-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/eloyente-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/eloyente-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/eloyente-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/eloyente-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/eloyente-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/eloyente-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/eloyente-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/eloyente-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/eloyente-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/eloyente-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/eloyente-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/eloyente-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/eloyente-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/eloyente-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/eloyente-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/eloyente-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/eloyente-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/eloyente-plugin/deployments", + "created_at": "2012-12-12T16:16:47Z", + "updated_at": "2018-01-24T19:34:30Z", + "pushed_at": "2016-05-26T15:07:10Z", + "git_url": "git://github.com/jenkinsci/eloyente-plugin.git", + "ssh_url": "git@github.com:jenkinsci/eloyente-plugin.git", + "clone_url": "https://github.com/jenkinsci/eloyente-plugin.git", + "svn_url": "https://github.com/jenkinsci/eloyente-plugin", + "homepage": null, + "size": 30984, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 2, + "open_issues": 2, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 7150609, + "node_id": "MDEwOlJlcG9zaXRvcnk3MTUwNjA5", + "name": "test", + "full_name": "jenkinsci/test", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/test", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/test", + "forks_url": "https://api.github.com/repos/jenkinsci/test/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/test/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/test/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/test/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/test/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/test/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/test/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/test/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/test/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/test/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/test/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/test/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/test/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/test/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/test/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/test/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/test/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/test/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/test/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/test/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/test/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/test/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/test/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/test/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/test/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/test/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/test/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/test/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/test/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/test/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/test/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/test/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/test/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/test/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/test/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/test/deployments", + "created_at": "2012-12-13T15:40:45Z", + "updated_at": "2013-10-27T06:16:03Z", + "pushed_at": "2012-12-13T15:40:47Z", + "git_url": "git://github.com/jenkinsci/test.git", + "ssh_url": "git@github.com:jenkinsci/test.git", + "clone_url": "https://github.com/jenkinsci/test.git", + "svn_url": "https://github.com/jenkinsci/test", + "homepage": null, + "size": 112, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 7151686, + "node_id": "MDEwOlJlcG9zaXRvcnk3MTUxNjg2", + "name": "nis-notification-lamp-plugin", + "full_name": "jenkinsci/nis-notification-lamp-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/nis-notification-lamp-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/nis-notification-lamp-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/nis-notification-lamp-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/nis-notification-lamp-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/nis-notification-lamp-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/nis-notification-lamp-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/nis-notification-lamp-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/nis-notification-lamp-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/nis-notification-lamp-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/nis-notification-lamp-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/nis-notification-lamp-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/nis-notification-lamp-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/nis-notification-lamp-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/nis-notification-lamp-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/nis-notification-lamp-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/nis-notification-lamp-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/nis-notification-lamp-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/nis-notification-lamp-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/nis-notification-lamp-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/nis-notification-lamp-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/nis-notification-lamp-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/nis-notification-lamp-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/nis-notification-lamp-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/nis-notification-lamp-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/nis-notification-lamp-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/nis-notification-lamp-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/nis-notification-lamp-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/nis-notification-lamp-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/nis-notification-lamp-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/nis-notification-lamp-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/nis-notification-lamp-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/nis-notification-lamp-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/nis-notification-lamp-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/nis-notification-lamp-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/nis-notification-lamp-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/nis-notification-lamp-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/nis-notification-lamp-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/nis-notification-lamp-plugin/deployments", + "created_at": "2012-12-13T16:46:24Z", + "updated_at": "2014-03-13T13:49:40Z", + "pushed_at": "2013-02-20T11:31:29Z", + "git_url": "git://github.com/jenkinsci/nis-notification-lamp-plugin.git", + "ssh_url": "git@github.com:jenkinsci/nis-notification-lamp-plugin.git", + "clone_url": "https://github.com/jenkinsci/nis-notification-lamp-plugin.git", + "svn_url": "https://github.com/jenkinsci/nis-notification-lamp-plugin", + "homepage": null, + "size": 436, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 7157621, + "node_id": "MDEwOlJlcG9zaXRvcnk3MTU3NjIx", + "name": "audit2db-plugin", + "full_name": "jenkinsci/audit2db-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/audit2db-plugin", + "description": "Jenkins plugin to record build audit information to database.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/audit2db-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/audit2db-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/audit2db-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/audit2db-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/audit2db-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/audit2db-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/audit2db-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/audit2db-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/audit2db-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/audit2db-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/audit2db-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/audit2db-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/audit2db-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/audit2db-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/audit2db-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/audit2db-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/audit2db-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/audit2db-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/audit2db-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/audit2db-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/audit2db-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/audit2db-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/audit2db-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/audit2db-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/audit2db-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/audit2db-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/audit2db-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/audit2db-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/audit2db-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/audit2db-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/audit2db-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/audit2db-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/audit2db-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/audit2db-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/audit2db-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/audit2db-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/audit2db-plugin/deployments", + "created_at": "2012-12-14T00:10:16Z", + "updated_at": "2019-10-19T03:50:47Z", + "pushed_at": "2019-10-19T03:50:45Z", + "git_url": "git://github.com/jenkinsci/audit2db-plugin.git", + "ssh_url": "git@github.com:jenkinsci/audit2db-plugin.git", + "clone_url": "https://github.com/jenkinsci/audit2db-plugin.git", + "svn_url": "https://github.com/jenkinsci/audit2db-plugin", + "homepage": null, + "size": 363, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 24, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 17, + "license": null, + "forks": 24, + "open_issues": 17, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 7167488, + "node_id": "MDEwOlJlcG9zaXRvcnk3MTY3NDg4", + "name": "ios-otabuilder-plugin", + "full_name": "jenkinsci/ios-otabuilder-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/ios-otabuilder-plugin", + "description": "Over The Air Transmission Builder for Jenkins-CI", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/ios-otabuilder-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/ios-otabuilder-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/ios-otabuilder-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/ios-otabuilder-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/ios-otabuilder-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/ios-otabuilder-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/ios-otabuilder-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/ios-otabuilder-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/ios-otabuilder-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/ios-otabuilder-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/ios-otabuilder-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/ios-otabuilder-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/ios-otabuilder-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/ios-otabuilder-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/ios-otabuilder-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/ios-otabuilder-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/ios-otabuilder-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/ios-otabuilder-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/ios-otabuilder-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/ios-otabuilder-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/ios-otabuilder-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/ios-otabuilder-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/ios-otabuilder-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/ios-otabuilder-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/ios-otabuilder-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/ios-otabuilder-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/ios-otabuilder-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/ios-otabuilder-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/ios-otabuilder-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/ios-otabuilder-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/ios-otabuilder-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/ios-otabuilder-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/ios-otabuilder-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/ios-otabuilder-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/ios-otabuilder-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/ios-otabuilder-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/ios-otabuilder-plugin/deployments", + "created_at": "2012-12-14T15:33:57Z", + "updated_at": "2015-11-30T13:20:09Z", + "pushed_at": "2013-11-10T02:05:34Z", + "git_url": "git://github.com/jenkinsci/ios-otabuilder-plugin.git", + "ssh_url": "git@github.com:jenkinsci/ios-otabuilder-plugin.git", + "clone_url": "https://github.com/jenkinsci/ios-otabuilder-plugin.git", + "svn_url": "https://github.com/jenkinsci/ios-otabuilder-plugin", + "homepage": null, + "size": 88005, + "stargazers_count": 8, + "watchers_count": 8, + "language": "Ruby", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 4, + "open_issues": 0, + "watchers": 8, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 7180493, + "node_id": "MDEwOlJlcG9zaXRvcnk3MTgwNDkz", + "name": "gatling-plugin", + "full_name": "jenkinsci/gatling-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/gatling-plugin", + "description": "Jenkins plugin for Gatling", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/gatling-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/gatling-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/gatling-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/gatling-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/gatling-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/gatling-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/gatling-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/gatling-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/gatling-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/gatling-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/gatling-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/gatling-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/gatling-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/gatling-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/gatling-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/gatling-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/gatling-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/gatling-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/gatling-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/gatling-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/gatling-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/gatling-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/gatling-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/gatling-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/gatling-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/gatling-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/gatling-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/gatling-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/gatling-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/gatling-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/gatling-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/gatling-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/gatling-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/gatling-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/gatling-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/gatling-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/gatling-plugin/deployments", + "created_at": "2012-12-15T14:52:51Z", + "updated_at": "2019-07-16T14:46:33Z", + "pushed_at": "2019-05-14T13:51:56Z", + "git_url": "git://github.com/jenkinsci/gatling-plugin.git", + "ssh_url": "git@github.com:jenkinsci/gatling-plugin.git", + "clone_url": "https://github.com/jenkinsci/gatling-plugin.git", + "svn_url": "https://github.com/jenkinsci/gatling-plugin", + "homepage": null, + "size": 269, + "stargazers_count": 29, + "watchers_count": 29, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 28, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 28, + "open_issues": 0, + "watchers": 29, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 7188759, + "node_id": "MDEwOlJlcG9zaXRvcnk3MTg4NzU5", + "name": "blink1-plugin", + "full_name": "jenkinsci/blink1-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/blink1-plugin", + "description": "blink(1) plugin for Jenkins CI", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/blink1-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/blink1-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/blink1-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/blink1-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/blink1-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/blink1-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/blink1-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/blink1-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/blink1-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/blink1-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/blink1-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/blink1-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/blink1-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/blink1-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/blink1-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/blink1-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/blink1-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/blink1-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/blink1-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/blink1-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/blink1-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/blink1-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/blink1-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/blink1-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/blink1-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/blink1-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/blink1-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/blink1-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/blink1-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/blink1-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/blink1-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/blink1-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/blink1-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/blink1-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/blink1-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/blink1-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/blink1-plugin/deployments", + "created_at": "2012-12-16T08:30:28Z", + "updated_at": "2019-05-20T04:12:41Z", + "pushed_at": "2015-04-06T09:52:15Z", + "git_url": "git://github.com/jenkinsci/blink1-plugin.git", + "ssh_url": "git@github.com:jenkinsci/blink1-plugin.git", + "clone_url": "https://github.com/jenkinsci/blink1-plugin.git", + "svn_url": "https://github.com/jenkinsci/blink1-plugin", + "homepage": null, + "size": 428, + "stargazers_count": 6, + "watchers_count": 6, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 5, + "open_issues": 0, + "watchers": 6, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 7189003, + "node_id": "MDEwOlJlcG9zaXRvcnk3MTg5MDAz", + "name": "coordinator-plugin", + "full_name": "jenkinsci/coordinator-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/coordinator-plugin", + "description": "Make deployment done by a single click.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/coordinator-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/coordinator-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/coordinator-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/coordinator-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/coordinator-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/coordinator-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/coordinator-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/coordinator-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/coordinator-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/coordinator-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/coordinator-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/coordinator-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/coordinator-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/coordinator-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/coordinator-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/coordinator-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/coordinator-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/coordinator-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/coordinator-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/coordinator-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/coordinator-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/coordinator-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/coordinator-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/coordinator-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/coordinator-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/coordinator-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/coordinator-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/coordinator-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/coordinator-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/coordinator-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/coordinator-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/coordinator-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/coordinator-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/coordinator-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/coordinator-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/coordinator-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/coordinator-plugin/deployments", + "created_at": "2012-12-16T09:09:43Z", + "updated_at": "2018-06-29T08:54:14Z", + "pushed_at": "2017-04-13T02:04:28Z", + "git_url": "git://github.com/jenkinsci/coordinator-plugin.git", + "ssh_url": "git@github.com:jenkinsci/coordinator-plugin.git", + "clone_url": "https://github.com/jenkinsci/coordinator-plugin.git", + "svn_url": "https://github.com/jenkinsci/coordinator-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Coordinator", + "size": 1028, + "stargazers_count": 16, + "watchers_count": 16, + "language": "JavaScript", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 8, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 4, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 8, + "open_issues": 4, + "watchers": 16, + "default_branch": "develop", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 7206596, + "node_id": "MDEwOlJlcG9zaXRvcnk3MjA2NTk2", + "name": "concurrent-run-blocker-plugin", + "full_name": "jenkinsci/concurrent-run-blocker-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/concurrent-run-blocker-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/concurrent-run-blocker-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/concurrent-run-blocker-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/concurrent-run-blocker-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/concurrent-run-blocker-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/concurrent-run-blocker-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/concurrent-run-blocker-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/concurrent-run-blocker-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/concurrent-run-blocker-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/concurrent-run-blocker-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/concurrent-run-blocker-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/concurrent-run-blocker-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/concurrent-run-blocker-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/concurrent-run-blocker-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/concurrent-run-blocker-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/concurrent-run-blocker-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/concurrent-run-blocker-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/concurrent-run-blocker-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/concurrent-run-blocker-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/concurrent-run-blocker-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/concurrent-run-blocker-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/concurrent-run-blocker-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/concurrent-run-blocker-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/concurrent-run-blocker-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/concurrent-run-blocker-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/concurrent-run-blocker-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/concurrent-run-blocker-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/concurrent-run-blocker-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/concurrent-run-blocker-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/concurrent-run-blocker-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/concurrent-run-blocker-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/concurrent-run-blocker-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/concurrent-run-blocker-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/concurrent-run-blocker-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/concurrent-run-blocker-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/concurrent-run-blocker-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/concurrent-run-blocker-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/concurrent-run-blocker-plugin/deployments", + "created_at": "2012-12-17T15:01:16Z", + "updated_at": "2013-11-10T01:57:56Z", + "pushed_at": "2013-11-10T01:57:49Z", + "git_url": "git://github.com/jenkinsci/concurrent-run-blocker-plugin.git", + "ssh_url": "git@github.com:jenkinsci/concurrent-run-blocker-plugin.git", + "clone_url": "https://github.com/jenkinsci/concurrent-run-blocker-plugin.git", + "svn_url": "https://github.com/jenkinsci/concurrent-run-blocker-plugin", + "homepage": "", + "size": 91, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 7210120, + "node_id": "MDEwOlJlcG9zaXRvcnk3MjEwMTIw", + "name": "database-drizzle-plugin", + "full_name": "jenkinsci/database-drizzle-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/database-drizzle-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/database-drizzle-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/database-drizzle-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/database-drizzle-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/database-drizzle-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/database-drizzle-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/database-drizzle-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/database-drizzle-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/database-drizzle-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/database-drizzle-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/database-drizzle-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/database-drizzle-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/database-drizzle-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/database-drizzle-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/database-drizzle-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/database-drizzle-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/database-drizzle-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/database-drizzle-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/database-drizzle-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/database-drizzle-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/database-drizzle-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/database-drizzle-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/database-drizzle-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/database-drizzle-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/database-drizzle-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/database-drizzle-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/database-drizzle-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/database-drizzle-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/database-drizzle-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/database-drizzle-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/database-drizzle-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/database-drizzle-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/database-drizzle-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/database-drizzle-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/database-drizzle-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/database-drizzle-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/database-drizzle-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/database-drizzle-plugin/deployments", + "created_at": "2012-12-17T18:45:08Z", + "updated_at": "2013-11-10T01:59:44Z", + "pushed_at": "2013-11-10T01:59:38Z", + "git_url": "git://github.com/jenkinsci/database-drizzle-plugin.git", + "ssh_url": "git@github.com:jenkinsci/database-drizzle-plugin.git", + "clone_url": "https://github.com/jenkinsci/database-drizzle-plugin.git", + "svn_url": "https://github.com/jenkinsci/database-drizzle-plugin", + "homepage": "https://wiki.jenkins-ci.org/pages/viewpage.action?pageId=65669136", + "size": 124, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 7331328, + "node_id": "MDEwOlJlcG9zaXRvcnk3MzMxMzI4", + "name": "backend-goto-app", + "full_name": "jenkinsci/backend-goto-app", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/backend-goto-app", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/backend-goto-app", + "forks_url": "https://api.github.com/repos/jenkinsci/backend-goto-app/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/backend-goto-app/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/backend-goto-app/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/backend-goto-app/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/backend-goto-app/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/backend-goto-app/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/backend-goto-app/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/backend-goto-app/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/backend-goto-app/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/backend-goto-app/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/backend-goto-app/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/backend-goto-app/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/backend-goto-app/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/backend-goto-app/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/backend-goto-app/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/backend-goto-app/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/backend-goto-app/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/backend-goto-app/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/backend-goto-app/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/backend-goto-app/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/backend-goto-app/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/backend-goto-app/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/backend-goto-app/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/backend-goto-app/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/backend-goto-app/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/backend-goto-app/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/backend-goto-app/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/backend-goto-app/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/backend-goto-app/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/backend-goto-app/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/backend-goto-app/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/backend-goto-app/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/backend-goto-app/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/backend-goto-app/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/backend-goto-app/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/backend-goto-app/deployments", + "created_at": "2012-12-26T20:01:59Z", + "updated_at": "2018-07-19T04:05:48Z", + "pushed_at": "2013-11-10T01:53:57Z", + "git_url": "git://github.com/jenkinsci/backend-goto-app.git", + "ssh_url": "git@github.com:jenkinsci/backend-goto-app.git", + "clone_url": "https://github.com/jenkinsci/backend-goto-app.git", + "svn_url": "https://github.com/jenkinsci/backend-goto-app", + "homepage": "http://goto.jenkins-ci.org/", + "size": 196, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": true, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 7341400, + "node_id": "MDEwOlJlcG9zaXRvcnk3MzQxNDAw", + "name": "deploygate-plugin", + "full_name": "jenkinsci/deploygate-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/deploygate-plugin", + "description": "deploygate-plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/deploygate-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/deploygate-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/deploygate-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/deploygate-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/deploygate-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/deploygate-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/deploygate-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/deploygate-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/deploygate-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/deploygate-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/deploygate-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/deploygate-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/deploygate-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/deploygate-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/deploygate-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/deploygate-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/deploygate-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/deploygate-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/deploygate-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/deploygate-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/deploygate-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/deploygate-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/deploygate-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/deploygate-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/deploygate-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/deploygate-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/deploygate-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/deploygate-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/deploygate-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/deploygate-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/deploygate-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/deploygate-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/deploygate-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/deploygate-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/deploygate-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/deploygate-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/deploygate-plugin/deployments", + "created_at": "2012-12-27T14:30:51Z", + "updated_at": "2013-11-10T02:00:10Z", + "pushed_at": "2013-11-10T02:00:08Z", + "git_url": "git://github.com/jenkinsci/deploygate-plugin.git", + "ssh_url": "git@github.com:jenkinsci/deploygate-plugin.git", + "clone_url": "https://github.com/jenkinsci/deploygate-plugin.git", + "svn_url": "https://github.com/jenkinsci/deploygate-plugin", + "homepage": null, + "size": 81203, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 7362945, + "node_id": "MDEwOlJlcG9zaXRvcnk3MzYyOTQ1", + "name": "submitted-recipes", + "full_name": "jenkinsci/submitted-recipes", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/submitted-recipes", + "description": "Collects recipes submitted from users", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/submitted-recipes", + "forks_url": "https://api.github.com/repos/jenkinsci/submitted-recipes/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/submitted-recipes/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/submitted-recipes/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/submitted-recipes/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/submitted-recipes/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/submitted-recipes/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/submitted-recipes/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/submitted-recipes/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/submitted-recipes/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/submitted-recipes/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/submitted-recipes/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/submitted-recipes/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/submitted-recipes/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/submitted-recipes/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/submitted-recipes/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/submitted-recipes/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/submitted-recipes/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/submitted-recipes/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/submitted-recipes/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/submitted-recipes/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/submitted-recipes/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/submitted-recipes/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/submitted-recipes/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/submitted-recipes/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/submitted-recipes/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/submitted-recipes/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/submitted-recipes/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/submitted-recipes/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/submitted-recipes/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/submitted-recipes/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/submitted-recipes/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/submitted-recipes/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/submitted-recipes/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/submitted-recipes/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/submitted-recipes/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/submitted-recipes/deployments", + "created_at": "2012-12-29T04:39:52Z", + "updated_at": "2013-11-25T19:32:06Z", + "pushed_at": "2014-08-11T07:07:38Z", + "git_url": "git://github.com/jenkinsci/submitted-recipes.git", + "ssh_url": "git@github.com:jenkinsci/submitted-recipes.git", + "clone_url": "https://github.com/jenkinsci/submitted-recipes.git", + "svn_url": "https://github.com/jenkinsci/submitted-recipes", + "homepage": null, + "size": 196, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "inbound", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 7363391, + "node_id": "MDEwOlJlcG9zaXRvcnk3MzYzMzkx", + "name": "backend-recipe-submission-app", + "full_name": "jenkinsci/backend-recipe-submission-app", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/backend-recipe-submission-app", + "description": "Recipe submission application that runs on http://recipe.jenkins-ci.org/", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/backend-recipe-submission-app", + "forks_url": "https://api.github.com/repos/jenkinsci/backend-recipe-submission-app/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/backend-recipe-submission-app/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/backend-recipe-submission-app/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/backend-recipe-submission-app/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/backend-recipe-submission-app/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/backend-recipe-submission-app/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/backend-recipe-submission-app/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/backend-recipe-submission-app/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/backend-recipe-submission-app/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/backend-recipe-submission-app/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/backend-recipe-submission-app/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/backend-recipe-submission-app/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/backend-recipe-submission-app/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/backend-recipe-submission-app/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/backend-recipe-submission-app/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/backend-recipe-submission-app/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/backend-recipe-submission-app/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/backend-recipe-submission-app/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/backend-recipe-submission-app/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/backend-recipe-submission-app/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/backend-recipe-submission-app/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/backend-recipe-submission-app/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/backend-recipe-submission-app/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/backend-recipe-submission-app/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/backend-recipe-submission-app/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/backend-recipe-submission-app/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/backend-recipe-submission-app/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/backend-recipe-submission-app/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/backend-recipe-submission-app/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/backend-recipe-submission-app/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/backend-recipe-submission-app/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/backend-recipe-submission-app/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/backend-recipe-submission-app/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/backend-recipe-submission-app/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/backend-recipe-submission-app/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/backend-recipe-submission-app/deployments", + "created_at": "2012-12-29T05:45:33Z", + "updated_at": "2018-01-03T17:52:13Z", + "pushed_at": "2012-12-29T06:11:03Z", + "git_url": "git://github.com/jenkinsci/backend-recipe-submission-app.git", + "ssh_url": "git@github.com:jenkinsci/backend-recipe-submission-app.git", + "clone_url": "https://github.com/jenkinsci/backend-recipe-submission-app.git", + "svn_url": "https://github.com/jenkinsci/backend-recipe-submission-app", + "homepage": "", + "size": 136, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": true, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 7410811, + "node_id": "MDEwOlJlcG9zaXRvcnk3NDEwODEx", + "name": "remote-terminal-access-plugin", + "full_name": "jenkinsci/remote-terminal-access-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/remote-terminal-access-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/remote-terminal-access-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/remote-terminal-access-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/remote-terminal-access-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/remote-terminal-access-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/remote-terminal-access-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/remote-terminal-access-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/remote-terminal-access-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/remote-terminal-access-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/remote-terminal-access-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/remote-terminal-access-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/remote-terminal-access-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/remote-terminal-access-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/remote-terminal-access-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/remote-terminal-access-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/remote-terminal-access-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/remote-terminal-access-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/remote-terminal-access-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/remote-terminal-access-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/remote-terminal-access-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/remote-terminal-access-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/remote-terminal-access-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/remote-terminal-access-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/remote-terminal-access-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/remote-terminal-access-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/remote-terminal-access-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/remote-terminal-access-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/remote-terminal-access-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/remote-terminal-access-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/remote-terminal-access-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/remote-terminal-access-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/remote-terminal-access-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/remote-terminal-access-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/remote-terminal-access-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/remote-terminal-access-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/remote-terminal-access-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/remote-terminal-access-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/remote-terminal-access-plugin/deployments", + "created_at": "2013-01-02T17:52:53Z", + "updated_at": "2015-10-26T05:18:15Z", + "pushed_at": "2019-10-08T12:27:59Z", + "git_url": "git://github.com/jenkinsci/remote-terminal-access-plugin.git", + "ssh_url": "git@github.com:jenkinsci/remote-terminal-access-plugin.git", + "clone_url": "https://github.com/jenkinsci/remote-terminal-access-plugin.git", + "svn_url": "https://github.com/jenkinsci/remote-terminal-access-plugin", + "homepage": "", + "size": 340, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 5, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 7445542, + "node_id": "MDEwOlJlcG9zaXRvcnk3NDQ1NTQy", + "name": "constant-pool-scanner", + "full_name": "jenkinsci/constant-pool-scanner", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/constant-pool-scanner", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/constant-pool-scanner", + "forks_url": "https://api.github.com/repos/jenkinsci/constant-pool-scanner/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/constant-pool-scanner/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/constant-pool-scanner/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/constant-pool-scanner/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/constant-pool-scanner/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/constant-pool-scanner/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/constant-pool-scanner/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/constant-pool-scanner/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/constant-pool-scanner/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/constant-pool-scanner/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/constant-pool-scanner/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/constant-pool-scanner/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/constant-pool-scanner/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/constant-pool-scanner/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/constant-pool-scanner/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/constant-pool-scanner/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/constant-pool-scanner/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/constant-pool-scanner/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/constant-pool-scanner/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/constant-pool-scanner/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/constant-pool-scanner/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/constant-pool-scanner/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/constant-pool-scanner/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/constant-pool-scanner/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/constant-pool-scanner/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/constant-pool-scanner/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/constant-pool-scanner/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/constant-pool-scanner/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/constant-pool-scanner/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/constant-pool-scanner/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/constant-pool-scanner/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/constant-pool-scanner/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/constant-pool-scanner/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/constant-pool-scanner/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/constant-pool-scanner/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/constant-pool-scanner/deployments", + "created_at": "2013-01-04T18:59:08Z", + "updated_at": "2013-11-10T01:58:17Z", + "pushed_at": "2013-11-10T01:58:16Z", + "git_url": "git://github.com/jenkinsci/constant-pool-scanner.git", + "ssh_url": "git@github.com:jenkinsci/constant-pool-scanner.git", + "clone_url": "https://github.com/jenkinsci/constant-pool-scanner.git", + "svn_url": "https://github.com/jenkinsci/constant-pool-scanner", + "homepage": "", + "size": 180, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 0, + "open_issues": 2, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 7457178, + "node_id": "MDEwOlJlcG9zaXRvcnk3NDU3MTc4", + "name": "extensible-choice-parameter-plugin", + "full_name": "jenkinsci/extensible-choice-parameter-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/extensible-choice-parameter-plugin", + "description": "Jenkins plugin to define choice build parameters where the way to provide choices can be extended.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/extensible-choice-parameter-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/extensible-choice-parameter-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/extensible-choice-parameter-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/extensible-choice-parameter-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/extensible-choice-parameter-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/extensible-choice-parameter-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/extensible-choice-parameter-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/extensible-choice-parameter-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/extensible-choice-parameter-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/extensible-choice-parameter-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/extensible-choice-parameter-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/extensible-choice-parameter-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/extensible-choice-parameter-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/extensible-choice-parameter-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/extensible-choice-parameter-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/extensible-choice-parameter-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/extensible-choice-parameter-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/extensible-choice-parameter-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/extensible-choice-parameter-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/extensible-choice-parameter-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/extensible-choice-parameter-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/extensible-choice-parameter-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/extensible-choice-parameter-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/extensible-choice-parameter-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/extensible-choice-parameter-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/extensible-choice-parameter-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/extensible-choice-parameter-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/extensible-choice-parameter-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/extensible-choice-parameter-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/extensible-choice-parameter-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/extensible-choice-parameter-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/extensible-choice-parameter-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/extensible-choice-parameter-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/extensible-choice-parameter-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/extensible-choice-parameter-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/extensible-choice-parameter-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/extensible-choice-parameter-plugin/deployments", + "created_at": "2013-01-05T16:12:48Z", + "updated_at": "2019-10-08T09:58:42Z", + "pushed_at": "2019-09-24T13:26:08Z", + "git_url": "git://github.com/jenkinsci/extensible-choice-parameter-plugin.git", + "ssh_url": "git@github.com:jenkinsci/extensible-choice-parameter-plugin.git", + "clone_url": "https://github.com/jenkinsci/extensible-choice-parameter-plugin.git", + "svn_url": "https://github.com/jenkinsci/extensible-choice-parameter-plugin", + "homepage": "", + "size": 378, + "stargazers_count": 14, + "watchers_count": 14, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 25, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 25, + "open_issues": 2, + "watchers": 14, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 7473131, + "node_id": "MDEwOlJlcG9zaXRvcnk3NDczMTMx", + "name": "overthere-remoting", + "full_name": "jenkinsci/overthere-remoting", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/overthere-remoting", + "description": "Jenkins remoting + XebiaLabs overthere", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/overthere-remoting", + "forks_url": "https://api.github.com/repos/jenkinsci/overthere-remoting/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/overthere-remoting/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/overthere-remoting/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/overthere-remoting/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/overthere-remoting/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/overthere-remoting/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/overthere-remoting/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/overthere-remoting/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/overthere-remoting/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/overthere-remoting/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/overthere-remoting/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/overthere-remoting/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/overthere-remoting/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/overthere-remoting/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/overthere-remoting/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/overthere-remoting/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/overthere-remoting/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/overthere-remoting/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/overthere-remoting/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/overthere-remoting/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/overthere-remoting/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/overthere-remoting/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/overthere-remoting/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/overthere-remoting/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/overthere-remoting/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/overthere-remoting/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/overthere-remoting/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/overthere-remoting/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/overthere-remoting/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/overthere-remoting/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/overthere-remoting/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/overthere-remoting/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/overthere-remoting/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/overthere-remoting/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/overthere-remoting/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/overthere-remoting/deployments", + "created_at": "2013-01-06T21:49:02Z", + "updated_at": "2013-11-10T02:12:37Z", + "pushed_at": "2013-11-10T02:12:36Z", + "git_url": "git://github.com/jenkinsci/overthere-remoting.git", + "ssh_url": "git@github.com:jenkinsci/overthere-remoting.git", + "clone_url": "https://github.com/jenkinsci/overthere-remoting.git", + "svn_url": "https://github.com/jenkinsci/overthere-remoting", + "homepage": null, + "size": 128, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 7538345, + "node_id": "MDEwOlJlcG9zaXRvcnk3NTM4MzQ1", + "name": "callback-buildstep-plugin", + "full_name": "jenkinsci/callback-buildstep-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/callback-buildstep-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/callback-buildstep-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/callback-buildstep-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/callback-buildstep-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/callback-buildstep-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/callback-buildstep-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/callback-buildstep-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/callback-buildstep-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/callback-buildstep-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/callback-buildstep-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/callback-buildstep-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/callback-buildstep-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/callback-buildstep-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/callback-buildstep-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/callback-buildstep-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/callback-buildstep-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/callback-buildstep-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/callback-buildstep-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/callback-buildstep-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/callback-buildstep-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/callback-buildstep-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/callback-buildstep-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/callback-buildstep-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/callback-buildstep-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/callback-buildstep-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/callback-buildstep-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/callback-buildstep-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/callback-buildstep-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/callback-buildstep-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/callback-buildstep-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/callback-buildstep-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/callback-buildstep-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/callback-buildstep-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/callback-buildstep-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/callback-buildstep-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/callback-buildstep-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/callback-buildstep-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/callback-buildstep-plugin/deployments", + "created_at": "2013-01-10T09:46:25Z", + "updated_at": "2013-11-10T01:56:13Z", + "pushed_at": "2013-11-10T01:56:08Z", + "git_url": "git://github.com/jenkinsci/callback-buildstep-plugin.git", + "ssh_url": "git@github.com:jenkinsci/callback-buildstep-plugin.git", + "clone_url": "https://github.com/jenkinsci/callback-buildstep-plugin.git", + "svn_url": "https://github.com/jenkinsci/callback-buildstep-plugin", + "homepage": "", + "size": 108, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 7545138, + "node_id": "MDEwOlJlcG9zaXRvcnk3NTQ1MTM4", + "name": "slave-proxy-plugin", + "full_name": "jenkinsci/slave-proxy-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/slave-proxy-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/slave-proxy-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/slave-proxy-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/slave-proxy-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/slave-proxy-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/slave-proxy-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/slave-proxy-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/slave-proxy-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/slave-proxy-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/slave-proxy-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/slave-proxy-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/slave-proxy-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/slave-proxy-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/slave-proxy-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/slave-proxy-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/slave-proxy-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/slave-proxy-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/slave-proxy-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/slave-proxy-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/slave-proxy-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/slave-proxy-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/slave-proxy-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/slave-proxy-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/slave-proxy-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/slave-proxy-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/slave-proxy-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/slave-proxy-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/slave-proxy-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/slave-proxy-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/slave-proxy-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/slave-proxy-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/slave-proxy-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/slave-proxy-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/slave-proxy-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/slave-proxy-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/slave-proxy-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/slave-proxy-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/slave-proxy-plugin/deployments", + "created_at": "2013-01-10T17:13:22Z", + "updated_at": "2014-02-28T06:15:07Z", + "pushed_at": "2019-10-08T16:29:10Z", + "git_url": "git://github.com/jenkinsci/slave-proxy-plugin.git", + "ssh_url": "git@github.com:jenkinsci/slave-proxy-plugin.git", + "clone_url": "https://github.com/jenkinsci/slave-proxy-plugin.git", + "svn_url": "https://github.com/jenkinsci/slave-proxy-plugin", + "homepage": null, + "size": 160, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 2, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 7576327, + "node_id": "MDEwOlJlcG9zaXRvcnk3NTc2MzI3", + "name": "jobcopy-builder-plugin", + "full_name": "jenkinsci/jobcopy-builder-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jobcopy-builder-plugin", + "description": "Jenkins plugin to copy a job in a build step.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/jobcopy-builder-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/jobcopy-builder-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jobcopy-builder-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jobcopy-builder-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jobcopy-builder-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jobcopy-builder-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jobcopy-builder-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jobcopy-builder-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jobcopy-builder-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jobcopy-builder-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jobcopy-builder-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jobcopy-builder-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jobcopy-builder-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jobcopy-builder-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jobcopy-builder-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jobcopy-builder-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jobcopy-builder-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jobcopy-builder-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jobcopy-builder-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jobcopy-builder-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jobcopy-builder-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jobcopy-builder-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jobcopy-builder-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jobcopy-builder-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jobcopy-builder-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jobcopy-builder-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jobcopy-builder-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jobcopy-builder-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jobcopy-builder-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jobcopy-builder-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jobcopy-builder-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jobcopy-builder-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jobcopy-builder-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jobcopy-builder-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jobcopy-builder-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jobcopy-builder-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jobcopy-builder-plugin/deployments", + "created_at": "2013-01-12T14:44:51Z", + "updated_at": "2019-10-16T18:19:21Z", + "pushed_at": "2019-10-09T08:16:08Z", + "git_url": "git://github.com/jenkinsci/jobcopy-builder-plugin.git", + "ssh_url": "git@github.com:jenkinsci/jobcopy-builder-plugin.git", + "clone_url": "https://github.com/jenkinsci/jobcopy-builder-plugin.git", + "svn_url": "https://github.com/jenkinsci/jobcopy-builder-plugin", + "homepage": null, + "size": 149, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 14, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 14, + "open_issues": 0, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 7685785, + "node_id": "MDEwOlJlcG9zaXRvcnk3Njg1Nzg1", + "name": "backup-jobs-plugin", + "full_name": "jenkinsci/backup-jobs-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/backup-jobs-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/backup-jobs-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/backup-jobs-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/backup-jobs-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/backup-jobs-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/backup-jobs-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/backup-jobs-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/backup-jobs-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/backup-jobs-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/backup-jobs-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/backup-jobs-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/backup-jobs-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/backup-jobs-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/backup-jobs-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/backup-jobs-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/backup-jobs-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/backup-jobs-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/backup-jobs-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/backup-jobs-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/backup-jobs-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/backup-jobs-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/backup-jobs-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/backup-jobs-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/backup-jobs-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/backup-jobs-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/backup-jobs-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/backup-jobs-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/backup-jobs-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/backup-jobs-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/backup-jobs-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/backup-jobs-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/backup-jobs-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/backup-jobs-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/backup-jobs-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/backup-jobs-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/backup-jobs-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/backup-jobs-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/backup-jobs-plugin/deployments", + "created_at": "2013-01-18T11:47:10Z", + "updated_at": "2013-01-18T12:19:05Z", + "pushed_at": "2019-10-08T12:23:29Z", + "git_url": "git://github.com/jenkinsci/backup-jobs-plugin.git", + "ssh_url": "git@github.com:jenkinsci/backup-jobs-plugin.git", + "clone_url": "https://github.com/jenkinsci/backup-jobs-plugin.git", + "svn_url": "https://github.com/jenkinsci/backup-jobs-plugin", + "homepage": null, + "size": 112, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 1, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 7732564, + "node_id": "MDEwOlJlcG9zaXRvcnk3NzMyNTY0", + "name": "pendingchanges-plugin", + "full_name": "jenkinsci/pendingchanges-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/pendingchanges-plugin", + "description": "Jenkins plugin to detect version control changes not part of the most recent build", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/pendingchanges-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/pendingchanges-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/pendingchanges-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/pendingchanges-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/pendingchanges-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/pendingchanges-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/pendingchanges-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/pendingchanges-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/pendingchanges-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/pendingchanges-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/pendingchanges-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/pendingchanges-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/pendingchanges-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/pendingchanges-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/pendingchanges-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/pendingchanges-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/pendingchanges-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/pendingchanges-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/pendingchanges-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/pendingchanges-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/pendingchanges-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/pendingchanges-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/pendingchanges-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/pendingchanges-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/pendingchanges-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/pendingchanges-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/pendingchanges-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/pendingchanges-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/pendingchanges-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/pendingchanges-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/pendingchanges-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/pendingchanges-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/pendingchanges-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/pendingchanges-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/pendingchanges-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/pendingchanges-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/pendingchanges-plugin/deployments", + "created_at": "2013-01-21T13:17:57Z", + "updated_at": "2013-11-10T02:13:01Z", + "pushed_at": "2019-10-08T16:39:31Z", + "git_url": "git://github.com/jenkinsci/pendingchanges-plugin.git", + "ssh_url": "git@github.com:jenkinsci/pendingchanges-plugin.git", + "clone_url": "https://github.com/jenkinsci/pendingchanges-plugin.git", + "svn_url": "https://github.com/jenkinsci/pendingchanges-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 165, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 5, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 7748650, + "node_id": "MDEwOlJlcG9zaXRvcnk3NzQ4NjUw", + "name": "scala-plugin", + "full_name": "jenkinsci/scala-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/scala-plugin", + "description": "A Scala plugin for Jenkins continuous integration server", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/scala-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/scala-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/scala-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/scala-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/scala-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/scala-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/scala-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/scala-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/scala-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/scala-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/scala-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/scala-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/scala-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/scala-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/scala-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/scala-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/scala-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/scala-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/scala-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/scala-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/scala-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/scala-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/scala-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/scala-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/scala-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/scala-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/scala-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/scala-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/scala-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/scala-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/scala-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/scala-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/scala-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/scala-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/scala-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/scala-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/scala-plugin/deployments", + "created_at": "2013-01-22T08:24:50Z", + "updated_at": "2013-11-10T02:16:28Z", + "pushed_at": "2013-11-10T02:16:18Z", + "git_url": "git://github.com/jenkinsci/scala-plugin.git", + "ssh_url": "git@github.com:jenkinsci/scala-plugin.git", + "clone_url": "https://github.com/jenkinsci/scala-plugin.git", + "svn_url": "https://github.com/jenkinsci/scala-plugin", + "homepage": null, + "size": 104, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 7748981, + "node_id": "MDEwOlJlcG9zaXRvcnk3NzQ4OTgx", + "name": "subversion-mail-address-resolver-plugin", + "full_name": "jenkinsci/subversion-mail-address-resolver-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/subversion-mail-address-resolver-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/subversion-mail-address-resolver-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/subversion-mail-address-resolver-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/subversion-mail-address-resolver-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/subversion-mail-address-resolver-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/subversion-mail-address-resolver-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/subversion-mail-address-resolver-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/subversion-mail-address-resolver-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/subversion-mail-address-resolver-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/subversion-mail-address-resolver-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/subversion-mail-address-resolver-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/subversion-mail-address-resolver-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/subversion-mail-address-resolver-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/subversion-mail-address-resolver-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/subversion-mail-address-resolver-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/subversion-mail-address-resolver-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/subversion-mail-address-resolver-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/subversion-mail-address-resolver-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/subversion-mail-address-resolver-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/subversion-mail-address-resolver-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/subversion-mail-address-resolver-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/subversion-mail-address-resolver-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/subversion-mail-address-resolver-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/subversion-mail-address-resolver-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/subversion-mail-address-resolver-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/subversion-mail-address-resolver-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/subversion-mail-address-resolver-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/subversion-mail-address-resolver-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/subversion-mail-address-resolver-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/subversion-mail-address-resolver-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/subversion-mail-address-resolver-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/subversion-mail-address-resolver-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/subversion-mail-address-resolver-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/subversion-mail-address-resolver-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/subversion-mail-address-resolver-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/subversion-mail-address-resolver-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/subversion-mail-address-resolver-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/subversion-mail-address-resolver-plugin/deployments", + "created_at": "2013-01-22T08:50:58Z", + "updated_at": "2013-11-10T02:19:31Z", + "pushed_at": "2013-11-10T02:19:26Z", + "git_url": "git://github.com/jenkinsci/subversion-mail-address-resolver-plugin.git", + "ssh_url": "git@github.com:jenkinsci/subversion-mail-address-resolver-plugin.git", + "clone_url": "https://github.com/jenkinsci/subversion-mail-address-resolver-plugin.git", + "svn_url": "https://github.com/jenkinsci/subversion-mail-address-resolver-plugin", + "homepage": "", + "size": 108, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 7840953, + "node_id": "MDEwOlJlcG9zaXRvcnk3ODQwOTUz", + "name": "discard-old-build-plugin", + "full_name": "jenkinsci/discard-old-build-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/discard-old-build-plugin", + "description": "Discard Old Build is a Jenkins plugin that allows for setting build discard conditions with greater specificity than is available in the Jenkin's core function.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/discard-old-build-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/discard-old-build-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/discard-old-build-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/discard-old-build-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/discard-old-build-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/discard-old-build-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/discard-old-build-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/discard-old-build-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/discard-old-build-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/discard-old-build-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/discard-old-build-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/discard-old-build-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/discard-old-build-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/discard-old-build-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/discard-old-build-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/discard-old-build-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/discard-old-build-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/discard-old-build-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/discard-old-build-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/discard-old-build-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/discard-old-build-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/discard-old-build-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/discard-old-build-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/discard-old-build-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/discard-old-build-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/discard-old-build-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/discard-old-build-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/discard-old-build-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/discard-old-build-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/discard-old-build-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/discard-old-build-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/discard-old-build-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/discard-old-build-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/discard-old-build-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/discard-old-build-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/discard-old-build-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/discard-old-build-plugin/deployments", + "created_at": "2013-01-26T17:24:29Z", + "updated_at": "2019-06-24T17:48:14Z", + "pushed_at": "2019-09-24T10:25:04Z", + "git_url": "git://github.com/jenkinsci/discard-old-build-plugin.git", + "ssh_url": "git@github.com:jenkinsci/discard-old-build-plugin.git", + "clone_url": "https://github.com/jenkinsci/discard-old-build-plugin.git", + "svn_url": "https://github.com/jenkinsci/discard-old-build-plugin", + "homepage": "", + "size": 657, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 20, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 20, + "open_issues": 3, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 7841068, + "node_id": "MDEwOlJlcG9zaXRvcnk3ODQxMDY4", + "name": "vstestrunner-plugin", + "full_name": "jenkinsci/vstestrunner-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/vstestrunner-plugin", + "description": "VSTest.Console.exe execute plugin.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/vstestrunner-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/vstestrunner-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/vstestrunner-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/vstestrunner-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/vstestrunner-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/vstestrunner-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/vstestrunner-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/vstestrunner-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/vstestrunner-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/vstestrunner-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/vstestrunner-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/vstestrunner-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/vstestrunner-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/vstestrunner-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/vstestrunner-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/vstestrunner-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/vstestrunner-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/vstestrunner-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/vstestrunner-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/vstestrunner-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/vstestrunner-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/vstestrunner-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/vstestrunner-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/vstestrunner-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/vstestrunner-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/vstestrunner-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/vstestrunner-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/vstestrunner-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/vstestrunner-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/vstestrunner-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/vstestrunner-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/vstestrunner-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/vstestrunner-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/vstestrunner-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/vstestrunner-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/vstestrunner-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/vstestrunner-plugin/deployments", + "created_at": "2013-01-26T17:32:40Z", + "updated_at": "2019-10-23T05:44:48Z", + "pushed_at": "2019-10-23T05:44:46Z", + "git_url": "git://github.com/jenkinsci/vstestrunner-plugin.git", + "ssh_url": "git@github.com:jenkinsci/vstestrunner-plugin.git", + "clone_url": "https://github.com/jenkinsci/vstestrunner-plugin.git", + "svn_url": "https://github.com/jenkinsci/vstestrunner-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/VsTestRunner+Plugin", + "size": 119, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": false, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 16, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 16, + "open_issues": 2, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 7866853, + "node_id": "MDEwOlJlcG9zaXRvcnk3ODY2ODUz", + "name": "uptime-plugin", + "full_name": "jenkinsci/uptime-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/uptime-plugin", + "description": "Initial drop of Jenkins uptime plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/uptime-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/uptime-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/uptime-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/uptime-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/uptime-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/uptime-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/uptime-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/uptime-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/uptime-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/uptime-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/uptime-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/uptime-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/uptime-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/uptime-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/uptime-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/uptime-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/uptime-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/uptime-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/uptime-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/uptime-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/uptime-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/uptime-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/uptime-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/uptime-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/uptime-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/uptime-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/uptime-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/uptime-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/uptime-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/uptime-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/uptime-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/uptime-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/uptime-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/uptime-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/uptime-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/uptime-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/uptime-plugin/deployments", + "created_at": "2013-01-28T09:36:05Z", + "updated_at": "2019-10-18T23:33:59Z", + "pushed_at": "2019-10-18T23:33:57Z", + "git_url": "git://github.com/jenkinsci/uptime-plugin.git", + "ssh_url": "git@github.com:jenkinsci/uptime-plugin.git", + "clone_url": "https://github.com/jenkinsci/uptime-plugin.git", + "svn_url": "https://github.com/jenkinsci/uptime-plugin", + "homepage": null, + "size": 47, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Groovy", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 2, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 7866898, + "node_id": "MDEwOlJlcG9zaXRvcnk3ODY2ODk4", + "name": "logstash-plugin", + "full_name": "jenkinsci/logstash-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/logstash-plugin", + "description": "Jenkins plugin to ship the console log off to Logstash", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/logstash-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/logstash-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/logstash-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/logstash-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/logstash-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/logstash-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/logstash-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/logstash-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/logstash-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/logstash-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/logstash-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/logstash-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/logstash-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/logstash-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/logstash-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/logstash-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/logstash-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/logstash-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/logstash-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/logstash-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/logstash-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/logstash-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/logstash-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/logstash-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/logstash-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/logstash-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/logstash-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/logstash-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/logstash-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/logstash-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/logstash-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/logstash-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/logstash-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/logstash-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/logstash-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/logstash-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/logstash-plugin/deployments", + "created_at": "2013-01-28T09:38:33Z", + "updated_at": "2019-09-06T10:27:07Z", + "pushed_at": "2019-08-14T14:20:11Z", + "git_url": "git://github.com/jenkinsci/logstash-plugin.git", + "ssh_url": "git@github.com:jenkinsci/logstash-plugin.git", + "clone_url": "https://github.com/jenkinsci/logstash-plugin.git", + "svn_url": "https://github.com/jenkinsci/logstash-plugin", + "homepage": null, + "size": 502, + "stargazers_count": 51, + "watchers_count": 51, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 78, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 8, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 78, + "open_issues": 8, + "watchers": 51, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 7868496, + "node_id": "MDEwOlJlcG9zaXRvcnk3ODY4NDk2", + "name": "tcl-plugin", + "full_name": "jenkinsci/tcl-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/tcl-plugin", + "description": "implements Tcl buildstep & Co for jenkins", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/tcl-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/tcl-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/tcl-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/tcl-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/tcl-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/tcl-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/tcl-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/tcl-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/tcl-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/tcl-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/tcl-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/tcl-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/tcl-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/tcl-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/tcl-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/tcl-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/tcl-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/tcl-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/tcl-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/tcl-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/tcl-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/tcl-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/tcl-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/tcl-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/tcl-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/tcl-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/tcl-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/tcl-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/tcl-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/tcl-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/tcl-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/tcl-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/tcl-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/tcl-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/tcl-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/tcl-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/tcl-plugin/deployments", + "created_at": "2013-01-28T11:26:22Z", + "updated_at": "2013-11-10T02:20:15Z", + "pushed_at": "2013-11-10T02:20:07Z", + "git_url": "git://github.com/jenkinsci/tcl-plugin.git", + "ssh_url": "git@github.com:jenkinsci/tcl-plugin.git", + "clone_url": "https://github.com/jenkinsci/tcl-plugin.git", + "svn_url": "https://github.com/jenkinsci/tcl-plugin", + "homepage": null, + "size": 5396, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 7888860, + "node_id": "MDEwOlJlcG9zaXRvcnk3ODg4ODYw", + "name": "mttr-plugin", + "full_name": "jenkinsci/mttr-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/mttr-plugin", + "description": "a jenkins plugin, statistics job builds mean time to repair.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/mttr-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/mttr-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/mttr-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/mttr-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/mttr-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/mttr-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/mttr-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/mttr-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/mttr-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/mttr-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/mttr-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/mttr-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/mttr-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/mttr-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/mttr-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/mttr-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/mttr-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/mttr-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/mttr-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/mttr-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/mttr-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/mttr-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/mttr-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/mttr-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/mttr-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/mttr-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/mttr-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/mttr-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/mttr-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/mttr-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/mttr-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/mttr-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/mttr-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/mttr-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/mttr-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/mttr-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/mttr-plugin/deployments", + "created_at": "2013-01-29T09:11:30Z", + "updated_at": "2017-06-16T07:25:46Z", + "pushed_at": "2016-12-05T15:30:18Z", + "git_url": "git://github.com/jenkinsci/mttr-plugin.git", + "ssh_url": "git@github.com:jenkinsci/mttr-plugin.git", + "clone_url": "https://github.com/jenkinsci/mttr-plugin.git", + "svn_url": "https://github.com/jenkinsci/mttr-plugin", + "homepage": "", + "size": 25, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 5, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 7889029, + "node_id": "MDEwOlJlcG9zaXRvcnk3ODg5MDI5", + "name": "crittercism-dsym-plugin", + "full_name": "jenkinsci/crittercism-dsym-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/crittercism-dsym-plugin", + "description": "A Jenkins CI plugin for uploading dSYM files to Crittercism.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/crittercism-dsym-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/crittercism-dsym-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/crittercism-dsym-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/crittercism-dsym-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/crittercism-dsym-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/crittercism-dsym-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/crittercism-dsym-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/crittercism-dsym-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/crittercism-dsym-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/crittercism-dsym-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/crittercism-dsym-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/crittercism-dsym-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/crittercism-dsym-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/crittercism-dsym-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/crittercism-dsym-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/crittercism-dsym-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/crittercism-dsym-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/crittercism-dsym-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/crittercism-dsym-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/crittercism-dsym-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/crittercism-dsym-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/crittercism-dsym-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/crittercism-dsym-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/crittercism-dsym-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/crittercism-dsym-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/crittercism-dsym-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/crittercism-dsym-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/crittercism-dsym-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/crittercism-dsym-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/crittercism-dsym-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/crittercism-dsym-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/crittercism-dsym-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/crittercism-dsym-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/crittercism-dsym-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/crittercism-dsym-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/crittercism-dsym-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/crittercism-dsym-plugin/deployments", + "created_at": "2013-01-29T09:21:57Z", + "updated_at": "2016-03-15T17:25:28Z", + "pushed_at": "2014-05-21T17:01:28Z", + "git_url": "git://github.com/jenkinsci/crittercism-dsym-plugin.git", + "ssh_url": "git@github.com:jenkinsci/crittercism-dsym-plugin.git", + "clone_url": "https://github.com/jenkinsci/crittercism-dsym-plugin.git", + "svn_url": "https://github.com/jenkinsci/crittercism-dsym-plugin", + "homepage": null, + "size": 82029, + "stargazers_count": 4, + "watchers_count": 4, + "language": "CSS", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": null, + "forks": 5, + "open_issues": 3, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 7895210, + "node_id": "MDEwOlJlcG9zaXRvcnk3ODk1MjEw", + "name": "testInProgress-plugin", + "full_name": "jenkinsci/testInProgress-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/testInProgress-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/testInProgress-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/testInProgress-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/testInProgress-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/testInProgress-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/testInProgress-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/testInProgress-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/testInProgress-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/testInProgress-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/testInProgress-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/testInProgress-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/testInProgress-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/testInProgress-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/testInProgress-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/testInProgress-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/testInProgress-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/testInProgress-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/testInProgress-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/testInProgress-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/testInProgress-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/testInProgress-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/testInProgress-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/testInProgress-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/testInProgress-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/testInProgress-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/testInProgress-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/testInProgress-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/testInProgress-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/testInProgress-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/testInProgress-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/testInProgress-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/testInProgress-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/testInProgress-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/testInProgress-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/testInProgress-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/testInProgress-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/testInProgress-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/testInProgress-plugin/deployments", + "created_at": "2013-01-29T15:46:52Z", + "updated_at": "2017-09-06T07:51:53Z", + "pushed_at": "2017-09-27T02:58:23Z", + "git_url": "git://github.com/jenkinsci/testInProgress-plugin.git", + "ssh_url": "git@github.com:jenkinsci/testInProgress-plugin.git", + "clone_url": "https://github.com/jenkinsci/testInProgress-plugin.git", + "svn_url": "https://github.com/jenkinsci/testInProgress-plugin", + "homepage": null, + "size": 4010, + "stargazers_count": 3, + "watchers_count": 3, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 11, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "epl-1.0", + "name": "Eclipse Public License 1.0", + "spdx_id": "EPL-1.0", + "url": "https://api.github.com/licenses/epl-1.0", + "node_id": "MDc6TGljZW5zZTc=" + }, + "forks": 11, + "open_issues": 1, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 7900455, + "node_id": "MDEwOlJlcG9zaXRvcnk3OTAwNDU1", + "name": "memory-map-plugin", + "full_name": "jenkinsci/memory-map-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/memory-map-plugin", + "description": "A repository for the memory-map-plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/memory-map-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/memory-map-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/memory-map-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/memory-map-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/memory-map-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/memory-map-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/memory-map-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/memory-map-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/memory-map-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/memory-map-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/memory-map-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/memory-map-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/memory-map-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/memory-map-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/memory-map-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/memory-map-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/memory-map-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/memory-map-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/memory-map-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/memory-map-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/memory-map-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/memory-map-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/memory-map-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/memory-map-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/memory-map-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/memory-map-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/memory-map-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/memory-map-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/memory-map-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/memory-map-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/memory-map-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/memory-map-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/memory-map-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/memory-map-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/memory-map-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/memory-map-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/memory-map-plugin/deployments", + "created_at": "2013-01-29T20:30:34Z", + "updated_at": "2018-04-06T07:50:16Z", + "pushed_at": "2019-10-08T16:27:18Z", + "git_url": "git://github.com/jenkinsci/memory-map-plugin.git", + "ssh_url": "git@github.com:jenkinsci/memory-map-plugin.git", + "clone_url": "https://github.com/jenkinsci/memory-map-plugin.git", + "svn_url": "https://github.com/jenkinsci/memory-map-plugin", + "homepage": null, + "size": 2623, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 4, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 7949144, + "node_id": "MDEwOlJlcG9zaXRvcnk3OTQ5MTQ0", + "name": "cvs-mail-address-resolver-plugin", + "full_name": "jenkinsci/cvs-mail-address-resolver-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/cvs-mail-address-resolver-plugin", + "description": "Jenkins CVS Mail Address Resolver Plug-in.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/cvs-mail-address-resolver-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/cvs-mail-address-resolver-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/cvs-mail-address-resolver-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/cvs-mail-address-resolver-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/cvs-mail-address-resolver-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/cvs-mail-address-resolver-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/cvs-mail-address-resolver-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/cvs-mail-address-resolver-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/cvs-mail-address-resolver-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/cvs-mail-address-resolver-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/cvs-mail-address-resolver-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/cvs-mail-address-resolver-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/cvs-mail-address-resolver-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/cvs-mail-address-resolver-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/cvs-mail-address-resolver-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/cvs-mail-address-resolver-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/cvs-mail-address-resolver-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/cvs-mail-address-resolver-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/cvs-mail-address-resolver-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/cvs-mail-address-resolver-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/cvs-mail-address-resolver-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/cvs-mail-address-resolver-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/cvs-mail-address-resolver-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/cvs-mail-address-resolver-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/cvs-mail-address-resolver-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/cvs-mail-address-resolver-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/cvs-mail-address-resolver-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/cvs-mail-address-resolver-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/cvs-mail-address-resolver-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/cvs-mail-address-resolver-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/cvs-mail-address-resolver-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/cvs-mail-address-resolver-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/cvs-mail-address-resolver-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/cvs-mail-address-resolver-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/cvs-mail-address-resolver-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/cvs-mail-address-resolver-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/cvs-mail-address-resolver-plugin/deployments", + "created_at": "2013-02-01T00:56:51Z", + "updated_at": "2013-11-10T01:59:33Z", + "pushed_at": "2013-11-10T01:59:26Z", + "git_url": "git://github.com/jenkinsci/cvs-mail-address-resolver-plugin.git", + "ssh_url": "git@github.com:jenkinsci/cvs-mail-address-resolver-plugin.git", + "clone_url": "https://github.com/jenkinsci/cvs-mail-address-resolver-plugin.git", + "svn_url": "https://github.com/jenkinsci/cvs-mail-address-resolver-plugin", + "homepage": "http://wiki.jenkins-ci.org/display/JENKINS/CVS+Mail+Address+Resolver+Plugin", + "size": 95, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 7960016, + "node_id": "MDEwOlJlcG9zaXRvcnk3OTYwMDE2", + "name": "appdynamics-plugin", + "full_name": "jenkinsci/appdynamics-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/appdynamics-plugin", + "description": "Jenkins plugin for AppDynamics integration, i.e. for getting performance measurements during acceptance performance test.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/appdynamics-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/appdynamics-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/appdynamics-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/appdynamics-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/appdynamics-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/appdynamics-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/appdynamics-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/appdynamics-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/appdynamics-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/appdynamics-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/appdynamics-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/appdynamics-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/appdynamics-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/appdynamics-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/appdynamics-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/appdynamics-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/appdynamics-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/appdynamics-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/appdynamics-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/appdynamics-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/appdynamics-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/appdynamics-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/appdynamics-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/appdynamics-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/appdynamics-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/appdynamics-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/appdynamics-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/appdynamics-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/appdynamics-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/appdynamics-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/appdynamics-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/appdynamics-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/appdynamics-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/appdynamics-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/appdynamics-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/appdynamics-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/appdynamics-plugin/deployments", + "created_at": "2013-02-01T15:00:41Z", + "updated_at": "2019-02-07T15:50:08Z", + "pushed_at": "2019-02-07T15:50:06Z", + "git_url": "git://github.com/jenkinsci/appdynamics-plugin.git", + "ssh_url": "git@github.com:jenkinsci/appdynamics-plugin.git", + "clone_url": "https://github.com/jenkinsci/appdynamics-plugin.git", + "svn_url": "https://github.com/jenkinsci/appdynamics-plugin", + "homepage": null, + "size": 112, + "stargazers_count": 12, + "watchers_count": 12, + "language": "Java", + "has_issues": true, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 10, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 10, + "open_issues": 2, + "watchers": 12, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 8006045, + "node_id": "MDEwOlJlcG9zaXRvcnk4MDA2MDQ1", + "name": "livescreenshot-plugin", + "full_name": "jenkinsci/livescreenshot-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/livescreenshot-plugin", + "description": "Live VM screenshot of Jenkins jobs", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/livescreenshot-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/livescreenshot-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/livescreenshot-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/livescreenshot-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/livescreenshot-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/livescreenshot-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/livescreenshot-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/livescreenshot-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/livescreenshot-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/livescreenshot-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/livescreenshot-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/livescreenshot-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/livescreenshot-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/livescreenshot-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/livescreenshot-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/livescreenshot-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/livescreenshot-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/livescreenshot-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/livescreenshot-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/livescreenshot-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/livescreenshot-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/livescreenshot-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/livescreenshot-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/livescreenshot-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/livescreenshot-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/livescreenshot-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/livescreenshot-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/livescreenshot-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/livescreenshot-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/livescreenshot-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/livescreenshot-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/livescreenshot-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/livescreenshot-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/livescreenshot-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/livescreenshot-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/livescreenshot-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/livescreenshot-plugin/deployments", + "created_at": "2013-02-04T11:27:02Z", + "updated_at": "2019-10-08T17:10:13Z", + "pushed_at": "2019-10-08T17:10:11Z", + "git_url": "git://github.com/jenkinsci/livescreenshot-plugin.git", + "ssh_url": "git@github.com:jenkinsci/livescreenshot-plugin.git", + "clone_url": "https://github.com/jenkinsci/livescreenshot-plugin.git", + "svn_url": "https://github.com/jenkinsci/livescreenshot-plugin", + "homepage": "", + "size": 61, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 4, + "open_issues": 1, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 8032665, + "node_id": "MDEwOlJlcG9zaXRvcnk4MDMyNjY1", + "name": "model-ant-project", + "full_name": "jenkinsci/model-ant-project", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/model-ant-project", + "description": "Simple Ant project useful as a example/demo", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/model-ant-project", + "forks_url": "https://api.github.com/repos/jenkinsci/model-ant-project/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/model-ant-project/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/model-ant-project/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/model-ant-project/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/model-ant-project/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/model-ant-project/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/model-ant-project/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/model-ant-project/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/model-ant-project/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/model-ant-project/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/model-ant-project/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/model-ant-project/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/model-ant-project/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/model-ant-project/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/model-ant-project/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/model-ant-project/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/model-ant-project/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/model-ant-project/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/model-ant-project/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/model-ant-project/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/model-ant-project/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/model-ant-project/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/model-ant-project/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/model-ant-project/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/model-ant-project/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/model-ant-project/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/model-ant-project/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/model-ant-project/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/model-ant-project/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/model-ant-project/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/model-ant-project/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/model-ant-project/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/model-ant-project/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/model-ant-project/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/model-ant-project/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/model-ant-project/deployments", + "created_at": "2013-02-05T16:14:44Z", + "updated_at": "2014-01-30T07:16:47Z", + "pushed_at": "2013-02-22T19:57:15Z", + "git_url": "git://github.com/jenkinsci/model-ant-project.git", + "ssh_url": "git@github.com:jenkinsci/model-ant-project.git", + "clone_url": "https://github.com/jenkinsci/model-ant-project.git", + "svn_url": "https://github.com/jenkinsci/model-ant-project", + "homepage": null, + "size": 7600, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Shell", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 37, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 37, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 8137203, + "node_id": "MDEwOlJlcG9zaXRvcnk4MTM3MjAz", + "name": "cucumber-reports-plugin", + "full_name": "jenkinsci/cucumber-reports-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/cucumber-reports-plugin", + "description": "Jenkins plugin to generate cucumber-jvm reports", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/cucumber-reports-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/cucumber-reports-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/cucumber-reports-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/cucumber-reports-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/cucumber-reports-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/cucumber-reports-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/cucumber-reports-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/cucumber-reports-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/cucumber-reports-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/cucumber-reports-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/cucumber-reports-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/cucumber-reports-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/cucumber-reports-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/cucumber-reports-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/cucumber-reports-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/cucumber-reports-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/cucumber-reports-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/cucumber-reports-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/cucumber-reports-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/cucumber-reports-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/cucumber-reports-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/cucumber-reports-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/cucumber-reports-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/cucumber-reports-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/cucumber-reports-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/cucumber-reports-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/cucumber-reports-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/cucumber-reports-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/cucumber-reports-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/cucumber-reports-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/cucumber-reports-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/cucumber-reports-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/cucumber-reports-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/cucumber-reports-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/cucumber-reports-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/cucumber-reports-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/cucumber-reports-plugin/deployments", + "created_at": "2013-02-11T11:49:39Z", + "updated_at": "2019-10-01T01:14:11Z", + "pushed_at": "2019-10-16T20:26:54Z", + "git_url": "git://github.com/jenkinsci/cucumber-reports-plugin.git", + "ssh_url": "git@github.com:jenkinsci/cucumber-reports-plugin.git", + "clone_url": "https://github.com/jenkinsci/cucumber-reports-plugin.git", + "svn_url": "https://github.com/jenkinsci/cucumber-reports-plugin", + "homepage": "", + "size": 4229, + "stargazers_count": 140, + "watchers_count": 140, + "language": "Java", + "has_issues": true, + "has_projects": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 190, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 19, + "license": { + "key": "lgpl-2.1", + "name": "GNU Lesser General Public License v2.1", + "spdx_id": "LGPL-2.1", + "url": "https://api.github.com/licenses/lgpl-2.1", + "node_id": "MDc6TGljZW5zZTEx" + }, + "forks": 190, + "open_issues": 19, + "watchers": 140, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 8197450, + "node_id": "MDEwOlJlcG9zaXRvcnk4MTk3NDUw", + "name": "stashnotifier-plugin", + "full_name": "jenkinsci/stashnotifier-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/stashnotifier-plugin", + "description": "A Jenkins Plugin to notify Atlassian Stash|Bitbucket of build results ", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/stashnotifier-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/stashnotifier-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/stashnotifier-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/stashnotifier-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/stashnotifier-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/stashnotifier-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/stashnotifier-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/stashnotifier-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/stashnotifier-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/stashnotifier-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/stashnotifier-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/stashnotifier-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/stashnotifier-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/stashnotifier-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/stashnotifier-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/stashnotifier-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/stashnotifier-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/stashnotifier-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/stashnotifier-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/stashnotifier-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/stashnotifier-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/stashnotifier-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/stashnotifier-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/stashnotifier-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/stashnotifier-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/stashnotifier-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/stashnotifier-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/stashnotifier-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/stashnotifier-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/stashnotifier-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/stashnotifier-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/stashnotifier-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/stashnotifier-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/stashnotifier-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/stashnotifier-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/stashnotifier-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/stashnotifier-plugin/deployments", + "created_at": "2013-02-14T10:24:41Z", + "updated_at": "2019-10-13T16:13:53Z", + "pushed_at": "2019-10-02T15:23:32Z", + "git_url": "git://github.com/jenkinsci/stashnotifier-plugin.git", + "ssh_url": "git@github.com:jenkinsci/stashnotifier-plugin.git", + "clone_url": "https://github.com/jenkinsci/stashnotifier-plugin.git", + "svn_url": "https://github.com/jenkinsci/stashnotifier-plugin", + "homepage": "https://wiki.jenkins.io/display/JENKINS/Bitbucket+%28Stash%29+Notifier+Plugin", + "size": 509, + "stargazers_count": 134, + "watchers_count": 134, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 129, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 21, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 129, + "open_issues": 21, + "watchers": 134, + "default_branch": "release/1.x", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 8200698, + "node_id": "MDEwOlJlcG9zaXRvcnk4MjAwNjk4", + "name": "tag-profiler-plugin", + "full_name": "jenkinsci/tag-profiler-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/tag-profiler-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/tag-profiler-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/tag-profiler-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/tag-profiler-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/tag-profiler-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/tag-profiler-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/tag-profiler-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/tag-profiler-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/tag-profiler-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/tag-profiler-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/tag-profiler-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/tag-profiler-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/tag-profiler-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/tag-profiler-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/tag-profiler-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/tag-profiler-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/tag-profiler-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/tag-profiler-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/tag-profiler-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/tag-profiler-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/tag-profiler-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/tag-profiler-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/tag-profiler-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/tag-profiler-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/tag-profiler-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/tag-profiler-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/tag-profiler-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/tag-profiler-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/tag-profiler-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/tag-profiler-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/tag-profiler-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/tag-profiler-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/tag-profiler-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/tag-profiler-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/tag-profiler-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/tag-profiler-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/tag-profiler-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/tag-profiler-plugin/deployments", + "created_at": "2013-02-14T14:22:06Z", + "updated_at": "2017-06-28T20:42:34Z", + "pushed_at": "2017-07-04T12:41:44Z", + "git_url": "git://github.com/jenkinsci/tag-profiler-plugin.git", + "ssh_url": "git@github.com:jenkinsci/tag-profiler-plugin.git", + "clone_url": "https://github.com/jenkinsci/tag-profiler-plugin.git", + "svn_url": "https://github.com/jenkinsci/tag-profiler-plugin", + "homepage": "", + "size": 33, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 8263652, + "node_id": "MDEwOlJlcG9zaXRvcnk4MjYzNjUy", + "name": "git-client-plugin", + "full_name": "jenkinsci/git-client-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/git-client-plugin", + "description": "Jenkins git client plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/git-client-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/git-client-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/git-client-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/git-client-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/git-client-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/git-client-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/git-client-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/git-client-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/git-client-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/git-client-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/git-client-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/git-client-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/git-client-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/git-client-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/git-client-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/git-client-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/git-client-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/git-client-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/git-client-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/git-client-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/git-client-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/git-client-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/git-client-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/git-client-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/git-client-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/git-client-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/git-client-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/git-client-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/git-client-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/git-client-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/git-client-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/git-client-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/git-client-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/git-client-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/git-client-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/git-client-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/git-client-plugin/deployments", + "created_at": "2013-02-18T07:23:45Z", + "updated_at": "2019-10-19T14:03:35Z", + "pushed_at": "2019-10-19T14:03:33Z", + "git_url": "git://github.com/jenkinsci/git-client-plugin.git", + "ssh_url": "git@github.com:jenkinsci/git-client-plugin.git", + "clone_url": "https://github.com/jenkinsci/git-client-plugin.git", + "svn_url": "https://github.com/jenkinsci/git-client-plugin", + "homepage": "https://plugins.jenkins.io/git-client", + "size": 4584, + "stargazers_count": 87, + "watchers_count": 87, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 299, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 8, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 299, + "open_issues": 8, + "watchers": 87, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 8407247, + "node_id": "MDEwOlJlcG9zaXRvcnk4NDA3MjQ3", + "name": "hp-operations-orchestration-plugin", + "full_name": "jenkinsci/hp-operations-orchestration-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/hp-operations-orchestration-plugin", + "description": "Jenkins plugin to run HP Operations Orchestration flows as build-steps", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/hp-operations-orchestration-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/hp-operations-orchestration-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/hp-operations-orchestration-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/hp-operations-orchestration-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/hp-operations-orchestration-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/hp-operations-orchestration-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/hp-operations-orchestration-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/hp-operations-orchestration-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/hp-operations-orchestration-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/hp-operations-orchestration-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/hp-operations-orchestration-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/hp-operations-orchestration-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/hp-operations-orchestration-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/hp-operations-orchestration-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/hp-operations-orchestration-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/hp-operations-orchestration-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/hp-operations-orchestration-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/hp-operations-orchestration-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/hp-operations-orchestration-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/hp-operations-orchestration-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/hp-operations-orchestration-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/hp-operations-orchestration-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/hp-operations-orchestration-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/hp-operations-orchestration-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/hp-operations-orchestration-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/hp-operations-orchestration-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/hp-operations-orchestration-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/hp-operations-orchestration-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/hp-operations-orchestration-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/hp-operations-orchestration-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/hp-operations-orchestration-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/hp-operations-orchestration-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/hp-operations-orchestration-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/hp-operations-orchestration-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/hp-operations-orchestration-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/hp-operations-orchestration-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/hp-operations-orchestration-plugin/deployments", + "created_at": "2013-02-25T10:41:12Z", + "updated_at": "2017-05-15T14:48:12Z", + "pushed_at": "2016-09-21T05:17:33Z", + "git_url": "git://github.com/jenkinsci/hp-operations-orchestration-plugin.git", + "ssh_url": "git@github.com:jenkinsci/hp-operations-orchestration-plugin.git", + "clone_url": "https://github.com/jenkinsci/hp-operations-orchestration-plugin.git", + "svn_url": "https://github.com/jenkinsci/hp-operations-orchestration-plugin", + "homepage": null, + "size": 115, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 4, + "open_issues": 0, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 8429344, + "node_id": "MDEwOlJlcG9zaXRvcnk4NDI5MzQ0", + "name": "fxcop-runner-plugin", + "full_name": "jenkinsci/fxcop-runner-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/fxcop-runner-plugin", + "description": "FxCopCmd.exe execute plugin.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/fxcop-runner-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/fxcop-runner-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/fxcop-runner-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/fxcop-runner-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/fxcop-runner-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/fxcop-runner-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/fxcop-runner-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/fxcop-runner-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/fxcop-runner-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/fxcop-runner-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/fxcop-runner-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/fxcop-runner-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/fxcop-runner-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/fxcop-runner-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/fxcop-runner-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/fxcop-runner-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/fxcop-runner-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/fxcop-runner-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/fxcop-runner-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/fxcop-runner-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/fxcop-runner-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/fxcop-runner-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/fxcop-runner-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/fxcop-runner-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/fxcop-runner-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/fxcop-runner-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/fxcop-runner-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/fxcop-runner-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/fxcop-runner-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/fxcop-runner-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/fxcop-runner-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/fxcop-runner-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/fxcop-runner-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/fxcop-runner-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/fxcop-runner-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/fxcop-runner-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/fxcop-runner-plugin/deployments", + "created_at": "2013-02-26T09:30:12Z", + "updated_at": "2013-11-10T02:03:02Z", + "pushed_at": "2019-10-08T11:40:36Z", + "git_url": "git://github.com/jenkinsci/fxcop-runner-plugin.git", + "ssh_url": "git@github.com:jenkinsci/fxcop-runner-plugin.git", + "clone_url": "https://github.com/jenkinsci/fxcop-runner-plugin.git", + "svn_url": "https://github.com/jenkinsci/fxcop-runner-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/FxCop+Runner+Plugin", + "size": 133, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 2, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 8467432, + "node_id": "MDEwOlJlcG9zaXRvcnk4NDY3NDMy", + "name": "cloudtest-plugin", + "full_name": "jenkinsci/cloudtest-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/cloudtest-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/cloudtest-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/cloudtest-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/cloudtest-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/cloudtest-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/cloudtest-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/cloudtest-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/cloudtest-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/cloudtest-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/cloudtest-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/cloudtest-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/cloudtest-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/cloudtest-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/cloudtest-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/cloudtest-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/cloudtest-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/cloudtest-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/cloudtest-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/cloudtest-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/cloudtest-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/cloudtest-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/cloudtest-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/cloudtest-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/cloudtest-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/cloudtest-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/cloudtest-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/cloudtest-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/cloudtest-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/cloudtest-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/cloudtest-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/cloudtest-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/cloudtest-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/cloudtest-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/cloudtest-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/cloudtest-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/cloudtest-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/cloudtest-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/cloudtest-plugin/deployments", + "created_at": "2013-02-27T22:57:40Z", + "updated_at": "2019-04-25T20:36:17Z", + "pushed_at": "2019-04-25T20:36:15Z", + "git_url": "git://github.com/jenkinsci/cloudtest-plugin.git", + "ssh_url": "git@github.com:jenkinsci/cloudtest-plugin.git", + "clone_url": "https://github.com/jenkinsci/cloudtest-plugin.git", + "svn_url": "https://github.com/jenkinsci/cloudtest-plugin", + "homepage": null, + "size": 308, + "stargazers_count": 7, + "watchers_count": 7, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 7, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 7, + "open_issues": 2, + "watchers": 7, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 8476173, + "node_id": "MDEwOlJlcG9zaXRvcnk4NDc2MTcz", + "name": "rqm-plugin", + "full_name": "jenkinsci/rqm-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/rqm-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/rqm-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/rqm-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/rqm-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/rqm-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/rqm-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/rqm-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/rqm-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/rqm-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/rqm-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/rqm-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/rqm-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/rqm-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/rqm-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/rqm-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/rqm-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/rqm-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/rqm-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/rqm-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/rqm-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/rqm-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/rqm-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/rqm-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/rqm-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/rqm-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/rqm-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/rqm-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/rqm-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/rqm-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/rqm-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/rqm-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/rqm-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/rqm-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/rqm-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/rqm-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/rqm-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/rqm-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/rqm-plugin/deployments", + "created_at": "2013-02-28T09:40:16Z", + "updated_at": "2018-10-24T10:35:58Z", + "pushed_at": "2015-10-12T07:48:01Z", + "git_url": "git://github.com/jenkinsci/rqm-plugin.git", + "ssh_url": "git@github.com:jenkinsci/rqm-plugin.git", + "clone_url": "https://github.com/jenkinsci/rqm-plugin.git", + "svn_url": "https://github.com/jenkinsci/rqm-plugin", + "homepage": null, + "size": 332, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 8578724, + "node_id": "MDEwOlJlcG9zaXRvcnk4NTc4NzI0", + "name": "vs-code-metrics-plugin", + "full_name": "jenkinsci/vs-code-metrics-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/vs-code-metrics-plugin", + "description": "Jenkins Visual Studio Code Metrics Plugin", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/vs-code-metrics-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/vs-code-metrics-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/vs-code-metrics-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/vs-code-metrics-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/vs-code-metrics-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/vs-code-metrics-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/vs-code-metrics-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/vs-code-metrics-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/vs-code-metrics-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/vs-code-metrics-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/vs-code-metrics-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/vs-code-metrics-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/vs-code-metrics-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/vs-code-metrics-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/vs-code-metrics-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/vs-code-metrics-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/vs-code-metrics-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/vs-code-metrics-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/vs-code-metrics-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/vs-code-metrics-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/vs-code-metrics-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/vs-code-metrics-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/vs-code-metrics-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/vs-code-metrics-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/vs-code-metrics-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/vs-code-metrics-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/vs-code-metrics-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/vs-code-metrics-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/vs-code-metrics-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/vs-code-metrics-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/vs-code-metrics-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/vs-code-metrics-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/vs-code-metrics-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/vs-code-metrics-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/vs-code-metrics-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/vs-code-metrics-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/vs-code-metrics-plugin/deployments", + "created_at": "2013-03-05T11:54:41Z", + "updated_at": "2019-04-19T02:24:00Z", + "pushed_at": "2019-10-08T11:25:15Z", + "git_url": "git://github.com/jenkinsci/vs-code-metrics-plugin.git", + "ssh_url": "git@github.com:jenkinsci/vs-code-metrics-plugin.git", + "clone_url": "https://github.com/jenkinsci/vs-code-metrics-plugin.git", + "svn_url": "https://github.com/jenkinsci/vs-code-metrics-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Visual+Studio+Code+Metrics+Plugin", + "size": 315, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 5, + "open_issues": 1, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 8598660, + "node_id": "MDEwOlJlcG9zaXRvcnk4NTk4NjYw", + "name": "buildgraph-view-plugin", + "full_name": "jenkinsci/buildgraph-view-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/buildgraph-view-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/buildgraph-view-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/buildgraph-view-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/buildgraph-view-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/buildgraph-view-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/buildgraph-view-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/buildgraph-view-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/buildgraph-view-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/buildgraph-view-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/buildgraph-view-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/buildgraph-view-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/buildgraph-view-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/buildgraph-view-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/buildgraph-view-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/buildgraph-view-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/buildgraph-view-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/buildgraph-view-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/buildgraph-view-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/buildgraph-view-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/buildgraph-view-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/buildgraph-view-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/buildgraph-view-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/buildgraph-view-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/buildgraph-view-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/buildgraph-view-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/buildgraph-view-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/buildgraph-view-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/buildgraph-view-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/buildgraph-view-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/buildgraph-view-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/buildgraph-view-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/buildgraph-view-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/buildgraph-view-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/buildgraph-view-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/buildgraph-view-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/buildgraph-view-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/buildgraph-view-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/buildgraph-view-plugin/deployments", + "created_at": "2013-03-06T07:58:15Z", + "updated_at": "2019-02-06T17:52:14Z", + "pushed_at": "2019-10-08T09:52:41Z", + "git_url": "git://github.com/jenkinsci/buildgraph-view-plugin.git", + "ssh_url": "git@github.com:jenkinsci/buildgraph-view-plugin.git", + "clone_url": "https://github.com/jenkinsci/buildgraph-view-plugin.git", + "svn_url": "https://github.com/jenkinsci/buildgraph-view-plugin", + "homepage": "", + "size": 598, + "stargazers_count": 16, + "watchers_count": 16, + "language": "JavaScript", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 21, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": null, + "forks": 21, + "open_issues": 3, + "watchers": 16, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 8602618, + "node_id": "MDEwOlJlcG9zaXRvcnk4NjAyNjE4", + "name": "violation-columns-plugin", + "full_name": "jenkinsci/violation-columns-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/violation-columns-plugin", + "description": "Violation Columns(View with different iolation-metrics)", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/violation-columns-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/violation-columns-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/violation-columns-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/violation-columns-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/violation-columns-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/violation-columns-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/violation-columns-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/violation-columns-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/violation-columns-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/violation-columns-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/violation-columns-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/violation-columns-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/violation-columns-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/violation-columns-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/violation-columns-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/violation-columns-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/violation-columns-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/violation-columns-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/violation-columns-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/violation-columns-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/violation-columns-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/violation-columns-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/violation-columns-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/violation-columns-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/violation-columns-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/violation-columns-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/violation-columns-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/violation-columns-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/violation-columns-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/violation-columns-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/violation-columns-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/violation-columns-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/violation-columns-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/violation-columns-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/violation-columns-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/violation-columns-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/violation-columns-plugin/deployments", + "created_at": "2013-03-06T12:08:27Z", + "updated_at": "2019-10-09T07:11:33Z", + "pushed_at": "2019-10-09T07:11:31Z", + "git_url": "git://github.com/jenkinsci/violation-columns-plugin.git", + "ssh_url": "git@github.com:jenkinsci/violation-columns-plugin.git", + "clone_url": "https://github.com/jenkinsci/violation-columns-plugin.git", + "svn_url": "https://github.com/jenkinsci/violation-columns-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Violation+Columns+Plugin", + "size": 45, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 6, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 8656535, + "node_id": "MDEwOlJlcG9zaXRvcnk4NjU2NTM1", + "name": "maven-release-cascade-plugin", + "full_name": "jenkinsci/maven-release-cascade-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/maven-release-cascade-plugin", + "description": "Manage cascade maven releases with jenkins.", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/maven-release-cascade-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/maven-release-cascade-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/maven-release-cascade-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/maven-release-cascade-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/maven-release-cascade-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/maven-release-cascade-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/maven-release-cascade-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/maven-release-cascade-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/maven-release-cascade-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/maven-release-cascade-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/maven-release-cascade-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/maven-release-cascade-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/maven-release-cascade-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/maven-release-cascade-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/maven-release-cascade-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/maven-release-cascade-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/maven-release-cascade-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/maven-release-cascade-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/maven-release-cascade-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/maven-release-cascade-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/maven-release-cascade-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/maven-release-cascade-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/maven-release-cascade-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/maven-release-cascade-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/maven-release-cascade-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/maven-release-cascade-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/maven-release-cascade-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/maven-release-cascade-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/maven-release-cascade-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/maven-release-cascade-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/maven-release-cascade-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/maven-release-cascade-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/maven-release-cascade-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/maven-release-cascade-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/maven-release-cascade-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/maven-release-cascade-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/maven-release-cascade-plugin/deployments", + "created_at": "2013-03-08T17:49:00Z", + "updated_at": "2013-11-10T02:10:49Z", + "pushed_at": "2019-10-08T11:25:50Z", + "git_url": "git://github.com/jenkinsci/maven-release-cascade-plugin.git", + "ssh_url": "git@github.com:jenkinsci/maven-release-cascade-plugin.git", + "clone_url": "https://github.com/jenkinsci/maven-release-cascade-plugin.git", + "svn_url": "https://github.com/jenkinsci/maven-release-cascade-plugin", + "homepage": "https://github.com/barchart/barchart-jenkins-cascade-plugin/wiki", + "size": 1131, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 2, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 8657966, + "node_id": "MDEwOlJlcG9zaXRvcnk4NjU3OTY2", + "name": "visualworks-store-plugin", + "full_name": "jenkinsci/visualworks-store-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/visualworks-store-plugin", + "description": "Jenkins plugin for Cincom Visualworks Smalltalk Store", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/visualworks-store-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/visualworks-store-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/visualworks-store-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/visualworks-store-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/visualworks-store-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/visualworks-store-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/visualworks-store-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/visualworks-store-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/visualworks-store-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/visualworks-store-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/visualworks-store-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/visualworks-store-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/visualworks-store-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/visualworks-store-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/visualworks-store-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/visualworks-store-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/visualworks-store-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/visualworks-store-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/visualworks-store-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/visualworks-store-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/visualworks-store-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/visualworks-store-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/visualworks-store-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/visualworks-store-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/visualworks-store-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/visualworks-store-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/visualworks-store-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/visualworks-store-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/visualworks-store-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/visualworks-store-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/visualworks-store-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/visualworks-store-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/visualworks-store-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/visualworks-store-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/visualworks-store-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/visualworks-store-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/visualworks-store-plugin/deployments", + "created_at": "2013-03-08T19:11:41Z", + "updated_at": "2018-02-01T15:43:50Z", + "pushed_at": "2014-06-17T17:10:14Z", + "git_url": "git://github.com/jenkinsci/visualworks-store-plugin.git", + "ssh_url": "git@github.com:jenkinsci/visualworks-store-plugin.git", + "clone_url": "https://github.com/jenkinsci/visualworks-store-plugin.git", + "svn_url": "https://github.com/jenkinsci/visualworks-store-plugin", + "homepage": null, + "size": 239, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 8657993, + "node_id": "MDEwOlJlcG9zaXRvcnk4NjU3OTkz", + "name": "teamconcert-plugin", + "full_name": "jenkinsci/teamconcert-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/teamconcert-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/teamconcert-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/teamconcert-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/teamconcert-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/teamconcert-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/teamconcert-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/teamconcert-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/teamconcert-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/teamconcert-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/teamconcert-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/teamconcert-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/teamconcert-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/teamconcert-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/teamconcert-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/teamconcert-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/teamconcert-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/teamconcert-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/teamconcert-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/teamconcert-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/teamconcert-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/teamconcert-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/teamconcert-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/teamconcert-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/teamconcert-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/teamconcert-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/teamconcert-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/teamconcert-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/teamconcert-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/teamconcert-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/teamconcert-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/teamconcert-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/teamconcert-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/teamconcert-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/teamconcert-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/teamconcert-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/teamconcert-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/teamconcert-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/teamconcert-plugin/deployments", + "created_at": "2013-03-08T19:13:48Z", + "updated_at": "2019-05-01T08:34:16Z", + "pushed_at": "2019-05-01T08:34:14Z", + "git_url": "git://github.com/jenkinsci/teamconcert-plugin.git", + "ssh_url": "git@github.com:jenkinsci/teamconcert-plugin.git", + "clone_url": "https://github.com/jenkinsci/teamconcert-plugin.git", + "svn_url": "https://github.com/jenkinsci/teamconcert-plugin", + "homepage": "", + "size": 7727, + "stargazers_count": 15, + "watchers_count": 15, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 20, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": null, + "forks": 20, + "open_issues": 3, + "watchers": 15, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 8658216, + "node_id": "MDEwOlJlcG9zaXRvcnk4NjU4MjE2", + "name": "trac-artifacts-publisher-plugin", + "full_name": "jenkinsci/trac-artifacts-publisher-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/trac-artifacts-publisher-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/trac-artifacts-publisher-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/trac-artifacts-publisher-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/trac-artifacts-publisher-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/trac-artifacts-publisher-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/trac-artifacts-publisher-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/trac-artifacts-publisher-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/trac-artifacts-publisher-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/trac-artifacts-publisher-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/trac-artifacts-publisher-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/trac-artifacts-publisher-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/trac-artifacts-publisher-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/trac-artifacts-publisher-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/trac-artifacts-publisher-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/trac-artifacts-publisher-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/trac-artifacts-publisher-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/trac-artifacts-publisher-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/trac-artifacts-publisher-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/trac-artifacts-publisher-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/trac-artifacts-publisher-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/trac-artifacts-publisher-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/trac-artifacts-publisher-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/trac-artifacts-publisher-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/trac-artifacts-publisher-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/trac-artifacts-publisher-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/trac-artifacts-publisher-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/trac-artifacts-publisher-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/trac-artifacts-publisher-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/trac-artifacts-publisher-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/trac-artifacts-publisher-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/trac-artifacts-publisher-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/trac-artifacts-publisher-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/trac-artifacts-publisher-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/trac-artifacts-publisher-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/trac-artifacts-publisher-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/trac-artifacts-publisher-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/trac-artifacts-publisher-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/trac-artifacts-publisher-plugin/deployments", + "created_at": "2013-03-08T19:27:29Z", + "updated_at": "2013-11-10T02:21:12Z", + "pushed_at": "2014-07-14T07:22:14Z", + "git_url": "git://github.com/jenkinsci/trac-artifacts-publisher-plugin.git", + "ssh_url": "git@github.com:jenkinsci/trac-artifacts-publisher-plugin.git", + "clone_url": "https://github.com/jenkinsci/trac-artifacts-publisher-plugin.git", + "svn_url": "https://github.com/jenkinsci/trac-artifacts-publisher-plugin", + "homepage": "", + "size": 120, + "stargazers_count": 1, + "watchers_count": 1, + "language": null, + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 8658251, + "node_id": "MDEwOlJlcG9zaXRvcnk4NjU4MjUx", + "name": "buildheroes-plugin", + "full_name": "jenkinsci/buildheroes-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/buildheroes-plugin", + "description": "Plugin for jenkins", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/buildheroes-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/buildheroes-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/buildheroes-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/buildheroes-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/buildheroes-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/buildheroes-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/buildheroes-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/buildheroes-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/buildheroes-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/buildheroes-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/buildheroes-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/buildheroes-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/buildheroes-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/buildheroes-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/buildheroes-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/buildheroes-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/buildheroes-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/buildheroes-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/buildheroes-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/buildheroes-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/buildheroes-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/buildheroes-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/buildheroes-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/buildheroes-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/buildheroes-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/buildheroes-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/buildheroes-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/buildheroes-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/buildheroes-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/buildheroes-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/buildheroes-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/buildheroes-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/buildheroes-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/buildheroes-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/buildheroes-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/buildheroes-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/buildheroes-plugin/deployments", + "created_at": "2013-03-08T19:29:25Z", + "updated_at": "2013-11-10T01:56:05Z", + "pushed_at": "2013-11-10T01:55:54Z", + "git_url": "git://github.com/jenkinsci/buildheroes-plugin.git", + "ssh_url": "git@github.com:jenkinsci/buildheroes-plugin.git", + "clone_url": "https://github.com/jenkinsci/buildheroes-plugin.git", + "svn_url": "https://github.com/jenkinsci/buildheroes-plugin", + "homepage": null, + "size": 135, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 8717167, + "node_id": "MDEwOlJlcG9zaXRvcnk4NzE3MTY3", + "name": "zulip-plugin", + "full_name": "jenkinsci/zulip-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/zulip-plugin", + "description": "Jenkins plugin for Zulip notifications of build status", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/zulip-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/zulip-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/zulip-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/zulip-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/zulip-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/zulip-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/zulip-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/zulip-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/zulip-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/zulip-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/zulip-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/zulip-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/zulip-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/zulip-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/zulip-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/zulip-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/zulip-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/zulip-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/zulip-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/zulip-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/zulip-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/zulip-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/zulip-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/zulip-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/zulip-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/zulip-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/zulip-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/zulip-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/zulip-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/zulip-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/zulip-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/zulip-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/zulip-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/zulip-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/zulip-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/zulip-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/zulip-plugin/deployments", + "created_at": "2013-03-12T01:20:14Z", + "updated_at": "2019-10-22T08:37:17Z", + "pushed_at": "2019-10-25T15:48:50Z", + "git_url": "git://github.com/jenkinsci/zulip-plugin.git", + "ssh_url": "git@github.com:jenkinsci/zulip-plugin.git", + "clone_url": "https://github.com/jenkinsci/zulip-plugin.git", + "svn_url": "https://github.com/jenkinsci/zulip-plugin", + "homepage": "https://zulip.com/integrations/doc/jenkins", + "size": 216, + "stargazers_count": 13, + "watchers_count": 13, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 13, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 13, + "open_issues": 2, + "watchers": 13, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 8730962, + "node_id": "MDEwOlJlcG9zaXRvcnk4NzMwOTYy", + "name": "job-direct-mail-plugin", + "full_name": "jenkinsci/job-direct-mail-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/job-direct-mail-plugin", + "description": "Jenkins plugin for sending mails from job or build view.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/job-direct-mail-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/job-direct-mail-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/job-direct-mail-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/job-direct-mail-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/job-direct-mail-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/job-direct-mail-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/job-direct-mail-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/job-direct-mail-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/job-direct-mail-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/job-direct-mail-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/job-direct-mail-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/job-direct-mail-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/job-direct-mail-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/job-direct-mail-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/job-direct-mail-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/job-direct-mail-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/job-direct-mail-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/job-direct-mail-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/job-direct-mail-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/job-direct-mail-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/job-direct-mail-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/job-direct-mail-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/job-direct-mail-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/job-direct-mail-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/job-direct-mail-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/job-direct-mail-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/job-direct-mail-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/job-direct-mail-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/job-direct-mail-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/job-direct-mail-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/job-direct-mail-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/job-direct-mail-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/job-direct-mail-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/job-direct-mail-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/job-direct-mail-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/job-direct-mail-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/job-direct-mail-plugin/deployments", + "created_at": "2013-03-12T15:22:53Z", + "updated_at": "2019-10-08T12:22:13Z", + "pushed_at": "2019-10-08T12:22:11Z", + "git_url": "git://github.com/jenkinsci/job-direct-mail-plugin.git", + "ssh_url": "git@github.com:jenkinsci/job-direct-mail-plugin.git", + "clone_url": "https://github.com/jenkinsci/job-direct-mail-plugin.git", + "svn_url": "https://github.com/jenkinsci/job-direct-mail-plugin", + "homepage": null, + "size": 104, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 3, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/__files/orgs_jenkinsci-72681a2c-9db9-44b8-a9cf-4084568695a0.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/__files/orgs_jenkinsci-72681a2c-9db9-44b8-a9cf-4084568695a0.json new file mode 100644 index 0000000000..81befff424 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/__files/orgs_jenkinsci-72681a2c-9db9-44b8-a9cf-4084568695a0.json @@ -0,0 +1,46 @@ +{ + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "url": "https://api.github.com/orgs/jenkinsci", + "repos_url": "https://api.github.com/orgs/jenkinsci/repos", + "events_url": "https://api.github.com/orgs/jenkinsci/events", + "hooks_url": "https://api.github.com/orgs/jenkinsci/hooks", + "issues_url": "https://api.github.com/orgs/jenkinsci/issues", + "members_url": "https://api.github.com/orgs/jenkinsci/members{/member}", + "public_members_url": "https://api.github.com/orgs/jenkinsci/public_members{/member}", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "description": "Jenkins is an open source automation server with an unparalleled plugin ecosystem to support practically every tool as part of your delivery pipelines", + "name": "Jenkins", + "company": null, + "blog": "https://jenkins.io", + "location": "Santa Clara, CA", + "email": "jenkinsci-users@googlegroups.com", + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 2204, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/jenkinsci", + "created_at": "2009-07-21T21:03:50Z", + "updated_at": "2019-02-25T15:26:10Z", + "type": "Organization", + "total_private_repos": 0, + "owned_private_repos": 0, + "private_gists": null, + "disk_usage": null, + "collaborators": null, + "billing_email": null, + "default_repository_permission": null, + "members_can_create_repositories": false, + "two_factor_requirement_enabled": null, + "plan": { + "name": "free", + "space": 976562499, + "private_repos": 0, + "filled_seats": 2065, + "seats": 0 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/__files/orgs_jenkinsci_repos-75d09b41-374d-4c15-b8fd-06b9e1e8402c.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/__files/orgs_jenkinsci_repos-75d09b41-374d-4c15-b8fd-06b9e1e8402c.json new file mode 100644 index 0000000000..153d1aefb6 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/__files/orgs_jenkinsci_repos-75d09b41-374d-4c15-b8fd-06b9e1e8402c.json @@ -0,0 +1,10082 @@ +[ + { + "id": 162020, + "node_id": "MDEwOlJlcG9zaXRvcnkxNjIwMjA=", + "name": "gmaven", + "full_name": "jenkinsci/gmaven", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/gmaven", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/gmaven", + "forks_url": "https://api.github.com/repos/jenkinsci/gmaven/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/gmaven/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/gmaven/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/gmaven/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/gmaven/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/gmaven/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/gmaven/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/gmaven/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/gmaven/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/gmaven/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/gmaven/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/gmaven/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/gmaven/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/gmaven/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/gmaven/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/gmaven/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/gmaven/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/gmaven/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/gmaven/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/gmaven/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/gmaven/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/gmaven/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/gmaven/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/gmaven/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/gmaven/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/gmaven/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/gmaven/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/gmaven/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/gmaven/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/gmaven/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/gmaven/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/gmaven/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/gmaven/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/gmaven/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/gmaven/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/gmaven/deployments", + "created_at": "2009-03-28T21:43:54Z", + "updated_at": "2019-08-13T14:13:11Z", + "pushed_at": "2017-12-04T00:52:45Z", + "git_url": "git://github.com/jenkinsci/gmaven.git", + "ssh_url": "git@github.com:jenkinsci/gmaven.git", + "clone_url": "https://github.com/jenkinsci/gmaven.git", + "svn_url": "https://github.com/jenkinsci/gmaven", + "homepage": "", + "size": 1836, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 3, + "open_issues": 1, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 500004, + "node_id": "MDEwOlJlcG9zaXRvcnk1MDAwMDQ=", + "name": "core-js", + "full_name": "jenkinsci/core-js", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/core-js", + "description": "Patched core-js used in Hudson", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/core-js", + "forks_url": "https://api.github.com/repos/jenkinsci/core-js/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/core-js/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/core-js/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/core-js/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/core-js/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/core-js/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/core-js/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/core-js/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/core-js/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/core-js/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/core-js/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/core-js/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/core-js/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/core-js/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/core-js/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/core-js/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/core-js/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/core-js/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/core-js/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/core-js/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/core-js/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/core-js/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/core-js/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/core-js/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/core-js/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/core-js/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/core-js/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/core-js/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/core-js/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/core-js/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/core-js/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/core-js/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/core-js/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/core-js/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/core-js/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/core-js/deployments", + "created_at": "2010-02-03T01:51:25Z", + "updated_at": "2013-11-10T01:58:39Z", + "pushed_at": "2013-11-10T01:58:33Z", + "git_url": "git://github.com/jenkinsci/core-js.git", + "ssh_url": "git@github.com:jenkinsci/core-js.git", + "clone_url": "https://github.com/jenkinsci/core-js.git", + "svn_url": "https://github.com/jenkinsci/core-js", + "homepage": "http://jenkins-ci.org/", + "size": 3232, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 1, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 500005, + "node_id": "MDEwOlJlcG9zaXRvcnk1MDAwMDU=", + "name": "jelly", + "full_name": "jenkinsci/jelly", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jelly", + "description": "Patched jelly used in Jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jelly", + "forks_url": "https://api.github.com/repos/jenkinsci/jelly/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jelly/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jelly/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jelly/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jelly/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jelly/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jelly/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jelly/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jelly/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jelly/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jelly/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jelly/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jelly/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jelly/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jelly/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jelly/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jelly/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jelly/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jelly/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jelly/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jelly/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jelly/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jelly/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jelly/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jelly/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jelly/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jelly/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jelly/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jelly/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jelly/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jelly/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jelly/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jelly/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jelly/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jelly/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jelly/deployments", + "created_at": "2010-02-03T01:51:52Z", + "updated_at": "2018-06-13T23:48:58Z", + "pushed_at": "2017-11-27T20:21:50Z", + "git_url": "git://github.com/jenkinsci/jelly.git", + "ssh_url": "git@github.com:jenkinsci/jelly.git", + "clone_url": "https://github.com/jenkinsci/jelly.git", + "svn_url": "https://github.com/jenkinsci/jelly", + "homepage": "https://jenkins.io", + "size": 1014, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 9, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 9, + "open_issues": 1, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 500008, + "node_id": "MDEwOlJlcG9zaXRvcnk1MDAwMDg=", + "name": "jexl", + "full_name": "jenkinsci/jexl", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jexl", + "description": "Patched jexl used in Hudson", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jexl", + "forks_url": "https://api.github.com/repos/jenkinsci/jexl/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jexl/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jexl/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jexl/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jexl/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jexl/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jexl/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jexl/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jexl/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jexl/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jexl/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jexl/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jexl/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jexl/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jexl/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jexl/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jexl/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jexl/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jexl/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jexl/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jexl/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jexl/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jexl/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jexl/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jexl/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jexl/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jexl/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jexl/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jexl/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jexl/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jexl/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jexl/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jexl/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jexl/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jexl/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jexl/deployments", + "created_at": "2010-02-03T01:52:16Z", + "updated_at": "2013-11-10T02:06:53Z", + "pushed_at": "2013-11-10T02:06:50Z", + "git_url": "git://github.com/jenkinsci/jexl.git", + "ssh_url": "git@github.com:jenkinsci/jexl.git", + "clone_url": "https://github.com/jenkinsci/jexl.git", + "svn_url": "https://github.com/jenkinsci/jexl", + "homepage": "http://hudson-ci.org/", + "size": 500, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 2, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 500009, + "node_id": "MDEwOlJlcG9zaXRvcnk1MDAwMDk=", + "name": "json-lib", + "full_name": "jenkinsci/json-lib", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/json-lib", + "description": "Patched json-lib used in Jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/json-lib", + "forks_url": "https://api.github.com/repos/jenkinsci/json-lib/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/json-lib/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/json-lib/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/json-lib/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/json-lib/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/json-lib/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/json-lib/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/json-lib/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/json-lib/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/json-lib/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/json-lib/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/json-lib/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/json-lib/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/json-lib/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/json-lib/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/json-lib/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/json-lib/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/json-lib/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/json-lib/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/json-lib/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/json-lib/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/json-lib/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/json-lib/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/json-lib/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/json-lib/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/json-lib/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/json-lib/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/json-lib/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/json-lib/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/json-lib/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/json-lib/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/json-lib/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/json-lib/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/json-lib/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/json-lib/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/json-lib/deployments", + "created_at": "2010-02-03T01:52:32Z", + "updated_at": "2018-09-11T03:24:12Z", + "pushed_at": "2019-10-15T12:43:00Z", + "git_url": "git://github.com/jenkinsci/json-lib.git", + "ssh_url": "git@github.com:jenkinsci/json-lib.git", + "clone_url": "https://github.com/jenkinsci/json-lib.git", + "svn_url": "https://github.com/jenkinsci/json-lib", + "homepage": "http://jenkins-ci.org/", + "size": 3457, + "stargazers_count": 6, + "watchers_count": 6, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 13, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 13, + "open_issues": 1, + "watchers": 6, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 500010, + "node_id": "MDEwOlJlcG9zaXRvcnk1MDAwMTA=", + "name": "maven-hudson-dev-plugin", + "full_name": "jenkinsci/maven-hudson-dev-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/maven-hudson-dev-plugin", + "description": "Patched maven-jetty-plugin used in Jenkins, also called maven-jenkins-dev-plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/maven-hudson-dev-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/maven-hudson-dev-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/maven-hudson-dev-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/maven-hudson-dev-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/maven-hudson-dev-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/maven-hudson-dev-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/maven-hudson-dev-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/maven-hudson-dev-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/maven-hudson-dev-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/maven-hudson-dev-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/maven-hudson-dev-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/maven-hudson-dev-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/maven-hudson-dev-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/maven-hudson-dev-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/maven-hudson-dev-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/maven-hudson-dev-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/maven-hudson-dev-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/maven-hudson-dev-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/maven-hudson-dev-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/maven-hudson-dev-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/maven-hudson-dev-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/maven-hudson-dev-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/maven-hudson-dev-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/maven-hudson-dev-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/maven-hudson-dev-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/maven-hudson-dev-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/maven-hudson-dev-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/maven-hudson-dev-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/maven-hudson-dev-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/maven-hudson-dev-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/maven-hudson-dev-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/maven-hudson-dev-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/maven-hudson-dev-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/maven-hudson-dev-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/maven-hudson-dev-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/maven-hudson-dev-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/maven-hudson-dev-plugin/deployments", + "created_at": "2010-02-03T01:52:59Z", + "updated_at": "2019-10-07T17:24:51Z", + "pushed_at": "2018-11-15T10:45:24Z", + "git_url": "git://github.com/jenkinsci/maven-hudson-dev-plugin.git", + "ssh_url": "git@github.com:jenkinsci/maven-hudson-dev-plugin.git", + "clone_url": "https://github.com/jenkinsci/maven-hudson-dev-plugin.git", + "svn_url": "https://github.com/jenkinsci/maven-hudson-dev-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 289, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 9, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 9, + "open_issues": 0, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 500011, + "node_id": "MDEwOlJlcG9zaXRvcnk1MDAwMTE=", + "name": "netx", + "full_name": "jenkinsci/netx", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/netx", + "description": "Patched netx used in Hudson", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/netx", + "forks_url": "https://api.github.com/repos/jenkinsci/netx/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/netx/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/netx/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/netx/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/netx/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/netx/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/netx/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/netx/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/netx/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/netx/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/netx/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/netx/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/netx/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/netx/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/netx/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/netx/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/netx/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/netx/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/netx/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/netx/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/netx/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/netx/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/netx/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/netx/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/netx/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/netx/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/netx/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/netx/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/netx/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/netx/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/netx/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/netx/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/netx/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/netx/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/netx/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/netx/deployments", + "created_at": "2010-02-03T01:53:14Z", + "updated_at": "2013-11-10T02:12:13Z", + "pushed_at": "2013-11-10T02:12:03Z", + "git_url": "git://github.com/jenkinsci/netx.git", + "ssh_url": "git@github.com:jenkinsci/netx.git", + "clone_url": "https://github.com/jenkinsci/netx.git", + "svn_url": "https://github.com/jenkinsci/netx", + "homepage": "http://hudson-ci.org/", + "size": 236, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "lgpl-2.1", + "name": "GNU Lesser General Public License v2.1", + "spdx_id": "LGPL-2.1", + "url": "https://api.github.com/licenses/lgpl-2.1", + "node_id": "MDc6TGljZW5zZTEx" + }, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 500012, + "node_id": "MDEwOlJlcG9zaXRvcnk1MDAwMTI=", + "name": "svnkit", + "full_name": "jenkinsci/svnkit", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/svnkit", + "description": "Patched svnkit used in Jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/svnkit", + "forks_url": "https://api.github.com/repos/jenkinsci/svnkit/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/svnkit/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/svnkit/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/svnkit/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/svnkit/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/svnkit/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/svnkit/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/svnkit/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/svnkit/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/svnkit/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/svnkit/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/svnkit/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/svnkit/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/svnkit/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/svnkit/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/svnkit/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/svnkit/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/svnkit/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/svnkit/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/svnkit/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/svnkit/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/svnkit/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/svnkit/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/svnkit/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/svnkit/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/svnkit/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/svnkit/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/svnkit/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/svnkit/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/svnkit/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/svnkit/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/svnkit/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/svnkit/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/svnkit/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/svnkit/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/svnkit/deployments", + "created_at": "2010-02-03T01:53:28Z", + "updated_at": "2019-08-08T15:51:37Z", + "pushed_at": "2019-06-28T20:29:58Z", + "git_url": "git://github.com/jenkinsci/svnkit.git", + "ssh_url": "git@github.com:jenkinsci/svnkit.git", + "clone_url": "https://github.com/jenkinsci/svnkit.git", + "svn_url": "https://github.com/jenkinsci/svnkit", + "homepage": "http://jenkins-ci.org/", + "size": 68777, + "stargazers_count": 22, + "watchers_count": 22, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 26, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 26, + "open_issues": 2, + "watchers": 22, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 500013, + "node_id": "MDEwOlJlcG9zaXRvcnk1MDAwMTM=", + "name": "trilead-ssh2", + "full_name": "jenkinsci/trilead-ssh2", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/trilead-ssh2", + "description": "Patched trilead-ssh2 used in Jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/trilead-ssh2", + "forks_url": "https://api.github.com/repos/jenkinsci/trilead-ssh2/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/trilead-ssh2/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/trilead-ssh2/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/trilead-ssh2/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/trilead-ssh2/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/trilead-ssh2/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/trilead-ssh2/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/trilead-ssh2/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/trilead-ssh2/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/trilead-ssh2/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/trilead-ssh2/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/trilead-ssh2/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/trilead-ssh2/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/trilead-ssh2/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/trilead-ssh2/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/trilead-ssh2/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/trilead-ssh2/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/trilead-ssh2/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/trilead-ssh2/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/trilead-ssh2/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/trilead-ssh2/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/trilead-ssh2/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/trilead-ssh2/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/trilead-ssh2/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/trilead-ssh2/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/trilead-ssh2/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/trilead-ssh2/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/trilead-ssh2/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/trilead-ssh2/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/trilead-ssh2/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/trilead-ssh2/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/trilead-ssh2/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/trilead-ssh2/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/trilead-ssh2/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/trilead-ssh2/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/trilead-ssh2/deployments", + "created_at": "2010-02-03T01:53:45Z", + "updated_at": "2019-10-23T10:29:18Z", + "pushed_at": "2019-10-23T10:29:16Z", + "git_url": "git://github.com/jenkinsci/trilead-ssh2.git", + "ssh_url": "git@github.com:jenkinsci/trilead-ssh2.git", + "clone_url": "https://github.com/jenkinsci/trilead-ssh2.git", + "svn_url": "https://github.com/jenkinsci/trilead-ssh2", + "homepage": "http://jenkins-ci.org/", + "size": 787, + "stargazers_count": 100, + "watchers_count": 100, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 68, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 68, + "open_issues": 0, + "watchers": 100, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 500014, + "node_id": "MDEwOlJlcG9zaXRvcnk1MDAwMTQ=", + "name": "winstone", + "full_name": "jenkinsci/winstone", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/winstone", + "description": "Patched winstone used in Jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/winstone", + "forks_url": "https://api.github.com/repos/jenkinsci/winstone/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/winstone/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/winstone/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/winstone/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/winstone/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/winstone/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/winstone/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/winstone/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/winstone/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/winstone/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/winstone/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/winstone/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/winstone/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/winstone/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/winstone/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/winstone/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/winstone/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/winstone/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/winstone/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/winstone/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/winstone/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/winstone/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/winstone/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/winstone/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/winstone/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/winstone/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/winstone/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/winstone/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/winstone/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/winstone/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/winstone/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/winstone/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/winstone/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/winstone/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/winstone/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/winstone/deployments", + "created_at": "2010-02-03T01:53:58Z", + "updated_at": "2019-10-04T02:49:45Z", + "pushed_at": "2019-10-18T02:45:24Z", + "git_url": "git://github.com/jenkinsci/winstone.git", + "ssh_url": "git@github.com:jenkinsci/winstone.git", + "clone_url": "https://github.com/jenkinsci/winstone.git", + "svn_url": "https://github.com/jenkinsci/winstone", + "homepage": "http://jenkins-ci.org/", + "size": 873, + "stargazers_count": 52, + "watchers_count": 52, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 51, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 51, + "open_issues": 2, + "watchers": 52, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 500016, + "node_id": "MDEwOlJlcG9zaXRvcnk1MDAwMTY=", + "name": "xstream", + "full_name": "jenkinsci/xstream", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/xstream", + "description": "DEPRECATED please use https://github.com/jenkinsci/xstream-fork", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/xstream", + "forks_url": "https://api.github.com/repos/jenkinsci/xstream/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/xstream/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/xstream/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/xstream/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/xstream/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/xstream/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/xstream/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/xstream/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/xstream/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/xstream/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/xstream/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/xstream/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/xstream/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/xstream/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/xstream/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/xstream/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/xstream/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/xstream/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/xstream/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/xstream/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/xstream/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/xstream/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/xstream/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/xstream/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/xstream/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/xstream/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/xstream/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/xstream/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/xstream/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/xstream/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/xstream/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/xstream/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/xstream/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/xstream/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/xstream/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/xstream/deployments", + "created_at": "2010-02-03T01:54:10Z", + "updated_at": "2019-04-01T15:58:57Z", + "pushed_at": "2017-12-12T21:45:47Z", + "git_url": "git://github.com/jenkinsci/xstream.git", + "ssh_url": "git@github.com:jenkinsci/xstream.git", + "clone_url": "https://github.com/jenkinsci/xstream.git", + "svn_url": "https://github.com/jenkinsci/xstream", + "homepage": "http://jenkins-ci.org/", + "size": 9223, + "stargazers_count": 15, + "watchers_count": 15, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 17, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 17, + "open_issues": 0, + "watchers": 15, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 501576, + "node_id": "MDEwOlJlcG9zaXRvcnk1MDE1NzY=", + "name": "htmlunit", + "full_name": "jenkinsci/htmlunit", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/htmlunit", + "description": "Patched htmlunit used in Jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/htmlunit", + "forks_url": "https://api.github.com/repos/jenkinsci/htmlunit/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/htmlunit/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/htmlunit/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/htmlunit/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/htmlunit/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/htmlunit/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/htmlunit/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/htmlunit/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/htmlunit/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/htmlunit/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/htmlunit/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/htmlunit/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/htmlunit/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/htmlunit/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/htmlunit/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/htmlunit/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/htmlunit/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/htmlunit/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/htmlunit/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/htmlunit/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/htmlunit/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/htmlunit/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/htmlunit/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/htmlunit/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/htmlunit/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/htmlunit/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/htmlunit/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/htmlunit/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/htmlunit/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/htmlunit/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/htmlunit/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/htmlunit/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/htmlunit/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/htmlunit/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/htmlunit/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/htmlunit/deployments", + "created_at": "2010-02-04T00:10:41Z", + "updated_at": "2018-04-27T00:09:05Z", + "pushed_at": "2015-07-24T00:11:29Z", + "git_url": "git://github.com/jenkinsci/htmlunit.git", + "ssh_url": "git@github.com:jenkinsci/htmlunit.git", + "clone_url": "https://github.com/jenkinsci/htmlunit.git", + "svn_url": "https://github.com/jenkinsci/htmlunit", + "homepage": "http://jenkins-ci.org/", + "size": 69455, + "stargazers_count": 6, + "watchers_count": 6, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 3, + "open_issues": 0, + "watchers": 6, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 501730, + "node_id": "MDEwOlJlcG9zaXRvcnk1MDE3MzA=", + "name": "dom4j", + "full_name": "jenkinsci/dom4j", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/dom4j", + "description": "Patched dom4j used in Jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/dom4j", + "forks_url": "https://api.github.com/repos/jenkinsci/dom4j/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/dom4j/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/dom4j/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/dom4j/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/dom4j/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/dom4j/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/dom4j/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/dom4j/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/dom4j/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/dom4j/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/dom4j/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/dom4j/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/dom4j/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/dom4j/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/dom4j/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/dom4j/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/dom4j/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/dom4j/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/dom4j/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/dom4j/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/dom4j/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/dom4j/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/dom4j/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/dom4j/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/dom4j/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/dom4j/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/dom4j/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/dom4j/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/dom4j/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/dom4j/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/dom4j/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/dom4j/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/dom4j/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/dom4j/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/dom4j/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/dom4j/deployments", + "created_at": "2010-02-04T02:19:17Z", + "updated_at": "2017-01-16T13:37:17Z", + "pushed_at": "2017-11-27T20:29:14Z", + "git_url": "git://github.com/jenkinsci/dom4j.git", + "ssh_url": "git@github.com:jenkinsci/dom4j.git", + "clone_url": "https://github.com/jenkinsci/dom4j.git", + "svn_url": "https://github.com/jenkinsci/dom4j", + "homepage": "http://jenkins-ci.org/", + "size": 6913, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 6, + "open_issues": 1, + "watchers": 4, + "default_branch": "patched", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 548804, + "node_id": "MDEwOlJlcG9zaXRvcnk1NDg4MDQ=", + "name": "jenkins.rb", + "full_name": "jenkinsci/jenkins.rb", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jenkins.rb", + "description": "Use the Jenkins continuous integration server", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jenkins.rb", + "forks_url": "https://api.github.com/repos/jenkinsci/jenkins.rb/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jenkins.rb/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jenkins.rb/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jenkins.rb/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jenkins.rb/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jenkins.rb/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jenkins.rb/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jenkins.rb/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jenkins.rb/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jenkins.rb/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jenkins.rb/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jenkins.rb/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jenkins.rb/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jenkins.rb/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jenkins.rb/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jenkins.rb/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jenkins.rb/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jenkins.rb/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jenkins.rb/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jenkins.rb/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jenkins.rb/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jenkins.rb/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jenkins.rb/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jenkins.rb/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jenkins.rb/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jenkins.rb/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jenkins.rb/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jenkins.rb/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jenkins.rb/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jenkins.rb/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jenkins.rb/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jenkins.rb/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jenkins.rb/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jenkins.rb/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jenkins.rb/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jenkins.rb/deployments", + "created_at": "2010-03-05T17:56:12Z", + "updated_at": "2019-08-13T14:31:49Z", + "pushed_at": "2019-10-23T15:02:33Z", + "git_url": "git://github.com/jenkinsci/jenkins.rb.git", + "ssh_url": "git@github.com:jenkinsci/jenkins.rb.git", + "clone_url": "https://github.com/jenkinsci/jenkins.rb.git", + "svn_url": "https://github.com/jenkinsci/jenkins.rb", + "homepage": "http://groups.google.com/group/jenkinsrb", + "size": 11462, + "stargazers_count": 401, + "watchers_count": 401, + "language": "Ruby", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 80, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 35, + "license": null, + "forks": 80, + "open_issues": 35, + "watchers": 401, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 612587, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTI1ODc=", + "name": "git-plugin", + "full_name": "jenkinsci/git-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/git-plugin", + "description": "Jenkins Git plugin ", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/git-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/git-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/git-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/git-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/git-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/git-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/git-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/git-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/git-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/git-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/git-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/git-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/git-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/git-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/git-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/git-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/git-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/git-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/git-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/git-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/git-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/git-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/git-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/git-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/git-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/git-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/git-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/git-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/git-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/git-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/git-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/git-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/git-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/git-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/git-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/git-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/git-plugin/deployments", + "created_at": "2010-04-15T21:07:21Z", + "updated_at": "2019-10-24T05:52:16Z", + "pushed_at": "2019-10-19T21:25:46Z", + "git_url": "git://github.com/jenkinsci/git-plugin.git", + "ssh_url": "git@github.com:jenkinsci/git-plugin.git", + "clone_url": "https://github.com/jenkinsci/git-plugin.git", + "svn_url": "https://github.com/jenkinsci/git-plugin", + "homepage": "https://plugins.jenkins.io/git", + "size": 6500, + "stargazers_count": 538, + "watchers_count": 538, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 817, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 13, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 817, + "open_issues": 13, + "watchers": 538, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 618079, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTgwNzk=", + "name": "jenkins-clone-workspace-scm-plugin", + "full_name": "jenkinsci/jenkins-clone-workspace-scm-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jenkins-clone-workspace-scm-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/jenkins-clone-workspace-scm-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/jenkins-clone-workspace-scm-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jenkins-clone-workspace-scm-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jenkins-clone-workspace-scm-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jenkins-clone-workspace-scm-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jenkins-clone-workspace-scm-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jenkins-clone-workspace-scm-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jenkins-clone-workspace-scm-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jenkins-clone-workspace-scm-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jenkins-clone-workspace-scm-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jenkins-clone-workspace-scm-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jenkins-clone-workspace-scm-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jenkins-clone-workspace-scm-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jenkins-clone-workspace-scm-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jenkins-clone-workspace-scm-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jenkins-clone-workspace-scm-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jenkins-clone-workspace-scm-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jenkins-clone-workspace-scm-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jenkins-clone-workspace-scm-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jenkins-clone-workspace-scm-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jenkins-clone-workspace-scm-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jenkins-clone-workspace-scm-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jenkins-clone-workspace-scm-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jenkins-clone-workspace-scm-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jenkins-clone-workspace-scm-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jenkins-clone-workspace-scm-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jenkins-clone-workspace-scm-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jenkins-clone-workspace-scm-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jenkins-clone-workspace-scm-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jenkins-clone-workspace-scm-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jenkins-clone-workspace-scm-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jenkins-clone-workspace-scm-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jenkins-clone-workspace-scm-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jenkins-clone-workspace-scm-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jenkins-clone-workspace-scm-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jenkins-clone-workspace-scm-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jenkins-clone-workspace-scm-plugin/deployments", + "created_at": "2010-04-19T16:37:26Z", + "updated_at": "2018-07-31T14:36:38Z", + "pushed_at": "2019-10-08T10:06:29Z", + "git_url": "git://github.com/jenkinsci/jenkins-clone-workspace-scm-plugin.git", + "ssh_url": "git@github.com:jenkinsci/jenkins-clone-workspace-scm-plugin.git", + "clone_url": "https://github.com/jenkinsci/jenkins-clone-workspace-scm-plugin.git", + "svn_url": "https://github.com/jenkinsci/jenkins-clone-workspace-scm-plugin", + "homepage": "", + "size": 246, + "stargazers_count": 12, + "watchers_count": 12, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 28, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 5, + "license": null, + "forks": 28, + "open_issues": 5, + "watchers": 12, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 629933, + "node_id": "MDEwOlJlcG9zaXRvcnk2Mjk5MzM=", + "name": "Hudson-Gerrit-Plugin", + "full_name": "jenkinsci/Hudson-Gerrit-Plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/Hudson-Gerrit-Plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/Hudson-Gerrit-Plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/Hudson-Gerrit-Plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/Hudson-Gerrit-Plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/Hudson-Gerrit-Plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/Hudson-Gerrit-Plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/Hudson-Gerrit-Plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/Hudson-Gerrit-Plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/Hudson-Gerrit-Plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/Hudson-Gerrit-Plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/Hudson-Gerrit-Plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/Hudson-Gerrit-Plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/Hudson-Gerrit-Plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/Hudson-Gerrit-Plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/Hudson-Gerrit-Plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/Hudson-Gerrit-Plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/Hudson-Gerrit-Plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/Hudson-Gerrit-Plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/Hudson-Gerrit-Plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/Hudson-Gerrit-Plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/Hudson-Gerrit-Plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/Hudson-Gerrit-Plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/Hudson-Gerrit-Plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/Hudson-Gerrit-Plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/Hudson-Gerrit-Plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/Hudson-Gerrit-Plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/Hudson-Gerrit-Plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/Hudson-Gerrit-Plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/Hudson-Gerrit-Plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/Hudson-Gerrit-Plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/Hudson-Gerrit-Plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/Hudson-Gerrit-Plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/Hudson-Gerrit-Plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/Hudson-Gerrit-Plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/Hudson-Gerrit-Plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/Hudson-Gerrit-Plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/Hudson-Gerrit-Plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/Hudson-Gerrit-Plugin/deployments", + "created_at": "2010-04-26T17:12:13Z", + "updated_at": "2013-12-30T04:44:38Z", + "pushed_at": "2015-11-28T13:59:39Z", + "git_url": "git://github.com/jenkinsci/Hudson-Gerrit-Plugin.git", + "ssh_url": "git@github.com:jenkinsci/Hudson-Gerrit-Plugin.git", + "clone_url": "https://github.com/jenkinsci/Hudson-Gerrit-Plugin.git", + "svn_url": "https://github.com/jenkinsci/Hudson-Gerrit-Plugin", + "homepage": "http://wiki.jenkins-ci.org/display/JENKINS/Gerrit Plugin", + "size": 102, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 4, + "open_issues": 0, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 683720, + "node_id": "MDEwOlJlcG9zaXRvcnk2ODM3MjA=", + "name": "throttle-concurrent-builds-plugin", + "full_name": "jenkinsci/throttle-concurrent-builds-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/throttle-concurrent-builds-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/throttle-concurrent-builds-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/throttle-concurrent-builds-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/throttle-concurrent-builds-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/throttle-concurrent-builds-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/throttle-concurrent-builds-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/throttle-concurrent-builds-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/throttle-concurrent-builds-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/throttle-concurrent-builds-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/throttle-concurrent-builds-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/throttle-concurrent-builds-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/throttle-concurrent-builds-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/throttle-concurrent-builds-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/throttle-concurrent-builds-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/throttle-concurrent-builds-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/throttle-concurrent-builds-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/throttle-concurrent-builds-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/throttle-concurrent-builds-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/throttle-concurrent-builds-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/throttle-concurrent-builds-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/throttle-concurrent-builds-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/throttle-concurrent-builds-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/throttle-concurrent-builds-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/throttle-concurrent-builds-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/throttle-concurrent-builds-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/throttle-concurrent-builds-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/throttle-concurrent-builds-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/throttle-concurrent-builds-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/throttle-concurrent-builds-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/throttle-concurrent-builds-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/throttle-concurrent-builds-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/throttle-concurrent-builds-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/throttle-concurrent-builds-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/throttle-concurrent-builds-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/throttle-concurrent-builds-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/throttle-concurrent-builds-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/throttle-concurrent-builds-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/throttle-concurrent-builds-plugin/deployments", + "created_at": "2010-05-24T18:40:10Z", + "updated_at": "2019-10-04T13:36:28Z", + "pushed_at": "2019-09-20T21:04:16Z", + "git_url": "git://github.com/jenkinsci/throttle-concurrent-builds-plugin.git", + "ssh_url": "git@github.com:jenkinsci/throttle-concurrent-builds-plugin.git", + "clone_url": "https://github.com/jenkinsci/throttle-concurrent-builds-plugin.git", + "svn_url": "https://github.com/jenkinsci/throttle-concurrent-builds-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 354, + "stargazers_count": 76, + "watchers_count": 76, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 88, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 17, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 88, + "open_issues": 17, + "watchers": 76, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 685773, + "node_id": "MDEwOlJlcG9zaXRvcnk2ODU3NzM=", + "name": "jmdns", + "full_name": "jenkinsci/jmdns", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jmdns", + "description": "Patched version of jmDNS", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jmdns", + "forks_url": "https://api.github.com/repos/jenkinsci/jmdns/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jmdns/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jmdns/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jmdns/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jmdns/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jmdns/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jmdns/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jmdns/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jmdns/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jmdns/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jmdns/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jmdns/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jmdns/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jmdns/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jmdns/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jmdns/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jmdns/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jmdns/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jmdns/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jmdns/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jmdns/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jmdns/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jmdns/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jmdns/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jmdns/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jmdns/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jmdns/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jmdns/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jmdns/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jmdns/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jmdns/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jmdns/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jmdns/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jmdns/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jmdns/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jmdns/deployments", + "created_at": "2010-05-25T18:33:10Z", + "updated_at": "2015-06-12T16:43:57Z", + "pushed_at": "2018-01-12T19:55:22Z", + "git_url": "git://github.com/jenkinsci/jmdns.git", + "ssh_url": "git@github.com:jenkinsci/jmdns.git", + "clone_url": "https://github.com/jenkinsci/jmdns.git", + "svn_url": "https://github.com/jenkinsci/jmdns", + "homepage": "http://jmdns.sourceforge.net/", + "size": 891, + "stargazers_count": 13, + "watchers_count": 13, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 8, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 8, + "open_issues": 0, + "watchers": 13, + "default_branch": "incoming", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 713669, + "node_id": "MDEwOlJlcG9zaXRvcnk3MTM2Njk=", + "name": "gerrit-trigger-plugin", + "full_name": "jenkinsci/gerrit-trigger-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/gerrit-trigger-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/gerrit-trigger-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/gerrit-trigger-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/gerrit-trigger-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/gerrit-trigger-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/gerrit-trigger-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/gerrit-trigger-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/gerrit-trigger-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/gerrit-trigger-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/gerrit-trigger-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/gerrit-trigger-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/gerrit-trigger-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/gerrit-trigger-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/gerrit-trigger-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/gerrit-trigger-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/gerrit-trigger-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/gerrit-trigger-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/gerrit-trigger-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/gerrit-trigger-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/gerrit-trigger-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/gerrit-trigger-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/gerrit-trigger-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/gerrit-trigger-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/gerrit-trigger-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/gerrit-trigger-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/gerrit-trigger-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/gerrit-trigger-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/gerrit-trigger-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/gerrit-trigger-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/gerrit-trigger-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/gerrit-trigger-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/gerrit-trigger-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/gerrit-trigger-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/gerrit-trigger-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/gerrit-trigger-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/gerrit-trigger-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/gerrit-trigger-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/gerrit-trigger-plugin/deployments", + "created_at": "2010-06-10T14:43:35Z", + "updated_at": "2019-10-24T06:20:04Z", + "pushed_at": "2019-10-22T15:24:52Z", + "git_url": "git://github.com/jenkinsci/gerrit-trigger-plugin.git", + "ssh_url": "git@github.com:jenkinsci/gerrit-trigger-plugin.git", + "clone_url": "https://github.com/jenkinsci/gerrit-trigger-plugin.git", + "svn_url": "https://github.com/jenkinsci/gerrit-trigger-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 4781, + "stargazers_count": 173, + "watchers_count": 173, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 224, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 18, + "license": null, + "forks": 224, + "open_issues": 18, + "watchers": 173, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 805906, + "node_id": "MDEwOlJlcG9zaXRvcnk4MDU5MDY=", + "name": "hudson-notifo-plugin", + "full_name": "jenkinsci/hudson-notifo-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/hudson-notifo-plugin", + "description": "A Jenkins plugin for sending notifications through the Notifo API", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/hudson-notifo-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/hudson-notifo-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/hudson-notifo-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/hudson-notifo-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/hudson-notifo-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/hudson-notifo-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/hudson-notifo-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/hudson-notifo-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/hudson-notifo-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/hudson-notifo-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/hudson-notifo-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/hudson-notifo-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/hudson-notifo-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/hudson-notifo-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/hudson-notifo-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/hudson-notifo-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/hudson-notifo-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/hudson-notifo-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/hudson-notifo-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/hudson-notifo-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/hudson-notifo-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/hudson-notifo-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/hudson-notifo-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/hudson-notifo-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/hudson-notifo-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/hudson-notifo-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/hudson-notifo-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/hudson-notifo-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/hudson-notifo-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/hudson-notifo-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/hudson-notifo-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/hudson-notifo-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/hudson-notifo-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/hudson-notifo-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/hudson-notifo-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/hudson-notifo-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/hudson-notifo-plugin/deployments", + "created_at": "2010-07-29T18:47:10Z", + "updated_at": "2017-06-05T18:39:50Z", + "pushed_at": "2013-11-10T02:05:05Z", + "git_url": "git://github.com/jenkinsci/hudson-notifo-plugin.git", + "ssh_url": "git@github.com:jenkinsci/hudson-notifo-plugin.git", + "clone_url": "https://github.com/jenkinsci/hudson-notifo-plugin.git", + "svn_url": "https://github.com/jenkinsci/hudson-notifo-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 144, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 1, + "open_issues": 1, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 819523, + "node_id": "MDEwOlJlcG9zaXRvcnk4MTk1MjM=", + "name": "rake-plugin", + "full_name": "jenkinsci/rake-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/rake-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/rake-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/rake-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/rake-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/rake-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/rake-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/rake-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/rake-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/rake-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/rake-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/rake-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/rake-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/rake-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/rake-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/rake-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/rake-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/rake-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/rake-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/rake-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/rake-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/rake-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/rake-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/rake-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/rake-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/rake-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/rake-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/rake-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/rake-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/rake-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/rake-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/rake-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/rake-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/rake-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/rake-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/rake-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/rake-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/rake-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/rake-plugin/deployments", + "created_at": "2010-08-05T16:14:39Z", + "updated_at": "2018-07-19T06:59:30Z", + "pushed_at": "2019-10-08T11:13:57Z", + "git_url": "git://github.com/jenkinsci/rake-plugin.git", + "ssh_url": "git@github.com:jenkinsci/rake-plugin.git", + "clone_url": "https://github.com/jenkinsci/rake-plugin.git", + "svn_url": "https://github.com/jenkinsci/rake-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 163, + "stargazers_count": 12, + "watchers_count": 12, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 25, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 19, + "license": null, + "forks": 25, + "open_issues": 19, + "watchers": 12, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 819524, + "node_id": "MDEwOlJlcG9zaXRvcnk4MTk1MjQ=", + "name": "rubymetrics-plugin", + "full_name": "jenkinsci/rubymetrics-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/rubymetrics-plugin", + "description": "Ruby metric reports for Jenkins. Rcov, Rails stats, Rails notes and Flog.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/rubymetrics-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/rubymetrics-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/rubymetrics-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/rubymetrics-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/rubymetrics-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/rubymetrics-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/rubymetrics-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/rubymetrics-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/rubymetrics-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/rubymetrics-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/rubymetrics-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/rubymetrics-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/rubymetrics-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/rubymetrics-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/rubymetrics-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/rubymetrics-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/rubymetrics-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/rubymetrics-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/rubymetrics-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/rubymetrics-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/rubymetrics-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/rubymetrics-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/rubymetrics-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/rubymetrics-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/rubymetrics-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/rubymetrics-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/rubymetrics-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/rubymetrics-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/rubymetrics-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/rubymetrics-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/rubymetrics-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/rubymetrics-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/rubymetrics-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/rubymetrics-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/rubymetrics-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/rubymetrics-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/rubymetrics-plugin/deployments", + "created_at": "2010-08-05T16:14:50Z", + "updated_at": "2019-07-15T11:17:16Z", + "pushed_at": "2019-04-05T19:37:12Z", + "git_url": "git://github.com/jenkinsci/rubymetrics-plugin.git", + "ssh_url": "git@github.com:jenkinsci/rubymetrics-plugin.git", + "clone_url": "https://github.com/jenkinsci/rubymetrics-plugin.git", + "svn_url": "https://github.com/jenkinsci/rubymetrics-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 322, + "stargazers_count": 24, + "watchers_count": 24, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 27, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 17, + "license": null, + "forks": 27, + "open_issues": 17, + "watchers": 24, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 876303, + "node_id": "MDEwOlJlcG9zaXRvcnk4NzYzMDM=", + "name": "priority-sorter-plugin", + "full_name": "jenkinsci/priority-sorter-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/priority-sorter-plugin", + "description": "A plugin for Jenkins which allows jobs in the build queue to be sorted by priority rather than just FIFO", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/priority-sorter-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/priority-sorter-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/priority-sorter-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/priority-sorter-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/priority-sorter-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/priority-sorter-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/priority-sorter-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/priority-sorter-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/priority-sorter-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/priority-sorter-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/priority-sorter-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/priority-sorter-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/priority-sorter-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/priority-sorter-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/priority-sorter-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/priority-sorter-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/priority-sorter-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/priority-sorter-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/priority-sorter-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/priority-sorter-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/priority-sorter-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/priority-sorter-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/priority-sorter-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/priority-sorter-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/priority-sorter-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/priority-sorter-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/priority-sorter-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/priority-sorter-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/priority-sorter-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/priority-sorter-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/priority-sorter-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/priority-sorter-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/priority-sorter-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/priority-sorter-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/priority-sorter-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/priority-sorter-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/priority-sorter-plugin/deployments", + "created_at": "2010-09-01T00:33:10Z", + "updated_at": "2019-06-07T08:47:28Z", + "pushed_at": "2019-06-07T23:54:36Z", + "git_url": "git://github.com/jenkinsci/priority-sorter-plugin.git", + "ssh_url": "git@github.com:jenkinsci/priority-sorter-plugin.git", + "clone_url": "https://github.com/jenkinsci/priority-sorter-plugin.git", + "svn_url": "https://github.com/jenkinsci/priority-sorter-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 415, + "stargazers_count": 33, + "watchers_count": 33, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 37, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 5, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 37, + "open_issues": 5, + "watchers": 33, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1035305, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDM1MzA1", + "name": "hudson-clearcase-plugin", + "full_name": "jenkinsci/hudson-clearcase-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/hudson-clearcase-plugin", + "description": "Integrate Jenkins with Clearcase", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/hudson-clearcase-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/hudson-clearcase-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/hudson-clearcase-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/hudson-clearcase-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/hudson-clearcase-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/hudson-clearcase-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/hudson-clearcase-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/hudson-clearcase-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/hudson-clearcase-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/hudson-clearcase-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/hudson-clearcase-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/hudson-clearcase-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/hudson-clearcase-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/hudson-clearcase-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/hudson-clearcase-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/hudson-clearcase-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/hudson-clearcase-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/hudson-clearcase-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/hudson-clearcase-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/hudson-clearcase-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/hudson-clearcase-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/hudson-clearcase-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/hudson-clearcase-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/hudson-clearcase-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/hudson-clearcase-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/hudson-clearcase-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/hudson-clearcase-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/hudson-clearcase-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/hudson-clearcase-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/hudson-clearcase-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/hudson-clearcase-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/hudson-clearcase-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/hudson-clearcase-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/hudson-clearcase-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/hudson-clearcase-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/hudson-clearcase-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/hudson-clearcase-plugin/deployments", + "created_at": "2010-10-29T16:18:14Z", + "updated_at": "2013-11-10T02:05:08Z", + "pushed_at": "2013-11-10T02:05:02Z", + "git_url": "git://github.com/jenkinsci/hudson-clearcase-plugin.git", + "ssh_url": "git@github.com:jenkinsci/hudson-clearcase-plugin.git", + "clone_url": "https://github.com/jenkinsci/hudson-clearcase-plugin.git", + "svn_url": "https://github.com/jenkinsci/hudson-clearcase-plugin", + "homepage": "http://wiki.jenkins-ci.org/display/JENKINS/ClearCase Plugin", + "size": 1297, + "stargazers_count": 9, + "watchers_count": 9, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 3, + "open_issues": 0, + "watchers": 9, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1103607, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTAzNjA3", + "name": "jenkins", + "full_name": "jenkinsci/jenkins", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jenkins", + "description": "Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jenkins", + "forks_url": "https://api.github.com/repos/jenkinsci/jenkins/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jenkins/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jenkins/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jenkins/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jenkins/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jenkins/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jenkins/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jenkins/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jenkins/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jenkins/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jenkins/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jenkins/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jenkins/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jenkins/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jenkins/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jenkins/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jenkins/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jenkins/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jenkins/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jenkins/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jenkins/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jenkins/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jenkins/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jenkins/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jenkins/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jenkins/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jenkins/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jenkins/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jenkins/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jenkins/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jenkins/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jenkins/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jenkins/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jenkins/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jenkins/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jenkins/deployments", + "created_at": "2010-11-22T21:21:23Z", + "updated_at": "2019-10-26T01:07:22Z", + "pushed_at": "2019-10-25T16:17:56Z", + "git_url": "git://github.com/jenkinsci/jenkins.git", + "ssh_url": "git@github.com:jenkinsci/jenkins.git", + "clone_url": "https://github.com/jenkinsci/jenkins.git", + "svn_url": "https://github.com/jenkinsci/jenkins", + "homepage": "https://jenkins.io/", + "size": 113287, + "stargazers_count": 14167, + "watchers_count": 14167, + "language": "Java", + "has_issues": false, + "has_projects": false, + "has_downloads": false, + "has_wiki": false, + "has_pages": false, + "forks_count": 5807, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 74, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 5807, + "open_issues": 74, + "watchers": 14167, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1107810, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTA3ODEw", + "name": "robot-plugin", + "full_name": "jenkinsci/robot-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/robot-plugin", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/robot-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/robot-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/robot-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/robot-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/robot-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/robot-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/robot-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/robot-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/robot-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/robot-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/robot-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/robot-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/robot-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/robot-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/robot-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/robot-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/robot-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/robot-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/robot-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/robot-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/robot-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/robot-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/robot-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/robot-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/robot-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/robot-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/robot-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/robot-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/robot-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/robot-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/robot-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/robot-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/robot-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/robot-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/robot-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/robot-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/robot-plugin/deployments", + "created_at": "2010-11-24T02:03:20Z", + "updated_at": "2019-10-16T18:03:03Z", + "pushed_at": "2019-10-09T21:41:50Z", + "git_url": "git://github.com/jenkinsci/robot-plugin.git", + "ssh_url": "git@github.com:jenkinsci/robot-plugin.git", + "clone_url": "https://github.com/jenkinsci/robot-plugin.git", + "svn_url": "https://github.com/jenkinsci/robot-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 1183, + "stargazers_count": 43, + "watchers_count": 43, + "language": "HTML", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 70, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 70, + "open_issues": 3, + "watchers": 43, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1113515, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTEzNTE1", + "name": "testbed-ant-sample", + "full_name": "jenkinsci/testbed-ant-sample", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/testbed-ant-sample", + "description": "Small sample Ant project that can be built from Hudson. Used for demo.", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/testbed-ant-sample", + "forks_url": "https://api.github.com/repos/jenkinsci/testbed-ant-sample/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/testbed-ant-sample/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/testbed-ant-sample/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/testbed-ant-sample/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/testbed-ant-sample/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/testbed-ant-sample/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/testbed-ant-sample/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/testbed-ant-sample/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/testbed-ant-sample/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/testbed-ant-sample/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/testbed-ant-sample/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/testbed-ant-sample/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/testbed-ant-sample/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/testbed-ant-sample/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/testbed-ant-sample/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/testbed-ant-sample/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/testbed-ant-sample/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/testbed-ant-sample/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/testbed-ant-sample/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/testbed-ant-sample/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/testbed-ant-sample/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/testbed-ant-sample/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/testbed-ant-sample/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/testbed-ant-sample/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/testbed-ant-sample/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/testbed-ant-sample/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/testbed-ant-sample/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/testbed-ant-sample/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/testbed-ant-sample/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/testbed-ant-sample/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/testbed-ant-sample/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/testbed-ant-sample/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/testbed-ant-sample/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/testbed-ant-sample/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/testbed-ant-sample/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/testbed-ant-sample/deployments", + "created_at": "2010-11-26T01:15:42Z", + "updated_at": "2013-11-10T02:20:32Z", + "pushed_at": "2019-01-22T10:05:22Z", + "git_url": "git://github.com/jenkinsci/testbed-ant-sample.git", + "ssh_url": "git@github.com:jenkinsci/testbed-ant-sample.git", + "clone_url": "https://github.com/jenkinsci/testbed-ant-sample.git", + "svn_url": "https://github.com/jenkinsci/testbed-ant-sample", + "homepage": "", + "size": 6616, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 11, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 11, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1115876, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTE1ODc2", + "name": "testbed-anttest-sample", + "full_name": "jenkinsci/testbed-anttest-sample", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/testbed-anttest-sample", + "description": "A separate test project to go with testbed-ant-sample", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/testbed-anttest-sample", + "forks_url": "https://api.github.com/repos/jenkinsci/testbed-anttest-sample/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/testbed-anttest-sample/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/testbed-anttest-sample/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/testbed-anttest-sample/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/testbed-anttest-sample/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/testbed-anttest-sample/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/testbed-anttest-sample/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/testbed-anttest-sample/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/testbed-anttest-sample/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/testbed-anttest-sample/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/testbed-anttest-sample/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/testbed-anttest-sample/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/testbed-anttest-sample/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/testbed-anttest-sample/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/testbed-anttest-sample/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/testbed-anttest-sample/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/testbed-anttest-sample/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/testbed-anttest-sample/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/testbed-anttest-sample/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/testbed-anttest-sample/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/testbed-anttest-sample/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/testbed-anttest-sample/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/testbed-anttest-sample/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/testbed-anttest-sample/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/testbed-anttest-sample/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/testbed-anttest-sample/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/testbed-anttest-sample/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/testbed-anttest-sample/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/testbed-anttest-sample/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/testbed-anttest-sample/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/testbed-anttest-sample/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/testbed-anttest-sample/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/testbed-anttest-sample/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/testbed-anttest-sample/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/testbed-anttest-sample/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/testbed-anttest-sample/deployments", + "created_at": "2010-11-26T23:49:00Z", + "updated_at": "2013-11-10T02:20:36Z", + "pushed_at": "2013-11-10T02:20:29Z", + "git_url": "git://github.com/jenkinsci/testbed-anttest-sample.git", + "ssh_url": "git@github.com:jenkinsci/testbed-anttest-sample.git", + "clone_url": "https://github.com/jenkinsci/testbed-anttest-sample.git", + "svn_url": "https://github.com/jenkinsci/testbed-anttest-sample", + "homepage": "", + "size": 192, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1144230, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTQ0MjMw", + "name": "labmanager-plugin", + "full_name": "jenkinsci/labmanager-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/labmanager-plugin", + "description": "A Jenkins plugin for VMware's Lab Manager product", + "fork": true, + "url": "https://api.github.com/repos/jenkinsci/labmanager-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/labmanager-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/labmanager-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/labmanager-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/labmanager-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/labmanager-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/labmanager-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/labmanager-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/labmanager-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/labmanager-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/labmanager-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/labmanager-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/labmanager-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/labmanager-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/labmanager-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/labmanager-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/labmanager-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/labmanager-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/labmanager-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/labmanager-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/labmanager-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/labmanager-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/labmanager-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/labmanager-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/labmanager-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/labmanager-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/labmanager-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/labmanager-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/labmanager-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/labmanager-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/labmanager-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/labmanager-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/labmanager-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/labmanager-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/labmanager-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/labmanager-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/labmanager-plugin/deployments", + "created_at": "2010-12-06T19:45:07Z", + "updated_at": "2015-02-19T21:20:06Z", + "pushed_at": "2013-11-10T02:08:35Z", + "git_url": "git://github.com/jenkinsci/labmanager-plugin.git", + "ssh_url": "git@github.com:jenkinsci/labmanager-plugin.git", + "clone_url": "https://github.com/jenkinsci/labmanager-plugin.git", + "svn_url": "https://github.com/jenkinsci/labmanager-plugin", + "homepage": "", + "size": 1339, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 4, + "open_issues": 0, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1157145, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTU3MTQ1", + "name": "plugin-blekkoPanel", + "full_name": "jenkinsci/plugin-blekkoPanel", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/plugin-blekkoPanel", + "description": "blekko panel plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/plugin-blekkoPanel", + "forks_url": "https://api.github.com/repos/jenkinsci/plugin-blekkoPanel/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/plugin-blekkoPanel/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/plugin-blekkoPanel/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/plugin-blekkoPanel/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/plugin-blekkoPanel/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/plugin-blekkoPanel/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/plugin-blekkoPanel/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/plugin-blekkoPanel/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/plugin-blekkoPanel/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/plugin-blekkoPanel/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/plugin-blekkoPanel/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/plugin-blekkoPanel/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/plugin-blekkoPanel/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/plugin-blekkoPanel/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/plugin-blekkoPanel/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/plugin-blekkoPanel/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/plugin-blekkoPanel/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/plugin-blekkoPanel/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/plugin-blekkoPanel/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/plugin-blekkoPanel/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/plugin-blekkoPanel/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/plugin-blekkoPanel/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/plugin-blekkoPanel/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/plugin-blekkoPanel/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/plugin-blekkoPanel/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/plugin-blekkoPanel/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/plugin-blekkoPanel/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/plugin-blekkoPanel/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/plugin-blekkoPanel/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/plugin-blekkoPanel/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/plugin-blekkoPanel/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/plugin-blekkoPanel/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/plugin-blekkoPanel/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/plugin-blekkoPanel/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/plugin-blekkoPanel/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/plugin-blekkoPanel/deployments", + "created_at": "2010-12-10T20:19:21Z", + "updated_at": "2013-11-10T02:13:29Z", + "pushed_at": "2013-11-10T02:13:24Z", + "git_url": "git://github.com/jenkinsci/plugin-blekkoPanel.git", + "ssh_url": "git@github.com:jenkinsci/plugin-blekkoPanel.git", + "clone_url": "https://github.com/jenkinsci/plugin-blekkoPanel.git", + "svn_url": "https://github.com/jenkinsci/plugin-blekkoPanel", + "homepage": "http://jenkins-ci.org/", + "size": 124, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1159471, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTU5NDcx", + "name": "maven-hpi-plugin", + "full_name": "jenkinsci/maven-hpi-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/maven-hpi-plugin", + "description": "Maven plugin for building Jenkins plugins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/maven-hpi-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/maven-hpi-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/maven-hpi-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/maven-hpi-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/maven-hpi-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/maven-hpi-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/maven-hpi-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/maven-hpi-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/maven-hpi-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/maven-hpi-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/maven-hpi-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/maven-hpi-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/maven-hpi-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/maven-hpi-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/maven-hpi-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/maven-hpi-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/maven-hpi-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/maven-hpi-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/maven-hpi-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/maven-hpi-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/maven-hpi-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/maven-hpi-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/maven-hpi-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/maven-hpi-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/maven-hpi-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/maven-hpi-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/maven-hpi-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/maven-hpi-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/maven-hpi-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/maven-hpi-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/maven-hpi-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/maven-hpi-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/maven-hpi-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/maven-hpi-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/maven-hpi-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/maven-hpi-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/maven-hpi-plugin/deployments", + "created_at": "2010-12-11T20:09:28Z", + "updated_at": "2019-10-24T19:45:30Z", + "pushed_at": "2019-10-24T19:45:29Z", + "git_url": "git://github.com/jenkinsci/maven-hpi-plugin.git", + "ssh_url": "git@github.com:jenkinsci/maven-hpi-plugin.git", + "clone_url": "https://github.com/jenkinsci/maven-hpi-plugin.git", + "svn_url": "https://github.com/jenkinsci/maven-hpi-plugin", + "homepage": "http://jenkinsci.github.io/maven-hpi-plugin/", + "size": 2095, + "stargazers_count": 43, + "watchers_count": 43, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": true, + "forks_count": 68, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 16, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 68, + "open_issues": 16, + "watchers": 43, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163422, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNDIy", + "name": "subversion-plugin", + "full_name": "jenkinsci/subversion-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/subversion-plugin", + "description": "Jenkins subversion plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/subversion-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/subversion-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/subversion-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/subversion-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/subversion-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/subversion-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/subversion-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/subversion-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/subversion-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/subversion-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/subversion-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/subversion-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/subversion-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/subversion-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/subversion-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/subversion-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/subversion-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/subversion-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/subversion-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/subversion-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/subversion-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/subversion-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/subversion-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/subversion-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/subversion-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/subversion-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/subversion-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/subversion-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/subversion-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/subversion-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/subversion-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/subversion-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/subversion-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/subversion-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/subversion-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/subversion-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/subversion-plugin/deployments", + "created_at": "2010-12-13T05:24:54Z", + "updated_at": "2019-09-23T16:27:51Z", + "pushed_at": "2019-10-02T21:10:57Z", + "git_url": "git://github.com/jenkinsci/subversion-plugin.git", + "ssh_url": "git@github.com:jenkinsci/subversion-plugin.git", + "clone_url": "https://github.com/jenkinsci/subversion-plugin.git", + "svn_url": "https://github.com/jenkinsci/subversion-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 2304, + "stargazers_count": 104, + "watchers_count": 104, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 246, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 23, + "license": null, + "forks": 246, + "open_issues": 23, + "watchers": 104, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163425, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNDI1", + "name": "WebSVN2-plugin", + "full_name": "jenkinsci/WebSVN2-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/WebSVN2-plugin", + "description": "Jenkins WebSVN2 plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/WebSVN2-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/WebSVN2-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/WebSVN2-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/WebSVN2-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/WebSVN2-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/WebSVN2-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/WebSVN2-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/WebSVN2-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/WebSVN2-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/WebSVN2-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/WebSVN2-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/WebSVN2-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/WebSVN2-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/WebSVN2-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/WebSVN2-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/WebSVN2-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/WebSVN2-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/WebSVN2-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/WebSVN2-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/WebSVN2-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/WebSVN2-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/WebSVN2-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/WebSVN2-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/WebSVN2-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/WebSVN2-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/WebSVN2-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/WebSVN2-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/WebSVN2-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/WebSVN2-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/WebSVN2-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/WebSVN2-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/WebSVN2-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/WebSVN2-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/WebSVN2-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/WebSVN2-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/WebSVN2-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/WebSVN2-plugin/deployments", + "created_at": "2010-12-13T05:25:45Z", + "updated_at": "2018-11-16T23:29:54Z", + "pushed_at": "2016-06-29T08:28:25Z", + "git_url": "git://github.com/jenkinsci/WebSVN2-plugin.git", + "ssh_url": "git@github.com:jenkinsci/WebSVN2-plugin.git", + "clone_url": "https://github.com/jenkinsci/WebSVN2-plugin.git", + "svn_url": "https://github.com/jenkinsci/WebSVN2-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 436, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 6, + "open_issues": 2, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163426, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNDI2", + "name": "analysis-suite-plugin", + "full_name": "jenkinsci/analysis-suite-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/analysis-suite-plugin", + "description": "Jenkins analysis-suite plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/analysis-suite-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/analysis-suite-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/analysis-suite-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/analysis-suite-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/analysis-suite-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/analysis-suite-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/analysis-suite-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/analysis-suite-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/analysis-suite-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/analysis-suite-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/analysis-suite-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/analysis-suite-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/analysis-suite-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/analysis-suite-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/analysis-suite-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/analysis-suite-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/analysis-suite-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/analysis-suite-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/analysis-suite-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/analysis-suite-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/analysis-suite-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/analysis-suite-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/analysis-suite-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/analysis-suite-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/analysis-suite-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/analysis-suite-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/analysis-suite-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/analysis-suite-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/analysis-suite-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/analysis-suite-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/analysis-suite-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/analysis-suite-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/analysis-suite-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/analysis-suite-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/analysis-suite-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/analysis-suite-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/analysis-suite-plugin/deployments", + "created_at": "2010-12-13T05:25:45Z", + "updated_at": "2018-12-21T12:58:49Z", + "pushed_at": "2018-12-21T12:58:47Z", + "git_url": "git://github.com/jenkinsci/analysis-suite-plugin.git", + "ssh_url": "git@github.com:jenkinsci/analysis-suite-plugin.git", + "clone_url": "https://github.com/jenkinsci/analysis-suite-plugin.git", + "svn_url": "https://github.com/jenkinsci/analysis-suite-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 476, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Shell", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 13, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 13, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163427, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNDI3", + "name": "analysis-regression-checker-plugin", + "full_name": "jenkinsci/analysis-regression-checker-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/analysis-regression-checker-plugin", + "description": "Jenkins analysis-regression-checker plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/analysis-regression-checker-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/analysis-regression-checker-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/analysis-regression-checker-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/analysis-regression-checker-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/analysis-regression-checker-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/analysis-regression-checker-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/analysis-regression-checker-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/analysis-regression-checker-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/analysis-regression-checker-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/analysis-regression-checker-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/analysis-regression-checker-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/analysis-regression-checker-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/analysis-regression-checker-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/analysis-regression-checker-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/analysis-regression-checker-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/analysis-regression-checker-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/analysis-regression-checker-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/analysis-regression-checker-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/analysis-regression-checker-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/analysis-regression-checker-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/analysis-regression-checker-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/analysis-regression-checker-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/analysis-regression-checker-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/analysis-regression-checker-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/analysis-regression-checker-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/analysis-regression-checker-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/analysis-regression-checker-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/analysis-regression-checker-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/analysis-regression-checker-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/analysis-regression-checker-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/analysis-regression-checker-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/analysis-regression-checker-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/analysis-regression-checker-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/analysis-regression-checker-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/analysis-regression-checker-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/analysis-regression-checker-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/analysis-regression-checker-plugin/deployments", + "created_at": "2010-12-13T05:25:45Z", + "updated_at": "2013-11-10T01:52:12Z", + "pushed_at": "2013-11-10T01:52:10Z", + "git_url": "git://github.com/jenkinsci/analysis-regression-checker-plugin.git", + "ssh_url": "git@github.com:jenkinsci/analysis-regression-checker-plugin.git", + "clone_url": "https://github.com/jenkinsci/analysis-regression-checker-plugin.git", + "svn_url": "https://github.com/jenkinsci/analysis-regression-checker-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 112, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163428, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNDI4", + "name": "VMWareLabManager-plugin", + "full_name": "jenkinsci/VMWareLabManager-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/VMWareLabManager-plugin", + "description": "Jenkins VMWareLabManager plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/VMWareLabManager-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/VMWareLabManager-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/VMWareLabManager-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/VMWareLabManager-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/VMWareLabManager-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/VMWareLabManager-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/VMWareLabManager-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/VMWareLabManager-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/VMWareLabManager-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/VMWareLabManager-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/VMWareLabManager-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/VMWareLabManager-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/VMWareLabManager-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/VMWareLabManager-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/VMWareLabManager-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/VMWareLabManager-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/VMWareLabManager-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/VMWareLabManager-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/VMWareLabManager-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/VMWareLabManager-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/VMWareLabManager-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/VMWareLabManager-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/VMWareLabManager-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/VMWareLabManager-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/VMWareLabManager-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/VMWareLabManager-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/VMWareLabManager-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/VMWareLabManager-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/VMWareLabManager-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/VMWareLabManager-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/VMWareLabManager-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/VMWareLabManager-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/VMWareLabManager-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/VMWareLabManager-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/VMWareLabManager-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/VMWareLabManager-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/VMWareLabManager-plugin/deployments", + "created_at": "2010-12-13T05:25:45Z", + "updated_at": "2014-05-05T09:00:56Z", + "pushed_at": "2013-11-10T01:51:32Z", + "git_url": "git://github.com/jenkinsci/VMWareLabManager-plugin.git", + "ssh_url": "git@github.com:jenkinsci/VMWareLabManager-plugin.git", + "clone_url": "https://github.com/jenkinsci/VMWareLabManager-plugin.git", + "svn_url": "https://github.com/jenkinsci/VMWareLabManager-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 136, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163429, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNDI5", + "name": "audit-trail-plugin", + "full_name": "jenkinsci/audit-trail-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/audit-trail-plugin", + "description": "Jenkins audit-trail plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/deployments", + "created_at": "2010-12-13T05:25:45Z", + "updated_at": "2019-06-09T13:28:43Z", + "pushed_at": "2019-10-07T18:12:07Z", + "git_url": "git://github.com/jenkinsci/audit-trail-plugin.git", + "ssh_url": "git@github.com:jenkinsci/audit-trail-plugin.git", + "clone_url": "https://github.com/jenkinsci/audit-trail-plugin.git", + "svn_url": "https://github.com/jenkinsci/audit-trail-plugin", + "homepage": "https://wiki.jenkins.io/display/JENKINS/Audit+Trail+Plugin", + "size": 124, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 26, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 26, + "open_issues": 1, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163430, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNDMw", + "name": "analysis-test-plugin", + "full_name": "jenkinsci/analysis-test-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/analysis-test-plugin", + "description": "Jenkins analysis-test plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/analysis-test-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/analysis-test-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/analysis-test-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/analysis-test-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/analysis-test-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/analysis-test-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/analysis-test-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/analysis-test-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/analysis-test-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/analysis-test-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/analysis-test-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/analysis-test-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/analysis-test-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/analysis-test-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/analysis-test-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/analysis-test-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/analysis-test-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/analysis-test-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/analysis-test-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/analysis-test-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/analysis-test-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/analysis-test-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/analysis-test-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/analysis-test-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/analysis-test-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/analysis-test-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/analysis-test-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/analysis-test-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/analysis-test-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/analysis-test-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/analysis-test-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/analysis-test-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/analysis-test-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/analysis-test-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/analysis-test-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/analysis-test-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/analysis-test-plugin/deployments", + "created_at": "2010-12-13T05:25:46Z", + "updated_at": "2018-08-31T18:23:33Z", + "pushed_at": "2018-08-31T18:23:31Z", + "git_url": "git://github.com/jenkinsci/analysis-test-plugin.git", + "ssh_url": "git@github.com:jenkinsci/analysis-test-plugin.git", + "clone_url": "https://github.com/jenkinsci/analysis-test-plugin.git", + "svn_url": "https://github.com/jenkinsci/analysis-test-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 173, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 5, + "open_issues": 0, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163431, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNDMx", + "name": "android-emulator-plugin", + "full_name": "jenkinsci/android-emulator-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/android-emulator-plugin", + "description": "Android Emulator plugin for Jenkins", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/android-emulator-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/android-emulator-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/android-emulator-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/android-emulator-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/android-emulator-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/android-emulator-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/android-emulator-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/android-emulator-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/android-emulator-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/android-emulator-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/android-emulator-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/android-emulator-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/android-emulator-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/android-emulator-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/android-emulator-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/android-emulator-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/android-emulator-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/android-emulator-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/android-emulator-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/android-emulator-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/android-emulator-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/android-emulator-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/android-emulator-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/android-emulator-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/android-emulator-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/android-emulator-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/android-emulator-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/android-emulator-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/android-emulator-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/android-emulator-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/android-emulator-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/android-emulator-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/android-emulator-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/android-emulator-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/android-emulator-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/android-emulator-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/android-emulator-plugin/deployments", + "created_at": "2010-12-13T05:25:46Z", + "updated_at": "2019-10-24T20:35:27Z", + "pushed_at": "2019-10-08T09:51:01Z", + "git_url": "git://github.com/jenkinsci/android-emulator-plugin.git", + "ssh_url": "git@github.com:jenkinsci/android-emulator-plugin.git", + "clone_url": "https://github.com/jenkinsci/android-emulator-plugin.git", + "svn_url": "https://github.com/jenkinsci/android-emulator-plugin", + "homepage": "http://wiki.jenkins-ci.org/display/JENKINS/Android Emulator Plugin", + "size": 942, + "stargazers_count": 179, + "watchers_count": 179, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": false, + "has_wiki": false, + "has_pages": true, + "forks_count": 133, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 8, + "license": null, + "forks": 133, + "open_issues": 8, + "watchers": 179, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163432, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNDMy", + "name": "BlameSubversion-plugin", + "full_name": "jenkinsci/BlameSubversion-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/BlameSubversion-plugin", + "description": "Jenkins BlameSubversion plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/BlameSubversion-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/BlameSubversion-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/BlameSubversion-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/BlameSubversion-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/BlameSubversion-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/BlameSubversion-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/BlameSubversion-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/BlameSubversion-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/BlameSubversion-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/BlameSubversion-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/BlameSubversion-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/BlameSubversion-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/BlameSubversion-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/BlameSubversion-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/BlameSubversion-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/BlameSubversion-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/BlameSubversion-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/BlameSubversion-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/BlameSubversion-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/BlameSubversion-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/BlameSubversion-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/BlameSubversion-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/BlameSubversion-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/BlameSubversion-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/BlameSubversion-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/BlameSubversion-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/BlameSubversion-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/BlameSubversion-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/BlameSubversion-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/BlameSubversion-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/BlameSubversion-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/BlameSubversion-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/BlameSubversion-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/BlameSubversion-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/BlameSubversion-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/BlameSubversion-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/BlameSubversion-plugin/deployments", + "created_at": "2010-12-13T05:25:47Z", + "updated_at": "2013-11-10T01:50:46Z", + "pushed_at": "2019-10-08T12:09:45Z", + "git_url": "git://github.com/jenkinsci/BlameSubversion-plugin.git", + "ssh_url": "git@github.com:jenkinsci/BlameSubversion-plugin.git", + "clone_url": "https://github.com/jenkinsci/BlameSubversion-plugin.git", + "svn_url": "https://github.com/jenkinsci/BlameSubversion-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 579, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": null, + "forks": 5, + "open_issues": 3, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163433, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNDMz", + "name": "URLSCM-plugin", + "full_name": "jenkinsci/URLSCM-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/URLSCM-plugin", + "description": "Jenkins URLSCM plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/URLSCM-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/URLSCM-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/URLSCM-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/URLSCM-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/URLSCM-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/URLSCM-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/URLSCM-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/URLSCM-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/URLSCM-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/URLSCM-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/URLSCM-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/URLSCM-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/URLSCM-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/URLSCM-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/URLSCM-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/URLSCM-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/URLSCM-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/URLSCM-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/URLSCM-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/URLSCM-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/URLSCM-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/URLSCM-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/URLSCM-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/URLSCM-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/URLSCM-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/URLSCM-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/URLSCM-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/URLSCM-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/URLSCM-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/URLSCM-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/URLSCM-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/URLSCM-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/URLSCM-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/URLSCM-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/URLSCM-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/URLSCM-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/URLSCM-plugin/deployments", + "created_at": "2010-12-13T05:25:49Z", + "updated_at": "2015-08-20T14:53:13Z", + "pushed_at": "2019-10-08T12:22:53Z", + "git_url": "git://github.com/jenkinsci/URLSCM-plugin.git", + "ssh_url": "git@github.com:jenkinsci/URLSCM-plugin.git", + "clone_url": "https://github.com/jenkinsci/URLSCM-plugin.git", + "svn_url": "https://github.com/jenkinsci/URLSCM-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 217, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 5, + "open_issues": 3, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163434, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNDM0", + "name": "analysis-collector-plugin", + "full_name": "jenkinsci/analysis-collector-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/analysis-collector-plugin", + "description": "Jenkins analysis-collector plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/analysis-collector-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/analysis-collector-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/analysis-collector-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/analysis-collector-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/analysis-collector-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/analysis-collector-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/analysis-collector-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/analysis-collector-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/analysis-collector-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/analysis-collector-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/analysis-collector-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/analysis-collector-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/analysis-collector-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/analysis-collector-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/analysis-collector-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/analysis-collector-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/analysis-collector-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/analysis-collector-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/analysis-collector-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/analysis-collector-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/analysis-collector-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/analysis-collector-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/analysis-collector-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/analysis-collector-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/analysis-collector-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/analysis-collector-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/analysis-collector-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/analysis-collector-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/analysis-collector-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/analysis-collector-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/analysis-collector-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/analysis-collector-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/analysis-collector-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/analysis-collector-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/analysis-collector-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/analysis-collector-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/analysis-collector-plugin/deployments", + "created_at": "2010-12-13T05:25:51Z", + "updated_at": "2019-09-30T04:01:11Z", + "pushed_at": "2019-09-24T11:34:03Z", + "git_url": "git://github.com/jenkinsci/analysis-collector-plugin.git", + "ssh_url": "git@github.com:jenkinsci/analysis-collector-plugin.git", + "clone_url": "https://github.com/jenkinsci/analysis-collector-plugin.git", + "svn_url": "https://github.com/jenkinsci/analysis-collector-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 591, + "stargazers_count": 20, + "watchers_count": 20, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 19, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 19, + "open_issues": 0, + "watchers": 20, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163435, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNDM1", + "name": "analysis-pom-plugin", + "full_name": "jenkinsci/analysis-pom-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/analysis-pom-plugin", + "description": "Jenkins analysis-pom plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/analysis-pom-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/analysis-pom-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/analysis-pom-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/analysis-pom-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/analysis-pom-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/analysis-pom-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/analysis-pom-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/analysis-pom-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/analysis-pom-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/analysis-pom-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/analysis-pom-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/analysis-pom-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/analysis-pom-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/analysis-pom-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/analysis-pom-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/analysis-pom-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/analysis-pom-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/analysis-pom-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/analysis-pom-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/analysis-pom-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/analysis-pom-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/analysis-pom-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/analysis-pom-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/analysis-pom-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/analysis-pom-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/analysis-pom-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/analysis-pom-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/analysis-pom-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/analysis-pom-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/analysis-pom-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/analysis-pom-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/analysis-pom-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/analysis-pom-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/analysis-pom-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/analysis-pom-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/analysis-pom-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/analysis-pom-plugin/deployments", + "created_at": "2010-12-13T05:25:52Z", + "updated_at": "2018-12-21T12:58:57Z", + "pushed_at": "2018-12-21T12:58:55Z", + "git_url": "git://github.com/jenkinsci/analysis-pom-plugin.git", + "ssh_url": "git@github.com:jenkinsci/analysis-pom-plugin.git", + "clone_url": "https://github.com/jenkinsci/analysis-pom-plugin.git", + "svn_url": "https://github.com/jenkinsci/analysis-pom-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 225, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Shell", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 17, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 17, + "open_issues": 0, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163436, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNDM2", + "name": "SCTMExecutor-plugin", + "full_name": "jenkinsci/SCTMExecutor-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/SCTMExecutor-plugin", + "description": "Jenkins SCTMExecutor plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/SCTMExecutor-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/SCTMExecutor-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/SCTMExecutor-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/SCTMExecutor-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/SCTMExecutor-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/SCTMExecutor-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/SCTMExecutor-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/SCTMExecutor-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/SCTMExecutor-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/SCTMExecutor-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/SCTMExecutor-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/SCTMExecutor-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/SCTMExecutor-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/SCTMExecutor-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/SCTMExecutor-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/SCTMExecutor-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/SCTMExecutor-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/SCTMExecutor-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/SCTMExecutor-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/SCTMExecutor-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/SCTMExecutor-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/SCTMExecutor-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/SCTMExecutor-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/SCTMExecutor-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/SCTMExecutor-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/SCTMExecutor-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/SCTMExecutor-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/SCTMExecutor-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/SCTMExecutor-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/SCTMExecutor-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/SCTMExecutor-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/SCTMExecutor-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/SCTMExecutor-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/SCTMExecutor-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/SCTMExecutor-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/SCTMExecutor-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/SCTMExecutor-plugin/deployments", + "created_at": "2010-12-13T05:25:54Z", + "updated_at": "2017-11-15T09:57:27Z", + "pushed_at": "2018-03-28T08:53:06Z", + "git_url": "git://github.com/jenkinsci/SCTMExecutor-plugin.git", + "ssh_url": "git@github.com:jenkinsci/SCTMExecutor-plugin.git", + "clone_url": "https://github.com/jenkinsci/SCTMExecutor-plugin.git", + "svn_url": "https://github.com/jenkinsci/SCTMExecutor-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 527, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 7, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 7, + "open_issues": 1, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163437, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNDM3", + "name": "bamboo-notifier-plugin", + "full_name": "jenkinsci/bamboo-notifier-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/bamboo-notifier-plugin", + "description": "Jenkins bamboo-notifier plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/bamboo-notifier-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/bamboo-notifier-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/bamboo-notifier-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/bamboo-notifier-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/bamboo-notifier-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/bamboo-notifier-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/bamboo-notifier-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/bamboo-notifier-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/bamboo-notifier-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/bamboo-notifier-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/bamboo-notifier-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/bamboo-notifier-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/bamboo-notifier-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/bamboo-notifier-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/bamboo-notifier-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/bamboo-notifier-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/bamboo-notifier-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/bamboo-notifier-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/bamboo-notifier-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/bamboo-notifier-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/bamboo-notifier-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/bamboo-notifier-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/bamboo-notifier-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/bamboo-notifier-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/bamboo-notifier-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/bamboo-notifier-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/bamboo-notifier-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/bamboo-notifier-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/bamboo-notifier-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/bamboo-notifier-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/bamboo-notifier-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/bamboo-notifier-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/bamboo-notifier-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/bamboo-notifier-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/bamboo-notifier-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/bamboo-notifier-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/bamboo-notifier-plugin/deployments", + "created_at": "2010-12-13T05:25:56Z", + "updated_at": "2013-11-10T01:54:39Z", + "pushed_at": "2013-11-10T01:54:29Z", + "git_url": "git://github.com/jenkinsci/bamboo-notifier-plugin.git", + "ssh_url": "git@github.com:jenkinsci/bamboo-notifier-plugin.git", + "clone_url": "https://github.com/jenkinsci/bamboo-notifier-plugin.git", + "svn_url": "https://github.com/jenkinsci/bamboo-notifier-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 112, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163438, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNDM4", + "name": "backlog-plugin", + "full_name": "jenkinsci/backlog-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/backlog-plugin", + "description": "Jenkins backlog plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/backlog-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/backlog-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/backlog-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/backlog-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/backlog-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/backlog-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/backlog-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/backlog-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/backlog-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/backlog-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/backlog-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/backlog-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/backlog-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/backlog-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/backlog-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/backlog-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/backlog-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/backlog-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/backlog-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/backlog-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/backlog-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/backlog-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/backlog-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/backlog-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/backlog-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/backlog-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/backlog-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/backlog-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/backlog-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/backlog-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/backlog-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/backlog-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/backlog-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/backlog-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/backlog-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/backlog-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/backlog-plugin/deployments", + "created_at": "2010-12-13T05:25:56Z", + "updated_at": "2019-10-18T05:38:18Z", + "pushed_at": "2019-10-18T05:38:15Z", + "git_url": "git://github.com/jenkinsci/backlog-plugin.git", + "ssh_url": "git@github.com:jenkinsci/backlog-plugin.git", + "clone_url": "https://github.com/jenkinsci/backlog-plugin.git", + "svn_url": "https://github.com/jenkinsci/backlog-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 263, + "stargazers_count": 12, + "watchers_count": 12, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 9, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 9, + "open_issues": 0, + "watchers": 12, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163439, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNDM5", + "name": "analysis-core-plugin", + "full_name": "jenkinsci/analysis-core-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/analysis-core-plugin", + "description": "[Deprecated] Jenkins analysis-core plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/analysis-core-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/analysis-core-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/analysis-core-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/analysis-core-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/analysis-core-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/analysis-core-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/analysis-core-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/analysis-core-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/analysis-core-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/analysis-core-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/analysis-core-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/analysis-core-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/analysis-core-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/analysis-core-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/analysis-core-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/analysis-core-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/analysis-core-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/analysis-core-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/analysis-core-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/analysis-core-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/analysis-core-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/analysis-core-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/analysis-core-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/analysis-core-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/analysis-core-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/analysis-core-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/analysis-core-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/analysis-core-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/analysis-core-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/analysis-core-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/analysis-core-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/analysis-core-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/analysis-core-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/analysis-core-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/analysis-core-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/analysis-core-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/analysis-core-plugin/deployments", + "created_at": "2010-12-13T05:25:57Z", + "updated_at": "2019-09-24T11:33:11Z", + "pushed_at": "2019-09-24T11:33:08Z", + "git_url": "git://github.com/jenkinsci/analysis-core-plugin.git", + "ssh_url": "git@github.com:jenkinsci/analysis-core-plugin.git", + "clone_url": "https://github.com/jenkinsci/analysis-core-plugin.git", + "svn_url": "https://github.com/jenkinsci/analysis-core-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 2490, + "stargazers_count": 42, + "watchers_count": 42, + "language": "Java", + "has_issues": false, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 95, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 95, + "open_issues": 3, + "watchers": 42, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163440, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNDQw", + "name": "blame-upstream-commiters-plugin", + "full_name": "jenkinsci/blame-upstream-commiters-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/blame-upstream-commiters-plugin", + "description": "Jenkins blame-upstream-commiters plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/blame-upstream-commiters-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/blame-upstream-commiters-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/blame-upstream-commiters-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/blame-upstream-commiters-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/blame-upstream-commiters-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/blame-upstream-commiters-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/blame-upstream-commiters-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/blame-upstream-commiters-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/blame-upstream-commiters-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/blame-upstream-commiters-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/blame-upstream-commiters-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/blame-upstream-commiters-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/blame-upstream-commiters-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/blame-upstream-commiters-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/blame-upstream-commiters-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/blame-upstream-commiters-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/blame-upstream-commiters-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/blame-upstream-commiters-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/blame-upstream-commiters-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/blame-upstream-commiters-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/blame-upstream-commiters-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/blame-upstream-commiters-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/blame-upstream-commiters-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/blame-upstream-commiters-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/blame-upstream-commiters-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/blame-upstream-commiters-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/blame-upstream-commiters-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/blame-upstream-commiters-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/blame-upstream-commiters-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/blame-upstream-commiters-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/blame-upstream-commiters-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/blame-upstream-commiters-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/blame-upstream-commiters-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/blame-upstream-commiters-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/blame-upstream-commiters-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/blame-upstream-commiters-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/blame-upstream-commiters-plugin/deployments", + "created_at": "2010-12-13T05:25:57Z", + "updated_at": "2013-11-10T01:54:50Z", + "pushed_at": "2013-11-10T01:54:47Z", + "git_url": "git://github.com/jenkinsci/blame-upstream-commiters-plugin.git", + "ssh_url": "git@github.com:jenkinsci/blame-upstream-commiters-plugin.git", + "clone_url": "https://github.com/jenkinsci/blame-upstream-commiters-plugin.git", + "svn_url": "https://github.com/jenkinsci/blame-upstream-commiters-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 119, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163441, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNDQx", + "name": "artifactory-plugin", + "full_name": "jenkinsci/artifactory-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/artifactory-plugin", + "description": "Jenkins artifactory plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/artifactory-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/artifactory-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/artifactory-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/artifactory-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/artifactory-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/artifactory-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/artifactory-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/artifactory-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/artifactory-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/artifactory-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/artifactory-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/artifactory-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/artifactory-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/artifactory-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/artifactory-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/artifactory-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/artifactory-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/artifactory-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/artifactory-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/artifactory-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/artifactory-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/artifactory-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/artifactory-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/artifactory-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/artifactory-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/artifactory-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/artifactory-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/artifactory-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/artifactory-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/artifactory-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/artifactory-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/artifactory-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/artifactory-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/artifactory-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/artifactory-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/artifactory-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/artifactory-plugin/deployments", + "created_at": "2010-12-13T05:25:58Z", + "updated_at": "2019-09-23T16:08:21Z", + "pushed_at": "2019-09-23T16:08:18Z", + "git_url": "git://github.com/jenkinsci/artifactory-plugin.git", + "ssh_url": "git@github.com:jenkinsci/artifactory-plugin.git", + "clone_url": "https://github.com/jenkinsci/artifactory-plugin.git", + "svn_url": "https://github.com/jenkinsci/artifactory-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 4556, + "stargazers_count": 78, + "watchers_count": 78, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 233, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 16, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 233, + "open_issues": 16, + "watchers": 78, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163442, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNDQy", + "name": "accurev-plugin", + "full_name": "jenkinsci/accurev-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/accurev-plugin", + "description": "Jenkins accurev plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/accurev-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/accurev-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/accurev-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/accurev-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/accurev-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/accurev-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/accurev-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/accurev-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/accurev-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/accurev-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/accurev-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/accurev-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/accurev-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/accurev-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/accurev-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/accurev-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/accurev-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/accurev-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/accurev-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/accurev-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/accurev-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/accurev-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/accurev-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/accurev-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/accurev-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/accurev-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/accurev-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/accurev-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/accurev-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/accurev-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/accurev-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/accurev-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/accurev-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/accurev-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/accurev-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/accurev-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/accurev-plugin/deployments", + "created_at": "2010-12-13T05:25:58Z", + "updated_at": "2019-10-21T16:15:19Z", + "pushed_at": "2019-10-21T16:15:17Z", + "git_url": "git://github.com/jenkinsci/accurev-plugin.git", + "ssh_url": "git@github.com:jenkinsci/accurev-plugin.git", + "clone_url": "https://github.com/jenkinsci/accurev-plugin.git", + "svn_url": "https://github.com/jenkinsci/accurev-plugin", + "homepage": "https://jenkins.io", + "size": 1056, + "stargazers_count": 14, + "watchers_count": 14, + "language": "Java", + "has_issues": true, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 30, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 30, + "open_issues": 1, + "watchers": 14, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163443, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNDQz", + "name": "bruceschneier-plugin", + "full_name": "jenkinsci/bruceschneier-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/bruceschneier-plugin", + "description": "Jenkins bruceschneier plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/bruceschneier-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/bruceschneier-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/bruceschneier-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/bruceschneier-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/bruceschneier-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/bruceschneier-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/bruceschneier-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/bruceschneier-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/bruceschneier-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/bruceschneier-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/bruceschneier-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/bruceschneier-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/bruceschneier-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/bruceschneier-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/bruceschneier-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/bruceschneier-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/bruceschneier-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/bruceschneier-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/bruceschneier-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/bruceschneier-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/bruceschneier-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/bruceschneier-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/bruceschneier-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/bruceschneier-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/bruceschneier-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/bruceschneier-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/bruceschneier-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/bruceschneier-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/bruceschneier-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/bruceschneier-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/bruceschneier-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/bruceschneier-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/bruceschneier-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/bruceschneier-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/bruceschneier-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/bruceschneier-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/bruceschneier-plugin/deployments", + "created_at": "2010-12-13T05:25:58Z", + "updated_at": "2013-11-10T01:55:05Z", + "pushed_at": "2013-11-10T01:55:00Z", + "git_url": "git://github.com/jenkinsci/bruceschneier-plugin.git", + "ssh_url": "git@github.com:jenkinsci/bruceschneier-plugin.git", + "clone_url": "https://github.com/jenkinsci/bruceschneier-plugin.git", + "svn_url": "https://github.com/jenkinsci/bruceschneier-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 284, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163444, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNDQ0", + "name": "bazaar-plugin", + "full_name": "jenkinsci/bazaar-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/bazaar-plugin", + "description": "Jenkins bazaar plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/bazaar-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/bazaar-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/bazaar-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/bazaar-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/bazaar-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/bazaar-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/bazaar-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/bazaar-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/bazaar-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/bazaar-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/bazaar-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/bazaar-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/bazaar-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/bazaar-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/bazaar-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/bazaar-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/bazaar-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/bazaar-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/bazaar-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/bazaar-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/bazaar-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/bazaar-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/bazaar-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/bazaar-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/bazaar-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/bazaar-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/bazaar-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/bazaar-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/bazaar-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/bazaar-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/bazaar-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/bazaar-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/bazaar-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/bazaar-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/bazaar-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/bazaar-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/bazaar-plugin/deployments", + "created_at": "2010-12-13T05:25:59Z", + "updated_at": "2017-12-15T18:56:27Z", + "pushed_at": "2018-01-11T09:14:33Z", + "git_url": "git://github.com/jenkinsci/bazaar-plugin.git", + "ssh_url": "git@github.com:jenkinsci/bazaar-plugin.git", + "clone_url": "https://github.com/jenkinsci/bazaar-plugin.git", + "svn_url": "https://github.com/jenkinsci/bazaar-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 125, + "stargazers_count": 11, + "watchers_count": 11, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 13, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 13, + "open_issues": 0, + "watchers": 11, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163445, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNDQ1", + "name": "active-directory-plugin", + "full_name": "jenkinsci/active-directory-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/active-directory-plugin", + "description": "Jenkins active-directory plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/active-directory-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/active-directory-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/active-directory-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/active-directory-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/active-directory-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/active-directory-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/active-directory-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/active-directory-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/active-directory-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/active-directory-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/active-directory-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/active-directory-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/active-directory-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/active-directory-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/active-directory-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/active-directory-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/active-directory-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/active-directory-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/active-directory-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/active-directory-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/active-directory-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/active-directory-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/active-directory-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/active-directory-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/active-directory-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/active-directory-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/active-directory-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/active-directory-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/active-directory-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/active-directory-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/active-directory-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/active-directory-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/active-directory-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/active-directory-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/active-directory-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/active-directory-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/active-directory-plugin/deployments", + "created_at": "2010-12-13T05:26:01Z", + "updated_at": "2019-07-15T11:02:36Z", + "pushed_at": "2019-10-23T10:02:45Z", + "git_url": "git://github.com/jenkinsci/active-directory-plugin.git", + "ssh_url": "git@github.com:jenkinsci/active-directory-plugin.git", + "clone_url": "https://github.com/jenkinsci/active-directory-plugin.git", + "svn_url": "https://github.com/jenkinsci/active-directory-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 700, + "stargazers_count": 37, + "watchers_count": 37, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 76, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 5, + "license": null, + "forks": 76, + "open_issues": 5, + "watchers": 37, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163446, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNDQ2", + "name": "bitkeeper-plugin", + "full_name": "jenkinsci/bitkeeper-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/bitkeeper-plugin", + "description": "Jenkins bitkeeper plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/bitkeeper-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/bitkeeper-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/bitkeeper-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/bitkeeper-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/bitkeeper-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/bitkeeper-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/bitkeeper-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/bitkeeper-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/bitkeeper-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/bitkeeper-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/bitkeeper-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/bitkeeper-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/bitkeeper-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/bitkeeper-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/bitkeeper-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/bitkeeper-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/bitkeeper-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/bitkeeper-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/bitkeeper-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/bitkeeper-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/bitkeeper-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/bitkeeper-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/bitkeeper-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/bitkeeper-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/bitkeeper-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/bitkeeper-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/bitkeeper-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/bitkeeper-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/bitkeeper-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/bitkeeper-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/bitkeeper-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/bitkeeper-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/bitkeeper-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/bitkeeper-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/bitkeeper-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/bitkeeper-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/bitkeeper-plugin/deployments", + "created_at": "2010-12-13T05:26:01Z", + "updated_at": "2016-08-30T15:28:06Z", + "pushed_at": "2017-12-27T07:04:39Z", + "git_url": "git://github.com/jenkinsci/bitkeeper-plugin.git", + "ssh_url": "git@github.com:jenkinsci/bitkeeper-plugin.git", + "clone_url": "https://github.com/jenkinsci/bitkeeper-plugin.git", + "svn_url": "https://github.com/jenkinsci/bitkeeper-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 76, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 4, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163447, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNDQ3", + "name": "backup-plugin", + "full_name": "jenkinsci/backup-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/backup-plugin", + "description": "Jenkins backup plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/backup-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/backup-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/backup-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/backup-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/backup-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/backup-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/backup-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/backup-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/backup-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/backup-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/backup-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/backup-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/backup-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/backup-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/backup-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/backup-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/backup-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/backup-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/backup-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/backup-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/backup-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/backup-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/backup-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/backup-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/backup-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/backup-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/backup-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/backup-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/backup-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/backup-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/backup-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/backup-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/backup-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/backup-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/backup-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/backup-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/backup-plugin/deployments", + "created_at": "2010-12-13T05:26:02Z", + "updated_at": "2019-03-16T05:52:20Z", + "pushed_at": "2019-09-24T10:24:01Z", + "git_url": "git://github.com/jenkinsci/backup-plugin.git", + "ssh_url": "git@github.com:jenkinsci/backup-plugin.git", + "clone_url": "https://github.com/jenkinsci/backup-plugin.git", + "svn_url": "https://github.com/jenkinsci/backup-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 875, + "stargazers_count": 9, + "watchers_count": 9, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 5, + "open_issues": 1, + "watchers": 9, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163448, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNDQ4", + "name": "buggame-plugin", + "full_name": "jenkinsci/buggame-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/buggame-plugin", + "description": "Jenkins buggame plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/buggame-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/buggame-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/buggame-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/buggame-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/buggame-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/buggame-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/buggame-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/buggame-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/buggame-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/buggame-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/buggame-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/buggame-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/buggame-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/buggame-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/buggame-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/buggame-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/buggame-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/buggame-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/buggame-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/buggame-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/buggame-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/buggame-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/buggame-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/buggame-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/buggame-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/buggame-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/buggame-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/buggame-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/buggame-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/buggame-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/buggame-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/buggame-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/buggame-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/buggame-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/buggame-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/buggame-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/buggame-plugin/deployments", + "created_at": "2010-12-13T05:26:02Z", + "updated_at": "2013-11-10T01:55:10Z", + "pushed_at": "2013-11-10T01:55:04Z", + "git_url": "git://github.com/jenkinsci/buggame-plugin.git", + "ssh_url": "git@github.com:jenkinsci/buggame-plugin.git", + "clone_url": "https://github.com/jenkinsci/buggame-plugin.git", + "svn_url": "https://github.com/jenkinsci/buggame-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 172, + "stargazers_count": 1, + "watchers_count": 1, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163449, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNDQ5", + "name": "bugzilla-plugin", + "full_name": "jenkinsci/bugzilla-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/bugzilla-plugin", + "description": "Jenkins bugzilla plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/bugzilla-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/bugzilla-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/bugzilla-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/bugzilla-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/bugzilla-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/bugzilla-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/bugzilla-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/bugzilla-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/bugzilla-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/bugzilla-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/bugzilla-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/bugzilla-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/bugzilla-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/bugzilla-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/bugzilla-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/bugzilla-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/bugzilla-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/bugzilla-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/bugzilla-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/bugzilla-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/bugzilla-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/bugzilla-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/bugzilla-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/bugzilla-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/bugzilla-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/bugzilla-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/bugzilla-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/bugzilla-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/bugzilla-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/bugzilla-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/bugzilla-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/bugzilla-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/bugzilla-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/bugzilla-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/bugzilla-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/bugzilla-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/bugzilla-plugin/deployments", + "created_at": "2010-12-13T05:26:05Z", + "updated_at": "2016-10-16T02:58:51Z", + "pushed_at": "2019-10-08T16:14:07Z", + "git_url": "git://github.com/jenkinsci/bugzilla-plugin.git", + "ssh_url": "git@github.com:jenkinsci/bugzilla-plugin.git", + "clone_url": "https://github.com/jenkinsci/bugzilla-plugin.git", + "svn_url": "https://github.com/jenkinsci/bugzilla-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 86, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 6, + "open_issues": 2, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163450, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNDUw", + "name": "bulk-builder-plugin", + "full_name": "jenkinsci/bulk-builder-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/bulk-builder-plugin", + "description": "Jenkins bulk-builder plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/bulk-builder-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/bulk-builder-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/bulk-builder-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/bulk-builder-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/bulk-builder-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/bulk-builder-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/bulk-builder-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/bulk-builder-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/bulk-builder-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/bulk-builder-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/bulk-builder-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/bulk-builder-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/bulk-builder-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/bulk-builder-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/bulk-builder-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/bulk-builder-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/bulk-builder-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/bulk-builder-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/bulk-builder-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/bulk-builder-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/bulk-builder-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/bulk-builder-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/bulk-builder-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/bulk-builder-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/bulk-builder-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/bulk-builder-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/bulk-builder-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/bulk-builder-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/bulk-builder-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/bulk-builder-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/bulk-builder-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/bulk-builder-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/bulk-builder-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/bulk-builder-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/bulk-builder-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/bulk-builder-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/bulk-builder-plugin/deployments", + "created_at": "2010-12-13T05:26:08Z", + "updated_at": "2018-08-21T11:00:12Z", + "pushed_at": "2018-08-21T11:00:10Z", + "git_url": "git://github.com/jenkinsci/bulk-builder-plugin.git", + "ssh_url": "git@github.com:jenkinsci/bulk-builder-plugin.git", + "clone_url": "https://github.com/jenkinsci/bulk-builder-plugin.git", + "svn_url": "https://github.com/jenkinsci/bulk-builder-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 244, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": true, + "forks_count": 10, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": null, + "forks": 10, + "open_issues": 3, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163451, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNDUx", + "name": "batch-task-plugin", + "full_name": "jenkinsci/batch-task-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/batch-task-plugin", + "description": "Jenkins batch-task plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/batch-task-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/batch-task-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/batch-task-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/batch-task-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/batch-task-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/batch-task-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/batch-task-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/batch-task-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/batch-task-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/batch-task-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/batch-task-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/batch-task-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/batch-task-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/batch-task-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/batch-task-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/batch-task-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/batch-task-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/batch-task-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/batch-task-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/batch-task-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/batch-task-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/batch-task-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/batch-task-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/batch-task-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/batch-task-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/batch-task-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/batch-task-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/batch-task-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/batch-task-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/batch-task-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/batch-task-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/batch-task-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/batch-task-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/batch-task-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/batch-task-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/batch-task-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/batch-task-plugin/deployments", + "created_at": "2010-12-13T05:26:09Z", + "updated_at": "2018-07-19T06:45:34Z", + "pushed_at": "2018-07-19T06:45:32Z", + "git_url": "git://github.com/jenkinsci/batch-task-plugin.git", + "ssh_url": "git@github.com:jenkinsci/batch-task-plugin.git", + "clone_url": "https://github.com/jenkinsci/batch-task-plugin.git", + "svn_url": "https://github.com/jenkinsci/batch-task-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 207, + "stargazers_count": 9, + "watchers_count": 9, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 19, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 19, + "open_issues": 2, + "watchers": 9, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163452, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNDUy", + "name": "cas1-plugin", + "full_name": "jenkinsci/cas1-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/cas1-plugin", + "description": "Jenkins cas1 plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/cas1-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/cas1-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/cas1-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/cas1-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/cas1-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/cas1-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/cas1-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/cas1-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/cas1-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/cas1-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/cas1-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/cas1-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/cas1-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/cas1-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/cas1-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/cas1-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/cas1-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/cas1-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/cas1-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/cas1-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/cas1-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/cas1-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/cas1-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/cas1-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/cas1-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/cas1-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/cas1-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/cas1-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/cas1-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/cas1-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/cas1-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/cas1-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/cas1-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/cas1-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/cas1-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/cas1-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/cas1-plugin/deployments", + "created_at": "2010-12-13T05:26:12Z", + "updated_at": "2017-06-12T01:20:25Z", + "pushed_at": "2016-11-30T01:05:46Z", + "git_url": "git://github.com/jenkinsci/cas1-plugin.git", + "ssh_url": "git@github.com:jenkinsci/cas1-plugin.git", + "clone_url": "https://github.com/jenkinsci/cas1-plugin.git", + "svn_url": "https://github.com/jenkinsci/cas1-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 21, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 5, + "open_issues": 0, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163453, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNDUz", + "name": "campfire-plugin", + "full_name": "jenkinsci/campfire-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/campfire-plugin", + "description": "Jenkins campfire plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/campfire-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/campfire-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/campfire-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/campfire-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/campfire-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/campfire-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/campfire-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/campfire-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/campfire-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/campfire-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/campfire-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/campfire-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/campfire-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/campfire-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/campfire-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/campfire-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/campfire-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/campfire-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/campfire-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/campfire-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/campfire-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/campfire-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/campfire-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/campfire-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/campfire-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/campfire-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/campfire-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/campfire-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/campfire-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/campfire-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/campfire-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/campfire-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/campfire-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/campfire-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/campfire-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/campfire-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/campfire-plugin/deployments", + "created_at": "2010-12-13T05:26:12Z", + "updated_at": "2019-07-09T11:32:30Z", + "pushed_at": "2016-04-16T01:26:25Z", + "git_url": "git://github.com/jenkinsci/campfire-plugin.git", + "ssh_url": "git@github.com:jenkinsci/campfire-plugin.git", + "clone_url": "https://github.com/jenkinsci/campfire-plugin.git", + "svn_url": "https://github.com/jenkinsci/campfire-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 105, + "stargazers_count": 23, + "watchers_count": 23, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 25, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 25, + "open_issues": 0, + "watchers": 23, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163454, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNDU0", + "name": "caroline-plugin", + "full_name": "jenkinsci/caroline-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/caroline-plugin", + "description": "Jenkins caroline plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/caroline-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/caroline-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/caroline-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/caroline-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/caroline-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/caroline-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/caroline-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/caroline-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/caroline-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/caroline-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/caroline-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/caroline-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/caroline-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/caroline-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/caroline-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/caroline-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/caroline-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/caroline-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/caroline-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/caroline-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/caroline-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/caroline-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/caroline-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/caroline-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/caroline-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/caroline-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/caroline-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/caroline-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/caroline-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/caroline-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/caroline-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/caroline-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/caroline-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/caroline-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/caroline-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/caroline-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/caroline-plugin/deployments", + "created_at": "2010-12-13T05:26:12Z", + "updated_at": "2013-11-10T01:56:21Z", + "pushed_at": "2013-11-10T01:56:11Z", + "git_url": "git://github.com/jenkinsci/caroline-plugin.git", + "ssh_url": "git@github.com:jenkinsci/caroline-plugin.git", + "clone_url": "https://github.com/jenkinsci/caroline-plugin.git", + "svn_url": "https://github.com/jenkinsci/caroline-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 168, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163455, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNDU1", + "name": "ccm-plugin", + "full_name": "jenkinsci/ccm-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/ccm-plugin", + "description": "Jenkins ccm plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/ccm-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/ccm-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/ccm-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/ccm-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/ccm-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/ccm-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/ccm-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/ccm-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/ccm-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/ccm-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/ccm-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/ccm-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/ccm-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/ccm-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/ccm-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/ccm-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/ccm-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/ccm-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/ccm-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/ccm-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/ccm-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/ccm-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/ccm-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/ccm-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/ccm-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/ccm-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/ccm-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/ccm-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/ccm-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/ccm-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/ccm-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/ccm-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/ccm-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/ccm-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/ccm-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/ccm-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/ccm-plugin/deployments", + "created_at": "2010-12-13T05:26:13Z", + "updated_at": "2019-10-08T11:33:07Z", + "pushed_at": "2019-10-08T11:33:05Z", + "git_url": "git://github.com/jenkinsci/ccm-plugin.git", + "ssh_url": "git@github.com:jenkinsci/ccm-plugin.git", + "clone_url": "https://github.com/jenkinsci/ccm-plugin.git", + "svn_url": "https://github.com/jenkinsci/ccm-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 265, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 11, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 11, + "open_issues": 0, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163456, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNDU2", + "name": "build-timeout-plugin", + "full_name": "jenkinsci/build-timeout-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/build-timeout-plugin", + "description": "Jenkins build-timeout plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/build-timeout-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/build-timeout-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/build-timeout-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/build-timeout-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/build-timeout-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/build-timeout-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/build-timeout-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/build-timeout-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/build-timeout-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/build-timeout-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/build-timeout-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/build-timeout-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/build-timeout-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/build-timeout-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/build-timeout-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/build-timeout-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/build-timeout-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/build-timeout-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/build-timeout-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/build-timeout-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/build-timeout-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/build-timeout-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/build-timeout-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/build-timeout-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/build-timeout-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/build-timeout-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/build-timeout-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/build-timeout-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/build-timeout-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/build-timeout-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/build-timeout-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/build-timeout-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/build-timeout-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/build-timeout-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/build-timeout-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/build-timeout-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/build-timeout-plugin/deployments", + "created_at": "2010-12-13T05:26:13Z", + "updated_at": "2019-08-29T14:43:03Z", + "pushed_at": "2018-10-13T04:56:47Z", + "git_url": "git://github.com/jenkinsci/build-timeout-plugin.git", + "ssh_url": "git@github.com:jenkinsci/build-timeout-plugin.git", + "clone_url": "https://github.com/jenkinsci/build-timeout-plugin.git", + "svn_url": "https://github.com/jenkinsci/build-timeout-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 408, + "stargazers_count": 24, + "watchers_count": 24, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 56, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 5, + "license": null, + "forks": 56, + "open_issues": 5, + "watchers": 24, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163457, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNDU3", + "name": "cccc-plugin", + "full_name": "jenkinsci/cccc-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/cccc-plugin", + "description": "Jenkins cccc plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/cccc-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/cccc-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/cccc-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/cccc-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/cccc-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/cccc-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/cccc-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/cccc-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/cccc-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/cccc-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/cccc-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/cccc-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/cccc-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/cccc-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/cccc-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/cccc-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/cccc-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/cccc-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/cccc-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/cccc-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/cccc-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/cccc-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/cccc-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/cccc-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/cccc-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/cccc-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/cccc-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/cccc-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/cccc-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/cccc-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/cccc-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/cccc-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/cccc-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/cccc-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/cccc-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/cccc-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/cccc-plugin/deployments", + "created_at": "2010-12-13T05:26:13Z", + "updated_at": "2017-02-20T13:38:20Z", + "pushed_at": "2019-10-08T12:36:51Z", + "git_url": "git://github.com/jenkinsci/cccc-plugin.git", + "ssh_url": "git@github.com:jenkinsci/cccc-plugin.git", + "clone_url": "https://github.com/jenkinsci/cccc-plugin.git", + "svn_url": "https://github.com/jenkinsci/cccc-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 281, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 6, + "open_issues": 2, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163458, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNDU4", + "name": "changelog-history-plugin", + "full_name": "jenkinsci/changelog-history-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/changelog-history-plugin", + "description": "Jenkins changelog-history plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/changelog-history-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/changelog-history-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/changelog-history-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/changelog-history-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/changelog-history-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/changelog-history-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/changelog-history-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/changelog-history-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/changelog-history-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/changelog-history-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/changelog-history-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/changelog-history-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/changelog-history-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/changelog-history-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/changelog-history-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/changelog-history-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/changelog-history-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/changelog-history-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/changelog-history-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/changelog-history-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/changelog-history-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/changelog-history-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/changelog-history-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/changelog-history-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/changelog-history-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/changelog-history-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/changelog-history-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/changelog-history-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/changelog-history-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/changelog-history-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/changelog-history-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/changelog-history-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/changelog-history-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/changelog-history-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/changelog-history-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/changelog-history-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/changelog-history-plugin/deployments", + "created_at": "2010-12-13T05:26:13Z", + "updated_at": "2017-10-24T07:54:47Z", + "pushed_at": "2019-10-08T11:34:52Z", + "git_url": "git://github.com/jenkinsci/changelog-history-plugin.git", + "ssh_url": "git@github.com:jenkinsci/changelog-history-plugin.git", + "clone_url": "https://github.com/jenkinsci/changelog-history-plugin.git", + "svn_url": "https://github.com/jenkinsci/changelog-history-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 53, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 6, + "open_issues": 1, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163459, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNDU5", + "name": "buckminster-plugin", + "full_name": "jenkinsci/buckminster-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/buckminster-plugin", + "description": "Jenkins buckminster plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/buckminster-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/buckminster-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/buckminster-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/buckminster-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/buckminster-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/buckminster-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/buckminster-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/buckminster-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/buckminster-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/buckminster-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/buckminster-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/buckminster-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/buckminster-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/buckminster-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/buckminster-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/buckminster-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/buckminster-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/buckminster-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/buckminster-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/buckminster-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/buckminster-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/buckminster-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/buckminster-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/buckminster-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/buckminster-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/buckminster-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/buckminster-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/buckminster-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/buckminster-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/buckminster-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/buckminster-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/buckminster-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/buckminster-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/buckminster-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/buckminster-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/buckminster-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/buckminster-plugin/deployments", + "created_at": "2010-12-13T05:26:13Z", + "updated_at": "2017-04-01T03:06:25Z", + "pushed_at": "2013-11-10T01:55:02Z", + "git_url": "git://github.com/jenkinsci/buckminster-plugin.git", + "ssh_url": "git@github.com:jenkinsci/buckminster-plugin.git", + "clone_url": "https://github.com/jenkinsci/buckminster-plugin.git", + "svn_url": "https://github.com/jenkinsci/buckminster-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 284, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 2, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163460, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNDYw", + "name": "chucknorris-plugin", + "full_name": "jenkinsci/chucknorris-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/chucknorris-plugin", + "description": "Jenkins chucknorris plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/chucknorris-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/chucknorris-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/chucknorris-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/chucknorris-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/chucknorris-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/chucknorris-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/chucknorris-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/chucknorris-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/chucknorris-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/chucknorris-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/chucknorris-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/chucknorris-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/chucknorris-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/chucknorris-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/chucknorris-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/chucknorris-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/chucknorris-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/chucknorris-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/chucknorris-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/chucknorris-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/chucknorris-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/chucknorris-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/chucknorris-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/chucknorris-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/chucknorris-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/chucknorris-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/chucknorris-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/chucknorris-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/chucknorris-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/chucknorris-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/chucknorris-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/chucknorris-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/chucknorris-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/chucknorris-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/chucknorris-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/chucknorris-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/chucknorris-plugin/deployments", + "created_at": "2010-12-13T05:26:15Z", + "updated_at": "2019-10-07T14:27:33Z", + "pushed_at": "2019-10-23T05:24:42Z", + "git_url": "git://github.com/jenkinsci/chucknorris-plugin.git", + "ssh_url": "git@github.com:jenkinsci/chucknorris-plugin.git", + "clone_url": "https://github.com/jenkinsci/chucknorris-plugin.git", + "svn_url": "https://github.com/jenkinsci/chucknorris-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 530, + "stargazers_count": 73, + "watchers_count": 73, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 74, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 7, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 74, + "open_issues": 7, + "watchers": 73, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163462, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNDYy", + "name": "cifs-plugin", + "full_name": "jenkinsci/cifs-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/cifs-plugin", + "description": "Jenkins cifs plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/cifs-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/cifs-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/cifs-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/cifs-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/cifs-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/cifs-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/cifs-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/cifs-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/cifs-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/cifs-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/cifs-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/cifs-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/cifs-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/cifs-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/cifs-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/cifs-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/cifs-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/cifs-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/cifs-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/cifs-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/cifs-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/cifs-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/cifs-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/cifs-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/cifs-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/cifs-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/cifs-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/cifs-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/cifs-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/cifs-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/cifs-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/cifs-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/cifs-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/cifs-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/cifs-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/cifs-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/cifs-plugin/deployments", + "created_at": "2010-12-13T05:26:21Z", + "updated_at": "2018-07-24T23:44:33Z", + "pushed_at": "2013-11-10T01:56:38Z", + "git_url": "git://github.com/jenkinsci/cifs-plugin.git", + "ssh_url": "git@github.com:jenkinsci/cifs-plugin.git", + "clone_url": "https://github.com/jenkinsci/cifs-plugin.git", + "svn_url": "https://github.com/jenkinsci/cifs-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 140, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": true, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 3, + "open_issues": 0, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163463, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNDYz", + "name": "build-publisher-plugin", + "full_name": "jenkinsci/build-publisher-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/build-publisher-plugin", + "description": "Jenkins build-publisher plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/build-publisher-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/build-publisher-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/build-publisher-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/build-publisher-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/build-publisher-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/build-publisher-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/build-publisher-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/build-publisher-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/build-publisher-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/build-publisher-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/build-publisher-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/build-publisher-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/build-publisher-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/build-publisher-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/build-publisher-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/build-publisher-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/build-publisher-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/build-publisher-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/build-publisher-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/build-publisher-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/build-publisher-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/build-publisher-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/build-publisher-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/build-publisher-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/build-publisher-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/build-publisher-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/build-publisher-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/build-publisher-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/build-publisher-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/build-publisher-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/build-publisher-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/build-publisher-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/build-publisher-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/build-publisher-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/build-publisher-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/build-publisher-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/build-publisher-plugin/deployments", + "created_at": "2010-12-13T05:26:22Z", + "updated_at": "2018-05-29T12:21:56Z", + "pushed_at": "2019-10-08T11:18:53Z", + "git_url": "git://github.com/jenkinsci/build-publisher-plugin.git", + "ssh_url": "git@github.com:jenkinsci/build-publisher-plugin.git", + "clone_url": "https://github.com/jenkinsci/build-publisher-plugin.git", + "svn_url": "https://github.com/jenkinsci/build-publisher-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 314, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 17, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 17, + "open_issues": 2, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163464, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNDY0", + "name": "clearcase-release-plugin", + "full_name": "jenkinsci/clearcase-release-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/clearcase-release-plugin", + "description": "Jenkins clearcase-release plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/clearcase-release-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/clearcase-release-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/clearcase-release-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/clearcase-release-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/clearcase-release-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/clearcase-release-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/clearcase-release-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/clearcase-release-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/clearcase-release-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/clearcase-release-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/clearcase-release-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/clearcase-release-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/clearcase-release-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/clearcase-release-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/clearcase-release-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/clearcase-release-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/clearcase-release-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/clearcase-release-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/clearcase-release-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/clearcase-release-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/clearcase-release-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/clearcase-release-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/clearcase-release-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/clearcase-release-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/clearcase-release-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/clearcase-release-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/clearcase-release-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/clearcase-release-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/clearcase-release-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/clearcase-release-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/clearcase-release-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/clearcase-release-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/clearcase-release-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/clearcase-release-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/clearcase-release-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/clearcase-release-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/clearcase-release-plugin/deployments", + "created_at": "2010-12-13T05:26:31Z", + "updated_at": "2014-01-18T23:58:51Z", + "pushed_at": "2013-11-10T01:56:48Z", + "git_url": "git://github.com/jenkinsci/clearcase-release-plugin.git", + "ssh_url": "git@github.com:jenkinsci/clearcase-release-plugin.git", + "clone_url": "https://github.com/jenkinsci/clearcase-release-plugin.git", + "svn_url": "https://github.com/jenkinsci/clearcase-release-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 160, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163466, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNDY2", + "name": "codeplex-plugin", + "full_name": "jenkinsci/codeplex-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/codeplex-plugin", + "description": "Jenkins codeplex plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/codeplex-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/codeplex-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/codeplex-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/codeplex-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/codeplex-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/codeplex-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/codeplex-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/codeplex-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/codeplex-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/codeplex-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/codeplex-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/codeplex-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/codeplex-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/codeplex-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/codeplex-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/codeplex-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/codeplex-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/codeplex-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/codeplex-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/codeplex-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/codeplex-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/codeplex-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/codeplex-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/codeplex-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/codeplex-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/codeplex-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/codeplex-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/codeplex-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/codeplex-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/codeplex-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/codeplex-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/codeplex-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/codeplex-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/codeplex-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/codeplex-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/codeplex-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/codeplex-plugin/deployments", + "created_at": "2010-12-13T05:27:19Z", + "updated_at": "2013-11-10T01:57:33Z", + "pushed_at": "2013-11-10T01:57:25Z", + "git_url": "git://github.com/jenkinsci/codeplex-plugin.git", + "ssh_url": "git@github.com:jenkinsci/codeplex-plugin.git", + "clone_url": "https://github.com/jenkinsci/codeplex-plugin.git", + "svn_url": "https://github.com/jenkinsci/codeplex-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 180, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163467, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNDY3", + "name": "claim-plugin", + "full_name": "jenkinsci/claim-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/claim-plugin", + "description": "Jenkins claim plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/claim-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/claim-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/claim-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/claim-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/claim-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/claim-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/claim-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/claim-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/claim-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/claim-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/claim-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/claim-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/claim-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/claim-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/claim-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/claim-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/claim-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/claim-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/claim-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/claim-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/claim-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/claim-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/claim-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/claim-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/claim-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/claim-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/claim-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/claim-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/claim-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/claim-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/claim-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/claim-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/claim-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/claim-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/claim-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/claim-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/claim-plugin/deployments", + "created_at": "2010-12-13T05:27:22Z", + "updated_at": "2019-09-24T19:17:26Z", + "pushed_at": "2019-09-24T19:17:44Z", + "git_url": "git://github.com/jenkinsci/claim-plugin.git", + "ssh_url": "git@github.com:jenkinsci/claim-plugin.git", + "clone_url": "https://github.com/jenkinsci/claim-plugin.git", + "svn_url": "https://github.com/jenkinsci/claim-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 383, + "stargazers_count": 13, + "watchers_count": 13, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 59, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 59, + "open_issues": 0, + "watchers": 13, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163468, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNDY4", + "name": "collapsing-console-sections-plugin", + "full_name": "jenkinsci/collapsing-console-sections-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/collapsing-console-sections-plugin", + "description": "Jenkins collapsing-console-sections plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/collapsing-console-sections-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/collapsing-console-sections-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/collapsing-console-sections-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/collapsing-console-sections-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/collapsing-console-sections-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/collapsing-console-sections-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/collapsing-console-sections-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/collapsing-console-sections-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/collapsing-console-sections-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/collapsing-console-sections-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/collapsing-console-sections-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/collapsing-console-sections-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/collapsing-console-sections-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/collapsing-console-sections-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/collapsing-console-sections-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/collapsing-console-sections-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/collapsing-console-sections-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/collapsing-console-sections-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/collapsing-console-sections-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/collapsing-console-sections-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/collapsing-console-sections-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/collapsing-console-sections-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/collapsing-console-sections-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/collapsing-console-sections-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/collapsing-console-sections-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/collapsing-console-sections-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/collapsing-console-sections-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/collapsing-console-sections-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/collapsing-console-sections-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/collapsing-console-sections-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/collapsing-console-sections-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/collapsing-console-sections-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/collapsing-console-sections-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/collapsing-console-sections-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/collapsing-console-sections-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/collapsing-console-sections-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/collapsing-console-sections-plugin/deployments", + "created_at": "2010-12-13T05:27:27Z", + "updated_at": "2017-07-05T08:32:22Z", + "pushed_at": "2018-01-24T09:24:40Z", + "git_url": "git://github.com/jenkinsci/collapsing-console-sections-plugin.git", + "ssh_url": "git@github.com:jenkinsci/collapsing-console-sections-plugin.git", + "clone_url": "https://github.com/jenkinsci/collapsing-console-sections-plugin.git", + "svn_url": "https://github.com/jenkinsci/collapsing-console-sections-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 90, + "stargazers_count": 9, + "watchers_count": 9, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 12, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 12, + "open_issues": 0, + "watchers": 9, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163469, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNDY5", + "name": "cmvc-plugin", + "full_name": "jenkinsci/cmvc-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/cmvc-plugin", + "description": "Jenkins cmvc plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/cmvc-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/cmvc-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/cmvc-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/cmvc-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/cmvc-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/cmvc-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/cmvc-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/cmvc-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/cmvc-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/cmvc-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/cmvc-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/cmvc-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/cmvc-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/cmvc-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/cmvc-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/cmvc-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/cmvc-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/cmvc-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/cmvc-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/cmvc-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/cmvc-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/cmvc-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/cmvc-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/cmvc-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/cmvc-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/cmvc-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/cmvc-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/cmvc-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/cmvc-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/cmvc-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/cmvc-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/cmvc-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/cmvc-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/cmvc-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/cmvc-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/cmvc-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/cmvc-plugin/deployments", + "created_at": "2010-12-13T05:27:28Z", + "updated_at": "2017-02-13T11:04:54Z", + "pushed_at": "2013-11-10T01:57:19Z", + "git_url": "git://github.com/jenkinsci/cmvc-plugin.git", + "ssh_url": "git@github.com:jenkinsci/cmvc-plugin.git", + "clone_url": "https://github.com/jenkinsci/cmvc-plugin.git", + "svn_url": "https://github.com/jenkinsci/cmvc-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 151, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163470, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNDcw", + "name": "codescanner-plugin", + "full_name": "jenkinsci/codescanner-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/codescanner-plugin", + "description": "Jenkins codescanner plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/codescanner-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/codescanner-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/codescanner-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/codescanner-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/codescanner-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/codescanner-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/codescanner-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/codescanner-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/codescanner-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/codescanner-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/codescanner-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/codescanner-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/codescanner-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/codescanner-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/codescanner-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/codescanner-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/codescanner-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/codescanner-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/codescanner-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/codescanner-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/codescanner-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/codescanner-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/codescanner-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/codescanner-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/codescanner-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/codescanner-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/codescanner-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/codescanner-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/codescanner-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/codescanner-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/codescanner-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/codescanner-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/codescanner-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/codescanner-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/codescanner-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/codescanner-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/codescanner-plugin/deployments", + "created_at": "2010-12-13T05:27:29Z", + "updated_at": "2013-11-10T01:57:30Z", + "pushed_at": "2019-10-08T16:45:34Z", + "git_url": "git://github.com/jenkinsci/codescanner-plugin.git", + "ssh_url": "git@github.com:jenkinsci/codescanner-plugin.git", + "clone_url": "https://github.com/jenkinsci/codescanner-plugin.git", + "svn_url": "https://github.com/jenkinsci/codescanner-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 256, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 3, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163471, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNDcx", + "name": "clearcase-ucm-baseline-plugin", + "full_name": "jenkinsci/clearcase-ucm-baseline-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/clearcase-ucm-baseline-plugin", + "description": "Jenkins clearcase-ucm-baseline plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-baseline-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-baseline-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-baseline-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-baseline-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-baseline-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-baseline-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-baseline-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-baseline-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-baseline-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-baseline-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-baseline-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-baseline-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-baseline-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-baseline-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-baseline-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-baseline-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-baseline-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-baseline-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-baseline-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-baseline-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-baseline-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-baseline-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-baseline-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-baseline-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-baseline-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-baseline-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-baseline-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-baseline-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-baseline-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-baseline-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-baseline-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-baseline-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-baseline-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-baseline-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-baseline-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-baseline-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/clearcase-ucm-baseline-plugin/deployments", + "created_at": "2010-12-13T05:27:43Z", + "updated_at": "2015-11-08T11:04:47Z", + "pushed_at": "2013-11-10T01:56:50Z", + "git_url": "git://github.com/jenkinsci/clearcase-ucm-baseline-plugin.git", + "ssh_url": "git@github.com:jenkinsci/clearcase-ucm-baseline-plugin.git", + "clone_url": "https://github.com/jenkinsci/clearcase-ucm-baseline-plugin.git", + "svn_url": "https://github.com/jenkinsci/clearcase-ucm-baseline-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 207, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 4, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163472, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNDcy", + "name": "conditional-upstream-trigger-plugin", + "full_name": "jenkinsci/conditional-upstream-trigger-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/conditional-upstream-trigger-plugin", + "description": "Jenkins conditional-upstream-trigger plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/conditional-upstream-trigger-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/conditional-upstream-trigger-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/conditional-upstream-trigger-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/conditional-upstream-trigger-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/conditional-upstream-trigger-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/conditional-upstream-trigger-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/conditional-upstream-trigger-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/conditional-upstream-trigger-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/conditional-upstream-trigger-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/conditional-upstream-trigger-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/conditional-upstream-trigger-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/conditional-upstream-trigger-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/conditional-upstream-trigger-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/conditional-upstream-trigger-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/conditional-upstream-trigger-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/conditional-upstream-trigger-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/conditional-upstream-trigger-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/conditional-upstream-trigger-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/conditional-upstream-trigger-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/conditional-upstream-trigger-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/conditional-upstream-trigger-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/conditional-upstream-trigger-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/conditional-upstream-trigger-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/conditional-upstream-trigger-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/conditional-upstream-trigger-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/conditional-upstream-trigger-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/conditional-upstream-trigger-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/conditional-upstream-trigger-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/conditional-upstream-trigger-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/conditional-upstream-trigger-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/conditional-upstream-trigger-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/conditional-upstream-trigger-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/conditional-upstream-trigger-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/conditional-upstream-trigger-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/conditional-upstream-trigger-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/conditional-upstream-trigger-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/conditional-upstream-trigger-plugin/deployments", + "created_at": "2010-12-13T05:27:47Z", + "updated_at": "2013-11-10T01:57:57Z", + "pushed_at": "2013-11-10T01:57:55Z", + "git_url": "git://github.com/jenkinsci/conditional-upstream-trigger-plugin.git", + "ssh_url": "git@github.com:jenkinsci/conditional-upstream-trigger-plugin.git", + "clone_url": "https://github.com/jenkinsci/conditional-upstream-trigger-plugin.git", + "svn_url": "https://github.com/jenkinsci/conditional-upstream-trigger-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 108, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163473, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNDcz", + "name": "concordionpresenter-plugin", + "full_name": "jenkinsci/concordionpresenter-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/concordionpresenter-plugin", + "description": "Jenkins concordionpresenter plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/concordionpresenter-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/concordionpresenter-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/concordionpresenter-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/concordionpresenter-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/concordionpresenter-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/concordionpresenter-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/concordionpresenter-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/concordionpresenter-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/concordionpresenter-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/concordionpresenter-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/concordionpresenter-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/concordionpresenter-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/concordionpresenter-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/concordionpresenter-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/concordionpresenter-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/concordionpresenter-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/concordionpresenter-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/concordionpresenter-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/concordionpresenter-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/concordionpresenter-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/concordionpresenter-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/concordionpresenter-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/concordionpresenter-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/concordionpresenter-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/concordionpresenter-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/concordionpresenter-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/concordionpresenter-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/concordionpresenter-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/concordionpresenter-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/concordionpresenter-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/concordionpresenter-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/concordionpresenter-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/concordionpresenter-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/concordionpresenter-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/concordionpresenter-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/concordionpresenter-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/concordionpresenter-plugin/deployments", + "created_at": "2010-12-13T05:28:19Z", + "updated_at": "2013-11-10T01:57:48Z", + "pushed_at": "2017-08-08T22:33:46Z", + "git_url": "git://github.com/jenkinsci/concordionpresenter-plugin.git", + "ssh_url": "git@github.com:jenkinsci/concordionpresenter-plugin.git", + "clone_url": "https://github.com/jenkinsci/concordionpresenter-plugin.git", + "svn_url": "https://github.com/jenkinsci/concordionpresenter-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 204, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 8, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 8, + "open_issues": 2, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163474, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNDc0", + "name": "codeviation-plugin", + "full_name": "jenkinsci/codeviation-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/codeviation-plugin", + "description": "Jenkins codeviation plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/codeviation-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/codeviation-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/codeviation-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/codeviation-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/codeviation-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/codeviation-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/codeviation-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/codeviation-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/codeviation-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/codeviation-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/codeviation-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/codeviation-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/codeviation-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/codeviation-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/codeviation-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/codeviation-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/codeviation-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/codeviation-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/codeviation-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/codeviation-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/codeviation-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/codeviation-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/codeviation-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/codeviation-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/codeviation-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/codeviation-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/codeviation-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/codeviation-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/codeviation-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/codeviation-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/codeviation-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/codeviation-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/codeviation-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/codeviation-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/codeviation-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/codeviation-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/codeviation-plugin/deployments", + "created_at": "2010-12-13T05:28:21Z", + "updated_at": "2013-11-10T01:57:35Z", + "pushed_at": "2013-11-10T01:57:29Z", + "git_url": "git://github.com/jenkinsci/codeviation-plugin.git", + "ssh_url": "git@github.com:jenkinsci/codeviation-plugin.git", + "clone_url": "https://github.com/jenkinsci/codeviation-plugin.git", + "svn_url": "https://github.com/jenkinsci/codeviation-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 1752, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163476, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNDc2", + "name": "cmakebuilder-plugin", + "full_name": "jenkinsci/cmakebuilder-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/cmakebuilder-plugin", + "description": "Jenkins cmakebuilder plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/cmakebuilder-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/cmakebuilder-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/cmakebuilder-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/cmakebuilder-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/cmakebuilder-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/cmakebuilder-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/cmakebuilder-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/cmakebuilder-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/cmakebuilder-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/cmakebuilder-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/cmakebuilder-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/cmakebuilder-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/cmakebuilder-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/cmakebuilder-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/cmakebuilder-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/cmakebuilder-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/cmakebuilder-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/cmakebuilder-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/cmakebuilder-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/cmakebuilder-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/cmakebuilder-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/cmakebuilder-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/cmakebuilder-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/cmakebuilder-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/cmakebuilder-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/cmakebuilder-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/cmakebuilder-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/cmakebuilder-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/cmakebuilder-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/cmakebuilder-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/cmakebuilder-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/cmakebuilder-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/cmakebuilder-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/cmakebuilder-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/cmakebuilder-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/cmakebuilder-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/cmakebuilder-plugin/deployments", + "created_at": "2010-12-13T05:28:30Z", + "updated_at": "2019-10-08T19:07:32Z", + "pushed_at": "2019-10-08T19:07:30Z", + "git_url": "git://github.com/jenkinsci/cmakebuilder-plugin.git", + "ssh_url": "git@github.com:jenkinsci/cmakebuilder-plugin.git", + "clone_url": "https://github.com/jenkinsci/cmakebuilder-plugin.git", + "svn_url": "https://github.com/jenkinsci/cmakebuilder-plugin", + "homepage": "https://wiki.jenkins.io/display/JENKINS/CMake+Plugin", + "size": 409, + "stargazers_count": 12, + "watchers_count": 12, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 16, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 16, + "open_issues": 0, + "watchers": 12, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163477, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNDc3", + "name": "copy-to-slave-plugin", + "full_name": "jenkinsci/copy-to-slave-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/copy-to-slave-plugin", + "description": "Jenkins copy-to-slave plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/copy-to-slave-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/copy-to-slave-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/copy-to-slave-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/copy-to-slave-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/copy-to-slave-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/copy-to-slave-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/copy-to-slave-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/copy-to-slave-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/copy-to-slave-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/copy-to-slave-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/copy-to-slave-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/copy-to-slave-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/copy-to-slave-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/copy-to-slave-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/copy-to-slave-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/copy-to-slave-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/copy-to-slave-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/copy-to-slave-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/copy-to-slave-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/copy-to-slave-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/copy-to-slave-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/copy-to-slave-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/copy-to-slave-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/copy-to-slave-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/copy-to-slave-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/copy-to-slave-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/copy-to-slave-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/copy-to-slave-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/copy-to-slave-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/copy-to-slave-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/copy-to-slave-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/copy-to-slave-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/copy-to-slave-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/copy-to-slave-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/copy-to-slave-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/copy-to-slave-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/copy-to-slave-plugin/deployments", + "created_at": "2010-12-13T05:28:39Z", + "updated_at": "2019-02-07T10:44:07Z", + "pushed_at": "2019-10-05T20:44:35Z", + "git_url": "git://github.com/jenkinsci/copy-to-slave-plugin.git", + "ssh_url": "git@github.com:jenkinsci/copy-to-slave-plugin.git", + "clone_url": "https://github.com/jenkinsci/copy-to-slave-plugin.git", + "svn_url": "https://github.com/jenkinsci/copy-to-slave-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 85, + "stargazers_count": 10, + "watchers_count": 10, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 34, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 4, + "license": null, + "forks": 34, + "open_issues": 4, + "watchers": 10, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163478, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNDc4", + "name": "compact-columns-plugin", + "full_name": "jenkinsci/compact-columns-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/compact-columns-plugin", + "description": "Jenkins compact-columns plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/compact-columns-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/compact-columns-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/compact-columns-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/compact-columns-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/compact-columns-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/compact-columns-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/compact-columns-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/compact-columns-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/compact-columns-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/compact-columns-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/compact-columns-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/compact-columns-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/compact-columns-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/compact-columns-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/compact-columns-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/compact-columns-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/compact-columns-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/compact-columns-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/compact-columns-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/compact-columns-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/compact-columns-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/compact-columns-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/compact-columns-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/compact-columns-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/compact-columns-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/compact-columns-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/compact-columns-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/compact-columns-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/compact-columns-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/compact-columns-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/compact-columns-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/compact-columns-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/compact-columns-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/compact-columns-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/compact-columns-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/compact-columns-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/compact-columns-plugin/deployments", + "created_at": "2010-12-13T05:28:52Z", + "updated_at": "2019-02-06T17:49:39Z", + "pushed_at": "2019-10-08T10:13:38Z", + "git_url": "git://github.com/jenkinsci/compact-columns-plugin.git", + "ssh_url": "git@github.com:jenkinsci/compact-columns-plugin.git", + "clone_url": "https://github.com/jenkinsci/compact-columns-plugin.git", + "svn_url": "https://github.com/jenkinsci/compact-columns-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 89, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 6, + "open_issues": 2, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163480, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNDgw", + "name": "copyarchiver-plugin", + "full_name": "jenkinsci/copyarchiver-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/copyarchiver-plugin", + "description": "Jenkins copyarchiver plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/copyarchiver-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/copyarchiver-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/copyarchiver-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/copyarchiver-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/copyarchiver-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/copyarchiver-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/copyarchiver-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/copyarchiver-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/copyarchiver-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/copyarchiver-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/copyarchiver-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/copyarchiver-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/copyarchiver-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/copyarchiver-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/copyarchiver-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/copyarchiver-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/copyarchiver-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/copyarchiver-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/copyarchiver-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/copyarchiver-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/copyarchiver-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/copyarchiver-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/copyarchiver-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/copyarchiver-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/copyarchiver-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/copyarchiver-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/copyarchiver-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/copyarchiver-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/copyarchiver-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/copyarchiver-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/copyarchiver-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/copyarchiver-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/copyarchiver-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/copyarchiver-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/copyarchiver-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/copyarchiver-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/copyarchiver-plugin/deployments", + "created_at": "2010-12-13T05:28:55Z", + "updated_at": "2013-11-10T01:58:37Z", + "pushed_at": "2013-11-10T01:58:27Z", + "git_url": "git://github.com/jenkinsci/copyarchiver-plugin.git", + "ssh_url": "git@github.com:jenkinsci/copyarchiver-plugin.git", + "clone_url": "https://github.com/jenkinsci/copyarchiver-plugin.git", + "svn_url": "https://github.com/jenkinsci/copyarchiver-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 196, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163482, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNDgy", + "name": "covcomplplot-plugin", + "full_name": "jenkinsci/covcomplplot-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/covcomplplot-plugin", + "description": "Jenkins covcomplplot plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/covcomplplot-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/covcomplplot-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/covcomplplot-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/covcomplplot-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/covcomplplot-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/covcomplplot-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/covcomplplot-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/covcomplplot-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/covcomplplot-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/covcomplplot-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/covcomplplot-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/covcomplplot-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/covcomplplot-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/covcomplplot-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/covcomplplot-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/covcomplplot-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/covcomplplot-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/covcomplplot-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/covcomplplot-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/covcomplplot-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/covcomplplot-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/covcomplplot-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/covcomplplot-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/covcomplplot-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/covcomplplot-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/covcomplplot-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/covcomplplot-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/covcomplplot-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/covcomplplot-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/covcomplplot-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/covcomplplot-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/covcomplplot-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/covcomplplot-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/covcomplplot-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/covcomplplot-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/covcomplplot-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/covcomplplot-plugin/deployments", + "created_at": "2010-12-13T05:29:00Z", + "updated_at": "2013-11-10T01:58:42Z", + "pushed_at": "2019-10-25T02:23:41Z", + "git_url": "git://github.com/jenkinsci/covcomplplot-plugin.git", + "ssh_url": "git@github.com:jenkinsci/covcomplplot-plugin.git", + "clone_url": "https://github.com/jenkinsci/covcomplplot-plugin.git", + "svn_url": "https://github.com/jenkinsci/covcomplplot-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 702, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 7, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "forks": 7, + "open_issues": 2, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163483, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNDgz", + "name": "clover-plugin", + "full_name": "jenkinsci/clover-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/clover-plugin", + "description": "Jenkins clover plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/clover-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/clover-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/clover-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/clover-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/clover-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/clover-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/clover-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/clover-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/clover-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/clover-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/clover-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/clover-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/clover-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/clover-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/clover-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/clover-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/clover-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/clover-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/clover-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/clover-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/clover-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/clover-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/clover-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/clover-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/clover-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/clover-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/clover-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/clover-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/clover-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/clover-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/clover-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/clover-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/clover-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/clover-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/clover-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/clover-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/clover-plugin/deployments", + "created_at": "2010-12-13T05:29:10Z", + "updated_at": "2019-10-11T23:18:31Z", + "pushed_at": "2019-10-11T23:18:29Z", + "git_url": "git://github.com/jenkinsci/clover-plugin.git", + "ssh_url": "git@github.com:jenkinsci/clover-plugin.git", + "clone_url": "https://github.com/jenkinsci/clover-plugin.git", + "svn_url": "https://github.com/jenkinsci/clover-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 336, + "stargazers_count": 16, + "watchers_count": 16, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 31, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 31, + "open_issues": 1, + "watchers": 16, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163484, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNDg0", + "name": "coverage-plugin", + "full_name": "jenkinsci/coverage-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/coverage-plugin", + "description": "Jenkins coverage plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/coverage-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/coverage-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/coverage-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/coverage-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/coverage-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/coverage-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/coverage-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/coverage-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/coverage-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/coverage-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/coverage-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/coverage-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/coverage-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/coverage-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/coverage-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/coverage-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/coverage-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/coverage-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/coverage-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/coverage-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/coverage-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/coverage-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/coverage-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/coverage-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/coverage-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/coverage-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/coverage-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/coverage-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/coverage-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/coverage-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/coverage-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/coverage-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/coverage-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/coverage-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/coverage-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/coverage-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/coverage-plugin/deployments", + "created_at": "2010-12-13T05:29:11Z", + "updated_at": "2013-11-10T01:58:45Z", + "pushed_at": "2013-11-10T01:58:38Z", + "git_url": "git://github.com/jenkinsci/coverage-plugin.git", + "ssh_url": "git@github.com:jenkinsci/coverage-plugin.git", + "clone_url": "https://github.com/jenkinsci/coverage-plugin.git", + "svn_url": "https://github.com/jenkinsci/coverage-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 260, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163485, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNDg1", + "name": "collabnet-plugin", + "full_name": "jenkinsci/collabnet-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/collabnet-plugin", + "description": "Jenkins collabnet plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/collabnet-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/collabnet-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/collabnet-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/collabnet-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/collabnet-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/collabnet-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/collabnet-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/collabnet-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/collabnet-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/collabnet-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/collabnet-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/collabnet-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/collabnet-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/collabnet-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/collabnet-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/collabnet-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/collabnet-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/collabnet-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/collabnet-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/collabnet-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/collabnet-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/collabnet-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/collabnet-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/collabnet-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/collabnet-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/collabnet-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/collabnet-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/collabnet-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/collabnet-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/collabnet-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/collabnet-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/collabnet-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/collabnet-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/collabnet-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/collabnet-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/collabnet-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/collabnet-plugin/deployments", + "created_at": "2010-12-13T05:29:15Z", + "updated_at": "2018-11-05T22:01:58Z", + "pushed_at": "2019-10-23T06:58:02Z", + "git_url": "git://github.com/jenkinsci/collabnet-plugin.git", + "ssh_url": "git@github.com:jenkinsci/collabnet-plugin.git", + "clone_url": "https://github.com/jenkinsci/collabnet-plugin.git", + "svn_url": "https://github.com/jenkinsci/collabnet-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 3314, + "stargazers_count": 10, + "watchers_count": 10, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 23, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 5, + "license": null, + "forks": 23, + "open_issues": 5, + "watchers": 10, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163487, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNDg3", + "name": "cppncss-plugin", + "full_name": "jenkinsci/cppncss-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/cppncss-plugin", + "description": "Jenkins cppncss plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/cppncss-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/cppncss-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/cppncss-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/cppncss-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/cppncss-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/cppncss-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/cppncss-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/cppncss-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/cppncss-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/cppncss-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/cppncss-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/cppncss-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/cppncss-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/cppncss-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/cppncss-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/cppncss-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/cppncss-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/cppncss-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/cppncss-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/cppncss-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/cppncss-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/cppncss-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/cppncss-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/cppncss-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/cppncss-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/cppncss-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/cppncss-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/cppncss-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/cppncss-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/cppncss-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/cppncss-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/cppncss-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/cppncss-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/cppncss-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/cppncss-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/cppncss-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/cppncss-plugin/deployments", + "created_at": "2010-12-13T05:29:22Z", + "updated_at": "2018-01-30T14:13:43Z", + "pushed_at": "2019-04-12T08:38:46Z", + "git_url": "git://github.com/jenkinsci/cppncss-plugin.git", + "ssh_url": "git@github.com:jenkinsci/cppncss-plugin.git", + "clone_url": "https://github.com/jenkinsci/cppncss-plugin.git", + "svn_url": "https://github.com/jenkinsci/cppncss-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 70, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 7, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 5, + "license": null, + "forks": 7, + "open_issues": 5, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163489, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNDg5", + "name": "copyartifact-plugin", + "full_name": "jenkinsci/copyartifact-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/copyartifact-plugin", + "description": "Jenkins copyartifact plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/copyartifact-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/copyartifact-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/copyartifact-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/copyartifact-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/copyartifact-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/copyartifact-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/copyartifact-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/copyartifact-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/copyartifact-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/copyartifact-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/copyartifact-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/copyartifact-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/copyartifact-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/copyartifact-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/copyartifact-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/copyartifact-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/copyartifact-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/copyartifact-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/copyartifact-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/copyartifact-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/copyartifact-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/copyartifact-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/copyartifact-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/copyartifact-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/copyartifact-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/copyartifact-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/copyartifact-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/copyartifact-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/copyartifact-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/copyartifact-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/copyartifact-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/copyartifact-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/copyartifact-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/copyartifact-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/copyartifact-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/copyartifact-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/copyartifact-plugin/deployments", + "created_at": "2010-12-13T05:29:41Z", + "updated_at": "2019-10-19T19:29:18Z", + "pushed_at": "2019-10-05T00:15:22Z", + "git_url": "git://github.com/jenkinsci/copyartifact-plugin.git", + "ssh_url": "git@github.com:jenkinsci/copyartifact-plugin.git", + "clone_url": "https://github.com/jenkinsci/copyartifact-plugin.git", + "svn_url": "https://github.com/jenkinsci/copyartifact-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 948, + "stargazers_count": 49, + "watchers_count": 49, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 92, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 4, + "license": null, + "forks": 92, + "open_issues": 4, + "watchers": 49, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163491, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNDkx", + "name": "culprit-report-plugin", + "full_name": "jenkinsci/culprit-report-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/culprit-report-plugin", + "description": "Jenkins culprit-report plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/culprit-report-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/culprit-report-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/culprit-report-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/culprit-report-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/culprit-report-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/culprit-report-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/culprit-report-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/culprit-report-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/culprit-report-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/culprit-report-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/culprit-report-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/culprit-report-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/culprit-report-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/culprit-report-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/culprit-report-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/culprit-report-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/culprit-report-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/culprit-report-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/culprit-report-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/culprit-report-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/culprit-report-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/culprit-report-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/culprit-report-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/culprit-report-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/culprit-report-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/culprit-report-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/culprit-report-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/culprit-report-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/culprit-report-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/culprit-report-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/culprit-report-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/culprit-report-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/culprit-report-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/culprit-report-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/culprit-report-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/culprit-report-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/culprit-report-plugin/deployments", + "created_at": "2010-12-13T05:29:42Z", + "updated_at": "2013-11-10T01:59:19Z", + "pushed_at": "2013-11-10T01:59:15Z", + "git_url": "git://github.com/jenkinsci/culprit-report-plugin.git", + "ssh_url": "git@github.com:jenkinsci/culprit-report-plugin.git", + "clone_url": "https://github.com/jenkinsci/culprit-report-plugin.git", + "svn_url": "https://github.com/jenkinsci/culprit-report-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 108, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163492, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNDky", + "name": "cron_column-plugin", + "full_name": "jenkinsci/cron_column-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/cron_column-plugin", + "description": "Jenkins cron_column plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/cron_column-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/cron_column-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/cron_column-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/cron_column-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/cron_column-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/cron_column-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/cron_column-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/cron_column-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/cron_column-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/cron_column-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/cron_column-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/cron_column-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/cron_column-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/cron_column-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/cron_column-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/cron_column-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/cron_column-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/cron_column-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/cron_column-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/cron_column-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/cron_column-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/cron_column-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/cron_column-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/cron_column-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/cron_column-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/cron_column-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/cron_column-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/cron_column-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/cron_column-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/cron_column-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/cron_column-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/cron_column-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/cron_column-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/cron_column-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/cron_column-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/cron_column-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/cron_column-plugin/deployments", + "created_at": "2010-12-13T05:29:43Z", + "updated_at": "2018-07-19T09:55:10Z", + "pushed_at": "2019-10-08T10:12:27Z", + "git_url": "git://github.com/jenkinsci/cron_column-plugin.git", + "ssh_url": "git@github.com:jenkinsci/cron_column-plugin.git", + "clone_url": "https://github.com/jenkinsci/cron_column-plugin.git", + "svn_url": "https://github.com/jenkinsci/cron_column-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 17, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 10, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": null, + "forks": 10, + "open_issues": 3, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163493, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNDkz", + "name": "configurationslicing-plugin", + "full_name": "jenkinsci/configurationslicing-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/configurationslicing-plugin", + "description": "Jenkins configurationslicing plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/configurationslicing-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/configurationslicing-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/configurationslicing-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/configurationslicing-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/configurationslicing-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/configurationslicing-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/configurationslicing-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/configurationslicing-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/configurationslicing-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/configurationslicing-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/configurationslicing-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/configurationslicing-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/configurationslicing-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/configurationslicing-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/configurationslicing-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/configurationslicing-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/configurationslicing-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/configurationslicing-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/configurationslicing-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/configurationslicing-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/configurationslicing-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/configurationslicing-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/configurationslicing-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/configurationslicing-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/configurationslicing-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/configurationslicing-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/configurationslicing-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/configurationslicing-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/configurationslicing-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/configurationslicing-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/configurationslicing-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/configurationslicing-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/configurationslicing-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/configurationslicing-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/configurationslicing-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/configurationslicing-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/configurationslicing-plugin/deployments", + "created_at": "2010-12-13T05:29:51Z", + "updated_at": "2018-10-30T06:25:20Z", + "pushed_at": "2019-02-03T15:57:12Z", + "git_url": "git://github.com/jenkinsci/configurationslicing-plugin.git", + "ssh_url": "git@github.com:jenkinsci/configurationslicing-plugin.git", + "clone_url": "https://github.com/jenkinsci/configurationslicing-plugin.git", + "svn_url": "https://github.com/jenkinsci/configurationslicing-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 490, + "stargazers_count": 14, + "watchers_count": 14, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 39, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 6, + "license": null, + "forks": 39, + "open_issues": 6, + "watchers": 14, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163494, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNDk0", + "name": "cppcheck-plugin", + "full_name": "jenkinsci/cppcheck-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/cppcheck-plugin", + "description": "Jenkins cppcheck plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/cppcheck-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/cppcheck-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/cppcheck-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/cppcheck-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/cppcheck-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/cppcheck-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/cppcheck-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/cppcheck-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/cppcheck-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/cppcheck-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/cppcheck-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/cppcheck-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/cppcheck-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/cppcheck-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/cppcheck-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/cppcheck-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/cppcheck-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/cppcheck-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/cppcheck-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/cppcheck-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/cppcheck-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/cppcheck-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/cppcheck-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/cppcheck-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/cppcheck-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/cppcheck-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/cppcheck-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/cppcheck-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/cppcheck-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/cppcheck-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/cppcheck-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/cppcheck-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/cppcheck-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/cppcheck-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/cppcheck-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/cppcheck-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/cppcheck-plugin/deployments", + "created_at": "2010-12-13T05:29:56Z", + "updated_at": "2019-08-17T08:41:55Z", + "pushed_at": "2019-10-08T09:50:24Z", + "git_url": "git://github.com/jenkinsci/cppcheck-plugin.git", + "ssh_url": "git@github.com:jenkinsci/cppcheck-plugin.git", + "clone_url": "https://github.com/jenkinsci/cppcheck-plugin.git", + "svn_url": "https://github.com/jenkinsci/cppcheck-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 715, + "stargazers_count": 31, + "watchers_count": 31, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 37, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 10, + "license": null, + "forks": 37, + "open_issues": 10, + "watchers": 31, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163495, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNDk1", + "name": "crowd-plugin", + "full_name": "jenkinsci/crowd-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/crowd-plugin", + "description": "Jenkins crowd plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/crowd-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/crowd-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/crowd-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/crowd-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/crowd-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/crowd-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/crowd-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/crowd-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/crowd-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/crowd-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/crowd-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/crowd-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/crowd-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/crowd-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/crowd-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/crowd-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/crowd-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/crowd-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/crowd-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/crowd-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/crowd-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/crowd-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/crowd-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/crowd-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/crowd-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/crowd-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/crowd-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/crowd-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/crowd-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/crowd-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/crowd-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/crowd-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/crowd-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/crowd-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/crowd-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/crowd-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/crowd-plugin/deployments", + "created_at": "2010-12-13T05:30:01Z", + "updated_at": "2014-01-06T15:56:52Z", + "pushed_at": "2013-11-11T14:07:46Z", + "git_url": "git://github.com/jenkinsci/crowd-plugin.git", + "ssh_url": "git@github.com:jenkinsci/crowd-plugin.git", + "clone_url": "https://github.com/jenkinsci/crowd-plugin.git", + "svn_url": "https://github.com/jenkinsci/crowd-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 156, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 6, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163496, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNDk2", + "name": "cpptest-plugin", + "full_name": "jenkinsci/cpptest-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/cpptest-plugin", + "description": "Jenkins cpptest plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/cpptest-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/cpptest-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/cpptest-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/cpptest-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/cpptest-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/cpptest-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/cpptest-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/cpptest-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/cpptest-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/cpptest-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/cpptest-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/cpptest-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/cpptest-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/cpptest-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/cpptest-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/cpptest-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/cpptest-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/cpptest-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/cpptest-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/cpptest-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/cpptest-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/cpptest-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/cpptest-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/cpptest-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/cpptest-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/cpptest-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/cpptest-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/cpptest-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/cpptest-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/cpptest-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/cpptest-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/cpptest-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/cpptest-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/cpptest-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/cpptest-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/cpptest-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/cpptest-plugin/deployments", + "created_at": "2010-12-13T05:30:06Z", + "updated_at": "2014-09-29T22:25:25Z", + "pushed_at": "2019-10-08T16:11:55Z", + "git_url": "git://github.com/jenkinsci/cpptest-plugin.git", + "ssh_url": "git@github.com:jenkinsci/cpptest-plugin.git", + "clone_url": "https://github.com/jenkinsci/cpptest-plugin.git", + "svn_url": "https://github.com/jenkinsci/cpptest-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 655, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 8, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 8, + "open_issues": 1, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163498, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNDk4", + "name": "createjobadvanced-plugin", + "full_name": "jenkinsci/createjobadvanced-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/createjobadvanced-plugin", + "description": "Jenkins createjobadvanced plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/createjobadvanced-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/createjobadvanced-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/createjobadvanced-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/createjobadvanced-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/createjobadvanced-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/createjobadvanced-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/createjobadvanced-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/createjobadvanced-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/createjobadvanced-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/createjobadvanced-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/createjobadvanced-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/createjobadvanced-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/createjobadvanced-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/createjobadvanced-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/createjobadvanced-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/createjobadvanced-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/createjobadvanced-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/createjobadvanced-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/createjobadvanced-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/createjobadvanced-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/createjobadvanced-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/createjobadvanced-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/createjobadvanced-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/createjobadvanced-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/createjobadvanced-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/createjobadvanced-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/createjobadvanced-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/createjobadvanced-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/createjobadvanced-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/createjobadvanced-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/createjobadvanced-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/createjobadvanced-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/createjobadvanced-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/createjobadvanced-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/createjobadvanced-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/createjobadvanced-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/createjobadvanced-plugin/deployments", + "created_at": "2010-12-13T05:30:21Z", + "updated_at": "2013-12-28T15:42:27Z", + "pushed_at": "2019-10-08T12:07:34Z", + "git_url": "git://github.com/jenkinsci/createjobadvanced-plugin.git", + "ssh_url": "git@github.com:jenkinsci/createjobadvanced-plugin.git", + "clone_url": "https://github.com/jenkinsci/createjobadvanced-plugin.git", + "svn_url": "https://github.com/jenkinsci/createjobadvanced-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 192, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 6, + "open_issues": 1, + "watchers": 4, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163499, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNDk5", + "name": "dbCharts-plugin", + "full_name": "jenkinsci/dbCharts-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/dbCharts-plugin", + "description": "Jenkins dbCharts plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/dbCharts-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/dbCharts-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/dbCharts-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/dbCharts-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/dbCharts-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/dbCharts-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/dbCharts-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/dbCharts-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/dbCharts-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/dbCharts-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/dbCharts-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/dbCharts-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/dbCharts-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/dbCharts-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/dbCharts-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/dbCharts-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/dbCharts-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/dbCharts-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/dbCharts-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/dbCharts-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/dbCharts-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/dbCharts-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/dbCharts-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/dbCharts-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/dbCharts-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/dbCharts-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/dbCharts-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/dbCharts-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/dbCharts-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/dbCharts-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/dbCharts-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/dbCharts-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/dbCharts-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/dbCharts-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/dbCharts-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/dbCharts-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/dbCharts-plugin/deployments", + "created_at": "2010-12-13T05:30:35Z", + "updated_at": "2013-11-10T01:59:58Z", + "pushed_at": "2016-04-16T01:28:46Z", + "git_url": "git://github.com/jenkinsci/dbCharts-plugin.git", + "ssh_url": "git@github.com:jenkinsci/dbCharts-plugin.git", + "clone_url": "https://github.com/jenkinsci/dbCharts-plugin.git", + "svn_url": "https://github.com/jenkinsci/dbCharts-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 28, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 1163500, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzNTAw", + "name": "cygpath-plugin", + "full_name": "jenkinsci/cygpath-plugin", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/cygpath-plugin", + "description": "Jenkins cygpath plugin", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/cygpath-plugin", + "forks_url": "https://api.github.com/repos/jenkinsci/cygpath-plugin/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/cygpath-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/cygpath-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/cygpath-plugin/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/cygpath-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/cygpath-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/cygpath-plugin/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/cygpath-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/cygpath-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/cygpath-plugin/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/cygpath-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/cygpath-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/cygpath-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/cygpath-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/cygpath-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/cygpath-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/cygpath-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/cygpath-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/cygpath-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/cygpath-plugin/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/cygpath-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/cygpath-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/cygpath-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/cygpath-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/cygpath-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/cygpath-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/cygpath-plugin/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/cygpath-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/cygpath-plugin/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/cygpath-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/cygpath-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/cygpath-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/cygpath-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/cygpath-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/cygpath-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/cygpath-plugin/deployments", + "created_at": "2010-12-13T05:30:46Z", + "updated_at": "2018-07-19T09:54:55Z", + "pushed_at": "2019-10-08T12:25:03Z", + "git_url": "git://github.com/jenkinsci/cygpath-plugin.git", + "ssh_url": "git@github.com:jenkinsci/cygpath-plugin.git", + "clone_url": "https://github.com/jenkinsci/cygpath-plugin.git", + "svn_url": "https://github.com/jenkinsci/cygpath-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 31, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 13, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 13, + "open_issues": 1, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/__files/user-50e8f530-8812-4f8d-afb0-8c5fc9294507.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/__files/user-50e8f530-8812-4f8d-afb0-8c5fc9294507.json new file mode 100644 index 0000000000..a4b576e8a7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/__files/user-50e8f530-8812-4f8d-afb0-8c5fc9294507.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 169, + "public_gists": 7, + "followers": 139, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/mappings/organizations_107424_repos-10-13ae5b.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/mappings/organizations_107424_repos-10-13ae5b.json new file mode 100644 index 0000000000..9721cb636a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/mappings/organizations_107424_repos-10-13ae5b.json @@ -0,0 +1,43 @@ +{ + "id": "13ae5b85-5c4d-409b-94b4-f1d995106d24", + "name": "organizations_107424_repos", + "request": { + "url": "/organizations/107424/repos?per_page=100&page=8", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "organizations_107424_repos-13ae5b85-5c4d-409b-94b4-f1d995106d24.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:04 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4370", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"83b91f4f1014e13312630c987b720ac6\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAC4:1CC6:AE68CC:CCC6C7:5DB3A122", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "13ae5b85-5c4d-409b-94b4-f1d995106d24", + "persistent": true, + "insertionIndex": 10 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/mappings/organizations_107424_repos-11-f533dd.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/mappings/organizations_107424_repos-11-f533dd.json new file mode 100644 index 0000000000..e3e8caf137 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/mappings/organizations_107424_repos-11-f533dd.json @@ -0,0 +1,43 @@ +{ + "id": "f533dd05-f467-4045-85f2-de7ef31e3c43", + "name": "organizations_107424_repos", + "request": { + "url": "/organizations/107424/repos?per_page=100&page=9", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "organizations_107424_repos-f533dd05-f467-4045-85f2-de7ef31e3c43.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:05 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4369", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"22fc58f23e2714334d25eb4214ba06bc\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAC4:1CC6:AE69A1:CCC7C4:5DB3A124", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "f533dd05-f467-4045-85f2-de7ef31e3c43", + "persistent": true, + "insertionIndex": 11 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/mappings/organizations_107424_repos-12-df03bd.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/mappings/organizations_107424_repos-12-df03bd.json new file mode 100644 index 0000000000..9e46af69ef --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/mappings/organizations_107424_repos-12-df03bd.json @@ -0,0 +1,43 @@ +{ + "id": "df03bd6c-ec4b-4911-8d43-58d2e2498eeb", + "name": "organizations_107424_repos", + "request": { + "url": "/organizations/107424/repos?per_page=100&page=10", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "organizations_107424_repos-df03bd6c-ec4b-4911-8d43-58d2e2498eeb.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:07 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4368", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"dc7c9429ba6754da048c10782cb1f179\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAC4:1CC6:AE6A39:CCC876:5DB3A125", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "df03bd6c-ec4b-4911-8d43-58d2e2498eeb", + "persistent": true, + "insertionIndex": 12 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/mappings/organizations_107424_repos-13-26bad5.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/mappings/organizations_107424_repos-13-26bad5.json new file mode 100644 index 0000000000..00e395e112 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/mappings/organizations_107424_repos-13-26bad5.json @@ -0,0 +1,43 @@ +{ + "id": "26bad52b-c62b-469b-885f-453d7b164aca", + "name": "organizations_107424_repos", + "request": { + "url": "/organizations/107424/repos?per_page=100&page=11", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "organizations_107424_repos-26bad52b-c62b-469b-885f-453d7b164aca.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:08 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4367", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"5e1286b0346d440cdf82f6934ad50b07\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAC4:1CC6:AE6AB8:CCC90E:5DB3A127", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "26bad52b-c62b-469b-885f-453d7b164aca", + "persistent": true, + "insertionIndex": 13 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/mappings/organizations_107424_repos-14-8315bb.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/mappings/organizations_107424_repos-14-8315bb.json new file mode 100644 index 0000000000..144b0b1039 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/mappings/organizations_107424_repos-14-8315bb.json @@ -0,0 +1,43 @@ +{ + "id": "8315bb73-ac7c-4890-83ee-8802c5eb57a6", + "name": "organizations_107424_repos", + "request": { + "url": "/organizations/107424/repos?per_page=100&page=12", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "organizations_107424_repos-8315bb73-ac7c-4890-83ee-8802c5eb57a6.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:10 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4366", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"dff7835a112a2d8099e521b5a2d47f43\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAC4:1CC6:AE6B3B:CCC9B0:5DB3A128", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "8315bb73-ac7c-4890-83ee-8802c5eb57a6", + "persistent": true, + "insertionIndex": 14 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/mappings/organizations_107424_repos-15-ecf517.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/mappings/organizations_107424_repos-15-ecf517.json new file mode 100644 index 0000000000..3d50a80cd6 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/mappings/organizations_107424_repos-15-ecf517.json @@ -0,0 +1,43 @@ +{ + "id": "ecf517ff-a34e-4190-9e4a-7ce48bccffae", + "name": "organizations_107424_repos", + "request": { + "url": "/organizations/107424/repos?per_page=100&page=13", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "organizations_107424_repos-ecf517ff-a34e-4190-9e4a-7ce48bccffae.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:12 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4365", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"8c16a4cbe21bf1365b8e325f49b1c094\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAC4:1CC6:AE6BBC:CCCA49:5DB3A12A", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "ecf517ff-a34e-4190-9e4a-7ce48bccffae", + "persistent": true, + "insertionIndex": 15 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/mappings/organizations_107424_repos-16-45dd04.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/mappings/organizations_107424_repos-16-45dd04.json new file mode 100644 index 0000000000..91138d3651 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/mappings/organizations_107424_repos-16-45dd04.json @@ -0,0 +1,43 @@ +{ + "id": "45dd04d4-645f-47f2-8412-52e08b3c2e50", + "name": "organizations_107424_repos", + "request": { + "url": "/organizations/107424/repos?per_page=100&page=14", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "organizations_107424_repos-45dd04d4-645f-47f2-8412-52e08b3c2e50.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:13 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4364", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"4b32f6b18b9629e771278f6dda4dba05\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAC4:1CC6:AE6C62:CCCB0A:5DB3A12C", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "45dd04d4-645f-47f2-8412-52e08b3c2e50", + "persistent": true, + "insertionIndex": 16 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/mappings/organizations_107424_repos-17-a73c5a.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/mappings/organizations_107424_repos-17-a73c5a.json new file mode 100644 index 0000000000..9763692723 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/mappings/organizations_107424_repos-17-a73c5a.json @@ -0,0 +1,43 @@ +{ + "id": "a73c5a75-e101-4321-aea4-c633929320e8", + "name": "organizations_107424_repos", + "request": { + "url": "/organizations/107424/repos?per_page=100&page=15", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "organizations_107424_repos-a73c5a75-e101-4321-aea4-c633929320e8.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:15 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4363", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"49628812c8415ff7e30cbd47c41380e3\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAC4:1CC6:AE6CD6:CCCB8F:5DB3A12D", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "a73c5a75-e101-4321-aea4-c633929320e8", + "persistent": true, + "insertionIndex": 17 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/mappings/organizations_107424_repos-18-e66682.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/mappings/organizations_107424_repos-18-e66682.json new file mode 100644 index 0000000000..4c95827b05 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/mappings/organizations_107424_repos-18-e66682.json @@ -0,0 +1,43 @@ +{ + "id": "e66682bb-4a55-4cf9-9092-9c3aaf6dc915", + "name": "organizations_107424_repos", + "request": { + "url": "/organizations/107424/repos?per_page=100&page=16", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "organizations_107424_repos-e66682bb-4a55-4cf9-9092-9c3aaf6dc915.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:16 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4362", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"80e5c08376b86ca959e5ce663392495b\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAC4:1CC6:AE6D71:CCCC49:5DB3A12F", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "e66682bb-4a55-4cf9-9092-9c3aaf6dc915", + "persistent": true, + "insertionIndex": 18 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/mappings/organizations_107424_repos-19-0e04a7.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/mappings/organizations_107424_repos-19-0e04a7.json new file mode 100644 index 0000000000..aa07d31a1b --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/mappings/organizations_107424_repos-19-0e04a7.json @@ -0,0 +1,43 @@ +{ + "id": "0e04a7f4-8a85-40ec-b90d-faf2822b648f", + "name": "organizations_107424_repos", + "request": { + "url": "/organizations/107424/repos?per_page=100&page=17", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "organizations_107424_repos-0e04a7f4-8a85-40ec-b90d-faf2822b648f.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:18 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4361", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"3aefed6ac8c77c7cb6ef59828f783c4a\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAC4:1CC6:AE6DF4:CCCCE1:5DB3A130", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "0e04a7f4-8a85-40ec-b90d-faf2822b648f", + "persistent": true, + "insertionIndex": 19 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/mappings/organizations_107424_repos-20-5cb3f8.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/mappings/organizations_107424_repos-20-5cb3f8.json new file mode 100644 index 0000000000..572dcd6dcc --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/mappings/organizations_107424_repos-20-5cb3f8.json @@ -0,0 +1,43 @@ +{ + "id": "5cb3f8b7-17fc-4a5b-a8b3-99c07a604469", + "name": "organizations_107424_repos", + "request": { + "url": "/organizations/107424/repos?per_page=100&page=18", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "organizations_107424_repos-5cb3f8b7-17fc-4a5b-a8b3-99c07a604469.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:19 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4360", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"79d26a423a1c544f61e199dc2df9557f\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAC4:1CC6:AE6E7D:CCCD81:5DB3A132", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "5cb3f8b7-17fc-4a5b-a8b3-99c07a604469", + "persistent": true, + "insertionIndex": 20 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/mappings/organizations_107424_repos-21-626ca8.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/mappings/organizations_107424_repos-21-626ca8.json new file mode 100644 index 0000000000..0567d27b7b --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/mappings/organizations_107424_repos-21-626ca8.json @@ -0,0 +1,43 @@ +{ + "id": "626ca8b6-883d-405d-a271-84b38deb0567", + "name": "organizations_107424_repos", + "request": { + "url": "/organizations/107424/repos?per_page=100&page=19", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "organizations_107424_repos-626ca8b6-883d-405d-a271-84b38deb0567.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:21 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4359", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"8330160204af81f4a9b68b56bc96f637\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAC4:1CC6:AE6EF5:CCCE0E:5DB3A133", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "626ca8b6-883d-405d-a271-84b38deb0567", + "persistent": true, + "insertionIndex": 21 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/mappings/organizations_107424_repos-22-e0e43c.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/mappings/organizations_107424_repos-22-e0e43c.json new file mode 100644 index 0000000000..f28e632d4a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/mappings/organizations_107424_repos-22-e0e43c.json @@ -0,0 +1,43 @@ +{ + "id": "e0e43c36-cd33-4f86-b35d-165f964bf15e", + "name": "organizations_107424_repos", + "request": { + "url": "/organizations/107424/repos?per_page=100&page=20", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "organizations_107424_repos-e0e43c36-cd33-4f86-b35d-165f964bf15e.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:22 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4358", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"c3172e936488f226d6f456b9364424d0\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAC4:1CC6:AE6F6F:CCCEA3:5DB3A135", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "e0e43c36-cd33-4f86-b35d-165f964bf15e", + "persistent": true, + "insertionIndex": 22 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/mappings/organizations_107424_repos-23-6f8a70.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/mappings/organizations_107424_repos-23-6f8a70.json new file mode 100644 index 0000000000..b076510465 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/mappings/organizations_107424_repos-23-6f8a70.json @@ -0,0 +1,43 @@ +{ + "id": "6f8a70ef-2168-4fad-8f28-d1ad0584525d", + "name": "organizations_107424_repos", + "request": { + "url": "/organizations/107424/repos?per_page=100&page=21", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "organizations_107424_repos-6f8a70ef-2168-4fad-8f28-d1ad0584525d.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:24 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4357", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"567a6bb7dcae1d867da8b781f159682c\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAC4:1CC6:AE6FC1:CCCF03:5DB3A136", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "6f8a70ef-2168-4fad-8f28-d1ad0584525d", + "persistent": true, + "insertionIndex": 23 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/mappings/organizations_107424_repos-24-aec88a.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/mappings/organizations_107424_repos-24-aec88a.json new file mode 100644 index 0000000000..0717096d3c --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/mappings/organizations_107424_repos-24-aec88a.json @@ -0,0 +1,43 @@ +{ + "id": "aec88ab4-fa24-43a9-93c9-82026978b8a7", + "name": "organizations_107424_repos", + "request": { + "url": "/organizations/107424/repos?per_page=100&page=22", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "organizations_107424_repos-aec88ab4-fa24-43a9-93c9-82026978b8a7.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:26 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4356", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"9aeb29fde25b34a1c74e19094c7f1845\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAC4:1CC6:AE7019:CCCF64:5DB3A138", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "aec88ab4-fa24-43a9-93c9-82026978b8a7", + "persistent": true, + "insertionIndex": 24 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/mappings/organizations_107424_repos-25-d95d3c.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/mappings/organizations_107424_repos-25-d95d3c.json new file mode 100644 index 0000000000..934b13a8a6 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/mappings/organizations_107424_repos-25-d95d3c.json @@ -0,0 +1,43 @@ +{ + "id": "d95d3c51-42d4-4138-86ba-95b07d066993", + "name": "organizations_107424_repos", + "request": { + "url": "/organizations/107424/repos?per_page=100&page=23", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "organizations_107424_repos-d95d3c51-42d4-4138-86ba-95b07d066993.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:26 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4355", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"aa914ce779a11314fd694b2f4cd74b27\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAC4:1CC6:AE708C:CCCFE3:5DB3A13A", + "Link": "; rel=\"prev\", ; rel=\"first\"" + } + }, + "uuid": "d95d3c51-42d4-4138-86ba-95b07d066993", + "persistent": true, + "insertionIndex": 25 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/mappings/organizations_107424_repos-4-471f9b.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/mappings/organizations_107424_repos-4-471f9b.json new file mode 100644 index 0000000000..1e6e980761 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/mappings/organizations_107424_repos-4-471f9b.json @@ -0,0 +1,43 @@ +{ + "id": "471f9be3-9f94-4788-bd01-316c9e5d03a4", + "name": "organizations_107424_repos", + "request": { + "url": "/organizations/107424/repos?per_page=100&page=2", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "organizations_107424_repos-471f9be3-9f94-4788-bd01-316c9e5d03a4.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:27:53 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4376", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"60284685b96e003cec05b128c4376eae\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAC4:1CC6:AE65D2:CCC35B:5DB3A118", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "471f9be3-9f94-4788-bd01-316c9e5d03a4", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/mappings/organizations_107424_repos-5-d68a56.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/mappings/organizations_107424_repos-5-d68a56.json new file mode 100644 index 0000000000..bd19fd4d22 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/mappings/organizations_107424_repos-5-d68a56.json @@ -0,0 +1,43 @@ +{ + "id": "d68a564a-7eca-47ca-af21-1bb492309cfc", + "name": "organizations_107424_repos", + "request": { + "url": "/organizations/107424/repos?per_page=100&page=3", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "organizations_107424_repos-d68a564a-7eca-47ca-af21-1bb492309cfc.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:27:55 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4375", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"7c59fb09be8ece8abce35d9c643d8bad\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAC4:1CC6:AE662B:CCC3BF:5DB3A119", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "d68a564a-7eca-47ca-af21-1bb492309cfc", + "persistent": true, + "insertionIndex": 5 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/mappings/organizations_107424_repos-6-d4de5f.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/mappings/organizations_107424_repos-6-d4de5f.json new file mode 100644 index 0000000000..44eec3bb3f --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/mappings/organizations_107424_repos-6-d4de5f.json @@ -0,0 +1,43 @@ +{ + "id": "d4de5f04-8979-4506-b24d-f4e2ca3af58a", + "name": "organizations_107424_repos", + "request": { + "url": "/organizations/107424/repos?per_page=100&page=4", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "organizations_107424_repos-d4de5f04-8979-4506-b24d-f4e2ca3af58a.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:27:57 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4374", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"fb8408a690b13ff421b3de3bc76610cc\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAC4:1CC6:AE668D:CCC428:5DB3A11B", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "d4de5f04-8979-4506-b24d-f4e2ca3af58a", + "persistent": true, + "insertionIndex": 6 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/mappings/organizations_107424_repos-7-db791f.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/mappings/organizations_107424_repos-7-db791f.json new file mode 100644 index 0000000000..23d7ffe34c --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/mappings/organizations_107424_repos-7-db791f.json @@ -0,0 +1,43 @@ +{ + "id": "db791f4d-4464-4055-80ae-83d017b7596d", + "name": "organizations_107424_repos", + "request": { + "url": "/organizations/107424/repos?per_page=100&page=5", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "organizations_107424_repos-db791f4d-4464-4055-80ae-83d017b7596d.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:27:58 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4373", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"c3797e257caab1fbb549f25ea4fceb16\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAC4:1CC6:AE66F0:CCC4A0:5DB3A11D", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "db791f4d-4464-4055-80ae-83d017b7596d", + "persistent": true, + "insertionIndex": 7 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/mappings/organizations_107424_repos-8-49da2f.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/mappings/organizations_107424_repos-8-49da2f.json new file mode 100644 index 0000000000..aae56847ec --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/mappings/organizations_107424_repos-8-49da2f.json @@ -0,0 +1,43 @@ +{ + "id": "49da2fa3-254f-41d7-8a0f-1ba36c19eae4", + "name": "organizations_107424_repos", + "request": { + "url": "/organizations/107424/repos?per_page=100&page=6", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "organizations_107424_repos-49da2fa3-254f-41d7-8a0f-1ba36c19eae4.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:00 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4372", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"b1658a06cd48a38843aaf55e5bf89f23\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAC4:1CC6:AE676A:CCC53D:5DB3A11E", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "49da2fa3-254f-41d7-8a0f-1ba36c19eae4", + "persistent": true, + "insertionIndex": 8 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/mappings/organizations_107424_repos-9-d4d7b2.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/mappings/organizations_107424_repos-9-d4d7b2.json new file mode 100644 index 0000000000..617ba9df2a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/mappings/organizations_107424_repos-9-d4d7b2.json @@ -0,0 +1,43 @@ +{ + "id": "d4d7b222-62d1-4d88-bab9-ccf707f314e4", + "name": "organizations_107424_repos", + "request": { + "url": "/organizations/107424/repos?per_page=100&page=7", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "organizations_107424_repos-d4d7b222-62d1-4d88-bab9-ccf707f314e4.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:02 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4371", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"bdf18f3fd18e4806ab91e0dce554e454\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAC4:1CC6:AE67D9:CCC5BD:5DB3A120", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "d4d7b222-62d1-4d88-bab9-ccf707f314e4", + "persistent": true, + "insertionIndex": 9 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/mappings/orgs_jenkinsci-2-72681a.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/mappings/orgs_jenkinsci-2-72681a.json new file mode 100644 index 0000000000..31f45eb6fb --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/mappings/orgs_jenkinsci-2-72681a.json @@ -0,0 +1,43 @@ +{ + "id": "72681a2c-9db9-44b8-a9cf-4084568695a0", + "name": "orgs_jenkinsci", + "request": { + "url": "/orgs/jenkinsci", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_jenkinsci-72681a2c-9db9-44b8-a9cf-4084568695a0.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:27:50 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4378", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"ee1dcb6549b6c8fc14267ae3abde8f38\"", + "Last-Modified": "Mon, 25 Feb 2019 15:26:10 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAC4:1CC6:AE6571:CCC2E4:5DB3A116" + } + }, + "uuid": "72681a2c-9db9-44b8-a9cf-4084568695a0", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/mappings/orgs_jenkinsci_repos-3-75d09b.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/mappings/orgs_jenkinsci_repos-3-75d09b.json new file mode 100644 index 0000000000..384bc80492 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/mappings/orgs_jenkinsci_repos-3-75d09b.json @@ -0,0 +1,43 @@ +{ + "id": "75d09b41-374d-4c15-b8fd-06b9e1e8402c", + "name": "orgs_jenkinsci_repos", + "request": { + "url": "/orgs/jenkinsci/repos?per_page=100", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_jenkinsci_repos-75d09b41-374d-4c15-b8fd-06b9e1e8402c.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:27:52 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4377", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"1caec6c3f332ee8e63f7a78e2e80a43b\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAC4:1CC6:AE657F:CCC2FC:5DB3A116", + "Link": "; rel=\"next\", ; rel=\"last\"" + } + }, + "uuid": "75d09b41-374d-4c15-b8fd-06b9e1e8402c", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/mappings/user-1-50e8f5.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/mappings/user-1-50e8f5.json new file mode 100644 index 0000000000..6d5b7abbaf --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgRepositories/mappings/user-1-50e8f5.json @@ -0,0 +1,43 @@ +{ + "id": "50e8f530-8812-4f8d-afb0-8c5fc9294507", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-50e8f530-8812-4f8d-afb0-8c5fc9294507.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:27:50 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4380", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"8c3d3dcf6fc5f9edaf26c902295396e5\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAC4:1CC6:AE6562:CCC2D7:5DB3A116" + } + }, + "uuid": "50e8f530-8812-4f8d-afb0-8c5fc9294507", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgTeamByName/__files/orgs_github-api-test-org-4f288ca6-2584-436c-9700-fa1e99e18587.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgTeamByName/__files/orgs_github-api-test-org-4f288ca6-2584-436c-9700-fa1e99e18587.json new file mode 100644 index 0000000000..99b5920ccb --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgTeamByName/__files/orgs_github-api-test-org-4f288ca6-2584-436c-9700-fa1e99e18587.json @@ -0,0 +1,41 @@ +{ + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "url": "https://api.github.com/orgs/github-api-test-org", + "repos_url": "https://api.github.com/orgs/github-api-test-org/repos", + "events_url": "https://api.github.com/orgs/github-api-test-org/events", + "hooks_url": "https://api.github.com/orgs/github-api-test-org/hooks", + "issues_url": "https://api.github.com/orgs/github-api-test-org/issues", + "members_url": "https://api.github.com/orgs/github-api-test-org/members{/member}", + "public_members_url": "https://api.github.com/orgs/github-api-test-org/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "description": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 10, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/github-api-test-org", + "created_at": "2014-05-10T19:39:11Z", + "updated_at": "2015-04-20T00:42:30Z", + "type": "Organization", + "total_private_repos": 0, + "owned_private_repos": 0, + "private_gists": 0, + "disk_usage": 132, + "collaborators": 0, + "billing_email": "kk@kohsuke.org", + "default_repository_permission": "none", + "members_can_create_repositories": false, + "two_factor_requirement_enabled": false, + "plan": { + "name": "free", + "space": 976562499, + "private_repos": 0, + "filled_seats": 7, + "seats": 0 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgTeamByName/__files/orgs_github-api-test-org_teams-b980fc5b-1824-4692-b40e-3d54a610c539.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgTeamByName/__files/orgs_github-api-test-org_teams-b980fc5b-1824-4692-b40e-3d54a610c539.json new file mode 100644 index 0000000000..2da48aa286 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgTeamByName/__files/orgs_github-api-test-org_teams-b980fc5b-1824-4692-b40e-3d54a610c539.json @@ -0,0 +1,54 @@ +[ + { + "name": "Owners", + "id": 820404, + "node_id": "MDQ6VGVhbTgyMDQwNA==", + "slug": "owners", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/820404", + "html_url": "https://github.com/orgs/github-api-test-org/teams/owners", + "members_url": "https://api.github.com/teams/820404/members{/member}", + "repositories_url": "https://api.github.com/teams/820404/repos", + "permission": "admin" + }, + { + "name": "Core Developers", + "id": 820406, + "node_id": "MDQ6VGVhbTgyMDQwNg==", + "slug": "core-developers", + "description": "A random team", + "privacy": "secret", + "url": "https://api.github.com/teams/820406", + "html_url": "https://github.com/orgs/github-api-test-org/teams/core-developers", + "members_url": "https://api.github.com/teams/820406/members{/member}", + "repositories_url": "https://api.github.com/teams/820406/repos", + "permission": "pull" + }, + { + "name": "dummy-team", + "id": 3451996, + "node_id": "MDQ6VGVhbTM0NTE5OTY=", + "slug": "dummy-team", + "description": "Updated by API TestModified", + "privacy": "closed", + "url": "https://api.github.com/teams/3451996", + "html_url": "https://github.com/orgs/github-api-test-org/teams/dummy-team", + "members_url": "https://api.github.com/teams/3451996/members{/member}", + "repositories_url": "https://api.github.com/teams/3451996/repos", + "permission": "pull" + }, + { + "name": "tricky-team", + "id": 3454508, + "node_id": "MDQ6VGVhbTM0NTQ1MDg=", + "slug": "tricky-team", + "description": "", + "privacy": "secret", + "url": "https://api.github.com/teams/3454508", + "html_url": "https://github.com/orgs/github-api-test-org/teams/tricky-team", + "members_url": "https://api.github.com/teams/3454508/members{/member}", + "repositories_url": "https://api.github.com/teams/3454508/repos", + "permission": "pull" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgTeamByName/__files/user-d4155364-c1f5-4f54-bd13-38ab188af938.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgTeamByName/__files/user-d4155364-c1f5-4f54-bd13-38ab188af938.json new file mode 100644 index 0000000000..a4b576e8a7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgTeamByName/__files/user-d4155364-c1f5-4f54-bd13-38ab188af938.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 169, + "public_gists": 7, + "followers": 139, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgTeamByName/mappings/orgs_github-api-test-org-2-4f288c.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgTeamByName/mappings/orgs_github-api-test-org-2-4f288c.json new file mode 100644 index 0000000000..5cd867a31f --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgTeamByName/mappings/orgs_github-api-test-org-2-4f288c.json @@ -0,0 +1,43 @@ +{ + "id": "4f288ca6-2584-436c-9700-fa1e99e18587", + "name": "orgs_github-api-test-org", + "request": { + "url": "/orgs/github-api-test-org", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_github-api-test-org-4f288ca6-2584-436c-9700-fa1e99e18587.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:38 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4304", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"bbee0a14a82ca84871298052e1bcb545\"", + "Last-Modified": "Mon, 20 Apr 2015 00:42:30 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAF5:45A4:C14726:DF124B:5DB3A145" + } + }, + "uuid": "4f288ca6-2584-436c-9700-fa1e99e18587", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgTeamByName/mappings/orgs_github-api-test-org_teams-3-b980fc.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgTeamByName/mappings/orgs_github-api-test-org_teams-3-b980fc.json new file mode 100644 index 0000000000..015542cba8 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgTeamByName/mappings/orgs_github-api-test-org_teams-3-b980fc.json @@ -0,0 +1,42 @@ +{ + "id": "b980fc5b-1824-4692-b40e-3d54a610c539", + "name": "orgs_github-api-test-org_teams", + "request": { + "url": "/orgs/github-api-test-org/teams", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_github-api-test-org_teams-b980fc5b-1824-4692-b40e-3d54a610c539.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:38 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4303", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"70d5cec1d50dff5493d435d403a622d2\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAF5:45A4:C14736:DF1268:5DB3A146" + } + }, + "uuid": "b980fc5b-1824-4692-b40e-3d54a610c539", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgTeamByName/mappings/user-1-d41553.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgTeamByName/mappings/user-1-d41553.json new file mode 100644 index 0000000000..230f74d348 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgTeamByName/mappings/user-1-d41553.json @@ -0,0 +1,43 @@ +{ + "id": "d4155364-c1f5-4f54-bd13-38ab188af938", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-d4155364-c1f5-4f54-bd13-38ab188af938.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:37 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4306", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"8c3d3dcf6fc5f9edaf26c902295396e5\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAF5:45A4:C14713:DF1242:5DB3A145" + } + }, + "uuid": "d4155364-c1f5-4f54-bd13-38ab188af938", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgTeamBySlug/__files/orgs_github-api-test-org-805bfcf6-6b2a-4489-91d9-03c37286dfd5.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgTeamBySlug/__files/orgs_github-api-test-org-805bfcf6-6b2a-4489-91d9-03c37286dfd5.json new file mode 100644 index 0000000000..99b5920ccb --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgTeamBySlug/__files/orgs_github-api-test-org-805bfcf6-6b2a-4489-91d9-03c37286dfd5.json @@ -0,0 +1,41 @@ +{ + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "url": "https://api.github.com/orgs/github-api-test-org", + "repos_url": "https://api.github.com/orgs/github-api-test-org/repos", + "events_url": "https://api.github.com/orgs/github-api-test-org/events", + "hooks_url": "https://api.github.com/orgs/github-api-test-org/hooks", + "issues_url": "https://api.github.com/orgs/github-api-test-org/issues", + "members_url": "https://api.github.com/orgs/github-api-test-org/members{/member}", + "public_members_url": "https://api.github.com/orgs/github-api-test-org/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "description": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 10, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/github-api-test-org", + "created_at": "2014-05-10T19:39:11Z", + "updated_at": "2015-04-20T00:42:30Z", + "type": "Organization", + "total_private_repos": 0, + "owned_private_repos": 0, + "private_gists": 0, + "disk_usage": 132, + "collaborators": 0, + "billing_email": "kk@kohsuke.org", + "default_repository_permission": "none", + "members_can_create_repositories": false, + "two_factor_requirement_enabled": false, + "plan": { + "name": "free", + "space": 976562499, + "private_repos": 0, + "filled_seats": 7, + "seats": 0 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgTeamBySlug/__files/orgs_github-api-test-org_teams-44dbf3a1-23da-4193-a945-efe1f7977871.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgTeamBySlug/__files/orgs_github-api-test-org_teams-44dbf3a1-23da-4193-a945-efe1f7977871.json new file mode 100644 index 0000000000..2da48aa286 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgTeamBySlug/__files/orgs_github-api-test-org_teams-44dbf3a1-23da-4193-a945-efe1f7977871.json @@ -0,0 +1,54 @@ +[ + { + "name": "Owners", + "id": 820404, + "node_id": "MDQ6VGVhbTgyMDQwNA==", + "slug": "owners", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/820404", + "html_url": "https://github.com/orgs/github-api-test-org/teams/owners", + "members_url": "https://api.github.com/teams/820404/members{/member}", + "repositories_url": "https://api.github.com/teams/820404/repos", + "permission": "admin" + }, + { + "name": "Core Developers", + "id": 820406, + "node_id": "MDQ6VGVhbTgyMDQwNg==", + "slug": "core-developers", + "description": "A random team", + "privacy": "secret", + "url": "https://api.github.com/teams/820406", + "html_url": "https://github.com/orgs/github-api-test-org/teams/core-developers", + "members_url": "https://api.github.com/teams/820406/members{/member}", + "repositories_url": "https://api.github.com/teams/820406/repos", + "permission": "pull" + }, + { + "name": "dummy-team", + "id": 3451996, + "node_id": "MDQ6VGVhbTM0NTE5OTY=", + "slug": "dummy-team", + "description": "Updated by API TestModified", + "privacy": "closed", + "url": "https://api.github.com/teams/3451996", + "html_url": "https://github.com/orgs/github-api-test-org/teams/dummy-team", + "members_url": "https://api.github.com/teams/3451996/members{/member}", + "repositories_url": "https://api.github.com/teams/3451996/repos", + "permission": "pull" + }, + { + "name": "tricky-team", + "id": 3454508, + "node_id": "MDQ6VGVhbTM0NTQ1MDg=", + "slug": "tricky-team", + "description": "", + "privacy": "secret", + "url": "https://api.github.com/teams/3454508", + "html_url": "https://github.com/orgs/github-api-test-org/teams/tricky-team", + "members_url": "https://api.github.com/teams/3454508/members{/member}", + "repositories_url": "https://api.github.com/teams/3454508/repos", + "permission": "pull" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgTeamBySlug/__files/user-04565ff3-3827-4bce-b8bc-69aa2b88374b.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgTeamBySlug/__files/user-04565ff3-3827-4bce-b8bc-69aa2b88374b.json new file mode 100644 index 0000000000..a4b576e8a7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgTeamBySlug/__files/user-04565ff3-3827-4bce-b8bc-69aa2b88374b.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 169, + "public_gists": 7, + "followers": 139, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgTeamBySlug/mappings/orgs_github-api-test-org-2-805bfc.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgTeamBySlug/mappings/orgs_github-api-test-org-2-805bfc.json new file mode 100644 index 0000000000..5b568eaa72 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgTeamBySlug/mappings/orgs_github-api-test-org-2-805bfc.json @@ -0,0 +1,43 @@ +{ + "id": "805bfcf6-6b2a-4489-91d9-03c37286dfd5", + "name": "orgs_github-api-test-org", + "request": { + "url": "/orgs/github-api-test-org", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_github-api-test-org-805bfcf6-6b2a-4489-91d9-03c37286dfd5.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:39 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4300", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"bbee0a14a82ca84871298052e1bcb545\"", + "Last-Modified": "Mon, 20 Apr 2015 00:42:30 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAF9:3648:A50991:C32F64:5DB3A146" + } + }, + "uuid": "805bfcf6-6b2a-4489-91d9-03c37286dfd5", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgTeamBySlug/mappings/orgs_github-api-test-org_teams-3-44dbf3.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgTeamBySlug/mappings/orgs_github-api-test-org_teams-3-44dbf3.json new file mode 100644 index 0000000000..e03ab4eb96 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgTeamBySlug/mappings/orgs_github-api-test-org_teams-3-44dbf3.json @@ -0,0 +1,42 @@ +{ + "id": "44dbf3a1-23da-4193-a945-efe1f7977871", + "name": "orgs_github-api-test-org_teams", + "request": { + "url": "/orgs/github-api-test-org/teams", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_github-api-test-org_teams-44dbf3a1-23da-4193-a945-efe1f7977871.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:39 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4299", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"70d5cec1d50dff5493d435d403a622d2\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAF9:3648:A5099D:C32F76:5DB3A147" + } + }, + "uuid": "44dbf3a1-23da-4193-a945-efe1f7977871", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgTeamBySlug/mappings/user-1-04565f.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgTeamBySlug/mappings/user-1-04565f.json new file mode 100644 index 0000000000..03fcf1a0af --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgTeamBySlug/mappings/user-1-04565f.json @@ -0,0 +1,43 @@ +{ + "id": "04565ff3-3827-4bce-b8bc-69aa2b88374b", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-04565ff3-3827-4bce-b8bc-69aa2b88374b.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:38 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4302", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"8c3d3dcf6fc5f9edaf26c902295396e5\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAF9:3648:A50983:C32F5E:5DB3A146" + } + }, + "uuid": "04565ff3-3827-4bce-b8bc-69aa2b88374b", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgTeams/__files/orgs_github-api-test-org-4a4f8ecc-e1ea-4c8f-9c74-b6de4241a3ae.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgTeams/__files/orgs_github-api-test-org-4a4f8ecc-e1ea-4c8f-9c74-b6de4241a3ae.json new file mode 100644 index 0000000000..99b5920ccb --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgTeams/__files/orgs_github-api-test-org-4a4f8ecc-e1ea-4c8f-9c74-b6de4241a3ae.json @@ -0,0 +1,41 @@ +{ + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "url": "https://api.github.com/orgs/github-api-test-org", + "repos_url": "https://api.github.com/orgs/github-api-test-org/repos", + "events_url": "https://api.github.com/orgs/github-api-test-org/events", + "hooks_url": "https://api.github.com/orgs/github-api-test-org/hooks", + "issues_url": "https://api.github.com/orgs/github-api-test-org/issues", + "members_url": "https://api.github.com/orgs/github-api-test-org/members{/member}", + "public_members_url": "https://api.github.com/orgs/github-api-test-org/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "description": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 10, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/github-api-test-org", + "created_at": "2014-05-10T19:39:11Z", + "updated_at": "2015-04-20T00:42:30Z", + "type": "Organization", + "total_private_repos": 0, + "owned_private_repos": 0, + "private_gists": 0, + "disk_usage": 132, + "collaborators": 0, + "billing_email": "kk@kohsuke.org", + "default_repository_permission": "none", + "members_can_create_repositories": false, + "two_factor_requirement_enabled": false, + "plan": { + "name": "free", + "space": 976562499, + "private_repos": 0, + "filled_seats": 7, + "seats": 0 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgTeams/__files/orgs_github-api-test-org_teams-625f653e-9301-47ba-9bc5-2e25be8ba17e.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgTeams/__files/orgs_github-api-test-org_teams-625f653e-9301-47ba-9bc5-2e25be8ba17e.json new file mode 100644 index 0000000000..2da48aa286 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgTeams/__files/orgs_github-api-test-org_teams-625f653e-9301-47ba-9bc5-2e25be8ba17e.json @@ -0,0 +1,54 @@ +[ + { + "name": "Owners", + "id": 820404, + "node_id": "MDQ6VGVhbTgyMDQwNA==", + "slug": "owners", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/820404", + "html_url": "https://github.com/orgs/github-api-test-org/teams/owners", + "members_url": "https://api.github.com/teams/820404/members{/member}", + "repositories_url": "https://api.github.com/teams/820404/repos", + "permission": "admin" + }, + { + "name": "Core Developers", + "id": 820406, + "node_id": "MDQ6VGVhbTgyMDQwNg==", + "slug": "core-developers", + "description": "A random team", + "privacy": "secret", + "url": "https://api.github.com/teams/820406", + "html_url": "https://github.com/orgs/github-api-test-org/teams/core-developers", + "members_url": "https://api.github.com/teams/820406/members{/member}", + "repositories_url": "https://api.github.com/teams/820406/repos", + "permission": "pull" + }, + { + "name": "dummy-team", + "id": 3451996, + "node_id": "MDQ6VGVhbTM0NTE5OTY=", + "slug": "dummy-team", + "description": "Updated by API TestModified", + "privacy": "closed", + "url": "https://api.github.com/teams/3451996", + "html_url": "https://github.com/orgs/github-api-test-org/teams/dummy-team", + "members_url": "https://api.github.com/teams/3451996/members{/member}", + "repositories_url": "https://api.github.com/teams/3451996/repos", + "permission": "pull" + }, + { + "name": "tricky-team", + "id": 3454508, + "node_id": "MDQ6VGVhbTM0NTQ1MDg=", + "slug": "tricky-team", + "description": "", + "privacy": "secret", + "url": "https://api.github.com/teams/3454508", + "html_url": "https://github.com/orgs/github-api-test-org/teams/tricky-team", + "members_url": "https://api.github.com/teams/3454508/members{/member}", + "repositories_url": "https://api.github.com/teams/3454508/repos", + "permission": "pull" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgTeams/__files/user-fc66c1e3-e6a4-4802-a5e2-8b948612ec57.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgTeams/__files/user-fc66c1e3-e6a4-4802-a5e2-8b948612ec57.json new file mode 100644 index 0000000000..a4b576e8a7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgTeams/__files/user-fc66c1e3-e6a4-4802-a5e2-8b948612ec57.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 169, + "public_gists": 7, + "followers": 139, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgTeams/mappings/orgs_github-api-test-org-2-4a4f8e.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgTeams/mappings/orgs_github-api-test-org-2-4a4f8e.json new file mode 100644 index 0000000000..eb1eab3eb6 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgTeams/mappings/orgs_github-api-test-org-2-4a4f8e.json @@ -0,0 +1,43 @@ +{ + "id": "4a4f8ecc-e1ea-4c8f-9c74-b6de4241a3ae", + "name": "orgs_github-api-test-org", + "request": { + "url": "/orgs/github-api-test-org", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_github-api-test-org-4a4f8ecc-e1ea-4c8f-9c74-b6de4241a3ae.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:29:04 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4232", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"bbee0a14a82ca84871298052e1bcb545\"", + "Last-Modified": "Mon, 20 Apr 2015 00:42:30 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CB2B:1CC8:E9880E:112B6F5:5DB3A160" + } + }, + "uuid": "4a4f8ecc-e1ea-4c8f-9c74-b6de4241a3ae", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgTeams/mappings/orgs_github-api-test-org_teams-3-625f65.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgTeams/mappings/orgs_github-api-test-org_teams-3-625f65.json new file mode 100644 index 0000000000..253ba7f761 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgTeams/mappings/orgs_github-api-test-org_teams-3-625f65.json @@ -0,0 +1,42 @@ +{ + "id": "625f653e-9301-47ba-9bc5-2e25be8ba17e", + "name": "orgs_github-api-test-org_teams", + "request": { + "url": "/orgs/github-api-test-org/teams", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_github-api-test-org_teams-625f653e-9301-47ba-9bc5-2e25be8ba17e.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:29:05 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4231", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"70d5cec1d50dff5493d435d403a622d2\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CB2B:1CC8:E9884A:112B73B:5DB3A160" + } + }, + "uuid": "625f653e-9301-47ba-9bc5-2e25be8ba17e", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgTeams/mappings/user-1-fc66c1.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgTeams/mappings/user-1-fc66c1.json new file mode 100644 index 0000000000..b7914a9939 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrgTeams/mappings/user-1-fc66c1.json @@ -0,0 +1,43 @@ +{ + "id": "fc66c1e3-e6a4-4802-a5e2-8b948612ec57", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-fc66c1e3-e6a4-4802-a5e2-8b948612ec57.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:29:04 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4234", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"8c3d3dcf6fc5f9edaf26c902295396e5\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CB2B:1CC8:E987DA:112B6D1:5DB3A160" + } + }, + "uuid": "fc66c1e3-e6a4-4802-a5e2-8b948612ec57", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrganization/__files/orgs_github-api-test-org-bbf24d32-ddda-44fe-acc3-003e9f629f32.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrganization/__files/orgs_github-api-test-org-bbf24d32-ddda-44fe-acc3-003e9f629f32.json new file mode 100644 index 0000000000..99b5920ccb --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrganization/__files/orgs_github-api-test-org-bbf24d32-ddda-44fe-acc3-003e9f629f32.json @@ -0,0 +1,41 @@ +{ + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "url": "https://api.github.com/orgs/github-api-test-org", + "repos_url": "https://api.github.com/orgs/github-api-test-org/repos", + "events_url": "https://api.github.com/orgs/github-api-test-org/events", + "hooks_url": "https://api.github.com/orgs/github-api-test-org/hooks", + "issues_url": "https://api.github.com/orgs/github-api-test-org/issues", + "members_url": "https://api.github.com/orgs/github-api-test-org/members{/member}", + "public_members_url": "https://api.github.com/orgs/github-api-test-org/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "description": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 10, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/github-api-test-org", + "created_at": "2014-05-10T19:39:11Z", + "updated_at": "2015-04-20T00:42:30Z", + "type": "Organization", + "total_private_repos": 0, + "owned_private_repos": 0, + "private_gists": 0, + "disk_usage": 132, + "collaborators": 0, + "billing_email": "kk@kohsuke.org", + "default_repository_permission": "none", + "members_can_create_repositories": false, + "two_factor_requirement_enabled": false, + "plan": { + "name": "free", + "space": 976562499, + "private_repos": 0, + "filled_seats": 7, + "seats": 0 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrganization/__files/orgs_github-api-test-org_teams-7e66f997-9af6-4cab-826b-807692be0274.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrganization/__files/orgs_github-api-test-org_teams-7e66f997-9af6-4cab-826b-807692be0274.json new file mode 100644 index 0000000000..2da48aa286 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrganization/__files/orgs_github-api-test-org_teams-7e66f997-9af6-4cab-826b-807692be0274.json @@ -0,0 +1,54 @@ +[ + { + "name": "Owners", + "id": 820404, + "node_id": "MDQ6VGVhbTgyMDQwNA==", + "slug": "owners", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/820404", + "html_url": "https://github.com/orgs/github-api-test-org/teams/owners", + "members_url": "https://api.github.com/teams/820404/members{/member}", + "repositories_url": "https://api.github.com/teams/820404/repos", + "permission": "admin" + }, + { + "name": "Core Developers", + "id": 820406, + "node_id": "MDQ6VGVhbTgyMDQwNg==", + "slug": "core-developers", + "description": "A random team", + "privacy": "secret", + "url": "https://api.github.com/teams/820406", + "html_url": "https://github.com/orgs/github-api-test-org/teams/core-developers", + "members_url": "https://api.github.com/teams/820406/members{/member}", + "repositories_url": "https://api.github.com/teams/820406/repos", + "permission": "pull" + }, + { + "name": "dummy-team", + "id": 3451996, + "node_id": "MDQ6VGVhbTM0NTE5OTY=", + "slug": "dummy-team", + "description": "Updated by API TestModified", + "privacy": "closed", + "url": "https://api.github.com/teams/3451996", + "html_url": "https://github.com/orgs/github-api-test-org/teams/dummy-team", + "members_url": "https://api.github.com/teams/3451996/members{/member}", + "repositories_url": "https://api.github.com/teams/3451996/repos", + "permission": "pull" + }, + { + "name": "tricky-team", + "id": 3454508, + "node_id": "MDQ6VGVhbTM0NTQ1MDg=", + "slug": "tricky-team", + "description": "", + "privacy": "secret", + "url": "https://api.github.com/teams/3454508", + "html_url": "https://github.com/orgs/github-api-test-org/teams/tricky-team", + "members_url": "https://api.github.com/teams/3454508/members{/member}", + "repositories_url": "https://api.github.com/teams/3454508/repos", + "permission": "pull" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrganization/__files/repos_github-api-test-org_jenkins-1d18fc38-3b70-493e-81d7-3061d559a046.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrganization/__files/repos_github-api-test-org_jenkins-1d18fc38-3b70-493e-81d7-3061d559a046.json new file mode 100644 index 0000000000..4f05dc457f --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrganization/__files/repos_github-api-test-org_jenkins-1d18fc38-3b70-493e-81d7-3061d559a046.json @@ -0,0 +1,330 @@ +{ + "id": 19650295, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTY1MDI5NQ==", + "name": "jenkins", + "full_name": "github-api-test-org/jenkins", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/jenkins", + "description": "Jenkins Continuous Integration Server", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/jenkins", + "forks_url": "https://api.github.com/repos/github-api-test-org/jenkins/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/jenkins/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/jenkins/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/jenkins/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/jenkins/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/jenkins/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/jenkins/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/jenkins/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/jenkins/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/jenkins/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/jenkins/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/jenkins/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/jenkins/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/jenkins/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/jenkins/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/jenkins/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/jenkins/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/jenkins/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/jenkins/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/jenkins/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/jenkins/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/jenkins/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/jenkins/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/jenkins/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/jenkins/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/jenkins/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/jenkins/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/jenkins/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/jenkins/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/jenkins/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/jenkins/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/jenkins/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/jenkins/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/jenkins/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/jenkins/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/jenkins/deployments", + "created_at": "2014-05-10T19:40:19Z", + "updated_at": "2019-09-06T23:21:35Z", + "pushed_at": "2019-09-06T23:21:43Z", + "git_url": "git://github.com/github-api-test-org/jenkins.git", + "ssh_url": "git@github.com:github-api-test-org/jenkins.git", + "clone_url": "https://github.com/github-api-test-org/jenkins.git", + "svn_url": "https://github.com/github-api-test-org/jenkins", + "homepage": "http://jenkins-ci.org/", + "size": 76586, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": false, + "has_wiki": false, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 3, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "parent": { + "id": 1103607, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTAzNjA3", + "name": "jenkins", + "full_name": "jenkinsci/jenkins", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jenkins", + "description": "Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jenkins", + "forks_url": "https://api.github.com/repos/jenkinsci/jenkins/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jenkins/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jenkins/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jenkins/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jenkins/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jenkins/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jenkins/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jenkins/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jenkins/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jenkins/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jenkins/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jenkins/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jenkins/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jenkins/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jenkins/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jenkins/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jenkins/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jenkins/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jenkins/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jenkins/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jenkins/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jenkins/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jenkins/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jenkins/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jenkins/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jenkins/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jenkins/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jenkins/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jenkins/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jenkins/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jenkins/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jenkins/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jenkins/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jenkins/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jenkins/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jenkins/deployments", + "created_at": "2010-11-22T21:21:23Z", + "updated_at": "2019-10-26T01:07:22Z", + "pushed_at": "2019-10-25T16:17:56Z", + "git_url": "git://github.com/jenkinsci/jenkins.git", + "ssh_url": "git@github.com:jenkinsci/jenkins.git", + "clone_url": "https://github.com/jenkinsci/jenkins.git", + "svn_url": "https://github.com/jenkinsci/jenkins", + "homepage": "https://jenkins.io/", + "size": 113287, + "stargazers_count": 14167, + "watchers_count": 14167, + "language": "Java", + "has_issues": false, + "has_projects": false, + "has_downloads": false, + "has_wiki": false, + "has_pages": false, + "forks_count": 5807, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 74, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 5807, + "open_issues": 74, + "watchers": 14167, + "default_branch": "master" + }, + "source": { + "id": 1103607, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTAzNjA3", + "name": "jenkins", + "full_name": "jenkinsci/jenkins", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jenkins", + "description": "Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jenkins", + "forks_url": "https://api.github.com/repos/jenkinsci/jenkins/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jenkins/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jenkins/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jenkins/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jenkins/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jenkins/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jenkins/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jenkins/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jenkins/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jenkins/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jenkins/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jenkins/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jenkins/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jenkins/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jenkins/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jenkins/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jenkins/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jenkins/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jenkins/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jenkins/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jenkins/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jenkins/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jenkins/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jenkins/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jenkins/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jenkins/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jenkins/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jenkins/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jenkins/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jenkins/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jenkins/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jenkins/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jenkins/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jenkins/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jenkins/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jenkins/deployments", + "created_at": "2010-11-22T21:21:23Z", + "updated_at": "2019-10-26T01:07:22Z", + "pushed_at": "2019-10-25T16:17:56Z", + "git_url": "git://github.com/jenkinsci/jenkins.git", + "ssh_url": "git@github.com:jenkinsci/jenkins.git", + "clone_url": "https://github.com/jenkinsci/jenkins.git", + "svn_url": "https://github.com/jenkinsci/jenkins", + "homepage": "https://jenkins.io/", + "size": 113287, + "stargazers_count": 14167, + "watchers_count": 14167, + "language": "Java", + "has_issues": false, + "has_projects": false, + "has_downloads": false, + "has_wiki": false, + "has_pages": false, + "forks_count": 5807, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 74, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 5807, + "open_issues": 74, + "watchers": 14167, + "default_branch": "master" + }, + "network_count": 5807, + "subscribers_count": 0 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrganization/__files/user-0a855cde-5f76-4227-889d-462ad0dbd34b.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrganization/__files/user-0a855cde-5f76-4227-889d-462ad0dbd34b.json new file mode 100644 index 0000000000..a4b576e8a7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrganization/__files/user-0a855cde-5f76-4227-889d-462ad0dbd34b.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 169, + "public_gists": 7, + "followers": 139, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrganization/mappings/orgs_github-api-test-org-2-bbf24d.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrganization/mappings/orgs_github-api-test-org-2-bbf24d.json new file mode 100644 index 0000000000..05ffe11a7e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrganization/mappings/orgs_github-api-test-org-2-bbf24d.json @@ -0,0 +1,43 @@ +{ + "id": "bbf24d32-ddda-44fe-acc3-003e9f629f32", + "name": "orgs_github-api-test-org", + "request": { + "url": "/orgs/github-api-test-org", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_github-api-test-org-bbf24d32-ddda-44fe-acc3-003e9f629f32.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:27:02 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4467", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"bbee0a14a82ca84871298052e1bcb545\"", + "Last-Modified": "Mon, 20 Apr 2015 00:42:30 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CA6D:1CC8:E95478:1127A0F:5DB3A0E5" + } + }, + "uuid": "bbf24d32-ddda-44fe-acc3-003e9f629f32", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrganization/mappings/orgs_github-api-test-org_teams-3-7e66f9.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrganization/mappings/orgs_github-api-test-org_teams-3-7e66f9.json new file mode 100644 index 0000000000..ced0e4d03b --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrganization/mappings/orgs_github-api-test-org_teams-3-7e66f9.json @@ -0,0 +1,42 @@ +{ + "id": "7e66f997-9af6-4cab-826b-807692be0274", + "name": "orgs_github-api-test-org_teams", + "request": { + "url": "/orgs/github-api-test-org/teams", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_github-api-test-org_teams-7e66f997-9af6-4cab-826b-807692be0274.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:27:02 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4466", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"70d5cec1d50dff5493d435d403a622d2\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CA6D:1CC8:E954AA:1127AC0:5DB3A0E6" + } + }, + "uuid": "7e66f997-9af6-4cab-826b-807692be0274", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrganization/mappings/repos_github-api-test-org_jenkins-4-1d18fc.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrganization/mappings/repos_github-api-test-org_jenkins-4-1d18fc.json new file mode 100644 index 0000000000..386ba5e1c3 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrganization/mappings/repos_github-api-test-org_jenkins-4-1d18fc.json @@ -0,0 +1,43 @@ +{ + "id": "1d18fc38-3b70-493e-81d7-3061d559a046", + "name": "repos_github-api-test-org_jenkins", + "request": { + "url": "/repos/github-api-test-org/jenkins", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_jenkins-1d18fc38-3b70-493e-81d7-3061d559a046.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:27:03 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4465", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"25c097d06bcfe5d2ac907141b83b63cd\"", + "Last-Modified": "Fri, 06 Sep 2019 23:21:35 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CA6D:1CC8:E954CD:1127AE6:5DB3A0E6" + } + }, + "uuid": "1d18fc38-3b70-493e-81d7-3061d559a046", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrganization/mappings/user-1-0a855c.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrganization/mappings/user-1-0a855c.json new file mode 100644 index 0000000000..8caefe252a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testOrganization/mappings/user-1-0a855c.json @@ -0,0 +1,43 @@ +{ + "id": "0a855cde-5f76-4227-889d-462ad0dbd34b", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-0a855cde-5f76-4227-889d-462ad0dbd34b.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:27:01 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4469", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"8c3d3dcf6fc5f9edaf26c902295396e5\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CA6D:1CC8:E953DF:11279DF:5DB3A0E5" + } + }, + "uuid": "0a855cde-5f76-4227-889d-462ad0dbd34b", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRateLimit/__files/rate_limit-195911b7-d3b7-4eb4-9d1e-f39465b89bb8.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRateLimit/__files/rate_limit-195911b7-d3b7-4eb4-9d1e-f39465b89bb8.json new file mode 100644 index 0000000000..b1dd0485e9 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRateLimit/__files/rate_limit-195911b7-d3b7-4eb4-9d1e-f39465b89bb8.json @@ -0,0 +1,29 @@ +{ + "resources": { + "core": { + "limit": 5000, + "remaining": 4944, + "reset": 1570055937 + }, + "search": { + "limit": 30, + "remaining": 30, + "reset": 1570052463 + }, + "graphql": { + "limit": 5000, + "remaining": 5000, + "reset": 1570056003 + }, + "integration_manifest": { + "limit": 5000, + "remaining": 5000, + "reset": 1570056003 + } + }, + "rate": { + "limit": 5000, + "remaining": 4944, + "reset": 1570055937 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRateLimit/__files/user-50a73d49-27a4-470e-bd8d-0665521673e3.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRateLimit/__files/user-50a73d49-27a4-470e-bd8d-0665521673e3.json new file mode 100644 index 0000000000..39d6c8353e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRateLimit/__files/user-50a73d49-27a4-470e-bd8d-0665521673e3.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 167, + "public_gists": 4, + "followers": 136, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRateLimit/mappings/rate_limit-1-195911.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRateLimit/mappings/rate_limit-1-195911.json new file mode 100644 index 0000000000..39f9bba908 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRateLimit/mappings/rate_limit-1-195911.json @@ -0,0 +1,38 @@ +{ + "id": "195911b7-d3b7-4eb4-9d1e-f39465b89bb8", + "name": "rate_limit", + "request": { + "url": "/rate_limit", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "rate_limit-195911b7-d3b7-4eb4-9d1e-f39465b89bb8.json", + "headers": { + "Date": "Wed, 02 Oct 2019 21:40:03 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4944", + "X-RateLimit-Reset": "1570055937", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "C2CD:3CA2:BB7551:E0A7D6:5D951933" + } + }, + "uuid": "195911b7-d3b7-4eb4-9d1e-f39465b89bb8", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRateLimit/mappings/user-2-50a73d.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRateLimit/mappings/user-2-50a73d.json new file mode 100644 index 0000000000..49bf2e355f --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRateLimit/mappings/user-2-50a73d.json @@ -0,0 +1,43 @@ +{ + "id": "50a73d49-27a4-470e-bd8d-0665521673e3", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-50a73d49-27a4-470e-bd8d-0665521673e3.json", + "headers": { + "Date": "Thu, 03 Oct 2019 18:57:40 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4781", + "X-RateLimit-Reset": "1570132527", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"cf6199fecf47b59c42190e1e11147ee2\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F3A2:3CA2:1359183:172D570:5D9644A4" + } + }, + "uuid": "50a73d49-27a4-470e-bd8d-0665521673e3", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRef/__files/repos_jenkinsci_jenkins-28457939-0c67-4c58-8f8e-8d44384f4506.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRef/__files/repos_jenkinsci_jenkins-28457939-0c67-4c58-8f8e-8d44384f4506.json new file mode 100644 index 0000000000..5f1a035df0 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRef/__files/repos_jenkinsci_jenkins-28457939-0c67-4c58-8f8e-8d44384f4506.json @@ -0,0 +1,127 @@ +{ + "id": 1103607, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTAzNjA3", + "name": "jenkins", + "full_name": "jenkinsci/jenkins", + "private": false, + "owner": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/jenkinsci/jenkins", + "description": "Jenkins automation server", + "fork": false, + "url": "https://api.github.com/repos/jenkinsci/jenkins", + "forks_url": "https://api.github.com/repos/jenkinsci/jenkins/forks", + "keys_url": "https://api.github.com/repos/jenkinsci/jenkins/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenkinsci/jenkins/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenkinsci/jenkins/teams", + "hooks_url": "https://api.github.com/repos/jenkinsci/jenkins/hooks", + "issue_events_url": "https://api.github.com/repos/jenkinsci/jenkins/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenkinsci/jenkins/events", + "assignees_url": "https://api.github.com/repos/jenkinsci/jenkins/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenkinsci/jenkins/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenkinsci/jenkins/tags", + "blobs_url": "https://api.github.com/repos/jenkinsci/jenkins/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenkinsci/jenkins/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenkinsci/jenkins/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenkinsci/jenkins/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenkinsci/jenkins/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenkinsci/jenkins/languages", + "stargazers_url": "https://api.github.com/repos/jenkinsci/jenkins/stargazers", + "contributors_url": "https://api.github.com/repos/jenkinsci/jenkins/contributors", + "subscribers_url": "https://api.github.com/repos/jenkinsci/jenkins/subscribers", + "subscription_url": "https://api.github.com/repos/jenkinsci/jenkins/subscription", + "commits_url": "https://api.github.com/repos/jenkinsci/jenkins/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenkinsci/jenkins/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenkinsci/jenkins/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenkinsci/jenkins/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenkinsci/jenkins/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenkinsci/jenkins/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenkinsci/jenkins/merges", + "archive_url": "https://api.github.com/repos/jenkinsci/jenkins/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenkinsci/jenkins/downloads", + "issues_url": "https://api.github.com/repos/jenkinsci/jenkins/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenkinsci/jenkins/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenkinsci/jenkins/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenkinsci/jenkins/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenkinsci/jenkins/labels{/name}", + "releases_url": "https://api.github.com/repos/jenkinsci/jenkins/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenkinsci/jenkins/deployments", + "created_at": "2010-11-22T21:21:23Z", + "updated_at": "2019-10-26T01:07:22Z", + "pushed_at": "2019-10-25T16:17:56Z", + "git_url": "git://github.com/jenkinsci/jenkins.git", + "ssh_url": "git@github.com:jenkinsci/jenkins.git", + "clone_url": "https://github.com/jenkinsci/jenkins.git", + "svn_url": "https://github.com/jenkinsci/jenkins", + "homepage": "https://jenkins.io/", + "size": 113287, + "stargazers_count": 14167, + "watchers_count": 14167, + "language": "Java", + "has_issues": false, + "has_projects": false, + "has_downloads": false, + "has_wiki": false, + "has_pages": false, + "forks_count": 5807, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 74, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 5807, + "open_issues": 74, + "watchers": 14167, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + }, + "organization": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "network_count": 5807, + "subscribers_count": 902 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRef/__files/repos_jenkinsci_jenkins_git_refs_heads_master-257aa346-b2fa-4808-a587-ce26a6859bf7.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRef/__files/repos_jenkinsci_jenkins_git_refs_heads_master-257aa346-b2fa-4808-a587-ce26a6859bf7.json new file mode 100644 index 0000000000..494b3af0ac --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRef/__files/repos_jenkinsci_jenkins_git_refs_heads_master-257aa346-b2fa-4808-a587-ce26a6859bf7.json @@ -0,0 +1,10 @@ +{ + "ref": "refs/heads/master", + "node_id": "MDM6UmVmMTEwMzYwNzptYXN0ZXI=", + "url": "https://api.github.com/repos/jenkinsci/jenkins/git/refs/heads/master", + "object": { + "sha": "9225492a0ab390967cc988b825ecc642c2886c42", + "type": "commit", + "url": "https://api.github.com/repos/jenkinsci/jenkins/git/commits/9225492a0ab390967cc988b825ecc642c2886c42" + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRef/__files/user-045baee3-176e-43e0-ab38-bdf00d276fe0.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRef/__files/user-045baee3-176e-43e0-ab38-bdf00d276fe0.json new file mode 100644 index 0000000000..a4b576e8a7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRef/__files/user-045baee3-176e-43e0-ab38-bdf00d276fe0.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 169, + "public_gists": 7, + "followers": 139, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRef/mappings/repos_jenkinsci_jenkins-2-284579.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRef/mappings/repos_jenkinsci_jenkins-2-284579.json new file mode 100644 index 0000000000..3a4118812b --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRef/mappings/repos_jenkinsci_jenkins-2-284579.json @@ -0,0 +1,43 @@ +{ + "id": "28457939-0c67-4c58-8f8e-8d44384f4506", + "name": "repos_jenkinsci_jenkins", + "request": { + "url": "/repos/jenkinsci/jenkins", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_jenkinsci_jenkins-28457939-0c67-4c58-8f8e-8d44384f4506.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:27:33 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4428", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"bc93de689b79708d9501fd02bc1f7696\"", + "Last-Modified": "Sat, 26 Oct 2019 01:07:22 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CA96:5F2B:EE3574:118787D:5DB3A105" + } + }, + "uuid": "28457939-0c67-4c58-8f8e-8d44384f4506", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRef/mappings/repos_jenkinsci_jenkins_git_refs_heads_master-3-257aa3.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRef/mappings/repos_jenkinsci_jenkins_git_refs_heads_master-3-257aa3.json new file mode 100644 index 0000000000..560f495ea4 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRef/mappings/repos_jenkinsci_jenkins_git_refs_heads_master-3-257aa3.json @@ -0,0 +1,44 @@ +{ + "id": "257aa346-b2fa-4808-a587-ce26a6859bf7", + "name": "repos_jenkinsci_jenkins_git_refs_heads_master", + "request": { + "url": "/repos/jenkinsci/jenkins/git/refs/heads/master", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_jenkinsci_jenkins_git_refs_heads_master-257aa346-b2fa-4808-a587-ce26a6859bf7.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:27:33 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4427", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"26417e404a981294e36569799ddf3df5\"", + "Last-Modified": "Sat, 26 Oct 2019 01:07:22 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CA96:5F2B:EE3584:118789E:5DB3A105" + } + }, + "uuid": "257aa346-b2fa-4808-a587-ce26a6859bf7", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRef/mappings/user-1-045bae.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRef/mappings/user-1-045bae.json new file mode 100644 index 0000000000..ce4e8a7a2b --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRef/mappings/user-1-045bae.json @@ -0,0 +1,43 @@ +{ + "id": "045baee3-176e-43e0-ab38-bdf00d276fe0", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-045baee3-176e-43e0-ab38-bdf00d276fe0.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:27:33 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4430", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"8c3d3dcf6fc5f9edaf26c902295396e5\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CA96:5F2B:EE3556:1187866:5DB3A105" + } + }, + "uuid": "045baee3-176e-43e0-ab38-bdf00d276fe0", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoCRUD/__files/repos_bitwiseman_github-api-test-rename-39714670-728d-4f72-bf18-7b2e6f0ac276.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoCRUD/__files/repos_bitwiseman_github-api-test-rename-39714670-728d-4f72-bf18-7b2e6f0ac276.json new file mode 100644 index 0000000000..8a2517b27d --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoCRUD/__files/repos_bitwiseman_github-api-test-rename-39714670-728d-4f72-bf18-7b2e6f0ac276.json @@ -0,0 +1,104 @@ +{ + "id": 212446528, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTI0NDY1Mjg=", + "name": "github-api-test-rename", + "full_name": "bitwiseman/github-api-test-rename", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/github-api-test-rename", + "description": "a test repository", + "fork": false, + "url": "https://api.github.com/repos/bitwiseman/github-api-test-rename", + "forks_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/deployments", + "created_at": "2019-10-02T21:40:00Z", + "updated_at": "2019-10-02T21:40:01Z", + "pushed_at": "2019-10-02T21:40:01Z", + "git_url": "git://github.com/bitwiseman/github-api-test-rename.git", + "ssh_url": "git@github.com:bitwiseman/github-api-test-rename.git", + "clone_url": "https://github.com/bitwiseman/github-api-test-rename.git", + "svn_url": "https://github.com/bitwiseman/github-api-test-rename", + "homepage": "http://github-api.kohsuke.org/", + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": false, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "network_count": 0, + "subscribers_count": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoCRUD/__files/repos_bitwiseman_github-api-test-rename-6cc04a40-acd6-409b-b004-671cbc0c03c8.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoCRUD/__files/repos_bitwiseman_github-api-test-rename-6cc04a40-acd6-409b-b004-671cbc0c03c8.json new file mode 100644 index 0000000000..3917a978b2 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoCRUD/__files/repos_bitwiseman_github-api-test-rename-6cc04a40-acd6-409b-b004-671cbc0c03c8.json @@ -0,0 +1,104 @@ +{ + "id": 212446528, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTI0NDY1Mjg=", + "name": "github-api-test-rename2", + "full_name": "bitwiseman/github-api-test-rename2", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/github-api-test-rename2", + "description": "a test repository", + "fork": false, + "url": "https://api.github.com/repos/bitwiseman/github-api-test-rename2", + "forks_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename2/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename2/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename2/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename2/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename2/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename2/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename2/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename2/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename2/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename2/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename2/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename2/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename2/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename2/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename2/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename2/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename2/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename2/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename2/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename2/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename2/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename2/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename2/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename2/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename2/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename2/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename2/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename2/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename2/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename2/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename2/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename2/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename2/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename2/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename2/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename2/deployments", + "created_at": "2019-10-02T21:40:00Z", + "updated_at": "2019-10-02T21:40:02Z", + "pushed_at": "2019-10-02T21:40:01Z", + "git_url": "git://github.com/bitwiseman/github-api-test-rename2.git", + "ssh_url": "git@github.com:bitwiseman/github-api-test-rename2.git", + "clone_url": "https://github.com/bitwiseman/github-api-test-rename2.git", + "svn_url": "https://github.com/bitwiseman/github-api-test-rename2", + "homepage": "http://github-api.kohsuke.org/", + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": false, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "network_count": 0, + "subscribers_count": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoCRUD/__files/repos_bitwiseman_github-api-test-rename-b0c1117a-926e-4ccd-baf3-c7813a465a7a.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoCRUD/__files/repos_bitwiseman_github-api-test-rename-b0c1117a-926e-4ccd-baf3-c7813a465a7a.json new file mode 100644 index 0000000000..a84ef21841 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoCRUD/__files/repos_bitwiseman_github-api-test-rename-b0c1117a-926e-4ccd-baf3-c7813a465a7a.json @@ -0,0 +1,104 @@ +{ + "id": 212446528, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTI0NDY1Mjg=", + "name": "github-api-test-rename", + "full_name": "bitwiseman/github-api-test-rename", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/github-api-test-rename", + "description": "a test repository", + "fork": false, + "url": "https://api.github.com/repos/bitwiseman/github-api-test-rename", + "forks_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/deployments", + "created_at": "2019-10-02T21:40:00Z", + "updated_at": "2019-10-02T21:40:02Z", + "pushed_at": "2019-10-02T21:40:01Z", + "git_url": "git://github.com/bitwiseman/github-api-test-rename.git", + "ssh_url": "git@github.com:bitwiseman/github-api-test-rename.git", + "clone_url": "https://github.com/bitwiseman/github-api-test-rename.git", + "svn_url": "https://github.com/bitwiseman/github-api-test-rename", + "homepage": "http://github-api.kohsuke.org/", + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": false, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "network_count": 0, + "subscribers_count": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoCRUD/__files/repos_bitwiseman_github-api-test-rename-b1b91949-0448-415c-998e-a38135c37661.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoCRUD/__files/repos_bitwiseman_github-api-test-rename-b1b91949-0448-415c-998e-a38135c37661.json new file mode 100644 index 0000000000..93129e32a6 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoCRUD/__files/repos_bitwiseman_github-api-test-rename-b1b91949-0448-415c-998e-a38135c37661.json @@ -0,0 +1,104 @@ +{ + "id": 212446528, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTI0NDY1Mjg=", + "name": "github-api-test-rename", + "full_name": "bitwiseman/github-api-test-rename", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/github-api-test-rename", + "description": "a test repository", + "fork": false, + "url": "https://api.github.com/repos/bitwiseman/github-api-test-rename", + "forks_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename/deployments", + "created_at": "2019-10-02T21:40:00Z", + "updated_at": "2019-10-02T21:40:01Z", + "pushed_at": "2019-10-02T21:40:01Z", + "git_url": "git://github.com/bitwiseman/github-api-test-rename.git", + "ssh_url": "git@github.com:bitwiseman/github-api-test-rename.git", + "clone_url": "https://github.com/bitwiseman/github-api-test-rename.git", + "svn_url": "https://github.com/bitwiseman/github-api-test-rename", + "homepage": "http://github-api.kohsuke.org/", + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "network_count": 0, + "subscribers_count": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoCRUD/__files/repos_bitwiseman_github-api-test-rename2-c1bd7f2a-cab0-4208-b4c8-f2a24bca9169.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoCRUD/__files/repos_bitwiseman_github-api-test-rename2-c1bd7f2a-cab0-4208-b4c8-f2a24bca9169.json new file mode 100644 index 0000000000..3917a978b2 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoCRUD/__files/repos_bitwiseman_github-api-test-rename2-c1bd7f2a-cab0-4208-b4c8-f2a24bca9169.json @@ -0,0 +1,104 @@ +{ + "id": 212446528, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTI0NDY1Mjg=", + "name": "github-api-test-rename2", + "full_name": "bitwiseman/github-api-test-rename2", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/github-api-test-rename2", + "description": "a test repository", + "fork": false, + "url": "https://api.github.com/repos/bitwiseman/github-api-test-rename2", + "forks_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename2/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename2/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename2/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename2/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename2/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename2/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename2/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename2/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename2/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename2/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename2/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename2/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename2/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename2/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename2/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename2/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename2/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename2/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename2/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename2/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename2/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename2/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename2/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename2/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename2/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename2/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename2/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename2/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename2/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename2/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename2/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename2/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename2/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename2/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename2/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/github-api-test-rename2/deployments", + "created_at": "2019-10-02T21:40:00Z", + "updated_at": "2019-10-02T21:40:02Z", + "pushed_at": "2019-10-02T21:40:01Z", + "git_url": "git://github.com/bitwiseman/github-api-test-rename2.git", + "ssh_url": "git@github.com:bitwiseman/github-api-test-rename2.git", + "clone_url": "https://github.com/bitwiseman/github-api-test-rename2.git", + "svn_url": "https://github.com/bitwiseman/github-api-test-rename2", + "homepage": "http://github-api.kohsuke.org/", + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": false, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "network_count": 0, + "subscribers_count": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoCRUD/__files/user-3068cd06-63e4-4658-a037-d113f99314af.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoCRUD/__files/user-3068cd06-63e4-4658-a037-d113f99314af.json new file mode 100644 index 0000000000..41fc9e3d00 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoCRUD/__files/user-3068cd06-63e4-4658-a037-d113f99314af.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 168, + "public_gists": 4, + "followers": 136, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoCRUD/__files/user_repos-ead41396-5e65-4478-8e81-03bb7cd5d2d1.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoCRUD/__files/user_repos-ead41396-5e65-4478-8e81-03bb7cd5d2d1.json new file mode 100644 index 0000000000..3de34f9fc2 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoCRUD/__files/user_repos-ead41396-5e65-4478-8e81-03bb7cd5d2d1.json @@ -0,0 +1,104 @@ +{ + "id": 212446528, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTI0NDY1Mjg=", + "name": "github-api-test-rename", + "full_name": "bitwiseman/github-api-test-rename", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "http://localhost:49858/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "http://localhost:49858/users/bitwiseman/followers", + "following_url": "http://localhost:49858/users/bitwiseman/following{/other_user}", + "gists_url": "http://localhost:49858/users/bitwiseman/gists{/gist_id}", + "starred_url": "http://localhost:49858/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "http://localhost:49858/users/bitwiseman/subscriptions", + "organizations_url": "http://localhost:49858/users/bitwiseman/orgs", + "repos_url": "http://localhost:49858/users/bitwiseman/repos", + "events_url": "http://localhost:49858/users/bitwiseman/events{/privacy}", + "received_events_url": "http://localhost:49858/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/github-api-test-rename", + "description": "a test repository", + "fork": false, + "url": "http://localhost:49858/repos/bitwiseman/github-api-test-rename", + "forks_url": "http://localhost:49858/repos/bitwiseman/github-api-test-rename/forks", + "keys_url": "http://localhost:49858/repos/bitwiseman/github-api-test-rename/keys{/key_id}", + "collaborators_url": "http://localhost:49858/repos/bitwiseman/github-api-test-rename/collaborators{/collaborator}", + "teams_url": "http://localhost:49858/repos/bitwiseman/github-api-test-rename/teams", + "hooks_url": "http://localhost:49858/repos/bitwiseman/github-api-test-rename/hooks", + "issue_events_url": "http://localhost:49858/repos/bitwiseman/github-api-test-rename/issues/events{/number}", + "events_url": "http://localhost:49858/repos/bitwiseman/github-api-test-rename/events", + "assignees_url": "http://localhost:49858/repos/bitwiseman/github-api-test-rename/assignees{/user}", + "branches_url": "http://localhost:49858/repos/bitwiseman/github-api-test-rename/branches{/branch}", + "tags_url": "http://localhost:49858/repos/bitwiseman/github-api-test-rename/tags", + "blobs_url": "http://localhost:49858/repos/bitwiseman/github-api-test-rename/git/blobs{/sha}", + "git_tags_url": "http://localhost:49858/repos/bitwiseman/github-api-test-rename/git/tags{/sha}", + "git_refs_url": "http://localhost:49858/repos/bitwiseman/github-api-test-rename/git/refs{/sha}", + "trees_url": "http://localhost:49858/repos/bitwiseman/github-api-test-rename/git/trees{/sha}", + "statuses_url": "http://localhost:49858/repos/bitwiseman/github-api-test-rename/statuses/{sha}", + "languages_url": "http://localhost:49858/repos/bitwiseman/github-api-test-rename/languages", + "stargazers_url": "http://localhost:49858/repos/bitwiseman/github-api-test-rename/stargazers", + "contributors_url": "http://localhost:49858/repos/bitwiseman/github-api-test-rename/contributors", + "subscribers_url": "http://localhost:49858/repos/bitwiseman/github-api-test-rename/subscribers", + "subscription_url": "http://localhost:49858/repos/bitwiseman/github-api-test-rename/subscription", + "commits_url": "http://localhost:49858/repos/bitwiseman/github-api-test-rename/commits{/sha}", + "git_commits_url": "http://localhost:49858/repos/bitwiseman/github-api-test-rename/git/commits{/sha}", + "comments_url": "http://localhost:49858/repos/bitwiseman/github-api-test-rename/comments{/number}", + "issue_comment_url": "http://localhost:49858/repos/bitwiseman/github-api-test-rename/issues/comments{/number}", + "contents_url": "http://localhost:49858/repos/bitwiseman/github-api-test-rename/contents/{+path}", + "compare_url": "http://localhost:49858/repos/bitwiseman/github-api-test-rename/compare/{base}...{head}", + "merges_url": "http://localhost:49858/repos/bitwiseman/github-api-test-rename/merges", + "archive_url": "http://localhost:49858/repos/bitwiseman/github-api-test-rename/{archive_format}{/ref}", + "downloads_url": "http://localhost:49858/repos/bitwiseman/github-api-test-rename/downloads", + "issues_url": "http://localhost:49858/repos/bitwiseman/github-api-test-rename/issues{/number}", + "pulls_url": "http://localhost:49858/repos/bitwiseman/github-api-test-rename/pulls{/number}", + "milestones_url": "http://localhost:49858/repos/bitwiseman/github-api-test-rename/milestones{/number}", + "notifications_url": "http://localhost:49858/repos/bitwiseman/github-api-test-rename/notifications{?since,all,participating}", + "labels_url": "http://localhost:49858/repos/bitwiseman/github-api-test-rename/labels{/name}", + "releases_url": "http://localhost:49858/repos/bitwiseman/github-api-test-rename/releases{/id}", + "deployments_url": "http://localhost:49858/repos/bitwiseman/github-api-test-rename/deployments", + "created_at": "2019-10-02T21:40:00Z", + "updated_at": "2019-10-02T21:40:00Z", + "pushed_at": "2019-10-02T21:40:01Z", + "git_url": "git://github.com/bitwiseman/github-api-test-rename.git", + "ssh_url": "git@github.com:bitwiseman/github-api-test-rename.git", + "clone_url": "https://github.com/bitwiseman/github-api-test-rename.git", + "svn_url": "https://github.com/bitwiseman/github-api-test-rename", + "homepage": "http://github-api.kohsuke.org/", + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "network_count": 0, + "subscribers_count": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoCRUD/mappings/repos_bitwiseman_github-api-test-rename-2-b1b919.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoCRUD/mappings/repos_bitwiseman_github-api-test-rename-2-b1b919.json new file mode 100644 index 0000000000..25e1ac7ab6 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoCRUD/mappings/repos_bitwiseman_github-api-test-rename-2-b1b919.json @@ -0,0 +1,49 @@ +{ + "id": "b1b91949-0448-415c-998e-a38135c37661", + "name": "repos_bitwiseman_github-api-test-rename", + "request": { + "url": "/repos/bitwiseman/github-api-test-rename", + "method": "PATCH", + "bodyPatterns": [ + { + "equalToJson": "{\"name\":\"github-api-test-rename\",\"has_issues\":\"false\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 200, + "bodyFileName": "repos_bitwiseman_github-api-test-rename-b1b91949-0448-415c-998e-a38135c37661.json", + "headers": { + "Date": "Wed, 02 Oct 2019 21:40:01 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4950", + "X-RateLimit-Reset": "1570055937", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"badb2306375eb151e38f234f6152bba6\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C2C4:9578:8B9B44:A6E7A3:5D951931" + } + }, + "uuid": "b1b91949-0448-415c-998e-a38135c37661", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoCRUD/mappings/repos_bitwiseman_github-api-test-rename-3-397146.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoCRUD/mappings/repos_bitwiseman_github-api-test-rename-3-397146.json new file mode 100644 index 0000000000..6c09bad504 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoCRUD/mappings/repos_bitwiseman_github-api-test-rename-3-397146.json @@ -0,0 +1,49 @@ +{ + "id": "39714670-728d-4f72-bf18-7b2e6f0ac276", + "name": "repos_bitwiseman_github-api-test-rename", + "request": { + "url": "/repos/bitwiseman/github-api-test-rename", + "method": "PATCH", + "bodyPatterns": [ + { + "equalToJson": "{\"has_downloads\":\"false\",\"name\":\"github-api-test-rename\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 200, + "bodyFileName": "repos_bitwiseman_github-api-test-rename-39714670-728d-4f72-bf18-7b2e6f0ac276.json", + "headers": { + "Date": "Wed, 02 Oct 2019 21:40:02 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4949", + "X-RateLimit-Reset": "1570055937", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"60275f98305efd018fd06e2aee142eb1\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C2C4:9578:8B9B62:A6E7CB:5D951931" + } + }, + "uuid": "39714670-728d-4f72-bf18-7b2e6f0ac276", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoCRUD/mappings/repos_bitwiseman_github-api-test-rename-4-b0c111.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoCRUD/mappings/repos_bitwiseman_github-api-test-rename-4-b0c111.json new file mode 100644 index 0000000000..8c58f4b75f --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoCRUD/mappings/repos_bitwiseman_github-api-test-rename-4-b0c111.json @@ -0,0 +1,49 @@ +{ + "id": "b0c1117a-926e-4ccd-baf3-c7813a465a7a", + "name": "repos_bitwiseman_github-api-test-rename", + "request": { + "url": "/repos/bitwiseman/github-api-test-rename", + "method": "PATCH", + "bodyPatterns": [ + { + "equalToJson": "{\"has_wiki\":\"false\",\"name\":\"github-api-test-rename\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 200, + "bodyFileName": "repos_bitwiseman_github-api-test-rename-b0c1117a-926e-4ccd-baf3-c7813a465a7a.json", + "headers": { + "Date": "Wed, 02 Oct 2019 21:40:02 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4948", + "X-RateLimit-Reset": "1570055937", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"fbb73893fa29f9d65c35b8cbb3d078ae\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C2C4:9578:8B9BAC:A6E80C:5D951932" + } + }, + "uuid": "b0c1117a-926e-4ccd-baf3-c7813a465a7a", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoCRUD/mappings/repos_bitwiseman_github-api-test-rename-5-6cc04a.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoCRUD/mappings/repos_bitwiseman_github-api-test-rename-5-6cc04a.json new file mode 100644 index 0000000000..3a91e56b48 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoCRUD/mappings/repos_bitwiseman_github-api-test-rename-5-6cc04a.json @@ -0,0 +1,49 @@ +{ + "id": "6cc04a40-acd6-409b-b004-671cbc0c03c8", + "name": "repos_bitwiseman_github-api-test-rename", + "request": { + "url": "/repos/bitwiseman/github-api-test-rename", + "method": "PATCH", + "bodyPatterns": [ + { + "equalToJson": "{\"name\":\"github-api-test-rename2\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 200, + "bodyFileName": "repos_bitwiseman_github-api-test-rename-6cc04a40-acd6-409b-b004-671cbc0c03c8.json", + "headers": { + "Date": "Wed, 02 Oct 2019 21:40:02 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4947", + "X-RateLimit-Reset": "1570055937", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"8172779f53124f2aff27b1e865d7cf40\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C2C4:9578:8B9BCC:A6E844:5D951932" + } + }, + "uuid": "6cc04a40-acd6-409b-b004-671cbc0c03c8", + "persistent": true, + "insertionIndex": 5 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoCRUD/mappings/repos_bitwiseman_github-api-test-rename2-7-c1bd7f.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoCRUD/mappings/repos_bitwiseman_github-api-test-rename2-7-c1bd7f.json new file mode 100644 index 0000000000..438ef24766 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoCRUD/mappings/repos_bitwiseman_github-api-test-rename2-7-c1bd7f.json @@ -0,0 +1,43 @@ +{ + "id": "c1bd7f2a-cab0-4208-b4c8-f2a24bca9169", + "name": "repos_bitwiseman_github-api-test-rename2", + "request": { + "url": "/repos/bitwiseman/github-api-test-rename2", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_bitwiseman_github-api-test-rename2-c1bd7f2a-cab0-4208-b4c8-f2a24bca9169.json", + "headers": { + "Date": "Wed, 02 Oct 2019 21:40:03 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4945", + "X-RateLimit-Reset": "1570055937", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"8172779f53124f2aff27b1e865d7cf40\"", + "Last-Modified": "Wed, 02 Oct 2019 21:40:02 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C2C4:9578:8B9C0C:A6E88E:5D951932" + } + }, + "uuid": "c1bd7f2a-cab0-4208-b4c8-f2a24bca9169", + "persistent": true, + "insertionIndex": 7 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoCRUD/mappings/repos_bitwiseman_github-api-test-rename2-8-17b2c9.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoCRUD/mappings/repos_bitwiseman_github-api-test-rename2-8-17b2c9.json new file mode 100644 index 0000000000..5f568fe734 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoCRUD/mappings/repos_bitwiseman_github-api-test-rename2-8-17b2c9.json @@ -0,0 +1,35 @@ +{ + "id": "17b2c9d9-85eb-41f5-87d8-428bb5d5afb9", + "name": "repos_bitwiseman_github-api-test-rename2", + "request": { + "url": "/repos/bitwiseman/github-api-test-rename2", + "method": "DELETE" + }, + "response": { + "status": 204, + "headers": { + "Date": "Wed, 02 Oct 2019 21:40:03 GMT", + "Server": "GitHub.com", + "Status": "204 No Content", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4944", + "X-RateLimit-Reset": "1570055937", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "delete_repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "C2C4:9578:8B9C28:A6E8AB:5D951933" + } + }, + "uuid": "17b2c9d9-85eb-41f5-87d8-428bb5d5afb9", + "persistent": true, + "insertionIndex": 8 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoCRUD/mappings/user-6-3068cd.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoCRUD/mappings/user-6-3068cd.json new file mode 100644 index 0000000000..2aaa569d8e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoCRUD/mappings/user-6-3068cd.json @@ -0,0 +1,43 @@ +{ + "id": "3068cd06-63e4-4658-a037-d113f99314af", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-3068cd06-63e4-4658-a037-d113f99314af.json", + "headers": { + "Date": "Wed, 02 Oct 2019 21:40:02 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4946", + "X-RateLimit-Reset": "1570055937", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"af0c41afcacb8ceee14b7d896719c3bd\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C2C4:9578:8B9BEC:A6E86D:5D951932" + } + }, + "uuid": "3068cd06-63e4-4658-a037-d113f99314af", + "persistent": true, + "insertionIndex": 6 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoCRUD/mappings/user_repos-1-ead413.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoCRUD/mappings/user_repos-1-ead413.json new file mode 100644 index 0000000000..3694fbd694 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoCRUD/mappings/user_repos-1-ead413.json @@ -0,0 +1,50 @@ +{ + "id": "ead41396-5e65-4478-8e81-03bb7cd5d2d1", + "name": "user_repos", + "request": { + "url": "/user/repos", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"private\":false,\"name\":\"github-api-test-rename\",\"description\":\"a test repository\",\"homepage\":\"http://github-api.kohsuke.org/\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "user_repos-ead41396-5e65-4478-8e81-03bb7cd5d2d1.json", + "headers": { + "Date": "Wed, 02 Oct 2019 21:40:01 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4951", + "X-RateLimit-Reset": "1570055937", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"7932a8014acba04e742952d678d02a63\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "Location": "https://api.github.com/repos/bitwiseman/github-api-test-rename", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C2C4:9578:8B9AD6:A6E725:5D951930" + } + }, + "uuid": "ead41396-5e65-4478-8e81-03bb7cd5d2d1", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoLabel/__files/repos_github-api-test-org_test-labels-fbcd5a5d-47a7-4817-bd69-cfe1afa2cdbd.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoLabel/__files/repos_github-api-test-org_test-labels-fbcd5a5d-47a7-4817-bd69-cfe1afa2cdbd.json new file mode 100644 index 0000000000..9cd54d11ef --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoLabel/__files/repos_github-api-test-org_test-labels-fbcd5a5d-47a7-4817-bd69-cfe1afa2cdbd.json @@ -0,0 +1,124 @@ +{ + "id": 30830186, + "node_id": "MDEwOlJlcG9zaXRvcnkzMDgzMDE4Ng==", + "name": "test-labels", + "full_name": "github-api-test-org/test-labels", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/test-labels", + "description": "Tests labels on issues", + "fork": false, + "url": "https://api.github.com/repos/github-api-test-org/test-labels", + "forks_url": "https://api.github.com/repos/github-api-test-org/test-labels/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/test-labels/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/test-labels/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/test-labels/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/test-labels/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/test-labels/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/test-labels/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/test-labels/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/test-labels/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/test-labels/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/test-labels/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/test-labels/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/test-labels/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/test-labels/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/test-labels/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/test-labels/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/test-labels/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/test-labels/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/test-labels/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/test-labels/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/test-labels/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/test-labels/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/test-labels/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/test-labels/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/test-labels/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/test-labels/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/test-labels/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/test-labels/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/test-labels/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/test-labels/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/test-labels/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/test-labels/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/test-labels/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/test-labels/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/test-labels/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/test-labels/deployments", + "created_at": "2015-02-15T14:49:09Z", + "updated_at": "2015-02-15T14:49:09Z", + "pushed_at": "2015-02-15T14:49:10Z", + "git_url": "git://github.com/github-api-test-org/test-labels.git", + "ssh_url": "git@github.com:github-api-test-org/test-labels.git", + "clone_url": "https://github.com/github-api-test-org/test-labels.git", + "svn_url": "https://github.com/github-api-test-org/test-labels", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "network_count": 0, + "subscribers_count": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoLabel/__files/repos_github-api-test-org_test-labels_labels-82e6433c-0947-48bc-a15a-398eefcc3280.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoLabel/__files/repos_github-api-test-org_test-labels_labels-82e6433c-0947-48bc-a15a-398eefcc3280.json new file mode 100644 index 0000000000..6181355c0a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoLabel/__files/repos_github-api-test-org_test-labels_labels-82e6433c-0947-48bc-a15a-398eefcc3280.json @@ -0,0 +1,65 @@ +[ + { + "id": 177339104, + "node_id": "MDU6TGFiZWwxNzczMzkxMDQ=", + "url": "https://api.github.com/repos/github-api-test-org/test-labels/labels/bug", + "name": "bug", + "color": "fc2929", + "default": true, + "description": null + }, + { + "id": 177339105, + "node_id": "MDU6TGFiZWwxNzczMzkxMDU=", + "url": "https://api.github.com/repos/github-api-test-org/test-labels/labels/duplicate", + "name": "duplicate", + "color": "cccccc", + "default": true, + "description": null + }, + { + "id": 177339106, + "node_id": "MDU6TGFiZWwxNzczMzkxMDY=", + "url": "https://api.github.com/repos/github-api-test-org/test-labels/labels/enhancement", + "name": "enhancement", + "color": "84b6eb", + "default": true, + "description": null + }, + { + "id": 177339107, + "node_id": "MDU6TGFiZWwxNzczMzkxMDc=", + "url": "https://api.github.com/repos/github-api-test-org/test-labels/labels/help%20wanted", + "name": "help wanted", + "color": "159818", + "default": true, + "description": null + }, + { + "id": 177339108, + "node_id": "MDU6TGFiZWwxNzczMzkxMDg=", + "url": "https://api.github.com/repos/github-api-test-org/test-labels/labels/invalid", + "name": "invalid", + "color": "e6e6e6", + "default": true, + "description": null + }, + { + "id": 177339109, + "node_id": "MDU6TGFiZWwxNzczMzkxMDk=", + "url": "https://api.github.com/repos/github-api-test-org/test-labels/labels/question", + "name": "question", + "color": "cc317c", + "default": true, + "description": null + }, + { + "id": 177339110, + "node_id": "MDU6TGFiZWwxNzczMzkxMTA=", + "url": "https://api.github.com/repos/github-api-test-org/test-labels/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "default": true, + "description": null + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoLabel/__files/user-05a1d265-edf9-4570-b398-a3eb7d3396e1.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoLabel/__files/user-05a1d265-edf9-4570-b398-a3eb7d3396e1.json new file mode 100644 index 0000000000..41fc9e3d00 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoLabel/__files/user-05a1d265-edf9-4570-b398-a3eb7d3396e1.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 168, + "public_gists": 4, + "followers": 136, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoLabel/mappings/repos_github-api-test-org_test-labels-2-fbcd5a.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoLabel/mappings/repos_github-api-test-org_test-labels-2-fbcd5a.json new file mode 100644 index 0000000000..a793fdc3b8 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoLabel/mappings/repos_github-api-test-org_test-labels-2-fbcd5a.json @@ -0,0 +1,43 @@ +{ + "id": "fbcd5a5d-47a7-4817-bd69-cfe1afa2cdbd", + "name": "repos_github-api-test-org_test-labels", + "request": { + "url": "/repos/github-api-test-org/test-labels", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_test-labels-fbcd5a5d-47a7-4817-bd69-cfe1afa2cdbd.json", + "headers": { + "Date": "Sat, 05 Oct 2019 05:21:22 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4838", + "X-RateLimit-Reset": "1570253246", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"de5493a4e3cf3def2774a62ae9c04ee2\"", + "Last-Modified": "Sun, 15 Feb 2015 14:49:09 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FC58:3C9A:4B940C:5AAD9C:5D982851" + } + }, + "uuid": "fbcd5a5d-47a7-4817-bd69-cfe1afa2cdbd", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoLabel/mappings/repos_github-api-test-org_test-labels_labels-12-b2265f.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoLabel/mappings/repos_github-api-test-org_test-labels_labels-12-b2265f.json new file mode 100644 index 0000000000..bbbb9baa0a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoLabel/mappings/repos_github-api-test-org_test-labels_labels-12-b2265f.json @@ -0,0 +1,50 @@ +{ + "id": "b2265f8b-180e-4664-b476-c9f195f07b5d", + "name": "repos_github-api-test-org_test-labels_labels", + "request": { + "url": "/repos/github-api-test-org/test-labels/labels", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"color\":\"123457\",\"name\":\"test2\",\"description\":\"this is a different test\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 201, + "body": "{\"id\":1596524813,\"node_id\":\"MDU6TGFiZWwxNTk2NTI0ODEz\",\"url\":\"https://api.github.com/repos/github-api-test-org/test-labels/labels/test2\",\"name\":\"test2\",\"color\":\"123457\",\"default\":false,\"description\":\"this is a different test\"}", + "headers": { + "Date": "Sat, 05 Oct 2019 05:21:24 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4828", + "X-RateLimit-Reset": "1570253246", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"cb7056d812cb1ca0296b75f5e48b462d\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/github-api-test-org/test-labels/labels/test2", + "X-GitHub-Media-Type": "github.symmetra-preview; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FC58:3C9A:4B942E:5AADD4:5D982854" + } + }, + "uuid": "b2265f8b-180e-4664-b476-c9f195f07b5d", + "persistent": true, + "insertionIndex": 12 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoLabel/mappings/repos_github-api-test-org_test-labels_labels-3-82e643.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoLabel/mappings/repos_github-api-test-org_test-labels_labels-3-82e643.json new file mode 100644 index 0000000000..328d22e6a6 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoLabel/mappings/repos_github-api-test-org_test-labels_labels-3-82e643.json @@ -0,0 +1,42 @@ +{ + "id": "82e6433c-0947-48bc-a15a-398eefcc3280", + "name": "repos_github-api-test-org_test-labels_labels", + "request": { + "url": "/repos/github-api-test-org/test-labels/labels", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_test-labels_labels-82e6433c-0947-48bc-a15a-398eefcc3280.json", + "headers": { + "Date": "Sat, 05 Oct 2019 05:21:22 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4837", + "X-RateLimit-Reset": "1570253246", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"70c6bea1b42c9775915fdf6e8279aa26\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.symmetra-preview; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FC58:3C9A:4B940E:5AADB0:5D982852" + } + }, + "uuid": "82e6433c-0947-48bc-a15a-398eefcc3280", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoLabel/mappings/repos_github-api-test-org_test-labels_labels-5-ce07a3.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoLabel/mappings/repos_github-api-test-org_test-labels_labels-5-ce07a3.json new file mode 100644 index 0000000000..c9bef91493 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoLabel/mappings/repos_github-api-test-org_test-labels_labels-5-ce07a3.json @@ -0,0 +1,50 @@ +{ + "id": "ce07a349-37fc-4920-bdd1-0da90c5f95e3", + "name": "repos_github-api-test-org_test-labels_labels", + "request": { + "url": "/repos/github-api-test-org/test-labels/labels", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"color\":\"123456\",\"name\":\"test\",\"description\":\"\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 201, + "body": "{\"id\":1596524803,\"node_id\":\"MDU6TGFiZWwxNTk2NTI0ODAz\",\"url\":\"https://api.github.com/repos/github-api-test-org/test-labels/labels/test\",\"name\":\"test\",\"color\":\"123456\",\"default\":false,\"description\":\"\"}", + "headers": { + "Date": "Sat, 05 Oct 2019 05:21:23 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4835", + "X-RateLimit-Reset": "1570253246", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"f933a77094471805d575559f23304c39\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/github-api-test-org/test-labels/labels/test", + "X-GitHub-Media-Type": "github.symmetra-preview; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FC58:3C9A:4B9414:5AADB6:5D982853" + } + }, + "uuid": "ce07a349-37fc-4920-bdd1-0da90c5f95e3", + "persistent": true, + "insertionIndex": 5 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoLabel/mappings/repos_github-api-test-org_test-labels_labels_enhancement-4-ba366e.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoLabel/mappings/repos_github-api-test-org_test-labels_labels_enhancement-4-ba366e.json new file mode 100644 index 0000000000..dccdd4cf09 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoLabel/mappings/repos_github-api-test-org_test-labels_labels_enhancement-4-ba366e.json @@ -0,0 +1,43 @@ +{ + "id": "ba366e44-54d8-41e1-a12a-8024a7d41658", + "name": "repos_github-api-test-org_test-labels_labels_enhancement", + "request": { + "url": "/repos/github-api-test-org/test-labels/labels/enhancement", + "method": "GET" + }, + "response": { + "status": 200, + "body": "{\"id\":177339106,\"node_id\":\"MDU6TGFiZWwxNzczMzkxMDY=\",\"url\":\"https://api.github.com/repos/github-api-test-org/test-labels/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true,\"description\":null}", + "headers": { + "Date": "Sat, 05 Oct 2019 05:21:23 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4836", + "X-RateLimit-Reset": "1570253246", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"ac69b781a1575715b24ee0357ce1e51e\"", + "Last-Modified": "Sun, 15 Feb 2015 14:49:10 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.symmetra-preview; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FC58:3C9A:4B9412:5AADB3:5D982852" + } + }, + "uuid": "ba366e44-54d8-41e1-a12a-8024a7d41658", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoLabel/mappings/repos_github-api-test-org_test-labels_labels_test-10-3ee113.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoLabel/mappings/repos_github-api-test-org_test-labels_labels_test-10-3ee113.json new file mode 100644 index 0000000000..0d70c8f03a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoLabel/mappings/repos_github-api-test-org_test-labels_labels_test-10-3ee113.json @@ -0,0 +1,45 @@ +{ + "id": "3ee11377-21e9-477f-89c0-9debad44f92b", + "name": "repos_github-api-test-org_test-labels_labels_test", + "request": { + "url": "/repos/github-api-test-org/test-labels/labels/test", + "method": "GET" + }, + "response": { + "status": 200, + "body": "{\"id\":1596524803,\"node_id\":\"MDU6TGFiZWwxNTk2NTI0ODAz\",\"url\":\"https://api.github.com/repos/github-api-test-org/test-labels/labels/test\",\"name\":\"test\",\"color\":\"000000\",\"default\":false,\"description\":\"this is also a test\"}", + "headers": { + "Date": "Sat, 05 Oct 2019 05:21:23 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4830", + "X-RateLimit-Reset": "1570253246", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"cd828b300f3803bcda7512b44c762a69\"", + "Last-Modified": "Sat, 05 Oct 2019 05:21:23 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.symmetra-preview; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FC58:3C9A:4B9425:5AADCB:5D982853" + } + }, + "uuid": "3ee11377-21e9-477f-89c0-9debad44f92b", + "persistent": true, + "scenarioName": "scenario-1-repos-github-api-test-org-test-labels-labels-test", + "requiredScenarioState": "scenario-1-repos-github-api-test-org-test-labels-labels-test-3", + "insertionIndex": 10 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoLabel/mappings/repos_github-api-test-org_test-labels_labels_test-11-f2667d.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoLabel/mappings/repos_github-api-test-org_test-labels_labels_test-11-f2667d.json new file mode 100644 index 0000000000..3769722d13 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoLabel/mappings/repos_github-api-test-org_test-labels_labels_test-11-f2667d.json @@ -0,0 +1,35 @@ +{ + "id": "f2667d3c-85ff-4e42-b633-e677525d4b9c", + "name": "repos_github-api-test-org_test-labels_labels_test", + "request": { + "url": "/repos/github-api-test-org/test-labels/labels/test", + "method": "DELETE" + }, + "response": { + "status": 204, + "headers": { + "Date": "Sat, 05 Oct 2019 05:21:24 GMT", + "Server": "GitHub.com", + "Status": "204 No Content", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4829", + "X-RateLimit-Reset": "1570253246", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "FC58:3C9A:4B942A:5AADCE:5D982853" + } + }, + "uuid": "f2667d3c-85ff-4e42-b633-e677525d4b9c", + "persistent": true, + "insertionIndex": 11 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoLabel/mappings/repos_github-api-test-org_test-labels_labels_test-6-6c1d5b.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoLabel/mappings/repos_github-api-test-org_test-labels_labels_test-6-6c1d5b.json new file mode 100644 index 0000000000..c18f2d7526 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoLabel/mappings/repos_github-api-test-org_test-labels_labels_test-6-6c1d5b.json @@ -0,0 +1,46 @@ +{ + "id": "6c1d5bb5-c427-4743-b1c2-0bc8113b155f", + "name": "repos_github-api-test-org_test-labels_labels_test", + "request": { + "url": "/repos/github-api-test-org/test-labels/labels/test", + "method": "GET" + }, + "response": { + "status": 200, + "body": "{\"id\":1596524803,\"node_id\":\"MDU6TGFiZWwxNTk2NTI0ODAz\",\"url\":\"https://api.github.com/repos/github-api-test-org/test-labels/labels/test\",\"name\":\"test\",\"color\":\"123456\",\"default\":false,\"description\":\"\"}", + "headers": { + "Date": "Sat, 05 Oct 2019 05:21:23 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4834", + "X-RateLimit-Reset": "1570253246", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"f933a77094471805d575559f23304c39\"", + "Last-Modified": "Sat, 05 Oct 2019 05:21:23 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.symmetra-preview; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FC58:3C9A:4B9415:5AADB7:5D982853" + } + }, + "uuid": "6c1d5bb5-c427-4743-b1c2-0bc8113b155f", + "persistent": true, + "scenarioName": "scenario-1-repos-github-api-test-org-test-labels-labels-test", + "requiredScenarioState": "Started", + "newScenarioState": "scenario-1-repos-github-api-test-org-test-labels-labels-test-2", + "insertionIndex": 6 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoLabel/mappings/repos_github-api-test-org_test-labels_labels_test-7-aceb5f.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoLabel/mappings/repos_github-api-test-org_test-labels_labels_test-7-aceb5f.json new file mode 100644 index 0000000000..796c73c9db --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoLabel/mappings/repos_github-api-test-org_test-labels_labels_test-7-aceb5f.json @@ -0,0 +1,49 @@ +{ + "id": "aceb5f74-bf82-4d06-a87e-9b3294b127e4", + "name": "repos_github-api-test-org_test-labels_labels_test", + "request": { + "url": "/repos/github-api-test-org/test-labels/labels/test", + "method": "PATCH", + "bodyPatterns": [ + { + "equalToJson": "{\"color\":\"000000\",\"name\":\"test\",\"description\":\"\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 200, + "body": "{\"id\":1596524803,\"node_id\":\"MDU6TGFiZWwxNTk2NTI0ODAz\",\"url\":\"https://api.github.com/repos/github-api-test-org/test-labels/labels/test\",\"name\":\"test\",\"color\":\"000000\",\"default\":false,\"description\":\"\"}", + "headers": { + "Date": "Sat, 05 Oct 2019 05:21:23 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4833", + "X-RateLimit-Reset": "1570253246", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"b6be68c4a5dbc522147f58e4b1b1aed1\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.symmetra-preview; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FC58:3C9A:4B9419:5AADBC:5D982853" + } + }, + "uuid": "aceb5f74-bf82-4d06-a87e-9b3294b127e4", + "persistent": true, + "insertionIndex": 7 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoLabel/mappings/repos_github-api-test-org_test-labels_labels_test-8-0dc6e2.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoLabel/mappings/repos_github-api-test-org_test-labels_labels_test-8-0dc6e2.json new file mode 100644 index 0000000000..d3294e4dd4 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoLabel/mappings/repos_github-api-test-org_test-labels_labels_test-8-0dc6e2.json @@ -0,0 +1,46 @@ +{ + "id": "0dc6e214-4dea-4643-b425-713afaa11098", + "name": "repos_github-api-test-org_test-labels_labels_test", + "request": { + "url": "/repos/github-api-test-org/test-labels/labels/test", + "method": "GET" + }, + "response": { + "status": 200, + "body": "{\"id\":1596524803,\"node_id\":\"MDU6TGFiZWwxNTk2NTI0ODAz\",\"url\":\"https://api.github.com/repos/github-api-test-org/test-labels/labels/test\",\"name\":\"test\",\"color\":\"000000\",\"default\":false,\"description\":\"\"}", + "headers": { + "Date": "Sat, 05 Oct 2019 05:21:23 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4832", + "X-RateLimit-Reset": "1570253246", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"b6be68c4a5dbc522147f58e4b1b1aed1\"", + "Last-Modified": "Sat, 05 Oct 2019 05:21:23 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.symmetra-preview; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FC58:3C9A:4B941E:5AADC4:5D982853" + } + }, + "uuid": "0dc6e214-4dea-4643-b425-713afaa11098", + "persistent": true, + "scenarioName": "scenario-1-repos-github-api-test-org-test-labels-labels-test", + "requiredScenarioState": "scenario-1-repos-github-api-test-org-test-labels-labels-test-2", + "newScenarioState": "scenario-1-repos-github-api-test-org-test-labels-labels-test-3", + "insertionIndex": 8 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoLabel/mappings/repos_github-api-test-org_test-labels_labels_test-9-e4f1b8.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoLabel/mappings/repos_github-api-test-org_test-labels_labels_test-9-e4f1b8.json new file mode 100644 index 0000000000..d81e429acd --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoLabel/mappings/repos_github-api-test-org_test-labels_labels_test-9-e4f1b8.json @@ -0,0 +1,49 @@ +{ + "id": "e4f1b8e0-0a58-491b-9905-ac4093b64407", + "name": "repos_github-api-test-org_test-labels_labels_test", + "request": { + "url": "/repos/github-api-test-org/test-labels/labels/test", + "method": "PATCH", + "bodyPatterns": [ + { + "equalToJson": "{\"color\":\"000000\",\"name\":\"test\",\"description\":\"this is also a test\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 200, + "body": "{\"id\":1596524803,\"node_id\":\"MDU6TGFiZWwxNTk2NTI0ODAz\",\"url\":\"https://api.github.com/repos/github-api-test-org/test-labels/labels/test\",\"name\":\"test\",\"color\":\"000000\",\"default\":false,\"description\":\"this is also a test\"}", + "headers": { + "Date": "Sat, 05 Oct 2019 05:21:23 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4831", + "X-RateLimit-Reset": "1570253246", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"cd828b300f3803bcda7512b44c762a69\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.symmetra-preview; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FC58:3C9A:4B9422:5AADC8:5D982853" + } + }, + "uuid": "e4f1b8e0-0a58-491b-9905-ac4093b64407", + "persistent": true, + "insertionIndex": 9 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoLabel/mappings/repos_github-api-test-org_test-labels_labels_test2-13-633a55.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoLabel/mappings/repos_github-api-test-org_test-labels_labels_test2-13-633a55.json new file mode 100644 index 0000000000..00543e0ef3 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoLabel/mappings/repos_github-api-test-org_test-labels_labels_test2-13-633a55.json @@ -0,0 +1,43 @@ +{ + "id": "633a55b3-25a5-4c06-9b13-448fc6026aa8", + "name": "repos_github-api-test-org_test-labels_labels_test2", + "request": { + "url": "/repos/github-api-test-org/test-labels/labels/test2", + "method": "GET" + }, + "response": { + "status": 200, + "body": "{\"id\":1596524813,\"node_id\":\"MDU6TGFiZWwxNTk2NTI0ODEz\",\"url\":\"https://api.github.com/repos/github-api-test-org/test-labels/labels/test2\",\"name\":\"test2\",\"color\":\"123457\",\"default\":false,\"description\":\"this is a different test\"}", + "headers": { + "Date": "Sat, 05 Oct 2019 05:21:24 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4827", + "X-RateLimit-Reset": "1570253246", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"cb7056d812cb1ca0296b75f5e48b462d\"", + "Last-Modified": "Sat, 05 Oct 2019 05:21:24 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.symmetra-preview; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FC58:3C9A:4B9433:5AADD8:5D982854" + } + }, + "uuid": "633a55b3-25a5-4c06-9b13-448fc6026aa8", + "persistent": true, + "insertionIndex": 13 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoLabel/mappings/repos_github-api-test-org_test-labels_labels_test2-14-fc4fdf.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoLabel/mappings/repos_github-api-test-org_test-labels_labels_test2-14-fc4fdf.json new file mode 100644 index 0000000000..a29288a94a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoLabel/mappings/repos_github-api-test-org_test-labels_labels_test2-14-fc4fdf.json @@ -0,0 +1,35 @@ +{ + "id": "fc4fdfaa-2dc1-4fa7-bf63-8bd106717b77", + "name": "repos_github-api-test-org_test-labels_labels_test2", + "request": { + "url": "/repos/github-api-test-org/test-labels/labels/test2", + "method": "DELETE" + }, + "response": { + "status": 204, + "headers": { + "Date": "Sat, 05 Oct 2019 05:21:24 GMT", + "Server": "GitHub.com", + "Status": "204 No Content", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4826", + "X-RateLimit-Reset": "1570253246", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "FC58:3C9A:4B9435:5AADDE:5D982854" + } + }, + "uuid": "fc4fdfaa-2dc1-4fa7-bf63-8bd106717b77", + "persistent": true, + "insertionIndex": 14 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoLabel/mappings/user-1-05a1d2.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoLabel/mappings/user-1-05a1d2.json new file mode 100644 index 0000000000..1e24b48d6d --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoLabel/mappings/user-1-05a1d2.json @@ -0,0 +1,43 @@ +{ + "id": "05a1d265-edf9-4570-b398-a3eb7d3396e1", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-05a1d265-edf9-4570-b398-a3eb7d3396e1.json", + "headers": { + "Date": "Sat, 05 Oct 2019 05:21:21 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4844", + "X-RateLimit-Reset": "1570253246", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"af0c41afcacb8ceee14b7d896719c3bd\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FC58:3C9A:4B93FD:5AAD9A:5D982851" + } + }, + "uuid": "05a1d265-edf9-4570-b398-a3eb7d3396e1", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepositoryWithAutoInitializationCRUD/__files/repos_bitwiseman_github-api-test-autoinit-51dabcc5-7825-4251-b560-8927ffa265b5.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepositoryWithAutoInitializationCRUD/__files/repos_bitwiseman_github-api-test-autoinit-51dabcc5-7825-4251-b560-8927ffa265b5.json new file mode 100644 index 0000000000..6bded5847f --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepositoryWithAutoInitializationCRUD/__files/repos_bitwiseman_github-api-test-autoinit-51dabcc5-7825-4251-b560-8927ffa265b5.json @@ -0,0 +1,104 @@ +{ + "id": 212446539, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTI0NDY1Mzk=", + "name": "github-api-test-autoinit", + "full_name": "bitwiseman/github-api-test-autoinit", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/github-api-test-autoinit", + "description": "a test repository for auto init", + "fork": false, + "url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit", + "forks_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/deployments", + "created_at": "2019-10-02T21:40:04Z", + "updated_at": "2019-10-02T21:40:07Z", + "pushed_at": "2019-10-02T21:40:05Z", + "git_url": "git://github.com/bitwiseman/github-api-test-autoinit.git", + "ssh_url": "git@github.com:bitwiseman/github-api-test-autoinit.git", + "clone_url": "https://github.com/bitwiseman/github-api-test-autoinit.git", + "svn_url": "https://github.com/bitwiseman/github-api-test-autoinit", + "homepage": "http://github-api.kohsuke.org/", + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": false, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "network_count": 0, + "subscribers_count": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepositoryWithAutoInitializationCRUD/__files/repos_bitwiseman_github-api-test-autoinit-64af61d8-56b5-4b55-ad9f-ca9d6597e07a.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepositoryWithAutoInitializationCRUD/__files/repos_bitwiseman_github-api-test-autoinit-64af61d8-56b5-4b55-ad9f-ca9d6597e07a.json new file mode 100644 index 0000000000..54419b4589 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepositoryWithAutoInitializationCRUD/__files/repos_bitwiseman_github-api-test-autoinit-64af61d8-56b5-4b55-ad9f-ca9d6597e07a.json @@ -0,0 +1,104 @@ +{ + "id": 212446539, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTI0NDY1Mzk=", + "name": "github-api-test-autoinit", + "full_name": "bitwiseman/github-api-test-autoinit", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/github-api-test-autoinit", + "description": "a test repository for auto init", + "fork": false, + "url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit", + "forks_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/deployments", + "created_at": "2019-10-02T21:40:04Z", + "updated_at": "2019-10-02T21:40:05Z", + "pushed_at": "2019-10-02T21:40:05Z", + "git_url": "git://github.com/bitwiseman/github-api-test-autoinit.git", + "ssh_url": "git@github.com:bitwiseman/github-api-test-autoinit.git", + "clone_url": "https://github.com/bitwiseman/github-api-test-autoinit.git", + "svn_url": "https://github.com/bitwiseman/github-api-test-autoinit", + "homepage": "http://github-api.kohsuke.org/", + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "network_count": 0, + "subscribers_count": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepositoryWithAutoInitializationCRUD/__files/repos_bitwiseman_github-api-test-autoinit-a1a05f8b-7bd8-4200-a587-fd99f720508b.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepositoryWithAutoInitializationCRUD/__files/repos_bitwiseman_github-api-test-autoinit-a1a05f8b-7bd8-4200-a587-fd99f720508b.json new file mode 100644 index 0000000000..2528ff2249 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepositoryWithAutoInitializationCRUD/__files/repos_bitwiseman_github-api-test-autoinit-a1a05f8b-7bd8-4200-a587-fd99f720508b.json @@ -0,0 +1,104 @@ +{ + "id": 212446539, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTI0NDY1Mzk=", + "name": "github-api-test-autoinit", + "full_name": "bitwiseman/github-api-test-autoinit", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/github-api-test-autoinit", + "description": "a test repository for auto init", + "fork": false, + "url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit", + "forks_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/deployments", + "created_at": "2019-10-02T21:40:04Z", + "updated_at": "2019-10-02T21:40:05Z", + "pushed_at": "2019-10-02T21:40:05Z", + "git_url": "git://github.com/bitwiseman/github-api-test-autoinit.git", + "ssh_url": "git@github.com:bitwiseman/github-api-test-autoinit.git", + "clone_url": "https://github.com/bitwiseman/github-api-test-autoinit.git", + "svn_url": "https://github.com/bitwiseman/github-api-test-autoinit", + "homepage": "http://github-api.kohsuke.org/", + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": false, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "network_count": 0, + "subscribers_count": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepositoryWithAutoInitializationCRUD/__files/repos_bitwiseman_github-api-test-autoinit-c71176ad-bfc9-4e39-aed8-6c4abd1c5979.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepositoryWithAutoInitializationCRUD/__files/repos_bitwiseman_github-api-test-autoinit-c71176ad-bfc9-4e39-aed8-6c4abd1c5979.json new file mode 100644 index 0000000000..6bded5847f --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepositoryWithAutoInitializationCRUD/__files/repos_bitwiseman_github-api-test-autoinit-c71176ad-bfc9-4e39-aed8-6c4abd1c5979.json @@ -0,0 +1,104 @@ +{ + "id": 212446539, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTI0NDY1Mzk=", + "name": "github-api-test-autoinit", + "full_name": "bitwiseman/github-api-test-autoinit", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/github-api-test-autoinit", + "description": "a test repository for auto init", + "fork": false, + "url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit", + "forks_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/deployments", + "created_at": "2019-10-02T21:40:04Z", + "updated_at": "2019-10-02T21:40:07Z", + "pushed_at": "2019-10-02T21:40:05Z", + "git_url": "git://github.com/bitwiseman/github-api-test-autoinit.git", + "ssh_url": "git@github.com:bitwiseman/github-api-test-autoinit.git", + "clone_url": "https://github.com/bitwiseman/github-api-test-autoinit.git", + "svn_url": "https://github.com/bitwiseman/github-api-test-autoinit", + "homepage": "http://github-api.kohsuke.org/", + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": false, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "network_count": 0, + "subscribers_count": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepositoryWithAutoInitializationCRUD/__files/repos_bitwiseman_github-api-test-autoinit_readme-459f3734-bfaa-4f29-97fd-69574b66d965.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepositoryWithAutoInitializationCRUD/__files/repos_bitwiseman_github-api-test-autoinit_readme-459f3734-bfaa-4f29-97fd-69574b66d965.json new file mode 100644 index 0000000000..63ca2a8ceb --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepositoryWithAutoInitializationCRUD/__files/repos_bitwiseman_github-api-test-autoinit_readme-459f3734-bfaa-4f29-97fd-69574b66d965.json @@ -0,0 +1,18 @@ +{ + "name": "README.md", + "path": "README.md", + "sha": "9ab0314e21ff2990ac133d0dc5c5c79437edeb83", + "size": 59, + "url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/contents/README.md?ref=master", + "html_url": "https://github.com/bitwiseman/github-api-test-autoinit/blob/master/README.md", + "git_url": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/git/blobs/9ab0314e21ff2990ac133d0dc5c5c79437edeb83", + "download_url": "https://raw.githubusercontent.com/bitwiseman/github-api-test-autoinit/master/README.md", + "type": "file", + "content": "IyBnaXRodWItYXBpLXRlc3QtYXV0b2luaXQKYSB0ZXN0IHJlcG9zaXRvcnkg\nZm9yIGF1dG8gaW5pdAo=\n", + "encoding": "base64", + "_links": { + "self": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/contents/README.md?ref=master", + "git": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit/git/blobs/9ab0314e21ff2990ac133d0dc5c5c79437edeb83", + "html": "https://github.com/bitwiseman/github-api-test-autoinit/blob/master/README.md" + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepositoryWithAutoInitializationCRUD/__files/user-b16c3b01-8cf2-4f90-a77a-f6ff9e371db0.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepositoryWithAutoInitializationCRUD/__files/user-b16c3b01-8cf2-4f90-a77a-f6ff9e371db0.json new file mode 100644 index 0000000000..41fc9e3d00 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepositoryWithAutoInitializationCRUD/__files/user-b16c3b01-8cf2-4f90-a77a-f6ff9e371db0.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 168, + "public_gists": 4, + "followers": 136, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepositoryWithAutoInitializationCRUD/__files/user_repos-7be48128-4960-4274-8681-118897a274af.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepositoryWithAutoInitializationCRUD/__files/user_repos-7be48128-4960-4274-8681-118897a274af.json new file mode 100644 index 0000000000..7ae78469db --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepositoryWithAutoInitializationCRUD/__files/user_repos-7be48128-4960-4274-8681-118897a274af.json @@ -0,0 +1,104 @@ +{ + "id": 212446539, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTI0NDY1Mzk=", + "name": "github-api-test-autoinit", + "full_name": "bitwiseman/github-api-test-autoinit", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "http://localhost:49872/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "http://localhost:49872/users/bitwiseman/followers", + "following_url": "http://localhost:49872/users/bitwiseman/following{/other_user}", + "gists_url": "http://localhost:49872/users/bitwiseman/gists{/gist_id}", + "starred_url": "http://localhost:49872/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "http://localhost:49872/users/bitwiseman/subscriptions", + "organizations_url": "http://localhost:49872/users/bitwiseman/orgs", + "repos_url": "http://localhost:49872/users/bitwiseman/repos", + "events_url": "http://localhost:49872/users/bitwiseman/events{/privacy}", + "received_events_url": "http://localhost:49872/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/github-api-test-autoinit", + "description": "a test repository for auto init", + "fork": false, + "url": "http://localhost:49872/repos/bitwiseman/github-api-test-autoinit", + "forks_url": "http://localhost:49872/repos/bitwiseman/github-api-test-autoinit/forks", + "keys_url": "http://localhost:49872/repos/bitwiseman/github-api-test-autoinit/keys{/key_id}", + "collaborators_url": "http://localhost:49872/repos/bitwiseman/github-api-test-autoinit/collaborators{/collaborator}", + "teams_url": "http://localhost:49872/repos/bitwiseman/github-api-test-autoinit/teams", + "hooks_url": "http://localhost:49872/repos/bitwiseman/github-api-test-autoinit/hooks", + "issue_events_url": "http://localhost:49872/repos/bitwiseman/github-api-test-autoinit/issues/events{/number}", + "events_url": "http://localhost:49872/repos/bitwiseman/github-api-test-autoinit/events", + "assignees_url": "http://localhost:49872/repos/bitwiseman/github-api-test-autoinit/assignees{/user}", + "branches_url": "http://localhost:49872/repos/bitwiseman/github-api-test-autoinit/branches{/branch}", + "tags_url": "http://localhost:49872/repos/bitwiseman/github-api-test-autoinit/tags", + "blobs_url": "http://localhost:49872/repos/bitwiseman/github-api-test-autoinit/git/blobs{/sha}", + "git_tags_url": "http://localhost:49872/repos/bitwiseman/github-api-test-autoinit/git/tags{/sha}", + "git_refs_url": "http://localhost:49872/repos/bitwiseman/github-api-test-autoinit/git/refs{/sha}", + "trees_url": "http://localhost:49872/repos/bitwiseman/github-api-test-autoinit/git/trees{/sha}", + "statuses_url": "http://localhost:49872/repos/bitwiseman/github-api-test-autoinit/statuses/{sha}", + "languages_url": "http://localhost:49872/repos/bitwiseman/github-api-test-autoinit/languages", + "stargazers_url": "http://localhost:49872/repos/bitwiseman/github-api-test-autoinit/stargazers", + "contributors_url": "http://localhost:49872/repos/bitwiseman/github-api-test-autoinit/contributors", + "subscribers_url": "http://localhost:49872/repos/bitwiseman/github-api-test-autoinit/subscribers", + "subscription_url": "http://localhost:49872/repos/bitwiseman/github-api-test-autoinit/subscription", + "commits_url": "http://localhost:49872/repos/bitwiseman/github-api-test-autoinit/commits{/sha}", + "git_commits_url": "http://localhost:49872/repos/bitwiseman/github-api-test-autoinit/git/commits{/sha}", + "comments_url": "http://localhost:49872/repos/bitwiseman/github-api-test-autoinit/comments{/number}", + "issue_comment_url": "http://localhost:49872/repos/bitwiseman/github-api-test-autoinit/issues/comments{/number}", + "contents_url": "http://localhost:49872/repos/bitwiseman/github-api-test-autoinit/contents/{+path}", + "compare_url": "http://localhost:49872/repos/bitwiseman/github-api-test-autoinit/compare/{base}...{head}", + "merges_url": "http://localhost:49872/repos/bitwiseman/github-api-test-autoinit/merges", + "archive_url": "http://localhost:49872/repos/bitwiseman/github-api-test-autoinit/{archive_format}{/ref}", + "downloads_url": "http://localhost:49872/repos/bitwiseman/github-api-test-autoinit/downloads", + "issues_url": "http://localhost:49872/repos/bitwiseman/github-api-test-autoinit/issues{/number}", + "pulls_url": "http://localhost:49872/repos/bitwiseman/github-api-test-autoinit/pulls{/number}", + "milestones_url": "http://localhost:49872/repos/bitwiseman/github-api-test-autoinit/milestones{/number}", + "notifications_url": "http://localhost:49872/repos/bitwiseman/github-api-test-autoinit/notifications{?since,all,participating}", + "labels_url": "http://localhost:49872/repos/bitwiseman/github-api-test-autoinit/labels{/name}", + "releases_url": "http://localhost:49872/repos/bitwiseman/github-api-test-autoinit/releases{/id}", + "deployments_url": "http://localhost:49872/repos/bitwiseman/github-api-test-autoinit/deployments", + "created_at": "2019-10-02T21:40:04Z", + "updated_at": "2019-10-02T21:40:04Z", + "pushed_at": "2019-10-02T21:40:05Z", + "git_url": "git://github.com/bitwiseman/github-api-test-autoinit.git", + "ssh_url": "git@github.com:bitwiseman/github-api-test-autoinit.git", + "clone_url": "https://github.com/bitwiseman/github-api-test-autoinit.git", + "svn_url": "https://github.com/bitwiseman/github-api-test-autoinit", + "homepage": "http://github-api.kohsuke.org/", + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "network_count": 0, + "subscribers_count": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepositoryWithAutoInitializationCRUD/mappings/repos_bitwiseman_github-api-test-autoinit-2-64af61.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepositoryWithAutoInitializationCRUD/mappings/repos_bitwiseman_github-api-test-autoinit-2-64af61.json new file mode 100644 index 0000000000..60bdfb40a8 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepositoryWithAutoInitializationCRUD/mappings/repos_bitwiseman_github-api-test-autoinit-2-64af61.json @@ -0,0 +1,49 @@ +{ + "id": "64af61d8-56b5-4b55-ad9f-ca9d6597e07a", + "name": "repos_bitwiseman_github-api-test-autoinit", + "request": { + "url": "/repos/bitwiseman/github-api-test-autoinit", + "method": "PATCH", + "bodyPatterns": [ + { + "equalToJson": "{\"name\":\"github-api-test-autoinit\",\"has_issues\":\"false\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 200, + "bodyFileName": "repos_bitwiseman_github-api-test-autoinit-64af61d8-56b5-4b55-ad9f-ca9d6597e07a.json", + "headers": { + "Date": "Wed, 02 Oct 2019 21:40:05 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4940", + "X-RateLimit-Reset": "1570055937", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"649cd4e87bcc94e6228df1418d0cdbf4\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C2D6:361D:9BE114:B8F15E:5D951935" + } + }, + "uuid": "64af61d8-56b5-4b55-ad9f-ca9d6597e07a", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepositoryWithAutoInitializationCRUD/mappings/repos_bitwiseman_github-api-test-autoinit-3-a1a05f.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepositoryWithAutoInitializationCRUD/mappings/repos_bitwiseman_github-api-test-autoinit-3-a1a05f.json new file mode 100644 index 0000000000..31cfd9d99d --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepositoryWithAutoInitializationCRUD/mappings/repos_bitwiseman_github-api-test-autoinit-3-a1a05f.json @@ -0,0 +1,49 @@ +{ + "id": "a1a05f8b-7bd8-4200-a587-fd99f720508b", + "name": "repos_bitwiseman_github-api-test-autoinit", + "request": { + "url": "/repos/bitwiseman/github-api-test-autoinit", + "method": "PATCH", + "bodyPatterns": [ + { + "equalToJson": "{\"has_downloads\":\"false\",\"name\":\"github-api-test-autoinit\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 200, + "bodyFileName": "repos_bitwiseman_github-api-test-autoinit-a1a05f8b-7bd8-4200-a587-fd99f720508b.json", + "headers": { + "Date": "Wed, 02 Oct 2019 21:40:05 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4939", + "X-RateLimit-Reset": "1570055937", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"0a4ffd953902dd8f9ea3b8d61f5d2d61\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C2D6:361D:9BE12E:B8F194:5D951935" + } + }, + "uuid": "a1a05f8b-7bd8-4200-a587-fd99f720508b", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepositoryWithAutoInitializationCRUD/mappings/repos_bitwiseman_github-api-test-autoinit-4-c71176.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepositoryWithAutoInitializationCRUD/mappings/repos_bitwiseman_github-api-test-autoinit-4-c71176.json new file mode 100644 index 0000000000..64871009b1 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepositoryWithAutoInitializationCRUD/mappings/repos_bitwiseman_github-api-test-autoinit-4-c71176.json @@ -0,0 +1,49 @@ +{ + "id": "c71176ad-bfc9-4e39-aed8-6c4abd1c5979", + "name": "repos_bitwiseman_github-api-test-autoinit", + "request": { + "url": "/repos/bitwiseman/github-api-test-autoinit", + "method": "PATCH", + "bodyPatterns": [ + { + "equalToJson": "{\"has_wiki\":\"false\",\"name\":\"github-api-test-autoinit\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 200, + "bodyFileName": "repos_bitwiseman_github-api-test-autoinit-c71176ad-bfc9-4e39-aed8-6c4abd1c5979.json", + "headers": { + "Date": "Wed, 02 Oct 2019 21:40:08 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4938", + "X-RateLimit-Reset": "1570055937", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"3172b6b858bfe3dee02f80d5e8fd7b1a\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C2D6:361D:9BE150:B8F1B6:5D951935" + } + }, + "uuid": "c71176ad-bfc9-4e39-aed8-6c4abd1c5979", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepositoryWithAutoInitializationCRUD/mappings/repos_bitwiseman_github-api-test-autoinit-7-51dabc.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepositoryWithAutoInitializationCRUD/mappings/repos_bitwiseman_github-api-test-autoinit-7-51dabc.json new file mode 100644 index 0000000000..eaf1e5576c --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepositoryWithAutoInitializationCRUD/mappings/repos_bitwiseman_github-api-test-autoinit-7-51dabc.json @@ -0,0 +1,43 @@ +{ + "id": "51dabcc5-7825-4251-b560-8927ffa265b5", + "name": "repos_bitwiseman_github-api-test-autoinit", + "request": { + "url": "/repos/bitwiseman/github-api-test-autoinit", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_bitwiseman_github-api-test-autoinit-51dabcc5-7825-4251-b560-8927ffa265b5.json", + "headers": { + "Date": "Wed, 02 Oct 2019 21:40:11 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4935", + "X-RateLimit-Reset": "1570055937", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"3172b6b858bfe3dee02f80d5e8fd7b1a\"", + "Last-Modified": "Wed, 02 Oct 2019 21:40:07 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C2D6:361D:9BE3B2:B8F482:5D95193B" + } + }, + "uuid": "51dabcc5-7825-4251-b560-8927ffa265b5", + "persistent": true, + "insertionIndex": 7 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepositoryWithAutoInitializationCRUD/mappings/repos_bitwiseman_github-api-test-autoinit-8-42bbd1.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepositoryWithAutoInitializationCRUD/mappings/repos_bitwiseman_github-api-test-autoinit-8-42bbd1.json new file mode 100644 index 0000000000..8d4bf32895 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepositoryWithAutoInitializationCRUD/mappings/repos_bitwiseman_github-api-test-autoinit-8-42bbd1.json @@ -0,0 +1,35 @@ +{ + "id": "42bbd1da-3a8a-4325-a41e-5f1a79e33108", + "name": "repos_bitwiseman_github-api-test-autoinit", + "request": { + "url": "/repos/bitwiseman/github-api-test-autoinit", + "method": "DELETE" + }, + "response": { + "status": 204, + "headers": { + "Date": "Wed, 02 Oct 2019 21:40:11 GMT", + "Server": "GitHub.com", + "Status": "204 No Content", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4934", + "X-RateLimit-Reset": "1570055937", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "delete_repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "C2D6:361D:9BE3C5:B8F496:5D95193B" + } + }, + "uuid": "42bbd1da-3a8a-4325-a41e-5f1a79e33108", + "persistent": true, + "insertionIndex": 8 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepositoryWithAutoInitializationCRUD/mappings/repos_bitwiseman_github-api-test-autoinit_readme-5-459f37.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepositoryWithAutoInitializationCRUD/mappings/repos_bitwiseman_github-api-test-autoinit_readme-5-459f37.json new file mode 100644 index 0000000000..3aa978b344 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepositoryWithAutoInitializationCRUD/mappings/repos_bitwiseman_github-api-test-autoinit_readme-5-459f37.json @@ -0,0 +1,43 @@ +{ + "id": "459f3734-bfaa-4f29-97fd-69574b66d965", + "name": "repos_bitwiseman_github-api-test-autoinit_readme", + "request": { + "url": "/repos/bitwiseman/github-api-test-autoinit/readme", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_bitwiseman_github-api-test-autoinit_readme-459f3734-bfaa-4f29-97fd-69574b66d965.json", + "headers": { + "Date": "Wed, 02 Oct 2019 21:40:11 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4937", + "X-RateLimit-Reset": "1570055937", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"d81305e069324d7186e8c5dcacc44a16\"", + "Last-Modified": "Wed, 02 Oct 2019 21:40:04 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C2D6:361D:9BE38C:B8F2D9:5D951938" + } + }, + "uuid": "459f3734-bfaa-4f29-97fd-69574b66d965", + "persistent": true, + "insertionIndex": 5 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepositoryWithAutoInitializationCRUD/mappings/user-6-b16c3b.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepositoryWithAutoInitializationCRUD/mappings/user-6-b16c3b.json new file mode 100644 index 0000000000..f883d38d78 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepositoryWithAutoInitializationCRUD/mappings/user-6-b16c3b.json @@ -0,0 +1,43 @@ +{ + "id": "b16c3b01-8cf2-4f90-a77a-f6ff9e371db0", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-b16c3b01-8cf2-4f90-a77a-f6ff9e371db0.json", + "headers": { + "Date": "Wed, 02 Oct 2019 21:40:11 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4936", + "X-RateLimit-Reset": "1570055937", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"af0c41afcacb8ceee14b7d896719c3bd\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C2D6:361D:9BE3A1:B8F46B:5D95193B" + } + }, + "uuid": "b16c3b01-8cf2-4f90-a77a-f6ff9e371db0", + "persistent": true, + "insertionIndex": 6 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepositoryWithAutoInitializationCRUD/mappings/user_repos-1-7be481.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepositoryWithAutoInitializationCRUD/mappings/user_repos-1-7be481.json new file mode 100644 index 0000000000..78190bfb34 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepositoryWithAutoInitializationCRUD/mappings/user_repos-1-7be481.json @@ -0,0 +1,50 @@ +{ + "id": "7be48128-4960-4274-8681-118897a274af", + "name": "user_repos", + "request": { + "url": "/user/repos", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"auto_init\":true,\"name\":\"github-api-test-autoinit\",\"description\":\"a test repository for auto init\",\"homepage\":\"http://github-api.kohsuke.org/\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "user_repos-7be48128-4960-4274-8681-118897a274af.json", + "headers": { + "Date": "Wed, 02 Oct 2019 21:40:05 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4941", + "X-RateLimit-Reset": "1570055937", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"dda2f2940b17089e5b65662a99c4651b\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "Location": "https://api.github.com/repos/bitwiseman/github-api-test-autoinit", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C2D6:361D:9BE05E:B8F09D:5D951934" + } + }, + "uuid": "7be48128-4960-4274-8681-118897a274af", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testSubscribers/__files/repos_bitwiseman_github-api-809893de-22d7-4bad-9e0a-c7b9ff8ee7df.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testSubscribers/__files/repos_bitwiseman_github-api-809893de-22d7-4bad-9e0a-c7b9ff8ee7df.json new file mode 100644 index 0000000000..7fcdbb5f33 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testSubscribers/__files/repos_bitwiseman_github-api-809893de-22d7-4bad-9e0a-c7b9ff8ee7df.json @@ -0,0 +1,310 @@ +{ + "id": 183521902, + "node_id": "MDEwOlJlcG9zaXRvcnkxODM1MjE5MDI=", + "name": "github-api", + "full_name": "bitwiseman/github-api", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/github-api", + "forks_url": "https://api.github.com/repos/bitwiseman/github-api/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/github-api/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/github-api/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/github-api/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/github-api/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/github-api/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/github-api/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/github-api/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/github-api/deployments", + "created_at": "2019-04-25T23:08:44Z", + "updated_at": "2019-10-25T01:51:28Z", + "pushed_at": "2019-10-25T01:51:21Z", + "git_url": "git://github.com/bitwiseman/github-api.git", + "ssh_url": "git@github.com:bitwiseman/github-api.git", + "clone_url": "https://github.com/bitwiseman/github-api.git", + "svn_url": "https://github.com/bitwiseman/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 13504, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "parent": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-10-25T01:32:16Z", + "pushed_at": "2019-10-25T16:41:09Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 13494, + "stargazers_count": 565, + "watchers_count": 565, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 433, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 64, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 433, + "open_issues": 64, + "watchers": 565, + "default_branch": "master" + }, + "source": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-10-25T01:32:16Z", + "pushed_at": "2019-10-25T16:41:09Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 13494, + "stargazers_count": 565, + "watchers_count": 565, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 433, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 64, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 433, + "open_issues": 64, + "watchers": 565, + "default_branch": "master" + }, + "network_count": 433, + "subscribers_count": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testSubscribers/__files/repos_bitwiseman_github-api_subscribers-8cec4255-a7a6-484c-ab2f-5c2655d826c9.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testSubscribers/__files/repos_bitwiseman_github-api_subscribers-8cec4255-a7a6-484c-ab2f-5c2655d826c9.json new file mode 100644 index 0000000000..a3cec9e1a6 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testSubscribers/__files/repos_bitwiseman_github-api_subscribers-8cec4255-a7a6-484c-ab2f-5c2655d826c9.json @@ -0,0 +1,22 @@ +[ + { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testSubscribers/__files/user-9344f7a2-3c3a-427c-a70e-adaad303b0b4.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testSubscribers/__files/user-9344f7a2-3c3a-427c-a70e-adaad303b0b4.json new file mode 100644 index 0000000000..a4b576e8a7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testSubscribers/__files/user-9344f7a2-3c3a-427c-a70e-adaad303b0b4.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 169, + "public_gists": 7, + "followers": 139, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testSubscribers/__files/user_1958953_repos-36527ce6-bfd4-43ca-b165-d12ee231b603.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testSubscribers/__files/user_1958953_repos-36527ce6-bfd4-43ca-b165-d12ee231b603.json new file mode 100644 index 0000000000..c759f7bc34 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testSubscribers/__files/user_1958953_repos-36527ce6-bfd4-43ca-b165-d12ee231b603.json @@ -0,0 +1,3098 @@ +[ + { + "id": 67650457, + "node_id": "MDEwOlJlcG9zaXRvcnk2NzY1MDQ1Nw==", + "name": "code-prettify", + "full_name": "bitwiseman/code-prettify", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/code-prettify", + "description": "Automatically exported from code.google.com/p/google-code-prettify", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/code-prettify", + "forks_url": "https://api.github.com/repos/bitwiseman/code-prettify/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/code-prettify/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/code-prettify/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/code-prettify/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/code-prettify/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/code-prettify/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/code-prettify/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/code-prettify/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/code-prettify/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/code-prettify/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/code-prettify/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/code-prettify/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/code-prettify/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/code-prettify/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/code-prettify/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/code-prettify/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/code-prettify/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/code-prettify/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/code-prettify/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/code-prettify/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/code-prettify/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/code-prettify/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/code-prettify/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/code-prettify/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/code-prettify/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/code-prettify/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/code-prettify/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/code-prettify/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/code-prettify/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/code-prettify/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/code-prettify/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/code-prettify/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/code-prettify/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/code-prettify/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/code-prettify/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/code-prettify/deployments", + "created_at": "2016-09-07T23:15:29Z", + "updated_at": "2016-09-07T23:15:30Z", + "pushed_at": "2016-09-04T09:29:56Z", + "git_url": "git://github.com/bitwiseman/code-prettify.git", + "ssh_url": "git@github.com:bitwiseman/code-prettify.git", + "clone_url": "https://github.com/bitwiseman/code-prettify.git", + "svn_url": "https://github.com/bitwiseman/code-prettify", + "homepage": null, + "size": 16609, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": false, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 9226640, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjI2NjQw", + "name": "CodeMirror", + "full_name": "bitwiseman/CodeMirror", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/CodeMirror", + "description": "In-browser code editor", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/CodeMirror", + "forks_url": "https://api.github.com/repos/bitwiseman/CodeMirror/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/CodeMirror/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/CodeMirror/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/CodeMirror/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/CodeMirror/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/CodeMirror/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/CodeMirror/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/CodeMirror/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/CodeMirror/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/CodeMirror/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/CodeMirror/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/CodeMirror/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/CodeMirror/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/CodeMirror/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/CodeMirror/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/CodeMirror/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/CodeMirror/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/CodeMirror/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/CodeMirror/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/CodeMirror/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/CodeMirror/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/CodeMirror/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/CodeMirror/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/CodeMirror/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/CodeMirror/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/CodeMirror/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/CodeMirror/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/CodeMirror/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/CodeMirror/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/CodeMirror/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/CodeMirror/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/CodeMirror/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/CodeMirror/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/CodeMirror/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/CodeMirror/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/CodeMirror/deployments", + "created_at": "2013-04-04T19:53:50Z", + "updated_at": "2014-09-23T13:49:24Z", + "pushed_at": "2013-04-04T19:58:39Z", + "git_url": "git://github.com/bitwiseman/CodeMirror.git", + "ssh_url": "git@github.com:bitwiseman/CodeMirror.git", + "clone_url": "https://github.com/bitwiseman/CodeMirror.git", + "svn_url": "https://github.com/bitwiseman/CodeMirror", + "homepage": "http://codemirror.net/", + "size": 2996, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 114399860, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTQzOTk4NjA=", + "name": "community-functions", + "full_name": "bitwiseman/community-functions", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/community-functions", + "description": "Azure Functions to implement community automation for the Jenkins project", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/community-functions", + "forks_url": "https://api.github.com/repos/bitwiseman/community-functions/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/community-functions/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/community-functions/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/community-functions/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/community-functions/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/community-functions/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/community-functions/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/community-functions/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/community-functions/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/community-functions/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/community-functions/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/community-functions/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/community-functions/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/community-functions/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/community-functions/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/community-functions/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/community-functions/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/community-functions/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/community-functions/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/community-functions/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/community-functions/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/community-functions/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/community-functions/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/community-functions/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/community-functions/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/community-functions/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/community-functions/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/community-functions/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/community-functions/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/community-functions/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/community-functions/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/community-functions/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/community-functions/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/community-functions/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/community-functions/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/community-functions/deployments", + "created_at": "2017-12-15T18:25:59Z", + "updated_at": "2017-12-15T18:26:01Z", + "pushed_at": "2017-12-08T17:56:51Z", + "git_url": "git://github.com/bitwiseman/community-functions.git", + "ssh_url": "git@github.com:bitwiseman/community-functions.git", + "clone_url": "https://github.com/bitwiseman/community-functions.git", + "svn_url": "https://github.com/bitwiseman/community-functions", + "homepage": null, + "size": 42, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 217614895, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTc2MTQ4OTU=", + "name": "convert-to-declarative", + "full_name": "bitwiseman/convert-to-declarative", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/convert-to-declarative", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/convert-to-declarative", + "forks_url": "https://api.github.com/repos/bitwiseman/convert-to-declarative/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/convert-to-declarative/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/convert-to-declarative/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/convert-to-declarative/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/convert-to-declarative/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/convert-to-declarative/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/convert-to-declarative/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/convert-to-declarative/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/convert-to-declarative/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/convert-to-declarative/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/convert-to-declarative/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/convert-to-declarative/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/convert-to-declarative/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/convert-to-declarative/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/convert-to-declarative/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/convert-to-declarative/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/convert-to-declarative/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/convert-to-declarative/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/convert-to-declarative/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/convert-to-declarative/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/convert-to-declarative/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/convert-to-declarative/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/convert-to-declarative/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/convert-to-declarative/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/convert-to-declarative/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/convert-to-declarative/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/convert-to-declarative/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/convert-to-declarative/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/convert-to-declarative/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/convert-to-declarative/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/convert-to-declarative/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/convert-to-declarative/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/convert-to-declarative/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/convert-to-declarative/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/convert-to-declarative/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/convert-to-declarative/deployments", + "created_at": "2019-10-25T21:08:09Z", + "updated_at": "2019-10-25T21:08:11Z", + "pushed_at": "2019-10-25T22:34:49Z", + "git_url": "git://github.com/bitwiseman/convert-to-declarative.git", + "ssh_url": "git@github.com:bitwiseman/convert-to-declarative.git", + "clone_url": "https://github.com/bitwiseman/convert-to-declarative.git", + "svn_url": "https://github.com/bitwiseman/convert-to-declarative", + "homepage": null, + "size": 243, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 64276161, + "node_id": "MDEwOlJlcG9zaXRvcnk2NDI3NjE2MQ==", + "name": "core-plans", + "full_name": "bitwiseman/core-plans", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/core-plans", + "description": "Core Habitat Plan definitions", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/core-plans", + "forks_url": "https://api.github.com/repos/bitwiseman/core-plans/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/core-plans/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/core-plans/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/core-plans/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/core-plans/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/core-plans/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/core-plans/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/core-plans/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/core-plans/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/core-plans/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/core-plans/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/core-plans/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/core-plans/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/core-plans/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/core-plans/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/core-plans/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/core-plans/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/core-plans/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/core-plans/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/core-plans/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/core-plans/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/core-plans/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/core-plans/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/core-plans/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/core-plans/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/core-plans/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/core-plans/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/core-plans/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/core-plans/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/core-plans/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/core-plans/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/core-plans/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/core-plans/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/core-plans/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/core-plans/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/core-plans/deployments", + "created_at": "2016-07-27T04:06:28Z", + "updated_at": "2016-07-27T04:06:29Z", + "pushed_at": "2016-07-27T02:15:14Z", + "git_url": "git://github.com/bitwiseman/core-plans.git", + "ssh_url": "git@github.com:bitwiseman/core-plans.git", + "clone_url": "https://github.com/bitwiseman/core-plans.git", + "svn_url": "https://github.com/bitwiseman/core-plans", + "homepage": "", + "size": 1113, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Shell", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 80665210, + "node_id": "MDEwOlJlcG9zaXRvcnk4MDY2NTIxMA==", + "name": "docker", + "full_name": "bitwiseman/docker", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/docker", + "description": "Docker - the open-source application container engine", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/docker", + "forks_url": "https://api.github.com/repos/bitwiseman/docker/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/docker/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/docker/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/docker/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/docker/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/docker/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/docker/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/docker/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/docker/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/docker/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/docker/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/docker/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/docker/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/docker/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/docker/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/docker/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/docker/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/docker/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/docker/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/docker/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/docker/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/docker/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/docker/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/docker/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/docker/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/docker/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/docker/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/docker/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/docker/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/docker/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/docker/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/docker/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/docker/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/docker/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/docker/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/docker/deployments", + "created_at": "2017-02-01T21:17:50Z", + "updated_at": "2017-02-01T21:18:08Z", + "pushed_at": "2017-02-03T01:12:48Z", + "git_url": "git://github.com/bitwiseman/docker.git", + "ssh_url": "git@github.com:bitwiseman/docker.git", + "clone_url": "https://github.com/bitwiseman/docker.git", + "svn_url": "https://github.com/bitwiseman/docker", + "homepage": "http://www.docker.com", + "size": 122506, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Go", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 182301046, + "node_id": "MDEwOlJlcG9zaXRvcnkxODIzMDEwNDY=", + "name": "docker-workflow-plugin", + "full_name": "bitwiseman/docker-workflow-plugin", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/docker-workflow-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/docker-workflow-plugin", + "forks_url": "https://api.github.com/repos/bitwiseman/docker-workflow-plugin/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/docker-workflow-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/docker-workflow-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/docker-workflow-plugin/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/docker-workflow-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/docker-workflow-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/docker-workflow-plugin/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/docker-workflow-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/docker-workflow-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/docker-workflow-plugin/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/docker-workflow-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/docker-workflow-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/docker-workflow-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/docker-workflow-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/docker-workflow-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/docker-workflow-plugin/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/docker-workflow-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/docker-workflow-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/docker-workflow-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/docker-workflow-plugin/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/docker-workflow-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/docker-workflow-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/docker-workflow-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/docker-workflow-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/docker-workflow-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/docker-workflow-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/docker-workflow-plugin/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/docker-workflow-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/docker-workflow-plugin/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/docker-workflow-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/docker-workflow-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/docker-workflow-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/docker-workflow-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/docker-workflow-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/docker-workflow-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/docker-workflow-plugin/deployments", + "created_at": "2019-04-19T17:22:48Z", + "updated_at": "2019-04-19T17:22:51Z", + "pushed_at": "2019-04-16T13:26:13Z", + "git_url": "git://github.com/bitwiseman/docker-workflow-plugin.git", + "ssh_url": "git@github.com:bitwiseman/docker-workflow-plugin.git", + "clone_url": "https://github.com/bitwiseman/docker-workflow-plugin.git", + "svn_url": "https://github.com/bitwiseman/docker-workflow-plugin", + "homepage": "https://wiki.jenkins.io/display/JENKINS/Docker+Pipeline+Plugin", + "size": 579, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 162745265, + "node_id": "MDEwOlJlcG9zaXRvcnkxNjI3NDUyNjU=", + "name": "docs", + "full_name": "bitwiseman/docs", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/docs", + "description": "User documentation for Knative components", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/docs", + "forks_url": "https://api.github.com/repos/bitwiseman/docs/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/docs/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/docs/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/docs/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/docs/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/docs/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/docs/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/docs/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/docs/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/docs/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/docs/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/docs/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/docs/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/docs/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/docs/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/docs/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/docs/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/docs/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/docs/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/docs/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/docs/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/docs/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/docs/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/docs/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/docs/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/docs/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/docs/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/docs/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/docs/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/docs/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/docs/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/docs/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/docs/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/docs/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/docs/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/docs/deployments", + "created_at": "2018-12-21T18:21:17Z", + "updated_at": "2018-12-21T18:21:19Z", + "pushed_at": "2018-12-21T18:51:29Z", + "git_url": "git://github.com/bitwiseman/docs.git", + "ssh_url": "git@github.com:bitwiseman/docs.git", + "clone_url": "https://github.com/bitwiseman/docs.git", + "svn_url": "https://github.com/bitwiseman/docs", + "homepage": "", + "size": 13843, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Go", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 125604421, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjU2MDQ0MjE=", + "name": "draft-packs", + "full_name": "bitwiseman/draft-packs", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/draft-packs", + "description": "Draft packs tailored to run on Jenkins X", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/draft-packs", + "forks_url": "https://api.github.com/repos/bitwiseman/draft-packs/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/draft-packs/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/draft-packs/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/draft-packs/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/draft-packs/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/draft-packs/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/draft-packs/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/draft-packs/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/draft-packs/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/draft-packs/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/draft-packs/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/draft-packs/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/draft-packs/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/draft-packs/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/draft-packs/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/draft-packs/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/draft-packs/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/draft-packs/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/draft-packs/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/draft-packs/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/draft-packs/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/draft-packs/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/draft-packs/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/draft-packs/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/draft-packs/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/draft-packs/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/draft-packs/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/draft-packs/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/draft-packs/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/draft-packs/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/draft-packs/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/draft-packs/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/draft-packs/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/draft-packs/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/draft-packs/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/draft-packs/deployments", + "created_at": "2018-03-17T06:48:59Z", + "updated_at": "2018-03-17T06:49:01Z", + "pushed_at": "2018-03-17T06:50:20Z", + "git_url": "git://github.com/bitwiseman/draft-packs.git", + "ssh_url": "git@github.com:bitwiseman/draft-packs.git", + "clone_url": "https://github.com/bitwiseman/draft-packs.git", + "svn_url": "https://github.com/bitwiseman/draft-packs", + "homepage": null, + "size": 31, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Groovy", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 107302625, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDczMDI2MjU=", + "name": "Eloquent-JavaScript", + "full_name": "bitwiseman/Eloquent-JavaScript", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/Eloquent-JavaScript", + "description": "The second edition of Eloquent JavaScript", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/Eloquent-JavaScript", + "forks_url": "https://api.github.com/repos/bitwiseman/Eloquent-JavaScript/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/Eloquent-JavaScript/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/Eloquent-JavaScript/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/Eloquent-JavaScript/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/Eloquent-JavaScript/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/Eloquent-JavaScript/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/Eloquent-JavaScript/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/Eloquent-JavaScript/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/Eloquent-JavaScript/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/Eloquent-JavaScript/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/Eloquent-JavaScript/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/Eloquent-JavaScript/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/Eloquent-JavaScript/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/Eloquent-JavaScript/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/Eloquent-JavaScript/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/Eloquent-JavaScript/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/Eloquent-JavaScript/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/Eloquent-JavaScript/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/Eloquent-JavaScript/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/Eloquent-JavaScript/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/Eloquent-JavaScript/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/Eloquent-JavaScript/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/Eloquent-JavaScript/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/Eloquent-JavaScript/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/Eloquent-JavaScript/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/Eloquent-JavaScript/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/Eloquent-JavaScript/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/Eloquent-JavaScript/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/Eloquent-JavaScript/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/Eloquent-JavaScript/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/Eloquent-JavaScript/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/Eloquent-JavaScript/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/Eloquent-JavaScript/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/Eloquent-JavaScript/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/Eloquent-JavaScript/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/Eloquent-JavaScript/deployments", + "created_at": "2017-10-17T17:36:28Z", + "updated_at": "2017-10-17T17:36:30Z", + "pushed_at": "2017-10-15T00:29:24Z", + "git_url": "git://github.com/bitwiseman/Eloquent-JavaScript.git", + "ssh_url": "git@github.com:bitwiseman/Eloquent-JavaScript.git", + "clone_url": "https://github.com/bitwiseman/Eloquent-JavaScript.git", + "svn_url": "https://github.com/bitwiseman/Eloquent-JavaScript", + "homepage": null, + "size": 16307, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 174208573, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzQyMDg1NzM=", + "name": "environment-playerjuniper-staging", + "full_name": "bitwiseman/environment-playerjuniper-staging", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/environment-playerjuniper-staging", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/bitwiseman/environment-playerjuniper-staging", + "forks_url": "https://api.github.com/repos/bitwiseman/environment-playerjuniper-staging/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/environment-playerjuniper-staging/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/environment-playerjuniper-staging/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/environment-playerjuniper-staging/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/environment-playerjuniper-staging/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/environment-playerjuniper-staging/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/environment-playerjuniper-staging/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/environment-playerjuniper-staging/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/environment-playerjuniper-staging/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/environment-playerjuniper-staging/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/environment-playerjuniper-staging/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/environment-playerjuniper-staging/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/environment-playerjuniper-staging/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/environment-playerjuniper-staging/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/environment-playerjuniper-staging/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/environment-playerjuniper-staging/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/environment-playerjuniper-staging/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/environment-playerjuniper-staging/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/environment-playerjuniper-staging/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/environment-playerjuniper-staging/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/environment-playerjuniper-staging/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/environment-playerjuniper-staging/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/environment-playerjuniper-staging/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/environment-playerjuniper-staging/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/environment-playerjuniper-staging/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/environment-playerjuniper-staging/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/environment-playerjuniper-staging/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/environment-playerjuniper-staging/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/environment-playerjuniper-staging/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/environment-playerjuniper-staging/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/environment-playerjuniper-staging/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/environment-playerjuniper-staging/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/environment-playerjuniper-staging/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/environment-playerjuniper-staging/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/environment-playerjuniper-staging/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/environment-playerjuniper-staging/deployments", + "created_at": "2019-03-06T19:37:35Z", + "updated_at": "2019-03-06T19:37:43Z", + "pushed_at": "2019-03-06T19:37:41Z", + "git_url": "git://github.com/bitwiseman/environment-playerjuniper-staging.git", + "ssh_url": "git@github.com:bitwiseman/environment-playerjuniper-staging.git", + "clone_url": "https://github.com/bitwiseman/environment-playerjuniper-staging.git", + "svn_url": "https://github.com/bitwiseman/environment-playerjuniper-staging", + "homepage": null, + "size": 21, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Makefile", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 174237541, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzQyMzc1NDE=", + "name": "environment-wolverinewhip-staging", + "full_name": "bitwiseman/environment-wolverinewhip-staging", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/environment-wolverinewhip-staging", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/environment-wolverinewhip-staging", + "forks_url": "https://api.github.com/repos/bitwiseman/environment-wolverinewhip-staging/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/environment-wolverinewhip-staging/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/environment-wolverinewhip-staging/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/environment-wolverinewhip-staging/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/environment-wolverinewhip-staging/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/environment-wolverinewhip-staging/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/environment-wolverinewhip-staging/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/environment-wolverinewhip-staging/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/environment-wolverinewhip-staging/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/environment-wolverinewhip-staging/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/environment-wolverinewhip-staging/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/environment-wolverinewhip-staging/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/environment-wolverinewhip-staging/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/environment-wolverinewhip-staging/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/environment-wolverinewhip-staging/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/environment-wolverinewhip-staging/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/environment-wolverinewhip-staging/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/environment-wolverinewhip-staging/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/environment-wolverinewhip-staging/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/environment-wolverinewhip-staging/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/environment-wolverinewhip-staging/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/environment-wolverinewhip-staging/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/environment-wolverinewhip-staging/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/environment-wolverinewhip-staging/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/environment-wolverinewhip-staging/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/environment-wolverinewhip-staging/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/environment-wolverinewhip-staging/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/environment-wolverinewhip-staging/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/environment-wolverinewhip-staging/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/environment-wolverinewhip-staging/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/environment-wolverinewhip-staging/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/environment-wolverinewhip-staging/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/environment-wolverinewhip-staging/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/environment-wolverinewhip-staging/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/environment-wolverinewhip-staging/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/environment-wolverinewhip-staging/deployments", + "created_at": "2019-03-06T23:37:54Z", + "updated_at": "2019-03-06T23:37:56Z", + "pushed_at": "2019-03-06T23:40:51Z", + "git_url": "git://github.com/bitwiseman/environment-wolverinewhip-staging.git", + "ssh_url": "git@github.com:bitwiseman/environment-wolverinewhip-staging.git", + "clone_url": "https://github.com/bitwiseman/environment-wolverinewhip-staging.git", + "svn_url": "https://github.com/bitwiseman/environment-wolverinewhip-staging", + "homepage": null, + "size": 23, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Makefile", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 16818596, + "node_id": "MDEwOlJlcG9zaXRvcnkxNjgxODU5Ng==", + "name": "epubcheck", + "full_name": "bitwiseman/epubcheck", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/epubcheck", + "description": "Validation tool for EPUB", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/epubcheck", + "forks_url": "https://api.github.com/repos/bitwiseman/epubcheck/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/epubcheck/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/epubcheck/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/epubcheck/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/epubcheck/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/epubcheck/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/epubcheck/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/epubcheck/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/epubcheck/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/epubcheck/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/epubcheck/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/epubcheck/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/epubcheck/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/epubcheck/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/epubcheck/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/epubcheck/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/epubcheck/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/epubcheck/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/epubcheck/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/epubcheck/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/epubcheck/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/epubcheck/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/epubcheck/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/epubcheck/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/epubcheck/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/epubcheck/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/epubcheck/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/epubcheck/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/epubcheck/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/epubcheck/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/epubcheck/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/epubcheck/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/epubcheck/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/epubcheck/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/epubcheck/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/epubcheck/deployments", + "created_at": "2014-02-13T21:57:49Z", + "updated_at": "2018-10-10T05:35:43Z", + "pushed_at": "2014-02-13T08:35:33Z", + "git_url": "git://github.com/bitwiseman/epubcheck.git", + "ssh_url": "git@github.com:bitwiseman/epubcheck.git", + "clone_url": "https://github.com/bitwiseman/epubcheck.git", + "svn_url": "https://github.com/bitwiseman/epubcheck", + "homepage": "", + "size": 47843, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 10037706, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDAzNzcwNg==", + "name": "esformatter", + "full_name": "bitwiseman/esformatter", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/esformatter", + "description": "ECMAScript code beautifier/formatter [WIP]", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/esformatter", + "forks_url": "https://api.github.com/repos/bitwiseman/esformatter/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/esformatter/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/esformatter/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/esformatter/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/esformatter/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/esformatter/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/esformatter/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/esformatter/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/esformatter/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/esformatter/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/esformatter/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/esformatter/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/esformatter/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/esformatter/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/esformatter/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/esformatter/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/esformatter/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/esformatter/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/esformatter/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/esformatter/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/esformatter/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/esformatter/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/esformatter/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/esformatter/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/esformatter/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/esformatter/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/esformatter/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/esformatter/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/esformatter/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/esformatter/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/esformatter/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/esformatter/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/esformatter/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/esformatter/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/esformatter/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/esformatter/deployments", + "created_at": "2013-05-13T18:01:33Z", + "updated_at": "2013-05-13T18:01:33Z", + "pushed_at": "2013-05-03T13:28:07Z", + "git_url": "git://github.com/bitwiseman/esformatter.git", + "ssh_url": "git@github.com:bitwiseman/esformatter.git", + "clone_url": "https://github.com/bitwiseman/esformatter.git", + "svn_url": "https://github.com/bitwiseman/esformatter", + "homepage": "", + "size": 239, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 66815443, + "node_id": "MDEwOlJlcG9zaXRvcnk2NjgxNTQ0Mw==", + "name": "eslint", + "full_name": "bitwiseman/eslint", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/eslint", + "description": "A fully pluggable tool for identifying and reporting on patterns in JavaScript.", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/eslint", + "forks_url": "https://api.github.com/repos/bitwiseman/eslint/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/eslint/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/eslint/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/eslint/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/eslint/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/eslint/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/eslint/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/eslint/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/eslint/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/eslint/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/eslint/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/eslint/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/eslint/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/eslint/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/eslint/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/eslint/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/eslint/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/eslint/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/eslint/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/eslint/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/eslint/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/eslint/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/eslint/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/eslint/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/eslint/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/eslint/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/eslint/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/eslint/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/eslint/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/eslint/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/eslint/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/eslint/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/eslint/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/eslint/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/eslint/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/eslint/deployments", + "created_at": "2016-08-29T05:55:42Z", + "updated_at": "2016-08-29T05:55:49Z", + "pushed_at": "2016-08-29T05:45:21Z", + "git_url": "git://github.com/bitwiseman/eslint.git", + "ssh_url": "git@github.com:bitwiseman/eslint.git", + "clone_url": "https://github.com/bitwiseman/eslint.git", + "svn_url": "https://github.com/bitwiseman/eslint", + "homepage": "http://eslint.org", + "size": 18365, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 9605230, + "node_id": "MDEwOlJlcG9zaXRvcnk5NjA1MjMw", + "name": "esprima", + "full_name": "bitwiseman/esprima", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/esprima", + "description": "ECMAScript parsing infrastructure for multipurpose analysis", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/esprima", + "forks_url": "https://api.github.com/repos/bitwiseman/esprima/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/esprima/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/esprima/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/esprima/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/esprima/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/esprima/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/esprima/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/esprima/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/esprima/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/esprima/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/esprima/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/esprima/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/esprima/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/esprima/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/esprima/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/esprima/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/esprima/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/esprima/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/esprima/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/esprima/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/esprima/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/esprima/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/esprima/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/esprima/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/esprima/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/esprima/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/esprima/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/esprima/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/esprima/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/esprima/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/esprima/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/esprima/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/esprima/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/esprima/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/esprima/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/esprima/deployments", + "created_at": "2013-04-22T17:58:11Z", + "updated_at": "2015-01-26T19:55:36Z", + "pushed_at": "2013-04-19T13:45:47Z", + "git_url": "git://github.com/bitwiseman/esprima.git", + "ssh_url": "git@github.com:bitwiseman/esprima.git", + "clone_url": "https://github.com/bitwiseman/esprima.git", + "svn_url": "https://github.com/bitwiseman/esprima", + "homepage": "http://esprima.org", + "size": 3907, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "bsd-2-clause", + "name": "BSD 2-Clause \"Simplified\" License", + "spdx_id": "BSD-2-Clause", + "url": "https://api.github.com/licenses/bsd-2-clause", + "node_id": "MDc6TGljZW5zZTQ=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 13455931, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzQ1NTkzMQ==", + "name": "etherpad-lite", + "full_name": "bitwiseman/etherpad-lite", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/etherpad-lite", + "description": "Really real-time collaborative document editing for the rest of us", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/etherpad-lite", + "forks_url": "https://api.github.com/repos/bitwiseman/etherpad-lite/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/etherpad-lite/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/etherpad-lite/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/etherpad-lite/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/etherpad-lite/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/etherpad-lite/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/etherpad-lite/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/etherpad-lite/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/etherpad-lite/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/etherpad-lite/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/etherpad-lite/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/etherpad-lite/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/etherpad-lite/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/etherpad-lite/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/etherpad-lite/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/etherpad-lite/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/etherpad-lite/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/etherpad-lite/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/etherpad-lite/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/etherpad-lite/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/etherpad-lite/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/etherpad-lite/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/etherpad-lite/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/etherpad-lite/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/etherpad-lite/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/etherpad-lite/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/etherpad-lite/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/etherpad-lite/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/etherpad-lite/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/etherpad-lite/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/etherpad-lite/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/etherpad-lite/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/etherpad-lite/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/etherpad-lite/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/etherpad-lite/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/etherpad-lite/deployments", + "created_at": "2013-10-09T22:12:15Z", + "updated_at": "2013-10-09T22:12:16Z", + "pushed_at": "2013-10-09T18:46:00Z", + "git_url": "git://github.com/bitwiseman/etherpad-lite.git", + "ssh_url": "git@github.com:bitwiseman/etherpad-lite.git", + "clone_url": "https://github.com/bitwiseman/etherpad-lite.git", + "svn_url": "https://github.com/bitwiseman/etherpad-lite", + "homepage": "http://etherpad.org", + "size": 148, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "develop", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 105587689, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDU1ODc2ODk=", + "name": "events-materials", + "full_name": "bitwiseman/events-materials", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/events-materials", + "description": "Collection of materials for organizing Jenkins Community Events", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/events-materials", + "forks_url": "https://api.github.com/repos/bitwiseman/events-materials/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/events-materials/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/events-materials/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/events-materials/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/events-materials/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/events-materials/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/events-materials/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/events-materials/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/events-materials/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/events-materials/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/events-materials/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/events-materials/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/events-materials/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/events-materials/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/events-materials/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/events-materials/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/events-materials/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/events-materials/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/events-materials/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/events-materials/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/events-materials/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/events-materials/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/events-materials/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/events-materials/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/events-materials/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/events-materials/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/events-materials/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/events-materials/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/events-materials/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/events-materials/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/events-materials/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/events-materials/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/events-materials/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/events-materials/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/events-materials/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/events-materials/deployments", + "created_at": "2017-10-02T21:36:13Z", + "updated_at": "2017-08-30T21:53:18Z", + "pushed_at": "2018-04-26T19:49:00Z", + "git_url": "git://github.com/bitwiseman/events-materials.git", + "ssh_url": "git@github.com:bitwiseman/events-materials.git", + "clone_url": "https://github.com/bitwiseman/events-materials.git", + "svn_url": "https://github.com/bitwiseman/events-materials", + "homepage": "", + "size": 23, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 116308693, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYzMDg2OTM=", + "name": "external-artifacts", + "full_name": "bitwiseman/external-artifacts", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/external-artifacts", + "description": "A Pipeline Shared Library to support external artifacts in Azure", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/external-artifacts", + "forks_url": "https://api.github.com/repos/bitwiseman/external-artifacts/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/external-artifacts/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/external-artifacts/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/external-artifacts/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/external-artifacts/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/external-artifacts/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/external-artifacts/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/external-artifacts/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/external-artifacts/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/external-artifacts/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/external-artifacts/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/external-artifacts/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/external-artifacts/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/external-artifacts/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/external-artifacts/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/external-artifacts/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/external-artifacts/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/external-artifacts/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/external-artifacts/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/external-artifacts/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/external-artifacts/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/external-artifacts/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/external-artifacts/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/external-artifacts/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/external-artifacts/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/external-artifacts/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/external-artifacts/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/external-artifacts/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/external-artifacts/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/external-artifacts/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/external-artifacts/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/external-artifacts/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/external-artifacts/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/external-artifacts/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/external-artifacts/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/external-artifacts/deployments", + "created_at": "2018-01-04T21:19:59Z", + "updated_at": "2018-01-04T21:20:01Z", + "pushed_at": "2018-01-04T21:57:54Z", + "git_url": "git://github.com/bitwiseman/external-artifacts.git", + "ssh_url": "git@github.com:bitwiseman/external-artifacts.git", + "clone_url": "https://github.com/bitwiseman/external-artifacts.git", + "svn_url": "https://github.com/bitwiseman/external-artifacts", + "homepage": "", + "size": 78, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Shell", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "agpl-3.0", + "name": "GNU Affero General Public License v3.0", + "spdx_id": "AGPL-3.0", + "url": "https://api.github.com/licenses/agpl-3.0", + "node_id": "MDc6TGljZW5zZTE=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 99632340, + "node_id": "MDEwOlJlcG9zaXRvcnk5OTYzMjM0MA==", + "name": "ezprompt", + "full_name": "bitwiseman/ezprompt", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/ezprompt", + "description": "An easy to use webapp for creating simple bash prompts.", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/ezprompt", + "forks_url": "https://api.github.com/repos/bitwiseman/ezprompt/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/ezprompt/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/ezprompt/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/ezprompt/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/ezprompt/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/ezprompt/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/ezprompt/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/ezprompt/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/ezprompt/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/ezprompt/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/ezprompt/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/ezprompt/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/ezprompt/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/ezprompt/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/ezprompt/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/ezprompt/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/ezprompt/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/ezprompt/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/ezprompt/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/ezprompt/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/ezprompt/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/ezprompt/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/ezprompt/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/ezprompt/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/ezprompt/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/ezprompt/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/ezprompt/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/ezprompt/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/ezprompt/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/ezprompt/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/ezprompt/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/ezprompt/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/ezprompt/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/ezprompt/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/ezprompt/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/ezprompt/deployments", + "created_at": "2017-08-08T00:23:58Z", + "updated_at": "2017-08-08T00:23:59Z", + "pushed_at": "2016-11-12T15:32:13Z", + "git_url": "git://github.com/bitwiseman/ezprompt.git", + "ssh_url": "git@github.com:bitwiseman/ezprompt.git", + "clone_url": "https://github.com/bitwiseman/ezprompt.git", + "svn_url": "https://github.com/bitwiseman/ezprompt", + "homepage": null, + "size": 505, + "stargazers_count": 0, + "watchers_count": 0, + "language": "CSS", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 116060874, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTYwNjA4NzQ=", + "name": "fs-lint", + "full_name": "bitwiseman/fs-lint", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/fs-lint", + "description": "File naming consistency verification tool.", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/fs-lint", + "forks_url": "https://api.github.com/repos/bitwiseman/fs-lint/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/fs-lint/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/fs-lint/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/fs-lint/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/fs-lint/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/fs-lint/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/fs-lint/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/fs-lint/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/fs-lint/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/fs-lint/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/fs-lint/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/fs-lint/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/fs-lint/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/fs-lint/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/fs-lint/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/fs-lint/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/fs-lint/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/fs-lint/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/fs-lint/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/fs-lint/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/fs-lint/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/fs-lint/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/fs-lint/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/fs-lint/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/fs-lint/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/fs-lint/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/fs-lint/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/fs-lint/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/fs-lint/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/fs-lint/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/fs-lint/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/fs-lint/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/fs-lint/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/fs-lint/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/fs-lint/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/fs-lint/deployments", + "created_at": "2018-01-02T21:53:30Z", + "updated_at": "2018-01-02T21:53:32Z", + "pushed_at": "2016-04-04T23:29:46Z", + "git_url": "git://github.com/bitwiseman/fs-lint.git", + "ssh_url": "git@github.com:bitwiseman/fs-lint.git", + "clone_url": "https://github.com/bitwiseman/fs-lint.git", + "svn_url": "https://github.com/bitwiseman/fs-lint", + "homepage": null, + "size": 136, + "stargazers_count": 0, + "watchers_count": 0, + "language": "CoffeeScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 60197390, + "node_id": "MDEwOlJlcG9zaXRvcnk2MDE5NzM5MA==", + "name": "git-plugin", + "full_name": "bitwiseman/git-plugin", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/git-plugin", + "description": "Git plugin for Jenkins", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/git-plugin", + "forks_url": "https://api.github.com/repos/bitwiseman/git-plugin/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/git-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/git-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/git-plugin/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/git-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/git-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/git-plugin/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/git-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/git-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/git-plugin/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/git-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/git-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/git-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/git-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/git-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/git-plugin/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/git-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/git-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/git-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/git-plugin/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/git-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/git-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/git-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/git-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/git-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/git-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/git-plugin/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/git-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/git-plugin/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/git-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/git-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/git-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/git-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/git-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/git-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/git-plugin/deployments", + "created_at": "2016-06-01T17:28:57Z", + "updated_at": "2019-07-19T21:29:24Z", + "pushed_at": "2019-07-29T17:39:56Z", + "git_url": "git://github.com/bitwiseman/git-plugin.git", + "ssh_url": "git@github.com:bitwiseman/git-plugin.git", + "clone_url": "https://github.com/bitwiseman/git-plugin.git", + "svn_url": "https://github.com/bitwiseman/git-plugin", + "homepage": "http://wiki.jenkins-ci.org/display/JENKINS/Git Plugin", + "size": 6150, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 171553318, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzE1NTMzMTg=", + "name": "gitea-plugin", + "full_name": "bitwiseman/gitea-plugin", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/gitea-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/gitea-plugin", + "forks_url": "https://api.github.com/repos/bitwiseman/gitea-plugin/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/gitea-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/gitea-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/gitea-plugin/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/gitea-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/gitea-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/gitea-plugin/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/gitea-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/gitea-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/gitea-plugin/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/gitea-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/gitea-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/gitea-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/gitea-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/gitea-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/gitea-plugin/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/gitea-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/gitea-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/gitea-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/gitea-plugin/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/gitea-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/gitea-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/gitea-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/gitea-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/gitea-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/gitea-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/gitea-plugin/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/gitea-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/gitea-plugin/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/gitea-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/gitea-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/gitea-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/gitea-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/gitea-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/gitea-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/gitea-plugin/deployments", + "created_at": "2019-02-19T21:32:57Z", + "updated_at": "2019-02-19T21:32:59Z", + "pushed_at": "2019-02-15T15:45:17Z", + "git_url": "git://github.com/bitwiseman/gitea-plugin.git", + "ssh_url": "git@github.com:bitwiseman/gitea-plugin.git", + "clone_url": "https://github.com/bitwiseman/gitea-plugin.git", + "svn_url": "https://github.com/bitwiseman/gitea-plugin", + "homepage": "", + "size": 279, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 183521902, + "node_id": "MDEwOlJlcG9zaXRvcnkxODM1MjE5MDI=", + "name": "github-api", + "full_name": "bitwiseman/github-api", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/github-api", + "forks_url": "https://api.github.com/repos/bitwiseman/github-api/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/github-api/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/github-api/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/github-api/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/github-api/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/github-api/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/github-api/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/github-api/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/github-api/deployments", + "created_at": "2019-04-25T23:08:44Z", + "updated_at": "2019-10-25T01:51:28Z", + "pushed_at": "2019-10-25T01:51:21Z", + "git_url": "git://github.com/bitwiseman/github-api.git", + "ssh_url": "git@github.com:bitwiseman/github-api.git", + "clone_url": "https://github.com/bitwiseman/github-api.git", + "svn_url": "https://github.com/bitwiseman/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 13504, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 212413066, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTI0MTMwNjY=", + "name": "github-api-test-org-github-api-test", + "full_name": "bitwiseman/github-api-test-org-github-api-test", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/github-api-test-org-github-api-test", + "description": "A test repository for testing the github-api project", + "fork": false, + "url": "https://api.github.com/repos/bitwiseman/github-api-test-org-github-api-test", + "forks_url": "https://api.github.com/repos/bitwiseman/github-api-test-org-github-api-test/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/github-api-test-org-github-api-test/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/github-api-test-org-github-api-test/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/github-api-test-org-github-api-test/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/github-api-test-org-github-api-test/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/github-api-test-org-github-api-test/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/github-api-test-org-github-api-test/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/github-api-test-org-github-api-test/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/github-api-test-org-github-api-test/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/github-api-test-org-github-api-test/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/github-api-test-org-github-api-test/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/github-api-test-org-github-api-test/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/github-api-test-org-github-api-test/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/github-api-test-org-github-api-test/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/github-api-test-org-github-api-test/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/github-api-test-org-github-api-test/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/github-api-test-org-github-api-test/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/github-api-test-org-github-api-test/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/github-api-test-org-github-api-test/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/github-api-test-org-github-api-test/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/github-api-test-org-github-api-test/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/github-api-test-org-github-api-test/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/github-api-test-org-github-api-test/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/github-api-test-org-github-api-test/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/github-api-test-org-github-api-test/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/github-api-test-org-github-api-test/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/github-api-test-org-github-api-test/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/github-api-test-org-github-api-test/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/github-api-test-org-github-api-test/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/github-api-test-org-github-api-test/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/github-api-test-org-github-api-test/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/github-api-test-org-github-api-test/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/github-api-test-org-github-api-test/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/github-api-test-org-github-api-test/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/github-api-test-org-github-api-test/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/github-api-test-org-github-api-test/deployments", + "created_at": "2019-10-02T18:27:52Z", + "updated_at": "2019-10-02T18:27:56Z", + "pushed_at": "2019-10-02T18:27:53Z", + "git_url": "git://github.com/bitwiseman/github-api-test-org-github-api-test.git", + "ssh_url": "git@github.com:bitwiseman/github-api-test-org-github-api-test.git", + "clone_url": "https://github.com/bitwiseman/github-api-test-org-github-api-test.git", + "svn_url": "https://github.com/bitwiseman/github-api-test-org-github-api-test", + "homepage": "http://github-api.kohsuke.org/", + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 170782009, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzA3ODIwMDk=", + "name": "github-branch-source-plugin", + "full_name": "bitwiseman/github-branch-source-plugin", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/github-branch-source-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin", + "forks_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/github-branch-source-plugin/deployments", + "created_at": "2019-02-15T01:18:09Z", + "updated_at": "2019-09-27T19:25:53Z", + "pushed_at": "2019-10-02T22:28:40Z", + "git_url": "git://github.com/bitwiseman/github-branch-source-plugin.git", + "ssh_url": "git@github.com:bitwiseman/github-branch-source-plugin.git", + "clone_url": "https://github.com/bitwiseman/github-branch-source-plugin.git", + "svn_url": "https://github.com/bitwiseman/github-branch-source-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/GitHub+Branch+Source+Plugin", + "size": 1645, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 67171079, + "node_id": "MDEwOlJlcG9zaXRvcnk2NzE3MTA3OQ==", + "name": "gogs", + "full_name": "bitwiseman/gogs", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/gogs", + "description": "Gogs (Go Git Service) is a painless self-hosted Git service.", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/gogs", + "forks_url": "https://api.github.com/repos/bitwiseman/gogs/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/gogs/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/gogs/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/gogs/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/gogs/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/gogs/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/gogs/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/gogs/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/gogs/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/gogs/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/gogs/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/gogs/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/gogs/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/gogs/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/gogs/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/gogs/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/gogs/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/gogs/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/gogs/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/gogs/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/gogs/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/gogs/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/gogs/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/gogs/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/gogs/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/gogs/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/gogs/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/gogs/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/gogs/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/gogs/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/gogs/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/gogs/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/gogs/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/gogs/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/gogs/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/gogs/deployments", + "created_at": "2016-09-01T22:34:22Z", + "updated_at": "2016-09-01T22:34:24Z", + "pushed_at": "2016-09-01T20:15:44Z", + "git_url": "git://github.com/bitwiseman/gogs.git", + "ssh_url": "git@github.com:bitwiseman/gogs.git", + "clone_url": "https://github.com/bitwiseman/gogs.git", + "svn_url": "https://github.com/bitwiseman/gogs", + "homepage": "https://gogs.io", + "size": 89453, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Go", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 67171036, + "node_id": "MDEwOlJlcG9zaXRvcnk2NzE3MTAzNg==", + "name": "gogs-branch-source-plugin", + "full_name": "bitwiseman/gogs-branch-source-plugin", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/gogs-branch-source-plugin", + "description": "Provides Jenkins SCMSource and Jenkins SCMNavigator for Gogs", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/gogs-branch-source-plugin", + "forks_url": "https://api.github.com/repos/bitwiseman/gogs-branch-source-plugin/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/gogs-branch-source-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/gogs-branch-source-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/gogs-branch-source-plugin/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/gogs-branch-source-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/gogs-branch-source-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/gogs-branch-source-plugin/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/gogs-branch-source-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/gogs-branch-source-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/gogs-branch-source-plugin/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/gogs-branch-source-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/gogs-branch-source-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/gogs-branch-source-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/gogs-branch-source-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/gogs-branch-source-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/gogs-branch-source-plugin/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/gogs-branch-source-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/gogs-branch-source-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/gogs-branch-source-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/gogs-branch-source-plugin/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/gogs-branch-source-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/gogs-branch-source-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/gogs-branch-source-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/gogs-branch-source-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/gogs-branch-source-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/gogs-branch-source-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/gogs-branch-source-plugin/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/gogs-branch-source-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/gogs-branch-source-plugin/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/gogs-branch-source-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/gogs-branch-source-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/gogs-branch-source-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/gogs-branch-source-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/gogs-branch-source-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/gogs-branch-source-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/gogs-branch-source-plugin/deployments", + "created_at": "2016-09-01T22:33:38Z", + "updated_at": "2016-09-01T22:33:39Z", + "pushed_at": "2016-08-18T13:22:28Z", + "git_url": "git://github.com/bitwiseman/gogs-branch-source-plugin.git", + "ssh_url": "git@github.com:bitwiseman/gogs-branch-source-plugin.git", + "clone_url": "https://github.com/bitwiseman/gogs-branch-source-plugin.git", + "svn_url": "https://github.com/bitwiseman/gogs-branch-source-plugin", + "homepage": "", + "size": 108, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 167868860, + "node_id": "MDEwOlJlcG9zaXRvcnkxNjc4Njg4NjA=", + "name": "grammars-v4", + "full_name": "bitwiseman/grammars-v4", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/grammars-v4", + "description": "Grammars written for ANTLR v4; expectation that the grammars are free of actions.", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/grammars-v4", + "forks_url": "https://api.github.com/repos/bitwiseman/grammars-v4/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/grammars-v4/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/grammars-v4/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/grammars-v4/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/grammars-v4/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/grammars-v4/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/grammars-v4/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/grammars-v4/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/grammars-v4/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/grammars-v4/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/grammars-v4/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/grammars-v4/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/grammars-v4/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/grammars-v4/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/grammars-v4/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/grammars-v4/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/grammars-v4/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/grammars-v4/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/grammars-v4/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/grammars-v4/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/grammars-v4/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/grammars-v4/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/grammars-v4/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/grammars-v4/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/grammars-v4/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/grammars-v4/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/grammars-v4/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/grammars-v4/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/grammars-v4/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/grammars-v4/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/grammars-v4/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/grammars-v4/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/grammars-v4/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/grammars-v4/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/grammars-v4/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/grammars-v4/deployments", + "created_at": "2019-01-27T23:03:19Z", + "updated_at": "2019-01-27T23:03:23Z", + "pushed_at": "2019-01-16T22:17:02Z", + "git_url": "git://github.com/bitwiseman/grammars-v4.git", + "ssh_url": "git@github.com:bitwiseman/grammars-v4.git", + "clone_url": "https://github.com/bitwiseman/grammars-v4.git", + "svn_url": "https://github.com/bitwiseman/grammars-v4", + "homepage": "", + "size": 20836, + "stargazers_count": 0, + "watchers_count": 0, + "language": "ANTLR", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 192013694, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTIwMTM2OTQ=", + "name": "groovy-sandbox", + "full_name": "bitwiseman/groovy-sandbox", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/groovy-sandbox", + "description": "Compile-time transformer to run Groovy code in a restrictive sandbox ", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/groovy-sandbox", + "forks_url": "https://api.github.com/repos/bitwiseman/groovy-sandbox/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/groovy-sandbox/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/groovy-sandbox/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/groovy-sandbox/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/groovy-sandbox/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/groovy-sandbox/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/groovy-sandbox/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/groovy-sandbox/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/groovy-sandbox/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/groovy-sandbox/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/groovy-sandbox/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/groovy-sandbox/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/groovy-sandbox/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/groovy-sandbox/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/groovy-sandbox/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/groovy-sandbox/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/groovy-sandbox/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/groovy-sandbox/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/groovy-sandbox/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/groovy-sandbox/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/groovy-sandbox/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/groovy-sandbox/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/groovy-sandbox/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/groovy-sandbox/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/groovy-sandbox/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/groovy-sandbox/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/groovy-sandbox/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/groovy-sandbox/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/groovy-sandbox/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/groovy-sandbox/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/groovy-sandbox/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/groovy-sandbox/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/groovy-sandbox/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/groovy-sandbox/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/groovy-sandbox/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/groovy-sandbox/deployments", + "created_at": "2019-06-14T22:51:00Z", + "updated_at": "2019-06-14T22:51:02Z", + "pushed_at": "2019-03-29T15:18:46Z", + "git_url": "git://github.com/bitwiseman/groovy-sandbox.git", + "ssh_url": "git@github.com:bitwiseman/groovy-sandbox.git", + "clone_url": "https://github.com/bitwiseman/groovy-sandbox.git", + "svn_url": "https://github.com/bitwiseman/groovy-sandbox", + "homepage": "http://groovy-sandbox.kohsuke.org/", + "size": 1061, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testSubscribers/__files/user_1958953_repos-6e87f8e2-f745-47ab-884a-4a092e61d385.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testSubscribers/__files/user_1958953_repos-6e87f8e2-f745-47ab-884a-4a092e61d385.json new file mode 100644 index 0000000000..9f3d14ed4a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testSubscribers/__files/user_1958953_repos-6e87f8e2-f745-47ab-884a-4a092e61d385.json @@ -0,0 +1,3098 @@ +[ + { + "id": 9604977, + "node_id": "MDEwOlJlcG9zaXRvcnk5NjA0OTc3", + "name": "jshint", + "full_name": "bitwiseman/jshint", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/jshint", + "description": "JSHint is a community-driven tool to detect errors in JavaScript code and enforce your team's coding conventions.", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/jshint", + "forks_url": "https://api.github.com/repos/bitwiseman/jshint/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/jshint/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/jshint/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/jshint/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/jshint/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/jshint/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/jshint/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/jshint/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/jshint/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/jshint/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/jshint/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/jshint/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/jshint/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/jshint/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/jshint/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/jshint/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/jshint/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/jshint/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/jshint/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/jshint/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/jshint/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/jshint/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/jshint/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/jshint/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/jshint/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/jshint/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/jshint/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/jshint/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/jshint/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/jshint/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/jshint/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/jshint/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/jshint/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/jshint/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/jshint/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/jshint/deployments", + "created_at": "2013-04-22T17:43:18Z", + "updated_at": "2013-04-22T17:43:18Z", + "pushed_at": "2013-04-12T21:28:53Z", + "git_url": "git://github.com/bitwiseman/jshint.git", + "ssh_url": "git@github.com:bitwiseman/jshint.git", + "clone_url": "https://github.com/bitwiseman/jshint.git", + "svn_url": "https://github.com/bitwiseman/jshint", + "homepage": "http://jshint.com", + "size": 2772, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 4996951, + "node_id": "MDEwOlJlcG9zaXRvcnk0OTk2OTUx", + "name": "JSV", + "full_name": "bitwiseman/JSV", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/JSV", + "description": "A JavaScript implementation of an extendable, fully compliant JSON Schema validator.", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/JSV", + "forks_url": "https://api.github.com/repos/bitwiseman/JSV/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/JSV/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/JSV/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/JSV/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/JSV/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/JSV/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/JSV/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/JSV/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/JSV/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/JSV/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/JSV/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/JSV/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/JSV/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/JSV/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/JSV/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/JSV/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/JSV/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/JSV/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/JSV/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/JSV/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/JSV/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/JSV/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/JSV/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/JSV/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/JSV/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/JSV/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/JSV/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/JSV/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/JSV/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/JSV/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/JSV/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/JSV/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/JSV/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/JSV/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/JSV/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/JSV/deployments", + "created_at": "2012-07-12T00:13:07Z", + "updated_at": "2013-03-16T00:59:12Z", + "pushed_at": "2012-07-11T22:14:09Z", + "git_url": "git://github.com/bitwiseman/JSV.git", + "ssh_url": "git@github.com:bitwiseman/JSV.git", + "clone_url": "https://github.com/bitwiseman/JSV.git", + "svn_url": "https://github.com/bitwiseman/JSV", + "homepage": "", + "size": 446, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": false, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 98933067, + "node_id": "MDEwOlJlcG9zaXRvcnk5ODkzMzA2Nw==", + "name": "junit-plugin", + "full_name": "bitwiseman/junit-plugin", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/junit-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/junit-plugin", + "forks_url": "https://api.github.com/repos/bitwiseman/junit-plugin/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/junit-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/junit-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/junit-plugin/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/junit-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/junit-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/junit-plugin/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/junit-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/junit-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/junit-plugin/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/junit-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/junit-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/junit-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/junit-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/junit-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/junit-plugin/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/junit-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/junit-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/junit-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/junit-plugin/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/junit-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/junit-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/junit-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/junit-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/junit-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/junit-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/junit-plugin/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/junit-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/junit-plugin/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/junit-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/junit-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/junit-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/junit-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/junit-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/junit-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/junit-plugin/deployments", + "created_at": "2017-07-31T21:52:57Z", + "updated_at": "2017-07-31T21:52:59Z", + "pushed_at": "2017-07-31T22:03:59Z", + "git_url": "git://github.com/bitwiseman/junit-plugin.git", + "ssh_url": "git@github.com:bitwiseman/junit-plugin.git", + "clone_url": "https://github.com/bitwiseman/junit-plugin.git", + "svn_url": "https://github.com/bitwiseman/junit-plugin", + "homepage": "http://wiki.jenkins-ci.org/display/JENKINS/JUnit+Plugin", + "size": 1410, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 22, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 22, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 126244750, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjYyNDQ3NTA=", + "name": "jx", + "full_name": "bitwiseman/jx", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/jx", + "description": "A command line tool for installing and working with Jenkins X - CI/CD for Kubernetes", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/jx", + "forks_url": "https://api.github.com/repos/bitwiseman/jx/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/jx/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/jx/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/jx/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/jx/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/jx/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/jx/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/jx/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/jx/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/jx/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/jx/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/jx/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/jx/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/jx/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/jx/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/jx/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/jx/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/jx/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/jx/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/jx/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/jx/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/jx/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/jx/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/jx/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/jx/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/jx/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/jx/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/jx/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/jx/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/jx/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/jx/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/jx/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/jx/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/jx/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/jx/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/jx/deployments", + "created_at": "2018-03-21T21:49:04Z", + "updated_at": "2018-03-21T21:49:07Z", + "pushed_at": "2018-03-21T19:14:02Z", + "git_url": "git://github.com/bitwiseman/jx.git", + "ssh_url": "git@github.com:bitwiseman/jx.git", + "clone_url": "https://github.com/bitwiseman/jx.git", + "svn_url": "https://github.com/bitwiseman/jx", + "homepage": "http://jenkins-x.io/", + "size": 29299, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Go", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 165088463, + "node_id": "MDEwOlJlcG9zaXRvcnkxNjUwODg0NjM=", + "name": "jx-docs", + "full_name": "bitwiseman/jx-docs", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/jx-docs", + "description": "the source code used to build the documentation and website for Jenkins X", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/jx-docs", + "forks_url": "https://api.github.com/repos/bitwiseman/jx-docs/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/jx-docs/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/jx-docs/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/jx-docs/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/jx-docs/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/jx-docs/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/jx-docs/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/jx-docs/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/jx-docs/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/jx-docs/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/jx-docs/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/jx-docs/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/jx-docs/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/jx-docs/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/jx-docs/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/jx-docs/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/jx-docs/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/jx-docs/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/jx-docs/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/jx-docs/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/jx-docs/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/jx-docs/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/jx-docs/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/jx-docs/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/jx-docs/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/jx-docs/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/jx-docs/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/jx-docs/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/jx-docs/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/jx-docs/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/jx-docs/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/jx-docs/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/jx-docs/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/jx-docs/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/jx-docs/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/jx-docs/deployments", + "created_at": "2019-01-10T15:57:08Z", + "updated_at": "2019-01-10T15:57:13Z", + "pushed_at": "2019-01-10T16:30:38Z", + "git_url": "git://github.com/bitwiseman/jx-docs.git", + "ssh_url": "git@github.com:bitwiseman/jx-docs.git", + "clone_url": "https://github.com/bitwiseman/jx-docs.git", + "svn_url": "https://github.com/bitwiseman/jx-docs", + "homepage": "http://jenkins-x.io/", + "size": 37384, + "stargazers_count": 0, + "watchers_count": 0, + "language": "HTML", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 9066233, + "node_id": "MDEwOlJlcG9zaXRvcnk5MDY2MjMz", + "name": "karma", + "full_name": "bitwiseman/karma", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/karma", + "description": "Spectacular Test Runner for JavaScript", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/karma", + "forks_url": "https://api.github.com/repos/bitwiseman/karma/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/karma/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/karma/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/karma/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/karma/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/karma/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/karma/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/karma/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/karma/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/karma/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/karma/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/karma/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/karma/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/karma/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/karma/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/karma/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/karma/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/karma/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/karma/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/karma/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/karma/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/karma/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/karma/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/karma/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/karma/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/karma/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/karma/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/karma/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/karma/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/karma/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/karma/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/karma/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/karma/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/karma/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/karma/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/karma/deployments", + "created_at": "2013-03-27T23:40:54Z", + "updated_at": "2014-09-10T19:49:34Z", + "pushed_at": "2015-05-28T00:18:15Z", + "git_url": "git://github.com/bitwiseman/karma.git", + "ssh_url": "git@github.com:bitwiseman/karma.git", + "clone_url": "https://github.com/bitwiseman/karma.git", + "svn_url": "https://github.com/bitwiseman/karma", + "homepage": "http://karma-runner.github.com", + "size": 6493, + "stargazers_count": 0, + "watchers_count": 0, + "language": "CoffeeScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 12954583, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjk1NDU4Mw==", + "name": "karma-firefox-launcher", + "full_name": "bitwiseman/karma-firefox-launcher", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/karma-firefox-launcher", + "description": "A Karma plugin. Launcher for Firefox.", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/karma-firefox-launcher", + "forks_url": "https://api.github.com/repos/bitwiseman/karma-firefox-launcher/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/karma-firefox-launcher/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/karma-firefox-launcher/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/karma-firefox-launcher/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/karma-firefox-launcher/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/karma-firefox-launcher/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/karma-firefox-launcher/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/karma-firefox-launcher/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/karma-firefox-launcher/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/karma-firefox-launcher/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/karma-firefox-launcher/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/karma-firefox-launcher/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/karma-firefox-launcher/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/karma-firefox-launcher/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/karma-firefox-launcher/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/karma-firefox-launcher/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/karma-firefox-launcher/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/karma-firefox-launcher/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/karma-firefox-launcher/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/karma-firefox-launcher/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/karma-firefox-launcher/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/karma-firefox-launcher/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/karma-firefox-launcher/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/karma-firefox-launcher/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/karma-firefox-launcher/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/karma-firefox-launcher/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/karma-firefox-launcher/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/karma-firefox-launcher/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/karma-firefox-launcher/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/karma-firefox-launcher/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/karma-firefox-launcher/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/karma-firefox-launcher/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/karma-firefox-launcher/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/karma-firefox-launcher/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/karma-firefox-launcher/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/karma-firefox-launcher/deployments", + "created_at": "2013-09-19T17:23:46Z", + "updated_at": "2013-11-22T22:06:13Z", + "pushed_at": "2013-09-19T18:04:13Z", + "git_url": "git://github.com/bitwiseman/karma-firefox-launcher.git", + "ssh_url": "git@github.com:bitwiseman/karma-firefox-launcher.git", + "clone_url": "https://github.com/bitwiseman/karma-firefox-launcher.git", + "svn_url": "https://github.com/bitwiseman/karma-firefox-launcher", + "homepage": "", + "size": 91, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 9066299, + "node_id": "MDEwOlJlcG9zaXRvcnk5MDY2Mjk5", + "name": "karma-junit-reporter", + "full_name": "bitwiseman/karma-junit-reporter", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/karma-junit-reporter", + "description": "A Karma plugin. Report results in junit xml format.", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/karma-junit-reporter", + "forks_url": "https://api.github.com/repos/bitwiseman/karma-junit-reporter/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/karma-junit-reporter/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/karma-junit-reporter/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/karma-junit-reporter/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/karma-junit-reporter/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/karma-junit-reporter/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/karma-junit-reporter/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/karma-junit-reporter/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/karma-junit-reporter/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/karma-junit-reporter/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/karma-junit-reporter/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/karma-junit-reporter/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/karma-junit-reporter/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/karma-junit-reporter/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/karma-junit-reporter/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/karma-junit-reporter/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/karma-junit-reporter/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/karma-junit-reporter/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/karma-junit-reporter/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/karma-junit-reporter/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/karma-junit-reporter/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/karma-junit-reporter/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/karma-junit-reporter/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/karma-junit-reporter/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/karma-junit-reporter/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/karma-junit-reporter/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/karma-junit-reporter/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/karma-junit-reporter/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/karma-junit-reporter/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/karma-junit-reporter/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/karma-junit-reporter/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/karma-junit-reporter/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/karma-junit-reporter/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/karma-junit-reporter/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/karma-junit-reporter/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/karma-junit-reporter/deployments", + "created_at": "2013-03-27T23:45:51Z", + "updated_at": "2013-03-27T23:45:52Z", + "pushed_at": "2013-03-20T00:13:42Z", + "git_url": "git://github.com/bitwiseman/karma-junit-reporter.git", + "ssh_url": "git@github.com:bitwiseman/karma-junit-reporter.git", + "clone_url": "https://github.com/bitwiseman/karma-junit-reporter.git", + "svn_url": "https://github.com/bitwiseman/karma-junit-reporter", + "homepage": "", + "size": 70, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 19331348, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTMzMTM0OA==", + "name": "keepassx", + "full_name": "bitwiseman/keepassx", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/keepassx", + "description": "KeePassX is a cross platform port of the windows application “Keepass Password Safe”.", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/keepassx", + "forks_url": "https://api.github.com/repos/bitwiseman/keepassx/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/keepassx/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/keepassx/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/keepassx/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/keepassx/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/keepassx/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/keepassx/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/keepassx/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/keepassx/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/keepassx/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/keepassx/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/keepassx/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/keepassx/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/keepassx/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/keepassx/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/keepassx/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/keepassx/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/keepassx/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/keepassx/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/keepassx/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/keepassx/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/keepassx/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/keepassx/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/keepassx/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/keepassx/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/keepassx/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/keepassx/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/keepassx/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/keepassx/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/keepassx/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/keepassx/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/keepassx/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/keepassx/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/keepassx/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/keepassx/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/keepassx/deployments", + "created_at": "2014-05-01T00:17:51Z", + "updated_at": "2014-05-01T00:17:51Z", + "pushed_at": "2014-04-26T16:35:55Z", + "git_url": "git://github.com/bitwiseman/keepassx.git", + "ssh_url": "git@github.com:bitwiseman/keepassx.git", + "clone_url": "https://github.com/bitwiseman/keepassx.git", + "svn_url": "https://github.com/bitwiseman/keepassx", + "homepage": "http://www.keepassx.org/", + "size": 5762, + "stargazers_count": 0, + "watchers_count": 0, + "language": "C++", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 116715341, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTY3MTUzNDE=", + "name": "language-asciidoc", + "full_name": "bitwiseman/language-asciidoc", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/language-asciidoc", + "description": "AsciiDoc support for visual studio code", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/language-asciidoc", + "forks_url": "https://api.github.com/repos/bitwiseman/language-asciidoc/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/language-asciidoc/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/language-asciidoc/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/language-asciidoc/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/language-asciidoc/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/language-asciidoc/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/language-asciidoc/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/language-asciidoc/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/language-asciidoc/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/language-asciidoc/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/language-asciidoc/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/language-asciidoc/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/language-asciidoc/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/language-asciidoc/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/language-asciidoc/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/language-asciidoc/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/language-asciidoc/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/language-asciidoc/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/language-asciidoc/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/language-asciidoc/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/language-asciidoc/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/language-asciidoc/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/language-asciidoc/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/language-asciidoc/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/language-asciidoc/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/language-asciidoc/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/language-asciidoc/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/language-asciidoc/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/language-asciidoc/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/language-asciidoc/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/language-asciidoc/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/language-asciidoc/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/language-asciidoc/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/language-asciidoc/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/language-asciidoc/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/language-asciidoc/deployments", + "created_at": "2018-01-08T18:55:27Z", + "updated_at": "2017-10-16T23:28:26Z", + "pushed_at": "2017-12-21T10:49:22Z", + "git_url": "git://github.com/bitwiseman/language-asciidoc.git", + "ssh_url": "git@github.com:bitwiseman/language-asciidoc.git", + "clone_url": "https://github.com/bitwiseman/language-asciidoc.git", + "svn_url": "https://github.com/bitwiseman/language-asciidoc", + "homepage": "https://marketplace.visualstudio.com/items/justusadam.language-asciidoc", + "size": 550, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 61305846, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTMwNTg0Ng==", + "name": "laptop", + "full_name": "bitwiseman/laptop", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/laptop", + "description": "A shell script which turns your Mac into an awesome web development machine.", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/laptop", + "forks_url": "https://api.github.com/repos/bitwiseman/laptop/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/laptop/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/laptop/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/laptop/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/laptop/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/laptop/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/laptop/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/laptop/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/laptop/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/laptop/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/laptop/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/laptop/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/laptop/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/laptop/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/laptop/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/laptop/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/laptop/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/laptop/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/laptop/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/laptop/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/laptop/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/laptop/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/laptop/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/laptop/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/laptop/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/laptop/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/laptop/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/laptop/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/laptop/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/laptop/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/laptop/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/laptop/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/laptop/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/laptop/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/laptop/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/laptop/deployments", + "created_at": "2016-06-16T15:39:51Z", + "updated_at": "2016-06-16T15:39:52Z", + "pushed_at": "2016-06-11T09:03:00Z", + "git_url": "git://github.com/bitwiseman/laptop.git", + "ssh_url": "git@github.com:bitwiseman/laptop.git", + "clone_url": "https://github.com/bitwiseman/laptop.git", + "svn_url": "https://github.com/bitwiseman/laptop", + "homepage": null, + "size": 48, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Shell", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 30032828, + "node_id": "MDEwOlJlcG9zaXRvcnkzMDAzMjgyOA==", + "name": "learnGitBranching", + "full_name": "bitwiseman/learnGitBranching", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/learnGitBranching", + "description": "An interactive git visualization to challenge and educate!", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/learnGitBranching", + "forks_url": "https://api.github.com/repos/bitwiseman/learnGitBranching/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/learnGitBranching/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/learnGitBranching/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/learnGitBranching/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/learnGitBranching/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/learnGitBranching/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/learnGitBranching/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/learnGitBranching/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/learnGitBranching/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/learnGitBranching/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/learnGitBranching/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/learnGitBranching/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/learnGitBranching/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/learnGitBranching/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/learnGitBranching/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/learnGitBranching/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/learnGitBranching/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/learnGitBranching/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/learnGitBranching/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/learnGitBranching/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/learnGitBranching/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/learnGitBranching/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/learnGitBranching/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/learnGitBranching/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/learnGitBranching/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/learnGitBranching/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/learnGitBranching/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/learnGitBranching/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/learnGitBranching/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/learnGitBranching/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/learnGitBranching/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/learnGitBranching/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/learnGitBranching/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/learnGitBranching/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/learnGitBranching/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/learnGitBranching/deployments", + "created_at": "2015-01-29T17:44:52Z", + "updated_at": "2016-09-27T00:33:51Z", + "pushed_at": "2017-08-09T22:50:49Z", + "git_url": "git://github.com/bitwiseman/learnGitBranching.git", + "ssh_url": "git@github.com:bitwiseman/learnGitBranching.git", + "clone_url": "https://github.com/bitwiseman/learnGitBranching.git", + "svn_url": "https://github.com/bitwiseman/learnGitBranching", + "homepage": "http://pcottle.github.com/learnGitBranching/?demo", + "size": 24800, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 55265301, + "node_id": "MDEwOlJlcG9zaXRvcnk1NTI2NTMwMQ==", + "name": "limitd", + "full_name": "bitwiseman/limitd", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/limitd", + "description": "simple daemon for rate limit", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/limitd", + "forks_url": "https://api.github.com/repos/bitwiseman/limitd/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/limitd/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/limitd/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/limitd/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/limitd/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/limitd/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/limitd/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/limitd/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/limitd/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/limitd/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/limitd/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/limitd/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/limitd/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/limitd/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/limitd/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/limitd/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/limitd/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/limitd/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/limitd/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/limitd/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/limitd/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/limitd/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/limitd/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/limitd/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/limitd/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/limitd/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/limitd/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/limitd/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/limitd/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/limitd/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/limitd/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/limitd/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/limitd/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/limitd/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/limitd/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/limitd/deployments", + "created_at": "2016-04-01T22:11:18Z", + "updated_at": "2016-04-01T22:11:18Z", + "pushed_at": "2016-04-01T16:24:59Z", + "git_url": "git://github.com/bitwiseman/limitd.git", + "ssh_url": "git@github.com:bitwiseman/limitd.git", + "clone_url": "https://github.com/bitwiseman/limitd.git", + "svn_url": "https://github.com/bitwiseman/limitd", + "homepage": "", + "size": 189, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 150347265, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTAzNDcyNjU=", + "name": "localization-zh-cn-plugin", + "full_name": "bitwiseman/localization-zh-cn-plugin", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/localization-zh-cn-plugin", + "description": "Chinese Localization for Jenkins", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/localization-zh-cn-plugin", + "forks_url": "https://api.github.com/repos/bitwiseman/localization-zh-cn-plugin/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/localization-zh-cn-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/localization-zh-cn-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/localization-zh-cn-plugin/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/localization-zh-cn-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/localization-zh-cn-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/localization-zh-cn-plugin/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/localization-zh-cn-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/localization-zh-cn-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/localization-zh-cn-plugin/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/localization-zh-cn-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/localization-zh-cn-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/localization-zh-cn-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/localization-zh-cn-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/localization-zh-cn-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/localization-zh-cn-plugin/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/localization-zh-cn-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/localization-zh-cn-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/localization-zh-cn-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/localization-zh-cn-plugin/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/localization-zh-cn-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/localization-zh-cn-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/localization-zh-cn-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/localization-zh-cn-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/localization-zh-cn-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/localization-zh-cn-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/localization-zh-cn-plugin/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/localization-zh-cn-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/localization-zh-cn-plugin/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/localization-zh-cn-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/localization-zh-cn-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/localization-zh-cn-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/localization-zh-cn-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/localization-zh-cn-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/localization-zh-cn-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/localization-zh-cn-plugin/deployments", + "created_at": "2018-09-26T00:48:00Z", + "updated_at": "2018-09-26T00:48:03Z", + "pushed_at": "2018-09-26T00:49:14Z", + "git_url": "git://github.com/bitwiseman/localization-zh-cn-plugin.git", + "ssh_url": "git@github.com:bitwiseman/localization-zh-cn-plugin.git", + "clone_url": "https://github.com/bitwiseman/localization-zh-cn-plugin.git", + "svn_url": "https://github.com/bitwiseman/localization-zh-cn-plugin", + "homepage": "https://jenkins.io/sigs/chinese-localization/", + "size": 236, + "stargazers_count": 0, + "watchers_count": 0, + "language": "HTML", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 86498975, + "node_id": "MDEwOlJlcG9zaXRvcnk4NjQ5ODk3NQ==", + "name": "logstash-plugin", + "full_name": "bitwiseman/logstash-plugin", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/logstash-plugin", + "description": "Jenkins plugin to ship the console log off to Logstash", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/logstash-plugin", + "forks_url": "https://api.github.com/repos/bitwiseman/logstash-plugin/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/logstash-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/logstash-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/logstash-plugin/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/logstash-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/logstash-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/logstash-plugin/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/logstash-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/logstash-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/logstash-plugin/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/logstash-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/logstash-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/logstash-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/logstash-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/logstash-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/logstash-plugin/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/logstash-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/logstash-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/logstash-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/logstash-plugin/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/logstash-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/logstash-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/logstash-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/logstash-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/logstash-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/logstash-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/logstash-plugin/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/logstash-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/logstash-plugin/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/logstash-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/logstash-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/logstash-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/logstash-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/logstash-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/logstash-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/logstash-plugin/deployments", + "created_at": "2017-03-28T19:28:04Z", + "updated_at": "2017-03-28T19:28:06Z", + "pushed_at": "2017-08-14T23:01:26Z", + "git_url": "git://github.com/bitwiseman/logstash-plugin.git", + "ssh_url": "git@github.com:bitwiseman/logstash-plugin.git", + "clone_url": "https://github.com/bitwiseman/logstash-plugin.git", + "svn_url": "https://github.com/bitwiseman/logstash-plugin", + "homepage": null, + "size": 169, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 37151171, + "node_id": "MDEwOlJlcG9zaXRvcnkzNzE1MTE3MQ==", + "name": "mathjs", + "full_name": "bitwiseman/mathjs", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/mathjs", + "description": "An extensive math library for JavaScript and Node.js", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/mathjs", + "forks_url": "https://api.github.com/repos/bitwiseman/mathjs/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/mathjs/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/mathjs/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/mathjs/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/mathjs/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/mathjs/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/mathjs/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/mathjs/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/mathjs/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/mathjs/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/mathjs/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/mathjs/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/mathjs/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/mathjs/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/mathjs/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/mathjs/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/mathjs/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/mathjs/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/mathjs/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/mathjs/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/mathjs/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/mathjs/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/mathjs/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/mathjs/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/mathjs/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/mathjs/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/mathjs/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/mathjs/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/mathjs/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/mathjs/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/mathjs/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/mathjs/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/mathjs/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/mathjs/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/mathjs/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/mathjs/deployments", + "created_at": "2015-06-09T18:43:02Z", + "updated_at": "2015-06-09T18:43:03Z", + "pushed_at": "2015-06-09T18:54:46Z", + "git_url": "git://github.com/bitwiseman/mathjs.git", + "ssh_url": "git@github.com:bitwiseman/mathjs.git", + "clone_url": "https://github.com/bitwiseman/mathjs.git", + "svn_url": "https://github.com/bitwiseman/mathjs", + "homepage": "mathjs.org", + "size": 19676, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 35064164, + "node_id": "MDEwOlJlcG9zaXRvcnkzNTA2NDE2NA==", + "name": "maven-ant-tasks", + "full_name": "bitwiseman/maven-ant-tasks", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/maven-ant-tasks", + "description": "Mirror of Apache Maven ant tasks", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/maven-ant-tasks", + "forks_url": "https://api.github.com/repos/bitwiseman/maven-ant-tasks/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/maven-ant-tasks/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/maven-ant-tasks/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/maven-ant-tasks/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/maven-ant-tasks/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/maven-ant-tasks/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/maven-ant-tasks/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/maven-ant-tasks/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/maven-ant-tasks/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/maven-ant-tasks/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/maven-ant-tasks/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/maven-ant-tasks/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/maven-ant-tasks/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/maven-ant-tasks/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/maven-ant-tasks/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/maven-ant-tasks/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/maven-ant-tasks/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/maven-ant-tasks/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/maven-ant-tasks/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/maven-ant-tasks/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/maven-ant-tasks/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/maven-ant-tasks/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/maven-ant-tasks/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/maven-ant-tasks/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/maven-ant-tasks/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/maven-ant-tasks/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/maven-ant-tasks/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/maven-ant-tasks/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/maven-ant-tasks/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/maven-ant-tasks/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/maven-ant-tasks/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/maven-ant-tasks/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/maven-ant-tasks/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/maven-ant-tasks/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/maven-ant-tasks/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/maven-ant-tasks/deployments", + "created_at": "2015-05-04T22:40:03Z", + "updated_at": "2015-05-04T22:40:04Z", + "pushed_at": "2017-03-27T23:20:53Z", + "git_url": "git://github.com/bitwiseman/maven-ant-tasks.git", + "ssh_url": "git@github.com:bitwiseman/maven-ant-tasks.git", + "clone_url": "https://github.com/bitwiseman/maven-ant-tasks.git", + "svn_url": "https://github.com/bitwiseman/maven-ant-tasks", + "homepage": null, + "size": 868, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "trunk", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 201321390, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDEzMjEzOTA=", + "name": "MineSweeper", + "full_name": "bitwiseman/MineSweeper", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/MineSweeper", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/MineSweeper", + "forks_url": "https://api.github.com/repos/bitwiseman/MineSweeper/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/MineSweeper/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/MineSweeper/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/MineSweeper/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/MineSweeper/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/MineSweeper/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/MineSweeper/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/MineSweeper/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/MineSweeper/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/MineSweeper/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/MineSweeper/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/MineSweeper/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/MineSweeper/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/MineSweeper/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/MineSweeper/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/MineSweeper/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/MineSweeper/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/MineSweeper/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/MineSweeper/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/MineSweeper/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/MineSweeper/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/MineSweeper/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/MineSweeper/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/MineSweeper/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/MineSweeper/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/MineSweeper/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/MineSweeper/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/MineSweeper/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/MineSweeper/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/MineSweeper/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/MineSweeper/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/MineSweeper/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/MineSweeper/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/MineSweeper/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/MineSweeper/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/MineSweeper/deployments", + "created_at": "2019-08-08T19:10:00Z", + "updated_at": "2019-08-08T19:10:03Z", + "pushed_at": "2019-08-08T19:08:59Z", + "git_url": "git://github.com/bitwiseman/MineSweeper.git", + "ssh_url": "git@github.com:bitwiseman/MineSweeper.git", + "clone_url": "https://github.com/bitwiseman/MineSweeper.git", + "svn_url": "https://github.com/bitwiseman/MineSweeper", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 68843632, + "node_id": "MDEwOlJlcG9zaXRvcnk2ODg0MzYzMg==", + "name": "mocha", + "full_name": "bitwiseman/mocha", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/mocha", + "description": "mocha - simple, flexible, fun javascript test framework for node.js & the browser. (BDD, TDD, QUnit styles via interfaces)", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/mocha", + "forks_url": "https://api.github.com/repos/bitwiseman/mocha/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/mocha/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/mocha/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/mocha/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/mocha/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/mocha/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/mocha/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/mocha/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/mocha/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/mocha/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/mocha/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/mocha/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/mocha/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/mocha/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/mocha/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/mocha/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/mocha/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/mocha/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/mocha/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/mocha/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/mocha/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/mocha/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/mocha/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/mocha/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/mocha/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/mocha/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/mocha/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/mocha/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/mocha/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/mocha/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/mocha/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/mocha/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/mocha/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/mocha/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/mocha/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/mocha/deployments", + "created_at": "2016-09-21T17:56:49Z", + "updated_at": "2016-09-21T17:56:51Z", + "pushed_at": "2016-09-21T19:09:28Z", + "git_url": "git://github.com/bitwiseman/mocha.git", + "ssh_url": "git@github.com:bitwiseman/mocha.git", + "clone_url": "https://github.com/bitwiseman/mocha.git", + "svn_url": "https://github.com/bitwiseman/mocha", + "homepage": "http://mochajs.org", + "size": 3158, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 20229059, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDIyOTA1OQ==", + "name": "mockingjay", + "full_name": "bitwiseman/mockingjay", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/mockingjay", + "description": "A python based simple web chat client for internal LAN use", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/mockingjay", + "forks_url": "https://api.github.com/repos/bitwiseman/mockingjay/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/mockingjay/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/mockingjay/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/mockingjay/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/mockingjay/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/mockingjay/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/mockingjay/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/mockingjay/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/mockingjay/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/mockingjay/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/mockingjay/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/mockingjay/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/mockingjay/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/mockingjay/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/mockingjay/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/mockingjay/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/mockingjay/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/mockingjay/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/mockingjay/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/mockingjay/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/mockingjay/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/mockingjay/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/mockingjay/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/mockingjay/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/mockingjay/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/mockingjay/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/mockingjay/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/mockingjay/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/mockingjay/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/mockingjay/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/mockingjay/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/mockingjay/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/mockingjay/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/mockingjay/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/mockingjay/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/mockingjay/deployments", + "created_at": "2014-05-27T17:36:25Z", + "updated_at": "2014-05-27T17:36:26Z", + "pushed_at": "2014-05-26T00:23:43Z", + "git_url": "git://github.com/bitwiseman/mockingjay.git", + "ssh_url": "git@github.com:bitwiseman/mockingjay.git", + "clone_url": "https://github.com/bitwiseman/mockingjay.git", + "svn_url": "https://github.com/bitwiseman/mockingjay", + "homepage": null, + "size": 2099, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 5071319, + "node_id": "MDEwOlJlcG9zaXRvcnk1MDcxMzE5", + "name": "nclosure", + "full_name": "bitwiseman/nclosure", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/nclosure", + "description": "Server-side Google Closure with Node.js", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/nclosure", + "forks_url": "https://api.github.com/repos/bitwiseman/nclosure/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/nclosure/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/nclosure/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/nclosure/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/nclosure/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/nclosure/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/nclosure/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/nclosure/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/nclosure/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/nclosure/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/nclosure/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/nclosure/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/nclosure/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/nclosure/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/nclosure/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/nclosure/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/nclosure/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/nclosure/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/nclosure/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/nclosure/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/nclosure/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/nclosure/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/nclosure/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/nclosure/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/nclosure/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/nclosure/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/nclosure/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/nclosure/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/nclosure/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/nclosure/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/nclosure/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/nclosure/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/nclosure/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/nclosure/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/nclosure/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/nclosure/deployments", + "created_at": "2012-07-16T18:14:41Z", + "updated_at": "2013-03-16T00:59:24Z", + "pushed_at": "2012-07-16T18:41:09Z", + "git_url": "git://github.com/bitwiseman/nclosure.git", + "ssh_url": "git@github.com:bitwiseman/nclosure.git", + "clone_url": "https://github.com/bitwiseman/nclosure.git", + "svn_url": "https://github.com/bitwiseman/nclosure", + "homepage": "http://gatapia.github.com/nclosure/", + "size": 15431, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 66503502, + "node_id": "MDEwOlJlcG9zaXRvcnk2NjUwMzUwMg==", + "name": "nightwatch", + "full_name": "bitwiseman/nightwatch", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/nightwatch", + "description": "Automated testing and continous integration framework based on node.js and selenium webdriver", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/nightwatch", + "forks_url": "https://api.github.com/repos/bitwiseman/nightwatch/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/nightwatch/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/nightwatch/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/nightwatch/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/nightwatch/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/nightwatch/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/nightwatch/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/nightwatch/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/nightwatch/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/nightwatch/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/nightwatch/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/nightwatch/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/nightwatch/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/nightwatch/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/nightwatch/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/nightwatch/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/nightwatch/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/nightwatch/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/nightwatch/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/nightwatch/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/nightwatch/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/nightwatch/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/nightwatch/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/nightwatch/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/nightwatch/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/nightwatch/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/nightwatch/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/nightwatch/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/nightwatch/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/nightwatch/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/nightwatch/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/nightwatch/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/nightwatch/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/nightwatch/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/nightwatch/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/nightwatch/deployments", + "created_at": "2016-08-24T22:11:09Z", + "updated_at": "2016-08-24T22:11:10Z", + "pushed_at": "2017-01-04T01:44:10Z", + "git_url": "git://github.com/bitwiseman/nightwatch.git", + "ssh_url": "git@github.com:bitwiseman/nightwatch.git", + "clone_url": "https://github.com/bitwiseman/nightwatch.git", + "svn_url": "https://github.com/bitwiseman/nightwatch", + "homepage": "http://nightwatchjs.org", + "size": 46422, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 77959333, + "node_id": "MDEwOlJlcG9zaXRvcnk3Nzk1OTMzMw==", + "name": "nightwatch-sauce-on-demand", + "full_name": "bitwiseman/nightwatch-sauce-on-demand", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/nightwatch-sauce-on-demand", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/nightwatch-sauce-on-demand", + "forks_url": "https://api.github.com/repos/bitwiseman/nightwatch-sauce-on-demand/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/nightwatch-sauce-on-demand/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/nightwatch-sauce-on-demand/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/nightwatch-sauce-on-demand/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/nightwatch-sauce-on-demand/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/nightwatch-sauce-on-demand/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/nightwatch-sauce-on-demand/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/nightwatch-sauce-on-demand/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/nightwatch-sauce-on-demand/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/nightwatch-sauce-on-demand/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/nightwatch-sauce-on-demand/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/nightwatch-sauce-on-demand/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/nightwatch-sauce-on-demand/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/nightwatch-sauce-on-demand/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/nightwatch-sauce-on-demand/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/nightwatch-sauce-on-demand/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/nightwatch-sauce-on-demand/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/nightwatch-sauce-on-demand/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/nightwatch-sauce-on-demand/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/nightwatch-sauce-on-demand/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/nightwatch-sauce-on-demand/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/nightwatch-sauce-on-demand/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/nightwatch-sauce-on-demand/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/nightwatch-sauce-on-demand/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/nightwatch-sauce-on-demand/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/nightwatch-sauce-on-demand/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/nightwatch-sauce-on-demand/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/nightwatch-sauce-on-demand/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/nightwatch-sauce-on-demand/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/nightwatch-sauce-on-demand/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/nightwatch-sauce-on-demand/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/nightwatch-sauce-on-demand/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/nightwatch-sauce-on-demand/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/nightwatch-sauce-on-demand/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/nightwatch-sauce-on-demand/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/nightwatch-sauce-on-demand/deployments", + "created_at": "2017-01-03T22:37:24Z", + "updated_at": "2017-01-03T22:37:26Z", + "pushed_at": "2017-01-04T01:52:07Z", + "git_url": "git://github.com/bitwiseman/nightwatch-sauce-on-demand.git", + "ssh_url": "git@github.com:bitwiseman/nightwatch-sauce-on-demand.git", + "clone_url": "https://github.com/bitwiseman/nightwatch-sauce-on-demand.git", + "svn_url": "https://github.com/bitwiseman/nightwatch-sauce-on-demand", + "homepage": null, + "size": 19, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 30611997, + "node_id": "MDEwOlJlcG9zaXRvcnkzMDYxMTk5Nw==", + "name": "node-fs-extra", + "full_name": "bitwiseman/node-fs-extra", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/node-fs-extra", + "description": "Node.js: extra methods for the fs object.", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/node-fs-extra", + "forks_url": "https://api.github.com/repos/bitwiseman/node-fs-extra/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/node-fs-extra/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/node-fs-extra/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/node-fs-extra/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/node-fs-extra/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/node-fs-extra/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/node-fs-extra/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/node-fs-extra/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/node-fs-extra/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/node-fs-extra/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/node-fs-extra/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/node-fs-extra/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/node-fs-extra/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/node-fs-extra/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/node-fs-extra/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/node-fs-extra/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/node-fs-extra/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/node-fs-extra/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/node-fs-extra/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/node-fs-extra/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/node-fs-extra/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/node-fs-extra/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/node-fs-extra/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/node-fs-extra/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/node-fs-extra/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/node-fs-extra/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/node-fs-extra/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/node-fs-extra/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/node-fs-extra/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/node-fs-extra/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/node-fs-extra/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/node-fs-extra/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/node-fs-extra/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/node-fs-extra/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/node-fs-extra/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/node-fs-extra/deployments", + "created_at": "2015-02-10T20:05:50Z", + "updated_at": "2015-02-10T20:05:51Z", + "pushed_at": "2015-02-10T13:14:48Z", + "git_url": "git://github.com/bitwiseman/node-fs-extra.git", + "ssh_url": "git@github.com:bitwiseman/node-fs-extra.git", + "clone_url": "https://github.com/bitwiseman/node-fs-extra.git", + "svn_url": "https://github.com/bitwiseman/node-fs-extra", + "homepage": "", + "size": 394, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 32235621, + "node_id": "MDEwOlJlcG9zaXRvcnkzMjIzNTYyMQ==", + "name": "node-jscs", + "full_name": "bitwiseman/node-jscs", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/node-jscs", + "description": "JavaScript Code Style checker", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/node-jscs", + "forks_url": "https://api.github.com/repos/bitwiseman/node-jscs/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/node-jscs/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/node-jscs/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/node-jscs/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/node-jscs/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/node-jscs/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/node-jscs/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/node-jscs/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/node-jscs/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/node-jscs/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/node-jscs/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/node-jscs/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/node-jscs/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/node-jscs/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/node-jscs/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/node-jscs/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/node-jscs/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/node-jscs/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/node-jscs/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/node-jscs/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/node-jscs/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/node-jscs/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/node-jscs/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/node-jscs/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/node-jscs/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/node-jscs/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/node-jscs/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/node-jscs/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/node-jscs/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/node-jscs/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/node-jscs/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/node-jscs/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/node-jscs/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/node-jscs/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/node-jscs/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/node-jscs/deployments", + "created_at": "2015-03-14T22:44:13Z", + "updated_at": "2015-03-14T22:44:14Z", + "pushed_at": "2015-03-11T02:33:38Z", + "git_url": "git://github.com/bitwiseman/node-jscs.git", + "ssh_url": "git@github.com:bitwiseman/node-jscs.git", + "clone_url": "https://github.com/bitwiseman/node-jscs.git", + "svn_url": "https://github.com/bitwiseman/node-jscs", + "homepage": "http://jscs.info/", + "size": 2390, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 63666629, + "node_id": "MDEwOlJlcG9zaXRvcnk2MzY2NjYyOQ==", + "name": "node-tokenizer", + "full_name": "bitwiseman/node-tokenizer", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/node-tokenizer", + "description": "A tokenizer that looks like a stream for JavaScript and node.js", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/node-tokenizer", + "forks_url": "https://api.github.com/repos/bitwiseman/node-tokenizer/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/node-tokenizer/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/node-tokenizer/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/node-tokenizer/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/node-tokenizer/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/node-tokenizer/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/node-tokenizer/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/node-tokenizer/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/node-tokenizer/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/node-tokenizer/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/node-tokenizer/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/node-tokenizer/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/node-tokenizer/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/node-tokenizer/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/node-tokenizer/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/node-tokenizer/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/node-tokenizer/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/node-tokenizer/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/node-tokenizer/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/node-tokenizer/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/node-tokenizer/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/node-tokenizer/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/node-tokenizer/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/node-tokenizer/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/node-tokenizer/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/node-tokenizer/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/node-tokenizer/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/node-tokenizer/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/node-tokenizer/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/node-tokenizer/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/node-tokenizer/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/node-tokenizer/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/node-tokenizer/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/node-tokenizer/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/node-tokenizer/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/node-tokenizer/deployments", + "created_at": "2016-07-19T06:21:03Z", + "updated_at": "2016-07-19T06:21:04Z", + "pushed_at": "2013-07-15T14:05:49Z", + "git_url": "git://github.com/bitwiseman/node-tokenizer.git", + "ssh_url": "git@github.com:bitwiseman/node-tokenizer.git", + "clone_url": "https://github.com/bitwiseman/node-tokenizer.git", + "svn_url": "https://github.com/bitwiseman/node-tokenizer", + "homepage": "", + "size": 768, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 12331410, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjMzMTQxMA==", + "name": "node-unzip", + "full_name": "bitwiseman/node-unzip", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/node-unzip", + "description": "node.js cross-platform unzip using streams", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/node-unzip", + "forks_url": "https://api.github.com/repos/bitwiseman/node-unzip/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/node-unzip/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/node-unzip/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/node-unzip/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/node-unzip/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/node-unzip/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/node-unzip/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/node-unzip/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/node-unzip/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/node-unzip/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/node-unzip/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/node-unzip/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/node-unzip/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/node-unzip/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/node-unzip/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/node-unzip/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/node-unzip/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/node-unzip/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/node-unzip/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/node-unzip/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/node-unzip/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/node-unzip/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/node-unzip/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/node-unzip/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/node-unzip/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/node-unzip/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/node-unzip/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/node-unzip/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/node-unzip/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/node-unzip/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/node-unzip/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/node-unzip/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/node-unzip/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/node-unzip/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/node-unzip/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/node-unzip/deployments", + "created_at": "2013-08-23T19:57:29Z", + "updated_at": "2013-11-20T03:18:16Z", + "pushed_at": "2013-08-23T20:04:36Z", + "git_url": "git://github.com/bitwiseman/node-unzip.git", + "ssh_url": "git@github.com:bitwiseman/node-unzip.git", + "clone_url": "https://github.com/bitwiseman/node-unzip.git", + "svn_url": "https://github.com/bitwiseman/node-unzip", + "homepage": "", + "size": 91, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 9306270, + "node_id": "MDEwOlJlcG9zaXRvcnk5MzA2Mjcw", + "name": "npm-www", + "full_name": "bitwiseman/npm-www", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/npm-www", + "description": "The not-couchapp bits of thew new npmjs.org (work in progress)", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/npm-www", + "forks_url": "https://api.github.com/repos/bitwiseman/npm-www/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/npm-www/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/npm-www/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/npm-www/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/npm-www/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/npm-www/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/npm-www/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/npm-www/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/npm-www/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/npm-www/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/npm-www/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/npm-www/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/npm-www/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/npm-www/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/npm-www/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/npm-www/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/npm-www/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/npm-www/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/npm-www/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/npm-www/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/npm-www/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/npm-www/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/npm-www/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/npm-www/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/npm-www/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/npm-www/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/npm-www/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/npm-www/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/npm-www/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/npm-www/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/npm-www/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/npm-www/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/npm-www/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/npm-www/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/npm-www/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/npm-www/deployments", + "created_at": "2013-04-08T20:36:22Z", + "updated_at": "2014-01-03T20:51:15Z", + "pushed_at": "2013-04-07T01:22:30Z", + "git_url": "git://github.com/bitwiseman/npm-www.git", + "ssh_url": "git@github.com:bitwiseman/npm-www.git", + "clone_url": "https://github.com/bitwiseman/npm-www.git", + "svn_url": "https://github.com/bitwiseman/npm-www", + "homepage": "http://npmjs.org/", + "size": 6620, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 33375794, + "node_id": "MDEwOlJlcG9zaXRvcnkzMzM3NTc5NA==", + "name": "parameterized-trigger-plugin", + "full_name": "bitwiseman/parameterized-trigger-plugin", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/parameterized-trigger-plugin", + "description": "Jenkins parameterized-trigger plugin", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/parameterized-trigger-plugin", + "forks_url": "https://api.github.com/repos/bitwiseman/parameterized-trigger-plugin/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/parameterized-trigger-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/parameterized-trigger-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/parameterized-trigger-plugin/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/parameterized-trigger-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/parameterized-trigger-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/parameterized-trigger-plugin/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/parameterized-trigger-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/parameterized-trigger-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/parameterized-trigger-plugin/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/parameterized-trigger-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/parameterized-trigger-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/parameterized-trigger-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/parameterized-trigger-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/parameterized-trigger-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/parameterized-trigger-plugin/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/parameterized-trigger-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/parameterized-trigger-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/parameterized-trigger-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/parameterized-trigger-plugin/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/parameterized-trigger-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/parameterized-trigger-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/parameterized-trigger-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/parameterized-trigger-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/parameterized-trigger-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/parameterized-trigger-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/parameterized-trigger-plugin/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/parameterized-trigger-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/parameterized-trigger-plugin/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/parameterized-trigger-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/parameterized-trigger-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/parameterized-trigger-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/parameterized-trigger-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/parameterized-trigger-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/parameterized-trigger-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/parameterized-trigger-plugin/deployments", + "created_at": "2015-04-03T18:03:50Z", + "updated_at": "2015-04-03T18:03:51Z", + "pushed_at": "2015-03-25T14:38:57Z", + "git_url": "git://github.com/bitwiseman/parameterized-trigger-plugin.git", + "ssh_url": "git@github.com:bitwiseman/parameterized-trigger-plugin.git", + "clone_url": "https://github.com/bitwiseman/parameterized-trigger-plugin.git", + "svn_url": "https://github.com/bitwiseman/parameterized-trigger-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 3614, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 38718194, + "node_id": "MDEwOlJlcG9zaXRvcnkzODcxODE5NA==", + "name": "Pash", + "full_name": "bitwiseman/Pash", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/Pash", + "description": "An Open Source reimplementation of Windows PowerShell, for Mono.", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/Pash", + "forks_url": "https://api.github.com/repos/bitwiseman/Pash/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/Pash/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/Pash/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/Pash/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/Pash/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/Pash/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/Pash/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/Pash/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/Pash/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/Pash/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/Pash/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/Pash/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/Pash/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/Pash/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/Pash/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/Pash/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/Pash/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/Pash/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/Pash/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/Pash/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/Pash/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/Pash/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/Pash/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/Pash/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/Pash/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/Pash/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/Pash/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/Pash/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/Pash/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/Pash/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/Pash/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/Pash/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/Pash/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/Pash/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/Pash/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/Pash/deployments", + "created_at": "2015-07-07T22:27:29Z", + "updated_at": "2015-07-07T22:27:31Z", + "pushed_at": "2015-06-22T17:19:49Z", + "git_url": "git://github.com/bitwiseman/Pash.git", + "ssh_url": "git@github.com:bitwiseman/Pash.git", + "clone_url": "https://github.com/bitwiseman/Pash.git", + "svn_url": "https://github.com/bitwiseman/Pash", + "homepage": "https://groups.google.com/group/pash-project", + "size": 11804, + "stargazers_count": 0, + "watchers_count": 0, + "language": "C#", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testSubscribers/__files/user_1958953_repos-923eca2f-072a-4532-bbd2-7672e5a49011.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testSubscribers/__files/user_1958953_repos-923eca2f-072a-4532-bbd2-7672e5a49011.json new file mode 100644 index 0000000000..13f93c83c5 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testSubscribers/__files/user_1958953_repos-923eca2f-072a-4532-bbd2-7672e5a49011.json @@ -0,0 +1,3110 @@ +[ + { + "id": 10951926, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDk1MTkyNg==", + "name": "grunt-exec", + "full_name": "bitwiseman/grunt-exec", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/grunt-exec", + "description": "Grunt plugin for executing shell commands.", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/grunt-exec", + "forks_url": "https://api.github.com/repos/bitwiseman/grunt-exec/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/grunt-exec/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/grunt-exec/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/grunt-exec/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/grunt-exec/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/grunt-exec/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/grunt-exec/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/grunt-exec/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/grunt-exec/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/grunt-exec/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/grunt-exec/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/grunt-exec/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/grunt-exec/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/grunt-exec/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/grunt-exec/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/grunt-exec/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/grunt-exec/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/grunt-exec/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/grunt-exec/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/grunt-exec/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/grunt-exec/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/grunt-exec/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/grunt-exec/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/grunt-exec/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/grunt-exec/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/grunt-exec/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/grunt-exec/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/grunt-exec/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/grunt-exec/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/grunt-exec/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/grunt-exec/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/grunt-exec/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/grunt-exec/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/grunt-exec/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/grunt-exec/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/grunt-exec/deployments", + "created_at": "2013-06-25T22:21:30Z", + "updated_at": "2013-06-25T22:21:30Z", + "pushed_at": "2013-06-25T00:11:20Z", + "git_url": "git://github.com/bitwiseman/grunt-exec.git", + "ssh_url": "git@github.com:bitwiseman/grunt-exec.git", + "clone_url": "https://github.com/bitwiseman/grunt-exec.git", + "svn_url": "https://github.com/bitwiseman/grunt-exec", + "homepage": "https://npmjs.org/package/grunt-exec", + "size": 94, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 8460606, + "node_id": "MDEwOlJlcG9zaXRvcnk4NDYwNjA2", + "name": "grunt-jsbeautifier", + "full_name": "bitwiseman/grunt-jsbeautifier", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/grunt-jsbeautifier", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/grunt-jsbeautifier", + "forks_url": "https://api.github.com/repos/bitwiseman/grunt-jsbeautifier/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/grunt-jsbeautifier/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/grunt-jsbeautifier/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/grunt-jsbeautifier/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/grunt-jsbeautifier/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/grunt-jsbeautifier/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/grunt-jsbeautifier/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/grunt-jsbeautifier/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/grunt-jsbeautifier/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/grunt-jsbeautifier/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/grunt-jsbeautifier/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/grunt-jsbeautifier/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/grunt-jsbeautifier/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/grunt-jsbeautifier/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/grunt-jsbeautifier/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/grunt-jsbeautifier/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/grunt-jsbeautifier/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/grunt-jsbeautifier/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/grunt-jsbeautifier/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/grunt-jsbeautifier/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/grunt-jsbeautifier/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/grunt-jsbeautifier/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/grunt-jsbeautifier/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/grunt-jsbeautifier/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/grunt-jsbeautifier/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/grunt-jsbeautifier/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/grunt-jsbeautifier/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/grunt-jsbeautifier/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/grunt-jsbeautifier/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/grunt-jsbeautifier/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/grunt-jsbeautifier/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/grunt-jsbeautifier/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/grunt-jsbeautifier/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/grunt-jsbeautifier/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/grunt-jsbeautifier/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/grunt-jsbeautifier/deployments", + "created_at": "2013-02-27T16:53:03Z", + "updated_at": "2013-04-05T21:35:23Z", + "pushed_at": "2013-02-27T17:11:16Z", + "git_url": "git://github.com/bitwiseman/grunt-jsbeautifier.git", + "ssh_url": "git@github.com:bitwiseman/grunt-jsbeautifier.git", + "clone_url": "https://github.com/bitwiseman/grunt-jsbeautifier.git", + "svn_url": "https://github.com/bitwiseman/grunt-jsbeautifier", + "homepage": null, + "size": 109, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 15174477, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTE3NDQ3Nw==", + "name": "grunt-mocha", + "full_name": "bitwiseman/grunt-mocha", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/grunt-mocha", + "description": "Grunt task for running mocha specs in a headless browser (PhantomJS)", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/grunt-mocha", + "forks_url": "https://api.github.com/repos/bitwiseman/grunt-mocha/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/grunt-mocha/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/grunt-mocha/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/grunt-mocha/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/grunt-mocha/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/grunt-mocha/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/grunt-mocha/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/grunt-mocha/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/grunt-mocha/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/grunt-mocha/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/grunt-mocha/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/grunt-mocha/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/grunt-mocha/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/grunt-mocha/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/grunt-mocha/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/grunt-mocha/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/grunt-mocha/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/grunt-mocha/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/grunt-mocha/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/grunt-mocha/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/grunt-mocha/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/grunt-mocha/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/grunt-mocha/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/grunt-mocha/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/grunt-mocha/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/grunt-mocha/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/grunt-mocha/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/grunt-mocha/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/grunt-mocha/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/grunt-mocha/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/grunt-mocha/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/grunt-mocha/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/grunt-mocha/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/grunt-mocha/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/grunt-mocha/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/grunt-mocha/deployments", + "created_at": "2013-12-13T21:24:44Z", + "updated_at": "2014-01-15T17:34:52Z", + "pushed_at": "2013-12-13T21:29:18Z", + "git_url": "git://github.com/bitwiseman/grunt-mocha.git", + "ssh_url": "git@github.com:bitwiseman/grunt-mocha.git", + "clone_url": "https://github.com/bitwiseman/grunt-mocha.git", + "svn_url": "https://github.com/bitwiseman/grunt-mocha", + "homepage": null, + "size": 574, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 61398689, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTM5ODY4OQ==", + "name": "hermann", + "full_name": "bitwiseman/hermann", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/hermann", + "description": "A gem providing cross-platform Kafka producer and consumer support", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/hermann", + "forks_url": "https://api.github.com/repos/bitwiseman/hermann/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/hermann/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/hermann/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/hermann/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/hermann/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/hermann/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/hermann/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/hermann/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/hermann/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/hermann/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/hermann/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/hermann/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/hermann/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/hermann/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/hermann/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/hermann/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/hermann/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/hermann/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/hermann/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/hermann/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/hermann/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/hermann/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/hermann/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/hermann/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/hermann/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/hermann/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/hermann/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/hermann/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/hermann/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/hermann/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/hermann/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/hermann/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/hermann/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/hermann/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/hermann/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/hermann/deployments", + "created_at": "2016-06-17T19:52:42Z", + "updated_at": "2019-04-09T00:48:45Z", + "pushed_at": "2018-11-27T17:08:06Z", + "git_url": "git://github.com/bitwiseman/hermann.git", + "ssh_url": "git@github.com:bitwiseman/hermann.git", + "clone_url": "https://github.com/bitwiseman/hermann.git", + "svn_url": "https://github.com/bitwiseman/hermann", + "homepage": "", + "size": 474, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Ruby", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 7, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 7, + "open_issues": 0, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 67828445, + "node_id": "MDEwOlJlcG9zaXRvcnk2NzgyODQ0NQ==", + "name": "homebrew-cask", + "full_name": "bitwiseman/homebrew-cask", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/homebrew-cask", + "description": "A CLI workflow for the administration of Mac applications distributed as binaries", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/homebrew-cask", + "forks_url": "https://api.github.com/repos/bitwiseman/homebrew-cask/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/homebrew-cask/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/homebrew-cask/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/homebrew-cask/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/homebrew-cask/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/homebrew-cask/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/homebrew-cask/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/homebrew-cask/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/homebrew-cask/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/homebrew-cask/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/homebrew-cask/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/homebrew-cask/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/homebrew-cask/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/homebrew-cask/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/homebrew-cask/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/homebrew-cask/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/homebrew-cask/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/homebrew-cask/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/homebrew-cask/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/homebrew-cask/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/homebrew-cask/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/homebrew-cask/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/homebrew-cask/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/homebrew-cask/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/homebrew-cask/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/homebrew-cask/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/homebrew-cask/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/homebrew-cask/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/homebrew-cask/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/homebrew-cask/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/homebrew-cask/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/homebrew-cask/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/homebrew-cask/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/homebrew-cask/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/homebrew-cask/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/homebrew-cask/deployments", + "created_at": "2016-09-09T19:59:42Z", + "updated_at": "2018-05-25T13:57:15Z", + "pushed_at": "2019-07-10T20:42:34Z", + "git_url": "git://github.com/bitwiseman/homebrew-cask.git", + "ssh_url": "git@github.com:bitwiseman/homebrew-cask.git", + "clone_url": "https://github.com/bitwiseman/homebrew-cask.git", + "svn_url": "https://github.com/bitwiseman/homebrew-cask", + "homepage": "http://caskroom.io", + "size": 61862, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Ruby", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "bsd-2-clause", + "name": "BSD 2-Clause \"Simplified\" License", + "spdx_id": "BSD-2-Clause", + "url": "https://api.github.com/licenses/bsd-2-clause", + "node_id": "MDc6TGljZW5zZTQ=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 128841447, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjg4NDE0NDc=", + "name": "homebrew-core", + "full_name": "bitwiseman/homebrew-core", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/homebrew-core", + "description": "🍻 Default formulae for the missing package manager for macOS", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/homebrew-core", + "forks_url": "https://api.github.com/repos/bitwiseman/homebrew-core/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/homebrew-core/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/homebrew-core/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/homebrew-core/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/homebrew-core/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/homebrew-core/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/homebrew-core/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/homebrew-core/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/homebrew-core/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/homebrew-core/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/homebrew-core/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/homebrew-core/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/homebrew-core/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/homebrew-core/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/homebrew-core/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/homebrew-core/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/homebrew-core/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/homebrew-core/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/homebrew-core/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/homebrew-core/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/homebrew-core/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/homebrew-core/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/homebrew-core/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/homebrew-core/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/homebrew-core/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/homebrew-core/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/homebrew-core/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/homebrew-core/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/homebrew-core/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/homebrew-core/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/homebrew-core/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/homebrew-core/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/homebrew-core/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/homebrew-core/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/homebrew-core/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/homebrew-core/deployments", + "created_at": "2018-04-09T22:32:24Z", + "updated_at": "2018-04-09T22:32:57Z", + "pushed_at": "2018-04-09T22:45:14Z", + "git_url": "git://github.com/bitwiseman/homebrew-core.git", + "ssh_url": "git@github.com:bitwiseman/homebrew-core.git", + "clone_url": "https://github.com/bitwiseman/homebrew-core.git", + "svn_url": "https://github.com/bitwiseman/homebrew-core", + "homepage": "https://brew.sh", + "size": 175168, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Ruby", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "bsd-2-clause", + "name": "BSD 2-Clause \"Simplified\" License", + "spdx_id": "BSD-2-Clause", + "url": "https://api.github.com/licenses/bsd-2-clause", + "node_id": "MDc6TGljZW5zZTQ=" + }, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 125580031, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjU1ODAwMzE=", + "name": "homebrew-draft", + "full_name": "bitwiseman/homebrew-draft", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/homebrew-draft", + "description": "Homebrew tap for Draft.", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/homebrew-draft", + "forks_url": "https://api.github.com/repos/bitwiseman/homebrew-draft/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/homebrew-draft/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/homebrew-draft/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/homebrew-draft/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/homebrew-draft/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/homebrew-draft/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/homebrew-draft/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/homebrew-draft/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/homebrew-draft/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/homebrew-draft/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/homebrew-draft/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/homebrew-draft/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/homebrew-draft/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/homebrew-draft/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/homebrew-draft/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/homebrew-draft/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/homebrew-draft/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/homebrew-draft/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/homebrew-draft/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/homebrew-draft/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/homebrew-draft/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/homebrew-draft/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/homebrew-draft/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/homebrew-draft/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/homebrew-draft/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/homebrew-draft/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/homebrew-draft/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/homebrew-draft/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/homebrew-draft/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/homebrew-draft/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/homebrew-draft/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/homebrew-draft/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/homebrew-draft/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/homebrew-draft/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/homebrew-draft/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/homebrew-draft/deployments", + "created_at": "2018-03-16T23:26:37Z", + "updated_at": "2018-03-16T23:26:38Z", + "pushed_at": "2018-03-16T23:27:14Z", + "git_url": "git://github.com/bitwiseman/homebrew-draft.git", + "ssh_url": "git@github.com:bitwiseman/homebrew-draft.git", + "clone_url": "https://github.com/bitwiseman/homebrew-draft.git", + "svn_url": "https://github.com/bitwiseman/homebrew-draft", + "homepage": null, + "size": 10, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Ruby", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 192015427, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTIwMTU0Mjc=", + "name": "htmlpublisher-plugin", + "full_name": "bitwiseman/htmlpublisher-plugin", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/htmlpublisher-plugin", + "description": "Jenkins htmlpublisher plugin", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/htmlpublisher-plugin", + "forks_url": "https://api.github.com/repos/bitwiseman/htmlpublisher-plugin/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/htmlpublisher-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/htmlpublisher-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/htmlpublisher-plugin/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/htmlpublisher-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/htmlpublisher-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/htmlpublisher-plugin/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/htmlpublisher-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/htmlpublisher-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/htmlpublisher-plugin/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/htmlpublisher-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/htmlpublisher-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/htmlpublisher-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/htmlpublisher-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/htmlpublisher-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/htmlpublisher-plugin/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/htmlpublisher-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/htmlpublisher-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/htmlpublisher-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/htmlpublisher-plugin/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/htmlpublisher-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/htmlpublisher-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/htmlpublisher-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/htmlpublisher-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/htmlpublisher-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/htmlpublisher-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/htmlpublisher-plugin/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/htmlpublisher-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/htmlpublisher-plugin/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/htmlpublisher-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/htmlpublisher-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/htmlpublisher-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/htmlpublisher-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/htmlpublisher-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/htmlpublisher-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/htmlpublisher-plugin/deployments", + "created_at": "2019-06-14T23:17:23Z", + "updated_at": "2019-06-14T23:17:25Z", + "pushed_at": "2019-06-14T23:18:59Z", + "git_url": "git://github.com/bitwiseman/htmlpublisher-plugin.git", + "ssh_url": "git@github.com:bitwiseman/htmlpublisher-plugin.git", + "clone_url": "https://github.com/bitwiseman/htmlpublisher-plugin.git", + "svn_url": "https://github.com/bitwiseman/htmlpublisher-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 183, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 106869584, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDY4Njk1ODQ=", + "name": "hub", + "full_name": "bitwiseman/hub", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/hub", + "description": "hub helps you win at git.", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/hub", + "forks_url": "https://api.github.com/repos/bitwiseman/hub/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/hub/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/hub/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/hub/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/hub/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/hub/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/hub/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/hub/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/hub/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/hub/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/hub/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/hub/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/hub/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/hub/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/hub/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/hub/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/hub/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/hub/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/hub/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/hub/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/hub/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/hub/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/hub/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/hub/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/hub/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/hub/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/hub/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/hub/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/hub/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/hub/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/hub/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/hub/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/hub/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/hub/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/hub/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/hub/deployments", + "created_at": "2017-10-13T20:19:47Z", + "updated_at": "2017-10-13T20:19:50Z", + "pushed_at": "2017-10-13T19:22:12Z", + "git_url": "git://github.com/bitwiseman/hub.git", + "ssh_url": "git@github.com:bitwiseman/hub.git", + "clone_url": "https://github.com/bitwiseman/hub.git", + "svn_url": "https://github.com/bitwiseman/hub", + "homepage": "http://hub.github.com/", + "size": 3877, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Go", + "has_issues": false, + "has_projects": true, + "has_downloads": false, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 8099275, + "node_id": "MDEwOlJlcG9zaXRvcnk4MDk5Mjc1", + "name": "ios-sim", + "full_name": "bitwiseman/ios-sim", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/ios-sim", + "description": "Command-line application launcher for the iOS Simulator", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/ios-sim", + "forks_url": "https://api.github.com/repos/bitwiseman/ios-sim/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/ios-sim/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/ios-sim/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/ios-sim/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/ios-sim/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/ios-sim/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/ios-sim/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/ios-sim/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/ios-sim/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/ios-sim/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/ios-sim/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/ios-sim/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/ios-sim/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/ios-sim/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/ios-sim/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/ios-sim/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/ios-sim/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/ios-sim/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/ios-sim/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/ios-sim/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/ios-sim/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/ios-sim/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/ios-sim/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/ios-sim/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/ios-sim/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/ios-sim/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/ios-sim/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/ios-sim/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/ios-sim/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/ios-sim/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/ios-sim/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/ios-sim/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/ios-sim/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/ios-sim/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/ios-sim/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/ios-sim/deployments", + "created_at": "2013-02-08T19:00:49Z", + "updated_at": "2018-05-25T07:15:08Z", + "pushed_at": "2013-02-15T19:18:08Z", + "git_url": "git://github.com/bitwiseman/ios-sim.git", + "ssh_url": "git@github.com:bitwiseman/ios-sim.git", + "clone_url": "https://github.com/bitwiseman/ios-sim.git", + "svn_url": "https://github.com/bitwiseman/ios-sim", + "homepage": "", + "size": 151, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Objective-C", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 74157301, + "node_id": "MDEwOlJlcG9zaXRvcnk3NDE1NzMwMQ==", + "name": "ircbot", + "full_name": "bitwiseman/ircbot", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/ircbot", + "description": "Jenkins IRCbot", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/ircbot", + "forks_url": "https://api.github.com/repos/bitwiseman/ircbot/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/ircbot/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/ircbot/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/ircbot/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/ircbot/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/ircbot/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/ircbot/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/ircbot/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/ircbot/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/ircbot/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/ircbot/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/ircbot/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/ircbot/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/ircbot/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/ircbot/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/ircbot/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/ircbot/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/ircbot/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/ircbot/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/ircbot/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/ircbot/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/ircbot/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/ircbot/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/ircbot/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/ircbot/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/ircbot/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/ircbot/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/ircbot/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/ircbot/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/ircbot/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/ircbot/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/ircbot/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/ircbot/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/ircbot/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/ircbot/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/ircbot/deployments", + "created_at": "2016-11-18T18:48:00Z", + "updated_at": "2016-11-18T18:48:01Z", + "pushed_at": "2016-11-23T15:40:39Z", + "git_url": "git://github.com/bitwiseman/ircbot.git", + "ssh_url": "git@github.com:bitwiseman/ircbot.git", + "clone_url": "https://github.com/bitwiseman/ircbot.git", + "svn_url": "https://github.com/bitwiseman/ircbot", + "homepage": "", + "size": 246, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 64157480, + "node_id": "MDEwOlJlcG9zaXRvcnk2NDE1NzQ4MA==", + "name": "irccloudapp", + "full_name": "bitwiseman/irccloudapp", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/irccloudapp", + "description": "Standalone IRCCloud client for OS X", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/irccloudapp", + "forks_url": "https://api.github.com/repos/bitwiseman/irccloudapp/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/irccloudapp/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/irccloudapp/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/irccloudapp/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/irccloudapp/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/irccloudapp/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/irccloudapp/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/irccloudapp/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/irccloudapp/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/irccloudapp/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/irccloudapp/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/irccloudapp/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/irccloudapp/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/irccloudapp/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/irccloudapp/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/irccloudapp/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/irccloudapp/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/irccloudapp/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/irccloudapp/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/irccloudapp/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/irccloudapp/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/irccloudapp/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/irccloudapp/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/irccloudapp/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/irccloudapp/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/irccloudapp/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/irccloudapp/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/irccloudapp/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/irccloudapp/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/irccloudapp/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/irccloudapp/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/irccloudapp/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/irccloudapp/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/irccloudapp/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/irccloudapp/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/irccloudapp/deployments", + "created_at": "2016-07-25T18:16:04Z", + "updated_at": "2016-07-25T18:16:05Z", + "pushed_at": "2015-03-10T16:37:57Z", + "git_url": "git://github.com/bitwiseman/irccloudapp.git", + "ssh_url": "git@github.com:bitwiseman/irccloudapp.git", + "clone_url": "https://github.com/bitwiseman/irccloudapp.git", + "svn_url": "https://github.com/bitwiseman/irccloudapp", + "homepage": "", + "size": 4108, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Objective-C", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 105810892, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDU4MTA4OTI=", + "name": "jenkins", + "full_name": "bitwiseman/jenkins", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/jenkins", + "description": "Jenkins automation server", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/jenkins", + "forks_url": "https://api.github.com/repos/bitwiseman/jenkins/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/jenkins/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/jenkins/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/jenkins/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/jenkins/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/jenkins/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/jenkins/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/jenkins/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/jenkins/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/jenkins/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/jenkins/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/jenkins/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/jenkins/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/jenkins/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/jenkins/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/jenkins/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/jenkins/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/jenkins/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/jenkins/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/jenkins/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/jenkins/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/jenkins/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/jenkins/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/jenkins/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/jenkins/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/jenkins/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/jenkins/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/jenkins/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/jenkins/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/jenkins/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/jenkins/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/jenkins/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/jenkins/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/jenkins/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/jenkins/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/jenkins/deployments", + "created_at": "2017-10-04T19:44:08Z", + "updated_at": "2019-05-07T15:59:57Z", + "pushed_at": "2019-05-13T23:10:30Z", + "git_url": "git://github.com/bitwiseman/jenkins.git", + "ssh_url": "git@github.com:bitwiseman/jenkins.git", + "clone_url": "https://github.com/bitwiseman/jenkins.git", + "svn_url": "https://github.com/bitwiseman/jenkins", + "homepage": "https://jenkins.io/", + "size": 112843, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": false, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 91579172, + "node_id": "MDEwOlJlcG9zaXRvcnk5MTU3OTE3Mg==", + "name": "jenkins-design-language", + "full_name": "bitwiseman/jenkins-design-language", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/jenkins-design-language", + "description": "Styles, assets, and React classes for Jenkins Design Language", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/jenkins-design-language", + "forks_url": "https://api.github.com/repos/bitwiseman/jenkins-design-language/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/jenkins-design-language/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/jenkins-design-language/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/jenkins-design-language/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/jenkins-design-language/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/jenkins-design-language/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/jenkins-design-language/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/jenkins-design-language/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/jenkins-design-language/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/jenkins-design-language/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/jenkins-design-language/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/jenkins-design-language/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/jenkins-design-language/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/jenkins-design-language/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/jenkins-design-language/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/jenkins-design-language/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/jenkins-design-language/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/jenkins-design-language/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/jenkins-design-language/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/jenkins-design-language/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/jenkins-design-language/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/jenkins-design-language/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/jenkins-design-language/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/jenkins-design-language/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/jenkins-design-language/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/jenkins-design-language/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/jenkins-design-language/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/jenkins-design-language/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/jenkins-design-language/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/jenkins-design-language/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/jenkins-design-language/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/jenkins-design-language/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/jenkins-design-language/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/jenkins-design-language/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/jenkins-design-language/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/jenkins-design-language/deployments", + "created_at": "2017-05-17T13:24:41Z", + "updated_at": "2017-05-17T13:24:43Z", + "pushed_at": "2017-06-02T20:17:57Z", + "git_url": "git://github.com/bitwiseman/jenkins-design-language.git", + "ssh_url": "git@github.com:bitwiseman/jenkins-design-language.git", + "clone_url": "https://github.com/bitwiseman/jenkins-design-language.git", + "svn_url": "https://github.com/bitwiseman/jenkins-design-language", + "homepage": null, + "size": 7704, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 63375300, + "node_id": "MDEwOlJlcG9zaXRvcnk2MzM3NTMwMA==", + "name": "jenkins-job-dsl-seed-all-demo", + "full_name": "bitwiseman/jenkins-job-dsl-seed-all-demo", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/jenkins-job-dsl-seed-all-demo", + "description": "Example of using a seed-all job with the Jenkins job DSL plugin", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/jenkins-job-dsl-seed-all-demo", + "forks_url": "https://api.github.com/repos/bitwiseman/jenkins-job-dsl-seed-all-demo/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/jenkins-job-dsl-seed-all-demo/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/jenkins-job-dsl-seed-all-demo/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/jenkins-job-dsl-seed-all-demo/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/jenkins-job-dsl-seed-all-demo/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/jenkins-job-dsl-seed-all-demo/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/jenkins-job-dsl-seed-all-demo/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/jenkins-job-dsl-seed-all-demo/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/jenkins-job-dsl-seed-all-demo/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/jenkins-job-dsl-seed-all-demo/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/jenkins-job-dsl-seed-all-demo/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/jenkins-job-dsl-seed-all-demo/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/jenkins-job-dsl-seed-all-demo/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/jenkins-job-dsl-seed-all-demo/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/jenkins-job-dsl-seed-all-demo/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/jenkins-job-dsl-seed-all-demo/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/jenkins-job-dsl-seed-all-demo/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/jenkins-job-dsl-seed-all-demo/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/jenkins-job-dsl-seed-all-demo/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/jenkins-job-dsl-seed-all-demo/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/jenkins-job-dsl-seed-all-demo/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/jenkins-job-dsl-seed-all-demo/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/jenkins-job-dsl-seed-all-demo/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/jenkins-job-dsl-seed-all-demo/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/jenkins-job-dsl-seed-all-demo/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/jenkins-job-dsl-seed-all-demo/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/jenkins-job-dsl-seed-all-demo/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/jenkins-job-dsl-seed-all-demo/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/jenkins-job-dsl-seed-all-demo/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/jenkins-job-dsl-seed-all-demo/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/jenkins-job-dsl-seed-all-demo/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/jenkins-job-dsl-seed-all-demo/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/jenkins-job-dsl-seed-all-demo/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/jenkins-job-dsl-seed-all-demo/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/jenkins-job-dsl-seed-all-demo/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/jenkins-job-dsl-seed-all-demo/deployments", + "created_at": "2016-07-14T23:00:49Z", + "updated_at": "2019-08-17T00:38:22Z", + "pushed_at": "2016-05-17T15:25:17Z", + "git_url": "git://github.com/bitwiseman/jenkins-job-dsl-seed-all-demo.git", + "ssh_url": "git@github.com:bitwiseman/jenkins-job-dsl-seed-all-demo.git", + "clone_url": "https://github.com/bitwiseman/jenkins-job-dsl-seed-all-demo.git", + "svn_url": "https://github.com/bitwiseman/jenkins-job-dsl-seed-all-demo", + "homepage": null, + "size": 5, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Groovy", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 81622791, + "node_id": "MDEwOlJlcG9zaXRvcnk4MTYyMjc5MQ==", + "name": "jenkins-pipeline-global-library-chefci", + "full_name": "bitwiseman/jenkins-pipeline-global-library-chefci", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/jenkins-pipeline-global-library-chefci", + "description": "Jenkins Pipeline's \"Workflow Global Libs\" for Chef CI", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/jenkins-pipeline-global-library-chefci", + "forks_url": "https://api.github.com/repos/bitwiseman/jenkins-pipeline-global-library-chefci/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/jenkins-pipeline-global-library-chefci/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/jenkins-pipeline-global-library-chefci/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/jenkins-pipeline-global-library-chefci/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/jenkins-pipeline-global-library-chefci/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/jenkins-pipeline-global-library-chefci/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/jenkins-pipeline-global-library-chefci/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/jenkins-pipeline-global-library-chefci/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/jenkins-pipeline-global-library-chefci/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/jenkins-pipeline-global-library-chefci/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/jenkins-pipeline-global-library-chefci/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/jenkins-pipeline-global-library-chefci/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/jenkins-pipeline-global-library-chefci/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/jenkins-pipeline-global-library-chefci/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/jenkins-pipeline-global-library-chefci/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/jenkins-pipeline-global-library-chefci/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/jenkins-pipeline-global-library-chefci/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/jenkins-pipeline-global-library-chefci/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/jenkins-pipeline-global-library-chefci/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/jenkins-pipeline-global-library-chefci/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/jenkins-pipeline-global-library-chefci/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/jenkins-pipeline-global-library-chefci/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/jenkins-pipeline-global-library-chefci/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/jenkins-pipeline-global-library-chefci/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/jenkins-pipeline-global-library-chefci/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/jenkins-pipeline-global-library-chefci/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/jenkins-pipeline-global-library-chefci/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/jenkins-pipeline-global-library-chefci/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/jenkins-pipeline-global-library-chefci/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/jenkins-pipeline-global-library-chefci/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/jenkins-pipeline-global-library-chefci/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/jenkins-pipeline-global-library-chefci/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/jenkins-pipeline-global-library-chefci/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/jenkins-pipeline-global-library-chefci/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/jenkins-pipeline-global-library-chefci/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/jenkins-pipeline-global-library-chefci/deployments", + "created_at": "2017-02-11T01:39:36Z", + "updated_at": "2017-02-11T01:39:38Z", + "pushed_at": "2017-02-10T15:27:34Z", + "git_url": "git://github.com/bitwiseman/jenkins-pipeline-global-library-chefci.git", + "ssh_url": "git@github.com:bitwiseman/jenkins-pipeline-global-library-chefci.git", + "clone_url": "https://github.com/bitwiseman/jenkins-pipeline-global-library-chefci.git", + "svn_url": "https://github.com/bitwiseman/jenkins-pipeline-global-library-chefci", + "homepage": null, + "size": 184, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Groovy", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 81898502, + "node_id": "MDEwOlJlcG9zaXRvcnk4MTg5ODUwMg==", + "name": "jenkins-pipeline-shared", + "full_name": "bitwiseman/jenkins-pipeline-shared", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/jenkins-pipeline-shared", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/bitwiseman/jenkins-pipeline-shared", + "forks_url": "https://api.github.com/repos/bitwiseman/jenkins-pipeline-shared/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/jenkins-pipeline-shared/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/jenkins-pipeline-shared/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/jenkins-pipeline-shared/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/jenkins-pipeline-shared/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/jenkins-pipeline-shared/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/jenkins-pipeline-shared/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/jenkins-pipeline-shared/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/jenkins-pipeline-shared/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/jenkins-pipeline-shared/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/jenkins-pipeline-shared/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/jenkins-pipeline-shared/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/jenkins-pipeline-shared/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/jenkins-pipeline-shared/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/jenkins-pipeline-shared/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/jenkins-pipeline-shared/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/jenkins-pipeline-shared/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/jenkins-pipeline-shared/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/jenkins-pipeline-shared/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/jenkins-pipeline-shared/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/jenkins-pipeline-shared/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/jenkins-pipeline-shared/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/jenkins-pipeline-shared/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/jenkins-pipeline-shared/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/jenkins-pipeline-shared/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/jenkins-pipeline-shared/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/jenkins-pipeline-shared/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/jenkins-pipeline-shared/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/jenkins-pipeline-shared/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/jenkins-pipeline-shared/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/jenkins-pipeline-shared/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/jenkins-pipeline-shared/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/jenkins-pipeline-shared/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/jenkins-pipeline-shared/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/jenkins-pipeline-shared/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/jenkins-pipeline-shared/deployments", + "created_at": "2017-02-14T03:05:00Z", + "updated_at": "2019-08-17T00:36:04Z", + "pushed_at": "2017-08-09T23:06:11Z", + "git_url": "git://github.com/bitwiseman/jenkins-pipeline-shared.git", + "ssh_url": "git@github.com:bitwiseman/jenkins-pipeline-shared.git", + "clone_url": "https://github.com/bitwiseman/jenkins-pipeline-shared.git", + "svn_url": "https://github.com/bitwiseman/jenkins-pipeline-shared", + "homepage": null, + "size": 3, + "stargazers_count": 20, + "watchers_count": 20, + "language": "Groovy", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 39, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 39, + "open_issues": 1, + "watchers": 20, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 149319800, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDkzMTk4MDA=", + "name": "jenkins-scripts", + "full_name": "bitwiseman/jenkins-scripts", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/jenkins-scripts", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/jenkins-scripts", + "forks_url": "https://api.github.com/repos/bitwiseman/jenkins-scripts/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/jenkins-scripts/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/jenkins-scripts/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/jenkins-scripts/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/jenkins-scripts/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/jenkins-scripts/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/jenkins-scripts/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/jenkins-scripts/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/jenkins-scripts/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/jenkins-scripts/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/jenkins-scripts/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/jenkins-scripts/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/jenkins-scripts/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/jenkins-scripts/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/jenkins-scripts/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/jenkins-scripts/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/jenkins-scripts/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/jenkins-scripts/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/jenkins-scripts/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/jenkins-scripts/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/jenkins-scripts/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/jenkins-scripts/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/jenkins-scripts/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/jenkins-scripts/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/jenkins-scripts/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/jenkins-scripts/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/jenkins-scripts/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/jenkins-scripts/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/jenkins-scripts/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/jenkins-scripts/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/jenkins-scripts/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/jenkins-scripts/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/jenkins-scripts/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/jenkins-scripts/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/jenkins-scripts/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/jenkins-scripts/deployments", + "created_at": "2018-09-18T16:34:12Z", + "updated_at": "2019-05-20T19:12:53Z", + "pushed_at": "2018-09-18T16:42:08Z", + "git_url": "git://github.com/bitwiseman/jenkins-scripts.git", + "ssh_url": "git@github.com:bitwiseman/jenkins-scripts.git", + "clone_url": "https://github.com/bitwiseman/jenkins-scripts.git", + "svn_url": "https://github.com/bitwiseman/jenkins-scripts", + "homepage": null, + "size": 1728, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Groovy", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 2, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 199496640, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTk0OTY2NDA=", + "name": "jenkins-test-harness", + "full_name": "bitwiseman/jenkins-test-harness", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/jenkins-test-harness", + "description": "Unit test framework for Jenkins core and its plugins", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/jenkins-test-harness", + "forks_url": "https://api.github.com/repos/bitwiseman/jenkins-test-harness/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/jenkins-test-harness/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/jenkins-test-harness/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/jenkins-test-harness/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/jenkins-test-harness/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/jenkins-test-harness/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/jenkins-test-harness/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/jenkins-test-harness/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/jenkins-test-harness/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/jenkins-test-harness/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/jenkins-test-harness/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/jenkins-test-harness/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/jenkins-test-harness/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/jenkins-test-harness/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/jenkins-test-harness/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/jenkins-test-harness/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/jenkins-test-harness/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/jenkins-test-harness/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/jenkins-test-harness/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/jenkins-test-harness/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/jenkins-test-harness/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/jenkins-test-harness/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/jenkins-test-harness/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/jenkins-test-harness/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/jenkins-test-harness/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/jenkins-test-harness/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/jenkins-test-harness/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/jenkins-test-harness/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/jenkins-test-harness/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/jenkins-test-harness/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/jenkins-test-harness/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/jenkins-test-harness/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/jenkins-test-harness/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/jenkins-test-harness/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/jenkins-test-harness/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/jenkins-test-harness/deployments", + "created_at": "2019-07-29T17:19:05Z", + "updated_at": "2019-07-29T17:19:07Z", + "pushed_at": "2019-08-24T00:04:03Z", + "git_url": "git://github.com/bitwiseman/jenkins-test-harness.git", + "ssh_url": "git@github.com:bitwiseman/jenkins-test-harness.git", + "clone_url": "https://github.com/bitwiseman/jenkins-test-harness.git", + "svn_url": "https://github.com/bitwiseman/jenkins-test-harness", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Unit+Test", + "size": 27951, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 125604251, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjU2MDQyNTE=", + "name": "jenkins-x-image", + "full_name": "bitwiseman/jenkins-x-image", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/jenkins-x-image", + "description": "Customised Dockerfile and an opinionated list of plugins used on the Jenkins X platform.", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/jenkins-x-image", + "forks_url": "https://api.github.com/repos/bitwiseman/jenkins-x-image/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/jenkins-x-image/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/jenkins-x-image/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/jenkins-x-image/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/jenkins-x-image/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/jenkins-x-image/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/jenkins-x-image/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/jenkins-x-image/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/jenkins-x-image/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/jenkins-x-image/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/jenkins-x-image/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/jenkins-x-image/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/jenkins-x-image/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/jenkins-x-image/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/jenkins-x-image/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/jenkins-x-image/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/jenkins-x-image/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/jenkins-x-image/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/jenkins-x-image/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/jenkins-x-image/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/jenkins-x-image/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/jenkins-x-image/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/jenkins-x-image/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/jenkins-x-image/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/jenkins-x-image/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/jenkins-x-image/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/jenkins-x-image/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/jenkins-x-image/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/jenkins-x-image/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/jenkins-x-image/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/jenkins-x-image/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/jenkins-x-image/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/jenkins-x-image/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/jenkins-x-image/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/jenkins-x-image/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/jenkins-x-image/deployments", + "created_at": "2018-03-17T06:46:16Z", + "updated_at": "2018-03-17T06:46:17Z", + "pushed_at": "2018-03-17T06:46:42Z", + "git_url": "git://github.com/bitwiseman/jenkins-x-image.git", + "ssh_url": "git@github.com:bitwiseman/jenkins-x-image.git", + "clone_url": "https://github.com/bitwiseman/jenkins-x-image.git", + "svn_url": "https://github.com/bitwiseman/jenkins-x-image", + "homepage": "https://jenkins-x.github.io/jenkins-x-website/", + "size": 12985, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 60292058, + "node_id": "MDEwOlJlcG9zaXRvcnk2MDI5MjA1OA==", + "name": "jenkins.io", + "full_name": "bitwiseman/jenkins.io", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/jenkins.io", + "description": "A static site for the Jenkins automation server", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/jenkins.io", + "forks_url": "https://api.github.com/repos/bitwiseman/jenkins.io/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/jenkins.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/jenkins.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/jenkins.io/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/jenkins.io/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/jenkins.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/jenkins.io/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/jenkins.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/jenkins.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/jenkins.io/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/jenkins.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/jenkins.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/jenkins.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/jenkins.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/jenkins.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/jenkins.io/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/jenkins.io/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/jenkins.io/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/jenkins.io/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/jenkins.io/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/jenkins.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/jenkins.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/jenkins.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/jenkins.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/jenkins.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/jenkins.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/jenkins.io/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/jenkins.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/jenkins.io/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/jenkins.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/jenkins.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/jenkins.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/jenkins.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/jenkins.io/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/jenkins.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/jenkins.io/deployments", + "created_at": "2016-06-02T19:36:34Z", + "updated_at": "2019-06-26T15:18:14Z", + "pushed_at": "2019-06-26T15:18:22Z", + "git_url": "git://github.com/bitwiseman/jenkins.io.git", + "ssh_url": "git@github.com:bitwiseman/jenkins.io.git", + "clone_url": "https://github.com/bitwiseman/jenkins.io.git", + "svn_url": "https://github.com/bitwiseman/jenkins.io", + "homepage": "https://jenkins.io", + "size": 340065, + "stargazers_count": 0, + "watchers_count": 0, + "language": "HTML", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": true, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 103463062, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDM0NjMwNjI=", + "name": "jep", + "full_name": "bitwiseman/jep", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/jep", + "description": "Jenkins Enhancement Proposals", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/jep", + "forks_url": "https://api.github.com/repos/bitwiseman/jep/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/jep/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/jep/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/jep/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/jep/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/jep/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/jep/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/jep/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/jep/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/jep/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/jep/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/jep/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/jep/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/jep/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/jep/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/jep/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/jep/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/jep/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/jep/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/jep/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/jep/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/jep/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/jep/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/jep/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/jep/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/jep/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/jep/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/jep/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/jep/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/jep/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/jep/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/jep/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/jep/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/jep/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/jep/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/jep/deployments", + "created_at": "2017-09-13T23:46:37Z", + "updated_at": "2019-02-12T15:44:25Z", + "pushed_at": "2019-08-08T20:39:19Z", + "git_url": "git://github.com/bitwiseman/jep.git", + "ssh_url": "git@github.com:bitwiseman/jep.git", + "clone_url": "https://github.com/bitwiseman/jep.git", + "svn_url": "https://github.com/bitwiseman/jep", + "homepage": "", + "size": 4075, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Shell", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 101330492, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDEzMzA0OTI=", + "name": "jhipster-sample-app", + "full_name": "bitwiseman/jhipster-sample-app", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/jhipster-sample-app", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/bitwiseman/jhipster-sample-app", + "forks_url": "https://api.github.com/repos/bitwiseman/jhipster-sample-app/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/jhipster-sample-app/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/jhipster-sample-app/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/jhipster-sample-app/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/jhipster-sample-app/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/jhipster-sample-app/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/jhipster-sample-app/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/jhipster-sample-app/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/jhipster-sample-app/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/jhipster-sample-app/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/jhipster-sample-app/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/jhipster-sample-app/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/jhipster-sample-app/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/jhipster-sample-app/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/jhipster-sample-app/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/jhipster-sample-app/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/jhipster-sample-app/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/jhipster-sample-app/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/jhipster-sample-app/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/jhipster-sample-app/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/jhipster-sample-app/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/jhipster-sample-app/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/jhipster-sample-app/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/jhipster-sample-app/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/jhipster-sample-app/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/jhipster-sample-app/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/jhipster-sample-app/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/jhipster-sample-app/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/jhipster-sample-app/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/jhipster-sample-app/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/jhipster-sample-app/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/jhipster-sample-app/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/jhipster-sample-app/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/jhipster-sample-app/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/jhipster-sample-app/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/jhipster-sample-app/deployments", + "created_at": "2017-08-24T19:28:40Z", + "updated_at": "2017-08-24T19:29:50Z", + "pushed_at": "2018-05-23T13:45:20Z", + "git_url": "git://github.com/bitwiseman/jhipster-sample-app.git", + "ssh_url": "git@github.com:bitwiseman/jhipster-sample-app.git", + "clone_url": "https://github.com/bitwiseman/jhipster-sample-app.git", + "svn_url": "https://github.com/bitwiseman/jhipster-sample-app", + "homepage": null, + "size": 32185, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 61638506, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTYzODUwNg==", + "name": "jiphy", + "full_name": "bitwiseman/jiphy", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/jiphy", + "description": "Your client side done in a jiphy. Python to JavaScript 2-way converter.", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/jiphy", + "forks_url": "https://api.github.com/repos/bitwiseman/jiphy/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/jiphy/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/jiphy/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/jiphy/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/jiphy/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/jiphy/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/jiphy/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/jiphy/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/jiphy/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/jiphy/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/jiphy/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/jiphy/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/jiphy/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/jiphy/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/jiphy/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/jiphy/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/jiphy/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/jiphy/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/jiphy/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/jiphy/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/jiphy/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/jiphy/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/jiphy/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/jiphy/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/jiphy/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/jiphy/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/jiphy/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/jiphy/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/jiphy/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/jiphy/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/jiphy/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/jiphy/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/jiphy/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/jiphy/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/jiphy/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/jiphy/deployments", + "created_at": "2016-06-21T14:02:52Z", + "updated_at": "2016-06-21T14:02:54Z", + "pushed_at": "2016-01-27T16:26:05Z", + "git_url": "git://github.com/bitwiseman/jiphy.git", + "ssh_url": "git@github.com:bitwiseman/jiphy.git", + "clone_url": "https://github.com/bitwiseman/jiphy.git", + "svn_url": "https://github.com/bitwiseman/jiphy", + "homepage": null, + "size": 139, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Python", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "develop", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 63376740, + "node_id": "MDEwOlJlcG9zaXRvcnk2MzM3Njc0MA==", + "name": "job-dsl-gradle-example", + "full_name": "bitwiseman/job-dsl-gradle-example", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/job-dsl-gradle-example", + "description": "An example Job DSL project that uses Gradle for building and testing.", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/job-dsl-gradle-example", + "forks_url": "https://api.github.com/repos/bitwiseman/job-dsl-gradle-example/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/job-dsl-gradle-example/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/job-dsl-gradle-example/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/job-dsl-gradle-example/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/job-dsl-gradle-example/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/job-dsl-gradle-example/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/job-dsl-gradle-example/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/job-dsl-gradle-example/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/job-dsl-gradle-example/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/job-dsl-gradle-example/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/job-dsl-gradle-example/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/job-dsl-gradle-example/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/job-dsl-gradle-example/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/job-dsl-gradle-example/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/job-dsl-gradle-example/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/job-dsl-gradle-example/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/job-dsl-gradle-example/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/job-dsl-gradle-example/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/job-dsl-gradle-example/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/job-dsl-gradle-example/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/job-dsl-gradle-example/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/job-dsl-gradle-example/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/job-dsl-gradle-example/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/job-dsl-gradle-example/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/job-dsl-gradle-example/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/job-dsl-gradle-example/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/job-dsl-gradle-example/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/job-dsl-gradle-example/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/job-dsl-gradle-example/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/job-dsl-gradle-example/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/job-dsl-gradle-example/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/job-dsl-gradle-example/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/job-dsl-gradle-example/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/job-dsl-gradle-example/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/job-dsl-gradle-example/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/job-dsl-gradle-example/deployments", + "created_at": "2016-07-14T23:37:36Z", + "updated_at": "2016-07-14T23:37:38Z", + "pushed_at": "2016-07-08T04:45:05Z", + "git_url": "git://github.com/bitwiseman/job-dsl-gradle-example.git", + "ssh_url": "git@github.com:bitwiseman/job-dsl-gradle-example.git", + "clone_url": "https://github.com/bitwiseman/job-dsl-gradle-example.git", + "svn_url": "https://github.com/bitwiseman/job-dsl-gradle-example", + "homepage": "", + "size": 185, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Groovy", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 25043721, + "node_id": "MDEwOlJlcG9zaXRvcnkyNTA0MzcyMQ==", + "name": "job-dsl-playground", + "full_name": "bitwiseman/job-dsl-playground", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/job-dsl-playground", + "description": "An app for debugging Groovy scripts using the Jenkins Job DSL", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/job-dsl-playground", + "forks_url": "https://api.github.com/repos/bitwiseman/job-dsl-playground/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/job-dsl-playground/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/job-dsl-playground/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/job-dsl-playground/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/job-dsl-playground/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/job-dsl-playground/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/job-dsl-playground/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/job-dsl-playground/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/job-dsl-playground/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/job-dsl-playground/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/job-dsl-playground/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/job-dsl-playground/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/job-dsl-playground/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/job-dsl-playground/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/job-dsl-playground/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/job-dsl-playground/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/job-dsl-playground/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/job-dsl-playground/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/job-dsl-playground/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/job-dsl-playground/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/job-dsl-playground/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/job-dsl-playground/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/job-dsl-playground/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/job-dsl-playground/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/job-dsl-playground/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/job-dsl-playground/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/job-dsl-playground/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/job-dsl-playground/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/job-dsl-playground/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/job-dsl-playground/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/job-dsl-playground/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/job-dsl-playground/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/job-dsl-playground/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/job-dsl-playground/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/job-dsl-playground/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/job-dsl-playground/deployments", + "created_at": "2014-10-10T16:27:09Z", + "updated_at": "2014-10-05T02:31:43Z", + "pushed_at": "2014-10-05T02:31:42Z", + "git_url": "git://github.com/bitwiseman/job-dsl-playground.git", + "ssh_url": "git@github.com:bitwiseman/job-dsl-playground.git", + "clone_url": "https://github.com/bitwiseman/job-dsl-playground.git", + "svn_url": "https://github.com/bitwiseman/job-dsl-playground", + "homepage": "job-dsl.heroku.com", + "size": 1420, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 24728427, + "node_id": "MDEwOlJlcG9zaXRvcnkyNDcyODQyNw==", + "name": "job-dsl-plugin", + "full_name": "bitwiseman/job-dsl-plugin", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/job-dsl-plugin", + "description": "A Groovy DSL for Jenkins Jobs - Sweeeeet!", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/job-dsl-plugin", + "forks_url": "https://api.github.com/repos/bitwiseman/job-dsl-plugin/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/job-dsl-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/job-dsl-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/job-dsl-plugin/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/job-dsl-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/job-dsl-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/job-dsl-plugin/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/job-dsl-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/job-dsl-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/job-dsl-plugin/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/job-dsl-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/job-dsl-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/job-dsl-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/job-dsl-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/job-dsl-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/job-dsl-plugin/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/job-dsl-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/job-dsl-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/job-dsl-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/job-dsl-plugin/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/job-dsl-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/job-dsl-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/job-dsl-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/job-dsl-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/job-dsl-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/job-dsl-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/job-dsl-plugin/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/job-dsl-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/job-dsl-plugin/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/job-dsl-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/job-dsl-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/job-dsl-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/job-dsl-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/job-dsl-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/job-dsl-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/job-dsl-plugin/deployments", + "created_at": "2014-10-02T17:13:32Z", + "updated_at": "2016-07-01T21:34:09Z", + "pushed_at": "2017-01-26T20:10:38Z", + "git_url": "git://github.com/bitwiseman/job-dsl-plugin.git", + "ssh_url": "git@github.com:bitwiseman/job-dsl-plugin.git", + "clone_url": "https://github.com/bitwiseman/job-dsl-plugin.git", + "svn_url": "https://github.com/bitwiseman/job-dsl-plugin", + "homepage": "", + "size": 12445, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Groovy", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 8461028, + "node_id": "MDEwOlJlcG9zaXRvcnk4NDYxMDI4", + "name": "js-beautify", + "full_name": "bitwiseman/js-beautify", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/js-beautify", + "description": "Beautifier for javascript", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/js-beautify", + "forks_url": "https://api.github.com/repos/bitwiseman/js-beautify/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/js-beautify/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/js-beautify/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/js-beautify/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/js-beautify/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/js-beautify/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/js-beautify/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/js-beautify/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/js-beautify/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/js-beautify/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/js-beautify/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/js-beautify/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/js-beautify/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/js-beautify/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/js-beautify/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/js-beautify/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/js-beautify/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/js-beautify/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/js-beautify/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/js-beautify/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/js-beautify/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/js-beautify/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/js-beautify/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/js-beautify/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/js-beautify/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/js-beautify/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/js-beautify/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/js-beautify/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/js-beautify/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/js-beautify/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/js-beautify/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/js-beautify/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/js-beautify/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/js-beautify/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/js-beautify/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/js-beautify/deployments", + "created_at": "2013-02-27T17:14:41Z", + "updated_at": "2019-08-06T18:07:46Z", + "pushed_at": "2019-08-06T18:07:44Z", + "git_url": "git://github.com/bitwiseman/js-beautify.git", + "ssh_url": "git@github.com:bitwiseman/js-beautify.git", + "clone_url": "https://github.com/bitwiseman/js-beautify.git", + "svn_url": "https://github.com/bitwiseman/js-beautify", + "homepage": "http://jsbeautifier.org/", + "size": 8821, + "stargazers_count": 3, + "watchers_count": 3, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": false, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 66406588, + "node_id": "MDEwOlJlcG9zaXRvcnk2NjQwNjU4OA==", + "name": "JS-Nightwatch.js", + "full_name": "bitwiseman/JS-Nightwatch.js", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/JS-Nightwatch.js", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/JS-Nightwatch.js", + "forks_url": "https://api.github.com/repos/bitwiseman/JS-Nightwatch.js/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/JS-Nightwatch.js/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/JS-Nightwatch.js/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/JS-Nightwatch.js/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/JS-Nightwatch.js/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/JS-Nightwatch.js/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/JS-Nightwatch.js/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/JS-Nightwatch.js/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/JS-Nightwatch.js/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/JS-Nightwatch.js/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/JS-Nightwatch.js/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/JS-Nightwatch.js/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/JS-Nightwatch.js/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/JS-Nightwatch.js/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/JS-Nightwatch.js/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/JS-Nightwatch.js/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/JS-Nightwatch.js/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/JS-Nightwatch.js/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/JS-Nightwatch.js/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/JS-Nightwatch.js/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/JS-Nightwatch.js/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/JS-Nightwatch.js/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/JS-Nightwatch.js/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/JS-Nightwatch.js/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/JS-Nightwatch.js/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/JS-Nightwatch.js/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/JS-Nightwatch.js/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/JS-Nightwatch.js/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/JS-Nightwatch.js/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/JS-Nightwatch.js/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/JS-Nightwatch.js/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/JS-Nightwatch.js/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/JS-Nightwatch.js/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/JS-Nightwatch.js/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/JS-Nightwatch.js/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/JS-Nightwatch.js/deployments", + "created_at": "2016-08-23T22:00:29Z", + "updated_at": "2018-03-06T14:08:30Z", + "pushed_at": "2017-02-23T02:41:37Z", + "git_url": "git://github.com/bitwiseman/JS-Nightwatch.js.git", + "ssh_url": "git@github.com:bitwiseman/JS-Nightwatch.js.git", + "clone_url": "https://github.com/bitwiseman/JS-Nightwatch.js.git", + "svn_url": "https://github.com/bitwiseman/JS-Nightwatch.js", + "homepage": null, + "size": 144, + "stargazers_count": 2, + "watchers_count": 2, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 3, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 9534924, + "node_id": "MDEwOlJlcG9zaXRvcnk5NTM0OTI0", + "name": "jsdoc", + "full_name": "bitwiseman/jsdoc", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/jsdoc", + "description": "An API documentation generator for JavaScript.", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/jsdoc", + "forks_url": "https://api.github.com/repos/bitwiseman/jsdoc/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/jsdoc/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/jsdoc/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/jsdoc/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/jsdoc/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/jsdoc/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/jsdoc/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/jsdoc/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/jsdoc/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/jsdoc/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/jsdoc/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/jsdoc/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/jsdoc/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/jsdoc/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/jsdoc/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/jsdoc/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/jsdoc/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/jsdoc/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/jsdoc/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/jsdoc/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/jsdoc/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/jsdoc/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/jsdoc/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/jsdoc/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/jsdoc/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/jsdoc/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/jsdoc/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/jsdoc/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/jsdoc/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/jsdoc/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/jsdoc/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/jsdoc/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/jsdoc/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/jsdoc/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/jsdoc/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/jsdoc/deployments", + "created_at": "2013-04-19T00:34:03Z", + "updated_at": "2019-05-04T22:00:20Z", + "pushed_at": "2013-04-18T23:13:41Z", + "git_url": "git://github.com/bitwiseman/jsdoc.git", + "ssh_url": "git@github.com:bitwiseman/jsdoc.git", + "clone_url": "https://github.com/bitwiseman/jsdoc.git", + "svn_url": "https://github.com/bitwiseman/jsdoc", + "homepage": "", + "size": 8874, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testSubscribers/__files/user_1958953_repos-9bdd2b94-9737-4def-8b3a-33f8cbf79e20.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testSubscribers/__files/user_1958953_repos-9bdd2b94-9737-4def-8b3a-33f8cbf79e20.json new file mode 100644 index 0000000000..f18b08a4fc --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testSubscribers/__files/user_1958953_repos-9bdd2b94-9737-4def-8b3a-33f8cbf79e20.json @@ -0,0 +1,3062 @@ +[ + { + "id": 37286104, + "node_id": "MDEwOlJlcG9zaXRvcnkzNzI4NjEwNA==", + "name": "pfs", + "full_name": "bitwiseman/pfs", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/pfs", + "description": "A git-like distributed file system for a Dockerized world.", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/pfs", + "forks_url": "https://api.github.com/repos/bitwiseman/pfs/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/pfs/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/pfs/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/pfs/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/pfs/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/pfs/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/pfs/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/pfs/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/pfs/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/pfs/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/pfs/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/pfs/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/pfs/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/pfs/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/pfs/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/pfs/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/pfs/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/pfs/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/pfs/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/pfs/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/pfs/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/pfs/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/pfs/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/pfs/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/pfs/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/pfs/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/pfs/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/pfs/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/pfs/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/pfs/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/pfs/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/pfs/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/pfs/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/pfs/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/pfs/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/pfs/deployments", + "created_at": "2015-06-11T21:03:29Z", + "updated_at": "2015-06-11T21:03:29Z", + "pushed_at": "2015-06-25T18:27:26Z", + "git_url": "git://github.com/bitwiseman/pfs.git", + "ssh_url": "git@github.com:bitwiseman/pfs.git", + "clone_url": "https://github.com/bitwiseman/pfs.git", + "svn_url": "https://github.com/bitwiseman/pfs", + "homepage": "", + "size": 922, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Go", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 9333585, + "node_id": "MDEwOlJlcG9zaXRvcnk5MzMzNTg1", + "name": "phantomjs", + "full_name": "bitwiseman/phantomjs", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/phantomjs", + "description": "Scriptable Headless WebKit", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/phantomjs", + "forks_url": "https://api.github.com/repos/bitwiseman/phantomjs/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/phantomjs/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/phantomjs/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/phantomjs/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/phantomjs/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/phantomjs/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/phantomjs/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/phantomjs/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/phantomjs/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/phantomjs/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/phantomjs/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/phantomjs/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/phantomjs/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/phantomjs/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/phantomjs/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/phantomjs/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/phantomjs/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/phantomjs/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/phantomjs/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/phantomjs/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/phantomjs/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/phantomjs/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/phantomjs/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/phantomjs/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/phantomjs/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/phantomjs/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/phantomjs/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/phantomjs/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/phantomjs/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/phantomjs/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/phantomjs/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/phantomjs/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/phantomjs/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/phantomjs/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/phantomjs/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/phantomjs/deployments", + "created_at": "2013-04-09T23:07:35Z", + "updated_at": "2013-04-09T23:07:35Z", + "pushed_at": "2013-03-31T10:29:38Z", + "git_url": "git://github.com/bitwiseman/phantomjs.git", + "ssh_url": "git@github.com:bitwiseman/phantomjs.git", + "clone_url": "https://github.com/bitwiseman/phantomjs.git", + "svn_url": "https://github.com/bitwiseman/phantomjs", + "homepage": "http://phantomjs.org", + "size": 39649, + "stargazers_count": 0, + "watchers_count": 0, + "language": "C++", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "bsd-3-clause", + "name": "BSD 3-Clause \"New\" or \"Revised\" License", + "spdx_id": "BSD-3-Clause", + "url": "https://api.github.com/licenses/bsd-3-clause", + "node_id": "MDc6TGljZW5zZTU=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 98461973, + "node_id": "MDEwOlJlcG9zaXRvcnk5ODQ2MTk3Mw==", + "name": "pipeline-dockerfile-sample", + "full_name": "bitwiseman/pipeline-dockerfile-sample", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/pipeline-dockerfile-sample", + "description": "An application that will need a custom environment to build and test", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/pipeline-dockerfile-sample", + "forks_url": "https://api.github.com/repos/bitwiseman/pipeline-dockerfile-sample/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/pipeline-dockerfile-sample/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/pipeline-dockerfile-sample/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/pipeline-dockerfile-sample/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/pipeline-dockerfile-sample/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/pipeline-dockerfile-sample/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/pipeline-dockerfile-sample/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/pipeline-dockerfile-sample/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/pipeline-dockerfile-sample/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/pipeline-dockerfile-sample/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/pipeline-dockerfile-sample/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/pipeline-dockerfile-sample/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/pipeline-dockerfile-sample/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/pipeline-dockerfile-sample/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/pipeline-dockerfile-sample/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/pipeline-dockerfile-sample/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/pipeline-dockerfile-sample/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/pipeline-dockerfile-sample/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/pipeline-dockerfile-sample/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/pipeline-dockerfile-sample/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/pipeline-dockerfile-sample/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/pipeline-dockerfile-sample/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/pipeline-dockerfile-sample/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/pipeline-dockerfile-sample/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/pipeline-dockerfile-sample/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/pipeline-dockerfile-sample/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/pipeline-dockerfile-sample/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/pipeline-dockerfile-sample/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/pipeline-dockerfile-sample/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/pipeline-dockerfile-sample/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/pipeline-dockerfile-sample/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/pipeline-dockerfile-sample/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/pipeline-dockerfile-sample/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/pipeline-dockerfile-sample/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/pipeline-dockerfile-sample/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/pipeline-dockerfile-sample/deployments", + "created_at": "2017-07-26T20:11:43Z", + "updated_at": "2017-07-26T14:58:18Z", + "pushed_at": "2017-09-08T22:32:46Z", + "git_url": "git://github.com/bitwiseman/pipeline-dockerfile-sample.git", + "ssh_url": "git@github.com:bitwiseman/pipeline-dockerfile-sample.git", + "clone_url": "https://github.com/bitwiseman/pipeline-dockerfile-sample.git", + "svn_url": "https://github.com/bitwiseman/pipeline-dockerfile-sample", + "homepage": "", + "size": 2, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 60372338, + "node_id": "MDEwOlJlcG9zaXRvcnk2MDM3MjMzOA==", + "name": "pipeline-examples", + "full_name": "bitwiseman/pipeline-examples", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/pipeline-examples", + "description": "A collection of examples, tips and tricks and snippets of scripting for the Jenkins Pipeline plugin", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/pipeline-examples", + "forks_url": "https://api.github.com/repos/bitwiseman/pipeline-examples/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/pipeline-examples/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/pipeline-examples/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/pipeline-examples/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/pipeline-examples/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/pipeline-examples/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/pipeline-examples/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/pipeline-examples/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/pipeline-examples/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/pipeline-examples/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/pipeline-examples/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/pipeline-examples/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/pipeline-examples/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/pipeline-examples/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/pipeline-examples/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/pipeline-examples/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/pipeline-examples/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/pipeline-examples/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/pipeline-examples/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/pipeline-examples/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/pipeline-examples/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/pipeline-examples/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/pipeline-examples/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/pipeline-examples/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/pipeline-examples/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/pipeline-examples/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/pipeline-examples/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/pipeline-examples/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/pipeline-examples/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/pipeline-examples/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/pipeline-examples/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/pipeline-examples/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/pipeline-examples/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/pipeline-examples/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/pipeline-examples/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/pipeline-examples/deployments", + "created_at": "2016-06-03T19:23:06Z", + "updated_at": "2018-08-09T22:47:34Z", + "pushed_at": "2017-06-20T17:02:18Z", + "git_url": "git://github.com/bitwiseman/pipeline-examples.git", + "ssh_url": "git@github.com:bitwiseman/pipeline-examples.git", + "clone_url": "https://github.com/bitwiseman/pipeline-examples.git", + "svn_url": "https://github.com/bitwiseman/pipeline-examples", + "homepage": "", + "size": 89, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Groovy", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 4, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 80481493, + "node_id": "MDEwOlJlcG9zaXRvcnk4MDQ4MTQ5Mw==", + "name": "pipeline-library", + "full_name": "bitwiseman/pipeline-library", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/pipeline-library", + "description": "Collection of custom steps and variables for our Jenkins instance(s)", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/pipeline-library", + "forks_url": "https://api.github.com/repos/bitwiseman/pipeline-library/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/pipeline-library/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/pipeline-library/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/pipeline-library/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/pipeline-library/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/pipeline-library/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/pipeline-library/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/pipeline-library/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/pipeline-library/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/pipeline-library/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/pipeline-library/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/pipeline-library/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/pipeline-library/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/pipeline-library/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/pipeline-library/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/pipeline-library/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/pipeline-library/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/pipeline-library/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/pipeline-library/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/pipeline-library/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/pipeline-library/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/pipeline-library/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/pipeline-library/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/pipeline-library/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/pipeline-library/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/pipeline-library/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/pipeline-library/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/pipeline-library/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/pipeline-library/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/pipeline-library/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/pipeline-library/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/pipeline-library/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/pipeline-library/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/pipeline-library/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/pipeline-library/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/pipeline-library/deployments", + "created_at": "2017-01-31T01:33:01Z", + "updated_at": "2017-01-31T01:33:02Z", + "pushed_at": "2017-02-08T22:29:36Z", + "git_url": "git://github.com/bitwiseman/pipeline-library.git", + "ssh_url": "git@github.com:bitwiseman/pipeline-library.git", + "clone_url": "https://github.com/bitwiseman/pipeline-library.git", + "svn_url": "https://github.com/bitwiseman/pipeline-library", + "homepage": null, + "size": 19, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Groovy", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 112238487, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTIyMzg0ODc=", + "name": "pipeline-model-definition-plugin", + "full_name": "bitwiseman/pipeline-model-definition-plugin", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/pipeline-model-definition-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/pipeline-model-definition-plugin", + "forks_url": "https://api.github.com/repos/bitwiseman/pipeline-model-definition-plugin/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/pipeline-model-definition-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/pipeline-model-definition-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/pipeline-model-definition-plugin/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/pipeline-model-definition-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/pipeline-model-definition-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/pipeline-model-definition-plugin/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/pipeline-model-definition-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/pipeline-model-definition-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/pipeline-model-definition-plugin/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/pipeline-model-definition-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/pipeline-model-definition-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/pipeline-model-definition-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/pipeline-model-definition-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/pipeline-model-definition-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/pipeline-model-definition-plugin/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/pipeline-model-definition-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/pipeline-model-definition-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/pipeline-model-definition-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/pipeline-model-definition-plugin/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/pipeline-model-definition-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/pipeline-model-definition-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/pipeline-model-definition-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/pipeline-model-definition-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/pipeline-model-definition-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/pipeline-model-definition-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/pipeline-model-definition-plugin/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/pipeline-model-definition-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/pipeline-model-definition-plugin/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/pipeline-model-definition-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/pipeline-model-definition-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/pipeline-model-definition-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/pipeline-model-definition-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/pipeline-model-definition-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/pipeline-model-definition-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/pipeline-model-definition-plugin/deployments", + "created_at": "2017-11-27T19:23:35Z", + "updated_at": "2019-10-13T02:53:11Z", + "pushed_at": "2019-10-25T01:20:30Z", + "git_url": "git://github.com/bitwiseman/pipeline-model-definition-plugin.git", + "ssh_url": "git@github.com:bitwiseman/pipeline-model-definition-plugin.git", + "clone_url": "https://github.com/bitwiseman/pipeline-model-definition-plugin.git", + "svn_url": "https://github.com/bitwiseman/pipeline-model-definition-plugin", + "homepage": "https://plugins.jenkins.io/pipeline-model-definition", + "size": 4060, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Groovy", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 99053267, + "node_id": "MDEwOlJlcG9zaXRvcnk5OTA1MzI2Nw==", + "name": "pipeline-parameters-demo", + "full_name": "bitwiseman/pipeline-parameters-demo", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/pipeline-parameters-demo", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/pipeline-parameters-demo", + "forks_url": "https://api.github.com/repos/bitwiseman/pipeline-parameters-demo/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/pipeline-parameters-demo/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/pipeline-parameters-demo/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/pipeline-parameters-demo/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/pipeline-parameters-demo/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/pipeline-parameters-demo/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/pipeline-parameters-demo/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/pipeline-parameters-demo/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/pipeline-parameters-demo/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/pipeline-parameters-demo/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/pipeline-parameters-demo/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/pipeline-parameters-demo/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/pipeline-parameters-demo/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/pipeline-parameters-demo/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/pipeline-parameters-demo/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/pipeline-parameters-demo/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/pipeline-parameters-demo/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/pipeline-parameters-demo/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/pipeline-parameters-demo/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/pipeline-parameters-demo/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/pipeline-parameters-demo/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/pipeline-parameters-demo/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/pipeline-parameters-demo/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/pipeline-parameters-demo/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/pipeline-parameters-demo/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/pipeline-parameters-demo/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/pipeline-parameters-demo/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/pipeline-parameters-demo/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/pipeline-parameters-demo/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/pipeline-parameters-demo/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/pipeline-parameters-demo/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/pipeline-parameters-demo/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/pipeline-parameters-demo/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/pipeline-parameters-demo/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/pipeline-parameters-demo/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/pipeline-parameters-demo/deployments", + "created_at": "2017-08-02T00:01:42Z", + "updated_at": "2017-08-01T20:43:37Z", + "pushed_at": "2017-08-02T03:18:48Z", + "git_url": "git://github.com/bitwiseman/pipeline-parameters-demo.git", + "ssh_url": "git@github.com:bitwiseman/pipeline-parameters-demo.git", + "clone_url": "https://github.com/bitwiseman/pipeline-parameters-demo.git", + "svn_url": "https://github.com/bitwiseman/pipeline-parameters-demo", + "homepage": null, + "size": 1, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 64791298, + "node_id": "MDEwOlJlcG9zaXRvcnk2NDc5MTI5OA==", + "name": "pipeline-plugin", + "full_name": "bitwiseman/pipeline-plugin", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/pipeline-plugin", + "description": "Jenkins Pipeline plugin", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/pipeline-plugin", + "forks_url": "https://api.github.com/repos/bitwiseman/pipeline-plugin/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/pipeline-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/pipeline-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/pipeline-plugin/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/pipeline-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/pipeline-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/pipeline-plugin/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/pipeline-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/pipeline-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/pipeline-plugin/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/pipeline-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/pipeline-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/pipeline-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/pipeline-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/pipeline-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/pipeline-plugin/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/pipeline-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/pipeline-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/pipeline-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/pipeline-plugin/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/pipeline-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/pipeline-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/pipeline-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/pipeline-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/pipeline-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/pipeline-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/pipeline-plugin/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/pipeline-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/pipeline-plugin/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/pipeline-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/pipeline-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/pipeline-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/pipeline-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/pipeline-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/pipeline-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/pipeline-plugin/deployments", + "created_at": "2016-08-02T20:43:56Z", + "updated_at": "2016-08-02T06:32:59Z", + "pushed_at": "2016-08-02T21:00:47Z", + "git_url": "git://github.com/bitwiseman/pipeline-plugin.git", + "ssh_url": "git@github.com:bitwiseman/pipeline-plugin.git", + "clone_url": "https://github.com/bitwiseman/pipeline-plugin.git", + "svn_url": "https://github.com/bitwiseman/pipeline-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Pipeline+Plugin", + "size": 5367, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 81858383, + "node_id": "MDEwOlJlcG9zaXRvcnk4MTg1ODM4Mw==", + "name": "pipeline-steps-doc-generator", + "full_name": "bitwiseman/pipeline-steps-doc-generator", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/pipeline-steps-doc-generator", + "description": "Creates the documentation for pipeline job steps", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/pipeline-steps-doc-generator", + "forks_url": "https://api.github.com/repos/bitwiseman/pipeline-steps-doc-generator/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/pipeline-steps-doc-generator/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/pipeline-steps-doc-generator/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/pipeline-steps-doc-generator/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/pipeline-steps-doc-generator/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/pipeline-steps-doc-generator/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/pipeline-steps-doc-generator/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/pipeline-steps-doc-generator/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/pipeline-steps-doc-generator/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/pipeline-steps-doc-generator/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/pipeline-steps-doc-generator/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/pipeline-steps-doc-generator/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/pipeline-steps-doc-generator/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/pipeline-steps-doc-generator/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/pipeline-steps-doc-generator/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/pipeline-steps-doc-generator/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/pipeline-steps-doc-generator/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/pipeline-steps-doc-generator/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/pipeline-steps-doc-generator/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/pipeline-steps-doc-generator/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/pipeline-steps-doc-generator/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/pipeline-steps-doc-generator/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/pipeline-steps-doc-generator/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/pipeline-steps-doc-generator/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/pipeline-steps-doc-generator/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/pipeline-steps-doc-generator/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/pipeline-steps-doc-generator/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/pipeline-steps-doc-generator/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/pipeline-steps-doc-generator/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/pipeline-steps-doc-generator/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/pipeline-steps-doc-generator/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/pipeline-steps-doc-generator/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/pipeline-steps-doc-generator/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/pipeline-steps-doc-generator/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/pipeline-steps-doc-generator/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/pipeline-steps-doc-generator/deployments", + "created_at": "2017-02-13T18:43:54Z", + "updated_at": "2018-06-25T20:18:59Z", + "pushed_at": "2018-07-06T18:43:46Z", + "git_url": "git://github.com/bitwiseman/pipeline-steps-doc-generator.git", + "ssh_url": "git@github.com:bitwiseman/pipeline-steps-doc-generator.git", + "clone_url": "https://github.com/bitwiseman/pipeline-steps-doc-generator.git", + "svn_url": "https://github.com/bitwiseman/pipeline-steps-doc-generator", + "homepage": "", + "size": 16882, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 192011604, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTIwMTE2MDQ=", + "name": "plugin-pom", + "full_name": "bitwiseman/plugin-pom", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/plugin-pom", + "description": "Parent POM for Jenkins Plugins", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/plugin-pom", + "forks_url": "https://api.github.com/repos/bitwiseman/plugin-pom/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/plugin-pom/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/plugin-pom/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/plugin-pom/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/plugin-pom/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/plugin-pom/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/plugin-pom/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/plugin-pom/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/plugin-pom/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/plugin-pom/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/plugin-pom/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/plugin-pom/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/plugin-pom/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/plugin-pom/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/plugin-pom/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/plugin-pom/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/plugin-pom/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/plugin-pom/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/plugin-pom/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/plugin-pom/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/plugin-pom/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/plugin-pom/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/plugin-pom/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/plugin-pom/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/plugin-pom/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/plugin-pom/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/plugin-pom/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/plugin-pom/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/plugin-pom/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/plugin-pom/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/plugin-pom/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/plugin-pom/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/plugin-pom/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/plugin-pom/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/plugin-pom/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/plugin-pom/deployments", + "created_at": "2019-06-14T22:21:25Z", + "updated_at": "2019-06-14T22:21:28Z", + "pushed_at": "2019-06-16T04:40:26Z", + "git_url": "git://github.com/bitwiseman/plugin-pom.git", + "ssh_url": "git@github.com:bitwiseman/plugin-pom.git", + "clone_url": "https://github.com/bitwiseman/plugin-pom.git", + "svn_url": "https://github.com/bitwiseman/plugin-pom", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Plugin+tutorial", + "size": 637, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 151753597, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTE3NTM1OTc=", + "name": "pocha", + "full_name": "bitwiseman/pocha", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/pocha", + "description": "pocha - mocha for python", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/pocha", + "forks_url": "https://api.github.com/repos/bitwiseman/pocha/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/pocha/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/pocha/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/pocha/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/pocha/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/pocha/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/pocha/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/pocha/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/pocha/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/pocha/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/pocha/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/pocha/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/pocha/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/pocha/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/pocha/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/pocha/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/pocha/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/pocha/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/pocha/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/pocha/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/pocha/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/pocha/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/pocha/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/pocha/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/pocha/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/pocha/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/pocha/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/pocha/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/pocha/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/pocha/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/pocha/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/pocha/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/pocha/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/pocha/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/pocha/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/pocha/deployments", + "created_at": "2018-10-05T17:08:58Z", + "updated_at": "2018-10-05T17:09:00Z", + "pushed_at": "2018-10-05T17:10:15Z", + "git_url": "git://github.com/bitwiseman/pocha.git", + "ssh_url": "git@github.com:bitwiseman/pocha.git", + "clone_url": "https://github.com/bitwiseman/pocha.git", + "svn_url": "https://github.com/bitwiseman/pocha", + "homepage": null, + "size": 47, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Python", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 192378112, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTIzNzgxMTI=", + "name": "pom", + "full_name": "bitwiseman/pom", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/pom", + "description": "Parent POM", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/pom", + "forks_url": "https://api.github.com/repos/bitwiseman/pom/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/pom/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/pom/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/pom/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/pom/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/pom/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/pom/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/pom/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/pom/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/pom/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/pom/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/pom/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/pom/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/pom/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/pom/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/pom/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/pom/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/pom/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/pom/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/pom/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/pom/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/pom/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/pom/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/pom/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/pom/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/pom/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/pom/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/pom/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/pom/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/pom/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/pom/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/pom/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/pom/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/pom/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/pom/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/pom/deployments", + "created_at": "2019-06-17T16:02:33Z", + "updated_at": "2019-06-17T16:02:36Z", + "pushed_at": "2019-06-17T16:14:46Z", + "git_url": "git://github.com/bitwiseman/pom.git", + "ssh_url": "git@github.com:bitwiseman/pom.git", + "clone_url": "https://github.com/bitwiseman/pom.git", + "svn_url": "https://github.com/bitwiseman/pom", + "homepage": "https://jenkins.io", + "size": 198, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 33625991, + "node_id": "MDEwOlJlcG9zaXRvcnkzMzYyNTk5MQ==", + "name": "prettydiff", + "full_name": "bitwiseman/prettydiff", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/prettydiff", + "description": "Compare code instead of text.", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/prettydiff", + "forks_url": "https://api.github.com/repos/bitwiseman/prettydiff/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/prettydiff/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/prettydiff/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/prettydiff/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/prettydiff/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/prettydiff/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/prettydiff/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/prettydiff/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/prettydiff/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/prettydiff/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/prettydiff/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/prettydiff/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/prettydiff/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/prettydiff/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/prettydiff/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/prettydiff/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/prettydiff/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/prettydiff/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/prettydiff/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/prettydiff/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/prettydiff/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/prettydiff/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/prettydiff/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/prettydiff/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/prettydiff/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/prettydiff/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/prettydiff/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/prettydiff/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/prettydiff/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/prettydiff/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/prettydiff/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/prettydiff/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/prettydiff/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/prettydiff/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/prettydiff/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/prettydiff/deployments", + "created_at": "2015-04-08T18:55:13Z", + "updated_at": "2015-04-08T18:55:14Z", + "pushed_at": "2015-04-04T03:10:37Z", + "git_url": "git://github.com/bitwiseman/prettydiff.git", + "ssh_url": "git@github.com:bitwiseman/prettydiff.git", + "clone_url": "https://github.com/bitwiseman/prettydiff.git", + "svn_url": "https://github.com/bitwiseman/prettydiff", + "homepage": "http://prettydiff.com/", + "size": 15335, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 93561883, + "node_id": "MDEwOlJlcG9zaXRvcnk5MzU2MTg4Mw==", + "name": "Public_Speaking", + "full_name": "bitwiseman/Public_Speaking", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/Public_Speaking", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/Public_Speaking", + "forks_url": "https://api.github.com/repos/bitwiseman/Public_Speaking/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/Public_Speaking/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/Public_Speaking/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/Public_Speaking/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/Public_Speaking/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/Public_Speaking/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/Public_Speaking/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/Public_Speaking/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/Public_Speaking/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/Public_Speaking/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/Public_Speaking/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/Public_Speaking/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/Public_Speaking/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/Public_Speaking/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/Public_Speaking/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/Public_Speaking/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/Public_Speaking/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/Public_Speaking/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/Public_Speaking/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/Public_Speaking/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/Public_Speaking/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/Public_Speaking/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/Public_Speaking/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/Public_Speaking/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/Public_Speaking/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/Public_Speaking/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/Public_Speaking/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/Public_Speaking/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/Public_Speaking/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/Public_Speaking/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/Public_Speaking/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/Public_Speaking/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/Public_Speaking/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/Public_Speaking/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/Public_Speaking/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/Public_Speaking/deployments", + "created_at": "2017-06-06T20:40:25Z", + "updated_at": "2019-01-13T21:18:35Z", + "pushed_at": "2017-06-06T18:31:56Z", + "git_url": "git://github.com/bitwiseman/Public_Speaking.git", + "ssh_url": "git@github.com:bitwiseman/Public_Speaking.git", + "clone_url": "https://github.com/bitwiseman/Public_Speaking.git", + "svn_url": "https://github.com/bitwiseman/Public_Speaking", + "homepage": null, + "size": 25, + "stargazers_count": 2, + "watchers_count": 2, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "cc-by-sa-4.0", + "name": "Creative Commons Attribution Share Alike 4.0 International", + "spdx_id": "CC-BY-SA-4.0", + "url": "https://api.github.com/licenses/cc-by-sa-4.0", + "node_id": "MDc6TGljZW5zZTI2" + }, + "forks": 3, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 164011767, + "node_id": "MDEwOlJlcG9zaXRvcnkxNjQwMTE3Njc=", + "name": "pulumi-docs", + "full_name": "bitwiseman/pulumi-docs", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/pulumi-docs", + "description": "Documentation for all things Pulumi!", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/pulumi-docs", + "forks_url": "https://api.github.com/repos/bitwiseman/pulumi-docs/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/pulumi-docs/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/pulumi-docs/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/pulumi-docs/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/pulumi-docs/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/pulumi-docs/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/pulumi-docs/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/pulumi-docs/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/pulumi-docs/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/pulumi-docs/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/pulumi-docs/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/pulumi-docs/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/pulumi-docs/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/pulumi-docs/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/pulumi-docs/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/pulumi-docs/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/pulumi-docs/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/pulumi-docs/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/pulumi-docs/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/pulumi-docs/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/pulumi-docs/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/pulumi-docs/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/pulumi-docs/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/pulumi-docs/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/pulumi-docs/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/pulumi-docs/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/pulumi-docs/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/pulumi-docs/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/pulumi-docs/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/pulumi-docs/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/pulumi-docs/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/pulumi-docs/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/pulumi-docs/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/pulumi-docs/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/pulumi-docs/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/pulumi-docs/deployments", + "created_at": "2019-01-03T19:01:36Z", + "updated_at": "2019-01-03T19:01:57Z", + "pushed_at": "2019-01-03T19:08:06Z", + "git_url": "git://github.com/bitwiseman/pulumi-docs.git", + "ssh_url": "git@github.com:bitwiseman/pulumi-docs.git", + "clone_url": "https://github.com/bitwiseman/pulumi-docs.git", + "svn_url": "https://github.com/bitwiseman/pulumi-docs", + "homepage": "https://pulumi.io", + "size": 26821, + "stargazers_count": 0, + "watchers_count": 0, + "language": "CSS", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 192763274, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTI3NjMyNzQ=", + "name": "scm-api-plugin", + "full_name": "bitwiseman/scm-api-plugin", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/scm-api-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/scm-api-plugin", + "forks_url": "https://api.github.com/repos/bitwiseman/scm-api-plugin/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/scm-api-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/scm-api-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/scm-api-plugin/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/scm-api-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/scm-api-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/scm-api-plugin/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/scm-api-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/scm-api-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/scm-api-plugin/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/scm-api-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/scm-api-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/scm-api-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/scm-api-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/scm-api-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/scm-api-plugin/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/scm-api-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/scm-api-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/scm-api-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/scm-api-plugin/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/scm-api-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/scm-api-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/scm-api-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/scm-api-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/scm-api-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/scm-api-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/scm-api-plugin/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/scm-api-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/scm-api-plugin/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/scm-api-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/scm-api-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/scm-api-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/scm-api-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/scm-api-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/scm-api-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/scm-api-plugin/deployments", + "created_at": "2019-06-19T15:55:13Z", + "updated_at": "2019-07-11T16:17:35Z", + "pushed_at": "2019-07-11T16:17:34Z", + "git_url": "git://github.com/bitwiseman/scm-api-plugin.git", + "ssh_url": "git@github.com:bitwiseman/scm-api-plugin.git", + "clone_url": "https://github.com/bitwiseman/scm-api-plugin.git", + "svn_url": "https://github.com/bitwiseman/scm-api-plugin", + "homepage": "http://wiki.jenkins-ci.org/display/JENKINS/SCM+API+Plugin", + "size": 829, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 14345426, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDM0NTQyNg==", + "name": "scm-sync-configuration-plugin", + "full_name": "bitwiseman/scm-sync-configuration-plugin", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/scm-sync-configuration-plugin", + "description": "Jenkins scm-sync-configuration plugin", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/scm-sync-configuration-plugin", + "forks_url": "https://api.github.com/repos/bitwiseman/scm-sync-configuration-plugin/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/scm-sync-configuration-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/scm-sync-configuration-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/scm-sync-configuration-plugin/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/scm-sync-configuration-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/scm-sync-configuration-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/scm-sync-configuration-plugin/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/scm-sync-configuration-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/scm-sync-configuration-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/scm-sync-configuration-plugin/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/scm-sync-configuration-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/scm-sync-configuration-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/scm-sync-configuration-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/scm-sync-configuration-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/scm-sync-configuration-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/scm-sync-configuration-plugin/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/scm-sync-configuration-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/scm-sync-configuration-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/scm-sync-configuration-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/scm-sync-configuration-plugin/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/scm-sync-configuration-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/scm-sync-configuration-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/scm-sync-configuration-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/scm-sync-configuration-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/scm-sync-configuration-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/scm-sync-configuration-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/scm-sync-configuration-plugin/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/scm-sync-configuration-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/scm-sync-configuration-plugin/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/scm-sync-configuration-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/scm-sync-configuration-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/scm-sync-configuration-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/scm-sync-configuration-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/scm-sync-configuration-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/scm-sync-configuration-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/scm-sync-configuration-plugin/deployments", + "created_at": "2013-11-12T21:20:38Z", + "updated_at": "2013-11-12T21:20:39Z", + "pushed_at": "2013-11-10T02:16:26Z", + "git_url": "git://github.com/bitwiseman/scm-sync-configuration-plugin.git", + "ssh_url": "git@github.com:bitwiseman/scm-sync-configuration-plugin.git", + "clone_url": "https://github.com/bitwiseman/scm-sync-configuration-plugin.git", + "svn_url": "https://github.com/bitwiseman/scm-sync-configuration-plugin", + "homepage": "http://jenkins-ci.org/", + "size": 897, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 188463804, + "node_id": "MDEwOlJlcG9zaXRvcnkxODg0NjM4MDQ=", + "name": "script-security-plugin", + "full_name": "bitwiseman/script-security-plugin", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/script-security-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/script-security-plugin", + "forks_url": "https://api.github.com/repos/bitwiseman/script-security-plugin/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/script-security-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/script-security-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/script-security-plugin/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/script-security-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/script-security-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/script-security-plugin/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/script-security-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/script-security-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/script-security-plugin/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/script-security-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/script-security-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/script-security-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/script-security-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/script-security-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/script-security-plugin/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/script-security-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/script-security-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/script-security-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/script-security-plugin/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/script-security-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/script-security-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/script-security-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/script-security-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/script-security-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/script-security-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/script-security-plugin/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/script-security-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/script-security-plugin/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/script-security-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/script-security-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/script-security-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/script-security-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/script-security-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/script-security-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/script-security-plugin/deployments", + "created_at": "2019-05-24T17:39:24Z", + "updated_at": "2019-05-31T15:35:09Z", + "pushed_at": "2019-05-31T15:35:08Z", + "git_url": "git://github.com/bitwiseman/script-security-plugin.git", + "ssh_url": "git@github.com:bitwiseman/script-security-plugin.git", + "clone_url": "https://github.com/bitwiseman/script-security-plugin.git", + "svn_url": "https://github.com/bitwiseman/script-security-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Script+Security+Plugin", + "size": 1163, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 65853487, + "node_id": "MDEwOlJlcG9zaXRvcnk2NTg1MzQ4Nw==", + "name": "Selenium-Maven-Template", + "full_name": "bitwiseman/Selenium-Maven-Template", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/Selenium-Maven-Template", + "description": "A maven template for Selenium that will let you check out and go.", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/Selenium-Maven-Template", + "forks_url": "https://api.github.com/repos/bitwiseman/Selenium-Maven-Template/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/Selenium-Maven-Template/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/Selenium-Maven-Template/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/Selenium-Maven-Template/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/Selenium-Maven-Template/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/Selenium-Maven-Template/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/Selenium-Maven-Template/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/Selenium-Maven-Template/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/Selenium-Maven-Template/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/Selenium-Maven-Template/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/Selenium-Maven-Template/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/Selenium-Maven-Template/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/Selenium-Maven-Template/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/Selenium-Maven-Template/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/Selenium-Maven-Template/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/Selenium-Maven-Template/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/Selenium-Maven-Template/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/Selenium-Maven-Template/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/Selenium-Maven-Template/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/Selenium-Maven-Template/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/Selenium-Maven-Template/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/Selenium-Maven-Template/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/Selenium-Maven-Template/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/Selenium-Maven-Template/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/Selenium-Maven-Template/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/Selenium-Maven-Template/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/Selenium-Maven-Template/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/Selenium-Maven-Template/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/Selenium-Maven-Template/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/Selenium-Maven-Template/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/Selenium-Maven-Template/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/Selenium-Maven-Template/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/Selenium-Maven-Template/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/Selenium-Maven-Template/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/Selenium-Maven-Template/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/Selenium-Maven-Template/deployments", + "created_at": "2016-08-16T21:02:53Z", + "updated_at": "2016-08-16T21:02:54Z", + "pushed_at": "2016-08-23T19:53:14Z", + "git_url": "git://github.com/bitwiseman/Selenium-Maven-Template.git", + "ssh_url": "git@github.com:bitwiseman/Selenium-Maven-Template.git", + "clone_url": "https://github.com/bitwiseman/Selenium-Maven-Template.git", + "svn_url": "https://github.com/bitwiseman/Selenium-Maven-Template", + "homepage": null, + "size": 22493, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 65862617, + "node_id": "MDEwOlJlcG9zaXRvcnk2NTg2MjYxNw==", + "name": "selenium-standalone-server-plugin", + "full_name": "bitwiseman/selenium-standalone-server-plugin", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/selenium-standalone-server-plugin", + "description": "A Maven plugin that will download the WebDriver stand alone server executables for use in your mavenised Selenium project.", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/selenium-standalone-server-plugin", + "forks_url": "https://api.github.com/repos/bitwiseman/selenium-standalone-server-plugin/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/selenium-standalone-server-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/selenium-standalone-server-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/selenium-standalone-server-plugin/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/selenium-standalone-server-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/selenium-standalone-server-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/selenium-standalone-server-plugin/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/selenium-standalone-server-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/selenium-standalone-server-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/selenium-standalone-server-plugin/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/selenium-standalone-server-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/selenium-standalone-server-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/selenium-standalone-server-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/selenium-standalone-server-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/selenium-standalone-server-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/selenium-standalone-server-plugin/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/selenium-standalone-server-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/selenium-standalone-server-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/selenium-standalone-server-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/selenium-standalone-server-plugin/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/selenium-standalone-server-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/selenium-standalone-server-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/selenium-standalone-server-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/selenium-standalone-server-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/selenium-standalone-server-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/selenium-standalone-server-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/selenium-standalone-server-plugin/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/selenium-standalone-server-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/selenium-standalone-server-plugin/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/selenium-standalone-server-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/selenium-standalone-server-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/selenium-standalone-server-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/selenium-standalone-server-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/selenium-standalone-server-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/selenium-standalone-server-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/selenium-standalone-server-plugin/deployments", + "created_at": "2016-08-17T00:19:17Z", + "updated_at": "2016-08-17T00:19:18Z", + "pushed_at": "2016-08-13T13:17:33Z", + "git_url": "git://github.com/bitwiseman/selenium-standalone-server-plugin.git", + "ssh_url": "git@github.com:bitwiseman/selenium-standalone-server-plugin.git", + "clone_url": "https://github.com/bitwiseman/selenium-standalone-server-plugin.git", + "svn_url": "https://github.com/bitwiseman/selenium-standalone-server-plugin", + "homepage": null, + "size": 1016, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 17652519, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzY1MjUxOQ==", + "name": "ShiftIt", + "full_name": "bitwiseman/ShiftIt", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/ShiftIt", + "description": "Managing windows size and position in OSX", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/ShiftIt", + "forks_url": "https://api.github.com/repos/bitwiseman/ShiftIt/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/ShiftIt/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/ShiftIt/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/ShiftIt/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/ShiftIt/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/ShiftIt/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/ShiftIt/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/ShiftIt/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/ShiftIt/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/ShiftIt/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/ShiftIt/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/ShiftIt/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/ShiftIt/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/ShiftIt/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/ShiftIt/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/ShiftIt/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/ShiftIt/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/ShiftIt/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/ShiftIt/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/ShiftIt/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/ShiftIt/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/ShiftIt/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/ShiftIt/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/ShiftIt/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/ShiftIt/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/ShiftIt/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/ShiftIt/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/ShiftIt/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/ShiftIt/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/ShiftIt/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/ShiftIt/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/ShiftIt/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/ShiftIt/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/ShiftIt/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/ShiftIt/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/ShiftIt/deployments", + "created_at": "2014-03-12T02:21:28Z", + "updated_at": "2014-03-12T02:21:29Z", + "pushed_at": "2014-01-25T12:27:12Z", + "git_url": "git://github.com/bitwiseman/ShiftIt.git", + "ssh_url": "git@github.com:bitwiseman/ShiftIt.git", + "clone_url": "https://github.com/bitwiseman/ShiftIt.git", + "svn_url": "https://github.com/bitwiseman/ShiftIt", + "homepage": "", + "size": 6351, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Objective-C", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "develop", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 113108970, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTMxMDg5NzA=", + "name": "simple-python-pyinstaller-app", + "full_name": "bitwiseman/simple-python-pyinstaller-app", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/simple-python-pyinstaller-app", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/simple-python-pyinstaller-app", + "forks_url": "https://api.github.com/repos/bitwiseman/simple-python-pyinstaller-app/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/simple-python-pyinstaller-app/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/simple-python-pyinstaller-app/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/simple-python-pyinstaller-app/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/simple-python-pyinstaller-app/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/simple-python-pyinstaller-app/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/simple-python-pyinstaller-app/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/simple-python-pyinstaller-app/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/simple-python-pyinstaller-app/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/simple-python-pyinstaller-app/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/simple-python-pyinstaller-app/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/simple-python-pyinstaller-app/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/simple-python-pyinstaller-app/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/simple-python-pyinstaller-app/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/simple-python-pyinstaller-app/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/simple-python-pyinstaller-app/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/simple-python-pyinstaller-app/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/simple-python-pyinstaller-app/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/simple-python-pyinstaller-app/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/simple-python-pyinstaller-app/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/simple-python-pyinstaller-app/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/simple-python-pyinstaller-app/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/simple-python-pyinstaller-app/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/simple-python-pyinstaller-app/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/simple-python-pyinstaller-app/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/simple-python-pyinstaller-app/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/simple-python-pyinstaller-app/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/simple-python-pyinstaller-app/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/simple-python-pyinstaller-app/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/simple-python-pyinstaller-app/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/simple-python-pyinstaller-app/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/simple-python-pyinstaller-app/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/simple-python-pyinstaller-app/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/simple-python-pyinstaller-app/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/simple-python-pyinstaller-app/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/simple-python-pyinstaller-app/deployments", + "created_at": "2017-12-04T23:58:28Z", + "updated_at": "2017-12-04T23:58:29Z", + "pushed_at": "2017-12-04T11:44:20Z", + "git_url": "git://github.com/bitwiseman/simple-python-pyinstaller-app.git", + "ssh_url": "git@github.com:bitwiseman/simple-python-pyinstaller-app.git", + "clone_url": "https://github.com/bitwiseman/simple-python-pyinstaller-app.git", + "svn_url": "https://github.com/bitwiseman/simple-python-pyinstaller-app", + "homepage": null, + "size": 5, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Python", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 8873794, + "node_id": "MDEwOlJlcG9zaXRvcnk4ODczNzk0", + "name": "skulpt", + "full_name": "bitwiseman/skulpt", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/skulpt", + "description": "Skulpt is a Javascript implementation of the Python programming language", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/skulpt", + "forks_url": "https://api.github.com/repos/bitwiseman/skulpt/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/skulpt/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/skulpt/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/skulpt/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/skulpt/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/skulpt/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/skulpt/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/skulpt/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/skulpt/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/skulpt/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/skulpt/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/skulpt/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/skulpt/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/skulpt/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/skulpt/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/skulpt/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/skulpt/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/skulpt/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/skulpt/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/skulpt/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/skulpt/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/skulpt/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/skulpt/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/skulpt/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/skulpt/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/skulpt/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/skulpt/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/skulpt/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/skulpt/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/skulpt/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/skulpt/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/skulpt/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/skulpt/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/skulpt/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/skulpt/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/skulpt/deployments", + "created_at": "2013-03-19T08:17:52Z", + "updated_at": "2013-03-19T08:17:52Z", + "pushed_at": "2013-03-12T15:11:09Z", + "git_url": "git://github.com/bitwiseman/skulpt.git", + "ssh_url": "git@github.com:bitwiseman/skulpt.git", + "clone_url": "https://github.com/bitwiseman/skulpt.git", + "svn_url": "https://github.com/bitwiseman/skulpt", + "homepage": null, + "size": 42357, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 81394512, + "node_id": "MDEwOlJlcG9zaXRvcnk4MTM5NDUxMg==", + "name": "socorro", + "full_name": "bitwiseman/socorro", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/socorro", + "description": "Socorro is a server to accept and process Breakpad crash reports. ", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/socorro", + "forks_url": "https://api.github.com/repos/bitwiseman/socorro/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/socorro/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/socorro/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/socorro/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/socorro/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/socorro/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/socorro/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/socorro/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/socorro/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/socorro/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/socorro/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/socorro/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/socorro/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/socorro/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/socorro/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/socorro/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/socorro/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/socorro/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/socorro/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/socorro/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/socorro/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/socorro/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/socorro/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/socorro/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/socorro/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/socorro/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/socorro/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/socorro/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/socorro/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/socorro/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/socorro/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/socorro/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/socorro/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/socorro/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/socorro/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/socorro/deployments", + "created_at": "2017-02-09T01:24:13Z", + "updated_at": "2017-02-09T01:24:17Z", + "pushed_at": "2017-02-09T00:21:02Z", + "git_url": "git://github.com/bitwiseman/socorro.git", + "ssh_url": "git@github.com:bitwiseman/socorro.git", + "clone_url": "https://github.com/bitwiseman/socorro.git", + "svn_url": "https://github.com/bitwiseman/socorro", + "homepage": "https://wiki.mozilla.org/Socorro", + "size": 169506, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Python", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mpl-2.0", + "name": "Mozilla Public License 2.0", + "spdx_id": "MPL-2.0", + "url": "https://api.github.com/licenses/mpl-2.0", + "node_id": "MDc6TGljZW5zZTE0" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 17652537, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzY1MjUzNw==", + "name": "spectacle", + "full_name": "bitwiseman/spectacle", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/spectacle", + "description": "Spectacle allows you to easily organize your windows without using a mouse.", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/spectacle", + "forks_url": "https://api.github.com/repos/bitwiseman/spectacle/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/spectacle/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/spectacle/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/spectacle/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/spectacle/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/spectacle/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/spectacle/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/spectacle/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/spectacle/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/spectacle/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/spectacle/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/spectacle/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/spectacle/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/spectacle/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/spectacle/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/spectacle/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/spectacle/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/spectacle/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/spectacle/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/spectacle/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/spectacle/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/spectacle/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/spectacle/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/spectacle/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/spectacle/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/spectacle/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/spectacle/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/spectacle/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/spectacle/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/spectacle/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/spectacle/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/spectacle/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/spectacle/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/spectacle/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/spectacle/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/spectacle/deployments", + "created_at": "2014-03-12T02:22:41Z", + "updated_at": "2014-03-12T02:22:41Z", + "pushed_at": "2014-01-27T17:30:28Z", + "git_url": "git://github.com/bitwiseman/spectacle.git", + "ssh_url": "git@github.com:bitwiseman/spectacle.git", + "clone_url": "https://github.com/bitwiseman/spectacle.git", + "svn_url": "https://github.com/bitwiseman/spectacle", + "homepage": "http://spectacleapp.com/", + "size": 7466, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Objective-C", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 9380505, + "node_id": "MDEwOlJlcG9zaXRvcnk5MzgwNTA1", + "name": "stashnotifier-plugin", + "full_name": "bitwiseman/stashnotifier-plugin", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/stashnotifier-plugin", + "description": "A Jenkins Plugin to notify Atlassian Stash of build results ", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/stashnotifier-plugin", + "forks_url": "https://api.github.com/repos/bitwiseman/stashnotifier-plugin/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/stashnotifier-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/stashnotifier-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/stashnotifier-plugin/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/stashnotifier-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/stashnotifier-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/stashnotifier-plugin/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/stashnotifier-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/stashnotifier-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/stashnotifier-plugin/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/stashnotifier-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/stashnotifier-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/stashnotifier-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/stashnotifier-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/stashnotifier-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/stashnotifier-plugin/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/stashnotifier-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/stashnotifier-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/stashnotifier-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/stashnotifier-plugin/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/stashnotifier-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/stashnotifier-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/stashnotifier-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/stashnotifier-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/stashnotifier-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/stashnotifier-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/stashnotifier-plugin/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/stashnotifier-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/stashnotifier-plugin/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/stashnotifier-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/stashnotifier-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/stashnotifier-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/stashnotifier-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/stashnotifier-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/stashnotifier-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/stashnotifier-plugin/deployments", + "created_at": "2013-04-11T21:17:36Z", + "updated_at": "2013-04-11T21:17:37Z", + "pushed_at": "2013-03-28T17:26:09Z", + "git_url": "git://github.com/bitwiseman/stashnotifier-plugin.git", + "ssh_url": "git@github.com:bitwiseman/stashnotifier-plugin.git", + "clone_url": "https://github.com/bitwiseman/stashnotifier-plugin.git", + "svn_url": "https://github.com/bitwiseman/stashnotifier-plugin", + "homepage": null, + "size": 194, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "develop", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 64445818, + "node_id": "MDEwOlJlcG9zaXRvcnk2NDQ0NTgxOA==", + "name": "strscan", + "full_name": "bitwiseman/strscan", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/strscan", + "description": "A simple string scanner class for Python. Useful for building lexers/tokenizers by hand.", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/strscan", + "forks_url": "https://api.github.com/repos/bitwiseman/strscan/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/strscan/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/strscan/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/strscan/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/strscan/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/strscan/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/strscan/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/strscan/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/strscan/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/strscan/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/strscan/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/strscan/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/strscan/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/strscan/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/strscan/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/strscan/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/strscan/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/strscan/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/strscan/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/strscan/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/strscan/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/strscan/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/strscan/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/strscan/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/strscan/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/strscan/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/strscan/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/strscan/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/strscan/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/strscan/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/strscan/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/strscan/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/strscan/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/strscan/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/strscan/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/strscan/deployments", + "created_at": "2016-07-29T03:01:46Z", + "updated_at": "2016-07-29T03:01:47Z", + "pushed_at": "2016-07-29T09:31:50Z", + "git_url": "git://github.com/bitwiseman/strscan.git", + "ssh_url": "git@github.com:bitwiseman/strscan.git", + "clone_url": "https://github.com/bitwiseman/strscan.git", + "svn_url": "https://github.com/bitwiseman/strscan", + "homepage": "http://zacharyvoase.github.com/strscan/", + "size": 87, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Python", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "unlicense", + "name": "The Unlicense", + "spdx_id": "Unlicense", + "url": "https://api.github.com/licenses/unlicense", + "node_id": "MDc6TGljZW5zZTE1" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 63309587, + "node_id": "MDEwOlJlcG9zaXRvcnk2MzMwOTU4Nw==", + "name": "strscan-js", + "full_name": "bitwiseman/strscan-js", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/strscan-js", + "description": "Simple JavaScript string tokenizer for lexical scanning operations", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/strscan-js", + "forks_url": "https://api.github.com/repos/bitwiseman/strscan-js/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/strscan-js/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/strscan-js/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/strscan-js/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/strscan-js/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/strscan-js/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/strscan-js/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/strscan-js/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/strscan-js/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/strscan-js/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/strscan-js/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/strscan-js/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/strscan-js/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/strscan-js/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/strscan-js/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/strscan-js/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/strscan-js/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/strscan-js/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/strscan-js/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/strscan-js/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/strscan-js/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/strscan-js/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/strscan-js/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/strscan-js/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/strscan-js/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/strscan-js/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/strscan-js/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/strscan-js/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/strscan-js/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/strscan-js/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/strscan-js/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/strscan-js/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/strscan-js/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/strscan-js/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/strscan-js/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/strscan-js/deployments", + "created_at": "2016-07-14T06:43:06Z", + "updated_at": "2016-07-14T06:43:07Z", + "pushed_at": "2010-08-27T23:42:38Z", + "git_url": "git://github.com/bitwiseman/strscan-js.git", + "ssh_url": "git@github.com:bitwiseman/strscan-js.git", + "clone_url": "https://github.com/bitwiseman/strscan-js.git", + "svn_url": "https://github.com/bitwiseman/strscan-js", + "homepage": "", + "size": 107, + "stargazers_count": 0, + "watchers_count": 0, + "language": "CoffeeScript", + "has_issues": false, + "has_projects": true, + "has_downloads": false, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 142247052, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDIyNDcwNTI=", + "name": "Sublime-HTMLPrettify", + "full_name": "bitwiseman/Sublime-HTMLPrettify", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/Sublime-HTMLPrettify", + "description": "HTML, CSS, JavaScript and JSON code formatter for Sublime Text 2 and 3 via node.js", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/Sublime-HTMLPrettify", + "forks_url": "https://api.github.com/repos/bitwiseman/Sublime-HTMLPrettify/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/Sublime-HTMLPrettify/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/Sublime-HTMLPrettify/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/Sublime-HTMLPrettify/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/Sublime-HTMLPrettify/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/Sublime-HTMLPrettify/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/Sublime-HTMLPrettify/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/Sublime-HTMLPrettify/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/Sublime-HTMLPrettify/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/Sublime-HTMLPrettify/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/Sublime-HTMLPrettify/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/Sublime-HTMLPrettify/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/Sublime-HTMLPrettify/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/Sublime-HTMLPrettify/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/Sublime-HTMLPrettify/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/Sublime-HTMLPrettify/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/Sublime-HTMLPrettify/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/Sublime-HTMLPrettify/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/Sublime-HTMLPrettify/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/Sublime-HTMLPrettify/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/Sublime-HTMLPrettify/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/Sublime-HTMLPrettify/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/Sublime-HTMLPrettify/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/Sublime-HTMLPrettify/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/Sublime-HTMLPrettify/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/Sublime-HTMLPrettify/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/Sublime-HTMLPrettify/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/Sublime-HTMLPrettify/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/Sublime-HTMLPrettify/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/Sublime-HTMLPrettify/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/Sublime-HTMLPrettify/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/Sublime-HTMLPrettify/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/Sublime-HTMLPrettify/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/Sublime-HTMLPrettify/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/Sublime-HTMLPrettify/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/Sublime-HTMLPrettify/deployments", + "created_at": "2018-07-25T04:23:15Z", + "updated_at": "2018-07-25T04:23:16Z", + "pushed_at": "2019-02-12T16:22:45Z", + "git_url": "git://github.com/bitwiseman/Sublime-HTMLPrettify.git", + "ssh_url": "git@github.com:bitwiseman/Sublime-HTMLPrettify.git", + "clone_url": "https://github.com/bitwiseman/Sublime-HTMLPrettify.git", + "svn_url": "https://github.com/bitwiseman/Sublime-HTMLPrettify", + "homepage": "https://github.com/victorporof/Sublime-HTMLPrettify", + "size": 4855, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 63375329, + "node_id": "MDEwOlJlcG9zaXRvcnk2MzM3NTMyOQ==", + "name": "talk-jenkins-jobdsl", + "full_name": "bitwiseman/talk-jenkins-jobdsl", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/talk-jenkins-jobdsl", + "description": "\"Cultivating the Jenkins job jungle with Groovy\" presentation repository", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/talk-jenkins-jobdsl", + "forks_url": "https://api.github.com/repos/bitwiseman/talk-jenkins-jobdsl/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/talk-jenkins-jobdsl/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/talk-jenkins-jobdsl/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/talk-jenkins-jobdsl/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/talk-jenkins-jobdsl/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/talk-jenkins-jobdsl/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/talk-jenkins-jobdsl/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/talk-jenkins-jobdsl/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/talk-jenkins-jobdsl/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/talk-jenkins-jobdsl/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/talk-jenkins-jobdsl/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/talk-jenkins-jobdsl/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/talk-jenkins-jobdsl/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/talk-jenkins-jobdsl/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/talk-jenkins-jobdsl/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/talk-jenkins-jobdsl/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/talk-jenkins-jobdsl/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/talk-jenkins-jobdsl/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/talk-jenkins-jobdsl/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/talk-jenkins-jobdsl/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/talk-jenkins-jobdsl/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/talk-jenkins-jobdsl/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/talk-jenkins-jobdsl/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/talk-jenkins-jobdsl/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/talk-jenkins-jobdsl/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/talk-jenkins-jobdsl/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/talk-jenkins-jobdsl/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/talk-jenkins-jobdsl/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/talk-jenkins-jobdsl/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/talk-jenkins-jobdsl/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/talk-jenkins-jobdsl/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/talk-jenkins-jobdsl/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/talk-jenkins-jobdsl/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/talk-jenkins-jobdsl/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/talk-jenkins-jobdsl/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/talk-jenkins-jobdsl/deployments", + "created_at": "2016-07-14T23:01:32Z", + "updated_at": "2016-07-14T23:01:34Z", + "pushed_at": "2015-03-01T16:14:34Z", + "git_url": "git://github.com/bitwiseman/talk-jenkins-jobdsl.git", + "ssh_url": "git@github.com:bitwiseman/talk-jenkins-jobdsl.git", + "clone_url": "https://github.com/bitwiseman/talk-jenkins-jobdsl.git", + "svn_url": "https://github.com/bitwiseman/talk-jenkins-jobdsl", + "homepage": null, + "size": 9138, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Groovy", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testSubscribers/__files/user_1958953_repos-bd9bd719-ef4a-483d-b552-0d10fe05981b.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testSubscribers/__files/user_1958953_repos-bd9bd719-ef4a-483d-b552-0d10fe05981b.json new file mode 100644 index 0000000000..c8934e2843 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testSubscribers/__files/user_1958953_repos-bd9bd719-ef4a-483d-b552-0d10fe05981b.json @@ -0,0 +1,1925 @@ +[ + { + "id": 185664253, + "node_id": "MDEwOlJlcG9zaXRvcnkxODU2NjQyNTM=", + "name": "test-github-branch-plugin", + "full_name": "bitwiseman/test-github-branch-plugin", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/test-github-branch-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/test-github-branch-plugin", + "forks_url": "https://api.github.com/repos/bitwiseman/test-github-branch-plugin/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/test-github-branch-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/test-github-branch-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/test-github-branch-plugin/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/test-github-branch-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/test-github-branch-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/test-github-branch-plugin/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/test-github-branch-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/test-github-branch-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/test-github-branch-plugin/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/test-github-branch-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/test-github-branch-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/test-github-branch-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/test-github-branch-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/test-github-branch-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/test-github-branch-plugin/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/test-github-branch-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/test-github-branch-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/test-github-branch-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/test-github-branch-plugin/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/test-github-branch-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/test-github-branch-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/test-github-branch-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/test-github-branch-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/test-github-branch-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/test-github-branch-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/test-github-branch-plugin/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/test-github-branch-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/test-github-branch-plugin/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/test-github-branch-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/test-github-branch-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/test-github-branch-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/test-github-branch-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/test-github-branch-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/test-github-branch-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/test-github-branch-plugin/deployments", + "created_at": "2019-05-08T19:03:05Z", + "updated_at": "2019-09-03T19:49:51Z", + "pushed_at": "2019-09-03T20:49:30Z", + "git_url": "git://github.com/bitwiseman/test-github-branch-plugin.git", + "ssh_url": "git@github.com:bitwiseman/test-github-branch-plugin.git", + "clone_url": "https://github.com/bitwiseman/test-github-branch-plugin.git", + "svn_url": "https://github.com/bitwiseman/test-github-branch-plugin", + "homepage": null, + "size": 23, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 125604347, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjU2MDQzNDc=", + "name": "test-spring-boot-app", + "full_name": "bitwiseman/test-spring-boot-app", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/test-spring-boot-app", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/bitwiseman/test-spring-boot-app", + "forks_url": "https://api.github.com/repos/bitwiseman/test-spring-boot-app/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/test-spring-boot-app/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/test-spring-boot-app/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/test-spring-boot-app/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/test-spring-boot-app/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/test-spring-boot-app/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/test-spring-boot-app/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/test-spring-boot-app/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/test-spring-boot-app/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/test-spring-boot-app/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/test-spring-boot-app/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/test-spring-boot-app/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/test-spring-boot-app/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/test-spring-boot-app/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/test-spring-boot-app/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/test-spring-boot-app/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/test-spring-boot-app/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/test-spring-boot-app/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/test-spring-boot-app/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/test-spring-boot-app/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/test-spring-boot-app/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/test-spring-boot-app/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/test-spring-boot-app/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/test-spring-boot-app/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/test-spring-boot-app/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/test-spring-boot-app/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/test-spring-boot-app/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/test-spring-boot-app/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/test-spring-boot-app/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/test-spring-boot-app/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/test-spring-boot-app/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/test-spring-boot-app/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/test-spring-boot-app/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/test-spring-boot-app/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/test-spring-boot-app/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/test-spring-boot-app/deployments", + "created_at": "2018-03-17T06:47:56Z", + "updated_at": "2018-12-13T10:11:28Z", + "pushed_at": "2018-03-17T06:48:13Z", + "git_url": "git://github.com/bitwiseman/test-spring-boot-app.git", + "ssh_url": "git@github.com:bitwiseman/test-spring-boot-app.git", + "clone_url": "https://github.com/bitwiseman/test-spring-boot-app.git", + "svn_url": "https://github.com/bitwiseman/test-spring-boot-app", + "homepage": null, + "size": 78, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Shell", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 8893138, + "node_id": "MDEwOlJlcG9zaXRvcnk4ODkzMTM4", + "name": "testem", + "full_name": "bitwiseman/testem", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/testem", + "description": "Test'em 'Scripts! A test runner that makes Javascript unit testing fun.", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/testem", + "forks_url": "https://api.github.com/repos/bitwiseman/testem/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/testem/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/testem/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/testem/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/testem/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/testem/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/testem/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/testem/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/testem/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/testem/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/testem/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/testem/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/testem/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/testem/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/testem/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/testem/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/testem/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/testem/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/testem/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/testem/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/testem/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/testem/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/testem/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/testem/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/testem/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/testem/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/testem/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/testem/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/testem/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/testem/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/testem/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/testem/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/testem/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/testem/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/testem/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/testem/deployments", + "created_at": "2013-03-20T00:54:39Z", + "updated_at": "2015-11-15T00:47:33Z", + "pushed_at": "2013-03-19T03:09:29Z", + "git_url": "git://github.com/bitwiseman/testem.git", + "ssh_url": "git@github.com:bitwiseman/testem.git", + "clone_url": "https://github.com/bitwiseman/testem.git", + "svn_url": "https://github.com/bitwiseman/testem", + "homepage": "", + "size": 34576, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 64276017, + "node_id": "MDEwOlJlcG9zaXRvcnk2NDI3NjAxNw==", + "name": "toml", + "full_name": "bitwiseman/toml", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/toml", + "description": "Tom's Obvious, Minimal Language", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/toml", + "forks_url": "https://api.github.com/repos/bitwiseman/toml/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/toml/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/toml/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/toml/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/toml/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/toml/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/toml/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/toml/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/toml/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/toml/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/toml/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/toml/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/toml/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/toml/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/toml/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/toml/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/toml/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/toml/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/toml/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/toml/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/toml/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/toml/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/toml/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/toml/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/toml/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/toml/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/toml/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/toml/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/toml/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/toml/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/toml/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/toml/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/toml/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/toml/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/toml/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/toml/deployments", + "created_at": "2016-07-27T04:02:51Z", + "updated_at": "2016-07-26T21:27:15Z", + "pushed_at": "2016-07-26T19:38:14Z", + "git_url": "git://github.com/bitwiseman/toml.git", + "ssh_url": "git@github.com:bitwiseman/toml.git", + "clone_url": "https://github.com/bitwiseman/toml.git", + "svn_url": "https://github.com/bitwiseman/toml", + "homepage": "", + "size": 2271, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 73571751, + "node_id": "MDEwOlJlcG9zaXRvcnk3MzU3MTc1MQ==", + "name": "Transcrypt", + "full_name": "bitwiseman/Transcrypt", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/Transcrypt", + "description": "Python 3.5 to JavaScript compiler - Lean, fast, open! ---", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/Transcrypt", + "forks_url": "https://api.github.com/repos/bitwiseman/Transcrypt/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/Transcrypt/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/Transcrypt/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/Transcrypt/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/Transcrypt/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/Transcrypt/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/Transcrypt/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/Transcrypt/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/Transcrypt/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/Transcrypt/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/Transcrypt/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/Transcrypt/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/Transcrypt/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/Transcrypt/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/Transcrypt/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/Transcrypt/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/Transcrypt/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/Transcrypt/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/Transcrypt/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/Transcrypt/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/Transcrypt/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/Transcrypt/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/Transcrypt/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/Transcrypt/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/Transcrypt/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/Transcrypt/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/Transcrypt/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/Transcrypt/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/Transcrypt/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/Transcrypt/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/Transcrypt/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/Transcrypt/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/Transcrypt/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/Transcrypt/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/Transcrypt/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/Transcrypt/deployments", + "created_at": "2016-11-12T18:50:59Z", + "updated_at": "2016-11-12T18:51:07Z", + "pushed_at": "2016-11-10T09:32:39Z", + "git_url": "git://github.com/bitwiseman/Transcrypt.git", + "ssh_url": "git@github.com:bitwiseman/Transcrypt.git", + "clone_url": "https://github.com/bitwiseman/Transcrypt.git", + "svn_url": "https://github.com/bitwiseman/Transcrypt", + "homepage": "http://www.transcrypt.org", + "size": 77479, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Python", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 37218002, + "node_id": "MDEwOlJlcG9zaXRvcnkzNzIxODAwMg==", + "name": "typed-function", + "full_name": "bitwiseman/typed-function", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/typed-function", + "description": "Type checking for JavaScript functions", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/typed-function", + "forks_url": "https://api.github.com/repos/bitwiseman/typed-function/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/typed-function/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/typed-function/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/typed-function/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/typed-function/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/typed-function/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/typed-function/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/typed-function/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/typed-function/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/typed-function/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/typed-function/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/typed-function/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/typed-function/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/typed-function/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/typed-function/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/typed-function/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/typed-function/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/typed-function/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/typed-function/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/typed-function/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/typed-function/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/typed-function/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/typed-function/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/typed-function/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/typed-function/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/typed-function/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/typed-function/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/typed-function/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/typed-function/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/typed-function/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/typed-function/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/typed-function/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/typed-function/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/typed-function/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/typed-function/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/typed-function/deployments", + "created_at": "2015-06-10T19:28:39Z", + "updated_at": "2015-06-10T19:28:40Z", + "pushed_at": "2015-05-23T13:01:39Z", + "git_url": "git://github.com/bitwiseman/typed-function.git", + "ssh_url": "git@github.com:bitwiseman/typed-function.git", + "clone_url": "https://github.com/bitwiseman/typed-function.git", + "svn_url": "https://github.com/bitwiseman/typed-function", + "homepage": "", + "size": 716, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 98436585, + "node_id": "MDEwOlJlcG9zaXRvcnk5ODQzNjU4NQ==", + "name": "TypeScript-Handbook", + "full_name": "bitwiseman/TypeScript-Handbook", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/TypeScript-Handbook", + "description": "The TypeScript Handbook is a comprehensive guide to the TypeScript language", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/TypeScript-Handbook", + "forks_url": "https://api.github.com/repos/bitwiseman/TypeScript-Handbook/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/TypeScript-Handbook/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/TypeScript-Handbook/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/TypeScript-Handbook/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/TypeScript-Handbook/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/TypeScript-Handbook/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/TypeScript-Handbook/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/TypeScript-Handbook/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/TypeScript-Handbook/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/TypeScript-Handbook/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/TypeScript-Handbook/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/TypeScript-Handbook/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/TypeScript-Handbook/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/TypeScript-Handbook/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/TypeScript-Handbook/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/TypeScript-Handbook/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/TypeScript-Handbook/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/TypeScript-Handbook/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/TypeScript-Handbook/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/TypeScript-Handbook/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/TypeScript-Handbook/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/TypeScript-Handbook/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/TypeScript-Handbook/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/TypeScript-Handbook/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/TypeScript-Handbook/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/TypeScript-Handbook/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/TypeScript-Handbook/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/TypeScript-Handbook/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/TypeScript-Handbook/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/TypeScript-Handbook/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/TypeScript-Handbook/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/TypeScript-Handbook/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/TypeScript-Handbook/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/TypeScript-Handbook/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/TypeScript-Handbook/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/TypeScript-Handbook/deployments", + "created_at": "2017-07-26T15:10:51Z", + "updated_at": "2017-07-26T15:10:53Z", + "pushed_at": "2017-07-24T23:23:04Z", + "git_url": "git://github.com/bitwiseman/TypeScript-Handbook.git", + "ssh_url": "git@github.com:bitwiseman/TypeScript-Handbook.git", + "clone_url": "https://github.com/bitwiseman/TypeScript-Handbook.git", + "svn_url": "https://github.com/bitwiseman/TypeScript-Handbook", + "homepage": null, + "size": 1787, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 8839409, + "node_id": "MDEwOlJlcG9zaXRvcnk4ODM5NDA5", + "name": "UglifyJS2", + "full_name": "bitwiseman/UglifyJS2", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/UglifyJS2", + "description": " JavaScript parser / mangler / compressor / beautifier toolkit", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/UglifyJS2", + "forks_url": "https://api.github.com/repos/bitwiseman/UglifyJS2/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/UglifyJS2/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/UglifyJS2/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/UglifyJS2/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/UglifyJS2/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/UglifyJS2/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/UglifyJS2/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/UglifyJS2/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/UglifyJS2/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/UglifyJS2/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/UglifyJS2/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/UglifyJS2/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/UglifyJS2/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/UglifyJS2/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/UglifyJS2/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/UglifyJS2/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/UglifyJS2/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/UglifyJS2/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/UglifyJS2/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/UglifyJS2/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/UglifyJS2/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/UglifyJS2/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/UglifyJS2/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/UglifyJS2/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/UglifyJS2/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/UglifyJS2/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/UglifyJS2/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/UglifyJS2/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/UglifyJS2/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/UglifyJS2/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/UglifyJS2/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/UglifyJS2/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/UglifyJS2/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/UglifyJS2/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/UglifyJS2/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/UglifyJS2/deployments", + "created_at": "2013-03-17T18:47:39Z", + "updated_at": "2013-03-17T18:47:39Z", + "pushed_at": "2013-03-13T08:36:57Z", + "git_url": "git://github.com/bitwiseman/UglifyJS2.git", + "ssh_url": "git@github.com:bitwiseman/UglifyJS2.git", + "clone_url": "https://github.com/bitwiseman/UglifyJS2.git", + "svn_url": "https://github.com/bitwiseman/UglifyJS2", + "homepage": "http://lisperator.net/uglifyjs/", + "size": 493, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 89433793, + "node_id": "MDEwOlJlcG9zaXRvcnk4OTQzMzc5Mw==", + "name": "unibeautify", + "full_name": "bitwiseman/unibeautify", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/unibeautify", + "description": "One Beautifier to rule them all, One Beautifier to clean them, One Beautifier to bring them all and in the darkness sheen them", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/unibeautify", + "forks_url": "https://api.github.com/repos/bitwiseman/unibeautify/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/unibeautify/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/unibeautify/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/unibeautify/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/unibeautify/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/unibeautify/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/unibeautify/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/unibeautify/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/unibeautify/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/unibeautify/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/unibeautify/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/unibeautify/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/unibeautify/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/unibeautify/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/unibeautify/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/unibeautify/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/unibeautify/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/unibeautify/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/unibeautify/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/unibeautify/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/unibeautify/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/unibeautify/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/unibeautify/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/unibeautify/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/unibeautify/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/unibeautify/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/unibeautify/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/unibeautify/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/unibeautify/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/unibeautify/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/unibeautify/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/unibeautify/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/unibeautify/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/unibeautify/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/unibeautify/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/unibeautify/deployments", + "created_at": "2017-04-26T03:30:02Z", + "updated_at": "2017-04-26T03:30:10Z", + "pushed_at": "2017-04-23T18:45:03Z", + "git_url": "git://github.com/bitwiseman/unibeautify.git", + "ssh_url": "git@github.com:bitwiseman/unibeautify.git", + "clone_url": "https://github.com/bitwiseman/unibeautify.git", + "svn_url": "https://github.com/bitwiseman/unibeautify", + "homepage": null, + "size": 35, + "stargazers_count": 0, + "watchers_count": 0, + "language": "TypeScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 143473298, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDM0NzMyOTg=", + "name": "vscode-html-languageservice", + "full_name": "bitwiseman/vscode-html-languageservice", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/vscode-html-languageservice", + "description": "Language services for HTML", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/vscode-html-languageservice", + "forks_url": "https://api.github.com/repos/bitwiseman/vscode-html-languageservice/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/vscode-html-languageservice/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/vscode-html-languageservice/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/vscode-html-languageservice/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/vscode-html-languageservice/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/vscode-html-languageservice/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/vscode-html-languageservice/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/vscode-html-languageservice/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/vscode-html-languageservice/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/vscode-html-languageservice/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/vscode-html-languageservice/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/vscode-html-languageservice/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/vscode-html-languageservice/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/vscode-html-languageservice/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/vscode-html-languageservice/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/vscode-html-languageservice/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/vscode-html-languageservice/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/vscode-html-languageservice/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/vscode-html-languageservice/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/vscode-html-languageservice/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/vscode-html-languageservice/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/vscode-html-languageservice/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/vscode-html-languageservice/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/vscode-html-languageservice/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/vscode-html-languageservice/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/vscode-html-languageservice/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/vscode-html-languageservice/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/vscode-html-languageservice/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/vscode-html-languageservice/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/vscode-html-languageservice/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/vscode-html-languageservice/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/vscode-html-languageservice/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/vscode-html-languageservice/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/vscode-html-languageservice/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/vscode-html-languageservice/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/vscode-html-languageservice/deployments", + "created_at": "2018-08-03T21:06:13Z", + "updated_at": "2019-05-08T21:15:46Z", + "pushed_at": "2019-06-04T15:51:45Z", + "git_url": "git://github.com/bitwiseman/vscode-html-languageservice.git", + "ssh_url": "git@github.com:bitwiseman/vscode-html-languageservice.git", + "clone_url": "https://github.com/bitwiseman/vscode-html-languageservice.git", + "svn_url": "https://github.com/bitwiseman/vscode-html-languageservice", + "homepage": null, + "size": 841, + "stargazers_count": 0, + "watchers_count": 0, + "language": "TypeScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 67518496, + "node_id": "MDEwOlJlcG9zaXRvcnk2NzUxODQ5Ng==", + "name": "vscode-JS-CSS-HTML-formatter", + "full_name": "bitwiseman/vscode-JS-CSS-HTML-formatter", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/vscode-JS-CSS-HTML-formatter", + "description": "JS,CSS,HTML formatter for vscode", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/vscode-JS-CSS-HTML-formatter", + "forks_url": "https://api.github.com/repos/bitwiseman/vscode-JS-CSS-HTML-formatter/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/vscode-JS-CSS-HTML-formatter/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/vscode-JS-CSS-HTML-formatter/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/vscode-JS-CSS-HTML-formatter/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/vscode-JS-CSS-HTML-formatter/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/vscode-JS-CSS-HTML-formatter/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/vscode-JS-CSS-HTML-formatter/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/vscode-JS-CSS-HTML-formatter/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/vscode-JS-CSS-HTML-formatter/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/vscode-JS-CSS-HTML-formatter/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/vscode-JS-CSS-HTML-formatter/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/vscode-JS-CSS-HTML-formatter/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/vscode-JS-CSS-HTML-formatter/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/vscode-JS-CSS-HTML-formatter/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/vscode-JS-CSS-HTML-formatter/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/vscode-JS-CSS-HTML-formatter/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/vscode-JS-CSS-HTML-formatter/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/vscode-JS-CSS-HTML-formatter/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/vscode-JS-CSS-HTML-formatter/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/vscode-JS-CSS-HTML-formatter/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/vscode-JS-CSS-HTML-formatter/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/vscode-JS-CSS-HTML-formatter/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/vscode-JS-CSS-HTML-formatter/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/vscode-JS-CSS-HTML-formatter/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/vscode-JS-CSS-HTML-formatter/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/vscode-JS-CSS-HTML-formatter/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/vscode-JS-CSS-HTML-formatter/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/vscode-JS-CSS-HTML-formatter/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/vscode-JS-CSS-HTML-formatter/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/vscode-JS-CSS-HTML-formatter/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/vscode-JS-CSS-HTML-formatter/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/vscode-JS-CSS-HTML-formatter/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/vscode-JS-CSS-HTML-formatter/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/vscode-JS-CSS-HTML-formatter/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/vscode-JS-CSS-HTML-formatter/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/vscode-JS-CSS-HTML-formatter/deployments", + "created_at": "2016-09-06T15:00:25Z", + "updated_at": "2016-09-06T15:00:27Z", + "pushed_at": "2016-09-06T15:07:36Z", + "git_url": "git://github.com/bitwiseman/vscode-JS-CSS-HTML-formatter.git", + "ssh_url": "git@github.com:bitwiseman/vscode-JS-CSS-HTML-formatter.git", + "clone_url": "https://github.com/bitwiseman/vscode-JS-CSS-HTML-formatter.git", + "svn_url": "https://github.com/bitwiseman/vscode-JS-CSS-HTML-formatter", + "homepage": "", + "size": 25, + "stargazers_count": 0, + "watchers_count": 0, + "language": "TypeScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 105073495, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDUwNzM0OTU=", + "name": "workflow-api-plugin", + "full_name": "bitwiseman/workflow-api-plugin", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/workflow-api-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/workflow-api-plugin", + "forks_url": "https://api.github.com/repos/bitwiseman/workflow-api-plugin/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/workflow-api-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/workflow-api-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/workflow-api-plugin/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/workflow-api-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/workflow-api-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/workflow-api-plugin/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/workflow-api-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/workflow-api-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/workflow-api-plugin/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/workflow-api-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/workflow-api-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/workflow-api-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/workflow-api-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/workflow-api-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/workflow-api-plugin/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/workflow-api-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/workflow-api-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/workflow-api-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/workflow-api-plugin/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/workflow-api-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/workflow-api-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/workflow-api-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/workflow-api-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/workflow-api-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/workflow-api-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/workflow-api-plugin/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/workflow-api-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/workflow-api-plugin/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/workflow-api-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/workflow-api-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/workflow-api-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/workflow-api-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/workflow-api-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/workflow-api-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/workflow-api-plugin/deployments", + "created_at": "2017-09-27T21:56:56Z", + "updated_at": "2017-09-27T21:56:58Z", + "pushed_at": "2017-09-27T21:40:33Z", + "git_url": "git://github.com/bitwiseman/workflow-api-plugin.git", + "ssh_url": "git@github.com:bitwiseman/workflow-api-plugin.git", + "clone_url": "https://github.com/bitwiseman/workflow-api-plugin.git", + "svn_url": "https://github.com/bitwiseman/workflow-api-plugin", + "homepage": "", + "size": 711, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 167070147, + "node_id": "MDEwOlJlcG9zaXRvcnkxNjcwNzAxNDc=", + "name": "workflow-basic-steps-plugin", + "full_name": "bitwiseman/workflow-basic-steps-plugin", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/workflow-basic-steps-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/workflow-basic-steps-plugin", + "forks_url": "https://api.github.com/repos/bitwiseman/workflow-basic-steps-plugin/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/workflow-basic-steps-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/workflow-basic-steps-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/workflow-basic-steps-plugin/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/workflow-basic-steps-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/workflow-basic-steps-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/workflow-basic-steps-plugin/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/workflow-basic-steps-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/workflow-basic-steps-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/workflow-basic-steps-plugin/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/workflow-basic-steps-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/workflow-basic-steps-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/workflow-basic-steps-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/workflow-basic-steps-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/workflow-basic-steps-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/workflow-basic-steps-plugin/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/workflow-basic-steps-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/workflow-basic-steps-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/workflow-basic-steps-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/workflow-basic-steps-plugin/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/workflow-basic-steps-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/workflow-basic-steps-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/workflow-basic-steps-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/workflow-basic-steps-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/workflow-basic-steps-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/workflow-basic-steps-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/workflow-basic-steps-plugin/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/workflow-basic-steps-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/workflow-basic-steps-plugin/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/workflow-basic-steps-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/workflow-basic-steps-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/workflow-basic-steps-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/workflow-basic-steps-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/workflow-basic-steps-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/workflow-basic-steps-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/workflow-basic-steps-plugin/deployments", + "created_at": "2019-01-22T21:28:24Z", + "updated_at": "2019-01-22T21:28:26Z", + "pushed_at": "2019-01-24T02:02:04Z", + "git_url": "git://github.com/bitwiseman/workflow-basic-steps-plugin.git", + "ssh_url": "git@github.com:bitwiseman/workflow-basic-steps-plugin.git", + "clone_url": "https://github.com/bitwiseman/workflow-basic-steps-plugin.git", + "svn_url": "https://github.com/bitwiseman/workflow-basic-steps-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Pipeline+Basic+Steps+Plugin", + "size": 735, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 75984484, + "node_id": "MDEwOlJlcG9zaXRvcnk3NTk4NDQ4NA==", + "name": "workflow-cps-global-lib-plugin", + "full_name": "bitwiseman/workflow-cps-global-lib-plugin", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/workflow-cps-global-lib-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/workflow-cps-global-lib-plugin", + "forks_url": "https://api.github.com/repos/bitwiseman/workflow-cps-global-lib-plugin/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/workflow-cps-global-lib-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/workflow-cps-global-lib-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/workflow-cps-global-lib-plugin/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/workflow-cps-global-lib-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/workflow-cps-global-lib-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/workflow-cps-global-lib-plugin/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/workflow-cps-global-lib-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/workflow-cps-global-lib-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/workflow-cps-global-lib-plugin/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/workflow-cps-global-lib-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/workflow-cps-global-lib-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/workflow-cps-global-lib-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/workflow-cps-global-lib-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/workflow-cps-global-lib-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/workflow-cps-global-lib-plugin/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/workflow-cps-global-lib-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/workflow-cps-global-lib-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/workflow-cps-global-lib-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/workflow-cps-global-lib-plugin/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/workflow-cps-global-lib-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/workflow-cps-global-lib-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/workflow-cps-global-lib-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/workflow-cps-global-lib-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/workflow-cps-global-lib-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/workflow-cps-global-lib-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/workflow-cps-global-lib-plugin/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/workflow-cps-global-lib-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/workflow-cps-global-lib-plugin/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/workflow-cps-global-lib-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/workflow-cps-global-lib-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/workflow-cps-global-lib-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/workflow-cps-global-lib-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/workflow-cps-global-lib-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/workflow-cps-global-lib-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/workflow-cps-global-lib-plugin/deployments", + "created_at": "2016-12-08T23:43:36Z", + "updated_at": "2016-12-08T23:43:37Z", + "pushed_at": "2016-12-09T00:00:23Z", + "git_url": "git://github.com/bitwiseman/workflow-cps-global-lib-plugin.git", + "ssh_url": "git@github.com:bitwiseman/workflow-cps-global-lib-plugin.git", + "clone_url": "https://github.com/bitwiseman/workflow-cps-global-lib-plugin.git", + "svn_url": "https://github.com/bitwiseman/workflow-cps-global-lib-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Pipeline+Shared+Groovy+Libraries+Plugin", + "size": 292, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 189135942, + "node_id": "MDEwOlJlcG9zaXRvcnkxODkxMzU5NDI=", + "name": "workflow-cps-plugin", + "full_name": "bitwiseman/workflow-cps-plugin", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/workflow-cps-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/workflow-cps-plugin", + "forks_url": "https://api.github.com/repos/bitwiseman/workflow-cps-plugin/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/workflow-cps-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/workflow-cps-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/workflow-cps-plugin/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/workflow-cps-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/workflow-cps-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/workflow-cps-plugin/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/workflow-cps-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/workflow-cps-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/workflow-cps-plugin/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/workflow-cps-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/workflow-cps-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/workflow-cps-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/workflow-cps-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/workflow-cps-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/workflow-cps-plugin/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/workflow-cps-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/workflow-cps-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/workflow-cps-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/workflow-cps-plugin/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/workflow-cps-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/workflow-cps-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/workflow-cps-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/workflow-cps-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/workflow-cps-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/workflow-cps-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/workflow-cps-plugin/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/workflow-cps-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/workflow-cps-plugin/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/workflow-cps-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/workflow-cps-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/workflow-cps-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/workflow-cps-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/workflow-cps-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/workflow-cps-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/workflow-cps-plugin/deployments", + "created_at": "2019-05-29T02:28:09Z", + "updated_at": "2019-10-14T15:52:19Z", + "pushed_at": "2019-10-14T15:52:11Z", + "git_url": "git://github.com/bitwiseman/workflow-cps-plugin.git", + "ssh_url": "git@github.com:bitwiseman/workflow-cps-plugin.git", + "clone_url": "https://github.com/bitwiseman/workflow-cps-plugin.git", + "svn_url": "https://github.com/bitwiseman/workflow-cps-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Pipeline+Groovy+Plugin", + "size": 3439, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 167054999, + "node_id": "MDEwOlJlcG9zaXRvcnkxNjcwNTQ5OTk=", + "name": "workflow-job-plugin", + "full_name": "bitwiseman/workflow-job-plugin", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/workflow-job-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/workflow-job-plugin", + "forks_url": "https://api.github.com/repos/bitwiseman/workflow-job-plugin/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/workflow-job-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/workflow-job-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/workflow-job-plugin/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/workflow-job-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/workflow-job-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/workflow-job-plugin/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/workflow-job-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/workflow-job-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/workflow-job-plugin/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/workflow-job-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/workflow-job-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/workflow-job-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/workflow-job-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/workflow-job-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/workflow-job-plugin/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/workflow-job-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/workflow-job-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/workflow-job-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/workflow-job-plugin/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/workflow-job-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/workflow-job-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/workflow-job-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/workflow-job-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/workflow-job-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/workflow-job-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/workflow-job-plugin/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/workflow-job-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/workflow-job-plugin/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/workflow-job-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/workflow-job-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/workflow-job-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/workflow-job-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/workflow-job-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/workflow-job-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/workflow-job-plugin/deployments", + "created_at": "2019-01-22T19:34:55Z", + "updated_at": "2019-01-22T19:34:57Z", + "pushed_at": "2019-01-22T22:39:47Z", + "git_url": "git://github.com/bitwiseman/workflow-job-plugin.git", + "ssh_url": "git@github.com:bitwiseman/workflow-job-plugin.git", + "clone_url": "https://github.com/bitwiseman/workflow-job-plugin.git", + "svn_url": "https://github.com/bitwiseman/workflow-job-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Pipeline+Job+Plugin", + "size": 1060, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 190053245, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTAwNTMyNDU=", + "name": "workflow-step-api-plugin", + "full_name": "bitwiseman/workflow-step-api-plugin", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/workflow-step-api-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/workflow-step-api-plugin", + "forks_url": "https://api.github.com/repos/bitwiseman/workflow-step-api-plugin/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/workflow-step-api-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/workflow-step-api-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/workflow-step-api-plugin/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/workflow-step-api-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/workflow-step-api-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/workflow-step-api-plugin/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/workflow-step-api-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/workflow-step-api-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/workflow-step-api-plugin/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/workflow-step-api-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/workflow-step-api-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/workflow-step-api-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/workflow-step-api-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/workflow-step-api-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/workflow-step-api-plugin/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/workflow-step-api-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/workflow-step-api-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/workflow-step-api-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/workflow-step-api-plugin/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/workflow-step-api-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/workflow-step-api-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/workflow-step-api-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/workflow-step-api-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/workflow-step-api-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/workflow-step-api-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/workflow-step-api-plugin/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/workflow-step-api-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/workflow-step-api-plugin/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/workflow-step-api-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/workflow-step-api-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/workflow-step-api-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/workflow-step-api-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/workflow-step-api-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/workflow-step-api-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/workflow-step-api-plugin/deployments", + "created_at": "2019-06-03T17:44:42Z", + "updated_at": "2019-06-03T17:44:45Z", + "pushed_at": "2019-06-03T17:44:57Z", + "git_url": "git://github.com/bitwiseman/workflow-step-api-plugin.git", + "ssh_url": "git@github.com:bitwiseman/workflow-step-api-plugin.git", + "clone_url": "https://github.com/bitwiseman/workflow-step-api-plugin.git", + "svn_url": "https://github.com/bitwiseman/workflow-step-api-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Pipeline+Step+API+Plugin", + "size": 494, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 62421603, + "node_id": "MDEwOlJlcG9zaXRvcnk2MjQyMTYwMw==", + "name": "xstream", + "full_name": "bitwiseman/xstream", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/xstream", + "description": "Patched xstream used in Jenkins", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/xstream", + "forks_url": "https://api.github.com/repos/bitwiseman/xstream/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/xstream/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/xstream/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/xstream/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/xstream/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/xstream/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/xstream/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/xstream/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/xstream/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/xstream/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/xstream/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/xstream/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/xstream/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/xstream/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/xstream/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/xstream/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/xstream/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/xstream/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/xstream/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/xstream/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/xstream/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/xstream/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/xstream/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/xstream/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/xstream/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/xstream/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/xstream/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/xstream/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/xstream/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/xstream/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/xstream/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/xstream/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/xstream/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/xstream/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/xstream/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/xstream/deployments", + "created_at": "2016-07-01T21:52:48Z", + "updated_at": "2016-07-01T21:52:50Z", + "pushed_at": "2016-07-01T21:53:50Z", + "git_url": "git://github.com/bitwiseman/xstream.git", + "ssh_url": "git@github.com:bitwiseman/xstream.git", + "clone_url": "https://github.com/bitwiseman/xstream.git", + "svn_url": "https://github.com/bitwiseman/xstream", + "homepage": "http://jenkins-ci.org/", + "size": 9052, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 9358151, + "node_id": "MDEwOlJlcG9zaXRvcnk5MzU4MTUx", + "name": "yinyango", + "full_name": "bitwiseman/yinyango", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/yinyango", + "description": "Small Javascript project to make a Go player.", + "fork": false, + "url": "https://api.github.com/repos/bitwiseman/yinyango", + "forks_url": "https://api.github.com/repos/bitwiseman/yinyango/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/yinyango/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/yinyango/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/yinyango/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/yinyango/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/yinyango/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/yinyango/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/yinyango/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/yinyango/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/yinyango/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/yinyango/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/yinyango/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/yinyango/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/yinyango/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/yinyango/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/yinyango/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/yinyango/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/yinyango/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/yinyango/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/yinyango/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/yinyango/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/yinyango/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/yinyango/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/yinyango/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/yinyango/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/yinyango/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/yinyango/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/yinyango/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/yinyango/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/yinyango/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/yinyango/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/yinyango/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/yinyango/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/yinyango/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/yinyango/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/yinyango/deployments", + "created_at": "2013-04-10T23:25:04Z", + "updated_at": "2014-02-04T12:10:17Z", + "pushed_at": "2013-04-10T13:12:04Z", + "git_url": "git://github.com/bitwiseman/yinyango.git", + "ssh_url": "git@github.com:bitwiseman/yinyango.git", + "clone_url": "https://github.com/bitwiseman/yinyango.git", + "svn_url": "https://github.com/bitwiseman/yinyango", + "homepage": "", + "size": 1407, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testSubscribers/__files/users_bitwiseman-695b59f0-b7e7-4239-9389-39e71b040233.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testSubscribers/__files/users_bitwiseman-695b59f0-b7e7-4239-9389-39e71b040233.json new file mode 100644 index 0000000000..a4b576e8a7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testSubscribers/__files/users_bitwiseman-695b59f0-b7e7-4239-9389-39e71b040233.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 169, + "public_gists": 7, + "followers": 139, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testSubscribers/__files/users_bitwiseman_repos-2be0523d-30fd-42bc-94d1-95926ee70069.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testSubscribers/__files/users_bitwiseman_repos-2be0523d-30fd-42bc-94d1-95926ee70069.json new file mode 100644 index 0000000000..e25c6fc0b5 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testSubscribers/__files/users_bitwiseman_repos-2be0523d-30fd-42bc-94d1-95926ee70069.json @@ -0,0 +1,3080 @@ +[ + { + "id": 130430005, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzA0MzAwMDU=", + "name": "100-days-of-code", + "full_name": "bitwiseman/100-days-of-code", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/100-days-of-code", + "description": "Fork this template for the 100 days journal - to keep yourself accountable (multiple languages available)", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/100-days-of-code", + "forks_url": "https://api.github.com/repos/bitwiseman/100-days-of-code/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/100-days-of-code/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/100-days-of-code/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/100-days-of-code/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/100-days-of-code/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/100-days-of-code/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/100-days-of-code/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/100-days-of-code/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/100-days-of-code/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/100-days-of-code/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/100-days-of-code/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/100-days-of-code/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/100-days-of-code/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/100-days-of-code/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/100-days-of-code/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/100-days-of-code/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/100-days-of-code/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/100-days-of-code/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/100-days-of-code/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/100-days-of-code/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/100-days-of-code/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/100-days-of-code/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/100-days-of-code/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/100-days-of-code/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/100-days-of-code/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/100-days-of-code/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/100-days-of-code/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/100-days-of-code/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/100-days-of-code/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/100-days-of-code/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/100-days-of-code/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/100-days-of-code/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/100-days-of-code/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/100-days-of-code/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/100-days-of-code/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/100-days-of-code/deployments", + "created_at": "2018-04-21T01:50:41Z", + "updated_at": "2018-04-21T01:50:42Z", + "pushed_at": "2018-04-19T21:11:55Z", + "git_url": "git://github.com/bitwiseman/100-days-of-code.git", + "ssh_url": "git@github.com:bitwiseman/100-days-of-code.git", + "clone_url": "https://github.com/bitwiseman/100-days-of-code.git", + "svn_url": "https://github.com/bitwiseman/100-days-of-code", + "homepage": "http://www.100daysofcode.com", + "size": 94, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 99378775, + "node_id": "MDEwOlJlcG9zaXRvcnk5OTM3ODc3NQ==", + "name": "Amethyst", + "full_name": "bitwiseman/Amethyst", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/Amethyst", + "description": "Automatic tiling window manager for macOS à la xmonad.", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/Amethyst", + "forks_url": "https://api.github.com/repos/bitwiseman/Amethyst/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/Amethyst/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/Amethyst/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/Amethyst/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/Amethyst/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/Amethyst/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/Amethyst/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/Amethyst/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/Amethyst/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/Amethyst/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/Amethyst/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/Amethyst/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/Amethyst/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/Amethyst/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/Amethyst/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/Amethyst/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/Amethyst/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/Amethyst/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/Amethyst/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/Amethyst/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/Amethyst/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/Amethyst/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/Amethyst/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/Amethyst/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/Amethyst/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/Amethyst/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/Amethyst/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/Amethyst/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/Amethyst/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/Amethyst/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/Amethyst/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/Amethyst/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/Amethyst/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/Amethyst/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/Amethyst/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/Amethyst/deployments", + "created_at": "2017-08-04T20:51:31Z", + "updated_at": "2017-08-04T20:51:32Z", + "pushed_at": "2018-01-24T21:08:00Z", + "git_url": "git://github.com/bitwiseman/Amethyst.git", + "ssh_url": "git@github.com:bitwiseman/Amethyst.git", + "clone_url": "https://github.com/bitwiseman/Amethyst.git", + "svn_url": "https://github.com/bitwiseman/Amethyst", + "homepage": "https://ianyh.com/amethyst/", + "size": 23036, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Swift", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "development", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 12600414, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjYwMDQxNA==", + "name": "ansible", + "full_name": "bitwiseman/ansible", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/ansible", + "description": "Ansible is a radically simple IT orchestration engine that makes your applications and systems easier to deploy. Avoid writing scripts or custom code to deploy and update your applications— automate in a language that approaches plain English, using SSH, with no agents to install on remote systems.", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/ansible", + "forks_url": "https://api.github.com/repos/bitwiseman/ansible/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/ansible/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/ansible/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/ansible/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/ansible/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/ansible/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/ansible/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/ansible/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/ansible/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/ansible/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/ansible/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/ansible/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/ansible/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/ansible/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/ansible/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/ansible/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/ansible/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/ansible/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/ansible/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/ansible/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/ansible/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/ansible/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/ansible/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/ansible/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/ansible/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/ansible/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/ansible/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/ansible/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/ansible/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/ansible/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/ansible/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/ansible/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/ansible/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/ansible/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/ansible/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/ansible/deployments", + "created_at": "2013-09-04T19:44:42Z", + "updated_at": "2015-04-12T20:19:02Z", + "pushed_at": "2013-09-04T16:27:39Z", + "git_url": "git://github.com/bitwiseman/ansible.git", + "ssh_url": "git@github.com:bitwiseman/ansible.git", + "clone_url": "https://github.com/bitwiseman/ansible.git", + "svn_url": "https://github.com/bitwiseman/ansible", + "homepage": "http://ansibleworks.com/", + "size": 12416, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Python", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "gpl-3.0", + "name": "GNU General Public License v3.0", + "spdx_id": "GPL-3.0", + "url": "https://api.github.com/licenses/gpl-3.0", + "node_id": "MDc6TGljZW5zZTk=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "devel", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 114016871, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTQwMTY4NzE=", + "name": "asciidoctor", + "full_name": "bitwiseman/asciidoctor", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/asciidoctor", + "description": ":gem: A fast, open source text processor and publishing toolchain, written in Ruby, for converting AsciiDoc content to HTML5, DocBook 5 (or 4.5) and other formats.", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/asciidoctor", + "forks_url": "https://api.github.com/repos/bitwiseman/asciidoctor/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/asciidoctor/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/asciidoctor/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/asciidoctor/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/asciidoctor/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/asciidoctor/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/asciidoctor/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/asciidoctor/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/asciidoctor/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/asciidoctor/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/asciidoctor/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/asciidoctor/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/asciidoctor/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/asciidoctor/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/asciidoctor/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/asciidoctor/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/asciidoctor/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/asciidoctor/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/asciidoctor/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/asciidoctor/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/asciidoctor/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/asciidoctor/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/asciidoctor/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/asciidoctor/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/asciidoctor/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/asciidoctor/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/asciidoctor/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/asciidoctor/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/asciidoctor/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/asciidoctor/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/asciidoctor/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/asciidoctor/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/asciidoctor/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/asciidoctor/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/asciidoctor/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/asciidoctor/deployments", + "created_at": "2017-12-12T17:02:26Z", + "updated_at": "2017-12-12T17:02:29Z", + "pushed_at": "2017-12-08T05:34:06Z", + "git_url": "git://github.com/bitwiseman/asciidoctor.git", + "ssh_url": "git@github.com:bitwiseman/asciidoctor.git", + "clone_url": "https://github.com/bitwiseman/asciidoctor.git", + "svn_url": "https://github.com/bitwiseman/asciidoctor", + "homepage": "http://asciidoctor.org", + "size": 9759, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Ruby", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 86008902, + "node_id": "MDEwOlJlcG9zaXRvcnk4NjAwODkwMg==", + "name": "asciidoctor-jenkins-extensions", + "full_name": "bitwiseman/asciidoctor-jenkins-extensions", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/asciidoctor-jenkins-extensions", + "description": "Extensions to asciidoctor syntax for Jenkins-related materials", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/asciidoctor-jenkins-extensions", + "forks_url": "https://api.github.com/repos/bitwiseman/asciidoctor-jenkins-extensions/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/asciidoctor-jenkins-extensions/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/asciidoctor-jenkins-extensions/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/asciidoctor-jenkins-extensions/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/asciidoctor-jenkins-extensions/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/asciidoctor-jenkins-extensions/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/asciidoctor-jenkins-extensions/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/asciidoctor-jenkins-extensions/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/asciidoctor-jenkins-extensions/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/asciidoctor-jenkins-extensions/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/asciidoctor-jenkins-extensions/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/asciidoctor-jenkins-extensions/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/asciidoctor-jenkins-extensions/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/asciidoctor-jenkins-extensions/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/asciidoctor-jenkins-extensions/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/asciidoctor-jenkins-extensions/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/asciidoctor-jenkins-extensions/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/asciidoctor-jenkins-extensions/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/asciidoctor-jenkins-extensions/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/asciidoctor-jenkins-extensions/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/asciidoctor-jenkins-extensions/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/asciidoctor-jenkins-extensions/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/asciidoctor-jenkins-extensions/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/asciidoctor-jenkins-extensions/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/asciidoctor-jenkins-extensions/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/asciidoctor-jenkins-extensions/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/asciidoctor-jenkins-extensions/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/asciidoctor-jenkins-extensions/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/asciidoctor-jenkins-extensions/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/asciidoctor-jenkins-extensions/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/asciidoctor-jenkins-extensions/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/asciidoctor-jenkins-extensions/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/asciidoctor-jenkins-extensions/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/asciidoctor-jenkins-extensions/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/asciidoctor-jenkins-extensions/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/asciidoctor-jenkins-extensions/deployments", + "created_at": "2017-03-23T23:58:28Z", + "updated_at": "2017-03-23T23:58:29Z", + "pushed_at": "2017-03-23T21:46:10Z", + "git_url": "git://github.com/bitwiseman/asciidoctor-jenkins-extensions.git", + "ssh_url": "git@github.com:bitwiseman/asciidoctor-jenkins-extensions.git", + "clone_url": "https://github.com/bitwiseman/asciidoctor-jenkins-extensions.git", + "svn_url": "https://github.com/bitwiseman/asciidoctor-jenkins-extensions", + "homepage": null, + "size": 24, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Ruby", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 109032809, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDkwMzI4MDk=", + "name": "asciidoctor.org", + "full_name": "bitwiseman/asciidoctor.org", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/asciidoctor.org", + "description": ":globe_with_meridians: Asciidoctor project site. Composed in AsciiDoc. Baked with Awestruct.", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/asciidoctor.org", + "forks_url": "https://api.github.com/repos/bitwiseman/asciidoctor.org/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/asciidoctor.org/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/asciidoctor.org/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/asciidoctor.org/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/asciidoctor.org/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/asciidoctor.org/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/asciidoctor.org/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/asciidoctor.org/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/asciidoctor.org/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/asciidoctor.org/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/asciidoctor.org/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/asciidoctor.org/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/asciidoctor.org/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/asciidoctor.org/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/asciidoctor.org/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/asciidoctor.org/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/asciidoctor.org/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/asciidoctor.org/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/asciidoctor.org/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/asciidoctor.org/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/asciidoctor.org/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/asciidoctor.org/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/asciidoctor.org/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/asciidoctor.org/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/asciidoctor.org/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/asciidoctor.org/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/asciidoctor.org/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/asciidoctor.org/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/asciidoctor.org/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/asciidoctor.org/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/asciidoctor.org/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/asciidoctor.org/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/asciidoctor.org/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/asciidoctor.org/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/asciidoctor.org/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/asciidoctor.org/deployments", + "created_at": "2017-10-31T17:52:58Z", + "updated_at": "2017-10-31T17:53:01Z", + "pushed_at": "2018-04-16T18:41:40Z", + "git_url": "git://github.com/bitwiseman/asciidoctor.org.git", + "ssh_url": "git@github.com:bitwiseman/asciidoctor.org.git", + "clone_url": "https://github.com/bitwiseman/asciidoctor.org.git", + "svn_url": "https://github.com/bitwiseman/asciidoctor.org", + "homepage": "http://asciidoctor.org", + "size": 37297, + "stargazers_count": 0, + "watchers_count": 0, + "language": "CSS", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 13455990, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzQ1NTk5MA==", + "name": "async-stacktrace", + "full_name": "bitwiseman/async-stacktrace", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/async-stacktrace", + "description": "Improves node.js stacktraces and makes it easier to handle errors", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/async-stacktrace", + "forks_url": "https://api.github.com/repos/bitwiseman/async-stacktrace/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/async-stacktrace/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/async-stacktrace/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/async-stacktrace/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/async-stacktrace/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/async-stacktrace/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/async-stacktrace/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/async-stacktrace/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/async-stacktrace/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/async-stacktrace/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/async-stacktrace/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/async-stacktrace/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/async-stacktrace/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/async-stacktrace/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/async-stacktrace/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/async-stacktrace/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/async-stacktrace/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/async-stacktrace/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/async-stacktrace/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/async-stacktrace/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/async-stacktrace/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/async-stacktrace/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/async-stacktrace/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/async-stacktrace/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/async-stacktrace/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/async-stacktrace/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/async-stacktrace/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/async-stacktrace/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/async-stacktrace/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/async-stacktrace/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/async-stacktrace/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/async-stacktrace/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/async-stacktrace/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/async-stacktrace/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/async-stacktrace/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/async-stacktrace/deployments", + "created_at": "2013-10-09T22:14:45Z", + "updated_at": "2013-10-09T22:14:47Z", + "pushed_at": "2013-05-26T23:01:25Z", + "git_url": "git://github.com/bitwiseman/async-stacktrace.git", + "ssh_url": "git@github.com:bitwiseman/async-stacktrace.git", + "clone_url": "https://github.com/bitwiseman/async-stacktrace.git", + "svn_url": "https://github.com/bitwiseman/async-stacktrace", + "homepage": "", + "size": 66, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 67075414, + "node_id": "MDEwOlJlcG9zaXRvcnk2NzA3NTQxNA==", + "name": "atom-beautify", + "full_name": "bitwiseman/atom-beautify", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/atom-beautify", + "description": ":lipstick: Beautification abstraction package for Atom editor", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/atom-beautify", + "forks_url": "https://api.github.com/repos/bitwiseman/atom-beautify/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/atom-beautify/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/atom-beautify/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/atom-beautify/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/atom-beautify/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/atom-beautify/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/atom-beautify/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/atom-beautify/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/atom-beautify/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/atom-beautify/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/atom-beautify/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/atom-beautify/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/atom-beautify/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/atom-beautify/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/atom-beautify/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/atom-beautify/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/atom-beautify/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/atom-beautify/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/atom-beautify/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/atom-beautify/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/atom-beautify/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/atom-beautify/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/atom-beautify/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/atom-beautify/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/atom-beautify/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/atom-beautify/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/atom-beautify/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/atom-beautify/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/atom-beautify/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/atom-beautify/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/atom-beautify/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/atom-beautify/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/atom-beautify/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/atom-beautify/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/atom-beautify/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/atom-beautify/deployments", + "created_at": "2016-08-31T21:40:36Z", + "updated_at": "2018-09-02T19:50:34Z", + "pushed_at": "2018-09-12T05:19:22Z", + "git_url": "git://github.com/bitwiseman/atom-beautify.git", + "ssh_url": "git@github.com:bitwiseman/atom-beautify.git", + "clone_url": "https://github.com/bitwiseman/atom-beautify.git", + "svn_url": "https://github.com/bitwiseman/atom-beautify", + "homepage": "http://glavin001.github.io/atom-beautify/docs/code/", + "size": 2887, + "stargazers_count": 0, + "watchers_count": 0, + "language": "CoffeeScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 138637257, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzg2MzcyNTc=", + "name": "backend-extension-indexer", + "full_name": "bitwiseman/backend-extension-indexer", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/backend-extension-indexer", + "description": "Generate the list of extension points and their known implementations", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/backend-extension-indexer", + "forks_url": "https://api.github.com/repos/bitwiseman/backend-extension-indexer/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/backend-extension-indexer/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/backend-extension-indexer/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/backend-extension-indexer/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/backend-extension-indexer/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/backend-extension-indexer/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/backend-extension-indexer/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/backend-extension-indexer/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/backend-extension-indexer/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/backend-extension-indexer/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/backend-extension-indexer/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/backend-extension-indexer/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/backend-extension-indexer/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/backend-extension-indexer/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/backend-extension-indexer/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/backend-extension-indexer/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/backend-extension-indexer/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/backend-extension-indexer/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/backend-extension-indexer/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/backend-extension-indexer/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/backend-extension-indexer/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/backend-extension-indexer/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/backend-extension-indexer/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/backend-extension-indexer/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/backend-extension-indexer/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/backend-extension-indexer/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/backend-extension-indexer/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/backend-extension-indexer/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/backend-extension-indexer/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/backend-extension-indexer/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/backend-extension-indexer/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/backend-extension-indexer/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/backend-extension-indexer/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/backend-extension-indexer/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/backend-extension-indexer/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/backend-extension-indexer/deployments", + "created_at": "2018-06-25T18:55:31Z", + "updated_at": "2018-06-25T18:55:33Z", + "pushed_at": "2018-07-13T01:26:43Z", + "git_url": "git://github.com/bitwiseman/backend-extension-indexer.git", + "ssh_url": "git@github.com:bitwiseman/backend-extension-indexer.git", + "clone_url": "https://github.com/bitwiseman/backend-extension-indexer.git", + "svn_url": "https://github.com/bitwiseman/backend-extension-indexer", + "homepage": "http://jenkins-ci.org/", + "size": 302, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 188325402, + "node_id": "MDEwOlJlcG9zaXRvcnkxODgzMjU0MDI=", + "name": "basic-branch-build-strategies-plugin", + "full_name": "bitwiseman/basic-branch-build-strategies-plugin", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/basic-branch-build-strategies-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/basic-branch-build-strategies-plugin", + "forks_url": "https://api.github.com/repos/bitwiseman/basic-branch-build-strategies-plugin/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/basic-branch-build-strategies-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/basic-branch-build-strategies-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/basic-branch-build-strategies-plugin/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/basic-branch-build-strategies-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/basic-branch-build-strategies-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/basic-branch-build-strategies-plugin/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/basic-branch-build-strategies-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/basic-branch-build-strategies-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/basic-branch-build-strategies-plugin/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/basic-branch-build-strategies-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/basic-branch-build-strategies-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/basic-branch-build-strategies-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/basic-branch-build-strategies-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/basic-branch-build-strategies-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/basic-branch-build-strategies-plugin/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/basic-branch-build-strategies-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/basic-branch-build-strategies-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/basic-branch-build-strategies-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/basic-branch-build-strategies-plugin/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/basic-branch-build-strategies-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/basic-branch-build-strategies-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/basic-branch-build-strategies-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/basic-branch-build-strategies-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/basic-branch-build-strategies-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/basic-branch-build-strategies-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/basic-branch-build-strategies-plugin/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/basic-branch-build-strategies-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/basic-branch-build-strategies-plugin/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/basic-branch-build-strategies-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/basic-branch-build-strategies-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/basic-branch-build-strategies-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/basic-branch-build-strategies-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/basic-branch-build-strategies-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/basic-branch-build-strategies-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/basic-branch-build-strategies-plugin/deployments", + "created_at": "2019-05-24T00:30:24Z", + "updated_at": "2019-05-24T00:30:27Z", + "pushed_at": "2019-05-23T14:15:12Z", + "git_url": "git://github.com/bitwiseman/basic-branch-build-strategies-plugin.git", + "ssh_url": "git@github.com:bitwiseman/basic-branch-build-strategies-plugin.git", + "clone_url": "https://github.com/bitwiseman/basic-branch-build-strategies-plugin.git", + "svn_url": "https://github.com/bitwiseman/basic-branch-build-strategies-plugin", + "homepage": "", + "size": 1083, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 115016601, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTUwMTY2MDE=", + "name": "bats", + "full_name": "bitwiseman/bats", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/bats", + "description": "Bash Automated Testing System", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/bats", + "forks_url": "https://api.github.com/repos/bitwiseman/bats/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/bats/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/bats/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/bats/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/bats/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/bats/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/bats/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/bats/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/bats/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/bats/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/bats/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/bats/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/bats/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/bats/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/bats/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/bats/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/bats/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/bats/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/bats/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/bats/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/bats/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/bats/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/bats/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/bats/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/bats/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/bats/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/bats/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/bats/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/bats/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/bats/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/bats/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/bats/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/bats/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/bats/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/bats/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/bats/deployments", + "created_at": "2017-12-21T14:50:56Z", + "updated_at": "2017-12-21T14:50:59Z", + "pushed_at": "2017-11-29T15:26:26Z", + "git_url": "git://github.com/bitwiseman/bats.git", + "ssh_url": "git@github.com:bitwiseman/bats.git", + "clone_url": "https://github.com/bitwiseman/bats.git", + "svn_url": "https://github.com/bitwiseman/bats", + "homepage": "", + "size": 116, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Shell", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 174022025, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzQwMjIwMjU=", + "name": "bdd-jx", + "full_name": "bitwiseman/bdd-jx", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/bdd-jx", + "description": "BDD tests using ginkgo for Jenkins X", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/bdd-jx", + "forks_url": "https://api.github.com/repos/bitwiseman/bdd-jx/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/bdd-jx/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/bdd-jx/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/bdd-jx/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/bdd-jx/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/bdd-jx/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/bdd-jx/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/bdd-jx/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/bdd-jx/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/bdd-jx/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/bdd-jx/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/bdd-jx/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/bdd-jx/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/bdd-jx/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/bdd-jx/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/bdd-jx/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/bdd-jx/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/bdd-jx/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/bdd-jx/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/bdd-jx/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/bdd-jx/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/bdd-jx/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/bdd-jx/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/bdd-jx/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/bdd-jx/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/bdd-jx/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/bdd-jx/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/bdd-jx/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/bdd-jx/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/bdd-jx/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/bdd-jx/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/bdd-jx/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/bdd-jx/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/bdd-jx/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/bdd-jx/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/bdd-jx/deployments", + "created_at": "2019-03-05T21:17:05Z", + "updated_at": "2019-03-05T21:17:07Z", + "pushed_at": "2019-03-05T16:16:45Z", + "git_url": "git://github.com/bitwiseman/bdd-jx.git", + "ssh_url": "git@github.com:bitwiseman/bdd-jx.git", + "clone_url": "https://github.com/bitwiseman/bdd-jx.git", + "svn_url": "https://github.com/bitwiseman/bdd-jx", + "homepage": "", + "size": 426, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Go", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 155909857, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTU5MDk4NTc=", + "name": "beautifier.io", + "full_name": "bitwiseman/beautifier.io", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/beautifier.io", + "description": "Website for the beautifier project", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/beautifier.io", + "forks_url": "https://api.github.com/repos/bitwiseman/beautifier.io/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/beautifier.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/beautifier.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/beautifier.io/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/beautifier.io/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/beautifier.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/beautifier.io/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/beautifier.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/beautifier.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/beautifier.io/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/beautifier.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/beautifier.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/beautifier.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/beautifier.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/beautifier.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/beautifier.io/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/beautifier.io/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/beautifier.io/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/beautifier.io/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/beautifier.io/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/beautifier.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/beautifier.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/beautifier.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/beautifier.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/beautifier.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/beautifier.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/beautifier.io/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/beautifier.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/beautifier.io/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/beautifier.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/beautifier.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/beautifier.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/beautifier.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/beautifier.io/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/beautifier.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/beautifier.io/deployments", + "created_at": "2018-11-02T18:59:47Z", + "updated_at": "2018-11-02T18:59:50Z", + "pushed_at": "2018-10-18T08:37:10Z", + "git_url": "git://github.com/bitwiseman/beautifier.io.git", + "ssh_url": "git@github.com:bitwiseman/beautifier.io.git", + "clone_url": "https://github.com/bitwiseman/beautifier.io.git", + "svn_url": "https://github.com/bitwiseman/beautifier.io", + "homepage": "https://beautifier.io", + "size": 8774, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 170361890, + "node_id": "MDEwOlJlcG9zaXRvcnkxNzAzNjE4OTA=", + "name": "bitbucket-branch-source-plugin", + "full_name": "bitwiseman/bitbucket-branch-source-plugin", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/bitbucket-branch-source-plugin", + "description": "Bitbucket Branch Source Plugin", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/bitbucket-branch-source-plugin", + "forks_url": "https://api.github.com/repos/bitwiseman/bitbucket-branch-source-plugin/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/bitbucket-branch-source-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/bitbucket-branch-source-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/bitbucket-branch-source-plugin/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/bitbucket-branch-source-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/bitbucket-branch-source-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/bitbucket-branch-source-plugin/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/bitbucket-branch-source-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/bitbucket-branch-source-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/bitbucket-branch-source-plugin/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/bitbucket-branch-source-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/bitbucket-branch-source-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/bitbucket-branch-source-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/bitbucket-branch-source-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/bitbucket-branch-source-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/bitbucket-branch-source-plugin/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/bitbucket-branch-source-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/bitbucket-branch-source-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/bitbucket-branch-source-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/bitbucket-branch-source-plugin/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/bitbucket-branch-source-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/bitbucket-branch-source-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/bitbucket-branch-source-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/bitbucket-branch-source-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/bitbucket-branch-source-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/bitbucket-branch-source-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/bitbucket-branch-source-plugin/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/bitbucket-branch-source-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/bitbucket-branch-source-plugin/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/bitbucket-branch-source-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/bitbucket-branch-source-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/bitbucket-branch-source-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/bitbucket-branch-source-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/bitbucket-branch-source-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/bitbucket-branch-source-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/bitbucket-branch-source-plugin/deployments", + "created_at": "2019-02-12T17:35:11Z", + "updated_at": "2019-09-30T08:19:03Z", + "pushed_at": "2019-02-19T00:50:31Z", + "git_url": "git://github.com/bitwiseman/bitbucket-branch-source-plugin.git", + "ssh_url": "git@github.com:bitwiseman/bitbucket-branch-source-plugin.git", + "clone_url": "https://github.com/bitwiseman/bitbucket-branch-source-plugin.git", + "svn_url": "https://github.com/bitwiseman/bitbucket-branch-source-plugin", + "homepage": "https://wiki.jenkins-ci.org/display/JENKINS/Bitbucket+Branch+Source+Plugin", + "size": 1381, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 212685187, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTI2ODUxODc=", + "name": "bitwiseman-test-repo-public", + "full_name": "bitwiseman/bitwiseman-test-repo-public", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/bitwiseman-test-repo-public", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/bitwiseman/bitwiseman-test-repo-public", + "forks_url": "https://api.github.com/repos/bitwiseman/bitwiseman-test-repo-public/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/bitwiseman-test-repo-public/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/bitwiseman-test-repo-public/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/bitwiseman-test-repo-public/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/bitwiseman-test-repo-public/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/bitwiseman-test-repo-public/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/bitwiseman-test-repo-public/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/bitwiseman-test-repo-public/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/bitwiseman-test-repo-public/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/bitwiseman-test-repo-public/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/bitwiseman-test-repo-public/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/bitwiseman-test-repo-public/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/bitwiseman-test-repo-public/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/bitwiseman-test-repo-public/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/bitwiseman-test-repo-public/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/bitwiseman-test-repo-public/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/bitwiseman-test-repo-public/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/bitwiseman-test-repo-public/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/bitwiseman-test-repo-public/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/bitwiseman-test-repo-public/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/bitwiseman-test-repo-public/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/bitwiseman-test-repo-public/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/bitwiseman-test-repo-public/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/bitwiseman-test-repo-public/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/bitwiseman-test-repo-public/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/bitwiseman-test-repo-public/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/bitwiseman-test-repo-public/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/bitwiseman-test-repo-public/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/bitwiseman-test-repo-public/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/bitwiseman-test-repo-public/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/bitwiseman-test-repo-public/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/bitwiseman-test-repo-public/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/bitwiseman-test-repo-public/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/bitwiseman-test-repo-public/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/bitwiseman-test-repo-public/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/bitwiseman-test-repo-public/deployments", + "created_at": "2019-10-03T21:37:03Z", + "updated_at": "2019-10-03T21:37:03Z", + "pushed_at": "2019-10-03T21:37:04Z", + "git_url": "git://github.com/bitwiseman/bitwiseman-test-repo-public.git", + "ssh_url": "git@github.com:bitwiseman/bitwiseman-test-repo-public.git", + "clone_url": "https://github.com/bitwiseman/bitwiseman-test-repo-public.git", + "svn_url": "https://github.com/bitwiseman/bitwiseman-test-repo-public", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 99860531, + "node_id": "MDEwOlJlcG9zaXRvcnk5OTg2MDUzMQ==", + "name": "bitwiseman.io", + "full_name": "bitwiseman/bitwiseman.io", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/bitwiseman.io", + "description": "My personal site", + "fork": false, + "url": "https://api.github.com/repos/bitwiseman/bitwiseman.io", + "forks_url": "https://api.github.com/repos/bitwiseman/bitwiseman.io/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/bitwiseman.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/bitwiseman.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/bitwiseman.io/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/bitwiseman.io/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/bitwiseman.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/bitwiseman.io/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/bitwiseman.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/bitwiseman.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/bitwiseman.io/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/bitwiseman.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/bitwiseman.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/bitwiseman.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/bitwiseman.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/bitwiseman.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/bitwiseman.io/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/bitwiseman.io/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/bitwiseman.io/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/bitwiseman.io/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/bitwiseman.io/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/bitwiseman.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/bitwiseman.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/bitwiseman.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/bitwiseman.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/bitwiseman.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/bitwiseman.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/bitwiseman.io/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/bitwiseman.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/bitwiseman.io/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/bitwiseman.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/bitwiseman.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/bitwiseman.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/bitwiseman.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/bitwiseman.io/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/bitwiseman.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/bitwiseman.io/deployments", + "created_at": "2017-08-09T23:21:43Z", + "updated_at": "2017-09-26T18:20:56Z", + "pushed_at": "2018-06-06T20:36:52Z", + "git_url": "git://github.com/bitwiseman/bitwiseman.io.git", + "ssh_url": "git@github.com:bitwiseman/bitwiseman.io.git", + "clone_url": "https://github.com/bitwiseman/bitwiseman.io.git", + "svn_url": "https://github.com/bitwiseman/bitwiseman.io", + "homepage": null, + "size": 3, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": true, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 65943940, + "node_id": "MDEwOlJlcG9zaXRvcnk2NTk0Mzk0MA==", + "name": "blueocean-acceptance-test", + "full_name": "bitwiseman/blueocean-acceptance-test", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/blueocean-acceptance-test", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/blueocean-acceptance-test", + "forks_url": "https://api.github.com/repos/bitwiseman/blueocean-acceptance-test/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/blueocean-acceptance-test/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/blueocean-acceptance-test/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/blueocean-acceptance-test/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/blueocean-acceptance-test/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/blueocean-acceptance-test/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/blueocean-acceptance-test/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/blueocean-acceptance-test/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/blueocean-acceptance-test/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/blueocean-acceptance-test/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/blueocean-acceptance-test/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/blueocean-acceptance-test/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/blueocean-acceptance-test/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/blueocean-acceptance-test/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/blueocean-acceptance-test/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/blueocean-acceptance-test/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/blueocean-acceptance-test/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/blueocean-acceptance-test/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/blueocean-acceptance-test/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/blueocean-acceptance-test/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/blueocean-acceptance-test/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/blueocean-acceptance-test/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/blueocean-acceptance-test/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/blueocean-acceptance-test/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/blueocean-acceptance-test/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/blueocean-acceptance-test/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/blueocean-acceptance-test/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/blueocean-acceptance-test/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/blueocean-acceptance-test/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/blueocean-acceptance-test/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/blueocean-acceptance-test/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/blueocean-acceptance-test/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/blueocean-acceptance-test/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/blueocean-acceptance-test/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/blueocean-acceptance-test/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/blueocean-acceptance-test/deployments", + "created_at": "2016-08-17T21:41:07Z", + "updated_at": "2016-08-17T21:41:08Z", + "pushed_at": "2016-08-18T20:40:53Z", + "git_url": "git://github.com/bitwiseman/blueocean-acceptance-test.git", + "ssh_url": "git@github.com:bitwiseman/blueocean-acceptance-test.git", + "clone_url": "https://github.com/bitwiseman/blueocean-acceptance-test.git", + "svn_url": "https://github.com/bitwiseman/blueocean-acceptance-test", + "homepage": null, + "size": 125, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 65943748, + "node_id": "MDEwOlJlcG9zaXRvcnk2NTk0Mzc0OA==", + "name": "blueocean-plugin", + "full_name": "bitwiseman/blueocean-plugin", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/blueocean-plugin", + "description": "Blue Ocean is a reboot of the Jenkins CI/CD User Experience", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/blueocean-plugin", + "forks_url": "https://api.github.com/repos/bitwiseman/blueocean-plugin/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/blueocean-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/blueocean-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/blueocean-plugin/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/blueocean-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/blueocean-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/blueocean-plugin/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/blueocean-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/blueocean-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/blueocean-plugin/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/blueocean-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/blueocean-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/blueocean-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/blueocean-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/blueocean-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/blueocean-plugin/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/blueocean-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/blueocean-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/blueocean-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/blueocean-plugin/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/blueocean-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/blueocean-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/blueocean-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/blueocean-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/blueocean-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/blueocean-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/blueocean-plugin/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/blueocean-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/blueocean-plugin/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/blueocean-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/blueocean-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/blueocean-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/blueocean-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/blueocean-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/blueocean-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/blueocean-plugin/deployments", + "created_at": "2016-08-17T21:37:46Z", + "updated_at": "2016-08-17T21:37:47Z", + "pushed_at": "2016-08-17T20:21:17Z", + "git_url": "git://github.com/bitwiseman/blueocean-plugin.git", + "ssh_url": "git@github.com:bitwiseman/blueocean-plugin.git", + "clone_url": "https://github.com/bitwiseman/blueocean-plugin.git", + "svn_url": "https://github.com/bitwiseman/blueocean-plugin", + "homepage": "https://jenkins.io/projects/blueocean/", + "size": 9383, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 14539392, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDUzOTM5Mg==", + "name": "brackets-beautify", + "full_name": "bitwiseman/brackets-beautify", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/brackets-beautify", + "description": "Beautify HTML, CSS, and Javascript in Adobe Brackets", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/brackets-beautify", + "forks_url": "https://api.github.com/repos/bitwiseman/brackets-beautify/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/brackets-beautify/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/brackets-beautify/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/brackets-beautify/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/brackets-beautify/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/brackets-beautify/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/brackets-beautify/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/brackets-beautify/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/brackets-beautify/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/brackets-beautify/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/brackets-beautify/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/brackets-beautify/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/brackets-beautify/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/brackets-beautify/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/brackets-beautify/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/brackets-beautify/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/brackets-beautify/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/brackets-beautify/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/brackets-beautify/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/brackets-beautify/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/brackets-beautify/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/brackets-beautify/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/brackets-beautify/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/brackets-beautify/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/brackets-beautify/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/brackets-beautify/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/brackets-beautify/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/brackets-beautify/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/brackets-beautify/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/brackets-beautify/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/brackets-beautify/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/brackets-beautify/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/brackets-beautify/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/brackets-beautify/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/brackets-beautify/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/brackets-beautify/deployments", + "created_at": "2013-11-19T22:04:34Z", + "updated_at": "2018-08-28T19:36:12Z", + "pushed_at": "2018-08-28T19:36:10Z", + "git_url": "git://github.com/bitwiseman/brackets-beautify.git", + "ssh_url": "git@github.com:bitwiseman/brackets-beautify.git", + "clone_url": "https://github.com/bitwiseman/brackets-beautify.git", + "svn_url": "https://github.com/bitwiseman/brackets-beautify", + "homepage": null, + "size": 447, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 181791997, + "node_id": "MDEwOlJlcG9zaXRvcnkxODE3OTE5OTc=", + "name": "branch-api-plugin", + "full_name": "bitwiseman/branch-api-plugin", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/branch-api-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/branch-api-plugin", + "forks_url": "https://api.github.com/repos/bitwiseman/branch-api-plugin/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/branch-api-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/branch-api-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/branch-api-plugin/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/branch-api-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/branch-api-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/branch-api-plugin/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/branch-api-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/branch-api-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/branch-api-plugin/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/branch-api-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/branch-api-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/branch-api-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/branch-api-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/branch-api-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/branch-api-plugin/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/branch-api-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/branch-api-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/branch-api-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/branch-api-plugin/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/branch-api-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/branch-api-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/branch-api-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/branch-api-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/branch-api-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/branch-api-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/branch-api-plugin/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/branch-api-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/branch-api-plugin/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/branch-api-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/branch-api-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/branch-api-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/branch-api-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/branch-api-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/branch-api-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/branch-api-plugin/deployments", + "created_at": "2019-04-17T01:10:28Z", + "updated_at": "2019-04-17T01:10:30Z", + "pushed_at": "2019-05-24T21:23:41Z", + "git_url": "git://github.com/bitwiseman/branch-api-plugin.git", + "ssh_url": "git@github.com:bitwiseman/branch-api-plugin.git", + "clone_url": "https://github.com/bitwiseman/branch-api-plugin.git", + "svn_url": "https://github.com/bitwiseman/branch-api-plugin", + "homepage": "http://wiki.jenkins-ci.org/display/JENKINS/Branch+API+Plugin", + "size": 1724, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 9066278, + "node_id": "MDEwOlJlcG9zaXRvcnk5MDY2Mjc4", + "name": "browser-launcher", + "full_name": "bitwiseman/browser-launcher", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/browser-launcher", + "description": "detect and launch browser versions, headlessly or otherwise", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/browser-launcher", + "forks_url": "https://api.github.com/repos/bitwiseman/browser-launcher/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/browser-launcher/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/browser-launcher/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/browser-launcher/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/browser-launcher/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/browser-launcher/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/browser-launcher/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/browser-launcher/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/browser-launcher/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/browser-launcher/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/browser-launcher/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/browser-launcher/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/browser-launcher/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/browser-launcher/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/browser-launcher/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/browser-launcher/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/browser-launcher/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/browser-launcher/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/browser-launcher/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/browser-launcher/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/browser-launcher/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/browser-launcher/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/browser-launcher/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/browser-launcher/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/browser-launcher/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/browser-launcher/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/browser-launcher/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/browser-launcher/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/browser-launcher/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/browser-launcher/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/browser-launcher/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/browser-launcher/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/browser-launcher/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/browser-launcher/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/browser-launcher/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/browser-launcher/deployments", + "created_at": "2013-03-27T23:44:29Z", + "updated_at": "2013-03-27T23:44:29Z", + "pushed_at": "2013-01-11T22:45:10Z", + "git_url": "git://github.com/bitwiseman/browser-launcher.git", + "ssh_url": "git@github.com:bitwiseman/browser-launcher.git", + "clone_url": "https://github.com/bitwiseman/browser-launcher.git", + "svn_url": "https://github.com/bitwiseman/browser-launcher", + "homepage": null, + "size": 86, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 161399396, + "node_id": "MDEwOlJlcG9zaXRvcnkxNjEzOTkzOTY=", + "name": "build", + "full_name": "bitwiseman/build", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/build", + "description": "A Kubernetes-native Build resource.", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/build", + "forks_url": "https://api.github.com/repos/bitwiseman/build/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/build/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/build/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/build/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/build/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/build/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/build/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/build/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/build/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/build/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/build/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/build/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/build/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/build/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/build/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/build/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/build/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/build/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/build/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/build/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/build/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/build/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/build/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/build/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/build/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/build/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/build/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/build/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/build/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/build/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/build/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/build/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/build/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/build/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/build/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/build/deployments", + "created_at": "2018-12-11T22:02:15Z", + "updated_at": "2018-12-11T22:02:18Z", + "pushed_at": "2018-12-11T19:35:04Z", + "git_url": "git://github.com/bitwiseman/build.git", + "ssh_url": "git@github.com:bitwiseman/build.git", + "clone_url": "https://github.com/bitwiseman/build.git", + "svn_url": "https://github.com/bitwiseman/build", + "homepage": "", + "size": 18764, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Go", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 125604145, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjU2MDQxNDU=", + "name": "builder-base", + "full_name": "bitwiseman/builder-base", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/builder-base", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/builder-base", + "forks_url": "https://api.github.com/repos/bitwiseman/builder-base/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/builder-base/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/builder-base/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/builder-base/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/builder-base/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/builder-base/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/builder-base/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/builder-base/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/builder-base/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/builder-base/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/builder-base/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/builder-base/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/builder-base/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/builder-base/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/builder-base/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/builder-base/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/builder-base/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/builder-base/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/builder-base/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/builder-base/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/builder-base/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/builder-base/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/builder-base/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/builder-base/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/builder-base/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/builder-base/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/builder-base/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/builder-base/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/builder-base/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/builder-base/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/builder-base/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/builder-base/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/builder-base/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/builder-base/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/builder-base/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/builder-base/deployments", + "created_at": "2018-03-17T06:44:31Z", + "updated_at": "2018-03-17T06:44:32Z", + "pushed_at": "2018-03-17T06:44:50Z", + "git_url": "git://github.com/bitwiseman/builder-base.git", + "ssh_url": "git@github.com:bitwiseman/builder-base.git", + "clone_url": "https://github.com/bitwiseman/builder-base.git", + "svn_url": "https://github.com/bitwiseman/builder-base", + "homepage": null, + "size": 157, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Shell", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 125604181, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjU2MDQxODE=", + "name": "builder-go", + "full_name": "bitwiseman/builder-go", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/builder-go", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/builder-go", + "forks_url": "https://api.github.com/repos/bitwiseman/builder-go/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/builder-go/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/builder-go/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/builder-go/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/builder-go/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/builder-go/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/builder-go/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/builder-go/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/builder-go/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/builder-go/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/builder-go/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/builder-go/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/builder-go/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/builder-go/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/builder-go/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/builder-go/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/builder-go/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/builder-go/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/builder-go/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/builder-go/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/builder-go/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/builder-go/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/builder-go/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/builder-go/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/builder-go/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/builder-go/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/builder-go/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/builder-go/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/builder-go/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/builder-go/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/builder-go/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/builder-go/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/builder-go/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/builder-go/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/builder-go/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/builder-go/deployments", + "created_at": "2018-03-17T06:45:08Z", + "updated_at": "2018-03-17T06:45:09Z", + "pushed_at": "2018-03-17T06:45:29Z", + "git_url": "git://github.com/bitwiseman/builder-go.git", + "ssh_url": "git@github.com:bitwiseman/builder-go.git", + "clone_url": "https://github.com/bitwiseman/builder-go.git", + "svn_url": "https://github.com/bitwiseman/builder-go", + "homepage": null, + "size": 122, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Shell", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 125604099, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjU2MDQwOTk=", + "name": "builder-maven", + "full_name": "bitwiseman/builder-maven", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/builder-maven", + "description": "Builder image used in Jenkins-X pipelines to build maven based projects", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/builder-maven", + "forks_url": "https://api.github.com/repos/bitwiseman/builder-maven/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/builder-maven/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/builder-maven/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/builder-maven/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/builder-maven/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/builder-maven/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/builder-maven/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/builder-maven/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/builder-maven/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/builder-maven/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/builder-maven/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/builder-maven/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/builder-maven/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/builder-maven/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/builder-maven/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/builder-maven/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/builder-maven/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/builder-maven/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/builder-maven/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/builder-maven/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/builder-maven/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/builder-maven/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/builder-maven/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/builder-maven/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/builder-maven/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/builder-maven/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/builder-maven/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/builder-maven/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/builder-maven/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/builder-maven/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/builder-maven/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/builder-maven/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/builder-maven/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/builder-maven/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/builder-maven/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/builder-maven/deployments", + "created_at": "2018-03-17T06:43:36Z", + "updated_at": "2018-03-17T06:43:38Z", + "pushed_at": "2018-03-17T06:44:10Z", + "git_url": "git://github.com/bitwiseman/builder-maven.git", + "ssh_url": "git@github.com:bitwiseman/builder-maven.git", + "clone_url": "https://github.com/bitwiseman/builder-maven.git", + "svn_url": "https://github.com/bitwiseman/builder-maven", + "homepage": null, + "size": 123, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Shell", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 125427069, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjU0MjcwNjk=", + "name": "builder-nodejs", + "full_name": "bitwiseman/builder-nodejs", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/builder-nodejs", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/builder-nodejs", + "forks_url": "https://api.github.com/repos/bitwiseman/builder-nodejs/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/builder-nodejs/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/builder-nodejs/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/builder-nodejs/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/builder-nodejs/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/builder-nodejs/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/builder-nodejs/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/builder-nodejs/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/builder-nodejs/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/builder-nodejs/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/builder-nodejs/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/builder-nodejs/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/builder-nodejs/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/builder-nodejs/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/builder-nodejs/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/builder-nodejs/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/builder-nodejs/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/builder-nodejs/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/builder-nodejs/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/builder-nodejs/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/builder-nodejs/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/builder-nodejs/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/builder-nodejs/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/builder-nodejs/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/builder-nodejs/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/builder-nodejs/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/builder-nodejs/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/builder-nodejs/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/builder-nodejs/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/builder-nodejs/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/builder-nodejs/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/builder-nodejs/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/builder-nodejs/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/builder-nodejs/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/builder-nodejs/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/builder-nodejs/deployments", + "created_at": "2018-03-15T21:16:45Z", + "updated_at": "2018-03-15T21:16:47Z", + "pushed_at": "2018-03-17T06:42:10Z", + "git_url": "git://github.com/bitwiseman/builder-nodejs.git", + "ssh_url": "git@github.com:bitwiseman/builder-nodejs.git", + "clone_url": "https://github.com/bitwiseman/builder-nodejs.git", + "svn_url": "https://github.com/bitwiseman/builder-nodejs", + "homepage": null, + "size": 64, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Shell", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 140117480, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDAxMTc0ODA=", + "name": "cdnjs", + "full_name": "bitwiseman/cdnjs", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/cdnjs", + "description": "Free and Open Source Public Web CDN", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/cdnjs", + "forks_url": "https://api.github.com/repos/bitwiseman/cdnjs/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/cdnjs/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/cdnjs/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/cdnjs/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/cdnjs/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/cdnjs/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/cdnjs/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/cdnjs/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/cdnjs/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/cdnjs/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/cdnjs/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/cdnjs/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/cdnjs/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/cdnjs/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/cdnjs/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/cdnjs/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/cdnjs/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/cdnjs/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/cdnjs/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/cdnjs/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/cdnjs/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/cdnjs/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/cdnjs/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/cdnjs/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/cdnjs/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/cdnjs/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/cdnjs/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/cdnjs/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/cdnjs/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/cdnjs/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/cdnjs/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/cdnjs/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/cdnjs/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/cdnjs/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/cdnjs/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/cdnjs/deployments", + "created_at": "2018-07-07T21:21:41Z", + "updated_at": "2018-07-07T21:21:58Z", + "pushed_at": "2018-07-07T21:24:12Z", + "git_url": "git://github.com/bitwiseman/cdnjs.git", + "ssh_url": "git@github.com:bitwiseman/cdnjs.git", + "clone_url": "https://github.com/bitwiseman/cdnjs.git", + "svn_url": "https://github.com/bitwiseman/cdnjs", + "homepage": "https://cdnjs.com", + "size": 6845837, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 30950086, + "node_id": "MDEwOlJlcG9zaXRvcnkzMDk1MDA4Ng==", + "name": "chrome-okc-plugin", + "full_name": "bitwiseman/chrome-okc-plugin", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/chrome-okc-plugin", + "description": "OkCupid Poly Plugin", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/chrome-okc-plugin", + "forks_url": "https://api.github.com/repos/bitwiseman/chrome-okc-plugin/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/chrome-okc-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/chrome-okc-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/chrome-okc-plugin/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/chrome-okc-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/chrome-okc-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/chrome-okc-plugin/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/chrome-okc-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/chrome-okc-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/chrome-okc-plugin/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/chrome-okc-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/chrome-okc-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/chrome-okc-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/chrome-okc-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/chrome-okc-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/chrome-okc-plugin/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/chrome-okc-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/chrome-okc-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/chrome-okc-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/chrome-okc-plugin/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/chrome-okc-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/chrome-okc-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/chrome-okc-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/chrome-okc-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/chrome-okc-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/chrome-okc-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/chrome-okc-plugin/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/chrome-okc-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/chrome-okc-plugin/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/chrome-okc-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/chrome-okc-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/chrome-okc-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/chrome-okc-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/chrome-okc-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/chrome-okc-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/chrome-okc-plugin/deployments", + "created_at": "2015-02-18T03:14:22Z", + "updated_at": "2015-02-18T03:14:22Z", + "pushed_at": "2015-02-02T16:59:11Z", + "git_url": "git://github.com/bitwiseman/chrome-okc-plugin.git", + "ssh_url": "git@github.com:bitwiseman/chrome-okc-plugin.git", + "clone_url": "https://github.com/bitwiseman/chrome-okc-plugin.git", + "svn_url": "https://github.com/bitwiseman/chrome-okc-plugin", + "homepage": null, + "size": 24818, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 181818354, + "node_id": "MDEwOlJlcG9zaXRvcnkxODE4MTgzNTQ=", + "name": "cloudbees-folder-plugin", + "full_name": "bitwiseman/cloudbees-folder-plugin", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/cloudbees-folder-plugin", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/cloudbees-folder-plugin", + "forks_url": "https://api.github.com/repos/bitwiseman/cloudbees-folder-plugin/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/cloudbees-folder-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/cloudbees-folder-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/cloudbees-folder-plugin/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/cloudbees-folder-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/cloudbees-folder-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/cloudbees-folder-plugin/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/cloudbees-folder-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/cloudbees-folder-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/cloudbees-folder-plugin/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/cloudbees-folder-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/cloudbees-folder-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/cloudbees-folder-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/cloudbees-folder-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/cloudbees-folder-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/cloudbees-folder-plugin/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/cloudbees-folder-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/cloudbees-folder-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/cloudbees-folder-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/cloudbees-folder-plugin/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/cloudbees-folder-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/cloudbees-folder-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/cloudbees-folder-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/cloudbees-folder-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/cloudbees-folder-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/cloudbees-folder-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/cloudbees-folder-plugin/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/cloudbees-folder-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/cloudbees-folder-plugin/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/cloudbees-folder-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/cloudbees-folder-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/cloudbees-folder-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/cloudbees-folder-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/cloudbees-folder-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/cloudbees-folder-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/cloudbees-folder-plugin/deployments", + "created_at": "2019-04-17T04:41:49Z", + "updated_at": "2019-04-17T04:41:52Z", + "pushed_at": "2019-04-17T04:47:03Z", + "git_url": "git://github.com/bitwiseman/cloudbees-folder-plugin.git", + "ssh_url": "git@github.com:bitwiseman/cloudbees-folder-plugin.git", + "clone_url": "https://github.com/bitwiseman/cloudbees-folder-plugin.git", + "svn_url": "https://github.com/bitwiseman/cloudbees-folder-plugin", + "homepage": "", + "size": 880, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + }, + { + "id": 55262951, + "node_id": "MDEwOlJlcG9zaXRvcnk1NTI2Mjk1MQ==", + "name": "cockroach", + "full_name": "bitwiseman/cockroach", + "private": false, + "owner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/bitwiseman/cockroach", + "description": "A Scalable, Survivable, Strongly-Consistent SQL Database", + "fork": true, + "url": "https://api.github.com/repos/bitwiseman/cockroach", + "forks_url": "https://api.github.com/repos/bitwiseman/cockroach/forks", + "keys_url": "https://api.github.com/repos/bitwiseman/cockroach/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bitwiseman/cockroach/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bitwiseman/cockroach/teams", + "hooks_url": "https://api.github.com/repos/bitwiseman/cockroach/hooks", + "issue_events_url": "https://api.github.com/repos/bitwiseman/cockroach/issues/events{/number}", + "events_url": "https://api.github.com/repos/bitwiseman/cockroach/events", + "assignees_url": "https://api.github.com/repos/bitwiseman/cockroach/assignees{/user}", + "branches_url": "https://api.github.com/repos/bitwiseman/cockroach/branches{/branch}", + "tags_url": "https://api.github.com/repos/bitwiseman/cockroach/tags", + "blobs_url": "https://api.github.com/repos/bitwiseman/cockroach/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bitwiseman/cockroach/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bitwiseman/cockroach/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bitwiseman/cockroach/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bitwiseman/cockroach/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bitwiseman/cockroach/languages", + "stargazers_url": "https://api.github.com/repos/bitwiseman/cockroach/stargazers", + "contributors_url": "https://api.github.com/repos/bitwiseman/cockroach/contributors", + "subscribers_url": "https://api.github.com/repos/bitwiseman/cockroach/subscribers", + "subscription_url": "https://api.github.com/repos/bitwiseman/cockroach/subscription", + "commits_url": "https://api.github.com/repos/bitwiseman/cockroach/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bitwiseman/cockroach/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bitwiseman/cockroach/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bitwiseman/cockroach/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bitwiseman/cockroach/contents/{+path}", + "compare_url": "https://api.github.com/repos/bitwiseman/cockroach/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bitwiseman/cockroach/merges", + "archive_url": "https://api.github.com/repos/bitwiseman/cockroach/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bitwiseman/cockroach/downloads", + "issues_url": "https://api.github.com/repos/bitwiseman/cockroach/issues{/number}", + "pulls_url": "https://api.github.com/repos/bitwiseman/cockroach/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bitwiseman/cockroach/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bitwiseman/cockroach/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bitwiseman/cockroach/labels{/name}", + "releases_url": "https://api.github.com/repos/bitwiseman/cockroach/releases{/id}", + "deployments_url": "https://api.github.com/repos/bitwiseman/cockroach/deployments", + "created_at": "2016-04-01T21:18:16Z", + "updated_at": "2016-04-01T21:18:21Z", + "pushed_at": "2016-04-01T20:46:01Z", + "git_url": "git://github.com/bitwiseman/cockroach.git", + "ssh_url": "git@github.com:bitwiseman/cockroach.git", + "clone_url": "https://github.com/bitwiseman/cockroach.git", + "svn_url": "https://github.com/bitwiseman/cockroach", + "homepage": "https://www.cockroachlabs.com", + "size": 176204, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Go", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testSubscribers/mappings/repos_bitwiseman_github-api-2-809893.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testSubscribers/mappings/repos_bitwiseman_github-api-2-809893.json new file mode 100644 index 0000000000..d14e576973 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testSubscribers/mappings/repos_bitwiseman_github-api-2-809893.json @@ -0,0 +1,43 @@ +{ + "id": "809893de-22d7-4bad-9e0a-c7b9ff8ee7df", + "name": "repos_bitwiseman_github-api", + "request": { + "url": "/repos/bitwiseman/github-api", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_bitwiseman_github-api-809893de-22d7-4bad-9e0a-c7b9ff8ee7df.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:29 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4347", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"655235f9d6e8d2392b20b2ddaca630f8\"", + "Last-Modified": "Fri, 25 Oct 2019 01:51:28 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAD5:45A4:C1447C:DF0F2D:5DB3A13C" + } + }, + "uuid": "809893de-22d7-4bad-9e0a-c7b9ff8ee7df", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testSubscribers/mappings/repos_bitwiseman_github-api_subscribers-3-8cec42.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testSubscribers/mappings/repos_bitwiseman_github-api_subscribers-3-8cec42.json new file mode 100644 index 0000000000..61dcd181f2 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testSubscribers/mappings/repos_bitwiseman_github-api_subscribers-3-8cec42.json @@ -0,0 +1,42 @@ +{ + "id": "8cec4255-a7a6-484c-ab2f-5c2655d826c9", + "name": "repos_bitwiseman_github-api_subscribers", + "request": { + "url": "/repos/bitwiseman/github-api/subscribers", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_bitwiseman_github-api_subscribers-8cec4255-a7a6-484c-ab2f-5c2655d826c9.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:29 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4346", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"024a80cc64f9dff85ca2952c62eff850\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAD5:45A4:C14489:DF0F44:5DB3A13D" + } + }, + "uuid": "8cec4255-a7a6-484c-ab2f-5c2655d826c9", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testSubscribers/mappings/user-1-9344f7.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testSubscribers/mappings/user-1-9344f7.json new file mode 100644 index 0000000000..9d04831d65 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testSubscribers/mappings/user-1-9344f7.json @@ -0,0 +1,43 @@ +{ + "id": "9344f7a2-3c3a-427c-a70e-adaad303b0b4", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-9344f7a2-3c3a-427c-a70e-adaad303b0b4.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:28 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4349", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"8c3d3dcf6fc5f9edaf26c902295396e5\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAD5:45A4:C14467:DF0F20:5DB3A13C" + } + }, + "uuid": "9344f7a2-3c3a-427c-a70e-adaad303b0b4", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testSubscribers/mappings/user_1958953_repos-10-bd9bd7.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testSubscribers/mappings/user_1958953_repos-10-bd9bd7.json new file mode 100644 index 0000000000..2a720459f0 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testSubscribers/mappings/user_1958953_repos-10-bd9bd7.json @@ -0,0 +1,43 @@ +{ + "id": "bd9bd719-ef4a-483d-b552-0d10fe05981b", + "name": "user_1958953_repos", + "request": { + "url": "/user/1958953/repos?per_page=30&page=6", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user_1958953_repos-bd9bd719-ef4a-483d-b552-0d10fe05981b.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:31 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4339", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"cb5a751aac948da2de969ba5f91759d9\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAD5:45A4:C1452F:DF1004:5DB3A13F", + "Link": "; rel=\"prev\", ; rel=\"first\"" + } + }, + "uuid": "bd9bd719-ef4a-483d-b552-0d10fe05981b", + "persistent": true, + "insertionIndex": 10 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testSubscribers/mappings/user_1958953_repos-6-36527c.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testSubscribers/mappings/user_1958953_repos-6-36527c.json new file mode 100644 index 0000000000..01e9f80481 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testSubscribers/mappings/user_1958953_repos-6-36527c.json @@ -0,0 +1,43 @@ +{ + "id": "36527ce6-bfd4-43ca-b165-d12ee231b603", + "name": "user_1958953_repos", + "request": { + "url": "/user/1958953/repos?per_page=30&page=2", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user_1958953_repos-36527ce6-bfd4-43ca-b165-d12ee231b603.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:30 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4343", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"20c491d7768ff07c9cddf1d79a530fd0\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAD5:45A4:C144B2:DF0F7C:5DB3A13D", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "36527ce6-bfd4-43ca-b165-d12ee231b603", + "persistent": true, + "insertionIndex": 6 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testSubscribers/mappings/user_1958953_repos-7-923eca.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testSubscribers/mappings/user_1958953_repos-7-923eca.json new file mode 100644 index 0000000000..c385694f6f --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testSubscribers/mappings/user_1958953_repos-7-923eca.json @@ -0,0 +1,43 @@ +{ + "id": "923eca2f-072a-4532-bbd2-7672e5a49011", + "name": "user_1958953_repos", + "request": { + "url": "/user/1958953/repos?per_page=30&page=3", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user_1958953_repos-923eca2f-072a-4532-bbd2-7672e5a49011.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:30 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4342", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"7b038bd8ad2e09c61f73f91659b4a36a\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAD5:45A4:C144DC:DF0FAD:5DB3A13E", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "923eca2f-072a-4532-bbd2-7672e5a49011", + "persistent": true, + "insertionIndex": 7 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testSubscribers/mappings/user_1958953_repos-8-6e87f8.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testSubscribers/mappings/user_1958953_repos-8-6e87f8.json new file mode 100644 index 0000000000..79aba9c464 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testSubscribers/mappings/user_1958953_repos-8-6e87f8.json @@ -0,0 +1,43 @@ +{ + "id": "6e87f8e2-f745-47ab-884a-4a092e61d385", + "name": "user_1958953_repos", + "request": { + "url": "/user/1958953/repos?per_page=30&page=4", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user_1958953_repos-6e87f8e2-f745-47ab-884a-4a092e61d385.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:30 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4341", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"ab9d0a4ea7813c01bd900275b21db790\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAD5:45A4:C144F5:DF0FC5:5DB3A13E", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "6e87f8e2-f745-47ab-884a-4a092e61d385", + "persistent": true, + "insertionIndex": 8 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testSubscribers/mappings/user_1958953_repos-9-9bdd2b.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testSubscribers/mappings/user_1958953_repos-9-9bdd2b.json new file mode 100644 index 0000000000..35b56e8250 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testSubscribers/mappings/user_1958953_repos-9-9bdd2b.json @@ -0,0 +1,43 @@ +{ + "id": "9bdd2b94-9737-4def-8b3a-33f8cbf79e20", + "name": "user_1958953_repos", + "request": { + "url": "/user/1958953/repos?per_page=30&page=5", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user_1958953_repos-9bdd2b94-9737-4def-8b3a-33f8cbf79e20.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:31 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4340", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"20709622757917bd2a23dc6c7871ef55\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAD5:45A4:C14513:DF0FE9:5DB3A13E", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "9bdd2b94-9737-4def-8b3a-33f8cbf79e20", + "persistent": true, + "insertionIndex": 9 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testSubscribers/mappings/users_bitwiseman-4-695b59.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testSubscribers/mappings/users_bitwiseman-4-695b59.json new file mode 100644 index 0000000000..4e87d8e4f8 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testSubscribers/mappings/users_bitwiseman-4-695b59.json @@ -0,0 +1,43 @@ +{ + "id": "695b59f0-b7e7-4239-9389-39e71b040233", + "name": "users_bitwiseman", + "request": { + "url": "/users/bitwiseman", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "users_bitwiseman-695b59f0-b7e7-4239-9389-39e71b040233.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:29 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4345", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"8c3d3dcf6fc5f9edaf26c902295396e5\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAD5:45A4:C14490:DF0F50:5DB3A13D" + } + }, + "uuid": "695b59f0-b7e7-4239-9389-39e71b040233", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testSubscribers/mappings/users_bitwiseman_repos-5-2be052.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testSubscribers/mappings/users_bitwiseman_repos-5-2be052.json new file mode 100644 index 0000000000..88899cb237 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testSubscribers/mappings/users_bitwiseman_repos-5-2be052.json @@ -0,0 +1,43 @@ +{ + "id": "2be0523d-30fd-42bc-94d1-95926ee70069", + "name": "users_bitwiseman_repos", + "request": { + "url": "/users/bitwiseman/repos?per_page=30", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "users_bitwiseman_repos-2be0523d-30fd-42bc-94d1-95926ee70069.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:29 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4344", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"ce2fe41fb7c2c62f68beb3d08dc52aa8\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAD5:45A4:C1449C:DF0F5A:5DB3A13D", + "Link": "; rel=\"next\", ; rel=\"last\"" + } + }, + "uuid": "2be0523d-30fd-42bc-94d1-95926ee70069", + "persistent": true, + "insertionIndex": 5 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testTreesRecursive/__files/repos_github-api_github-api-1c232f75-a19d-455f-b0c5-4278cc80a1e9.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testTreesRecursive/__files/repos_github-api_github-api-1c232f75-a19d-455f-b0c5-4278cc80a1e9.json new file mode 100644 index 0000000000..29eeabe7c9 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testTreesRecursive/__files/repos_github-api_github-api-1c232f75-a19d-455f-b0c5-4278cc80a1e9.json @@ -0,0 +1,130 @@ +{ + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-10-25T01:32:16Z", + "pushed_at": "2019-10-25T16:41:09Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 13494, + "stargazers_count": 565, + "watchers_count": 565, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 433, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 64, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 433, + "open_issues": 64, + "watchers": 565, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "network_count": 433, + "subscribers_count": 48 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testTreesRecursive/__files/repos_github-api_github-api_git_trees_master-ffd3e351-e215-4bef-9756-a608a46e6c42.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testTreesRecursive/__files/repos_github-api_github-api_git_trees_master-ffd3e351-e215-4bef-9756-a608a46e6c42.json new file mode 100644 index 0000000000..7fc984e971 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testTreesRecursive/__files/repos_github-api_github-api_git_trees_master-ffd3e351-e215-4bef-9756-a608a46e6c42.json @@ -0,0 +1,17000 @@ +{ + "sha": "1d004a35a03cee424736a2f549bc662d196a0217", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/1d004a35a03cee424736a2f549bc662d196a0217", + "tree": [ + { + "path": ".github", + "mode": "040000", + "type": "tree", + "sha": "f7e75fd6dcdaaf06e269cc19593025015a48d508", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/f7e75fd6dcdaaf06e269cc19593025015a48d508" + }, + { + "path": ".github/workflows", + "mode": "040000", + "type": "tree", + "sha": "df82b5ef5d9c0c213ee5466527d1ae215ad0ce94", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/df82b5ef5d9c0c213ee5466527d1ae215ad0ce94" + }, + { + "path": ".github/workflows/maven-build.yml", + "mode": "100644", + "type": "blob", + "sha": "8a086a74e7a612345871621953ebd0b7ebcea9f2", + "size": 520, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/8a086a74e7a612345871621953ebd0b7ebcea9f2" + }, + { + "path": ".gitignore", + "mode": "100644", + "type": "blob", + "sha": "3c2c3c642746fef895abfacfeaacc3362ce4d7a8", + "size": 73, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/3c2c3c642746fef895abfacfeaacc3362ce4d7a8" + }, + { + "path": "CONTRIBUTING.md", + "mode": "100644", + "type": "blob", + "sha": "0de9d96e70163756d6ae90595b03e393cfe12745", + "size": 2875, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/0de9d96e70163756d6ae90595b03e393cfe12745" + }, + { + "path": "LICENSE.txt", + "mode": "100644", + "type": "blob", + "sha": "a12243f2fc5b8c2ba47dd677d0b0c7583539584d", + "size": 1104, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a12243f2fc5b8c2ba47dd677d0b0c7583539584d" + }, + { + "path": "README.md", + "mode": "100644", + "type": "blob", + "sha": "e3f7a64105a477d765268c536b44e792bfc3cb36", + "size": 74, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/e3f7a64105a477d765268c536b44e792bfc3cb36" + }, + { + "path": "pom.xml", + "mode": "100644", + "type": "blob", + "sha": "b9e99b34f696e7bb4a212ffeb1f8061ac81de5bb", + "size": 9340, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/b9e99b34f696e7bb4a212ffeb1f8061ac81de5bb" + }, + { + "path": "src", + "mode": "040000", + "type": "tree", + "sha": "35f66ca7852d615810989bc164582641618db1bb", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/35f66ca7852d615810989bc164582641618db1bb" + }, + { + "path": "src/main", + "mode": "040000", + "type": "tree", + "sha": "02b9ebe40f36276035716ff2887dd97d073a5e99", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/02b9ebe40f36276035716ff2887dd97d073a5e99" + }, + { + "path": "src/main/java", + "mode": "040000", + "type": "tree", + "sha": "c7f780e08856638ce4c42bc28ffe5388e4db573c", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/c7f780e08856638ce4c42bc28ffe5388e4db573c" + }, + { + "path": "src/main/java/org", + "mode": "040000", + "type": "tree", + "sha": "1830ed86adfb10fc5030f53062d16b94808cba2c", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/1830ed86adfb10fc5030f53062d16b94808cba2c" + }, + { + "path": "src/main/java/org/kohsuke", + "mode": "040000", + "type": "tree", + "sha": "1bbdf5d23a647922d6dc548fbb1128a388ee1446", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/1bbdf5d23a647922d6dc548fbb1128a388ee1446" + }, + { + "path": "src/main/java/org/kohsuke/github", + "mode": "040000", + "type": "tree", + "sha": "375569fb93f882201266514c9958466620dbafb2", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/375569fb93f882201266514c9958466620dbafb2" + }, + { + "path": "src/main/java/org/kohsuke/github/AbuseLimitHandler.java", + "mode": "100644", + "type": "blob", + "sha": "7d4d0e4b6666f307ebf3ad80920f65eb4eabb7fc", + "size": 2478, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/7d4d0e4b6666f307ebf3ad80920f65eb4eabb7fc" + }, + { + "path": "src/main/java/org/kohsuke/github/DeleteToken.java", + "mode": "100644", + "type": "blob", + "sha": "d9d4724eb9e7abdc76d39dc843fa69970c1ff452", + "size": 1463, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d9d4724eb9e7abdc76d39dc843fa69970c1ff452" + }, + { + "path": "src/main/java/org/kohsuke/github/EnforcementLevel.java", + "mode": "100644", + "type": "blob", + "sha": "81c86428c4ee15bfc78a1c5e18b5d700be1fec7c", + "size": 335, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/81c86428c4ee15bfc78a1c5e18b5d700be1fec7c" + }, + { + "path": "src/main/java/org/kohsuke/github/GHApp.java", + "mode": "100644", + "type": "blob", + "sha": "43ad91c5e04750f673417d67f14a9a137d6282d4", + "size": 5011, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/43ad91c5e04750f673417d67f14a9a137d6282d4" + }, + { + "path": "src/main/java/org/kohsuke/github/GHAppCreateTokenBuilder.java", + "mode": "100644", + "type": "blob", + "sha": "cf19dd99af6ff9a8d4658c1329182e2d524aa159", + "size": 1749, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/cf19dd99af6ff9a8d4658c1329182e2d524aa159" + }, + { + "path": "src/main/java/org/kohsuke/github/GHAppInstallation.java", + "mode": "100644", + "type": "blob", + "sha": "3925742162b7c27b6ff0bdd2faa9f7d640326f14", + "size": 4312, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/3925742162b7c27b6ff0bdd2faa9f7d640326f14" + }, + { + "path": "src/main/java/org/kohsuke/github/GHAppInstallationToken.java", + "mode": "100644", + "type": "blob", + "sha": "2b6e78fdee695dd2430ffc8a5286ca4913c28786", + "size": 2207, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/2b6e78fdee695dd2430ffc8a5286ca4913c28786" + }, + { + "path": "src/main/java/org/kohsuke/github/GHAsset.java", + "mode": "100644", + "type": "blob", + "sha": "9f0be158637132691c95d01ba33c81dffe405baa", + "size": 2187, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/9f0be158637132691c95d01ba33c81dffe405baa" + }, + { + "path": "src/main/java/org/kohsuke/github/GHAuthorization.java", + "mode": "100644", + "type": "blob", + "sha": "bf7e24c7f2f7404e10b67b9f4b6d65b48c05a338", + "size": 3287, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/bf7e24c7f2f7404e10b67b9f4b6d65b48c05a338" + }, + { + "path": "src/main/java/org/kohsuke/github/GHBlob.java", + "mode": "100644", + "type": "blob", + "sha": "a38a18219c03c017a521ea3d9806082ab93c3116", + "size": 1529, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a38a18219c03c017a521ea3d9806082ab93c3116" + }, + { + "path": "src/main/java/org/kohsuke/github/GHBlobBuilder.java", + "mode": "100644", + "type": "blob", + "sha": "a6259e5b6d6d5fd4158aeb1fc2cbc6140f4a9044", + "size": 1339, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a6259e5b6d6d5fd4158aeb1fc2cbc6140f4a9044" + }, + { + "path": "src/main/java/org/kohsuke/github/GHBranch.java", + "mode": "100644", + "type": "blob", + "sha": "e457fc243d9ebd1011696d0f4e3524036498b3f5", + "size": 3314, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/e457fc243d9ebd1011696d0f4e3524036498b3f5" + }, + { + "path": "src/main/java/org/kohsuke/github/GHBranchProtection.java", + "mode": "100644", + "type": "blob", + "sha": "8420a531ad1338ece81b6fbff077fa1704adc402", + "size": 4973, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/8420a531ad1338ece81b6fbff077fa1704adc402" + }, + { + "path": "src/main/java/org/kohsuke/github/GHBranchProtectionBuilder.java", + "mode": "100644", + "type": "blob", + "sha": "822541a14de76c6dc158f86b865b955624398b38", + "size": 6346, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/822541a14de76c6dc158f86b865b955624398b38" + }, + { + "path": "src/main/java/org/kohsuke/github/GHCommentAuthorAssociation.java", + "mode": "100644", + "type": "blob", + "sha": "d66b8d8550b6f151b4d8ffb09e86bafad2cadc66", + "size": 795, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d66b8d8550b6f151b4d8ffb09e86bafad2cadc66" + }, + { + "path": "src/main/java/org/kohsuke/github/GHCommit.java", + "mode": "100644", + "type": "blob", + "sha": "4891065ad5175414bb43009dfc91a996afa49e4e", + "size": 10534, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/4891065ad5175414bb43009dfc91a996afa49e4e" + }, + { + "path": "src/main/java/org/kohsuke/github/GHCommitBuilder.java", + "mode": "100644", + "type": "blob", + "sha": "76e846a7d7e8472ec32d3df1666021d41b2dba93", + "size": 2557, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/76e846a7d7e8472ec32d3df1666021d41b2dba93" + }, + { + "path": "src/main/java/org/kohsuke/github/GHCommitComment.java", + "mode": "100644", + "type": "blob", + "sha": "a0047c3d1569cb097581345a4607c5c34aab5025", + "size": 3644, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a0047c3d1569cb097581345a4607c5c34aab5025" + }, + { + "path": "src/main/java/org/kohsuke/github/GHCommitPointer.java", + "mode": "100644", + "type": "blob", + "sha": "b6c347864e4145d45c481f60385c3b530886c597", + "size": 2490, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/b6c347864e4145d45c481f60385c3b530886c597" + }, + { + "path": "src/main/java/org/kohsuke/github/GHCommitQueryBuilder.java", + "mode": "100644", + "type": "blob", + "sha": "64b3a0e9351adaff34a04ad841ec66723c6ce10f", + "size": 2482, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/64b3a0e9351adaff34a04ad841ec66723c6ce10f" + }, + { + "path": "src/main/java/org/kohsuke/github/GHCommitSearchBuilder.java", + "mode": "100644", + "type": "blob", + "sha": "3d29aa80fd4289f1759862998646247708abfa48", + "size": 3451, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/3d29aa80fd4289f1759862998646247708abfa48" + }, + { + "path": "src/main/java/org/kohsuke/github/GHCommitState.java", + "mode": "100644", + "type": "blob", + "sha": "e716ea02e187eb5b73cc055bf5a3d07fbf24b372", + "size": 193, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/e716ea02e187eb5b73cc055bf5a3d07fbf24b372" + }, + { + "path": "src/main/java/org/kohsuke/github/GHCommitStatus.java", + "mode": "100644", + "type": "blob", + "sha": "63a62ae8d05aed57d864bc100e7bdd9dffad2efc", + "size": 1468, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/63a62ae8d05aed57d864bc100e7bdd9dffad2efc" + }, + { + "path": "src/main/java/org/kohsuke/github/GHCompare.java", + "mode": "100644", + "type": "blob", + "sha": "100753db01b927c448af243528b76d140b4b6b56", + "size": 3893, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/100753db01b927c448af243528b76d140b4b6b56" + }, + { + "path": "src/main/java/org/kohsuke/github/GHContent.java", + "mode": "100644", + "type": "blob", + "sha": "9b9f787a67c83fda823a970d23b2fba6a3022aac", + "size": 7555, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/9b9f787a67c83fda823a970d23b2fba6a3022aac" + }, + { + "path": "src/main/java/org/kohsuke/github/GHContentBuilder.java", + "mode": "100644", + "type": "blob", + "sha": "cdc019f6d1f5a3bfc570ac380091d7658ce64247", + "size": 1996, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/cdc019f6d1f5a3bfc570ac380091d7658ce64247" + }, + { + "path": "src/main/java/org/kohsuke/github/GHContentSearchBuilder.java", + "mode": "100644", + "type": "blob", + "sha": "47e5a46f520ade55072cab1948247ef8c0d1b00f", + "size": 1658, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/47e5a46f520ade55072cab1948247ef8c0d1b00f" + }, + { + "path": "src/main/java/org/kohsuke/github/GHContentUpdateResponse.java", + "mode": "100644", + "type": "blob", + "sha": "07f10d710c59324ec20721875a17404f0538cca9", + "size": 339, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/07f10d710c59324ec20721875a17404f0538cca9" + }, + { + "path": "src/main/java/org/kohsuke/github/GHContentWithLicense.java", + "mode": "100644", + "type": "blob", + "sha": "c067d5a037bb51d58b7040c958723329b4066738", + "size": 512, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/c067d5a037bb51d58b7040c958723329b4066738" + }, + { + "path": "src/main/java/org/kohsuke/github/GHCreateRepositoryBuilder.java", + "mode": "100644", + "type": "blob", + "sha": "a11fc4493f1b78517569c0d24c6aa99ceefa3d31", + "size": 3580, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a11fc4493f1b78517569c0d24c6aa99ceefa3d31" + }, + { + "path": "src/main/java/org/kohsuke/github/GHDeployKey.java", + "mode": "100644", + "type": "blob", + "sha": "f5d0f9de6d315fa6317bdb700cd002a8da80b643", + "size": 1006, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/f5d0f9de6d315fa6317bdb700cd002a8da80b643" + }, + { + "path": "src/main/java/org/kohsuke/github/GHDeployment.java", + "mode": "100644", + "type": "blob", + "sha": "7a7febf6ceb2f64d1e84f3de1183b437ce4042c7", + "size": 1994, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/7a7febf6ceb2f64d1e84f3de1183b437ce4042c7" + }, + { + "path": "src/main/java/org/kohsuke/github/GHDeploymentBuilder.java", + "mode": "100644", + "type": "blob", + "sha": "00d10fad1bc5608dc288e6c6389327183f85bc8f", + "size": 1611, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/00d10fad1bc5608dc288e6c6389327183f85bc8f" + }, + { + "path": "src/main/java/org/kohsuke/github/GHDeploymentState.java", + "mode": "100644", + "type": "blob", + "sha": "ff53a6d490d9a43d4b956f39d736f01a46aeea71", + "size": 146, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/ff53a6d490d9a43d4b956f39d736f01a46aeea71" + }, + { + "path": "src/main/java/org/kohsuke/github/GHDeploymentStatus.java", + "mode": "100644", + "type": "blob", + "sha": "a058b8a4475fb1c7242f3e5375ff7bc80069595a", + "size": 1109, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a058b8a4475fb1c7242f3e5375ff7bc80069595a" + }, + { + "path": "src/main/java/org/kohsuke/github/GHDeploymentStatusBuilder.java", + "mode": "100644", + "type": "blob", + "sha": "821a3e744e7e6b591cc00a8c06ac58cc0f562956", + "size": 1324, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/821a3e744e7e6b591cc00a8c06ac58cc0f562956" + }, + { + "path": "src/main/java/org/kohsuke/github/GHDirection.java", + "mode": "100644", + "type": "blob", + "sha": "0db172dccff71250624878974a72023e6c9f83ac", + "size": 129, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/0db172dccff71250624878974a72023e6c9f83ac" + }, + { + "path": "src/main/java/org/kohsuke/github/GHEmail.java", + "mode": "100644", + "type": "blob", + "sha": "9eeac043367a446a25b809a2e3de501c29b3f55d", + "size": 2195, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/9eeac043367a446a25b809a2e3de501c29b3f55d" + }, + { + "path": "src/main/java/org/kohsuke/github/GHEvent.java", + "mode": "100644", + "type": "blob", + "sha": "8ad6368fe5985b184fa434c35db381d570c365ff", + "size": 1227, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/8ad6368fe5985b184fa434c35db381d570c365ff" + }, + { + "path": "src/main/java/org/kohsuke/github/GHEventInfo.java", + "mode": "100644", + "type": "blob", + "sha": "ca7e3d4f04d97d3cdb55fb1119660f8b6973b0f9", + "size": 3492, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/ca7e3d4f04d97d3cdb55fb1119660f8b6973b0f9" + }, + { + "path": "src/main/java/org/kohsuke/github/GHEventPayload.java", + "mode": "100644", + "type": "blob", + "sha": "acdf5c74e906bad3049470e9ed056c9c053d919f", + "size": 24634, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/acdf5c74e906bad3049470e9ed056c9c053d919f" + }, + { + "path": "src/main/java/org/kohsuke/github/GHException.java", + "mode": "100644", + "type": "blob", + "sha": "c238e53c9ec68a974261758542dc600a054079f1", + "size": 287, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/c238e53c9ec68a974261758542dc600a054079f1" + }, + { + "path": "src/main/java/org/kohsuke/github/GHFileNotFoundException.java", + "mode": "100644", + "type": "blob", + "sha": "9f4b37c560e862108c4bc181370cfcf5ca0f5663", + "size": 898, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/9f4b37c560e862108c4bc181370cfcf5ca0f5663" + }, + { + "path": "src/main/java/org/kohsuke/github/GHGist.java", + "mode": "100644", + "type": "blob", + "sha": "19a2b626f2497431b9888a5e057f9da31fabe2c2", + "size": 4430, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/19a2b626f2497431b9888a5e057f9da31fabe2c2" + }, + { + "path": "src/main/java/org/kohsuke/github/GHGistBuilder.java", + "mode": "100644", + "type": "blob", + "sha": "57fd255031a6da7a8b9c395c145d192d2da3e904", + "size": 1187, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/57fd255031a6da7a8b9c395c145d192d2da3e904" + }, + { + "path": "src/main/java/org/kohsuke/github/GHGistFile.java", + "mode": "100644", + "type": "blob", + "sha": "605afc993ae74272fbaa095667c3e812350aa3cb", + "size": 1087, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/605afc993ae74272fbaa095667c3e812350aa3cb" + }, + { + "path": "src/main/java/org/kohsuke/github/GHGistUpdater.java", + "mode": "100644", + "type": "blob", + "sha": "71bff34e22e1a5a36b8a5974c289966254376967", + "size": 1696, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/71bff34e22e1a5a36b8a5974c289966254376967" + }, + { + "path": "src/main/java/org/kohsuke/github/GHHook.java", + "mode": "100644", + "type": "blob", + "sha": "b7f450307a5916cecc2bda4894d6a1c5348d3679", + "size": 1748, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/b7f450307a5916cecc2bda4894d6a1c5348d3679" + }, + { + "path": "src/main/java/org/kohsuke/github/GHHooks.java", + "mode": "100644", + "type": "blob", + "sha": "6ecbb04b6ee4cdaf4c2851da10025c2298939f78", + "size": 3736, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/6ecbb04b6ee4cdaf4c2851da10025c2298939f78" + }, + { + "path": "src/main/java/org/kohsuke/github/GHIOException.java", + "mode": "100644", + "type": "blob", + "sha": "b07144bcb738030601fb2766ec423ecddddb14a3", + "size": 850, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/b07144bcb738030601fb2766ec423ecddddb14a3" + }, + { + "path": "src/main/java/org/kohsuke/github/GHInvitation.java", + "mode": "100644", + "type": "blob", + "sha": "74619ad6e03a384cdda3260a3c7246dfc4e5bed8", + "size": 1216, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/74619ad6e03a384cdda3260a3c7246dfc4e5bed8" + }, + { + "path": "src/main/java/org/kohsuke/github/GHIssue.java", + "mode": "100644", + "type": "blob", + "sha": "20343266b767e543e3de3e0b02d7365bbbb75bd9", + "size": 12702, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/20343266b767e543e3de3e0b02d7365bbbb75bd9" + }, + { + "path": "src/main/java/org/kohsuke/github/GHIssueBuilder.java", + "mode": "100644", + "type": "blob", + "sha": "3a5a5323080169e8b2f78b6945aaf80159ef4973", + "size": 1568, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/3a5a5323080169e8b2f78b6945aaf80159ef4973" + }, + { + "path": "src/main/java/org/kohsuke/github/GHIssueComment.java", + "mode": "100644", + "type": "blob", + "sha": "258718312c5eb3f0ea0ba12a2477e198fe917d15", + "size": 3847, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/258718312c5eb3f0ea0ba12a2477e198fe917d15" + }, + { + "path": "src/main/java/org/kohsuke/github/GHIssueEvent.java", + "mode": "100644", + "type": "blob", + "sha": "089e87a831e124cae96a03f3317f40fdb7a8d186", + "size": 1508, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/089e87a831e124cae96a03f3317f40fdb7a8d186" + }, + { + "path": "src/main/java/org/kohsuke/github/GHIssueSearchBuilder.java", + "mode": "100644", + "type": "blob", + "sha": "6cefc0167852d741c53fd28bf42577b0db9390d3", + "size": 1526, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/6cefc0167852d741c53fd28bf42577b0db9390d3" + }, + { + "path": "src/main/java/org/kohsuke/github/GHIssueState.java", + "mode": "100644", + "type": "blob", + "sha": "ec3cf10d24526b10d7d3be5691f584cf64d2b442", + "size": 1289, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/ec3cf10d24526b10d7d3be5691f584cf64d2b442" + }, + { + "path": "src/main/java/org/kohsuke/github/GHKey.java", + "mode": "100644", + "type": "blob", + "sha": "d4c8197dbf17d08bbe5d834e55bb3866cb562466", + "size": 1135, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d4c8197dbf17d08bbe5d834e55bb3866cb562466" + }, + { + "path": "src/main/java/org/kohsuke/github/GHLabel.java", + "mode": "100644", + "type": "blob", + "sha": "29ab8914731de7efe7139bd60f9874b54a20cfde", + "size": 2597, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/29ab8914731de7efe7139bd60f9874b54a20cfde" + }, + { + "path": "src/main/java/org/kohsuke/github/GHLicense.java", + "mode": "100644", + "type": "blob", + "sha": "b18e7e93389e9cb76650864a99e3666434655241", + "size": 4828, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/b18e7e93389e9cb76650864a99e3666434655241" + }, + { + "path": "src/main/java/org/kohsuke/github/GHMembership.java", + "mode": "100644", + "type": "blob", + "sha": "2847e1891cd5a6f1c3e51ff8c87a95f201bb1b05", + "size": 1922, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/2847e1891cd5a6f1c3e51ff8c87a95f201bb1b05" + }, + { + "path": "src/main/java/org/kohsuke/github/GHMilestone.java", + "mode": "100644", + "type": "blob", + "sha": "50ad549e82d6bb33172c529c607cc9885cd2dcd4", + "size": 2183, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/50ad549e82d6bb33172c529c607cc9885cd2dcd4" + }, + { + "path": "src/main/java/org/kohsuke/github/GHMilestoneState.java", + "mode": "100644", + "type": "blob", + "sha": "92194546cb011911f0299b3c4d271af20995a0fe", + "size": 122, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/92194546cb011911f0299b3c4d271af20995a0fe" + }, + { + "path": "src/main/java/org/kohsuke/github/GHMyself.java", + "mode": "100644", + "type": "blob", + "sha": "e059f58226dca5bbb4b02f48dc7af6a06b11c5fe", + "size": 7192, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/e059f58226dca5bbb4b02f48dc7af6a06b11c5fe" + }, + { + "path": "src/main/java/org/kohsuke/github/GHNotificationStream.java", + "mode": "100644", + "type": "blob", + "sha": "b8f8d7c2968b13d83fbaec01b6a179827a1ce8fc", + "size": 6905, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/b8f8d7c2968b13d83fbaec01b6a179827a1ce8fc" + }, + { + "path": "src/main/java/org/kohsuke/github/GHObject.java", + "mode": "100644", + "type": "blob", + "sha": "2bad0891bc9e633868955253d1fcacfef76fd8f1", + "size": 4690, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/2bad0891bc9e633868955253d1fcacfef76fd8f1" + }, + { + "path": "src/main/java/org/kohsuke/github/GHOrgHook.java", + "mode": "100644", + "type": "blob", + "sha": "58404019bfa28659815852fa904ef629007fc5c7", + "size": 553, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/58404019bfa28659815852fa904ef629007fc5c7" + }, + { + "path": "src/main/java/org/kohsuke/github/GHOrganization.java", + "mode": "100644", + "type": "blob", + "sha": "ead656242ddfd1ff0c5e926ad1c61e69e227c756", + "size": 11847, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/ead656242ddfd1ff0c5e926ad1c61e69e227c756" + }, + { + "path": "src/main/java/org/kohsuke/github/GHPermission.java", + "mode": "100644", + "type": "blob", + "sha": "51a808dfc03439beb545faaad6f13095fe5217d9", + "size": 1930, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/51a808dfc03439beb545faaad6f13095fe5217d9" + }, + { + "path": "src/main/java/org/kohsuke/github/GHPermissionType.java", + "mode": "100644", + "type": "blob", + "sha": "d3e2bd090916af7bfb96e36818e162e7a79d5bbd", + "size": 140, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d3e2bd090916af7bfb96e36818e162e7a79d5bbd" + }, + { + "path": "src/main/java/org/kohsuke/github/GHPerson.java", + "mode": "100644", + "type": "blob", + "sha": "137dd5b368af72aec20ad6b30e0387348e14ba06", + "size": 7362, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/137dd5b368af72aec20ad6b30e0387348e14ba06" + }, + { + "path": "src/main/java/org/kohsuke/github/GHPersonSet.java", + "mode": "100644", + "type": "blob", + "sha": "eb35b1bf7acd59873bfcaed992bb510c1fee9e40", + "size": 928, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/eb35b1bf7acd59873bfcaed992bb510c1fee9e40" + }, + { + "path": "src/main/java/org/kohsuke/github/GHProject.java", + "mode": "100644", + "type": "blob", + "sha": "6645a05a3eda630b301b3dc025b583c1e9095bf4", + "size": 5520, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/6645a05a3eda630b301b3dc025b583c1e9095bf4" + }, + { + "path": "src/main/java/org/kohsuke/github/GHProjectCard.java", + "mode": "100644", + "type": "blob", + "sha": "d6fb97cd8731570487910f55e4bbee52195573d4", + "size": 2727, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d6fb97cd8731570487910f55e4bbee52195573d4" + }, + { + "path": "src/main/java/org/kohsuke/github/GHProjectColumn.java", + "mode": "100644", + "type": "blob", + "sha": "3b853962ffaab84d9eca52e21b79a668950c49c0", + "size": 2429, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/3b853962ffaab84d9eca52e21b79a668950c49c0" + }, + { + "path": "src/main/java/org/kohsuke/github/GHPullRequest.java", + "mode": "100644", + "type": "blob", + "sha": "b4c3ee1645abb1ffe0e3a4091dffcedd33eb7b85", + "size": 13247, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/b4c3ee1645abb1ffe0e3a4091dffcedd33eb7b85" + }, + { + "path": "src/main/java/org/kohsuke/github/GHPullRequestCommitDetail.java", + "mode": "100644", + "type": "blob", + "sha": "e6c558b9e1c93f8a42ff7311e1782bb1bf629c11", + "size": 3970, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/e6c558b9e1c93f8a42ff7311e1782bb1bf629c11" + }, + { + "path": "src/main/java/org/kohsuke/github/GHPullRequestFileDetail.java", + "mode": "100644", + "type": "blob", + "sha": "35bb86c444eca3da7830e6d9bfadf858e505c5a2", + "size": 2344, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/35bb86c444eca3da7830e6d9bfadf858e505c5a2" + }, + { + "path": "src/main/java/org/kohsuke/github/GHPullRequestQueryBuilder.java", + "mode": "100644", + "type": "blob", + "sha": "50b5cbb3ae788d83eb2c9814692f358b5bd9f37a", + "size": 1517, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/50b5cbb3ae788d83eb2c9814692f358b5bd9f37a" + }, + { + "path": "src/main/java/org/kohsuke/github/GHPullRequestReview.java", + "mode": "100644", + "type": "blob", + "sha": "b61a65ca05a4b64ea203531cbe11d90539d99e1a", + "size": 4618, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/b61a65ca05a4b64ea203531cbe11d90539d99e1a" + }, + { + "path": "src/main/java/org/kohsuke/github/GHPullRequestReviewBuilder.java", + "mode": "100644", + "type": "blob", + "sha": "318daf721fdb050702200a4d56b441b5bcbfa35d", + "size": 3350, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/318daf721fdb050702200a4d56b441b5bcbfa35d" + }, + { + "path": "src/main/java/org/kohsuke/github/GHPullRequestReviewComment.java", + "mode": "100644", + "type": "blob", + "sha": "8848c28282a2f64b5e37b735ddf13061ee45360e", + "size": 4758, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/8848c28282a2f64b5e37b735ddf13061ee45360e" + }, + { + "path": "src/main/java/org/kohsuke/github/GHPullRequestReviewEvent.java", + "mode": "100644", + "type": "blob", + "sha": "e6537e0f09c54dc8fce090e1230a1104fbff3e6d", + "size": 1983, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/e6537e0f09c54dc8fce090e1230a1104fbff3e6d" + }, + { + "path": "src/main/java/org/kohsuke/github/GHPullRequestReviewState.java", + "mode": "100644", + "type": "blob", + "sha": "a64a105994de6c78eac383214f8200b75cb50d6b", + "size": 1188, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a64a105994de6c78eac383214f8200b75cb50d6b" + }, + { + "path": "src/main/java/org/kohsuke/github/GHQueryBuilder.java", + "mode": "100644", + "type": "blob", + "sha": "bb85fbbe95dd24859102e5eb896991f01ec74f6a", + "size": 511, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/bb85fbbe95dd24859102e5eb896991f01ec74f6a" + }, + { + "path": "src/main/java/org/kohsuke/github/GHRateLimit.java", + "mode": "100644", + "type": "blob", + "sha": "9500b0a7367186909bd93dd6854415f99799954e", + "size": 986, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/9500b0a7367186909bd93dd6854415f99799954e" + }, + { + "path": "src/main/java/org/kohsuke/github/GHReaction.java", + "mode": "100644", + "type": "blob", + "sha": "6a00eb305c8aee9844e85e0d7f3a78ac4e507cec", + "size": 1083, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/6a00eb305c8aee9844e85e0d7f3a78ac4e507cec" + }, + { + "path": "src/main/java/org/kohsuke/github/GHRef.java", + "mode": "100644", + "type": "blob", + "sha": "c8462d3fe6407300169b85174a269cd82a65d689", + "size": 2631, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/c8462d3fe6407300169b85174a269cd82a65d689" + }, + { + "path": "src/main/java/org/kohsuke/github/GHRelease.java", + "mode": "100644", + "type": "blob", + "sha": "0df6b415b0c9d91988033a7e69b0ce8f2d6ec499", + "size": 4356, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/0df6b415b0c9d91988033a7e69b0ce8f2d6ec499" + }, + { + "path": "src/main/java/org/kohsuke/github/GHReleaseBuilder.java", + "mode": "100644", + "type": "blob", + "sha": "e427bdf8a59c9b789ce66705c6efd4428034d3e3", + "size": 2104, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/e427bdf8a59c9b789ce66705c6efd4428034d3e3" + }, + { + "path": "src/main/java/org/kohsuke/github/GHReleaseUpdater.java", + "mode": "100644", + "type": "blob", + "sha": "a34a5b0bc2b3c04799e8100b65f1a2b92ab8069f", + "size": 2200, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a34a5b0bc2b3c04799e8100b65f1a2b92ab8069f" + }, + { + "path": "src/main/java/org/kohsuke/github/GHRepoHook.java", + "mode": "100644", + "type": "blob", + "sha": "948438eb964598aed492c2f24bd6af52e6fd9a76", + "size": 523, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/948438eb964598aed492c2f24bd6af52e6fd9a76" + }, + { + "path": "src/main/java/org/kohsuke/github/GHRepository.java", + "mode": "100644", + "type": "blob", + "sha": "91c5c206d4bebffa90d28918c96c4a53756578ee", + "size": 61683, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/91c5c206d4bebffa90d28918c96c4a53756578ee" + }, + { + "path": "src/main/java/org/kohsuke/github/GHRepositoryCloneTraffic.java", + "mode": "100644", + "type": "blob", + "sha": "c75198e4a85856e027afa5f86b621476969b93eb", + "size": 866, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/c75198e4a85856e027afa5f86b621476969b93eb" + }, + { + "path": "src/main/java/org/kohsuke/github/GHRepositorySearchBuilder.java", + "mode": "100644", + "type": "blob", + "sha": "0ecd77e6003c277d62545b09127bd5f2207215ed", + "size": 2080, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/0ecd77e6003c277d62545b09127bd5f2207215ed" + }, + { + "path": "src/main/java/org/kohsuke/github/GHRepositorySelection.java", + "mode": "100644", + "type": "blob", + "sha": "afba38aaa2a50c779ab929d7134d699b7a0dbae1", + "size": 389, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/afba38aaa2a50c779ab929d7134d699b7a0dbae1" + }, + { + "path": "src/main/java/org/kohsuke/github/GHRepositoryStatistics.java", + "mode": "100644", + "type": "blob", + "sha": "3d8187da20e9838c07dc569936b08099876ec068", + "size": 13810, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/3d8187da20e9838c07dc569936b08099876ec068" + }, + { + "path": "src/main/java/org/kohsuke/github/GHRepositoryTraffic.java", + "mode": "100644", + "type": "blob", + "sha": "42d07e848d2c2ed768ab55a2423a67356d77ae9f", + "size": 1199, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/42d07e848d2c2ed768ab55a2423a67356d77ae9f" + }, + { + "path": "src/main/java/org/kohsuke/github/GHRepositoryViewTraffic.java", + "mode": "100644", + "type": "blob", + "sha": "f2f1e5b44065d2ccc7ff3f8c410c5824ae8bbf51", + "size": 846, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/f2f1e5b44065d2ccc7ff3f8c410c5824ae8bbf51" + }, + { + "path": "src/main/java/org/kohsuke/github/GHSearchBuilder.java", + "mode": "100644", + "type": "blob", + "sha": "44521687f4de13b629cbbc3927b91951afc6ed2d", + "size": 1407, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/44521687f4de13b629cbbc3927b91951afc6ed2d" + }, + { + "path": "src/main/java/org/kohsuke/github/GHStargazer.java", + "mode": "100644", + "type": "blob", + "sha": "2384d0193960107bb9d1062932b16fd38840e1bd", + "size": 1206, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/2384d0193960107bb9d1062932b16fd38840e1bd" + }, + { + "path": "src/main/java/org/kohsuke/github/GHSubscription.java", + "mode": "100644", + "type": "blob", + "sha": "40939fa42b527ca8c4c5002bea7f0d4ed6fd6b23", + "size": 1337, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/40939fa42b527ca8c4c5002bea7f0d4ed6fd6b23" + }, + { + "path": "src/main/java/org/kohsuke/github/GHTag.java", + "mode": "100644", + "type": "blob", + "sha": "802f51f8f39f29cf9e7ab22959c0ab4e6a84566e", + "size": 905, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/802f51f8f39f29cf9e7ab22959c0ab4e6a84566e" + }, + { + "path": "src/main/java/org/kohsuke/github/GHTagObject.java", + "mode": "100644", + "type": "blob", + "sha": "0e3acdeaa72b0074e11ec3e951b684363a44bd7e", + "size": 1232, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/0e3acdeaa72b0074e11ec3e951b684363a44bd7e" + }, + { + "path": "src/main/java/org/kohsuke/github/GHTargetType.java", + "mode": "100644", + "type": "blob", + "sha": "42a23d8726a13b680384f94fc95608c00dc4a3a1", + "size": 446, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/42a23d8726a13b680384f94fc95608c00dc4a3a1" + }, + { + "path": "src/main/java/org/kohsuke/github/GHTeam.java", + "mode": "100644", + "type": "blob", + "sha": "00f43e194b895a4715e2c68b32b3f914f36e994c", + "size": 5262, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/00f43e194b895a4715e2c68b32b3f914f36e994c" + }, + { + "path": "src/main/java/org/kohsuke/github/GHThread.java", + "mode": "100644", + "type": "blob", + "sha": "faf4c87b7bb70f8f0e5304e5b8dbef61c64d496c", + "size": 4140, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/faf4c87b7bb70f8f0e5304e5b8dbef61c64d496c" + }, + { + "path": "src/main/java/org/kohsuke/github/GHTree.java", + "mode": "100644", + "type": "blob", + "sha": "d52e02a793c268ed8feb50b06831922825d654ed", + "size": 1836, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d52e02a793c268ed8feb50b06831922825d654ed" + }, + { + "path": "src/main/java/org/kohsuke/github/GHTreeBuilder.java", + "mode": "100644", + "type": "blob", + "sha": "122c5775b527ccf0ed7a719a60df13816d5e323a", + "size": 2855, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/122c5775b527ccf0ed7a719a60df13816d5e323a" + }, + { + "path": "src/main/java/org/kohsuke/github/GHTreeEntry.java", + "mode": "100644", + "type": "blob", + "sha": "ba6d45e15e9c549a9879d9691d30bbe0d68a3c87", + "size": 2253, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/ba6d45e15e9c549a9879d9691d30bbe0d68a3c87" + }, + { + "path": "src/main/java/org/kohsuke/github/GHUser.java", + "mode": "100644", + "type": "blob", + "sha": "d794a8c74fb380bdd656ec7ed663ee4d669f2570", + "size": 6333, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d794a8c74fb380bdd656ec7ed663ee4d669f2570" + }, + { + "path": "src/main/java/org/kohsuke/github/GHUserSearchBuilder.java", + "mode": "100644", + "type": "blob", + "sha": "3edcd1506548b55180dd8a60b5d7a3efd97a0dee", + "size": 1642, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/3edcd1506548b55180dd8a60b5d7a3efd97a0dee" + }, + { + "path": "src/main/java/org/kohsuke/github/GHVerifiedKey.java", + "mode": "100644", + "type": "blob", + "sha": "d81597d748818fdf81846413dd53c4b7ee703196", + "size": 228, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d81597d748818fdf81846413dd53c4b7ee703196" + }, + { + "path": "src/main/java/org/kohsuke/github/GitHub.java", + "mode": "100644", + "type": "blob", + "sha": "9fbcac916eb07f94204b36f8a98f14ef9775bf39", + "size": 36504, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/9fbcac916eb07f94204b36f8a98f14ef9775bf39" + }, + { + "path": "src/main/java/org/kohsuke/github/GitHubBuilder.java", + "mode": "100644", + "type": "blob", + "sha": "e299e7340dbb40c38e19d4611c6349573825f3a4", + "size": 8440, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/e299e7340dbb40c38e19d4611c6349573825f3a4" + }, + { + "path": "src/main/java/org/kohsuke/github/GitUser.java", + "mode": "100644", + "type": "blob", + "sha": "9cd50bb22a20812a8974b3831ad08f171518f4db", + "size": 1140, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/9cd50bb22a20812a8974b3831ad08f171518f4db" + }, + { + "path": "src/main/java/org/kohsuke/github/HttpConnector.java", + "mode": "100644", + "type": "blob", + "sha": "2d87c148c98ebc1a0ba81de1f96a5025686fc9cb", + "size": 1099, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/2d87c148c98ebc1a0ba81de1f96a5025686fc9cb" + }, + { + "path": "src/main/java/org/kohsuke/github/HttpException.java", + "mode": "100644", + "type": "blob", + "sha": "79def83c2aa26ba9694706b9876bc699f9308cf2", + "size": 4705, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/79def83c2aa26ba9694706b9876bc699f9308cf2" + }, + { + "path": "src/main/java/org/kohsuke/github/JsonRateLimit.java", + "mode": "100644", + "type": "blob", + "sha": "6276ae9b8785bec64eff7a6ffdb1c544045edc91", + "size": 112, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/6276ae9b8785bec64eff7a6ffdb1c544045edc91" + }, + { + "path": "src/main/java/org/kohsuke/github/MarkdownMode.java", + "mode": "100644", + "type": "blob", + "sha": "1d63760555d529cc192e0a2e0bb31a8f0215454d", + "size": 762, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/1d63760555d529cc192e0a2e0bb31a8f0215454d" + }, + { + "path": "src/main/java/org/kohsuke/github/PagedIterable.java", + "mode": "100644", + "type": "blob", + "sha": "1c6eccea36e917b8843dcdd6f466568d5230b8b7", + "size": 1355, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/1c6eccea36e917b8843dcdd6f466568d5230b8b7" + }, + { + "path": "src/main/java/org/kohsuke/github/PagedIterator.java", + "mode": "100644", + "type": "blob", + "sha": "aaa8182076c41e6f22791017ad85a01ff2726c2d", + "size": 1708, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/aaa8182076c41e6f22791017ad85a01ff2726c2d" + }, + { + "path": "src/main/java/org/kohsuke/github/PagedSearchIterable.java", + "mode": "100644", + "type": "blob", + "sha": "f23bd6b58c8b546dfbc54b8c1e269b9fa422bb1b", + "size": 1882, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/f23bd6b58c8b546dfbc54b8c1e269b9fa422bb1b" + }, + { + "path": "src/main/java/org/kohsuke/github/Preview.java", + "mode": "100644", + "type": "blob", + "sha": "2eeed60456788d9fb6df343f259cc5f28327254d", + "size": 535, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/2eeed60456788d9fb6df343f259cc5f28327254d" + }, + { + "path": "src/main/java/org/kohsuke/github/Previews.java", + "mode": "100644", + "type": "blob", + "sha": "59bb56f358e14037d64a18e879aa0b88c2173983", + "size": 2465, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/59bb56f358e14037d64a18e879aa0b88c2173983" + }, + { + "path": "src/main/java/org/kohsuke/github/RateLimitHandler.java", + "mode": "100644", + "type": "blob", + "sha": "e5351da541f42d598b602080404cb61b7a50e85c", + "size": 2439, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/e5351da541f42d598b602080404cb61b7a50e85c" + }, + { + "path": "src/main/java/org/kohsuke/github/Reactable.java", + "mode": "100644", + "type": "blob", + "sha": "d8821362cf7cbe1ddae7d7b6a13596b0bd47dbab", + "size": 523, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d8821362cf7cbe1ddae7d7b6a13596b0bd47dbab" + }, + { + "path": "src/main/java/org/kohsuke/github/ReactionContent.java", + "mode": "100644", + "type": "blob", + "sha": "57a204b56dedc637eb20c5a21ed48ba79727d396", + "size": 906, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/57a204b56dedc637eb20c5a21ed48ba79727d396" + }, + { + "path": "src/main/java/org/kohsuke/github/Refreshable.java", + "mode": "100644", + "type": "blob", + "sha": "6c75ad63c6d59a059fcd7a844735dd847e71eb2a", + "size": 546, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/6c75ad63c6d59a059fcd7a844735dd847e71eb2a" + }, + { + "path": "src/main/java/org/kohsuke/github/Requester.java", + "mode": "100644", + "type": "blob", + "sha": "b2a2a2f9b88941e5863ef23f325d0b5a5e6e62df", + "size": 28406, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/b2a2a2f9b88941e5863ef23f325d0b5a5e6e62df" + }, + { + "path": "src/main/java/org/kohsuke/github/SearchResult.java", + "mode": "100644", + "type": "blob", + "sha": "2fb2dca06e84154ab76577f607ec7ba20814ec3f", + "size": 624, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/2fb2dca06e84154ab76577f607ec7ba20814ec3f" + }, + { + "path": "src/main/java/org/kohsuke/github/SkipFromToString.java", + "mode": "100644", + "type": "blob", + "sha": "67027a5e3332fc7526f8e190a88bac537ca5a9fc", + "size": 380, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/67027a5e3332fc7526f8e190a88bac537ca5a9fc" + }, + { + "path": "src/main/java/org/kohsuke/github/TrafficInfo.java", + "mode": "100644", + "type": "blob", + "sha": "9b232e9f1a80fc374acdc1ec04e64d141df34407", + "size": 226, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/9b232e9f1a80fc374acdc1ec04e64d141df34407" + }, + { + "path": "src/main/java/org/kohsuke/github/extras", + "mode": "040000", + "type": "tree", + "sha": "d57f27c4e8cbbdc9ea2ca84047598adc141d8b88", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/d57f27c4e8cbbdc9ea2ca84047598adc141d8b88" + }, + { + "path": "src/main/java/org/kohsuke/github/extras/ImpatientHttpConnector.java", + "mode": "100644", + "type": "blob", + "sha": "740b9a037da2d9ebe8ba1937ccbec4359e16b805", + "size": 1714, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/740b9a037da2d9ebe8ba1937ccbec4359e16b805" + }, + { + "path": "src/main/java/org/kohsuke/github/extras/OkHttp3Connector.java", + "mode": "100644", + "type": "blob", + "sha": "17b93b3318ba9866e78cad393111628c42ed7910", + "size": 1055, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/17b93b3318ba9866e78cad393111628c42ed7910" + }, + { + "path": "src/main/java/org/kohsuke/github/extras/OkHttpConnector.java", + "mode": "100644", + "type": "blob", + "sha": "60b41e18ea2576abbb8d94c835a079c7a43563af", + "size": 3484, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/60b41e18ea2576abbb8d94c835a079c7a43563af" + }, + { + "path": "src/main/java/org/kohsuke/github/extras/okhttp3", + "mode": "040000", + "type": "tree", + "sha": "726246c36c18c5f1210409d5b4e460b3f3d0349c", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/726246c36c18c5f1210409d5b4e460b3f3d0349c" + }, + { + "path": "src/main/java/org/kohsuke/github/extras/okhttp3/ObsoleteUrlFactory.java", + "mode": "100644", + "type": "blob", + "sha": "7a4b53f11a11b84cc81610aa37c17feed57d8e3a", + "size": 38179, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/7a4b53f11a11b84cc81610aa37c17feed57d8e3a" + }, + { + "path": "src/main/java/org/kohsuke/github/extras/okhttp3/OkHttpConnector.java", + "mode": "100644", + "type": "blob", + "sha": "315ac0c352b06372fca4c4b2ba84dcbd09fa147b", + "size": 2656, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/315ac0c352b06372fca4c4b2ba84dcbd09fa147b" + }, + { + "path": "src/site", + "mode": "040000", + "type": "tree", + "sha": "fda07ead9d88f0e2a5f972436c0cce827ce85a0b", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/fda07ead9d88f0e2a5f972436c0cce827ce85a0b" + }, + { + "path": "src/site/markdown", + "mode": "040000", + "type": "tree", + "sha": "afb605933466e9f1b14b7d8dc35d02830673b6c9", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/afb605933466e9f1b14b7d8dc35d02830673b6c9" + }, + { + "path": "src/site/markdown/index.md", + "mode": "100644", + "type": "blob", + "sha": "ccd0c9cf38f8878469520ee20a7226be05a3604f", + "size": 2166, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/ccd0c9cf38f8878469520ee20a7226be05a3604f" + }, + { + "path": "src/site/site.xml", + "mode": "100644", + "type": "blob", + "sha": "01eda5ec1689381ce491fcda8d5a005f878d76a3", + "size": 905, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/01eda5ec1689381ce491fcda8d5a005f878d76a3" + }, + { + "path": "src/test", + "mode": "040000", + "type": "tree", + "sha": "62cc18fb82e8ef7b4d8a679a5930332ff01e64af", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/62cc18fb82e8ef7b4d8a679a5930332ff01e64af" + }, + { + "path": "src/test/java", + "mode": "040000", + "type": "tree", + "sha": "717b1748e6dd35e57c7625c8ec318a8f0b9bfb4a", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/717b1748e6dd35e57c7625c8ec318a8f0b9bfb4a" + }, + { + "path": "src/test/java/org", + "mode": "040000", + "type": "tree", + "sha": "13ef2ac1ffda8bf634586298a27bfef9230bcdd3", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/13ef2ac1ffda8bf634586298a27bfef9230bcdd3" + }, + { + "path": "src/test/java/org/kohsuke", + "mode": "040000", + "type": "tree", + "sha": "25af55ed4e02630cab8b2d28eb9b043c0f75a5ba", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/25af55ed4e02630cab8b2d28eb9b043c0f75a5ba" + }, + { + "path": "src/test/java/org/kohsuke/HookApp.java", + "mode": "100644", + "type": "blob", + "sha": "66f6fb7f6945ed243ef3ad09a32eb7c77f5426cc", + "size": 1134, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/66f6fb7f6945ed243ef3ad09a32eb7c77f5426cc" + }, + { + "path": "src/test/java/org/kohsuke/github", + "mode": "040000", + "type": "tree", + "sha": "8a4fc11518b161cd5d208f46dec66437a19810a8", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/8a4fc11518b161cd5d208f46dec66437a19810a8" + }, + { + "path": "src/test/java/org/kohsuke/github/AbstractGitHubApiTestBase.java", + "mode": "100644", + "type": "blob", + "sha": "0c5010c32c010b666a61921a08219a551e6fb69d", + "size": 897, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/0c5010c32c010b666a61921a08219a551e6fb69d" + }, + { + "path": "src/test/java/org/kohsuke/github/AbstractGitHubWireMockTest.java", + "mode": "100644", + "type": "blob", + "sha": "7c5892eea93216426064fc2f719a3d6d7c664d26", + "size": 7184, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/7c5892eea93216426064fc2f719a3d6d7c664d26" + }, + { + "path": "src/test/java/org/kohsuke/github/AppTest.java", + "mode": "100755", + "type": "blob", + "sha": "baad7a7c4cf409f610a0e8c7eba17664eb655c44", + "size": 35946, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/baad7a7c4cf409f610a0e8c7eba17664eb655c44" + }, + { + "path": "src/test/java/org/kohsuke/github/BridgeMethodTest.java", + "mode": "100644", + "type": "blob", + "sha": "9e840f5fbf41565d88f4556593ca965e3f589acd", + "size": 1283, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/9e840f5fbf41565d88f4556593ca965e3f589acd" + }, + { + "path": "src/test/java/org/kohsuke/github/CommitTest.java", + "mode": "100644", + "type": "blob", + "sha": "0e6e2e5ff465132f7da90a4642602322fc3044aa", + "size": 898, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/0e6e2e5ff465132f7da90a4642602322fc3044aa" + }, + { + "path": "src/test/java/org/kohsuke/github/GHAppTest.java", + "mode": "100644", + "type": "blob", + "sha": "baf5a12cfdab02540be361f92c51ba1190d0029c", + "size": 6306, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/baf5a12cfdab02540be361f92c51ba1190d0029c" + }, + { + "path": "src/test/java/org/kohsuke/github/GHBranchProtectionTest.java", + "mode": "100644", + "type": "blob", + "sha": "63f142a3fdede5636f104edf93dddf3da28de9f5", + "size": 3449, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/63f142a3fdede5636f104edf93dddf3da28de9f5" + }, + { + "path": "src/test/java/org/kohsuke/github/GHContentIntegrationTest.java", + "mode": "100644", + "type": "blob", + "sha": "e3a37f80d0bae445db4aeb4b5f6745927751099b", + "size": 3645, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/e3a37f80d0bae445db4aeb4b5f6745927751099b" + }, + { + "path": "src/test/java/org/kohsuke/github/GHEventPayloadTest.java", + "mode": "100644", + "type": "blob", + "sha": "5287f4dab173723008e10f84f2f6ccbc01e4c8f8", + "size": 17046, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/5287f4dab173723008e10f84f2f6ccbc01e4c8f8" + }, + { + "path": "src/test/java/org/kohsuke/github/GHGistUpdaterTest.java", + "mode": "100644", + "type": "blob", + "sha": "23bd4622f302999c26eb86efa0f816fe58995f0b", + "size": 2456, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/23bd4622f302999c26eb86efa0f816fe58995f0b" + }, + { + "path": "src/test/java/org/kohsuke/github/GHHookTest.java", + "mode": "100644", + "type": "blob", + "sha": "b27484b5e53a744b98319b896da296d3aff60ce8", + "size": 2889, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/b27484b5e53a744b98319b896da296d3aff60ce8" + }, + { + "path": "src/test/java/org/kohsuke/github/GHIssueEventTest.java", + "mode": "100644", + "type": "blob", + "sha": "bee82f0928a98ac130dd96cb867bf93f09caf8a1", + "size": 1830, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/bee82f0928a98ac130dd96cb867bf93f09caf8a1" + }, + { + "path": "src/test/java/org/kohsuke/github/GHLicenseTest.java", + "mode": "100644", + "type": "blob", + "sha": "9a77972c349ad09fbb2ba997254605dba60338e1", + "size": 7598, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/9a77972c349ad09fbb2ba997254605dba60338e1" + }, + { + "path": "src/test/java/org/kohsuke/github/GHOrganizationTest.java", + "mode": "100644", + "type": "blob", + "sha": "37f4a09bf51daaf3174f6bc80f68b859bd8b3365", + "size": 2056, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/37f4a09bf51daaf3174f6bc80f68b859bd8b3365" + }, + { + "path": "src/test/java/org/kohsuke/github/GHProjectCardTest.java", + "mode": "100644", + "type": "blob", + "sha": "e155f860240eacd3fea6c04182194896cbec193d", + "size": 2621, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/e155f860240eacd3fea6c04182194896cbec193d" + }, + { + "path": "src/test/java/org/kohsuke/github/GHProjectColumnTest.java", + "mode": "100644", + "type": "blob", + "sha": "db3003da615f812454344f51e58df567c68dce80", + "size": 1647, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/db3003da615f812454344f51e58df567c68dce80" + }, + { + "path": "src/test/java/org/kohsuke/github/GHProjectTest.java", + "mode": "100644", + "type": "blob", + "sha": "fe1722576d56dd27785b7d39a4f709568945ec0e", + "size": 2354, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/fe1722576d56dd27785b7d39a4f709568945ec0e" + }, + { + "path": "src/test/java/org/kohsuke/github/GHPullRequestTest.java", + "mode": "100644", + "type": "blob", + "sha": "f6429560704982132061428f4143b01bc1941304", + "size": 13712, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/f6429560704982132061428f4143b01bc1941304" + }, + { + "path": "src/test/java/org/kohsuke/github/GHRepositoryStatisticsTest.java", + "mode": "100644", + "type": "blob", + "sha": "71d14d02dc5630be8947b45e9af0eca0c23fa48e", + "size": 7986, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/71d14d02dc5630be8947b45e9af0eca0c23fa48e" + }, + { + "path": "src/test/java/org/kohsuke/github/GHRepositoryTest.java", + "mode": "100644", + "type": "blob", + "sha": "8400cc233c36d0af7b3e7311f16d532706d86453", + "size": 9249, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/8400cc233c36d0af7b3e7311f16d532706d86453" + }, + { + "path": "src/test/java/org/kohsuke/github/GHTeamTest.java", + "mode": "100644", + "type": "blob", + "sha": "208f07f7d1004b7321ee18713d647f965d432444", + "size": 991, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/208f07f7d1004b7321ee18713d647f965d432444" + }, + { + "path": "src/test/java/org/kohsuke/github/GHUserTest.java", + "mode": "100644", + "type": "blob", + "sha": "8773946d76ec44761e7675b43f3550b2cc513996", + "size": 4075, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/8773946d76ec44761e7675b43f3550b2cc513996" + }, + { + "path": "src/test/java/org/kohsuke/github/GistTest.java", + "mode": "100644", + "type": "blob", + "sha": "5fbb75a400d685bf617eddbd739b5a005254677b", + "size": 2167, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/5fbb75a400d685bf617eddbd739b5a005254677b" + }, + { + "path": "src/test/java/org/kohsuke/github/GitHubConnectionTest.java", + "mode": "100644", + "type": "blob", + "sha": "61753e94d9ac882c01030f555cef7fe6a63fbb64", + "size": 14290, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/61753e94d9ac882c01030f555cef7fe6a63fbb64" + }, + { + "path": "src/test/java/org/kohsuke/github/GitHubTest.java", + "mode": "100644", + "type": "blob", + "sha": "2fb535cde35e7016c0fcfc725c60669808a217c0", + "size": 2636, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/2fb535cde35e7016c0fcfc725c60669808a217c0" + }, + { + "path": "src/test/java/org/kohsuke/github/LifecycleTest.java", + "mode": "100644", + "type": "blob", + "sha": "629ccebc94c8ef9b6d3855750c1902a3a3187d26", + "size": 5123, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/629ccebc94c8ef9b6d3855750c1902a3a3187d26" + }, + { + "path": "src/test/java/org/kohsuke/github/Payload.java", + "mode": "100644", + "type": "blob", + "sha": "7365468d246589c50b3dfcda152c0dab345140f8", + "size": 305, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/7365468d246589c50b3dfcda152c0dab345140f8" + }, + { + "path": "src/test/java/org/kohsuke/github/PayloadRule.java", + "mode": "100644", + "type": "blob", + "sha": "20a6f46accddb064398077a49a9f4924c5360922", + "size": 2725, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/20a6f46accddb064398077a49a9f4924c5360922" + }, + { + "path": "src/test/java/org/kohsuke/github/RepositoryMockTest.java", + "mode": "100644", + "type": "blob", + "sha": "c9c65f3c4a055b69cf4b2775116ab9bf163e9cd5", + "size": 2373, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/c9c65f3c4a055b69cf4b2775116ab9bf163e9cd5" + }, + { + "path": "src/test/java/org/kohsuke/github/RepositoryTrafficTest.java", + "mode": "100644", + "type": "blob", + "sha": "5c8f6d35e3236b6f0b51c7820ca0d19d0ad53b21", + "size": 8009, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/5c8f6d35e3236b6f0b51c7820ca0d19d0ad53b21" + }, + { + "path": "src/test/java/org/kohsuke/github/WireMockStatusReporterTest.java", + "mode": "100644", + "type": "blob", + "sha": "b903d82c8bd8bbbbda0d28b64e18393a5824dedf", + "size": 5407, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/b903d82c8bd8bbbbda0d28b64e18393a5824dedf" + }, + { + "path": "src/test/java/org/kohsuke/github/extras", + "mode": "040000", + "type": "tree", + "sha": "13e1f0603920aec45fb73c9ea4810f5156ab8cd7", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/13e1f0603920aec45fb73c9ea4810f5156ab8cd7" + }, + { + "path": "src/test/java/org/kohsuke/github/extras/OkHttpConnectorTest.java", + "mode": "100644", + "type": "blob", + "sha": "381a2c437be3427428ec6848b99c5f0f32a32342", + "size": 11038, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/381a2c437be3427428ec6848b99c5f0f32a32342" + }, + { + "path": "src/test/java/org/kohsuke/github/extras/okhttp3", + "mode": "040000", + "type": "tree", + "sha": "fc9e3b0f785dc4e15410c9c589572d8ffcba0788", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/fc9e3b0f785dc4e15410c9c589572d8ffcba0788" + }, + { + "path": "src/test/java/org/kohsuke/github/extras/okhttp3/OkHttpConnectorTest.java", + "mode": "100644", + "type": "blob", + "sha": "a8abb680250d2a546b520888c19b92cd2357be5d", + "size": 11402, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a8abb680250d2a546b520888c19b92cd2357be5d" + }, + { + "path": "src/test/java/org/kohsuke/github/junit", + "mode": "040000", + "type": "tree", + "sha": "e8eb244f62153d0900ec2ca79ad2658ece4e0f70", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/e8eb244f62153d0900ec2ca79ad2658ece4e0f70" + }, + { + "path": "src/test/java/org/kohsuke/github/junit/GitHubWireMockRule.java", + "mode": "100644", + "type": "blob", + "sha": "7d008fdfffc6cef1ed5ac15df31dc7f50d2b5434", + "size": 10113, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/7d008fdfffc6cef1ed5ac15df31dc7f50d2b5434" + }, + { + "path": "src/test/java/org/kohsuke/github/junit/WireMockMultiServerRule.java", + "mode": "100644", + "type": "blob", + "sha": "660782272f48b72fb21781c59130f8c67898ea91", + "size": 5427, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/660782272f48b72fb21781c59130f8c67898ea91" + }, + { + "path": "src/test/java/org/kohsuke/github/junit/WireMockRule.java", + "mode": "100644", + "type": "blob", + "sha": "aa60691379de207da4908affd4d2d647aab9442e", + "size": 13569, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/aa60691379de207da4908affd4d2d647aab9442e" + }, + { + "path": "src/test/java/org/kohsuke/github/junit/WireMockRuleConfiguration.java", + "mode": "100644", + "type": "blob", + "sha": "330afc2aaf1c7acabcc34498171e7c17ac35054e", + "size": 5455, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/330afc2aaf1c7acabcc34498171e7c17ac35054e" + }, + { + "path": "src/test/resources", + "mode": "040000", + "type": "tree", + "sha": "32183d90e66967b804dbfd4deb4cccaf21227ac7", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/32183d90e66967b804dbfd4deb4cccaf21227ac7" + }, + { + "path": "src/test/resources/org", + "mode": "040000", + "type": "tree", + "sha": "4738f04fe69de30630cd2fb1039c46045b287b55", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/4738f04fe69de30630cd2fb1039c46045b287b55" + }, + { + "path": "src/test/resources/org/kohsuke", + "mode": "040000", + "type": "tree", + "sha": "9225c3a9ab4b2aa9ffc64cc621166287ee532c3c", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/9225c3a9ab4b2aa9ffc64cc621166287ee532c3c" + }, + { + "path": "src/test/resources/org/kohsuke/github", + "mode": "040000", + "type": "tree", + "sha": "6468d08f9d7a7b17bd5c2055c628725f90d69c70", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/6468d08f9d7a7b17bd5c2055c628725f90d69c70" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest", + "mode": "040000", + "type": "tree", + "sha": "380dc667be1b57f53a8aa45e210ee1bb6dfe3754", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/380dc667be1b57f53a8aa45e210ee1bb6dfe3754" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock", + "mode": "040000", + "type": "tree", + "sha": "f63033c5ab4fdcff31dfba5f76ac056204618d98", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/f63033c5ab4fdcff31dfba5f76ac056204618d98" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateAndListDeployments", + "mode": "040000", + "type": "tree", + "sha": "373df0ad50791d0d3eeefd184d6332bef93cf38a", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/373df0ad50791d0d3eeefd184d6332bef93cf38a" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateAndListDeployments/__files", + "mode": "040000", + "type": "tree", + "sha": "ad15ca2083bb1ac508494436010342bac4379c83", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/ad15ca2083bb1ac508494436010342bac4379c83" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateAndListDeployments/__files/repos_github-api-test-org_github-api-test-31a86a0d-5120-47b8-a9bc-ec4b34a08080.json", + "mode": "100644", + "type": "blob", + "sha": "4e1f05cc8ab6e84565a70a2796597abd0f2bd14f", + "size": 7518, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/4e1f05cc8ab6e84565a70a2796597abd0f2bd14f" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateAndListDeployments/__files/repos_github-api-test-org_github-api-test_deployments-702b7123-86c1-41e0-bee7-f3cb89a3236d.json", + "mode": "100644", + "type": "blob", + "sha": "8a0ccba06d77d64018472e2e05e818a5e6a3f944", + "size": 1754, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/8a0ccba06d77d64018472e2e05e818a5e6a3f944" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateAndListDeployments/__files/repos_github-api-test-org_github-api-test_deployments-b4bcdadb-a708-4509-9382-479f300eb172.json", + "mode": "100644", + "type": "blob", + "sha": "ffacc12cf09f0c0bb14b00e6672d3fa5d696e937", + "size": 1830, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/ffacc12cf09f0c0bb14b00e6672d3fa5d696e937" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateAndListDeployments/__files/user-6d2dcbf4-4abf-4180-9b55-ca2931ca31c5.json", + "mode": "100644", + "type": "blob", + "sha": "39d6c8353e0136a1f26e004bf49ea0a5ec7f4be0", + "size": 1640, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/39d6c8353e0136a1f26e004bf49ea0a5ec7f4be0" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateAndListDeployments/mappings", + "mode": "040000", + "type": "tree", + "sha": "e4326e0ff59259f8ad8e0e8f4cbda5f2d4ce3adc", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/e4326e0ff59259f8ad8e0e8f4cbda5f2d4ce3adc" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateAndListDeployments/mappings/repos_github-api-test-org_github-api-test-2-31a86a.json", + "mode": "100644", + "type": "blob", + "sha": "b1374a479fca8bb3ef9237d3c845c2fc0a8b75e4", + "size": 1942, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/b1374a479fca8bb3ef9237d3c845c2fc0a8b75e4" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateAndListDeployments/mappings/repos_github-api-test-org_github-api-test_deployments-3-702b71.json", + "mode": "100644", + "type": "blob", + "sha": "689b260dcdd88b5970d888587b39b60587138d17", + "size": 2374, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/689b260dcdd88b5970d888587b39b60587138d17" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateAndListDeployments/mappings/repos_github-api-test-org_github-api-test_deployments-4-b4bcda.json", + "mode": "100644", + "type": "blob", + "sha": "b5fe8f595e599a536c8a5b969794a1dd0d33d96a", + "size": 1972, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/b5fe8f595e599a536c8a5b969794a1dd0d33d96a" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateAndListDeployments/mappings/user-1-6d2dcb.json", + "mode": "100644", + "type": "blob", + "sha": "91644f4573f979d7ea8b85b09e0fc82960d70da5", + "size": 1827, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/91644f4573f979d7ea8b85b09e0fc82960d70da5" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue", + "mode": "040000", + "type": "tree", + "sha": "b4863a0cc7e44da31764c091ffc870e8a02ff933", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/b4863a0cc7e44da31764c091ffc870e8a02ff933" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/__files", + "mode": "040000", + "type": "tree", + "sha": "cb08db5cbee877f1dfc6e18b39044ad7a0905df7", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/cb08db5cbee877f1dfc6e18b39044ad7a0905df7" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/__files/orgs_github-api-test-org-6ab1a03d-267b-4675-a8e4-91bbef27f6ec.json", + "mode": "100644", + "type": "blob", + "sha": "5605b36c3d17993f4702109fd262c3f8ca2780e9", + "size": 1481, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/5605b36c3d17993f4702109fd262c3f8ca2780e9" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/__files/repos_github-api-test-org_github-api-test-2d35cecf-0212-47d5-8dd3-15b4838d56c6.json", + "mode": "100644", + "type": "blob", + "sha": "f7ffcfba0c20ef779816fc30a1494420dc975ae1", + "size": 7518, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/f7ffcfba0c20ef779816fc30a1494420dc975ae1" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/__files/repos_github-api-test-org_github-api-test_issues-4c0eec6b-2118-4a14-8a95-3e55fd260384.json", + "mode": "100644", + "type": "blob", + "sha": "c718f276200f6ec84e9494a03f1198e4da01592e", + "size": 6383, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/c718f276200f6ec84e9494a03f1198e4da01592e" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/__files/repos_github-api-test-org_github-api-test_issues_1-b2b352de-1dfc-4bbf-8b29-6699c09adcba.json", + "mode": "100644", + "type": "blob", + "sha": "001e4cbd7002fbd08a5b9bdab3f98c21ee9d026c", + "size": 7440, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/001e4cbd7002fbd08a5b9bdab3f98c21ee9d026c" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/__files/repos_github-api-test-org_github-api-test_milestones-9f6e9872-cdec-405b-a820-838d4a40ab00.json", + "mode": "100644", + "type": "blob", + "sha": "bd6ce8be627362e22cc308c0b083d86dd2558ffa", + "size": 1664, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/bd6ce8be627362e22cc308c0b083d86dd2558ffa" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/__files/repos_github-api-test-org_github-api-test_milestones-c528f3b4-7651-4943-8247-fc4eb960f7c7.json", + "mode": "100644", + "type": "blob", + "sha": "24eb5511212811d7c6eedfdaad889616a799cbe9", + "size": 1664, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/24eb5511212811d7c6eedfdaad889616a799cbe9" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/__files/user-8104cc51-7147-4bc3-9004-2cec25e972f8.json", + "mode": "100644", + "type": "blob", + "sha": "39d6c8353e0136a1f26e004bf49ea0a5ec7f4be0", + "size": 1640, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/39d6c8353e0136a1f26e004bf49ea0a5ec7f4be0" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/mappings", + "mode": "040000", + "type": "tree", + "sha": "97c9d055e75582c23e6a1fdaff252430a0ac38e2", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/97c9d055e75582c23e6a1fdaff252430a0ac38e2" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/mappings/repos_github-api-test-org_github-api-test-2-2d35ce.json", + "mode": "100644", + "type": "blob", + "sha": "63d7f00591c98669da35bc74453f2d0892fb7380", + "size": 1942, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/63d7f00591c98669da35bc74453f2d0892fb7380" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/mappings/repos_github-api-test-org_github-api-test_hooks-4-0765fd.json", + "mode": "100644", + "type": "blob", + "sha": "fddb520507fd416bb5648ac0734cbd83a8242fdd", + "size": 2074, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/fddb520507fd416bb5648ac0734cbd83a8242fdd" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/mappings/repos_github-api-test-org_github-api-test_hooks-5-9f3310.json", + "mode": "100644", + "type": "blob", + "sha": "09a1040fea66da5a2169d7b7154f601af30ac566", + "size": 2127, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/09a1040fea66da5a2169d7b7154f601af30ac566" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/mappings/repos_github-api-test-org_github-api-test_hooks-7-3dddac.json", + "mode": "100644", + "type": "blob", + "sha": "f3adfb49714a1157235e8c4d03250a47d018f825", + "size": 2127, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/f3adfb49714a1157235e8c4d03250a47d018f825" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/mappings/repos_github-api-test-org_github-api-test_hooks-8-8cfab8.json", + "mode": "100644", + "type": "blob", + "sha": "9f2cef8f5c8b2c376e53a7043935a8cc22d73540", + "size": 2041, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/9f2cef8f5c8b2c376e53a7043935a8cc22d73540" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/mappings/repos_github-api-test-org_github-api-test_issues-10-4c0eec.json", + "mode": "100644", + "type": "blob", + "sha": "92bc23789bcf28acb0b209db7d966825efc5bdbe", + "size": 2275, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/92bc23789bcf28acb0b209db7d966825efc5bdbe" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/mappings/repos_github-api-test-org_github-api-test_issues_1-11-b2b352.json", + "mode": "100644", + "type": "blob", + "sha": "d4680339cb2e8967b129d2503daa58baa4ced31f", + "size": 2076, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d4680339cb2e8967b129d2503daa58baa4ced31f" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/mappings/repos_github-api-test-org_github-api-test_milestones-12-9f6e98.json", + "mode": "100644", + "type": "blob", + "sha": "52258c7f4d7350dc2971f7505a99ef6352f14ad5", + "size": 2233, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/52258c7f4d7350dc2971f7505a99ef6352f14ad5" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/mappings/repos_github-api-test-org_github-api-test_milestones-3-7cb4f1.json", + "mode": "100644", + "type": "blob", + "sha": "5097fa633eed9b9ba0c6dbeb3bbe446ef7b5c919", + "size": 2045, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/5097fa633eed9b9ba0c6dbeb3bbe446ef7b5c919" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/mappings/repos_github-api-test-org_github-api-test_milestones-6-9a91aa.json", + "mode": "100644", + "type": "blob", + "sha": "f6315b52bfee1e19769b7437899843c0a6804b9b", + "size": 1828, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/f6315b52bfee1e19769b7437899843c0a6804b9b" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/mappings/repos_github-api-test-org_github-api-test_milestones-9-c528f3.json", + "mode": "100644", + "type": "blob", + "sha": "f1885f938ebf647519b94cefbbf0f85301a83c17", + "size": 2232, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/f1885f938ebf647519b94cefbbf0f85301a83c17" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testCreateIssue/mappings/user-1-8104cc.json", + "mode": "100644", + "type": "blob", + "sha": "43b384287b8b63e718d61e5c2263cbf6ae7b9739", + "size": 1827, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/43b384287b8b63e718d61e5c2263cbf6ae7b9739" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testCredentialValid", + "mode": "040000", + "type": "tree", + "sha": "bddfbf4e34068896be3a2dee61f91a4c2d900ed4", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/bddfbf4e34068896be3a2dee61f91a4c2d900ed4" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testCredentialValid/__files", + "mode": "040000", + "type": "tree", + "sha": "ed59ae1b79a42ba26589aa620866d6aea9071ba7", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/ed59ae1b79a42ba26589aa620866d6aea9071ba7" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testCredentialValid/__files/user-eba96b24-3354-4d21-bd2a-388a13ba9832.json", + "mode": "100644", + "type": "blob", + "sha": "39d6c8353e0136a1f26e004bf49ea0a5ec7f4be0", + "size": 1640, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/39d6c8353e0136a1f26e004bf49ea0a5ec7f4be0" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testCredentialValid/mappings", + "mode": "040000", + "type": "tree", + "sha": "67b4214273b06cbd117aef72a09bd07d2bf2838f", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/67b4214273b06cbd117aef72a09bd07d2bf2838f" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testCredentialValid/mappings/user-1-eba96b.json", + "mode": "100644", + "type": "blob", + "sha": "40af3e7e85a88a31e4ba81b60b77eeaa7f4c1a8b", + "size": 1827, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/40af3e7e85a88a31e4ba81b60b77eeaa7f4c1a8b" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi", + "mode": "040000", + "type": "tree", + "sha": "377e3e87bcac850889f073687daab7601b9a4c27", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/377e3e87bcac850889f073687daab7601b9a4c27" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/__files", + "mode": "040000", + "type": "tree", + "sha": "a7bf698e796180ed7ed18db1f8482467e45ef403", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/a7bf698e796180ed7ed18db1f8482467e45ef403" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/__files/events-1f4bc3c9-b53c-4cab-ba72-bf9eaea1dc2d.json", + "mode": "100644", + "type": "blob", + "sha": "8246842cebb413f05d5d4bfc95d3e282fb3c5dd7", + "size": 25420, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/8246842cebb413f05d5d4bfc95d3e282fb3c5dd7" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/__files/events-3719d162-a479-4a4c-803c-6747e224509c.json", + "mode": "100644", + "type": "blob", + "sha": "404370fedc19e018af04042ba13750a15cc373e2", + "size": 117749, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/404370fedc19e018af04042ba13750a15cc373e2" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/__files/events-3894ddd2-ac57-4592-bc01-9e5d7f93ef6e.json", + "mode": "100644", + "type": "blob", + "sha": "986493202b178f0bd0f7c3060b623f3c62944d2d", + "size": 214856, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/986493202b178f0bd0f7c3060b623f3c62944d2d" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/__files/events-5d107ab6-f41e-41dd-b699-ed83c6edbceb.json", + "mode": "100644", + "type": "blob", + "sha": "6690e1d9f439cabab69afe0ebf6baf5dc0df2850", + "size": 124710, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/6690e1d9f439cabab69afe0ebf6baf5dc0df2850" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/__files/events-6354ffb5-fa83-474c-94ea-f91ca33f5a71.json", + "mode": "100644", + "type": "blob", + "sha": "284474b47d1b7b5e0659c97c9447b4833a6c31b1", + "size": 160584, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/284474b47d1b7b5e0659c97c9447b4833a6c31b1" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/__files/events-6f4a1d77-46f9-4f38-a260-953487c97b4f.json", + "mode": "100644", + "type": "blob", + "sha": "da9d3d9cb1453cb7b02c7591a48f650a9c0565ab", + "size": 122618, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/da9d3d9cb1453cb7b02c7591a48f650a9c0565ab" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/__files/events-79407878-4e6c-4d87-a3b7-f2d003b89d91.json", + "mode": "100644", + "type": "blob", + "sha": "b66d545a5a32dba1a2d37107c2644b57a4baddba", + "size": 144201, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/b66d545a5a32dba1a2d37107c2644b57a4baddba" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/__files/events-98288433-46b1-4ad0-9857-c44ae6ac3182.json", + "mode": "100644", + "type": "blob", + "sha": "bc4d3496063f2c13ad710df1bd8c7f0a36449159", + "size": 214268, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/bc4d3496063f2c13ad710df1bd8c7f0a36449159" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/__files/events-d3ce344a-2eeb-443b-9929-612fb9cbde1f.json", + "mode": "100644", + "type": "blob", + "sha": "b66d545a5a32dba1a2d37107c2644b57a4baddba", + "size": 144201, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/b66d545a5a32dba1a2d37107c2644b57a4baddba" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/__files/events-d66da82e-6a4f-496f-824c-53e4db13d18a.json", + "mode": "100644", + "type": "blob", + "sha": "495204b57daf0b7f48a41d2a1724887cbb604dbf", + "size": 143455, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/495204b57daf0b7f48a41d2a1724887cbb604dbf" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/__files/user-01c5f6e9-2ce9-42bf-acda-20cb8cc7bf8e.json", + "mode": "100644", + "type": "blob", + "sha": "0bc89b5312727bcc642e9f7216c47ea9358d9747", + "size": 1640, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/0bc89b5312727bcc642e9f7216c47ea9358d9747" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/mappings", + "mode": "040000", + "type": "tree", + "sha": "a5ce6ebc5163d47ff5031c4a3af5930f86c22f4d", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/a5ce6ebc5163d47ff5031c4a3af5930f86c22f4d" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/mappings/events-10-3894dd.json", + "mode": "100644", + "type": "blob", + "sha": "dd12b9f1dc56555e073eb2f9e5d08dddbd6dd1ba", + "size": 2106, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/dd12b9f1dc56555e073eb2f9e5d08dddbd6dd1ba" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/mappings/events-11-1f4bc3.json", + "mode": "100644", + "type": "blob", + "sha": "76451c84c49054276c6c061fa087bc5f9f0ade8b", + "size": 1997, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/76451c84c49054276c6c061fa087bc5f9f0ade8b" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/mappings/events-2-d66da8.json", + "mode": "100644", + "type": "blob", + "sha": "56117717ff531829799495a98a905eb9f8ed9102", + "size": 1988, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/56117717ff531829799495a98a905eb9f8ed9102" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/mappings/events-3-d3ce34.json", + "mode": "100644", + "type": "blob", + "sha": "f58e499e02c7b42d5e4d9c021b23163959b790eb", + "size": 2104, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/f58e499e02c7b42d5e4d9c021b23163959b790eb" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/mappings/events-4-794078.json", + "mode": "100644", + "type": "blob", + "sha": "dae11c6a0934c4811851ba25df7a35c366a04ada", + "size": 2104, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/dae11c6a0934c4811851ba25df7a35c366a04ada" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/mappings/events-5-5d107a.json", + "mode": "100644", + "type": "blob", + "sha": "ee91b6e3a7063c0e8c439d5ae86f1e3d0599daa5", + "size": 2104, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/ee91b6e3a7063c0e8c439d5ae86f1e3d0599daa5" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/mappings/events-6-6f4a1d.json", + "mode": "100644", + "type": "blob", + "sha": "1d2429ff3e3f9605ffeee913c3242f2ab5a67872", + "size": 2104, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/1d2429ff3e3f9605ffeee913c3242f2ab5a67872" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/mappings/events-7-6354ff.json", + "mode": "100644", + "type": "blob", + "sha": "97e3b4e13183b257b4bc0019ce9969190972fa6e", + "size": 2104, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/97e3b4e13183b257b4bc0019ce9969190972fa6e" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/mappings/events-8-3719d1.json", + "mode": "100644", + "type": "blob", + "sha": "b4fcaa92c310d0b1be146f7b43f7a9d364f4817f", + "size": 2104, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/b4fcaa92c310d0b1be146f7b43f7a9d364f4817f" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/mappings/events-9-982884.json", + "mode": "100644", + "type": "blob", + "sha": "494eb6024b38aeded8242a7f8e1a72dbe6a7d2b7", + "size": 2104, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/494eb6024b38aeded8242a7f8e1a72dbe6a7d2b7" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testEventApi/mappings/user-1-01c5f6.json", + "mode": "100644", + "type": "blob", + "sha": "adc458ce67cd736454d4c22e848b33cc26265b82", + "size": 1826, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/adc458ce67cd736454d4c22e848b33cc26265b82" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues", + "mode": "040000", + "type": "tree", + "sha": "234e02233c2b7d31cbace6167ec4ee286b9c3ff0", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/234e02233c2b7d31cbace6167ec4ee286b9c3ff0" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/__files", + "mode": "040000", + "type": "tree", + "sha": "f21e42fbdc47aa413542f75f35d729a0e3662cd1", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/f21e42fbdc47aa413542f75f35d729a0e3662cd1" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/__files/orgs_github-api-baecb5db-6e9c-441b-8414-c8070d9bc0c2.json", + "mode": "100644", + "type": "blob", + "sha": "7dc968a992325b01305f42366d5ce7d5dabc7564", + "size": 1408, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/7dc968a992325b01305f42366d5ce7d5dabc7564" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/__files/repos_github-api_github-api-891820f6-7cd7-437a-8ec1-16c3e76c53ec.json", + "mode": "100644", + "type": "blob", + "sha": "d9a933acc1ce7f3512b4bc136ea616c9c0e7acc4", + "size": 6831, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d9a933acc1ce7f3512b4bc136ea616c9c0e7acc4" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/__files/repos_github-api_github-api_issues-a70d05ac-5820-4749-8318-e422f0f6eaf5.json", + "mode": "100644", + "type": "blob", + "sha": "993ec36e939869c8dfc70c9f1ecdcd119f118bbb", + "size": 159309, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/993ec36e939869c8dfc70c9f1ecdcd119f118bbb" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/__files/repositories_617210_issues-46f0ca81-080b-419a-b494-df00573bd9aa.json", + "mode": "100644", + "type": "blob", + "sha": "d0991d0514ae04a97ad86bb44092c60ee0c3c63a", + "size": 84373, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d0991d0514ae04a97ad86bb44092c60ee0c3c63a" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/__files/repositories_617210_issues-5a770b70-ca92-478e-8bb5-c713553ddefb.json", + "mode": "100644", + "type": "blob", + "sha": "eec142f0252a39b9d32bfe1685a33570dd6cad1f", + "size": 92035, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/eec142f0252a39b9d32bfe1685a33570dd6cad1f" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/__files/repositories_617210_issues-63d2db0d-08ce-498b-8c8d-903da44e2e94.json", + "mode": "100644", + "type": "blob", + "sha": "8c01ca27bb3cdd0b4268c79eed395eff5527169a", + "size": 89468, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/8c01ca27bb3cdd0b4268c79eed395eff5527169a" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/__files/repositories_617210_issues-7d74dc71-0c93-4a0a-8f8e-c6a71027b219.json", + "mode": "100644", + "type": "blob", + "sha": "610d00d0212bb8cd663e2ec8bf6cc375d7360dca", + "size": 74578, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/610d00d0212bb8cd663e2ec8bf6cc375d7360dca" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/__files/repositories_617210_issues-9486f660-2139-4f84-ae0f-898d0369d061.json", + "mode": "100644", + "type": "blob", + "sha": "2a065037d97c1b5ea62e1853a35b19451d331d0b", + "size": 77837, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/2a065037d97c1b5ea62e1853a35b19451d331d0b" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/__files/repositories_617210_issues-ab269330-3eb7-4ec1-9211-ecc8d0d70701.json", + "mode": "100644", + "type": "blob", + "sha": "92efc9b588b74c8ba099aca0cfc76bf22f70a43a", + "size": 87199, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/92efc9b588b74c8ba099aca0cfc76bf22f70a43a" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/__files/repositories_617210_issues-b2fa4ec1-c691-4d0a-a3b2-13e129aa1dea.json", + "mode": "100644", + "type": "blob", + "sha": "5238f993c5af053906ae460541d2d4f8309ab12a", + "size": 82184, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/5238f993c5af053906ae460541d2d4f8309ab12a" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/__files/repositories_617210_issues-c66e220e-9138-4ead-92fb-7e882c71b9bf.json", + "mode": "100644", + "type": "blob", + "sha": "6bae6215a20fa1c78e1e053503547697f8dc598c", + "size": 97338, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/6bae6215a20fa1c78e1e053503547697f8dc598c" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/__files/repositories_617210_issues-c9e769fc-6556-4374-b397-244843a75000.json", + "mode": "100644", + "type": "blob", + "sha": "5712052249bf4a9ab7b76d629988666dd626f84d", + "size": 81356, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/5712052249bf4a9ab7b76d629988666dd626f84d" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/__files/repositories_617210_issues-d2dadb59-c855-4c32-8a98-5ed6992cf3ff.json", + "mode": "100644", + "type": "blob", + "sha": "6695c497b7526ad6c42e3458bb7be9354539536d", + "size": 79784, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/6695c497b7526ad6c42e3458bb7be9354539536d" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/__files/repositories_617210_issues-ddbca5ee-6c30-447d-8667-8c29c151e6d5.json", + "mode": "100644", + "type": "blob", + "sha": "54a533ebba539603dca6047514806bf5c0c44cbf", + "size": 90557, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/54a533ebba539603dca6047514806bf5c0c44cbf" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/__files/repositories_617210_issues-e04b8865-9ace-405a-b8d9-f8bcacb9bfa8.json", + "mode": "100644", + "type": "blob", + "sha": "e6f6f286f5009757227e176f7f0cb440bc3b8a26", + "size": 104988, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/e6f6f286f5009757227e176f7f0cb440bc3b8a26" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/__files/repositories_617210_issues-e084b859-6ef7-4657-ad19-0c0b1a5f9e4d.json", + "mode": "100644", + "type": "blob", + "sha": "37afd142c28f695ad4d5eb0180d3d2dcc54db23f", + "size": 83119, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/37afd142c28f695ad4d5eb0180d3d2dcc54db23f" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/__files/repositories_617210_issues-e22232e4-eb5c-4657-b485-171936f6174e.json", + "mode": "100644", + "type": "blob", + "sha": "0ccbcc2dc6d1a39a33a3fbbe7cd838f8d629fc97", + "size": 58801, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/0ccbcc2dc6d1a39a33a3fbbe7cd838f8d629fc97" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/__files/repositories_617210_issues-fe625e7c-4b31-4b30-bc77-a763a3774fdc.json", + "mode": "100644", + "type": "blob", + "sha": "94ac43d1e1d8d25768215169fb0735fb180355db", + "size": 75935, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/94ac43d1e1d8d25768215169fb0735fb180355db" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/__files/user-7741e4f6-c93e-4760-bb92-070e61f5a475.json", + "mode": "100644", + "type": "blob", + "sha": "41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0", + "size": 1640, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/mappings", + "mode": "040000", + "type": "tree", + "sha": "731924aa6f1889f1400f17bfe24c13f9fed79095", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/731924aa6f1889f1400f17bfe24c13f9fed79095" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/mappings/orgs_github-api-2-baecb5.json", + "mode": "100644", + "type": "blob", + "sha": "8ba4bf842db31d19a7a47f72bcd076995cd361f4", + "size": 1904, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/8ba4bf842db31d19a7a47f72bcd076995cd361f4" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/mappings/repos_github-api_github-api-3-891820.json", + "mode": "100644", + "type": "blob", + "sha": "e1bfc7dcb72015f482168ea7d37bfb1e54a85c20", + "size": 1902, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/e1bfc7dcb72015f482168ea7d37bfb1e54a85c20" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/mappings/repos_github-api_github-api_issues-4-a70d05.json", + "mode": "100644", + "type": "blob", + "sha": "dba789cdaa70a7ade2698d94a959431e8952c8f8", + "size": 2071, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/dba789cdaa70a7ade2698d94a959431e8952c8f8" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/mappings/repositories_617210_issues-10-5a770b.json", + "mode": "100644", + "type": "blob", + "sha": "66bb51e225a29fee2a40634aee66ff0dc2db3d3e", + "size": 2230, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/66bb51e225a29fee2a40634aee66ff0dc2db3d3e" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/mappings/repositories_617210_issues-11-e04b88.json", + "mode": "100644", + "type": "blob", + "sha": "a184aab9a5f0541c869025383fecfa826b075cb0", + "size": 2230, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a184aab9a5f0541c869025383fecfa826b075cb0" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/mappings/repositories_617210_issues-12-fe625e.json", + "mode": "100644", + "type": "blob", + "sha": "1eee1e69061039f5daa0e9717e45ad7881f94dda", + "size": 2231, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/1eee1e69061039f5daa0e9717e45ad7881f94dda" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/mappings/repositories_617210_issues-13-ab2693.json", + "mode": "100644", + "type": "blob", + "sha": "d54c0c08969b3160224470185dcc17c8e4b27966", + "size": 2232, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d54c0c08969b3160224470185dcc17c8e4b27966" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/mappings/repositories_617210_issues-14-9486f6.json", + "mode": "100644", + "type": "blob", + "sha": "d851eaac66c70b298ce4a1343a78ac74bb491e12", + "size": 2233, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d851eaac66c70b298ce4a1343a78ac74bb491e12" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/mappings/repositories_617210_issues-15-c9e769.json", + "mode": "100644", + "type": "blob", + "sha": "d0d9ac391b7e6a678a963163e1a766c2ec2228ce", + "size": 2233, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d0d9ac391b7e6a678a963163e1a766c2ec2228ce" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/mappings/repositories_617210_issues-16-46f0ca.json", + "mode": "100644", + "type": "blob", + "sha": "a27236737789158d09f04b8423ed6e5cf865a067", + "size": 2233, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a27236737789158d09f04b8423ed6e5cf865a067" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/mappings/repositories_617210_issues-17-b2fa4e.json", + "mode": "100644", + "type": "blob", + "sha": "6569b11dbc9883d20638d9c66f0148220c396a08", + "size": 2233, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/6569b11dbc9883d20638d9c66f0148220c396a08" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/mappings/repositories_617210_issues-18-7d74dc.json", + "mode": "100644", + "type": "blob", + "sha": "5844a87a1ad5c91f1fdf52b3285ae1f0ae4735e5", + "size": 2233, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/5844a87a1ad5c91f1fdf52b3285ae1f0ae4735e5" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/mappings/repositories_617210_issues-19-e22232.json", + "mode": "100644", + "type": "blob", + "sha": "dbc98e3c824d89c6ee634ea7aa85294e677e643e", + "size": 2057, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/dbc98e3c824d89c6ee634ea7aa85294e677e643e" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/mappings/repositories_617210_issues-5-d2dadb.json", + "mode": "100644", + "type": "blob", + "sha": "028da6c5de9eb826278b56affdb16454be48a98c", + "size": 2229, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/028da6c5de9eb826278b56affdb16454be48a98c" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/mappings/repositories_617210_issues-6-63d2db.json", + "mode": "100644", + "type": "blob", + "sha": "7cc257be93c981d7f2dbb3ff07b798063fa8a3e9", + "size": 2229, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/7cc257be93c981d7f2dbb3ff07b798063fa8a3e9" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/mappings/repositories_617210_issues-7-e084b8.json", + "mode": "100644", + "type": "blob", + "sha": "f955db8e0db16355f356da2c9872690dc0904cd8", + "size": 2229, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/f955db8e0db16355f356da2c9872690dc0904cd8" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/mappings/repositories_617210_issues-8-c66e22.json", + "mode": "100644", + "type": "blob", + "sha": "2e2613d253cb460bee2493a2275498ec062e013b", + "size": 2229, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/2e2613d253cb460bee2493a2275498ec062e013b" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/mappings/repositories_617210_issues-9-ddbca5.json", + "mode": "100644", + "type": "blob", + "sha": "7e3de47b68f1b617231647695ad2fc4522aee36e", + "size": 2229, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/7e3de47b68f1b617231647695ad2fc4522aee36e" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testGetIssues/mappings/user-1-7741e4.json", + "mode": "100644", + "type": "blob", + "sha": "6f9ad1993b7709aac9fa35806e3778388a3c7e63", + "size": 1829, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/6f9ad1993b7709aac9fa35806e3778388a3c7e63" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testIssueWithNoComment", + "mode": "040000", + "type": "tree", + "sha": "54b02933a52a408945e3b0ea6c461f52b15cfbcc", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/54b02933a52a408945e3b0ea6c461f52b15cfbcc" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testIssueWithNoComment/__files", + "mode": "040000", + "type": "tree", + "sha": "5c47bc9a90880d0a7601134552c979ffc6e6f696", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/5c47bc9a90880d0a7601134552c979ffc6e6f696" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testIssueWithNoComment/__files/repos_kohsuke_test-5e93357f-40cc-49ad-90ca-355a4703de1e.json", + "mode": "100644", + "type": "blob", + "sha": "dcc3c8df71c7f7f18854131787cf9ecc8417cde6", + "size": 4981, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/dcc3c8df71c7f7f18854131787cf9ecc8417cde6" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testIssueWithNoComment/__files/repos_kohsuke_test_issues_3-805b83e0-61e7-4dc4-844e-a834681cd311.json", + "mode": "100644", + "type": "blob", + "sha": "ea3c7d5e7b817695be4e8cde59fc0c2a9b6e28ee", + "size": 4893, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/ea3c7d5e7b817695be4e8cde59fc0c2a9b6e28ee" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testIssueWithNoComment/__files/repos_kohsuke_test_issues_3_comments-83d2db1f-2c02-4f03-9bb0-668774dd4f8d.json", + "mode": "100644", + "type": "blob", + "sha": "af36cc57c3875b0d229337ee03eeabb6b606ec32", + "size": 4499, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/af36cc57c3875b0d229337ee03eeabb6b606ec32" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testIssueWithNoComment/__files/repos_kohsuke_test_issues_4-d90a1a3e-5992-44bd-bb74-2122878d2da5.json", + "mode": "100644", + "type": "blob", + "sha": "ff206ede2a2a594c13fa16b8ecb42f1cd5592077", + "size": 6721, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/ff206ede2a2a594c13fa16b8ecb42f1cd5592077" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testIssueWithNoComment/__files/user-0d50edb7-4ca2-4877-83d1-1617ed206128.json", + "mode": "100644", + "type": "blob", + "sha": "39d6c8353e0136a1f26e004bf49ea0a5ec7f4be0", + "size": 1640, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/39d6c8353e0136a1f26e004bf49ea0a5ec7f4be0" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testIssueWithNoComment/mappings", + "mode": "040000", + "type": "tree", + "sha": "b7d4a7e78d18c7a7e4529746e74e0da5c58bc638", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/b7d4a7e78d18c7a7e4529746e74e0da5c58bc638" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testIssueWithNoComment/mappings/repos_kohsuke_test-1-5e9335.json", + "mode": "100644", + "type": "blob", + "sha": "c24814bc6163031c8f6200432b6478be5c20ed97", + "size": 1871, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/c24814bc6163031c8f6200432b6478be5c20ed97" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testIssueWithNoComment/mappings/repos_kohsuke_test_issues_3-4-805b83.json", + "mode": "100644", + "type": "blob", + "sha": "46492fe969fc26247863831b45fca6ee5a058e5b", + "size": 1898, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/46492fe969fc26247863831b45fca6ee5a058e5b" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testIssueWithNoComment/mappings/repos_kohsuke_test_issues_3_comments-5-83d2db.json", + "mode": "100644", + "type": "blob", + "sha": "9457e16bea00307e251443fe61589b118c7ac11a", + "size": 1865, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/9457e16bea00307e251443fe61589b118c7ac11a" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testIssueWithNoComment/mappings/repos_kohsuke_test_issues_4-2-d90a1a.json", + "mode": "100644", + "type": "blob", + "sha": "fd0226bda49ec5dcb18e99daf5c439d575ca063e", + "size": 1898, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/fd0226bda49ec5dcb18e99daf5c439d575ca063e" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testIssueWithNoComment/mappings/repos_kohsuke_test_issues_4_comments-3-648b70.json", + "mode": "100644", + "type": "blob", + "sha": "a6aa02e252541f10e6017933415e2928b820b98b", + "size": 1779, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a6aa02e252541f10e6017933415e2928b820b98b" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testIssueWithNoComment/mappings/user-6-0d50ed.json", + "mode": "100644", + "type": "blob", + "sha": "895649df5d77ad1fd2ac3205b446a627d081dccb", + "size": 1828, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/895649df5d77ad1fd2ac3205b446a627d081dccb" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyOrganizations", + "mode": "040000", + "type": "tree", + "sha": "f1cdad0b6b3508d7e5268ec602be1ee3e0330d12", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/f1cdad0b6b3508d7e5268ec602be1ee3e0330d12" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyOrganizations/__files", + "mode": "040000", + "type": "tree", + "sha": "e814ad67a675076f9a8d2457354b861c5f887705", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/e814ad67a675076f9a8d2457354b861c5f887705" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyOrganizations/__files/user-a4cacc2c-726b-499a-bfdc-302f729fe6c2.json", + "mode": "100644", + "type": "blob", + "sha": "39d6c8353e0136a1f26e004bf49ea0a5ec7f4be0", + "size": 1640, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/39d6c8353e0136a1f26e004bf49ea0a5ec7f4be0" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyOrganizations/__files/user_orgs-2985ea8b-b43b-45ab-b2ce-162ca7bdb55f.json", + "mode": "100644", + "type": "blob", + "sha": "c4f218ad0165a6680adc5577fcf0477e71c00ce5", + "size": 7389, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/c4f218ad0165a6680adc5577fcf0477e71c00ce5" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyOrganizations/mappings", + "mode": "040000", + "type": "tree", + "sha": "d662da201ffb08f3ceea15431d28413de0498590", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/d662da201ffb08f3ceea15431d28413de0498590" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyOrganizations/mappings/user-2-a4cacc.json", + "mode": "100644", + "type": "blob", + "sha": "7ed6e74a1723d42cafd95c89ecb10ed3784f3aa3", + "size": 1829, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/7ed6e74a1723d42cafd95c89ecb10ed3784f3aa3" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyOrganizations/mappings/user_orgs-1-2985ea.json", + "mode": "100644", + "type": "blob", + "sha": "14ce685fba19a913e3378b2fb440d60169f19b75", + "size": 1828, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/14ce685fba19a913e3378b2fb440d60169f19b75" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyOrganizationsContainMyTeams", + "mode": "040000", + "type": "tree", + "sha": "733f0393885af4a697dc9cee1f8f660ab720031f", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/733f0393885af4a697dc9cee1f8f660ab720031f" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyOrganizationsContainMyTeams/__files", + "mode": "040000", + "type": "tree", + "sha": "50c0e5709828b1c5f4ca1c9602a38f28552aed5b", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/50c0e5709828b1c5f4ca1c9602a38f28552aed5b" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyOrganizationsContainMyTeams/__files/user-fd1c2585-40a5-4ae9-85b5-5ab28ed9379e.json", + "mode": "100644", + "type": "blob", + "sha": "39d6c8353e0136a1f26e004bf49ea0a5ec7f4be0", + "size": 1640, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/39d6c8353e0136a1f26e004bf49ea0a5ec7f4be0" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyOrganizationsContainMyTeams/__files/user_orgs-f3813253-5f7d-47c0-91e0-35803e96fe36.json", + "mode": "100644", + "type": "blob", + "sha": "c4f218ad0165a6680adc5577fcf0477e71c00ce5", + "size": 7389, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/c4f218ad0165a6680adc5577fcf0477e71c00ce5" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyOrganizationsContainMyTeams/__files/user_teams-49ff8dab-d286-4880-8c78-367cb7c360a2.json", + "mode": "100644", + "type": "blob", + "sha": "019f45baa1ba2e5b169fbdf631fce0a732631735", + "size": 51267, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/019f45baa1ba2e5b169fbdf631fce0a732631735" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyOrganizationsContainMyTeams/mappings", + "mode": "040000", + "type": "tree", + "sha": "7a4744f5af51bcfe782e7c44534f1247b549026b", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/7a4744f5af51bcfe782e7c44534f1247b549026b" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyOrganizationsContainMyTeams/mappings/user-1-fd1c25.json", + "mode": "100644", + "type": "blob", + "sha": "ecbe99a927b835e213fa28b472dcc48ff6f8b9aa", + "size": 1829, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/ecbe99a927b835e213fa28b472dcc48ff6f8b9aa" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyOrganizationsContainMyTeams/mappings/user_orgs-3-f38132.json", + "mode": "100644", + "type": "blob", + "sha": "eb2feb3ea223bb310cae4af4335eedba4fd1f306", + "size": 1830, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/eb2feb3ea223bb310cae4af4335eedba4fd1f306" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyOrganizationsContainMyTeams/mappings/user_teams-2-49ff8d.json", + "mode": "100644", + "type": "blob", + "sha": "9799b6c9be8ca015884aeb9efceedf2de2b119f0", + "size": 1833, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/9799b6c9be8ca015884aeb9efceedf2de2b119f0" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself", + "mode": "040000", + "type": "tree", + "sha": "7186be3158ad4878e693661ff0c29841b15f015b", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/7186be3158ad4878e693661ff0c29841b15f015b" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files", + "mode": "040000", + "type": "tree", + "sha": "bf6a34b7452fed75f14a9e5cc8da736d7362e9cd", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/bf6a34b7452fed75f14a9e5cc8da736d7362e9cd" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/organizations_107424_teams-2fdc0562-25ee-4ff7-8207-444ebbc94abd.json", + "mode": "100644", + "type": "blob", + "sha": "c2ff66ebdb5805c5a72bfb23b38b81adefd74552", + "size": 13690, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/c2ff66ebdb5805c5a72bfb23b38b81adefd74552" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/organizations_107424_teams-864a80f6-b8f4-4a01-bf1b-06d0977753da.json", + "mode": "100644", + "type": "blob", + "sha": "c2ff66ebdb5805c5a72bfb23b38b81adefd74552", + "size": 13690, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/c2ff66ebdb5805c5a72bfb23b38b81adefd74552" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/organizations_107424_teams-881e0897-44cd-42c4-88c4-50046ee19a18.json", + "mode": "100644", + "type": "blob", + "sha": "c2ff66ebdb5805c5a72bfb23b38b81adefd74552", + "size": 13690, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/c2ff66ebdb5805c5a72bfb23b38b81adefd74552" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/organizations_107424_teams-bed0fcfe-7ccc-4b9c-aa07-32e6f68f2b74.json", + "mode": "100644", + "type": "blob", + "sha": "c2ff66ebdb5805c5a72bfb23b38b81adefd74552", + "size": 13690, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/c2ff66ebdb5805c5a72bfb23b38b81adefd74552" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/organizations_235526_teams-3945b427-290f-4fa2-a720-79cb00ba290e.json", + "mode": "100644", + "type": "blob", + "sha": "1f3e086149822a19e0ab6ce57e6495b68aafe3c1", + "size": 15232, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/1f3e086149822a19e0ab6ce57e6495b68aafe3c1" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/organizations_235526_teams-8591cc9c-9c1f-46ab-980f-784ed7ad2b54.json", + "mode": "100644", + "type": "blob", + "sha": "1f3e086149822a19e0ab6ce57e6495b68aafe3c1", + "size": 15232, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/1f3e086149822a19e0ab6ce57e6495b68aafe3c1" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/organizations_235526_teams-bed3177f-0cd7-4ebb-acff-67cc43fd2504.json", + "mode": "100644", + "type": "blob", + "sha": "1f3e086149822a19e0ab6ce57e6495b68aafe3c1", + "size": 15232, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/1f3e086149822a19e0ab6ce57e6495b68aafe3c1" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_beautify-web-62298d74-fe3c-459d-9f70-450e80247969.json", + "mode": "100644", + "type": "blob", + "sha": "af890f8e1475592ba75cead8ac9aada90fbcdd65", + "size": 1424, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/af890f8e1475592ba75cead8ac9aada90fbcdd65" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_beautify-web_teams-58684478-ae6b-43c2-b30c-af37aeb81621.json", + "mode": "100644", + "type": "blob", + "sha": "2803a9bac9e08c6d6fb20a791e04830bb1226805", + "size": 451, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/2803a9bac9e08c6d6fb20a791e04830bb1226805" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_cloudbees-ce8716a4-ec25-4626-9a3a-205e5558bd39.json", + "mode": "100644", + "type": "blob", + "sha": "a613ea268fac02466955aef8a4a9e2ec48b16fb6", + "size": 1512, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a613ea268fac02466955aef8a4a9e2ec48b16fb6" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_cloudbees_teams-1d3fc4da-c320-4621-bf6c-4fa95aeb487e.json", + "mode": "100644", + "type": "blob", + "sha": "e9477419e65ccbd6ec96a537c3899e701f95dd2f", + "size": 15348, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/e9477419e65ccbd6ec96a537c3899e701f95dd2f" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_cloudbees_teams-35c47636-9b2c-4e43-866a-62d34ddf04fb.json", + "mode": "100644", + "type": "blob", + "sha": "e9477419e65ccbd6ec96a537c3899e701f95dd2f", + "size": 15348, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/e9477419e65ccbd6ec96a537c3899e701f95dd2f" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_cloudbees_teams-4d6d15f8-8345-4ce7-af12-dcd50335d2c0.json", + "mode": "100644", + "type": "blob", + "sha": "e9477419e65ccbd6ec96a537c3899e701f95dd2f", + "size": 15348, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/e9477419e65ccbd6ec96a537c3899e701f95dd2f" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_cloudbees_teams-57f5eb24-dd30-4d2c-9e6a-90dcd973e21f.json", + "mode": "100644", + "type": "blob", + "sha": "e9477419e65ccbd6ec96a537c3899e701f95dd2f", + "size": 15348, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/e9477419e65ccbd6ec96a537c3899e701f95dd2f" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_cloudbees_teams-632605dd-2411-4c5d-8fd0-7d57f23cb0a5.json", + "mode": "100644", + "type": "blob", + "sha": "e9477419e65ccbd6ec96a537c3899e701f95dd2f", + "size": 15348, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/e9477419e65ccbd6ec96a537c3899e701f95dd2f" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_cloudbees_teams-c3bba3a6-1c09-4663-bbd5-61f4184faffa.json", + "mode": "100644", + "type": "blob", + "sha": "e9477419e65ccbd6ec96a537c3899e701f95dd2f", + "size": 15348, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/e9477419e65ccbd6ec96a537c3899e701f95dd2f" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_cloudbees_teams-fbf640ca-c41a-4e82-9c5a-75ba2175bc0c.json", + "mode": "100644", + "type": "blob", + "sha": "e9477419e65ccbd6ec96a537c3899e701f95dd2f", + "size": 15348, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/e9477419e65ccbd6ec96a537c3899e701f95dd2f" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_github-api-test-org-a529986c-70bb-4329-9816-ec1f75673e9c.json", + "mode": "100644", + "type": "blob", + "sha": "d4c06c4749cf16912257b405f5b36b3e49b2e0db", + "size": 1480, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d4c06c4749cf16912257b405f5b36b3e49b2e0db" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_github-api-test-org_teams-4eeff351-c1bd-449c-bf07-0cd3d013dc9b.json", + "mode": "100644", + "type": "blob", + "sha": "735846096f138b7b4623fdd442204ef7a82e1562", + "size": 1447, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/735846096f138b7b4623fdd442204ef7a82e1562" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_github-api-test-org_teams-c4dada63-33ed-4ac0-856c-e35d466ac7f8.json", + "mode": "100644", + "type": "blob", + "sha": "735846096f138b7b4623fdd442204ef7a82e1562", + "size": 1447, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/735846096f138b7b4623fdd442204ef7a82e1562" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkins-inc-e0b11bd2-736d-44c8-aa64-f5848d4691f6.json", + "mode": "100644", + "type": "blob", + "sha": "94e545df924b3fedf2164bbf345074a2e54615eb", + "size": 1595, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/94e545df924b3fedf2164bbf345074a2e54615eb" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkins-inc_teams-383d61fc-1c69-4ae1-919a-b98b678b47cd.json", + "mode": "100644", + "type": "blob", + "sha": "8cfdb451c0b53fb6cab391859e809edde8d3ad1f", + "size": 496, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/8cfdb451c0b53fb6cab391859e809edde8d3ad1f" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkins-infra-b7c4f477-4e3a-4505-874e-dd816080c7f4.json", + "mode": "100644", + "type": "blob", + "sha": "da44f65091e8bd6ba761053842345816a259a622", + "size": 1606, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/da44f65091e8bd6ba761053842345816a259a622" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkins-infra_teams-196db464-b833-490c-97e4-79f79fe29f07.json", + "mode": "100644", + "type": "blob", + "sha": "54b8b4040d715442c5dd42686e1eae0458488f71", + "size": 9846, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/54b8b4040d715442c5dd42686e1eae0458488f71" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkins-infra_teams-a7f22b01-940f-40f5-9496-f3e0bd87dbf8.json", + "mode": "100644", + "type": "blob", + "sha": "54b8b4040d715442c5dd42686e1eae0458488f71", + "size": 9846, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/54b8b4040d715442c5dd42686e1eae0458488f71" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkins-infra_teams-b5053ddf-d2f8-4ea4-a246-1118f02f3ac7.json", + "mode": "100644", + "type": "blob", + "sha": "54b8b4040d715442c5dd42686e1eae0458488f71", + "size": 9846, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/54b8b4040d715442c5dd42686e1eae0458488f71" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkins-infra_teams-b6bb7856-85f0-4bcb-9c9c-5ab9c1be8e74.json", + "mode": "100644", + "type": "blob", + "sha": "54b8b4040d715442c5dd42686e1eae0458488f71", + "size": 9846, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/54b8b4040d715442c5dd42686e1eae0458488f71" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkins-infra_teams-f8bd811b-e074-4e0a-b2f3-dc3f749b5c07.json", + "mode": "100644", + "type": "blob", + "sha": "54b8b4040d715442c5dd42686e1eae0458488f71", + "size": 9846, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/54b8b4040d715442c5dd42686e1eae0458488f71" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkinsci-eac3f0df-0404-4c43-9864-bf3d6f249294.json", + "mode": "100644", + "type": "blob", + "sha": "4ebe57eec6263d048336cf6639873a80a9d48110", + "size": 1686, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/4ebe57eec6263d048336cf6639873a80a9d48110" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkinsci_teams-0aaf0590-1a5b-4323-8dbc-8fc63b3c5775.json", + "mode": "100644", + "type": "blob", + "sha": "1d8d4c56aa45e5e0b0ad1a80e60dde41f14ab091", + "size": 15550, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/1d8d4c56aa45e5e0b0ad1a80e60dde41f14ab091" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkinsci_teams-2832b4d6-9274-4137-9421-4855660803ec.json", + "mode": "100644", + "type": "blob", + "sha": "1d8d4c56aa45e5e0b0ad1a80e60dde41f14ab091", + "size": 15550, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/1d8d4c56aa45e5e0b0ad1a80e60dde41f14ab091" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkinsci_teams-421fa98d-71d5-4c1c-a6cb-4f7f301668c7.json", + "mode": "100644", + "type": "blob", + "sha": "1d8d4c56aa45e5e0b0ad1a80e60dde41f14ab091", + "size": 15550, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/1d8d4c56aa45e5e0b0ad1a80e60dde41f14ab091" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkinsci_teams-4922cdbe-d115-4bb4-94be-4f75c07fc45d.json", + "mode": "100644", + "type": "blob", + "sha": "1d8d4c56aa45e5e0b0ad1a80e60dde41f14ab091", + "size": 15550, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/1d8d4c56aa45e5e0b0ad1a80e60dde41f14ab091" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkinsci_teams-4b9e6062-54b4-41b5-ba0d-9c891b471122.json", + "mode": "100644", + "type": "blob", + "sha": "1d8d4c56aa45e5e0b0ad1a80e60dde41f14ab091", + "size": 15550, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/1d8d4c56aa45e5e0b0ad1a80e60dde41f14ab091" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkinsci_teams-51a481cc-1f18-4eae-a2c7-3835859468b4.json", + "mode": "100644", + "type": "blob", + "sha": "1d8d4c56aa45e5e0b0ad1a80e60dde41f14ab091", + "size": 15550, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/1d8d4c56aa45e5e0b0ad1a80e60dde41f14ab091" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkinsci_teams-7e7d35f3-0e07-4cbb-a814-e363eca72d3d.json", + "mode": "100644", + "type": "blob", + "sha": "1d8d4c56aa45e5e0b0ad1a80e60dde41f14ab091", + "size": 15550, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/1d8d4c56aa45e5e0b0ad1a80e60dde41f14ab091" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkinsci_teams-90bfe4fd-6ad3-429d-b35d-2cac4f0c83f4.json", + "mode": "100644", + "type": "blob", + "sha": "1d8d4c56aa45e5e0b0ad1a80e60dde41f14ab091", + "size": 15550, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/1d8d4c56aa45e5e0b0ad1a80e60dde41f14ab091" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkinsci_teams-a9e65166-cb20-4ab8-ac9d-3ef6b07ecf08.json", + "mode": "100644", + "type": "blob", + "sha": "1d8d4c56aa45e5e0b0ad1a80e60dde41f14ab091", + "size": 15550, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/1d8d4c56aa45e5e0b0ad1a80e60dde41f14ab091" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkinsci_teams-acf98bee-b6c1-4f33-b62e-f86b8d5445fe.json", + "mode": "100644", + "type": "blob", + "sha": "1d8d4c56aa45e5e0b0ad1a80e60dde41f14ab091", + "size": 15550, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/1d8d4c56aa45e5e0b0ad1a80e60dde41f14ab091" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/orgs_jenkinsci_teams-bedcaedb-24fc-4a6e-a099-b64fd26d4e97.json", + "mode": "100644", + "type": "blob", + "sha": "1d8d4c56aa45e5e0b0ad1a80e60dde41f14ab091", + "size": 15550, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/1d8d4c56aa45e5e0b0ad1a80e60dde41f14ab091" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/user-9a793342-57f8-4135-bd51-f0f96e57d45b.json", + "mode": "100644", + "type": "blob", + "sha": "41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0", + "size": 1640, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/__files/user_teams-d60dafe1-79c4-4212-9544-739b7ee976b9.json", + "mode": "100644", + "type": "blob", + "sha": "4081f5b6d9ac2986f1017b3df42d9150964faf3c", + "size": 53079, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/4081f5b6d9ac2986f1017b3df42d9150964faf3c" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings", + "mode": "040000", + "type": "tree", + "sha": "ca37140538bc9e6f6ec5d0d7b3bc7f83876951a2", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/ca37140538bc9e6f6ec5d0d7b3bc7f83876951a2" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/organizations_107424_teams-11-bed0fc.json", + "mode": "100644", + "type": "blob", + "sha": "09030621284bdd653791470797cffb79a0a0f534", + "size": 2216, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/09030621284bdd653791470797cffb79a0a0f534" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/organizations_107424_teams-20-2fdc05.json", + "mode": "100644", + "type": "blob", + "sha": "eaa5eaaff30aab18b44f16c582542d7f41b2dd18", + "size": 2248, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/eaa5eaaff30aab18b44f16c582542d7f41b2dd18" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/organizations_107424_teams-23-864a80.json", + "mode": "100644", + "type": "blob", + "sha": "a6841a3702f94473d3602ceeab879a1a7eb135c0", + "size": 2248, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a6841a3702f94473d3602ceeab879a1a7eb135c0" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/organizations_107424_teams-26-881e08.json", + "mode": "100644", + "type": "blob", + "sha": "b6308f6add57ace906007effc77d1e9ac9cac9f3", + "size": 2183, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/b6308f6add57ace906007effc77d1e9ac9cac9f3" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/organizations_235526_teams-35-8591cc.json", + "mode": "100644", + "type": "blob", + "sha": "6024ba473089f1fd271162a0d3227eee52403890", + "size": 2364, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/6024ba473089f1fd271162a0d3227eee52403890" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/organizations_235526_teams-44-3945b4.json", + "mode": "100644", + "type": "blob", + "sha": "343a409c83d618f427cf4ab440e1934690522a36", + "size": 2396, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/343a409c83d618f427cf4ab440e1934690522a36" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/organizations_235526_teams-47-bed317.json", + "mode": "100644", + "type": "blob", + "sha": "de2c847a581da82c40413ff7bbbbb28c6defd110", + "size": 2331, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/de2c847a581da82c40413ff7bbbbb28c6defd110" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_beautify-web-67-62298d.json", + "mode": "100644", + "type": "blob", + "sha": "2eecc0c07f03481ff04783d3358ac8568b8f8307", + "size": 1911, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/2eecc0c07f03481ff04783d3358ac8568b8f8307" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_beautify-web_teams-68-586844.json", + "mode": "100644", + "type": "blob", + "sha": "68fd97a0fdf6a3b50bfe528f9df5d975caaaed0a", + "size": 1873, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/68fd97a0fdf6a3b50bfe528f9df5d975caaaed0a" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_cloudbees-33-ce8716.json", + "mode": "100644", + "type": "blob", + "sha": "509206ee64f59b8b5812b41f2bee136bfd6616d9", + "size": 1902, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/509206ee64f59b8b5812b41f2bee136bfd6616d9" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_cloudbees_teams-34-57f5eb.json", + "mode": "100644", + "type": "blob", + "sha": "636488acb5e64d7951ceed800a65bb86d5589810", + "size": 2178, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/636488acb5e64d7951ceed800a65bb86d5589810" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_cloudbees_teams-37-632605.json", + "mode": "100644", + "type": "blob", + "sha": "e9ffceaef6d2df3df437a09ac2feeb658d640499", + "size": 2204, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/e9ffceaef6d2df3df437a09ac2feeb658d640499" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_cloudbees_teams-39-fbf640.json", + "mode": "100644", + "type": "blob", + "sha": "a8427db8009e71f05b0ac5781bf5c7c2d159b44f", + "size": 2204, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a8427db8009e71f05b0ac5781bf5c7c2d159b44f" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_cloudbees_teams-41-c3bba3.json", + "mode": "100644", + "type": "blob", + "sha": "7d1f37026a801167ac2f69aa7f7e5b589d418913", + "size": 2204, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/7d1f37026a801167ac2f69aa7f7e5b589d418913" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_cloudbees_teams-43-1d3fc4.json", + "mode": "100644", + "type": "blob", + "sha": "4f2a2e4fb5dba4112308f991696750974aa25ee7", + "size": 2204, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/4f2a2e4fb5dba4112308f991696750974aa25ee7" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_cloudbees_teams-46-4d6d15.json", + "mode": "100644", + "type": "blob", + "sha": "e9328864dbcfb3bffd4d79ecf648767af28786b1", + "size": 2204, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/e9328864dbcfb3bffd4d79ecf648767af28786b1" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_cloudbees_teams-49-35c476.json", + "mode": "100644", + "type": "blob", + "sha": "d4acdf13eaa2c0f77496387e00479a11534d411c", + "size": 2145, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d4acdf13eaa2c0f77496387e00479a11534d411c" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_github-api-test-org-51-a52998.json", + "mode": "100644", + "type": "blob", + "sha": "86c21f1d4df770075dec629c461703c8523eff84", + "size": 1932, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/86c21f1d4df770075dec629c461703c8523eff84" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_github-api-test-org_teams-52-c4dada.json", + "mode": "100644", + "type": "blob", + "sha": "118e07a04bad7b608e16102c565c4550cc3311e1", + "size": 2064, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/118e07a04bad7b608e16102c565c4550cc3311e1" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_github-api-test-org_teams-54-4eeff3.json", + "mode": "100644", + "type": "blob", + "sha": "d2f4833e91665cfd632ae7742d969c584dbb3e5b", + "size": 2031, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d2f4833e91665cfd632ae7742d969c584dbb3e5b" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkins-inc-30-e0b11b.json", + "mode": "100644", + "type": "blob", + "sha": "7973e820de36ba087c618376d972e6cd2f10de5f", + "size": 1908, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/7973e820de36ba087c618376d972e6cd2f10de5f" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkins-inc_teams-31-383d61.json", + "mode": "100644", + "type": "blob", + "sha": "95f45b5ea46cb16a5cc8ca782293024aeba34f88", + "size": 1870, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/95f45b5ea46cb16a5cc8ca782293024aeba34f88" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkins-infra-56-b7c4f4.json", + "mode": "100644", + "type": "blob", + "sha": "3e1f34e0e27aa61e26494088ddf289f31b19546c", + "size": 1914, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/3e1f34e0e27aa61e26494088ddf289f31b19546c" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkins-infra_teams-57-196db4.json", + "mode": "100644", + "type": "blob", + "sha": "066b8389d92d4dadd486018b513fb390ad966950", + "size": 2034, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/066b8389d92d4dadd486018b513fb390ad966950" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkins-infra_teams-59-b6bb78.json", + "mode": "100644", + "type": "blob", + "sha": "4fbe1b0ca8c6e42c001da3e405507fda3ab83161", + "size": 2064, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/4fbe1b0ca8c6e42c001da3e405507fda3ab83161" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkins-infra_teams-61-a7f22b.json", + "mode": "100644", + "type": "blob", + "sha": "5b605a23a5158aa38f12e96337a5f88da1eb34e6", + "size": 2064, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/5b605a23a5158aa38f12e96337a5f88da1eb34e6" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkins-infra_teams-63-b5053d.json", + "mode": "100644", + "type": "blob", + "sha": "17e61fa77aebf0055464c4bedf908f5a5184b3da", + "size": 2064, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/17e61fa77aebf0055464c4bedf908f5a5184b3da" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkins-infra_teams-65-f8bd81.json", + "mode": "100644", + "type": "blob", + "sha": "6c24e9741017442dd8d3ec2177263aa10d4be6f1", + "size": 2001, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/6c24e9741017442dd8d3ec2177263aa10d4be6f1" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkinsci-3-eac3f0.json", + "mode": "100644", + "type": "blob", + "sha": "41eb80fe8b6b6276595bb694f0c0540cbafefca5", + "size": 1901, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/41eb80fe8b6b6276595bb694f0c0540cbafefca5" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkinsci_teams-10-bedcae.json", + "mode": "100644", + "type": "blob", + "sha": "89774743a12641fa0e9c77ce30d6a6db211b823f", + "size": 2204, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/89774743a12641fa0e9c77ce30d6a6db211b823f" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkinsci_teams-13-acf98b.json", + "mode": "100644", + "type": "blob", + "sha": "8d2f10d96f379a14490063b57c510a31c0904a18", + "size": 2204, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/8d2f10d96f379a14490063b57c510a31c0904a18" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkinsci_teams-15-0aaf05.json", + "mode": "100644", + "type": "blob", + "sha": "cb0bc9c002b73b81863f012af772c5dd09bb462e", + "size": 2204, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/cb0bc9c002b73b81863f012af772c5dd09bb462e" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkinsci_teams-17-90bfe4.json", + "mode": "100644", + "type": "blob", + "sha": "bb0c8ba9f36c1dc257fc3db2779728cef7c52dea", + "size": 2204, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/bb0c8ba9f36c1dc257fc3db2779728cef7c52dea" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkinsci_teams-19-4922cd.json", + "mode": "100644", + "type": "blob", + "sha": "3586ff5c23bf2a15ebfa05fd1c4c69fcf4c1e2e9", + "size": 2204, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/3586ff5c23bf2a15ebfa05fd1c4c69fcf4c1e2e9" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkinsci_teams-22-4b9e60.json", + "mode": "100644", + "type": "blob", + "sha": "df9cae1a5cda5341b6b2453db6bacba83546e3c9", + "size": 2205, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/df9cae1a5cda5341b6b2453db6bacba83546e3c9" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkinsci_teams-25-51a481.json", + "mode": "100644", + "type": "blob", + "sha": "289dc326d711cc81ed9745cda7b3227679de5fda", + "size": 2206, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/289dc326d711cc81ed9745cda7b3227679de5fda" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkinsci_teams-28-a9e651.json", + "mode": "100644", + "type": "blob", + "sha": "864c2cbe8899b0164dac140dfbbff2be27feb655", + "size": 2146, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/864c2cbe8899b0164dac140dfbbff2be27feb655" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkinsci_teams-4-421fa9.json", + "mode": "100644", + "type": "blob", + "sha": "f33564ee613662e0b6e5e855eb56201132bddb8f", + "size": 2177, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/f33564ee613662e0b6e5e855eb56201132bddb8f" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkinsci_teams-6-7e7d35.json", + "mode": "100644", + "type": "blob", + "sha": "20b1e61e0caa683fe157c1b2551a78bb28ac9877", + "size": 2203, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/20b1e61e0caa683fe157c1b2551a78bb28ac9877" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/orgs_jenkinsci_teams-8-2832b4.json", + "mode": "100644", + "type": "blob", + "sha": "68af53e5cf96e9fbc57d5a49c8797eb7e428bf2f", + "size": 2203, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/68af53e5cf96e9fbc57d5a49c8797eb7e428bf2f" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_1450069_members_bitwiseman-50-4957ae.json", + "mode": "100644", + "type": "blob", + "sha": "18d71043ccdcf446d14ff5138d03edb76d8e7a30", + "size": 1565, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/18d71043ccdcf446d14ff5138d03edb76d8e7a30" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_1809126_members_bitwiseman-18-242ec4.json", + "mode": "100644", + "type": "blob", + "sha": "5c40dc2f078b5a96fa32ed208615ded87fed4117", + "size": 1565, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/5c40dc2f078b5a96fa32ed208615ded87fed4117" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_1882929_members_bitwiseman-66-285fc3.json", + "mode": "100644", + "type": "blob", + "sha": "b92c69fda766c4f1e199a26d5e20e48bd15979eb", + "size": 1565, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/b92c69fda766c4f1e199a26d5e20e48bd15979eb" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_1941826_members_bitwiseman-32-094e4d.json", + "mode": "100644", + "type": "blob", + "sha": "70ed3af277e8d3a33f50faef9f05c38ad07bb954", + "size": 1565, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/70ed3af277e8d3a33f50faef9f05c38ad07bb954" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_1986920_members_bitwiseman-29-0dd3d9.json", + "mode": "100644", + "type": "blob", + "sha": "15c22b373b29bfee531f3af58bf1a1185b2f1712", + "size": 1565, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/15c22b373b29bfee531f3af58bf1a1185b2f1712" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_2070581_members_bitwiseman-42-e22d18.json", + "mode": "100644", + "type": "blob", + "sha": "044d16e558f76f5c7279283336888ab7e236fdfe", + "size": 1565, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/044d16e558f76f5c7279283336888ab7e236fdfe" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_2185547_members_bitwiseman-14-301ee9.json", + "mode": "100644", + "type": "blob", + "sha": "9b8c9ca97e1c53be8bfb3de93ced27c77b9560b2", + "size": 1565, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/9b8c9ca97e1c53be8bfb3de93ced27c77b9560b2" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_2188150_members_bitwiseman-58-1a21b5.json", + "mode": "100644", + "type": "blob", + "sha": "96097906093d6d0b1544b84221614a18ee17156f", + "size": 1565, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/96097906093d6d0b1544b84221614a18ee17156f" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_2278154_members_bitwiseman-60-2a2981.json", + "mode": "100644", + "type": "blob", + "sha": "d8daf063c9b34c48182785149fdea4b1b60ed85c", + "size": 1565, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d8daf063c9b34c48182785149fdea4b1b60ed85c" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_2300722_members_bitwiseman-7-9bec56.json", + "mode": "100644", + "type": "blob", + "sha": "5d50f8a0dbe5da4c82099ab4132ff5e1aef6ceb3", + "size": 1564, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/5d50f8a0dbe5da4c82099ab4132ff5e1aef6ceb3" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_2384898_members_bitwiseman-40-95da17.json", + "mode": "100644", + "type": "blob", + "sha": "a5883f2b100cc78aa125bf4a9d642ee3f34442de", + "size": 1565, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a5883f2b100cc78aa125bf4a9d642ee3f34442de" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_2384906_members_bitwiseman-36-f56cc4.json", + "mode": "100644", + "type": "blob", + "sha": "fb0470334de3b2e8153b03f8968924a3c3889a3d", + "size": 1565, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/fb0470334de3b2e8153b03f8968924a3c3889a3d" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_2478842_members_bitwiseman-16-89727f.json", + "mode": "100644", + "type": "blob", + "sha": "30da85237abe6cc13947ea5d475e7fac8a74996e", + "size": 1565, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/30da85237abe6cc13947ea5d475e7fac8a74996e" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_2510135_members_bitwiseman-62-0a3910.json", + "mode": "100644", + "type": "blob", + "sha": "0d802f75c1e5a5d85932131b51931d9ce3c95aa0", + "size": 1565, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/0d802f75c1e5a5d85932131b51931d9ce3c95aa0" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_2658933_members_bitwiseman-64-23b3d8.json", + "mode": "100644", + "type": "blob", + "sha": "da949fe0d38259dcca3bcf9f29db9073569127fa", + "size": 1565, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/da949fe0d38259dcca3bcf9f29db9073569127fa" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_2832516_members_bitwiseman-27-01adc0.json", + "mode": "100644", + "type": "blob", + "sha": "75b9e141d7feadf78b09f68efa08c4b525792659", + "size": 1565, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/75b9e141d7feadf78b09f68efa08c4b525792659" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_2832517_members_bitwiseman-21-bd3f96.json", + "mode": "100644", + "type": "blob", + "sha": "45f08f13ed85f0f0b8511e97d360caad8cadd879", + "size": 1565, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/45f08f13ed85f0f0b8511e97d360caad8cadd879" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_2915408_members_bitwiseman-45-b4fb18.json", + "mode": "100644", + "type": "blob", + "sha": "8c82e9db9b8740475a1706486a52758073524d7c", + "size": 1565, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/8c82e9db9b8740475a1706486a52758073524d7c" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_2934265_members_bitwiseman-24-f07c2b.json", + "mode": "100644", + "type": "blob", + "sha": "a9004fd5987b180f70e26841cfcf44efd836c89a", + "size": 1565, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a9004fd5987b180f70e26841cfcf44efd836c89a" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_3023453_members_bitwiseman-12-2724fa.json", + "mode": "100644", + "type": "blob", + "sha": "483a48957c075d974ec5b7e39aeee851c0f48cda", + "size": 1565, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/483a48957c075d974ec5b7e39aeee851c0f48cda" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_3136781_members_bitwiseman-48-ea7a1b.json", + "mode": "100644", + "type": "blob", + "sha": "6b4856a81d5b7584c3cff598191d282021182c28", + "size": 1565, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/6b4856a81d5b7584c3cff598191d282021182c28" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_3451996_members_bitwiseman-55-0e9309.json", + "mode": "100644", + "type": "blob", + "sha": "2d88728db5eade8d7f6d19b4000ce68faaaecaa2", + "size": 1565, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/2d88728db5eade8d7f6d19b4000ce68faaaecaa2" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_496711_members_bitwiseman-9-9e90f9.json", + "mode": "100644", + "type": "blob", + "sha": "9bef3a928e122052efd7944a7db1a4b395a91e57", + "size": 1562, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/9bef3a928e122052efd7944a7db1a4b395a91e57" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_663296_members_bitwiseman-69-a75539.json", + "mode": "100644", + "type": "blob", + "sha": "590b0c6042f4705ccd9803e3640ca90b7d173845", + "size": 1563, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/590b0c6042f4705ccd9803e3640ca90b7d173845" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_711073_members_bitwiseman-5-9723ac.json", + "mode": "100644", + "type": "blob", + "sha": "520729d7d993894616f89c7a4471fb36c5867a35", + "size": 1562, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/520729d7d993894616f89c7a4471fb36c5867a35" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_820404_members_bitwiseman-53-be6df5.json", + "mode": "100644", + "type": "blob", + "sha": "f34d277545888d0a7d550813249cea02ff34043b", + "size": 1563, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/f34d277545888d0a7d550813249cea02ff34043b" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/teams_879403_members_bitwiseman-38-189224.json", + "mode": "100644", + "type": "blob", + "sha": "c41d9d1901538bda7743ec40573213a1a576fa4a", + "size": 1563, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/c41d9d1901538bda7743ec40573213a1a576fa4a" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/user-1-9a7933.json", + "mode": "100644", + "type": "blob", + "sha": "57d193d01ef6e25250bdbb9e43316fe33e9d1ab8", + "size": 1829, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/57d193d01ef6e25250bdbb9e43316fe33e9d1ab8" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testMyTeamsShouldIncludeMyself/mappings/user_teams-2-d60daf.json", + "mode": "100644", + "type": "blob", + "sha": "6f26ced8476dd3974d242f96ca417c6e9ee5b227", + "size": 1833, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/6f26ced8476dd3974d242f96ca417c6e9ee5b227" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testRateLimit", + "mode": "040000", + "type": "tree", + "sha": "07673339ca6063c426aab40fe5422f753349bef5", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/07673339ca6063c426aab40fe5422f753349bef5" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testRateLimit/__files", + "mode": "040000", + "type": "tree", + "sha": "95199f663251b19519205162df88cf8bbbe41878", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/95199f663251b19519205162df88cf8bbbe41878" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testRateLimit/__files/rate_limit-195911b7-d3b7-4eb4-9d1e-f39465b89bb8.json", + "mode": "100644", + "type": "blob", + "sha": "b1dd0485e97216984b459df84f8668ea0628d462", + "size": 495, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/b1dd0485e97216984b459df84f8668ea0628d462" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testRateLimit/__files/user-50a73d49-27a4-470e-bd8d-0665521673e3.json", + "mode": "100644", + "type": "blob", + "sha": "39d6c8353e0136a1f26e004bf49ea0a5ec7f4be0", + "size": 1640, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/39d6c8353e0136a1f26e004bf49ea0a5ec7f4be0" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testRateLimit/mappings", + "mode": "040000", + "type": "tree", + "sha": "24ec86f6c2827761ad238cd9e1286ac1f3297275", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/24ec86f6c2827761ad238cd9e1286ac1f3297275" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testRateLimit/mappings/rate_limit-1-195911.json", + "mode": "100644", + "type": "blob", + "sha": "39f9bba9085b44627c965692a40a0a4731aec52c", + "size": 1636, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/39f9bba9085b44627c965692a40a0a4731aec52c" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testRateLimit/mappings/user-2-50a73d.json", + "mode": "100644", + "type": "blob", + "sha": "49bf2e355f536db7a12c671685dc04c9d450f8aa", + "size": 1829, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/49bf2e355f536db7a12c671685dc04c9d450f8aa" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoCRUD", + "mode": "040000", + "type": "tree", + "sha": "54d25f73acdd21333d1ec0409bc4ec8b6ae9f0cb", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/54d25f73acdd21333d1ec0409bc4ec8b6ae9f0cb" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoCRUD/__files", + "mode": "040000", + "type": "tree", + "sha": "fe07fa4917f98725ae06bea655eb6431601f18e9", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/fe07fa4917f98725ae06bea655eb6431601f18e9" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoCRUD/__files/repos_bitwiseman_github-api-test-rename-39714670-728d-4f72-bf18-7b2e6f0ac276.json", + "mode": "100644", + "type": "blob", + "sha": "8a2517b27d17f84fb6d1aa58bbabb85899f52c40", + "size": 6089, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/8a2517b27d17f84fb6d1aa58bbabb85899f52c40" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoCRUD/__files/repos_bitwiseman_github-api-test-rename-6cc04a40-acd6-409b-b004-671cbc0c03c8.json", + "mode": "100644", + "type": "blob", + "sha": "3917a978b26787bbae9866aacf28fb840f1e2eac", + "size": 6134, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/3917a978b26787bbae9866aacf28fb840f1e2eac" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoCRUD/__files/repos_bitwiseman_github-api-test-rename-b0c1117a-926e-4ccd-baf3-c7813a465a7a.json", + "mode": "100644", + "type": "blob", + "sha": "a84ef21841516bb7eb2323b71b5b8dfa222caab2", + "size": 6090, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a84ef21841516bb7eb2323b71b5b8dfa222caab2" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoCRUD/__files/repos_bitwiseman_github-api-test-rename-b1b91949-0448-415c-998e-a38135c37661.json", + "mode": "100644", + "type": "blob", + "sha": "93129e32a6ccb2e356af0116c32a28218d75a3e0", + "size": 6088, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/93129e32a6ccb2e356af0116c32a28218d75a3e0" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoCRUD/__files/repos_bitwiseman_github-api-test-rename2-c1bd7f2a-cab0-4208-b4c8-f2a24bca9169.json", + "mode": "100644", + "type": "blob", + "sha": "3917a978b26787bbae9866aacf28fb840f1e2eac", + "size": 6134, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/3917a978b26787bbae9866aacf28fb840f1e2eac" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoCRUD/__files/user-3068cd06-63e4-4658-a037-d113f99314af.json", + "mode": "100644", + "type": "blob", + "sha": "41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0", + "size": 1640, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoCRUD/__files/user_repos-ead41396-5e65-4478-8e81-03bb7cd5d2d1.json", + "mode": "100644", + "type": "blob", + "sha": "3de34f9fc281449f9d0e255081873538dc546855", + "size": 6087, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/3de34f9fc281449f9d0e255081873538dc546855" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoCRUD/mappings", + "mode": "040000", + "type": "tree", + "sha": "8714ad885c88e7382244a9a531bff49c396e6abc", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/8714ad885c88e7382244a9a531bff49c396e6abc" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoCRUD/mappings/repos_bitwiseman_github-api-test-rename-2-b1b919.json", + "mode": "100644", + "type": "blob", + "sha": "25e1ac7ab6c7fc0679cc18f34fbad93109290e07", + "size": 2082, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/25e1ac7ab6c7fc0679cc18f34fbad93109290e07" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoCRUD/mappings/repos_bitwiseman_github-api-test-rename-3-397146.json", + "mode": "100644", + "type": "blob", + "sha": "6c09bad50470b75ba324a3dd7678c800a751889d", + "size": 2085, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/6c09bad50470b75ba324a3dd7678c800a751889d" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoCRUD/mappings/repos_bitwiseman_github-api-test-rename-4-b0c111.json", + "mode": "100644", + "type": "blob", + "sha": "8c58f4b75f625acf3bff2bc17f18fbcc2ffc39d2", + "size": 2080, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/8c58f4b75f625acf3bff2bc17f18fbcc2ffc39d2" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoCRUD/mappings/repos_bitwiseman_github-api-test-rename-5-6cc04a.json", + "mode": "100644", + "type": "blob", + "sha": "3a91e56b488f0ea55e6b21dd569bbf837d177445", + "size": 2058, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/3a91e56b488f0ea55e6b21dd569bbf837d177445" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoCRUD/mappings/repos_bitwiseman_github-api-test-rename2-7-c1bd7f.json", + "mode": "100644", + "type": "blob", + "sha": "438ef2476687111b54ec3e6deeeb560deebbffda", + "size": 1939, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/438ef2476687111b54ec3e6deeeb560deebbffda" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoCRUD/mappings/repos_bitwiseman_github-api-test-rename2-8-17b2c9.json", + "mode": "100644", + "type": "blob", + "sha": "5f568fe734310140eff8b223e835d920cb7cf9a0", + "size": 1550, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/5f568fe734310140eff8b223e835d920cb7cf9a0" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoCRUD/mappings/user-6-3068cd.json", + "mode": "100644", + "type": "blob", + "sha": "2aaa569d8e55c28eb296388758c564b860900c37", + "size": 1827, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/2aaa569d8e55c28eb296388758c564b860900c37" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoCRUD/mappings/user_repos-1-ead413.json", + "mode": "100644", + "type": "blob", + "sha": "3694fbd69479cade364139979235b86841d56a4d", + "size": 2177, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/3694fbd69479cade364139979235b86841d56a4d" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoLabel", + "mode": "040000", + "type": "tree", + "sha": "0702dc5b65ac2ea0149ebfb83921c7ced0558762", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/0702dc5b65ac2ea0149ebfb83921c7ced0558762" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoLabel/__files", + "mode": "040000", + "type": "tree", + "sha": "4849649bac7b5e70bbfa2b1c110e3b5d3067f3cd", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/4849649bac7b5e70bbfa2b1c110e3b5d3067f3cd" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoLabel/__files/repos_github-api-test-org_test-labels-fbcd5a5d-47a7-4817-bd69-cfe1afa2cdbd.json", + "mode": "100644", + "type": "blob", + "sha": "9cd54d11ef3aaab8cfe97be3c37ab4ec959b013c", + "size": 7283, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/9cd54d11ef3aaab8cfe97be3c37ab4ec959b013c" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoLabel/__files/repos_github-api-test-org_test-labels_labels-82e6433c-0947-48bc-a15a-398eefcc3280.json", + "mode": "100644", + "type": "blob", + "sha": "6181355c0a2a1c275e7c90441ac9de3cc9c9d43e", + "size": 1796, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/6181355c0a2a1c275e7c90441ac9de3cc9c9d43e" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoLabel/__files/user-05a1d265-edf9-4570-b398-a3eb7d3396e1.json", + "mode": "100644", + "type": "blob", + "sha": "41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0", + "size": 1640, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoLabel/mappings", + "mode": "040000", + "type": "tree", + "sha": "d19393776c7af574bbdb4cb08ddb9e4001cc9435", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/d19393776c7af574bbdb4cb08ddb9e4001cc9435" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoLabel/mappings/repos_github-api-test-org_test-labels-2-fbcd5a.json", + "mode": "100644", + "type": "blob", + "sha": "a793fdc3b83e2d3e51b90c312052a464ee554e4f", + "size": 1930, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a793fdc3b83e2d3e51b90c312052a464ee554e4f" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoLabel/mappings/repos_github-api-test-org_test-labels_labels-12-b2265f.json", + "mode": "100644", + "type": "blob", + "sha": "bbbb9baa0a4556a6edd08fb1c441d30823a95675", + "size": 2392, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/bbbb9baa0a4556a6edd08fb1c441d30823a95675" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoLabel/mappings/repos_github-api-test-org_test-labels_labels-3-82e643.json", + "mode": "100644", + "type": "blob", + "sha": "328d22e6a6f6070f67353563f022e5639f66f35e", + "size": 1913, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/328d22e6a6f6070f67353563f022e5639f66f35e" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoLabel/mappings/repos_github-api-test-org_test-labels_labels-5-ce07a3.json", + "mode": "100644", + "type": "blob", + "sha": "c9bef914933dfd5f85d9a85d1711c92c69e5e7a5", + "size": 2339, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/c9bef914933dfd5f85d9a85d1711c92c69e5e7a5" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoLabel/mappings/repos_github-api-test-org_test-labels_labels_enhancement-4-ba366e.json", + "mode": "100644", + "type": "blob", + "sha": "dccdd4cf0911b13b9f97c5a4a21be7ced79f17a6", + "size": 2134, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/dccdd4cf0911b13b9f97c5a4a21be7ced79f17a6" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoLabel/mappings/repos_github-api-test-org_test-labels_labels_test-10-3ee113.json", + "mode": "100644", + "type": "blob", + "sha": "0d70c8f03a65328710e558d4ef3101493feede5f", + "size": 2303, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/0d70c8f03a65328710e558d4ef3101493feede5f" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoLabel/mappings/repos_github-api-test-org_test-labels_labels_test-11-f2667d.json", + "mode": "100644", + "type": "blob", + "sha": "3769722d1309b2a0aa79f7e261ed21a91de72f68", + "size": 1558, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/3769722d1309b2a0aa79f7e261ed21a91de72f68" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoLabel/mappings/repos_github-api-test-org_test-labels_labels_test-6-6c1d5b.json", + "mode": "100644", + "type": "blob", + "sha": "c18f2d75263fa06675ef0a6fd3646f49285d605a", + "size": 2316, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/c18f2d75263fa06675ef0a6fd3646f49285d605a" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoLabel/mappings/repos_github-api-test-org_test-labels_labels_test-7-aceb5f.json", + "mode": "100644", + "type": "blob", + "sha": "796c73c9db94053b9ed4d055ed35b4ce0af00e6b", + "size": 2253, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/796c73c9db94053b9ed4d055ed35b4ce0af00e6b" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoLabel/mappings/repos_github-api-test-org_test-labels_labels_test-8-0dc6e2.json", + "mode": "100644", + "type": "blob", + "sha": "d3294e4dd493f78cc7f7178e4408930c45930c1b", + "size": 2371, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d3294e4dd493f78cc7f7178e4408930c45930c1b" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoLabel/mappings/repos_github-api-test-org_test-labels_labels_test-9-e4f1b8.json", + "mode": "100644", + "type": "blob", + "sha": "d81e429acd67c35da61656a7040688f15727db2d", + "size": 2291, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d81e429acd67c35da61656a7040688f15727db2d" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoLabel/mappings/repos_github-api-test-org_test-labels_labels_test2-13-633a55.json", + "mode": "100644", + "type": "blob", + "sha": "00543e0ef320b2559f3348a4f09358d40ff796cb", + "size": 2137, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/00543e0ef320b2559f3348a4f09358d40ff796cb" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoLabel/mappings/repos_github-api-test-org_test-labels_labels_test2-14-fc4fdf.json", + "mode": "100644", + "type": "blob", + "sha": "a29288a94af642a36c6b6f13749446393c7baaf7", + "size": 1560, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a29288a94af642a36c6b6f13749446393c7baaf7" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepoLabel/mappings/user-1-05a1d2.json", + "mode": "100644", + "type": "blob", + "sha": "1e24b48d6ddef672f14cc3f65622c2157963c147", + "size": 1827, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/1e24b48d6ddef672f14cc3f65622c2157963c147" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepositoryWithAutoInitializationCRUD", + "mode": "040000", + "type": "tree", + "sha": "84afac988ecc59e9f2789204c6bee16ce6474e88", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/84afac988ecc59e9f2789204c6bee16ce6474e88" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepositoryWithAutoInitializationCRUD/__files", + "mode": "040000", + "type": "tree", + "sha": "9f30e81bf77f8509b6a6bd795755205fbe521a60", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/9f30e81bf77f8509b6a6bd795755205fbe521a60" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepositoryWithAutoInitializationCRUD/__files/repos_bitwiseman_github-api-test-autoinit-51dabcc5-7825-4251-b560-8927ffa265b5.json", + "mode": "100644", + "type": "blob", + "sha": "6bded5847f8a25212313ee30d9f178215ffe72a5", + "size": 6192, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/6bded5847f8a25212313ee30d9f178215ffe72a5" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepositoryWithAutoInitializationCRUD/__files/repos_bitwiseman_github-api-test-autoinit-64af61d8-56b5-4b55-ad9f-ca9d6597e07a.json", + "mode": "100644", + "type": "blob", + "sha": "54419b458971cc1f05db9b8251b7c6e13c48c936", + "size": 6190, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/54419b458971cc1f05db9b8251b7c6e13c48c936" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepositoryWithAutoInitializationCRUD/__files/repos_bitwiseman_github-api-test-autoinit-a1a05f8b-7bd8-4200-a587-fd99f720508b.json", + "mode": "100644", + "type": "blob", + "sha": "2528ff2249e5cdad7cb756a5ff887170ceadc017", + "size": 6191, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/2528ff2249e5cdad7cb756a5ff887170ceadc017" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepositoryWithAutoInitializationCRUD/__files/repos_bitwiseman_github-api-test-autoinit-c71176ad-bfc9-4e39-aed8-6c4abd1c5979.json", + "mode": "100644", + "type": "blob", + "sha": "6bded5847f8a25212313ee30d9f178215ffe72a5", + "size": 6192, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/6bded5847f8a25212313ee30d9f178215ffe72a5" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepositoryWithAutoInitializationCRUD/__files/repos_bitwiseman_github-api-test-autoinit_readme-459f3734-bfaa-4f29-97fd-69574b66d965.json", + "mode": "100644", + "type": "blob", + "sha": "63ca2a8ceb5ef25e1372399ccb31073d29efc84c", + "size": 1049, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/63ca2a8ceb5ef25e1372399ccb31073d29efc84c" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepositoryWithAutoInitializationCRUD/__files/user-b16c3b01-8cf2-4f90-a77a-f6ff9e371db0.json", + "mode": "100644", + "type": "blob", + "sha": "41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0", + "size": 1640, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepositoryWithAutoInitializationCRUD/__files/user_repos-7be48128-4960-4274-8681-118897a274af.json", + "mode": "100644", + "type": "blob", + "sha": "7ae78469db4a384a25e386d39e23d53bf40755e0", + "size": 6189, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/7ae78469db4a384a25e386d39e23d53bf40755e0" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepositoryWithAutoInitializationCRUD/mappings", + "mode": "040000", + "type": "tree", + "sha": "245bee775731e251f2b7f78233f337f836efa87c", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/245bee775731e251f2b7f78233f337f836efa87c" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepositoryWithAutoInitializationCRUD/mappings/repos_bitwiseman_github-api-test-autoinit-2-64af61.json", + "mode": "100644", + "type": "blob", + "sha": "60bdfb40a8734dd18435d86613bd8be7cdde7349", + "size": 2090, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/60bdfb40a8734dd18435d86613bd8be7cdde7349" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepositoryWithAutoInitializationCRUD/mappings/repos_bitwiseman_github-api-test-autoinit-3-a1a05f.json", + "mode": "100644", + "type": "blob", + "sha": "31cfd9d99d057d915868b60f98bd8eced6e5d778", + "size": 2093, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/31cfd9d99d057d915868b60f98bd8eced6e5d778" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepositoryWithAutoInitializationCRUD/mappings/repos_bitwiseman_github-api-test-autoinit-4-c71176.json", + "mode": "100644", + "type": "blob", + "sha": "64871009b16a3a0fd0b39320495777b2b4399f1f", + "size": 2088, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/64871009b16a3a0fd0b39320495777b2b4399f1f" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepositoryWithAutoInitializationCRUD/mappings/repos_bitwiseman_github-api-test-autoinit-7-51dabc.json", + "mode": "100644", + "type": "blob", + "sha": "eaf1e5576c9edeec77d5ded0478027e4debe10eb", + "size": 1942, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/eaf1e5576c9edeec77d5ded0478027e4debe10eb" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepositoryWithAutoInitializationCRUD/mappings/repos_bitwiseman_github-api-test-autoinit-8-42bbd1.json", + "mode": "100644", + "type": "blob", + "sha": "8d4bf32895748e090311a142e3e7b4561b316ed2", + "size": 1552, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/8d4bf32895748e090311a142e3e7b4561b316ed2" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepositoryWithAutoInitializationCRUD/mappings/repos_bitwiseman_github-api-test-autoinit_readme-5-459f37.json", + "mode": "100644", + "type": "blob", + "sha": "3aa978b34459c394df02d1852af0f8cd1281e113", + "size": 1959, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/3aa978b34459c394df02d1852af0f8cd1281e113" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepositoryWithAutoInitializationCRUD/mappings/user-6-b16c3b.json", + "mode": "100644", + "type": "blob", + "sha": "f883d38d787a16a2a54b8463f2ec0a4f0b2a5769", + "size": 1827, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/f883d38d787a16a2a54b8463f2ec0a4f0b2a5769" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testRepositoryWithAutoInitializationCRUD/mappings/user_repos-1-7be481.json", + "mode": "100644", + "type": "blob", + "sha": "78190bfb347c75e631e31199229149d2fa7a35a9", + "size": 2196, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/78190bfb347c75e631e31199229149d2fa7a35a9" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicOrganizationsWhenThereAreNone", + "mode": "040000", + "type": "tree", + "sha": "3c124c3ce80b48e7ea579232bca3420b8cfc57b8", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/3c124c3ce80b48e7ea579232bca3420b8cfc57b8" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicOrganizationsWhenThereAreNone/mappings", + "mode": "040000", + "type": "tree", + "sha": "f3752aac49c37843dbc6c77bdbb1e77e22df6b97", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/f3752aac49c37843dbc6c77bdbb1e77e22df6b97" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicOrganizationsWhenThereAreNone/mappings/users_bitwiseman_orgs-1-94ce73.json", + "mode": "100644", + "type": "blob", + "sha": "f74a0005b04674e3a2b78a60b73b39ec5e6acd57", + "size": 1475, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/f74a0005b04674e3a2b78a60b73b39ec5e6acd57" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicOrganizationsWhenThereAreSome", + "mode": "040000", + "type": "tree", + "sha": "28a045149f2f256ba129db0a7fdcb4146fa248a4", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/28a045149f2f256ba129db0a7fdcb4146fa248a4" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicOrganizationsWhenThereAreSome/__files", + "mode": "040000", + "type": "tree", + "sha": "a0f95f30a90d2f6ed0b19f86bc122a95558ddea7", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/a0f95f30a90d2f6ed0b19f86bc122a95558ddea7" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicOrganizationsWhenThereAreSome/__files/users_kohsuke_orgs-7ef9c5df-d48e-44be-ba15-e880b8e9558d.json", + "mode": "100644", + "type": "blob", + "sha": "e6d9bd62880727b3e0e6bd8140b9dacd26404b17", + "size": 7337, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/e6d9bd62880727b3e0e6bd8140b9dacd26404b17" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicOrganizationsWhenThereAreSome/mappings", + "mode": "040000", + "type": "tree", + "sha": "aae665674ac3971e70aa36a6ecbaaa03d28d7109", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/aae665674ac3971e70aa36a6ecbaaa03d28d7109" + }, + { + "path": "src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicOrganizationsWhenThereAreSome/mappings/users_kohsuke_orgs-1-7ef9c5.json", + "mode": "100644", + "type": "blob", + "sha": "068f466664e9af951c7c9a1395b1ba56b299f30c", + "size": 1536, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/068f466664e9af951c7c9a1395b1ba56b299f30c" + }, + { + "path": "src/test/resources/org/kohsuke/github/CommitTest", + "mode": "040000", + "type": "tree", + "sha": "746518b5a92a8db4e395c754634f27f4d1e720ea", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/746518b5a92a8db4e395c754634f27f4d1e720ea" + }, + { + "path": "src/test/resources/org/kohsuke/github/CommitTest/wiremock", + "mode": "040000", + "type": "tree", + "sha": "74bb1c360989cca95bc9f90c4576eb7e733713f8", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/74bb1c360989cca95bc9f90c4576eb7e733713f8" + }, + { + "path": "src/test/resources/org/kohsuke/github/CommitTest/wiremock/lastStatus", + "mode": "040000", + "type": "tree", + "sha": "4cf7bf4ae635281db0da95044771f906094c07bd", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/4cf7bf4ae635281db0da95044771f906094c07bd" + }, + { + "path": "src/test/resources/org/kohsuke/github/CommitTest/wiremock/lastStatus/__files", + "mode": "040000", + "type": "tree", + "sha": "d823ec87c9f17feb233bce7ad419f0d95e1b06f2", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/d823ec87c9f17feb233bce7ad419f0d95e1b06f2" + }, + { + "path": "src/test/resources/org/kohsuke/github/CommitTest/wiremock/lastStatus/__files/repos_stapler_stapler-dea29c4a-c5b6-460d-8550-09d75d487830.json", + "mode": "100644", + "type": "blob", + "sha": "2b0dafa9382575ed64aa08eacf3ab01cb79b2e62", + "size": 6450, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/2b0dafa9382575ed64aa08eacf3ab01cb79b2e62" + }, + { + "path": "src/test/resources/org/kohsuke/github/CommitTest/wiremock/lastStatus/__files/repos_stapler_stapler_statuses_6a243869aa3c3f80579102d00848a0083953d654-b564ee52-421b-4d1a-aa96-bdb613581b8a.json", + "mode": "100644", + "type": "blob", + "sha": "640e982ae3309b0029ddbf1c2fd63939f75e031d", + "size": 5089, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/640e982ae3309b0029ddbf1c2fd63939f75e031d" + }, + { + "path": "src/test/resources/org/kohsuke/github/CommitTest/wiremock/lastStatus/__files/repos_stapler_stapler_tags-7637217e-0e80-4f8b-bf01-93a7a97952fd.json", + "mode": "100644", + "type": "blob", + "sha": "3ab5627b9a5b474d601add9d2ac59c90ed2974e0", + "size": 14816, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/3ab5627b9a5b474d601add9d2ac59c90ed2974e0" + }, + { + "path": "src/test/resources/org/kohsuke/github/CommitTest/wiremock/lastStatus/__files/user-bde54f7e-5b5a-49b2-b94c-a0cf8f7a0d1a.json", + "mode": "100644", + "type": "blob", + "sha": "b9ce24cb03e26e4d59e94a45bb9eb783707b714a", + "size": 1368, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/b9ce24cb03e26e4d59e94a45bb9eb783707b714a" + }, + { + "path": "src/test/resources/org/kohsuke/github/CommitTest/wiremock/lastStatus/mappings", + "mode": "040000", + "type": "tree", + "sha": "a137aad0a482b80dd443c4d0ea3966e295a8d7bb", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/a137aad0a482b80dd443c4d0ea3966e295a8d7bb" + }, + { + "path": "src/test/resources/org/kohsuke/github/CommitTest/wiremock/lastStatus/mappings/repos_stapler_stapler-2-dea29c.json", + "mode": "100644", + "type": "blob", + "sha": "b426cf0b7eed0f06c07a3c35483719a57215bc5e", + "size": 1794, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/b426cf0b7eed0f06c07a3c35483719a57215bc5e" + }, + { + "path": "src/test/resources/org/kohsuke/github/CommitTest/wiremock/lastStatus/mappings/repos_stapler_stapler_statuses_6a243869aa3c3f80579102d00848a0083953d654-4-b564ee.json", + "mode": "100644", + "type": "blob", + "sha": "3c5bc5b03deed534b2e21906581b7472af90b3ad", + "size": 1901, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/3c5bc5b03deed534b2e21906581b7472af90b3ad" + }, + { + "path": "src/test/resources/org/kohsuke/github/CommitTest/wiremock/lastStatus/mappings/repos_stapler_stapler_tags-3-763721.json", + "mode": "100644", + "type": "blob", + "sha": "28396b47f50326385f058473ca30a336e1fd7a8d", + "size": 1967, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/28396b47f50326385f058473ca30a336e1fd7a8d" + }, + { + "path": "src/test/resources/org/kohsuke/github/CommitTest/wiremock/lastStatus/mappings/user-1-bde54f.json", + "mode": "100644", + "type": "blob", + "sha": "317af5be9bf491a3f057fd37a2f7379967a7aba6", + "size": 1739, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/317af5be9bf491a3f057fd37a2f7379967a7aba6" + }, + { + "path": "src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles", + "mode": "040000", + "type": "tree", + "sha": "9d1b8bfab132b3a900d8f398047f3d3a5f302e90", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/9d1b8bfab132b3a900d8f398047f3d3a5f302e90" + }, + { + "path": "src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files", + "mode": "040000", + "type": "tree", + "sha": "86b922be081342fb1590dbabaa8bad9cdeb55ba6", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/86b922be081342fb1590dbabaa8bad9cdeb55ba6" + }, + { + "path": "src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler-34276839-6f01-44ea-856d-5b26cc12edf8.json", + "mode": "100644", + "type": "blob", + "sha": "2b0dafa9382575ed64aa08eacf3ab01cb79b2e62", + "size": 6450, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/2b0dafa9382575ed64aa08eacf3ab01cb79b2e62" + }, + { + "path": "src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits-6214feb0-5ed5-4325-8407-2f75bef1c4bd.json", + "mode": "100644", + "type": "blob", + "sha": "f1f5e1fc996b8b7b22715d3319187e9d3d40c7bd", + "size": 125013, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/f1f5e1fc996b8b7b22715d3319187e9d3d40c7bd" + }, + { + "path": "src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_06b1108ec041fd8d6e7f54c8578d84a672fee9e4-4fa8c092-5fdf-4ac3-a09a-8713da340f66.json", + "mode": "100644", + "type": "blob", + "sha": "cfb7b6752743c4cd66d1a496e8d51d692e8837f2", + "size": 5422, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/cfb7b6752743c4cd66d1a496e8d51d692e8837f2" + }, + { + "path": "src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_06b1108ec041fd8d6e7f54c8578d84a672fee9e4-ad6e998e-9ae1-4bae-9da2-1dd49495d5cb.json", + "mode": "100644", + "type": "blob", + "sha": "cfb7b6752743c4cd66d1a496e8d51d692e8837f2", + "size": 5422, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/cfb7b6752743c4cd66d1a496e8d51d692e8837f2" + }, + { + "path": "src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_2a971c4e38c6d6693f7ad8b6768e4d74840d6679-8ac20af2-3f87-419a-b5cb-a96f5f2fd3c7.json", + "mode": "100644", + "type": "blob", + "sha": "b1a2837918fa3e41d5191c685cc7480e3793c3f5", + "size": 6339, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/b1a2837918fa3e41d5191c685cc7480e3793c3f5" + }, + { + "path": "src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_2a971c4e38c6d6693f7ad8b6768e4d74840d6679-c9650076-4963-4d6a-9c1c-07c6339a48dd.json", + "mode": "100644", + "type": "blob", + "sha": "b1a2837918fa3e41d5191c685cc7480e3793c3f5", + "size": 6339, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/b1a2837918fa3e41d5191c685cc7480e3793c3f5" + }, + { + "path": "src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_2f4ca0f03c1e6188867bddddce12ff213a107d9d-b7c821b4-b43e-44a2-bea6-83304ffae91f.json", + "mode": "100644", + "type": "blob", + "sha": "0b99503faed1692e4f2360ded4a3cdb497a37ab0", + "size": 11106, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/0b99503faed1692e4f2360ded4a3cdb497a37ab0" + }, + { + "path": "src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_2f4ca0f03c1e6188867bddddce12ff213a107d9d-dd34f14b-38e1-406d-94b8-c650832d9bd4.json", + "mode": "100644", + "type": "blob", + "sha": "0b99503faed1692e4f2360ded4a3cdb497a37ab0", + "size": 11106, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/0b99503faed1692e4f2360ded4a3cdb497a37ab0" + }, + { + "path": "src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_4f260c560ec120f4e2c2ed727244690b1f4d5dca-3e6d369c-c2ff-4835-abb3-00858c380485.json", + "mode": "100644", + "type": "blob", + "sha": "1777270b9683a79f808baef0ecc7654196d75639", + "size": 11924, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/1777270b9683a79f808baef0ecc7654196d75639" + }, + { + "path": "src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_4f260c560ec120f4e2c2ed727244690b1f4d5dca-8573f146-63d0-4ffe-9d91-e05573680be5.json", + "mode": "100644", + "type": "blob", + "sha": "1777270b9683a79f808baef0ecc7654196d75639", + "size": 11924, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/1777270b9683a79f808baef0ecc7654196d75639" + }, + { + "path": "src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_53ce34d7d89c5172ae4f4f3167e35852b1910b59-4c78237a-7bc9-49ce-9a1b-0bed99e888b4.json", + "mode": "100644", + "type": "blob", + "sha": "af12d8f85799c19d13dee4272fde369e6fb617da", + "size": 5486, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/af12d8f85799c19d13dee4272fde369e6fb617da" + }, + { + "path": "src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_53ce34d7d89c5172ae4f4f3167e35852b1910b59-5f3cc3b8-f231-4c58-9ffd-f0cf3c14d49b.json", + "mode": "100644", + "type": "blob", + "sha": "af12d8f85799c19d13dee4272fde369e6fb617da", + "size": 5486, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/af12d8f85799c19d13dee4272fde369e6fb617da" + }, + { + "path": "src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_6a243869aa3c3f80579102d00848a0083953d654-a7972e0c-a2e0-4e50-bd1a-374cfad5576c.json", + "mode": "100644", + "type": "blob", + "sha": "cd1ba6e40f4e6cb7b38cf451d4f02886f4d99267", + "size": 10740, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/cd1ba6e40f4e6cb7b38cf451d4f02886f4d99267" + }, + { + "path": "src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_6a243869aa3c3f80579102d00848a0083953d654-d76af952-0ff3-4514-9a38-93d9570c5b3c.json", + "mode": "100644", + "type": "blob", + "sha": "cd1ba6e40f4e6cb7b38cf451d4f02886f4d99267", + "size": 10740, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/cd1ba6e40f4e6cb7b38cf451d4f02886f4d99267" + }, + { + "path": "src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_72343298733508cced8dcb8eb43594bcc6130b26-73ac5fc1-ea49-4c48-bc8a-f306908d7836.json", + "mode": "100644", + "type": "blob", + "sha": "8da3c95dff2631eddd7761dc725a394a7e9acd7e", + "size": 5524, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/8da3c95dff2631eddd7761dc725a394a7e9acd7e" + }, + { + "path": "src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_72343298733508cced8dcb8eb43594bcc6130b26-77b7d93a-9cd6-48a5-af7d-2ee6e4efa296.json", + "mode": "100644", + "type": "blob", + "sha": "8da3c95dff2631eddd7761dc725a394a7e9acd7e", + "size": 5524, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/8da3c95dff2631eddd7761dc725a394a7e9acd7e" + }, + { + "path": "src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_950acbd60ed4289520dcd2a395e5d77f181e1cff-1aa53060-8df1-4455-ae37-21eed443f58b.json", + "mode": "100644", + "type": "blob", + "sha": "94257479a6fa86f40deda0abf98db6d26316529b", + "size": 11106, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/94257479a6fa86f40deda0abf98db6d26316529b" + }, + { + "path": "src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_950acbd60ed4289520dcd2a395e5d77f181e1cff-45c73127-9113-4bb6-8193-cedf907fa96a.json", + "mode": "100644", + "type": "blob", + "sha": "94257479a6fa86f40deda0abf98db6d26316529b", + "size": 11106, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/94257479a6fa86f40deda0abf98db6d26316529b" + }, + { + "path": "src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_d922b808068cf95d6f6ab624ce2c7f49d51f5321-35c73b49-8705-4fee-abd6-36c9f4bc2825.json", + "mode": "100644", + "type": "blob", + "sha": "31a2f5ac36972c2185704bd9439a93ea50b0eff4", + "size": 10740, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/31a2f5ac36972c2185704bd9439a93ea50b0eff4" + }, + { + "path": "src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_d922b808068cf95d6f6ab624ce2c7f49d51f5321-fb5ea1a9-6086-40a2-a542-7a87ee6bb437.json", + "mode": "100644", + "type": "blob", + "sha": "31a2f5ac36972c2185704bd9439a93ea50b0eff4", + "size": 10740, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/31a2f5ac36972c2185704bd9439a93ea50b0eff4" + }, + { + "path": "src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_efe737fa365a0187e052bc81391efbd84847a1b0-3621ddfb-672d-47aa-8b45-5d15a3e6caaa.json", + "mode": "100644", + "type": "blob", + "sha": "22efaee735e360d269b895b13d26e2e0ca3ca41b", + "size": 5725, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/22efaee735e360d269b895b13d26e2e0ca3ca41b" + }, + { + "path": "src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_efe737fa365a0187e052bc81391efbd84847a1b0-ca95823a-7ad8-4b14-8d90-c619d98c589f.json", + "mode": "100644", + "type": "blob", + "sha": "22efaee735e360d269b895b13d26e2e0ca3ca41b", + "size": 5725, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/22efaee735e360d269b895b13d26e2e0ca3ca41b" + }, + { + "path": "src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/user-1b6473bc-f679-44ec-8a6a-6a9d036c91aa.json", + "mode": "100644", + "type": "blob", + "sha": "b9ce24cb03e26e4d59e94a45bb9eb783707b714a", + "size": 1368, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/b9ce24cb03e26e4d59e94a45bb9eb783707b714a" + }, + { + "path": "src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings", + "mode": "040000", + "type": "tree", + "sha": "7e787e2a2316563219f573fef864b883ca85a861", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/7e787e2a2316563219f573fef864b883ca85a861" + }, + { + "path": "src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler-2-342768.json", + "mode": "100644", + "type": "blob", + "sha": "f32e3166c9a3e96ba8b0ac959cbd3d322b202caf", + "size": 1794, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/f32e3166c9a3e96ba8b0ac959cbd3d322b202caf" + }, + { + "path": "src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits-3-6214fe.json", + "mode": "100644", + "type": "blob", + "sha": "a618d2c0cc1f1d59cb89c5969025d71603e78326", + "size": 2022, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a618d2c0cc1f1d59cb89c5969025d71603e78326" + }, + { + "path": "src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_06b1108ec041fd8d6e7f54c8578d84a672fee9e4-8-4fa8c0.json", + "mode": "100644", + "type": "blob", + "sha": "3edec13ae3f739ddbc370d378106189e2929f189", + "size": 2187, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/3edec13ae3f739ddbc370d378106189e2929f189" + }, + { + "path": "src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_06b1108ec041fd8d6e7f54c8578d84a672fee9e4-9-ad6e99.json", + "mode": "100644", + "type": "blob", + "sha": "39164f6579925982525438ac2c8489734a247f00", + "size": 2154, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/39164f6579925982525438ac2c8489734a247f00" + }, + { + "path": "src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_2a971c4e38c6d6693f7ad8b6768e4d74840d6679-10-8ac20a.json", + "mode": "100644", + "type": "blob", + "sha": "d4581380c27a781a033c7f97befb33cb242a2d48", + "size": 2188, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d4581380c27a781a033c7f97befb33cb242a2d48" + }, + { + "path": "src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_2a971c4e38c6d6693f7ad8b6768e4d74840d6679-11-c96500.json", + "mode": "100644", + "type": "blob", + "sha": "876e9d80c25afed6e80fc5487350649f5d117f2d", + "size": 2155, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/876e9d80c25afed6e80fc5487350649f5d117f2d" + }, + { + "path": "src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_2f4ca0f03c1e6188867bddddce12ff213a107d9d-12-dd34f1.json", + "mode": "100644", + "type": "blob", + "sha": "67741e4f865e041feb792c59d29d72937f7b3514", + "size": 2188, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/67741e4f865e041feb792c59d29d72937f7b3514" + }, + { + "path": "src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_2f4ca0f03c1e6188867bddddce12ff213a107d9d-13-b7c821.json", + "mode": "100644", + "type": "blob", + "sha": "1edc6901a494bf72784a3125a49a0697107d6960", + "size": 2155, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/1edc6901a494bf72784a3125a49a0697107d6960" + }, + { + "path": "src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_4f260c560ec120f4e2c2ed727244690b1f4d5dca-22-3e6d36.json", + "mode": "100644", + "type": "blob", + "sha": "18c818f7ad73a6f8a7892f0078c1ba5dcf6865b5", + "size": 2190, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/18c818f7ad73a6f8a7892f0078c1ba5dcf6865b5" + }, + { + "path": "src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_4f260c560ec120f4e2c2ed727244690b1f4d5dca-23-8573f1.json", + "mode": "100644", + "type": "blob", + "sha": "9bfc725f466acf2d0d823613279f32d898957edd", + "size": 2157, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/9bfc725f466acf2d0d823613279f32d898957edd" + }, + { + "path": "src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_53ce34d7d89c5172ae4f4f3167e35852b1910b59-18-4c7823.json", + "mode": "100644", + "type": "blob", + "sha": "f82b53449d743a922a61b19d1a4bdc546651eecf", + "size": 2188, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/f82b53449d743a922a61b19d1a4bdc546651eecf" + }, + { + "path": "src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_53ce34d7d89c5172ae4f4f3167e35852b1910b59-19-5f3cc3.json", + "mode": "100644", + "type": "blob", + "sha": "ff6a88b5c675971bd351ce29bc67ecdd31d0a234", + "size": 2155, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/ff6a88b5c675971bd351ce29bc67ecdd31d0a234" + }, + { + "path": "src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_6a243869aa3c3f80579102d00848a0083953d654-6-d76af9.json", + "mode": "100644", + "type": "blob", + "sha": "b14f92610b319295cee90a0c850ef81deb53ff6d", + "size": 2187, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/b14f92610b319295cee90a0c850ef81deb53ff6d" + }, + { + "path": "src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_6a243869aa3c3f80579102d00848a0083953d654-7-a7972e.json", + "mode": "100644", + "type": "blob", + "sha": "32e09cc071ba38154cf8eabb7dc421b73ccf7122", + "size": 2154, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/32e09cc071ba38154cf8eabb7dc421b73ccf7122" + }, + { + "path": "src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_72343298733508cced8dcb8eb43594bcc6130b26-20-73ac5f.json", + "mode": "100644", + "type": "blob", + "sha": "a714315715e35ca44e2593e0d0c70487e1249a47", + "size": 2188, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a714315715e35ca44e2593e0d0c70487e1249a47" + }, + { + "path": "src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_72343298733508cced8dcb8eb43594bcc6130b26-21-77b7d9.json", + "mode": "100644", + "type": "blob", + "sha": "7843c8e0b016176e7b1c74a47a81b98c67c093cf", + "size": 2155, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/7843c8e0b016176e7b1c74a47a81b98c67c093cf" + }, + { + "path": "src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_950acbd60ed4289520dcd2a395e5d77f181e1cff-4-45c731.json", + "mode": "100644", + "type": "blob", + "sha": "141e12a15cde0aa24b3d4b21a061b05884289a52", + "size": 2187, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/141e12a15cde0aa24b3d4b21a061b05884289a52" + }, + { + "path": "src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_950acbd60ed4289520dcd2a395e5d77f181e1cff-5-1aa530.json", + "mode": "100644", + "type": "blob", + "sha": "50d8c071c550016cdd7a2fc7c6077dec75fd88c2", + "size": 2154, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/50d8c071c550016cdd7a2fc7c6077dec75fd88c2" + }, + { + "path": "src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_d922b808068cf95d6f6ab624ce2c7f49d51f5321-14-35c73b.json", + "mode": "100644", + "type": "blob", + "sha": "390f5208159c62ee8574cf02f20ef208f2e59195", + "size": 2188, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/390f5208159c62ee8574cf02f20ef208f2e59195" + }, + { + "path": "src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_d922b808068cf95d6f6ab624ce2c7f49d51f5321-15-fb5ea1.json", + "mode": "100644", + "type": "blob", + "sha": "2902fd5370dbf9d88f60030754e5fbe061e223b0", + "size": 2155, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/2902fd5370dbf9d88f60030754e5fbe061e223b0" + }, + { + "path": "src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_efe737fa365a0187e052bc81391efbd84847a1b0-16-3621dd.json", + "mode": "100644", + "type": "blob", + "sha": "57ca9f174f5cbdcb24d00f0d6ed94f2da53c2447", + "size": 2188, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/57ca9f174f5cbdcb24d00f0d6ed94f2da53c2447" + }, + { + "path": "src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_efe737fa365a0187e052bc81391efbd84847a1b0-17-ca9582.json", + "mode": "100644", + "type": "blob", + "sha": "40f719769793cc11fa48ee12c45c6d22ecac709e", + "size": 2155, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/40f719769793cc11fa48ee12c45c6d22ecac709e" + }, + { + "path": "src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/user-1-1b6473.json", + "mode": "100644", + "type": "blob", + "sha": "f242a81b01c8bff400433764cfdab38cb31c8d6f", + "size": 1739, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/f242a81b01c8bff400433764cfdab38cb31c8d6f" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHAppTest", + "mode": "040000", + "type": "tree", + "sha": "370d48f0fbb4af78744ee1dfd46641ab31983b2f", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/370d48f0fbb4af78744ee1dfd46641ab31983b2f" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHAppTest/wiremock", + "mode": "040000", + "type": "tree", + "sha": "53cf271754875965eb5dbe266ed67cb6752f19b9", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/53cf271754875965eb5dbe266ed67cb6752f19b9" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHAppTest/wiremock/createToken", + "mode": "040000", + "type": "tree", + "sha": "9cd07e7a9d397470e42c82846085dd67d74979c6", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/9cd07e7a9d397470e42c82846085dd67d74979c6" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHAppTest/wiremock/createToken/__files", + "mode": "040000", + "type": "tree", + "sha": "40a62de7ebd555d10c0ea0a4f35c41dd63eab844", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/40a62de7ebd555d10c0ea0a4f35c41dd63eab844" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHAppTest/wiremock/createToken/__files/body-githubapp-create-installation-accesstokens.json", + "mode": "100644", + "type": "blob", + "sha": "d891cc0e7dbd3b158cf0e1e619ebe0362b187d55", + "size": 5408, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d891cc0e7dbd3b158cf0e1e619ebe0362b187d55" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHAppTest/wiremock/createToken/__files/body-mapping-githubapp-app.json", + "mode": "100644", + "type": "blob", + "sha": "d36be086d715361c8bef1716e77cc8fb93ab1d3b", + "size": 1487, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d36be086d715361c8bef1716e77cc8fb93ab1d3b" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHAppTest/wiremock/createToken/__files/body-mapping-githubapp-installation-by-user.json", + "mode": "100644", + "type": "blob", + "sha": "8975c0c55df2cb4bee461685ab4dc9dacc528849", + "size": 1678, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/8975c0c55df2cb4bee461685ab4dc9dacc528849" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHAppTest/wiremock/createToken/mappings", + "mode": "040000", + "type": "tree", + "sha": "1f88df0ffb6260ac75fdd366e3c7768dd8f063c9", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/1f88df0ffb6260ac75fdd366e3c7768dd8f063c9" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHAppTest/wiremock/createToken/mappings/mapping-githubapp-app.json", + "mode": "100644", + "type": "blob", + "sha": "999f4c82860a80995a2dc93ee6baa31720394105", + "size": 1370, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/999f4c82860a80995a2dc93ee6baa31720394105" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHAppTest/wiremock/createToken/mappings/mapping-githubapp-create-installation-accesstokens.json", + "mode": "100644", + "type": "blob", + "sha": "7996662d18a55cb73f786cb56ef7d035bc1d45e9", + "size": 1732, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/7996662d18a55cb73f786cb56ef7d035bc1d45e9" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHAppTest/wiremock/createToken/mappings/mapping-githubapp-installation-by-user.json", + "mode": "100644", + "type": "blob", + "sha": "573705fde7e2d2453065fe9161523e9e49eb1241", + "size": 1408, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/573705fde7e2d2453065fe9161523e9e49eb1241" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHAppTest/wiremock/deleteInstallation", + "mode": "040000", + "type": "tree", + "sha": "eed466cec74868cbbbe0f3f25f31316f7df8475b", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/eed466cec74868cbbbe0f3f25f31316f7df8475b" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHAppTest/wiremock/deleteInstallation/__files", + "mode": "040000", + "type": "tree", + "sha": "e211b1fdeb54464aded9648596e84c76eff127e0", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/e211b1fdeb54464aded9648596e84c76eff127e0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHAppTest/wiremock/deleteInstallation/__files/body-mapping-githubapp-app.json", + "mode": "100644", + "type": "blob", + "sha": "d36be086d715361c8bef1716e77cc8fb93ab1d3b", + "size": 1487, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d36be086d715361c8bef1716e77cc8fb93ab1d3b" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHAppTest/wiremock/deleteInstallation/__files/body-mapping-githubapp-installation-by-user.json", + "mode": "100644", + "type": "blob", + "sha": "8975c0c55df2cb4bee461685ab4dc9dacc528849", + "size": 1678, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/8975c0c55df2cb4bee461685ab4dc9dacc528849" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHAppTest/wiremock/deleteInstallation/mappings", + "mode": "040000", + "type": "tree", + "sha": "81457537eccd8b571d2f61c2b5e6efd63c6fe23b", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/81457537eccd8b571d2f61c2b5e6efd63c6fe23b" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHAppTest/wiremock/deleteInstallation/mappings/mapping-githubapp-app.json", + "mode": "100644", + "type": "blob", + "sha": "999f4c82860a80995a2dc93ee6baa31720394105", + "size": 1370, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/999f4c82860a80995a2dc93ee6baa31720394105" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHAppTest/wiremock/deleteInstallation/mappings/mapping-githubapp-delete-installation.json", + "mode": "100644", + "type": "blob", + "sha": "4fbf043a8ffb715683bf6d6f69f893750bf8a5a9", + "size": 1344, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/4fbf043a8ffb715683bf6d6f69f893750bf8a5a9" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHAppTest/wiremock/deleteInstallation/mappings/mapping-githubapp-installation-by-user.json", + "mode": "100644", + "type": "blob", + "sha": "573705fde7e2d2453065fe9161523e9e49eb1241", + "size": 1408, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/573705fde7e2d2453065fe9161523e9e49eb1241" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getGitHubApp", + "mode": "040000", + "type": "tree", + "sha": "72df944e984eff58c2b21e194346c113ec04e670", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/72df944e984eff58c2b21e194346c113ec04e670" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getGitHubApp/__files", + "mode": "040000", + "type": "tree", + "sha": "62408756f9c3f1829957cbf9ed6c1384efc92c10", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/62408756f9c3f1829957cbf9ed6c1384efc92c10" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getGitHubApp/__files/body-mapping-githubapp-app.json", + "mode": "100644", + "type": "blob", + "sha": "d36be086d715361c8bef1716e77cc8fb93ab1d3b", + "size": 1487, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d36be086d715361c8bef1716e77cc8fb93ab1d3b" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getGitHubApp/mappings", + "mode": "040000", + "type": "tree", + "sha": "bb6253c123d80d7f231b0ee81d50cda1e28b4ea2", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/bb6253c123d80d7f231b0ee81d50cda1e28b4ea2" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getGitHubApp/mappings/mapping-githubapp-app.json", + "mode": "100644", + "type": "blob", + "sha": "999f4c82860a80995a2dc93ee6baa31720394105", + "size": 1370, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/999f4c82860a80995a2dc93ee6baa31720394105" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getInstallationById", + "mode": "040000", + "type": "tree", + "sha": "2626f6522a40fb16383d5602fe650c5f90481547", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/2626f6522a40fb16383d5602fe650c5f90481547" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getInstallationById/__files", + "mode": "040000", + "type": "tree", + "sha": "9421e98c2ff9cb74450ff5b030f756b4d3536c06", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/9421e98c2ff9cb74450ff5b030f756b4d3536c06" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getInstallationById/__files/body-mapping-githubapp-app.json", + "mode": "100644", + "type": "blob", + "sha": "d36be086d715361c8bef1716e77cc8fb93ab1d3b", + "size": 1487, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d36be086d715361c8bef1716e77cc8fb93ab1d3b" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getInstallationById/__files/body-mapping-githubapp-installation-by-id.json", + "mode": "100644", + "type": "blob", + "sha": "8975c0c55df2cb4bee461685ab4dc9dacc528849", + "size": 1678, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/8975c0c55df2cb4bee461685ab4dc9dacc528849" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getInstallationById/mappings", + "mode": "040000", + "type": "tree", + "sha": "f38bcd6afe6fc4891bfe6ac7f6d1e0aaf7a19e53", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/f38bcd6afe6fc4891bfe6ac7f6d1e0aaf7a19e53" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getInstallationById/mappings/mapping-githubapp-app.json", + "mode": "100644", + "type": "blob", + "sha": "999f4c82860a80995a2dc93ee6baa31720394105", + "size": 1370, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/999f4c82860a80995a2dc93ee6baa31720394105" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getInstallationById/mappings/mapping-githubapp-installation-by-id.json", + "mode": "100644", + "type": "blob", + "sha": "87ba55f445672e6f3f4774274cc57a86c130b106", + "size": 1407, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/87ba55f445672e6f3f4774274cc57a86c130b106" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getInstallationByOrganization", + "mode": "040000", + "type": "tree", + "sha": "ac0907eccd7079f3e36acd2fffb73dbb57ec5851", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/ac0907eccd7079f3e36acd2fffb73dbb57ec5851" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getInstallationByOrganization/__files", + "mode": "040000", + "type": "tree", + "sha": "7d338cdd05baba945026564652001983cb9a571a", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/7d338cdd05baba945026564652001983cb9a571a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getInstallationByOrganization/__files/body-mapping-githubapp-app.json", + "mode": "100644", + "type": "blob", + "sha": "d36be086d715361c8bef1716e77cc8fb93ab1d3b", + "size": 1487, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d36be086d715361c8bef1716e77cc8fb93ab1d3b" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getInstallationByOrganization/__files/body-mapping-githubapp-installation-by-organization.json", + "mode": "100644", + "type": "blob", + "sha": "8975c0c55df2cb4bee461685ab4dc9dacc528849", + "size": 1678, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/8975c0c55df2cb4bee461685ab4dc9dacc528849" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getInstallationByOrganization/mappings", + "mode": "040000", + "type": "tree", + "sha": "30c5f2c1a1f4957b0da8855735af5ba713cd0acf", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/30c5f2c1a1f4957b0da8855735af5ba713cd0acf" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getInstallationByOrganization/mappings/mapping-githubapp-app.json", + "mode": "100644", + "type": "blob", + "sha": "999f4c82860a80995a2dc93ee6baa31720394105", + "size": 1370, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/999f4c82860a80995a2dc93ee6baa31720394105" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getInstallationByOrganization/mappings/mapping-githubapp-installation-by-organization.json", + "mode": "100644", + "type": "blob", + "sha": "bd94ed4800bfff4d05a3aae1c92bea06b1a29446", + "size": 1415, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/bd94ed4800bfff4d05a3aae1c92bea06b1a29446" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getInstallationByRepository", + "mode": "040000", + "type": "tree", + "sha": "2776cc6413b531fecfbb1d0095d6eeafebc7dca2", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/2776cc6413b531fecfbb1d0095d6eeafebc7dca2" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getInstallationByRepository/__files", + "mode": "040000", + "type": "tree", + "sha": "8d58dca73b3fe92938e2c26f3ecc07ba67508a06", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/8d58dca73b3fe92938e2c26f3ecc07ba67508a06" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getInstallationByRepository/__files/body-mapping-githubapp-app.json", + "mode": "100644", + "type": "blob", + "sha": "d36be086d715361c8bef1716e77cc8fb93ab1d3b", + "size": 1487, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d36be086d715361c8bef1716e77cc8fb93ab1d3b" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getInstallationByRepository/__files/body-mapping-githubapp-installation-by-repository.json", + "mode": "100644", + "type": "blob", + "sha": "8975c0c55df2cb4bee461685ab4dc9dacc528849", + "size": 1678, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/8975c0c55df2cb4bee461685ab4dc9dacc528849" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getInstallationByRepository/mappings", + "mode": "040000", + "type": "tree", + "sha": "a2c8c038e8c1ab3dbcc92d3022aaf4f17dbb70b1", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/a2c8c038e8c1ab3dbcc92d3022aaf4f17dbb70b1" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getInstallationByRepository/mappings/mapping-githubapp-app.json", + "mode": "100644", + "type": "blob", + "sha": "999f4c82860a80995a2dc93ee6baa31720394105", + "size": 1370, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/999f4c82860a80995a2dc93ee6baa31720394105" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getInstallationByRepository/mappings/mapping-githubapp-installation-by-repository.json", + "mode": "100644", + "type": "blob", + "sha": "3fd3c011c086aff8edc797788ccf4800810b7e47", + "size": 1420, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/3fd3c011c086aff8edc797788ccf4800810b7e47" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getInstallationByUser", + "mode": "040000", + "type": "tree", + "sha": "6ca245443670fdea8bde73818a89aa4d7157e64d", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/6ca245443670fdea8bde73818a89aa4d7157e64d" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getInstallationByUser/__files", + "mode": "040000", + "type": "tree", + "sha": "e211b1fdeb54464aded9648596e84c76eff127e0", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/e211b1fdeb54464aded9648596e84c76eff127e0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getInstallationByUser/__files/body-mapping-githubapp-app.json", + "mode": "100644", + "type": "blob", + "sha": "d36be086d715361c8bef1716e77cc8fb93ab1d3b", + "size": 1487, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d36be086d715361c8bef1716e77cc8fb93ab1d3b" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getInstallationByUser/__files/body-mapping-githubapp-installation-by-user.json", + "mode": "100644", + "type": "blob", + "sha": "8975c0c55df2cb4bee461685ab4dc9dacc528849", + "size": 1678, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/8975c0c55df2cb4bee461685ab4dc9dacc528849" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getInstallationByUser/mappings", + "mode": "040000", + "type": "tree", + "sha": "8eee43cd66cfcef805fb1b0858f079469420cd7f", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/8eee43cd66cfcef805fb1b0858f079469420cd7f" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getInstallationByUser/mappings/mapping-githubapp-app.json", + "mode": "100644", + "type": "blob", + "sha": "999f4c82860a80995a2dc93ee6baa31720394105", + "size": 1370, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/999f4c82860a80995a2dc93ee6baa31720394105" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getInstallationByUser/mappings/mapping-githubapp-installation-by-user.json", + "mode": "100644", + "type": "blob", + "sha": "573705fde7e2d2453065fe9161523e9e49eb1241", + "size": 1408, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/573705fde7e2d2453065fe9161523e9e49eb1241" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHAppTest/wiremock/listInstallations", + "mode": "040000", + "type": "tree", + "sha": "1551a4fc8f3c2089732b18033e1cc197d367e9ee", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/1551a4fc8f3c2089732b18033e1cc197d367e9ee" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHAppTest/wiremock/listInstallations/__files", + "mode": "040000", + "type": "tree", + "sha": "e0deb2165c145f5f770875874f5051a71ee053d8", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/e0deb2165c145f5f770875874f5051a71ee053d8" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHAppTest/wiremock/listInstallations/__files/body-mapping-githubapp-app.json", + "mode": "100644", + "type": "blob", + "sha": "d36be086d715361c8bef1716e77cc8fb93ab1d3b", + "size": 1487, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d36be086d715361c8bef1716e77cc8fb93ab1d3b" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHAppTest/wiremock/listInstallations/__files/body-mapping-githubapp-installations.json", + "mode": "100644", + "type": "blob", + "sha": "d81bc3786e13dfe15e50d565cacf0b2fe6a34747", + "size": 1766, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d81bc3786e13dfe15e50d565cacf0b2fe6a34747" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHAppTest/wiremock/listInstallations/mappings", + "mode": "040000", + "type": "tree", + "sha": "dbc56cf61e122717432346b01e66225788b3ad17", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/dbc56cf61e122717432346b01e66225788b3ad17" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHAppTest/wiremock/listInstallations/mappings/mapping-githubapp-app.json", + "mode": "100644", + "type": "blob", + "sha": "999f4c82860a80995a2dc93ee6baa31720394105", + "size": 1370, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/999f4c82860a80995a2dc93ee6baa31720394105" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHAppTest/wiremock/listInstallations/mappings/mapping-githubapp-installations.json", + "mode": "100644", + "type": "blob", + "sha": "5b01455c26b9cd0b4258613ea84c5eaa96b4c8a8", + "size": 1394, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/5b01455c26b9cd0b4258613ea84c5eaa96b4c8a8" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHContentIntegrationTest", + "mode": "040000", + "type": "tree", + "sha": "dceffe642f71552336601c508cd24942071c837a", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/dceffe642f71552336601c508cd24942071c837a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock", + "mode": "040000", + "type": "tree", + "sha": "2a75d2cae1c1392dea6b6e5761962706f9b9c8dc", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/2a75d2cae1c1392dea6b6e5761962706f9b9c8dc" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testCRUDContent", + "mode": "040000", + "type": "tree", + "sha": "8e99ef46067fa3ed5e7b9a849340759f11785124", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/8e99ef46067fa3ed5e7b9a849340759f11785124" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testCRUDContent/__files", + "mode": "040000", + "type": "tree", + "sha": "ea451e51e8df98606c7eaca5efc56756104be05d", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/ea451e51e8df98606c7eaca5efc56756104be05d" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testCRUDContent/__files/repos_github-api-test-org_ghcontentintegrationtest-4f1ed47c-f261-4520-80d7-16b5952dd0e9.json", + "mode": "100644", + "type": "blob", + "sha": "a2718e2e2daed93c39a3024249ce842380ebc9bb", + "size": 20019, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a2718e2e2daed93c39a3024249ce842380ebc9bb" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testCRUDContent/__files/repos_github-api-test-org_ghcontentintegrationtest_contents_test-file-to-createtxt-30d0709c-ebc9-4631-8f44-bd942c44a711.json", + "mode": "100644", + "type": "blob", + "sha": "ef8e34384d9541f7fc4ef6b80f371c055b7fbade", + "size": 2614, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/ef8e34384d9541f7fc4ef6b80f371c055b7fbade" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testCRUDContent/__files/repos_github-api-test-org_ghcontentintegrationtest_contents_test-file-to-createtxt-5d54ef56-18eb-43d3-9167-bf3bfae69460.json", + "mode": "100644", + "type": "blob", + "sha": "8f875233de86768b579019e6e98ea18fdf4c625e", + "size": 1495, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/8f875233de86768b579019e6e98ea18fdf4c625e" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testCRUDContent/__files/repos_github-api-test-org_ghcontentintegrationtest_contents_test-file-to-createtxt-67d9bcdb-d0e8-44b0-9077-8530b3b77997.json", + "mode": "100644", + "type": "blob", + "sha": "3d20a236e0c396fd1ee0f8e4ad371a840e27cf6c", + "size": 1176, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/3d20a236e0c396fd1ee0f8e4ad371a840e27cf6c" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testCRUDContent/__files/repos_github-api-test-org_ghcontentintegrationtest_contents_test-file-to-createtxt-c2b7d86b-e154-4f46-8ab0-f253f77f5dda.json", + "mode": "100644", + "type": "blob", + "sha": "b186b542ac4cab27b9e80b0638d15c794d8b5849", + "size": 1164, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/b186b542ac4cab27b9e80b0638d15c794d8b5849" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testCRUDContent/__files/repos_github-api-test-org_ghcontentintegrationtest_contents_test-file-to-createtxt-fa09f0c6-b78d-4504-b3ab-6050682ab604.json", + "mode": "100644", + "type": "blob", + "sha": "4758568bd0484123696b776631503cc9f72c2744", + "size": 2617, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/4758568bd0484123696b776631503cc9f72c2744" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testCRUDContent/__files/user-c9f376fa-4819-4dc7-bc79-43cabec4276f.json", + "mode": "100644", + "type": "blob", + "sha": "760bd7fb8a7cbec6aa68c7d3d40801ba54ac790b", + "size": 1640, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/760bd7fb8a7cbec6aa68c7d3d40801ba54ac790b" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testCRUDContent/mappings", + "mode": "040000", + "type": "tree", + "sha": "11d6dc0d00db5f68d85f0986925ab2cd02c1a124", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/11d6dc0d00db5f68d85f0986925ab2cd02c1a124" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testCRUDContent/mappings/repos_github-api-test-org_ghcontentintegrationtest-2-4f1ed4.json", + "mode": "100644", + "type": "blob", + "sha": "744c15f42f76fc996bc541f49ed8f15737b608cb", + "size": 1924, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/744c15f42f76fc996bc541f49ed8f15737b608cb" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testCRUDContent/mappings/repos_github-api-test-org_ghcontentintegrationtest_contents_test-file-to-createtxt-3-fa09f0.json", + "mode": "100644", + "type": "blob", + "sha": "141d49597ac04aa0647d51c94a0eb86b142607b1", + "size": 2264, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/141d49597ac04aa0647d51c94a0eb86b142607b1" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testCRUDContent/mappings/repos_github-api-test-org_ghcontentintegrationtest_contents_test-file-to-createtxt-4-67d9bc.json", + "mode": "100644", + "type": "blob", + "sha": "47dcccc85d5796cc6681b930242ca0325201c5b9", + "size": 2312, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/47dcccc85d5796cc6681b930242ca0325201c5b9" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testCRUDContent/mappings/repos_github-api-test-org_ghcontentintegrationtest_contents_test-file-to-createtxt-5-30d070.json", + "mode": "100644", + "type": "blob", + "sha": "07c37aae53b96c38a57de3b77e2a14a13c7cd0c1", + "size": 2299, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/07c37aae53b96c38a57de3b77e2a14a13c7cd0c1" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testCRUDContent/mappings/repos_github-api-test-org_ghcontentintegrationtest_contents_test-file-to-createtxt-6-c2b7d8.json", + "mode": "100644", + "type": "blob", + "sha": "34b35eba8f7df5dcbbf310aaac2c0b2059c3ec35", + "size": 2279, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/34b35eba8f7df5dcbbf310aaac2c0b2059c3ec35" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testCRUDContent/mappings/repos_github-api-test-org_ghcontentintegrationtest_contents_test-file-to-createtxt-7-5d54ef.json", + "mode": "100644", + "type": "blob", + "sha": "cf34d0a0b970b969d9aaf507de5aa1f48f317aa5", + "size": 2076, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/cf34d0a0b970b969d9aaf507de5aa1f48f317aa5" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testCRUDContent/mappings/user-1-c9f376.json", + "mode": "100644", + "type": "blob", + "sha": "1cd6ddcf170d083b6273c4549ee9b626aa39cd29", + "size": 1782, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/1cd6ddcf170d083b6273c4549ee9b626aa39cd29" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetDirectoryContent", + "mode": "040000", + "type": "tree", + "sha": "09f8184197d0a317a568427daa28dd4cb9add57b", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/09f8184197d0a317a568427daa28dd4cb9add57b" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetDirectoryContent/__files", + "mode": "040000", + "type": "tree", + "sha": "6308e866293eaea0a4cca3b8087beb862dc87a69", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/6308e866293eaea0a4cca3b8087beb862dc87a69" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetDirectoryContent/__files/repos_github-api-test-org_ghcontentintegrationtest-7b176dc1-41fe-4677-ae9d-f420dfa1153f.json", + "mode": "100644", + "type": "blob", + "sha": "a2718e2e2daed93c39a3024249ce842380ebc9bb", + "size": 20019, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a2718e2e2daed93c39a3024249ce842380ebc9bb" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetDirectoryContent/__files/repos_github-api-test-org_ghcontentintegrationtest_contents_ghcontent-ro_a-dir-with-3-entries-b4bdb0bb-efdb-4a83-b03e-053ac0e8c56a.json", + "mode": "100644", + "type": "blob", + "sha": "c972920857d9098a509fc7fa21334dfb75749a8d", + "size": 3688, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/c972920857d9098a509fc7fa21334dfb75749a8d" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetDirectoryContent/__files/user-842cc871-f338-4cc0-8fb0-db276fb4224a.json", + "mode": "100644", + "type": "blob", + "sha": "760bd7fb8a7cbec6aa68c7d3d40801ba54ac790b", + "size": 1640, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/760bd7fb8a7cbec6aa68c7d3d40801ba54ac790b" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetDirectoryContent/mappings", + "mode": "040000", + "type": "tree", + "sha": "7f951b86f242d11b5a9cb61f9a0ca06bfbcde047", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/7f951b86f242d11b5a9cb61f9a0ca06bfbcde047" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetDirectoryContent/mappings/repos_github-api-test-org_ghcontentintegrationtest-2-7b176d.json", + "mode": "100644", + "type": "blob", + "sha": "fc626d3292a792456baaa60c4c32e28ba9c91394", + "size": 1924, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/fc626d3292a792456baaa60c4c32e28ba9c91394" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetDirectoryContent/mappings/repos_github-api-test-org_ghcontentintegrationtest_contents_ghcontent-ro_a-dir-with-3-entries-3-b4bdb0.json", + "mode": "100644", + "type": "blob", + "sha": "d85a9bbc67f2e3d382ab73ce8f8291c3c50b4250", + "size": 2057, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d85a9bbc67f2e3d382ab73ce8f8291c3c50b4250" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetDirectoryContent/mappings/user-1-842cc8.json", + "mode": "100644", + "type": "blob", + "sha": "fc31299988c67b9e56b86028fde4b2dabe934299", + "size": 1782, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/fc31299988c67b9e56b86028fde4b2dabe934299" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetDirectoryContentTrailingSlash", + "mode": "040000", + "type": "tree", + "sha": "23d4565bd270308657a4e5b65cb6e6bec6736b54", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/23d4565bd270308657a4e5b65cb6e6bec6736b54" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetDirectoryContentTrailingSlash/__files", + "mode": "040000", + "type": "tree", + "sha": "98db44a404132445a934e7e1b28d0d94a8243a6e", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/98db44a404132445a934e7e1b28d0d94a8243a6e" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetDirectoryContentTrailingSlash/__files/repos_github-api-test-org_ghcontentintegrationtest-5c51b83e-0d7f-4289-9b1f-fb2a2b15c4ed.json", + "mode": "100644", + "type": "blob", + "sha": "a2718e2e2daed93c39a3024249ce842380ebc9bb", + "size": 20019, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a2718e2e2daed93c39a3024249ce842380ebc9bb" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetDirectoryContentTrailingSlash/__files/repos_github-api-test-org_ghcontentintegrationtest_contents_ghcontent-ro_a-dir-with-3-entries-29ca1e20-a321-449e-93db-dc5155bb4118.json", + "mode": "100644", + "type": "blob", + "sha": "c972920857d9098a509fc7fa21334dfb75749a8d", + "size": 3688, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/c972920857d9098a509fc7fa21334dfb75749a8d" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetDirectoryContentTrailingSlash/__files/user-00d46d71-d7b4-430e-948c-8a70ecd0e9b3.json", + "mode": "100644", + "type": "blob", + "sha": "760bd7fb8a7cbec6aa68c7d3d40801ba54ac790b", + "size": 1640, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/760bd7fb8a7cbec6aa68c7d3d40801ba54ac790b" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetDirectoryContentTrailingSlash/mappings", + "mode": "040000", + "type": "tree", + "sha": "edc76b2e3890755076ab6d8994ed6b65200ac8ce", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/edc76b2e3890755076ab6d8994ed6b65200ac8ce" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetDirectoryContentTrailingSlash/mappings/repos_github-api-test-org_ghcontentintegrationtest-2-5c51b8.json", + "mode": "100644", + "type": "blob", + "sha": "2c83c43aa9416b7447d3096c39ff4adfc7d662ee", + "size": 1924, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/2c83c43aa9416b7447d3096c39ff4adfc7d662ee" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetDirectoryContentTrailingSlash/mappings/repos_github-api-test-org_ghcontentintegrationtest_contents_ghcontent-ro_a-dir-with-3-entries-3-29ca1e.json", + "mode": "100644", + "type": "blob", + "sha": "a434db307b3f4f9aa66e87e9b754ab067a844b47", + "size": 2068, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a434db307b3f4f9aa66e87e9b754ab067a844b47" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetDirectoryContentTrailingSlash/mappings/user-1-00d46d.json", + "mode": "100644", + "type": "blob", + "sha": "ae505d7fc31d536117c3296960e0ffcf124fb32a", + "size": 1782, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/ae505d7fc31d536117c3296960e0ffcf124fb32a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetEmptyFileContent", + "mode": "040000", + "type": "tree", + "sha": "baa04a9cd4677a1fc0b29e68aa9b9e16a654e89c", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/baa04a9cd4677a1fc0b29e68aa9b9e16a654e89c" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetEmptyFileContent/__files", + "mode": "040000", + "type": "tree", + "sha": "88e844fe2a66f9cc52281623523a097044c814de", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/88e844fe2a66f9cc52281623523a097044c814de" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetEmptyFileContent/__files/repos_github-api-test-org_ghcontentintegrationtest-0c161f59-1b24-493e-b05a-cea86caa45a9.json", + "mode": "100644", + "type": "blob", + "sha": "a2718e2e2daed93c39a3024249ce842380ebc9bb", + "size": 20019, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a2718e2e2daed93c39a3024249ce842380ebc9bb" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetEmptyFileContent/__files/repos_github-api-test-org_ghcontentintegrationtest_contents_ghcontent-ro_an-empty-file-09629f63-a530-4e70-86d7-7c38d409c649.json", + "mode": "100644", + "type": "blob", + "sha": "68d210f7e072940d0670f533788fc74d8d0ac3b3", + "size": 1133, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/68d210f7e072940d0670f533788fc74d8d0ac3b3" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetEmptyFileContent/__files/user-94ede01e-bf08-434a-a769-b1ca13cbbe5c.json", + "mode": "100644", + "type": "blob", + "sha": "760bd7fb8a7cbec6aa68c7d3d40801ba54ac790b", + "size": 1640, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/760bd7fb8a7cbec6aa68c7d3d40801ba54ac790b" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetEmptyFileContent/mappings", + "mode": "040000", + "type": "tree", + "sha": "f84ff5b27685f00ab725aad446574fabcf1682c2", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/f84ff5b27685f00ab725aad446574fabcf1682c2" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetEmptyFileContent/mappings/repos_github-api-test-org_ghcontentintegrationtest-2-0c161f.json", + "mode": "100644", + "type": "blob", + "sha": "88d932575cb5cf85d95cc0f8ec8a566a3639ecab", + "size": 1924, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/88d932575cb5cf85d95cc0f8ec8a566a3639ecab" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetEmptyFileContent/mappings/repos_github-api-test-org_ghcontentintegrationtest_contents_ghcontent-ro_an-empty-file-3-09629f.json", + "mode": "100644", + "type": "blob", + "sha": "5a8fccd58af7dcde9b33f0641ce3b6947a0004a3", + "size": 2036, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/5a8fccd58af7dcde9b33f0641ce3b6947a0004a3" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetEmptyFileContent/mappings/user-1-94ede0.json", + "mode": "100644", + "type": "blob", + "sha": "5f512a6ed992ae4640774ef05ac07fea5447e4bf", + "size": 1782, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/5f512a6ed992ae4640774ef05ac07fea5447e4bf" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetFileContent", + "mode": "040000", + "type": "tree", + "sha": "a7652a1b6268fb410d6bb0dd8356d833ee8bddb5", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/a7652a1b6268fb410d6bb0dd8356d833ee8bddb5" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetFileContent/__files", + "mode": "040000", + "type": "tree", + "sha": "661f520f8c4667caf243fcbc58b33ef00a36ec9f", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/661f520f8c4667caf243fcbc58b33ef00a36ec9f" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetFileContent/__files/repos_github-api-test-org_ghcontentintegrationtest-a9082058-4cee-4bf3-8d5f-c1b7d7ca1f0f.json", + "mode": "100644", + "type": "blob", + "sha": "819dcde4e7d17a69e899f9ed1c292e34d473f459", + "size": 20019, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/819dcde4e7d17a69e899f9ed1c292e34d473f459" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetFileContent/__files/repos_github-api-test-org_ghcontentintegrationtest-fbcbe20f-df3f-4011-9340-bb9be7b2c36e.json", + "mode": "100644", + "type": "blob", + "sha": "819dcde4e7d17a69e899f9ed1c292e34d473f459", + "size": 20019, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/819dcde4e7d17a69e899f9ed1c292e34d473f459" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetFileContent/__files/repos_github-api-test-org_ghcontentintegrationtest_contents_ghcontent-ro_a-file-with-content-cf14dc4b-72ea-4159-bc7a-4d10a2ebb43e.json", + "mode": "100644", + "type": "blob", + "sha": "6c820991f6bac770b5baf2f71cca57fe7b5f1593", + "size": 1210, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/6c820991f6bac770b5baf2f71cca57fe7b5f1593" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetFileContent/__files/user-8aeceae0-b015-47cc-9b83-17411b8d4bbd.json", + "mode": "100644", + "type": "blob", + "sha": "760bd7fb8a7cbec6aa68c7d3d40801ba54ac790b", + "size": 1640, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/760bd7fb8a7cbec6aa68c7d3d40801ba54ac790b" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetFileContent/mappings", + "mode": "040000", + "type": "tree", + "sha": "6dd247cbb4066aa31c60f660671184f23777c6f9", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/6dd247cbb4066aa31c60f660671184f23777c6f9" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetFileContent/mappings/repos_github-api-test-org_ghcontentintegrationtest-2-fbcbe2.json", + "mode": "100644", + "type": "blob", + "sha": "a1d9141a9d017db2284c50874415ff3b70b2a480", + "size": 2134, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a1d9141a9d017db2284c50874415ff3b70b2a480" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetFileContent/mappings/repos_github-api-test-org_ghcontentintegrationtest-3-a90820.json", + "mode": "100644", + "type": "blob", + "sha": "6643f82624e7662d47bd39770661b9ae35e0d6ce", + "size": 2101, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/6643f82624e7662d47bd39770661b9ae35e0d6ce" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetFileContent/mappings/repos_github-api-test-org_ghcontentintegrationtest_contents_ghcontent-ro_a-file-with-content-4-cf14dc.json", + "mode": "100644", + "type": "blob", + "sha": "bddc7150ba9f773ef20dc3b25cb15e8fd22e60e9", + "size": 2054, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/bddc7150ba9f773ef20dc3b25cb15e8fd22e60e9" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetFileContent/mappings/user-1-8aecea.json", + "mode": "100644", + "type": "blob", + "sha": "4dc6bc27372a1be6e397901ea133099d049f0ee6", + "size": 1782, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/4dc6bc27372a1be6e397901ea133099d049f0ee6" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHEventPayloadTest", + "mode": "040000", + "type": "tree", + "sha": "85011e26835f5b28b660d36c8380c7de97e59c83", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/85011e26835f5b28b660d36c8380c7de97e59c83" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHEventPayloadTest/commit_comment.json", + "mode": "100644", + "type": "blob", + "sha": "4afa1f39daf8511c18713f0bdc63ec3d89c1bef5", + "size": 8267, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/4afa1f39daf8511c18713f0bdc63ec3d89c1bef5" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHEventPayloadTest/create.json", + "mode": "100644", + "type": "blob", + "sha": "2d48b54f0c40f66360c7a88485c64c58fe4a4355", + "size": 6729, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/2d48b54f0c40f66360c7a88485c64c58fe4a4355" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHEventPayloadTest/delete.json", + "mode": "100644", + "type": "blob", + "sha": "f8dfc8734103263ceeda9827d5ddaecb46eadf83", + "size": 6684, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/f8dfc8734103263ceeda9827d5ddaecb46eadf83" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHEventPayloadTest/deployment.json", + "mode": "100644", + "type": "blob", + "sha": "5d8c5bbe946960fc71d58de95cde22a3ce73fc40", + "size": 8308, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/5d8c5bbe946960fc71d58de95cde22a3ce73fc40" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHEventPayloadTest/deployment_status.json", + "mode": "100644", + "type": "blob", + "sha": "904ffd88a8f3db8c42e2e4dd836ab8d17e963739", + "size": 9917, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/904ffd88a8f3db8c42e2e4dd836ab8d17e963739" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHEventPayloadTest/fork.json", + "mode": "100644", + "type": "blob", + "sha": "36a2a4324d32751debb49c81f7381b1276650fe1", + "size": 12449, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/36a2a4324d32751debb49c81f7381b1276650fe1" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHEventPayloadTest/gollum.json", + "mode": "100644", + "type": "blob", + "sha": "4413118300bedf3a747e1387cb460a4a40e0027e", + "size": 6836, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/4413118300bedf3a747e1387cb460a4a40e0027e" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHEventPayloadTest/issue_comment.json", + "mode": "100644", + "type": "blob", + "sha": "758eb2f38cb858ea159f7912f4ef0f65fbe69c0c", + "size": 10347, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/758eb2f38cb858ea159f7912f4ef0f65fbe69c0c" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHEventPayloadTest/issues.json", + "mode": "100644", + "type": "blob", + "sha": "d3fe4b8c3ef01998868b7e828690737e57a3e83d", + "size": 8813, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d3fe4b8c3ef01998868b7e828690737e57a3e83d" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHEventPayloadTest/label.json", + "mode": "100644", + "type": "blob", + "sha": "807d8c43fbcc2c3b145b57dcceaf74041521ec63", + "size": 7840, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/807d8c43fbcc2c3b145b57dcceaf74041521ec63" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHEventPayloadTest/member.json", + "mode": "100644", + "type": "blob", + "sha": "bbb816e73b1e0de5f16c91e22e40e69d1c3df7d5", + "size": 7613, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/bbb816e73b1e0de5f16c91e22e40e69d1c3df7d5" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHEventPayloadTest/membership.json", + "mode": "100644", + "type": "blob", + "sha": "600208b580332a73f8b7460339d3e53de5bcf810", + "size": 2950, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/600208b580332a73f8b7460339d3e53de5bcf810" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHEventPayloadTest/milestone.json", + "mode": "100644", + "type": "blob", + "sha": "af2468c79a671fde183d231dfa4667220f26797a", + "size": 9443, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/af2468c79a671fde183d231dfa4667220f26797a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHEventPayloadTest/page_build.json", + "mode": "100644", + "type": "blob", + "sha": "57714f94f535b91ee1565c59b2ba32563ea8cf05", + "size": 8087, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/57714f94f535b91ee1565c59b2ba32563ea8cf05" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHEventPayloadTest/public.json", + "mode": "100644", + "type": "blob", + "sha": "a3e0f24cd157551872b176532e41479f2fa79700", + "size": 6615, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a3e0f24cd157551872b176532e41479f2fa79700" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHEventPayloadTest/pull_request.json", + "mode": "100644", + "type": "blob", + "sha": "4eaabe17fe53013b58137d99dbaa64b1370041bc", + "size": 24703, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/4eaabe17fe53013b58137d99dbaa64b1370041bc" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHEventPayloadTest/pull_request_review.json", + "mode": "100644", + "type": "blob", + "sha": "0534006d9d82f4b013f14079b1ad63b2bf96e48c", + "size": 25904, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/0534006d9d82f4b013f14079b1ad63b2bf96e48c" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHEventPayloadTest/pull_request_review_comment.json", + "mode": "100644", + "type": "blob", + "sha": "9934971675b01e5412cc9f986e14153420a06130", + "size": 26707, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/9934971675b01e5412cc9f986e14153420a06130" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHEventPayloadTest/push.json", + "mode": "100644", + "type": "blob", + "sha": "6abcf9f261719e104c8649fa1ccb0a3e456e5756", + "size": 7574, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/6abcf9f261719e104c8649fa1ccb0a3e456e5756" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHEventPayloadTest/release.json", + "mode": "100644", + "type": "blob", + "sha": "3e4c536f9415046ccc14c7eccd2fe2a0ed5bb73f", + "size": 8609, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/3e4c536f9415046ccc14c7eccd2fe2a0ed5bb73f" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHEventPayloadTest/repository.json", + "mode": "100644", + "type": "blob", + "sha": "1488482c7b58ccbb50f002780ab19d3fa64791d9", + "size": 7543, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/1488482c7b58ccbb50f002780ab19d3fa64791d9" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHEventPayloadTest/status.json", + "mode": "100644", + "type": "blob", + "sha": "a9c45c5c933edf274b44ee8bd8105bb0558558e5", + "size": 11095, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a9c45c5c933edf274b44ee8bd8105bb0558558e5" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHEventPayloadTest/team_add.json", + "mode": "100644", + "type": "blob", + "sha": "f5c84da340cfcaa4c7012ddab943b0ce8ca5c7b0", + "size": 7793, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/f5c84da340cfcaa4c7012ddab943b0ce8ca5c7b0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHEventPayloadTest/watch.json", + "mode": "100644", + "type": "blob", + "sha": "e71cd76b28c4dff2ab8bec3055fd8f45d4258e7c", + "size": 6638, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/e71cd76b28c4dff2ab8bec3055fd8f45d4258e7c" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHGistUpdaterTest", + "mode": "040000", + "type": "tree", + "sha": "4d4986ecefcdeea1aed7b0f5818665bb3c6e99ce", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/4d4986ecefcdeea1aed7b0f5818665bb3c6e99ce" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHGistUpdaterTest/wiremock", + "mode": "040000", + "type": "tree", + "sha": "a512c056130d813f0c37e5a5fc41345dee505d41", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/a512c056130d813f0c37e5a5fc41345dee505d41" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHGistUpdaterTest/wiremock/testGitUpdater", + "mode": "040000", + "type": "tree", + "sha": "96b7be318bcc1c62d53b76886ef5438f37581fcc", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/96b7be318bcc1c62d53b76886ef5438f37581fcc" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHGistUpdaterTest/wiremock/testGitUpdater/__files", + "mode": "040000", + "type": "tree", + "sha": "6d4501dfeeccf1650df87642e4bb8a3bd5062c82", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/6d4501dfeeccf1650df87642e4bb8a3bd5062c82" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHGistUpdaterTest/wiremock/testGitUpdater/__files/gists-fde9aa5a-83fc-41d8-b556-16335859de73.json", + "mode": "100644", + "type": "blob", + "sha": "c0d3a5cb17b17164434c4d377090aeb883f88bc9", + "size": 4628, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/c0d3a5cb17b17164434c4d377090aeb883f88bc9" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHGistUpdaterTest/wiremock/testGitUpdater/__files/gists_209fef72c25fe4b3f673437603ab6d5d-d3ef0c04-12e0-4815-a871-ab7a397b00d7.json", + "mode": "100644", + "type": "blob", + "sha": "0aeeb7f2b72378ad9e8ae1a863095177ccf49349", + "size": 6508, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/0aeeb7f2b72378ad9e8ae1a863095177ccf49349" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHGistUpdaterTest/wiremock/testGitUpdater/mappings", + "mode": "040000", + "type": "tree", + "sha": "460d417cc6ead84891403be064ead5353a6eebd3", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/460d417cc6ead84891403be064ead5353a6eebd3" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHGistUpdaterTest/wiremock/testGitUpdater/mappings/gists-1-fde9aa.json", + "mode": "100644", + "type": "blob", + "sha": "15895715f02b9e200436df0af236428f745c3b1f", + "size": 2039, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/15895715f02b9e200436df0af236428f745c3b1f" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHGistUpdaterTest/wiremock/testGitUpdater/mappings/gists_209fef72c25fe4b3f673437603ab6d5d-2-d3ef0c.json", + "mode": "100644", + "type": "blob", + "sha": "a7225467dae8980443b1acd4c64cfa91b58b7d5d", + "size": 2048, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a7225467dae8980443b1acd4c64cfa91b58b7d5d" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHGistUpdaterTest/wiremock/testGitUpdater/mappings/gists_209fef72c25fe4b3f673437603ab6d5d-3-94cd51.json", + "mode": "100644", + "type": "blob", + "sha": "1341899dd2627b5955a34568e165b1026e5f5690", + "size": 1348, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/1341899dd2627b5955a34568e165b1026e5f5690" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHIssueEventTest", + "mode": "040000", + "type": "tree", + "sha": "a25e693cdadf94bcba5bb3382fe118435214ab16", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/a25e693cdadf94bcba5bb3382fe118435214ab16" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock", + "mode": "040000", + "type": "tree", + "sha": "08ea8fd8f520f8c3297db535495228244e7e52a6", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/08ea8fd8f520f8c3297db535495228244e7e52a6" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue", + "mode": "040000", + "type": "tree", + "sha": "7bec742f79266281e80615c6006552db2a533c0b", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/7bec742f79266281e80615c6006552db2a533c0b" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/__files", + "mode": "040000", + "type": "tree", + "sha": "cf87d485b4af7437f392f4488f9ae61751ab4d61", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/cf87d485b4af7437f392f4488f9ae61751ab4d61" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/__files/orgs_github-api-test-org-0974905b-3de8-4061-bf78-6c18b9b91f54.json", + "mode": "100644", + "type": "blob", + "sha": "99b5920ccb33c237ee5042bcc8de055a07ed1078", + "size": 1481, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/99b5920ccb33c237ee5042bcc8de055a07ed1078" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/__files/repos_github-api-test-org_github-api-ef3199ce-5e1b-4d47-ae87-ca3fe49a8dc6.json", + "mode": "100644", + "type": "blob", + "sha": "70addcd65e8a771443308e2b4d04014595e5e00b", + "size": 18893, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/70addcd65e8a771443308e2b4d04014595e5e00b" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/__files/repos_github-api-test-org_github-api_issues-218efdaf-b6d8-4161-935b-58bb1ab4d9fb.json", + "mode": "100644", + "type": "blob", + "sha": "477a6ca0db1cff5b5f2cd06fd07179495d7662a5", + "size": 2051, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/477a6ca0db1cff5b5f2cd06fd07179495d7662a5" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/__files/repos_github-api-test-org_github-api_issues_313-450e6f09-ae2a-4870-a24d-f7620a437891.json", + "mode": "100644", + "type": "blob", + "sha": "2867d19fc1b4af3f86a8585e4240289a6646be6d", + "size": 3400, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/2867d19fc1b4af3f86a8585e4240289a6646be6d" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/__files/repos_github-api-test-org_github-api_issues_313-9895867a-152d-425a-85ab-b7557241c309.json", + "mode": "100644", + "type": "blob", + "sha": "be017751a383da37c1fa24326e3d32c973a77550", + "size": 2305, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/be017751a383da37c1fa24326e3d32c973a77550" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/__files/repos_github-api-test-org_github-api_issues_313_events-ef9890e7-cc75-4757-afba-42fc12908cd9.json", + "mode": "100644", + "type": "blob", + "sha": "fc9e6002158addb825f447e5df8837ad668259e9", + "size": 1505, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/fc9e6002158addb825f447e5df8837ad668259e9" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/__files/repos_github-api-test-org_github-api_issues_events_2704815753-306d4048-2cef-4339-aae4-e03195f651e4.json", + "mode": "100644", + "type": "blob", + "sha": "67abe462a145334a01a9f16ce8b81ba341abc8a0", + "size": 3842, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/67abe462a145334a01a9f16ce8b81ba341abc8a0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/mappings", + "mode": "040000", + "type": "tree", + "sha": "2c04096aeba816389e924c47924bf13c2a87f9fc", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/2c04096aeba816389e924c47924bf13c2a87f9fc" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/mappings/orgs_github-api-test-org-6-097490.json", + "mode": "100644", + "type": "blob", + "sha": "8a563f39516e36830a3cafb15bec0b0d83032358", + "size": 1698, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/8a563f39516e36830a3cafb15bec0b0d83032358" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/mappings/repos_github-api-test-org_github-api-7-ef3199.json", + "mode": "100644", + "type": "blob", + "sha": "2dccfb5ea10ee56146dfba5bca94b78e7c4a0913", + "size": 1734, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/2dccfb5ea10ee56146dfba5bca94b78e7c4a0913" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/mappings/repos_github-api-test-org_github-api_issues-5-218efd.json", + "mode": "100644", + "type": "blob", + "sha": "1e282383fa64f216d2997824e28023ddefc91bd5", + "size": 2001, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/1e282383fa64f216d2997824e28023ddefc91bd5" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/mappings/repos_github-api-test-org_github-api_issues_313-6-989586.json", + "mode": "100644", + "type": "blob", + "sha": "a95976f9f0b80acad5b15b2b6d4a1c545d6f39b2", + "size": 1884, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a95976f9f0b80acad5b15b2b6d4a1c545d6f39b2" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/mappings/repos_github-api-test-org_github-api_issues_313-9-450e6f.json", + "mode": "100644", + "type": "blob", + "sha": "d1a57883d00e9240664f97643b077ed091b27f2b", + "size": 1877, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d1a57883d00e9240664f97643b077ed091b27f2b" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/mappings/repos_github-api-test-org_github-api_issues_313_events-7-ef9890.json", + "mode": "100644", + "type": "blob", + "sha": "bf66f42b9b225debee0a8e5548a0891e9794a219", + "size": 1732, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/bf66f42b9b225debee0a8e5548a0891e9794a219" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/mappings/repos_github-api-test-org_github-api_issues_events_2704815753-8-306d40.json", + "mode": "100644", + "type": "blob", + "sha": "abb46cec7b293045ee3483592db3456610cb22d4", + "size": 1809, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/abb46cec7b293045ee3483592db3456610cb22d4" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents", + "mode": "040000", + "type": "tree", + "sha": "cd514ed2d638098e9907a462499975fec72e1ff8", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/cd514ed2d638098e9907a462499975fec72e1ff8" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files", + "mode": "040000", + "type": "tree", + "sha": "9272007d512f740365b5c87fbbbf8db168715160", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/9272007d512f740365b5c87fbbbf8db168715160" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/orgs_github-api-test-org-b27b8752-74a5-4f0d-8d9c-483cb31d4178.json", + "mode": "100644", + "type": "blob", + "sha": "99b5920ccb33c237ee5042bcc8de055a07ed1078", + "size": 1481, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/99b5920ccb33c237ee5042bcc8de055a07ed1078" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repos_github-api-test-org_github-api-2afea771-4bdb-4e32-b0ba-e72ed286f6c2.json", + "mode": "100644", + "type": "blob", + "sha": "70addcd65e8a771443308e2b4d04014595e5e00b", + "size": 18893, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/70addcd65e8a771443308e2b4d04014595e5e00b" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repos_github-api-test-org_github-api_issues_events-d6129252-9f48-4380-babb-cc06baa4234e.json", + "mode": "100644", + "type": "blob", + "sha": "8db9125affba3a07adc582a57d4f2e87ec29a3f9", + "size": 133597, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/8db9125affba3a07adc582a57d4f2e87ec29a3f9" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-208a37ec-cb3d-4d4e-b27f-f6df770111b3.json", + "mode": "100644", + "type": "blob", + "sha": "4b2418011a53219014b88b944870d709c351630b", + "size": 127734, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/4b2418011a53219014b88b944870d709c351630b" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-28692783-a6a7-432a-bae1-15bcb4e48175.json", + "mode": "100644", + "type": "blob", + "sha": "864c3930da33c45f69803bb7b431d9443fabaea4", + "size": 134280, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/864c3930da33c45f69803bb7b431d9443fabaea4" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-2b6f606b-278c-47b2-99ff-9036f43b0f68.json", + "mode": "100644", + "type": "blob", + "sha": "db1533323eb43aa06bd3a0f696f001af164114fc", + "size": 126248, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/db1533323eb43aa06bd3a0f696f001af164114fc" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-4917724b-b110-4549-81b5-c329a13c467a.json", + "mode": "100644", + "type": "blob", + "sha": "38b39f2c73331cf381031b410577a71222e83f2e", + "size": 127043, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/38b39f2c73331cf381031b410577a71222e83f2e" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-5f55d936-4d74-4c99-bc0d-f3c3a90dd81a.json", + "mode": "100644", + "type": "blob", + "sha": "3a3206080a3d58f867a944beb1ed0b9c6990bc1f", + "size": 119821, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/3a3206080a3d58f867a944beb1ed0b9c6990bc1f" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-654e008f-d77e-4339-957e-f2bdfcab904b.json", + "mode": "100644", + "type": "blob", + "sha": "2f8da11b097cdacb478017580b03703efa0624eb", + "size": 126475, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/2f8da11b097cdacb478017580b03703efa0624eb" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-6f0d6963-5006-4dba-b11b-a0408d0f798f.json", + "mode": "100644", + "type": "blob", + "sha": "8bfa2a11ba8569777d5e5d2ca4333255f35b12d4", + "size": 127117, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/8bfa2a11ba8569777d5e5d2ca4333255f35b12d4" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-71d7968e-586e-4120-81db-eea6f1aca2f0.json", + "mode": "100644", + "type": "blob", + "sha": "34f3e99cc94cbed3d8234eb875dae92df7f71cea", + "size": 128183, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/34f3e99cc94cbed3d8234eb875dae92df7f71cea" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-72a13002-acc3-4c49-a916-daaf249874b5.json", + "mode": "100644", + "type": "blob", + "sha": "1cc8323699a89a048668b3a89209120339950d44", + "size": 121831, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/1cc8323699a89a048668b3a89209120339950d44" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-83c7abdb-5f08-4826-9313-decbfa7b2531.json", + "mode": "100644", + "type": "blob", + "sha": "c40615d52962fd98f03a3859b647c2db8d09adae", + "size": 120752, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/c40615d52962fd98f03a3859b647c2db8d09adae" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-94dd8eff-b6f3-4003-89c9-c97721354a77.json", + "mode": "100644", + "type": "blob", + "sha": "98e61e3f0886410c11100ec4fa5152b1c9a4792d", + "size": 134194, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/98e61e3f0886410c11100ec4fa5152b1c9a4792d" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-9c193fd6-e6f6-4949-8414-cf031e70f82e.json", + "mode": "100644", + "type": "blob", + "sha": "7bb1ee9b61809087f4239ab6d986f060522e7fb8", + "size": 128004, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/7bb1ee9b61809087f4239ab6d986f060522e7fb8" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-b1ad56d6-c0c7-4679-a0dd-5a6c94eb84b1.json", + "mode": "100644", + "type": "blob", + "sha": "d81daeffb6b89012a5f66dcf3e4f3ec0335130b3", + "size": 133977, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d81daeffb6b89012a5f66dcf3e4f3ec0335130b3" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings", + "mode": "040000", + "type": "tree", + "sha": "9f4373149e7b9935c000dd9ed920d7d672768fdb", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/9f4373149e7b9935c000dd9ed920d7d672768fdb" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/orgs_github-api-test-org-1-b27b87.json", + "mode": "100644", + "type": "blob", + "sha": "c4aff2ee3568c2a58b951226e9e172757a5daf85", + "size": 1698, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/c4aff2ee3568c2a58b951226e9e172757a5daf85" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repos_github-api-test-org_github-api-2-2afea7.json", + "mode": "100644", + "type": "blob", + "sha": "ec528b41090ae38b35761be5909c5fa74b711b4d", + "size": 1734, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/ec528b41090ae38b35761be5909c5fa74b711b4d" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repos_github-api-test-org_github-api_issues_events-3-d61292.json", + "mode": "100644", + "type": "blob", + "sha": "1948e9e98edcf350354d8a167d3365bb0e3932ee", + "size": 1905, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/1948e9e98edcf350354d8a167d3365bb0e3932ee" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-10-83c7ab.json", + "mode": "100644", + "type": "blob", + "sha": "1708e0aa9762a0c6bd22b2e08affbad703f981cd", + "size": 2040, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/1708e0aa9762a0c6bd22b2e08affbad703f981cd" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-11-6f0d69.json", + "mode": "100644", + "type": "blob", + "sha": "801ac5cfe32077dba402b35c0b81c23a0fe7b006", + "size": 2041, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/801ac5cfe32077dba402b35c0b81c23a0fe7b006" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-12-208a37.json", + "mode": "100644", + "type": "blob", + "sha": "2b55d25d7905e8ef9df9be490073dc7b95223d82", + "size": 2042, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/2b55d25d7905e8ef9df9be490073dc7b95223d82" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-13-94dd8e.json", + "mode": "100644", + "type": "blob", + "sha": "2bbe198d730815d54fe155cb1792d59b72fb826b", + "size": 2043, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/2bbe198d730815d54fe155cb1792d59b72fb826b" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-14-b1ad56.json", + "mode": "100644", + "type": "blob", + "sha": "a25410ab69d3b31f61a27077228c1be477cdc5fb", + "size": 2043, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a25410ab69d3b31f61a27077228c1be477cdc5fb" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-15-5f55d9.json", + "mode": "100644", + "type": "blob", + "sha": "238dfd70eaeef9dda8131e1f243b00ac5858035e", + "size": 2043, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/238dfd70eaeef9dda8131e1f243b00ac5858035e" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-16-491772.json", + "mode": "100644", + "type": "blob", + "sha": "86b48280642c9dcd48593ff6ada21cdf8d246ed8", + "size": 1873, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/86b48280642c9dcd48593ff6ada21cdf8d246ed8" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-4-2b6f60.json", + "mode": "100644", + "type": "blob", + "sha": "b31b7f9c1006311bb67fc0ff2080667429ff2ac7", + "size": 2039, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/b31b7f9c1006311bb67fc0ff2080667429ff2ac7" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-5-72a130.json", + "mode": "100644", + "type": "blob", + "sha": "9bdf2dcce26470233aa2ad24c8cf34d63bd938d5", + "size": 2039, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/9bdf2dcce26470233aa2ad24c8cf34d63bd938d5" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-6-9c193f.json", + "mode": "100644", + "type": "blob", + "sha": "3cd02c6d5f8db3f25027125fedeffcb9ae03843d", + "size": 2039, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/3cd02c6d5f8db3f25027125fedeffcb9ae03843d" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-7-654e00.json", + "mode": "100644", + "type": "blob", + "sha": "8651b68df119224b5b4848472fb1c083382dc87e", + "size": 2039, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/8651b68df119224b5b4848472fb1c083382dc87e" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-8-71d796.json", + "mode": "100644", + "type": "blob", + "sha": "79ab97447f740625fc0768e904fc808da4e3136c", + "size": 2039, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/79ab97447f740625fc0768e904fc808da4e3136c" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-9-286927.json", + "mode": "100644", + "type": "blob", + "sha": "3ab555927bef13d052f7ae8d5811ed3a337df53d", + "size": 2039, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/3ab555927bef13d052f7ae8d5811ed3a337df53d" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest", + "mode": "040000", + "type": "tree", + "sha": "95e57e7cf5747eba4ca7310cdee0f6e09bfbf427", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/95e57e7cf5747eba4ca7310cdee0f6e09bfbf427" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock", + "mode": "040000", + "type": "tree", + "sha": "cc297339214c7649f9d2857ec6722a53d51f33d4", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/cc297339214c7649f9d2857ec6722a53d51f33d4" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryFullLicense", + "mode": "040000", + "type": "tree", + "sha": "d912b68726f9a408af68db9936319a7b8515ca19", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/d912b68726f9a408af68db9936319a7b8515ca19" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryFullLicense/__files", + "mode": "040000", + "type": "tree", + "sha": "bff138aab3c9849abcc96f6f56ca333a78b37ba7", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/bff138aab3c9849abcc96f6f56ca333a78b37ba7" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryFullLicense/__files/licenses_mit-4cc836da-9288-41bd-886c-05c93470225d.json", + "mode": "100644", + "type": "blob", + "sha": "b8c174e94b89f0521c95f767f63cf6c12bbcc55a", + "size": 2053, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/b8c174e94b89f0521c95f767f63cf6c12bbcc55a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryFullLicense/__files/repos_github-api_github-api-631120d1-4833-49ea-a8f7-55a6085625ef.json", + "mode": "100644", + "type": "blob", + "sha": "8d7603c61dabe7d797cf07f001e562f129bc20f0", + "size": 6831, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/8d7603c61dabe7d797cf07f001e562f129bc20f0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryFullLicense/__files/repos_github-api_github-api_license-f6ba1895-6c06-4c51-9ad0-fcf322e87ee4.json", + "mode": "100644", + "type": "blob", + "sha": "299e4262b2a573c98df27e738520ebe2c8bca35f", + "size": 2576, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/299e4262b2a573c98df27e738520ebe2c8bca35f" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryFullLicense/__files/user-eeb32135-bbb9-4c4c-8166-472f24fba13a.json", + "mode": "100644", + "type": "blob", + "sha": "41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0", + "size": 1640, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryFullLicense/mappings", + "mode": "040000", + "type": "tree", + "sha": "7e5400c6d5a9376e6fe2dfccd53bf5b878b350e0", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/7e5400c6d5a9376e6fe2dfccd53bf5b878b350e0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryFullLicense/mappings/licenses_mit-4-4cc836.json", + "mode": "100644", + "type": "blob", + "sha": "94a654fa640bc18a3c34e7c1162adec95d6382fd", + "size": 1797, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/94a654fa640bc18a3c34e7c1162adec95d6382fd" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryFullLicense/mappings/repos_github-api_github-api-2-631120.json", + "mode": "100644", + "type": "blob", + "sha": "36b0371aa21dd2523314899d7fa4f407e0182642", + "size": 1902, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/36b0371aa21dd2523314899d7fa4f407e0182642" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryFullLicense/mappings/repos_github-api_github-api_license-3-f6ba18.json", + "mode": "100644", + "type": "blob", + "sha": "9a683b88f593f3fa9756f8c68a15aaaec941ae92", + "size": 1922, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/9a683b88f593f3fa9756f8c68a15aaaec941ae92" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryFullLicense/mappings/user-1-eeb321.json", + "mode": "100644", + "type": "blob", + "sha": "62702f906604c534f2b6ef2e13db4162128241ed", + "size": 1829, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/62702f906604c534f2b6ef2e13db4162128241ed" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicense", + "mode": "040000", + "type": "tree", + "sha": "3098b49b94a0ff1c673ceddd36f3e9458ac19695", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/3098b49b94a0ff1c673ceddd36f3e9458ac19695" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicense/__files", + "mode": "040000", + "type": "tree", + "sha": "4b16ec32e3db4498d31bb0f49d2f08c61760c8e4", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/4b16ec32e3db4498d31bb0f49d2f08c61760c8e4" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicense/__files/repos_github-api_github-api-1f9552cb-0b47-47ca-bb9b-f685d1dbbf05.json", + "mode": "100644", + "type": "blob", + "sha": "8d7603c61dabe7d797cf07f001e562f129bc20f0", + "size": 6831, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/8d7603c61dabe7d797cf07f001e562f129bc20f0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicense/__files/repos_github-api_github-api_license-b99917fd-7863-4815-8e2e-cd3261475e98.json", + "mode": "100644", + "type": "blob", + "sha": "299e4262b2a573c98df27e738520ebe2c8bca35f", + "size": 2576, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/299e4262b2a573c98df27e738520ebe2c8bca35f" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicense/__files/user-659cc231-9415-4c8e-8f9f-153362753343.json", + "mode": "100644", + "type": "blob", + "sha": "41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0", + "size": 1640, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicense/mappings", + "mode": "040000", + "type": "tree", + "sha": "85a351f06d2ab66c6708d2dec234ffbecf73555f", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/85a351f06d2ab66c6708d2dec234ffbecf73555f" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicense/mappings/repos_github-api_github-api-2-1f9552.json", + "mode": "100644", + "type": "blob", + "sha": "44394c38c366daa643b1aef21d390c2663df1c8b", + "size": 1900, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/44394c38c366daa643b1aef21d390c2663df1c8b" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicense/mappings/repos_github-api_github-api_license-3-b99917.json", + "mode": "100644", + "type": "blob", + "sha": "fc1d4cf0fffcc1f16560268c8df43e96bd9d9bed", + "size": 1920, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/fc1d4cf0fffcc1f16560268c8df43e96bd9d9bed" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicense/mappings/user-1-659cc2.json", + "mode": "100644", + "type": "blob", + "sha": "9f1c1d0edeef219ab1be03f89c1f3d1462ee8e17", + "size": 1827, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/9f1c1d0edeef219ab1be03f89c1f3d1462ee8e17" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicenseAtom", + "mode": "040000", + "type": "tree", + "sha": "d19c0a59eb391d76701213b8cfa0ec9054a81b8f", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/d19c0a59eb391d76701213b8cfa0ec9054a81b8f" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicenseAtom/__files", + "mode": "040000", + "type": "tree", + "sha": "22e09b0d4cb1ea3fc3018cea88de5d0c6a20b639", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/22e09b0d4cb1ea3fc3018cea88de5d0c6a20b639" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicenseAtom/__files/repos_atom_atom-bd1153cf-7be6-4147-9e7e-e12a0d7789f2.json", + "mode": "100644", + "type": "blob", + "sha": "ff2bee6b9331202b6109f855eddbad8766cc78d4", + "size": 6096, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/ff2bee6b9331202b6109f855eddbad8766cc78d4" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicenseAtom/__files/repos_atom_atom_license-a0fac733-4d83-4d68-be23-c1c57574ea10.json", + "mode": "100644", + "type": "blob", + "sha": "37d64c2287f57fc1db2b8fc27b2a20bc872f5b48", + "size": 2427, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/37d64c2287f57fc1db2b8fc27b2a20bc872f5b48" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicenseAtom/__files/user-30af4231-bcac-4e52-8dfe-da122934c709.json", + "mode": "100644", + "type": "blob", + "sha": "41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0", + "size": 1640, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicenseAtom/mappings", + "mode": "040000", + "type": "tree", + "sha": "b38409e3f237829c79c4739f83324c83151c1d9e", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/b38409e3f237829c79c4739f83324c83151c1d9e" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicenseAtom/mappings/repos_atom_atom-2-bd1153.json", + "mode": "100644", + "type": "blob", + "sha": "47f8c0bffc4936e539c279198cdca2f150f6bcde", + "size": 1866, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/47f8c0bffc4936e539c279198cdca2f150f6bcde" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicenseAtom/mappings/repos_atom_atom_license-3-a0fac7.json", + "mode": "100644", + "type": "blob", + "sha": "774422d937c5a44b75a4e1c323fb32ee7d5f1054", + "size": 1886, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/774422d937c5a44b75a4e1c323fb32ee7d5f1054" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicenseAtom/mappings/user-1-30af42.json", + "mode": "100644", + "type": "blob", + "sha": "07c02325d597a7591f829c69b96f052b242d726c", + "size": 1829, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/07c02325d597a7591f829c69b96f052b242d726c" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicenseContent", + "mode": "040000", + "type": "tree", + "sha": "73d7602a5cc0bc855248e600fa5041995b50c3c8", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/73d7602a5cc0bc855248e600fa5041995b50c3c8" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicenseContent/__files", + "mode": "040000", + "type": "tree", + "sha": "a1e8683c2175f0f301aedf6d365f7abed855c68a", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/a1e8683c2175f0f301aedf6d365f7abed855c68a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicenseContent/__files/repos_pomes_pomes-7c3e7b36-6930-4804-8d6e-83075abfcde8.json", + "mode": "100644", + "type": "blob", + "sha": "cfc7decc75810b9750d72f2530a58068df56230b", + "size": 6263, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/cfc7decc75810b9750d72f2530a58068df56230b" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicenseContent/__files/repos_pomes_pomes_license-c59d46f6-2c50-4afd-80b6-40dbfa4dd754.json", + "mode": "100644", + "type": "blob", + "sha": "34cefa04e1c2e2251021feeaf82975b6e68e1794", + "size": 16639, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/34cefa04e1c2e2251021feeaf82975b6e68e1794" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicenseContent/__files/user-767d6575-bd87-4641-a940-a567ff936667.json", + "mode": "100644", + "type": "blob", + "sha": "41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0", + "size": 1640, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicenseContent/mappings", + "mode": "040000", + "type": "tree", + "sha": "348ea6e0716da4aa6e069423f2e35d6d4f040182", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/348ea6e0716da4aa6e069423f2e35d6d4f040182" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicenseContent/mappings/repos_pomes_pomes-2-7c3e7b.json", + "mode": "100644", + "type": "blob", + "sha": "2771b8c27ab2389ead82f42fbb7147863b584afe", + "size": 1872, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/2771b8c27ab2389ead82f42fbb7147863b584afe" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicenseContent/mappings/repos_pomes_pomes_license-3-c59d46.json", + "mode": "100644", + "type": "blob", + "sha": "2f6f97ae41d8f8d331928e076baadd8968de85fd", + "size": 1892, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/2f6f97ae41d8f8d331928e076baadd8968de85fd" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicenseContent/mappings/user-1-767d65.json", + "mode": "100644", + "type": "blob", + "sha": "fa06ce977ef8f6624e532f0e076f8a797a39366d", + "size": 1829, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/fa06ce977ef8f6624e532f0e076f8a797a39366d" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicenseContent_raw", + "mode": "040000", + "type": "tree", + "sha": "ae04299764a4c74152d9b142c5a5417f7b5da0f2", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/ae04299764a4c74152d9b142c5a5417f7b5da0f2" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicenseContent_raw/__files", + "mode": "040000", + "type": "tree", + "sha": "9b97baf29c5808831e7bbfca7dc68efe7ab82df9", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/9b97baf29c5808831e7bbfca7dc68efe7ab82df9" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicenseContent_raw/__files/pomes_pomes_master_license-050b93b9-0d3b-4dd2-bde1-a220548659e4.txt", + "mode": "100644", + "type": "blob", + "sha": "8371492840f9485d7baf719dc2ae3e4cb9e8c03b", + "size": 11361, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/8371492840f9485d7baf719dc2ae3e4cb9e8c03b" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicenseContent_raw/mappings", + "mode": "040000", + "type": "tree", + "sha": "b1f0433a7992f5cf8ce8e382e8daa1703b72dab3", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/b1f0433a7992f5cf8ce8e382e8daa1703b72dab3" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicenseContent_raw/mappings/pomes_pomes_master_license-1-050b93.json", + "mode": "100644", + "type": "blob", + "sha": "021d4f13ce2dd2cf8866951d5b455e0bb20ae123", + "size": 1451, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/021d4f13ce2dd2cf8866951d5b455e0bb20ae123" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicensePomes", + "mode": "040000", + "type": "tree", + "sha": "c150c31ba610b3812b0471e2c1897b522672d449", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/c150c31ba610b3812b0471e2c1897b522672d449" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicensePomes/__files", + "mode": "040000", + "type": "tree", + "sha": "2b62f4f56070e40330fcc5c825e9f922b035f122", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/2b62f4f56070e40330fcc5c825e9f922b035f122" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicensePomes/__files/repos_pomes_pomes-c9deed07-bd75-4016-bc8e-ee09b582b604.json", + "mode": "100644", + "type": "blob", + "sha": "cfc7decc75810b9750d72f2530a58068df56230b", + "size": 6263, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/cfc7decc75810b9750d72f2530a58068df56230b" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicensePomes/__files/repos_pomes_pomes_license-47a3f209-8281-4238-b926-f199992b4cdf.json", + "mode": "100644", + "type": "blob", + "sha": "34cefa04e1c2e2251021feeaf82975b6e68e1794", + "size": 16639, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/34cefa04e1c2e2251021feeaf82975b6e68e1794" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicensePomes/__files/user-f33aa0eb-ef47-4106-b877-b8938a450623.json", + "mode": "100644", + "type": "blob", + "sha": "41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0", + "size": 1640, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicensePomes/mappings", + "mode": "040000", + "type": "tree", + "sha": "17cc55424ed9712fe4586aeb82ddce30da5e1e28", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/17cc55424ed9712fe4586aeb82ddce30da5e1e28" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicensePomes/mappings/repos_pomes_pomes-2-c9deed.json", + "mode": "100644", + "type": "blob", + "sha": "710799cabb502d0f2399f1a3c8b722b00ea55657", + "size": 1870, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/710799cabb502d0f2399f1a3c8b722b00ea55657" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicensePomes/mappings/repos_pomes_pomes_license-3-47a3f2.json", + "mode": "100644", + "type": "blob", + "sha": "88cd9be7475539076a3159f52d2b8c0f6222f25f", + "size": 1890, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/88cd9be7475539076a3159f52d2b8c0f6222f25f" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicensePomes/mappings/user-1-f33aa0.json", + "mode": "100644", + "type": "blob", + "sha": "191fa4ce8b07c3bdfeb0e84901925d826f50f20e", + "size": 1827, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/191fa4ce8b07c3bdfeb0e84901925d826f50f20e" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryWithoutLicense", + "mode": "040000", + "type": "tree", + "sha": "89792a795ea490efd8a8fa9fa9456a6754797864", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/89792a795ea490efd8a8fa9fa9456a6754797864" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryWithoutLicense/__files", + "mode": "040000", + "type": "tree", + "sha": "ff1bd9a2c38a684935f4985ce5f24252c1fa3259", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/ff1bd9a2c38a684935f4985ce5f24252c1fa3259" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryWithoutLicense/__files/repos_github-api-test-org_empty-ed789279-0e18-43b9-8ee5-4a9a40160834.json", + "mode": "100644", + "type": "blob", + "sha": "5179da139415c995da5310f1a5a967ef00b17830", + "size": 7031, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/5179da139415c995da5310f1a5a967ef00b17830" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryWithoutLicense/__files/user-3003d0dd-7267-40ad-a499-e3fb8ce52a3f.json", + "mode": "100644", + "type": "blob", + "sha": "41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0", + "size": 1640, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryWithoutLicense/mappings", + "mode": "040000", + "type": "tree", + "sha": "f2a5fe99e0ada1599faa23dc4b62443510cb28da", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/f2a5fe99e0ada1599faa23dc4b62443510cb28da" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryWithoutLicense/mappings/repos_github-api-test-org_empty-2-ed7892.json", + "mode": "100644", + "type": "blob", + "sha": "b396ce7b77da179d36e1fd3eb06b62956dc5d03a", + "size": 1914, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/b396ce7b77da179d36e1fd3eb06b62956dc5d03a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryWithoutLicense/mappings/repos_github-api-test-org_empty_license-3-fb7ab8.json", + "mode": "100644", + "type": "blob", + "sha": "3374cb9d2c9dfc44e333533451dd0152f1a11ac8", + "size": 1712, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/3374cb9d2c9dfc44e333533451dd0152f1a11ac8" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryWithoutLicense/mappings/user-1-3003d0.json", + "mode": "100644", + "type": "blob", + "sha": "badb8bc2b55373133e9c23f46b0e179855708a88", + "size": 1829, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/badb8bc2b55373133e9c23f46b0e179855708a88" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/getLicense", + "mode": "040000", + "type": "tree", + "sha": "3ac0869b6547055b2139895e92ce38d4ef8c1305", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/3ac0869b6547055b2139895e92ce38d4ef8c1305" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/getLicense/__files", + "mode": "040000", + "type": "tree", + "sha": "db0c24fd304c5404a0f431e8c952753e63fb1e7d", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/db0c24fd304c5404a0f431e8c952753e63fb1e7d" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/getLicense/__files/licenses_mit-2182eadf-58a8-487f-89af-e6f6e8c527fe.json", + "mode": "100644", + "type": "blob", + "sha": "b8c174e94b89f0521c95f767f63cf6c12bbcc55a", + "size": 2053, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/b8c174e94b89f0521c95f767f63cf6c12bbcc55a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/getLicense/__files/user-38876ae8-0962-4f1b-97cf-78ca1fb1fcb9.json", + "mode": "100644", + "type": "blob", + "sha": "41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0", + "size": 1640, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/getLicense/mappings", + "mode": "040000", + "type": "tree", + "sha": "37cd6ed4af527d945d8525ba45f9e81ca68c68d4", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/37cd6ed4af527d945d8525ba45f9e81ca68c68d4" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/getLicense/mappings/licenses_mit-2-2182ea.json", + "mode": "100644", + "type": "blob", + "sha": "8e57d98cef5f9fceba16fd7706904dc5d3b5d954", + "size": 1795, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/8e57d98cef5f9fceba16fd7706904dc5d3b5d954" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/getLicense/mappings/user-1-38876a.json", + "mode": "100644", + "type": "blob", + "sha": "8c6e8ac28f90dd8763ba790c9a96dd14575f912a", + "size": 1827, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/8c6e8ac28f90dd8763ba790c9a96dd14575f912a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/listLicenses", + "mode": "040000", + "type": "tree", + "sha": "f9778b86b8daca9ba396435fb869f85b705a6c7b", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/f9778b86b8daca9ba396435fb869f85b705a6c7b" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/listLicenses/__files", + "mode": "040000", + "type": "tree", + "sha": "d9309e08a44d9dd675f5e6b107d1752048ac162f", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/d9309e08a44d9dd675f5e6b107d1752048ac162f" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/listLicenses/__files/licenses-b3d307b7-ab1a-4a9e-9b89-d0a7e8fcd2e8.json", + "mode": "100644", + "type": "blob", + "sha": "cdbd51e9072cca80847226037e212c63754d3d37", + "size": 2324, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/cdbd51e9072cca80847226037e212c63754d3d37" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/listLicenses/__files/user-dfe7f772-b859-48ce-919e-54ccde4cdd28.json", + "mode": "100644", + "type": "blob", + "sha": "41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0", + "size": 1640, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/listLicenses/mappings", + "mode": "040000", + "type": "tree", + "sha": "feb7766d7b00de1347fa9d64c8e724900757e25c", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/feb7766d7b00de1347fa9d64c8e724900757e25c" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/listLicenses/mappings/licenses-2-b3d307.json", + "mode": "100644", + "type": "blob", + "sha": "789b180eec3eff1a17694478610c4afb04410580", + "size": 1785, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/789b180eec3eff1a17694478610c4afb04410580" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/listLicenses/mappings/user-1-dfe7f7.json", + "mode": "100644", + "type": "blob", + "sha": "864b3732a81be63502fafff9bb78771b18d00aab", + "size": 1829, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/864b3732a81be63502fafff9bb78771b18d00aab" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/listLicensesCheckIndividualLicense", + "mode": "040000", + "type": "tree", + "sha": "edbaf75cc57774f28a721f5046364e074b3b397c", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/edbaf75cc57774f28a721f5046364e074b3b397c" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/listLicensesCheckIndividualLicense/__files", + "mode": "040000", + "type": "tree", + "sha": "197691b33f364151769b8a49c007dd3044297308", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/197691b33f364151769b8a49c007dd3044297308" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/listLicensesCheckIndividualLicense/__files/licenses-f00fa680-0dd6-401b-a35f-1ed72d7587a7.json", + "mode": "100644", + "type": "blob", + "sha": "cdbd51e9072cca80847226037e212c63754d3d37", + "size": 2324, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/cdbd51e9072cca80847226037e212c63754d3d37" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/listLicensesCheckIndividualLicense/__files/user-b8102c16-0e43-4f4d-96c1-7d6cfb5981c2.json", + "mode": "100644", + "type": "blob", + "sha": "41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0", + "size": 1640, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/listLicensesCheckIndividualLicense/mappings", + "mode": "040000", + "type": "tree", + "sha": "a5b8795a0130f8a18b284870f28ba7a268b3a949", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/a5b8795a0130f8a18b284870f28ba7a268b3a949" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/listLicensesCheckIndividualLicense/mappings/licenses-2-f00fa6.json", + "mode": "100644", + "type": "blob", + "sha": "c7138f12490535f18f80506ce7e37e12a10e4233", + "size": 1785, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/c7138f12490535f18f80506ce7e37e12a10e4233" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/listLicensesCheckIndividualLicense/mappings/user-1-b8102c.json", + "mode": "100644", + "type": "blob", + "sha": "75754a00278c3e7d1290f050cdb2e3ca24366497", + "size": 1829, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/75754a00278c3e7d1290f050cdb2e3ca24366497" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHOrganizationTest", + "mode": "040000", + "type": "tree", + "sha": "7aeee7b3c672d64c265d45c259ad3e948f6255c8", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/7aeee7b3c672d64c265d45c259ad3e948f6255c8" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock", + "mode": "040000", + "type": "tree", + "sha": "c8bcd4d3898c8a94d8a08fd9f9733765b02fb8e5", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/c8bcd4d3898c8a94d8a08fd9f9733765b02fb8e5" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepository", + "mode": "040000", + "type": "tree", + "sha": "da4ec1e6d5aa9c9445f28c7d4e4a8fcdfa03841a", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/da4ec1e6d5aa9c9445f28c7d4e4a8fcdfa03841a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepository/__files", + "mode": "040000", + "type": "tree", + "sha": "43efaebd23196fe61cc810e6b23e182e863aea57", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/43efaebd23196fe61cc810e6b23e182e863aea57" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepository/__files/orgs_github-api-test-org-cf0714bb-fa4e-4d8b-8e74-05a7b3c11a5b.json", + "mode": "100644", + "type": "blob", + "sha": "61547e3d987dbf85ed43d15ec6ae2239e59bd4a6", + "size": 1480, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/61547e3d987dbf85ed43d15ec6ae2239e59bd4a6" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepository/__files/orgs_github-api-test-org_repos-43cfd527-8dc8-4025-ab6f-41f6c45a86bd.json", + "mode": "100644", + "type": "blob", + "sha": "ad4f5818665cb95b4173e84aebda2001da33cb28", + "size": 7517, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/ad4f5818665cb95b4173e84aebda2001da33cb28" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepository/__files/orgs_github-api-test-org_teams-beb3badb-dca2-4515-9c19-9ba8401f98f4.json", + "mode": "100644", + "type": "blob", + "sha": "86e70a5912126f4d62b85e34fd191afc89b91df2", + "size": 951, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/86e70a5912126f4d62b85e34fd191afc89b91df2" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepository/__files/user-58ae6686-1748-4884-8b04-c483ac0bf048.json", + "mode": "100644", + "type": "blob", + "sha": "39d6c8353e0136a1f26e004bf49ea0a5ec7f4be0", + "size": 1640, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/39d6c8353e0136a1f26e004bf49ea0a5ec7f4be0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepository/mappings", + "mode": "040000", + "type": "tree", + "sha": "b57ae696cdad8c69ceeef9fe8c9fa7e581bb2973", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/b57ae696cdad8c69ceeef9fe8c9fa7e581bb2973" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepository/mappings/orgs_github-api-test-org-2-cf0714.json", + "mode": "100644", + "type": "blob", + "sha": "5f89eb9f9c88e05577f6c867e8a7f4552e69e0a8", + "size": 1929, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/5f89eb9f9c88e05577f6c867e8a7f4552e69e0a8" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepository/mappings/orgs_github-api-test-org_repos-4-43cfd5.json", + "mode": "100644", + "type": "blob", + "sha": "3401dbb805e84626b66331318dd6aa4eb4cc4ae0", + "size": 2285, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/3401dbb805e84626b66331318dd6aa4eb4cc4ae0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepository/mappings/orgs_github-api-test-org_teams-3-beb3ba.json", + "mode": "100644", + "type": "blob", + "sha": "17eebd562b385e0f7e8dc92e01da3cdb3e06ba68", + "size": 1891, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/17eebd562b385e0f7e8dc92e01da3cdb3e06ba68" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepository/mappings/user-1-58ae66.json", + "mode": "100644", + "type": "blob", + "sha": "ccc2b7d6cf3e38962582e454f59260df9c4f86af", + "size": 1827, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/ccc2b7d6cf3e38962582e454f59260df9c4f86af" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepositoryWithAutoInitialization", + "mode": "040000", + "type": "tree", + "sha": "54b019f17290ecb221319c8dc07c4a77289df09e", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/54b019f17290ecb221319c8dc07c4a77289df09e" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepositoryWithAutoInitialization/__files", + "mode": "040000", + "type": "tree", + "sha": "8941221bb56460e8000f4942804c0fb866cc0b8a", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/8941221bb56460e8000f4942804c0fb866cc0b8a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepositoryWithAutoInitialization/__files/orgs_github-api-test-org-7b0ac54c-1ef0-453a-99db-a480b3b5a746.json", + "mode": "100644", + "type": "blob", + "sha": "61547e3d987dbf85ed43d15ec6ae2239e59bd4a6", + "size": 1480, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/61547e3d987dbf85ed43d15ec6ae2239e59bd4a6" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepositoryWithAutoInitialization/__files/orgs_github-api-test-org_repos-423c774e-3d61-423a-ad0d-ee166bf2b4de.json", + "mode": "100644", + "type": "blob", + "sha": "55d95a1f7df29979acada33e92cc8ba2a38fc7d3", + "size": 7517, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/55d95a1f7df29979acada33e92cc8ba2a38fc7d3" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepositoryWithAutoInitialization/__files/orgs_github-api-test-org_teams-eb06b2d9-1dda-4070-bdfe-3005f550e7ec.json", + "mode": "100644", + "type": "blob", + "sha": "86e70a5912126f4d62b85e34fd191afc89b91df2", + "size": 951, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/86e70a5912126f4d62b85e34fd191afc89b91df2" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepositoryWithAutoInitialization/__files/repos_github-api-test-org_github-api-test_readme-12092c16-85de-454a-80ae-61c283738838.json", + "mode": "100644", + "type": "blob", + "sha": "a1ad8265ebe1ac9b97d8162b0eedf57e6c053781", + "size": 1065, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a1ad8265ebe1ac9b97d8162b0eedf57e6c053781" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepositoryWithAutoInitialization/__files/user-d246cfb6-e28a-417b-8d74-29080bbc1c4c.json", + "mode": "100644", + "type": "blob", + "sha": "39d6c8353e0136a1f26e004bf49ea0a5ec7f4be0", + "size": 1640, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/39d6c8353e0136a1f26e004bf49ea0a5ec7f4be0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepositoryWithAutoInitialization/mappings", + "mode": "040000", + "type": "tree", + "sha": "a366ccb9b0d9458c8c6e1feab93a99f82342b726", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/a366ccb9b0d9458c8c6e1feab93a99f82342b726" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepositoryWithAutoInitialization/mappings/orgs_github-api-test-org-2-7b0ac5.json", + "mode": "100644", + "type": "blob", + "sha": "14a99da12c05ac92ac641e1c4e65fcc68c0821d0", + "size": 1929, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/14a99da12c05ac92ac641e1c4e65fcc68c0821d0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepositoryWithAutoInitialization/mappings/orgs_github-api-test-org_repos-4-423c77.json", + "mode": "100644", + "type": "blob", + "sha": "55a26d38c5ec39b2d5a2befa2a98c88e3aaeeb2b", + "size": 2286, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/55a26d38c5ec39b2d5a2befa2a98c88e3aaeeb2b" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepositoryWithAutoInitialization/mappings/orgs_github-api-test-org_teams-3-eb06b2.json", + "mode": "100644", + "type": "blob", + "sha": "4c351a440656564c7a1ebab44476cc8e72f44325", + "size": 1891, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/4c351a440656564c7a1ebab44476cc8e72f44325" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepositoryWithAutoInitialization/mappings/repos_github-api-test-org_github-api-test_readme-5-12092c.json", + "mode": "100644", + "type": "blob", + "sha": "3ccaef42219e01d47271fb58b21c8b2e969679f0", + "size": 1959, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/3ccaef42219e01d47271fb58b21c8b2e969679f0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepositoryWithAutoInitialization/mappings/user-1-d246cf.json", + "mode": "100644", + "type": "blob", + "sha": "475a06eee15901ecb9478c7a203fcb5031497b46", + "size": 1827, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/475a06eee15901ecb9478c7a203fcb5031497b46" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testInviteUser", + "mode": "040000", + "type": "tree", + "sha": "cdfbc07d96bcdeac1d7840244a65b6a6299c6d44", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/cdfbc07d96bcdeac1d7840244a65b6a6299c6d44" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testInviteUser/__files", + "mode": "040000", + "type": "tree", + "sha": "7e99d2818d9ecf50d1e2482c4b6726a4526fa2ec", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/7e99d2818d9ecf50d1e2482c4b6726a4526fa2ec" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testInviteUser/__files/orgs_github-api-test-org-6480b3f7-e3e1-4a01-98fb-ca85b6ea4099.json", + "mode": "100644", + "type": "blob", + "sha": "3810bc400e82d6ce58b2e741b5e7013de3734726", + "size": 1480, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/3810bc400e82d6ce58b2e741b5e7013de3734726" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testInviteUser/__files/orgs_github-api-test-org_members-e0db340d-7d23-488e-9858-6e71ed5a4c84.json", + "mode": "100644", + "type": "blob", + "sha": "fc46d241217aad4e63ddc18618d6c6fa236d4fff", + "size": 5243, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/fc46d241217aad4e63ddc18618d6c6fa236d4fff" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testInviteUser/__files/orgs_github-api-test-org_memberships_martinvanzijl2-d8831e1a-2b63-4d3f-82b2-87f4d14116f3.json", + "mode": "100644", + "type": "blob", + "sha": "d1a762d30502d7d7150311756ee2fb65ec9b0a53", + "size": 2086, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d1a762d30502d7d7150311756ee2fb65ec9b0a53" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testInviteUser/__files/users_martinvanzijl2-26b89bbe-835e-4bf6-b60a-bc32177b3fdb.json", + "mode": "100644", + "type": "blob", + "sha": "f74cb72dcbc015283a0f484f8c54d880ce906324", + "size": 1381, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/f74cb72dcbc015283a0f484f8c54d880ce906324" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testInviteUser/mappings", + "mode": "040000", + "type": "tree", + "sha": "a93c85d62f9e315602568778f039e37accca0ddf", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/a93c85d62f9e315602568778f039e37accca0ddf" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testInviteUser/mappings/orgs_github-api-test-org-1-6480b3.json", + "mode": "100644", + "type": "blob", + "sha": "10d11b78deae6240c13cdcf8dd6067e18b04e443", + "size": 1698, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/10d11b78deae6240c13cdcf8dd6067e18b04e443" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testInviteUser/mappings/orgs_github-api-test-org_members-2-e0db34.json", + "mode": "100644", + "type": "blob", + "sha": "1bb600711be3ed658d7d3bc2ce85d6316040ea95", + "size": 1666, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/1bb600711be3ed658d7d3bc2ce85d6316040ea95" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testInviteUser/mappings/orgs_github-api-test-org_members_martinvanzijl2-4-885640.json", + "mode": "100644", + "type": "blob", + "sha": "2ad4a2b4243bef71900fbe9d8e49487e3b0680ae", + "size": 1565, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/2ad4a2b4243bef71900fbe9d8e49487e3b0680ae" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testInviteUser/mappings/orgs_github-api-test-org_memberships_martinvanzijl2-5-d8831e.json", + "mode": "100644", + "type": "blob", + "sha": "869f368cf3565f2068d06b97792a98898a567667", + "size": 1886, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/869f368cf3565f2068d06b97792a98898a567667" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testInviteUser/mappings/users_martinvanzijl2-3-26b89b.json", + "mode": "100644", + "type": "blob", + "sha": "ecccb80a7248eeb5a8b72b0421387fe7e8869d48", + "size": 1686, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/ecccb80a7248eeb5a8b72b0421387fe7e8869d48" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest", + "mode": "040000", + "type": "tree", + "sha": "6f1a7c5387ecafc6c8922c061649b47dd3facde5", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/6f1a7c5387ecafc6c8922c061649b47dd3facde5" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock", + "mode": "040000", + "type": "tree", + "sha": "76434570e6ab10447c71bfebaac84536982d8ae3", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/76434570e6ab10447c71bfebaac84536982d8ae3" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testArchiveCard", + "mode": "040000", + "type": "tree", + "sha": "2cc0f8fc6e9001801b483d34e2e91c200e984b23", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/2cc0f8fc6e9001801b483d34e2e91c200e984b23" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testArchiveCard/__files", + "mode": "040000", + "type": "tree", + "sha": "d4d633dce699fa0ea09a07a29a1e30a7d1a8c8d1", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/d4d633dce699fa0ea09a07a29a1e30a7d1a8c8d1" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testArchiveCard/__files/orgs_github-api-test-org-8a33ed8f-a98f-47af-a4e7-a30928da2e70.json", + "mode": "100644", + "type": "blob", + "sha": "d4c06c4749cf16912257b405f5b36b3e49b2e0db", + "size": 1480, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d4c06c4749cf16912257b405f5b36b3e49b2e0db" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testArchiveCard/__files/orgs_github-api-test-org_projects-b659e68a-af69-4413-a2fa-602524428990.json", + "mode": "100644", + "type": "blob", + "sha": "06acfcdc1ab7fc8530679f1d17f82c4a86af4bd4", + "size": 1609, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/06acfcdc1ab7fc8530679f1d17f82c4a86af4bd4" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testArchiveCard/__files/projects_3312444_columns-3be146c4-9f97-4b2d-9951-16dd86ec334f.json", + "mode": "100644", + "type": "blob", + "sha": "77eddc66fa2eac1b06396d5165446f70bb6b8e34", + "size": 364, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/77eddc66fa2eac1b06396d5165446f70bb6b8e34" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testArchiveCard/__files/projects_columns_6706801_cards-45bdd9f0-5efe-43c3-b01f-130894549d0d.json", + "mode": "100644", + "type": "blob", + "sha": "a0e0256b159afce9d628e35945cb5acb6f967e62", + "size": 1448, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a0e0256b159afce9d628e35945cb5acb6f967e62" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testArchiveCard/__files/projects_columns_cards_27353270-75b0d2d0-bf80-4ffe-bb43-a39a48abf2ac.json", + "mode": "100644", + "type": "blob", + "sha": "76e1c0889fbe9452fd8b6ff1f94a82e6c8f73b00", + "size": 1447, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/76e1c0889fbe9452fd8b6ff1f94a82e6c8f73b00" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testArchiveCard/__files/projects_columns_cards_27353270-97fd6c7d-30b2-4036-9d02-b3be29a2c045.json", + "mode": "100644", + "type": "blob", + "sha": "76e1c0889fbe9452fd8b6ff1f94a82e6c8f73b00", + "size": 1447, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/76e1c0889fbe9452fd8b6ff1f94a82e6c8f73b00" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testArchiveCard/__files/user-0c7200e4-cdc5-45a5-997a-d7b8568751cf.json", + "mode": "100644", + "type": "blob", + "sha": "41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0", + "size": 1640, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testArchiveCard/mappings", + "mode": "040000", + "type": "tree", + "sha": "13eec4b8eb9cc9483bc17b9ec52095abf7e8230f", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/13eec4b8eb9cc9483bc17b9ec52095abf7e8230f" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testArchiveCard/mappings/orgs_github-api-test-org-2-8a33ed.json", + "mode": "100644", + "type": "blob", + "sha": "0fad4ad0c754dca4cb3a431dabbb4bde7e5a468c", + "size": 1929, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/0fad4ad0c754dca4cb3a431dabbb4bde7e5a468c" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testArchiveCard/mappings/orgs_github-api-test-org_projects-3-b659e6.json", + "mode": "100644", + "type": "blob", + "sha": "38d50bdddfe049963aaa0d891adfcc1ce365e040", + "size": 2160, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/38d50bdddfe049963aaa0d891adfcc1ce365e040" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testArchiveCard/mappings/projects_3312444_columns-4-3be146.json", + "mode": "100644", + "type": "blob", + "sha": "c772215c9d6886fb19ff95804783528687cfb866", + "size": 2103, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/c772215c9d6886fb19ff95804783528687cfb866" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testArchiveCard/mappings/projects_columns_6706801_cards-5-45bdd9.json", + "mode": "100644", + "type": "blob", + "sha": "16a7772f387e8b6d9ceb1d2605ea1a9fe9051b71", + "size": 2132, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/16a7772f387e8b6d9ceb1d2605ea1a9fe9051b71" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testArchiveCard/mappings/projects_columns_cards_27353270-6-97fd6c.json", + "mode": "100644", + "type": "blob", + "sha": "e8b2dcd02b3c27f9aca1752d6c3c89f61e054c22", + "size": 2047, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/e8b2dcd02b3c27f9aca1752d6c3c89f61e054c22" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testArchiveCard/mappings/projects_columns_cards_27353270-7-75b0d2.json", + "mode": "100644", + "type": "blob", + "sha": "f823dcfb6dff21e209c6d8a380a90fb97b6144d5", + "size": 1883, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/f823dcfb6dff21e209c6d8a380a90fb97b6144d5" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testArchiveCard/mappings/user-1-0c7200.json", + "mode": "100644", + "type": "blob", + "sha": "f658bec9c8e061868f034170edcd31532ddeebf1", + "size": 1827, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/f658bec9c8e061868f034170edcd31532ddeebf1" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreateCardFromIssue", + "mode": "040000", + "type": "tree", + "sha": "02eb18a100651c412f0769951354e2cf63c840a0", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/02eb18a100651c412f0769951354e2cf63c840a0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreateCardFromIssue/__files", + "mode": "040000", + "type": "tree", + "sha": "438770854fc8cd83dde5c0e771ead22856a9fcdf", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/438770854fc8cd83dde5c0e771ead22856a9fcdf" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreateCardFromIssue/__files/orgs_github-api-test-org-2cd47524-8e16-4b6b-aedd-d8dbfbfe5aa9.json", + "mode": "100644", + "type": "blob", + "sha": "d4c06c4749cf16912257b405f5b36b3e49b2e0db", + "size": 1480, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d4c06c4749cf16912257b405f5b36b3e49b2e0db" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreateCardFromIssue/__files/orgs_github-api-test-org_projects-bac54b7b-af26-4015-85d1-97d981800e06.json", + "mode": "100644", + "type": "blob", + "sha": "8e1d50d6ca6b82c0772e43798ccaea1142eebfc6", + "size": 1609, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/8e1d50d6ca6b82c0772e43798ccaea1142eebfc6" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreateCardFromIssue/__files/orgs_github-api-test-org_repos-c2d81922-c3f6-41b3-b109-de8cfe1452a6.json", + "mode": "100644", + "type": "blob", + "sha": "45f2fedc15cf0fbe75b73276424923a3b541bb50", + "size": 7704, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/45f2fedc15cf0fbe75b73276424923a3b541bb50" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreateCardFromIssue/__files/projects_3312449_columns-5b504083-4657-4d27-aaff-54f97a361d7a.json", + "mode": "100644", + "type": "blob", + "sha": "f011da95b1130620973414b53aa46625bacad2b7", + "size": 364, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/f011da95b1130620973414b53aa46625bacad2b7" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreateCardFromIssue/__files/projects_columns_6706803_cards-6458c399-0897-43a0-a869-f43a56e32cae.json", + "mode": "100644", + "type": "blob", + "sha": "f1baadb19a8c99cca3b27a849dbd8d359f255995", + "size": 1536, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/f1baadb19a8c99cca3b27a849dbd8d359f255995" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreateCardFromIssue/__files/projects_columns_6706803_cards-e6d34d34-6779-4c36-83e1-b783989750c3.json", + "mode": "100644", + "type": "blob", + "sha": "2e66145ee5318a3d6c7a8e39b7a34378c6db572f", + "size": 1448, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/2e66145ee5318a3d6c7a8e39b7a34378c6db572f" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreateCardFromIssue/__files/repos_github-api-test-org_repo-for-project-card_issues-29d82e53-34b8-4443-bddd-fdd14726484d.json", + "mode": "100644", + "type": "blob", + "sha": "47a1b67868af9cc721d5899e76adde2c854841f9", + "size": 2066, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/47a1b67868af9cc721d5899e76adde2c854841f9" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreateCardFromIssue/__files/user-b9c4ba1f-224e-4e78-85ca-b1ac911fdd4e.json", + "mode": "100644", + "type": "blob", + "sha": "41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0", + "size": 1640, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreateCardFromIssue/mappings", + "mode": "040000", + "type": "tree", + "sha": "d8190b52d46577bfd4f13a781c4ebe749f4e6e70", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/d8190b52d46577bfd4f13a781c4ebe749f4e6e70" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreateCardFromIssue/mappings/orgs_github-api-test-org-2-2cd475.json", + "mode": "100644", + "type": "blob", + "sha": "73bf97872f5f2fb4db1a557f287f991d74cd8060", + "size": 1931, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/73bf97872f5f2fb4db1a557f287f991d74cd8060" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreateCardFromIssue/mappings/orgs_github-api-test-org_projects-3-bac54b.json", + "mode": "100644", + "type": "blob", + "sha": "2bccbc254ceaec4901839b8c8c2fbc4f3f317b61", + "size": 2162, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/2bccbc254ceaec4901839b8c8c2fbc4f3f317b61" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreateCardFromIssue/mappings/orgs_github-api-test-org_repos-6-c2d819.json", + "mode": "100644", + "type": "blob", + "sha": "4ea2da06b98f40ca15259fd12449b424b7632dfa", + "size": 2142, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/4ea2da06b98f40ca15259fd12449b424b7632dfa" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreateCardFromIssue/mappings/projects_3312449_columns-4-5b5040.json", + "mode": "100644", + "type": "blob", + "sha": "51a874a0ac4a307398fd890a949f7b883adccdd5", + "size": 2105, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/51a874a0ac4a307398fd890a949f7b883adccdd5" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreateCardFromIssue/mappings/projects_columns_6706803_cards-5-e6d34d.json", + "mode": "100644", + "type": "blob", + "sha": "d9606fbcf1d784b459f1cc39336306a0bfc95284", + "size": 2134, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d9606fbcf1d784b459f1cc39336306a0bfc95284" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreateCardFromIssue/mappings/projects_columns_6706803_cards-8-6458c3.json", + "mode": "100644", + "type": "blob", + "sha": "1df22db0d07902ec8fefd801583c940404301d4a", + "size": 2158, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/1df22db0d07902ec8fefd801583c940404301d4a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreateCardFromIssue/mappings/repos_github-api-test-org_repo-for-project-card-9-372cc0.json", + "mode": "100644", + "type": "blob", + "sha": "cbf2c659e71b90a9c99ac49ccd3fa768a9fa40e1", + "size": 1566, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/cbf2c659e71b90a9c99ac49ccd3fa768a9fa40e1" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreateCardFromIssue/mappings/repos_github-api-test-org_repo-for-project-card_issues-7-29d82e.json", + "mode": "100644", + "type": "blob", + "sha": "3031b1252ea5255b2d67508fae4aa15d59fe6208", + "size": 2249, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/3031b1252ea5255b2d67508fae4aa15d59fe6208" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreateCardFromIssue/mappings/user-1-b9c4ba.json", + "mode": "100644", + "type": "blob", + "sha": "a10ce254bec2063baa9239ec70b9691b3aaf0897", + "size": 1829, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a10ce254bec2063baa9239ec70b9691b3aaf0897" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreatedCard", + "mode": "040000", + "type": "tree", + "sha": "d3af26d84e9cb5e8062da9cbddfe6fe6c3e1fd06", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/d3af26d84e9cb5e8062da9cbddfe6fe6c3e1fd06" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreatedCard/__files", + "mode": "040000", + "type": "tree", + "sha": "6ae22f5d222f1c12f93a17ab8612feebd2b6715e", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/6ae22f5d222f1c12f93a17ab8612feebd2b6715e" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreatedCard/__files/orgs_github-api-test-org-a73c2760-fcb1-4ad6-a379-508ae8bd6a92.json", + "mode": "100644", + "type": "blob", + "sha": "d4c06c4749cf16912257b405f5b36b3e49b2e0db", + "size": 1480, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d4c06c4749cf16912257b405f5b36b3e49b2e0db" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreatedCard/__files/orgs_github-api-test-org_projects-fd95c811-2dc4-458b-a18f-72b93e2cfac7.json", + "mode": "100644", + "type": "blob", + "sha": "a6b6c3d720f0f9e746be841c7f53963c15b343be", + "size": 1609, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a6b6c3d720f0f9e746be841c7f53963c15b343be" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreatedCard/__files/projects_3312442_columns-264f75eb-2b63-4727-9470-21079137ecf4.json", + "mode": "100644", + "type": "blob", + "sha": "232f45cd97dd281cae21bc5bef29c96bc2745212", + "size": 364, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/232f45cd97dd281cae21bc5bef29c96bc2745212" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreatedCard/__files/projects_columns_6706799_cards-0a15ceb0-700f-41b0-8a07-ac04dcdcd13f.json", + "mode": "100644", + "type": "blob", + "sha": "398fcdc1fd8ac62825560de641d834bceb34a0b0", + "size": 1448, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/398fcdc1fd8ac62825560de641d834bceb34a0b0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreatedCard/__files/user-80e34816-e0ac-422b-807b-bc8c1f2bd313.json", + "mode": "100644", + "type": "blob", + "sha": "41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0", + "size": 1640, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreatedCard/mappings", + "mode": "040000", + "type": "tree", + "sha": "d26dd9aaf89ca35c1d661c243008f6ef46aaa411", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/d26dd9aaf89ca35c1d661c243008f6ef46aaa411" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreatedCard/mappings/orgs_github-api-test-org-2-a73c27.json", + "mode": "100644", + "type": "blob", + "sha": "ea8de8733ebef6f5cdcd8a1f66df847195f2ad40", + "size": 1931, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/ea8de8733ebef6f5cdcd8a1f66df847195f2ad40" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreatedCard/mappings/orgs_github-api-test-org_projects-3-fd95c8.json", + "mode": "100644", + "type": "blob", + "sha": "bfa5be17488c2fc14d1618826e5b6313138b624e", + "size": 2162, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/bfa5be17488c2fc14d1618826e5b6313138b624e" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreatedCard/mappings/projects_3312442_columns-4-264f75.json", + "mode": "100644", + "type": "blob", + "sha": "9f33f5f5123d16910ece330b920f6704e5a16699", + "size": 2105, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/9f33f5f5123d16910ece330b920f6704e5a16699" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreatedCard/mappings/projects_columns_6706799_cards-5-0a15ce.json", + "mode": "100644", + "type": "blob", + "sha": "242057e527a705ca40282f3f36c5500c5eafb229", + "size": 2134, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/242057e527a705ca40282f3f36c5500c5eafb229" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreatedCard/mappings/user-1-80e348.json", + "mode": "100644", + "type": "blob", + "sha": "b518648eaee73f5592b2bff66b2c230084bcede7", + "size": 1829, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/b518648eaee73f5592b2bff66b2c230084bcede7" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testDeleteCard", + "mode": "040000", + "type": "tree", + "sha": "e9fc2a7bf62c9a870b00699c8ab9a08b58b64a58", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/e9fc2a7bf62c9a870b00699c8ab9a08b58b64a58" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testDeleteCard/__files", + "mode": "040000", + "type": "tree", + "sha": "55a6c5d20617b952ea3d821c64c675f21cb86f9c", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/55a6c5d20617b952ea3d821c64c675f21cb86f9c" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testDeleteCard/__files/orgs_github-api-test-org-467a3990-86b4-4c0f-9d2a-e51630e548f6.json", + "mode": "100644", + "type": "blob", + "sha": "d4c06c4749cf16912257b405f5b36b3e49b2e0db", + "size": 1480, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d4c06c4749cf16912257b405f5b36b3e49b2e0db" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testDeleteCard/__files/orgs_github-api-test-org_projects-491fbbf4-d8d0-433d-9ec6-162fa95ad792.json", + "mode": "100644", + "type": "blob", + "sha": "8f72fd9edc1044ffaa23c2bc6ee172d36a091c60", + "size": 1609, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/8f72fd9edc1044ffaa23c2bc6ee172d36a091c60" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testDeleteCard/__files/projects_3312447_columns-f80b3261-cf13-4bcf-82b7-19a1425cbe78.json", + "mode": "100644", + "type": "blob", + "sha": "a9ed214c99eb34c5b57fe28c60d76f679fc45a57", + "size": 364, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a9ed214c99eb34c5b57fe28c60d76f679fc45a57" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testDeleteCard/__files/projects_columns_6706802_cards-aad1d69e-1823-41cc-9cb0-fac06faa77c3.json", + "mode": "100644", + "type": "blob", + "sha": "b83285598a22cf3255d2f5993d58eefe4bdd9956", + "size": 1448, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/b83285598a22cf3255d2f5993d58eefe4bdd9956" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testDeleteCard/__files/user-c2f32bbc-aa66-407b-a3e3-4533d04dd4b0.json", + "mode": "100644", + "type": "blob", + "sha": "41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0", + "size": 1640, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testDeleteCard/mappings", + "mode": "040000", + "type": "tree", + "sha": "9e2cb69c9233a976a346ef5066b180713090b5da", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/9e2cb69c9233a976a346ef5066b180713090b5da" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testDeleteCard/mappings/orgs_github-api-test-org-2-467a39.json", + "mode": "100644", + "type": "blob", + "sha": "9735900cbba7b6b54f3b1c1f387031dbf1b1a860", + "size": 1931, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/9735900cbba7b6b54f3b1c1f387031dbf1b1a860" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testDeleteCard/mappings/orgs_github-api-test-org_projects-3-491fbb.json", + "mode": "100644", + "type": "blob", + "sha": "7a6a9d21c71921c8467eeef5bbeb5e741809a1fc", + "size": 2162, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/7a6a9d21c71921c8467eeef5bbeb5e741809a1fc" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testDeleteCard/mappings/projects_3312447_columns-4-f80b32.json", + "mode": "100644", + "type": "blob", + "sha": "00601f8e796fc7be60d01b46db9b17d5bbd5ac62", + "size": 2105, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/00601f8e796fc7be60d01b46db9b17d5bbd5ac62" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testDeleteCard/mappings/projects_columns_6706802_cards-5-aad1d6.json", + "mode": "100644", + "type": "blob", + "sha": "0fc7328b049ff69833e484ad3f12da1470d34801", + "size": 2134, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/0fc7328b049ff69833e484ad3f12da1470d34801" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testDeleteCard/mappings/projects_columns_cards_27353272-6-e93cbd.json", + "mode": "100644", + "type": "blob", + "sha": "cc142c50b09293a7d2216e430caf36cefdd80aae", + "size": 1555, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/cc142c50b09293a7d2216e430caf36cefdd80aae" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testDeleteCard/mappings/projects_columns_cards_27353272-7-a7094f.json", + "mode": "100644", + "type": "blob", + "sha": "9a9c9eef7a17018ce4b8b7dc12f3aba74e05afcc", + "size": 1700, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/9a9c9eef7a17018ce4b8b7dc12f3aba74e05afcc" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testDeleteCard/mappings/user-1-c2f32b.json", + "mode": "100644", + "type": "blob", + "sha": "27af7e3a3e74492d3d12cffa41410d3c140734b4", + "size": 1829, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/27af7e3a3e74492d3d12cffa41410d3c140734b4" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testEditCardNote", + "mode": "040000", + "type": "tree", + "sha": "8e17acf5f419aa9405174274160bcd450dd32952", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/8e17acf5f419aa9405174274160bcd450dd32952" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testEditCardNote/__files", + "mode": "040000", + "type": "tree", + "sha": "614d85721c8663fb99bec483dd887408ab13351a", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/614d85721c8663fb99bec483dd887408ab13351a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testEditCardNote/__files/orgs_github-api-test-org-049038eb-8cc8-4480-b0e9-62a6bb55f112.json", + "mode": "100644", + "type": "blob", + "sha": "d4c06c4749cf16912257b405f5b36b3e49b2e0db", + "size": 1480, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d4c06c4749cf16912257b405f5b36b3e49b2e0db" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testEditCardNote/__files/orgs_github-api-test-org_projects-68e871e2-343e-47b7-aa45-b613ef9f8bc0.json", + "mode": "100644", + "type": "blob", + "sha": "ad949b86dfd4b7e863149b6571e43e4b8fde1727", + "size": 1609, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/ad949b86dfd4b7e863149b6571e43e4b8fde1727" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testEditCardNote/__files/projects_3312443_columns-1de47f2e-9018-4a4f-9dad-0ee29614aa4e.json", + "mode": "100644", + "type": "blob", + "sha": "e9fdff9a44ac31839cfacbdd5577d19a4f6e52ae", + "size": 364, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/e9fdff9a44ac31839cfacbdd5577d19a4f6e52ae" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testEditCardNote/__files/projects_columns_6706800_cards-695ce51a-3df9-4aea-b10d-471d3ff856b8.json", + "mode": "100644", + "type": "blob", + "sha": "df17defa089603bd447ac9cbaf77395279f9aa8e", + "size": 1448, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/df17defa089603bd447ac9cbaf77395279f9aa8e" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testEditCardNote/__files/projects_columns_cards_27353267-62a0d7cf-0c8a-4f96-8c00-c48aeaab4a6f.json", + "mode": "100644", + "type": "blob", + "sha": "6953abdec59aed0cd1b4becec51df9c49b904a64", + "size": 1442, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/6953abdec59aed0cd1b4becec51df9c49b904a64" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testEditCardNote/__files/projects_columns_cards_27353267-93c5d233-0602-432f-a6a1-784506a19fe0.json", + "mode": "100644", + "type": "blob", + "sha": "6953abdec59aed0cd1b4becec51df9c49b904a64", + "size": 1442, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/6953abdec59aed0cd1b4becec51df9c49b904a64" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testEditCardNote/__files/user-355d682a-6ab6-4af5-be72-d00bf6403051.json", + "mode": "100644", + "type": "blob", + "sha": "41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0", + "size": 1640, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testEditCardNote/mappings", + "mode": "040000", + "type": "tree", + "sha": "b0582714f3d7a7cbe68230338219a409c6f946d9", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/b0582714f3d7a7cbe68230338219a409c6f946d9" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testEditCardNote/mappings/orgs_github-api-test-org-2-049038.json", + "mode": "100644", + "type": "blob", + "sha": "31c00194cab0d275cd8596f4bb8ccf3550b84e99", + "size": 1929, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/31c00194cab0d275cd8596f4bb8ccf3550b84e99" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testEditCardNote/mappings/orgs_github-api-test-org_projects-3-68e871.json", + "mode": "100644", + "type": "blob", + "sha": "d215b10a941c499da0a8aa225315c05c05d5c0d7", + "size": 2160, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d215b10a941c499da0a8aa225315c05c05d5c0d7" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testEditCardNote/mappings/projects_3312443_columns-4-1de47f.json", + "mode": "100644", + "type": "blob", + "sha": "e80c148faac1dbe00e2438b4b53b22ac66281c21", + "size": 2103, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/e80c148faac1dbe00e2438b4b53b22ac66281c21" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testEditCardNote/mappings/projects_columns_6706800_cards-5-695ce5.json", + "mode": "100644", + "type": "blob", + "sha": "f2eb9a923e2d8e43875d2ce8e19ec8e575972ac4", + "size": 2132, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/f2eb9a923e2d8e43875d2ce8e19ec8e575972ac4" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testEditCardNote/mappings/projects_columns_cards_27353267-6-62a0d7.json", + "mode": "100644", + "type": "blob", + "sha": "5427f1a256eebd8d8e7cf9ebfab7f73a85d3619d", + "size": 2051, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/5427f1a256eebd8d8e7cf9ebfab7f73a85d3619d" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testEditCardNote/mappings/projects_columns_cards_27353267-7-93c5d2.json", + "mode": "100644", + "type": "blob", + "sha": "5b1f9e23aa6ed17efde060e13bd22186c6a675a5", + "size": 1883, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/5b1f9e23aa6ed17efde060e13bd22186c6a675a5" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testEditCardNote/mappings/user-1-355d68.json", + "mode": "100644", + "type": "blob", + "sha": "8dd76aba80b60089923d06fe7ff4bb0f9fa4101e", + "size": 1827, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/8dd76aba80b60089923d06fe7ff4bb0f9fa4101e" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectColumnTest", + "mode": "040000", + "type": "tree", + "sha": "f7b77cfeb804a5b7adc67552f49c3396b2265afd", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/f7b77cfeb804a5b7adc67552f49c3396b2265afd" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock", + "mode": "040000", + "type": "tree", + "sha": "29333eb72edc14090f13e9807fd2a368959a8eb9", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/29333eb72edc14090f13e9807fd2a368959a8eb9" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testCreatedColumn", + "mode": "040000", + "type": "tree", + "sha": "08178b1a2c9d2fdf6a8986cd5bf835cb1dfabf4a", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/08178b1a2c9d2fdf6a8986cd5bf835cb1dfabf4a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testCreatedColumn/__files", + "mode": "040000", + "type": "tree", + "sha": "0c07ae59950474fbb9047757dca18ac006779b57", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/0c07ae59950474fbb9047757dca18ac006779b57" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testCreatedColumn/__files/orgs_github-api-test-org-7feb4202-bd04-498e-a28c-fd9df44d8fc8.json", + "mode": "100644", + "type": "blob", + "sha": "d4c06c4749cf16912257b405f5b36b3e49b2e0db", + "size": 1480, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d4c06c4749cf16912257b405f5b36b3e49b2e0db" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testCreatedColumn/__files/orgs_github-api-test-org_projects-42bd7d98-f969-40ce-bb9a-1586c556569d.json", + "mode": "100644", + "type": "blob", + "sha": "2980ef61c49f28bbcdcec838c9fb9e8abba1c88b", + "size": 1609, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/2980ef61c49f28bbcdcec838c9fb9e8abba1c88b" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testCreatedColumn/__files/projects_3312440_columns-eb58635e-11b9-461d-8868-6ece3733f962.json", + "mode": "100644", + "type": "blob", + "sha": "22e165b3c386801bafdb61e01e544d2f79141114", + "size": 364, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/22e165b3c386801bafdb61e01e544d2f79141114" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testCreatedColumn/__files/user-ff30f972-21ad-40ee-aa60-c006643154d2.json", + "mode": "100644", + "type": "blob", + "sha": "41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0", + "size": 1640, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testCreatedColumn/mappings", + "mode": "040000", + "type": "tree", + "sha": "6787da10ac5849995dd4e159b8cda97e8f6a0b64", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/6787da10ac5849995dd4e159b8cda97e8f6a0b64" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testCreatedColumn/mappings/orgs_github-api-test-org-2-7feb42.json", + "mode": "100644", + "type": "blob", + "sha": "893c862e1808d0760bdb38f73cf6795e857fea81", + "size": 1931, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/893c862e1808d0760bdb38f73cf6795e857fea81" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testCreatedColumn/mappings/orgs_github-api-test-org_projects-3-42bd7d.json", + "mode": "100644", + "type": "blob", + "sha": "3833763657156abd47d34a79388e0c94d9739d51", + "size": 2162, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/3833763657156abd47d34a79388e0c94d9739d51" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testCreatedColumn/mappings/projects_3312440_columns-4-eb5863.json", + "mode": "100644", + "type": "blob", + "sha": "c3871a6af55fc268bc7189c8169e22e1257c4dbb", + "size": 2105, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/c3871a6af55fc268bc7189c8169e22e1257c4dbb" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testCreatedColumn/mappings/user-1-ff30f9.json", + "mode": "100644", + "type": "blob", + "sha": "4a6ed6879c3c286d3364f9748bdc2135f66b97bf", + "size": 1829, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/4a6ed6879c3c286d3364f9748bdc2135f66b97bf" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testDeleteColumn", + "mode": "040000", + "type": "tree", + "sha": "c9ce85a42e41ff0a6420bb69ed209db05b8ee380", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/c9ce85a42e41ff0a6420bb69ed209db05b8ee380" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testDeleteColumn/__files", + "mode": "040000", + "type": "tree", + "sha": "29210797e46f6aa440f9d84504e0742821c2a965", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/29210797e46f6aa440f9d84504e0742821c2a965" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testDeleteColumn/__files/orgs_github-api-test-org-f4a0595a-a719-4b21-bf67-f12d67bac972.json", + "mode": "100644", + "type": "blob", + "sha": "d4c06c4749cf16912257b405f5b36b3e49b2e0db", + "size": 1480, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d4c06c4749cf16912257b405f5b36b3e49b2e0db" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testDeleteColumn/__files/orgs_github-api-test-org_projects-bfb7de93-74a1-48dc-a74a-ba06cee9e764.json", + "mode": "100644", + "type": "blob", + "sha": "a1e09d76c7a5cf4198d271aaa5a9374b13dba91f", + "size": 1609, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a1e09d76c7a5cf4198d271aaa5a9374b13dba91f" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testDeleteColumn/__files/projects_3312441_columns-fb6e53a0-db62-4037-8f0b-3511e79bea93.json", + "mode": "100644", + "type": "blob", + "sha": "7528c403d93e20c4e7e8b3f81d2b20ca1bd18e32", + "size": 364, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/7528c403d93e20c4e7e8b3f81d2b20ca1bd18e32" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testDeleteColumn/__files/user-f818b667-7eed-4efb-9719-ea27f8d05b59.json", + "mode": "100644", + "type": "blob", + "sha": "41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0", + "size": 1640, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testDeleteColumn/mappings", + "mode": "040000", + "type": "tree", + "sha": "64e8a64f74fb38399f9876ad67beda95c742bdeb", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/64e8a64f74fb38399f9876ad67beda95c742bdeb" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testDeleteColumn/mappings/orgs_github-api-test-org-2-f4a059.json", + "mode": "100644", + "type": "blob", + "sha": "da0026218e9c73e1b28b8d2c2234df0099c1bc27", + "size": 1929, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/da0026218e9c73e1b28b8d2c2234df0099c1bc27" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testDeleteColumn/mappings/orgs_github-api-test-org_projects-3-bfb7de.json", + "mode": "100644", + "type": "blob", + "sha": "1216936c02320981bce2a7874f02e24b9a05cd21", + "size": 2160, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/1216936c02320981bce2a7874f02e24b9a05cd21" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testDeleteColumn/mappings/projects_3312441_columns-4-fb6e53.json", + "mode": "100644", + "type": "blob", + "sha": "eaf2ea38529dbc76df78db379fcb6747e333e069", + "size": 2103, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/eaf2ea38529dbc76df78db379fcb6747e333e069" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testDeleteColumn/mappings/projects_columns_6706794-5-8c0cae.json", + "mode": "100644", + "type": "blob", + "sha": "584b3b19bd2acd8bb2b3923aa70d0c213c0b9c1d", + "size": 1539, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/584b3b19bd2acd8bb2b3923aa70d0c213c0b9c1d" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testDeleteColumn/mappings/projects_columns_6706794-6-112e1e.json", + "mode": "100644", + "type": "blob", + "sha": "38cc8b68fa6403ea86183947b5408f23576c889a", + "size": 1688, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/38cc8b68fa6403ea86183947b5408f23576c889a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testDeleteColumn/mappings/user-1-f818b6.json", + "mode": "100644", + "type": "blob", + "sha": "202acbf907d899a3c15b36c62b61edfb38121fa0", + "size": 1827, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/202acbf907d899a3c15b36c62b61edfb38121fa0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testEditColumnName", + "mode": "040000", + "type": "tree", + "sha": "ce035a822045da6404128a3a7683d3fd41be4f02", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/ce035a822045da6404128a3a7683d3fd41be4f02" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testEditColumnName/__files", + "mode": "040000", + "type": "tree", + "sha": "8434dcf3005217a0a25b197f86e9b77572d02c4d", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/8434dcf3005217a0a25b197f86e9b77572d02c4d" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testEditColumnName/__files/orgs_github-api-test-org-eb0425ef-7f2e-4b3a-a7f7-53cef5d5647b.json", + "mode": "100644", + "type": "blob", + "sha": "d4c06c4749cf16912257b405f5b36b3e49b2e0db", + "size": 1480, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d4c06c4749cf16912257b405f5b36b3e49b2e0db" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testEditColumnName/__files/orgs_github-api-test-org_projects-97b70b32-45f4-419f-87d0-f15a2c004196.json", + "mode": "100644", + "type": "blob", + "sha": "507b233b38f29855de1ff445c111eac8a3750eea", + "size": 1609, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/507b233b38f29855de1ff445c111eac8a3750eea" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testEditColumnName/__files/projects_3312439_columns-082ed3d1-bea6-48fc-8e61-a63c4d0db977.json", + "mode": "100644", + "type": "blob", + "sha": "209b7f26b2e965bcb95de00d8291e23627554191", + "size": 364, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/209b7f26b2e965bcb95de00d8291e23627554191" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testEditColumnName/__files/projects_columns_6706791-1cfa5ddf-74f4-4a95-aaf2-c8149c7d1c17.json", + "mode": "100644", + "type": "blob", + "sha": "3e2dc10d56f4d452abac91de51f8d88e62afe8c6", + "size": 362, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/3e2dc10d56f4d452abac91de51f8d88e62afe8c6" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testEditColumnName/__files/projects_columns_6706791-85f35660-6579-4bea-af53-b636239dd5cd.json", + "mode": "100644", + "type": "blob", + "sha": "3e2dc10d56f4d452abac91de51f8d88e62afe8c6", + "size": 362, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/3e2dc10d56f4d452abac91de51f8d88e62afe8c6" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testEditColumnName/__files/user-e21e45b0-f34c-473e-9454-cb601fb759b9.json", + "mode": "100644", + "type": "blob", + "sha": "41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0", + "size": 1640, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testEditColumnName/mappings", + "mode": "040000", + "type": "tree", + "sha": "95aaecb750bcb8cfbfeef0139151a6234c0b3369", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/95aaecb750bcb8cfbfeef0139151a6234c0b3369" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testEditColumnName/mappings/orgs_github-api-test-org-2-eb0425.json", + "mode": "100644", + "type": "blob", + "sha": "fa0784bc99edfa42f9d12cf4ffd4d8a5c3216ab2", + "size": 1931, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/fa0784bc99edfa42f9d12cf4ffd4d8a5c3216ab2" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testEditColumnName/mappings/orgs_github-api-test-org_projects-3-97b70b.json", + "mode": "100644", + "type": "blob", + "sha": "5fab2bdbd64cd7c60aa01770462e851fdb549f3b", + "size": 2162, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/5fab2bdbd64cd7c60aa01770462e851fdb549f3b" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testEditColumnName/mappings/projects_3312439_columns-4-082ed3.json", + "mode": "100644", + "type": "blob", + "sha": "a3d2b0a97ab6bd35d29f6daf5c5e4ed5de2de624", + "size": 2105, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a3d2b0a97ab6bd35d29f6daf5c5e4ed5de2de624" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testEditColumnName/mappings/projects_columns_6706791-5-85f356.json", + "mode": "100644", + "type": "blob", + "sha": "58464039998b32fea3b4042ffb0ea4581361557b", + "size": 2032, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/58464039998b32fea3b4042ffb0ea4581361557b" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testEditColumnName/mappings/projects_columns_6706791-6-1cfa5d.json", + "mode": "100644", + "type": "blob", + "sha": "62ecacd745dbc19f6c307a73060511d0c7ca7637", + "size": 1864, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/62ecacd745dbc19f6c307a73060511d0c7ca7637" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testEditColumnName/mappings/user-1-e21e45.json", + "mode": "100644", + "type": "blob", + "sha": "5dc3ad3500648a1077aefbab4125fa8fc18e7732", + "size": 1829, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/5dc3ad3500648a1077aefbab4125fa8fc18e7732" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectTest", + "mode": "040000", + "type": "tree", + "sha": "79b09ca4c087a7fc048c3635a8d27a7265bee7d6", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/79b09ca4c087a7fc048c3635a8d27a7265bee7d6" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectTest/wiremock", + "mode": "040000", + "type": "tree", + "sha": "a39aab4f9cf520576edd65c945a8280517db6b28", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/a39aab4f9cf520576edd65c945a8280517db6b28" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testCreatedProject", + "mode": "040000", + "type": "tree", + "sha": "d351439a70ebc63fe1bbf91a40cf79deb2749c22", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/d351439a70ebc63fe1bbf91a40cf79deb2749c22" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testCreatedProject/__files", + "mode": "040000", + "type": "tree", + "sha": "0021572e7b470d6d893e47dbd86e5ae87d06e27a", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/0021572e7b470d6d893e47dbd86e5ae87d06e27a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testCreatedProject/__files/orgs_github-api-test-org-713f01eb-4f07-4f02-89fe-e7560ed08e11.json", + "mode": "100644", + "type": "blob", + "sha": "d4c06c4749cf16912257b405f5b36b3e49b2e0db", + "size": 1480, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d4c06c4749cf16912257b405f5b36b3e49b2e0db" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testCreatedProject/__files/orgs_github-api-test-org_projects-e5afd90e-d2ac-4e83-800d-a680bc27c9ed.json", + "mode": "100644", + "type": "blob", + "sha": "a3a9d1fe7dc33e07f2cc52aa2b0783c3a1171704", + "size": 1609, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a3a9d1fe7dc33e07f2cc52aa2b0783c3a1171704" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testCreatedProject/__files/user-a9a3d26a-4c87-4ebf-9609-48b2120173b7.json", + "mode": "100644", + "type": "blob", + "sha": "41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0", + "size": 1640, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testCreatedProject/mappings", + "mode": "040000", + "type": "tree", + "sha": "1150c9f9076bd663cb5cb3e1edc930436a417125", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/1150c9f9076bd663cb5cb3e1edc930436a417125" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testCreatedProject/mappings/orgs_github-api-test-org-2-713f01.json", + "mode": "100644", + "type": "blob", + "sha": "2454d7a0d4d5da8b41a3c3296b373e940fbf8057", + "size": 1929, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/2454d7a0d4d5da8b41a3c3296b373e940fbf8057" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testCreatedProject/mappings/orgs_github-api-test-org_projects-3-e5afd9.json", + "mode": "100644", + "type": "blob", + "sha": "129aaf9ccc2b11adacca0bfe8bf44d0a6382fad6", + "size": 2160, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/129aaf9ccc2b11adacca0bfe8bf44d0a6382fad6" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testCreatedProject/mappings/user-1-a9a3d2.json", + "mode": "100644", + "type": "blob", + "sha": "b3dfd009c0db663c6614f548aee1a448681c128e", + "size": 1827, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/b3dfd009c0db663c6614f548aee1a448681c128e" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testDeleteProject", + "mode": "040000", + "type": "tree", + "sha": "6b523a8a78423c4a8e49d877a67131993e23ea2c", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/6b523a8a78423c4a8e49d877a67131993e23ea2c" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testDeleteProject/__files", + "mode": "040000", + "type": "tree", + "sha": "d8dc0ebcb5700db5120c062e459d478fa50cecf9", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/d8dc0ebcb5700db5120c062e459d478fa50cecf9" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testDeleteProject/__files/orgs_github-api-test-org-c3024047-fc8f-443f-a2b4-810324f889b4.json", + "mode": "100644", + "type": "blob", + "sha": "d4c06c4749cf16912257b405f5b36b3e49b2e0db", + "size": 1480, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d4c06c4749cf16912257b405f5b36b3e49b2e0db" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testDeleteProject/__files/orgs_github-api-test-org_projects-daa6c228-6e0f-4398-a6d2-2d114f986e93.json", + "mode": "100644", + "type": "blob", + "sha": "efbd7e59eca5a16230ec3442d1397beda866be9a", + "size": 1609, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/efbd7e59eca5a16230ec3442d1397beda866be9a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testDeleteProject/__files/user-9cb86722-7ae5-46b2-8598-59567e17ed99.json", + "mode": "100644", + "type": "blob", + "sha": "41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0", + "size": 1640, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testDeleteProject/mappings", + "mode": "040000", + "type": "tree", + "sha": "511faafe73d1554d2a8fe89d0960ed945e2c3c82", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/511faafe73d1554d2a8fe89d0960ed945e2c3c82" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testDeleteProject/mappings/orgs_github-api-test-org-2-c30240.json", + "mode": "100644", + "type": "blob", + "sha": "8545d3aeb5c80d2ac15d19daedc25f5a73676ec8", + "size": 1931, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/8545d3aeb5c80d2ac15d19daedc25f5a73676ec8" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testDeleteProject/mappings/orgs_github-api-test-org_projects-3-daa6c2.json", + "mode": "100644", + "type": "blob", + "sha": "a050ecb4fcbdabd9d2b5b4cee53b96486e7dbec0", + "size": 2162, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a050ecb4fcbdabd9d2b5b4cee53b96486e7dbec0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testDeleteProject/mappings/projects_3312437-4-f50762.json", + "mode": "100644", + "type": "blob", + "sha": "3fa4a50934649bbe39bb587e0b70242c3d9c94c3", + "size": 1525, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/3fa4a50934649bbe39bb587e0b70242c3d9c94c3" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testDeleteProject/mappings/projects_3312437-5-8b8e6f.json", + "mode": "100644", + "type": "blob", + "sha": "153985433e4af2ff16343df8ebafbe8acff40af8", + "size": 1659, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/153985433e4af2ff16343df8ebafbe8acff40af8" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testDeleteProject/mappings/user-1-9cb867.json", + "mode": "100644", + "type": "blob", + "sha": "295beaf4cc9039402eae50bda694460ebdc7670d", + "size": 1829, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/295beaf4cc9039402eae50bda694460ebdc7670d" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectBody", + "mode": "040000", + "type": "tree", + "sha": "c1ce4bbfcce2673723adb493cf5a2339c5ce9650", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/c1ce4bbfcce2673723adb493cf5a2339c5ce9650" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectBody/__files", + "mode": "040000", + "type": "tree", + "sha": "3a5f79625eeda7ce8e68cae5b2a67eb03938e159", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/3a5f79625eeda7ce8e68cae5b2a67eb03938e159" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectBody/__files/orgs_github-api-test-org-2e39c772-c889-44d1-bf15-5248ad194202.json", + "mode": "100644", + "type": "blob", + "sha": "d4c06c4749cf16912257b405f5b36b3e49b2e0db", + "size": 1480, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d4c06c4749cf16912257b405f5b36b3e49b2e0db" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectBody/__files/orgs_github-api-test-org_projects-08231b0e-288f-49fa-aa2b-9456449d2cfd.json", + "mode": "100644", + "type": "blob", + "sha": "075cd0b2d27b30657c2af95cd0cf881c1c6111b8", + "size": 1609, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/075cd0b2d27b30657c2af95cd0cf881c1c6111b8" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectBody/__files/projects_3312435-004d3495-63b2-40e7-a864-10d175a59756.json", + "mode": "100644", + "type": "blob", + "sha": "6846aae1042091e09aa6f751f8465274322e9b50", + "size": 1595, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/6846aae1042091e09aa6f751f8465274322e9b50" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectBody/__files/projects_3312435-76e0c251-b1df-4f18-8a01-77a7bbc15474.json", + "mode": "100644", + "type": "blob", + "sha": "6846aae1042091e09aa6f751f8465274322e9b50", + "size": 1595, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/6846aae1042091e09aa6f751f8465274322e9b50" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectBody/__files/user-b2b1262a-1678-4080-af72-92346bb25688.json", + "mode": "100644", + "type": "blob", + "sha": "41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0", + "size": 1640, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectBody/mappings", + "mode": "040000", + "type": "tree", + "sha": "95ee77c885f6089217970d05256256b129c81a4c", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/95ee77c885f6089217970d05256256b129c81a4c" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectBody/mappings/orgs_github-api-test-org-2-2e39c7.json", + "mode": "100644", + "type": "blob", + "sha": "a55512590353d4b0a1acfb4af3d0bb62a2cb9e50", + "size": 1929, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a55512590353d4b0a1acfb4af3d0bb62a2cb9e50" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectBody/mappings/orgs_github-api-test-org_projects-3-08231b.json", + "mode": "100644", + "type": "blob", + "sha": "fb3952ed8290449cf34874d69ba74ba69b9f689d", + "size": 2160, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/fb3952ed8290449cf34874d69ba74ba69b9f689d" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectBody/mappings/projects_3312435-4-004d34.json", + "mode": "100644", + "type": "blob", + "sha": "572b539405da1679e2ac34608db1910b143a9c81", + "size": 2006, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/572b539405da1679e2ac34608db1910b143a9c81" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectBody/mappings/projects_3312435-5-76e0c2.json", + "mode": "100644", + "type": "blob", + "sha": "e38f6c946f849e67354be84c365fb79a8064ad17", + "size": 1838, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/e38f6c946f849e67354be84c365fb79a8064ad17" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectBody/mappings/user-1-b2b126.json", + "mode": "100644", + "type": "blob", + "sha": "6b0dc73389655d8af60593870a414379ece843ed", + "size": 1827, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/6b0dc73389655d8af60593870a414379ece843ed" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectName", + "mode": "040000", + "type": "tree", + "sha": "eea112233ac662e4241b0a7271a69f2f7f7b1767", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/eea112233ac662e4241b0a7271a69f2f7f7b1767" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectName/__files", + "mode": "040000", + "type": "tree", + "sha": "6e1a4722eb89f9951235b85944fa6a45d0a8e041", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/6e1a4722eb89f9951235b85944fa6a45d0a8e041" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectName/__files/orgs_github-api-test-org-e3d87fca-b817-4dfb-b80f-99eebaabba08.json", + "mode": "100644", + "type": "blob", + "sha": "d4c06c4749cf16912257b405f5b36b3e49b2e0db", + "size": 1480, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d4c06c4749cf16912257b405f5b36b3e49b2e0db" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectName/__files/orgs_github-api-test-org_projects-6a0a4669-8d74-4fa9-92c0-0fa428078637.json", + "mode": "100644", + "type": "blob", + "sha": "86e3e10d039a8f0b8a5e1b078a6ff9c252055935", + "size": 1609, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/86e3e10d039a8f0b8a5e1b078a6ff9c252055935" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectName/__files/projects_3312436-20ac7f07-9e2b-47dd-801c-67974592a3b9.json", + "mode": "100644", + "type": "blob", + "sha": "cef9f732078a1bd36f7d200d0857ade9c5a5ceec", + "size": 1605, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/cef9f732078a1bd36f7d200d0857ade9c5a5ceec" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectName/__files/projects_3312436-6c28d544-7193-4c9d-93a8-5c4bd20af717.json", + "mode": "100644", + "type": "blob", + "sha": "cef9f732078a1bd36f7d200d0857ade9c5a5ceec", + "size": 1605, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/cef9f732078a1bd36f7d200d0857ade9c5a5ceec" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectName/__files/user-115e6194-ffb3-4129-8f7b-ad60f5fff91a.json", + "mode": "100644", + "type": "blob", + "sha": "41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0", + "size": 1640, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectName/mappings", + "mode": "040000", + "type": "tree", + "sha": "3632a81ea675694d1b8fceb6b2159be2b509bd23", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/3632a81ea675694d1b8fceb6b2159be2b509bd23" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectName/mappings/orgs_github-api-test-org-2-e3d87f.json", + "mode": "100644", + "type": "blob", + "sha": "1bf181fadaff9dc7a26dba4ca6a55e3ec2e9322d", + "size": 1931, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/1bf181fadaff9dc7a26dba4ca6a55e3ec2e9322d" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectName/mappings/orgs_github-api-test-org_projects-3-6a0a46.json", + "mode": "100644", + "type": "blob", + "sha": "daf6f6b784b5a33fd58de677bbe4b0b5581dff17", + "size": 2162, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/daf6f6b784b5a33fd58de677bbe4b0b5581dff17" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectName/mappings/projects_3312436-4-20ac7f.json", + "mode": "100644", + "type": "blob", + "sha": "b9e9ce56c015968e50c32c7fa61fb51fcdb63a68", + "size": 2008, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/b9e9ce56c015968e50c32c7fa61fb51fcdb63a68" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectName/mappings/projects_3312436-5-6c28d5.json", + "mode": "100644", + "type": "blob", + "sha": "2c034bbf217ef826420e4005372eb433bbc60894", + "size": 1840, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/2c034bbf217ef826420e4005372eb433bbc60894" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectName/mappings/user-1-115e61.json", + "mode": "100644", + "type": "blob", + "sha": "850a7eaa6c6b985d5ef25ef0c335f23c1403c029", + "size": 1829, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/850a7eaa6c6b985d5ef25ef0c335f23c1403c029" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectState", + "mode": "040000", + "type": "tree", + "sha": "a41bc7d4816f452cba11577ea51f92b066b738f6", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/a41bc7d4816f452cba11577ea51f92b066b738f6" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectState/__files", + "mode": "040000", + "type": "tree", + "sha": "0cd46b2ed03e8985576a2427bc0b4f26f04b90ac", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/0cd46b2ed03e8985576a2427bc0b4f26f04b90ac" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectState/__files/orgs_github-api-test-org-a522b55e-f089-4a29-a55e-33f0744eca1a.json", + "mode": "100644", + "type": "blob", + "sha": "d4c06c4749cf16912257b405f5b36b3e49b2e0db", + "size": 1480, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d4c06c4749cf16912257b405f5b36b3e49b2e0db" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectState/__files/orgs_github-api-test-org_projects-ee429eb6-b010-4916-91af-3ce0976426dd.json", + "mode": "100644", + "type": "blob", + "sha": "a4d24e717508311d5efd30db6aa54dcb2286762d", + "size": 1609, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a4d24e717508311d5efd30db6aa54dcb2286762d" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectState/__files/projects_3312433-55b16b4e-924d-4cf7-9113-fbc644011a44.json", + "mode": "100644", + "type": "blob", + "sha": "bd67c4e136429fa88208b1dc147124161de5312a", + "size": 1611, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/bd67c4e136429fa88208b1dc147124161de5312a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectState/__files/projects_3312433-715884a8-0610-43b5-9379-01ac91168ec0.json", + "mode": "100644", + "type": "blob", + "sha": "bd67c4e136429fa88208b1dc147124161de5312a", + "size": 1611, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/bd67c4e136429fa88208b1dc147124161de5312a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectState/__files/user-f7605e5c-c728-4af9-baca-a6e1266d1b4a.json", + "mode": "100644", + "type": "blob", + "sha": "41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0", + "size": 1640, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectState/mappings", + "mode": "040000", + "type": "tree", + "sha": "497b8e14acf3b943436ee4bae5c7e2a2d6e0c7ff", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/497b8e14acf3b943436ee4bae5c7e2a2d6e0c7ff" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectState/mappings/orgs_github-api-test-org-2-a522b5.json", + "mode": "100644", + "type": "blob", + "sha": "6d67cd930b6b079d117ef08ab9af1646132243a8", + "size": 1931, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/6d67cd930b6b079d117ef08ab9af1646132243a8" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectState/mappings/orgs_github-api-test-org_projects-3-ee429e.json", + "mode": "100644", + "type": "blob", + "sha": "54b50b6298db7c78b9862cbb7781bb443b143d40", + "size": 2162, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/54b50b6298db7c78b9862cbb7781bb443b143d40" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectState/mappings/projects_3312433-4-55b16b.json", + "mode": "100644", + "type": "blob", + "sha": "62f10ca491deacd6ff1a4bd132adf999391a35e3", + "size": 2007, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/62f10ca491deacd6ff1a4bd132adf999391a35e3" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectState/mappings/projects_3312433-5-715884.json", + "mode": "100644", + "type": "blob", + "sha": "94f2b1bb77c2eed449d552fc145653c8b6c8b545", + "size": 1840, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/94f2b1bb77c2eed449d552fc145653c8b6c8b545" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectState/mappings/user-1-f7605e.json", + "mode": "100644", + "type": "blob", + "sha": "665d6118ada11639b6eac9d73b9b4511c2ab294c", + "size": 1829, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/665d6118ada11639b6eac9d73b9b4511c2ab294c" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest", + "mode": "040000", + "type": "tree", + "sha": "8f4bf7cab9b20a1359082a3ca1e46347f3308f3f", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/8f4bf7cab9b20a1359082a3ca1e46347f3308f3f" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock", + "mode": "040000", + "type": "tree", + "sha": "ac3f8496cfef10abdfca3a84963d7986fe318a37", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/ac3f8496cfef10abdfca3a84963d7986fe318a37" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest", + "mode": "040000", + "type": "tree", + "sha": "86686016385ae69545d7957b25ef86a430ad0587", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/86686016385ae69545d7957b25ef86a430ad0587" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/__files", + "mode": "040000", + "type": "tree", + "sha": "749a3146ace833d0f30144724a31a276796dca42", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/749a3146ace833d0f30144724a31a276796dca42" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/__files/orgs_github-api-test-org-24dc8a1a-e0fd-48e7-a48f-8fc0fc9bc01f.json", + "mode": "100644", + "type": "blob", + "sha": "61547e3d987dbf85ed43d15ec6ae2239e59bd4a6", + "size": 1480, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/61547e3d987dbf85ed43d15ec6ae2239e59bd4a6" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/__files/repos_github-api-test-org_github-api-0f9ebc51-ad67-49b7-b75c-ee2421880f0a.json", + "mode": "100644", + "type": "blob", + "sha": "9fa0601f3b208818bd101a669d7ee62eb371b1f1", + "size": 18907, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/9fa0601f3b208818bd101a669d7ee62eb371b1f1" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/__files/repos_github-api-test-org_github-api-1db0407d-2e07-4407-810e-486b374e8f3e.json", + "mode": "100644", + "type": "blob", + "sha": "354145c13a5f1d898bbf700f28c913b504b3b592", + "size": 18907, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/354145c13a5f1d898bbf700f28c913b504b3b592" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/__files/repos_github-api-test-org_github-api-b2a37888-a485-466a-90a1-b56337178b1c.json", + "mode": "100644", + "type": "blob", + "sha": "85cb4b997a2a634c77ed3e54d958a3ae9468f494", + "size": 18907, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/85cb4b997a2a634c77ed3e54d958a3ae9468f494" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/__files/repos_github-api-test-org_github-api-d6b189f8-494a-48df-bb5b-0756c8396db0.json", + "mode": "100644", + "type": "blob", + "sha": "85cb4b997a2a634c77ed3e54d958a3ae9468f494", + "size": 18907, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/85cb4b997a2a634c77ed3e54d958a3ae9468f494" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/__files/repos_github-api-test-org_github-api_pulls-607242b1-1d80-46f6-90f0-87c455668f63.json", + "mode": "100644", + "type": "blob", + "sha": "12a72db6ffd195b25cba4f7fe916ebe4a6e4ae7a", + "size": 19323, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/12a72db6ffd195b25cba4f7fe916ebe4a6e4ae7a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/__files/repos_github-api-test-org_github-api_pulls_272-480ea0b0-4d44-4e09-a652-6551a3613019.json", + "mode": "100644", + "type": "blob", + "sha": "b7a12dd8227c87688772c47e6d0d688442627c89", + "size": 19323, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/b7a12dd8227c87688772c47e6d0d688442627c89" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/__files/repos_github-api-test-org_github-api_pulls_272-601780dc-d673-40e8-bc22-76005fce61c3.json", + "mode": "100644", + "type": "blob", + "sha": "af8c695b0935c1a2bcefb634ee506cc332f7b5a2", + "size": 19379, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/af8c695b0935c1a2bcefb634ee506cc332f7b5a2" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/__files/repos_github-api-test-org_github-api_pulls_272-64929638-544b-4052-8139-da249d59952e.json", + "mode": "100644", + "type": "blob", + "sha": "a4f43f44f74071b4e64049fc82793727ce17f6a2", + "size": 19380, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a4f43f44f74071b4e64049fc82793727ce17f6a2" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/__files/user-b08f022a-37f2-4191-bbef-d348f1330beb.json", + "mode": "100644", + "type": "blob", + "sha": "b9ce24cb03e26e4d59e94a45bb9eb783707b714a", + "size": 1368, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/b9ce24cb03e26e4d59e94a45bb9eb783707b714a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/mappings", + "mode": "040000", + "type": "tree", + "sha": "d76c1cc15ea6398d146b32d84d2a166b973e1a85", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/d76c1cc15ea6398d146b32d84d2a166b973e1a85" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/mappings/orgs_github-api-test-org-2-24dc8a.json", + "mode": "100644", + "type": "blob", + "sha": "be0716bab6881facfb98378d6aca6790cb6371d9", + "size": 1830, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/be0716bab6881facfb98378d6aca6790cb6371d9" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/mappings/repos_github-api-test-org_github-api-10-b2a378.json", + "mode": "100644", + "type": "blob", + "sha": "27b1e2e6c81662696b7df81ee77b44af2316669a", + "size": 1978, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/27b1e2e6c81662696b7df81ee77b44af2316669a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/mappings/repos_github-api-test-org_github-api-3-0f9ebc.json", + "mode": "100644", + "type": "blob", + "sha": "1600046059a339a9ee337fd0a094e0fa0cf62a7c", + "size": 2010, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/1600046059a339a9ee337fd0a094e0fa0cf62a7c" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/mappings/repos_github-api-test-org_github-api-5-1db040.json", + "mode": "100644", + "type": "blob", + "sha": "a218f7efd4559de28e35ea665503cb87157a4da1", + "size": 2052, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a218f7efd4559de28e35ea665503cb87157a4da1" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/mappings/repos_github-api-test-org_github-api-8-d6b189.json", + "mode": "100644", + "type": "blob", + "sha": "0e96bedf5299dece5c8024d41687f7f8b2d532bf", + "size": 2052, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/0e96bedf5299dece5c8024d41687f7f8b2d532bf" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/mappings/repos_github-api-test-org_github-api_pulls-11-c7f9dd.json", + "mode": "100644", + "type": "blob", + "sha": "86a711476f2de1299e0a2bee0334f965b1ec293d", + "size": 1706, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/86a711476f2de1299e0a2bee0334f965b1ec293d" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/mappings/repos_github-api-test-org_github-api_pulls-4-607242.json", + "mode": "100644", + "type": "blob", + "sha": "bfe63eff8a9420fff0fd1122057d5a604c513601", + "size": 2152, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/bfe63eff8a9420fff0fd1122057d5a604c513601" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/mappings/repos_github-api-test-org_github-api_pulls_272-6-480ea0.json", + "mode": "100644", + "type": "blob", + "sha": "211676ab278410f90559cfa52654d0ecad5026a4", + "size": 2056, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/211676ab278410f90559cfa52654d0ecad5026a4" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/mappings/repos_github-api-test-org_github-api_pulls_272-7-601780.json", + "mode": "100644", + "type": "blob", + "sha": "b32604e92080e9b2d01c4272bdbdeb609e71b3f5", + "size": 1964, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/b32604e92080e9b2d01c4272bdbdeb609e71b3f5" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/mappings/repos_github-api-test-org_github-api_pulls_272-9-649296.json", + "mode": "100644", + "type": "blob", + "sha": "46e529b4fdaab862d1fc4794d2f81e60bfaac373", + "size": 2023, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/46e529b4fdaab862d1fc4794d2f81e60bfaac373" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/mappings/user-1-b08f02.json", + "mode": "100644", + "type": "blob", + "sha": "d5e5e3a70c020f162f8e51ade642235c33ae0adb", + "size": 1728, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d5e5e3a70c020f162f8e51ade642235c33ae0adb" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createDraftPullRequest", + "mode": "040000", + "type": "tree", + "sha": "9ea05536b5ad146b51ddc627174a0dc2928b251a", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/9ea05536b5ad146b51ddc627174a0dc2928b251a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createDraftPullRequest/__files", + "mode": "040000", + "type": "tree", + "sha": "e3e4bfac69c652551016aca9ad90ba822b2f862d", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/e3e4bfac69c652551016aca9ad90ba822b2f862d" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createDraftPullRequest/__files/orgs_github-api-test-org-449cef5e-5c83-4133-b824-a0d152c31d3d.json", + "mode": "100644", + "type": "blob", + "sha": "99b5920ccb33c237ee5042bcc8de055a07ed1078", + "size": 1481, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/99b5920ccb33c237ee5042bcc8de055a07ed1078" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createDraftPullRequest/__files/repos_github-api-test-org_github-api-260db58e-2811-405d-b33f-49b598ae4bc5.json", + "mode": "100644", + "type": "blob", + "sha": "c9c745e3927d1619ae24be1ef8c360bfd057f1f6", + "size": 18893, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/c9c745e3927d1619ae24be1ef8c360bfd057f1f6" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createDraftPullRequest/__files/repos_github-api-test-org_github-api_pulls-40b2ed6a-5cf1-425a-80cc-72805839ac0e.json", + "mode": "100644", + "type": "blob", + "sha": "084bd38de1418c256ab2c0bd2655ec6e60441be2", + "size": 19752, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/084bd38de1418c256ab2c0bd2655ec6e60441be2" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createDraftPullRequest/__files/repos_github-api-test-org_github-api_pulls-f9c86da0-31ab-4da8-925c-f45241f78cb6.json", + "mode": "100644", + "type": "blob", + "sha": "a88d486b87358910692ce76265641c281cd4dc76", + "size": 19316, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a88d486b87358910692ce76265641c281cd4dc76" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createDraftPullRequest/__files/repos_github-api-test-org_github-api_pulls_321-91de84e3-deb6-40a3-8684-7d9752767396.json", + "mode": "100644", + "type": "blob", + "sha": "a88d486b87358910692ce76265641c281cd4dc76", + "size": 19316, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a88d486b87358910692ce76265641c281cd4dc76" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createDraftPullRequest/__files/repos_github-api-test-org_github-api_pulls_321-b01981ed-7e57-46f9-af4b-8571bd6cedcf.json", + "mode": "100644", + "type": "blob", + "sha": "aa7536b0f010d11a25319adde567b8a850e9091b", + "size": 19316, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/aa7536b0f010d11a25319adde567b8a850e9091b" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createDraftPullRequest/__files/repos_github-api-test-org_github-api_pulls_321-ec3d9059-949c-4244-830a-41beea0ddb2b.json", + "mode": "100644", + "type": "blob", + "sha": "4aa97d228f6eca2866cdc56d26b08efffd663304", + "size": 19354, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/4aa97d228f6eca2866cdc56d26b08efffd663304" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createDraftPullRequest/__files/user-26b175e4-5fd3-40c9-b4f2-f8fd982edf1a.json", + "mode": "100644", + "type": "blob", + "sha": "0bc89b5312727bcc642e9f7216c47ea9358d9747", + "size": 1640, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/0bc89b5312727bcc642e9f7216c47ea9358d9747" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createDraftPullRequest/mappings", + "mode": "040000", + "type": "tree", + "sha": "3f2f622d7fd4d833c78a1d315f8b50f3d403cb39", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/3f2f622d7fd4d833c78a1d315f8b50f3d403cb39" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createDraftPullRequest/mappings/orgs_github-api-test-org-2-449cef.json", + "mode": "100644", + "type": "blob", + "sha": "521b9682bb242154080bbb910219955e944a96de", + "size": 1927, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/521b9682bb242154080bbb910219955e944a96de" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createDraftPullRequest/mappings/repos_github-api-test-org_github-api-3-260db5.json", + "mode": "100644", + "type": "blob", + "sha": "eb5310a84e2f519fab242899b82a808de0874392", + "size": 1925, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/eb5310a84e2f519fab242899b82a808de0874392" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createDraftPullRequest/mappings/repos_github-api-test-org_github-api_pulls-4-f9c86d.json", + "mode": "100644", + "type": "blob", + "sha": "c992a9fa5b98f9cefb23d81ab5cae28d406c3aae", + "size": 2291, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/c992a9fa5b98f9cefb23d81ab5cae28d406c3aae" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createDraftPullRequest/mappings/repos_github-api-test-org_github-api_pulls-7-40b2ed.json", + "mode": "100644", + "type": "blob", + "sha": "d263aa75ecbf0ab1072a4d2ca99b5443ced5dc79", + "size": 1955, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d263aa75ecbf0ab1072a4d2ca99b5443ced5dc79" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createDraftPullRequest/mappings/repos_github-api-test-org_github-api_pulls_321-5-91de84.json", + "mode": "100644", + "type": "blob", + "sha": "7b0c6d904b94c1261f49d53c3d1a19216f55bdec", + "size": 2173, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/7b0c6d904b94c1261f49d53c3d1a19216f55bdec" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createDraftPullRequest/mappings/repos_github-api-test-org_github-api_pulls_321-6-b01981.json", + "mode": "100644", + "type": "blob", + "sha": "6a35cf5587c5545965ec4b40a7df4d7138c9c975", + "size": 2225, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/6a35cf5587c5545965ec4b40a7df4d7138c9c975" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createDraftPullRequest/mappings/repos_github-api-test-org_github-api_pulls_321-8-ec3d90.json", + "mode": "100644", + "type": "blob", + "sha": "e9e85a7b9b245cb8534da7770aaa368950b72a7d", + "size": 2140, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/e9e85a7b9b245cb8534da7770aaa368950b72a7d" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createDraftPullRequest/mappings/user-1-26b175.json", + "mode": "100644", + "type": "blob", + "sha": "9a7d4e4a1df4f1c9a17e496eb740de78e43e990d", + "size": 1825, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/9a7d4e4a1df4f1c9a17e496eb740de78e43e990d" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequest", + "mode": "040000", + "type": "tree", + "sha": "bad2c5e37d42470380209b8f6deeb2d33576e54a", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/bad2c5e37d42470380209b8f6deeb2d33576e54a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequest/__files", + "mode": "040000", + "type": "tree", + "sha": "a17a8d2467e13cb0f6a08efd0ac2d1be5570121a", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/a17a8d2467e13cb0f6a08efd0ac2d1be5570121a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequest/__files/orgs_github-api-test-org-b2d80ea5-16e2-42ed-9de1-71ed44de990a.json", + "mode": "100644", + "type": "blob", + "sha": "61547e3d987dbf85ed43d15ec6ae2239e59bd4a6", + "size": 1480, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/61547e3d987dbf85ed43d15ec6ae2239e59bd4a6" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequest/__files/repos_github-api-test-org_github-api-31587743-aa9c-4bdd-8e99-6d2603914f13.json", + "mode": "100644", + "type": "blob", + "sha": "9208f39fce0feef65f1e572e77929d1ee1752358", + "size": 18907, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/9208f39fce0feef65f1e572e77929d1ee1752358" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequest/__files/repos_github-api-test-org_github-api-e04f90b8-9e4c-42f6-867c-1d729dcdf83f.json", + "mode": "100644", + "type": "blob", + "sha": "5df344ae12fa80315b0491a041219b9d7d7f18c5", + "size": 18907, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/5df344ae12fa80315b0491a041219b9d7d7f18c5" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequest/__files/repos_github-api-test-org_github-api_pulls-21bacc38-2501-4be1-a5ed-63d59668aecf.json", + "mode": "100644", + "type": "blob", + "sha": "04d2762634d602497fb8f00a2e40bc372c1c16c9", + "size": 19718, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/04d2762634d602497fb8f00a2e40bc372c1c16c9" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequest/__files/repos_github-api-test-org_github-api_pulls-e393556d-0f08-48c2-9ec1-ecebeced216a.json", + "mode": "100644", + "type": "blob", + "sha": "a3038d231fcb36e238647e19a4c537f371b4f00c", + "size": 19324, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a3038d231fcb36e238647e19a4c537f371b4f00c" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequest/__files/repos_github-api-test-org_github-api_pulls_273-66712670-b79b-48e8-8593-01f7564ff169.json", + "mode": "100644", + "type": "blob", + "sha": "917efa8eeeea11e9df21e4f364b2779bf1256364", + "size": 19344, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/917efa8eeeea11e9df21e4f364b2779bf1256364" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequest/__files/user-17990d92-81a4-43e2-b41b-bf3f95f79276.json", + "mode": "100644", + "type": "blob", + "sha": "b9ce24cb03e26e4d59e94a45bb9eb783707b714a", + "size": 1368, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/b9ce24cb03e26e4d59e94a45bb9eb783707b714a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequest/mappings", + "mode": "040000", + "type": "tree", + "sha": "c4137e808a20e847064cfc25a15b028a01e26dbb", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/c4137e808a20e847064cfc25a15b028a01e26dbb" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequest/mappings/orgs_github-api-test-org-2-b2d80e.json", + "mode": "100644", + "type": "blob", + "sha": "61d5cb7d589562b17f114cf6edcb40f13c4ce1ec", + "size": 1830, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/61d5cb7d589562b17f114cf6edcb40f13c4ce1ec" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequest/mappings/repos_github-api-test-org_github-api-3-e04f90.json", + "mode": "100644", + "type": "blob", + "sha": "ca30fd6721d28e4e38851dffa79988f13667ff73", + "size": 2010, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/ca30fd6721d28e4e38851dffa79988f13667ff73" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequest/mappings/repos_github-api-test-org_github-api-5-315877.json", + "mode": "100644", + "type": "blob", + "sha": "47502a6ae7438ab9e8cf64baf0a904aba8674f61", + "size": 1977, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/47502a6ae7438ab9e8cf64baf0a904aba8674f61" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequest/mappings/repos_github-api-test-org_github-api_pulls-4-e39355.json", + "mode": "100644", + "type": "blob", + "sha": "3ce626d630a1b798b4b23e526adb3f46b2e1b12b", + "size": 2153, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/3ce626d630a1b798b4b23e526adb3f46b2e1b12b" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequest/mappings/repos_github-api-test-org_github-api_pulls-6-21bacc.json", + "mode": "100644", + "type": "blob", + "sha": "009309a1f2b383704a8143cfe7cd6ae5e0f3421c", + "size": 1797, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/009309a1f2b383704a8143cfe7cd6ae5e0f3421c" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequest/mappings/repos_github-api-test-org_github-api_pulls_273-7-667126.json", + "mode": "100644", + "type": "blob", + "sha": "f3c1a8b262db3ba3c616fd2f6bc49eb56fc136e9", + "size": 1964, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/f3c1a8b262db3ba3c616fd2f6bc49eb56fc136e9" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequest/mappings/user-1-17990d.json", + "mode": "100644", + "type": "blob", + "sha": "3e98bb12341da51434480796eb4fc73162757994", + "size": 1728, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/3e98bb12341da51434480796eb4fc73162757994" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequestComment", + "mode": "040000", + "type": "tree", + "sha": "c9c85b7c85b86e9ffa7ff737e50026ee32cf5e01", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/c9c85b7c85b86e9ffa7ff737e50026ee32cf5e01" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequestComment/__files", + "mode": "040000", + "type": "tree", + "sha": "394fb4b3021f1cf011355d721713cb3a9b8624cd", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/394fb4b3021f1cf011355d721713cb3a9b8624cd" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequestComment/__files/orgs_github-api-test-org-ad4f3477-141d-413d-aae6-d8d877f4359c.json", + "mode": "100644", + "type": "blob", + "sha": "61547e3d987dbf85ed43d15ec6ae2239e59bd4a6", + "size": 1480, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/61547e3d987dbf85ed43d15ec6ae2239e59bd4a6" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequestComment/__files/repos_github-api-test-org_github-api-6e0179a4-9d47-4435-897a-ca80019c4ee1.json", + "mode": "100644", + "type": "blob", + "sha": "f3d605339291bf4992e9fb33cf428a4610b1b80d", + "size": 18907, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/f3d605339291bf4992e9fb33cf428a4610b1b80d" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequestComment/__files/repos_github-api-test-org_github-api-de7260bc-cad0-4eeb-ab76-129228a40fa4.json", + "mode": "100644", + "type": "blob", + "sha": "a14766ee3e2df703b1e99d6b59912d9c9c53781b", + "size": 18907, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a14766ee3e2df703b1e99d6b59912d9c9c53781b" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequestComment/__files/repos_github-api-test-org_github-api_issues_270_comments-2cd4dd92-58d7-4423-bbe8-babe22bd36ac.json", + "mode": "100644", + "type": "blob", + "sha": "a4318d1f471289840cf9ba5a0b76a5ec51ca09f1", + "size": 1553, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a4318d1f471289840cf9ba5a0b76a5ec51ca09f1" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequestComment/__files/repos_github-api-test-org_github-api_pulls-420dc28a-cfc8-4fbc-8cef-7123c0387966.json", + "mode": "100644", + "type": "blob", + "sha": "af405cd06217322c84bc51bc6d49da0d193873cf", + "size": 19763, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/af405cd06217322c84bc51bc6d49da0d193873cf" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequestComment/__files/repos_github-api-test-org_github-api_pulls-4e9dadbb-e2ac-410b-9a7e-8731ed5c86cf.json", + "mode": "100644", + "type": "blob", + "sha": "31eb06150160132776baba319206523dcdb58a62", + "size": 19331, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/31eb06150160132776baba319206523dcdb58a62" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequestComment/__files/repos_github-api-test-org_github-api_pulls_270-1a6fbb20-8969-454a-94be-1e24388e7ed4.json", + "mode": "100644", + "type": "blob", + "sha": "6c37cec41de8310e4fb166ddf4d320605f842300", + "size": 19387, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/6c37cec41de8310e4fb166ddf4d320605f842300" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequestComment/__files/user-c4d4d68f-a141-4fad-a2c9-539e3a21fe94.json", + "mode": "100644", + "type": "blob", + "sha": "b9ce24cb03e26e4d59e94a45bb9eb783707b714a", + "size": 1368, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/b9ce24cb03e26e4d59e94a45bb9eb783707b714a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequestComment/mappings", + "mode": "040000", + "type": "tree", + "sha": "52355bae99edbd88de3d153c82ae071e050f018b", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/52355bae99edbd88de3d153c82ae071e050f018b" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequestComment/mappings/orgs_github-api-test-org-2-ad4f34.json", + "mode": "100644", + "type": "blob", + "sha": "d67a906adbb569861b0eafe50a4593cc99585560", + "size": 1830, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d67a906adbb569861b0eafe50a4593cc99585560" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequestComment/mappings/repos_github-api-test-org_github-api-3-de7260.json", + "mode": "100644", + "type": "blob", + "sha": "3e4291e36a4c2528652044d1cd98acd22dd258c6", + "size": 2010, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/3e4291e36a4c2528652044d1cd98acd22dd258c6" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequestComment/mappings/repos_github-api-test-org_github-api-6-6e0179.json", + "mode": "100644", + "type": "blob", + "sha": "c72ce34cc8bbc5fdd6a6ba2c4c56affffb118854", + "size": 1977, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/c72ce34cc8bbc5fdd6a6ba2c4c56affffb118854" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequestComment/mappings/repos_github-api-test-org_github-api_issues_270_comments-5-2cd4dd.json", + "mode": "100644", + "type": "blob", + "sha": "411d6a1343db7859b67ad8aa83a35de225477d6b", + "size": 2108, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/411d6a1343db7859b67ad8aa83a35de225477d6b" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequestComment/mappings/repos_github-api-test-org_github-api_pulls-4-4e9dad.json", + "mode": "100644", + "type": "blob", + "sha": "1f273112d84ab16790af250954d60506f2c3ec91", + "size": 2160, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/1f273112d84ab16790af250954d60506f2c3ec91" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequestComment/mappings/repos_github-api-test-org_github-api_pulls-7-420dc2.json", + "mode": "100644", + "type": "blob", + "sha": "98cc98ac249a7b8fa7412e2c96e2d59c20558de8", + "size": 1797, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/98cc98ac249a7b8fa7412e2c96e2d59c20558de8" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequestComment/mappings/repos_github-api-test-org_github-api_pulls_270-8-1a6fbb.json", + "mode": "100644", + "type": "blob", + "sha": "98fb72157949f80fd7eaaf5afa9ba1f137aea2b2", + "size": 1964, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/98fb72157949f80fd7eaaf5afa9ba1f137aea2b2" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequestComment/mappings/user-1-c4d4d6.json", + "mode": "100644", + "type": "blob", + "sha": "7ccf1279fff3384ec0175959294ee13ca8d7e233", + "size": 1728, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/7ccf1279fff3384ec0175959294ee13ca8d7e233" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest", + "mode": "040000", + "type": "tree", + "sha": "237eb7a610923554ff27940fbff90e1643ea7de9", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/237eb7a610923554ff27940fbff90e1643ea7de9" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/__files", + "mode": "040000", + "type": "tree", + "sha": "6c47783faf9cbbc5296c671ed33d431ce5ac94e2", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/6c47783faf9cbbc5296c671ed33d431ce5ac94e2" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/__files/orgs_github-api-test-org-9700f9b4-6787-4942-94bd-1e47116da93b.json", + "mode": "100644", + "type": "blob", + "sha": "61547e3d987dbf85ed43d15ec6ae2239e59bd4a6", + "size": 1480, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/61547e3d987dbf85ed43d15ec6ae2239e59bd4a6" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/__files/repos_github-api-test-org_github-api-43e6882d-8843-479b-8da0-0de90a6edc39.json", + "mode": "100644", + "type": "blob", + "sha": "2150dec95796e1796379db9e071d13da4926e9c6", + "size": 18907, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/2150dec95796e1796379db9e071d13da4926e9c6" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/__files/repos_github-api-test-org_github-api-ab230383-b8a2-4e18-848c-31637758036c.json", + "mode": "100644", + "type": "blob", + "sha": "2150dec95796e1796379db9e071d13da4926e9c6", + "size": 18907, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/2150dec95796e1796379db9e071d13da4926e9c6" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/__files/repos_github-api-test-org_github-api-c0d68f0b-8041-4a02-902c-e277971f2364.json", + "mode": "100644", + "type": "blob", + "sha": "14e2b3ba59e549870ae55e9632197975dc5cb9af", + "size": 18907, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/14e2b3ba59e549870ae55e9632197975dc5cb9af" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/__files/repos_github-api-test-org_github-api-e79ad56e-9598-45d0-854b-d3b1596e0bf0.json", + "mode": "100644", + "type": "blob", + "sha": "1608a2d7f6f2e1ee37475108139a7cf6f0d45497", + "size": 18907, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/1608a2d7f6f2e1ee37475108139a7cf6f0d45497" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/__files/repos_github-api-test-org_github-api_pulls-344c3bf1-68d8-4ed4-8d28-31f06f7ef465.json", + "mode": "100644", + "type": "blob", + "sha": "11a9491aa4bac4efa2f753b351e5196dfe952427", + "size": 19318, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/11a9491aa4bac4efa2f753b351e5196dfe952427" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/__files/repos_github-api-test-org_github-api_pulls-5f8eb032-94f9-4306-922e-21141d15228b.json", + "mode": "100644", + "type": "blob", + "sha": "711a77dc7bbba37d2efb8c2b0afb916568396305", + "size": 19750, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/711a77dc7bbba37d2efb8c2b0afb916568396305" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/__files/repos_github-api-test-org_github-api_pulls-e32f79db-5f0b-4b94-b7ee-540ef61d9fc2.json", + "mode": "100644", + "type": "blob", + "sha": "711a77dc7bbba37d2efb8c2b0afb916568396305", + "size": 19750, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/711a77dc7bbba37d2efb8c2b0afb916568396305" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/__files/repos_github-api-test-org_github-api_pulls_263-034f14a1-2ee6-4451-b553-d02da875468e.json", + "mode": "100644", + "type": "blob", + "sha": "9f75f443117dc50a29174f5e1bdf13d1bd343978", + "size": 19318, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/9f75f443117dc50a29174f5e1bdf13d1bd343978" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/__files/repos_github-api-test-org_github-api_pulls_263-efb36413-ff3e-4b8b-af82-e5fe336051e8.json", + "mode": "100644", + "type": "blob", + "sha": "96ef8c3315ff16ffee846fe0d347c504abe6c49e", + "size": 19374, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/96ef8c3315ff16ffee846fe0d347c504abe6c49e" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/__files/user-07979842-29a1-401d-be2b-0c5847525fc3.json", + "mode": "100644", + "type": "blob", + "sha": "b9ce24cb03e26e4d59e94a45bb9eb783707b714a", + "size": 1368, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/b9ce24cb03e26e4d59e94a45bb9eb783707b714a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/mappings", + "mode": "040000", + "type": "tree", + "sha": "1adf2a5b25a27e47c846c4b341958f30bf7d76e5", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/1adf2a5b25a27e47c846c4b341958f30bf7d76e5" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/mappings/orgs_github-api-test-org-2-9700f9.json", + "mode": "100644", + "type": "blob", + "sha": "477c71a1c4b3bfa516aabd27f234a64364248894", + "size": 1830, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/477c71a1c4b3bfa516aabd27f234a64364248894" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/mappings/repos_github-api-test-org_github-api-3-c0d68f.json", + "mode": "100644", + "type": "blob", + "sha": "d8037c3ce9273752d438387800256cdd84364349", + "size": 2010, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d8037c3ce9273752d438387800256cdd84364349" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/mappings/repos_github-api-test-org_github-api-5-e79ad5.json", + "mode": "100644", + "type": "blob", + "sha": "b33e5ef6e1213b7f6906c79e4f3a709016927c51", + "size": 2052, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/b33e5ef6e1213b7f6906c79e4f3a709016927c51" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/mappings/repos_github-api-test-org_github-api-7-43e688.json", + "mode": "100644", + "type": "blob", + "sha": "ffaaf6dfed6a54fab8a79a5425a4d3f1f4adf8cd", + "size": 2052, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/ffaaf6dfed6a54fab8a79a5425a4d3f1f4adf8cd" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/mappings/repos_github-api-test-org_github-api-9-ab2303.json", + "mode": "100644", + "type": "blob", + "sha": "05cba6cbb41019fe48a7a114609310980647fe9b", + "size": 1977, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/05cba6cbb41019fe48a7a114609310980647fe9b" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/mappings/repos_github-api-test-org_github-api_pulls-10-5f8eb0.json", + "mode": "100644", + "type": "blob", + "sha": "1523990304f7f47a17304f0d10e1653b68f09413", + "size": 1959, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/1523990304f7f47a17304f0d10e1653b68f09413" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/mappings/repos_github-api-test-org_github-api_pulls-4-344c3b.json", + "mode": "100644", + "type": "blob", + "sha": "bd8454f57c8c5b6abcf56544a3750aaa091534dc", + "size": 2147, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/bd8454f57c8c5b6abcf56544a3750aaa091534dc" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/mappings/repos_github-api-test-org_github-api_pulls-8-e32f79.json", + "mode": "100644", + "type": "blob", + "sha": "5fad1d493c19b67fd878a177d6bd2baa66822a07", + "size": 1991, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/5fad1d493c19b67fd878a177d6bd2baa66822a07" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/mappings/repos_github-api-test-org_github-api_pulls_263-11-efb364.json", + "mode": "100644", + "type": "blob", + "sha": "b1458590f0f06c92efbca146eaa08a13b9407c1c", + "size": 1965, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/b1458590f0f06c92efbca146eaa08a13b9407c1c" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/mappings/repos_github-api-test-org_github-api_pulls_263-6-034f14.json", + "mode": "100644", + "type": "blob", + "sha": "4b0aa142eaa46eb865093a5e9ad17b6cdfd8a260", + "size": 1854, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/4b0aa142eaa46eb865093a5e9ad17b6cdfd8a260" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/mappings/user-1-079798.json", + "mode": "100644", + "type": "blob", + "sha": "2bd69913a35f0943efe9f9558b82441d62955ed0", + "size": 1728, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/2bd69913a35f0943efe9f9558b82441d62955ed0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/mergeCommitSHA", + "mode": "040000", + "type": "tree", + "sha": "1233fa830c2b3393dbb22a7ceb013a2c248c6c82", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/1233fa830c2b3393dbb22a7ceb013a2c248c6c82" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/mergeCommitSHA/__files", + "mode": "040000", + "type": "tree", + "sha": "bf88c9ca842d18a1b77b8c228ad4ac48027a1bdc", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/bf88c9ca842d18a1b77b8c228ad4ac48027a1bdc" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/mergeCommitSHA/__files/orgs_github-api-test-org-e3ff360d-d2e8-48a3-aaa4-38a5acd11580.json", + "mode": "100644", + "type": "blob", + "sha": "6a1869b899c5b071abffedb39e39fcfc5b36b538", + "size": 1481, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/6a1869b899c5b071abffedb39e39fcfc5b36b538" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/mergeCommitSHA/__files/repos_github-api-test-org_github-api-7a223c60-fbe1-4ed6-b30d-617b9ca84e8e.json", + "mode": "100644", + "type": "blob", + "sha": "6df07c5a99e47426c8d8f525e159133a0c4bb3b1", + "size": 18893, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/6df07c5a99e47426c8d8f525e159133a0c4bb3b1" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/mergeCommitSHA/__files/repos_github-api-test-org_github-api_commits_48eb1a9b8cd56782d11ea45adcf062eade17528e-59cc8825-ac31-418a-b4ae-47fd733fd3e1.json", + "mode": "100644", + "type": "blob", + "sha": "82387e9669f7f9be8f2702daf659b34220dcbea3", + "size": 5810, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/82387e9669f7f9be8f2702daf659b34220dcbea3" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/mergeCommitSHA/__files/repos_github-api-test-org_github-api_pulls-361c15b4-b52d-4da7-a810-bfabf94e819a.json", + "mode": "100644", + "type": "blob", + "sha": "9f08c34c0e862cf3a28ba18198c75681b0fdf6c3", + "size": 19313, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/9f08c34c0e862cf3a28ba18198c75681b0fdf6c3" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/mergeCommitSHA/__files/repos_github-api-test-org_github-api_pulls_309-1566b3f6-560a-4c1c-a6cd-bdaa25774c7a.json", + "mode": "100644", + "type": "blob", + "sha": "9f08c34c0e862cf3a28ba18198c75681b0fdf6c3", + "size": 19313, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/9f08c34c0e862cf3a28ba18198c75681b0fdf6c3" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/mergeCommitSHA/__files/repos_github-api-test-org_github-api_pulls_309-97966102-337f-4c57-8b20-ba00a3769317.json", + "mode": "100644", + "type": "blob", + "sha": "fa091346e10adc08a0067fa680b4cd81d5f8f792", + "size": 19349, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/fa091346e10adc08a0067fa680b4cd81d5f8f792" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/mergeCommitSHA/__files/repos_github-api-test-org_github-api_pulls_309-c8fd7b5e-b5f3-4179-bb56-1f2b150f248d.json", + "mode": "100644", + "type": "blob", + "sha": "6c57e102cdf98b7205af949c170170079cbae724", + "size": 19313, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/6c57e102cdf98b7205af949c170170079cbae724" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/mergeCommitSHA/__files/user-c2903fd5-9175-47e3-b48e-c86bcc461b58.json", + "mode": "100644", + "type": "blob", + "sha": "41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0", + "size": 1640, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/mergeCommitSHA/mappings", + "mode": "040000", + "type": "tree", + "sha": "e03b27dce96b85b7079b2b86be58f417268cf549", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/e03b27dce96b85b7079b2b86be58f417268cf549" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/mergeCommitSHA/mappings/orgs_github-api-test-org-2-e3ff36.json", + "mode": "100644", + "type": "blob", + "sha": "3524f27882a524c64d72fdb98314f3fc061d8b8a", + "size": 1929, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/3524f27882a524c64d72fdb98314f3fc061d8b8a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/mergeCommitSHA/mappings/repos_github-api-test-org_github-api-3-7a223c.json", + "mode": "100644", + "type": "blob", + "sha": "b1dbdcd105da5f079d1c3fc95bfafe7332b76ad5", + "size": 1927, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/b1dbdcd105da5f079d1c3fc95bfafe7332b76ad5" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/mergeCommitSHA/mappings/repos_github-api-test-org_github-api_commits_48eb1a9b8cd56782d11ea45adcf062eade17528e-8-59cc88.json", + "mode": "100644", + "type": "blob", + "sha": "0b4ca6e033fe8ac8f27817895fc9c53aadc5aeab", + "size": 2070, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/0b4ca6e033fe8ac8f27817895fc9c53aadc5aeab" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/mergeCommitSHA/mappings/repos_github-api-test-org_github-api_pulls-4-361c15.json", + "mode": "100644", + "type": "blob", + "sha": "b20226758cfcc813271876371ddf89374b3780a1", + "size": 2259, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/b20226758cfcc813271876371ddf89374b3780a1" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/mergeCommitSHA/mappings/repos_github-api-test-org_github-api_pulls_309-5-1566b3.json", + "mode": "100644", + "type": "blob", + "sha": "652e458649bdd60b876fb7891447e9042617d696", + "size": 2155, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/652e458649bdd60b876fb7891447e9042617d696" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/mergeCommitSHA/mappings/repos_github-api-test-org_github-api_pulls_309-6-c8fd7b.json", + "mode": "100644", + "type": "blob", + "sha": "2a9262589115eced8ba4d8971b0d7e70d6f7cbb4", + "size": 2207, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/2a9262589115eced8ba4d8971b0d7e70d6f7cbb4" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/mergeCommitSHA/mappings/repos_github-api-test-org_github-api_pulls_309-7-979661.json", + "mode": "100644", + "type": "blob", + "sha": "e16397ef3a79e8e171233b2eb6f5dbc3b3fd1ee0", + "size": 2122, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/e16397ef3a79e8e171233b2eb6f5dbc3b3fd1ee0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/mergeCommitSHA/mappings/user-1-c2903f.json", + "mode": "100644", + "type": "blob", + "sha": "b9e2478ac221c55817791204d4bcc5b65ad87f5c", + "size": 1827, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/b9e2478ac221c55817791204d4bcc5b65ad87f5c" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments", + "mode": "040000", + "type": "tree", + "sha": "2628dd6283fa387be083dc5fadaa7f5c7d8b6db6", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/2628dd6283fa387be083dc5fadaa7f5c7d8b6db6" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files", + "mode": "040000", + "type": "tree", + "sha": "d0793ab8e6764136969cd72ba19e1bdcb89332e3", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/d0793ab8e6764136969cd72ba19e1bdcb89332e3" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/orgs_github-api-test-org-079c3da5-3ce3-41f6-aef1-cae0dad71a85.json", + "mode": "100644", + "type": "blob", + "sha": "61547e3d987dbf85ed43d15ec6ae2239e59bd4a6", + "size": 1480, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/61547e3d987dbf85ed43d15ec6ae2239e59bd4a6" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_github-api-test-org_github-api-9090d20b-28ee-455a-8eb6-e1547d0d3d9e.json", + "mode": "100644", + "type": "blob", + "sha": "9cd41eca717dd918ac6436511a484dca0f3eaa16", + "size": 18907, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/9cd41eca717dd918ac6436511a484dca0f3eaa16" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_github-api-test-org_github-api-d585b5ae-36a9-48d8-931d-7f459bec2b4c.json", + "mode": "100644", + "type": "blob", + "sha": "08f2533418cba56b0bca06ea96fb73bb80ff5bfe", + "size": 18907, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/08f2533418cba56b0bca06ea96fb73bb80ff5bfe" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_github-api-test-org_github-api_pulls-145b4497-4f76-4adf-b16b-ccf1f68c339d.json", + "mode": "100644", + "type": "blob", + "sha": "1273cb874965844de146a05ca4b2adf5e31017e4", + "size": 19332, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/1273cb874965844de146a05ca4b2adf5e31017e4" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_github-api-test-org_github-api_pulls-80451be1-8c40-4a4b-9144-c59e9fb97fd8.json", + "mode": "100644", + "type": "blob", + "sha": "73fba52b4993c6e40593720ae71dc1909676048b", + "size": 19764, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/73fba52b4993c6e40593720ae71dc1909676048b" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_github-api-test-org_github-api_pulls_266-f8bf7bf6-b583-4573-b3eb-31bbad80e965.json", + "mode": "100644", + "type": "blob", + "sha": "82ca27f9593de7872af9ef58e76e3eebf532aefc", + "size": 19388, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/82ca27f9593de7872af9ef58e76e3eebf532aefc" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_github-api-test-org_github-api_pulls_266_comments-874427ac-ddf2-4cee-b85c-501b2a3861d7.json", + "mode": "100644", + "type": "blob", + "sha": "d4caa6f08f0a614b55dd1cfddc407c63fda667fa", + "size": 2345, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d4caa6f08f0a614b55dd1cfddc407c63fda667fa" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_github-api-test-org_github-api_pulls_266_comments-8d629bc2-ccf8-46c5-804d-500af333a156.json", + "mode": "100644", + "type": "blob", + "sha": "93ee3dd865609d3e88e1e0cafa5ab61d868e25c7", + "size": 2346, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/93ee3dd865609d3e88e1e0cafa5ab61d868e25c7" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_github-api-test-org_github-api_pulls_266_comments-b9a8cb45-f232-4aa9-a3bf-93f050e40616.json", + "mode": "100644", + "type": "blob", + "sha": "9bc8f34beb85140d169d57ddb589dc8c8bc819f8", + "size": 2243, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/9bc8f34beb85140d169d57ddb589dc8c8bc819f8" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_github-api-test-org_github-api_pulls_comments_321995146-d0df7515-482f-4337-aafd-a543346e6076.json", + "mode": "100644", + "type": "blob", + "sha": "917115869a6d956589eb5c6e470bc68f95d526c0", + "size": 2244, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/917115869a6d956589eb5c6e470bc68f95d526c0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/user-f7421985-e210-4b76-b07e-0a00bae61fff.json", + "mode": "100644", + "type": "blob", + "sha": "b9ce24cb03e26e4d59e94a45bb9eb783707b714a", + "size": 1368, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/b9ce24cb03e26e4d59e94a45bb9eb783707b714a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings", + "mode": "040000", + "type": "tree", + "sha": "68ec0f54d1e32c1831f9b8d586f4e2ae2d67e577", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/68ec0f54d1e32c1831f9b8d586f4e2ae2d67e577" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/orgs_github-api-test-org-2-079c3d.json", + "mode": "100644", + "type": "blob", + "sha": "28d651ac51e40c5c359b736e5f480cfd615f1a12", + "size": 1830, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/28d651ac51e40c5c359b736e5f480cfd615f1a12" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_github-api-test-org_github-api-12-9090d2.json", + "mode": "100644", + "type": "blob", + "sha": "576c34e2f47e7977da114ed64939097359cef2df", + "size": 1978, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/576c34e2f47e7977da114ed64939097359cef2df" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_github-api-test-org_github-api-3-d585b5.json", + "mode": "100644", + "type": "blob", + "sha": "77c462bd956433a1150af8676b7538cdab6ccf57", + "size": 2010, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/77c462bd956433a1150af8676b7538cdab6ccf57" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_github-api-test-org_github-api_pulls-13-80451b.json", + "mode": "100644", + "type": "blob", + "sha": "e5f1248367f1ceb66617f57c9b522be4b7c2e0a3", + "size": 1798, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/e5f1248367f1ceb66617f57c9b522be4b7c2e0a3" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_github-api-test-org_github-api_pulls-4-145b44.json", + "mode": "100644", + "type": "blob", + "sha": "079b269a47bdf7239f1f11600611335b5b9d8b19", + "size": 2161, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/079b269a47bdf7239f1f11600611335b5b9d8b19" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_github-api-test-org_github-api_pulls_266-14-f8bf7b.json", + "mode": "100644", + "type": "blob", + "sha": "b2c2e01eb7c2b0e164cd5280658a573ec68acdf6", + "size": 1965, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/b2c2e01eb7c2b0e164cd5280658a573ec68acdf6" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_github-api-test-org_github-api_pulls_266_comments-11-b8142f.json", + "mode": "100644", + "type": "blob", + "sha": "f7bf4d04bed3036218c9586cf8b71b23b3f66437", + "size": 1908, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/f7bf4d04bed3036218c9586cf8b71b23b3f66437" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_github-api-test-org_github-api_pulls_266_comments-5-cbd425.json", + "mode": "100644", + "type": "blob", + "sha": "24007d3d40069bd45803eb76487658a1e2875aaa", + "size": 1940, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/24007d3d40069bd45803eb76487658a1e2875aaa" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_github-api-test-org_github-api_pulls_266_comments-6-b9a8cb.json", + "mode": "100644", + "type": "blob", + "sha": "1da48647e3bab58b55507097984be79b19c532fd", + "size": 2210, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/1da48647e3bab58b55507097984be79b19c532fd" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_github-api-test-org_github-api_pulls_266_comments-7-874427.json", + "mode": "100644", + "type": "blob", + "sha": "65caed2f3836835cdbf1de0568a9b7ee8feee30f", + "size": 2106, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/65caed2f3836835cdbf1de0568a9b7ee8feee30f" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_github-api-test-org_github-api_pulls_266_comments-9-8d629b.json", + "mode": "100644", + "type": "blob", + "sha": "a7cc05f0e34632b85d4149233038c31332064ca1", + "size": 2106, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a7cc05f0e34632b85d4149233038c31332064ca1" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_github-api-test-org_github-api_pulls_comments_321995146-10-73e6aa.json", + "mode": "100644", + "type": "blob", + "sha": "f0c81e3773919dee1f0b4b9a92b3589c9ee8fa92", + "size": 1533, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/f0c81e3773919dee1f0b4b9a92b3589c9ee8fa92" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_github-api-test-org_github-api_pulls_comments_321995146-8-d0df75.json", + "mode": "100644", + "type": "blob", + "sha": "f157bf14bdb2daed720bfedb4a48a9d740848825", + "size": 2024, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/f157bf14bdb2daed720bfedb4a48a9d740848825" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/user-1-f74219.json", + "mode": "100644", + "type": "blob", + "sha": "72ece192a260e609135825bfaace3c5d32dbf304", + "size": 1728, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/72ece192a260e609135825bfaace3c5d32dbf304" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews", + "mode": "040000", + "type": "tree", + "sha": "05016c43a1c25ce72dbee1c8ed9db8ac9d5f42cd", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/05016c43a1c25ce72dbee1c8ed9db8ac9d5f42cd" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/__files", + "mode": "040000", + "type": "tree", + "sha": "5afdf8a52013cbf8640e00601dbb6d440a9c8bbb", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/5afdf8a52013cbf8640e00601dbb6d440a9c8bbb" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/__files/orgs_github-api-test-org-3f761467-4b55-4250-8764-14a1f83cdf7b.json", + "mode": "100644", + "type": "blob", + "sha": "61547e3d987dbf85ed43d15ec6ae2239e59bd4a6", + "size": 1480, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/61547e3d987dbf85ed43d15ec6ae2239e59bd4a6" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/__files/repos_github-api-test-org_github-api-029a5710-e19a-4db2-8b79-49123309a3bf.json", + "mode": "100644", + "type": "blob", + "sha": "5070dd6120a86eceb8c9d74d9eb35c321f19f31c", + "size": 18907, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/5070dd6120a86eceb8c9d74d9eb35c321f19f31c" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/__files/repos_github-api-test-org_github-api-1efd2ad4-e334-47e1-aaa8-8588bb117bb0.json", + "mode": "100644", + "type": "blob", + "sha": "be4f5ebd7e9794b3ee4114e9b08524a50cccb19b", + "size": 18907, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/be4f5ebd7e9794b3ee4114e9b08524a50cccb19b" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/__files/repos_github-api-test-org_github-api_pulls-0c75c020-a12d-4d29-a43f-401e5d479b4a.json", + "mode": "100644", + "type": "blob", + "sha": "127cb7a1067ab53e1c5ab2c3ceac74fdef724344", + "size": 19761, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/127cb7a1067ab53e1c5ab2c3ceac74fdef724344" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/__files/repos_github-api-test-org_github-api_pulls-7f209593-4b8d-4fc8-97e2-10704e6683b7.json", + "mode": "100644", + "type": "blob", + "sha": "f26ee55deab0d63b4f1cdd2249a19d98fadfc39a", + "size": 19329, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/f26ee55deab0d63b4f1cdd2249a19d98fadfc39a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/__files/repos_github-api-test-org_github-api_pulls_258-9406e54b-fdf7-40d5-a51b-3c27d7b050d8.json", + "mode": "100644", + "type": "blob", + "sha": "be15d5caa2b4dd035ab6c5ee1cec1ce2ce8e2c26", + "size": 19385, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/be15d5caa2b4dd035ab6c5ee1cec1ce2ce8e2c26" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/__files/repos_github-api-test-org_github-api_pulls_258_reviews-1fe517d8-5707-4f17-a46a-e58d3abb5991.json", + "mode": "100644", + "type": "blob", + "sha": "67ec7d6190c42789edcecc7756f5218d0fe0fb4d", + "size": 1733, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/67ec7d6190c42789edcecc7756f5218d0fe0fb4d" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/__files/repos_github-api-test-org_github-api_pulls_258_reviews-56d54933-fb91-4e3e-8baa-245b5b7db8b2.json", + "mode": "100644", + "type": "blob", + "sha": "ae32eca39518319a49c9c1a9c6f75390261ea6ac", + "size": 1813, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/ae32eca39518319a49c9c1a9c6f75390261ea6ac" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/__files/repos_github-api-test-org_github-api_pulls_258_reviews-be8b553c-77cf-4904-9d74-92787d422007.json", + "mode": "100644", + "type": "blob", + "sha": "49d6e5b1cc50a0a2cfe6bad7fdc862ec1762478b", + "size": 1731, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/49d6e5b1cc50a0a2cfe6bad7fdc862ec1762478b" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/__files/repos_github-api-test-org_github-api_pulls_258_reviews_285200956_comments-15c1e28b-6415-4c72-8a9a-bf0e88ca9364.json", + "mode": "100644", + "type": "blob", + "sha": "071eb45f5d967f6898e63d275a3e9dd8b2c943af", + "size": 2335, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/071eb45f5d967f6898e63d275a3e9dd8b2c943af" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/__files/repos_github-api-test-org_github-api_pulls_258_reviews_285200956_events-d0f59a93-6a4d-4841-b4ec-a6b5d43747ea.json", + "mode": "100644", + "type": "blob", + "sha": "42e89ba4a469067a6b861108408f1990197c108c", + "size": 1779, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/42e89ba4a469067a6b861108408f1990197c108c" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/__files/repos_github-api-test-org_github-api_pulls_258_reviews_285200957-886b3f8b-a7c0-4844-95a5-3f674898edb0.json", + "mode": "100644", + "type": "blob", + "sha": "49d6e5b1cc50a0a2cfe6bad7fdc862ec1762478b", + "size": 1731, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/49d6e5b1cc50a0a2cfe6bad7fdc862ec1762478b" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/__files/user-e24b3373-c9ca-4d6f-b8cc-93a9d7deb4d0.json", + "mode": "100644", + "type": "blob", + "sha": "b9ce24cb03e26e4d59e94a45bb9eb783707b714a", + "size": 1368, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/b9ce24cb03e26e4d59e94a45bb9eb783707b714a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/mappings", + "mode": "040000", + "type": "tree", + "sha": "3d9e5d3d0f6f1e65ea38c598e5878ae0800300d1", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/3d9e5d3d0f6f1e65ea38c598e5878ae0800300d1" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/mappings/orgs_github-api-test-org-2-3f7614.json", + "mode": "100644", + "type": "blob", + "sha": "8f3184e4f1a748d6b276ab5f403a9e7f5bbbe3f5", + "size": 1830, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/8f3184e4f1a748d6b276ab5f403a9e7f5bbbe3f5" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/mappings/repos_github-api-test-org_github-api-11-029a57.json", + "mode": "100644", + "type": "blob", + "sha": "fcfc6c01671c34dee4db4acb2396f16f18131b73", + "size": 1978, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/fcfc6c01671c34dee4db4acb2396f16f18131b73" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/mappings/repos_github-api-test-org_github-api-3-1efd2a.json", + "mode": "100644", + "type": "blob", + "sha": "cdc678a59251c7ca1dbbedac3fc22e90696fed40", + "size": 2010, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/cdc678a59251c7ca1dbbedac3fc22e90696fed40" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/mappings/repos_github-api-test-org_github-api_pulls-12-0c75c0.json", + "mode": "100644", + "type": "blob", + "sha": "a2adb57c36945c395ea47af261b9a8c437438d33", + "size": 1798, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a2adb57c36945c395ea47af261b9a8c437438d33" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/mappings/repos_github-api-test-org_github-api_pulls-4-7f2095.json", + "mode": "100644", + "type": "blob", + "sha": "55035c4bdf1ddaa790e19022efa27b92c1b1c1cc", + "size": 2158, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/55035c4bdf1ddaa790e19022efa27b92c1b1c1cc" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/mappings/repos_github-api-test-org_github-api_pulls_258-13-9406e5.json", + "mode": "100644", + "type": "blob", + "sha": "8d6b5bb51fc65c585d6403212cc171eec676661e", + "size": 1965, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/8d6b5bb51fc65c585d6403212cc171eec676661e" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/mappings/repos_github-api-test-org_github-api_pulls_258_reviews-5-1fe517.json", + "mode": "100644", + "type": "blob", + "sha": "e9efbd4a90d43d4a1d97a9e7fdd4c9521d63ae8a", + "size": 2077, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/e9efbd4a90d43d4a1d97a9e7fdd4c9521d63ae8a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/mappings/repos_github-api-test-org_github-api_pulls_258_reviews-6-56d549.json", + "mode": "100644", + "type": "blob", + "sha": "23c91e46155ce77d705cbfb97942d1d70a96d425", + "size": 1822, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/23c91e46155ce77d705cbfb97942d1d70a96d425" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/mappings/repos_github-api-test-org_github-api_pulls_258_reviews-9-be8b55.json", + "mode": "100644", + "type": "blob", + "sha": "75db553511fd568f80bee92ede68f9efc3c8e005", + "size": 2075, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/75db553511fd568f80bee92ede68f9efc3c8e005" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/mappings/repos_github-api-test-org_github-api_pulls_258_reviews_285200956_comments-8-15c1e2.json", + "mode": "100644", + "type": "blob", + "sha": "76af35947a0b475e0aed075b3c6515f96d346dc5", + "size": 1879, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/76af35947a0b475e0aed075b3c6515f96d346dc5" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/mappings/repos_github-api-test-org_github-api_pulls_258_reviews_285200956_events-7-d0f59a.json", + "mode": "100644", + "type": "blob", + "sha": "4a98bc374c113e252e0f1ac7a53e83fba0f817bb", + "size": 2089, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/4a98bc374c113e252e0f1ac7a53e83fba0f817bb" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/mappings/repos_github-api-test-org_github-api_pulls_258_reviews_285200957-10-886b3f.json", + "mode": "100644", + "type": "blob", + "sha": "8ecbd6e7fe035dfd974dcba30ab415fc9c173d2b", + "size": 1873, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/8ecbd6e7fe035dfd974dcba30ab415fc9c173d2b" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/mappings/user-1-e24b33.json", + "mode": "100644", + "type": "blob", + "sha": "5d24b567240d43c1fad0b86cb5068a4c67739442", + "size": 1728, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/5d24b567240d43c1fad0b86cb5068a4c67739442" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead", + "mode": "040000", + "type": "tree", + "sha": "d39f0c4c04fa7afd18c9f9cc3cf393bce69bcfd8", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/d39f0c4c04fa7afd18c9f9cc3cf393bce69bcfd8" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/__files", + "mode": "040000", + "type": "tree", + "sha": "37850aacc4559f294b14b948f2be8e653a5fcd18", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/37850aacc4559f294b14b948f2be8e653a5fcd18" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/__files/orgs_github-api-test-org-9de3bb03-9dd4-4b5a-a2ac-20e02c951355.json", + "mode": "100644", + "type": "blob", + "sha": "61547e3d987dbf85ed43d15ec6ae2239e59bd4a6", + "size": 1480, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/61547e3d987dbf85ed43d15ec6ae2239e59bd4a6" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/__files/repos_github-api-test-org_github-api-684ed3a1-dca4-42f3-b25a-ebea733d4a02.json", + "mode": "100644", + "type": "blob", + "sha": "dcfcb8b5cde24e72a8c320775c37609b59800a3f", + "size": 18907, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/dcfcb8b5cde24e72a8c320775c37609b59800a3f" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/__files/repos_github-api-test-org_github-api-f81e5019-7e7f-48df-803a-d47defd3f22d.json", + "mode": "100644", + "type": "blob", + "sha": "3401cb9ae831b7b7270ba2e10fd7455faa6f9bdf", + "size": 18907, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/3401cb9ae831b7b7270ba2e10fd7455faa6f9bdf" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/__files/repos_github-api-test-org_github-api_pulls-4e73cd50-9986-426e-bf13-b7ad18f36be0.json", + "mode": "100644", + "type": "blob", + "sha": "cfa0e089f60b77c496f32d447fbeb9afd669ddb3", + "size": 39528, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/cfa0e089f60b77c496f32d447fbeb9afd669ddb3" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/__files/repos_github-api-test-org_github-api_pulls-9afc3aa9-ac54-4c53-b5e3-3c0793558359.json", + "mode": "100644", + "type": "blob", + "sha": "d829bec76b7ba6bf99e20805f54fbd5587cf8278", + "size": 19327, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d829bec76b7ba6bf99e20805f54fbd5587cf8278" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/__files/repos_github-api-test-org_github-api_pulls-a2c01b93-3f63-418c-bd0b-a5a61b96999f.json", + "mode": "100644", + "type": "blob", + "sha": "3c0a633dd5619a8d7871263c737ffc067d4926a1", + "size": 19339, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/3c0a633dd5619a8d7871263c737ffc067d4926a1" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/__files/repos_github-api-test-org_github-api_pulls-ab74613d-0613-47a8-a6fc-34add77d9967.json", + "mode": "100644", + "type": "blob", + "sha": "8075ea44aa22da30a1ae68429a7f6ae0c098eec6", + "size": 19771, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/8075ea44aa22da30a1ae68429a7f6ae0c098eec6" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/__files/repos_github-api-test-org_github-api_pulls_259-5f1852a8-2f93-46f0-a692-538bb386c436.json", + "mode": "100644", + "type": "blob", + "sha": "f8f2305c02a2f62c2e3cb05eb2859a19f96427bc", + "size": 19395, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/f8f2305c02a2f62c2e3cb05eb2859a19f96427bc" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/__files/repos_github-api-test-org_github-api_pulls_260-6162e3a9-487d-475a-a4e1-f037c796baf5.json", + "mode": "100644", + "type": "blob", + "sha": "f398abc90f5b00aef1d317293404fcef00c4c602", + "size": 19383, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/f398abc90f5b00aef1d317293404fcef00c4c602" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/__files/user-4966fe2a-d81e-4b83-acd4-b1c3e2f4f684.json", + "mode": "100644", + "type": "blob", + "sha": "b9ce24cb03e26e4d59e94a45bb9eb783707b714a", + "size": 1368, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/b9ce24cb03e26e4d59e94a45bb9eb783707b714a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/mappings", + "mode": "040000", + "type": "tree", + "sha": "3e812cbf9267345086b96f93cd597c8656a7114a", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/3e812cbf9267345086b96f93cd597c8656a7114a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/mappings/orgs_github-api-test-org-2-9de3bb.json", + "mode": "100644", + "type": "blob", + "sha": "ec9b01bf978e34735dd118d57bb562acef5b1be9", + "size": 1830, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/ec9b01bf978e34735dd118d57bb562acef5b1be9" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/mappings/repos_github-api-test-org_github-api-3-f81e50.json", + "mode": "100644", + "type": "blob", + "sha": "5279b553bacb63ee6d23a8234d5f6384c31c0ea5", + "size": 2010, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/5279b553bacb63ee6d23a8234d5f6384c31c0ea5" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/mappings/repos_github-api-test-org_github-api-7-684ed3.json", + "mode": "100644", + "type": "blob", + "sha": "4a4d189127f9038eddfe5eac4e4f713643b545a3", + "size": 1977, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/4a4d189127f9038eddfe5eac4e4f713643b545a3" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/mappings/repos_github-api-test-org_github-api_pulls-4-a2c01b.json", + "mode": "100644", + "type": "blob", + "sha": "f2838213fb65de89af26143b8e7ff7d2f3c6766a", + "size": 2152, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/f2838213fb65de89af26143b8e7ff7d2f3c6766a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/mappings/repos_github-api-test-org_github-api_pulls-5-9afc3a.json", + "mode": "100644", + "type": "blob", + "sha": "8f73ffc2c068fc69b42fbb548df70ad980a19af4", + "size": 2144, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/8f73ffc2c068fc69b42fbb548df70ad980a19af4" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/mappings/repos_github-api-test-org_github-api_pulls-6-ab7461.json", + "mode": "100644", + "type": "blob", + "sha": "a254cee38ffb72ecb603d9427a5326d2528a349e", + "size": 1850, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a254cee38ffb72ecb603d9427a5326d2528a349e" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/mappings/repos_github-api-test-org_github-api_pulls-8-4e73cd.json", + "mode": "100644", + "type": "blob", + "sha": "e0e6510bb8ad64cf12476b5c90617e6fcb0d7082", + "size": 1797, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/e0e6510bb8ad64cf12476b5c90617e6fcb0d7082" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/mappings/repos_github-api-test-org_github-api_pulls_259-10-5f1852.json", + "mode": "100644", + "type": "blob", + "sha": "8840b21efef0c840f62411094c081d4ce879c18b", + "size": 1965, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/8840b21efef0c840f62411094c081d4ce879c18b" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/mappings/repos_github-api-test-org_github-api_pulls_260-9-6162e3.json", + "mode": "100644", + "type": "blob", + "sha": "6e06c94ed55e27adb5efc391ad2f9f9861c8671b", + "size": 1964, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/6e06c94ed55e27adb5efc391ad2f9f9861c8671b" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/mappings/user-1-4966fe.json", + "mode": "100644", + "type": "blob", + "sha": "052ab510ef4df69a9cb473eb1558c650eefc244a", + "size": 1728, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/052ab510ef4df69a9cb473eb1558c650eefc244a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead", + "mode": "040000", + "type": "tree", + "sha": "042e4eb9341d97ec598a1aa56c2e102f51d2ad2d", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/042e4eb9341d97ec598a1aa56c2e102f51d2ad2d" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/__files", + "mode": "040000", + "type": "tree", + "sha": "c19d42fd4e5ab3fc9e4bef7975a7543af3c90374", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/c19d42fd4e5ab3fc9e4bef7975a7543af3c90374" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/__files/orgs_github-api-test-org-80e70ac1-7d85-4431-a004-1c16dd3def5c.json", + "mode": "100644", + "type": "blob", + "sha": "61547e3d987dbf85ed43d15ec6ae2239e59bd4a6", + "size": 1480, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/61547e3d987dbf85ed43d15ec6ae2239e59bd4a6" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/__files/repos_github-api-test-org_github-api-10e587d7-cc44-4965-a559-261991a6a1d7.json", + "mode": "100644", + "type": "blob", + "sha": "abb5e892c68af400cae4c5fc6e0d8e8641bf7285", + "size": 18907, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/abb5e892c68af400cae4c5fc6e0d8e8641bf7285" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/__files/repos_github-api-test-org_github-api-db8422da-0a10-42a5-94f4-3c694b2baaf0.json", + "mode": "100644", + "type": "blob", + "sha": "423e15ee063816b22c4a44067095d31aa223bb78", + "size": 18907, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/423e15ee063816b22c4a44067095d31aa223bb78" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/__files/repos_github-api-test-org_github-api_pulls-37334410-0027-4784-b4d5-4a1e4b6e3174.json", + "mode": "100644", + "type": "blob", + "sha": "c16bb3863f299a9913c0300adced4158cca1fdcd", + "size": 19329, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/c16bb3863f299a9913c0300adced4158cca1fdcd" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/__files/repos_github-api-test-org_github-api_pulls-3d58d4ba-d752-421e-acdc-6fea50e3311a.json", + "mode": "100644", + "type": "blob", + "sha": "0247c1eacfd637773b2a4356b5b3dc1a592d3cb6", + "size": 19773, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/0247c1eacfd637773b2a4356b5b3dc1a592d3cb6" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/__files/repos_github-api-test-org_github-api_pulls-cc03923a-acb0-4c40-ae5a-3d7a9b406ce3.json", + "mode": "100644", + "type": "blob", + "sha": "1b92014d99c56048b13ab2d652fe4754e65d0e34", + "size": 19341, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/1b92014d99c56048b13ab2d652fe4754e65d0e34" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/__files/repos_github-api-test-org_github-api_pulls-cfa90ef7-9496-4f77-b239-adf88ad5dd64.json", + "mode": "100644", + "type": "blob", + "sha": "11060962309e343144900c8a48f4512411f9f09e", + "size": 39532, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/11060962309e343144900c8a48f4512411f9f09e" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/__files/repos_github-api-test-org_github-api_pulls_268-08817e59-cbfd-4e89-9e60-707e4ee940e6.json", + "mode": "100644", + "type": "blob", + "sha": "0b8e1d6a3e3d6db2a6ebe1969f252c1100635a8e", + "size": 19397, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/0b8e1d6a3e3d6db2a6ebe1969f252c1100635a8e" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/__files/repos_github-api-test-org_github-api_pulls_269-b5427c9e-53f5-4301-a757-4c9a349ee97d.json", + "mode": "100644", + "type": "blob", + "sha": "dc16d328fda4fb97f2f954bcc0e9f3eeccb4c3a8", + "size": 19385, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/dc16d328fda4fb97f2f954bcc0e9f3eeccb4c3a8" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/__files/user-69a2a995-8642-477e-aafe-59a7869f4ae9.json", + "mode": "100644", + "type": "blob", + "sha": "b9ce24cb03e26e4d59e94a45bb9eb783707b714a", + "size": 1368, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/b9ce24cb03e26e4d59e94a45bb9eb783707b714a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/mappings", + "mode": "040000", + "type": "tree", + "sha": "63819e5e2ca55a56d62bc3f8028797454ee325c0", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/63819e5e2ca55a56d62bc3f8028797454ee325c0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/mappings/orgs_github-api-test-org-2-80e70a.json", + "mode": "100644", + "type": "blob", + "sha": "5e19b09bcc239c0f2b99a5c8949ce7d331b59d4c", + "size": 1830, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/5e19b09bcc239c0f2b99a5c8949ce7d331b59d4c" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/mappings/repos_github-api-test-org_github-api-3-10e587.json", + "mode": "100644", + "type": "blob", + "sha": "1ad0c7340c35f1ddd9799f836b9a047dd0bc13f8", + "size": 2010, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/1ad0c7340c35f1ddd9799f836b9a047dd0bc13f8" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/mappings/repos_github-api-test-org_github-api-7-db8422.json", + "mode": "100644", + "type": "blob", + "sha": "0cc3d7093b8c78b71ebee8aeb8740407dc68a96c", + "size": 1977, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/0cc3d7093b8c78b71ebee8aeb8740407dc68a96c" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/mappings/repos_github-api-test-org_github-api_pulls-4-cc0392.json", + "mode": "100644", + "type": "blob", + "sha": "21ede2b63cf5d8e3b3b00f012df4a87253948793", + "size": 2154, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/21ede2b63cf5d8e3b3b00f012df4a87253948793" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/mappings/repos_github-api-test-org_github-api_pulls-5-373344.json", + "mode": "100644", + "type": "blob", + "sha": "a697da5e5049bff13c77a30eb6505d9e099884ac", + "size": 2146, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a697da5e5049bff13c77a30eb6505d9e099884ac" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/mappings/repos_github-api-test-org_github-api_pulls-6-3d58d4.json", + "mode": "100644", + "type": "blob", + "sha": "6042f6b68ee18270ee52cbeebd0fce51c56c82e5", + "size": 1850, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/6042f6b68ee18270ee52cbeebd0fce51c56c82e5" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/mappings/repos_github-api-test-org_github-api_pulls-8-cfa90e.json", + "mode": "100644", + "type": "blob", + "sha": "36edcf03fb9a7a2cefc3c27fb59ce462d7411d4f", + "size": 1797, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/36edcf03fb9a7a2cefc3c27fb59ce462d7411d4f" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/mappings/repos_github-api-test-org_github-api_pulls_268-9-08817e.json", + "mode": "100644", + "type": "blob", + "sha": "9a88abb80fdfe1df21d510d2435f609a1ba9b663", + "size": 1964, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/9a88abb80fdfe1df21d510d2435f609a1ba9b663" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/mappings/repos_github-api-test-org_github-api_pulls_269-10-b5427c.json", + "mode": "100644", + "type": "blob", + "sha": "bcca568981c3967c6ad5a8d8d1c3f9b0b33cd890", + "size": 1965, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/bcca568981c3967c6ad5a8d8d1c3f9b0b33cd890" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/mappings/user-1-69a2a9.json", + "mode": "100644", + "type": "blob", + "sha": "71cf13ec418ded4b30fcf3beb5e586e62168c7cc", + "size": 1728, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/71cf13ec418ded4b30fcf3beb5e586e62168c7cc" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee", + "mode": "040000", + "type": "tree", + "sha": "fd9388b3b1c5818f8ac528fbe500b8e61511d8c5", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/fd9388b3b1c5818f8ac528fbe500b8e61511d8c5" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/__files", + "mode": "040000", + "type": "tree", + "sha": "da42e6ed0e09d2927883600631b286bcd2cdcbae", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/da42e6ed0e09d2927883600631b286bcd2cdcbae" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/__files/orgs_github-api-test-org-41c140fe-0c07-406f-8a11-c8c4dad3ff91.json", + "mode": "100644", + "type": "blob", + "sha": "61547e3d987dbf85ed43d15ec6ae2239e59bd4a6", + "size": 1480, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/61547e3d987dbf85ed43d15ec6ae2239e59bd4a6" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/__files/repos_github-api-test-org_github-api-6415bdcd-1b83-46fb-99b8-1e93bb21ecc4.json", + "mode": "100644", + "type": "blob", + "sha": "354145c13a5f1d898bbf700f28c913b504b3b592", + "size": 18907, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/354145c13a5f1d898bbf700f28c913b504b3b592" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/__files/repos_github-api-test-org_github-api-d2df6fea-d463-4b4e-ac13-024bf488bfcf.json", + "mode": "100644", + "type": "blob", + "sha": "354145c13a5f1d898bbf700f28c913b504b3b592", + "size": 18907, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/354145c13a5f1d898bbf700f28c913b504b3b592" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/__files/repos_github-api-test-org_github-api-f25bc1c4-0789-481f-bedf-b02bb58709b7.json", + "mode": "100644", + "type": "blob", + "sha": "aadba7eaf09fd1846a6563ee7f7d114127d7c2f7", + "size": 18907, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/aadba7eaf09fd1846a6563ee7f7d114127d7c2f7" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/__files/repos_github-api-test-org_github-api_issues_271-9171d903-c9bb-400b-b09f-a95f1f7d9c03.json", + "mode": "100644", + "type": "blob", + "sha": "6e712fa0ac667e872ffb352716fcd042c3ba88a0", + "size": 4496, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/6e712fa0ac667e872ffb352716fcd042c3ba88a0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/__files/repos_github-api-test-org_github-api_pulls-8c712317-17a5-4e10-9463-61ef2564a0b7.json", + "mode": "100644", + "type": "blob", + "sha": "d969a93d3257dd825d0001ca1856041753701691", + "size": 19318, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d969a93d3257dd825d0001ca1856041753701691" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/__files/repos_github-api-test-org_github-api_pulls-aee9a7ec-9886-48b9-b8bc-f57480b183ab.json", + "mode": "100644", + "type": "blob", + "sha": "0b11a2e3ff663a8c61c8a71766383fa6acf5b759", + "size": 21954, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/0b11a2e3ff663a8c61c8a71766383fa6acf5b759" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/__files/repos_github-api-test-org_github-api_pulls_271-844a4111-bda7-4086-affc-96fa7cf053d0.json", + "mode": "100644", + "type": "blob", + "sha": "c3f6072d63b443c1080e5d0b114238f6045a3bc8", + "size": 21478, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/c3f6072d63b443c1080e5d0b114238f6045a3bc8" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/__files/repos_github-api-test-org_github-api_pulls_271-ff9fa198-2c33-4554-826e-5a2ec150d1c9.json", + "mode": "100644", + "type": "blob", + "sha": "1a659f672dd3ad8352c8e46788ff8fc6b1e3539d", + "size": 21498, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/1a659f672dd3ad8352c8e46788ff8fc6b1e3539d" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/__files/user-27e10619-a669-4ec6-8270-519114eef6f6.json", + "mode": "100644", + "type": "blob", + "sha": "b9ce24cb03e26e4d59e94a45bb9eb783707b714a", + "size": 1368, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/b9ce24cb03e26e4d59e94a45bb9eb783707b714a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/mappings", + "mode": "040000", + "type": "tree", + "sha": "205ab4ac373a90227480d1ffa467c9540a2fcf85", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/205ab4ac373a90227480d1ffa467c9540a2fcf85" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/mappings/orgs_github-api-test-org-2-41c140.json", + "mode": "100644", + "type": "blob", + "sha": "43cdfc6cb7eacb5c379d8a01471c55403ec5203a", + "size": 1830, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/43cdfc6cb7eacb5c379d8a01471c55403ec5203a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/mappings/repos_github-api-test-org_github-api-3-f25bc1.json", + "mode": "100644", + "type": "blob", + "sha": "8179f104b987e23876aa682d2d1720f9a5d3d866", + "size": 2010, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/8179f104b987e23876aa682d2d1720f9a5d3d866" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/mappings/repos_github-api-test-org_github-api-6-6415bd.json", + "mode": "100644", + "type": "blob", + "sha": "f7ce4d4e859e2f4179c45c9cbbdbb81f6e0b370c", + "size": 2052, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/f7ce4d4e859e2f4179c45c9cbbdbb81f6e0b370c" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/mappings/repos_github-api-test-org_github-api-8-d2df6f.json", + "mode": "100644", + "type": "blob", + "sha": "ce5872eed9e8994b7e85105faecdffe7375d48b5", + "size": 1977, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/ce5872eed9e8994b7e85105faecdffe7375d48b5" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/mappings/repos_github-api-test-org_github-api_issues_271-5-9171d9.json", + "mode": "100644", + "type": "blob", + "sha": "dfc1f6ebb120494d042e66bbcfaea1e0e8650a06", + "size": 1977, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/dfc1f6ebb120494d042e66bbcfaea1e0e8650a06" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/mappings/repos_github-api-test-org_github-api_pulls-4-8c7123.json", + "mode": "100644", + "type": "blob", + "sha": "fd5c9f2f65261c0c820b510d8b19004941e8eede", + "size": 2147, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/fd5c9f2f65261c0c820b510d8b19004941e8eede" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/mappings/repos_github-api-test-org_github-api_pulls-9-aee9a7.json", + "mode": "100644", + "type": "blob", + "sha": "17703db58a0c8a8f97ec013b96b4f9bc91bc18bf", + "size": 1797, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/17703db58a0c8a8f97ec013b96b4f9bc91bc18bf" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/mappings/repos_github-api-test-org_github-api_pulls_271-10-ff9fa1.json", + "mode": "100644", + "type": "blob", + "sha": "21ae90364eeee8ceb06b181cf23dd64207763f4e", + "size": 1965, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/21ae90364eeee8ceb06b181cf23dd64207763f4e" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/mappings/repos_github-api-test-org_github-api_pulls_271-7-844a41.json", + "mode": "100644", + "type": "blob", + "sha": "c45ee4e06bf76ceb5a813d2ff97a4fb29b96d78a", + "size": 1854, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/c45ee4e06bf76ceb5a813d2ff97a4fb29b96d78a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/mappings/user-1-27e106.json", + "mode": "100644", + "type": "blob", + "sha": "c34f1ab369c99f5c458a04ae8e37b30acce390e8", + "size": 1728, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/c34f1ab369c99f5c458a04ae8e37b30acce390e8" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels", + "mode": "040000", + "type": "tree", + "sha": "19bb4c24ab171688e379e763751c6420fcdb559a", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/19bb4c24ab171688e379e763751c6420fcdb559a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/__files", + "mode": "040000", + "type": "tree", + "sha": "144e0ed3c55c21514de5e9f643cf1b624e7a9b6c", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/144e0ed3c55c21514de5e9f643cf1b624e7a9b6c" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/__files/orgs_github-api-test-org-04e11278-2441-4a15-9491-102d5e142409.json", + "mode": "100644", + "type": "blob", + "sha": "61547e3d987dbf85ed43d15ec6ae2239e59bd4a6", + "size": 1480, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/61547e3d987dbf85ed43d15ec6ae2239e59bd4a6" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/__files/repos_github-api-test-org_github-api-1b1c6847-2cda-47ec-a736-79672a3a7abe.json", + "mode": "100644", + "type": "blob", + "sha": "d329ee1c9a5aa92a3a8a54f5e40435ebf1fe4096", + "size": 18907, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d329ee1c9a5aa92a3a8a54f5e40435ebf1fe4096" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/__files/repos_github-api-test-org_github-api-4e2383e2-109f-4ba8-910a-e6fa057728fe.json", + "mode": "100644", + "type": "blob", + "sha": "efa42b4e238433b563a1ccb6039a3c43e1d223e9", + "size": 18907, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/efa42b4e238433b563a1ccb6039a3c43e1d223e9" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/__files/repos_github-api-test-org_github-api-caba7863-7e0a-48ed-b54d-e6121b595280.json", + "mode": "100644", + "type": "blob", + "sha": "efa42b4e238433b563a1ccb6039a3c43e1d223e9", + "size": 18907, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/efa42b4e238433b563a1ccb6039a3c43e1d223e9" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/__files/repos_github-api-test-org_github-api_issues_264-1421d6dd-ddf5-44ca-a50e-03848f69af20.json", + "mode": "100644", + "type": "blob", + "sha": "8f31f74b29f879504e6cd6ca5c61ae311b61663a", + "size": 2644, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/8f31f74b29f879504e6cd6ca5c61ae311b61663a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/__files/repos_github-api-test-org_github-api_issues_264-52c0826c-b7a4-47a7-a202-505128247a5e.json", + "mode": "100644", + "type": "blob", + "sha": "8f31f74b29f879504e6cd6ca5c61ae311b61663a", + "size": 2644, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/8f31f74b29f879504e6cd6ca5c61ae311b61663a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/__files/repos_github-api-test-org_github-api_pulls-7af49b84-1732-4a74-b123-676769146f83.json", + "mode": "100644", + "type": "blob", + "sha": "75d6f7ebe743cb10d7c722650b4d47a0d4e9fd0e", + "size": 19316, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/75d6f7ebe743cb10d7c722650b4d47a0d4e9fd0e" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/__files/repos_github-api-test-org_github-api_pulls-bd497d3d-3712-4ea7-9e01-2810bf2b83c8.json", + "mode": "100644", + "type": "blob", + "sha": "ccf7136bd54600db43b6726f6ab5f5651a88b4d2", + "size": 20040, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/ccf7136bd54600db43b6726f6ab5f5651a88b4d2" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/__files/repos_github-api-test-org_github-api_pulls_264-4627827c-55fb-4f0c-850d-23fd6b35b4f7.json", + "mode": "100644", + "type": "blob", + "sha": "9fe76fd0ffa323189461706c600b116f0929987e", + "size": 19626, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/9fe76fd0ffa323189461706c600b116f0929987e" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/__files/repos_github-api-test-org_github-api_pulls_264-cfd2cf1d-d98d-4374-a0fe-4d80a217e9d4.json", + "mode": "100644", + "type": "blob", + "sha": "7c87a56edc9fb4b79a8a968738f6224ecd42dc9c", + "size": 19646, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/7c87a56edc9fb4b79a8a968738f6224ecd42dc9c" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/__files/user-946afcfe-31ac-4f28-9d66-5f45ffbb3a7c.json", + "mode": "100644", + "type": "blob", + "sha": "b9ce24cb03e26e4d59e94a45bb9eb783707b714a", + "size": 1368, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/b9ce24cb03e26e4d59e94a45bb9eb783707b714a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/mappings", + "mode": "040000", + "type": "tree", + "sha": "3b45db89c4a5f2f2ef5c4e08f41d2430dcf95f54", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/3b45db89c4a5f2f2ef5c4e08f41d2430dcf95f54" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/mappings/orgs_github-api-test-org-2-04e112.json", + "mode": "100644", + "type": "blob", + "sha": "04ea5b9575d4d9ac9ba87c32e2831cc7f0529190", + "size": 1830, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/04ea5b9575d4d9ac9ba87c32e2831cc7f0529190" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/mappings/repos_github-api-test-org_github-api-3-1b1c68.json", + "mode": "100644", + "type": "blob", + "sha": "cc7d34fbeb0d2cb05599c1517aa9f5c5887d6832", + "size": 2010, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/cc7d34fbeb0d2cb05599c1517aa9f5c5887d6832" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/mappings/repos_github-api-test-org_github-api-6-4e2383.json", + "mode": "100644", + "type": "blob", + "sha": "1c133ae79812bb670abe3c521a21c6d4780e19e9", + "size": 2052, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/1c133ae79812bb670abe3c521a21c6d4780e19e9" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/mappings/repos_github-api-test-org_github-api-9-caba78.json", + "mode": "100644", + "type": "blob", + "sha": "a82acbe23a41fb4c7895f6e9976d43e42a70d678", + "size": 1977, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a82acbe23a41fb4c7895f6e9976d43e42a70d678" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/mappings/repos_github-api-test-org_github-api_issues_264-5-52c082.json", + "mode": "100644", + "type": "blob", + "sha": "02bc31baa83db0a329a5816591121a6bb2b3bdbf", + "size": 1984, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/02bc31baa83db0a329a5816591121a6bb2b3bdbf" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/mappings/repos_github-api-test-org_github-api_issues_264-8-1421d6.json", + "mode": "100644", + "type": "blob", + "sha": "9291422afe38a9e96541c3d24958abc9587e591a", + "size": 1861, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/9291422afe38a9e96541c3d24958abc9587e591a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/mappings/repos_github-api-test-org_github-api_pulls-10-bd497d.json", + "mode": "100644", + "type": "blob", + "sha": "f904ab73078f28b7ba34835d7a70eaabf013fd6f", + "size": 1798, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/f904ab73078f28b7ba34835d7a70eaabf013fd6f" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/mappings/repos_github-api-test-org_github-api_pulls-4-7af49b.json", + "mode": "100644", + "type": "blob", + "sha": "1224ef59517e536e1264aaa42bfe5128e96e7966", + "size": 2145, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/1224ef59517e536e1264aaa42bfe5128e96e7966" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/mappings/repos_github-api-test-org_github-api_pulls_264-11-cfd2cf.json", + "mode": "100644", + "type": "blob", + "sha": "3954ecea84077f973c7f6b4bcf2b5bfcaed57d21", + "size": 1965, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/3954ecea84077f973c7f6b4bcf2b5bfcaed57d21" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/mappings/repos_github-api-test-org_github-api_pulls_264-7-462782.json", + "mode": "100644", + "type": "blob", + "sha": "bbe4f962467f854e3297d74013a68e7be48cd478", + "size": 1854, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/bbe4f962467f854e3297d74013a68e7be48cd478" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/mappings/user-1-946afc.json", + "mode": "100644", + "type": "blob", + "sha": "b65ab207b8c5c4701130497afa620c26a4e2e12b", + "size": 1728, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/b65ab207b8c5c4701130497afa620c26a4e2e12b" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge", + "mode": "040000", + "type": "tree", + "sha": "bdff3028100d59886364d57753f505e392f79d9b", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/bdff3028100d59886364d57753f505e392f79d9b" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/__files", + "mode": "040000", + "type": "tree", + "sha": "8aacb2b664777fd5653fc81a7767e61d0ff2a19a", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/8aacb2b664777fd5653fc81a7767e61d0ff2a19a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/__files/orgs_github-api-test-org-b35d6e1e-890c-4df6-9935-5c2394a76916.json", + "mode": "100644", + "type": "blob", + "sha": "61547e3d987dbf85ed43d15ec6ae2239e59bd4a6", + "size": 1480, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/61547e3d987dbf85ed43d15ec6ae2239e59bd4a6" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/__files/repos_github-api-test-org_github-api-3bd5c32a-06aa-4f2b-9055-9b9ff1dd9618.json", + "mode": "100644", + "type": "blob", + "sha": "c25e45f5c375ccb8f9d40957cf17ab99bc91d118", + "size": 18907, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/c25e45f5c375ccb8f9d40957cf17ab99bc91d118" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/__files/repos_github-api-test-org_github-api-5f283241-c895-49c8-92a5-f578369b853b.json", + "mode": "100644", + "type": "blob", + "sha": "abb5e892c68af400cae4c5fc6e0d8e8641bf7285", + "size": 18907, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/abb5e892c68af400cae4c5fc6e0d8e8641bf7285" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/__files/repos_github-api-test-org_github-api-6395c5e1-f2ec-4642-923d-9aebee203afe.json", + "mode": "100644", + "type": "blob", + "sha": "a7a0f67744bd2f010725cd1174bc3793886459cf", + "size": 18907, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a7a0f67744bd2f010725cd1174bc3793886459cf" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/__files/repos_github-api-test-org_github-api-7331ed24-bb2d-46a6-a842-986f52a91a5e.json", + "mode": "100644", + "type": "blob", + "sha": "30aa48ccb508c8a9782170029d5fad8c6ae9633c", + "size": 18907, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/30aa48ccb508c8a9782170029d5fad8c6ae9633c" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/__files/repos_github-api-test-org_github-api-957364c8-87d8-4b0d-aad4-396ad3fed253.json", + "mode": "100644", + "type": "blob", + "sha": "a7a0f67744bd2f010725cd1174bc3793886459cf", + "size": 18907, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a7a0f67744bd2f010725cd1174bc3793886459cf" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/__files/repos_github-api-test-org_github-api_contents_squashmerge-04ae8436-0239-47f1-9e0a-4c2987ca1378.json", + "mode": "100644", + "type": "blob", + "sha": "c5f810de9872289c45dd592199733ddef24f7310", + "size": 2388, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/c5f810de9872289c45dd592199733ddef24f7310" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/__files/repos_github-api-test-org_github-api_git_refs-9d910f89-f71e-441d-8781-cba77a54dd08.json", + "mode": "100644", + "type": "blob", + "sha": "4dcdf6a7d1e945cc823430641cd5bb9b32758c0a", + "size": 429, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/4dcdf6a7d1e945cc823430641cd5bb9b32758c0a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/__files/repos_github-api-test-org_github-api_git_refs_heads_master-7bfa9315-c036-44af-bc3c-1e639325a8fe.json", + "mode": "100644", + "type": "blob", + "sha": "51f91ef861f99e53b1c46431172a64b2f600eb97", + "size": 397, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/51f91ef861f99e53b1c46431172a64b2f600eb97" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/__files/repos_github-api-test-org_github-api_pulls-d149e4dc-e134-4376-8b93-ce784a868247.json", + "mode": "100644", + "type": "blob", + "sha": "d86208f2186599d099dff75cfd1e8bf6a8fbd049", + "size": 19335, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d86208f2186599d099dff75cfd1e8bf6a8fbd049" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/__files/user-b37e46bb-87be-4613-88c7-dcba8c693074.json", + "mode": "100644", + "type": "blob", + "sha": "b9ce24cb03e26e4d59e94a45bb9eb783707b714a", + "size": 1368, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/b9ce24cb03e26e4d59e94a45bb9eb783707b714a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/mappings", + "mode": "040000", + "type": "tree", + "sha": "5e97be43199daad21259a9519288d36d96d769c7", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/5e97be43199daad21259a9519288d36d96d769c7" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/mappings/orgs_github-api-test-org-2-b35d6e.json", + "mode": "100644", + "type": "blob", + "sha": "342e5ff4c088f9a51ce0990df4b47114c3a7512a", + "size": 1830, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/342e5ff4c088f9a51ce0990df4b47114c3a7512a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/mappings/repos_github-api-test-org_github-api-12-5f2832.json", + "mode": "100644", + "type": "blob", + "sha": "c430d404fd844dc012d2e7015519c586dc1254f6", + "size": 1978, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/c430d404fd844dc012d2e7015519c586dc1254f6" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/mappings/repos_github-api-test-org_github-api-3-957364.json", + "mode": "100644", + "type": "blob", + "sha": "672231aab220d3a90b506a30ba50a8ea6a3c9436", + "size": 2010, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/672231aab220d3a90b506a30ba50a8ea6a3c9436" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/mappings/repos_github-api-test-org_github-api-5-6395c5.json", + "mode": "100644", + "type": "blob", + "sha": "3e60e2b99e709742a73f685cd51bda288b13150b", + "size": 2052, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/3e60e2b99e709742a73f685cd51bda288b13150b" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/mappings/repos_github-api-test-org_github-api-7-3bd5c3.json", + "mode": "100644", + "type": "blob", + "sha": "d34024742c6cbf22d1af50ec658af8704e4a0d5a", + "size": 2052, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d34024742c6cbf22d1af50ec658af8704e4a0d5a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/mappings/repos_github-api-test-org_github-api-9-7331ed.json", + "mode": "100644", + "type": "blob", + "sha": "154c205fcf5b51920ec441b23a785b1b96584ace", + "size": 2052, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/154c205fcf5b51920ec441b23a785b1b96584ace" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/mappings/repos_github-api-test-org_github-api_contents_squashmerge-8-04ae84.json", + "mode": "100644", + "type": "blob", + "sha": "2b83ce42018f77e81ce71fa52cc8556483d92440", + "size": 2095, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/2b83ce42018f77e81ce71fa52cc8556483d92440" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/mappings/repos_github-api-test-org_github-api_git_refs-6-9d910f.json", + "mode": "100644", + "type": "blob", + "sha": "c8d24f64582af9b4d9074c3024680f54e76069cb", + "size": 2152, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/c8d24f64582af9b4d9074c3024680f54e76069cb" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/mappings/repos_github-api-test-org_github-api_git_refs_heads_master-4-7bfa93.json", + "mode": "100644", + "type": "blob", + "sha": "9879524f5490579c5678110d47fcc533591e7e39", + "size": 1926, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/9879524f5490579c5678110d47fcc533591e7e39" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/mappings/repos_github-api-test-org_github-api_pulls-10-d149e4.json", + "mode": "100644", + "type": "blob", + "sha": "9744ac6c6ff84e10547bc99ae5f0ef41274f8c0b", + "size": 2160, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/9744ac6c6ff84e10547bc99ae5f0ef41274f8c0b" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/mappings/repos_github-api-test-org_github-api_pulls-13-1f5294.json", + "mode": "100644", + "type": "blob", + "sha": "3536e04124198bf1afc7ab8e5b064e8a65bf8135", + "size": 1706, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/3536e04124198bf1afc7ab8e5b064e8a65bf8135" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/mappings/repos_github-api-test-org_github-api_pulls_267_merge-11-504d0b.json", + "mode": "100644", + "type": "blob", + "sha": "3ba3a80da66e05bc637682525dc505f1c6ea988c", + "size": 2041, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/3ba3a80da66e05bc637682525dc505f1c6ea988c" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/mappings/user-1-b37e46.json", + "mode": "100644", + "type": "blob", + "sha": "d4e0d50dd1cb8c0f0216a5a3ab6f0ba02f161395", + "size": 1728, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d4e0d50dd1cb8c0f0216a5a3ab6f0ba02f161395" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestReviewRequests", + "mode": "040000", + "type": "tree", + "sha": "d6b6949b976f8993ab62c84d255559d3d17e8107", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/d6b6949b976f8993ab62c84d255559d3d17e8107" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestReviewRequests/__files", + "mode": "040000", + "type": "tree", + "sha": "2211e36c6a420f1fb88c21f989b035ceb6f13501", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/2211e36c6a420f1fb88c21f989b035ceb6f13501" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestReviewRequests/__files/orgs_github-api-test-org-4b062368-3c1a-4ed9-8d16-f15b4bfadd20.json", + "mode": "100644", + "type": "blob", + "sha": "6a1869b899c5b071abffedb39e39fcfc5b36b538", + "size": 1481, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/6a1869b899c5b071abffedb39e39fcfc5b36b538" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestReviewRequests/__files/repos_github-api-test-org_github-api-cafd015e-b65c-41a6-9dc9-81b48e9bf803.json", + "mode": "100644", + "type": "blob", + "sha": "1031bcea6f304a0cb6cd0c27a50e3ebfe1d65ce1", + "size": 18893, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/1031bcea6f304a0cb6cd0c27a50e3ebfe1d65ce1" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestReviewRequests/__files/repos_github-api-test-org_github-api_pulls-e7589ec2-0f9c-4b08-a559-0f019f425217.json", + "mode": "100644", + "type": "blob", + "sha": "1111e6273aeb454e20d821f103182eea3bfe2838", + "size": 19354, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/1111e6273aeb454e20d821f103182eea3bfe2838" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestReviewRequests/__files/repos_github-api-test-org_github-api_pulls_299-59c3756e-2f08-4be6-bbe4-bd4725f6f27b.json", + "mode": "100644", + "type": "blob", + "sha": "7dd11bf6d8471ab6df81440ebe6d8f0502905bce", + "size": 20417, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/7dd11bf6d8471ab6df81440ebe6d8f0502905bce" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestReviewRequests/__files/repos_github-api-test-org_github-api_pulls_299_requested_reviewers-38f8763a-b045-43de-a850-e58b7b117590.json", + "mode": "100644", + "type": "blob", + "sha": "78a8f582bd598e54c9d4a95eba95ab955a563161", + "size": 20153, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/78a8f582bd598e54c9d4a95eba95ab955a563161" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestReviewRequests/__files/user-77ed943e-b741-40d5-bc1e-4414411ca129.json", + "mode": "100644", + "type": "blob", + "sha": "61b439b35c6263958e630e780ac798ff2d2a22b6", + "size": 1729, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/61b439b35c6263958e630e780ac798ff2d2a22b6" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestReviewRequests/__files/users_kohsuke2-8bcfc03d-57d3-4728-a550-9a7375923fa0.json", + "mode": "100644", + "type": "blob", + "sha": "4a37d8ced073c35543a9ad0fa4f58ef3ea6077fe", + "size": 1274, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/4a37d8ced073c35543a9ad0fa4f58ef3ea6077fe" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestReviewRequests/mappings", + "mode": "040000", + "type": "tree", + "sha": "7965c206bc2f85b8a94ab9b0ae244216b18f9abb", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/7965c206bc2f85b8a94ab9b0ae244216b18f9abb" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestReviewRequests/mappings/orgs_github-api-test-org-2-4b0623.json", + "mode": "100644", + "type": "blob", + "sha": "e3d1fffeae4c301c8601a366c83ca79a7be4c7ca", + "size": 1950, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/e3d1fffeae4c301c8601a366c83ca79a7be4c7ca" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestReviewRequests/mappings/repos_github-api-test-org_github-api-3-cafd01.json", + "mode": "100644", + "type": "blob", + "sha": "83721d43e35c2f66964d68ff52fc03061ee434fd", + "size": 1948, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/83721d43e35c2f66964d68ff52fc03061ee434fd" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestReviewRequests/mappings/repos_github-api-test-org_github-api_pulls-4-e7589e.json", + "mode": "100644", + "type": "blob", + "sha": "f09d34d94a956c934328c3b3047890ce8ccc1909", + "size": 2285, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/f09d34d94a956c934328c3b3047890ce8ccc1909" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestReviewRequests/mappings/repos_github-api-test-org_github-api_pulls_299-7-59c375.json", + "mode": "100644", + "type": "blob", + "sha": "dc77506f220c4cc2b087ec800b0d0b26eed43672", + "size": 1974, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/dc77506f220c4cc2b087ec800b0d0b26eed43672" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestReviewRequests/mappings/repos_github-api-test-org_github-api_pulls_299_requested_reviewers-6-38f876.json", + "mode": "100644", + "type": "blob", + "sha": "9b11b84576b8f22c47ad3913cbb88171a4ddbf63", + "size": 2245, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/9b11b84576b8f22c47ad3913cbb88171a4ddbf63" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestReviewRequests/mappings/user-1-77ed94.json", + "mode": "100644", + "type": "blob", + "sha": "5e1d0c540323c52462453031195a5fefdbb35ca8", + "size": 1848, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/5e1d0c540323c52462453031195a5fefdbb35ca8" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestReviewRequests/mappings/users_kohsuke2-5-8bcfc0.json", + "mode": "100644", + "type": "blob", + "sha": "20f5e0f499acd0ed1323e5b508ad0aafb432014a", + "size": 1878, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/20f5e0f499acd0ed1323e5b508ad0aafb432014a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestTeamReviewRequests", + "mode": "040000", + "type": "tree", + "sha": "193f5a9d58e735f22fb1cfb785b8e2f6325d6331", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/193f5a9d58e735f22fb1cfb785b8e2f6325d6331" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestTeamReviewRequests/__files", + "mode": "040000", + "type": "tree", + "sha": "0609c78bc0920cbd375549d7d41af03cd97a68e6", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/0609c78bc0920cbd375549d7d41af03cd97a68e6" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestTeamReviewRequests/__files/orgs_github-api-test-org-8634de25-3d3d-47a6-a72a-de26a5190ce6.json", + "mode": "100644", + "type": "blob", + "sha": "6a1869b899c5b071abffedb39e39fcfc5b36b538", + "size": 1481, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/6a1869b899c5b071abffedb39e39fcfc5b36b538" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestTeamReviewRequests/__files/orgs_github-api-test-org_teams-b84882f2-4778-47cb-bced-70eced02e28b.json", + "mode": "100644", + "type": "blob", + "sha": "2da48aa286d6f09e99961fdeb49812466adadc9f", + "size": 1919, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/2da48aa286d6f09e99961fdeb49812466adadc9f" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestTeamReviewRequests/__files/repos_github-api-test-org_github-api-92a8e470-1b50-4f84-a580-94b8cc1aa3b0.json", + "mode": "100644", + "type": "blob", + "sha": "e6d1bc83f19f62a3fbf402e69b5b6a9e83499932", + "size": 18893, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/e6d1bc83f19f62a3fbf402e69b5b6a9e83499932" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestTeamReviewRequests/__files/repos_github-api-test-org_github-api_pulls-f9eb4ced-224a-4b9c-b9e6-fc98bdd40345.json", + "mode": "100644", + "type": "blob", + "sha": "e9039246207d4065fa13b5b39817114d5a1aa0e8", + "size": 19358, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/e9039246207d4065fa13b5b39817114d5a1aa0e8" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestTeamReviewRequests/__files/repos_github-api-test-org_github-api_pulls_304-e091cbaf-316c-4092-8205-a0d35b299a8e.json", + "mode": "100644", + "type": "blob", + "sha": "d48d17b86ec7313b65a06e08fc82b1d8b1e311ae", + "size": 19882, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d48d17b86ec7313b65a06e08fc82b1d8b1e311ae" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestTeamReviewRequests/__files/repos_github-api-test-org_github-api_pulls_304_requested_reviewers-7df56994-6c47-49ba-8563-e1fd22adf795.json", + "mode": "100644", + "type": "blob", + "sha": "36e4fa0cc945a43e10d312613c9ea2431f25b2ed", + "size": 19618, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/36e4fa0cc945a43e10d312613c9ea2431f25b2ed" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestTeamReviewRequests/__files/teams_3451996-112cf6bd-f585-4cec-9ab9-f987a3704a98.json", + "mode": "100644", + "type": "blob", + "sha": "2946c7bf49dc02f8f9f4fee845373ea3b43b4459", + "size": 1728, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/2946c7bf49dc02f8f9f4fee845373ea3b43b4459" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestTeamReviewRequests/__files/user-c23a7fbe-af40-42fe-936e-b94485a32618.json", + "mode": "100644", + "type": "blob", + "sha": "61b439b35c6263958e630e780ac798ff2d2a22b6", + "size": 1729, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/61b439b35c6263958e630e780ac798ff2d2a22b6" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestTeamReviewRequests/mappings", + "mode": "040000", + "type": "tree", + "sha": "373954845ef3e35a48ce28901de2eef7381e4fd4", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/373954845ef3e35a48ce28901de2eef7381e4fd4" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestTeamReviewRequests/mappings/orgs_github-api-test-org-2-8634de.json", + "mode": "100644", + "type": "blob", + "sha": "e6a80c534ebc8dff4ddd3d0930b54dac84712dbc", + "size": 1992, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/e6a80c534ebc8dff4ddd3d0930b54dac84712dbc" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestTeamReviewRequests/mappings/orgs_github-api-test-org_teams-5-b84882.json", + "mode": "100644", + "type": "blob", + "sha": "d32f9b9fed1a03c0a1bfbd880391fba6c86db504", + "size": 1909, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d32f9b9fed1a03c0a1bfbd880391fba6c86db504" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestTeamReviewRequests/mappings/repos_github-api-test-org_github-api-3-92a8e4.json", + "mode": "100644", + "type": "blob", + "sha": "b7be6def62db004f77c94fe9fd09e51f64b4d17b", + "size": 1990, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/b7be6def62db004f77c94fe9fd09e51f64b4d17b" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestTeamReviewRequests/mappings/repos_github-api-test-org_github-api_pulls-4-f9eb4c.json", + "mode": "100644", + "type": "blob", + "sha": "408ebf8b821b2ff61bd7efe8c4f5f15d9d1e81c4", + "size": 2331, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/408ebf8b821b2ff61bd7efe8c4f5f15d9d1e81c4" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestTeamReviewRequests/mappings/repos_github-api-test-org_github-api_pulls_304-7-e091cb.json", + "mode": "100644", + "type": "blob", + "sha": "cf5fd2c85fdc93e89e171a0d8b86698db532d971", + "size": 2016, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/cf5fd2c85fdc93e89e171a0d8b86698db532d971" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestTeamReviewRequests/mappings/repos_github-api-test-org_github-api_pulls_304_requested_reviewers-6-7df569.json", + "mode": "100644", + "type": "blob", + "sha": "dd35e4e6140cd3eaf925297fd8674ec3ba1566f3", + "size": 2294, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/dd35e4e6140cd3eaf925297fd8674ec3ba1566f3" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestTeamReviewRequests/mappings/teams_3451996-8-112cf6.json", + "mode": "100644", + "type": "blob", + "sha": "4347772f9eb6b47346e34706e090676c62559d9f", + "size": 1959, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/4347772f9eb6b47346e34706e090676c62559d9f" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestTeamReviewRequests/mappings/user-1-c23a7f.json", + "mode": "100644", + "type": "blob", + "sha": "c9250b131d93c370b1a32a9b7a77758dc4fc3d4f", + "size": 1890, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/c9250b131d93c370b1a32a9b7a77758dc4fc3d4f" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge", + "mode": "040000", + "type": "tree", + "sha": "7e342f8eb93b44a378e529840bb16a450908fb23", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/7e342f8eb93b44a378e529840bb16a450908fb23" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/__files", + "mode": "040000", + "type": "tree", + "sha": "16c314ee0b37480359da04658b1f4b0076d47e57", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/16c314ee0b37480359da04658b1f4b0076d47e57" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/__files/orgs_github-api-test-org-ad1f5840-8218-409f-a4da-7f3533b80a39.json", + "mode": "100644", + "type": "blob", + "sha": "61547e3d987dbf85ed43d15ec6ae2239e59bd4a6", + "size": 1480, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/61547e3d987dbf85ed43d15ec6ae2239e59bd4a6" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/__files/repos_github-api-test-org_github-api-2621291f-e181-41b0-98ad-3caf5f4fcf63.json", + "mode": "100644", + "type": "blob", + "sha": "58183475c8ce85883f315076ab793476ba0e8a83", + "size": 18907, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/58183475c8ce85883f315076ab793476ba0e8a83" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/__files/repos_github-api-test-org_github-api-3baea02b-9467-4f17-8b8c-369bd4eca9e2.json", + "mode": "100644", + "type": "blob", + "sha": "c26c29ad64ad43ff1002cbd3965dbf023ba31e93", + "size": 18907, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/c26c29ad64ad43ff1002cbd3965dbf023ba31e93" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/__files/repos_github-api-test-org_github-api-5e4301dc-40ac-40eb-8424-8ac1bf7a8861.json", + "mode": "100644", + "type": "blob", + "sha": "c874ac2f7a514d9181c4e0ef4f2ac0fa3b052f57", + "size": 18907, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/c874ac2f7a514d9181c4e0ef4f2ac0fa3b052f57" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/__files/repos_github-api-test-org_github-api-620a6cec-3b31-4ac7-94be-d162928d0e11.json", + "mode": "100644", + "type": "blob", + "sha": "c874ac2f7a514d9181c4e0ef4f2ac0fa3b052f57", + "size": 18907, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/c874ac2f7a514d9181c4e0ef4f2ac0fa3b052f57" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/__files/repos_github-api-test-org_github-api-ab64951f-76cf-4bcb-a38a-497717b29f96.json", + "mode": "100644", + "type": "blob", + "sha": "0285bdf2b16ee1a6a696c05101507ce66259d310", + "size": 18907, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/0285bdf2b16ee1a6a696c05101507ce66259d310" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/__files/repos_github-api-test-org_github-api-ea77125d-4094-4cd9-bfbe-da1696813034.json", + "mode": "100644", + "type": "blob", + "sha": "65db4ab916c74ff44cbcb4d1a6dc4de6d3635325", + "size": 18907, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/65db4ab916c74ff44cbcb4d1a6dc4de6d3635325" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/__files/repos_github-api-test-org_github-api_contents_updatecontentsquashmerge-1d6973ab-2bb2-4661-a449-6a3baf0da673.json", + "mode": "100644", + "type": "blob", + "sha": "498ffbc3c7874c04afc6477c829317ec37d586c8", + "size": 2557, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/498ffbc3c7874c04afc6477c829317ec37d586c8" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/__files/repos_github-api-test-org_github-api_contents_updatecontentsquashmerge-70ad84cc-ff4b-4567-95cd-eed864ce2fb3.json", + "mode": "100644", + "type": "blob", + "sha": "0e6cd31584bfc983e40997153d10818163c7c082", + "size": 2557, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/0e6cd31584bfc983e40997153d10818163c7c082" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/__files/repos_github-api-test-org_github-api_git_refs-778d6679-3928-4f4c-beda-b8f1ae11aac3.json", + "mode": "100644", + "type": "blob", + "sha": "c30e880e49a76fd406fd9a44dc0b4d6830855863", + "size": 471, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/c30e880e49a76fd406fd9a44dc0b4d6830855863" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/__files/repos_github-api-test-org_github-api_git_refs_heads_master-fa77be60-4286-4610-bff6-3ab0bac74b1f.json", + "mode": "100644", + "type": "blob", + "sha": "c80084fd4fd398cd5784539d88f1fdb3be71ec30", + "size": 397, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/c80084fd4fd398cd5784539d88f1fdb3be71ec30" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/__files/repos_github-api-test-org_github-api_pulls-c55f0814-cb1e-4b41-a74d-e94e3eb0e843.json", + "mode": "100644", + "type": "blob", + "sha": "bb5eca6af18df58d82b9c79390da43c30e21edee", + "size": 19374, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/bb5eca6af18df58d82b9c79390da43c30e21edee" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/__files/user-78c0481f-0420-45ef-97f7-fabf21edf0e2.json", + "mode": "100644", + "type": "blob", + "sha": "b9ce24cb03e26e4d59e94a45bb9eb783707b714a", + "size": 1368, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/b9ce24cb03e26e4d59e94a45bb9eb783707b714a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/mappings", + "mode": "040000", + "type": "tree", + "sha": "343e80f3af1da034bc9ea9d3097c324db7634152", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/343e80f3af1da034bc9ea9d3097c324db7634152" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/mappings/orgs_github-api-test-org-2-ad1f58.json", + "mode": "100644", + "type": "blob", + "sha": "961d8c549569fdffb748be9485fac5f79f16aae6", + "size": 1830, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/961d8c549569fdffb748be9485fac5f79f16aae6" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/mappings/repos_github-api-test-org_github-api-11-262129.json", + "mode": "100644", + "type": "blob", + "sha": "5247711894af852b8be0966606dca91c75961590", + "size": 2053, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/5247711894af852b8be0966606dca91c75961590" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/mappings/repos_github-api-test-org_github-api-14-ab6495.json", + "mode": "100644", + "type": "blob", + "sha": "dbf042165459199d8c3f89fe37038143918965c8", + "size": 1978, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/dbf042165459199d8c3f89fe37038143918965c8" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/mappings/repos_github-api-test-org_github-api-3-5e4301.json", + "mode": "100644", + "type": "blob", + "sha": "7f410cd83271363c0c66bc87853d15ebd41fbb55", + "size": 2010, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/7f410cd83271363c0c66bc87853d15ebd41fbb55" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/mappings/repos_github-api-test-org_github-api-5-620a6c.json", + "mode": "100644", + "type": "blob", + "sha": "685a8d4a55a9fe47bf26031b201c0380f135c08f", + "size": 2052, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/685a8d4a55a9fe47bf26031b201c0380f135c08f" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/mappings/repos_github-api-test-org_github-api-7-3baea0.json", + "mode": "100644", + "type": "blob", + "sha": "878ffcc16adbb5ebfaa69aeab5c429bad72d7f8c", + "size": 2052, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/878ffcc16adbb5ebfaa69aeab5c429bad72d7f8c" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/mappings/repos_github-api-test-org_github-api-9-ea7712.json", + "mode": "100644", + "type": "blob", + "sha": "cd8990c387807a4727773109b5c5139c5e2f22cb", + "size": 2052, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/cd8990c387807a4727773109b5c5139c5e2f22cb" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/mappings/repos_github-api-test-org_github-api_contents_updatecontentsquashmerge-10-70ad84.json", + "mode": "100644", + "type": "blob", + "sha": "627cee26563bf403e6f833a1546e56dacd72f4a8", + "size": 2272, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/627cee26563bf403e6f833a1546e56dacd72f4a8" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/mappings/repos_github-api-test-org_github-api_contents_updatecontentsquashmerge-8-1d6973.json", + "mode": "100644", + "type": "blob", + "sha": "e7bbfdefd479001b235b585cb0571a6992f58f90", + "size": 2189, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/e7bbfdefd479001b235b585cb0571a6992f58f90" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/mappings/repos_github-api-test-org_github-api_git_refs-6-778d66.json", + "mode": "100644", + "type": "blob", + "sha": "cca0beb8681931f7e1d6c5ecec9fa9641e8d0270", + "size": 2178, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/cca0beb8681931f7e1d6c5ecec9fa9641e8d0270" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/mappings/repos_github-api-test-org_github-api_git_refs_heads_master-4-fa77be.json", + "mode": "100644", + "type": "blob", + "sha": "ccc5710744fb0886b5aac2c65de2c29472995613", + "size": 1926, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/ccc5710744fb0886b5aac2c65de2c29472995613" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/mappings/repos_github-api-test-org_github-api_pulls-12-c55f08.json", + "mode": "100644", + "type": "blob", + "sha": "2adbc28a24d0e72d5c4164c5734d5f01e2d6cc32", + "size": 2186, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/2adbc28a24d0e72d5c4164c5734d5f01e2d6cc32" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/mappings/repos_github-api-test-org_github-api_pulls-15-ac16f4.json", + "mode": "100644", + "type": "blob", + "sha": "69198f058a78825de2d429134ef895973ffc859c", + "size": 1706, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/69198f058a78825de2d429134ef895973ffc859c" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/mappings/repos_github-api-test-org_github-api_pulls_261_merge-13-0b05c7.json", + "mode": "100644", + "type": "blob", + "sha": "5d95da55d7982b09b3df2a70c95ff3d5090c9795", + "size": 2041, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/5d95da55d7982b09b3df2a70c95ff3d5090c9795" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/mappings/user-1-78c048.json", + "mode": "100644", + "type": "blob", + "sha": "6d7b8f1cbbc10c93e134aecb3a9b7ce57978b26b", + "size": 1728, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/6d7b8f1cbbc10c93e134aecb3a9b7ce57978b26b" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest", + "mode": "040000", + "type": "tree", + "sha": "5ed238437748a60c327e691f8832756fdf856d99", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/5ed238437748a60c327e691f8832756fdf856d99" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock", + "mode": "040000", + "type": "tree", + "sha": "609de958bfaa16b800c5943a1436eb4d31a95b81", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/609de958bfaa16b800c5943a1436eb4d31a95b81" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testCodeFrequency", + "mode": "040000", + "type": "tree", + "sha": "8aa9bc51304e9774319eeef7942188aaac22fe52", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/8aa9bc51304e9774319eeef7942188aaac22fe52" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testCodeFrequency/__files", + "mode": "040000", + "type": "tree", + "sha": "a28b40ec2c26ca678c65bf49bbcf14988c7b0a72", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/a28b40ec2c26ca678c65bf49bbcf14988c7b0a72" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testCodeFrequency/__files/orgs_github-api-test-org-17df55cd-86fa-40f7-93c9-069b34d0e885.json", + "mode": "100644", + "type": "blob", + "sha": "6a1869b899c5b071abffedb39e39fcfc5b36b538", + "size": 1481, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/6a1869b899c5b071abffedb39e39fcfc5b36b538" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testCodeFrequency/__files/repos_github-api-test-org_github-api-6fede042-34ef-490c-ab77-fe2ce7d034c3.json", + "mode": "100644", + "type": "blob", + "sha": "488efd925af2948ac341579deb754c2a35ee4c75", + "size": 18893, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/488efd925af2948ac341579deb754c2a35ee4c75" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testCodeFrequency/__files/repos_github-api-test-org_github-api_stats_code_frequency-09de1d80-83e2-45a8-987f-204eb7ea42a4.json", + "mode": "100644", + "type": "blob", + "sha": "66667cbff5fefba07651dbae6a61df5e4fcc9307", + "size": 19317, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/66667cbff5fefba07651dbae6a61df5e4fcc9307" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testCodeFrequency/__files/user-2c19f62c-49ab-4bd3-b83d-138831bc0e49.json", + "mode": "100644", + "type": "blob", + "sha": "41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0", + "size": 1640, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testCodeFrequency/mappings", + "mode": "040000", + "type": "tree", + "sha": "e63827a617e07ff29034f948749a4bd3c550d9f9", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/e63827a617e07ff29034f948749a4bd3c550d9f9" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testCodeFrequency/mappings/orgs_github-api-test-org-2-17df55.json", + "mode": "100644", + "type": "blob", + "sha": "15392e6c6602fd34c9a9c4a60b684dd0fb01145a", + "size": 1931, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/15392e6c6602fd34c9a9c4a60b684dd0fb01145a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testCodeFrequency/mappings/repos_github-api-test-org_github-api-3-6fede0.json", + "mode": "100644", + "type": "blob", + "sha": "96bd0d1641c8692ef4fc0f759c205508a90429d0", + "size": 1929, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/96bd0d1641c8692ef4fc0f759c205508a90429d0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testCodeFrequency/mappings/repos_github-api-test-org_github-api_stats_code_frequency-4-09de1d.json", + "mode": "100644", + "type": "blob", + "sha": "8234d5f508c7b94fb9e63fe1c0096f660eab09c7", + "size": 1932, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/8234d5f508c7b94fb9e63fe1c0096f660eab09c7" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testCodeFrequency/mappings/user-1-2c19f6.json", + "mode": "100644", + "type": "blob", + "sha": "5bc5ba93c264fb674388760e5c818b5c5bae368e", + "size": 1829, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/5bc5ba93c264fb674388760e5c818b5c5bae368e" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testCommitActivity", + "mode": "040000", + "type": "tree", + "sha": "73015f46cdf0586e619d45aba301d92ecad6fb66", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/73015f46cdf0586e619d45aba301d92ecad6fb66" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testCommitActivity/__files", + "mode": "040000", + "type": "tree", + "sha": "3ba0b7429c5eea631f6a9a0e245208e41624a19c", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/3ba0b7429c5eea631f6a9a0e245208e41624a19c" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testCommitActivity/__files/orgs_github-api-test-org-4edea480-acf1-40ee-9636-e8842a01a9ea.json", + "mode": "100644", + "type": "blob", + "sha": "6a1869b899c5b071abffedb39e39fcfc5b36b538", + "size": 1481, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/6a1869b899c5b071abffedb39e39fcfc5b36b538" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testCommitActivity/__files/repos_github-api-test-org_github-api-6f33ad9d-feac-4b53-aa4a-c3b0f924a640.json", + "mode": "100644", + "type": "blob", + "sha": "488efd925af2948ac341579deb754c2a35ee4c75", + "size": 18893, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/488efd925af2948ac341579deb754c2a35ee4c75" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testCommitActivity/__files/repos_github-api-test-org_github-api_stats_commit_activity-54ebe063-0972-46bc-ba2c-12abdb28fcf0.json", + "mode": "100644", + "type": "blob", + "sha": "9b8f4032c8075b6e0fa5bfb7b5fefb03be8d4283", + "size": 6816, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/9b8f4032c8075b6e0fa5bfb7b5fefb03be8d4283" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testCommitActivity/__files/user-68a31e43-509d-476b-bebd-29a7129c9b2d.json", + "mode": "100644", + "type": "blob", + "sha": "41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0", + "size": 1640, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testCommitActivity/mappings", + "mode": "040000", + "type": "tree", + "sha": "38dc4a33570d39eaa7ecb2aaadc5600193cc4c51", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/38dc4a33570d39eaa7ecb2aaadc5600193cc4c51" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testCommitActivity/mappings/orgs_github-api-test-org-2-4edea4.json", + "mode": "100644", + "type": "blob", + "sha": "59ff16cb0f8b0180e3a78773c52a1c2f3ff9991c", + "size": 1931, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/59ff16cb0f8b0180e3a78773c52a1c2f3ff9991c" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testCommitActivity/mappings/repos_github-api-test-org_github-api-3-6f33ad.json", + "mode": "100644", + "type": "blob", + "sha": "51631a2839afd17f5d93a29ef3cee28e453fb55e", + "size": 1929, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/51631a2839afd17f5d93a29ef3cee28e453fb55e" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testCommitActivity/mappings/repos_github-api-test-org_github-api_stats_commit_activity-4-54ebe0.json", + "mode": "100644", + "type": "blob", + "sha": "2ffd9824afedcf5796524f80dbdf98a442526900", + "size": 1935, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/2ffd9824afedcf5796524f80dbdf98a442526900" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testCommitActivity/mappings/user-1-68a31e.json", + "mode": "100644", + "type": "blob", + "sha": "21fcb08160ddaedd52d1b9fba493967c3df35129", + "size": 1829, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/21fcb08160ddaedd52d1b9fba493967c3df35129" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testContributorStats", + "mode": "040000", + "type": "tree", + "sha": "de434da069d0307a45fccf64c8001bb11aab3d7a", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/de434da069d0307a45fccf64c8001bb11aab3d7a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testContributorStats/__files", + "mode": "040000", + "type": "tree", + "sha": "179316a7ff9841e87fe78fc6c1fc3cf442d5f441", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/179316a7ff9841e87fe78fc6c1fc3cf442d5f441" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testContributorStats/__files/orgs_github-api-test-org-4da8ece7-db7b-4b2d-85ef-8c617bc2cf0e.json", + "mode": "100644", + "type": "blob", + "sha": "6a1869b899c5b071abffedb39e39fcfc5b36b538", + "size": 1481, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/6a1869b899c5b071abffedb39e39fcfc5b36b538" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testContributorStats/__files/repos_github-api-test-org_github-api-6d11bbfd-0ddf-4867-bfe9-2896f9adb8e2.json", + "mode": "100644", + "type": "blob", + "sha": "488efd925af2948ac341579deb754c2a35ee4c75", + "size": 18893, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/488efd925af2948ac341579deb754c2a35ee4c75" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testContributorStats/__files/repos_github-api-test-org_github-api_stats_contributors-722ef788-c190-4e69-a84a-9ad367d6630d.json", + "mode": "100644", + "type": "blob", + "sha": "b5f2a4cfae0f8a3433b65fc3390c8f33f8ba1d25", + "size": 4464556, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/b5f2a4cfae0f8a3433b65fc3390c8f33f8ba1d25" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testContributorStats/__files/user-8442a6db-0547-45de-9b65-259e1fe4d673.json", + "mode": "100644", + "type": "blob", + "sha": "41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0", + "size": 1640, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testContributorStats/mappings", + "mode": "040000", + "type": "tree", + "sha": "d798b610c72f7ba6151e49185e61958d8ff2ff62", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/d798b610c72f7ba6151e49185e61958d8ff2ff62" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testContributorStats/mappings/orgs_github-api-test-org-2-4da8ec.json", + "mode": "100644", + "type": "blob", + "sha": "048ea1526b75866a2b9141d1645c25286147294b", + "size": 1931, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/048ea1526b75866a2b9141d1645c25286147294b" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testContributorStats/mappings/repos_github-api-test-org_github-api-3-6d11bb.json", + "mode": "100644", + "type": "blob", + "sha": "bd98f771f985f4ec4b043c1deaa8cf50f51016c5", + "size": 1929, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/bd98f771f985f4ec4b043c1deaa8cf50f51016c5" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testContributorStats/mappings/repos_github-api-test-org_github-api_stats_contributors-4-722ef7.json", + "mode": "100644", + "type": "blob", + "sha": "c8c5021981da9855cfd25e236872dc7bad53d325", + "size": 1926, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/c8c5021981da9855cfd25e236872dc7bad53d325" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testContributorStats/mappings/user-1-8442a6.json", + "mode": "100644", + "type": "blob", + "sha": "da7dbeeb5dd31182fe4e4c612bfc691b9aed03f4", + "size": 1829, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/da7dbeeb5dd31182fe4e4c612bfc691b9aed03f4" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testParticipation", + "mode": "040000", + "type": "tree", + "sha": "c2bd2c7fed22c7111fb9e04fe559f21899fd8626", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/c2bd2c7fed22c7111fb9e04fe559f21899fd8626" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testParticipation/__files", + "mode": "040000", + "type": "tree", + "sha": "4c0b90cc40e27e655c5b190c5f1053c9e00ea9e0", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/4c0b90cc40e27e655c5b190c5f1053c9e00ea9e0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testParticipation/__files/orgs_github-api-test-org-bc8f8b96-f45a-4539-a3e3-5f59a1c30c17.json", + "mode": "100644", + "type": "blob", + "sha": "6a1869b899c5b071abffedb39e39fcfc5b36b538", + "size": 1481, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/6a1869b899c5b071abffedb39e39fcfc5b36b538" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testParticipation/__files/repos_github-api-test-org_github-api-7631fa24-ceab-4d0f-8f22-f1041dcd792a.json", + "mode": "100644", + "type": "blob", + "sha": "488efd925af2948ac341579deb754c2a35ee4c75", + "size": 18893, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/488efd925af2948ac341579deb754c2a35ee4c75" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testParticipation/__files/user-a809afbf-ab4e-4117-86aa-da70544ee1bb.json", + "mode": "100644", + "type": "blob", + "sha": "41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0", + "size": 1640, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testParticipation/mappings", + "mode": "040000", + "type": "tree", + "sha": "d2f4d7e5f77738bd8949f65815c8ff4ca2523f67", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/d2f4d7e5f77738bd8949f65815c8ff4ca2523f67" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testParticipation/mappings/orgs_github-api-test-org-2-bc8f8b.json", + "mode": "100644", + "type": "blob", + "sha": "bf64a725abe7ec04a53189935531ff7fbd0fb318", + "size": 1931, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/bf64a725abe7ec04a53189935531ff7fbd0fb318" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testParticipation/mappings/repos_github-api-test-org_github-api-3-7631fa.json", + "mode": "100644", + "type": "blob", + "sha": "2b197abea74cdee73719741a01f6f79e10ac9e7e", + "size": 1929, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/2b197abea74cdee73719741a01f6f79e10ac9e7e" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testParticipation/mappings/repos_github-api-test-org_github-api_stats_participation-4-9ae337.json", + "mode": "100644", + "type": "blob", + "sha": "ffe9b2b9f9068605091db38c0153cd9c3b053acb", + "size": 2055, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/ffe9b2b9f9068605091db38c0153cd9c3b053acb" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testParticipation/mappings/user-1-a809af.json", + "mode": "100644", + "type": "blob", + "sha": "8230b832933196d861c2854dc14dd7779dbb472d", + "size": 1829, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/8230b832933196d861c2854dc14dd7779dbb472d" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testPunchCard", + "mode": "040000", + "type": "tree", + "sha": "d9186003dde745f580d2cc2f95faa5c7ead66143", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/d9186003dde745f580d2cc2f95faa5c7ead66143" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testPunchCard/__files", + "mode": "040000", + "type": "tree", + "sha": "389e2ce413d417099ac5e292302fbf89adc8e335", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/389e2ce413d417099ac5e292302fbf89adc8e335" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testPunchCard/__files/orgs_github-api-test-org-754abf86-100a-406e-b1f0-8af9e395d4b8.json", + "mode": "100644", + "type": "blob", + "sha": "6a1869b899c5b071abffedb39e39fcfc5b36b538", + "size": 1481, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/6a1869b899c5b071abffedb39e39fcfc5b36b538" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testPunchCard/__files/repos_github-api-test-org_github-api-b2ea09da-c234-4d3e-a636-e479e4234863.json", + "mode": "100644", + "type": "blob", + "sha": "488efd925af2948ac341579deb754c2a35ee4c75", + "size": 18893, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/488efd925af2948ac341579deb754c2a35ee4c75" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testPunchCard/__files/repos_github-api-test-org_github-api_stats_punch_card-e401c59f-b7f3-42e9-8d49-8dae9c25b72f.json", + "mode": "100644", + "type": "blob", + "sha": "0036ca83b20ebad4c9217de411a8b18fa0c010cc", + "size": 5017, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/0036ca83b20ebad4c9217de411a8b18fa0c010cc" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testPunchCard/__files/user-49e5cd05-8aa2-4e37-a72e-7ffb584c1422.json", + "mode": "100644", + "type": "blob", + "sha": "41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0", + "size": 1640, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testPunchCard/mappings", + "mode": "040000", + "type": "tree", + "sha": "65455346d9b2ab76570d297265f5a117b41ae48f", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/65455346d9b2ab76570d297265f5a117b41ae48f" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testPunchCard/mappings/orgs_github-api-test-org-2-754abf.json", + "mode": "100644", + "type": "blob", + "sha": "c4253259484b62095cbdef1ca4f823251bfe8889", + "size": 1929, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/c4253259484b62095cbdef1ca4f823251bfe8889" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testPunchCard/mappings/repos_github-api-test-org_github-api-3-b2ea09.json", + "mode": "100644", + "type": "blob", + "sha": "3474cd4a2b514e36356a42d633261bfe7cdd014f", + "size": 1927, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/3474cd4a2b514e36356a42d633261bfe7cdd014f" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testPunchCard/mappings/repos_github-api-test-org_github-api_stats_punch_card-4-e401c5.json", + "mode": "100644", + "type": "blob", + "sha": "c88a76af3978920334bb1af451f7a3b0e4039c6e", + "size": 1918, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/c88a76af3978920334bb1af451f7a3b0e4039c6e" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testPunchCard/mappings/user-1-49e5cd.json", + "mode": "100644", + "type": "blob", + "sha": "03440ce08e73cbe4f0f7120570598093c4e356a6", + "size": 1827, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/03440ce08e73cbe4f0f7120570598093c4e356a6" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest", + "mode": "040000", + "type": "tree", + "sha": "6395a035df27c9e7cc962fbe5bbae6c46db1454a", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/6395a035df27c9e7cc962fbe5bbae6c46db1454a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock", + "mode": "040000", + "type": "tree", + "sha": "bfea6a7fd401be0794fd47cb493d3838888a586c", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/bfea6a7fd401be0794fd47cb493d3838888a586c" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/LatestRepositoryExist", + "mode": "040000", + "type": "tree", + "sha": "5567534ea48dfc7459a8ed9a91e5399098074c91", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/5567534ea48dfc7459a8ed9a91e5399098074c91" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/LatestRepositoryExist/__files", + "mode": "040000", + "type": "tree", + "sha": "baa19b800d218b644cac67fe1854eff5096c7c30", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/baa19b800d218b644cac67fe1854eff5096c7c30" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/LatestRepositoryExist/__files/repos_kamontat_checkidnumber-572d41eb-82bd-4b68-8bda-c723b1e9521e.json", + "mode": "100644", + "type": "blob", + "sha": "ad79b048376179b412ee53f2d3ddf980fbe4a7d9", + "size": 5555, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/ad79b048376179b412ee53f2d3ddf980fbe4a7d9" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/LatestRepositoryExist/__files/repos_kamontat_checkidnumber_releases_latest-d2547b1f-1bc8-46a6-810c-48661d7fed2c.json", + "mode": "100644", + "type": "blob", + "sha": "2298494d432374b372b51e6c54598219d2e3e6d0", + "size": 3953, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/2298494d432374b372b51e6c54598219d2e3e6d0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/LatestRepositoryExist/__files/user-b9c99aa8-3e3d-435c-98e0-3af8eafc960a.json", + "mode": "100644", + "type": "blob", + "sha": "39d6c8353e0136a1f26e004bf49ea0a5ec7f4be0", + "size": 1640, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/39d6c8353e0136a1f26e004bf49ea0a5ec7f4be0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/LatestRepositoryExist/mappings", + "mode": "040000", + "type": "tree", + "sha": "ba1006dcfa4a6211f75fedeb9b924376c79ad0ed", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/ba1006dcfa4a6211f75fedeb9b924376c79ad0ed" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/LatestRepositoryExist/mappings/repos_kamontat_checkidnumber-2-572d41.json", + "mode": "100644", + "type": "blob", + "sha": "98ebf92bc97476d165577050356d1caea9c25e65", + "size": 1905, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/98ebf92bc97476d165577050356d1caea9c25e65" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/LatestRepositoryExist/mappings/repos_kamontat_checkidnumber_releases_latest-3-d2547b.json", + "mode": "100644", + "type": "blob", + "sha": "a5f8e644fa32f71c3ded107c177aaaac89b47f65", + "size": 1953, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a5f8e644fa32f71c3ded107c177aaaac89b47f65" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/LatestRepositoryExist/mappings/user-1-b9c99a.json", + "mode": "100644", + "type": "blob", + "sha": "1a0ee3494dee494410fffc02c3ea2c3d6acdbe8d", + "size": 1829, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/1a0ee3494dee494410fffc02c3ea2c3d6acdbe8d" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/LatestRepositoryNotExist", + "mode": "040000", + "type": "tree", + "sha": "112650461e2376eb61f62a82e8f5de046e95ead8", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/112650461e2376eb61f62a82e8f5de046e95ead8" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/LatestRepositoryNotExist/__files", + "mode": "040000", + "type": "tree", + "sha": "e0ed0cad50fdd5236dcb3fbacabae3791641a4c7", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/e0ed0cad50fdd5236dcb3fbacabae3791641a4c7" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/LatestRepositoryNotExist/__files/repos_kamontat_java8example-7752c1cb-ba51-4716-8321-7e9a6d3fa34a.json", + "mode": "100644", + "type": "blob", + "sha": "26e4f08d0335838bb78a325f73fadd120e0bb917", + "size": 5435, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/26e4f08d0335838bb78a325f73fadd120e0bb917" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/LatestRepositoryNotExist/__files/user-53c4464c-df7f-40cd-94d2-72b47c9a4999.json", + "mode": "100644", + "type": "blob", + "sha": "39d6c8353e0136a1f26e004bf49ea0a5ec7f4be0", + "size": 1640, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/39d6c8353e0136a1f26e004bf49ea0a5ec7f4be0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/LatestRepositoryNotExist/mappings", + "mode": "040000", + "type": "tree", + "sha": "6514d17c84550f5a230ad4fb773339055a38ad10", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/6514d17c84550f5a230ad4fb773339055a38ad10" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/LatestRepositoryNotExist/mappings/repos_kamontat_java8example-2-7752c1.json", + "mode": "100644", + "type": "blob", + "sha": "86078c2de247ead13086338247f536a2221f3887", + "size": 1901, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/86078c2de247ead13086338247f536a2221f3887" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/LatestRepositoryNotExist/mappings/repos_kamontat_java8example_releases_latest-3-838e4d.json", + "mode": "100644", + "type": "blob", + "sha": "be8b2431090e9db49ca0a74f24477ce264d6935a", + "size": 1710, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/be8b2431090e9db49ca0a74f24477ce264d6935a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/LatestRepositoryNotExist/mappings/user-1-53c446.json", + "mode": "100644", + "type": "blob", + "sha": "226ea2e8a14efe5be181e9a8ddd2f62b30d2d4f8", + "size": 1828, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/226ea2e8a14efe5be181e9a8ddd2f62b30d2d4f8" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/archive", + "mode": "040000", + "type": "tree", + "sha": "5f89842c79c07401e432985e46ad8ba9dc234a80", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/5f89842c79c07401e432985e46ad8ba9dc234a80" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/archive/__files", + "mode": "040000", + "type": "tree", + "sha": "0b1dccd13a7bc7784303fa005067cd20f05b03f4", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/0b1dccd13a7bc7784303fa005067cd20f05b03f4" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/archive/__files/orgs_github-api-test-org-cb173af2-c793-444a-acdf-c3850e7afdbe.json", + "mode": "100644", + "type": "blob", + "sha": "add01c1b30a839b5d722db76419abba5e5caf6a0", + "size": 1534, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/add01c1b30a839b5d722db76419abba5e5caf6a0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/archive/__files/repos_github-api-test-org_github-api-0a4d7a1a-f99c-47ca-840a-3e920c18bd1f.json", + "mode": "100644", + "type": "blob", + "sha": "428bee013356c99a883890d052ee0d2d48e7623a", + "size": 18893, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/428bee013356c99a883890d052ee0d2d48e7623a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/archive/__files/repos_github-api-test-org_github-api-1c529d7c-99f0-43ae-8231-044f48beac1a.json", + "mode": "100644", + "type": "blob", + "sha": "8f545390e33ebff9ee921d90986fbb6851f1c9a4", + "size": 18892, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/8f545390e33ebff9ee921d90986fbb6851f1c9a4" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/archive/__files/repos_github-api-test-org_github-api-2c69d5c8-dd81-4204-bad9-ee37f5b0ebfd.json", + "mode": "100644", + "type": "blob", + "sha": "8f545390e33ebff9ee921d90986fbb6851f1c9a4", + "size": 18892, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/8f545390e33ebff9ee921d90986fbb6851f1c9a4" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/archive/__files/user-7f6e9a01-5bfa-4f72-9947-07df902f56c3.json", + "mode": "100644", + "type": "blob", + "sha": "eab16ea06835d48745a107ea3d2e4c6fb6c8c4f8", + "size": 1368, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/eab16ea06835d48745a107ea3d2e4c6fb6c8c4f8" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/archive/mappings", + "mode": "040000", + "type": "tree", + "sha": "0619d774c2ef750660c14a8f81a6f303c1c0a359", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/0619d774c2ef750660c14a8f81a6f303c1c0a359" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/archive/mappings/orgs_github-api-test-org-2-cb173a.json", + "mode": "100644", + "type": "blob", + "sha": "31cd8fc532e841bc69921c28b2c5500299ae9afd", + "size": 1875, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/31cd8fc532e841bc69921c28b2c5500299ae9afd" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/archive/mappings/repos_github-api-test-org_github-api-3-0a4d7a.json", + "mode": "100644", + "type": "blob", + "sha": "5300dab0aa22ed2c646c0bacedf80dbed0f97d57", + "size": 2055, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/5300dab0aa22ed2c646c0bacedf80dbed0f97d57" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/archive/mappings/repos_github-api-test-org_github-api-4-2c69d5.json", + "mode": "100644", + "type": "blob", + "sha": "b3a7b193fe121fe9fa165eadd9fb7e7a51642882", + "size": 2004, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/b3a7b193fe121fe9fa165eadd9fb7e7a51642882" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/archive/mappings/repos_github-api-test-org_github-api-5-1c529d.json", + "mode": "100644", + "type": "blob", + "sha": "72ba30ebd8714af8ffa25efa3ddf02c65e2142ad", + "size": 2022, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/72ba30ebd8714af8ffa25efa3ddf02c65e2142ad" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/archive/mappings/user-1-7f6e9a.json", + "mode": "100644", + "type": "blob", + "sha": "74f306e601fdbd912c5c1ed62a3e2905de38e5f3", + "size": 1772, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/74f306e601fdbd912c5c1ed62a3e2905de38e5f3" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getBranch_URLEncoded", + "mode": "040000", + "type": "tree", + "sha": "fb2f57fdf27d3d54aac92a4560aee3cd8eb14d7e", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/fb2f57fdf27d3d54aac92a4560aee3cd8eb14d7e" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getBranch_URLEncoded/__files", + "mode": "040000", + "type": "tree", + "sha": "5bb0595ea8f56215c31f5558b66304ef0cf6aeb0", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/5bb0595ea8f56215c31f5558b66304ef0cf6aeb0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getBranch_URLEncoded/__files/orgs_github-api-test-org-5e8ae8ed-0988-4df2-89d3-eda4c6bdc60d.json", + "mode": "100644", + "type": "blob", + "sha": "add01c1b30a839b5d722db76419abba5e5caf6a0", + "size": 1534, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/add01c1b30a839b5d722db76419abba5e5caf6a0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getBranch_URLEncoded/__files/repos_github-api-test-org_github-api-30364e1b-193c-4929-9dd0-5aab7b47dbb9.json", + "mode": "100644", + "type": "blob", + "sha": "4ae55dacd59218b1096e5c0c6775682c4855f844", + "size": 18893, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/4ae55dacd59218b1096e5c0c6775682c4855f844" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getBranch_URLEncoded/__files/repos_github-api-test-org_github-api_branches_test_urlencode-ed8bf5ba-65e0-47d8-bb4d-614063828c87.json", + "mode": "100644", + "type": "blob", + "sha": "aa54de5767c7f20e6b756d4a46ab4ab16ef5e94d", + "size": 4449, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/aa54de5767c7f20e6b756d4a46ab4ab16ef5e94d" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getBranch_URLEncoded/__files/user-c92cdb3f-7cae-43ba-bee2-e5aa6863dcbc.json", + "mode": "100644", + "type": "blob", + "sha": "eab16ea06835d48745a107ea3d2e4c6fb6c8c4f8", + "size": 1368, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/eab16ea06835d48745a107ea3d2e4c6fb6c8c4f8" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getBranch_URLEncoded/mappings", + "mode": "040000", + "type": "tree", + "sha": "757a4ad5329a2defe6c8599c29fa0617eafd2add", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/757a4ad5329a2defe6c8599c29fa0617eafd2add" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getBranch_URLEncoded/mappings/orgs_github-api-test-org-2-5e8ae8.json", + "mode": "100644", + "type": "blob", + "sha": "1843f6531daf0e684243444bd2cc3bb71e54c438", + "size": 1873, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/1843f6531daf0e684243444bd2cc3bb71e54c438" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getBranch_URLEncoded/mappings/repos_github-api-test-org_github-api-3-30364e.json", + "mode": "100644", + "type": "blob", + "sha": "a4aca47d486e90b02ad5bed4dd594bac10bdff74", + "size": 1871, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a4aca47d486e90b02ad5bed4dd594bac10bdff74" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getBranch_URLEncoded/mappings/repos_github-api-test-org_github-api_branches_test_urlencode-4-ed8bf5.json", + "mode": "100644", + "type": "blob", + "sha": "fd3245a1c74106f86aa09e31bb070c71b0a94638", + "size": 1888, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/fd3245a1c74106f86aa09e31bb070c71b0a94638" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getBranch_URLEncoded/mappings/user-1-c92cdb.json", + "mode": "100644", + "type": "blob", + "sha": "4f883af35569641dc660e85b536380b3400e09d5", + "size": 1771, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/4f883af35569641dc660e85b536380b3400e09d5" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getMergeOptions", + "mode": "040000", + "type": "tree", + "sha": "73cc5e36d2b486c65d850737b271515d1b3583bb", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/73cc5e36d2b486c65d850737b271515d1b3583bb" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getMergeOptions/__files", + "mode": "040000", + "type": "tree", + "sha": "253181edce5658d6ffdf04f708a5e5a5104617bb", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/253181edce5658d6ffdf04f708a5e5a5104617bb" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getMergeOptions/__files/repos_github-api-test-org_temp-getmergeoptions-cb893c1a-1c74-4838-b473-342f8c2b8262.json", + "mode": "100644", + "type": "blob", + "sha": "3681e7f787979e3fe725acfe60e230017724562d", + "size": 7760, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/3681e7f787979e3fe725acfe60e230017724562d" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getMergeOptions/__files/user-5d8fe237-9241-4331-8808-0ca2781e48be.json", + "mode": "100644", + "type": "blob", + "sha": "3309be8e1c818efbaa11502237c5e185475329de", + "size": 1640, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/3309be8e1c818efbaa11502237c5e185475329de" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getMergeOptions/mappings", + "mode": "040000", + "type": "tree", + "sha": "8abb005c352b4ad42bb511fe43f1eae1d942daa5", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/8abb005c352b4ad42bb511fe43f1eae1d942daa5" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getMergeOptions/mappings/repos_github-api-test-org_temp-getmergeoptions-2-cb893c.json", + "mode": "100644", + "type": "blob", + "sha": "234196627f519c16691caf92ef2bfb3545b16087", + "size": 1958, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/234196627f519c16691caf92ef2bfb3545b16087" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getMergeOptions/mappings/user-1-5d8fe2.json", + "mode": "100644", + "type": "blob", + "sha": "ac31cb2cfece755eb2fcca1fbfe8ec6d2eaa6d9e", + "size": 1828, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/ac31cb2cfece755eb2fcca1fbfe8ec6d2eaa6d9e" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getPermission", + "mode": "040000", + "type": "tree", + "sha": "a7c8d6415804a8721a9439868393c8896a7c0c96", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/a7c8d6415804a8721a9439868393c8896a7c0c96" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getPermission/__files", + "mode": "040000", + "type": "tree", + "sha": "097a24cf27dfa1e013d9e97b49cf75ef9791c6a1", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/097a24cf27dfa1e013d9e97b49cf75ef9791c6a1" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getPermission/__files/orgs_apache-f737f022-de94-4025-89aa-a912b960c50c.json", + "mode": "100644", + "type": "blob", + "sha": "b89a15eb37856995408b5a3dbbb8eceaa0e453e6", + "size": 1081, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/b89a15eb37856995408b5a3dbbb8eceaa0e453e6" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getPermission/__files/repos_apache_groovy-cc8d8558-cd64-41fb-bdc6-37ff181eb321.json", + "mode": "100644", + "type": "blob", + "sha": "6c96c0d4de679561371380ffdb2a85d36733ddb6", + "size": 6298, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/6c96c0d4de679561371380ffdb2a85d36733ddb6" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getPermission/__files/repos_github-api-test-org_test-permission-4976af4f-68c3-4057-a201-3d498f842bd5.json", + "mode": "100644", + "type": "blob", + "sha": "ac23865b5d288f53b0a38efa76dea20aae30fc74", + "size": 7480, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/ac23865b5d288f53b0a38efa76dea20aae30fc74" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getPermission/__files/repos_github-api-test-org_test-permission_collaborators_dude_permission-665c4060-0f62-4490-b41c-88943cc0e008.json", + "mode": "100644", + "type": "blob", + "sha": "4a0da4f4e6fdb93a33f2b58ca47dadbb1ae96324", + "size": 999, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/4a0da4f4e6fdb93a33f2b58ca47dadbb1ae96324" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getPermission/__files/repos_github-api-test-org_test-permission_collaborators_kohsuke_permission-8dd9fa47-74b9-42b8-b50e-cb0f13a842fb.json", + "mode": "100644", + "type": "blob", + "sha": "a0480a5202f6b3d037583f366a0df62f9fa48a8f", + "size": 1036, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a0480a5202f6b3d037583f366a0df62f9fa48a8f" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getPermission/__files/user-01e35abe-08e1-4af9-b88b-3a9f87603970.json", + "mode": "100644", + "type": "blob", + "sha": "39d6c8353e0136a1f26e004bf49ea0a5ec7f4be0", + "size": 1640, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/39d6c8353e0136a1f26e004bf49ea0a5ec7f4be0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getPermission/mappings", + "mode": "040000", + "type": "tree", + "sha": "259c0208dd47a828691da58032d09e834b97c20d", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/259c0208dd47a828691da58032d09e834b97c20d" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getPermission/mappings/orgs_apache-5-f737f0.json", + "mode": "100644", + "type": "blob", + "sha": "ab209fa057c9e52a073c3d1db90ecfbeb9c6ff0c", + "size": 1891, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/ab209fa057c9e52a073c3d1db90ecfbeb9c6ff0c" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getPermission/mappings/repos_apache_groovy-6-cc8d85.json", + "mode": "100644", + "type": "blob", + "sha": "19d616077e7d0cfadc4d61c8ae7555bb2690e065", + "size": 1877, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/19d616077e7d0cfadc4d61c8ae7555bb2690e065" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getPermission/mappings/repos_apache_groovy_collaborators_jglick_permission-7-61ff8c.json", + "mode": "100644", + "type": "blob", + "sha": "21283e0006c72422125b2a59b2f28090cd88c6bc", + "size": 1781, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/21283e0006c72422125b2a59b2f28090cd88c6bc" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getPermission/mappings/repos_github-api-test-org_test-permission-2-4976af.json", + "mode": "100644", + "type": "blob", + "sha": "a16a186309aa98dff504eac41e19e77d9a5cbd6a", + "size": 1943, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a16a186309aa98dff504eac41e19e77d9a5cbd6a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getPermission/mappings/repos_github-api-test-org_test-permission_collaborators_dude_permission-4-665c40.json", + "mode": "100644", + "type": "blob", + "sha": "bee393c8141bf6f72bafeeef57dbff2a29c78c0b", + "size": 1973, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/bee393c8141bf6f72bafeeef57dbff2a29c78c0b" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getPermission/mappings/repos_github-api-test-org_test-permission_collaborators_kohsuke_permission-3-8dd9fa.json", + "mode": "100644", + "type": "blob", + "sha": "277a7c82a724c521cb62272c60f053a1889d5422", + "size": 1982, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/277a7c82a724c521cb62272c60f053a1889d5422" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getPermission/mappings/user-1-01e35a.json", + "mode": "100644", + "type": "blob", + "sha": "0371c71da35d19f76056be4b08b238c56ac39fe8", + "size": 1828, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/0371c71da35d19f76056be4b08b238c56ac39fe8" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseByTagNameDoesNotExist", + "mode": "040000", + "type": "tree", + "sha": "cff388914c5891070b6d252025b0ead436e2edbc", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/cff388914c5891070b6d252025b0ead436e2edbc" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseByTagNameDoesNotExist/__files", + "mode": "040000", + "type": "tree", + "sha": "783e87cfa842547984ed93c43535dfdb0b0e1c98", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/783e87cfa842547984ed93c43535dfdb0b0e1c98" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseByTagNameDoesNotExist/__files/orgs_github-api-test-org-f2bd68e9-de30-4416-a2ed-8674710a5ff7.json", + "mode": "100644", + "type": "blob", + "sha": "5605b36c3d17993f4702109fd262c3f8ca2780e9", + "size": 1481, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/5605b36c3d17993f4702109fd262c3f8ca2780e9" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseByTagNameDoesNotExist/__files/repos_github-api-test-org_github-api-c19ba509-63bb-424a-83d7-c308b7d42c35.json", + "mode": "100644", + "type": "blob", + "sha": "e3ed63d52e825de6f7b55b70ea64076b19f59288", + "size": 18893, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/e3ed63d52e825de6f7b55b70ea64076b19f59288" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseByTagNameDoesNotExist/__files/user-c36cc5db-11f3-4ba4-a6c0-d7b45353121f.json", + "mode": "100644", + "type": "blob", + "sha": "39d6c8353e0136a1f26e004bf49ea0a5ec7f4be0", + "size": 1640, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/39d6c8353e0136a1f26e004bf49ea0a5ec7f4be0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseByTagNameDoesNotExist/mappings", + "mode": "040000", + "type": "tree", + "sha": "185c788957bcc4bbc2f10e9849b8a97b1c0323e6", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/185c788957bcc4bbc2f10e9849b8a97b1c0323e6" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseByTagNameDoesNotExist/mappings/orgs_github-api-test-org-2-f2bd68.json", + "mode": "100644", + "type": "blob", + "sha": "302936c92816b20fe68f18aab82cbbca5f961709", + "size": 1931, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/302936c92816b20fe68f18aab82cbbca5f961709" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseByTagNameDoesNotExist/mappings/repos_github-api-test-org_github-api-3-c19ba5.json", + "mode": "100644", + "type": "blob", + "sha": "65cc9e941b0de01e1e28db7fe04484e5d5d1f6c3", + "size": 1929, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/65cc9e941b0de01e1e28db7fe04484e5d5d1f6c3" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseByTagNameDoesNotExist/mappings/repos_github-api-test-org_github-api_releases_tags_foo-bar-baz-4-3ac213.json", + "mode": "100644", + "type": "blob", + "sha": "bb5b8b0d217eea32b3fb3ede1b95692d8025c6b4", + "size": 1752, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/bb5b8b0d217eea32b3fb3ede1b95692d8025c6b4" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseByTagNameDoesNotExist/mappings/user-1-c36cc5.json", + "mode": "100644", + "type": "blob", + "sha": "e73fe4c83f3ee194e8d2b7516917c0aacf614975", + "size": 1829, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/e73fe4c83f3ee194e8d2b7516917c0aacf614975" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseByTagNameExists", + "mode": "040000", + "type": "tree", + "sha": "f32f72243b12805c603b7c676d36de31feac6dcb", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/f32f72243b12805c603b7c676d36de31feac6dcb" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseByTagNameExists/__files", + "mode": "040000", + "type": "tree", + "sha": "69893254e187310c8ac76d8b26761ff2cbc15377", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/69893254e187310c8ac76d8b26761ff2cbc15377" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseByTagNameExists/__files/orgs_github-8cbc3a4c-9afe-4ab9-a5d6-0b375b5d889c.json", + "mode": "100644", + "type": "blob", + "sha": "12ec736a6a8e07b73ed1de1a6db1d4936a5fb3d3", + "size": 1112, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/12ec736a6a8e07b73ed1de1a6db1d4936a5fb3d3" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseByTagNameExists/__files/repos_github_hub-fc521132-c82c-4c40-a60a-a60b17884999.json", + "mode": "100644", + "type": "blob", + "sha": "56ed61dd632b59b8047e2aeeead95251987e74fc", + "size": 6189, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/56ed61dd632b59b8047e2aeeead95251987e74fc" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseByTagNameExists/__files/repos_github_hub_releases_tags_v230-pre10-dcb217dc-3403-4785-b4cc-72b425ff89bc.json", + "mode": "100644", + "type": "blob", + "sha": "199212e2be8112b1568f2ff1f8cf290d03732609", + "size": 14093, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/199212e2be8112b1568f2ff1f8cf290d03732609" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseByTagNameExists/__files/user-87c44ef0-9caf-4dcb-b261-9ddd517c941a.json", + "mode": "100644", + "type": "blob", + "sha": "39d6c8353e0136a1f26e004bf49ea0a5ec7f4be0", + "size": 1640, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/39d6c8353e0136a1f26e004bf49ea0a5ec7f4be0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseByTagNameExists/mappings", + "mode": "040000", + "type": "tree", + "sha": "5d55820fc62345d1c07e032c8dd3e720da4e8033", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/5d55820fc62345d1c07e032c8dd3e720da4e8033" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseByTagNameExists/mappings/orgs_github-2-8cbc3a.json", + "mode": "100644", + "type": "blob", + "sha": "3ff040bc611334be6e4ad9c07b028e695f9d66aa", + "size": 1892, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/3ff040bc611334be6e4ad9c07b028e695f9d66aa" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseByTagNameExists/mappings/repos_github_hub-3-fc5211.json", + "mode": "100644", + "type": "blob", + "sha": "59f35624600f5f0dafda9ea4448d0f4ffb6d9749", + "size": 1869, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/59f35624600f5f0dafda9ea4448d0f4ffb6d9749" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseByTagNameExists/mappings/repos_github_hub_releases_tags_v230-pre10-4-dcb217.json", + "mode": "100644", + "type": "blob", + "sha": "567df4fbbc9330aa389cd0c5345c4e289dc51d0c", + "size": 1946, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/567df4fbbc9330aa389cd0c5345c4e289dc51d0c" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseByTagNameExists/mappings/user-1-87c44e.json", + "mode": "100644", + "type": "blob", + "sha": "a508a734cc4493dbf74454144194f2363344bd73", + "size": 1829, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a508a734cc4493dbf74454144194f2363344bd73" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseDoesNotExist", + "mode": "040000", + "type": "tree", + "sha": "0406352539300258f294b7359a6255f7057ee1d5", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/0406352539300258f294b7359a6255f7057ee1d5" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseDoesNotExist/__files", + "mode": "040000", + "type": "tree", + "sha": "9dc9aacda425c804452d67163bf1769f1f0bb0a1", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/9dc9aacda425c804452d67163bf1769f1f0bb0a1" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseDoesNotExist/__files/orgs_github-18ee08b2-d3da-40f9-81b1-a4976502dc61.json", + "mode": "100644", + "type": "blob", + "sha": "12ec736a6a8e07b73ed1de1a6db1d4936a5fb3d3", + "size": 1112, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/12ec736a6a8e07b73ed1de1a6db1d4936a5fb3d3" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseDoesNotExist/__files/repos_github_hub-e0a029ec-a3a9-4f0c-904f-de386dcfbfde.json", + "mode": "100644", + "type": "blob", + "sha": "56ed61dd632b59b8047e2aeeead95251987e74fc", + "size": 6189, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/56ed61dd632b59b8047e2aeeead95251987e74fc" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseDoesNotExist/__files/user-f64c26dc-b35e-4fef-ba8e-6747d1e1f89b.json", + "mode": "100644", + "type": "blob", + "sha": "39d6c8353e0136a1f26e004bf49ea0a5ec7f4be0", + "size": 1640, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/39d6c8353e0136a1f26e004bf49ea0a5ec7f4be0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseDoesNotExist/mappings", + "mode": "040000", + "type": "tree", + "sha": "350e9a2d4eba60675359ab85e299ace9e6672a9a", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/350e9a2d4eba60675359ab85e299ace9e6672a9a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseDoesNotExist/mappings/orgs_github-2-18ee08.json", + "mode": "100644", + "type": "blob", + "sha": "33e38380038bbe80b13c72d64540b0bb1f2a90f1", + "size": 1891, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/33e38380038bbe80b13c72d64540b0bb1f2a90f1" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseDoesNotExist/mappings/repos_github_hub-3-e0a029.json", + "mode": "100644", + "type": "blob", + "sha": "36a1909eafe23ea27605b930e9195a77f4edb229", + "size": 1868, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/36a1909eafe23ea27605b930e9195a77f4edb229" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseDoesNotExist/mappings/repos_github_hub_releases_9223372036854775807-4-b82be5.json", + "mode": "100644", + "type": "blob", + "sha": "eb5853e45abf4921c252f3d30bd0833412b3e141", + "size": 1712, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/eb5853e45abf4921c252f3d30bd0833412b3e141" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseDoesNotExist/mappings/user-1-f64c26.json", + "mode": "100644", + "type": "blob", + "sha": "ca0a4d1714059e386af0f3fd775a86787da9ce61", + "size": 1828, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/ca0a4d1714059e386af0f3fd775a86787da9ce61" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseExists", + "mode": "040000", + "type": "tree", + "sha": "fe0f3d61bd0b24d5576f703e486f5667fd940ddc", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/fe0f3d61bd0b24d5576f703e486f5667fd940ddc" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseExists/__files", + "mode": "040000", + "type": "tree", + "sha": "64d005d502c564f6f4fa241b012fc37f83efc00d", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/64d005d502c564f6f4fa241b012fc37f83efc00d" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseExists/__files/orgs_github-f8d704eb-efb2-4a44-a403-144947461c8a.json", + "mode": "100644", + "type": "blob", + "sha": "12ec736a6a8e07b73ed1de1a6db1d4936a5fb3d3", + "size": 1112, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/12ec736a6a8e07b73ed1de1a6db1d4936a5fb3d3" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseExists/__files/repos_github_hub-f5ba6b71-c860-406a-80ad-135d8e9e18c3.json", + "mode": "100644", + "type": "blob", + "sha": "56ed61dd632b59b8047e2aeeead95251987e74fc", + "size": 6189, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/56ed61dd632b59b8047e2aeeead95251987e74fc" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseExists/__files/repos_github_hub_releases_6839710-2959bf19-ebbd-4b5f-9f83-07b70965577f.json", + "mode": "100644", + "type": "blob", + "sha": "199212e2be8112b1568f2ff1f8cf290d03732609", + "size": 14093, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/199212e2be8112b1568f2ff1f8cf290d03732609" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseExists/__files/user-37773edf-8a04-4682-98f0-dd715240d160.json", + "mode": "100644", + "type": "blob", + "sha": "39d6c8353e0136a1f26e004bf49ea0a5ec7f4be0", + "size": 1640, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/39d6c8353e0136a1f26e004bf49ea0a5ec7f4be0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseExists/mappings", + "mode": "040000", + "type": "tree", + "sha": "7a93d67918f2ff7de9796edcd08be207d7c7b450", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/7a93d67918f2ff7de9796edcd08be207d7c7b450" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseExists/mappings/orgs_github-2-f8d704.json", + "mode": "100644", + "type": "blob", + "sha": "2087f4b29ab4d1ec03dfbeae7d12cba39ca57fd5", + "size": 1892, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/2087f4b29ab4d1ec03dfbeae7d12cba39ca57fd5" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseExists/mappings/repos_github_hub-3-f5ba6b.json", + "mode": "100644", + "type": "blob", + "sha": "0e83d0f46dd126c0ca522a72cf02ce8eedd1095a", + "size": 1869, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/0e83d0f46dd126c0ca522a72cf02ce8eedd1095a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseExists/mappings/repos_github_hub_releases_6839710-4-2959bf.json", + "mode": "100644", + "type": "blob", + "sha": "e1741e7a75297793bf288ebd33985a49ba5a6795", + "size": 1920, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/e1741e7a75297793bf288ebd33985a49ba5a6795" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseExists/mappings/user-1-37773e.json", + "mode": "100644", + "type": "blob", + "sha": "8a28e16556b6b207b9019b2c88fd69bfda751bb1", + "size": 1829, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/8a28e16556b6b207b9019b2c88fd69bfda751bb1" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listContributors", + "mode": "040000", + "type": "tree", + "sha": "3b062a04e2f1b80f69e83bb2a4aa4c6b1c71725e", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/3b062a04e2f1b80f69e83bb2a4aa4c6b1c71725e" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listContributors/__files", + "mode": "040000", + "type": "tree", + "sha": "956ca4ba08ad00f4d53b4f2941265d986cded4cc", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/956ca4ba08ad00f4d53b4f2941265d986cded4cc" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listContributors/__files/orgs_github-api-7c4b2a82-e18f-45a2-a6b5-4baaea191b89.json", + "mode": "100644", + "type": "blob", + "sha": "460832e2424695057dcf4990cb23eab47060088b", + "size": 1408, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/460832e2424695057dcf4990cb23eab47060088b" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listContributors/__files/repos_github-api_github-api-d87d9579-8da1-4f01-a6e6-6f91e04cc8a7.json", + "mode": "100644", + "type": "blob", + "sha": "5d3f9740bcb418745c2eadff1b998398871a763d", + "size": 6831, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/5d3f9740bcb418745c2eadff1b998398871a763d" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listContributors/__files/repos_github-api_github-api_contributors-cd622100-1a8e-4b33-9716-dbaf0b55c2aa.json", + "mode": "100644", + "type": "blob", + "sha": "d19352805fbd9076311728a05539151acc6e9678", + "size": 31949, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d19352805fbd9076311728a05539151acc6e9678" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listContributors/__files/user-5705a11e-1421-4985-8e1f-b1e25b4ef547.json", + "mode": "100644", + "type": "blob", + "sha": "39d6c8353e0136a1f26e004bf49ea0a5ec7f4be0", + "size": 1640, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/39d6c8353e0136a1f26e004bf49ea0a5ec7f4be0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listContributors/mappings", + "mode": "040000", + "type": "tree", + "sha": "298ccdf6805a89c87f6c1f4db1248e6814f120ce", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/298ccdf6805a89c87f6c1f4db1248e6814f120ce" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listContributors/mappings/orgs_github-api-2-7c4b2a.json", + "mode": "100644", + "type": "blob", + "sha": "0b4611cbbb1dd1f08c40d52ebc92f921099e9927", + "size": 1904, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/0b4611cbbb1dd1f08c40d52ebc92f921099e9927" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listContributors/mappings/repos_github-api_github-api-3-d87d95.json", + "mode": "100644", + "type": "blob", + "sha": "e40dbd6d4dd6e16970eceb3e278d03e7e95faf24", + "size": 1902, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/e40dbd6d4dd6e16970eceb3e278d03e7e95faf24" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listContributors/mappings/repos_github-api_github-api_contributors-4-cd6221.json", + "mode": "100644", + "type": "blob", + "sha": "a841f8dd181fe706fc333c3640176c31e6d5f5f6", + "size": 2113, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a841f8dd181fe706fc333c3640176c31e6d5f5f6" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listContributors/mappings/user-1-5705a1.json", + "mode": "100644", + "type": "blob", + "sha": "8a7c36a4324c0d06d3dc57339b3e10d77a991ac7", + "size": 1829, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/8a7c36a4324c0d06d3dc57339b3e10d77a991ac7" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listEmptyContributors", + "mode": "040000", + "type": "tree", + "sha": "890489c1b9fdac3ff7921a6dbee3e72422a5a7c8", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/890489c1b9fdac3ff7921a6dbee3e72422a5a7c8" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listEmptyContributors/__files", + "mode": "040000", + "type": "tree", + "sha": "60a593ead247a4ed0293196be7f39039f5508467", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/60a593ead247a4ed0293196be7f39039f5508467" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listEmptyContributors/__files/repos_github-api-test-org_empty-af73e21a-68d3-4683-a1e1-3415319211e4.json", + "mode": "100644", + "type": "blob", + "sha": "5179da139415c995da5310f1a5a967ef00b17830", + "size": 7031, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/5179da139415c995da5310f1a5a967ef00b17830" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listEmptyContributors/__files/user-8d2ebbe4-ff50-4d3e-9932-d48541155f86.json", + "mode": "100644", + "type": "blob", + "sha": "41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0", + "size": 1640, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listEmptyContributors/mappings", + "mode": "040000", + "type": "tree", + "sha": "b51edb0e1a226a70628ead54d88f5b9b03e0fc51", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/b51edb0e1a226a70628ead54d88f5b9b03e0fc51" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listEmptyContributors/mappings/repos_github-api-test-org_empty-2-af73e2.json", + "mode": "100644", + "type": "blob", + "sha": "bfb49f1f763c65f78edfe5c4fd4f582003adb364", + "size": 1912, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/bfb49f1f763c65f78edfe5c4fd4f582003adb364" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listEmptyContributors/mappings/repos_github-api-test-org_empty_contributors-3-dae0e3.json", + "mode": "100644", + "type": "blob", + "sha": "58ae5449a7ec888139413ce09b1d96176ea78a40", + "size": 1544, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/58ae5449a7ec888139413ce09b1d96176ea78a40" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listEmptyContributors/mappings/user-1-8d2ebb.json", + "mode": "100644", + "type": "blob", + "sha": "e5adbdccc8002a4f8b951b3f9982332133558b97", + "size": 1827, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/e5adbdccc8002a4f8b951b3f9982332133558b97" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listLanguages", + "mode": "040000", + "type": "tree", + "sha": "0d34bbd3bf2bfe6aecee67df325f139132a1687b", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/0d34bbd3bf2bfe6aecee67df325f139132a1687b" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listLanguages/__files", + "mode": "040000", + "type": "tree", + "sha": "46aac6887589d3eedf7513088b837b38027ca4e7", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/46aac6887589d3eedf7513088b837b38027ca4e7" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listLanguages/__files/repos_github-api_github-api-1852eb94-7578-45d0-8b90-fa23b623dccf.json", + "mode": "100644", + "type": "blob", + "sha": "5d3f9740bcb418745c2eadff1b998398871a763d", + "size": 6831, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/5d3f9740bcb418745c2eadff1b998398871a763d" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listLanguages/__files/user-aab4cb17-6715-454d-8498-f30d5e2ca5a2.json", + "mode": "100644", + "type": "blob", + "sha": "39d6c8353e0136a1f26e004bf49ea0a5ec7f4be0", + "size": 1640, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/39d6c8353e0136a1f26e004bf49ea0a5ec7f4be0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listLanguages/mappings", + "mode": "040000", + "type": "tree", + "sha": "26e87dcc5308ec44032b6fc8ddde3d2ba9767047", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/26e87dcc5308ec44032b6fc8ddde3d2ba9767047" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listLanguages/mappings/repos_github-api_github-api-2-1852eb.json", + "mode": "100644", + "type": "blob", + "sha": "bb3220e55f94f64be5b70b44ddeba4802324160a", + "size": 1901, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/bb3220e55f94f64be5b70b44ddeba4802324160a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listLanguages/mappings/repos_github-api_github-api_languages-3-acab46.json", + "mode": "100644", + "type": "blob", + "sha": "6185cc5c6113f50faf0e1cc0b1f27d608758a663", + "size": 1855, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/6185cc5c6113f50faf0e1cc0b1f27d608758a663" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listLanguages/mappings/user-1-aab4cb.json", + "mode": "100644", + "type": "blob", + "sha": "0103a55950615678f0e932a60d04819a595d4b60", + "size": 1828, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/0103a55950615678f0e932a60d04819a595d4b60" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listReleases", + "mode": "040000", + "type": "tree", + "sha": "94369a45043923af4bcd74d96567d22a8752b113", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/94369a45043923af4bcd74d96567d22a8752b113" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listReleases/__files", + "mode": "040000", + "type": "tree", + "sha": "3879c1d7a45a62bba4bf25e06d979bdc061bcc25", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/3879c1d7a45a62bba4bf25e06d979bdc061bcc25" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listReleases/__files/orgs_github-c4db4df5-1d50-46c5-b667-0a3b1d9653e6.json", + "mode": "100644", + "type": "blob", + "sha": "12ec736a6a8e07b73ed1de1a6db1d4936a5fb3d3", + "size": 1112, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/12ec736a6a8e07b73ed1de1a6db1d4936a5fb3d3" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listReleases/__files/repos_github_hub-8338609c-0f4c-4fe5-9ca6-fc64b08673be.json", + "mode": "100644", + "type": "blob", + "sha": "56ed61dd632b59b8047e2aeeead95251987e74fc", + "size": 6189, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/56ed61dd632b59b8047e2aeeead95251987e74fc" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listReleases/__files/repos_github_hub_releases-5c5da4ad-d9da-4ce8-8076-8797eb1070a9.json", + "mode": "100644", + "type": "blob", + "sha": "6160f2ad9c9bcb98f4b93c513d7172c00afa0a0b", + "size": 499236, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/6160f2ad9c9bcb98f4b93c513d7172c00afa0a0b" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listReleases/__files/user-95be222c-381f-4c01-bac9-fedbc8963616.json", + "mode": "100644", + "type": "blob", + "sha": "39d6c8353e0136a1f26e004bf49ea0a5ec7f4be0", + "size": 1640, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/39d6c8353e0136a1f26e004bf49ea0a5ec7f4be0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listReleases/mappings", + "mode": "040000", + "type": "tree", + "sha": "1c4e3be5a0757823da2a1217875412e12d3e5c3f", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/1c4e3be5a0757823da2a1217875412e12d3e5c3f" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listReleases/mappings/orgs_github-2-c4db4d.json", + "mode": "100644", + "type": "blob", + "sha": "6c67ae642adc260ecaa6f9d0a35ea54400dc4fd7", + "size": 1889, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/6c67ae642adc260ecaa6f9d0a35ea54400dc4fd7" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listReleases/mappings/repos_github_hub-3-833860.json", + "mode": "100644", + "type": "blob", + "sha": "b291597f99ce488419d650141eea864a96d6b625", + "size": 1866, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/b291597f99ce488419d650141eea864a96d6b625" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listReleases/mappings/repos_github_hub_releases-4-5c5da4.json", + "mode": "100644", + "type": "blob", + "sha": "e1cecfa52bcc04f4fd67b2e5b0be2409eac7994e", + "size": 2005, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/e1cecfa52bcc04f4fd67b2e5b0be2409eac7994e" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listReleases/mappings/user-1-95be22.json", + "mode": "100644", + "type": "blob", + "sha": "8ac3c441e87a368619d88b74636afb02feee1b60", + "size": 1826, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/8ac3c441e87a368619d88b74636afb02feee1b60" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/markDown", + "mode": "040000", + "type": "tree", + "sha": "73812683ddd6a10ea632366a4b3dc5d2b4133cb3", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/73812683ddd6a10ea632366a4b3dc5d2b4133cb3" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/markDown/__files", + "mode": "040000", + "type": "tree", + "sha": "1efb40628025922ce52b4bf70dbd03eb66d7319b", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/1efb40628025922ce52b4bf70dbd03eb66d7319b" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/markDown/__files/markdown-82013a58-1976-472e-9bc9-2535b965c1ff.txt", + "mode": "100644", + "type": "blob", + "sha": "915f6614332aa0712c6f7ba3b13b19a1c37c1be2", + "size": 605, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/915f6614332aa0712c6f7ba3b13b19a1c37c1be2" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/markDown/__files/repos_github-api_github-api-b97d0b95-42e5-462c-866b-f3dc51258730.json", + "mode": "100644", + "type": "blob", + "sha": "06d752d37ee5a80f1c0a7c1d318ef94306559985", + "size": 6831, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/06d752d37ee5a80f1c0a7c1d318ef94306559985" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/markDown/__files/user-d7cf6a1a-c0db-411d-b646-0a128e9b2aff.json", + "mode": "100644", + "type": "blob", + "sha": "41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0", + "size": 1640, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/markDown/mappings", + "mode": "040000", + "type": "tree", + "sha": "c5b358a097e950be316400179efd22cba6d57d63", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/c5b358a097e950be316400179efd22cba6d57d63" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/markDown/mappings/markdown-4-82013a.json", + "mode": "100644", + "type": "blob", + "sha": "e8e84ac36b34ae96008fc0ee403ca6015b2e0f07", + "size": 1627, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/e8e84ac36b34ae96008fc0ee403ca6015b2e0f07" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/markDown/mappings/markdown_raw-2-44dcd2.json", + "mode": "100644", + "type": "blob", + "sha": "c26d8eefd649e6e38db66fd7a12a8071fc0a2d0f", + "size": 1499, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/c26d8eefd649e6e38db66fd7a12a8071fc0a2d0f" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/markDown/mappings/repos_github-api_github-api-3-b97d0b.json", + "mode": "100644", + "type": "blob", + "sha": "fe16ffdfb338bfe12017463102b27029329b96fd", + "size": 1902, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/fe16ffdfb338bfe12017463102b27029329b96fd" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/markDown/mappings/user-1-d7cf6a.json", + "mode": "100644", + "type": "blob", + "sha": "fb591dbf911ac3d236f687ee5447066370e452e9", + "size": 1829, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/fb591dbf911ac3d236f687ee5447066370e452e9" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/searchRepositories", + "mode": "040000", + "type": "tree", + "sha": "57c79198dd2ea530a84ae7d5b5b8192508d0a1dc", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/57c79198dd2ea530a84ae7d5b5b8192508d0a1dc" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/searchRepositories/__files", + "mode": "040000", + "type": "tree", + "sha": "1c0026a7938b43f83ca57c71f1162190bb43ed27", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/1c0026a7938b43f83ca57c71f1162190bb43ed27" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/searchRepositories/__files/search_repositories-03ff4bb7-7909-4e5b-9322-f8f3923fa65a.json", + "mode": "100644", + "type": "blob", + "sha": "872edd8afc1afd29595de76be40068d49e6c2c6f", + "size": 175726, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/872edd8afc1afd29595de76be40068d49e6c2c6f" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/searchRepositories/__files/user-3b3417e7-67e7-4612-a015-f97b98848847.json", + "mode": "100644", + "type": "blob", + "sha": "41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0", + "size": 1640, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/searchRepositories/mappings", + "mode": "040000", + "type": "tree", + "sha": "96663e8152af2b3a053aace6eb6dd158d67e9d85", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/96663e8152af2b3a053aace6eb6dd158d67e9d85" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/searchRepositories/mappings/search_repositories-2-03ff4b.json", + "mode": "100644", + "type": "blob", + "sha": "a956efaa247cb1b53313ddfb51e2553a83b8021b", + "size": 1932, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a956efaa247cb1b53313ddfb51e2553a83b8021b" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/searchRepositories/mappings/user-1-3b3417.json", + "mode": "100644", + "type": "blob", + "sha": "22fad452f5ee0fa5beb218ecc99373ba7b4e8e7d", + "size": 1829, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/22fad452f5ee0fa5beb218ecc99373ba7b4e8e7d" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/setMergeOptions", + "mode": "040000", + "type": "tree", + "sha": "91ec8ec6571a5670bd1892d6c83792cbb0a109ba", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/91ec8ec6571a5670bd1892d6c83792cbb0a109ba" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/setMergeOptions/__files", + "mode": "040000", + "type": "tree", + "sha": "0c419aca6f0b93232fb049203f8506ef142fee53", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/0c419aca6f0b93232fb049203f8506ef142fee53" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/setMergeOptions/__files/repos_github-api-test-org_temp-setmergeoptions-036019d5-fdf5-4936-b85a-3e2d6c8585f3.json", + "mode": "100644", + "type": "blob", + "sha": "ff7f6bf3e2a73460eced7c078115539820291dac", + "size": 7762, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/ff7f6bf3e2a73460eced7c078115539820291dac" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/setMergeOptions/__files/repos_github-api-test-org_temp-setmergeoptions-0d8d7ebb-f978-4af9-b545-4b301a52d7c7.json", + "mode": "100644", + "type": "blob", + "sha": "d9b0f76c6847863bf2b391be7df7e1379cbea86e", + "size": 7760, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d9b0f76c6847863bf2b391be7df7e1379cbea86e" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/setMergeOptions/__files/repos_github-api-test-org_temp-setmergeoptions-200ab5e0-f5fd-4d4c-937f-b3798acb31cf.json", + "mode": "100644", + "type": "blob", + "sha": "803881e07a5b41e772bfa9889e0e2ead9fcc1112", + "size": 7761, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/803881e07a5b41e772bfa9889e0e2ead9fcc1112" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/setMergeOptions/__files/repos_github-api-test-org_temp-setmergeoptions-265263e7-6c87-4d23-b83f-12e2c6fceba4.json", + "mode": "100644", + "type": "blob", + "sha": "6f6ad7fe503d698c65d76a432a582093e9ac5d2a", + "size": 7761, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/6f6ad7fe503d698c65d76a432a582093e9ac5d2a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/setMergeOptions/__files/repos_github-api-test-org_temp-setmergeoptions-3c8120ed-2ea0-4228-8639-7159cc73d23b.json", + "mode": "100644", + "type": "blob", + "sha": "d0f8a06007191adef9a246161d33eb8b0285eb50", + "size": 7761, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d0f8a06007191adef9a246161d33eb8b0285eb50" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/setMergeOptions/__files/repos_github-api-test-org_temp-setmergeoptions-3e3a54cc-fd38-4fd5-b5d1-d998d45be38c.json", + "mode": "100644", + "type": "blob", + "sha": "d9b0f76c6847863bf2b391be7df7e1379cbea86e", + "size": 7760, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d9b0f76c6847863bf2b391be7df7e1379cbea86e" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/setMergeOptions/__files/repos_github-api-test-org_temp-setmergeoptions-4de721aa-c26b-4df7-a87e-67b440454149.json", + "mode": "100644", + "type": "blob", + "sha": "ff7f6bf3e2a73460eced7c078115539820291dac", + "size": 7762, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/ff7f6bf3e2a73460eced7c078115539820291dac" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/setMergeOptions/__files/repos_github-api-test-org_temp-setmergeoptions-6224e039-5be4-4fd9-8a6d-8756a393c94d.json", + "mode": "100644", + "type": "blob", + "sha": "d0f8a06007191adef9a246161d33eb8b0285eb50", + "size": 7761, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d0f8a06007191adef9a246161d33eb8b0285eb50" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/setMergeOptions/__files/repos_github-api-test-org_temp-setmergeoptions-d82ad1a3-76bb-4f88-8b6a-097195313516.json", + "mode": "100644", + "type": "blob", + "sha": "d9b0f76c6847863bf2b391be7df7e1379cbea86e", + "size": 7760, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d9b0f76c6847863bf2b391be7df7e1379cbea86e" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/setMergeOptions/__files/user-b42d2004-5fb5-415d-96ff-d9c628b799f3.json", + "mode": "100644", + "type": "blob", + "sha": "3309be8e1c818efbaa11502237c5e185475329de", + "size": 1640, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/3309be8e1c818efbaa11502237c5e185475329de" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/setMergeOptions/mappings", + "mode": "040000", + "type": "tree", + "sha": "e29d59adf7f441f9d5b289bac1e27b9d0b23ec25", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/e29d59adf7f441f9d5b289bac1e27b9d0b23ec25" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/setMergeOptions/mappings/repos_github-api-test-org_temp-setmergeoptions-10-3c8120.json", + "mode": "100644", + "type": "blob", + "sha": "963a52ae05204ba79b1c7448603a66bf2d8e212e", + "size": 2082, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/963a52ae05204ba79b1c7448603a66bf2d8e212e" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/setMergeOptions/mappings/repos_github-api-test-org_temp-setmergeoptions-2-0d8d7e.json", + "mode": "100644", + "type": "blob", + "sha": "19cd4b444282038e582473242c2b77833d481454", + "size": 2114, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/19cd4b444282038e582473242c2b77833d481454" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/setMergeOptions/mappings/repos_github-api-test-org_temp-setmergeoptions-3-3e3a54.json", + "mode": "100644", + "type": "blob", + "sha": "268feaaf64c0bf897bbd69af693614f8c40c383f", + "size": 2108, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/268feaaf64c0bf897bbd69af693614f8c40c383f" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/setMergeOptions/mappings/repos_github-api-test-org_temp-setmergeoptions-4-200ab5.json", + "mode": "100644", + "type": "blob", + "sha": "c4dea483f4fe30c690be6b62fed2fa609317cd1b", + "size": 2109, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/c4dea483f4fe30c690be6b62fed2fa609317cd1b" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/setMergeOptions/mappings/repos_github-api-test-org_temp-setmergeoptions-5-036019.json", + "mode": "100644", + "type": "blob", + "sha": "0e5277656acc0ba032b369dd7d7a62f425696955", + "size": 2064, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/0e5277656acc0ba032b369dd7d7a62f425696955" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/setMergeOptions/mappings/repos_github-api-test-org_temp-setmergeoptions-6-4de721.json", + "mode": "100644", + "type": "blob", + "sha": "9920b1bcdd343db6d16e92287e048266de9e89bf", + "size": 2211, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/9920b1bcdd343db6d16e92287e048266de9e89bf" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/setMergeOptions/mappings/repos_github-api-test-org_temp-setmergeoptions-7-265263.json", + "mode": "100644", + "type": "blob", + "sha": "55d16a238962e6fd5399bfcfeb31f5dac0fbca3e", + "size": 2108, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/55d16a238962e6fd5399bfcfeb31f5dac0fbca3e" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/setMergeOptions/mappings/repos_github-api-test-org_temp-setmergeoptions-8-d82ad1.json", + "mode": "100644", + "type": "blob", + "sha": "4b17dfa1879ab9caeca3fc02e83afa1d9b656c58", + "size": 2108, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/4b17dfa1879ab9caeca3fc02e83afa1d9b656c58" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/setMergeOptions/mappings/repos_github-api-test-org_temp-setmergeoptions-9-6224e0.json", + "mode": "100644", + "type": "blob", + "sha": "422b3f9018957541b8e6a85ed28ce5ca7c167681", + "size": 2064, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/422b3f9018957541b8e6a85ed28ce5ca7c167681" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/setMergeOptions/mappings/user-1-b42d20.json", + "mode": "100644", + "type": "blob", + "sha": "ecf4ea82d07ce77d98fe63cb34722e426b8fa62a", + "size": 1827, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/ecf4ea82d07ce77d98fe63cb34722e426b8fa62a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/subscription", + "mode": "040000", + "type": "tree", + "sha": "cc915e2fbf37357de001341fb412dc6ac703dc1c", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/cc915e2fbf37357de001341fb412dc6ac703dc1c" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/subscription/__files", + "mode": "040000", + "type": "tree", + "sha": "e3245f11355d8079bc64c63a9681698b2095b2e3", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/e3245f11355d8079bc64c63a9681698b2095b2e3" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/subscription/__files/orgs_github-api-test-org-564bceaa-c92a-442f-af3e-4659fa38b3e0.json", + "mode": "100644", + "type": "blob", + "sha": "5605b36c3d17993f4702109fd262c3f8ca2780e9", + "size": 1481, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/5605b36c3d17993f4702109fd262c3f8ca2780e9" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/subscription/__files/repos_github-api-test-org_github-api-5861f3bb-636a-4c2d-8748-b7d7f95f26a0.json", + "mode": "100644", + "type": "blob", + "sha": "e3ed63d52e825de6f7b55b70ea64076b19f59288", + "size": 18893, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/e3ed63d52e825de6f7b55b70ea64076b19f59288" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/subscription/__files/user-77d1bdbf-ff00-49d6-abdf-bc5c3d6de17a.json", + "mode": "100644", + "type": "blob", + "sha": "39d6c8353e0136a1f26e004bf49ea0a5ec7f4be0", + "size": 1640, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/39d6c8353e0136a1f26e004bf49ea0a5ec7f4be0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/subscription/mappings", + "mode": "040000", + "type": "tree", + "sha": "71daca676bacc48474f48dbebbf0a4d835c253ab", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/71daca676bacc48474f48dbebbf0a4d835c253ab" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/subscription/mappings/orgs_github-api-test-org-2-564bce.json", + "mode": "100644", + "type": "blob", + "sha": "a4a3eaeb359be0cea9251280559f9b5455f28014", + "size": 1931, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a4a3eaeb359be0cea9251280559f9b5455f28014" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/subscription/mappings/repos_github-api-test-org_github-api-3-5861f3.json", + "mode": "100644", + "type": "blob", + "sha": "49a52dff0c5faf6e7a33d67fab2d68b6ab9e5669", + "size": 1929, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/49a52dff0c5faf6e7a33d67fab2d68b6ab9e5669" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/subscription/mappings/repos_github-api-test-org_github-api_subscription-4-d888ea.json", + "mode": "100644", + "type": "blob", + "sha": "eb1cfef6b263d15e82e72417bfb22d1ff81a858c", + "size": 1956, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/eb1cfef6b263d15e82e72417bfb22d1ff81a858c" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/subscription/mappings/repos_github-api-test-org_github-api_subscription-5-b8ab91.json", + "mode": "100644", + "type": "blob", + "sha": "fd15a4997c4db8d756140191643ffa3286356979", + "size": 2272, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/fd15a4997c4db8d756140191643ffa3286356979" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/subscription/mappings/repos_github-api-test-org_github-api_subscription-6-7de879.json", + "mode": "100644", + "type": "blob", + "sha": "04c11cbb0d6b312d8702ae23e2f9e4a8756026b2", + "size": 1319, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/04c11cbb0d6b312d8702ae23e2f9e4a8756026b2" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/subscription/mappings/repos_github-api-test-org_github-api_subscription-7-50d81d.json", + "mode": "100644", + "type": "blob", + "sha": "e92d607b1010f1afec9ba0e160b54522f8a4dd5a", + "size": 1923, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/e92d607b1010f1afec9ba0e160b54522f8a4dd5a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/subscription/mappings/user-1-77d1bd.json", + "mode": "100644", + "type": "blob", + "sha": "979dadefff24f1760d1d08648e4aab6577c309cb", + "size": 1829, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/979dadefff24f1760d1d08648e4aab6577c309cb" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162", + "mode": "040000", + "type": "tree", + "sha": "51cc012529790e72b92792aca569755df52767f4", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/51cc012529790e72b92792aca569755df52767f4" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162/__files", + "mode": "040000", + "type": "tree", + "sha": "cd55c24896903b65c871687a840b99c25ac76c40", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/cd55c24896903b65c871687a840b99c25ac76c40" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162/__files/repos_github-api_github-api-159ce759-42c4-4141-a31f-c66a04e7d46c.json", + "mode": "100644", + "type": "blob", + "sha": "06d752d37ee5a80f1c0a7c1d318ef94306559985", + "size": 6831, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/06d752d37ee5a80f1c0a7c1d318ef94306559985" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162/__files/repos_github-api_github-api_contents-07f37d0d-06c1-4077-b3de-ca6be4206dc6.json", + "mode": "100644", + "type": "blob", + "sha": "fa6c313856bdcfc653ed3f573d2831663f2c2176", + "size": 18957, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/fa6c313856bdcfc653ed3f573d2831663f2c2176" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162/__files/repos_github-api_github-api_contents_cname-7ccd6fc3-6a14-4d0c-9493-25c060f5a826.json", + "mode": "100644", + "type": "blob", + "sha": "b396f7b611e9460815779392c4b946c3205f84b1", + "size": 883, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/b396f7b611e9460815779392c4b946c3205f84b1" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162/__files/repos_github-api_github-api_contents_dependencieshtml-e65843d5-ae12-4571-bc20-10b2a749c4c4.json", + "mode": "100644", + "type": "blob", + "sha": "0ad1a924da0e75cd882496b621b686063410838f", + "size": 102758, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/0ad1a924da0e75cd882496b621b686063410838f" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162/__files/repos_github-api_github-api_contents_dependency-convergencehtml-2711f47a-83b4-4141-93d3-a0a5ed1b4f66.json", + "mode": "100644", + "type": "blob", + "sha": "51819402ea5e22bad376039eaaaa08e0560f5d1e", + "size": 17040, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/51819402ea5e22bad376039eaaaa08e0560f5d1e" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162/__files/repos_github-api_github-api_contents_dependency-infohtml-b8795612-0b73-44e5-8ce9-99633f2657ea.json", + "mode": "100644", + "type": "blob", + "sha": "7c02cbf665f8c1fe7672abde43f885f44d5d3285", + "size": 9484, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/7c02cbf665f8c1fe7672abde43f885f44d5d3285" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162/__files/repos_github-api_github-api_contents_distribution-managementhtml-8aba06cb-6fe6-4236-9cba-64c33018cdb7.json", + "mode": "100644", + "type": "blob", + "sha": "500826c297ec8cb503e3090207c52a239fe2df07", + "size": 8622, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/500826c297ec8cb503e3090207c52a239fe2df07" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162/__files/repos_github-api_github-api_contents_indexhtml-699687aa-17e3-479a-a70b-26fd50ecd6ae.json", + "mode": "100644", + "type": "blob", + "sha": "e5c5b99130e74c0e8cc625a0325ef9d85b1ee187", + "size": 10310, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/e5c5b99130e74c0e8cc625a0325ef9d85b1ee187" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162/__files/repos_github-api_github-api_contents_integrationhtml-f6bbfab2-699a-4434-804c-70f76610836e.json", + "mode": "100644", + "type": "blob", + "sha": "a82841931d611af0a11cade17e94c585f9ff630c", + "size": 7406, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a82841931d611af0a11cade17e94c585f9ff630c" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162/__files/repos_github-api_github-api_contents_issue-trackinghtml-5be48b92-90ac-421d-bb90-81a7bd16bf4d.json", + "mode": "100644", + "type": "blob", + "sha": "960a6f4c2a53d8031d49e484ef68a764e6b3ce53", + "size": 7357, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/960a6f4c2a53d8031d49e484ef68a764e6b3ce53" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162/__files/repos_github-api_github-api_contents_licensehtml-e6c4a515-269e-4098-a739-4d04302abca9.json", + "mode": "100644", + "type": "blob", + "sha": "4691f758fb92a87187ff491e883cfe619382ed6d", + "size": 7982, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/4691f758fb92a87187ff491e883cfe619382ed6d" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162/__files/repos_github-api_github-api_contents_mail-listshtml-9fa1b590-dcd7-421a-97fc-5c46754c2c80.json", + "mode": "100644", + "type": "blob", + "sha": "68fe75c78449673ce13a7569cccf5237231d92c7", + "size": 8077, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/68fe75c78449673ce13a7569cccf5237231d92c7" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162/__files/repos_github-api_github-api_contents_plugin-managementhtml-933e0254-7548-4d8b-a94f-e0dcef8afaf9.json", + "mode": "100644", + "type": "blob", + "sha": "08ceb206f02b6a6525d9a8b10286d6b188c59c6b", + "size": 8820, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/08ceb206f02b6a6525d9a8b10286d6b188c59c6b" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162/__files/repos_github-api_github-api_contents_pluginshtml-ee7e46e7-9b8f-4df4-aacd-92228c8d284f.json", + "mode": "100644", + "type": "blob", + "sha": "e052cb072c008c96a6b91c411dc30705b7e2d350", + "size": 12738, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/e052cb072c008c96a6b91c411dc30705b7e2d350" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162/__files/repos_github-api_github-api_contents_project-infohtml-eed0ad79-661a-4b20-a4a1-1bcd44d8af3d.json", + "mode": "100644", + "type": "blob", + "sha": "affea3b192d6dc85b7e196ab07f3bb648b028a5d", + "size": 10665, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/affea3b192d6dc85b7e196ab07f3bb648b028a5d" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162/__files/repos_github-api_github-api_contents_project-reportshtml-64d11c32-506a-4275-a050-4d268256bf6c.json", + "mode": "100644", + "type": "blob", + "sha": "f1ddbd166b5fa6cd70698dda526c3101beb7da8d", + "size": 6426, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/f1ddbd166b5fa6cd70698dda526c3101beb7da8d" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162/__files/repos_github-api_github-api_contents_project-summaryhtml-c278dd7b-34e7-452e-83ae-d390638bbe38.json", + "mode": "100644", + "type": "blob", + "sha": "77fa29e560827b713963d6a14029fd60282fb1fa", + "size": 8884, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/77fa29e560827b713963d6a14029fd60282fb1fa" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162/__files/repos_github-api_github-api_contents_source-repositoryhtml-dfae6054-83b7-4095-99dc-f497ef58044a.json", + "mode": "100644", + "type": "blob", + "sha": "b2a1b6e0b660805f5b996489d72f534da512194b", + "size": 9576, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/b2a1b6e0b660805f5b996489d72f534da512194b" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162/__files/repos_github-api_github-api_contents_team-listhtml-69298281-9045-4dd4-8934-ac0a43157ef7.json", + "mode": "100644", + "type": "blob", + "sha": "a9df34568e28c2675b08742f00770a699de4b656", + "size": 9108, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a9df34568e28c2675b08742f00770a699de4b656" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162/__files/user-656249de-1113-417e-8ea0-ce0930482f4a.json", + "mode": "100644", + "type": "blob", + "sha": "41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0", + "size": 1640, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162/mappings", + "mode": "040000", + "type": "tree", + "sha": "1cb84b002ebc5781b0bea8b7ba16c014f49127a2", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/1cb84b002ebc5781b0bea8b7ba16c014f49127a2" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162/mappings/repos_github-api_github-api-2-159ce7.json", + "mode": "100644", + "type": "blob", + "sha": "4dd524b7a8bca44ab5063dc8a445373edfddd266", + "size": 1902, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/4dd524b7a8bca44ab5063dc8a445373edfddd266" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162/mappings/repos_github-api_github-api_contents-3-07f37d.json", + "mode": "100644", + "type": "blob", + "sha": "4626a4328fcae36e556bcba796be9b834f33bbca", + "size": 1947, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/4626a4328fcae36e556bcba796be9b834f33bbca" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162/mappings/repos_github-api_github-api_contents_cname-4-7ccd6f.json", + "mode": "100644", + "type": "blob", + "sha": "3c0de5b11f59c1d96e9772b9abab471627efe437", + "size": 1964, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/3c0de5b11f59c1d96e9772b9abab471627efe437" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162/mappings/repos_github-api_github-api_contents_dependencieshtml-5-e65843.json", + "mode": "100644", + "type": "blob", + "sha": "ab625e3aca8f4d530ec61cc49fa72adb00ad4deb", + "size": 1998, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/ab625e3aca8f4d530ec61cc49fa72adb00ad4deb" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162/mappings/repos_github-api_github-api_contents_dependency-convergencehtml-6-2711f4.json", + "mode": "100644", + "type": "blob", + "sha": "0e4f05311bc4c56cc17efc53e6a8fbe51402711f", + "size": 2028, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/0e4f05311bc4c56cc17efc53e6a8fbe51402711f" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162/mappings/repos_github-api_github-api_contents_dependency-infohtml-7-b87956.json", + "mode": "100644", + "type": "blob", + "sha": "75b6cca2b7ccd6f0b05fbed05d2061451a5b94bb", + "size": 2007, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/75b6cca2b7ccd6f0b05fbed05d2061451a5b94bb" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162/mappings/repos_github-api_github-api_contents_distribution-managementhtml-8-8aba06.json", + "mode": "100644", + "type": "blob", + "sha": "3f281f0a6190719f0f613bc91628fa0b52b9e7c4", + "size": 2031, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/3f281f0a6190719f0f613bc91628fa0b52b9e7c4" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162/mappings/repos_github-api_github-api_contents_indexhtml-9-699687.json", + "mode": "100644", + "type": "blob", + "sha": "141173d6f43751de05ac6c312f0b8e0c72bc2c3e", + "size": 1977, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/141173d6f43751de05ac6c312f0b8e0c72bc2c3e" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162/mappings/repos_github-api_github-api_contents_integrationhtml-10-f6bbfa.json", + "mode": "100644", + "type": "blob", + "sha": "5e38e5f5154a21d172557749b3f60a1caf0be143", + "size": 1996, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/5e38e5f5154a21d172557749b3f60a1caf0be143" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162/mappings/repos_github-api_github-api_contents_issue-trackinghtml-11-5be48b.json", + "mode": "100644", + "type": "blob", + "sha": "13068b1567cc6a9baabb13b1ae7147dcdad6c2d7", + "size": 2005, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/13068b1567cc6a9baabb13b1ae7147dcdad6c2d7" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162/mappings/repos_github-api_github-api_contents_licensehtml-12-e6c4a5.json", + "mode": "100644", + "type": "blob", + "sha": "ff76b782cd41abde21f739a705b988f413be8c25", + "size": 1984, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/ff76b782cd41abde21f739a705b988f413be8c25" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162/mappings/repos_github-api_github-api_contents_mail-listshtml-13-9fa1b5.json", + "mode": "100644", + "type": "blob", + "sha": "2ca952424badaf371353932682c22c1848d6ffeb", + "size": 1993, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/2ca952424badaf371353932682c22c1848d6ffeb" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162/mappings/repos_github-api_github-api_contents_plugin-managementhtml-14-933e02.json", + "mode": "100644", + "type": "blob", + "sha": "002b80e7d0dd0a40c755f04e90eb40f40371bb9d", + "size": 2014, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/002b80e7d0dd0a40c755f04e90eb40f40371bb9d" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162/mappings/repos_github-api_github-api_contents_pluginshtml-15-ee7e46.json", + "mode": "100644", + "type": "blob", + "sha": "23b9072f838774e29031c5f160268c18b5da4f6d", + "size": 1984, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/23b9072f838774e29031c5f160268c18b5da4f6d" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162/mappings/repos_github-api_github-api_contents_project-infohtml-16-eed0ad.json", + "mode": "100644", + "type": "blob", + "sha": "b03e608fba7a46046e2b51031a6b0cb8c6f86816", + "size": 1999, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/b03e608fba7a46046e2b51031a6b0cb8c6f86816" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162/mappings/repos_github-api_github-api_contents_project-reportshtml-17-64d11c.json", + "mode": "100644", + "type": "blob", + "sha": "09f8540e15f56306f765e12f49b8bda6bd5ae56e", + "size": 2008, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/09f8540e15f56306f765e12f49b8bda6bd5ae56e" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162/mappings/repos_github-api_github-api_contents_project-summaryhtml-18-c278dd.json", + "mode": "100644", + "type": "blob", + "sha": "6f1b5aee3605a8165f034a432c853497678b1aeb", + "size": 2008, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/6f1b5aee3605a8165f034a432c853497678b1aeb" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162/mappings/repos_github-api_github-api_contents_source-repositoryhtml-19-dfae60.json", + "mode": "100644", + "type": "blob", + "sha": "ff4fe5f65c940f2c887398bd3674e8b4dcaa2be5", + "size": 2014, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/ff4fe5f65c940f2c887398bd3674e8b4dcaa2be5" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162/mappings/repos_github-api_github-api_contents_team-listhtml-20-692982.json", + "mode": "100644", + "type": "blob", + "sha": "1b3006cfb5f177da90fbbd9ee71ea937e69f5a12", + "size": 1990, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/1b3006cfb5f177da90fbbd9ee71ea937e69f5a12" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162/mappings/user-1-656249.json", + "mode": "100644", + "type": "blob", + "sha": "a72d76c2a402db5aa7b6ac31641680ca224a243b", + "size": 1829, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a72d76c2a402db5aa7b6ac31641680ca224a243b" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162_raw", + "mode": "040000", + "type": "tree", + "sha": "9e002de042e3fb47cd5d54c8f3c0c237cc617599", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/9e002de042e3fb47cd5d54c8f3c0c237cc617599" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162_raw/__files", + "mode": "040000", + "type": "tree", + "sha": "22a7918197c7ef3ea32e7c26396ec8e3d980db65", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/22a7918197c7ef3ea32e7c26396ec8e3d980db65" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162_raw/__files/github-api_github-api_gh-pages_dependencieshtml-d0c5eb23-a516-43ab-9a51-230d66d21e90.txt", + "mode": "100644", + "type": "blob", + "sha": "5c870e1a8f7e21eb8d386e3cfc146b5718a6020a", + "size": 73900, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/5c870e1a8f7e21eb8d386e3cfc146b5718a6020a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162_raw/__files/github-api_github-api_gh-pages_dependency-convergencehtml-9eeed313-39aa-4d0e-b7c9-e26acab9698f.txt", + "mode": "100644", + "type": "blob", + "sha": "5c2a3be517645c95003e1005ea62ffd23a039996", + "size": 11635, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/5c2a3be517645c95003e1005ea62ffd23a039996" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162_raw/__files/github-api_github-api_gh-pages_dependency-infohtml-3ca71855-6e2d-44d8-9cf9-47cbb2572252.txt", + "mode": "100644", + "type": "blob", + "sha": "29e0151565943e6cfa05193b19c0de251b82dad6", + "size": 6189, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/29e0151565943e6cfa05193b19c0de251b82dad6" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162_raw/__files/github-api_github-api_gh-pages_distribution-managementhtml-445a75a1-4463-4003-965e-2d1ffbbd4d60.txt", + "mode": "100644", + "type": "blob", + "sha": "012177489e014fb0b26f4871bf7d9df48c2d76e4", + "size": 5522, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/012177489e014fb0b26f4871bf7d9df48c2d76e4" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162_raw/__files/github-api_github-api_gh-pages_indexhtml-46228325-12ac-442f-86ee-e5e211cf79cb.txt", + "mode": "100644", + "type": "blob", + "sha": "515047a8cb309d64be194a0ace36cf4c52e26ebc", + "size": 6838, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/515047a8cb309d64be194a0ace36cf4c52e26ebc" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162_raw/__files/github-api_github-api_gh-pages_integrationhtml-92a89976-9e4e-46bb-aa19-b32445a2ed9e.txt", + "mode": "100644", + "type": "blob", + "sha": "c2f94c57aed2bf09413d68f1265a79534fd95d5c", + "size": 4700, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/c2f94c57aed2bf09413d68f1265a79534fd95d5c" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162_raw/__files/github-api_github-api_gh-pages_issue-trackinghtml-77d917fb-69d9-466a-99f6-3bfbf92998fd.txt", + "mode": "100644", + "type": "blob", + "sha": "ac832e2a65dc31d3ead0b5dd61365a044ad76c3f", + "size": 4648, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/ac832e2a65dc31d3ead0b5dd61365a044ad76c3f" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162_raw/__files/github-api_github-api_gh-pages_licensehtml-833a6540-79e4-4464-88e3-f87a5858230e.txt", + "mode": "100644", + "type": "blob", + "sha": "078dbdbf8e234664d36b831b1cbaa2787c3758af", + "size": 5138, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/078dbdbf8e234664d36b831b1cbaa2787c3758af" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162_raw/__files/github-api_github-api_gh-pages_mail-listshtml-497d362b-54ca-4c9d-ac96-78f14da94df6.txt", + "mode": "100644", + "type": "blob", + "sha": "8de53775c5bb7e6a6b9be51efd6be918b44f6aed", + "size": 5192, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/8de53775c5bb7e6a6b9be51efd6be918b44f6aed" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162_raw/__files/github-api_github-api_gh-pages_plugin-managementhtml-ee14513c-3bfb-4d8a-93f5-a9d188d7aa01.txt", + "mode": "100644", + "type": "blob", + "sha": "8222800d6ff2521f8cf1da476495a9ac9df18eda", + "size": 5697, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/8222800d6ff2521f8cf1da476495a9ac9df18eda" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162_raw/__files/github-api_github-api_gh-pages_pluginshtml-80c8a143-a83b-45c8-881e-595f14aa1546.txt", + "mode": "100644", + "type": "blob", + "sha": "36f588bf0319c029d9f0702a53888f3c8550d405", + "size": 8591, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/36f588bf0319c029d9f0702a53888f3c8550d405" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162_raw/__files/github-api_github-api_gh-pages_project-infohtml-c17c46c7-df79-4adf-b165-b8c801c896b6.txt", + "mode": "100644", + "type": "blob", + "sha": "390c7a4d52f8a77158486c330bf0a1fce704c5f3", + "size": 7060, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/390c7a4d52f8a77158486c330bf0a1fce704c5f3" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162_raw/__files/github-api_github-api_gh-pages_project-reportshtml-5367f0f5-0668-4a94-97d8-d6774aa02bdb.txt", + "mode": "100644", + "type": "blob", + "sha": "0f860eb86978834a817c60f315bbecaf0ebb3ee1", + "size": 3969, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/0f860eb86978834a817c60f315bbecaf0ebb3ee1" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162_raw/__files/github-api_github-api_gh-pages_project-summaryhtml-60482688-7e2b-4475-ac2a-4f4c3ade718a.txt", + "mode": "100644", + "type": "blob", + "sha": "4523d59f34d5f9581bb2ec50cd36a1e48e0fe6fd", + "size": 5752, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/4523d59f34d5f9581bb2ec50cd36a1e48e0fe6fd" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162_raw/__files/github-api_github-api_gh-pages_source-repositoryhtml-1548ed66-30fe-4ee5-8fba-e7de0b95df05.txt", + "mode": "100644", + "type": "blob", + "sha": "fa565fae6877093fe48ce8578cb2088ec800b11a", + "size": 6244, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/fa565fae6877093fe48ce8578cb2088ec800b11a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162_raw/__files/github-api_github-api_gh-pages_team-listhtml-15e8417b-48a3-4a71-b239-51b987d7b006.txt", + "mode": "100644", + "type": "blob", + "sha": "809072ff21244980b44a93c5dcf8ed11063b4cc5", + "size": 5944, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/809072ff21244980b44a93c5dcf8ed11063b4cc5" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162_raw/mappings", + "mode": "040000", + "type": "tree", + "sha": "312237e9cf19208b75a1c0819bcb6e1bfbc74763", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/312237e9cf19208b75a1c0819bcb6e1bfbc74763" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162_raw/mappings/github-api_github-api_gh-pages_cname-1-b36b55.json", + "mode": "100644", + "type": "blob", + "sha": "b39d07214e4357b9eb7075963d91c7a01e4674f4", + "size": 1420, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/b39d07214e4357b9eb7075963d91c7a01e4674f4" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162_raw/mappings/github-api_github-api_gh-pages_dependencieshtml-2-d0c5eb.json", + "mode": "100644", + "type": "blob", + "sha": "433fe6f1093f65c69cdb1af73de7f8a93d9a70e3", + "size": 1514, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/433fe6f1093f65c69cdb1af73de7f8a93d9a70e3" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162_raw/mappings/github-api_github-api_gh-pages_dependency-convergencehtml-3-9eeed3.json", + "mode": "100644", + "type": "blob", + "sha": "23ab17e4c6109fda4fba52dd11f02a373da214fc", + "size": 1543, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/23ab17e4c6109fda4fba52dd11f02a373da214fc" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162_raw/mappings/github-api_github-api_gh-pages_dependency-infohtml-4-3ca718.json", + "mode": "100644", + "type": "blob", + "sha": "80afcece8603e147de568ab217205cef9aaf2fc3", + "size": 1524, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/80afcece8603e147de568ab217205cef9aaf2fc3" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162_raw/mappings/github-api_github-api_gh-pages_distribution-managementhtml-5-445a75.json", + "mode": "100644", + "type": "blob", + "sha": "e82351c1985ce9ccd6b765ab4d8003a83667b63e", + "size": 1548, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/e82351c1985ce9ccd6b765ab4d8003a83667b63e" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162_raw/mappings/github-api_github-api_gh-pages_indexhtml-6-462283.json", + "mode": "100644", + "type": "blob", + "sha": "33d1a7ce2fc4c53a968fcb9558748612a16c837f", + "size": 1494, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/33d1a7ce2fc4c53a968fcb9558748612a16c837f" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162_raw/mappings/github-api_github-api_gh-pages_integrationhtml-7-92a899.json", + "mode": "100644", + "type": "blob", + "sha": "1e0546ad6c536a22dd65f2bf161fe711340af255", + "size": 1512, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/1e0546ad6c536a22dd65f2bf161fe711340af255" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162_raw/mappings/github-api_github-api_gh-pages_issue-trackinghtml-8-77d917.json", + "mode": "100644", + "type": "blob", + "sha": "680dfd5de214a878f8bf386d7e1eefb1131b01af", + "size": 1521, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/680dfd5de214a878f8bf386d7e1eefb1131b01af" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162_raw/mappings/github-api_github-api_gh-pages_licensehtml-9-833a65.json", + "mode": "100644", + "type": "blob", + "sha": "9919cd3d2f92db888ed4b18ef60ffca9ad21239b", + "size": 1500, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/9919cd3d2f92db888ed4b18ef60ffca9ad21239b" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162_raw/mappings/github-api_github-api_gh-pages_mail-listshtml-10-497d36.json", + "mode": "100644", + "type": "blob", + "sha": "f671d1e9a7822ba165e6c3eb35d671ea119c1726", + "size": 1510, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/f671d1e9a7822ba165e6c3eb35d671ea119c1726" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162_raw/mappings/github-api_github-api_gh-pages_plugin-managementhtml-11-ee1451.json", + "mode": "100644", + "type": "blob", + "sha": "75a324bf6b0224f7b2eb2707502797320376dd8d", + "size": 1531, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/75a324bf6b0224f7b2eb2707502797320376dd8d" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162_raw/mappings/github-api_github-api_gh-pages_pluginshtml-12-80c8a1.json", + "mode": "100644", + "type": "blob", + "sha": "2f2095c5075ed98c3d7a829e36eab2be7ba77775", + "size": 1501, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/2f2095c5075ed98c3d7a829e36eab2be7ba77775" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162_raw/mappings/github-api_github-api_gh-pages_project-infohtml-13-c17c46.json", + "mode": "100644", + "type": "blob", + "sha": "a3d859553641d8391469b6ca26b63ac95a98d9dd", + "size": 1516, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a3d859553641d8391469b6ca26b63ac95a98d9dd" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162_raw/mappings/github-api_github-api_gh-pages_project-reportshtml-14-5367f0.json", + "mode": "100644", + "type": "blob", + "sha": "62aed064148342e842a72732fb0060c930fbb8d7", + "size": 1525, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/62aed064148342e842a72732fb0060c930fbb8d7" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162_raw/mappings/github-api_github-api_gh-pages_project-summaryhtml-15-604826.json", + "mode": "100644", + "type": "blob", + "sha": "35868250ec498a19e08f85b731fbe39ea484f7ca", + "size": 1525, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/35868250ec498a19e08f85b731fbe39ea484f7ca" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162_raw/mappings/github-api_github-api_gh-pages_source-repositoryhtml-16-1548ed.json", + "mode": "100644", + "type": "blob", + "sha": "820e3e9612e388f6f60dcdde4d396e4a2f48303f", + "size": 1531, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/820e3e9612e388f6f60dcdde4d396e4a2f48303f" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testIssue162_raw/mappings/github-api_github-api_gh-pages_team-listhtml-17-15e841.json", + "mode": "100644", + "type": "blob", + "sha": "a0d6c8e81448a528d09c732811e149c83943aac2", + "size": 1507, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a0d6c8e81448a528d09c732811e149c83943aac2" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testSetPublic", + "mode": "040000", + "type": "tree", + "sha": "e1eab4cc80e1abff7ffd5107520da615e3807f81", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/e1eab4cc80e1abff7ffd5107520da615e3807f81" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testSetPublic/__files", + "mode": "040000", + "type": "tree", + "sha": "dde541c0d2315180f4ee19d5fec685b637bc88df", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/dde541c0d2315180f4ee19d5fec685b637bc88df" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testSetPublic/__files/repos_bitwiseman_test-repo-public-1c10db5e-a753-4136-813b-1a69b5bccc8e.json", + "mode": "100644", + "type": "blob", + "sha": "3ac3c593e8176ba474f26a95856bcdc014d74c47", + "size": 5779, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/3ac3c593e8176ba474f26a95856bcdc014d74c47" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testSetPublic/__files/repos_bitwiseman_test-repo-public-5f1779e8-fd79-4b15-af0c-db5a92b11aa3.json", + "mode": "100644", + "type": "blob", + "sha": "3e074c3306ee63174d2fe5ab5abffe79a84de757", + "size": 5780, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/3e074c3306ee63174d2fe5ab5abffe79a84de757" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testSetPublic/__files/repos_bitwiseman_test-repo-public-7452138f-8195-48d1-92e3-ebb73d152750.json", + "mode": "100644", + "type": "blob", + "sha": "3e074c3306ee63174d2fe5ab5abffe79a84de757", + "size": 5780, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/3e074c3306ee63174d2fe5ab5abffe79a84de757" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testSetPublic/__files/repos_bitwiseman_test-repo-public-a50794a3-d76a-4627-bbe3-f4ed30375298.json", + "mode": "100644", + "type": "blob", + "sha": "3ac3c593e8176ba474f26a95856bcdc014d74c47", + "size": 5779, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/3ac3c593e8176ba474f26a95856bcdc014d74c47" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testSetPublic/__files/user-e09de733-d3c9-4a4d-89ab-8180ace9484c.json", + "mode": "100644", + "type": "blob", + "sha": "41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0", + "size": 1640, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testSetPublic/__files/user_repos-d25ff0c0-0d91-461c-a42d-74926a2b751e.json", + "mode": "100644", + "type": "blob", + "sha": "e5b3ae36cb4ba9f932f9bf6c912bde0919e29939", + "size": 5780, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/e5b3ae36cb4ba9f932f9bf6c912bde0919e29939" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testSetPublic/mappings", + "mode": "040000", + "type": "tree", + "sha": "6ddfc3b6a9f5ae44294bc73c2b83aebeb886ab0b", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/6ddfc3b6a9f5ae44294bc73c2b83aebeb886ab0b" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testSetPublic/mappings/repos_bitwiseman_test-repo-public-3-1c10db.json", + "mode": "100644", + "type": "blob", + "sha": "70328dbfb1a9327c30693a027cda057b4ff97097", + "size": 2055, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/70328dbfb1a9327c30693a027cda057b4ff97097" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testSetPublic/mappings/repos_bitwiseman_test-repo-public-4-a50794.json", + "mode": "100644", + "type": "blob", + "sha": "903445483aa5666fa314b8ce1e4f9a69943b73ba", + "size": 2095, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/903445483aa5666fa314b8ce1e4f9a69943b73ba" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testSetPublic/mappings/repos_bitwiseman_test-repo-public-5-745213.json", + "mode": "100644", + "type": "blob", + "sha": "89167c23cf753902188c7518be54dae2cb703aea", + "size": 2056, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/89167c23cf753902188c7518be54dae2cb703aea" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testSetPublic/mappings/repos_bitwiseman_test-repo-public-6-5f1779.json", + "mode": "100644", + "type": "blob", + "sha": "a593655da34a10649a4664a2783511c6f48ab5be", + "size": 2062, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a593655da34a10649a4664a2783511c6f48ab5be" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testSetPublic/mappings/repos_bitwiseman_test-repo-public-7-f9f729.json", + "mode": "100644", + "type": "blob", + "sha": "095f5525cac6d3ea461e4f1b8f2aaee202d5924b", + "size": 1537, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/095f5525cac6d3ea461e4f1b8f2aaee202d5924b" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testSetPublic/mappings/user-1-e09de7.json", + "mode": "100644", + "type": "blob", + "sha": "8e07bf1653bf86b6131babc0996f7f7a41723023", + "size": 1828, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/8e07bf1653bf86b6131babc0996f7f7a41723023" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testSetPublic/mappings/user_repos-2-d25ff0.json", + "mode": "100644", + "type": "blob", + "sha": "b61e23fd3baa9312889b49ef1002857af693fd75", + "size": 2080, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/b61e23fd3baa9312889b49ef1002857af693fd75" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHTeamTest", + "mode": "040000", + "type": "tree", + "sha": "882144067ebf081d89b4254695a577d2b317415c", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/882144067ebf081d89b4254695a577d2b317415c" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHTeamTest/wiremock", + "mode": "040000", + "type": "tree", + "sha": "83bf58111c7df8f986cb1ec29b3be02a4b3815c3", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/83bf58111c7df8f986cb1ec29b3be02a4b3815c3" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHTeamTest/wiremock/testSetDescription", + "mode": "040000", + "type": "tree", + "sha": "ee462c3270e7f1a80e457f688636a9660f47e5aa", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/ee462c3270e7f1a80e457f688636a9660f47e5aa" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHTeamTest/wiremock/testSetDescription/__files", + "mode": "040000", + "type": "tree", + "sha": "f51923abc1c4cabaa63916bbf07539f0410a4992", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/f51923abc1c4cabaa63916bbf07539f0410a4992" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHTeamTest/wiremock/testSetDescription/__files/orgs_github-api-test-org-37477eb5-c7c7-4246-b912-6d066ebcb09c.json", + "mode": "100644", + "type": "blob", + "sha": "61547e3d987dbf85ed43d15ec6ae2239e59bd4a6", + "size": 1480, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/61547e3d987dbf85ed43d15ec6ae2239e59bd4a6" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHTeamTest/wiremock/testSetDescription/__files/orgs_github-api-test-org_teams-0bdd9437-644e-4895-8d01-c0b718bfab0b.json", + "mode": "100644", + "type": "blob", + "sha": "735846096f138b7b4623fdd442204ef7a82e1562", + "size": 1447, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/735846096f138b7b4623fdd442204ef7a82e1562" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHTeamTest/wiremock/testSetDescription/__files/orgs_github-api-test-org_teams-68c43ac4-fc58-45c5-a11d-1c8b40865abe.json", + "mode": "100644", + "type": "blob", + "sha": "44352d9b949b786ffb057c9f7b62a2a779483e0f", + "size": 1439, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/44352d9b949b786ffb057c9f7b62a2a779483e0f" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHTeamTest/wiremock/testSetDescription/__files/orgs_github-api-test-org_teams-a484e2dd-2e6c-4f40-b6f1-d706dfdfa3d9.json", + "mode": "100644", + "type": "blob", + "sha": "735846096f138b7b4623fdd442204ef7a82e1562", + "size": 1447, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/735846096f138b7b4623fdd442204ef7a82e1562" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHTeamTest/wiremock/testSetDescription/__files/teams_3451996-5ffee54e-5b33-40f8-8eed-22f6474383bb.json", + "mode": "100644", + "type": "blob", + "sha": "555fd3511c9381175ecd43647db43f34ab754b5a", + "size": 1727, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/555fd3511c9381175ecd43647db43f34ab754b5a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHTeamTest/wiremock/testSetDescription/__files/teams_3451996-f0db2900-a58f-48e3-abde-f1e1c42a153d.json", + "mode": "100644", + "type": "blob", + "sha": "c868b22527b336da730a97bdf0bb0034dd581076", + "size": 1719, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/c868b22527b336da730a97bdf0bb0034dd581076" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHTeamTest/wiremock/testSetDescription/__files/user-74e41fbf-488d-4195-afb9-bc12d23332cd.json", + "mode": "100644", + "type": "blob", + "sha": "41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0", + "size": 1640, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHTeamTest/wiremock/testSetDescription/mappings", + "mode": "040000", + "type": "tree", + "sha": "6152e2159973750b088d8114f5520ca2615f707a", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/6152e2159973750b088d8114f5520ca2615f707a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHTeamTest/wiremock/testSetDescription/mappings/orgs_github-api-test-org-2-37477e.json", + "mode": "100644", + "type": "blob", + "sha": "d3a4ae7b2d9cbab862f1d08f154077764a983d15", + "size": 1931, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d3a4ae7b2d9cbab862f1d08f154077764a983d15" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHTeamTest/wiremock/testSetDescription/mappings/orgs_github-api-test-org_teams-3-a484e2.json", + "mode": "100644", + "type": "blob", + "sha": "1ab6725d40c7fbd26b23f09bf6ab67a32daedf2c", + "size": 2063, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/1ab6725d40c7fbd26b23f09bf6ab67a32daedf2c" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHTeamTest/wiremock/testSetDescription/mappings/orgs_github-api-test-org_teams-5-68c43a.json", + "mode": "100644", + "type": "blob", + "sha": "5853d33895e212c0aa21be647e29a37c45919555", + "size": 2099, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/5853d33895e212c0aa21be647e29a37c45919555" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHTeamTest/wiremock/testSetDescription/mappings/orgs_github-api-test-org_teams-7-0bdd94.json", + "mode": "100644", + "type": "blob", + "sha": "eaa823471fc44dbad351dc216fd5618cb7c95baa", + "size": 2030, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/eaa823471fc44dbad351dc216fd5618cb7c95baa" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHTeamTest/wiremock/testSetDescription/mappings/teams_3451996-4-f0db29.json", + "mode": "100644", + "type": "blob", + "sha": "bdba06fff1fbf89c86f6650051f14af099e056d2", + "size": 2000, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/bdba06fff1fbf89c86f6650051f14af099e056d2" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHTeamTest/wiremock/testSetDescription/mappings/teams_3451996-6-5ffee5.json", + "mode": "100644", + "type": "blob", + "sha": "c7caa43706241a30496658c5f294bbc4c9975656", + "size": 2008, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/c7caa43706241a30496658c5f294bbc4c9975656" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHTeamTest/wiremock/testSetDescription/mappings/user-1-74e41f.json", + "mode": "100644", + "type": "blob", + "sha": "c5ecb8152afcb9793ffd1a6e74c2e934da37727e", + "size": 1829, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/c5ecb8152afcb9793ffd1a6e74c2e934da37727e" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHUserTest", + "mode": "040000", + "type": "tree", + "sha": "e5b69ccbd18f22d597e1b21ef9116a1772d9b07d", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/e5b69ccbd18f22d597e1b21ef9116a1772d9b07d" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHUserTest/wiremock", + "mode": "040000", + "type": "tree", + "sha": "da09b4b154e25039a76b2f253ebf237ee889dcd9", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/da09b4b154e25039a76b2f253ebf237ee889dcd9" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHUserTest/wiremock/getKeys", + "mode": "040000", + "type": "tree", + "sha": "20f2857c7df5d9c61655493edcc038a4e81156e9", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/20f2857c7df5d9c61655493edcc038a4e81156e9" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHUserTest/wiremock/getKeys/__files", + "mode": "040000", + "type": "tree", + "sha": "4beb8cf62442c58dae259deb371f90b933f668a8", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/4beb8cf62442c58dae259deb371f90b933f668a8" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHUserTest/wiremock/getKeys/__files/users_rtyler-11f4235a-9149-4727-bb9b-91b6dce384b5.json", + "mode": "100644", + "type": "blob", + "sha": "06af4151908cad4da7064f5977a0bb1fda1a47e6", + "size": 1276, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/06af4151908cad4da7064f5977a0bb1fda1a47e6" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHUserTest/wiremock/getKeys/__files/users_rtyler_keys-395dc00a-5234-4866-815c-d7b49cdd0157.json", + "mode": "100644", + "type": "blob", + "sha": "ebc425e2a9823bc43f608032e18b86d4899599aa", + "size": 1614, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/ebc425e2a9823bc43f608032e18b86d4899599aa" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHUserTest/wiremock/getKeys/mappings", + "mode": "040000", + "type": "tree", + "sha": "7050d4e6387c8b8d8b704e6031ff3aced15dcfa2", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/7050d4e6387c8b8d8b704e6031ff3aced15dcfa2" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHUserTest/wiremock/getKeys/mappings/users_rtyler-1-11f423.json", + "mode": "100644", + "type": "blob", + "sha": "3cc445491c2b8c8a7d67afeb713bf9a052680500", + "size": 1623, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/3cc445491c2b8c8a7d67afeb713bf9a052680500" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHUserTest/wiremock/getKeys/mappings/users_rtyler_keys-2-395dc0.json", + "mode": "100644", + "type": "blob", + "sha": "746e1381fec05ad300da1a2197a9e75c151d730a", + "size": 1582, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/746e1381fec05ad300da1a2197a9e75c151d730a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHUserTest/wiremock/listFollowsAndFollowers", + "mode": "040000", + "type": "tree", + "sha": "f34c9ef5ddf453835359a6209d03154a6ca2cf6f", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/f34c9ef5ddf453835359a6209d03154a6ca2cf6f" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHUserTest/wiremock/listFollowsAndFollowers/__files", + "mode": "040000", + "type": "tree", + "sha": "9db63cb667bb5ca3acef0eb54db9ed61b061d4b5", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/9db63cb667bb5ca3acef0eb54db9ed61b061d4b5" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHUserTest/wiremock/listFollowsAndFollowers/__files/user-ca1c867f-b2ed-4064-80c5-8cfd1c50290f.json", + "mode": "100644", + "type": "blob", + "sha": "b9ce24cb03e26e4d59e94a45bb9eb783707b714a", + "size": 1368, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/b9ce24cb03e26e4d59e94a45bb9eb783707b714a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHUserTest/wiremock/listFollowsAndFollowers/__files/users_rtyler-b56699fa-976a-4309-abc2-cece79cb70d7.json", + "mode": "100644", + "type": "blob", + "sha": "885bf2740f25f22c4ff86afe181bacf94c9ee64d", + "size": 1292, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/885bf2740f25f22c4ff86afe181bacf94c9ee64d" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHUserTest/wiremock/listFollowsAndFollowers/__files/users_rtyler_followers-5d12f119-f036-4a78-a192-3af769a82f87.json", + "mode": "100644", + "type": "blob", + "sha": "1847996c70a7300628bd92d30be9c00d64f4129e", + "size": 30098, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/1847996c70a7300628bd92d30be9c00d64f4129e" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHUserTest/wiremock/listFollowsAndFollowers/__files/users_rtyler_following-51f79259-5780-473e-b593-e2a010f0b430.json", + "mode": "100644", + "type": "blob", + "sha": "c4d515343a105d804ef1b6ae462016d2631e56c2", + "size": 30554, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/c4d515343a105d804ef1b6ae462016d2631e56c2" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHUserTest/wiremock/listFollowsAndFollowers/mappings", + "mode": "040000", + "type": "tree", + "sha": "a01558ab04d01aa4c6804593f6b889859ddc5ae1", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/a01558ab04d01aa4c6804593f6b889859ddc5ae1" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHUserTest/wiremock/listFollowsAndFollowers/mappings/user-1-ca1c86.json", + "mode": "100644", + "type": "blob", + "sha": "c98e6c6cd036fb141ff68ccf994b08eb86d806e1", + "size": 1728, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/c98e6c6cd036fb141ff68ccf994b08eb86d806e1" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHUserTest/wiremock/listFollowsAndFollowers/mappings/users_rtyler-2-b56699.json", + "mode": "100644", + "type": "blob", + "sha": "8e1bdb33c30c3a9923b9e195c3b089b0fac2660d", + "size": 1752, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/8e1bdb33c30c3a9923b9e195c3b089b0fac2660d" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHUserTest/wiremock/listFollowsAndFollowers/mappings/users_rtyler_followers-3-5d12f1.json", + "mode": "100644", + "type": "blob", + "sha": "e489f1af0391a6f3681efa9c5bfb8f301fa3875c", + "size": 1879, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/e489f1af0391a6f3681efa9c5bfb8f301fa3875c" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHUserTest/wiremock/listFollowsAndFollowers/mappings/users_rtyler_following-4-51f792.json", + "mode": "100644", + "type": "blob", + "sha": "1e73b0eae8021f8a9e165c11335280ebcd32c439", + "size": 1878, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/1e73b0eae8021f8a9e165c11335280ebcd32c439" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHUserTest/wiremock/listPublicRepositories", + "mode": "040000", + "type": "tree", + "sha": "395f219b003fb3affa777e115fd40b6e355e759b", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/395f219b003fb3affa777e115fd40b6e355e759b" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHUserTest/wiremock/listPublicRepositories/__files", + "mode": "040000", + "type": "tree", + "sha": "80f6728f81ddd35d1c1ab183b9d5cb9852d5b0a8", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/80f6728f81ddd35d1c1ab183b9d5cb9852d5b0a8" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHUserTest/wiremock/listPublicRepositories/__files/user-90560989-d163-4e6c-8b13-c3133fc2b1fd.json", + "mode": "100644", + "type": "blob", + "sha": "41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0", + "size": 1640, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHUserTest/wiremock/listPublicRepositories/__files/user_50003_repos-1e91f19a-22d2-4035-97b1-d5ef5e3664ba.json", + "mode": "100644", + "type": "blob", + "sha": "35f5deeff36c65cac8183e887e14a79822676ede", + "size": 172963, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/35f5deeff36c65cac8183e887e14a79822676ede" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHUserTest/wiremock/listPublicRepositories/__files/user_50003_repos-1eeb7b56-56af-4143-9921-1169995e7e3c.json", + "mode": "100644", + "type": "blob", + "sha": "6ee7aaf046dfbe5cb4803b6396a2d3a12cc645f1", + "size": 173547, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/6ee7aaf046dfbe5cb4803b6396a2d3a12cc645f1" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHUserTest/wiremock/listPublicRepositories/__files/user_50003_repos-d1c08a5b-3d03-404b-a293-56fb14f59a39.json", + "mode": "100644", + "type": "blob", + "sha": "cc71c1d2c498fab9be608bd5983c5d9944b130ab", + "size": 171443, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/cc71c1d2c498fab9be608bd5983c5d9944b130ab" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHUserTest/wiremock/listPublicRepositories/__files/users_kohsuke-da994e50-330e-46e8-97ee-f4da86418bca.json", + "mode": "100644", + "type": "blob", + "sha": "fd31e293f7aa3f20a66f02a0e9d210e14418c7c7", + "size": 1326, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/fd31e293f7aa3f20a66f02a0e9d210e14418c7c7" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHUserTest/wiremock/listPublicRepositories/__files/users_kohsuke_repos-9f7b75e8-6027-4a8d-adc7-2a75326dcd86.json", + "mode": "100644", + "type": "blob", + "sha": "3563297ddc6f9097d9564e965d14a0157ac8bd06", + "size": 170175, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/3563297ddc6f9097d9564e965d14a0157ac8bd06" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHUserTest/wiremock/listPublicRepositories/mappings", + "mode": "040000", + "type": "tree", + "sha": "6c9a7d9f70c1d16fbcddca98d76ddc1753f9167e", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/6c9a7d9f70c1d16fbcddca98d76ddc1753f9167e" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHUserTest/wiremock/listPublicRepositories/mappings/user-1-905609.json", + "mode": "100644", + "type": "blob", + "sha": "f0714ae57a253b1c77d8c05883fa6ea78a86006c", + "size": 1829, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/f0714ae57a253b1c77d8c05883fa6ea78a86006c" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHUserTest/wiremock/listPublicRepositories/mappings/user_50003_repos-4-1eeb7b.json", + "mode": "100644", + "type": "blob", + "sha": "160b5676df0bcf8475d6f57b64d3f3164318643c", + "size": 2149, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/160b5676df0bcf8475d6f57b64d3f3164318643c" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHUserTest/wiremock/listPublicRepositories/mappings/user_50003_repos-5-d1c08a.json", + "mode": "100644", + "type": "blob", + "sha": "3ccc8935a24c4f800d5e9426227bb1b70ee4d37e", + "size": 2149, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/3ccc8935a24c4f800d5e9426227bb1b70ee4d37e" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHUserTest/wiremock/listPublicRepositories/mappings/user_50003_repos-6-1e91f1.json", + "mode": "100644", + "type": "blob", + "sha": "e53770d0e2a1e7b242b38ead552128cd14dfc278", + "size": 2149, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/e53770d0e2a1e7b242b38ead552128cd14dfc278" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHUserTest/wiremock/listPublicRepositories/mappings/users_kohsuke-2-da994e.json", + "mode": "100644", + "type": "blob", + "sha": "9e3fbeb47c5d1789eb03a4f8afc697a9f5925088", + "size": 1856, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/9e3fbeb47c5d1789eb03a4f8afc697a9f5925088" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHUserTest/wiremock/listPublicRepositories/mappings/users_kohsuke_repos-3-9f7b75.json", + "mode": "100644", + "type": "blob", + "sha": "85cbc0d181038c9f07a2e4f094711ab9db7414d8", + "size": 1998, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/85cbc0d181038c9f07a2e4f094711ab9db7414d8" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHUserTest/wiremock/listPublicRepositoriesPageSize62", + "mode": "040000", + "type": "tree", + "sha": "0e71bb41fd75326cc0be7f4ac8f4bb7d0e527d76", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/0e71bb41fd75326cc0be7f4ac8f4bb7d0e527d76" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHUserTest/wiremock/listPublicRepositoriesPageSize62/__files", + "mode": "040000", + "type": "tree", + "sha": "40832f0867fd37f0450b46ebe513239fcdb56f7f", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/40832f0867fd37f0450b46ebe513239fcdb56f7f" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHUserTest/wiremock/listPublicRepositoriesPageSize62/__files/user-e8077934-1fa6-4421-9f2a-a4b7bde4c1a8.json", + "mode": "100644", + "type": "blob", + "sha": "41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0", + "size": 1640, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHUserTest/wiremock/listPublicRepositoriesPageSize62/__files/user_50003_repos-c1c1b703-78f4-4000-9759-cab99596d17b.json", + "mode": "100644", + "type": "blob", + "sha": "a1f5a6ff666257705c4684bd2253f98b7a2cb08a", + "size": 356579, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a1f5a6ff666257705c4684bd2253f98b7a2cb08a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHUserTest/wiremock/listPublicRepositoriesPageSize62/__files/users_kohsuke-f1828d0f-f817-49cf-9922-4d64c283688e.json", + "mode": "100644", + "type": "blob", + "sha": "fd31e293f7aa3f20a66f02a0e9d210e14418c7c7", + "size": 1326, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/fd31e293f7aa3f20a66f02a0e9d210e14418c7c7" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHUserTest/wiremock/listPublicRepositoriesPageSize62/__files/users_kohsuke_repos-24db0a2f-2ce8-469e-9bb6-232c10fb4fd7.json", + "mode": "100644", + "type": "blob", + "sha": "01e733e77cd27aef788e8716793d82cf837c489a", + "size": 355051, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/01e733e77cd27aef788e8716793d82cf837c489a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHUserTest/wiremock/listPublicRepositoriesPageSize62/mappings", + "mode": "040000", + "type": "tree", + "sha": "6ba8f306a1606b902305ca1a36989f17db63c8e0", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/6ba8f306a1606b902305ca1a36989f17db63c8e0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHUserTest/wiremock/listPublicRepositoriesPageSize62/mappings/user-1-e80779.json", + "mode": "100644", + "type": "blob", + "sha": "9283422126c4ac4a8757f9e8e905bd46ae0d1ca8", + "size": 1829, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/9283422126c4ac4a8757f9e8e905bd46ae0d1ca8" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHUserTest/wiremock/listPublicRepositoriesPageSize62/mappings/user_50003_repos-4-c1c1b7.json", + "mode": "100644", + "type": "blob", + "sha": "5507b5d28e8cb54fb7b074cb77634bfc04fa7cd0", + "size": 2149, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/5507b5d28e8cb54fb7b074cb77634bfc04fa7cd0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHUserTest/wiremock/listPublicRepositoriesPageSize62/mappings/users_kohsuke-2-f1828d.json", + "mode": "100644", + "type": "blob", + "sha": "86116167b1114be831e7cae7828f90a1d840ae16", + "size": 1856, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/86116167b1114be831e7cae7828f90a1d840ae16" + }, + { + "path": "src/test/resources/org/kohsuke/github/GHUserTest/wiremock/listPublicRepositoriesPageSize62/mappings/users_kohsuke_repos-3-24db0a.json", + "mode": "100644", + "type": "blob", + "sha": "d39ae69a72997662760f841f3a153c0e3875c708", + "size": 1998, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d39ae69a72997662760f841f3a153c0e3875c708" + }, + { + "path": "src/test/resources/org/kohsuke/github/GistTest", + "mode": "040000", + "type": "tree", + "sha": "db92e6a8dd873904c274e72a671cccd1e664f1e7", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/db92e6a8dd873904c274e72a671cccd1e664f1e7" + }, + { + "path": "src/test/resources/org/kohsuke/github/GistTest/wiremock", + "mode": "040000", + "type": "tree", + "sha": "38ebb778d63672bda12a67ecbac0ed0f76b63ed4", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/38ebb778d63672bda12a67ecbac0ed0f76b63ed4" + }, + { + "path": "src/test/resources/org/kohsuke/github/GistTest/wiremock/gistFile", + "mode": "040000", + "type": "tree", + "sha": "01903c897eabcd636021c3c4996e468ecad0aa3c", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/01903c897eabcd636021c3c4996e468ecad0aa3c" + }, + { + "path": "src/test/resources/org/kohsuke/github/GistTest/wiremock/gistFile/__files", + "mode": "040000", + "type": "tree", + "sha": "874e89b0484a9d24fa6f6adbd7c6532a11017b3a", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/874e89b0484a9d24fa6f6adbd7c6532a11017b3a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GistTest/wiremock/gistFile/__files/gists_9903708-c3067d66-2bb0-4af7-b7d4-98032571c5d0.json", + "mode": "100644", + "type": "blob", + "sha": "07482ea5a4f4d4964d8b0f29e5aa42fbbea4704e", + "size": 5652, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/07482ea5a4f4d4964d8b0f29e5aa42fbbea4704e" + }, + { + "path": "src/test/resources/org/kohsuke/github/GistTest/wiremock/gistFile/__files/user-9226d6ed-a52d-4b08-9402-f1cfc2dbf0e1.json", + "mode": "100644", + "type": "blob", + "sha": "b9ce24cb03e26e4d59e94a45bb9eb783707b714a", + "size": 1368, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/b9ce24cb03e26e4d59e94a45bb9eb783707b714a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GistTest/wiremock/gistFile/mappings", + "mode": "040000", + "type": "tree", + "sha": "d6d9c0b1efeaec64fd7341f32e28b99d2b563bdd", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/d6d9c0b1efeaec64fd7341f32e28b99d2b563bdd" + }, + { + "path": "src/test/resources/org/kohsuke/github/GistTest/wiremock/gistFile/mappings/gists_9903708-2-c3067d.json", + "mode": "100644", + "type": "blob", + "sha": "6af630eac7273afc9b4a82c6049cd620b95c708b", + "size": 1755, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/6af630eac7273afc9b4a82c6049cd620b95c708b" + }, + { + "path": "src/test/resources/org/kohsuke/github/GistTest/wiremock/gistFile/mappings/user-1-9226d6.json", + "mode": "100644", + "type": "blob", + "sha": "412c3d6c9fbfba0ef9e5efde1f8ff8027fa60df3", + "size": 1728, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/412c3d6c9fbfba0ef9e5efde1f8ff8027fa60df3" + }, + { + "path": "src/test/resources/org/kohsuke/github/GistTest/wiremock/lifecycleTest", + "mode": "040000", + "type": "tree", + "sha": "53333cf069d75f347a887692f096930f606f2614", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/53333cf069d75f347a887692f096930f606f2614" + }, + { + "path": "src/test/resources/org/kohsuke/github/GistTest/wiremock/lifecycleTest/__files", + "mode": "040000", + "type": "tree", + "sha": "b3115a9b168cbbf4bdfa6c86944ff9811ed82637", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/b3115a9b168cbbf4bdfa6c86944ff9811ed82637" + }, + { + "path": "src/test/resources/org/kohsuke/github/GistTest/wiremock/lifecycleTest/__files/gists-2f93eec6-32ad-4c3d-a7bf-33a134d16dbe.json", + "mode": "100644", + "type": "blob", + "sha": "3ae7954793db6c91dbcfb1ac74e26a0a5fc7d9ec", + "size": 4106, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/3ae7954793db6c91dbcfb1ac74e26a0a5fc7d9ec" + }, + { + "path": "src/test/resources/org/kohsuke/github/GistTest/wiremock/lifecycleTest/__files/user-3380f859-169e-41b0-9a8a-aa66277dfb8b.json", + "mode": "100644", + "type": "blob", + "sha": "b9ce24cb03e26e4d59e94a45bb9eb783707b714a", + "size": 1368, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/b9ce24cb03e26e4d59e94a45bb9eb783707b714a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GistTest/wiremock/lifecycleTest/mappings", + "mode": "040000", + "type": "tree", + "sha": "e3c99bf356d0afc9fb316dbcc99cd5bb69669262", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/e3c99bf356d0afc9fb316dbcc99cd5bb69669262" + }, + { + "path": "src/test/resources/org/kohsuke/github/GistTest/wiremock/lifecycleTest/mappings/gists-2-2f93ee.json", + "mode": "100644", + "type": "blob", + "sha": "9901a34875455aa0957cfa622ea5d511074d20ec", + "size": 2032, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/9901a34875455aa0957cfa622ea5d511074d20ec" + }, + { + "path": "src/test/resources/org/kohsuke/github/GistTest/wiremock/lifecycleTest/mappings/gists_9faa55cd67b21a789bb44e34e5e41f72-3-26c314.json", + "mode": "100644", + "type": "blob", + "sha": "f1eab1338c82774f172d735468b723a88592e9d8", + "size": 1486, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/f1eab1338c82774f172d735468b723a88592e9d8" + }, + { + "path": "src/test/resources/org/kohsuke/github/GistTest/wiremock/lifecycleTest/mappings/user-1-3380f8.json", + "mode": "100644", + "type": "blob", + "sha": "6bf2aefd6456cf947977cef9607bd8aee35fc3b2", + "size": 1728, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/6bf2aefd6456cf947977cef9607bd8aee35fc3b2" + }, + { + "path": "src/test/resources/org/kohsuke/github/GistTest/wiremock/starTest", + "mode": "040000", + "type": "tree", + "sha": "0938f8241ec8ace4b251949836a3d3b0bb6d364c", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/0938f8241ec8ace4b251949836a3d3b0bb6d364c" + }, + { + "path": "src/test/resources/org/kohsuke/github/GistTest/wiremock/starTest/__files", + "mode": "040000", + "type": "tree", + "sha": "7d533440b1ad61b3e703ccd3da6d8e4e7332a667", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/7d533440b1ad61b3e703ccd3da6d8e4e7332a667" + }, + { + "path": "src/test/resources/org/kohsuke/github/GistTest/wiremock/starTest/__files/gists_9903708-ab2c9d06-edf6-4875-b402-7c99a529b19a.json", + "mode": "100644", + "type": "blob", + "sha": "07482ea5a4f4d4964d8b0f29e5aa42fbbea4704e", + "size": 5652, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/07482ea5a4f4d4964d8b0f29e5aa42fbbea4704e" + }, + { + "path": "src/test/resources/org/kohsuke/github/GistTest/wiremock/starTest/__files/gists_9903708_forks-42d6e404-71e3-42cc-b415-f42dfab9d45e.json", + "mode": "100644", + "type": "blob", + "sha": "b318cb50d531beb8e54d72290cd39d64ee26f874", + "size": 2234, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/b318cb50d531beb8e54d72290cd39d64ee26f874" + }, + { + "path": "src/test/resources/org/kohsuke/github/GistTest/wiremock/starTest/__files/gists_9903708_forks-992bf599-2e87-4fb0-b610-7c2e1fc00398.json", + "mode": "100644", + "type": "blob", + "sha": "5e18e6c1fe561de09e49641338a87e8235c5001e", + "size": 1996, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/5e18e6c1fe561de09e49641338a87e8235c5001e" + }, + { + "path": "src/test/resources/org/kohsuke/github/GistTest/wiremock/starTest/__files/user-07500425-69d3-4dd0-8519-628a92aa66c5.json", + "mode": "100644", + "type": "blob", + "sha": "b9ce24cb03e26e4d59e94a45bb9eb783707b714a", + "size": 1368, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/b9ce24cb03e26e4d59e94a45bb9eb783707b714a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GistTest/wiremock/starTest/mappings", + "mode": "040000", + "type": "tree", + "sha": "30c712cbcb449d0275bf65a875bd390dfff7a237", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/30c712cbcb449d0275bf65a875bd390dfff7a237" + }, + { + "path": "src/test/resources/org/kohsuke/github/GistTest/wiremock/starTest/mappings/gists_8edf855833a05ce8730d609fe8bd803a-9-e0907c.json", + "mode": "100644", + "type": "blob", + "sha": "feb7bf29078077ebbf0392f1aa3f44f123980e44", + "size": 1486, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/feb7bf29078077ebbf0392f1aa3f44f123980e44" + }, + { + "path": "src/test/resources/org/kohsuke/github/GistTest/wiremock/starTest/mappings/gists_9903708-2-ab2c9d.json", + "mode": "100644", + "type": "blob", + "sha": "6d138fd1a4a38a12ad1f94f8b77724b79d47a1b7", + "size": 1755, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/6d138fd1a4a38a12ad1f94f8b77724b79d47a1b7" + }, + { + "path": "src/test/resources/org/kohsuke/github/GistTest/wiremock/starTest/mappings/gists_9903708_forks-7-42d6e4.json", + "mode": "100644", + "type": "blob", + "sha": "04beba9dc088cb64781da1f3d824062386079d57", + "size": 1948, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/04beba9dc088cb64781da1f3d824062386079d57" + }, + { + "path": "src/test/resources/org/kohsuke/github/GistTest/wiremock/starTest/mappings/gists_9903708_forks-8-992bf5.json", + "mode": "100644", + "type": "blob", + "sha": "b1ce2505237192b013ca5ddee9e2d642f61a5252", + "size": 1773, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/b1ce2505237192b013ca5ddee9e2d642f61a5252" + }, + { + "path": "src/test/resources/org/kohsuke/github/GistTest/wiremock/starTest/mappings/gists_9903708_star-3-dc6fd4.json", + "mode": "100644", + "type": "blob", + "sha": "3402679a151bb9eab22f2cd3c0db0d979d6999dd", + "size": 1587, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/3402679a151bb9eab22f2cd3c0db0d979d6999dd" + }, + { + "path": "src/test/resources/org/kohsuke/github/GistTest/wiremock/starTest/mappings/gists_9903708_star-4-680201.json", + "mode": "100644", + "type": "blob", + "sha": "c37edfb92b8f31f63546e76808dd44929dca5918", + "size": 1831, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/c37edfb92b8f31f63546e76808dd44929dca5918" + }, + { + "path": "src/test/resources/org/kohsuke/github/GistTest/wiremock/starTest/mappings/gists_9903708_star-5-c7d88c.json", + "mode": "100644", + "type": "blob", + "sha": "296072bce64f0a140e24fc981f201ca1176b130f", + "size": 1446, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/296072bce64f0a140e24fc981f201ca1176b130f" + }, + { + "path": "src/test/resources/org/kohsuke/github/GistTest/wiremock/starTest/mappings/gists_9903708_star-6-584dc0.json", + "mode": "100644", + "type": "blob", + "sha": "490aa567a68c5f7248f80167cb8c64828b3d98de", + "size": 1547, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/490aa567a68c5f7248f80167cb8c64828b3d98de" + }, + { + "path": "src/test/resources/org/kohsuke/github/GistTest/wiremock/starTest/mappings/user-1-075004.json", + "mode": "100644", + "type": "blob", + "sha": "38a30e3d61f48a7a499c80be38de3ee79ec9dae7", + "size": 1728, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/38a30e3d61f48a7a499c80be38de3ee79ec9dae7" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubConnectionTest", + "mode": "040000", + "type": "tree", + "sha": "041ffbb37f5f83a76992846d5eb297b47ae49995", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/041ffbb37f5f83a76992846d5eb297b47ae49995" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubConnectionTest/wiremock", + "mode": "040000", + "type": "tree", + "sha": "bcc6925f5d99f0194870813f0c3c6c6b581ae898", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/bcc6925f5d99f0194870813f0c3c6c6b581ae898" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubConnectionTest/wiremock/testGitHubEnterpriseDoesNotHaveRateLimit", + "mode": "040000", + "type": "tree", + "sha": "9506e00071557af533ff09987dbfe79857ff15c1", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/9506e00071557af533ff09987dbfe79857ff15c1" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubConnectionTest/wiremock/testGitHubEnterpriseDoesNotHaveRateLimit/__files", + "mode": "040000", + "type": "tree", + "sha": "fa10c98f2d1e0f6d662f77dcf8da3091fffa15b5", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/fa10c98f2d1e0f6d662f77dcf8da3091fffa15b5" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubConnectionTest/wiremock/testGitHubEnterpriseDoesNotHaveRateLimit/__files/user-a0bafdae-2f0d-4d0b-966b-f2408c1240bd.json", + "mode": "100644", + "type": "blob", + "sha": "015503e92e80be661fc9a6908d3abde0b7774c92", + "size": 1570, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/015503e92e80be661fc9a6908d3abde0b7774c92" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubConnectionTest/wiremock/testGitHubEnterpriseDoesNotHaveRateLimit/mappings", + "mode": "040000", + "type": "tree", + "sha": "3e64221ff3b91c9ea45cfe33c9fb310ddf64337c", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/3e64221ff3b91c9ea45cfe33c9fb310ddf64337c" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubConnectionTest/wiremock/testGitHubEnterpriseDoesNotHaveRateLimit/mappings/rate_limit2-2-445e28.json", + "mode": "100644", + "type": "blob", + "sha": "92ea20aee9bffa20056e3c929b16226ddf8c87cf", + "size": 1606, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/92ea20aee9bffa20056e3c929b16226ddf8c87cf" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubConnectionTest/wiremock/testGitHubEnterpriseDoesNotHaveRateLimit/mappings/user-0-a0bafd.json", + "mode": "100644", + "type": "blob", + "sha": "bbae6112f70597471c7ec00e9e85fb824c597eb5", + "size": 1832, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/bbae6112f70597471c7ec00e9e85fb824c597eb5" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubConnectionTest/wiremock/testGitHubEnterpriseDoesNotHaveRateLimit/mappings/user-1-a0bafd.json", + "mode": "100644", + "type": "blob", + "sha": "48693a69fabc86787739d3ccc835918da2236204", + "size": 1914, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/48693a69fabc86787739d3ccc835918da2236204" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubConnectionTest/wiremock/testGitHubRateLimit", + "mode": "040000", + "type": "tree", + "sha": "efdaf840db6de83531989169c2d43d200e8dd753", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/efdaf840db6de83531989169c2d43d200e8dd753" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubConnectionTest/wiremock/testGitHubRateLimit/__files", + "mode": "040000", + "type": "tree", + "sha": "856ec9e2b4da461bb8cf3ea74b1906d32dceae74", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/856ec9e2b4da461bb8cf3ea74b1906d32dceae74" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubConnectionTest/wiremock/testGitHubRateLimit/__files/orgs_github-api-test-org-7ea37b72-8b01-4ed5-a63d-98d32b2faa0f.json", + "mode": "100644", + "type": "blob", + "sha": "d265dd8cec24f1f205574a36d903a8ab84e11461", + "size": 1480, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d265dd8cec24f1f205574a36d903a8ab84e11461" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubConnectionTest/wiremock/testGitHubRateLimit/__files/rate_limit-4e2fc33b-fb25-4dfc-9d56-34f9b4d707be.json", + "mode": "100644", + "type": "blob", + "sha": "3f8b93b91dfcfcff2d4977ff410ed9f779bac46c", + "size": 495, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/3f8b93b91dfcfcff2d4977ff410ed9f779bac46c" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubConnectionTest/wiremock/testGitHubRateLimit/__files/rate_limit-a1f82a96-500c-4462-ae7b-e0159afa8208.json", + "mode": "100644", + "type": "blob", + "sha": "c08b3c7e2c56bcb54a0350f75c4c335d2e16b6d3", + "size": 495, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/c08b3c7e2c56bcb54a0350f75c4c335d2e16b6d3" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubConnectionTest/wiremock/testGitHubRateLimit/__files/rate_limit-f22b1cea-3679-481d-8b95-459b2c47bf98.json", + "mode": "100644", + "type": "blob", + "sha": "c08b3c7e2c56bcb54a0350f75c4c335d2e16b6d3", + "size": 495, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/c08b3c7e2c56bcb54a0350f75c4c335d2e16b6d3" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubConnectionTest/wiremock/testGitHubRateLimit/__files/user-a460fd69-99f3-46c7-aeb1-888c34085d4a.json", + "mode": "100644", + "type": "blob", + "sha": "41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0", + "size": 1640, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubConnectionTest/wiremock/testGitHubRateLimit/mappings", + "mode": "040000", + "type": "tree", + "sha": "4d5181c56378ff8470aed9fce11a1ed67ec17c70", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/4d5181c56378ff8470aed9fce11a1ed67ec17c70" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubConnectionTest/wiremock/testGitHubRateLimit/mappings/orgs_github-api-test-org-4-7ea37b.json", + "mode": "100644", + "type": "blob", + "sha": "b76c260d2eff1d9344efa0b4916a689b9c3262a1", + "size": 1931, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/b76c260d2eff1d9344efa0b4916a689b9c3262a1" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubConnectionTest/wiremock/testGitHubRateLimit/mappings/rate_limit-2-f22b1c.json", + "mode": "100644", + "type": "blob", + "sha": "8eccbac04f6e4eb39d4c3fdaeb626b8188d80323", + "size": 1768, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/8eccbac04f6e4eb39d4c3fdaeb626b8188d80323" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubConnectionTest/wiremock/testGitHubRateLimit/mappings/rate_limit-3-a1f82a.json", + "mode": "100644", + "type": "blob", + "sha": "1b64a503224592521f5f0139b82ad99ed3cc3663", + "size": 1784, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/1b64a503224592521f5f0139b82ad99ed3cc3663" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubConnectionTest/wiremock/testGitHubRateLimit/mappings/rate_limit-5-4e2fc3.json", + "mode": "100644", + "type": "blob", + "sha": "5cead1be21fd5663dd95b94a650e99770ae27d7d", + "size": 1735, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/5cead1be21fd5663dd95b94a650e99770ae27d7d" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubConnectionTest/wiremock/testGitHubRateLimit/mappings/user-1-a460fd.json", + "mode": "100644", + "type": "blob", + "sha": "3c300dfc2f4948425ca7bcba13f10727c4059552", + "size": 1829, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/3c300dfc2f4948425ca7bcba13f10727c4059552" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest", + "mode": "040000", + "type": "tree", + "sha": "5b2af68bcc55b574e0d66f5ee0b5cafc6dd9eea9", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/5b2af68bcc55b574e0d66f5ee0b5cafc6dd9eea9" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock", + "mode": "040000", + "type": "tree", + "sha": "2d1daa52df329ce4d13c4f4a923d5aff89a45110", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/2d1daa52df329ce4d13c4f4a923d5aff89a45110" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/getOrgs", + "mode": "040000", + "type": "tree", + "sha": "2642221da3eb9936eff7a2b49b4087ae9fa75e6e", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/2642221da3eb9936eff7a2b49b4087ae9fa75e6e" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/getOrgs/__files", + "mode": "040000", + "type": "tree", + "sha": "79c3004250b9dbaaa3dad81717cfa2a83bc8a853", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/79c3004250b9dbaaa3dad81717cfa2a83bc8a853" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/getOrgs/__files/organizations-003debd0-3deb-41e2-a5ad-b1bdb02b270a.json", + "mode": "100644", + "type": "blob", + "sha": "4ad353638d74de39c995a56328dc2b5ab40aab03", + "size": 1352, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/4ad353638d74de39c995a56328dc2b5ab40aab03" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/getOrgs/__files/organizations-025896c9-23c5-4051-b363-eb2e59c0c90a.json", + "mode": "100644", + "type": "blob", + "sha": "3de1e96e992477d0f2fe2549836f27eca17e1bd4", + "size": 1322, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/3de1e96e992477d0f2fe2549836f27eca17e1bd4" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/getOrgs/__files/organizations-0fccda9a-fb5c-4db2-9990-09b3cb4f74bd.json", + "mode": "100644", + "type": "blob", + "sha": "a59ecff424f61ed05124402a8bb28f86150cb19a", + "size": 1294, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a59ecff424f61ed05124402a8bb28f86150cb19a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/getOrgs/__files/organizations-19d13a8c-7b2a-4dbb-a0fb-e69ecb693956.json", + "mode": "100644", + "type": "blob", + "sha": "78fd790d3a71c9945bd6734ad59695daae6d3983", + "size": 1294, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/78fd790d3a71c9945bd6734ad59695daae6d3983" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/getOrgs/__files/organizations-4ef81065-9209-4a61-80c4-9f4dd64508ac.json", + "mode": "100644", + "type": "blob", + "sha": "7f3669820bd28e4c2fa583c32cab8f2d46f8de00", + "size": 1477, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/7f3669820bd28e4c2fa583c32cab8f2d46f8de00" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/getOrgs/__files/orgs_collectiveidea-4bbf97a8-2c8d-4c25-a7e4-208719659507.json", + "mode": "100644", + "type": "blob", + "sha": "90ca67778abf1f6a91429044e12e20bf617fea01", + "size": 1186, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/90ca67778abf1f6a91429044e12e20bf617fea01" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/getOrgs/__files/orgs_engineyard-643eb559-d752-4906-861b-4cfe1723286f.json", + "mode": "100644", + "type": "blob", + "sha": "f8638bfbd867dc9ae2f5701206bb2d197be23fda", + "size": 1113, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/f8638bfbd867dc9ae2f5701206bb2d197be23fda" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/getOrgs/__files/orgs_entryway-e1bd91f3-b63b-4fed-bb85-3da264635250.json", + "mode": "100644", + "type": "blob", + "sha": "f28a7cca28d2e53ef858ac49893f01067c0e046b", + "size": 1085, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/f28a7cca28d2e53ef858ac49893f01067c0e046b" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/getOrgs/__files/orgs_errfree-63eb86fa-54a5-4115-bdda-1804f5db66af.json", + "mode": "100644", + "type": "blob", + "sha": "5cef20e802628dc7d7e408e4893d2c9b91c911b5", + "size": 943, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/5cef20e802628dc7d7e408e4893d2c9b91c911b5" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/getOrgs/__files/orgs_merb-df20cca6-38fd-45f8-9784-0aaec71bbb8a.json", + "mode": "100644", + "type": "blob", + "sha": "7d1ce9652a77bde38fc0749479238ec01e2370e5", + "size": 1031, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/7d1ce9652a77bde38fc0749479238ec01e2370e5" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/getOrgs/__files/orgs_ministrycentered-40a544eb-0080-4cff-b543-7acf299f4068.json", + "mode": "100644", + "type": "blob", + "sha": "f911aeb3cd9fca034fccfa8425eefe10198ecf3a", + "size": 1175, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/f911aeb3cd9fca034fccfa8425eefe10198ecf3a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/getOrgs/__files/orgs_moneyspyder-859aaf3c-8049-4341-9984-6360921b5bb3.json", + "mode": "100644", + "type": "blob", + "sha": "77ebb285af17c499a654f8950dd1a0fe86c62a94", + "size": 1106, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/77ebb285af17c499a654f8950dd1a0fe86c62a94" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/getOrgs/__files/orgs_ogc-7ba44dcd-146a-427c-b2cb-ff6291d00223.json", + "mode": "100644", + "type": "blob", + "sha": "8b8905b658ea7c53d41f2c1b1151f51e8fe1cbda", + "size": 1028, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/8b8905b658ea7c53d41f2c1b1151f51e8fe1cbda" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/getOrgs/__files/orgs_sevenwire-2a01f699-874a-4526-877d-e15644e401c7.json", + "mode": "100644", + "type": "blob", + "sha": "143614a4ee4112e05313311757a6409d750334f5", + "size": 1084, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/143614a4ee4112e05313311757a6409d750334f5" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/getOrgs/__files/orgs_sproutit-a165deae-7ede-4c89-aab5-5d36e5b0513a.json", + "mode": "100644", + "type": "blob", + "sha": "e7b49791d3a0697ee3751c9e4a9949d9140332fd", + "size": 1099, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/e7b49791d3a0697ee3751c9e4a9949d9140332fd" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/getOrgs/__files/user-d7829e63-d5dc-4d25-846d-7d1e2dd2500e.json", + "mode": "100644", + "type": "blob", + "sha": "946fa4f0cce3d66af550262a926c6428b9ff9417", + "size": 1368, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/946fa4f0cce3d66af550262a926c6428b9ff9417" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/getOrgs/mappings", + "mode": "040000", + "type": "tree", + "sha": "589fcc04f67e06fa8504b02e36ae92cee826e11a", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/589fcc04f67e06fa8504b02e36ae92cee826e11a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/getOrgs/mappings/organizations-11-0fccda.json", + "mode": "100644", + "type": "blob", + "sha": "c2ec8fbdd8061c341fb71fa6885c5d58808e73e2", + "size": 1920, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/c2ec8fbdd8061c341fb71fa6885c5d58808e73e2" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/getOrgs/mappings/organizations-14-003deb.json", + "mode": "100644", + "type": "blob", + "sha": "56528dfb1853e5c3eff9ff86668fdc16296e3549", + "size": 1920, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/56528dfb1853e5c3eff9ff86668fdc16296e3549" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/getOrgs/mappings/organizations-2-025896.json", + "mode": "100644", + "type": "blob", + "sha": "82e1206547aad5bab9bc57e5d30120379cb4c588", + "size": 1908, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/82e1206547aad5bab9bc57e5d30120379cb4c588" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/getOrgs/mappings/organizations-5-4ef810.json", + "mode": "100644", + "type": "blob", + "sha": "e63c2962c13c27078b7f8d6d3e7d4d604af6e2be", + "size": 1918, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/e63c2962c13c27078b7f8d6d3e7d4d604af6e2be" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/getOrgs/mappings/organizations-8-19d13a.json", + "mode": "100644", + "type": "blob", + "sha": "79cf95f3fa509b0dabfe4e0407e7007080045377", + "size": 1919, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/79cf95f3fa509b0dabfe4e0407e7007080045377" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/getOrgs/mappings/orgs_collectiveidea-7-4bbf97.json", + "mode": "100644", + "type": "blob", + "sha": "2844ccecc098562b4d8d30ed45969db7a5e33ffc", + "size": 1860, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/2844ccecc098562b4d8d30ed45969db7a5e33ffc" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/getOrgs/mappings/orgs_engineyard-4-643eb5.json", + "mode": "100644", + "type": "blob", + "sha": "0465da7cb628a64e7d432dfb8c27e8d283682bdb", + "size": 1848, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/0465da7cb628a64e7d432dfb8c27e8d283682bdb" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/getOrgs/mappings/orgs_entryway-12-e1bd91.json", + "mode": "100644", + "type": "blob", + "sha": "c0a1a321d0c8b62869005419f14c8dbcb02a7f00", + "size": 1843, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/c0a1a321d0c8b62869005419f14c8dbcb02a7f00" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/getOrgs/mappings/orgs_errfree-3-63eb86.json", + "mode": "100644", + "type": "blob", + "sha": "28dd282cf604ea250c0c8265c684a09f27e70558", + "size": 1839, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/28dd282cf604ea250c0c8265c684a09f27e70558" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/getOrgs/mappings/orgs_merb-13-df20cc.json", + "mode": "100644", + "type": "blob", + "sha": "0229513b8e561b1b1cc36ff01eb87315960ab655", + "size": 1831, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/0229513b8e561b1b1cc36ff01eb87315960ab655" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/getOrgs/mappings/orgs_ministrycentered-6-40a544.json", + "mode": "100644", + "type": "blob", + "sha": "bb5496a8998eb3ca0f4c2318c07e628dfa64978f", + "size": 1866, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/bb5496a8998eb3ca0f4c2318c07e628dfa64978f" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/getOrgs/mappings/orgs_moneyspyder-15-859aaf.json", + "mode": "100644", + "type": "blob", + "sha": "8ad15b78aa9d64262fda2c06dde02c7c2c5d3b2c", + "size": 1852, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/8ad15b78aa9d64262fda2c06dde02c7c2c5d3b2c" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/getOrgs/mappings/orgs_ogc-9-7ba44d.json", + "mode": "100644", + "type": "blob", + "sha": "fc262cf51378b49eec88de86bf820069420b4320", + "size": 1827, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/fc262cf51378b49eec88de86bf820069420b4320" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/getOrgs/mappings/orgs_sevenwire-10-2a01f6.json", + "mode": "100644", + "type": "blob", + "sha": "a38646d17b9ea04bf697b6538c19730abb555843", + "size": 1846, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a38646d17b9ea04bf697b6538c19730abb555843" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/getOrgs/mappings/orgs_sproutit-16-a165de.json", + "mode": "100644", + "type": "blob", + "sha": "4fa9e65d0505b6c5a17bdbaf1ee37596c64ee721", + "size": 1843, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/4fa9e65d0505b6c5a17bdbaf1ee37596c64ee721" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/getOrgs/mappings/user-1-d7829e.json", + "mode": "100644", + "type": "blob", + "sha": "7fcaebc03c6b41d55cda929304c39057d313ec1b", + "size": 1773, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/7fcaebc03c6b41d55cda929304c39057d313ec1b" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/listUsers", + "mode": "040000", + "type": "tree", + "sha": "c38bfaf363b9a23dda85b0050226bdf34915db73", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/c38bfaf363b9a23dda85b0050226bdf34915db73" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/listUsers/__files", + "mode": "040000", + "type": "tree", + "sha": "fece64126e0c079d43d1a13e774f0442c85d709f", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/fece64126e0c079d43d1a13e774f0442c85d709f" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/listUsers/__files/user-83656aeb-e643-451b-a0ee-d8fe7f04e8a1.json", + "mode": "100644", + "type": "blob", + "sha": "41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0", + "size": 1640, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/listUsers/__files/users-c2940d51-9e34-42a7-9eff-c74efd7221c0.json", + "mode": "100644", + "type": "blob", + "sha": "8b51bc1132f2b65627197ac7c187e22604f3eb40", + "size": 29954, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/8b51bc1132f2b65627197ac7c187e22604f3eb40" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/listUsers/__files/users_brynary-87de93ce-da70-4b2b-9fd2-160cb43f69f8.json", + "mode": "100644", + "type": "blob", + "sha": "fe7036c1cc841324f63fa9f6e2e73304275c9920", + "size": 1319, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/fe7036c1cc841324f63fa9f6e2e73304275c9920" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/listUsers/__files/users_defunkt-14f04ed7-4d31-44de-968d-43d1b92eeb42.json", + "mode": "100644", + "type": "blob", + "sha": "73370ff2ac839ee6bc6734864c7c579eeaef03e6", + "size": 1291, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/73370ff2ac839ee6bc6734864c7c579eeaef03e6" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/listUsers/__files/users_evanphx-bb2fea35-b754-47f3-8cc4-eb3a2565fc89.json", + "mode": "100644", + "type": "blob", + "sha": "d4e2c2979b8a6377e7bcae824e28da597ea2904f", + "size": 1301, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d4e2c2979b8a6377e7bcae824e28da597ea2904f" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/listUsers/__files/users_ezmobius-2e9ea716-43e7-4062-8359-e8d8946b08e1.json", + "mode": "100644", + "type": "blob", + "sha": "d133f1c4239f4cb319129dff3d475384e87fa885", + "size": 1295, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d133f1c4239f4cb319129dff3d475384e87fa885" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/listUsers/__files/users_ivey-2220ec20-6a77-4317-8784-b9dbaea2d27b.json", + "mode": "100644", + "type": "blob", + "sha": "571a5f1670d53ab567a981c34a7b654eb07f1ba2", + "size": 1264, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/571a5f1670d53ab567a981c34a7b654eb07f1ba2" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/listUsers/__files/users_mojombo-41ed065f-76ae-483d-acd2-363d73c6fc1d.json", + "mode": "100644", + "type": "blob", + "sha": "06c040c9d8d58db88dfdd11e09ffdd61b11a2826", + "size": 1302, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/06c040c9d8d58db88dfdd11e09ffdd61b11a2826" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/listUsers/__files/users_pjhyett-41b46164-ab52-4908-b424-bcfdf1031af2.json", + "mode": "100644", + "type": "blob", + "sha": "2753300a065e4e5ed551fb7e891a230a0757aafe", + "size": 1285, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/2753300a065e4e5ed551fb7e891a230a0757aafe" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/listUsers/__files/users_vanpelt-900a0e1a-6b3a-4b29-9f14-d997f1139396.json", + "mode": "100644", + "type": "blob", + "sha": "384b2dc39f5770e2cb8d6c2e9b12db390239045b", + "size": 1293, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/384b2dc39f5770e2cb8d6c2e9b12db390239045b" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/listUsers/__files/users_wayneeseguin-3e6233c9-6a6b-4ca1-9a85-2f74a8372ba4.json", + "mode": "100644", + "type": "blob", + "sha": "42f4b0c6b54df57756ec0b1e593c572c666e4355", + "size": 1358, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/42f4b0c6b54df57756ec0b1e593c572c666e4355" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/listUsers/__files/users_wycats-b5f8d0de-4625-43eb-bc6a-6b87d8d79b6a.json", + "mode": "100644", + "type": "blob", + "sha": "5699e4b54f8802db279623db282c18ef21c94788", + "size": 1285, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/5699e4b54f8802db279623db282c18ef21c94788" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/listUsers/mappings", + "mode": "040000", + "type": "tree", + "sha": "fe0196d62349ac43976bca9a46258de03c9273d0", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/fe0196d62349ac43976bca9a46258de03c9273d0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/listUsers/mappings/user-1-83656a.json", + "mode": "100644", + "type": "blob", + "sha": "5c1694b998e81dabcc470d75a9299c65b7da2592", + "size": 1829, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/5c1694b998e81dabcc470d75a9299c65b7da2592" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/listUsers/mappings/users-2-c2940d.json", + "mode": "100644", + "type": "blob", + "sha": "87f3136edc4c121c33f3e722753390132b5c67ed", + "size": 1902, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/87f3136edc4c121c33f3e722753390132b5c67ed" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/listUsers/mappings/users_brynary-12-87de93.json", + "mode": "100644", + "type": "blob", + "sha": "efa1b3135c78d39dd5d5bfd42731a39a743b50e6", + "size": 1857, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/efa1b3135c78d39dd5d5bfd42731a39a743b50e6" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/listUsers/mappings/users_defunkt-4-14f04e.json", + "mode": "100644", + "type": "blob", + "sha": "a8445168d18df6161f39c814af00610127797496", + "size": 1856, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a8445168d18df6161f39c814af00610127797496" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/listUsers/mappings/users_evanphx-9-bb2fea.json", + "mode": "100644", + "type": "blob", + "sha": "e64b13f0b2f204fad3295ae8b118b710b1f9c16d", + "size": 1856, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/e64b13f0b2f204fad3295ae8b118b710b1f9c16d" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/listUsers/mappings/users_ezmobius-7-2e9ea7.json", + "mode": "100644", + "type": "blob", + "sha": "5f024fadd4d66ec7ff36c5a473fcb78ee5aaa887", + "size": 1859, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/5f024fadd4d66ec7ff36c5a473fcb78ee5aaa887" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/listUsers/mappings/users_ivey-8-2220ec.json", + "mode": "100644", + "type": "blob", + "sha": "de3c828c95925ec889f08e1392b74fedac0c1b47", + "size": 1847, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/de3c828c95925ec889f08e1392b74fedac0c1b47" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/listUsers/mappings/users_mojombo-3-41ed06.json", + "mode": "100644", + "type": "blob", + "sha": "1a8b57cd55f02be5caf3a1a1b10c379c0c231f52", + "size": 1856, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/1a8b57cd55f02be5caf3a1a1b10c379c0c231f52" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/listUsers/mappings/users_pjhyett-5-41b461.json", + "mode": "100644", + "type": "blob", + "sha": "1e10a04fdf9db6d2d2aa8c7e9d9395f232c2befb", + "size": 1856, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/1e10a04fdf9db6d2d2aa8c7e9d9395f232c2befb" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/listUsers/mappings/users_vanpelt-10-900a0e.json", + "mode": "100644", + "type": "blob", + "sha": "a1319deafd5c0cd0f43b877d6007f4f8104bb1ba", + "size": 1857, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a1319deafd5c0cd0f43b877d6007f4f8104bb1ba" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/listUsers/mappings/users_wayneeseguin-11-3e6233.json", + "mode": "100644", + "type": "blob", + "sha": "7420e8ad87721983c7b9bc4f271863aeb073292c", + "size": 1872, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/7420e8ad87721983c7b9bc4f271863aeb073292c" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/listUsers/mappings/users_wycats-6-b5f8d0.json", + "mode": "100644", + "type": "blob", + "sha": "dfae71fea117e98f27dfb71a5eb630e417149476", + "size": 1853, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/dfae71fea117e98f27dfb71a5eb630e417149476" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/searchContent", + "mode": "040000", + "type": "tree", + "sha": "1dc597edcc69f93bd101aceee33f08fce58cb115", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/1dc597edcc69f93bd101aceee33f08fce58cb115" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/searchContent/__files", + "mode": "040000", + "type": "tree", + "sha": "c5b066ab30e36c1610aefa665380c67538e464d0", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/c5b066ab30e36c1610aefa665380c67538e464d0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/searchContent/__files/repositories_167174_contents_src_attributes_classesjs-d7ab2e43-a548-4208-a44b-5d15b0c3b195.json", + "mode": "100644", + "type": "blob", + "sha": "30f66e74aa00c449a7ccd2f87369c12458cafa3a", + "size": 7194, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/30f66e74aa00c449a7ccd2f87369c12458cafa3a" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/searchContent/__files/search_code-8ebadd89-ed2a-49f2-9dbd-490cadc9923a.json", + "mode": "100644", + "type": "blob", + "sha": "d51cfe31491a670ac36b78a91db6ed5ef0aeb1e6", + "size": 36039, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d51cfe31491a670ac36b78a91db6ed5ef0aeb1e6" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/searchContent/__files/user-d3b1f32c-0a98-4c3d-a630-00f934483deb.json", + "mode": "100644", + "type": "blob", + "sha": "41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0", + "size": 1640, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/searchContent/mappings", + "mode": "040000", + "type": "tree", + "sha": "b49f2265d8335b4abf0fad31990bbec14632b10e", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/b49f2265d8335b4abf0fad31990bbec14632b10e" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/searchContent/mappings/repositories_167174_contents_src_attributes_classesjs-3-d7ab2e.json", + "mode": "100644", + "type": "blob", + "sha": "2f1e6be111bc3785fb4ed7581edd13b77187c649", + "size": 2030, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/2f1e6be111bc3785fb4ed7581edd13b77187c649" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/searchContent/mappings/search_code-2-8ebadd.json", + "mode": "100644", + "type": "blob", + "sha": "e82252de2a2c492f44a2bbbe4a64b129351ded38", + "size": 1695, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/e82252de2a2c492f44a2bbbe4a64b129351ded38" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/searchContent/mappings/user-1-d3b1f3.json", + "mode": "100644", + "type": "blob", + "sha": "8d6b643909bc15aa97cc13e5736b20d11fdef72c", + "size": 1829, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/8d6b643909bc15aa97cc13e5736b20d11fdef72c" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/searchUsers", + "mode": "040000", + "type": "tree", + "sha": "dc4106bcf9e67251aa9a2e7baeb98ac65c3d0660", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/dc4106bcf9e67251aa9a2e7baeb98ac65c3d0660" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/searchUsers/__files", + "mode": "040000", + "type": "tree", + "sha": "aad61ec0c19ab45048377ede384740c1e4a28898", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/aad61ec0c19ab45048377ede384740c1e4a28898" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/searchUsers/__files/search_users-0ca09437-a0ff-43ac-8953-215b38b51121.json", + "mode": "100644", + "type": "blob", + "sha": "f73f94802591bb6fe6440bb8fc0b9ebad96d14cd", + "size": 6514, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/f73f94802591bb6fe6440bb8fc0b9ebad96d14cd" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/searchUsers/__files/user-76f6274b-3142-44e3-a93a-9584aa8bfe0d.json", + "mode": "100644", + "type": "blob", + "sha": "946fa4f0cce3d66af550262a926c6428b9ff9417", + "size": 1368, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/946fa4f0cce3d66af550262a926c6428b9ff9417" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/searchUsers/__files/users_mojombo-6e29c619-1712-420d-b911-4f937c2a5cb1.json", + "mode": "100644", + "type": "blob", + "sha": "06c040c9d8d58db88dfdd11e09ffdd61b11a2826", + "size": 1302, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/06c040c9d8d58db88dfdd11e09ffdd61b11a2826" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/searchUsers/mappings", + "mode": "040000", + "type": "tree", + "sha": "d8d710709dc9ab114b8b256e605aa8211fe0dbb8", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/d8d710709dc9ab114b8b256e605aa8211fe0dbb8" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/searchUsers/mappings/search_users-2-0ca094.json", + "mode": "100644", + "type": "blob", + "sha": "53b2048e914ab49d2baa861b7178aad39fbc0d3f", + "size": 1624, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/53b2048e914ab49d2baa861b7178aad39fbc0d3f" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/searchUsers/mappings/user-1-76f627.json", + "mode": "100644", + "type": "blob", + "sha": "66372bf38ad0b7d699dbe218472cebb6ce632caf", + "size": 1773, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/66372bf38ad0b7d699dbe218472cebb6ce632caf" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/searchUsers/mappings/users_mojombo-3-6e29c6.json", + "mode": "100644", + "type": "blob", + "sha": "5ec66d99c1ca93ef9695a30d0a92bddd05896eee", + "size": 1800, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/5ec66d99c1ca93ef9695a30d0a92bddd05896eee" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/testListAllRepositories", + "mode": "040000", + "type": "tree", + "sha": "ea76d70343714e68e9941312a2ebc67d2856ab3e", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/ea76d70343714e68e9941312a2ebc67d2856ab3e" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/testListAllRepositories/__files", + "mode": "040000", + "type": "tree", + "sha": "b6389c0be4d1620906a454809ccf31284fd4da1c", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/b6389c0be4d1620906a454809ccf31284fd4da1c" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/testListAllRepositories/__files/repositories-7bda3de6-8df5-4296-b787-0453ab408e59.json", + "mode": "100644", + "type": "blob", + "sha": "2795469cca2109d3c3688ae471c151e1a7a06b61", + "size": 461236, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/2795469cca2109d3c3688ae471c151e1a7a06b61" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/testListAllRepositories/__files/repositories-85ebe399-5214-499f-92fd-055f864faad2.json", + "mode": "100644", + "type": "blob", + "sha": "c75b8d3b47f195307e4426012dcfba51993c2ce6", + "size": 456704, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/c75b8d3b47f195307e4426012dcfba51993c2ce6" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/testListAllRepositories/__files/user-9eed5705-4dda-41d0-86a0-7cf31d34af75.json", + "mode": "100644", + "type": "blob", + "sha": "41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0", + "size": 1640, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/41fc9e3d00bf94809ea8e58c4ca4a528d32b46f0" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/testListAllRepositories/mappings", + "mode": "040000", + "type": "tree", + "sha": "764a5c10cedc3ba5c9454707b4b95a45608c506f", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/764a5c10cedc3ba5c9454707b4b95a45608c506f" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/testListAllRepositories/mappings/repositories-2-7bda3d.json", + "mode": "100644", + "type": "blob", + "sha": "c6869da6e137c591496dbccbc144d1a4fad7f36f", + "size": 1938, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/c6869da6e137c591496dbccbc144d1a4fad7f36f" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/testListAllRepositories/mappings/repositories-3-85ebe3.json", + "mode": "100644", + "type": "blob", + "sha": "6a39d7929d7de8e22addd7eaa8cbd9e27384c828", + "size": 1948, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/6a39d7929d7de8e22addd7eaa8cbd9e27384c828" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/testListAllRepositories/mappings/user-1-9eed57.json", + "mode": "100644", + "type": "blob", + "sha": "7d6aaeea9cf6e12594fb50239e055c1816036417", + "size": 1829, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/7d6aaeea9cf6e12594fb50239e055c1816036417" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/testListMyAuthorizations", + "mode": "040000", + "type": "tree", + "sha": "b8000bacd384c7b1e27f076e9ab8f58b4e9bc542", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/b8000bacd384c7b1e27f076e9ab8f58b4e9bc542" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/testListMyAuthorizations/__files", + "mode": "040000", + "type": "tree", + "sha": "97f16528f59c149eb2f2b33435e228144a316bd5", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/97f16528f59c149eb2f2b33435e228144a316bd5" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/testListMyAuthorizations/__files/authorizations-4b8125f6-3ec7-4326-9682-19b9e0a05de5.json", + "mode": "100644", + "type": "blob", + "sha": "44a65ad6323d7fee0e93334464c68fff127a5d95", + "size": 9854, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/44a65ad6323d7fee0e93334464c68fff127a5d95" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/testListMyAuthorizations/mappings", + "mode": "040000", + "type": "tree", + "sha": "fb12a211b38c044a6c5b20eb551ef6a3742c9c60", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/fb12a211b38c044a6c5b20eb551ef6a3742c9c60" + }, + { + "path": "src/test/resources/org/kohsuke/github/GitHubTest/wiremock/testListMyAuthorizations/mappings/authorizations-1-4b8125.json", + "mode": "100644", + "type": "blob", + "sha": "c4ea93a41a6aba02dc6a0a3855e65d52fda52dc6", + "size": 1613, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/c4ea93a41a6aba02dc6a0a3855e65d52fda52dc6" + }, + { + "path": "src/test/resources/org/kohsuke/github/WireMockStatusReporterTest", + "mode": "040000", + "type": "tree", + "sha": "33082938818f124f06e42ac446027ff69856676b", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/33082938818f124f06e42ac446027ff69856676b" + }, + { + "path": "src/test/resources/org/kohsuke/github/WireMockStatusReporterTest/wiremock", + "mode": "040000", + "type": "tree", + "sha": "e202991048b1d162559224ec83d76ac3d3c0b759", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/e202991048b1d162559224ec83d76ac3d3c0b759" + }, + { + "path": "src/test/resources/org/kohsuke/github/WireMockStatusReporterTest/wiremock/BasicBehaviors_whenNotProxying", + "mode": "040000", + "type": "tree", + "sha": "2456a65adb742f404d06f80633cd8cd55cb6526f", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/2456a65adb742f404d06f80633cd8cd55cb6526f" + }, + { + "path": "src/test/resources/org/kohsuke/github/WireMockStatusReporterTest/wiremock/BasicBehaviors_whenNotProxying/__files", + "mode": "040000", + "type": "tree", + "sha": "682a1b7ec63dbf3e5cf235513751a6f567e53c8a", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/682a1b7ec63dbf3e5cf235513751a6f567e53c8a" + }, + { + "path": "src/test/resources/org/kohsuke/github/WireMockStatusReporterTest/wiremock/BasicBehaviors_whenNotProxying/__files/repos_github-api_github-api-0a34447d-6390-42da-ad5b-25bb566547f0.json", + "mode": "100644", + "type": "blob", + "sha": "417753cf0851b820c3964791e5dcd0cd10967a66", + "size": 6841, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/417753cf0851b820c3964791e5dcd0cd10967a66" + }, + { + "path": "src/test/resources/org/kohsuke/github/WireMockStatusReporterTest/wiremock/BasicBehaviors_whenNotProxying/__files/user-b4b6d514-c9e8-488f-802f-35e51d3ba5b3.json", + "mode": "100644", + "type": "blob", + "sha": "b9ce24cb03e26e4d59e94a45bb9eb783707b714a", + "size": 1368, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/b9ce24cb03e26e4d59e94a45bb9eb783707b714a" + }, + { + "path": "src/test/resources/org/kohsuke/github/WireMockStatusReporterTest/wiremock/BasicBehaviors_whenNotProxying/mappings", + "mode": "040000", + "type": "tree", + "sha": "4d11f89b1fe05ced3a2877ad0f77999bba43eee5", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/4d11f89b1fe05ced3a2877ad0f77999bba43eee5" + }, + { + "path": "src/test/resources/org/kohsuke/github/WireMockStatusReporterTest/wiremock/BasicBehaviors_whenNotProxying/mappings/repos_github-api_github-api-2-0a3444.json", + "mode": "100644", + "type": "blob", + "sha": "2f4e8273aaade32a77f1b7f6883add15577003fb", + "size": 1812, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/2f4e8273aaade32a77f1b7f6883add15577003fb" + }, + { + "path": "src/test/resources/org/kohsuke/github/WireMockStatusReporterTest/wiremock/BasicBehaviors_whenNotProxying/mappings/user-1-b4b6d5.json", + "mode": "100644", + "type": "blob", + "sha": "b1eda52765a4651a01a013b44a8a2ac7c056bfd7", + "size": 1739, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/b1eda52765a4651a01a013b44a8a2ac7c056bfd7" + }, + { + "path": "src/test/resources/org/kohsuke/github/WireMockStatusReporterTest/wiremock/BasicBehaviors_whenProxying", + "mode": "040000", + "type": "tree", + "sha": "2456a65adb742f404d06f80633cd8cd55cb6526f", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/2456a65adb742f404d06f80633cd8cd55cb6526f" + }, + { + "path": "src/test/resources/org/kohsuke/github/WireMockStatusReporterTest/wiremock/BasicBehaviors_whenProxying/__files", + "mode": "040000", + "type": "tree", + "sha": "682a1b7ec63dbf3e5cf235513751a6f567e53c8a", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/682a1b7ec63dbf3e5cf235513751a6f567e53c8a" + }, + { + "path": "src/test/resources/org/kohsuke/github/WireMockStatusReporterTest/wiremock/BasicBehaviors_whenProxying/__files/repos_github-api_github-api-0a34447d-6390-42da-ad5b-25bb566547f0.json", + "mode": "100644", + "type": "blob", + "sha": "417753cf0851b820c3964791e5dcd0cd10967a66", + "size": 6841, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/417753cf0851b820c3964791e5dcd0cd10967a66" + }, + { + "path": "src/test/resources/org/kohsuke/github/WireMockStatusReporterTest/wiremock/BasicBehaviors_whenProxying/__files/user-b4b6d514-c9e8-488f-802f-35e51d3ba5b3.json", + "mode": "100644", + "type": "blob", + "sha": "b9ce24cb03e26e4d59e94a45bb9eb783707b714a", + "size": 1368, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/b9ce24cb03e26e4d59e94a45bb9eb783707b714a" + }, + { + "path": "src/test/resources/org/kohsuke/github/WireMockStatusReporterTest/wiremock/BasicBehaviors_whenProxying/mappings", + "mode": "040000", + "type": "tree", + "sha": "4d11f89b1fe05ced3a2877ad0f77999bba43eee5", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/4d11f89b1fe05ced3a2877ad0f77999bba43eee5" + }, + { + "path": "src/test/resources/org/kohsuke/github/WireMockStatusReporterTest/wiremock/BasicBehaviors_whenProxying/mappings/repos_github-api_github-api-2-0a3444.json", + "mode": "100644", + "type": "blob", + "sha": "2f4e8273aaade32a77f1b7f6883add15577003fb", + "size": 1812, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/2f4e8273aaade32a77f1b7f6883add15577003fb" + }, + { + "path": "src/test/resources/org/kohsuke/github/WireMockStatusReporterTest/wiremock/BasicBehaviors_whenProxying/mappings/user-1-b4b6d5.json", + "mode": "100644", + "type": "blob", + "sha": "b1eda52765a4651a01a013b44a8a2ac7c056bfd7", + "size": 1739, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/b1eda52765a4651a01a013b44a8a2ac7c056bfd7" + }, + { + "path": "src/test/resources/org/kohsuke/github/WireMockStatusReporterTest/wiremock/user_whenNotProxying_Stubbed", + "mode": "040000", + "type": "tree", + "sha": "c10f8380d8c5549748034299f29d0a7e01419717", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/c10f8380d8c5549748034299f29d0a7e01419717" + }, + { + "path": "src/test/resources/org/kohsuke/github/WireMockStatusReporterTest/wiremock/user_whenNotProxying_Stubbed/__files", + "mode": "040000", + "type": "tree", + "sha": "50cec253be89caffa8edb7e0fd64cf9ea8834c5f", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/50cec253be89caffa8edb7e0fd64cf9ea8834c5f" + }, + { + "path": "src/test/resources/org/kohsuke/github/WireMockStatusReporterTest/wiremock/user_whenNotProxying_Stubbed/__files/user-67d218ce-0abd-4a0a-98ea-626565e977ca.json", + "mode": "100644", + "type": "blob", + "sha": "672e8de4a17a2dee91af8b1367b5278025e1bfa4", + "size": 1473, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/672e8de4a17a2dee91af8b1367b5278025e1bfa4" + }, + { + "path": "src/test/resources/org/kohsuke/github/WireMockStatusReporterTest/wiremock/user_whenNotProxying_Stubbed/mappings", + "mode": "040000", + "type": "tree", + "sha": "7c0a5e155b8be16d057e97cc3d303ed81c610eac", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/7c0a5e155b8be16d057e97cc3d303ed81c610eac" + }, + { + "path": "src/test/resources/org/kohsuke/github/WireMockStatusReporterTest/wiremock/user_whenNotProxying_Stubbed/mappings/user-1-67d218.json", + "mode": "100644", + "type": "blob", + "sha": "96d469df22cb4a210dd88f3281f3f5e820d1b6c9", + "size": 1741, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/96d469df22cb4a210dd88f3281f3f5e820d1b6c9" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras", + "mode": "040000", + "type": "tree", + "sha": "c6a8cdce669b5f093b55998ddc297332ebb01b4f", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/c6a8cdce669b5f093b55998ddc297332ebb01b4f" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest", + "mode": "040000", + "type": "tree", + "sha": "262ca3d51b612d02a0dd4cc6f95df8faa694fa34", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/262ca3d51b612d02a0dd4cc6f95df8faa694fa34" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock", + "mode": "040000", + "type": "tree", + "sha": "bd8cdd397818a50ee55eaf5e20ef90053d532786", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/bd8cdd397818a50ee55eaf5e20ef90053d532786" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/DefaultConnector", + "mode": "040000", + "type": "tree", + "sha": "8220cedd539c5450fcc94038f7430fe44bfaa95b", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/8220cedd539c5450fcc94038f7430fe44bfaa95b" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/DefaultConnector/__files", + "mode": "040000", + "type": "tree", + "sha": "97825df453ff6d3dbcddf8f9cd57000d4b8e2536", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/97825df453ff6d3dbcddf8f9cd57000d4b8e2536" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/DefaultConnector/__files/orgs_github-api-test-org-735e8274-2b9f-4e56-b7eb-efb51671aa16.json", + "mode": "100644", + "type": "blob", + "sha": "61547e3d987dbf85ed43d15ec6ae2239e59bd4a6", + "size": 1480, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/61547e3d987dbf85ed43d15ec6ae2239e59bd4a6" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/DefaultConnector/__files/rate_limit-56a45440-7250-4615-9e39-f32ed5f24d40.json", + "mode": "100644", + "type": "blob", + "sha": "14af865bef698e323d6307b0498dd7e889424611", + "size": 495, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/14af865bef698e323d6307b0498dd7e889424611" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/DefaultConnector/__files/repos_github-api-test-org_github-api-06582096-97d7-484a-9f75-97f38540d4ba.json", + "mode": "100644", + "type": "blob", + "sha": "d0368c4c6e6af2ef1f47df73c42385985f362353", + "size": 18903, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d0368c4c6e6af2ef1f47df73c42385985f362353" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/DefaultConnector/__files/repos_github-api-test-org_github-api-1ed5a89a-3504-4e58-8feb-36ea82bc0fc6.json", + "mode": "100644", + "type": "blob", + "sha": "6b23662f8e9a99b1218b9fcf772430d4c5936086", + "size": 18893, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/6b23662f8e9a99b1218b9fcf772430d4c5936086" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/DefaultConnector/__files/repos_github-api-test-org_github-api-1f9c125d-f4b9-4cf2-a577-db6653212d6a.json", + "mode": "100644", + "type": "blob", + "sha": "d0d5acb3d5c7c0c7b5ef24fb36870466028c1a88", + "size": 18896, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d0d5acb3d5c7c0c7b5ef24fb36870466028c1a88" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/DefaultConnector/__files/repos_github-api-test-org_github-api-52d2b85d-6f62-441f-9c39-f8431db45130.json", + "mode": "100644", + "type": "blob", + "sha": "d0368c4c6e6af2ef1f47df73c42385985f362353", + "size": 18903, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d0368c4c6e6af2ef1f47df73c42385985f362353" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/DefaultConnector/__files/repos_github-api-test-org_github-api-5f00134d-2aea-477a-8bcc-eddf19710263.json", + "mode": "100644", + "type": "blob", + "sha": "d0d5acb3d5c7c0c7b5ef24fb36870466028c1a88", + "size": 18896, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d0d5acb3d5c7c0c7b5ef24fb36870466028c1a88" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/DefaultConnector/__files/repos_github-api-test-org_github-api-931c2ba3-3b54-426d-a611-5c8a8dc7e400.json", + "mode": "100644", + "type": "blob", + "sha": "d0368c4c6e6af2ef1f47df73c42385985f362353", + "size": 18903, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d0368c4c6e6af2ef1f47df73c42385985f362353" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/DefaultConnector/__files/repos_github-api-test-org_github-api-af0497da-2a7b-46d0-9dc0-8feddfc9dc6c.json", + "mode": "100644", + "type": "blob", + "sha": "d0368c4c6e6af2ef1f47df73c42385985f362353", + "size": 18903, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d0368c4c6e6af2ef1f47df73c42385985f362353" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/DefaultConnector/__files/repos_github-api-test-org_github-api-b529a21c-daaa-49ea-80ad-5d67b3c1a6fb.json", + "mode": "100644", + "type": "blob", + "sha": "6b23662f8e9a99b1218b9fcf772430d4c5936086", + "size": 18893, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/6b23662f8e9a99b1218b9fcf772430d4c5936086" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/DefaultConnector/__files/repos_github-api-test-org_github-api-bcd9c446-f8cb-4092-a284-5009153aed91.json", + "mode": "100644", + "type": "blob", + "sha": "d0d5acb3d5c7c0c7b5ef24fb36870466028c1a88", + "size": 18896, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d0d5acb3d5c7c0c7b5ef24fb36870466028c1a88" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/DefaultConnector/__files/repos_github-api-test-org_github-api-ca8e64d2-a8af-4c75-af59-63b51e2eb716.json", + "mode": "100644", + "type": "blob", + "sha": "d0368c4c6e6af2ef1f47df73c42385985f362353", + "size": 18903, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d0368c4c6e6af2ef1f47df73c42385985f362353" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/DefaultConnector/__files/repos_github-api-test-org_github-api-cafca820-5725-492f-abaf-12b2c96adbc6.json", + "mode": "100644", + "type": "blob", + "sha": "d0d5acb3d5c7c0c7b5ef24fb36870466028c1a88", + "size": 18896, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d0d5acb3d5c7c0c7b5ef24fb36870466028c1a88" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/DefaultConnector/__files/repos_github-api-test-org_github-api-ce1bc2f8-f17e-463b-a950-02487f6d5dbe.json", + "mode": "100644", + "type": "blob", + "sha": "d0d5acb3d5c7c0c7b5ef24fb36870466028c1a88", + "size": 18896, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d0d5acb3d5c7c0c7b5ef24fb36870466028c1a88" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/DefaultConnector/__files/repos_github-api-test-org_github-api-cec25305-37b3-4ab0-a5ba-2f7513798ed1.json", + "mode": "100644", + "type": "blob", + "sha": "6b23662f8e9a99b1218b9fcf772430d4c5936086", + "size": 18893, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/6b23662f8e9a99b1218b9fcf772430d4c5936086" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/DefaultConnector/__files/repos_github-api-test-org_github-api-e79386f9-0358-4760-af21-eefcff4a37c8.json", + "mode": "100644", + "type": "blob", + "sha": "6b23662f8e9a99b1218b9fcf772430d4c5936086", + "size": 18893, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/6b23662f8e9a99b1218b9fcf772430d4c5936086" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/DefaultConnector/__files/user-b5238674-bdba-4cb5-ae17-49108689843a.json", + "mode": "100644", + "type": "blob", + "sha": "8f5f361680b9891d0fc84ea89ed01f3ed1da4e11", + "size": 1368, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/8f5f361680b9891d0fc84ea89ed01f3ed1da4e11" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/DefaultConnector/mappings", + "mode": "040000", + "type": "tree", + "sha": "ba89c68f2857004ac9a93cba3b9381e538566276", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/ba89c68f2857004ac9a93cba3b9381e538566276" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/DefaultConnector/mappings/orgs_github-api-test-org-3-735e82.json", + "mode": "100644", + "type": "blob", + "sha": "dfad373d05c4c8586b24278146a2753735262084", + "size": 1875, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/dfad373d05c4c8586b24278146a2753735262084" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/DefaultConnector/mappings/rate_limit-2-56a454.json", + "mode": "100644", + "type": "blob", + "sha": "550d8563a1b2ea26c91002d93c0efd04d1d21291", + "size": 1582, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/550d8563a1b2ea26c91002d93c0efd04d1d21291" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/DefaultConnector/mappings/repos_github-api-test-org_github-api-10-ca8e64.json", + "mode": "100644", + "type": "blob", + "sha": "90694b26553a0f40e7da5d0e62b5f5b4d7c41ada", + "size": 2098, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/90694b26553a0f40e7da5d0e62b5f5b4d7c41ada" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/DefaultConnector/mappings/repos_github-api-test-org_github-api-11-065820.json", + "mode": "100644", + "type": "blob", + "sha": "6de302112d0f0fee876390d04794483b7958fa15", + "size": 2098, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/6de302112d0f0fee876390d04794483b7958fa15" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/DefaultConnector/mappings/repos_github-api-test-org_github-api-12-af0497.json", + "mode": "100644", + "type": "blob", + "sha": "8987c2308b36da1b828ded8ca382e4cc240c5aec", + "size": 2098, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/8987c2308b36da1b828ded8ca382e4cc240c5aec" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/DefaultConnector/mappings/repos_github-api-test-org_github-api-13-52d2b8.json", + "mode": "100644", + "type": "blob", + "sha": "d49e426160988289dfcb980dfb19b2e25068e925", + "size": 2099, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d49e426160988289dfcb980dfb19b2e25068e925" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/DefaultConnector/mappings/repos_github-api-test-org_github-api-14-cec253.json", + "mode": "100644", + "type": "blob", + "sha": "12c9b19b1ebaa6a3f89dde4bc031a261e98a5e95", + "size": 2100, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/12c9b19b1ebaa6a3f89dde4bc031a261e98a5e95" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/DefaultConnector/mappings/repos_github-api-test-org_github-api-15-1ed5a8.json", + "mode": "100644", + "type": "blob", + "sha": "967b48f0e6cfa4ff053f476e0aa6efecc8ef913c", + "size": 2100, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/967b48f0e6cfa4ff053f476e0aa6efecc8ef913c" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/DefaultConnector/mappings/repos_github-api-test-org_github-api-16-b529a2.json", + "mode": "100644", + "type": "blob", + "sha": "264db72212681fc42486d8718abbf1327e3638e5", + "size": 2100, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/264db72212681fc42486d8718abbf1327e3638e5" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/DefaultConnector/mappings/repos_github-api-test-org_github-api-17-e79386.json", + "mode": "100644", + "type": "blob", + "sha": "f0fa51b7aa42ab6f103f7998046840c12dcee486", + "size": 2024, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/f0fa51b7aa42ab6f103f7998046840c12dcee486" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/DefaultConnector/mappings/repos_github-api-test-org_github-api-4-cafca8.json", + "mode": "100644", + "type": "blob", + "sha": "730d06350d42759d1e8cd996c74a68d66673657a", + "size": 2055, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/730d06350d42759d1e8cd996c74a68d66673657a" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/DefaultConnector/mappings/repos_github-api-test-org_github-api-5-1f9c12.json", + "mode": "100644", + "type": "blob", + "sha": "00e526f1f9c4e4453e41e24a529c574a63bb833b", + "size": 2097, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/00e526f1f9c4e4453e41e24a529c574a63bb833b" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/DefaultConnector/mappings/repos_github-api-test-org_github-api-6-ce1bc2.json", + "mode": "100644", + "type": "blob", + "sha": "64acec86ae58b57238f59490e51f0cab217ce725", + "size": 2097, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/64acec86ae58b57238f59490e51f0cab217ce725" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/DefaultConnector/mappings/repos_github-api-test-org_github-api-7-bcd9c4.json", + "mode": "100644", + "type": "blob", + "sha": "5172924615641cb210880d39cd9c7a98f733f2ce", + "size": 2097, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/5172924615641cb210880d39cd9c7a98f733f2ce" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/DefaultConnector/mappings/repos_github-api-test-org_github-api-8-5f0013.json", + "mode": "100644", + "type": "blob", + "sha": "ee045ab65e9e3471cb0b3d957bf462161c58821c", + "size": 2097, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/ee045ab65e9e3471cb0b3d957bf462161c58821c" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/DefaultConnector/mappings/repos_github-api-test-org_github-api-9-931c2b.json", + "mode": "100644", + "type": "blob", + "sha": "3c3498b8d81da77775e039149d718d14d5ac25a0", + "size": 2019, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/3c3498b8d81da77775e039149d718d14d5ac25a0" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/DefaultConnector/mappings/user-1-b52386.json", + "mode": "100644", + "type": "blob", + "sha": "5603edc87ded0631463eacb3aa770f368ade7538", + "size": 1773, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/5603edc87ded0631463eacb3aa770f368ade7538" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_Cache_MaxAgeDefault_Zero", + "mode": "040000", + "type": "tree", + "sha": "fd76a418ca07266bcb5a41b54cce048ca3501fc4", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/fd76a418ca07266bcb5a41b54cce048ca3501fc4" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_Cache_MaxAgeDefault_Zero/__files", + "mode": "040000", + "type": "tree", + "sha": "1d840330ed92470d8067ddffb8a774099ba5e071", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/1d840330ed92470d8067ddffb8a774099ba5e071" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_Cache_MaxAgeDefault_Zero/__files/orgs_github-api-test-org-ec2931f3-a8cd-4482-a866-aca52276d270.json", + "mode": "100644", + "type": "blob", + "sha": "61547e3d987dbf85ed43d15ec6ae2239e59bd4a6", + "size": 1480, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/61547e3d987dbf85ed43d15ec6ae2239e59bd4a6" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_Cache_MaxAgeDefault_Zero/__files/rate_limit-36588a64-cb68-4ea5-8995-c2cdced6b84a.json", + "mode": "100644", + "type": "blob", + "sha": "c92888ad30e09bfcf4a7e1e9b6bb6d03fe3239fb", + "size": 495, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/c92888ad30e09bfcf4a7e1e9b6bb6d03fe3239fb" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_Cache_MaxAgeDefault_Zero/__files/repos_github-api-test-org_github-api-0db05723-d8ab-412d-bcaf-fa416eb44138.json", + "mode": "100644", + "type": "blob", + "sha": "ab84644ccab80529a2fe17ed2c8ebd0d2dd7077c", + "size": 18927, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/ab84644ccab80529a2fe17ed2c8ebd0d2dd7077c" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_Cache_MaxAgeDefault_Zero/__files/repos_github-api-test-org_github-api-5432b23c-70f2-4ecf-a380-a232afeef015.json", + "mode": "100644", + "type": "blob", + "sha": "ab84644ccab80529a2fe17ed2c8ebd0d2dd7077c", + "size": 18927, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/ab84644ccab80529a2fe17ed2c8ebd0d2dd7077c" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_Cache_MaxAgeDefault_Zero/__files/repos_github-api-test-org_github-api-7e396e4c-c5eb-4bc0-a5cd-3d9f75fac0f0.json", + "mode": "100644", + "type": "blob", + "sha": "ae739dc61cbd1d64cca3dace959af501260bd435", + "size": 18893, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/ae739dc61cbd1d64cca3dace959af501260bd435" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_Cache_MaxAgeDefault_Zero/__files/repos_github-api-test-org_github-api-b99f84bd-4eaa-4aeb-8f1c-ba64e617d15f.json", + "mode": "100644", + "type": "blob", + "sha": "c795c5e84daaff6291551f656d3acd83f1c54f14", + "size": 18896, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/c795c5e84daaff6291551f656d3acd83f1c54f14" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_Cache_MaxAgeDefault_Zero/__files/user-5dbb2b95-e55b-4185-b143-ec3f21495fa6.json", + "mode": "100644", + "type": "blob", + "sha": "8f5f361680b9891d0fc84ea89ed01f3ed1da4e11", + "size": 1368, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/8f5f361680b9891d0fc84ea89ed01f3ed1da4e11" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_Cache_MaxAgeDefault_Zero/mappings", + "mode": "040000", + "type": "tree", + "sha": "36c2f84fb30c3ebb955212ca122b18b5047bcb2c", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/36c2f84fb30c3ebb955212ca122b18b5047bcb2c" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_Cache_MaxAgeDefault_Zero/mappings/orgs_github-api-test-org-3-ec2931.json", + "mode": "100644", + "type": "blob", + "sha": "1f6737caba5ed9ddf5910af4259e2c82e90de0b5", + "size": 1857, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/1f6737caba5ed9ddf5910af4259e2c82e90de0b5" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_Cache_MaxAgeDefault_Zero/mappings/rate_limit-2-36588a.json", + "mode": "100644", + "type": "blob", + "sha": "6ffb0c6a47163694c2342fa98b818f6fb961f72e", + "size": 1564, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/6ffb0c6a47163694c2342fa98b818f6fb961f72e" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_Cache_MaxAgeDefault_Zero/mappings/repos_github-api-test-org_github-api-10-10-5432b2.json", + "mode": "100644", + "type": "blob", + "sha": "7369bc5f118339be99974f2ea96554ac549af2f2", + "size": 2078, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/7369bc5f118339be99974f2ea96554ac549af2f2" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_Cache_MaxAgeDefault_Zero/mappings/repos_github-api-test-org_github-api-11-11-2e2a6e.json", + "mode": "100644", + "type": "blob", + "sha": "ecac014b94f6739d69d4896a609e23e475055f48", + "size": 1852, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/ecac014b94f6739d69d4896a609e23e475055f48" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_Cache_MaxAgeDefault_Zero/mappings/repos_github-api-test-org_github-api-12-12-a9ae79.json", + "mode": "100644", + "type": "blob", + "sha": "1ad843af661a855b19a4849f98ebfb44f032e685", + "size": 1850, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/1ad843af661a855b19a4849f98ebfb44f032e685" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_Cache_MaxAgeDefault_Zero/mappings/repos_github-api-test-org_github-api-13-13-b2221a.json", + "mode": "100644", + "type": "blob", + "sha": "d5cdf22a5c61e2b9b32252f632451a44a4d085b3", + "size": 1850, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d5cdf22a5c61e2b9b32252f632451a44a4d085b3" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_Cache_MaxAgeDefault_Zero/mappings/repos_github-api-test-org_github-api-14-14-7e396e.json", + "mode": "100644", + "type": "blob", + "sha": "02c96fcb9f1e3d59649996c5198d752145c94f4c", + "size": 2193, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/02c96fcb9f1e3d59649996c5198d752145c94f4c" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_Cache_MaxAgeDefault_Zero/mappings/repos_github-api-test-org_github-api-15-15-bc8d8b.json", + "mode": "100644", + "type": "blob", + "sha": "6dd2a1597786c234d8d59f30d1bcb1c6c75b8767", + "size": 1853, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/6dd2a1597786c234d8d59f30d1bcb1c6c75b8767" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_Cache_MaxAgeDefault_Zero/mappings/repos_github-api-test-org_github-api-16-16-3857dc.json", + "mode": "100644", + "type": "blob", + "sha": "a18687c281dfa0e9fca6f757ee366f698d995dad", + "size": 1851, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a18687c281dfa0e9fca6f757ee366f698d995dad" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_Cache_MaxAgeDefault_Zero/mappings/repos_github-api-test-org_github-api-17-17-4d123b.json", + "mode": "100644", + "type": "blob", + "sha": "49e0235004414d59572881d8aa4f8ff43052f532", + "size": 1776, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/49e0235004414d59572881d8aa4f8ff43052f532" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_Cache_MaxAgeDefault_Zero/mappings/repos_github-api-test-org_github-api-4-4-b99f84.json", + "mode": "100644", + "type": "blob", + "sha": "8fea8fa13b0f722e4bbff3e228076ab6bfd36676", + "size": 2035, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/8fea8fa13b0f722e4bbff3e228076ab6bfd36676" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_Cache_MaxAgeDefault_Zero/mappings/repos_github-api-test-org_github-api-5-5-5e7b86.json", + "mode": "100644", + "type": "blob", + "sha": "2d95e4c8b9207553ae4363dabccbbd2602407b51", + "size": 1851, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/2d95e4c8b9207553ae4363dabccbbd2602407b51" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_Cache_MaxAgeDefault_Zero/mappings/repos_github-api-test-org_github-api-6-6-e20958.json", + "mode": "100644", + "type": "blob", + "sha": "1cb35daa7e932a113d2fb787075082813f772ccd", + "size": 1849, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/1cb35daa7e932a113d2fb787075082813f772ccd" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_Cache_MaxAgeDefault_Zero/mappings/repos_github-api-test-org_github-api-7-7-597005.json", + "mode": "100644", + "type": "blob", + "sha": "4830f0a132c7b649cb09a1ea9794561968a79cb1", + "size": 1849, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/4830f0a132c7b649cb09a1ea9794561968a79cb1" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_Cache_MaxAgeDefault_Zero/mappings/repos_github-api-test-org_github-api-8-8-441d13.json", + "mode": "100644", + "type": "blob", + "sha": "817466b7bfd3d8a7ca5937f1feaff5b231fea31c", + "size": 1734, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/817466b7bfd3d8a7ca5937f1feaff5b231fea31c" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_Cache_MaxAgeDefault_Zero/mappings/repos_github-api-test-org_github-api-9-9-0db057.json", + "mode": "100644", + "type": "blob", + "sha": "1807eb30c9918fb20b6d81b5c9a60e699d13c1a0", + "size": 2025, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/1807eb30c9918fb20b6d81b5c9a60e699d13c1a0" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_Cache_MaxAgeDefault_Zero/mappings/user-1-5dbb2b.json", + "mode": "100644", + "type": "blob", + "sha": "f3aede2877ea9bfb72cb5c0e79ea90f278130650", + "size": 1755, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/f3aede2877ea9bfb72cb5c0e79ea90f278130650" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_Cache_MaxAgeNone", + "mode": "040000", + "type": "tree", + "sha": "10d04e9f54f1f16c12cd999b0e21df96f404db3a", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/10d04e9f54f1f16c12cd999b0e21df96f404db3a" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_Cache_MaxAgeNone/__files", + "mode": "040000", + "type": "tree", + "sha": "61633eea08ebceb7cc5f4569e5c45fe1b256d014", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/61633eea08ebceb7cc5f4569e5c45fe1b256d014" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_Cache_MaxAgeNone/__files/orgs_github-api-test-org-1d3815b7-1441-4a5d-a4eb-ffa13c700503.json", + "mode": "100644", + "type": "blob", + "sha": "61547e3d987dbf85ed43d15ec6ae2239e59bd4a6", + "size": 1480, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/61547e3d987dbf85ed43d15ec6ae2239e59bd4a6" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_Cache_MaxAgeNone/__files/rate_limit-b23929e7-7216-403a-b1c4-1b0c2ecf6f85.json", + "mode": "100644", + "type": "blob", + "sha": "d885b3c295bfcd25dc58eb86ef651a94a6b2f586", + "size": 495, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d885b3c295bfcd25dc58eb86ef651a94a6b2f586" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_Cache_MaxAgeNone/__files/repos_github-api-test-org_github-api-02d53c37-9838-422a-9184-a08ef1487126.json", + "mode": "100644", + "type": "blob", + "sha": "ac56330ae5660cb378f57361170ad4a150c62f29", + "size": 18919, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/ac56330ae5660cb378f57361170ad4a150c62f29" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_Cache_MaxAgeNone/__files/repos_github-api-test-org_github-api-82db6373-85d8-4fc9-97c7-b98612c52402.json", + "mode": "100644", + "type": "blob", + "sha": "ac56330ae5660cb378f57361170ad4a150c62f29", + "size": 18919, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/ac56330ae5660cb378f57361170ad4a150c62f29" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_Cache_MaxAgeNone/__files/repos_github-api-test-org_github-api-ec57e178-8204-439b-b45a-58c773fa46f6.json", + "mode": "100644", + "type": "blob", + "sha": "e73f8f5894b32af0eb18d8920afd90a6059e7c8e", + "size": 18896, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/e73f8f5894b32af0eb18d8920afd90a6059e7c8e" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_Cache_MaxAgeNone/__files/user-d958863f-a1fb-4a46-bc43-aeccd3eef451.json", + "mode": "100644", + "type": "blob", + "sha": "8f5f361680b9891d0fc84ea89ed01f3ed1da4e11", + "size": 1368, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/8f5f361680b9891d0fc84ea89ed01f3ed1da4e11" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_Cache_MaxAgeNone/mappings", + "mode": "040000", + "type": "tree", + "sha": "ac9ee337306ca7ce4f17c5098e78356ab64a758a", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/ac9ee337306ca7ce4f17c5098e78356ab64a758a" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_Cache_MaxAgeNone/mappings/orgs_github-api-test-org-3-1d3815.json", + "mode": "100644", + "type": "blob", + "sha": "339fbf63487c9fb04cfdb7aea0ab52a7aef0ad6e", + "size": 1855, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/339fbf63487c9fb04cfdb7aea0ab52a7aef0ad6e" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_Cache_MaxAgeNone/mappings/rate_limit-2-b23929.json", + "mode": "100644", + "type": "blob", + "sha": "45879bdab1bfc2baa3b84ca29837b986f40441a0", + "size": 1562, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/45879bdab1bfc2baa3b84ca29837b986f40441a0" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_Cache_MaxAgeNone/mappings/repos_github-api-test-org_github-api-4-ec57e1.json", + "mode": "100644", + "type": "blob", + "sha": "36ef6465fb4f0d6e69896132afe03e3e5d7bf529", + "size": 2034, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/36ef6465fb4f0d6e69896132afe03e3e5d7bf529" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_Cache_MaxAgeNone/mappings/repos_github-api-test-org_github-api-5-82db63.json", + "mode": "100644", + "type": "blob", + "sha": "54af1a90bb0505e6538774c2fe20e9519904b665", + "size": 2015, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/54af1a90bb0505e6538774c2fe20e9519904b665" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_Cache_MaxAgeNone/mappings/repos_github-api-test-org_github-api-6-02d53c.json", + "mode": "100644", + "type": "blob", + "sha": "368f1bd68c7175667c13596307e01e0a018f9481", + "size": 2001, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/368f1bd68c7175667c13596307e01e0a018f9481" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_Cache_MaxAgeNone/mappings/user-1-d95886.json", + "mode": "100644", + "type": "blob", + "sha": "fe8650d26320e62ec8b4d5c2ff8e9ea65d8a86ad", + "size": 1753, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/fe8650d26320e62ec8b4d5c2ff8e9ea65d8a86ad" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_NoCache", + "mode": "040000", + "type": "tree", + "sha": "3b75f019cf6820cf044d11a2564978a07b01bb64", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/3b75f019cf6820cf044d11a2564978a07b01bb64" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_NoCache/__files", + "mode": "040000", + "type": "tree", + "sha": "4a7ce22540949ea645ecd6777cd3b48f84179b2e", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/4a7ce22540949ea645ecd6777cd3b48f84179b2e" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_NoCache/__files/orgs_github-api-test-org-82590d42-fccd-4d3b-8f87-b5b9c1bb672b.json", + "mode": "100644", + "type": "blob", + "sha": "61547e3d987dbf85ed43d15ec6ae2239e59bd4a6", + "size": 1480, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/61547e3d987dbf85ed43d15ec6ae2239e59bd4a6" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_NoCache/__files/rate_limit-e76bb3c7-edf0-4cc4-9e62-0163e5910625.json", + "mode": "100644", + "type": "blob", + "sha": "10296fcf9b091989ecd14a5d476711edfb8cb152", + "size": 495, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/10296fcf9b091989ecd14a5d476711edfb8cb152" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_NoCache/__files/repos_github-api-test-org_github-api-14477383-aab7-4a52-8d72-47e1ad29a34d.json", + "mode": "100644", + "type": "blob", + "sha": "70d7abd7ec10938851e283295e7d93a68adef5ed", + "size": 18910, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/70d7abd7ec10938851e283295e7d93a68adef5ed" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_NoCache/__files/repos_github-api-test-org_github-api-1ec048c4-808b-4541-a821-18f196cc23fe.json", + "mode": "100644", + "type": "blob", + "sha": "72eefca15184d11939b8efd6876c09dbd9c833fe", + "size": 18893, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/72eefca15184d11939b8efd6876c09dbd9c833fe" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_NoCache/__files/repos_github-api-test-org_github-api-31849f9f-0c72-4167-b458-853164cbb677.json", + "mode": "100644", + "type": "blob", + "sha": "70d7abd7ec10938851e283295e7d93a68adef5ed", + "size": 18910, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/70d7abd7ec10938851e283295e7d93a68adef5ed" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_NoCache/__files/repos_github-api-test-org_github-api-3e8ef833-99b0-4c1d-99e9-e7fd9cc26024.json", + "mode": "100644", + "type": "blob", + "sha": "72eefca15184d11939b8efd6876c09dbd9c833fe", + "size": 18893, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/72eefca15184d11939b8efd6876c09dbd9c833fe" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_NoCache/__files/repos_github-api-test-org_github-api-49fce600-b69e-4ef7-af64-594450ae1a1a.json", + "mode": "100644", + "type": "blob", + "sha": "70d7abd7ec10938851e283295e7d93a68adef5ed", + "size": 18910, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/70d7abd7ec10938851e283295e7d93a68adef5ed" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_NoCache/__files/repos_github-api-test-org_github-api-50e14b70-b8b5-4124-bc6e-b7d68a05ef3a.json", + "mode": "100644", + "type": "blob", + "sha": "a056cab7910010079e1afd778109d634f1f9f73a", + "size": 18896, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a056cab7910010079e1afd778109d634f1f9f73a" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_NoCache/__files/repos_github-api-test-org_github-api-57466b15-e7fb-46de-88ca-2ab26cc0fe7d.json", + "mode": "100644", + "type": "blob", + "sha": "a056cab7910010079e1afd778109d634f1f9f73a", + "size": 18896, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a056cab7910010079e1afd778109d634f1f9f73a" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_NoCache/__files/repos_github-api-test-org_github-api-703fd12f-995a-4af9-8504-10ff32c81100.json", + "mode": "100644", + "type": "blob", + "sha": "70d7abd7ec10938851e283295e7d93a68adef5ed", + "size": 18910, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/70d7abd7ec10938851e283295e7d93a68adef5ed" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_NoCache/__files/repos_github-api-test-org_github-api-720bd2cb-d00e-46c5-903f-3456521e4345.json", + "mode": "100644", + "type": "blob", + "sha": "a056cab7910010079e1afd778109d634f1f9f73a", + "size": 18896, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a056cab7910010079e1afd778109d634f1f9f73a" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_NoCache/__files/repos_github-api-test-org_github-api-766326ea-da2e-4fe5-bea2-157db149047a.json", + "mode": "100644", + "type": "blob", + "sha": "a056cab7910010079e1afd778109d634f1f9f73a", + "size": 18896, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a056cab7910010079e1afd778109d634f1f9f73a" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_NoCache/__files/repos_github-api-test-org_github-api-8a71a8b0-9915-4365-b581-5ca05b407fc6.json", + "mode": "100644", + "type": "blob", + "sha": "72eefca15184d11939b8efd6876c09dbd9c833fe", + "size": 18893, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/72eefca15184d11939b8efd6876c09dbd9c833fe" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_NoCache/__files/repos_github-api-test-org_github-api-99fb84f6-79c5-424c-ba10-007a9912567a.json", + "mode": "100644", + "type": "blob", + "sha": "a056cab7910010079e1afd778109d634f1f9f73a", + "size": 18896, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/a056cab7910010079e1afd778109d634f1f9f73a" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_NoCache/__files/repos_github-api-test-org_github-api-d7826ada-76b1-467b-b83e-9a1f3c30a719.json", + "mode": "100644", + "type": "blob", + "sha": "70d7abd7ec10938851e283295e7d93a68adef5ed", + "size": 18910, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/70d7abd7ec10938851e283295e7d93a68adef5ed" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_NoCache/__files/repos_github-api-test-org_github-api-e6a8cc79-dd4c-4ff8-9a46-ce9c304fbace.json", + "mode": "100644", + "type": "blob", + "sha": "72eefca15184d11939b8efd6876c09dbd9c833fe", + "size": 18893, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/72eefca15184d11939b8efd6876c09dbd9c833fe" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_NoCache/__files/user-754481d3-2e4b-4ed4-92d0-73795dac7985.json", + "mode": "100644", + "type": "blob", + "sha": "8f5f361680b9891d0fc84ea89ed01f3ed1da4e11", + "size": 1368, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/8f5f361680b9891d0fc84ea89ed01f3ed1da4e11" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_NoCache/mappings", + "mode": "040000", + "type": "tree", + "sha": "b0fa20e7135a96830b32debbe0159ba3d851af3b", + "url": "https://api.github.com/repos/github-api/github-api/git/trees/b0fa20e7135a96830b32debbe0159ba3d851af3b" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_NoCache/mappings/orgs_github-api-test-org-3-82590d.json", + "mode": "100644", + "type": "blob", + "sha": "06a0126e759c480532dd3b0711a05f4813ddaf9c", + "size": 1879, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/06a0126e759c480532dd3b0711a05f4813ddaf9c" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_NoCache/mappings/rate_limit-2-e76bb3.json", + "mode": "100644", + "type": "blob", + "sha": "9e8977e212157053c4b7fdef769256ba1797d805", + "size": 1586, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/9e8977e212157053c4b7fdef769256ba1797d805" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_NoCache/mappings/repos_github-api-test-org_github-api-10-d7826a.json", + "mode": "100644", + "type": "blob", + "sha": "611730932b52fe8bd23b5e04343ad0cc1543e238", + "size": 2102, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/611730932b52fe8bd23b5e04343ad0cc1543e238" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_NoCache/mappings/repos_github-api-test-org_github-api-11-144773.json", + "mode": "100644", + "type": "blob", + "sha": "4d563b8c97ca6b4e90626e978a938de81fadcae0", + "size": 2102, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/4d563b8c97ca6b4e90626e978a938de81fadcae0" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_NoCache/mappings/repos_github-api-test-org_github-api-12-49fce6.json", + "mode": "100644", + "type": "blob", + "sha": "91270e3ce066be7e6a3aa3fb2c5d7ae700c8e8a7", + "size": 2102, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/91270e3ce066be7e6a3aa3fb2c5d7ae700c8e8a7" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_NoCache/mappings/repos_github-api-test-org_github-api-13-31849f.json", + "mode": "100644", + "type": "blob", + "sha": "c304cf21e90c7f6e7fb1994dc303d76a566295d8", + "size": 2103, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/c304cf21e90c7f6e7fb1994dc303d76a566295d8" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_NoCache/mappings/repos_github-api-test-org_github-api-14-8a71a8.json", + "mode": "100644", + "type": "blob", + "sha": "8c46f65c56f560b27852da3fb2fe855db13b2435", + "size": 2104, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/8c46f65c56f560b27852da3fb2fe855db13b2435" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_NoCache/mappings/repos_github-api-test-org_github-api-15-e6a8cc.json", + "mode": "100644", + "type": "blob", + "sha": "85ab4310d8cd9ba33c5b74159ccfdb5e880b6aa4", + "size": 2104, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/85ab4310d8cd9ba33c5b74159ccfdb5e880b6aa4" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_NoCache/mappings/repos_github-api-test-org_github-api-16-1ec048.json", + "mode": "100644", + "type": "blob", + "sha": "d3aa16206d0101aac86dde08f25cc58d91009f55", + "size": 2104, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/d3aa16206d0101aac86dde08f25cc58d91009f55" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_NoCache/mappings/repos_github-api-test-org_github-api-17-3e8ef8.json", + "mode": "100644", + "type": "blob", + "sha": "ac4b7ea0eb6dd64a660eeed60e087b90ebe409a5", + "size": 2028, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/ac4b7ea0eb6dd64a660eeed60e087b90ebe409a5" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_NoCache/mappings/repos_github-api-test-org_github-api-4-99fb84.json", + "mode": "100644", + "type": "blob", + "sha": "4696f564de83e10431b4bdd176795bf8e0f297cf", + "size": 2059, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/4696f564de83e10431b4bdd176795bf8e0f297cf" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_NoCache/mappings/repos_github-api-test-org_github-api-5-57466b.json", + "mode": "100644", + "type": "blob", + "sha": "16a69f3c80c0cad5e3b75b75a46592f400e725f7", + "size": 2101, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/16a69f3c80c0cad5e3b75b75a46592f400e725f7" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_NoCache/mappings/repos_github-api-test-org_github-api-6-766326.json", + "mode": "100644", + "type": "blob", + "sha": "b21ebb471be34b5377f933777764d8f23a7e12cd", + "size": 2101, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/b21ebb471be34b5377f933777764d8f23a7e12cd" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_NoCache/mappings/repos_github-api-test-org_github-api-7-720bd2.json", + "mode": "100644", + "type": "blob", + "sha": "75c141a5ecfa5e8d29426160bed6207805a636dd", + "size": 2101, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/75c141a5ecfa5e8d29426160bed6207805a636dd" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_NoCache/mappings/repos_github-api-test-org_github-api-8-50e14b.json", + "mode": "100644", + "type": "blob", + "sha": "f994f53133a3e8c4d67fb9143e62c745afbc4f55", + "size": 2101, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/f994f53133a3e8c4d67fb9143e62c745afbc4f55" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_NoCache/mappings/repos_github-api-test-org_github-api-9-703fd1.json", + "mode": "100644", + "type": "blob", + "sha": "e7d51ba493f9007c81bdc4bc1d5a00078e2e304b", + "size": 2030, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/e7d51ba493f9007c81bdc4bc1d5a00078e2e304b" + }, + { + "path": "src/test/resources/org/kohsuke/github/extras/OkHttpConnectorTest/wiremock/OkHttpConnector_NoCache/mappings/user-1-754481.json", + "mode": "100644", + "type": "blob", + "sha": "080eba4944cee91f39a777f4b0828a324d44dc71", + "size": 1777, + "url": "https://api.github.com/repos/github-api/github-api/git/blobs/080eba4944cee91f39a777f4b0828a324d44dc71" + } + ], + "truncated": false +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testTreesRecursive/__files/user-ce7a016c-62a1-48c6-98c9-5638aaff0074.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testTreesRecursive/__files/user-ce7a016c-62a1-48c6-98c9-5638aaff0074.json new file mode 100644 index 0000000000..a4b576e8a7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testTreesRecursive/__files/user-ce7a016c-62a1-48c6-98c9-5638aaff0074.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 169, + "public_gists": 7, + "followers": 139, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testTreesRecursive/mappings/repos_github-api_github-api-2-1c232f.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testTreesRecursive/mappings/repos_github-api_github-api-2-1c232f.json new file mode 100644 index 0000000000..2c396dce38 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testTreesRecursive/mappings/repos_github-api_github-api-2-1c232f.json @@ -0,0 +1,43 @@ +{ + "id": "1c232f75-a19d-455f-b0c5-4278cc80a1e9", + "name": "repos_github-api_github-api", + "request": { + "url": "/repos/github-api/github-api", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api_github-api-1c232f75-a19d-455f-b0c5-4278cc80a1e9.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:27:03 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4462", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"c1a01d01a6354d93b3cc6098e0b2d047\"", + "Last-Modified": "Fri, 25 Oct 2019 01:32:16 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CA72:5F2B:EE2A9E:1186B92:5DB3A0E7" + } + }, + "uuid": "1c232f75-a19d-455f-b0c5-4278cc80a1e9", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testTreesRecursive/mappings/repos_github-api_github-api_git_trees_master-3-ffd3e3.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testTreesRecursive/mappings/repos_github-api_github-api_git_trees_master-3-ffd3e3.json new file mode 100644 index 0000000000..cc3c50e3d3 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testTreesRecursive/mappings/repos_github-api_github-api_git_trees_master-3-ffd3e3.json @@ -0,0 +1,43 @@ +{ + "id": "ffd3e351-e215-4bef-9756-a608a46e6c42", + "name": "repos_github-api_github-api_git_trees_master", + "request": { + "url": "/repos/github-api/github-api/git/trees/master?recursive=1", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api_github-api_git_trees_master-ffd3e351-e215-4bef-9756-a608a46e6c42.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:27:04 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4461", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"0e2949a2d994f3bc423ba57f6a1c736b\"", + "Last-Modified": "Fri, 25 Oct 2019 01:32:16 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CA72:5F2B:EE2AC3:1186BDF:5DB3A0E7" + } + }, + "uuid": "ffd3e351-e215-4bef-9756-a608a46e6c42", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testTreesRecursive/mappings/user-1-ce7a01.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testTreesRecursive/mappings/user-1-ce7a01.json new file mode 100644 index 0000000000..0850135817 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testTreesRecursive/mappings/user-1-ce7a01.json @@ -0,0 +1,43 @@ +{ + "id": "ce7a016c-62a1-48c6-98c9-5638aaff0074", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-ce7a016c-62a1-48c6-98c9-5638aaff0074.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:27:03 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4464", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"8c3d3dcf6fc5f9edaf26c902295396e5\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CA72:5F2B:EE2A6A:1186B7A:5DB3A0E7" + } + }, + "uuid": "ce7a016c-62a1-48c6-98c9-5638aaff0074", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicOrganizationsWhenThereAreNone/__files/user-813f6f5e-3561-4743-ae0c-ff932c012445.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicOrganizationsWhenThereAreNone/__files/user-813f6f5e-3561-4743-ae0c-ff932c012445.json new file mode 100644 index 0000000000..a4b576e8a7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicOrganizationsWhenThereAreNone/__files/user-813f6f5e-3561-4743-ae0c-ff932c012445.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 169, + "public_gists": 7, + "followers": 139, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicOrganizationsWhenThereAreNone/mappings/user-2-813f6f.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicOrganizationsWhenThereAreNone/mappings/user-2-813f6f.json new file mode 100644 index 0000000000..6fc1baffa9 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicOrganizationsWhenThereAreNone/mappings/user-2-813f6f.json @@ -0,0 +1,43 @@ +{ + "id": "813f6f5e-3561-4743-ae0c-ff932c012445", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-813f6f5e-3561-4743-ae0c-ff932c012445.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:37 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4310", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"8c3d3dcf6fc5f9edaf26c902295396e5\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAED:8340:ED1DEC:116F78B:5DB3A144" + } + }, + "uuid": "813f6f5e-3561-4743-ae0c-ff932c012445", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicOrganizationsWhenThereAreNone/mappings/users_bitwiseman_orgs-1-94ce73.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicOrganizationsWhenThereAreNone/mappings/users_bitwiseman_orgs-1-94ce73.json new file mode 100644 index 0000000000..f74a0005b0 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicOrganizationsWhenThereAreNone/mappings/users_bitwiseman_orgs-1-94ce73.json @@ -0,0 +1,37 @@ +{ + "id": "94ce7391-a312-48e7-b869-ce2f16838e60", + "name": "users_bitwiseman_orgs", + "request": { + "url": "/users/bitwiseman/orgs", + "method": "GET" + }, + "response": { + "status": 200, + "body": "[]", + "headers": { + "Server": "GitHub.com", + "Date": "Thu, 24 Oct 2019 15:49:23 GMT", + "Content-Type": "application/json; charset=utf-8", + "Status": "200 OK", + "X-RateLimit-Limit": "60", + "X-RateLimit-Remaining": "27", + "X-RateLimit-Reset": "1571934805", + "Cache-Control": "public, max-age=60, s-maxage=60", + "Vary": "Accept", + "ETag": "\"80b190627d4c87e9a37c34e20ea246a1\"", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "6970:40D4:19AB38:31CA07:5DB1C803" + } + }, + "uuid": "94ce7391-a312-48e7-b869-ce2f16838e60", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicOrganizationsWhenThereAreSome/__files/user-cb0c811c-52d4-4d1c-878a-2f1c73417d2b.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicOrganizationsWhenThereAreSome/__files/user-cb0c811c-52d4-4d1c-878a-2f1c73417d2b.json new file mode 100644 index 0000000000..a4b576e8a7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicOrganizationsWhenThereAreSome/__files/user-cb0c811c-52d4-4d1c-878a-2f1c73417d2b.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 169, + "public_gists": 7, + "followers": 139, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicOrganizationsWhenThereAreSome/__files/users_kohsuke_orgs-7ef9c5df-d48e-44be-ba15-e880b8e9558d.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicOrganizationsWhenThereAreSome/__files/users_kohsuke_orgs-7ef9c5df-d48e-44be-ba15-e880b8e9558d.json new file mode 100644 index 0000000000..e6d9bd6288 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicOrganizationsWhenThereAreSome/__files/users_kohsuke_orgs-7ef9c5df-d48e-44be-ba15-e880b8e9558d.json @@ -0,0 +1,142 @@ +[ + { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "url": "https://api.github.com/orgs/jenkinsci", + "repos_url": "https://api.github.com/orgs/jenkinsci/repos", + "events_url": "https://api.github.com/orgs/jenkinsci/events", + "hooks_url": "https://api.github.com/orgs/jenkinsci/hooks", + "issues_url": "https://api.github.com/orgs/jenkinsci/issues", + "members_url": "https://api.github.com/orgs/jenkinsci/members{/member}", + "public_members_url": "https://api.github.com/orgs/jenkinsci/public_members{/member}", + "avatar_url": "https://avatars0.githubusercontent.com/u/107424?v=4", + "description": "Jenkins is an open source automation server with an unparalleled plugin ecosystem to support practically every tool as part of your delivery pipelines" + }, + { + "login": "cloudbees", + "id": 235526, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzNTUyNg==", + "url": "https://api.github.com/orgs/cloudbees", + "repos_url": "https://api.github.com/orgs/cloudbees/repos", + "events_url": "https://api.github.com/orgs/cloudbees/events", + "hooks_url": "https://api.github.com/orgs/cloudbees/hooks", + "issues_url": "https://api.github.com/orgs/cloudbees/issues", + "members_url": "https://api.github.com/orgs/cloudbees/members{/member}", + "public_members_url": "https://api.github.com/orgs/cloudbees/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/235526?v=4", + "description": "" + }, + { + "login": "infradna", + "id": 266075, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjI2NjA3NQ==", + "url": "https://api.github.com/orgs/infradna", + "repos_url": "https://api.github.com/orgs/infradna/repos", + "events_url": "https://api.github.com/orgs/infradna/events", + "hooks_url": "https://api.github.com/orgs/infradna/hooks", + "issues_url": "https://api.github.com/orgs/infradna/issues", + "members_url": "https://api.github.com/orgs/infradna/members{/member}", + "public_members_url": "https://api.github.com/orgs/infradna/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/266075?v=4", + "description": null + }, + { + "login": "stapler", + "id": 700341, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjcwMDM0MQ==", + "url": "https://api.github.com/orgs/stapler", + "repos_url": "https://api.github.com/orgs/stapler/repos", + "events_url": "https://api.github.com/orgs/stapler/events", + "hooks_url": "https://api.github.com/orgs/stapler/hooks", + "issues_url": "https://api.github.com/orgs/stapler/issues", + "members_url": "https://api.github.com/orgs/stapler/members{/member}", + "public_members_url": "https://api.github.com/orgs/stapler/public_members{/member}", + "avatar_url": "https://avatars1.githubusercontent.com/u/700341?v=4", + "description": null + }, + { + "login": "java-schema-utilities", + "id": 709081, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjcwOTA4MQ==", + "url": "https://api.github.com/orgs/java-schema-utilities", + "repos_url": "https://api.github.com/orgs/java-schema-utilities/repos", + "events_url": "https://api.github.com/orgs/java-schema-utilities/events", + "hooks_url": "https://api.github.com/orgs/java-schema-utilities/hooks", + "issues_url": "https://api.github.com/orgs/java-schema-utilities/issues", + "members_url": "https://api.github.com/orgs/java-schema-utilities/members{/member}", + "public_members_url": "https://api.github.com/orgs/java-schema-utilities/public_members{/member}", + "avatar_url": "https://avatars0.githubusercontent.com/u/709081?v=4", + "description": null + }, + { + "login": "CloudBees-community", + "id": 1225740, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEyMjU3NDA=", + "url": "https://api.github.com/orgs/CloudBees-community", + "repos_url": "https://api.github.com/orgs/CloudBees-community/repos", + "events_url": "https://api.github.com/orgs/CloudBees-community/events", + "hooks_url": "https://api.github.com/orgs/CloudBees-community/hooks", + "issues_url": "https://api.github.com/orgs/CloudBees-community/issues", + "members_url": "https://api.github.com/orgs/CloudBees-community/members{/member}", + "public_members_url": "https://api.github.com/orgs/CloudBees-community/public_members{/member}", + "avatar_url": "https://avatars0.githubusercontent.com/u/1225740?v=4", + "description": "" + }, + { + "login": "cloudbeers", + "id": 4181899, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjQxODE4OTk=", + "url": "https://api.github.com/orgs/cloudbeers", + "repos_url": "https://api.github.com/orgs/cloudbeers/repos", + "events_url": "https://api.github.com/orgs/cloudbeers/events", + "hooks_url": "https://api.github.com/orgs/cloudbeers/hooks", + "issues_url": "https://api.github.com/orgs/cloudbeers/issues", + "members_url": "https://api.github.com/orgs/cloudbeers/members{/member}", + "public_members_url": "https://api.github.com/orgs/cloudbeers/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/4181899?v=4", + "description": "" + }, + { + "login": "jenkins-infra", + "id": 7422698, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0MjI2OTg=", + "url": "https://api.github.com/orgs/jenkins-infra", + "repos_url": "https://api.github.com/orgs/jenkins-infra/repos", + "events_url": "https://api.github.com/orgs/jenkins-infra/events", + "hooks_url": "https://api.github.com/orgs/jenkins-infra/hooks", + "issues_url": "https://api.github.com/orgs/jenkins-infra/issues", + "members_url": "https://api.github.com/orgs/jenkins-infra/members{/member}", + "public_members_url": "https://api.github.com/orgs/jenkins-infra/public_members{/member}", + "avatar_url": "https://avatars2.githubusercontent.com/u/7422698?v=4", + "description": "Repositories owned by the Jenkins project infrastructure team" + }, + { + "login": "LegoMatterhorn", + "id": 9170491, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjkxNzA0OTE=", + "url": "https://api.github.com/orgs/LegoMatterhorn", + "repos_url": "https://api.github.com/orgs/LegoMatterhorn/repos", + "events_url": "https://api.github.com/orgs/LegoMatterhorn/events", + "hooks_url": "https://api.github.com/orgs/LegoMatterhorn/hooks", + "issues_url": "https://api.github.com/orgs/LegoMatterhorn/issues", + "members_url": "https://api.github.com/orgs/LegoMatterhorn/members{/member}", + "public_members_url": "https://api.github.com/orgs/LegoMatterhorn/public_members{/member}", + "avatar_url": "https://avatars2.githubusercontent.com/u/9170491?v=4", + "description": "" + }, + { + "login": "jenkinsci-cert", + "id": 9285726, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjkyODU3MjY=", + "url": "https://api.github.com/orgs/jenkinsci-cert", + "repos_url": "https://api.github.com/orgs/jenkinsci-cert/repos", + "events_url": "https://api.github.com/orgs/jenkinsci-cert/events", + "hooks_url": "https://api.github.com/orgs/jenkinsci-cert/hooks", + "issues_url": "https://api.github.com/orgs/jenkinsci-cert/issues", + "members_url": "https://api.github.com/orgs/jenkinsci-cert/members{/member}", + "public_members_url": "https://api.github.com/orgs/jenkinsci-cert/public_members{/member}", + "avatar_url": "https://avatars2.githubusercontent.com/u/9285726?v=4", + "description": "Private repositories for the Jenkins CERT team" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicOrganizationsWhenThereAreSome/mappings/user-2-cb0c81.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicOrganizationsWhenThereAreSome/mappings/user-2-cb0c81.json new file mode 100644 index 0000000000..f763fabdc6 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicOrganizationsWhenThereAreSome/mappings/user-2-cb0c81.json @@ -0,0 +1,43 @@ +{ + "id": "cb0c811c-52d4-4d1c-878a-2f1c73417d2b", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-cb0c811c-52d4-4d1c-878a-2f1c73417d2b.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:28:37 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4308", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"8c3d3dcf6fc5f9edaf26c902295396e5\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAF1:5F2A:B8D6D8:D6E3EB:5DB3A145" + } + }, + "uuid": "cb0c811c-52d4-4d1c-878a-2f1c73417d2b", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicOrganizationsWhenThereAreSome/mappings/users_kohsuke_orgs-1-7ef9c5.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicOrganizationsWhenThereAreSome/mappings/users_kohsuke_orgs-1-7ef9c5.json new file mode 100644 index 0000000000..068f466664 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicOrganizationsWhenThereAreSome/mappings/users_kohsuke_orgs-1-7ef9c5.json @@ -0,0 +1,37 @@ +{ + "id": "7ef9c5df-d48e-44be-ba15-e880b8e9558d", + "name": "users_kohsuke_orgs", + "request": { + "url": "/users/kohsuke/orgs", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "users_kohsuke_orgs-7ef9c5df-d48e-44be-ba15-e880b8e9558d.json", + "headers": { + "Server": "GitHub.com", + "Date": "Thu, 24 Oct 2019 15:50:04 GMT", + "Content-Type": "application/json; charset=utf-8", + "Status": "200 OK", + "X-RateLimit-Limit": "60", + "X-RateLimit-Remaining": "25", + "X-RateLimit-Reset": "1571934805", + "Cache-Control": "public, max-age=60, s-maxage=60", + "Vary": "Accept", + "ETag": "W/\"5c5a7fc59f333fbeda60ffeefc546a8a\"", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "5EE8:1F70:C0C53:1D07EC:5DB1C82C" + } + }, + "uuid": "7ef9c5df-d48e-44be-ba15-e880b8e9558d", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/tryHook/__files/orgs_github-api-test-org-4eb6084c-7fa6-4d71-a94a-05b226ecf53b.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/tryHook/__files/orgs_github-api-test-org-4eb6084c-7fa6-4d71-a94a-05b226ecf53b.json new file mode 100644 index 0000000000..99b5920ccb --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/tryHook/__files/orgs_github-api-test-org-4eb6084c-7fa6-4d71-a94a-05b226ecf53b.json @@ -0,0 +1,41 @@ +{ + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "url": "https://api.github.com/orgs/github-api-test-org", + "repos_url": "https://api.github.com/orgs/github-api-test-org/repos", + "events_url": "https://api.github.com/orgs/github-api-test-org/events", + "hooks_url": "https://api.github.com/orgs/github-api-test-org/hooks", + "issues_url": "https://api.github.com/orgs/github-api-test-org/issues", + "members_url": "https://api.github.com/orgs/github-api-test-org/members{/member}", + "public_members_url": "https://api.github.com/orgs/github-api-test-org/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "description": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 10, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/github-api-test-org", + "created_at": "2014-05-10T19:39:11Z", + "updated_at": "2015-04-20T00:42:30Z", + "type": "Organization", + "total_private_repos": 0, + "owned_private_repos": 0, + "private_gists": 0, + "disk_usage": 132, + "collaborators": 0, + "billing_email": "kk@kohsuke.org", + "default_repository_permission": "none", + "members_can_create_repositories": false, + "two_factor_requirement_enabled": false, + "plan": { + "name": "free", + "space": 976562499, + "private_repos": 0, + "filled_seats": 7, + "seats": 0 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/tryHook/__files/repos_github-api-test-org_github-api-6eeaa8d2-6df3-4957-85d6-c2a5abe89738.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/tryHook/__files/repos_github-api-test-org_github-api-6eeaa8d2-6df3-4957-85d6-c2a5abe89738.json new file mode 100644 index 0000000000..fd6c94e99c --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/tryHook/__files/repos_github-api-test-org_github-api-6eeaa8d2-6df3-4957-85d6-c2a5abe89738.json @@ -0,0 +1,330 @@ +{ + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Tricky", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-30T22:36:47Z", + "pushed_at": "2019-10-21T22:34:49Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11391, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "parent": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-10-25T01:32:16Z", + "pushed_at": "2019-10-25T16:41:09Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 13494, + "stargazers_count": 565, + "watchers_count": 565, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 433, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 64, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 433, + "open_issues": 64, + "watchers": 565, + "default_branch": "master" + }, + "source": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-10-25T01:32:16Z", + "pushed_at": "2019-10-25T16:41:09Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 13494, + "stargazers_count": 565, + "watchers_count": 565, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 433, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 64, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 433, + "open_issues": 64, + "watchers": 565, + "default_branch": "master" + }, + "network_count": 433, + "subscribers_count": 0 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/tryHook/__files/repos_github-api-test-org_github-api_hooks-bd2a1759-9f96-4bba-a29c-1c7548d113e4.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/tryHook/__files/repos_github-api-test-org_github-api_hooks-bd2a1759-9f96-4bba-a29c-1c7548d113e4.json new file mode 100644 index 0000000000..a7548bd889 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/tryHook/__files/repos_github-api-test-org_github-api_hooks-bd2a1759-9f96-4bba-a29c-1c7548d113e4.json @@ -0,0 +1,24 @@ +{ + "type": "Repository", + "id": 152229630, + "name": "web", + "active": true, + "events": [ + "push" + ], + "config": { + "url": "http://www.google.com/", + "insecure_ssl": "0", + "content_type": "form" + }, + "updated_at": "2019-10-26T01:27:44Z", + "created_at": "2019-10-26T01:27:44Z", + "url": "https://api.github.com/repos/github-api-test-org/github-api/hooks/152229630", + "test_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks/152229630/test", + "ping_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks/152229630/pings", + "last_response": { + "code": null, + "status": "unused", + "message": null + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/tryHook/__files/user-3d7769c0-aae6-4946-b6d9-9e2152c52f00.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/tryHook/__files/user-3d7769c0-aae6-4946-b6d9-9e2152c52f00.json new file mode 100644 index 0000000000..a4b576e8a7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/tryHook/__files/user-3d7769c0-aae6-4946-b6d9-9e2152c52f00.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 169, + "public_gists": 7, + "followers": 139, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/tryHook/mappings/orgs_github-api-test-org-2-4eb608.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/tryHook/mappings/orgs_github-api-test-org-2-4eb608.json new file mode 100644 index 0000000000..42e9de77d6 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/tryHook/mappings/orgs_github-api-test-org-2-4eb608.json @@ -0,0 +1,43 @@ +{ + "id": "4eb6084c-7fa6-4d71-a94a-05b226ecf53b", + "name": "orgs_github-api-test-org", + "request": { + "url": "/orgs/github-api-test-org", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_github-api-test-org-4eb6084c-7fa6-4d71-a94a-05b226ecf53b.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:27:44 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4405", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"bbee0a14a82ca84871298052e1bcb545\"", + "Last-Modified": "Mon, 20 Apr 2015 00:42:30 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAB0:1CC2:1A2144:1EF048:5DB3A10F" + } + }, + "uuid": "4eb6084c-7fa6-4d71-a94a-05b226ecf53b", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/tryHook/mappings/repos_github-api-test-org_github-api-3-6eeaa8.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/tryHook/mappings/repos_github-api-test-org_github-api-3-6eeaa8.json new file mode 100644 index 0000000000..782826679e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/tryHook/mappings/repos_github-api-test-org_github-api-3-6eeaa8.json @@ -0,0 +1,43 @@ +{ + "id": "6eeaa8d2-6df3-4957-85d6-c2a5abe89738", + "name": "repos_github-api-test-org_github-api", + "request": { + "url": "/repos/github-api-test-org/github-api", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api-6eeaa8d2-6df3-4957-85d6-c2a5abe89738.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:27:44 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4404", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"9bc574c14028f51f37bccc2ff9819c25\"", + "Last-Modified": "Mon, 30 Sep 2019 22:36:47 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAB0:1CC2:1A214B:1EF051:5DB3A110" + } + }, + "uuid": "6eeaa8d2-6df3-4957-85d6-c2a5abe89738", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/tryHook/mappings/repos_github-api-test-org_github-api_hooks-4-bd2a17.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/tryHook/mappings/repos_github-api-test-org_github-api_hooks-4-bd2a17.json new file mode 100644 index 0000000000..b7a1483e8f --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/tryHook/mappings/repos_github-api-test-org_github-api_hooks-4-bd2a17.json @@ -0,0 +1,50 @@ +{ + "id": "bd2a1759-9f96-4bba-a29c-1c7548d113e4", + "name": "repos_github-api-test-org_github-api_hooks", + "request": { + "url": "/repos/github-api-test-org/github-api/hooks", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"name\":\"web\",\"active\":true,\"config\":{\"url\":\"http://www.google.com/\"}}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "repos_github-api-test-org_github-api_hooks-bd2a1759-9f96-4bba-a29c-1c7548d113e4.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:27:44 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4403", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"d8f03beb9a12fb632468ce3ba0e41bc6\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:repo_hook, public_repo, repo, write:repo_hook", + "Location": "https://api.github.com/repos/github-api-test-org/github-api/hooks/152229630", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAB0:1CC2:1A214E:1EF057:5DB3A110" + } + }, + "uuid": "bd2a1759-9f96-4bba-a29c-1c7548d113e4", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/tryHook/mappings/user-1-3d7769.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/tryHook/mappings/user-1-3d7769.json new file mode 100644 index 0000000000..e30c3a08e2 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/tryHook/mappings/user-1-3d7769.json @@ -0,0 +1,43 @@ +{ + "id": "3d7769c0-aae6-4946-b6d9-9e2152c52f00", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-3d7769c0-aae6-4946-b6d9-9e2152c52f00.json", + "headers": { + "Date": "Sat, 26 Oct 2019 01:27:43 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4407", + "X-RateLimit-Reset": "1572055286", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"8c3d3dcf6fc5f9edaf26c902295396e5\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAB0:1CC2:1A213E:1EF045:5DB3A10F" + } + }, + "uuid": "3d7769c0-aae6-4946-b6d9-9e2152c52f00", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/lastStatus/__files/repos_stapler_stapler-dea29c4a-c5b6-460d-8550-09d75d487830.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/lastStatus/__files/repos_stapler_stapler-dea29c4a-c5b6-460d-8550-09d75d487830.json new file mode 100644 index 0000000000..2b0dafa938 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/lastStatus/__files/repos_stapler_stapler-dea29c4a-c5b6-460d-8550-09d75d487830.json @@ -0,0 +1,127 @@ +{ + "id": 1548514, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTQ4NTE0", + "name": "stapler", + "full_name": "stapler/stapler", + "private": false, + "owner": { + "login": "stapler", + "id": 700341, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjcwMDM0MQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/700341?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/stapler", + "html_url": "https://github.com/stapler", + "followers_url": "https://api.github.com/users/stapler/followers", + "following_url": "https://api.github.com/users/stapler/following{/other_user}", + "gists_url": "https://api.github.com/users/stapler/gists{/gist_id}", + "starred_url": "https://api.github.com/users/stapler/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/stapler/subscriptions", + "organizations_url": "https://api.github.com/users/stapler/orgs", + "repos_url": "https://api.github.com/users/stapler/repos", + "events_url": "https://api.github.com/users/stapler/events{/privacy}", + "received_events_url": "https://api.github.com/users/stapler/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/stapler/stapler", + "description": "Stapler web framework", + "fork": false, + "url": "https://api.github.com/repos/stapler/stapler", + "forks_url": "https://api.github.com/repos/stapler/stapler/forks", + "keys_url": "https://api.github.com/repos/stapler/stapler/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/stapler/stapler/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/stapler/stapler/teams", + "hooks_url": "https://api.github.com/repos/stapler/stapler/hooks", + "issue_events_url": "https://api.github.com/repos/stapler/stapler/issues/events{/number}", + "events_url": "https://api.github.com/repos/stapler/stapler/events", + "assignees_url": "https://api.github.com/repos/stapler/stapler/assignees{/user}", + "branches_url": "https://api.github.com/repos/stapler/stapler/branches{/branch}", + "tags_url": "https://api.github.com/repos/stapler/stapler/tags", + "blobs_url": "https://api.github.com/repos/stapler/stapler/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/stapler/stapler/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/stapler/stapler/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/stapler/stapler/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/stapler/stapler/statuses/{sha}", + "languages_url": "https://api.github.com/repos/stapler/stapler/languages", + "stargazers_url": "https://api.github.com/repos/stapler/stapler/stargazers", + "contributors_url": "https://api.github.com/repos/stapler/stapler/contributors", + "subscribers_url": "https://api.github.com/repos/stapler/stapler/subscribers", + "subscription_url": "https://api.github.com/repos/stapler/stapler/subscription", + "commits_url": "https://api.github.com/repos/stapler/stapler/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/stapler/stapler/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/stapler/stapler/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/stapler/stapler/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/{+path}", + "compare_url": "https://api.github.com/repos/stapler/stapler/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/stapler/stapler/merges", + "archive_url": "https://api.github.com/repos/stapler/stapler/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/stapler/stapler/downloads", + "issues_url": "https://api.github.com/repos/stapler/stapler/issues{/number}", + "pulls_url": "https://api.github.com/repos/stapler/stapler/pulls{/number}", + "milestones_url": "https://api.github.com/repos/stapler/stapler/milestones{/number}", + "notifications_url": "https://api.github.com/repos/stapler/stapler/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/stapler/stapler/labels{/name}", + "releases_url": "https://api.github.com/repos/stapler/stapler/releases{/id}", + "deployments_url": "https://api.github.com/repos/stapler/stapler/deployments", + "created_at": "2011-03-30T22:39:45Z", + "updated_at": "2019-08-27T16:42:33Z", + "pushed_at": "2019-08-19T18:47:57Z", + "git_url": "git://github.com/stapler/stapler.git", + "ssh_url": "git@github.com:stapler/stapler.git", + "clone_url": "https://github.com/stapler/stapler.git", + "svn_url": "https://github.com/stapler/stapler", + "homepage": "http://stapler.kohsuke.org/", + "size": 41906, + "stargazers_count": 112, + "watchers_count": 112, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 75, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 28, + "license": { + "key": "bsd-2-clause", + "name": "BSD 2-Clause \"Simplified\" License", + "spdx_id": "BSD-2-Clause", + "url": "https://api.github.com/licenses/bsd-2-clause", + "node_id": "MDc6TGljZW5zZTQ=" + }, + "forks": 75, + "open_issues": 28, + "watchers": 112, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + }, + "organization": { + "login": "stapler", + "id": 700341, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjcwMDM0MQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/700341?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/stapler", + "html_url": "https://github.com/stapler", + "followers_url": "https://api.github.com/users/stapler/followers", + "following_url": "https://api.github.com/users/stapler/following{/other_user}", + "gists_url": "https://api.github.com/users/stapler/gists{/gist_id}", + "starred_url": "https://api.github.com/users/stapler/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/stapler/subscriptions", + "organizations_url": "https://api.github.com/users/stapler/orgs", + "repos_url": "https://api.github.com/users/stapler/repos", + "events_url": "https://api.github.com/users/stapler/events{/privacy}", + "received_events_url": "https://api.github.com/users/stapler/received_events", + "type": "Organization", + "site_admin": false + }, + "network_count": 75, + "subscribers_count": 12 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/lastStatus/__files/repos_stapler_stapler_statuses_6a243869aa3c3f80579102d00848a0083953d654-b564ee52-421b-4d1a-aa96-bdb613581b8a.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/lastStatus/__files/repos_stapler_stapler_statuses_6a243869aa3c3f80579102d00848a0083953d654-b564ee52-421b-4d1a-aa96-bdb613581b8a.json new file mode 100644 index 0000000000..640e982ae3 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/lastStatus/__files/repos_stapler_stapler_statuses_6a243869aa3c3f80579102d00848a0083953d654-b564ee52-421b-4d1a-aa96-bdb613581b8a.json @@ -0,0 +1,98 @@ +[ + { + "url": "https://api.github.com/repos/stapler/stapler/statuses/6a243869aa3c3f80579102d00848a0083953d654", + "avatar_url": "https://avatars3.githubusercontent.com/u/874715?v=4", + "id": 7455218060, + "node_id": "MDEzOlN0YXR1c0NvbnRleHQ3NDU1MjE4MDYw", + "state": "error", + "description": "This commit cannot be built", + "target_url": "https://ci.jenkins.io/job/Stapler/job/stapler/job/master/50/display/redirect", + "context": "continuous-integration/jenkins/branch", + "created_at": "2019-08-19T18:45:31Z", + "updated_at": "2019-08-19T18:45:31Z", + "creator": { + "login": "jenkinsadmin", + "id": 874715, + "node_id": "MDQ6VXNlcjg3NDcxNQ==", + "avatar_url": "https://avatars3.githubusercontent.com/u/874715?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsadmin", + "html_url": "https://github.com/jenkinsadmin", + "followers_url": "https://api.github.com/users/jenkinsadmin/followers", + "following_url": "https://api.github.com/users/jenkinsadmin/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsadmin/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsadmin/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsadmin/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsadmin/orgs", + "repos_url": "https://api.github.com/users/jenkinsadmin/repos", + "events_url": "https://api.github.com/users/jenkinsadmin/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsadmin/received_events", + "type": "User", + "site_admin": false + } + }, + { + "url": "https://api.github.com/repos/stapler/stapler/statuses/6a243869aa3c3f80579102d00848a0083953d654", + "avatar_url": "https://avatars3.githubusercontent.com/u/874715?v=4", + "id": 7455157752, + "node_id": "MDEzOlN0YXR1c0NvbnRleHQ3NDU1MTU3NzUy", + "state": "pending", + "description": "This commit is being built", + "target_url": "https://ci.jenkins.io/job/Stapler/job/stapler/job/master/50/display/redirect", + "context": "continuous-integration/jenkins/branch", + "created_at": "2019-08-19T18:39:00Z", + "updated_at": "2019-08-19T18:39:00Z", + "creator": { + "login": "jenkinsadmin", + "id": 874715, + "node_id": "MDQ6VXNlcjg3NDcxNQ==", + "avatar_url": "https://avatars3.githubusercontent.com/u/874715?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsadmin", + "html_url": "https://github.com/jenkinsadmin", + "followers_url": "https://api.github.com/users/jenkinsadmin/followers", + "following_url": "https://api.github.com/users/jenkinsadmin/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsadmin/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsadmin/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsadmin/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsadmin/orgs", + "repos_url": "https://api.github.com/users/jenkinsadmin/repos", + "events_url": "https://api.github.com/users/jenkinsadmin/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsadmin/received_events", + "type": "User", + "site_admin": false + } + }, + { + "url": "https://api.github.com/repos/stapler/stapler/statuses/6a243869aa3c3f80579102d00848a0083953d654", + "avatar_url": "https://avatars3.githubusercontent.com/u/874715?v=4", + "id": 7455156636, + "node_id": "MDEzOlN0YXR1c0NvbnRleHQ3NDU1MTU2NjM2", + "state": "pending", + "description": "This commit is being built", + "target_url": "https://ci.jenkins.io/job/Stapler/job/stapler/job/master/50/display/redirect", + "context": "continuous-integration/jenkins/branch", + "created_at": "2019-08-19T18:38:52Z", + "updated_at": "2019-08-19T18:38:52Z", + "creator": { + "login": "jenkinsadmin", + "id": 874715, + "node_id": "MDQ6VXNlcjg3NDcxNQ==", + "avatar_url": "https://avatars3.githubusercontent.com/u/874715?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsadmin", + "html_url": "https://github.com/jenkinsadmin", + "followers_url": "https://api.github.com/users/jenkinsadmin/followers", + "following_url": "https://api.github.com/users/jenkinsadmin/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsadmin/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsadmin/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsadmin/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsadmin/orgs", + "repos_url": "https://api.github.com/users/jenkinsadmin/repos", + "events_url": "https://api.github.com/users/jenkinsadmin/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsadmin/received_events", + "type": "User", + "site_admin": false + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/lastStatus/__files/repos_stapler_stapler_tags-7637217e-0e80-4f8b-bf01-93a7a97952fd.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/lastStatus/__files/repos_stapler_stapler_tags-7637217e-0e80-4f8b-bf01-93a7a97952fd.json new file mode 100644 index 0000000000..3ab5627b9a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/lastStatus/__files/repos_stapler_stapler_tags-7637217e-0e80-4f8b-bf01-93a7a97952fd.json @@ -0,0 +1,302 @@ +[ + { + "name": "stapler-parent-1.258", + "zipball_url": "https://api.github.com/repos/stapler/stapler/zipball/stapler-parent-1.258", + "tarball_url": "https://api.github.com/repos/stapler/stapler/tarball/stapler-parent-1.258", + "commit": { + "sha": "6a243869aa3c3f80579102d00848a0083953d654", + "url": "https://api.github.com/repos/stapler/stapler/commits/6a243869aa3c3f80579102d00848a0083953d654" + }, + "node_id": "MDM6UmVmMTU0ODUxNDpzdGFwbGVyLXBhcmVudC0xLjI1OA==" + }, + { + "name": "stapler-parent-1.257.2", + "zipball_url": "https://api.github.com/repos/stapler/stapler/zipball/stapler-parent-1.257.2", + "tarball_url": "https://api.github.com/repos/stapler/stapler/tarball/stapler-parent-1.257.2", + "commit": { + "sha": "c5cf668da1b891488236f18eb8a2d668e8af8d83", + "url": "https://api.github.com/repos/stapler/stapler/commits/c5cf668da1b891488236f18eb8a2d668e8af8d83" + }, + "node_id": "MDM6UmVmMTU0ODUxNDpzdGFwbGVyLXBhcmVudC0xLjI1Ny4y" + }, + { + "name": "stapler-parent-1.257.1", + "zipball_url": "https://api.github.com/repos/stapler/stapler/zipball/stapler-parent-1.257.1", + "tarball_url": "https://api.github.com/repos/stapler/stapler/tarball/stapler-parent-1.257.1", + "commit": { + "sha": "88b67ccecb572faaec5a0ecff327b1a4ea902591", + "url": "https://api.github.com/repos/stapler/stapler/commits/88b67ccecb572faaec5a0ecff327b1a4ea902591" + }, + "node_id": "MDM6UmVmMTU0ODUxNDpzdGFwbGVyLXBhcmVudC0xLjI1Ny4x" + }, + { + "name": "stapler-parent-1.257", + "zipball_url": "https://api.github.com/repos/stapler/stapler/zipball/stapler-parent-1.257", + "tarball_url": "https://api.github.com/repos/stapler/stapler/tarball/stapler-parent-1.257", + "commit": { + "sha": "d922b808068cf95d6f6ab624ce2c7f49d51f5321", + "url": "https://api.github.com/repos/stapler/stapler/commits/d922b808068cf95d6f6ab624ce2c7f49d51f5321" + }, + "node_id": "MDM6UmVmMTU0ODUxNDpzdGFwbGVyLXBhcmVudC0xLjI1Nw==" + }, + { + "name": "stapler-parent-1.256.2", + "zipball_url": "https://api.github.com/repos/stapler/stapler/zipball/stapler-parent-1.256.2", + "tarball_url": "https://api.github.com/repos/stapler/stapler/tarball/stapler-parent-1.256.2", + "commit": { + "sha": "d7f798079b03569d07d79f2eb62cd8a4662da65b", + "url": "https://api.github.com/repos/stapler/stapler/commits/d7f798079b03569d07d79f2eb62cd8a4662da65b" + }, + "node_id": "MDM6UmVmMTU0ODUxNDpzdGFwbGVyLXBhcmVudC0xLjI1Ni4y" + }, + { + "name": "stapler-parent-1.256.1", + "zipball_url": "https://api.github.com/repos/stapler/stapler/zipball/stapler-parent-1.256.1", + "tarball_url": "https://api.github.com/repos/stapler/stapler/tarball/stapler-parent-1.256.1", + "commit": { + "sha": "d7aa86f790295ac8e7b00ac2734032773e5a5f6a", + "url": "https://api.github.com/repos/stapler/stapler/commits/d7aa86f790295ac8e7b00ac2734032773e5a5f6a" + }, + "node_id": "MDM6UmVmMTU0ODUxNDpzdGFwbGVyLXBhcmVudC0xLjI1Ni4x" + }, + { + "name": "stapler-parent-1.256", + "zipball_url": "https://api.github.com/repos/stapler/stapler/zipball/stapler-parent-1.256", + "tarball_url": "https://api.github.com/repos/stapler/stapler/tarball/stapler-parent-1.256", + "commit": { + "sha": "d9f05512169d70bbd8deff1e87afe3fdd251dc54", + "url": "https://api.github.com/repos/stapler/stapler/commits/d9f05512169d70bbd8deff1e87afe3fdd251dc54" + }, + "node_id": "MDM6UmVmMTU0ODUxNDpzdGFwbGVyLXBhcmVudC0xLjI1Ng==" + }, + { + "name": "stapler-parent-1.255", + "zipball_url": "https://api.github.com/repos/stapler/stapler/zipball/stapler-parent-1.255", + "tarball_url": "https://api.github.com/repos/stapler/stapler/tarball/stapler-parent-1.255", + "commit": { + "sha": "c7d9760c909ca34c9c8ad3e8959a79eec433b45e", + "url": "https://api.github.com/repos/stapler/stapler/commits/c7d9760c909ca34c9c8ad3e8959a79eec433b45e" + }, + "node_id": "MDM6UmVmMTU0ODUxNDpzdGFwbGVyLXBhcmVudC0xLjI1NQ==" + }, + { + "name": "stapler-parent-1.254.3", + "zipball_url": "https://api.github.com/repos/stapler/stapler/zipball/stapler-parent-1.254.3", + "tarball_url": "https://api.github.com/repos/stapler/stapler/tarball/stapler-parent-1.254.3", + "commit": { + "sha": "a4617a3f25067e05c3efdb6bc6678f2710bffa57", + "url": "https://api.github.com/repos/stapler/stapler/commits/a4617a3f25067e05c3efdb6bc6678f2710bffa57" + }, + "node_id": "MDM6UmVmMTU0ODUxNDpzdGFwbGVyLXBhcmVudC0xLjI1NC4z" + }, + { + "name": "stapler-parent-1.254.2", + "zipball_url": "https://api.github.com/repos/stapler/stapler/zipball/stapler-parent-1.254.2", + "tarball_url": "https://api.github.com/repos/stapler/stapler/tarball/stapler-parent-1.254.2", + "commit": { + "sha": "91087c2e85b9e9539fb291c8298fb4692a7c2d84", + "url": "https://api.github.com/repos/stapler/stapler/commits/91087c2e85b9e9539fb291c8298fb4692a7c2d84" + }, + "node_id": "MDM6UmVmMTU0ODUxNDpzdGFwbGVyLXBhcmVudC0xLjI1NC4y" + }, + { + "name": "stapler-parent-1.254.1", + "zipball_url": "https://api.github.com/repos/stapler/stapler/zipball/stapler-parent-1.254.1", + "tarball_url": "https://api.github.com/repos/stapler/stapler/tarball/stapler-parent-1.254.1", + "commit": { + "sha": "eb7bb985c89187288fc54f9a50aeb80e90821f7c", + "url": "https://api.github.com/repos/stapler/stapler/commits/eb7bb985c89187288fc54f9a50aeb80e90821f7c" + }, + "node_id": "MDM6UmVmMTU0ODUxNDpzdGFwbGVyLXBhcmVudC0xLjI1NC4x" + }, + { + "name": "stapler-parent-1.254", + "zipball_url": "https://api.github.com/repos/stapler/stapler/zipball/stapler-parent-1.254", + "tarball_url": "https://api.github.com/repos/stapler/stapler/tarball/stapler-parent-1.254", + "commit": { + "sha": "07a22fed12081904a6c6b89b02117279274b4065", + "url": "https://api.github.com/repos/stapler/stapler/commits/07a22fed12081904a6c6b89b02117279274b4065" + }, + "node_id": "MDM6UmVmMTU0ODUxNDpzdGFwbGVyLXBhcmVudC0xLjI1NA==" + }, + { + "name": "stapler-parent-1.253", + "zipball_url": "https://api.github.com/repos/stapler/stapler/zipball/stapler-parent-1.253", + "tarball_url": "https://api.github.com/repos/stapler/stapler/tarball/stapler-parent-1.253", + "commit": { + "sha": "055ee2b100f8778049410289c0fa5a3baa07cfb9", + "url": "https://api.github.com/repos/stapler/stapler/commits/055ee2b100f8778049410289c0fa5a3baa07cfb9" + }, + "node_id": "MDM6UmVmMTU0ODUxNDpzdGFwbGVyLXBhcmVudC0xLjI1Mw==" + }, + { + "name": "stapler-parent-1.252", + "zipball_url": "https://api.github.com/repos/stapler/stapler/zipball/stapler-parent-1.252", + "tarball_url": "https://api.github.com/repos/stapler/stapler/tarball/stapler-parent-1.252", + "commit": { + "sha": "ea125284477865c8344337877b5eefef0d48b9b3", + "url": "https://api.github.com/repos/stapler/stapler/commits/ea125284477865c8344337877b5eefef0d48b9b3" + }, + "node_id": "MDM6UmVmMTU0ODUxNDpzdGFwbGVyLXBhcmVudC0xLjI1Mg==" + }, + { + "name": "stapler-parent-1.251", + "zipball_url": "https://api.github.com/repos/stapler/stapler/zipball/stapler-parent-1.251", + "tarball_url": "https://api.github.com/repos/stapler/stapler/tarball/stapler-parent-1.251", + "commit": { + "sha": "bec133a7f228e863870a9324734cb9565270c1c3", + "url": "https://api.github.com/repos/stapler/stapler/commits/bec133a7f228e863870a9324734cb9565270c1c3" + }, + "node_id": "MDM6UmVmMTU0ODUxNDpzdGFwbGVyLXBhcmVudC0xLjI1MQ==" + }, + { + "name": "stapler-parent-1.250.2", + "zipball_url": "https://api.github.com/repos/stapler/stapler/zipball/stapler-parent-1.250.2", + "tarball_url": "https://api.github.com/repos/stapler/stapler/tarball/stapler-parent-1.250.2", + "commit": { + "sha": "c45ae36a80dfc29d78d8008f3923010f734b2aa7", + "url": "https://api.github.com/repos/stapler/stapler/commits/c45ae36a80dfc29d78d8008f3923010f734b2aa7" + }, + "node_id": "MDM6UmVmMTU0ODUxNDpzdGFwbGVyLXBhcmVudC0xLjI1MC4y" + }, + { + "name": "stapler-parent-1.250.1", + "zipball_url": "https://api.github.com/repos/stapler/stapler/zipball/stapler-parent-1.250.1", + "tarball_url": "https://api.github.com/repos/stapler/stapler/tarball/stapler-parent-1.250.1", + "commit": { + "sha": "2c24c6b625eac22b0b0bbe15ee28ba89b518fbcf", + "url": "https://api.github.com/repos/stapler/stapler/commits/2c24c6b625eac22b0b0bbe15ee28ba89b518fbcf" + }, + "node_id": "MDM6UmVmMTU0ODUxNDpzdGFwbGVyLXBhcmVudC0xLjI1MC4x" + }, + { + "name": "stapler-parent-1.250", + "zipball_url": "https://api.github.com/repos/stapler/stapler/zipball/stapler-parent-1.250", + "tarball_url": "https://api.github.com/repos/stapler/stapler/tarball/stapler-parent-1.250", + "commit": { + "sha": "139a5c48f7ccf099a4e4d486ce8143d6b3ebaa60", + "url": "https://api.github.com/repos/stapler/stapler/commits/139a5c48f7ccf099a4e4d486ce8143d6b3ebaa60" + }, + "node_id": "MDM6UmVmMTU0ODUxNDpzdGFwbGVyLXBhcmVudC0xLjI1MA==" + }, + { + "name": "stapler-parent-1.249", + "zipball_url": "https://api.github.com/repos/stapler/stapler/zipball/stapler-parent-1.249", + "tarball_url": "https://api.github.com/repos/stapler/stapler/tarball/stapler-parent-1.249", + "commit": { + "sha": "f0a4fb3b17fc19dc44b7974f6048540358a2ab27", + "url": "https://api.github.com/repos/stapler/stapler/commits/f0a4fb3b17fc19dc44b7974f6048540358a2ab27" + }, + "node_id": "MDM6UmVmMTU0ODUxNDpzdGFwbGVyLXBhcmVudC0xLjI0OQ==" + }, + { + "name": "stapler-parent-1.248", + "zipball_url": "https://api.github.com/repos/stapler/stapler/zipball/stapler-parent-1.248", + "tarball_url": "https://api.github.com/repos/stapler/stapler/tarball/stapler-parent-1.248", + "commit": { + "sha": "ee1fdfea8774953afd7c3b810a218d2809e394d4", + "url": "https://api.github.com/repos/stapler/stapler/commits/ee1fdfea8774953afd7c3b810a218d2809e394d4" + }, + "node_id": "MDM6UmVmMTU0ODUxNDpzdGFwbGVyLXBhcmVudC0xLjI0OA==" + }, + { + "name": "stapler-parent-1.247", + "zipball_url": "https://api.github.com/repos/stapler/stapler/zipball/stapler-parent-1.247", + "tarball_url": "https://api.github.com/repos/stapler/stapler/tarball/stapler-parent-1.247", + "commit": { + "sha": "16a445745c1a8dc45ec235af9b0466284ce0fffb", + "url": "https://api.github.com/repos/stapler/stapler/commits/16a445745c1a8dc45ec235af9b0466284ce0fffb" + }, + "node_id": "MDM6UmVmMTU0ODUxNDpzdGFwbGVyLXBhcmVudC0xLjI0Nw==" + }, + { + "name": "stapler-parent-1.246", + "zipball_url": "https://api.github.com/repos/stapler/stapler/zipball/stapler-parent-1.246", + "tarball_url": "https://api.github.com/repos/stapler/stapler/tarball/stapler-parent-1.246", + "commit": { + "sha": "bf36e810674526adceb8a66b17a05be7e219ac8e", + "url": "https://api.github.com/repos/stapler/stapler/commits/bf36e810674526adceb8a66b17a05be7e219ac8e" + }, + "node_id": "MDM6UmVmMTU0ODUxNDpzdGFwbGVyLXBhcmVudC0xLjI0Ng==" + }, + { + "name": "stapler-parent-1.244", + "zipball_url": "https://api.github.com/repos/stapler/stapler/zipball/stapler-parent-1.244", + "tarball_url": "https://api.github.com/repos/stapler/stapler/tarball/stapler-parent-1.244", + "commit": { + "sha": "956c847fd721de4ffa1622ddc640c0a00b603c45", + "url": "https://api.github.com/repos/stapler/stapler/commits/956c847fd721de4ffa1622ddc640c0a00b603c45" + }, + "node_id": "MDM6UmVmMTU0ODUxNDpzdGFwbGVyLXBhcmVudC0xLjI0NA==" + }, + { + "name": "stapler-parent-1.243", + "zipball_url": "https://api.github.com/repos/stapler/stapler/zipball/stapler-parent-1.243", + "tarball_url": "https://api.github.com/repos/stapler/stapler/tarball/stapler-parent-1.243", + "commit": { + "sha": "1dcecfbde98af18fe165019b61c8313a8ee881f5", + "url": "https://api.github.com/repos/stapler/stapler/commits/1dcecfbde98af18fe165019b61c8313a8ee881f5" + }, + "node_id": "MDM6UmVmMTU0ODUxNDpzdGFwbGVyLXBhcmVudC0xLjI0Mw==" + }, + { + "name": "stapler-parent-1.242", + "zipball_url": "https://api.github.com/repos/stapler/stapler/zipball/stapler-parent-1.242", + "tarball_url": "https://api.github.com/repos/stapler/stapler/tarball/stapler-parent-1.242", + "commit": { + "sha": "cb92998f404fee084bef8a922428bc34d731ecda", + "url": "https://api.github.com/repos/stapler/stapler/commits/cb92998f404fee084bef8a922428bc34d731ecda" + }, + "node_id": "MDM6UmVmMTU0ODUxNDpzdGFwbGVyLXBhcmVudC0xLjI0Mg==" + }, + { + "name": "stapler-parent-1.241", + "zipball_url": "https://api.github.com/repos/stapler/stapler/zipball/stapler-parent-1.241", + "tarball_url": "https://api.github.com/repos/stapler/stapler/tarball/stapler-parent-1.241", + "commit": { + "sha": "b14b8d346b5d5e601760fa2f7072bbd8e83480d7", + "url": "https://api.github.com/repos/stapler/stapler/commits/b14b8d346b5d5e601760fa2f7072bbd8e83480d7" + }, + "node_id": "MDM6UmVmMTU0ODUxNDpzdGFwbGVyLXBhcmVudC0xLjI0MQ==" + }, + { + "name": "stapler-parent-1.240", + "zipball_url": "https://api.github.com/repos/stapler/stapler/zipball/stapler-parent-1.240", + "tarball_url": "https://api.github.com/repos/stapler/stapler/tarball/stapler-parent-1.240", + "commit": { + "sha": "430665e6d3d97c5897810f070d2abf93eb0d7c43", + "url": "https://api.github.com/repos/stapler/stapler/commits/430665e6d3d97c5897810f070d2abf93eb0d7c43" + }, + "node_id": "MDM6UmVmMTU0ODUxNDpzdGFwbGVyLXBhcmVudC0xLjI0MA==" + }, + { + "name": "stapler-parent-1.239", + "zipball_url": "https://api.github.com/repos/stapler/stapler/zipball/stapler-parent-1.239", + "tarball_url": "https://api.github.com/repos/stapler/stapler/tarball/stapler-parent-1.239", + "commit": { + "sha": "9114f84b9db915712a55e08ffdabd88697ecd5f7", + "url": "https://api.github.com/repos/stapler/stapler/commits/9114f84b9db915712a55e08ffdabd88697ecd5f7" + }, + "node_id": "MDM6UmVmMTU0ODUxNDpzdGFwbGVyLXBhcmVudC0xLjIzOQ==" + }, + { + "name": "stapler-parent-1.238", + "zipball_url": "https://api.github.com/repos/stapler/stapler/zipball/stapler-parent-1.238", + "tarball_url": "https://api.github.com/repos/stapler/stapler/tarball/stapler-parent-1.238", + "commit": { + "sha": "208ed27c27156e3d7ef8d7307f0d20785c3bc712", + "url": "https://api.github.com/repos/stapler/stapler/commits/208ed27c27156e3d7ef8d7307f0d20785c3bc712" + }, + "node_id": "MDM6UmVmMTU0ODUxNDpzdGFwbGVyLXBhcmVudC0xLjIzOA==" + }, + { + "name": "stapler-parent-1.237", + "zipball_url": "https://api.github.com/repos/stapler/stapler/zipball/stapler-parent-1.237", + "tarball_url": "https://api.github.com/repos/stapler/stapler/tarball/stapler-parent-1.237", + "commit": { + "sha": "a915ca5b380e89df8706edffcb09c65fcc07421b", + "url": "https://api.github.com/repos/stapler/stapler/commits/a915ca5b380e89df8706edffcb09c65fcc07421b" + }, + "node_id": "MDM6UmVmMTU0ODUxNDpzdGFwbGVyLXBhcmVudC0xLjIzNw==" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/lastStatus/__files/user-bde54f7e-5b5a-49b2-b94c-a0cf8f7a0d1a.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/lastStatus/__files/user-bde54f7e-5b5a-49b2-b94c-a0cf8f7a0d1a.json new file mode 100644 index 0000000000..b9ce24cb03 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/lastStatus/__files/user-bde54f7e-5b5a-49b2-b94c-a0cf8f7a0d1a.json @@ -0,0 +1,33 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 166, + "public_gists": 4, + "followers": 133, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-06-03T17:47:20Z" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/lastStatus/mappings/repos_stapler_stapler-2-dea29c.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/lastStatus/mappings/repos_stapler_stapler-2-dea29c.json new file mode 100644 index 0000000000..b426cf0b7e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/lastStatus/mappings/repos_stapler_stapler-2-dea29c.json @@ -0,0 +1,43 @@ +{ + "id": "dea29c4a-c5b6-460d-8550-09d75d487830", + "name": "repos_stapler_stapler", + "request": { + "url": "/repos/stapler/stapler", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_stapler_stapler-dea29c4a-c5b6-460d-8550-09d75d487830.json", + "headers": { + "Date": "Mon, 09 Sep 2019 18:31:06 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4932", + "X-RateLimit-Reset": "1568056823", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"449cae6ec2615b7bcbe15d6e821627cc\"", + "Last-Modified": "Tue, 27 Aug 2019 16:42:33 GMT", + "X-OAuth-Scopes": "delete_repo, gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D99F:2C7D:C96DC:EC84C:5D769A6A" + } + }, + "uuid": "dea29c4a-c5b6-460d-8550-09d75d487830", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/lastStatus/mappings/repos_stapler_stapler_statuses_6a243869aa3c3f80579102d00848a0083953d654-4-b564ee.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/lastStatus/mappings/repos_stapler_stapler_statuses_6a243869aa3c3f80579102d00848a0083953d654-4-b564ee.json new file mode 100644 index 0000000000..3c5bc5b03d --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/lastStatus/mappings/repos_stapler_stapler_statuses_6a243869aa3c3f80579102d00848a0083953d654-4-b564ee.json @@ -0,0 +1,42 @@ +{ + "id": "b564ee52-421b-4d1a-aa96-bdb613581b8a", + "name": "repos_stapler_stapler_statuses_6a243869aa3c3f80579102d00848a0083953d654", + "request": { + "url": "/repos/stapler/stapler/statuses/6a243869aa3c3f80579102d00848a0083953d654", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_stapler_stapler_statuses_6a243869aa3c3f80579102d00848a0083953d654-b564ee52-421b-4d1a-aa96-bdb613581b8a.json", + "headers": { + "Date": "Mon, 09 Sep 2019 18:31:06 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4930", + "X-RateLimit-Reset": "1568056823", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"5f8e313af31f78898aeeeae1b6f45a5b\"", + "X-OAuth-Scopes": "delete_repo, gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D99F:2C7D:C9739:EC8B4:5D769A6A" + } + }, + "uuid": "b564ee52-421b-4d1a-aa96-bdb613581b8a", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/lastStatus/mappings/repos_stapler_stapler_tags-3-763721.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/lastStatus/mappings/repos_stapler_stapler_tags-3-763721.json new file mode 100644 index 0000000000..28396b47f5 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/lastStatus/mappings/repos_stapler_stapler_tags-3-763721.json @@ -0,0 +1,44 @@ +{ + "id": "7637217e-0e80-4f8b-bf01-93a7a97952fd", + "name": "repos_stapler_stapler_tags", + "request": { + "url": "/repos/stapler/stapler/tags", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_stapler_stapler_tags-7637217e-0e80-4f8b-bf01-93a7a97952fd.json", + "headers": { + "Date": "Mon, 09 Sep 2019 18:31:06 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4931", + "X-RateLimit-Reset": "1568056823", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"dcf4cf083a57185673e19420a37d0ca0\"", + "Last-Modified": "Tue, 27 Aug 2019 16:42:33 GMT", + "X-OAuth-Scopes": "delete_repo, gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Link": "; rel=\"next\", ; rel=\"last\"", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D99F:2C7D:C9716:EC893:5D769A6A" + } + }, + "uuid": "7637217e-0e80-4f8b-bf01-93a7a97952fd", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/lastStatus/mappings/user-1-bde54f.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/lastStatus/mappings/user-1-bde54f.json new file mode 100644 index 0000000000..317af5be9b --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/lastStatus/mappings/user-1-bde54f.json @@ -0,0 +1,43 @@ +{ + "id": "bde54f7e-5b5a-49b2-b94c-a0cf8f7a0d1a", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-bde54f7e-5b5a-49b2-b94c-a0cf8f7a0d1a.json", + "headers": { + "Date": "Mon, 09 Sep 2019 18:31:06 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4933", + "X-RateLimit-Reset": "1568056823", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"3ba1de3523043df743651bd23efc7def\"", + "Last-Modified": "Mon, 03 Jun 2019 17:47:20 GMT", + "X-OAuth-Scopes": "delete_repo, gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D99F:2C7D:C96C8:EC833:5D769A69" + } + }, + "uuid": "bde54f7e-5b5a-49b2-b94c-a0cf8f7a0d1a", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler-34276839-6f01-44ea-856d-5b26cc12edf8.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler-34276839-6f01-44ea-856d-5b26cc12edf8.json new file mode 100644 index 0000000000..2b0dafa938 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler-34276839-6f01-44ea-856d-5b26cc12edf8.json @@ -0,0 +1,127 @@ +{ + "id": 1548514, + "node_id": "MDEwOlJlcG9zaXRvcnkxNTQ4NTE0", + "name": "stapler", + "full_name": "stapler/stapler", + "private": false, + "owner": { + "login": "stapler", + "id": 700341, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjcwMDM0MQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/700341?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/stapler", + "html_url": "https://github.com/stapler", + "followers_url": "https://api.github.com/users/stapler/followers", + "following_url": "https://api.github.com/users/stapler/following{/other_user}", + "gists_url": "https://api.github.com/users/stapler/gists{/gist_id}", + "starred_url": "https://api.github.com/users/stapler/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/stapler/subscriptions", + "organizations_url": "https://api.github.com/users/stapler/orgs", + "repos_url": "https://api.github.com/users/stapler/repos", + "events_url": "https://api.github.com/users/stapler/events{/privacy}", + "received_events_url": "https://api.github.com/users/stapler/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/stapler/stapler", + "description": "Stapler web framework", + "fork": false, + "url": "https://api.github.com/repos/stapler/stapler", + "forks_url": "https://api.github.com/repos/stapler/stapler/forks", + "keys_url": "https://api.github.com/repos/stapler/stapler/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/stapler/stapler/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/stapler/stapler/teams", + "hooks_url": "https://api.github.com/repos/stapler/stapler/hooks", + "issue_events_url": "https://api.github.com/repos/stapler/stapler/issues/events{/number}", + "events_url": "https://api.github.com/repos/stapler/stapler/events", + "assignees_url": "https://api.github.com/repos/stapler/stapler/assignees{/user}", + "branches_url": "https://api.github.com/repos/stapler/stapler/branches{/branch}", + "tags_url": "https://api.github.com/repos/stapler/stapler/tags", + "blobs_url": "https://api.github.com/repos/stapler/stapler/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/stapler/stapler/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/stapler/stapler/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/stapler/stapler/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/stapler/stapler/statuses/{sha}", + "languages_url": "https://api.github.com/repos/stapler/stapler/languages", + "stargazers_url": "https://api.github.com/repos/stapler/stapler/stargazers", + "contributors_url": "https://api.github.com/repos/stapler/stapler/contributors", + "subscribers_url": "https://api.github.com/repos/stapler/stapler/subscribers", + "subscription_url": "https://api.github.com/repos/stapler/stapler/subscription", + "commits_url": "https://api.github.com/repos/stapler/stapler/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/stapler/stapler/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/stapler/stapler/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/stapler/stapler/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/{+path}", + "compare_url": "https://api.github.com/repos/stapler/stapler/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/stapler/stapler/merges", + "archive_url": "https://api.github.com/repos/stapler/stapler/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/stapler/stapler/downloads", + "issues_url": "https://api.github.com/repos/stapler/stapler/issues{/number}", + "pulls_url": "https://api.github.com/repos/stapler/stapler/pulls{/number}", + "milestones_url": "https://api.github.com/repos/stapler/stapler/milestones{/number}", + "notifications_url": "https://api.github.com/repos/stapler/stapler/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/stapler/stapler/labels{/name}", + "releases_url": "https://api.github.com/repos/stapler/stapler/releases{/id}", + "deployments_url": "https://api.github.com/repos/stapler/stapler/deployments", + "created_at": "2011-03-30T22:39:45Z", + "updated_at": "2019-08-27T16:42:33Z", + "pushed_at": "2019-08-19T18:47:57Z", + "git_url": "git://github.com/stapler/stapler.git", + "ssh_url": "git@github.com:stapler/stapler.git", + "clone_url": "https://github.com/stapler/stapler.git", + "svn_url": "https://github.com/stapler/stapler", + "homepage": "http://stapler.kohsuke.org/", + "size": 41906, + "stargazers_count": 112, + "watchers_count": 112, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 75, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 28, + "license": { + "key": "bsd-2-clause", + "name": "BSD 2-Clause \"Simplified\" License", + "spdx_id": "BSD-2-Clause", + "url": "https://api.github.com/licenses/bsd-2-clause", + "node_id": "MDc6TGljZW5zZTQ=" + }, + "forks": 75, + "open_issues": 28, + "watchers": 112, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + }, + "organization": { + "login": "stapler", + "id": 700341, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjcwMDM0MQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/700341?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/stapler", + "html_url": "https://github.com/stapler", + "followers_url": "https://api.github.com/users/stapler/followers", + "following_url": "https://api.github.com/users/stapler/following{/other_user}", + "gists_url": "https://api.github.com/users/stapler/gists{/gist_id}", + "starred_url": "https://api.github.com/users/stapler/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/stapler/subscriptions", + "organizations_url": "https://api.github.com/users/stapler/orgs", + "repos_url": "https://api.github.com/users/stapler/repos", + "events_url": "https://api.github.com/users/stapler/events{/privacy}", + "received_events_url": "https://api.github.com/users/stapler/received_events", + "type": "Organization", + "site_admin": false + }, + "network_count": 75, + "subscribers_count": 12 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits-6214feb0-5ed5-4325-8407-2f75bef1c4bd.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits-6214feb0-5ed5-4325-8407-2f75bef1c4bd.json new file mode 100644 index 0000000000..f1f5e1fc99 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits-6214feb0-5ed5-4325-8407-2f75bef1c4bd.json @@ -0,0 +1,2377 @@ +[ + { + "sha": "950acbd60ed4289520dcd2a395e5d77f181e1cff", + "node_id": "MDY6Q29tbWl0MTU0ODUxNDo5NTBhY2JkNjBlZDQyODk1MjBkY2QyYTM5NWU1ZDc3ZjE4MWUxY2Zm", + "commit": { + "author": { + "name": "Jesse Glick", + "email": "jglick@cloudbees.com", + "date": "2019-08-19T18:38:53Z" + }, + "committer": { + "name": "Jesse Glick", + "email": "jglick@cloudbees.com", + "date": "2019-08-19T18:38:53Z" + }, + "message": "[maven-release-plugin] prepare for next development iteration", + "tree": { + "sha": "cdd0f7a1782143bfbc97e0d7f6cd4f6cac504df8", + "url": "https://api.github.com/repos/stapler/stapler/git/trees/cdd0f7a1782143bfbc97e0d7f6cd4f6cac504df8" + }, + "url": "https://api.github.com/repos/stapler/stapler/git/commits/950acbd60ed4289520dcd2a395e5d77f181e1cff", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQEzBAABCgAdFiEEYYylhqBIUt57zhxYHdpp2UtiQxEFAl1a7L0ACgkQHdpp2Uti\nQxHaAwgApG8F+WMMEdEkw5pqcbz3m5fIRD47tKvgyXHRzE9nCIQ26GLyw4gRNBX+\nDT2lOE6EEPSpC5yqlAJSOZUKlmh7QLbolJwfm5NTi6+siV0zFQB7Y1A/BW6PawCh\nPoCgkWIpR6ElC2y48KSmWRC5BJ4NkXtwh/v3yqa094wY1zlv5EazT/e2CcWhL7Ky\n0/a4IFMFuVRMt1qzY43umTAWP6k36PorBWHOTsMrQ2Nrq3LHjbldH3KzRPqkWy9X\ntTp5hMQ1zr4wQYeb9duQFE5m8UcJaZP1Rl0uET2DdeceibLBeFWEFruuzWeY6y+d\ngmzN3JL1Qjeex/qI3s1G4vh0ybfxMg==\n=lHha\n-----END PGP SIGNATURE-----", + "payload": "tree cdd0f7a1782143bfbc97e0d7f6cd4f6cac504df8\nparent 6a243869aa3c3f80579102d00848a0083953d654\nauthor Jesse Glick 1566239933 -0400\ncommitter Jesse Glick 1566239933 -0400\n\n[maven-release-plugin] prepare for next development iteration\n" + } + }, + "url": "https://api.github.com/repos/stapler/stapler/commits/950acbd60ed4289520dcd2a395e5d77f181e1cff", + "html_url": "https://github.com/stapler/stapler/commit/950acbd60ed4289520dcd2a395e5d77f181e1cff", + "comments_url": "https://api.github.com/repos/stapler/stapler/commits/950acbd60ed4289520dcd2a395e5d77f181e1cff/comments", + "author": { + "login": "jglick", + "id": 154109, + "node_id": "MDQ6VXNlcjE1NDEwOQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/154109?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jglick", + "html_url": "https://github.com/jglick", + "followers_url": "https://api.github.com/users/jglick/followers", + "following_url": "https://api.github.com/users/jglick/following{/other_user}", + "gists_url": "https://api.github.com/users/jglick/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jglick/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jglick/subscriptions", + "organizations_url": "https://api.github.com/users/jglick/orgs", + "repos_url": "https://api.github.com/users/jglick/repos", + "events_url": "https://api.github.com/users/jglick/events{/privacy}", + "received_events_url": "https://api.github.com/users/jglick/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "jglick", + "id": 154109, + "node_id": "MDQ6VXNlcjE1NDEwOQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/154109?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jglick", + "html_url": "https://github.com/jglick", + "followers_url": "https://api.github.com/users/jglick/followers", + "following_url": "https://api.github.com/users/jglick/following{/other_user}", + "gists_url": "https://api.github.com/users/jglick/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jglick/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jglick/subscriptions", + "organizations_url": "https://api.github.com/users/jglick/orgs", + "repos_url": "https://api.github.com/users/jglick/repos", + "events_url": "https://api.github.com/users/jglick/events{/privacy}", + "received_events_url": "https://api.github.com/users/jglick/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "6a243869aa3c3f80579102d00848a0083953d654", + "url": "https://api.github.com/repos/stapler/stapler/commits/6a243869aa3c3f80579102d00848a0083953d654", + "html_url": "https://github.com/stapler/stapler/commit/6a243869aa3c3f80579102d00848a0083953d654" + } + ] + }, + { + "sha": "6a243869aa3c3f80579102d00848a0083953d654", + "node_id": "MDY6Q29tbWl0MTU0ODUxNDo2YTI0Mzg2OWFhM2MzZjgwNTc5MTAyZDAwODQ4YTAwODM5NTNkNjU0", + "commit": { + "author": { + "name": "Jesse Glick", + "email": "jglick@cloudbees.com", + "date": "2019-08-19T18:38:42Z" + }, + "committer": { + "name": "Jesse Glick", + "email": "jglick@cloudbees.com", + "date": "2019-08-19T18:38:42Z" + }, + "message": "[maven-release-plugin] prepare release stapler-parent-1.258", + "tree": { + "sha": "61eb4efc23a5899681e45c581290617c98856e26", + "url": "https://api.github.com/repos/stapler/stapler/git/trees/61eb4efc23a5899681e45c581290617c98856e26" + }, + "url": "https://api.github.com/repos/stapler/stapler/git/commits/6a243869aa3c3f80579102d00848a0083953d654", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQEzBAABCgAdFiEEYYylhqBIUt57zhxYHdpp2UtiQxEFAl1a7LIACgkQHdpp2Uti\nQxEO8wf/fbacmCDXus8GhagFs240dUjvMbKTxVTX0yS8dHf7TvmpljikXRC8l4RM\nYy9g+J0Gbf9jMaz8walo4bXt7m8RaCDJmcKyA3Y3vC3O5G2Y5wlFLQwtN0ZykbKc\nPH0xLW4n8NBWBk1F50ka9y+/EBEAeMn8oSjmJhBDyc+xWWiuewrYaiX81JHKU9PY\ngwYW+eCxh0Z14CZQstfJx8SeVXbWJtpm+x/Hyjetj7VaVdvzKNAUTQ6wPp5drvGI\nQ0H91v01TA5pskbKDeegMLIlItqyjgjTnGV8rx4JjzZcvH+lPXbnI5Tcb68DvZgN\noJt4cb0b5dIo1pSbzF9W5i6Ro8QxGA==\n=Mduu\n-----END PGP SIGNATURE-----", + "payload": "tree 61eb4efc23a5899681e45c581290617c98856e26\nparent 3d3d6f01c553724350a6763d9b726fc3db268ccf\nauthor Jesse Glick 1566239922 -0400\ncommitter Jesse Glick 1566239922 -0400\n\n[maven-release-plugin] prepare release stapler-parent-1.258\n" + } + }, + "url": "https://api.github.com/repos/stapler/stapler/commits/6a243869aa3c3f80579102d00848a0083953d654", + "html_url": "https://github.com/stapler/stapler/commit/6a243869aa3c3f80579102d00848a0083953d654", + "comments_url": "https://api.github.com/repos/stapler/stapler/commits/6a243869aa3c3f80579102d00848a0083953d654/comments", + "author": { + "login": "jglick", + "id": 154109, + "node_id": "MDQ6VXNlcjE1NDEwOQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/154109?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jglick", + "html_url": "https://github.com/jglick", + "followers_url": "https://api.github.com/users/jglick/followers", + "following_url": "https://api.github.com/users/jglick/following{/other_user}", + "gists_url": "https://api.github.com/users/jglick/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jglick/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jglick/subscriptions", + "organizations_url": "https://api.github.com/users/jglick/orgs", + "repos_url": "https://api.github.com/users/jglick/repos", + "events_url": "https://api.github.com/users/jglick/events{/privacy}", + "received_events_url": "https://api.github.com/users/jglick/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "jglick", + "id": 154109, + "node_id": "MDQ6VXNlcjE1NDEwOQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/154109?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jglick", + "html_url": "https://github.com/jglick", + "followers_url": "https://api.github.com/users/jglick/followers", + "following_url": "https://api.github.com/users/jglick/following{/other_user}", + "gists_url": "https://api.github.com/users/jglick/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jglick/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jglick/subscriptions", + "organizations_url": "https://api.github.com/users/jglick/orgs", + "repos_url": "https://api.github.com/users/jglick/repos", + "events_url": "https://api.github.com/users/jglick/events{/privacy}", + "received_events_url": "https://api.github.com/users/jglick/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "3d3d6f01c553724350a6763d9b726fc3db268ccf", + "url": "https://api.github.com/repos/stapler/stapler/commits/3d3d6f01c553724350a6763d9b726fc3db268ccf", + "html_url": "https://github.com/stapler/stapler/commit/3d3d6f01c553724350a6763d9b726fc3db268ccf" + } + ] + }, + { + "sha": "06b1108ec041fd8d6e7f54c8578d84a672fee9e4", + "node_id": "MDY6Q29tbWl0MTU0ODUxNDowNmIxMTA4ZWMwNDFmZDhkNmU3ZjU0Yzg1NzhkODRhNjcyZmVlOWU0", + "commit": { + "author": { + "name": "Jeff Thompson", + "email": "37345299+jeffret-b@users.noreply.github.com", + "date": "2019-08-19T17:42:58Z" + }, + "committer": { + "name": "GitHub", + "email": "noreply@github.com", + "date": "2019-08-19T17:42:58Z" + }, + "message": "Update BSD license reference.\n\nCo-Authored-By: Jesse Glick ", + "tree": { + "sha": "859fffa8ce0c958e4e4209c7a758be16f0c97c55", + "url": "https://api.github.com/repos/stapler/stapler/git/trees/859fffa8ce0c958e4e4209c7a758be16f0c97c55" + }, + "url": "https://api.github.com/repos/stapler/stapler/git/commits/06b1108ec041fd8d6e7f54c8578d84a672fee9e4", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsBcBAABCAAQBQJdWt+iCRBK7hj4Ov3rIwAAdHIIAF2vncFEFRwkJdZrVZEkT30N\neYJXFeILq+wFRDuWEDOueIkUwCy9Z4xYnM/n7fw+51LsRK+4kaFNjP6HFJGr/+m5\nioCArE27vaXnZjTAldpAG0Jku3eIfChutub0HcBy4UURozLw70ajWpbA3vOQ560B\ntontgx2I/pJmwOqkXRVvM7yxTlW751kyTVWScCtOeX2efuveeotECsDrqScKxq66\nkvJ1xmb9olWdlTjChOgqNrLbLC0jUHqc1nMGCkkVL0Pl2BMB8cXrKBQyU71ZuVJt\n4EW8IBWBtuHwHFtwABBCHXdtSsCGPat0hVag72CHiqKoZV/EAPecIlyiZMAYYig=\n=7zTb\n-----END PGP SIGNATURE-----\n", + "payload": "tree 859fffa8ce0c958e4e4209c7a758be16f0c97c55\nparent 2a971c4e38c6d6693f7ad8b6768e4d74840d6679\nauthor Jeff Thompson <37345299+jeffret-b@users.noreply.github.com> 1566236578 -0600\ncommitter GitHub 1566236578 -0600\n\nUpdate BSD license reference.\n\nCo-Authored-By: Jesse Glick " + } + }, + "url": "https://api.github.com/repos/stapler/stapler/commits/06b1108ec041fd8d6e7f54c8578d84a672fee9e4", + "html_url": "https://github.com/stapler/stapler/commit/06b1108ec041fd8d6e7f54c8578d84a672fee9e4", + "comments_url": "https://api.github.com/repos/stapler/stapler/commits/06b1108ec041fd8d6e7f54c8578d84a672fee9e4/comments", + "author": { + "login": "jeffret-b", + "id": 37345299, + "node_id": "MDQ6VXNlcjM3MzQ1Mjk5", + "avatar_url": "https://avatars0.githubusercontent.com/u/37345299?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jeffret-b", + "html_url": "https://github.com/jeffret-b", + "followers_url": "https://api.github.com/users/jeffret-b/followers", + "following_url": "https://api.github.com/users/jeffret-b/following{/other_user}", + "gists_url": "https://api.github.com/users/jeffret-b/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jeffret-b/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jeffret-b/subscriptions", + "organizations_url": "https://api.github.com/users/jeffret-b/orgs", + "repos_url": "https://api.github.com/users/jeffret-b/repos", + "events_url": "https://api.github.com/users/jeffret-b/events{/privacy}", + "received_events_url": "https://api.github.com/users/jeffret-b/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "web-flow", + "id": 19864447, + "node_id": "MDQ6VXNlcjE5ODY0NDQ3", + "avatar_url": "https://avatars3.githubusercontent.com/u/19864447?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/web-flow", + "html_url": "https://github.com/web-flow", + "followers_url": "https://api.github.com/users/web-flow/followers", + "following_url": "https://api.github.com/users/web-flow/following{/other_user}", + "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions", + "organizations_url": "https://api.github.com/users/web-flow/orgs", + "repos_url": "https://api.github.com/users/web-flow/repos", + "events_url": "https://api.github.com/users/web-flow/events{/privacy}", + "received_events_url": "https://api.github.com/users/web-flow/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "2a971c4e38c6d6693f7ad8b6768e4d74840d6679", + "url": "https://api.github.com/repos/stapler/stapler/commits/2a971c4e38c6d6693f7ad8b6768e4d74840d6679", + "html_url": "https://github.com/stapler/stapler/commit/2a971c4e38c6d6693f7ad8b6768e4d74840d6679" + } + ] + }, + { + "sha": "2a971c4e38c6d6693f7ad8b6768e4d74840d6679", + "node_id": "MDY6Q29tbWl0MTU0ODUxNDoyYTk3MWM0ZTM4YzZkNjY5M2Y3YWQ4YjY3NjhlNGQ3NDg0MGQ2Njc5", + "commit": { + "author": { + "name": "Jeff Thompson", + "email": "jeffret.g@gmail.com", + "date": "2019-06-28T16:16:04Z" + }, + "committer": { + "name": "Jeff Thompson", + "email": "jeffret.g@gmail.com", + "date": "2019-06-28T16:21:18Z" + }, + "message": "A little bit of pom cleanup.\n\nPrimarily about using https.", + "tree": { + "sha": "3ebce198db76fb2e0073f2698c255ea0eee6527c", + "url": "https://api.github.com/repos/stapler/stapler/git/trees/3ebce198db76fb2e0073f2698c255ea0eee6527c" + }, + "url": "https://api.github.com/repos/stapler/stapler/git/commits/2a971c4e38c6d6693f7ad8b6768e4d74840d6679", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/stapler/stapler/commits/2a971c4e38c6d6693f7ad8b6768e4d74840d6679", + "html_url": "https://github.com/stapler/stapler/commit/2a971c4e38c6d6693f7ad8b6768e4d74840d6679", + "comments_url": "https://api.github.com/repos/stapler/stapler/commits/2a971c4e38c6d6693f7ad8b6768e4d74840d6679/comments", + "author": { + "login": "jeffret-b", + "id": 37345299, + "node_id": "MDQ6VXNlcjM3MzQ1Mjk5", + "avatar_url": "https://avatars0.githubusercontent.com/u/37345299?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jeffret-b", + "html_url": "https://github.com/jeffret-b", + "followers_url": "https://api.github.com/users/jeffret-b/followers", + "following_url": "https://api.github.com/users/jeffret-b/following{/other_user}", + "gists_url": "https://api.github.com/users/jeffret-b/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jeffret-b/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jeffret-b/subscriptions", + "organizations_url": "https://api.github.com/users/jeffret-b/orgs", + "repos_url": "https://api.github.com/users/jeffret-b/repos", + "events_url": "https://api.github.com/users/jeffret-b/events{/privacy}", + "received_events_url": "https://api.github.com/users/jeffret-b/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "jeffret-b", + "id": 37345299, + "node_id": "MDQ6VXNlcjM3MzQ1Mjk5", + "avatar_url": "https://avatars0.githubusercontent.com/u/37345299?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jeffret-b", + "html_url": "https://github.com/jeffret-b", + "followers_url": "https://api.github.com/users/jeffret-b/followers", + "following_url": "https://api.github.com/users/jeffret-b/following{/other_user}", + "gists_url": "https://api.github.com/users/jeffret-b/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jeffret-b/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jeffret-b/subscriptions", + "organizations_url": "https://api.github.com/users/jeffret-b/orgs", + "repos_url": "https://api.github.com/users/jeffret-b/repos", + "events_url": "https://api.github.com/users/jeffret-b/events{/privacy}", + "received_events_url": "https://api.github.com/users/jeffret-b/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "11ad5af185e062fb46e01bf9fbed66f3ebf2a8f7", + "url": "https://api.github.com/repos/stapler/stapler/commits/11ad5af185e062fb46e01bf9fbed66f3ebf2a8f7", + "html_url": "https://github.com/stapler/stapler/commit/11ad5af185e062fb46e01bf9fbed66f3ebf2a8f7" + } + ] + }, + { + "sha": "2f4ca0f03c1e6188867bddddce12ff213a107d9d", + "node_id": "MDY6Q29tbWl0MTU0ODUxNDoyZjRjYTBmMDNjMWU2MTg4ODY3YmRkZGRjZTEyZmYyMTNhMTA3ZDlk", + "commit": { + "author": { + "name": "Jesse Glick", + "email": "jglick@cloudbees.com", + "date": "2019-04-08T14:19:21Z" + }, + "committer": { + "name": "Jesse Glick", + "email": "jglick@cloudbees.com", + "date": "2019-04-08T14:19:21Z" + }, + "message": "[maven-release-plugin] prepare for next development iteration", + "tree": { + "sha": "f8ca916d33ffab1c342e6a92f7fd44dbad1609ec", + "url": "https://api.github.com/repos/stapler/stapler/git/trees/f8ca916d33ffab1c342e6a92f7fd44dbad1609ec" + }, + "url": "https://api.github.com/repos/stapler/stapler/git/commits/2f4ca0f03c1e6188867bddddce12ff213a107d9d", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQEzBAABCgAdFiEEYYylhqBIUt57zhxYHdpp2UtiQxEFAlyrWGkACgkQHdpp2Uti\nQxF9Hgf9Es/4uq/vG+zlttbpXr/RwYUgLiTO2Dw8bs+21OxfApMF0OBUtgb3SPdf\nMvWCc13Jbg3yQ2JaIP4IziEoTxZCu2ZEpgW6VtXik63f7HWyxeTeuO0I/kGNIm6J\nU4bZgeryOImU06w3SGTiaNvcxLsOjp99E8aIILqDrrHEN47sW5rBnKDDRzB5Ga74\nvZt88peqr792b6DGhYpjwl+qj3Hxqdm11JOAEwP6dLl5NhStQW6nZezcJnYJqSyd\ntfQQ0m+9qqSZaY+moenDnKEh9LleswGQwex84UNdG7i4gwsQs5GhCXaN3gMCtyiz\nU4nPC4mD3wbw93S1zORXGXvK0pUq5g==\n=KJwq\n-----END PGP SIGNATURE-----", + "payload": "tree f8ca916d33ffab1c342e6a92f7fd44dbad1609ec\nparent d922b808068cf95d6f6ab624ce2c7f49d51f5321\nauthor Jesse Glick 1554733161 -0400\ncommitter Jesse Glick 1554733161 -0400\n\n[maven-release-plugin] prepare for next development iteration\n" + } + }, + "url": "https://api.github.com/repos/stapler/stapler/commits/2f4ca0f03c1e6188867bddddce12ff213a107d9d", + "html_url": "https://github.com/stapler/stapler/commit/2f4ca0f03c1e6188867bddddce12ff213a107d9d", + "comments_url": "https://api.github.com/repos/stapler/stapler/commits/2f4ca0f03c1e6188867bddddce12ff213a107d9d/comments", + "author": { + "login": "jglick", + "id": 154109, + "node_id": "MDQ6VXNlcjE1NDEwOQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/154109?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jglick", + "html_url": "https://github.com/jglick", + "followers_url": "https://api.github.com/users/jglick/followers", + "following_url": "https://api.github.com/users/jglick/following{/other_user}", + "gists_url": "https://api.github.com/users/jglick/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jglick/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jglick/subscriptions", + "organizations_url": "https://api.github.com/users/jglick/orgs", + "repos_url": "https://api.github.com/users/jglick/repos", + "events_url": "https://api.github.com/users/jglick/events{/privacy}", + "received_events_url": "https://api.github.com/users/jglick/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "jglick", + "id": 154109, + "node_id": "MDQ6VXNlcjE1NDEwOQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/154109?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jglick", + "html_url": "https://github.com/jglick", + "followers_url": "https://api.github.com/users/jglick/followers", + "following_url": "https://api.github.com/users/jglick/following{/other_user}", + "gists_url": "https://api.github.com/users/jglick/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jglick/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jglick/subscriptions", + "organizations_url": "https://api.github.com/users/jglick/orgs", + "repos_url": "https://api.github.com/users/jglick/repos", + "events_url": "https://api.github.com/users/jglick/events{/privacy}", + "received_events_url": "https://api.github.com/users/jglick/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "d922b808068cf95d6f6ab624ce2c7f49d51f5321", + "url": "https://api.github.com/repos/stapler/stapler/commits/d922b808068cf95d6f6ab624ce2c7f49d51f5321", + "html_url": "https://github.com/stapler/stapler/commit/d922b808068cf95d6f6ab624ce2c7f49d51f5321" + } + ] + }, + { + "sha": "d922b808068cf95d6f6ab624ce2c7f49d51f5321", + "node_id": "MDY6Q29tbWl0MTU0ODUxNDpkOTIyYjgwODA2OGNmOTVkNmY2YWI2MjRjZTJjN2Y0OWQ1MWY1MzIx", + "commit": { + "author": { + "name": "Jesse Glick", + "email": "jglick@cloudbees.com", + "date": "2019-04-08T14:19:11Z" + }, + "committer": { + "name": "Jesse Glick", + "email": "jglick@cloudbees.com", + "date": "2019-04-08T14:19:11Z" + }, + "message": "[maven-release-plugin] prepare release stapler-parent-1.257", + "tree": { + "sha": "86a648b84700a80e22f089252cea0d70e61857bf", + "url": "https://api.github.com/repos/stapler/stapler/git/trees/86a648b84700a80e22f089252cea0d70e61857bf" + }, + "url": "https://api.github.com/repos/stapler/stapler/git/commits/d922b808068cf95d6f6ab624ce2c7f49d51f5321", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQEzBAABCgAdFiEEYYylhqBIUt57zhxYHdpp2UtiQxEFAlyrWF8ACgkQHdpp2Uti\nQxFUSQf/TTTCnvT3vAgDwXjs8YOqX9HNxwGl7ugrAN6TU2tRhBjLQovwFZgdJWMK\nVbQ9LNHPM4pDmedCnSMV7dd7b686Auy4qY3oSrr4ATtOZFj+qIxo3WzLXFfTm0+f\n2crxX4TrVj+to5kFb+tXZo5tB/36WThebpVJvT8KMgGEuUheYOanJeqqygsH0eCe\nbC3lMunAqKIe1NFxrEVET4Ut6Gt+SvOhzqf0bJASnPKiyugz68ZpOUOsHHAe3sxo\nlYUBrILfrMsUzxBTfcVVpSIUVv5gIQXVdzK+Jk27sCIfw9iV2Is7BlHW63inZHCM\nkjGyPLEI+rikA5xSrqrK37Omfha3Rw==\n=C5kb\n-----END PGP SIGNATURE-----", + "payload": "tree 86a648b84700a80e22f089252cea0d70e61857bf\nparent efe737fa365a0187e052bc81391efbd84847a1b0\nauthor Jesse Glick 1554733151 -0400\ncommitter Jesse Glick 1554733151 -0400\n\n[maven-release-plugin] prepare release stapler-parent-1.257\n" + } + }, + "url": "https://api.github.com/repos/stapler/stapler/commits/d922b808068cf95d6f6ab624ce2c7f49d51f5321", + "html_url": "https://github.com/stapler/stapler/commit/d922b808068cf95d6f6ab624ce2c7f49d51f5321", + "comments_url": "https://api.github.com/repos/stapler/stapler/commits/d922b808068cf95d6f6ab624ce2c7f49d51f5321/comments", + "author": { + "login": "jglick", + "id": 154109, + "node_id": "MDQ6VXNlcjE1NDEwOQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/154109?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jglick", + "html_url": "https://github.com/jglick", + "followers_url": "https://api.github.com/users/jglick/followers", + "following_url": "https://api.github.com/users/jglick/following{/other_user}", + "gists_url": "https://api.github.com/users/jglick/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jglick/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jglick/subscriptions", + "organizations_url": "https://api.github.com/users/jglick/orgs", + "repos_url": "https://api.github.com/users/jglick/repos", + "events_url": "https://api.github.com/users/jglick/events{/privacy}", + "received_events_url": "https://api.github.com/users/jglick/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "jglick", + "id": 154109, + "node_id": "MDQ6VXNlcjE1NDEwOQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/154109?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jglick", + "html_url": "https://github.com/jglick", + "followers_url": "https://api.github.com/users/jglick/followers", + "following_url": "https://api.github.com/users/jglick/following{/other_user}", + "gists_url": "https://api.github.com/users/jglick/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jglick/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jglick/subscriptions", + "organizations_url": "https://api.github.com/users/jglick/orgs", + "repos_url": "https://api.github.com/users/jglick/repos", + "events_url": "https://api.github.com/users/jglick/events{/privacy}", + "received_events_url": "https://api.github.com/users/jglick/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "efe737fa365a0187e052bc81391efbd84847a1b0", + "url": "https://api.github.com/repos/stapler/stapler/commits/efe737fa365a0187e052bc81391efbd84847a1b0", + "html_url": "https://github.com/stapler/stapler/commit/efe737fa365a0187e052bc81391efbd84847a1b0" + } + ] + }, + { + "sha": "efe737fa365a0187e052bc81391efbd84847a1b0", + "node_id": "MDY6Q29tbWl0MTU0ODUxNDplZmU3MzdmYTM2NWEwMTg3ZTA1MmJjODEzOTFlZmJkODQ4NDdhMWIw", + "commit": { + "author": { + "name": "Jesse Glick", + "email": "jglick@cloudbees.com", + "date": "2019-04-08T14:17:55Z" + }, + "committer": { + "name": "Jesse Glick", + "email": "jglick@cloudbees.com", + "date": "2019-04-08T14:17:55Z" + }, + "message": "#157 neglected to add incrementals-maven-plugin to pluginManagement, breaking reincrementalify during release.", + "tree": { + "sha": "109f198441d6524d99e237ac863e28e80ad77e59", + "url": "https://api.github.com/repos/stapler/stapler/git/trees/109f198441d6524d99e237ac863e28e80ad77e59" + }, + "url": "https://api.github.com/repos/stapler/stapler/git/commits/efe737fa365a0187e052bc81391efbd84847a1b0", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQEzBAABCgAdFiEEYYylhqBIUt57zhxYHdpp2UtiQxEFAlyrWBMACgkQHdpp2Uti\nQxFdngf9HAAKvEN8oIEBq5Vy45V80FMdWVjiYb21qoZ5l6KHNgLm1AmBsnQWvvpU\n1Q+VKMfdp6+492flDYrn+rjLOVAUcHwReTHtyq7YqkUP1E/4FJfT/8mi0szD9u4+\nhDUWKUs0//LLqTGHGgvLcQc4FXHNzcuZIowOfuHlCAOgWHqWuYDnb4aFhY3s8RdJ\na6E0V9MeUtmehKZBhGedfY+b/JpudFC+9dquR5rHEg8cP5jr7Gc3Ifcgx9nNMYXE\nn8qiwz02udK8pU+Z1KVzU4NbHydVHN8V4GceeDhqRbNNM0hjJ1ieBQefpJ+7E76R\nW9pTOeYzI9Xi1nA2pqHR5HVIk5OggA==\n=FmWz\n-----END PGP SIGNATURE-----", + "payload": "tree 109f198441d6524d99e237ac863e28e80ad77e59\nparent 08b13de864bc134fd790decd4f20db9074c7685f\nauthor Jesse Glick 1554733075 -0400\ncommitter Jesse Glick 1554733075 -0400\n\n#157 neglected to add incrementals-maven-plugin to pluginManagement, breaking reincrementalify during release.\n" + } + }, + "url": "https://api.github.com/repos/stapler/stapler/commits/efe737fa365a0187e052bc81391efbd84847a1b0", + "html_url": "https://github.com/stapler/stapler/commit/efe737fa365a0187e052bc81391efbd84847a1b0", + "comments_url": "https://api.github.com/repos/stapler/stapler/commits/efe737fa365a0187e052bc81391efbd84847a1b0/comments", + "author": { + "login": "jglick", + "id": 154109, + "node_id": "MDQ6VXNlcjE1NDEwOQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/154109?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jglick", + "html_url": "https://github.com/jglick", + "followers_url": "https://api.github.com/users/jglick/followers", + "following_url": "https://api.github.com/users/jglick/following{/other_user}", + "gists_url": "https://api.github.com/users/jglick/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jglick/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jglick/subscriptions", + "organizations_url": "https://api.github.com/users/jglick/orgs", + "repos_url": "https://api.github.com/users/jglick/repos", + "events_url": "https://api.github.com/users/jglick/events{/privacy}", + "received_events_url": "https://api.github.com/users/jglick/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "jglick", + "id": 154109, + "node_id": "MDQ6VXNlcjE1NDEwOQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/154109?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jglick", + "html_url": "https://github.com/jglick", + "followers_url": "https://api.github.com/users/jglick/followers", + "following_url": "https://api.github.com/users/jglick/following{/other_user}", + "gists_url": "https://api.github.com/users/jglick/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jglick/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jglick/subscriptions", + "organizations_url": "https://api.github.com/users/jglick/orgs", + "repos_url": "https://api.github.com/users/jglick/repos", + "events_url": "https://api.github.com/users/jglick/events{/privacy}", + "received_events_url": "https://api.github.com/users/jglick/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "08b13de864bc134fd790decd4f20db9074c7685f", + "url": "https://api.github.com/repos/stapler/stapler/commits/08b13de864bc134fd790decd4f20db9074c7685f", + "html_url": "https://github.com/stapler/stapler/commit/08b13de864bc134fd790decd4f20db9074c7685f" + } + ] + }, + { + "sha": "53ce34d7d89c5172ae4f4f3167e35852b1910b59", + "node_id": "MDY6Q29tbWl0MTU0ODUxNDo1M2NlMzRkN2Q4OWM1MTcyYWU0ZjRmMzE2N2UzNTg1MmIxOTEwYjU5", + "commit": { + "author": { + "name": "Jesse Glick", + "email": "jglick@cloudbees.com", + "date": "2019-04-03T19:03:54Z" + }, + "committer": { + "name": "Jesse Glick", + "email": "jglick@cloudbees.com", + "date": "2019-04-03T19:03:54Z" + }, + "message": "Miscellaneous POM updates while I am here.", + "tree": { + "sha": "996a8d951dc95bc002ee4703865f45594418902e", + "url": "https://api.github.com/repos/stapler/stapler/git/trees/996a8d951dc95bc002ee4703865f45594418902e" + }, + "url": "https://api.github.com/repos/stapler/stapler/git/commits/53ce34d7d89c5172ae4f4f3167e35852b1910b59", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQEzBAABCgAdFiEEYYylhqBIUt57zhxYHdpp2UtiQxEFAlylA5oACgkQHdpp2Uti\nQxFfbgf/Sv3T07OcY1W31Z1RyUVaEx0WeZpfZPuAOibFGfGLC6wpa4LCJCwaTK5l\n2I5T9nNZ95/22S3nsFHyb+VAnOFusXblKw8W6BvvyUWwNXzoBQGgvg37hKyNFwdO\nMRdErOixk71Yb6cnCatvzIpBuM4ENO77/TNvLtBApCETO9UQf6GjLU4jbHJySEHJ\n/NXvpdO1Xu5WskTc2k8/x+dtuilvLEAdMZUEHBiBTcGTUGQqedC6C7Mg3pTm9zGE\nQPj5THk+GZ6fD4KJwx0lyW9dGwTM9XYC/hjVs6AHC2dlROFiJ8/K722Fqti/zAyM\nDYz6+UUHcugK555ttRS1ntqgjxxEPw==\n=kTXy\n-----END PGP SIGNATURE-----", + "payload": "tree 996a8d951dc95bc002ee4703865f45594418902e\nparent 0e294ea94617a0926bd583dfe41515f4afb881e7\nauthor Jesse Glick 1554318234 -0400\ncommitter Jesse Glick 1554318234 -0400\n\nMiscellaneous POM updates while I am here.\n" + } + }, + "url": "https://api.github.com/repos/stapler/stapler/commits/53ce34d7d89c5172ae4f4f3167e35852b1910b59", + "html_url": "https://github.com/stapler/stapler/commit/53ce34d7d89c5172ae4f4f3167e35852b1910b59", + "comments_url": "https://api.github.com/repos/stapler/stapler/commits/53ce34d7d89c5172ae4f4f3167e35852b1910b59/comments", + "author": { + "login": "jglick", + "id": 154109, + "node_id": "MDQ6VXNlcjE1NDEwOQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/154109?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jglick", + "html_url": "https://github.com/jglick", + "followers_url": "https://api.github.com/users/jglick/followers", + "following_url": "https://api.github.com/users/jglick/following{/other_user}", + "gists_url": "https://api.github.com/users/jglick/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jglick/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jglick/subscriptions", + "organizations_url": "https://api.github.com/users/jglick/orgs", + "repos_url": "https://api.github.com/users/jglick/repos", + "events_url": "https://api.github.com/users/jglick/events{/privacy}", + "received_events_url": "https://api.github.com/users/jglick/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "jglick", + "id": 154109, + "node_id": "MDQ6VXNlcjE1NDEwOQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/154109?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jglick", + "html_url": "https://github.com/jglick", + "followers_url": "https://api.github.com/users/jglick/followers", + "following_url": "https://api.github.com/users/jglick/following{/other_user}", + "gists_url": "https://api.github.com/users/jglick/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jglick/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jglick/subscriptions", + "organizations_url": "https://api.github.com/users/jglick/orgs", + "repos_url": "https://api.github.com/users/jglick/repos", + "events_url": "https://api.github.com/users/jglick/events{/privacy}", + "received_events_url": "https://api.github.com/users/jglick/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "0e294ea94617a0926bd583dfe41515f4afb881e7", + "url": "https://api.github.com/repos/stapler/stapler/commits/0e294ea94617a0926bd583dfe41515f4afb881e7", + "html_url": "https://github.com/stapler/stapler/commit/0e294ea94617a0926bd583dfe41515f4afb881e7" + } + ] + }, + { + "sha": "72343298733508cced8dcb8eb43594bcc6130b26", + "node_id": "MDY6Q29tbWl0MTU0ODUxNDo3MjM0MzI5ODczMzUwOGNjZWQ4ZGNiOGViNDM1OTRiY2M2MTMwYjI2", + "commit": { + "author": { + "name": "Jeff Thompson", + "email": "jeffret.g@gmail.com", + "date": "2019-02-19T21:27:25Z" + }, + "committer": { + "name": "Jeff Thompson", + "email": "jeffret.g@gmail.com", + "date": "2019-02-19T21:27:25Z" + }, + "message": "Update to latest versions.", + "tree": { + "sha": "e1299f37e2ce97636d923a5631265279a5377b6d", + "url": "https://api.github.com/repos/stapler/stapler/git/trees/e1299f37e2ce97636d923a5631265279a5377b6d" + }, + "url": "https://api.github.com/repos/stapler/stapler/git/commits/72343298733508cced8dcb8eb43594bcc6130b26", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/stapler/stapler/commits/72343298733508cced8dcb8eb43594bcc6130b26", + "html_url": "https://github.com/stapler/stapler/commit/72343298733508cced8dcb8eb43594bcc6130b26", + "comments_url": "https://api.github.com/repos/stapler/stapler/commits/72343298733508cced8dcb8eb43594bcc6130b26/comments", + "author": { + "login": "jeffret-b", + "id": 37345299, + "node_id": "MDQ6VXNlcjM3MzQ1Mjk5", + "avatar_url": "https://avatars0.githubusercontent.com/u/37345299?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jeffret-b", + "html_url": "https://github.com/jeffret-b", + "followers_url": "https://api.github.com/users/jeffret-b/followers", + "following_url": "https://api.github.com/users/jeffret-b/following{/other_user}", + "gists_url": "https://api.github.com/users/jeffret-b/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jeffret-b/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jeffret-b/subscriptions", + "organizations_url": "https://api.github.com/users/jeffret-b/orgs", + "repos_url": "https://api.github.com/users/jeffret-b/repos", + "events_url": "https://api.github.com/users/jeffret-b/events{/privacy}", + "received_events_url": "https://api.github.com/users/jeffret-b/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "jeffret-b", + "id": 37345299, + "node_id": "MDQ6VXNlcjM3MzQ1Mjk5", + "avatar_url": "https://avatars0.githubusercontent.com/u/37345299?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jeffret-b", + "html_url": "https://github.com/jeffret-b", + "followers_url": "https://api.github.com/users/jeffret-b/followers", + "following_url": "https://api.github.com/users/jeffret-b/following{/other_user}", + "gists_url": "https://api.github.com/users/jeffret-b/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jeffret-b/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jeffret-b/subscriptions", + "organizations_url": "https://api.github.com/users/jeffret-b/orgs", + "repos_url": "https://api.github.com/users/jeffret-b/repos", + "events_url": "https://api.github.com/users/jeffret-b/events{/privacy}", + "received_events_url": "https://api.github.com/users/jeffret-b/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "def3808ecd41583818aef3b35675756f00a45bbe", + "url": "https://api.github.com/repos/stapler/stapler/commits/def3808ecd41583818aef3b35675756f00a45bbe", + "html_url": "https://github.com/stapler/stapler/commit/def3808ecd41583818aef3b35675756f00a45bbe" + } + ] + }, + { + "sha": "4f260c560ec120f4e2c2ed727244690b1f4d5dca", + "node_id": "MDY6Q29tbWl0MTU0ODUxNDo0ZjI2MGM1NjBlYzEyMGY0ZTJjMmVkNzI3MjQ0NjkwYjFmNGQ1ZGNh", + "commit": { + "author": { + "name": "Jeff Thompson", + "email": "jeffret.g@gmail.com", + "date": "2019-02-18T22:52:29Z" + }, + "committer": { + "name": "Jeff Thompson", + "email": "jeffret.g@gmail.com", + "date": "2019-02-18T22:52:29Z" + }, + "message": "Enable incrementals.\n\nSince this isn't a plugin, I followed the instructions to do it the hard way. Hopefully it's not too weird to work.", + "tree": { + "sha": "575f9abb94a915cfc9fb0fdcc681648aade5cd1f", + "url": "https://api.github.com/repos/stapler/stapler/git/trees/575f9abb94a915cfc9fb0fdcc681648aade5cd1f" + }, + "url": "https://api.github.com/repos/stapler/stapler/git/commits/4f260c560ec120f4e2c2ed727244690b1f4d5dca", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/stapler/stapler/commits/4f260c560ec120f4e2c2ed727244690b1f4d5dca", + "html_url": "https://github.com/stapler/stapler/commit/4f260c560ec120f4e2c2ed727244690b1f4d5dca", + "comments_url": "https://api.github.com/repos/stapler/stapler/commits/4f260c560ec120f4e2c2ed727244690b1f4d5dca/comments", + "author": { + "login": "jeffret-b", + "id": 37345299, + "node_id": "MDQ6VXNlcjM3MzQ1Mjk5", + "avatar_url": "https://avatars0.githubusercontent.com/u/37345299?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jeffret-b", + "html_url": "https://github.com/jeffret-b", + "followers_url": "https://api.github.com/users/jeffret-b/followers", + "following_url": "https://api.github.com/users/jeffret-b/following{/other_user}", + "gists_url": "https://api.github.com/users/jeffret-b/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jeffret-b/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jeffret-b/subscriptions", + "organizations_url": "https://api.github.com/users/jeffret-b/orgs", + "repos_url": "https://api.github.com/users/jeffret-b/repos", + "events_url": "https://api.github.com/users/jeffret-b/events{/privacy}", + "received_events_url": "https://api.github.com/users/jeffret-b/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "jeffret-b", + "id": 37345299, + "node_id": "MDQ6VXNlcjM3MzQ1Mjk5", + "avatar_url": "https://avatars0.githubusercontent.com/u/37345299?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jeffret-b", + "html_url": "https://github.com/jeffret-b", + "followers_url": "https://api.github.com/users/jeffret-b/followers", + "following_url": "https://api.github.com/users/jeffret-b/following{/other_user}", + "gists_url": "https://api.github.com/users/jeffret-b/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jeffret-b/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jeffret-b/subscriptions", + "organizations_url": "https://api.github.com/users/jeffret-b/orgs", + "repos_url": "https://api.github.com/users/jeffret-b/repos", + "events_url": "https://api.github.com/users/jeffret-b/events{/privacy}", + "received_events_url": "https://api.github.com/users/jeffret-b/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "a019ca42d01dbe7d88f56deade245d7c0366624c", + "url": "https://api.github.com/repos/stapler/stapler/commits/a019ca42d01dbe7d88f56deade245d7c0366624c", + "html_url": "https://github.com/stapler/stapler/commit/a019ca42d01dbe7d88f56deade245d7c0366624c" + } + ] + }, + { + "sha": "78f721eb58c25f2c742d93479ff66a3cf98f508a", + "node_id": "MDY6Q29tbWl0MTU0ODUxNDo3OGY3MjFlYjU4YzI1ZjJjNzQyZDkzNDc5ZmY2NmEzY2Y5OGY1MDhh", + "commit": { + "author": { + "name": "Jesse Glick", + "email": "jglick@cloudbees.com", + "date": "2018-12-14T20:22:38Z" + }, + "committer": { + "name": "Jesse Glick", + "email": "jglick@cloudbees.com", + "date": "2018-12-14T20:22:38Z" + }, + "message": "Port of https://github.com/jenkinsci/pom/pull/34.", + "tree": { + "sha": "fbbb94d44b8c382d4cb20faf5824811be9bc9670", + "url": "https://api.github.com/repos/stapler/stapler/git/trees/fbbb94d44b8c382d4cb20faf5824811be9bc9670" + }, + "url": "https://api.github.com/repos/stapler/stapler/git/commits/78f721eb58c25f2c742d93479ff66a3cf98f508a", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQEzBAABCgAdFiEEYYylhqBIUt57zhxYHdpp2UtiQxEFAlwUEQ4ACgkQHdpp2Uti\nQxFIegf+O6pldE7TilUNFUpruU1EeLsjhc7BiOMPYPD4gGx7/BF3hTJ5zm7KKip9\nr27Xjs+sQipDCKv9HV3t+PHVB6NvkHkivRVpKI8NKQtyK33K+0NH8mwpSfYRQxUa\npW78Ycs7e2mBomHD0Eiv2EDO+T343YhCvOkNhYO+GU2PMeRfaTr8fp5A8XlrqBDC\nNdEoKPZDmNRXQBTUW2QomuP28PNGzDWXMCJ/pZ8us+YYoBmn0mxf9F7azcgxlkUd\nqbSfgehjd+O5UlRuHqJ7SMN7PGP5fuEQ6xAFkTo/4pqy6U3A/eSDzJtKaRg1MQ8g\np/PQ2FjTt08q2UjvYu1rtDVeLQSmxw==\n=HSGY\n-----END PGP SIGNATURE-----", + "payload": "tree fbbb94d44b8c382d4cb20faf5824811be9bc9670\nparent cebe82d8aee82f93797f315a230fcc74ff950f64\nauthor Jesse Glick 1544818958 -0500\ncommitter Jesse Glick 1544818958 -0500\n\nPort of https://github.com/jenkinsci/pom/pull/34.\n" + } + }, + "url": "https://api.github.com/repos/stapler/stapler/commits/78f721eb58c25f2c742d93479ff66a3cf98f508a", + "html_url": "https://github.com/stapler/stapler/commit/78f721eb58c25f2c742d93479ff66a3cf98f508a", + "comments_url": "https://api.github.com/repos/stapler/stapler/commits/78f721eb58c25f2c742d93479ff66a3cf98f508a/comments", + "author": { + "login": "jglick", + "id": 154109, + "node_id": "MDQ6VXNlcjE1NDEwOQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/154109?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jglick", + "html_url": "https://github.com/jglick", + "followers_url": "https://api.github.com/users/jglick/followers", + "following_url": "https://api.github.com/users/jglick/following{/other_user}", + "gists_url": "https://api.github.com/users/jglick/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jglick/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jglick/subscriptions", + "organizations_url": "https://api.github.com/users/jglick/orgs", + "repos_url": "https://api.github.com/users/jglick/repos", + "events_url": "https://api.github.com/users/jglick/events{/privacy}", + "received_events_url": "https://api.github.com/users/jglick/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "jglick", + "id": 154109, + "node_id": "MDQ6VXNlcjE1NDEwOQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/154109?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jglick", + "html_url": "https://github.com/jglick", + "followers_url": "https://api.github.com/users/jglick/followers", + "following_url": "https://api.github.com/users/jglick/following{/other_user}", + "gists_url": "https://api.github.com/users/jglick/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jglick/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jglick/subscriptions", + "organizations_url": "https://api.github.com/users/jglick/orgs", + "repos_url": "https://api.github.com/users/jglick/repos", + "events_url": "https://api.github.com/users/jglick/events{/privacy}", + "received_events_url": "https://api.github.com/users/jglick/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "cebe82d8aee82f93797f315a230fcc74ff950f64", + "url": "https://api.github.com/repos/stapler/stapler/commits/cebe82d8aee82f93797f315a230fcc74ff950f64", + "html_url": "https://github.com/stapler/stapler/commit/cebe82d8aee82f93797f315a230fcc74ff950f64" + } + ] + }, + { + "sha": "7b57b988f4af83d41ca2c17277bca4049522baaa", + "node_id": "MDY6Q29tbWl0MTU0ODUxNDo3YjU3Yjk4OGY0YWY4M2Q0MWNhMmMxNzI3N2JjYTQwNDk1MjJiYWFh", + "commit": { + "author": { + "name": "Daniel Beck", + "email": "daniel-beck@users.noreply.github.com", + "date": "2018-11-20T22:50:07Z" + }, + "committer": { + "name": "Daniel Beck", + "email": "daniel-beck@users.noreply.github.com", + "date": "2018-11-20T22:50:07Z" + }, + "message": "[maven-release-plugin] prepare for next development iteration", + "tree": { + "sha": "cc2e431cfba52e2f2e56bac66e756f49fe879b48", + "url": "https://api.github.com/repos/stapler/stapler/git/trees/cc2e431cfba52e2f2e56bac66e756f49fe879b48" + }, + "url": "https://api.github.com/repos/stapler/stapler/git/commits/7b57b988f4af83d41ca2c17277bca4049522baaa", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/stapler/stapler/commits/7b57b988f4af83d41ca2c17277bca4049522baaa", + "html_url": "https://github.com/stapler/stapler/commit/7b57b988f4af83d41ca2c17277bca4049522baaa", + "comments_url": "https://api.github.com/repos/stapler/stapler/commits/7b57b988f4af83d41ca2c17277bca4049522baaa/comments", + "author": { + "login": "daniel-beck", + "id": 1831569, + "node_id": "MDQ6VXNlcjE4MzE1Njk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1831569?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/daniel-beck", + "html_url": "https://github.com/daniel-beck", + "followers_url": "https://api.github.com/users/daniel-beck/followers", + "following_url": "https://api.github.com/users/daniel-beck/following{/other_user}", + "gists_url": "https://api.github.com/users/daniel-beck/gists{/gist_id}", + "starred_url": "https://api.github.com/users/daniel-beck/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/daniel-beck/subscriptions", + "organizations_url": "https://api.github.com/users/daniel-beck/orgs", + "repos_url": "https://api.github.com/users/daniel-beck/repos", + "events_url": "https://api.github.com/users/daniel-beck/events{/privacy}", + "received_events_url": "https://api.github.com/users/daniel-beck/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "daniel-beck", + "id": 1831569, + "node_id": "MDQ6VXNlcjE4MzE1Njk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1831569?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/daniel-beck", + "html_url": "https://github.com/daniel-beck", + "followers_url": "https://api.github.com/users/daniel-beck/followers", + "following_url": "https://api.github.com/users/daniel-beck/following{/other_user}", + "gists_url": "https://api.github.com/users/daniel-beck/gists{/gist_id}", + "starred_url": "https://api.github.com/users/daniel-beck/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/daniel-beck/subscriptions", + "organizations_url": "https://api.github.com/users/daniel-beck/orgs", + "repos_url": "https://api.github.com/users/daniel-beck/repos", + "events_url": "https://api.github.com/users/daniel-beck/events{/privacy}", + "received_events_url": "https://api.github.com/users/daniel-beck/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "d9f05512169d70bbd8deff1e87afe3fdd251dc54", + "url": "https://api.github.com/repos/stapler/stapler/commits/d9f05512169d70bbd8deff1e87afe3fdd251dc54", + "html_url": "https://github.com/stapler/stapler/commit/d9f05512169d70bbd8deff1e87afe3fdd251dc54" + } + ] + }, + { + "sha": "d9f05512169d70bbd8deff1e87afe3fdd251dc54", + "node_id": "MDY6Q29tbWl0MTU0ODUxNDpkOWYwNTUxMjE2OWQ3MGJiZDhkZWZmMWU4N2FmZTNmZGQyNTFkYzU0", + "commit": { + "author": { + "name": "Daniel Beck", + "email": "daniel-beck@users.noreply.github.com", + "date": "2018-11-20T22:50:06Z" + }, + "committer": { + "name": "Daniel Beck", + "email": "daniel-beck@users.noreply.github.com", + "date": "2018-11-20T22:50:06Z" + }, + "message": "[maven-release-plugin] prepare release stapler-parent-1.256", + "tree": { + "sha": "72489bbab47bb18acb370d8f84b150343b7dd358", + "url": "https://api.github.com/repos/stapler/stapler/git/trees/72489bbab47bb18acb370d8f84b150343b7dd358" + }, + "url": "https://api.github.com/repos/stapler/stapler/git/commits/d9f05512169d70bbd8deff1e87afe3fdd251dc54", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/stapler/stapler/commits/d9f05512169d70bbd8deff1e87afe3fdd251dc54", + "html_url": "https://github.com/stapler/stapler/commit/d9f05512169d70bbd8deff1e87afe3fdd251dc54", + "comments_url": "https://api.github.com/repos/stapler/stapler/commits/d9f05512169d70bbd8deff1e87afe3fdd251dc54/comments", + "author": { + "login": "daniel-beck", + "id": 1831569, + "node_id": "MDQ6VXNlcjE4MzE1Njk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1831569?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/daniel-beck", + "html_url": "https://github.com/daniel-beck", + "followers_url": "https://api.github.com/users/daniel-beck/followers", + "following_url": "https://api.github.com/users/daniel-beck/following{/other_user}", + "gists_url": "https://api.github.com/users/daniel-beck/gists{/gist_id}", + "starred_url": "https://api.github.com/users/daniel-beck/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/daniel-beck/subscriptions", + "organizations_url": "https://api.github.com/users/daniel-beck/orgs", + "repos_url": "https://api.github.com/users/daniel-beck/repos", + "events_url": "https://api.github.com/users/daniel-beck/events{/privacy}", + "received_events_url": "https://api.github.com/users/daniel-beck/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "daniel-beck", + "id": 1831569, + "node_id": "MDQ6VXNlcjE4MzE1Njk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1831569?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/daniel-beck", + "html_url": "https://github.com/daniel-beck", + "followers_url": "https://api.github.com/users/daniel-beck/followers", + "following_url": "https://api.github.com/users/daniel-beck/following{/other_user}", + "gists_url": "https://api.github.com/users/daniel-beck/gists{/gist_id}", + "starred_url": "https://api.github.com/users/daniel-beck/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/daniel-beck/subscriptions", + "organizations_url": "https://api.github.com/users/daniel-beck/orgs", + "repos_url": "https://api.github.com/users/daniel-beck/repos", + "events_url": "https://api.github.com/users/daniel-beck/events{/privacy}", + "received_events_url": "https://api.github.com/users/daniel-beck/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "d9c0e42d4d8d4fa46e88370a4dc1239a4761cd20", + "url": "https://api.github.com/repos/stapler/stapler/commits/d9c0e42d4d8d4fa46e88370a4dc1239a4761cd20", + "html_url": "https://github.com/stapler/stapler/commit/d9c0e42d4d8d4fa46e88370a4dc1239a4761cd20" + } + ] + }, + { + "sha": "86e213c169ee0ea3565f9b5bd58707bc00a09b02", + "node_id": "MDY6Q29tbWl0MTU0ODUxNDo4NmUyMTNjMTY5ZWUwZWEzNTY1ZjliNWJkNTg3MDdiYzAwYTA5YjAy", + "commit": { + "author": { + "name": "Jesse Glick", + "email": "jglick@cloudbees.com", + "date": "2018-10-11T13:14:48Z" + }, + "committer": { + "name": "Jesse Glick", + "email": "jglick@cloudbees.com", + "date": "2018-10-11T13:14:48Z" + }, + "message": "[maven-release-plugin] prepare for next development iteration", + "tree": { + "sha": "c1c7e1eecffdf77e20f4b07a0690f599d3ca9a56", + "url": "https://api.github.com/repos/stapler/stapler/git/trees/c1c7e1eecffdf77e20f4b07a0690f599d3ca9a56" + }, + "url": "https://api.github.com/repos/stapler/stapler/git/commits/86e213c169ee0ea3565f9b5bd58707bc00a09b02", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQEzBAABCgAdFiEEYYylhqBIUt57zhxYHdpp2UtiQxEFAlu/TMgACgkQHdpp2Uti\nQxE9/Af+K1ShxOzSJcAa90xQZ3hMpj4H4EB6O85roPMakUlVdzhcAKny9FYuMH7H\nK+j+LMaXe17ZKOcj6FTg0MMA8eEE5WjMEHUIQKsJCes5V0xBfJtB6OGeR1nSNFR2\ndGCPuaPMqCT43JZCYgVr3o+/Eylpz1HQlljbp5eanfYX0AdSGmaFOLSrEC4HZ8VW\neTzJbElZTHLtwxOZJWIgRM/LgQA65pSDOBarSshw6pmNg/NnrMSqF+hiCQ+tuLxg\nIpp980DtB1DuXAjE92vdMe2SZLkF1TpeO01i4qnhHLzAAqDs5z2xZmr+Om8dOMg7\nJA95XVBFDZMK33hySR+QW3UtvBbgXg==\n=QROA\n-----END PGP SIGNATURE-----", + "payload": "tree c1c7e1eecffdf77e20f4b07a0690f599d3ca9a56\nparent c7d9760c909ca34c9c8ad3e8959a79eec433b45e\nauthor Jesse Glick 1539263688 -0400\ncommitter Jesse Glick 1539263688 -0400\n\n[maven-release-plugin] prepare for next development iteration\n" + } + }, + "url": "https://api.github.com/repos/stapler/stapler/commits/86e213c169ee0ea3565f9b5bd58707bc00a09b02", + "html_url": "https://github.com/stapler/stapler/commit/86e213c169ee0ea3565f9b5bd58707bc00a09b02", + "comments_url": "https://api.github.com/repos/stapler/stapler/commits/86e213c169ee0ea3565f9b5bd58707bc00a09b02/comments", + "author": { + "login": "jglick", + "id": 154109, + "node_id": "MDQ6VXNlcjE1NDEwOQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/154109?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jglick", + "html_url": "https://github.com/jglick", + "followers_url": "https://api.github.com/users/jglick/followers", + "following_url": "https://api.github.com/users/jglick/following{/other_user}", + "gists_url": "https://api.github.com/users/jglick/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jglick/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jglick/subscriptions", + "organizations_url": "https://api.github.com/users/jglick/orgs", + "repos_url": "https://api.github.com/users/jglick/repos", + "events_url": "https://api.github.com/users/jglick/events{/privacy}", + "received_events_url": "https://api.github.com/users/jglick/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "jglick", + "id": 154109, + "node_id": "MDQ6VXNlcjE1NDEwOQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/154109?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jglick", + "html_url": "https://github.com/jglick", + "followers_url": "https://api.github.com/users/jglick/followers", + "following_url": "https://api.github.com/users/jglick/following{/other_user}", + "gists_url": "https://api.github.com/users/jglick/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jglick/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jglick/subscriptions", + "organizations_url": "https://api.github.com/users/jglick/orgs", + "repos_url": "https://api.github.com/users/jglick/repos", + "events_url": "https://api.github.com/users/jglick/events{/privacy}", + "received_events_url": "https://api.github.com/users/jglick/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "c7d9760c909ca34c9c8ad3e8959a79eec433b45e", + "url": "https://api.github.com/repos/stapler/stapler/commits/c7d9760c909ca34c9c8ad3e8959a79eec433b45e", + "html_url": "https://github.com/stapler/stapler/commit/c7d9760c909ca34c9c8ad3e8959a79eec433b45e" + } + ] + }, + { + "sha": "c7d9760c909ca34c9c8ad3e8959a79eec433b45e", + "node_id": "MDY6Q29tbWl0MTU0ODUxNDpjN2Q5NzYwYzkwOWNhMzRjOWM4YWQzZTg5NTlhNzllZWM0MzNiNDVl", + "commit": { + "author": { + "name": "Jesse Glick", + "email": "jglick@cloudbees.com", + "date": "2018-10-11T13:14:41Z" + }, + "committer": { + "name": "Jesse Glick", + "email": "jglick@cloudbees.com", + "date": "2018-10-11T13:14:41Z" + }, + "message": "[maven-release-plugin] prepare release stapler-parent-1.255", + "tree": { + "sha": "cb599cb07bfc68659244ba69d941e29263f91425", + "url": "https://api.github.com/repos/stapler/stapler/git/trees/cb599cb07bfc68659244ba69d941e29263f91425" + }, + "url": "https://api.github.com/repos/stapler/stapler/git/commits/c7d9760c909ca34c9c8ad3e8959a79eec433b45e", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQEzBAABCgAdFiEEYYylhqBIUt57zhxYHdpp2UtiQxEFAlu/TMEACgkQHdpp2Uti\nQxFiCwgAlSUgLjLRfmahF5y+T4wwQXWt1WeCLlkKdjEGoTovGEgz2Q8qCS9KmnlE\nD1E+SNb5XbLcQI88X61sl8cGiUvE0nvPdT6yxWAolmyrOKwquPocwwdAfSdHrb7F\nk+YtzxRl/Di2CMAzgpSFvdBW+qW+MCbPwOTsVpC9lPLluzEF4+zu6vkeRhdodxu+\nvsG+p4oxNyLRi7oyFHhzE+bODUoFBNfSmLoCkNeO0gEN81IFnE+fKbPE9uCuOqMf\n6NKQXJNzYd/K59fJA6IPcE+yCoh0qol8Y954PTfqHev6o9TABwxf+dUEz2aqNfl+\ndk7d6yGVZOWA1KuTWd10jFe5gpRTrA==\n=LsFr\n-----END PGP SIGNATURE-----", + "payload": "tree cb599cb07bfc68659244ba69d941e29263f91425\nparent 9de442464f5a40263e1c001c4c8ec4c8fbbefb30\nauthor Jesse Glick 1539263681 -0400\ncommitter Jesse Glick 1539263681 -0400\n\n[maven-release-plugin] prepare release stapler-parent-1.255\n" + } + }, + "url": "https://api.github.com/repos/stapler/stapler/commits/c7d9760c909ca34c9c8ad3e8959a79eec433b45e", + "html_url": "https://github.com/stapler/stapler/commit/c7d9760c909ca34c9c8ad3e8959a79eec433b45e", + "comments_url": "https://api.github.com/repos/stapler/stapler/commits/c7d9760c909ca34c9c8ad3e8959a79eec433b45e/comments", + "author": { + "login": "jglick", + "id": 154109, + "node_id": "MDQ6VXNlcjE1NDEwOQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/154109?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jglick", + "html_url": "https://github.com/jglick", + "followers_url": "https://api.github.com/users/jglick/followers", + "following_url": "https://api.github.com/users/jglick/following{/other_user}", + "gists_url": "https://api.github.com/users/jglick/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jglick/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jglick/subscriptions", + "organizations_url": "https://api.github.com/users/jglick/orgs", + "repos_url": "https://api.github.com/users/jglick/repos", + "events_url": "https://api.github.com/users/jglick/events{/privacy}", + "received_events_url": "https://api.github.com/users/jglick/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "jglick", + "id": 154109, + "node_id": "MDQ6VXNlcjE1NDEwOQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/154109?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jglick", + "html_url": "https://github.com/jglick", + "followers_url": "https://api.github.com/users/jglick/followers", + "following_url": "https://api.github.com/users/jglick/following{/other_user}", + "gists_url": "https://api.github.com/users/jglick/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jglick/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jglick/subscriptions", + "organizations_url": "https://api.github.com/users/jglick/orgs", + "repos_url": "https://api.github.com/users/jglick/repos", + "events_url": "https://api.github.com/users/jglick/events{/privacy}", + "received_events_url": "https://api.github.com/users/jglick/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "9de442464f5a40263e1c001c4c8ec4c8fbbefb30", + "url": "https://api.github.com/repos/stapler/stapler/commits/9de442464f5a40263e1c001c4c8ec4c8fbbefb30", + "html_url": "https://github.com/stapler/stapler/commit/9de442464f5a40263e1c001c4c8ec4c8fbbefb30" + } + ] + }, + { + "sha": "a3a2412a6d348cd97d5edfdf727996118d6c9c43", + "node_id": "MDY6Q29tbWl0MTU0ODUxNDphM2EyNDEyYTZkMzQ4Y2Q5N2Q1ZWRmZGY3Mjc5OTYxMThkNmM5YzQz", + "commit": { + "author": { + "name": "Jesse Glick", + "email": "jglick@cloudbees.com", + "date": "2018-10-11T12:00:25Z" + }, + "committer": { + "name": "Jesse Glick", + "email": "jglick@cloudbees.com", + "date": "2018-10-11T12:00:25Z" + }, + "message": "Reverting version change from #146.", + "tree": { + "sha": "2091120406431f581f483d2ce8329c7a7d9b5686", + "url": "https://api.github.com/repos/stapler/stapler/git/trees/2091120406431f581f483d2ce8329c7a7d9b5686" + }, + "url": "https://api.github.com/repos/stapler/stapler/git/commits/a3a2412a6d348cd97d5edfdf727996118d6c9c43", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQEzBAABCgAdFiEEYYylhqBIUt57zhxYHdpp2UtiQxEFAlu/O1kACgkQHdpp2Uti\nQxHm2Qf/bF+fwm1u2KfSW9CAJFzVntw6fEwiEtL7J1dUUMngDhhAuxQjer14ldru\nAy9bsf20/rNLOGL71ibivTR4ExZMbOByYmnh3Po9R/kYWZG5erFLNIf/ax2lpgEB\nCXnOKVnmTmCnLN6N4xWDEauzVBJyK2bk9gILWbFKi2of4M12KXXaXoBpJimg0yZr\neymffa3SYexO7cN6xGaM/HO2UEoi2zTQqqGgV6Mt1gbUHmahnuRjNxTJ23GStfZQ\nSOmFTCeMPjUOqhpt+n3vu6x9KrV+/JmL2GtD/HEdHn1TWEELE2mXx7+TYBExOShx\nEWISOQWwZh1iZSF3z0KfprwuhsaStw==\n=4U63\n-----END PGP SIGNATURE-----", + "payload": "tree 2091120406431f581f483d2ce8329c7a7d9b5686\nparent baae85648bcc3b7614e06136d69a3a3308161ac2\nauthor Jesse Glick 1539259225 -0400\ncommitter Jesse Glick 1539259225 -0400\n\nReverting version change from #146.\n" + } + }, + "url": "https://api.github.com/repos/stapler/stapler/commits/a3a2412a6d348cd97d5edfdf727996118d6c9c43", + "html_url": "https://github.com/stapler/stapler/commit/a3a2412a6d348cd97d5edfdf727996118d6c9c43", + "comments_url": "https://api.github.com/repos/stapler/stapler/commits/a3a2412a6d348cd97d5edfdf727996118d6c9c43/comments", + "author": { + "login": "jglick", + "id": 154109, + "node_id": "MDQ6VXNlcjE1NDEwOQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/154109?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jglick", + "html_url": "https://github.com/jglick", + "followers_url": "https://api.github.com/users/jglick/followers", + "following_url": "https://api.github.com/users/jglick/following{/other_user}", + "gists_url": "https://api.github.com/users/jglick/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jglick/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jglick/subscriptions", + "organizations_url": "https://api.github.com/users/jglick/orgs", + "repos_url": "https://api.github.com/users/jglick/repos", + "events_url": "https://api.github.com/users/jglick/events{/privacy}", + "received_events_url": "https://api.github.com/users/jglick/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "jglick", + "id": 154109, + "node_id": "MDQ6VXNlcjE1NDEwOQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/154109?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jglick", + "html_url": "https://github.com/jglick", + "followers_url": "https://api.github.com/users/jglick/followers", + "following_url": "https://api.github.com/users/jglick/following{/other_user}", + "gists_url": "https://api.github.com/users/jglick/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jglick/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jglick/subscriptions", + "organizations_url": "https://api.github.com/users/jglick/orgs", + "repos_url": "https://api.github.com/users/jglick/repos", + "events_url": "https://api.github.com/users/jglick/events{/privacy}", + "received_events_url": "https://api.github.com/users/jglick/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "baae85648bcc3b7614e06136d69a3a3308161ac2", + "url": "https://api.github.com/repos/stapler/stapler/commits/baae85648bcc3b7614e06136d69a3a3308161ac2", + "html_url": "https://github.com/stapler/stapler/commit/baae85648bcc3b7614e06136d69a3a3308161ac2" + } + ] + }, + { + "sha": "7d06fa1264dc96380e37aa15eb12289ad68690aa", + "node_id": "MDY6Q29tbWl0MTU0ODUxNDo3ZDA2ZmExMjY0ZGM5NjM4MGUzN2FhMTVlYjEyMjg5YWQ2ODY5MGFh", + "commit": { + "author": { + "name": "Daniel Beck", + "email": "daniel-beck@users.noreply.github.com", + "date": "2018-09-27T00:33:05Z" + }, + "committer": { + "name": "Daniel Beck", + "email": "daniel-beck@users.noreply.github.com", + "date": "2018-09-27T00:33:05Z" + }, + "message": "[maven-release-plugin] prepare for next development iteration", + "tree": { + "sha": "9f43ea7f6eeba931f4fb54ab992c0d6c5860b47e", + "url": "https://api.github.com/repos/stapler/stapler/git/trees/9f43ea7f6eeba931f4fb54ab992c0d6c5860b47e" + }, + "url": "https://api.github.com/repos/stapler/stapler/git/commits/7d06fa1264dc96380e37aa15eb12289ad68690aa", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/stapler/stapler/commits/7d06fa1264dc96380e37aa15eb12289ad68690aa", + "html_url": "https://github.com/stapler/stapler/commit/7d06fa1264dc96380e37aa15eb12289ad68690aa", + "comments_url": "https://api.github.com/repos/stapler/stapler/commits/7d06fa1264dc96380e37aa15eb12289ad68690aa/comments", + "author": { + "login": "daniel-beck", + "id": 1831569, + "node_id": "MDQ6VXNlcjE4MzE1Njk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1831569?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/daniel-beck", + "html_url": "https://github.com/daniel-beck", + "followers_url": "https://api.github.com/users/daniel-beck/followers", + "following_url": "https://api.github.com/users/daniel-beck/following{/other_user}", + "gists_url": "https://api.github.com/users/daniel-beck/gists{/gist_id}", + "starred_url": "https://api.github.com/users/daniel-beck/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/daniel-beck/subscriptions", + "organizations_url": "https://api.github.com/users/daniel-beck/orgs", + "repos_url": "https://api.github.com/users/daniel-beck/repos", + "events_url": "https://api.github.com/users/daniel-beck/events{/privacy}", + "received_events_url": "https://api.github.com/users/daniel-beck/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "daniel-beck", + "id": 1831569, + "node_id": "MDQ6VXNlcjE4MzE1Njk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1831569?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/daniel-beck", + "html_url": "https://github.com/daniel-beck", + "followers_url": "https://api.github.com/users/daniel-beck/followers", + "following_url": "https://api.github.com/users/daniel-beck/following{/other_user}", + "gists_url": "https://api.github.com/users/daniel-beck/gists{/gist_id}", + "starred_url": "https://api.github.com/users/daniel-beck/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/daniel-beck/subscriptions", + "organizations_url": "https://api.github.com/users/daniel-beck/orgs", + "repos_url": "https://api.github.com/users/daniel-beck/repos", + "events_url": "https://api.github.com/users/daniel-beck/events{/privacy}", + "received_events_url": "https://api.github.com/users/daniel-beck/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "91087c2e85b9e9539fb291c8298fb4692a7c2d84", + "url": "https://api.github.com/repos/stapler/stapler/commits/91087c2e85b9e9539fb291c8298fb4692a7c2d84", + "html_url": "https://github.com/stapler/stapler/commit/91087c2e85b9e9539fb291c8298fb4692a7c2d84" + } + ] + }, + { + "sha": "91087c2e85b9e9539fb291c8298fb4692a7c2d84", + "node_id": "MDY6Q29tbWl0MTU0ODUxNDo5MTA4N2MyZTg1YjllOTUzOWZiMjkxYzgyOThmYjQ2OTJhN2MyZDg0", + "commit": { + "author": { + "name": "Daniel Beck", + "email": "daniel-beck@users.noreply.github.com", + "date": "2018-09-27T00:33:04Z" + }, + "committer": { + "name": "Daniel Beck", + "email": "daniel-beck@users.noreply.github.com", + "date": "2018-09-27T00:33:04Z" + }, + "message": "[maven-release-plugin] prepare release stapler-parent-1.254.2", + "tree": { + "sha": "c928a28e808845dd5c6008c255205a3ca7f15650", + "url": "https://api.github.com/repos/stapler/stapler/git/trees/c928a28e808845dd5c6008c255205a3ca7f15650" + }, + "url": "https://api.github.com/repos/stapler/stapler/git/commits/91087c2e85b9e9539fb291c8298fb4692a7c2d84", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/stapler/stapler/commits/91087c2e85b9e9539fb291c8298fb4692a7c2d84", + "html_url": "https://github.com/stapler/stapler/commit/91087c2e85b9e9539fb291c8298fb4692a7c2d84", + "comments_url": "https://api.github.com/repos/stapler/stapler/commits/91087c2e85b9e9539fb291c8298fb4692a7c2d84/comments", + "author": { + "login": "daniel-beck", + "id": 1831569, + "node_id": "MDQ6VXNlcjE4MzE1Njk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1831569?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/daniel-beck", + "html_url": "https://github.com/daniel-beck", + "followers_url": "https://api.github.com/users/daniel-beck/followers", + "following_url": "https://api.github.com/users/daniel-beck/following{/other_user}", + "gists_url": "https://api.github.com/users/daniel-beck/gists{/gist_id}", + "starred_url": "https://api.github.com/users/daniel-beck/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/daniel-beck/subscriptions", + "organizations_url": "https://api.github.com/users/daniel-beck/orgs", + "repos_url": "https://api.github.com/users/daniel-beck/repos", + "events_url": "https://api.github.com/users/daniel-beck/events{/privacy}", + "received_events_url": "https://api.github.com/users/daniel-beck/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "daniel-beck", + "id": 1831569, + "node_id": "MDQ6VXNlcjE4MzE1Njk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1831569?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/daniel-beck", + "html_url": "https://github.com/daniel-beck", + "followers_url": "https://api.github.com/users/daniel-beck/followers", + "following_url": "https://api.github.com/users/daniel-beck/following{/other_user}", + "gists_url": "https://api.github.com/users/daniel-beck/gists{/gist_id}", + "starred_url": "https://api.github.com/users/daniel-beck/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/daniel-beck/subscriptions", + "organizations_url": "https://api.github.com/users/daniel-beck/orgs", + "repos_url": "https://api.github.com/users/daniel-beck/repos", + "events_url": "https://api.github.com/users/daniel-beck/events{/privacy}", + "received_events_url": "https://api.github.com/users/daniel-beck/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "e161023b9284f7572064c7618c896e5c29035ab1", + "url": "https://api.github.com/repos/stapler/stapler/commits/e161023b9284f7572064c7618c896e5c29035ab1", + "html_url": "https://github.com/stapler/stapler/commit/e161023b9284f7572064c7618c896e5c29035ab1" + } + ] + }, + { + "sha": "5264351dda1af88557c0ebd9be6ce050bc883ca1", + "node_id": "MDY6Q29tbWl0MTU0ODUxNDo1MjY0MzUxZGRhMWFmODg1NTdjMGViZDliZTZjZTA1MGJjODgzY2Ex", + "commit": { + "author": { + "name": "Daniel Beck", + "email": "daniel-beck@users.noreply.github.com", + "date": "2018-06-19T18:46:22Z" + }, + "committer": { + "name": "Daniel Beck", + "email": "daniel-beck@users.noreply.github.com", + "date": "2018-06-19T18:46:22Z" + }, + "message": "[maven-release-plugin] prepare for next development iteration", + "tree": { + "sha": "2bab1a02c342004f23ba782d3bed830a6fe1943b", + "url": "https://api.github.com/repos/stapler/stapler/git/trees/2bab1a02c342004f23ba782d3bed830a6fe1943b" + }, + "url": "https://api.github.com/repos/stapler/stapler/git/commits/5264351dda1af88557c0ebd9be6ce050bc883ca1", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/stapler/stapler/commits/5264351dda1af88557c0ebd9be6ce050bc883ca1", + "html_url": "https://github.com/stapler/stapler/commit/5264351dda1af88557c0ebd9be6ce050bc883ca1", + "comments_url": "https://api.github.com/repos/stapler/stapler/commits/5264351dda1af88557c0ebd9be6ce050bc883ca1/comments", + "author": { + "login": "daniel-beck", + "id": 1831569, + "node_id": "MDQ6VXNlcjE4MzE1Njk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1831569?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/daniel-beck", + "html_url": "https://github.com/daniel-beck", + "followers_url": "https://api.github.com/users/daniel-beck/followers", + "following_url": "https://api.github.com/users/daniel-beck/following{/other_user}", + "gists_url": "https://api.github.com/users/daniel-beck/gists{/gist_id}", + "starred_url": "https://api.github.com/users/daniel-beck/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/daniel-beck/subscriptions", + "organizations_url": "https://api.github.com/users/daniel-beck/orgs", + "repos_url": "https://api.github.com/users/daniel-beck/repos", + "events_url": "https://api.github.com/users/daniel-beck/events{/privacy}", + "received_events_url": "https://api.github.com/users/daniel-beck/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "daniel-beck", + "id": 1831569, + "node_id": "MDQ6VXNlcjE4MzE1Njk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1831569?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/daniel-beck", + "html_url": "https://github.com/daniel-beck", + "followers_url": "https://api.github.com/users/daniel-beck/followers", + "following_url": "https://api.github.com/users/daniel-beck/following{/other_user}", + "gists_url": "https://api.github.com/users/daniel-beck/gists{/gist_id}", + "starred_url": "https://api.github.com/users/daniel-beck/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/daniel-beck/subscriptions", + "organizations_url": "https://api.github.com/users/daniel-beck/orgs", + "repos_url": "https://api.github.com/users/daniel-beck/repos", + "events_url": "https://api.github.com/users/daniel-beck/events{/privacy}", + "received_events_url": "https://api.github.com/users/daniel-beck/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "eb7bb985c89187288fc54f9a50aeb80e90821f7c", + "url": "https://api.github.com/repos/stapler/stapler/commits/eb7bb985c89187288fc54f9a50aeb80e90821f7c", + "html_url": "https://github.com/stapler/stapler/commit/eb7bb985c89187288fc54f9a50aeb80e90821f7c" + } + ] + }, + { + "sha": "eb7bb985c89187288fc54f9a50aeb80e90821f7c", + "node_id": "MDY6Q29tbWl0MTU0ODUxNDplYjdiYjk4NWM4OTE4NzI4OGZjNTRmOWE1MGFlYjgwZTkwODIxZjdj", + "commit": { + "author": { + "name": "Daniel Beck", + "email": "daniel-beck@users.noreply.github.com", + "date": "2018-06-19T18:46:22Z" + }, + "committer": { + "name": "Daniel Beck", + "email": "daniel-beck@users.noreply.github.com", + "date": "2018-06-19T18:46:22Z" + }, + "message": "[maven-release-plugin] prepare release stapler-parent-1.254.1", + "tree": { + "sha": "feecc3f969470e3d89d4bd003a9d63f78bff1b11", + "url": "https://api.github.com/repos/stapler/stapler/git/trees/feecc3f969470e3d89d4bd003a9d63f78bff1b11" + }, + "url": "https://api.github.com/repos/stapler/stapler/git/commits/eb7bb985c89187288fc54f9a50aeb80e90821f7c", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/stapler/stapler/commits/eb7bb985c89187288fc54f9a50aeb80e90821f7c", + "html_url": "https://github.com/stapler/stapler/commit/eb7bb985c89187288fc54f9a50aeb80e90821f7c", + "comments_url": "https://api.github.com/repos/stapler/stapler/commits/eb7bb985c89187288fc54f9a50aeb80e90821f7c/comments", + "author": { + "login": "daniel-beck", + "id": 1831569, + "node_id": "MDQ6VXNlcjE4MzE1Njk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1831569?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/daniel-beck", + "html_url": "https://github.com/daniel-beck", + "followers_url": "https://api.github.com/users/daniel-beck/followers", + "following_url": "https://api.github.com/users/daniel-beck/following{/other_user}", + "gists_url": "https://api.github.com/users/daniel-beck/gists{/gist_id}", + "starred_url": "https://api.github.com/users/daniel-beck/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/daniel-beck/subscriptions", + "organizations_url": "https://api.github.com/users/daniel-beck/orgs", + "repos_url": "https://api.github.com/users/daniel-beck/repos", + "events_url": "https://api.github.com/users/daniel-beck/events{/privacy}", + "received_events_url": "https://api.github.com/users/daniel-beck/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "daniel-beck", + "id": 1831569, + "node_id": "MDQ6VXNlcjE4MzE1Njk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1831569?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/daniel-beck", + "html_url": "https://github.com/daniel-beck", + "followers_url": "https://api.github.com/users/daniel-beck/followers", + "following_url": "https://api.github.com/users/daniel-beck/following{/other_user}", + "gists_url": "https://api.github.com/users/daniel-beck/gists{/gist_id}", + "starred_url": "https://api.github.com/users/daniel-beck/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/daniel-beck/subscriptions", + "organizations_url": "https://api.github.com/users/daniel-beck/orgs", + "repos_url": "https://api.github.com/users/daniel-beck/repos", + "events_url": "https://api.github.com/users/daniel-beck/events{/privacy}", + "received_events_url": "https://api.github.com/users/daniel-beck/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "4fc86172cd2e16f5793a4e0374a7cb04fbb0e3b1", + "url": "https://api.github.com/repos/stapler/stapler/commits/4fc86172cd2e16f5793a4e0374a7cb04fbb0e3b1", + "html_url": "https://github.com/stapler/stapler/commit/4fc86172cd2e16f5793a4e0374a7cb04fbb0e3b1" + } + ] + }, + { + "sha": "cbfe2797efc3187ec58971cb0a53af4c51a150f2", + "node_id": "MDY6Q29tbWl0MTU0ODUxNDpjYmZlMjc5N2VmYzMxODdlYzU4OTcxY2IwYTUzYWY0YzUxYTE1MGYy", + "commit": { + "author": { + "name": "Daniel Beck", + "email": "daniel-beck@users.noreply.github.com", + "date": "2018-06-19T09:36:07Z" + }, + "committer": { + "name": "Daniel Beck", + "email": "daniel-beck@users.noreply.github.com", + "date": "2018-06-19T09:36:07Z" + }, + "message": "Towards 1.254.1", + "tree": { + "sha": "47364ffca5098b87a28944e96a476530a2f75b2e", + "url": "https://api.github.com/repos/stapler/stapler/git/trees/47364ffca5098b87a28944e96a476530a2f75b2e" + }, + "url": "https://api.github.com/repos/stapler/stapler/git/commits/cbfe2797efc3187ec58971cb0a53af4c51a150f2", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/stapler/stapler/commits/cbfe2797efc3187ec58971cb0a53af4c51a150f2", + "html_url": "https://github.com/stapler/stapler/commit/cbfe2797efc3187ec58971cb0a53af4c51a150f2", + "comments_url": "https://api.github.com/repos/stapler/stapler/commits/cbfe2797efc3187ec58971cb0a53af4c51a150f2/comments", + "author": { + "login": "daniel-beck", + "id": 1831569, + "node_id": "MDQ6VXNlcjE4MzE1Njk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1831569?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/daniel-beck", + "html_url": "https://github.com/daniel-beck", + "followers_url": "https://api.github.com/users/daniel-beck/followers", + "following_url": "https://api.github.com/users/daniel-beck/following{/other_user}", + "gists_url": "https://api.github.com/users/daniel-beck/gists{/gist_id}", + "starred_url": "https://api.github.com/users/daniel-beck/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/daniel-beck/subscriptions", + "organizations_url": "https://api.github.com/users/daniel-beck/orgs", + "repos_url": "https://api.github.com/users/daniel-beck/repos", + "events_url": "https://api.github.com/users/daniel-beck/events{/privacy}", + "received_events_url": "https://api.github.com/users/daniel-beck/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "daniel-beck", + "id": 1831569, + "node_id": "MDQ6VXNlcjE4MzE1Njk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1831569?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/daniel-beck", + "html_url": "https://github.com/daniel-beck", + "followers_url": "https://api.github.com/users/daniel-beck/followers", + "following_url": "https://api.github.com/users/daniel-beck/following{/other_user}", + "gists_url": "https://api.github.com/users/daniel-beck/gists{/gist_id}", + "starred_url": "https://api.github.com/users/daniel-beck/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/daniel-beck/subscriptions", + "organizations_url": "https://api.github.com/users/daniel-beck/orgs", + "repos_url": "https://api.github.com/users/daniel-beck/repos", + "events_url": "https://api.github.com/users/daniel-beck/events{/privacy}", + "received_events_url": "https://api.github.com/users/daniel-beck/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "d6d854ef11dceb4624478d43af503c73f6f075a6", + "url": "https://api.github.com/repos/stapler/stapler/commits/d6d854ef11dceb4624478d43af503c73f6f075a6", + "html_url": "https://github.com/stapler/stapler/commit/d6d854ef11dceb4624478d43af503c73f6f075a6" + } + ] + }, + { + "sha": "d6d854ef11dceb4624478d43af503c73f6f075a6", + "node_id": "MDY6Q29tbWl0MTU0ODUxNDpkNmQ4NTRlZjExZGNlYjQ2MjQ0NzhkNDNhZjUwM2M3M2Y2ZjA3NWE2", + "commit": { + "author": { + "name": "Jesse Glick", + "email": "jglick@cloudbees.com", + "date": "2017-12-15T18:43:45Z" + }, + "committer": { + "name": "Jesse Glick", + "email": "jglick@cloudbees.com", + "date": "2017-12-15T18:43:45Z" + }, + "message": "[maven-release-plugin] prepare for next development iteration", + "tree": { + "sha": "48bea58de151790190cd3187c606857d3de4e37c", + "url": "https://api.github.com/repos/stapler/stapler/git/trees/48bea58de151790190cd3187c606857d3de4e37c" + }, + "url": "https://api.github.com/repos/stapler/stapler/git/commits/d6d854ef11dceb4624478d43af503c73f6f075a6", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQEcBAABCAAGBQJaNBfhAAoJEB3aadlLYkMRcjsH/1hUfpv+PSjLG0Aio1fGU9qG\nsyystDM9LbEp3isRVfcQdqKosMQtCqpbAYcy37Cv7Jvcr98aaBueVX4aZgA+dxhM\nx9Xr7PiWk/7PBIntvzuxtc46STrwuZ/mSVitHYxYUx2/6/TotdNyETvujvPr/Cob\nR/7LjQ1EsjuLyGfcr7icepbpmAeHX5Ev+3phzMH/ZBpGjfGKDNTjx5hSI0ftbWYy\nHzkskS1SmlR3iSxJ+9cXBzokuJQ9k+0cGyZJlPtlC6trobphKKpCy6uXSz+zwq9g\ntnEMY+2RLbNkdxRyOrJHksHEsGOH4SCQGKgAMmmW0pR+FfYVcDbtek2mlLeSO7M=\n=kot9\n-----END PGP SIGNATURE-----", + "payload": "tree 48bea58de151790190cd3187c606857d3de4e37c\nparent 07a22fed12081904a6c6b89b02117279274b4065\nauthor Jesse Glick 1513363425 -0500\ncommitter Jesse Glick 1513363425 -0500\n\n[maven-release-plugin] prepare for next development iteration\n" + } + }, + "url": "https://api.github.com/repos/stapler/stapler/commits/d6d854ef11dceb4624478d43af503c73f6f075a6", + "html_url": "https://github.com/stapler/stapler/commit/d6d854ef11dceb4624478d43af503c73f6f075a6", + "comments_url": "https://api.github.com/repos/stapler/stapler/commits/d6d854ef11dceb4624478d43af503c73f6f075a6/comments", + "author": { + "login": "jglick", + "id": 154109, + "node_id": "MDQ6VXNlcjE1NDEwOQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/154109?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jglick", + "html_url": "https://github.com/jglick", + "followers_url": "https://api.github.com/users/jglick/followers", + "following_url": "https://api.github.com/users/jglick/following{/other_user}", + "gists_url": "https://api.github.com/users/jglick/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jglick/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jglick/subscriptions", + "organizations_url": "https://api.github.com/users/jglick/orgs", + "repos_url": "https://api.github.com/users/jglick/repos", + "events_url": "https://api.github.com/users/jglick/events{/privacy}", + "received_events_url": "https://api.github.com/users/jglick/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "jglick", + "id": 154109, + "node_id": "MDQ6VXNlcjE1NDEwOQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/154109?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jglick", + "html_url": "https://github.com/jglick", + "followers_url": "https://api.github.com/users/jglick/followers", + "following_url": "https://api.github.com/users/jglick/following{/other_user}", + "gists_url": "https://api.github.com/users/jglick/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jglick/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jglick/subscriptions", + "organizations_url": "https://api.github.com/users/jglick/orgs", + "repos_url": "https://api.github.com/users/jglick/repos", + "events_url": "https://api.github.com/users/jglick/events{/privacy}", + "received_events_url": "https://api.github.com/users/jglick/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "07a22fed12081904a6c6b89b02117279274b4065", + "url": "https://api.github.com/repos/stapler/stapler/commits/07a22fed12081904a6c6b89b02117279274b4065", + "html_url": "https://github.com/stapler/stapler/commit/07a22fed12081904a6c6b89b02117279274b4065" + } + ] + }, + { + "sha": "07a22fed12081904a6c6b89b02117279274b4065", + "node_id": "MDY6Q29tbWl0MTU0ODUxNDowN2EyMmZlZDEyMDgxOTA0YTZjNmI4OWIwMjExNzI3OTI3NGI0MDY1", + "commit": { + "author": { + "name": "Jesse Glick", + "email": "jglick@cloudbees.com", + "date": "2017-12-15T18:43:41Z" + }, + "committer": { + "name": "Jesse Glick", + "email": "jglick@cloudbees.com", + "date": "2017-12-15T18:43:41Z" + }, + "message": "[maven-release-plugin] prepare release stapler-parent-1.254", + "tree": { + "sha": "e3245a995b2d3dec7441d4fc2f364d973da22180", + "url": "https://api.github.com/repos/stapler/stapler/git/trees/e3245a995b2d3dec7441d4fc2f364d973da22180" + }, + "url": "https://api.github.com/repos/stapler/stapler/git/commits/07a22fed12081904a6c6b89b02117279274b4065", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQEcBAABCAAGBQJaNBfdAAoJEB3aadlLYkMR11AH/R8errX8ivHM8owjumQrPu3V\nne3GBScfRx9yjXhI1IaFp0s+H2Sx8ZwugA1xXti0Nt+uCrdtdCgEC8I2h4B8P/bb\nOWL8DcBr/pGvKmaBr5QXM6IolWEZHkv7uvbax9L5q19bwOFfLGWdBLMk+DVojFDe\ndYE/7oVBAj8el/zxOENsA8mLEmbrbVPNPreJkyQXQq+6SbkfSKY5/WqwFoIzwn3y\nJ1KCRTzgzbS9ISr4BRA+0UrEbDwqQNSTE7HO31RALdy1Wj4x35HtvOP7i2kFIotD\n2/l1JDo6wnwgNmh4Ir7axRprDwYnzwSlrgntM4/8fgIxPx6/PyzRvhPfcC7bnXA=\n=OZEQ\n-----END PGP SIGNATURE-----", + "payload": "tree e3245a995b2d3dec7441d4fc2f364d973da22180\nparent 741ad1a4534a4da79b83fbde99603b569984ad95\nauthor Jesse Glick 1513363421 -0500\ncommitter Jesse Glick 1513363421 -0500\n\n[maven-release-plugin] prepare release stapler-parent-1.254\n" + } + }, + "url": "https://api.github.com/repos/stapler/stapler/commits/07a22fed12081904a6c6b89b02117279274b4065", + "html_url": "https://github.com/stapler/stapler/commit/07a22fed12081904a6c6b89b02117279274b4065", + "comments_url": "https://api.github.com/repos/stapler/stapler/commits/07a22fed12081904a6c6b89b02117279274b4065/comments", + "author": { + "login": "jglick", + "id": 154109, + "node_id": "MDQ6VXNlcjE1NDEwOQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/154109?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jglick", + "html_url": "https://github.com/jglick", + "followers_url": "https://api.github.com/users/jglick/followers", + "following_url": "https://api.github.com/users/jglick/following{/other_user}", + "gists_url": "https://api.github.com/users/jglick/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jglick/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jglick/subscriptions", + "organizations_url": "https://api.github.com/users/jglick/orgs", + "repos_url": "https://api.github.com/users/jglick/repos", + "events_url": "https://api.github.com/users/jglick/events{/privacy}", + "received_events_url": "https://api.github.com/users/jglick/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "jglick", + "id": 154109, + "node_id": "MDQ6VXNlcjE1NDEwOQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/154109?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jglick", + "html_url": "https://github.com/jglick", + "followers_url": "https://api.github.com/users/jglick/followers", + "following_url": "https://api.github.com/users/jglick/following{/other_user}", + "gists_url": "https://api.github.com/users/jglick/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jglick/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jglick/subscriptions", + "organizations_url": "https://api.github.com/users/jglick/orgs", + "repos_url": "https://api.github.com/users/jglick/repos", + "events_url": "https://api.github.com/users/jglick/events{/privacy}", + "received_events_url": "https://api.github.com/users/jglick/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "741ad1a4534a4da79b83fbde99603b569984ad95", + "url": "https://api.github.com/repos/stapler/stapler/commits/741ad1a4534a4da79b83fbde99603b569984ad95", + "html_url": "https://github.com/stapler/stapler/commit/741ad1a4534a4da79b83fbde99603b569984ad95" + } + ] + }, + { + "sha": "ce37eb5449359ec890df229e00162d050a2eef01", + "node_id": "MDY6Q29tbWl0MTU0ODUxNDpjZTM3ZWI1NDQ5MzU5ZWM4OTBkZjIyOWUwMDE2MmQwNTBhMmVlZjAx", + "commit": { + "author": { + "name": "Jesse Glick", + "email": "jglick@cloudbees.com", + "date": "2017-10-20T22:55:37Z" + }, + "committer": { + "name": "Jesse Glick", + "email": "jglick@cloudbees.com", + "date": "2017-10-20T22:55:37Z" + }, + "message": "[maven-release-plugin] prepare for next development iteration", + "tree": { + "sha": "0061bf64d4bdb1d5e7de6a23fe5688c16cf86806", + "url": "https://api.github.com/repos/stapler/stapler/git/trees/0061bf64d4bdb1d5e7de6a23fe5688c16cf86806" + }, + "url": "https://api.github.com/repos/stapler/stapler/git/commits/ce37eb5449359ec890df229e00162d050a2eef01", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/stapler/stapler/commits/ce37eb5449359ec890df229e00162d050a2eef01", + "html_url": "https://github.com/stapler/stapler/commit/ce37eb5449359ec890df229e00162d050a2eef01", + "comments_url": "https://api.github.com/repos/stapler/stapler/commits/ce37eb5449359ec890df229e00162d050a2eef01/comments", + "author": { + "login": "jglick", + "id": 154109, + "node_id": "MDQ6VXNlcjE1NDEwOQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/154109?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jglick", + "html_url": "https://github.com/jglick", + "followers_url": "https://api.github.com/users/jglick/followers", + "following_url": "https://api.github.com/users/jglick/following{/other_user}", + "gists_url": "https://api.github.com/users/jglick/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jglick/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jglick/subscriptions", + "organizations_url": "https://api.github.com/users/jglick/orgs", + "repos_url": "https://api.github.com/users/jglick/repos", + "events_url": "https://api.github.com/users/jglick/events{/privacy}", + "received_events_url": "https://api.github.com/users/jglick/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "jglick", + "id": 154109, + "node_id": "MDQ6VXNlcjE1NDEwOQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/154109?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jglick", + "html_url": "https://github.com/jglick", + "followers_url": "https://api.github.com/users/jglick/followers", + "following_url": "https://api.github.com/users/jglick/following{/other_user}", + "gists_url": "https://api.github.com/users/jglick/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jglick/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jglick/subscriptions", + "organizations_url": "https://api.github.com/users/jglick/orgs", + "repos_url": "https://api.github.com/users/jglick/repos", + "events_url": "https://api.github.com/users/jglick/events{/privacy}", + "received_events_url": "https://api.github.com/users/jglick/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "055ee2b100f8778049410289c0fa5a3baa07cfb9", + "url": "https://api.github.com/repos/stapler/stapler/commits/055ee2b100f8778049410289c0fa5a3baa07cfb9", + "html_url": "https://github.com/stapler/stapler/commit/055ee2b100f8778049410289c0fa5a3baa07cfb9" + } + ] + }, + { + "sha": "055ee2b100f8778049410289c0fa5a3baa07cfb9", + "node_id": "MDY6Q29tbWl0MTU0ODUxNDowNTVlZTJiMTAwZjg3NzgwNDk0MTAyODljMGZhNWEzYmFhMDdjZmI5", + "commit": { + "author": { + "name": "Jesse Glick", + "email": "jglick@cloudbees.com", + "date": "2017-10-20T22:55:32Z" + }, + "committer": { + "name": "Jesse Glick", + "email": "jglick@cloudbees.com", + "date": "2017-10-20T22:55:32Z" + }, + "message": "[maven-release-plugin] prepare release stapler-parent-1.253", + "tree": { + "sha": "940c7cea71c20ed3a711f627dad594088dbe0e30", + "url": "https://api.github.com/repos/stapler/stapler/git/trees/940c7cea71c20ed3a711f627dad594088dbe0e30" + }, + "url": "https://api.github.com/repos/stapler/stapler/git/commits/055ee2b100f8778049410289c0fa5a3baa07cfb9", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/stapler/stapler/commits/055ee2b100f8778049410289c0fa5a3baa07cfb9", + "html_url": "https://github.com/stapler/stapler/commit/055ee2b100f8778049410289c0fa5a3baa07cfb9", + "comments_url": "https://api.github.com/repos/stapler/stapler/commits/055ee2b100f8778049410289c0fa5a3baa07cfb9/comments", + "author": { + "login": "jglick", + "id": 154109, + "node_id": "MDQ6VXNlcjE1NDEwOQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/154109?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jglick", + "html_url": "https://github.com/jglick", + "followers_url": "https://api.github.com/users/jglick/followers", + "following_url": "https://api.github.com/users/jglick/following{/other_user}", + "gists_url": "https://api.github.com/users/jglick/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jglick/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jglick/subscriptions", + "organizations_url": "https://api.github.com/users/jglick/orgs", + "repos_url": "https://api.github.com/users/jglick/repos", + "events_url": "https://api.github.com/users/jglick/events{/privacy}", + "received_events_url": "https://api.github.com/users/jglick/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "jglick", + "id": 154109, + "node_id": "MDQ6VXNlcjE1NDEwOQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/154109?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jglick", + "html_url": "https://github.com/jglick", + "followers_url": "https://api.github.com/users/jglick/followers", + "following_url": "https://api.github.com/users/jglick/following{/other_user}", + "gists_url": "https://api.github.com/users/jglick/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jglick/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jglick/subscriptions", + "organizations_url": "https://api.github.com/users/jglick/orgs", + "repos_url": "https://api.github.com/users/jglick/repos", + "events_url": "https://api.github.com/users/jglick/events{/privacy}", + "received_events_url": "https://api.github.com/users/jglick/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "04889cf8b7651100e199a7576f644d115c224cf3", + "url": "https://api.github.com/repos/stapler/stapler/commits/04889cf8b7651100e199a7576f644d115c224cf3", + "html_url": "https://github.com/stapler/stapler/commit/04889cf8b7651100e199a7576f644d115c224cf3" + } + ] + }, + { + "sha": "8d574a5ae22195a901a20bddf2a90f3357b4467c", + "node_id": "MDY6Q29tbWl0MTU0ODUxNDo4ZDU3NGE1YWUyMjE5NWE5MDFhMjBiZGRmMmE5MGYzMzU3YjQ0Njdj", + "commit": { + "author": { + "name": "Oleg Nenashev", + "email": "o.v.nenashev@gmail.com", + "date": "2017-10-13T10:27:27Z" + }, + "committer": { + "name": "Oleg Nenashev", + "email": "o.v.nenashev@gmail.com", + "date": "2017-10-13T10:27:27Z" + }, + "message": "Update Extra enforcer rules as suggested by @jglick", + "tree": { + "sha": "844f78ee7e1b0c2908c8b7dbbee7cf6e918f00e0", + "url": "https://api.github.com/repos/stapler/stapler/git/trees/844f78ee7e1b0c2908c8b7dbbee7cf6e918f00e0" + }, + "url": "https://api.github.com/repos/stapler/stapler/git/commits/8d574a5ae22195a901a20bddf2a90f3357b4467c", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/stapler/stapler/commits/8d574a5ae22195a901a20bddf2a90f3357b4467c", + "html_url": "https://github.com/stapler/stapler/commit/8d574a5ae22195a901a20bddf2a90f3357b4467c", + "comments_url": "https://api.github.com/repos/stapler/stapler/commits/8d574a5ae22195a901a20bddf2a90f3357b4467c/comments", + "author": { + "login": "oleg-nenashev", + "id": 3000480, + "node_id": "MDQ6VXNlcjMwMDA0ODA=", + "avatar_url": "https://avatars0.githubusercontent.com/u/3000480?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/oleg-nenashev", + "html_url": "https://github.com/oleg-nenashev", + "followers_url": "https://api.github.com/users/oleg-nenashev/followers", + "following_url": "https://api.github.com/users/oleg-nenashev/following{/other_user}", + "gists_url": "https://api.github.com/users/oleg-nenashev/gists{/gist_id}", + "starred_url": "https://api.github.com/users/oleg-nenashev/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/oleg-nenashev/subscriptions", + "organizations_url": "https://api.github.com/users/oleg-nenashev/orgs", + "repos_url": "https://api.github.com/users/oleg-nenashev/repos", + "events_url": "https://api.github.com/users/oleg-nenashev/events{/privacy}", + "received_events_url": "https://api.github.com/users/oleg-nenashev/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "oleg-nenashev", + "id": 3000480, + "node_id": "MDQ6VXNlcjMwMDA0ODA=", + "avatar_url": "https://avatars0.githubusercontent.com/u/3000480?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/oleg-nenashev", + "html_url": "https://github.com/oleg-nenashev", + "followers_url": "https://api.github.com/users/oleg-nenashev/followers", + "following_url": "https://api.github.com/users/oleg-nenashev/following{/other_user}", + "gists_url": "https://api.github.com/users/oleg-nenashev/gists{/gist_id}", + "starred_url": "https://api.github.com/users/oleg-nenashev/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/oleg-nenashev/subscriptions", + "organizations_url": "https://api.github.com/users/oleg-nenashev/orgs", + "repos_url": "https://api.github.com/users/oleg-nenashev/repos", + "events_url": "https://api.github.com/users/oleg-nenashev/events{/privacy}", + "received_events_url": "https://api.github.com/users/oleg-nenashev/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "00405e223da20fe0409ab1e0766ad977645ead31", + "url": "https://api.github.com/repos/stapler/stapler/commits/00405e223da20fe0409ab1e0766ad977645ead31", + "html_url": "https://github.com/stapler/stapler/commit/00405e223da20fe0409ab1e0766ad977645ead31" + } + ] + }, + { + "sha": "4d59a74413f40f7064c8486d508684d38ebdfc38", + "node_id": "MDY6Q29tbWl0MTU0ODUxNDo0ZDU5YTc0NDEzZjQwZjcwNjRjODQ4NmQ1MDg2ODRkMzhlYmRmYzM4", + "commit": { + "author": { + "name": "Oleg Nenashev", + "email": "o.v.nenashev@gmail.com", + "date": "2017-10-10T17:46:30Z" + }, + "committer": { + "name": "Oleg Nenashev", + "email": "o.v.nenashev@gmail.com", + "date": "2017-10-10T17:46:30Z" + }, + "message": "Cleanup upper Bound dependencies", + "tree": { + "sha": "319c0b493b406e364138cd557b1c344946225857", + "url": "https://api.github.com/repos/stapler/stapler/git/trees/319c0b493b406e364138cd557b1c344946225857" + }, + "url": "https://api.github.com/repos/stapler/stapler/git/commits/4d59a74413f40f7064c8486d508684d38ebdfc38", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/stapler/stapler/commits/4d59a74413f40f7064c8486d508684d38ebdfc38", + "html_url": "https://github.com/stapler/stapler/commit/4d59a74413f40f7064c8486d508684d38ebdfc38", + "comments_url": "https://api.github.com/repos/stapler/stapler/commits/4d59a74413f40f7064c8486d508684d38ebdfc38/comments", + "author": { + "login": "oleg-nenashev", + "id": 3000480, + "node_id": "MDQ6VXNlcjMwMDA0ODA=", + "avatar_url": "https://avatars0.githubusercontent.com/u/3000480?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/oleg-nenashev", + "html_url": "https://github.com/oleg-nenashev", + "followers_url": "https://api.github.com/users/oleg-nenashev/followers", + "following_url": "https://api.github.com/users/oleg-nenashev/following{/other_user}", + "gists_url": "https://api.github.com/users/oleg-nenashev/gists{/gist_id}", + "starred_url": "https://api.github.com/users/oleg-nenashev/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/oleg-nenashev/subscriptions", + "organizations_url": "https://api.github.com/users/oleg-nenashev/orgs", + "repos_url": "https://api.github.com/users/oleg-nenashev/repos", + "events_url": "https://api.github.com/users/oleg-nenashev/events{/privacy}", + "received_events_url": "https://api.github.com/users/oleg-nenashev/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "oleg-nenashev", + "id": 3000480, + "node_id": "MDQ6VXNlcjMwMDA0ODA=", + "avatar_url": "https://avatars0.githubusercontent.com/u/3000480?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/oleg-nenashev", + "html_url": "https://github.com/oleg-nenashev", + "followers_url": "https://api.github.com/users/oleg-nenashev/followers", + "following_url": "https://api.github.com/users/oleg-nenashev/following{/other_user}", + "gists_url": "https://api.github.com/users/oleg-nenashev/gists{/gist_id}", + "starred_url": "https://api.github.com/users/oleg-nenashev/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/oleg-nenashev/subscriptions", + "organizations_url": "https://api.github.com/users/oleg-nenashev/orgs", + "repos_url": "https://api.github.com/users/oleg-nenashev/repos", + "events_url": "https://api.github.com/users/oleg-nenashev/events{/privacy}", + "received_events_url": "https://api.github.com/users/oleg-nenashev/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "dc2afaa80149f9b81269952d9cf4fdeff71030bc", + "url": "https://api.github.com/repos/stapler/stapler/commits/dc2afaa80149f9b81269952d9cf4fdeff71030bc", + "html_url": "https://github.com/stapler/stapler/commit/dc2afaa80149f9b81269952d9cf4fdeff71030bc" + } + ] + }, + { + "sha": "b9827c91462e979e6780048bb115355af737a089", + "node_id": "MDY6Q29tbWl0MTU0ODUxNDpiOTgyN2M5MTQ2MmU5NzllNjc4MDA0OGJiMTE1MzU1YWY3MzdhMDg5", + "commit": { + "author": { + "name": "Jesse Glick", + "email": "jglick@cloudbees.com", + "date": "2017-08-03T21:39:54Z" + }, + "committer": { + "name": "Jesse Glick", + "email": "jglick@cloudbees.com", + "date": "2017-08-03T21:39:54Z" + }, + "message": "[maven-release-plugin] prepare for next development iteration", + "tree": { + "sha": "e0bd0e223e705b9d104d006f90c376704a76c257", + "url": "https://api.github.com/repos/stapler/stapler/git/trees/e0bd0e223e705b9d104d006f90c376704a76c257" + }, + "url": "https://api.github.com/repos/stapler/stapler/git/commits/b9827c91462e979e6780048bb115355af737a089", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/stapler/stapler/commits/b9827c91462e979e6780048bb115355af737a089", + "html_url": "https://github.com/stapler/stapler/commit/b9827c91462e979e6780048bb115355af737a089", + "comments_url": "https://api.github.com/repos/stapler/stapler/commits/b9827c91462e979e6780048bb115355af737a089/comments", + "author": { + "login": "jglick", + "id": 154109, + "node_id": "MDQ6VXNlcjE1NDEwOQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/154109?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jglick", + "html_url": "https://github.com/jglick", + "followers_url": "https://api.github.com/users/jglick/followers", + "following_url": "https://api.github.com/users/jglick/following{/other_user}", + "gists_url": "https://api.github.com/users/jglick/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jglick/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jglick/subscriptions", + "organizations_url": "https://api.github.com/users/jglick/orgs", + "repos_url": "https://api.github.com/users/jglick/repos", + "events_url": "https://api.github.com/users/jglick/events{/privacy}", + "received_events_url": "https://api.github.com/users/jglick/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "jglick", + "id": 154109, + "node_id": "MDQ6VXNlcjE1NDEwOQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/154109?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jglick", + "html_url": "https://github.com/jglick", + "followers_url": "https://api.github.com/users/jglick/followers", + "following_url": "https://api.github.com/users/jglick/following{/other_user}", + "gists_url": "https://api.github.com/users/jglick/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jglick/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jglick/subscriptions", + "organizations_url": "https://api.github.com/users/jglick/orgs", + "repos_url": "https://api.github.com/users/jglick/repos", + "events_url": "https://api.github.com/users/jglick/events{/privacy}", + "received_events_url": "https://api.github.com/users/jglick/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "ea125284477865c8344337877b5eefef0d48b9b3", + "url": "https://api.github.com/repos/stapler/stapler/commits/ea125284477865c8344337877b5eefef0d48b9b3", + "html_url": "https://github.com/stapler/stapler/commit/ea125284477865c8344337877b5eefef0d48b9b3" + } + ] + }, + { + "sha": "ea125284477865c8344337877b5eefef0d48b9b3", + "node_id": "MDY6Q29tbWl0MTU0ODUxNDplYTEyNTI4NDQ3Nzg2NWM4MzQ0MzM3ODc3YjVlZWZlZjBkNDhiOWIz", + "commit": { + "author": { + "name": "Jesse Glick", + "email": "jglick@cloudbees.com", + "date": "2017-08-03T21:39:49Z" + }, + "committer": { + "name": "Jesse Glick", + "email": "jglick@cloudbees.com", + "date": "2017-08-03T21:39:49Z" + }, + "message": "[maven-release-plugin] prepare release stapler-parent-1.252", + "tree": { + "sha": "d97cb711080d966c6b129133a5fb7771781c9cfd", + "url": "https://api.github.com/repos/stapler/stapler/git/trees/d97cb711080d966c6b129133a5fb7771781c9cfd" + }, + "url": "https://api.github.com/repos/stapler/stapler/git/commits/ea125284477865c8344337877b5eefef0d48b9b3", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/stapler/stapler/commits/ea125284477865c8344337877b5eefef0d48b9b3", + "html_url": "https://github.com/stapler/stapler/commit/ea125284477865c8344337877b5eefef0d48b9b3", + "comments_url": "https://api.github.com/repos/stapler/stapler/commits/ea125284477865c8344337877b5eefef0d48b9b3/comments", + "author": { + "login": "jglick", + "id": 154109, + "node_id": "MDQ6VXNlcjE1NDEwOQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/154109?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jglick", + "html_url": "https://github.com/jglick", + "followers_url": "https://api.github.com/users/jglick/followers", + "following_url": "https://api.github.com/users/jglick/following{/other_user}", + "gists_url": "https://api.github.com/users/jglick/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jglick/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jglick/subscriptions", + "organizations_url": "https://api.github.com/users/jglick/orgs", + "repos_url": "https://api.github.com/users/jglick/repos", + "events_url": "https://api.github.com/users/jglick/events{/privacy}", + "received_events_url": "https://api.github.com/users/jglick/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "jglick", + "id": 154109, + "node_id": "MDQ6VXNlcjE1NDEwOQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/154109?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jglick", + "html_url": "https://github.com/jglick", + "followers_url": "https://api.github.com/users/jglick/followers", + "following_url": "https://api.github.com/users/jglick/following{/other_user}", + "gists_url": "https://api.github.com/users/jglick/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jglick/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jglick/subscriptions", + "organizations_url": "https://api.github.com/users/jglick/orgs", + "repos_url": "https://api.github.com/users/jglick/repos", + "events_url": "https://api.github.com/users/jglick/events{/privacy}", + "received_events_url": "https://api.github.com/users/jglick/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "8baac291ff0acc76f615310630c98de841f9554b", + "url": "https://api.github.com/repos/stapler/stapler/commits/8baac291ff0acc76f615310630c98de841f9554b", + "html_url": "https://github.com/stapler/stapler/commit/8baac291ff0acc76f615310630c98de841f9554b" + } + ] + }, + { + "sha": "8baac291ff0acc76f615310630c98de841f9554b", + "node_id": "MDY6Q29tbWl0MTU0ODUxNDo4YmFhYzI5MWZmMGFjYzc2ZjYxNTMxMDYzMGM5OGRlODQxZjk1NTRi", + "commit": { + "author": { + "name": "Jesse Glick", + "email": "jglick@cloudbees.com", + "date": "2017-08-03T21:34:19Z" + }, + "committer": { + "name": "GitHub", + "email": "noreply@github.com", + "date": "2017-08-03T21:34:19Z" + }, + "message": "Merge pull request #113 from jglick/interfaceMethods\n\nVerifying that web methods may be defined as default interface methods", + "tree": { + "sha": "cd2b635aedadc3314c452c3f7d1ad928f64fb50f", + "url": "https://api.github.com/repos/stapler/stapler/git/trees/cd2b635aedadc3314c452c3f7d1ad928f64fb50f" + }, + "url": "https://api.github.com/repos/stapler/stapler/git/commits/8baac291ff0acc76f615310630c98de841f9554b", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/stapler/stapler/commits/8baac291ff0acc76f615310630c98de841f9554b", + "html_url": "https://github.com/stapler/stapler/commit/8baac291ff0acc76f615310630c98de841f9554b", + "comments_url": "https://api.github.com/repos/stapler/stapler/commits/8baac291ff0acc76f615310630c98de841f9554b/comments", + "author": { + "login": "jglick", + "id": 154109, + "node_id": "MDQ6VXNlcjE1NDEwOQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/154109?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jglick", + "html_url": "https://github.com/jglick", + "followers_url": "https://api.github.com/users/jglick/followers", + "following_url": "https://api.github.com/users/jglick/following{/other_user}", + "gists_url": "https://api.github.com/users/jglick/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jglick/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jglick/subscriptions", + "organizations_url": "https://api.github.com/users/jglick/orgs", + "repos_url": "https://api.github.com/users/jglick/repos", + "events_url": "https://api.github.com/users/jglick/events{/privacy}", + "received_events_url": "https://api.github.com/users/jglick/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "web-flow", + "id": 19864447, + "node_id": "MDQ6VXNlcjE5ODY0NDQ3", + "avatar_url": "https://avatars3.githubusercontent.com/u/19864447?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/web-flow", + "html_url": "https://github.com/web-flow", + "followers_url": "https://api.github.com/users/web-flow/followers", + "following_url": "https://api.github.com/users/web-flow/following{/other_user}", + "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions", + "organizations_url": "https://api.github.com/users/web-flow/orgs", + "repos_url": "https://api.github.com/users/web-flow/repos", + "events_url": "https://api.github.com/users/web-flow/events{/privacy}", + "received_events_url": "https://api.github.com/users/web-flow/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "5f5e5fae6f5ddaa62cd3a8028a71c7ca05972347", + "url": "https://api.github.com/repos/stapler/stapler/commits/5f5e5fae6f5ddaa62cd3a8028a71c7ca05972347", + "html_url": "https://github.com/stapler/stapler/commit/5f5e5fae6f5ddaa62cd3a8028a71c7ca05972347" + }, + { + "sha": "6f9acc164d7108e16af91b548cf45892c228ec9b", + "url": "https://api.github.com/repos/stapler/stapler/commits/6f9acc164d7108e16af91b548cf45892c228ec9b", + "html_url": "https://github.com/stapler/stapler/commit/6f9acc164d7108e16af91b548cf45892c228ec9b" + } + ] + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_06b1108ec041fd8d6e7f54c8578d84a672fee9e4-4fa8c092-5fdf-4ac3-a09a-8713da340f66.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_06b1108ec041fd8d6e7f54c8578d84a672fee9e4-4fa8c092-5fdf-4ac3-a09a-8713da340f66.json new file mode 100644 index 0000000000..cfb7b67527 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_06b1108ec041fd8d6e7f54c8578d84a672fee9e4-4fa8c092-5fdf-4ac3-a09a-8713da340f66.json @@ -0,0 +1,98 @@ +{ + "sha": "06b1108ec041fd8d6e7f54c8578d84a672fee9e4", + "node_id": "MDY6Q29tbWl0MTU0ODUxNDowNmIxMTA4ZWMwNDFmZDhkNmU3ZjU0Yzg1NzhkODRhNjcyZmVlOWU0", + "commit": { + "author": { + "name": "Jeff Thompson", + "email": "37345299+jeffret-b@users.noreply.github.com", + "date": "2019-08-19T17:42:58Z" + }, + "committer": { + "name": "GitHub", + "email": "noreply@github.com", + "date": "2019-08-19T17:42:58Z" + }, + "message": "Update BSD license reference.\n\nCo-Authored-By: Jesse Glick ", + "tree": { + "sha": "859fffa8ce0c958e4e4209c7a758be16f0c97c55", + "url": "https://api.github.com/repos/stapler/stapler/git/trees/859fffa8ce0c958e4e4209c7a758be16f0c97c55" + }, + "url": "https://api.github.com/repos/stapler/stapler/git/commits/06b1108ec041fd8d6e7f54c8578d84a672fee9e4", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsBcBAABCAAQBQJdWt+iCRBK7hj4Ov3rIwAAdHIIAF2vncFEFRwkJdZrVZEkT30N\neYJXFeILq+wFRDuWEDOueIkUwCy9Z4xYnM/n7fw+51LsRK+4kaFNjP6HFJGr/+m5\nioCArE27vaXnZjTAldpAG0Jku3eIfChutub0HcBy4UURozLw70ajWpbA3vOQ560B\ntontgx2I/pJmwOqkXRVvM7yxTlW751kyTVWScCtOeX2efuveeotECsDrqScKxq66\nkvJ1xmb9olWdlTjChOgqNrLbLC0jUHqc1nMGCkkVL0Pl2BMB8cXrKBQyU71ZuVJt\n4EW8IBWBtuHwHFtwABBCHXdtSsCGPat0hVag72CHiqKoZV/EAPecIlyiZMAYYig=\n=7zTb\n-----END PGP SIGNATURE-----\n", + "payload": "tree 859fffa8ce0c958e4e4209c7a758be16f0c97c55\nparent 2a971c4e38c6d6693f7ad8b6768e4d74840d6679\nauthor Jeff Thompson <37345299+jeffret-b@users.noreply.github.com> 1566236578 -0600\ncommitter GitHub 1566236578 -0600\n\nUpdate BSD license reference.\n\nCo-Authored-By: Jesse Glick " + } + }, + "url": "https://api.github.com/repos/stapler/stapler/commits/06b1108ec041fd8d6e7f54c8578d84a672fee9e4", + "html_url": "https://github.com/stapler/stapler/commit/06b1108ec041fd8d6e7f54c8578d84a672fee9e4", + "comments_url": "https://api.github.com/repos/stapler/stapler/commits/06b1108ec041fd8d6e7f54c8578d84a672fee9e4/comments", + "author": { + "login": "jeffret-b", + "id": 37345299, + "node_id": "MDQ6VXNlcjM3MzQ1Mjk5", + "avatar_url": "https://avatars0.githubusercontent.com/u/37345299?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jeffret-b", + "html_url": "https://github.com/jeffret-b", + "followers_url": "https://api.github.com/users/jeffret-b/followers", + "following_url": "https://api.github.com/users/jeffret-b/following{/other_user}", + "gists_url": "https://api.github.com/users/jeffret-b/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jeffret-b/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jeffret-b/subscriptions", + "organizations_url": "https://api.github.com/users/jeffret-b/orgs", + "repos_url": "https://api.github.com/users/jeffret-b/repos", + "events_url": "https://api.github.com/users/jeffret-b/events{/privacy}", + "received_events_url": "https://api.github.com/users/jeffret-b/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "web-flow", + "id": 19864447, + "node_id": "MDQ6VXNlcjE5ODY0NDQ3", + "avatar_url": "https://avatars3.githubusercontent.com/u/19864447?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/web-flow", + "html_url": "https://github.com/web-flow", + "followers_url": "https://api.github.com/users/web-flow/followers", + "following_url": "https://api.github.com/users/web-flow/following{/other_user}", + "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions", + "organizations_url": "https://api.github.com/users/web-flow/orgs", + "repos_url": "https://api.github.com/users/web-flow/repos", + "events_url": "https://api.github.com/users/web-flow/events{/privacy}", + "received_events_url": "https://api.github.com/users/web-flow/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "2a971c4e38c6d6693f7ad8b6768e4d74840d6679", + "url": "https://api.github.com/repos/stapler/stapler/commits/2a971c4e38c6d6693f7ad8b6768e4d74840d6679", + "html_url": "https://github.com/stapler/stapler/commit/2a971c4e38c6d6693f7ad8b6768e4d74840d6679" + } + ], + "stats": { + "total": 2, + "additions": 1, + "deletions": 1 + }, + "files": [ + { + "sha": "fcfba8d7fc2b339aaa73e28142b5dfc2234a35bc", + "filename": "pom.xml", + "status": "modified", + "additions": 1, + "deletions": 1, + "changes": 2, + "blob_url": "https://github.com/stapler/stapler/blob/06b1108ec041fd8d6e7f54c8578d84a672fee9e4/pom.xml", + "raw_url": "https://github.com/stapler/stapler/raw/06b1108ec041fd8d6e7f54c8578d84a672fee9e4/pom.xml", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/pom.xml?ref=06b1108ec041fd8d6e7f54c8578d84a672fee9e4", + "patch": "@@ -30,7 +30,7 @@\n \n 2-clause BSD license\n repo\n- https://opensource.org/licenses/bsd-license\n+ https://opensource.org/licenses/BSD-2-Clause\n \n \n " + } + ] +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_06b1108ec041fd8d6e7f54c8578d84a672fee9e4-ad6e998e-9ae1-4bae-9da2-1dd49495d5cb.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_06b1108ec041fd8d6e7f54c8578d84a672fee9e4-ad6e998e-9ae1-4bae-9da2-1dd49495d5cb.json new file mode 100644 index 0000000000..cfb7b67527 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_06b1108ec041fd8d6e7f54c8578d84a672fee9e4-ad6e998e-9ae1-4bae-9da2-1dd49495d5cb.json @@ -0,0 +1,98 @@ +{ + "sha": "06b1108ec041fd8d6e7f54c8578d84a672fee9e4", + "node_id": "MDY6Q29tbWl0MTU0ODUxNDowNmIxMTA4ZWMwNDFmZDhkNmU3ZjU0Yzg1NzhkODRhNjcyZmVlOWU0", + "commit": { + "author": { + "name": "Jeff Thompson", + "email": "37345299+jeffret-b@users.noreply.github.com", + "date": "2019-08-19T17:42:58Z" + }, + "committer": { + "name": "GitHub", + "email": "noreply@github.com", + "date": "2019-08-19T17:42:58Z" + }, + "message": "Update BSD license reference.\n\nCo-Authored-By: Jesse Glick ", + "tree": { + "sha": "859fffa8ce0c958e4e4209c7a758be16f0c97c55", + "url": "https://api.github.com/repos/stapler/stapler/git/trees/859fffa8ce0c958e4e4209c7a758be16f0c97c55" + }, + "url": "https://api.github.com/repos/stapler/stapler/git/commits/06b1108ec041fd8d6e7f54c8578d84a672fee9e4", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsBcBAABCAAQBQJdWt+iCRBK7hj4Ov3rIwAAdHIIAF2vncFEFRwkJdZrVZEkT30N\neYJXFeILq+wFRDuWEDOueIkUwCy9Z4xYnM/n7fw+51LsRK+4kaFNjP6HFJGr/+m5\nioCArE27vaXnZjTAldpAG0Jku3eIfChutub0HcBy4UURozLw70ajWpbA3vOQ560B\ntontgx2I/pJmwOqkXRVvM7yxTlW751kyTVWScCtOeX2efuveeotECsDrqScKxq66\nkvJ1xmb9olWdlTjChOgqNrLbLC0jUHqc1nMGCkkVL0Pl2BMB8cXrKBQyU71ZuVJt\n4EW8IBWBtuHwHFtwABBCHXdtSsCGPat0hVag72CHiqKoZV/EAPecIlyiZMAYYig=\n=7zTb\n-----END PGP SIGNATURE-----\n", + "payload": "tree 859fffa8ce0c958e4e4209c7a758be16f0c97c55\nparent 2a971c4e38c6d6693f7ad8b6768e4d74840d6679\nauthor Jeff Thompson <37345299+jeffret-b@users.noreply.github.com> 1566236578 -0600\ncommitter GitHub 1566236578 -0600\n\nUpdate BSD license reference.\n\nCo-Authored-By: Jesse Glick " + } + }, + "url": "https://api.github.com/repos/stapler/stapler/commits/06b1108ec041fd8d6e7f54c8578d84a672fee9e4", + "html_url": "https://github.com/stapler/stapler/commit/06b1108ec041fd8d6e7f54c8578d84a672fee9e4", + "comments_url": "https://api.github.com/repos/stapler/stapler/commits/06b1108ec041fd8d6e7f54c8578d84a672fee9e4/comments", + "author": { + "login": "jeffret-b", + "id": 37345299, + "node_id": "MDQ6VXNlcjM3MzQ1Mjk5", + "avatar_url": "https://avatars0.githubusercontent.com/u/37345299?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jeffret-b", + "html_url": "https://github.com/jeffret-b", + "followers_url": "https://api.github.com/users/jeffret-b/followers", + "following_url": "https://api.github.com/users/jeffret-b/following{/other_user}", + "gists_url": "https://api.github.com/users/jeffret-b/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jeffret-b/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jeffret-b/subscriptions", + "organizations_url": "https://api.github.com/users/jeffret-b/orgs", + "repos_url": "https://api.github.com/users/jeffret-b/repos", + "events_url": "https://api.github.com/users/jeffret-b/events{/privacy}", + "received_events_url": "https://api.github.com/users/jeffret-b/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "web-flow", + "id": 19864447, + "node_id": "MDQ6VXNlcjE5ODY0NDQ3", + "avatar_url": "https://avatars3.githubusercontent.com/u/19864447?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/web-flow", + "html_url": "https://github.com/web-flow", + "followers_url": "https://api.github.com/users/web-flow/followers", + "following_url": "https://api.github.com/users/web-flow/following{/other_user}", + "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions", + "organizations_url": "https://api.github.com/users/web-flow/orgs", + "repos_url": "https://api.github.com/users/web-flow/repos", + "events_url": "https://api.github.com/users/web-flow/events{/privacy}", + "received_events_url": "https://api.github.com/users/web-flow/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "2a971c4e38c6d6693f7ad8b6768e4d74840d6679", + "url": "https://api.github.com/repos/stapler/stapler/commits/2a971c4e38c6d6693f7ad8b6768e4d74840d6679", + "html_url": "https://github.com/stapler/stapler/commit/2a971c4e38c6d6693f7ad8b6768e4d74840d6679" + } + ], + "stats": { + "total": 2, + "additions": 1, + "deletions": 1 + }, + "files": [ + { + "sha": "fcfba8d7fc2b339aaa73e28142b5dfc2234a35bc", + "filename": "pom.xml", + "status": "modified", + "additions": 1, + "deletions": 1, + "changes": 2, + "blob_url": "https://github.com/stapler/stapler/blob/06b1108ec041fd8d6e7f54c8578d84a672fee9e4/pom.xml", + "raw_url": "https://github.com/stapler/stapler/raw/06b1108ec041fd8d6e7f54c8578d84a672fee9e4/pom.xml", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/pom.xml?ref=06b1108ec041fd8d6e7f54c8578d84a672fee9e4", + "patch": "@@ -30,7 +30,7 @@\n \n 2-clause BSD license\n repo\n- https://opensource.org/licenses/bsd-license\n+ https://opensource.org/licenses/BSD-2-Clause\n \n \n " + } + ] +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_2a971c4e38c6d6693f7ad8b6768e4d74840d6679-8ac20af2-3f87-419a-b5cb-a96f5f2fd3c7.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_2a971c4e38c6d6693f7ad8b6768e4d74840d6679-8ac20af2-3f87-419a-b5cb-a96f5f2fd3c7.json new file mode 100644 index 0000000000..b1a2837918 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_2a971c4e38c6d6693f7ad8b6768e4d74840d6679-8ac20af2-3f87-419a-b5cb-a96f5f2fd3c7.json @@ -0,0 +1,110 @@ +{ + "sha": "2a971c4e38c6d6693f7ad8b6768e4d74840d6679", + "node_id": "MDY6Q29tbWl0MTU0ODUxNDoyYTk3MWM0ZTM4YzZkNjY5M2Y3YWQ4YjY3NjhlNGQ3NDg0MGQ2Njc5", + "commit": { + "author": { + "name": "Jeff Thompson", + "email": "jeffret.g@gmail.com", + "date": "2019-06-28T16:16:04Z" + }, + "committer": { + "name": "Jeff Thompson", + "email": "jeffret.g@gmail.com", + "date": "2019-06-28T16:21:18Z" + }, + "message": "A little bit of pom cleanup.\n\nPrimarily about using https.", + "tree": { + "sha": "3ebce198db76fb2e0073f2698c255ea0eee6527c", + "url": "https://api.github.com/repos/stapler/stapler/git/trees/3ebce198db76fb2e0073f2698c255ea0eee6527c" + }, + "url": "https://api.github.com/repos/stapler/stapler/git/commits/2a971c4e38c6d6693f7ad8b6768e4d74840d6679", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/stapler/stapler/commits/2a971c4e38c6d6693f7ad8b6768e4d74840d6679", + "html_url": "https://github.com/stapler/stapler/commit/2a971c4e38c6d6693f7ad8b6768e4d74840d6679", + "comments_url": "https://api.github.com/repos/stapler/stapler/commits/2a971c4e38c6d6693f7ad8b6768e4d74840d6679/comments", + "author": { + "login": "jeffret-b", + "id": 37345299, + "node_id": "MDQ6VXNlcjM3MzQ1Mjk5", + "avatar_url": "https://avatars0.githubusercontent.com/u/37345299?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jeffret-b", + "html_url": "https://github.com/jeffret-b", + "followers_url": "https://api.github.com/users/jeffret-b/followers", + "following_url": "https://api.github.com/users/jeffret-b/following{/other_user}", + "gists_url": "https://api.github.com/users/jeffret-b/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jeffret-b/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jeffret-b/subscriptions", + "organizations_url": "https://api.github.com/users/jeffret-b/orgs", + "repos_url": "https://api.github.com/users/jeffret-b/repos", + "events_url": "https://api.github.com/users/jeffret-b/events{/privacy}", + "received_events_url": "https://api.github.com/users/jeffret-b/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "jeffret-b", + "id": 37345299, + "node_id": "MDQ6VXNlcjM3MzQ1Mjk5", + "avatar_url": "https://avatars0.githubusercontent.com/u/37345299?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jeffret-b", + "html_url": "https://github.com/jeffret-b", + "followers_url": "https://api.github.com/users/jeffret-b/followers", + "following_url": "https://api.github.com/users/jeffret-b/following{/other_user}", + "gists_url": "https://api.github.com/users/jeffret-b/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jeffret-b/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jeffret-b/subscriptions", + "organizations_url": "https://api.github.com/users/jeffret-b/orgs", + "repos_url": "https://api.github.com/users/jeffret-b/repos", + "events_url": "https://api.github.com/users/jeffret-b/events{/privacy}", + "received_events_url": "https://api.github.com/users/jeffret-b/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "11ad5af185e062fb46e01bf9fbed66f3ebf2a8f7", + "url": "https://api.github.com/repos/stapler/stapler/commits/11ad5af185e062fb46e01bf9fbed66f3ebf2a8f7", + "html_url": "https://github.com/stapler/stapler/commit/11ad5af185e062fb46e01bf9fbed66f3ebf2a8f7" + } + ], + "stats": { + "total": 23, + "additions": 4, + "deletions": 19 + }, + "files": [ + { + "sha": "5fa54083143c6b88b5a51ac31b470ab312a879c1", + "filename": "jrebel/pom.xml", + "status": "modified", + "additions": 0, + "deletions": 15, + "changes": 15, + "blob_url": "https://github.com/stapler/stapler/blob/2a971c4e38c6d6693f7ad8b6768e4d74840d6679/jrebel/pom.xml", + "raw_url": "https://github.com/stapler/stapler/raw/2a971c4e38c6d6693f7ad8b6768e4d74840d6679/jrebel/pom.xml", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/jrebel/pom.xml?ref=2a971c4e38c6d6693f7ad8b6768e4d74840d6679", + "patch": "@@ -35,19 +35,4 @@\n \n \n \n- \n " + }, + { + "sha": "15dca3afa963e3ca7ef8946652fc9d74e1abd0b3", + "filename": "pom.xml", + "status": "modified", + "additions": 4, + "deletions": 4, + "changes": 8, + "blob_url": "https://github.com/stapler/stapler/blob/2a971c4e38c6d6693f7ad8b6768e4d74840d6679/pom.xml", + "raw_url": "https://github.com/stapler/stapler/raw/2a971c4e38c6d6693f7ad8b6768e4d74840d6679/pom.xml", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/pom.xml?ref=2a971c4e38c6d6693f7ad8b6768e4d74840d6679", + "patch": "@@ -24,13 +24,13 @@\n jrebel\n \n \n- http://stapler.kohsuke.org/\n+ https://stapler.kohsuke.org/\n \n \n \n 2-clause BSD license\n repo\n- http://opensource.org/licenses/bsd-license.php\n+ https://opensource.org/licenses/bsd-license\n \n \n \n@@ -67,14 +67,14 @@\n \n \n repo.jenkins-ci.org\n- http://repo.jenkins-ci.org/public/\n+ https://repo.jenkins-ci.org/public/\n \n \n \n \n \n repo.jenkins-ci.org\n- http://repo.jenkins-ci.org/public/\n+ https://repo.jenkins-ci.org/public/\n \n \n " + } + ] +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_2a971c4e38c6d6693f7ad8b6768e4d74840d6679-c9650076-4963-4d6a-9c1c-07c6339a48dd.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_2a971c4e38c6d6693f7ad8b6768e4d74840d6679-c9650076-4963-4d6a-9c1c-07c6339a48dd.json new file mode 100644 index 0000000000..b1a2837918 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_2a971c4e38c6d6693f7ad8b6768e4d74840d6679-c9650076-4963-4d6a-9c1c-07c6339a48dd.json @@ -0,0 +1,110 @@ +{ + "sha": "2a971c4e38c6d6693f7ad8b6768e4d74840d6679", + "node_id": "MDY6Q29tbWl0MTU0ODUxNDoyYTk3MWM0ZTM4YzZkNjY5M2Y3YWQ4YjY3NjhlNGQ3NDg0MGQ2Njc5", + "commit": { + "author": { + "name": "Jeff Thompson", + "email": "jeffret.g@gmail.com", + "date": "2019-06-28T16:16:04Z" + }, + "committer": { + "name": "Jeff Thompson", + "email": "jeffret.g@gmail.com", + "date": "2019-06-28T16:21:18Z" + }, + "message": "A little bit of pom cleanup.\n\nPrimarily about using https.", + "tree": { + "sha": "3ebce198db76fb2e0073f2698c255ea0eee6527c", + "url": "https://api.github.com/repos/stapler/stapler/git/trees/3ebce198db76fb2e0073f2698c255ea0eee6527c" + }, + "url": "https://api.github.com/repos/stapler/stapler/git/commits/2a971c4e38c6d6693f7ad8b6768e4d74840d6679", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/stapler/stapler/commits/2a971c4e38c6d6693f7ad8b6768e4d74840d6679", + "html_url": "https://github.com/stapler/stapler/commit/2a971c4e38c6d6693f7ad8b6768e4d74840d6679", + "comments_url": "https://api.github.com/repos/stapler/stapler/commits/2a971c4e38c6d6693f7ad8b6768e4d74840d6679/comments", + "author": { + "login": "jeffret-b", + "id": 37345299, + "node_id": "MDQ6VXNlcjM3MzQ1Mjk5", + "avatar_url": "https://avatars0.githubusercontent.com/u/37345299?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jeffret-b", + "html_url": "https://github.com/jeffret-b", + "followers_url": "https://api.github.com/users/jeffret-b/followers", + "following_url": "https://api.github.com/users/jeffret-b/following{/other_user}", + "gists_url": "https://api.github.com/users/jeffret-b/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jeffret-b/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jeffret-b/subscriptions", + "organizations_url": "https://api.github.com/users/jeffret-b/orgs", + "repos_url": "https://api.github.com/users/jeffret-b/repos", + "events_url": "https://api.github.com/users/jeffret-b/events{/privacy}", + "received_events_url": "https://api.github.com/users/jeffret-b/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "jeffret-b", + "id": 37345299, + "node_id": "MDQ6VXNlcjM3MzQ1Mjk5", + "avatar_url": "https://avatars0.githubusercontent.com/u/37345299?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jeffret-b", + "html_url": "https://github.com/jeffret-b", + "followers_url": "https://api.github.com/users/jeffret-b/followers", + "following_url": "https://api.github.com/users/jeffret-b/following{/other_user}", + "gists_url": "https://api.github.com/users/jeffret-b/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jeffret-b/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jeffret-b/subscriptions", + "organizations_url": "https://api.github.com/users/jeffret-b/orgs", + "repos_url": "https://api.github.com/users/jeffret-b/repos", + "events_url": "https://api.github.com/users/jeffret-b/events{/privacy}", + "received_events_url": "https://api.github.com/users/jeffret-b/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "11ad5af185e062fb46e01bf9fbed66f3ebf2a8f7", + "url": "https://api.github.com/repos/stapler/stapler/commits/11ad5af185e062fb46e01bf9fbed66f3ebf2a8f7", + "html_url": "https://github.com/stapler/stapler/commit/11ad5af185e062fb46e01bf9fbed66f3ebf2a8f7" + } + ], + "stats": { + "total": 23, + "additions": 4, + "deletions": 19 + }, + "files": [ + { + "sha": "5fa54083143c6b88b5a51ac31b470ab312a879c1", + "filename": "jrebel/pom.xml", + "status": "modified", + "additions": 0, + "deletions": 15, + "changes": 15, + "blob_url": "https://github.com/stapler/stapler/blob/2a971c4e38c6d6693f7ad8b6768e4d74840d6679/jrebel/pom.xml", + "raw_url": "https://github.com/stapler/stapler/raw/2a971c4e38c6d6693f7ad8b6768e4d74840d6679/jrebel/pom.xml", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/jrebel/pom.xml?ref=2a971c4e38c6d6693f7ad8b6768e4d74840d6679", + "patch": "@@ -35,19 +35,4 @@\n \n \n \n- \n " + }, + { + "sha": "15dca3afa963e3ca7ef8946652fc9d74e1abd0b3", + "filename": "pom.xml", + "status": "modified", + "additions": 4, + "deletions": 4, + "changes": 8, + "blob_url": "https://github.com/stapler/stapler/blob/2a971c4e38c6d6693f7ad8b6768e4d74840d6679/pom.xml", + "raw_url": "https://github.com/stapler/stapler/raw/2a971c4e38c6d6693f7ad8b6768e4d74840d6679/pom.xml", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/pom.xml?ref=2a971c4e38c6d6693f7ad8b6768e4d74840d6679", + "patch": "@@ -24,13 +24,13 @@\n jrebel\n \n \n- http://stapler.kohsuke.org/\n+ https://stapler.kohsuke.org/\n \n \n \n 2-clause BSD license\n repo\n- http://opensource.org/licenses/bsd-license.php\n+ https://opensource.org/licenses/bsd-license\n \n \n \n@@ -67,14 +67,14 @@\n \n \n repo.jenkins-ci.org\n- http://repo.jenkins-ci.org/public/\n+ https://repo.jenkins-ci.org/public/\n \n \n \n \n \n repo.jenkins-ci.org\n- http://repo.jenkins-ci.org/public/\n+ https://repo.jenkins-ci.org/public/\n \n \n " + } + ] +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_2f4ca0f03c1e6188867bddddce12ff213a107d9d-b7c821b4-b43e-44a2-bea6-83304ffae91f.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_2f4ca0f03c1e6188867bddddce12ff213a107d9d-b7c821b4-b43e-44a2-bea6-83304ffae91f.json new file mode 100644 index 0000000000..0b99503fae --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_2f4ca0f03c1e6188867bddddce12ff213a107d9d-b7c821b4-b43e-44a2-bea6-83304ffae91f.json @@ -0,0 +1,170 @@ +{ + "sha": "2f4ca0f03c1e6188867bddddce12ff213a107d9d", + "node_id": "MDY6Q29tbWl0MTU0ODUxNDoyZjRjYTBmMDNjMWU2MTg4ODY3YmRkZGRjZTEyZmYyMTNhMTA3ZDlk", + "commit": { + "author": { + "name": "Jesse Glick", + "email": "jglick@cloudbees.com", + "date": "2019-04-08T14:19:21Z" + }, + "committer": { + "name": "Jesse Glick", + "email": "jglick@cloudbees.com", + "date": "2019-04-08T14:19:21Z" + }, + "message": "[maven-release-plugin] prepare for next development iteration", + "tree": { + "sha": "f8ca916d33ffab1c342e6a92f7fd44dbad1609ec", + "url": "https://api.github.com/repos/stapler/stapler/git/trees/f8ca916d33ffab1c342e6a92f7fd44dbad1609ec" + }, + "url": "https://api.github.com/repos/stapler/stapler/git/commits/2f4ca0f03c1e6188867bddddce12ff213a107d9d", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQEzBAABCgAdFiEEYYylhqBIUt57zhxYHdpp2UtiQxEFAlyrWGkACgkQHdpp2Uti\nQxF9Hgf9Es/4uq/vG+zlttbpXr/RwYUgLiTO2Dw8bs+21OxfApMF0OBUtgb3SPdf\nMvWCc13Jbg3yQ2JaIP4IziEoTxZCu2ZEpgW6VtXik63f7HWyxeTeuO0I/kGNIm6J\nU4bZgeryOImU06w3SGTiaNvcxLsOjp99E8aIILqDrrHEN47sW5rBnKDDRzB5Ga74\nvZt88peqr792b6DGhYpjwl+qj3Hxqdm11JOAEwP6dLl5NhStQW6nZezcJnYJqSyd\ntfQQ0m+9qqSZaY+moenDnKEh9LleswGQwex84UNdG7i4gwsQs5GhCXaN3gMCtyiz\nU4nPC4mD3wbw93S1zORXGXvK0pUq5g==\n=KJwq\n-----END PGP SIGNATURE-----", + "payload": "tree f8ca916d33ffab1c342e6a92f7fd44dbad1609ec\nparent d922b808068cf95d6f6ab624ce2c7f49d51f5321\nauthor Jesse Glick 1554733161 -0400\ncommitter Jesse Glick 1554733161 -0400\n\n[maven-release-plugin] prepare for next development iteration\n" + } + }, + "url": "https://api.github.com/repos/stapler/stapler/commits/2f4ca0f03c1e6188867bddddce12ff213a107d9d", + "html_url": "https://github.com/stapler/stapler/commit/2f4ca0f03c1e6188867bddddce12ff213a107d9d", + "comments_url": "https://api.github.com/repos/stapler/stapler/commits/2f4ca0f03c1e6188867bddddce12ff213a107d9d/comments", + "author": { + "login": "jglick", + "id": 154109, + "node_id": "MDQ6VXNlcjE1NDEwOQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/154109?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jglick", + "html_url": "https://github.com/jglick", + "followers_url": "https://api.github.com/users/jglick/followers", + "following_url": "https://api.github.com/users/jglick/following{/other_user}", + "gists_url": "https://api.github.com/users/jglick/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jglick/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jglick/subscriptions", + "organizations_url": "https://api.github.com/users/jglick/orgs", + "repos_url": "https://api.github.com/users/jglick/repos", + "events_url": "https://api.github.com/users/jglick/events{/privacy}", + "received_events_url": "https://api.github.com/users/jglick/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "jglick", + "id": 154109, + "node_id": "MDQ6VXNlcjE1NDEwOQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/154109?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jglick", + "html_url": "https://github.com/jglick", + "followers_url": "https://api.github.com/users/jglick/followers", + "following_url": "https://api.github.com/users/jglick/following{/other_user}", + "gists_url": "https://api.github.com/users/jglick/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jglick/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jglick/subscriptions", + "organizations_url": "https://api.github.com/users/jglick/orgs", + "repos_url": "https://api.github.com/users/jglick/repos", + "events_url": "https://api.github.com/users/jglick/events{/privacy}", + "received_events_url": "https://api.github.com/users/jglick/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "d922b808068cf95d6f6ab624ce2c7f49d51f5321", + "url": "https://api.github.com/repos/stapler/stapler/commits/d922b808068cf95d6f6ab624ce2c7f49d51f5321", + "html_url": "https://github.com/stapler/stapler/commit/d922b808068cf95d6f6ab624ce2c7f49d51f5321" + } + ], + "stats": { + "total": 18, + "additions": 9, + "deletions": 9 + }, + "files": [ + { + "sha": "d5db8c67ff1f81d36f1e827f9167efef73a90e11", + "filename": "core/pom.xml", + "status": "modified", + "additions": 1, + "deletions": 1, + "changes": 2, + "blob_url": "https://github.com/stapler/stapler/blob/2f4ca0f03c1e6188867bddddce12ff213a107d9d/core/pom.xml", + "raw_url": "https://github.com/stapler/stapler/raw/2f4ca0f03c1e6188867bddddce12ff213a107d9d/core/pom.xml", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/core/pom.xml?ref=2f4ca0f03c1e6188867bddddce12ff213a107d9d", + "patch": "@@ -3,7 +3,7 @@\n \n org.kohsuke.stapler\n stapler-parent\n- 1.257\n+ ${revision}${changelist}\n \n \n stapler" + }, + { + "sha": "df30de83b3590c884f757b29cbe192ed7448ad9a", + "filename": "groovy/pom.xml", + "status": "modified", + "additions": 1, + "deletions": 1, + "changes": 2, + "blob_url": "https://github.com/stapler/stapler/blob/2f4ca0f03c1e6188867bddddce12ff213a107d9d/groovy/pom.xml", + "raw_url": "https://github.com/stapler/stapler/raw/2f4ca0f03c1e6188867bddddce12ff213a107d9d/groovy/pom.xml", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/groovy/pom.xml?ref=2f4ca0f03c1e6188867bddddce12ff213a107d9d", + "patch": "@@ -3,7 +3,7 @@\n \n org.kohsuke.stapler\n stapler-parent\n- 1.257\n+ ${revision}${changelist}\n \n \n stapler-groovy" + }, + { + "sha": "d9d4fe7b1f40a1d7a32fce0d56a8fdfa11e58dac", + "filename": "jelly/pom.xml", + "status": "modified", + "additions": 1, + "deletions": 1, + "changes": 2, + "blob_url": "https://github.com/stapler/stapler/blob/2f4ca0f03c1e6188867bddddce12ff213a107d9d/jelly/pom.xml", + "raw_url": "https://github.com/stapler/stapler/raw/2f4ca0f03c1e6188867bddddce12ff213a107d9d/jelly/pom.xml", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/jelly/pom.xml?ref=2f4ca0f03c1e6188867bddddce12ff213a107d9d", + "patch": "@@ -3,7 +3,7 @@\n \n org.kohsuke.stapler\n stapler-parent\n- 1.257\n+ ${revision}${changelist}\n \n \n stapler-jelly" + }, + { + "sha": "549ac913ab8d7d5b715e550dbe01d948d3f3794b", + "filename": "jrebel/pom.xml", + "status": "modified", + "additions": 1, + "deletions": 1, + "changes": 2, + "blob_url": "https://github.com/stapler/stapler/blob/2f4ca0f03c1e6188867bddddce12ff213a107d9d/jrebel/pom.xml", + "raw_url": "https://github.com/stapler/stapler/raw/2f4ca0f03c1e6188867bddddce12ff213a107d9d/jrebel/pom.xml", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/jrebel/pom.xml?ref=2f4ca0f03c1e6188867bddddce12ff213a107d9d", + "patch": "@@ -3,7 +3,7 @@\n \n org.kohsuke.stapler\n stapler-parent\n- 1.257\n+ ${revision}${changelist}\n \n \n stapler-jrebel" + }, + { + "sha": "8309e3bea60cdedb5920a821247fe726b2ef9cea", + "filename": "jruby/pom.xml", + "status": "modified", + "additions": 1, + "deletions": 1, + "changes": 2, + "blob_url": "https://github.com/stapler/stapler/blob/2f4ca0f03c1e6188867bddddce12ff213a107d9d/jruby/pom.xml", + "raw_url": "https://github.com/stapler/stapler/raw/2f4ca0f03c1e6188867bddddce12ff213a107d9d/jruby/pom.xml", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/jruby/pom.xml?ref=2f4ca0f03c1e6188867bddddce12ff213a107d9d", + "patch": "@@ -3,7 +3,7 @@\n \n org.kohsuke.stapler\n stapler-parent\n- 1.257\n+ ${revision}${changelist}\n \n \n stapler-jruby" + }, + { + "sha": "5ce1d053c5c853854188bc7bc99c17e675856d29", + "filename": "jsp/pom.xml", + "status": "modified", + "additions": 1, + "deletions": 1, + "changes": 2, + "blob_url": "https://github.com/stapler/stapler/blob/2f4ca0f03c1e6188867bddddce12ff213a107d9d/jsp/pom.xml", + "raw_url": "https://github.com/stapler/stapler/raw/2f4ca0f03c1e6188867bddddce12ff213a107d9d/jsp/pom.xml", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/jsp/pom.xml?ref=2f4ca0f03c1e6188867bddddce12ff213a107d9d", + "patch": "@@ -3,7 +3,7 @@\n \n org.kohsuke.stapler\n stapler-parent\n- 1.257\n+ ${revision}${changelist}\n \n \n stapler-jsp" + }, + { + "sha": "72dfbbc2151c03becdedfc6f2ae8ec930c912ced", + "filename": "pom.xml", + "status": "modified", + "additions": 3, + "deletions": 3, + "changes": 6, + "blob_url": "https://github.com/stapler/stapler/blob/2f4ca0f03c1e6188867bddddce12ff213a107d9d/pom.xml", + "raw_url": "https://github.com/stapler/stapler/raw/2f4ca0f03c1e6188867bddddce12ff213a107d9d/pom.xml", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/pom.xml?ref=2f4ca0f03c1e6188867bddddce12ff213a107d9d", + "patch": "@@ -10,7 +10,7 @@\n org.kohsuke.stapler\n stapler-parent\n pom\n- 1.257\n+ ${revision}${changelist}\n \n Stapler\n Stapler HTTP request handling engine\n@@ -38,7 +38,7 @@\n scm:git:git://github.com/stapler/stapler.git\n scm:git:ssh://git@github.com/stapler/stapler.git\n https://github.com/stapler/stapler\n- stapler-parent-1.257\n+ ${scmTag}\n \n \n \n@@ -81,7 +81,7 @@\n \n UTF-8\n 8\n- 1.257\n+ 1.258\n -SNAPSHOT\n https://repo.jenkins-ci.org/incrementals/\n HEAD" + } + ] +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_2f4ca0f03c1e6188867bddddce12ff213a107d9d-dd34f14b-38e1-406d-94b8-c650832d9bd4.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_2f4ca0f03c1e6188867bddddce12ff213a107d9d-dd34f14b-38e1-406d-94b8-c650832d9bd4.json new file mode 100644 index 0000000000..0b99503fae --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_2f4ca0f03c1e6188867bddddce12ff213a107d9d-dd34f14b-38e1-406d-94b8-c650832d9bd4.json @@ -0,0 +1,170 @@ +{ + "sha": "2f4ca0f03c1e6188867bddddce12ff213a107d9d", + "node_id": "MDY6Q29tbWl0MTU0ODUxNDoyZjRjYTBmMDNjMWU2MTg4ODY3YmRkZGRjZTEyZmYyMTNhMTA3ZDlk", + "commit": { + "author": { + "name": "Jesse Glick", + "email": "jglick@cloudbees.com", + "date": "2019-04-08T14:19:21Z" + }, + "committer": { + "name": "Jesse Glick", + "email": "jglick@cloudbees.com", + "date": "2019-04-08T14:19:21Z" + }, + "message": "[maven-release-plugin] prepare for next development iteration", + "tree": { + "sha": "f8ca916d33ffab1c342e6a92f7fd44dbad1609ec", + "url": "https://api.github.com/repos/stapler/stapler/git/trees/f8ca916d33ffab1c342e6a92f7fd44dbad1609ec" + }, + "url": "https://api.github.com/repos/stapler/stapler/git/commits/2f4ca0f03c1e6188867bddddce12ff213a107d9d", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQEzBAABCgAdFiEEYYylhqBIUt57zhxYHdpp2UtiQxEFAlyrWGkACgkQHdpp2Uti\nQxF9Hgf9Es/4uq/vG+zlttbpXr/RwYUgLiTO2Dw8bs+21OxfApMF0OBUtgb3SPdf\nMvWCc13Jbg3yQ2JaIP4IziEoTxZCu2ZEpgW6VtXik63f7HWyxeTeuO0I/kGNIm6J\nU4bZgeryOImU06w3SGTiaNvcxLsOjp99E8aIILqDrrHEN47sW5rBnKDDRzB5Ga74\nvZt88peqr792b6DGhYpjwl+qj3Hxqdm11JOAEwP6dLl5NhStQW6nZezcJnYJqSyd\ntfQQ0m+9qqSZaY+moenDnKEh9LleswGQwex84UNdG7i4gwsQs5GhCXaN3gMCtyiz\nU4nPC4mD3wbw93S1zORXGXvK0pUq5g==\n=KJwq\n-----END PGP SIGNATURE-----", + "payload": "tree f8ca916d33ffab1c342e6a92f7fd44dbad1609ec\nparent d922b808068cf95d6f6ab624ce2c7f49d51f5321\nauthor Jesse Glick 1554733161 -0400\ncommitter Jesse Glick 1554733161 -0400\n\n[maven-release-plugin] prepare for next development iteration\n" + } + }, + "url": "https://api.github.com/repos/stapler/stapler/commits/2f4ca0f03c1e6188867bddddce12ff213a107d9d", + "html_url": "https://github.com/stapler/stapler/commit/2f4ca0f03c1e6188867bddddce12ff213a107d9d", + "comments_url": "https://api.github.com/repos/stapler/stapler/commits/2f4ca0f03c1e6188867bddddce12ff213a107d9d/comments", + "author": { + "login": "jglick", + "id": 154109, + "node_id": "MDQ6VXNlcjE1NDEwOQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/154109?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jglick", + "html_url": "https://github.com/jglick", + "followers_url": "https://api.github.com/users/jglick/followers", + "following_url": "https://api.github.com/users/jglick/following{/other_user}", + "gists_url": "https://api.github.com/users/jglick/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jglick/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jglick/subscriptions", + "organizations_url": "https://api.github.com/users/jglick/orgs", + "repos_url": "https://api.github.com/users/jglick/repos", + "events_url": "https://api.github.com/users/jglick/events{/privacy}", + "received_events_url": "https://api.github.com/users/jglick/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "jglick", + "id": 154109, + "node_id": "MDQ6VXNlcjE1NDEwOQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/154109?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jglick", + "html_url": "https://github.com/jglick", + "followers_url": "https://api.github.com/users/jglick/followers", + "following_url": "https://api.github.com/users/jglick/following{/other_user}", + "gists_url": "https://api.github.com/users/jglick/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jglick/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jglick/subscriptions", + "organizations_url": "https://api.github.com/users/jglick/orgs", + "repos_url": "https://api.github.com/users/jglick/repos", + "events_url": "https://api.github.com/users/jglick/events{/privacy}", + "received_events_url": "https://api.github.com/users/jglick/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "d922b808068cf95d6f6ab624ce2c7f49d51f5321", + "url": "https://api.github.com/repos/stapler/stapler/commits/d922b808068cf95d6f6ab624ce2c7f49d51f5321", + "html_url": "https://github.com/stapler/stapler/commit/d922b808068cf95d6f6ab624ce2c7f49d51f5321" + } + ], + "stats": { + "total": 18, + "additions": 9, + "deletions": 9 + }, + "files": [ + { + "sha": "d5db8c67ff1f81d36f1e827f9167efef73a90e11", + "filename": "core/pom.xml", + "status": "modified", + "additions": 1, + "deletions": 1, + "changes": 2, + "blob_url": "https://github.com/stapler/stapler/blob/2f4ca0f03c1e6188867bddddce12ff213a107d9d/core/pom.xml", + "raw_url": "https://github.com/stapler/stapler/raw/2f4ca0f03c1e6188867bddddce12ff213a107d9d/core/pom.xml", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/core/pom.xml?ref=2f4ca0f03c1e6188867bddddce12ff213a107d9d", + "patch": "@@ -3,7 +3,7 @@\n \n org.kohsuke.stapler\n stapler-parent\n- 1.257\n+ ${revision}${changelist}\n \n \n stapler" + }, + { + "sha": "df30de83b3590c884f757b29cbe192ed7448ad9a", + "filename": "groovy/pom.xml", + "status": "modified", + "additions": 1, + "deletions": 1, + "changes": 2, + "blob_url": "https://github.com/stapler/stapler/blob/2f4ca0f03c1e6188867bddddce12ff213a107d9d/groovy/pom.xml", + "raw_url": "https://github.com/stapler/stapler/raw/2f4ca0f03c1e6188867bddddce12ff213a107d9d/groovy/pom.xml", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/groovy/pom.xml?ref=2f4ca0f03c1e6188867bddddce12ff213a107d9d", + "patch": "@@ -3,7 +3,7 @@\n \n org.kohsuke.stapler\n stapler-parent\n- 1.257\n+ ${revision}${changelist}\n \n \n stapler-groovy" + }, + { + "sha": "d9d4fe7b1f40a1d7a32fce0d56a8fdfa11e58dac", + "filename": "jelly/pom.xml", + "status": "modified", + "additions": 1, + "deletions": 1, + "changes": 2, + "blob_url": "https://github.com/stapler/stapler/blob/2f4ca0f03c1e6188867bddddce12ff213a107d9d/jelly/pom.xml", + "raw_url": "https://github.com/stapler/stapler/raw/2f4ca0f03c1e6188867bddddce12ff213a107d9d/jelly/pom.xml", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/jelly/pom.xml?ref=2f4ca0f03c1e6188867bddddce12ff213a107d9d", + "patch": "@@ -3,7 +3,7 @@\n \n org.kohsuke.stapler\n stapler-parent\n- 1.257\n+ ${revision}${changelist}\n \n \n stapler-jelly" + }, + { + "sha": "549ac913ab8d7d5b715e550dbe01d948d3f3794b", + "filename": "jrebel/pom.xml", + "status": "modified", + "additions": 1, + "deletions": 1, + "changes": 2, + "blob_url": "https://github.com/stapler/stapler/blob/2f4ca0f03c1e6188867bddddce12ff213a107d9d/jrebel/pom.xml", + "raw_url": "https://github.com/stapler/stapler/raw/2f4ca0f03c1e6188867bddddce12ff213a107d9d/jrebel/pom.xml", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/jrebel/pom.xml?ref=2f4ca0f03c1e6188867bddddce12ff213a107d9d", + "patch": "@@ -3,7 +3,7 @@\n \n org.kohsuke.stapler\n stapler-parent\n- 1.257\n+ ${revision}${changelist}\n \n \n stapler-jrebel" + }, + { + "sha": "8309e3bea60cdedb5920a821247fe726b2ef9cea", + "filename": "jruby/pom.xml", + "status": "modified", + "additions": 1, + "deletions": 1, + "changes": 2, + "blob_url": "https://github.com/stapler/stapler/blob/2f4ca0f03c1e6188867bddddce12ff213a107d9d/jruby/pom.xml", + "raw_url": "https://github.com/stapler/stapler/raw/2f4ca0f03c1e6188867bddddce12ff213a107d9d/jruby/pom.xml", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/jruby/pom.xml?ref=2f4ca0f03c1e6188867bddddce12ff213a107d9d", + "patch": "@@ -3,7 +3,7 @@\n \n org.kohsuke.stapler\n stapler-parent\n- 1.257\n+ ${revision}${changelist}\n \n \n stapler-jruby" + }, + { + "sha": "5ce1d053c5c853854188bc7bc99c17e675856d29", + "filename": "jsp/pom.xml", + "status": "modified", + "additions": 1, + "deletions": 1, + "changes": 2, + "blob_url": "https://github.com/stapler/stapler/blob/2f4ca0f03c1e6188867bddddce12ff213a107d9d/jsp/pom.xml", + "raw_url": "https://github.com/stapler/stapler/raw/2f4ca0f03c1e6188867bddddce12ff213a107d9d/jsp/pom.xml", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/jsp/pom.xml?ref=2f4ca0f03c1e6188867bddddce12ff213a107d9d", + "patch": "@@ -3,7 +3,7 @@\n \n org.kohsuke.stapler\n stapler-parent\n- 1.257\n+ ${revision}${changelist}\n \n \n stapler-jsp" + }, + { + "sha": "72dfbbc2151c03becdedfc6f2ae8ec930c912ced", + "filename": "pom.xml", + "status": "modified", + "additions": 3, + "deletions": 3, + "changes": 6, + "blob_url": "https://github.com/stapler/stapler/blob/2f4ca0f03c1e6188867bddddce12ff213a107d9d/pom.xml", + "raw_url": "https://github.com/stapler/stapler/raw/2f4ca0f03c1e6188867bddddce12ff213a107d9d/pom.xml", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/pom.xml?ref=2f4ca0f03c1e6188867bddddce12ff213a107d9d", + "patch": "@@ -10,7 +10,7 @@\n org.kohsuke.stapler\n stapler-parent\n pom\n- 1.257\n+ ${revision}${changelist}\n \n Stapler\n Stapler HTTP request handling engine\n@@ -38,7 +38,7 @@\n scm:git:git://github.com/stapler/stapler.git\n scm:git:ssh://git@github.com/stapler/stapler.git\n https://github.com/stapler/stapler\n- stapler-parent-1.257\n+ ${scmTag}\n \n \n \n@@ -81,7 +81,7 @@\n \n UTF-8\n 8\n- 1.257\n+ 1.258\n -SNAPSHOT\n https://repo.jenkins-ci.org/incrementals/\n HEAD" + } + ] +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_4f260c560ec120f4e2c2ed727244690b1f4d5dca-3e6d369c-c2ff-4835-abb3-00858c380485.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_4f260c560ec120f4e2c2ed727244690b1f4d5dca-3e6d369c-c2ff-4835-abb3-00858c380485.json new file mode 100644 index 0000000000..1777270b96 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_4f260c560ec120f4e2c2ed727244690b1f4d5dca-3e6d369c-c2ff-4835-abb3-00858c380485.json @@ -0,0 +1,122 @@ +{ + "sha": "4f260c560ec120f4e2c2ed727244690b1f4d5dca", + "node_id": "MDY6Q29tbWl0MTU0ODUxNDo0ZjI2MGM1NjBlYzEyMGY0ZTJjMmVkNzI3MjQ0NjkwYjFmNGQ1ZGNh", + "commit": { + "author": { + "name": "Jeff Thompson", + "email": "jeffret.g@gmail.com", + "date": "2019-02-18T22:52:29Z" + }, + "committer": { + "name": "Jeff Thompson", + "email": "jeffret.g@gmail.com", + "date": "2019-02-18T22:52:29Z" + }, + "message": "Enable incrementals.\n\nSince this isn't a plugin, I followed the instructions to do it the hard way. Hopefully it's not too weird to work.", + "tree": { + "sha": "575f9abb94a915cfc9fb0fdcc681648aade5cd1f", + "url": "https://api.github.com/repos/stapler/stapler/git/trees/575f9abb94a915cfc9fb0fdcc681648aade5cd1f" + }, + "url": "https://api.github.com/repos/stapler/stapler/git/commits/4f260c560ec120f4e2c2ed727244690b1f4d5dca", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/stapler/stapler/commits/4f260c560ec120f4e2c2ed727244690b1f4d5dca", + "html_url": "https://github.com/stapler/stapler/commit/4f260c560ec120f4e2c2ed727244690b1f4d5dca", + "comments_url": "https://api.github.com/repos/stapler/stapler/commits/4f260c560ec120f4e2c2ed727244690b1f4d5dca/comments", + "author": { + "login": "jeffret-b", + "id": 37345299, + "node_id": "MDQ6VXNlcjM3MzQ1Mjk5", + "avatar_url": "https://avatars0.githubusercontent.com/u/37345299?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jeffret-b", + "html_url": "https://github.com/jeffret-b", + "followers_url": "https://api.github.com/users/jeffret-b/followers", + "following_url": "https://api.github.com/users/jeffret-b/following{/other_user}", + "gists_url": "https://api.github.com/users/jeffret-b/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jeffret-b/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jeffret-b/subscriptions", + "organizations_url": "https://api.github.com/users/jeffret-b/orgs", + "repos_url": "https://api.github.com/users/jeffret-b/repos", + "events_url": "https://api.github.com/users/jeffret-b/events{/privacy}", + "received_events_url": "https://api.github.com/users/jeffret-b/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "jeffret-b", + "id": 37345299, + "node_id": "MDQ6VXNlcjM3MzQ1Mjk5", + "avatar_url": "https://avatars0.githubusercontent.com/u/37345299?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jeffret-b", + "html_url": "https://github.com/jeffret-b", + "followers_url": "https://api.github.com/users/jeffret-b/followers", + "following_url": "https://api.github.com/users/jeffret-b/following{/other_user}", + "gists_url": "https://api.github.com/users/jeffret-b/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jeffret-b/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jeffret-b/subscriptions", + "organizations_url": "https://api.github.com/users/jeffret-b/orgs", + "repos_url": "https://api.github.com/users/jeffret-b/repos", + "events_url": "https://api.github.com/users/jeffret-b/events{/privacy}", + "received_events_url": "https://api.github.com/users/jeffret-b/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "a019ca42d01dbe7d88f56deade245d7c0366624c", + "url": "https://api.github.com/repos/stapler/stapler/commits/a019ca42d01dbe7d88f56deade245d7c0366624c", + "html_url": "https://github.com/stapler/stapler/commit/a019ca42d01dbe7d88f56deade245d7c0366624c" + } + ], + "stats": { + "total": 154, + "additions": 152, + "deletions": 2 + }, + "files": [ + { + "sha": "db1d854113d1361cc67d6eba8055554eb1f2e414", + "filename": ".mvn/extensions.xml", + "status": "added", + "additions": 7, + "deletions": 0, + "changes": 7, + "blob_url": "https://github.com/stapler/stapler/blob/4f260c560ec120f4e2c2ed727244690b1f4d5dca/.mvn/extensions.xml", + "raw_url": "https://github.com/stapler/stapler/raw/4f260c560ec120f4e2c2ed727244690b1f4d5dca/.mvn/extensions.xml", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/.mvn/extensions.xml?ref=4f260c560ec120f4e2c2ed727244690b1f4d5dca", + "patch": "@@ -0,0 +1,7 @@\n+\n+ \n+ io.jenkins.tools.incrementals\n+ git-changelist-maven-extension\n+ 1.0-beta-2\n+ \n+" + }, + { + "sha": "2a0299c4865d58b47a576f7effc4a15f3fcf4ee9", + "filename": ".mvn/maven.config", + "status": "added", + "additions": 2, + "deletions": 0, + "changes": 2, + "blob_url": "https://github.com/stapler/stapler/blob/4f260c560ec120f4e2c2ed727244690b1f4d5dca/.mvn/maven.config", + "raw_url": "https://github.com/stapler/stapler/raw/4f260c560ec120f4e2c2ed727244690b1f4d5dca/.mvn/maven.config", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/.mvn/maven.config?ref=4f260c560ec120f4e2c2ed727244690b1f4d5dca", + "patch": "@@ -0,0 +1,2 @@\n+-Pconsume-incrementals\n+-Pmight-produce-incrementals" + }, + { + "sha": "262410bec1cd8e5c2bb839cf193e8abdf2fc7fbf", + "filename": "pom.xml", + "status": "modified", + "additions": 143, + "deletions": 2, + "changes": 145, + "blob_url": "https://github.com/stapler/stapler/blob/4f260c560ec120f4e2c2ed727244690b1f4d5dca/pom.xml", + "raw_url": "https://github.com/stapler/stapler/raw/4f260c560ec120f4e2c2ed727244690b1f4d5dca/pom.xml", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/pom.xml?ref=4f260c560ec120f4e2c2ed727244690b1f4d5dca", + "patch": "@@ -9,7 +9,7 @@\n org.kohsuke.stapler\n stapler-parent\n pom\n- 1.257-SNAPSHOT\n+ ${revision}${changelist}\n \n Stapler\n Stapler HTTP request handling engine\n@@ -37,7 +37,7 @@\n scm:git:git://github.com/stapler/stapler.git\n scm:git:ssh://git@github.com/stapler/stapler.git\n https://github.com/stapler/stapler\n- HEAD\n+ ${scmTag}\n \n \n \n@@ -84,6 +84,10 @@\n \n UTF-8\n 8\n+ 1.257\n+ -SNAPSHOT\n+ https://repo.jenkins-ci.org/incrementals/\n+ HEAD\n \n \n \n@@ -281,4 +285,141 @@\n \n \n \n+\n+ \n+ \n+ \n+ consume-incrementals\n+ \n+ \n+ incrementals\n+ ${incrementals.url}\n+ \n+ false\n+ \n+ \n+ \n+ \n+ \n+ incrementals\n+ ${incrementals.url}\n+ \n+ false\n+ \n+ \n+ \n+ \n+ \n+ might-produce-incrementals\n+ \n+ \n+ \n+ org.codehaus.mojo\n+ flatten-maven-plugin\n+ 1.0.1\n+ \n+ true\n+ \n+ \n+ \n+ flatten\n+ process-resources\n+ \n+ flatten\n+ \n+ \n+ oss\n+ ${project.build.directory}\n+ ${project.artifactId}-${project.version}.pom\n+ \n+ \n+ \n+ \n+ \n+ maven-enforcer-plugin\n+ \n+ \n+ display-info\n+ \n+ \n+ \n+ [3.5.0,)\n+ 3.5.0+ required to use Incrementals.\n+ \n+ \n+ [1.0-beta-4,)\n+ \n+ \n+ \n+ \n+ \n+ \n+ \n+ io.jenkins.tools.incrementals\n+ incrementals-enforcer-rules\n+ 1.0-beta-4\n+ \n+ \n+ \n+ \n+ maven-release-plugin\n+ \n+ incrementals:reincrementalify\n+ \n+ \n+ \n+ \n+ \n+ \n+ produce-incrementals\n+ \n+ \n+ set.changelist\n+ true\n+ \n+ \n+ \n+ \n+ incrementals\n+ ${incrementals.url}\n+ \n+ \n+ \n+ \n+ \n+ \n+ maven-source-plugin\n+ \n+ \n+ attach-sources\n+ \n+ jar-no-fork\n+ \n+ \n+ \n+ attach-test-sources\n+ \n+ test-jar-no-fork\n+ \n+ \n+ ${no-test-jar}\n+ \n+ \n+ \n+ \n+ \n+ maven-javadoc-plugin\n+ \n+ \n+ attach-javadocs\n+ \n+ jar\n+ \n+ \n+ \n+ \n+ \n+ \n+ \n+ \n " + } + ] +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_4f260c560ec120f4e2c2ed727244690b1f4d5dca-8573f146-63d0-4ffe-9d91-e05573680be5.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_4f260c560ec120f4e2c2ed727244690b1f4d5dca-8573f146-63d0-4ffe-9d91-e05573680be5.json new file mode 100644 index 0000000000..1777270b96 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_4f260c560ec120f4e2c2ed727244690b1f4d5dca-8573f146-63d0-4ffe-9d91-e05573680be5.json @@ -0,0 +1,122 @@ +{ + "sha": "4f260c560ec120f4e2c2ed727244690b1f4d5dca", + "node_id": "MDY6Q29tbWl0MTU0ODUxNDo0ZjI2MGM1NjBlYzEyMGY0ZTJjMmVkNzI3MjQ0NjkwYjFmNGQ1ZGNh", + "commit": { + "author": { + "name": "Jeff Thompson", + "email": "jeffret.g@gmail.com", + "date": "2019-02-18T22:52:29Z" + }, + "committer": { + "name": "Jeff Thompson", + "email": "jeffret.g@gmail.com", + "date": "2019-02-18T22:52:29Z" + }, + "message": "Enable incrementals.\n\nSince this isn't a plugin, I followed the instructions to do it the hard way. Hopefully it's not too weird to work.", + "tree": { + "sha": "575f9abb94a915cfc9fb0fdcc681648aade5cd1f", + "url": "https://api.github.com/repos/stapler/stapler/git/trees/575f9abb94a915cfc9fb0fdcc681648aade5cd1f" + }, + "url": "https://api.github.com/repos/stapler/stapler/git/commits/4f260c560ec120f4e2c2ed727244690b1f4d5dca", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/stapler/stapler/commits/4f260c560ec120f4e2c2ed727244690b1f4d5dca", + "html_url": "https://github.com/stapler/stapler/commit/4f260c560ec120f4e2c2ed727244690b1f4d5dca", + "comments_url": "https://api.github.com/repos/stapler/stapler/commits/4f260c560ec120f4e2c2ed727244690b1f4d5dca/comments", + "author": { + "login": "jeffret-b", + "id": 37345299, + "node_id": "MDQ6VXNlcjM3MzQ1Mjk5", + "avatar_url": "https://avatars0.githubusercontent.com/u/37345299?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jeffret-b", + "html_url": "https://github.com/jeffret-b", + "followers_url": "https://api.github.com/users/jeffret-b/followers", + "following_url": "https://api.github.com/users/jeffret-b/following{/other_user}", + "gists_url": "https://api.github.com/users/jeffret-b/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jeffret-b/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jeffret-b/subscriptions", + "organizations_url": "https://api.github.com/users/jeffret-b/orgs", + "repos_url": "https://api.github.com/users/jeffret-b/repos", + "events_url": "https://api.github.com/users/jeffret-b/events{/privacy}", + "received_events_url": "https://api.github.com/users/jeffret-b/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "jeffret-b", + "id": 37345299, + "node_id": "MDQ6VXNlcjM3MzQ1Mjk5", + "avatar_url": "https://avatars0.githubusercontent.com/u/37345299?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jeffret-b", + "html_url": "https://github.com/jeffret-b", + "followers_url": "https://api.github.com/users/jeffret-b/followers", + "following_url": "https://api.github.com/users/jeffret-b/following{/other_user}", + "gists_url": "https://api.github.com/users/jeffret-b/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jeffret-b/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jeffret-b/subscriptions", + "organizations_url": "https://api.github.com/users/jeffret-b/orgs", + "repos_url": "https://api.github.com/users/jeffret-b/repos", + "events_url": "https://api.github.com/users/jeffret-b/events{/privacy}", + "received_events_url": "https://api.github.com/users/jeffret-b/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "a019ca42d01dbe7d88f56deade245d7c0366624c", + "url": "https://api.github.com/repos/stapler/stapler/commits/a019ca42d01dbe7d88f56deade245d7c0366624c", + "html_url": "https://github.com/stapler/stapler/commit/a019ca42d01dbe7d88f56deade245d7c0366624c" + } + ], + "stats": { + "total": 154, + "additions": 152, + "deletions": 2 + }, + "files": [ + { + "sha": "db1d854113d1361cc67d6eba8055554eb1f2e414", + "filename": ".mvn/extensions.xml", + "status": "added", + "additions": 7, + "deletions": 0, + "changes": 7, + "blob_url": "https://github.com/stapler/stapler/blob/4f260c560ec120f4e2c2ed727244690b1f4d5dca/.mvn/extensions.xml", + "raw_url": "https://github.com/stapler/stapler/raw/4f260c560ec120f4e2c2ed727244690b1f4d5dca/.mvn/extensions.xml", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/.mvn/extensions.xml?ref=4f260c560ec120f4e2c2ed727244690b1f4d5dca", + "patch": "@@ -0,0 +1,7 @@\n+\n+ \n+ io.jenkins.tools.incrementals\n+ git-changelist-maven-extension\n+ 1.0-beta-2\n+ \n+" + }, + { + "sha": "2a0299c4865d58b47a576f7effc4a15f3fcf4ee9", + "filename": ".mvn/maven.config", + "status": "added", + "additions": 2, + "deletions": 0, + "changes": 2, + "blob_url": "https://github.com/stapler/stapler/blob/4f260c560ec120f4e2c2ed727244690b1f4d5dca/.mvn/maven.config", + "raw_url": "https://github.com/stapler/stapler/raw/4f260c560ec120f4e2c2ed727244690b1f4d5dca/.mvn/maven.config", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/.mvn/maven.config?ref=4f260c560ec120f4e2c2ed727244690b1f4d5dca", + "patch": "@@ -0,0 +1,2 @@\n+-Pconsume-incrementals\n+-Pmight-produce-incrementals" + }, + { + "sha": "262410bec1cd8e5c2bb839cf193e8abdf2fc7fbf", + "filename": "pom.xml", + "status": "modified", + "additions": 143, + "deletions": 2, + "changes": 145, + "blob_url": "https://github.com/stapler/stapler/blob/4f260c560ec120f4e2c2ed727244690b1f4d5dca/pom.xml", + "raw_url": "https://github.com/stapler/stapler/raw/4f260c560ec120f4e2c2ed727244690b1f4d5dca/pom.xml", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/pom.xml?ref=4f260c560ec120f4e2c2ed727244690b1f4d5dca", + "patch": "@@ -9,7 +9,7 @@\n org.kohsuke.stapler\n stapler-parent\n pom\n- 1.257-SNAPSHOT\n+ ${revision}${changelist}\n \n Stapler\n Stapler HTTP request handling engine\n@@ -37,7 +37,7 @@\n scm:git:git://github.com/stapler/stapler.git\n scm:git:ssh://git@github.com/stapler/stapler.git\n https://github.com/stapler/stapler\n- HEAD\n+ ${scmTag}\n \n \n \n@@ -84,6 +84,10 @@\n \n UTF-8\n 8\n+ 1.257\n+ -SNAPSHOT\n+ https://repo.jenkins-ci.org/incrementals/\n+ HEAD\n \n \n \n@@ -281,4 +285,141 @@\n \n \n \n+\n+ \n+ \n+ \n+ consume-incrementals\n+ \n+ \n+ incrementals\n+ ${incrementals.url}\n+ \n+ false\n+ \n+ \n+ \n+ \n+ \n+ incrementals\n+ ${incrementals.url}\n+ \n+ false\n+ \n+ \n+ \n+ \n+ \n+ might-produce-incrementals\n+ \n+ \n+ \n+ org.codehaus.mojo\n+ flatten-maven-plugin\n+ 1.0.1\n+ \n+ true\n+ \n+ \n+ \n+ flatten\n+ process-resources\n+ \n+ flatten\n+ \n+ \n+ oss\n+ ${project.build.directory}\n+ ${project.artifactId}-${project.version}.pom\n+ \n+ \n+ \n+ \n+ \n+ maven-enforcer-plugin\n+ \n+ \n+ display-info\n+ \n+ \n+ \n+ [3.5.0,)\n+ 3.5.0+ required to use Incrementals.\n+ \n+ \n+ [1.0-beta-4,)\n+ \n+ \n+ \n+ \n+ \n+ \n+ \n+ io.jenkins.tools.incrementals\n+ incrementals-enforcer-rules\n+ 1.0-beta-4\n+ \n+ \n+ \n+ \n+ maven-release-plugin\n+ \n+ incrementals:reincrementalify\n+ \n+ \n+ \n+ \n+ \n+ \n+ produce-incrementals\n+ \n+ \n+ set.changelist\n+ true\n+ \n+ \n+ \n+ \n+ incrementals\n+ ${incrementals.url}\n+ \n+ \n+ \n+ \n+ \n+ \n+ maven-source-plugin\n+ \n+ \n+ attach-sources\n+ \n+ jar-no-fork\n+ \n+ \n+ \n+ attach-test-sources\n+ \n+ test-jar-no-fork\n+ \n+ \n+ ${no-test-jar}\n+ \n+ \n+ \n+ \n+ \n+ maven-javadoc-plugin\n+ \n+ \n+ attach-javadocs\n+ \n+ jar\n+ \n+ \n+ \n+ \n+ \n+ \n+ \n+ \n " + } + ] +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_53ce34d7d89c5172ae4f4f3167e35852b1910b59-4c78237a-7bc9-49ce-9a1b-0bed99e888b4.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_53ce34d7d89c5172ae4f4f3167e35852b1910b59-4c78237a-7bc9-49ce-9a1b-0bed99e888b4.json new file mode 100644 index 0000000000..af12d8f857 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_53ce34d7d89c5172ae4f4f3167e35852b1910b59-4c78237a-7bc9-49ce-9a1b-0bed99e888b4.json @@ -0,0 +1,98 @@ +{ + "sha": "53ce34d7d89c5172ae4f4f3167e35852b1910b59", + "node_id": "MDY6Q29tbWl0MTU0ODUxNDo1M2NlMzRkN2Q4OWM1MTcyYWU0ZjRmMzE2N2UzNTg1MmIxOTEwYjU5", + "commit": { + "author": { + "name": "Jesse Glick", + "email": "jglick@cloudbees.com", + "date": "2019-04-03T19:03:54Z" + }, + "committer": { + "name": "Jesse Glick", + "email": "jglick@cloudbees.com", + "date": "2019-04-03T19:03:54Z" + }, + "message": "Miscellaneous POM updates while I am here.", + "tree": { + "sha": "996a8d951dc95bc002ee4703865f45594418902e", + "url": "https://api.github.com/repos/stapler/stapler/git/trees/996a8d951dc95bc002ee4703865f45594418902e" + }, + "url": "https://api.github.com/repos/stapler/stapler/git/commits/53ce34d7d89c5172ae4f4f3167e35852b1910b59", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQEzBAABCgAdFiEEYYylhqBIUt57zhxYHdpp2UtiQxEFAlylA5oACgkQHdpp2Uti\nQxFfbgf/Sv3T07OcY1W31Z1RyUVaEx0WeZpfZPuAOibFGfGLC6wpa4LCJCwaTK5l\n2I5T9nNZ95/22S3nsFHyb+VAnOFusXblKw8W6BvvyUWwNXzoBQGgvg37hKyNFwdO\nMRdErOixk71Yb6cnCatvzIpBuM4ENO77/TNvLtBApCETO9UQf6GjLU4jbHJySEHJ\n/NXvpdO1Xu5WskTc2k8/x+dtuilvLEAdMZUEHBiBTcGTUGQqedC6C7Mg3pTm9zGE\nQPj5THk+GZ6fD4KJwx0lyW9dGwTM9XYC/hjVs6AHC2dlROFiJ8/K722Fqti/zAyM\nDYz6+UUHcugK555ttRS1ntqgjxxEPw==\n=kTXy\n-----END PGP SIGNATURE-----", + "payload": "tree 996a8d951dc95bc002ee4703865f45594418902e\nparent 0e294ea94617a0926bd583dfe41515f4afb881e7\nauthor Jesse Glick 1554318234 -0400\ncommitter Jesse Glick 1554318234 -0400\n\nMiscellaneous POM updates while I am here.\n" + } + }, + "url": "https://api.github.com/repos/stapler/stapler/commits/53ce34d7d89c5172ae4f4f3167e35852b1910b59", + "html_url": "https://github.com/stapler/stapler/commit/53ce34d7d89c5172ae4f4f3167e35852b1910b59", + "comments_url": "https://api.github.com/repos/stapler/stapler/commits/53ce34d7d89c5172ae4f4f3167e35852b1910b59/comments", + "author": { + "login": "jglick", + "id": 154109, + "node_id": "MDQ6VXNlcjE1NDEwOQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/154109?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jglick", + "html_url": "https://github.com/jglick", + "followers_url": "https://api.github.com/users/jglick/followers", + "following_url": "https://api.github.com/users/jglick/following{/other_user}", + "gists_url": "https://api.github.com/users/jglick/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jglick/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jglick/subscriptions", + "organizations_url": "https://api.github.com/users/jglick/orgs", + "repos_url": "https://api.github.com/users/jglick/repos", + "events_url": "https://api.github.com/users/jglick/events{/privacy}", + "received_events_url": "https://api.github.com/users/jglick/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "jglick", + "id": 154109, + "node_id": "MDQ6VXNlcjE1NDEwOQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/154109?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jglick", + "html_url": "https://github.com/jglick", + "followers_url": "https://api.github.com/users/jglick/followers", + "following_url": "https://api.github.com/users/jglick/following{/other_user}", + "gists_url": "https://api.github.com/users/jglick/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jglick/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jglick/subscriptions", + "organizations_url": "https://api.github.com/users/jglick/orgs", + "repos_url": "https://api.github.com/users/jglick/repos", + "events_url": "https://api.github.com/users/jglick/events{/privacy}", + "received_events_url": "https://api.github.com/users/jglick/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "0e294ea94617a0926bd583dfe41515f4afb881e7", + "url": "https://api.github.com/repos/stapler/stapler/commits/0e294ea94617a0926bd583dfe41515f4afb881e7", + "html_url": "https://github.com/stapler/stapler/commit/0e294ea94617a0926bd583dfe41515f4afb881e7" + } + ], + "stats": { + "total": 7, + "additions": 2, + "deletions": 5 + }, + "files": [ + { + "sha": "2c12ec3f8c2d8b52772784b939ccea49b1fa904d", + "filename": "pom.xml", + "status": "modified", + "additions": 2, + "deletions": 5, + "changes": 7, + "blob_url": "https://github.com/stapler/stapler/blob/53ce34d7d89c5172ae4f4f3167e35852b1910b59/pom.xml", + "raw_url": "https://github.com/stapler/stapler/raw/53ce34d7d89c5172ae4f4f3167e35852b1910b59/pom.xml", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/pom.xml?ref=53ce34d7d89c5172ae4f4f3167e35852b1910b59", + "patch": "@@ -4,7 +4,8 @@\n \n org.kohsuke\n pom\n- 19\n+ 21\n+ \n \n org.kohsuke.stapler\n stapler-parent\n@@ -40,10 +41,6 @@\n ${scmTag}\n \n \n- \n- 3.0.4\n- \n-\n \n \n maven.jenkins-ci.org" + } + ] +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_53ce34d7d89c5172ae4f4f3167e35852b1910b59-5f3cc3b8-f231-4c58-9ffd-f0cf3c14d49b.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_53ce34d7d89c5172ae4f4f3167e35852b1910b59-5f3cc3b8-f231-4c58-9ffd-f0cf3c14d49b.json new file mode 100644 index 0000000000..af12d8f857 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_53ce34d7d89c5172ae4f4f3167e35852b1910b59-5f3cc3b8-f231-4c58-9ffd-f0cf3c14d49b.json @@ -0,0 +1,98 @@ +{ + "sha": "53ce34d7d89c5172ae4f4f3167e35852b1910b59", + "node_id": "MDY6Q29tbWl0MTU0ODUxNDo1M2NlMzRkN2Q4OWM1MTcyYWU0ZjRmMzE2N2UzNTg1MmIxOTEwYjU5", + "commit": { + "author": { + "name": "Jesse Glick", + "email": "jglick@cloudbees.com", + "date": "2019-04-03T19:03:54Z" + }, + "committer": { + "name": "Jesse Glick", + "email": "jglick@cloudbees.com", + "date": "2019-04-03T19:03:54Z" + }, + "message": "Miscellaneous POM updates while I am here.", + "tree": { + "sha": "996a8d951dc95bc002ee4703865f45594418902e", + "url": "https://api.github.com/repos/stapler/stapler/git/trees/996a8d951dc95bc002ee4703865f45594418902e" + }, + "url": "https://api.github.com/repos/stapler/stapler/git/commits/53ce34d7d89c5172ae4f4f3167e35852b1910b59", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQEzBAABCgAdFiEEYYylhqBIUt57zhxYHdpp2UtiQxEFAlylA5oACgkQHdpp2Uti\nQxFfbgf/Sv3T07OcY1W31Z1RyUVaEx0WeZpfZPuAOibFGfGLC6wpa4LCJCwaTK5l\n2I5T9nNZ95/22S3nsFHyb+VAnOFusXblKw8W6BvvyUWwNXzoBQGgvg37hKyNFwdO\nMRdErOixk71Yb6cnCatvzIpBuM4ENO77/TNvLtBApCETO9UQf6GjLU4jbHJySEHJ\n/NXvpdO1Xu5WskTc2k8/x+dtuilvLEAdMZUEHBiBTcGTUGQqedC6C7Mg3pTm9zGE\nQPj5THk+GZ6fD4KJwx0lyW9dGwTM9XYC/hjVs6AHC2dlROFiJ8/K722Fqti/zAyM\nDYz6+UUHcugK555ttRS1ntqgjxxEPw==\n=kTXy\n-----END PGP SIGNATURE-----", + "payload": "tree 996a8d951dc95bc002ee4703865f45594418902e\nparent 0e294ea94617a0926bd583dfe41515f4afb881e7\nauthor Jesse Glick 1554318234 -0400\ncommitter Jesse Glick 1554318234 -0400\n\nMiscellaneous POM updates while I am here.\n" + } + }, + "url": "https://api.github.com/repos/stapler/stapler/commits/53ce34d7d89c5172ae4f4f3167e35852b1910b59", + "html_url": "https://github.com/stapler/stapler/commit/53ce34d7d89c5172ae4f4f3167e35852b1910b59", + "comments_url": "https://api.github.com/repos/stapler/stapler/commits/53ce34d7d89c5172ae4f4f3167e35852b1910b59/comments", + "author": { + "login": "jglick", + "id": 154109, + "node_id": "MDQ6VXNlcjE1NDEwOQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/154109?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jglick", + "html_url": "https://github.com/jglick", + "followers_url": "https://api.github.com/users/jglick/followers", + "following_url": "https://api.github.com/users/jglick/following{/other_user}", + "gists_url": "https://api.github.com/users/jglick/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jglick/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jglick/subscriptions", + "organizations_url": "https://api.github.com/users/jglick/orgs", + "repos_url": "https://api.github.com/users/jglick/repos", + "events_url": "https://api.github.com/users/jglick/events{/privacy}", + "received_events_url": "https://api.github.com/users/jglick/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "jglick", + "id": 154109, + "node_id": "MDQ6VXNlcjE1NDEwOQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/154109?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jglick", + "html_url": "https://github.com/jglick", + "followers_url": "https://api.github.com/users/jglick/followers", + "following_url": "https://api.github.com/users/jglick/following{/other_user}", + "gists_url": "https://api.github.com/users/jglick/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jglick/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jglick/subscriptions", + "organizations_url": "https://api.github.com/users/jglick/orgs", + "repos_url": "https://api.github.com/users/jglick/repos", + "events_url": "https://api.github.com/users/jglick/events{/privacy}", + "received_events_url": "https://api.github.com/users/jglick/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "0e294ea94617a0926bd583dfe41515f4afb881e7", + "url": "https://api.github.com/repos/stapler/stapler/commits/0e294ea94617a0926bd583dfe41515f4afb881e7", + "html_url": "https://github.com/stapler/stapler/commit/0e294ea94617a0926bd583dfe41515f4afb881e7" + } + ], + "stats": { + "total": 7, + "additions": 2, + "deletions": 5 + }, + "files": [ + { + "sha": "2c12ec3f8c2d8b52772784b939ccea49b1fa904d", + "filename": "pom.xml", + "status": "modified", + "additions": 2, + "deletions": 5, + "changes": 7, + "blob_url": "https://github.com/stapler/stapler/blob/53ce34d7d89c5172ae4f4f3167e35852b1910b59/pom.xml", + "raw_url": "https://github.com/stapler/stapler/raw/53ce34d7d89c5172ae4f4f3167e35852b1910b59/pom.xml", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/pom.xml?ref=53ce34d7d89c5172ae4f4f3167e35852b1910b59", + "patch": "@@ -4,7 +4,8 @@\n \n org.kohsuke\n pom\n- 19\n+ 21\n+ \n \n org.kohsuke.stapler\n stapler-parent\n@@ -40,10 +41,6 @@\n ${scmTag}\n \n \n- \n- 3.0.4\n- \n-\n \n \n maven.jenkins-ci.org" + } + ] +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_6a243869aa3c3f80579102d00848a0083953d654-a7972e0c-a2e0-4e50-bd1a-374cfad5576c.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_6a243869aa3c3f80579102d00848a0083953d654-a7972e0c-a2e0-4e50-bd1a-374cfad5576c.json new file mode 100644 index 0000000000..cd1ba6e40f --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_6a243869aa3c3f80579102d00848a0083953d654-a7972e0c-a2e0-4e50-bd1a-374cfad5576c.json @@ -0,0 +1,170 @@ +{ + "sha": "6a243869aa3c3f80579102d00848a0083953d654", + "node_id": "MDY6Q29tbWl0MTU0ODUxNDo2YTI0Mzg2OWFhM2MzZjgwNTc5MTAyZDAwODQ4YTAwODM5NTNkNjU0", + "commit": { + "author": { + "name": "Jesse Glick", + "email": "jglick@cloudbees.com", + "date": "2019-08-19T18:38:42Z" + }, + "committer": { + "name": "Jesse Glick", + "email": "jglick@cloudbees.com", + "date": "2019-08-19T18:38:42Z" + }, + "message": "[maven-release-plugin] prepare release stapler-parent-1.258", + "tree": { + "sha": "61eb4efc23a5899681e45c581290617c98856e26", + "url": "https://api.github.com/repos/stapler/stapler/git/trees/61eb4efc23a5899681e45c581290617c98856e26" + }, + "url": "https://api.github.com/repos/stapler/stapler/git/commits/6a243869aa3c3f80579102d00848a0083953d654", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQEzBAABCgAdFiEEYYylhqBIUt57zhxYHdpp2UtiQxEFAl1a7LIACgkQHdpp2Uti\nQxEO8wf/fbacmCDXus8GhagFs240dUjvMbKTxVTX0yS8dHf7TvmpljikXRC8l4RM\nYy9g+J0Gbf9jMaz8walo4bXt7m8RaCDJmcKyA3Y3vC3O5G2Y5wlFLQwtN0ZykbKc\nPH0xLW4n8NBWBk1F50ka9y+/EBEAeMn8oSjmJhBDyc+xWWiuewrYaiX81JHKU9PY\ngwYW+eCxh0Z14CZQstfJx8SeVXbWJtpm+x/Hyjetj7VaVdvzKNAUTQ6wPp5drvGI\nQ0H91v01TA5pskbKDeegMLIlItqyjgjTnGV8rx4JjzZcvH+lPXbnI5Tcb68DvZgN\noJt4cb0b5dIo1pSbzF9W5i6Ro8QxGA==\n=Mduu\n-----END PGP SIGNATURE-----", + "payload": "tree 61eb4efc23a5899681e45c581290617c98856e26\nparent 3d3d6f01c553724350a6763d9b726fc3db268ccf\nauthor Jesse Glick 1566239922 -0400\ncommitter Jesse Glick 1566239922 -0400\n\n[maven-release-plugin] prepare release stapler-parent-1.258\n" + } + }, + "url": "https://api.github.com/repos/stapler/stapler/commits/6a243869aa3c3f80579102d00848a0083953d654", + "html_url": "https://github.com/stapler/stapler/commit/6a243869aa3c3f80579102d00848a0083953d654", + "comments_url": "https://api.github.com/repos/stapler/stapler/commits/6a243869aa3c3f80579102d00848a0083953d654/comments", + "author": { + "login": "jglick", + "id": 154109, + "node_id": "MDQ6VXNlcjE1NDEwOQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/154109?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jglick", + "html_url": "https://github.com/jglick", + "followers_url": "https://api.github.com/users/jglick/followers", + "following_url": "https://api.github.com/users/jglick/following{/other_user}", + "gists_url": "https://api.github.com/users/jglick/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jglick/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jglick/subscriptions", + "organizations_url": "https://api.github.com/users/jglick/orgs", + "repos_url": "https://api.github.com/users/jglick/repos", + "events_url": "https://api.github.com/users/jglick/events{/privacy}", + "received_events_url": "https://api.github.com/users/jglick/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "jglick", + "id": 154109, + "node_id": "MDQ6VXNlcjE1NDEwOQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/154109?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jglick", + "html_url": "https://github.com/jglick", + "followers_url": "https://api.github.com/users/jglick/followers", + "following_url": "https://api.github.com/users/jglick/following{/other_user}", + "gists_url": "https://api.github.com/users/jglick/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jglick/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jglick/subscriptions", + "organizations_url": "https://api.github.com/users/jglick/orgs", + "repos_url": "https://api.github.com/users/jglick/repos", + "events_url": "https://api.github.com/users/jglick/events{/privacy}", + "received_events_url": "https://api.github.com/users/jglick/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "3d3d6f01c553724350a6763d9b726fc3db268ccf", + "url": "https://api.github.com/repos/stapler/stapler/commits/3d3d6f01c553724350a6763d9b726fc3db268ccf", + "html_url": "https://github.com/stapler/stapler/commit/3d3d6f01c553724350a6763d9b726fc3db268ccf" + } + ], + "stats": { + "total": 16, + "additions": 8, + "deletions": 8 + }, + "files": [ + { + "sha": "3db06058b622f33fffbcf05fa3a4278ebb25aeca", + "filename": "core/pom.xml", + "status": "modified", + "additions": 1, + "deletions": 1, + "changes": 2, + "blob_url": "https://github.com/stapler/stapler/blob/6a243869aa3c3f80579102d00848a0083953d654/core/pom.xml", + "raw_url": "https://github.com/stapler/stapler/raw/6a243869aa3c3f80579102d00848a0083953d654/core/pom.xml", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/core/pom.xml?ref=6a243869aa3c3f80579102d00848a0083953d654", + "patch": "@@ -3,7 +3,7 @@\n \n org.kohsuke.stapler\n stapler-parent\n- ${revision}${changelist}\n+ 1.258\n \n \n stapler" + }, + { + "sha": "90f2de8c4bd577de291ebd69279b8ad6d543bcda", + "filename": "groovy/pom.xml", + "status": "modified", + "additions": 1, + "deletions": 1, + "changes": 2, + "blob_url": "https://github.com/stapler/stapler/blob/6a243869aa3c3f80579102d00848a0083953d654/groovy/pom.xml", + "raw_url": "https://github.com/stapler/stapler/raw/6a243869aa3c3f80579102d00848a0083953d654/groovy/pom.xml", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/groovy/pom.xml?ref=6a243869aa3c3f80579102d00848a0083953d654", + "patch": "@@ -3,7 +3,7 @@\n \n org.kohsuke.stapler\n stapler-parent\n- ${revision}${changelist}\n+ 1.258\n \n \n stapler-groovy" + }, + { + "sha": "828321e36a571d4572cc4ef64a8be1126f1a2468", + "filename": "jelly/pom.xml", + "status": "modified", + "additions": 1, + "deletions": 1, + "changes": 2, + "blob_url": "https://github.com/stapler/stapler/blob/6a243869aa3c3f80579102d00848a0083953d654/jelly/pom.xml", + "raw_url": "https://github.com/stapler/stapler/raw/6a243869aa3c3f80579102d00848a0083953d654/jelly/pom.xml", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/jelly/pom.xml?ref=6a243869aa3c3f80579102d00848a0083953d654", + "patch": "@@ -3,7 +3,7 @@\n \n org.kohsuke.stapler\n stapler-parent\n- ${revision}${changelist}\n+ 1.258\n \n \n stapler-jelly" + }, + { + "sha": "d67b6481ffc873ddc9ae4bb765003752c44cd7fb", + "filename": "jrebel/pom.xml", + "status": "modified", + "additions": 1, + "deletions": 1, + "changes": 2, + "blob_url": "https://github.com/stapler/stapler/blob/6a243869aa3c3f80579102d00848a0083953d654/jrebel/pom.xml", + "raw_url": "https://github.com/stapler/stapler/raw/6a243869aa3c3f80579102d00848a0083953d654/jrebel/pom.xml", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/jrebel/pom.xml?ref=6a243869aa3c3f80579102d00848a0083953d654", + "patch": "@@ -3,7 +3,7 @@\n \n org.kohsuke.stapler\n stapler-parent\n- ${revision}${changelist}\n+ 1.258\n \n \n stapler-jrebel" + }, + { + "sha": "0880c54411fab4d2ecc7cac972c9c0eb65bea007", + "filename": "jruby/pom.xml", + "status": "modified", + "additions": 1, + "deletions": 1, + "changes": 2, + "blob_url": "https://github.com/stapler/stapler/blob/6a243869aa3c3f80579102d00848a0083953d654/jruby/pom.xml", + "raw_url": "https://github.com/stapler/stapler/raw/6a243869aa3c3f80579102d00848a0083953d654/jruby/pom.xml", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/jruby/pom.xml?ref=6a243869aa3c3f80579102d00848a0083953d654", + "patch": "@@ -3,7 +3,7 @@\n \n org.kohsuke.stapler\n stapler-parent\n- ${revision}${changelist}\n+ 1.258\n \n \n stapler-jruby" + }, + { + "sha": "95656583899744b7e58777f16a460f608ad16bcc", + "filename": "jsp/pom.xml", + "status": "modified", + "additions": 1, + "deletions": 1, + "changes": 2, + "blob_url": "https://github.com/stapler/stapler/blob/6a243869aa3c3f80579102d00848a0083953d654/jsp/pom.xml", + "raw_url": "https://github.com/stapler/stapler/raw/6a243869aa3c3f80579102d00848a0083953d654/jsp/pom.xml", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/jsp/pom.xml?ref=6a243869aa3c3f80579102d00848a0083953d654", + "patch": "@@ -3,7 +3,7 @@\n \n org.kohsuke.stapler\n stapler-parent\n- ${revision}${changelist}\n+ 1.258\n \n \n stapler-jsp" + }, + { + "sha": "c6a16143c825686ffcb52b107e4f81912be47310", + "filename": "pom.xml", + "status": "modified", + "additions": 2, + "deletions": 2, + "changes": 4, + "blob_url": "https://github.com/stapler/stapler/blob/6a243869aa3c3f80579102d00848a0083953d654/pom.xml", + "raw_url": "https://github.com/stapler/stapler/raw/6a243869aa3c3f80579102d00848a0083953d654/pom.xml", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/pom.xml?ref=6a243869aa3c3f80579102d00848a0083953d654", + "patch": "@@ -10,7 +10,7 @@\n org.kohsuke.stapler\n stapler-parent\n pom\n- ${revision}${changelist}\n+ 1.258\n \n Stapler\n Stapler HTTP request handling engine\n@@ -38,7 +38,7 @@\n scm:git:git://github.com/stapler/stapler.git\n scm:git:ssh://git@github.com/stapler/stapler.git\n https://github.com/stapler/stapler\n- ${scmTag}\n+ stapler-parent-1.258\n \n \n " + } + ] +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_6a243869aa3c3f80579102d00848a0083953d654-d76af952-0ff3-4514-9a38-93d9570c5b3c.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_6a243869aa3c3f80579102d00848a0083953d654-d76af952-0ff3-4514-9a38-93d9570c5b3c.json new file mode 100644 index 0000000000..cd1ba6e40f --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_6a243869aa3c3f80579102d00848a0083953d654-d76af952-0ff3-4514-9a38-93d9570c5b3c.json @@ -0,0 +1,170 @@ +{ + "sha": "6a243869aa3c3f80579102d00848a0083953d654", + "node_id": "MDY6Q29tbWl0MTU0ODUxNDo2YTI0Mzg2OWFhM2MzZjgwNTc5MTAyZDAwODQ4YTAwODM5NTNkNjU0", + "commit": { + "author": { + "name": "Jesse Glick", + "email": "jglick@cloudbees.com", + "date": "2019-08-19T18:38:42Z" + }, + "committer": { + "name": "Jesse Glick", + "email": "jglick@cloudbees.com", + "date": "2019-08-19T18:38:42Z" + }, + "message": "[maven-release-plugin] prepare release stapler-parent-1.258", + "tree": { + "sha": "61eb4efc23a5899681e45c581290617c98856e26", + "url": "https://api.github.com/repos/stapler/stapler/git/trees/61eb4efc23a5899681e45c581290617c98856e26" + }, + "url": "https://api.github.com/repos/stapler/stapler/git/commits/6a243869aa3c3f80579102d00848a0083953d654", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQEzBAABCgAdFiEEYYylhqBIUt57zhxYHdpp2UtiQxEFAl1a7LIACgkQHdpp2Uti\nQxEO8wf/fbacmCDXus8GhagFs240dUjvMbKTxVTX0yS8dHf7TvmpljikXRC8l4RM\nYy9g+J0Gbf9jMaz8walo4bXt7m8RaCDJmcKyA3Y3vC3O5G2Y5wlFLQwtN0ZykbKc\nPH0xLW4n8NBWBk1F50ka9y+/EBEAeMn8oSjmJhBDyc+xWWiuewrYaiX81JHKU9PY\ngwYW+eCxh0Z14CZQstfJx8SeVXbWJtpm+x/Hyjetj7VaVdvzKNAUTQ6wPp5drvGI\nQ0H91v01TA5pskbKDeegMLIlItqyjgjTnGV8rx4JjzZcvH+lPXbnI5Tcb68DvZgN\noJt4cb0b5dIo1pSbzF9W5i6Ro8QxGA==\n=Mduu\n-----END PGP SIGNATURE-----", + "payload": "tree 61eb4efc23a5899681e45c581290617c98856e26\nparent 3d3d6f01c553724350a6763d9b726fc3db268ccf\nauthor Jesse Glick 1566239922 -0400\ncommitter Jesse Glick 1566239922 -0400\n\n[maven-release-plugin] prepare release stapler-parent-1.258\n" + } + }, + "url": "https://api.github.com/repos/stapler/stapler/commits/6a243869aa3c3f80579102d00848a0083953d654", + "html_url": "https://github.com/stapler/stapler/commit/6a243869aa3c3f80579102d00848a0083953d654", + "comments_url": "https://api.github.com/repos/stapler/stapler/commits/6a243869aa3c3f80579102d00848a0083953d654/comments", + "author": { + "login": "jglick", + "id": 154109, + "node_id": "MDQ6VXNlcjE1NDEwOQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/154109?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jglick", + "html_url": "https://github.com/jglick", + "followers_url": "https://api.github.com/users/jglick/followers", + "following_url": "https://api.github.com/users/jglick/following{/other_user}", + "gists_url": "https://api.github.com/users/jglick/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jglick/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jglick/subscriptions", + "organizations_url": "https://api.github.com/users/jglick/orgs", + "repos_url": "https://api.github.com/users/jglick/repos", + "events_url": "https://api.github.com/users/jglick/events{/privacy}", + "received_events_url": "https://api.github.com/users/jglick/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "jglick", + "id": 154109, + "node_id": "MDQ6VXNlcjE1NDEwOQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/154109?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jglick", + "html_url": "https://github.com/jglick", + "followers_url": "https://api.github.com/users/jglick/followers", + "following_url": "https://api.github.com/users/jglick/following{/other_user}", + "gists_url": "https://api.github.com/users/jglick/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jglick/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jglick/subscriptions", + "organizations_url": "https://api.github.com/users/jglick/orgs", + "repos_url": "https://api.github.com/users/jglick/repos", + "events_url": "https://api.github.com/users/jglick/events{/privacy}", + "received_events_url": "https://api.github.com/users/jglick/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "3d3d6f01c553724350a6763d9b726fc3db268ccf", + "url": "https://api.github.com/repos/stapler/stapler/commits/3d3d6f01c553724350a6763d9b726fc3db268ccf", + "html_url": "https://github.com/stapler/stapler/commit/3d3d6f01c553724350a6763d9b726fc3db268ccf" + } + ], + "stats": { + "total": 16, + "additions": 8, + "deletions": 8 + }, + "files": [ + { + "sha": "3db06058b622f33fffbcf05fa3a4278ebb25aeca", + "filename": "core/pom.xml", + "status": "modified", + "additions": 1, + "deletions": 1, + "changes": 2, + "blob_url": "https://github.com/stapler/stapler/blob/6a243869aa3c3f80579102d00848a0083953d654/core/pom.xml", + "raw_url": "https://github.com/stapler/stapler/raw/6a243869aa3c3f80579102d00848a0083953d654/core/pom.xml", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/core/pom.xml?ref=6a243869aa3c3f80579102d00848a0083953d654", + "patch": "@@ -3,7 +3,7 @@\n \n org.kohsuke.stapler\n stapler-parent\n- ${revision}${changelist}\n+ 1.258\n \n \n stapler" + }, + { + "sha": "90f2de8c4bd577de291ebd69279b8ad6d543bcda", + "filename": "groovy/pom.xml", + "status": "modified", + "additions": 1, + "deletions": 1, + "changes": 2, + "blob_url": "https://github.com/stapler/stapler/blob/6a243869aa3c3f80579102d00848a0083953d654/groovy/pom.xml", + "raw_url": "https://github.com/stapler/stapler/raw/6a243869aa3c3f80579102d00848a0083953d654/groovy/pom.xml", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/groovy/pom.xml?ref=6a243869aa3c3f80579102d00848a0083953d654", + "patch": "@@ -3,7 +3,7 @@\n \n org.kohsuke.stapler\n stapler-parent\n- ${revision}${changelist}\n+ 1.258\n \n \n stapler-groovy" + }, + { + "sha": "828321e36a571d4572cc4ef64a8be1126f1a2468", + "filename": "jelly/pom.xml", + "status": "modified", + "additions": 1, + "deletions": 1, + "changes": 2, + "blob_url": "https://github.com/stapler/stapler/blob/6a243869aa3c3f80579102d00848a0083953d654/jelly/pom.xml", + "raw_url": "https://github.com/stapler/stapler/raw/6a243869aa3c3f80579102d00848a0083953d654/jelly/pom.xml", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/jelly/pom.xml?ref=6a243869aa3c3f80579102d00848a0083953d654", + "patch": "@@ -3,7 +3,7 @@\n \n org.kohsuke.stapler\n stapler-parent\n- ${revision}${changelist}\n+ 1.258\n \n \n stapler-jelly" + }, + { + "sha": "d67b6481ffc873ddc9ae4bb765003752c44cd7fb", + "filename": "jrebel/pom.xml", + "status": "modified", + "additions": 1, + "deletions": 1, + "changes": 2, + "blob_url": "https://github.com/stapler/stapler/blob/6a243869aa3c3f80579102d00848a0083953d654/jrebel/pom.xml", + "raw_url": "https://github.com/stapler/stapler/raw/6a243869aa3c3f80579102d00848a0083953d654/jrebel/pom.xml", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/jrebel/pom.xml?ref=6a243869aa3c3f80579102d00848a0083953d654", + "patch": "@@ -3,7 +3,7 @@\n \n org.kohsuke.stapler\n stapler-parent\n- ${revision}${changelist}\n+ 1.258\n \n \n stapler-jrebel" + }, + { + "sha": "0880c54411fab4d2ecc7cac972c9c0eb65bea007", + "filename": "jruby/pom.xml", + "status": "modified", + "additions": 1, + "deletions": 1, + "changes": 2, + "blob_url": "https://github.com/stapler/stapler/blob/6a243869aa3c3f80579102d00848a0083953d654/jruby/pom.xml", + "raw_url": "https://github.com/stapler/stapler/raw/6a243869aa3c3f80579102d00848a0083953d654/jruby/pom.xml", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/jruby/pom.xml?ref=6a243869aa3c3f80579102d00848a0083953d654", + "patch": "@@ -3,7 +3,7 @@\n \n org.kohsuke.stapler\n stapler-parent\n- ${revision}${changelist}\n+ 1.258\n \n \n stapler-jruby" + }, + { + "sha": "95656583899744b7e58777f16a460f608ad16bcc", + "filename": "jsp/pom.xml", + "status": "modified", + "additions": 1, + "deletions": 1, + "changes": 2, + "blob_url": "https://github.com/stapler/stapler/blob/6a243869aa3c3f80579102d00848a0083953d654/jsp/pom.xml", + "raw_url": "https://github.com/stapler/stapler/raw/6a243869aa3c3f80579102d00848a0083953d654/jsp/pom.xml", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/jsp/pom.xml?ref=6a243869aa3c3f80579102d00848a0083953d654", + "patch": "@@ -3,7 +3,7 @@\n \n org.kohsuke.stapler\n stapler-parent\n- ${revision}${changelist}\n+ 1.258\n \n \n stapler-jsp" + }, + { + "sha": "c6a16143c825686ffcb52b107e4f81912be47310", + "filename": "pom.xml", + "status": "modified", + "additions": 2, + "deletions": 2, + "changes": 4, + "blob_url": "https://github.com/stapler/stapler/blob/6a243869aa3c3f80579102d00848a0083953d654/pom.xml", + "raw_url": "https://github.com/stapler/stapler/raw/6a243869aa3c3f80579102d00848a0083953d654/pom.xml", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/pom.xml?ref=6a243869aa3c3f80579102d00848a0083953d654", + "patch": "@@ -10,7 +10,7 @@\n org.kohsuke.stapler\n stapler-parent\n pom\n- ${revision}${changelist}\n+ 1.258\n \n Stapler\n Stapler HTTP request handling engine\n@@ -38,7 +38,7 @@\n scm:git:git://github.com/stapler/stapler.git\n scm:git:ssh://git@github.com/stapler/stapler.git\n https://github.com/stapler/stapler\n- ${scmTag}\n+ stapler-parent-1.258\n \n \n " + } + ] +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_72343298733508cced8dcb8eb43594bcc6130b26-73ac5fc1-ea49-4c48-bc8a-f306908d7836.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_72343298733508cced8dcb8eb43594bcc6130b26-73ac5fc1-ea49-4c48-bc8a-f306908d7836.json new file mode 100644 index 0000000000..8da3c95dff --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_72343298733508cced8dcb8eb43594bcc6130b26-73ac5fc1-ea49-4c48-bc8a-f306908d7836.json @@ -0,0 +1,110 @@ +{ + "sha": "72343298733508cced8dcb8eb43594bcc6130b26", + "node_id": "MDY6Q29tbWl0MTU0ODUxNDo3MjM0MzI5ODczMzUwOGNjZWQ4ZGNiOGViNDM1OTRiY2M2MTMwYjI2", + "commit": { + "author": { + "name": "Jeff Thompson", + "email": "jeffret.g@gmail.com", + "date": "2019-02-19T21:27:25Z" + }, + "committer": { + "name": "Jeff Thompson", + "email": "jeffret.g@gmail.com", + "date": "2019-02-19T21:27:25Z" + }, + "message": "Update to latest versions.", + "tree": { + "sha": "e1299f37e2ce97636d923a5631265279a5377b6d", + "url": "https://api.github.com/repos/stapler/stapler/git/trees/e1299f37e2ce97636d923a5631265279a5377b6d" + }, + "url": "https://api.github.com/repos/stapler/stapler/git/commits/72343298733508cced8dcb8eb43594bcc6130b26", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/stapler/stapler/commits/72343298733508cced8dcb8eb43594bcc6130b26", + "html_url": "https://github.com/stapler/stapler/commit/72343298733508cced8dcb8eb43594bcc6130b26", + "comments_url": "https://api.github.com/repos/stapler/stapler/commits/72343298733508cced8dcb8eb43594bcc6130b26/comments", + "author": { + "login": "jeffret-b", + "id": 37345299, + "node_id": "MDQ6VXNlcjM3MzQ1Mjk5", + "avatar_url": "https://avatars0.githubusercontent.com/u/37345299?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jeffret-b", + "html_url": "https://github.com/jeffret-b", + "followers_url": "https://api.github.com/users/jeffret-b/followers", + "following_url": "https://api.github.com/users/jeffret-b/following{/other_user}", + "gists_url": "https://api.github.com/users/jeffret-b/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jeffret-b/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jeffret-b/subscriptions", + "organizations_url": "https://api.github.com/users/jeffret-b/orgs", + "repos_url": "https://api.github.com/users/jeffret-b/repos", + "events_url": "https://api.github.com/users/jeffret-b/events{/privacy}", + "received_events_url": "https://api.github.com/users/jeffret-b/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "jeffret-b", + "id": 37345299, + "node_id": "MDQ6VXNlcjM3MzQ1Mjk5", + "avatar_url": "https://avatars0.githubusercontent.com/u/37345299?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jeffret-b", + "html_url": "https://github.com/jeffret-b", + "followers_url": "https://api.github.com/users/jeffret-b/followers", + "following_url": "https://api.github.com/users/jeffret-b/following{/other_user}", + "gists_url": "https://api.github.com/users/jeffret-b/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jeffret-b/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jeffret-b/subscriptions", + "organizations_url": "https://api.github.com/users/jeffret-b/orgs", + "repos_url": "https://api.github.com/users/jeffret-b/repos", + "events_url": "https://api.github.com/users/jeffret-b/events{/privacy}", + "received_events_url": "https://api.github.com/users/jeffret-b/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "def3808ecd41583818aef3b35675756f00a45bbe", + "url": "https://api.github.com/repos/stapler/stapler/commits/def3808ecd41583818aef3b35675756f00a45bbe", + "html_url": "https://github.com/stapler/stapler/commit/def3808ecd41583818aef3b35675756f00a45bbe" + } + ], + "stats": { + "total": 4, + "additions": 2, + "deletions": 2 + }, + "files": [ + { + "sha": "94863e605b263eac4033a58ae826865663ac844a", + "filename": ".mvn/extensions.xml", + "status": "modified", + "additions": 1, + "deletions": 1, + "changes": 2, + "blob_url": "https://github.com/stapler/stapler/blob/72343298733508cced8dcb8eb43594bcc6130b26/.mvn/extensions.xml", + "raw_url": "https://github.com/stapler/stapler/raw/72343298733508cced8dcb8eb43594bcc6130b26/.mvn/extensions.xml", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/.mvn/extensions.xml?ref=72343298733508cced8dcb8eb43594bcc6130b26", + "patch": "@@ -2,6 +2,6 @@\n \n io.jenkins.tools.incrementals\n git-changelist-maven-extension\n- 1.0-beta-2\n+ 1.0-beta-7\n \n " + }, + { + "sha": "4976b0e34415ab2138ee63db72b1f374517bb2fd", + "filename": "pom.xml", + "status": "modified", + "additions": 1, + "deletions": 1, + "changes": 2, + "blob_url": "https://github.com/stapler/stapler/blob/72343298733508cced8dcb8eb43594bcc6130b26/pom.xml", + "raw_url": "https://github.com/stapler/stapler/raw/72343298733508cced8dcb8eb43594bcc6130b26/pom.xml", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/pom.xml?ref=72343298733508cced8dcb8eb43594bcc6130b26", + "patch": "@@ -357,7 +357,7 @@\n \n io.jenkins.tools.incrementals\n incrementals-enforcer-rules\n- 1.0-beta-4\n+ 1.0-beta-5\n \n \n " + } + ] +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_72343298733508cced8dcb8eb43594bcc6130b26-77b7d93a-9cd6-48a5-af7d-2ee6e4efa296.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_72343298733508cced8dcb8eb43594bcc6130b26-77b7d93a-9cd6-48a5-af7d-2ee6e4efa296.json new file mode 100644 index 0000000000..8da3c95dff --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_72343298733508cced8dcb8eb43594bcc6130b26-77b7d93a-9cd6-48a5-af7d-2ee6e4efa296.json @@ -0,0 +1,110 @@ +{ + "sha": "72343298733508cced8dcb8eb43594bcc6130b26", + "node_id": "MDY6Q29tbWl0MTU0ODUxNDo3MjM0MzI5ODczMzUwOGNjZWQ4ZGNiOGViNDM1OTRiY2M2MTMwYjI2", + "commit": { + "author": { + "name": "Jeff Thompson", + "email": "jeffret.g@gmail.com", + "date": "2019-02-19T21:27:25Z" + }, + "committer": { + "name": "Jeff Thompson", + "email": "jeffret.g@gmail.com", + "date": "2019-02-19T21:27:25Z" + }, + "message": "Update to latest versions.", + "tree": { + "sha": "e1299f37e2ce97636d923a5631265279a5377b6d", + "url": "https://api.github.com/repos/stapler/stapler/git/trees/e1299f37e2ce97636d923a5631265279a5377b6d" + }, + "url": "https://api.github.com/repos/stapler/stapler/git/commits/72343298733508cced8dcb8eb43594bcc6130b26", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/stapler/stapler/commits/72343298733508cced8dcb8eb43594bcc6130b26", + "html_url": "https://github.com/stapler/stapler/commit/72343298733508cced8dcb8eb43594bcc6130b26", + "comments_url": "https://api.github.com/repos/stapler/stapler/commits/72343298733508cced8dcb8eb43594bcc6130b26/comments", + "author": { + "login": "jeffret-b", + "id": 37345299, + "node_id": "MDQ6VXNlcjM3MzQ1Mjk5", + "avatar_url": "https://avatars0.githubusercontent.com/u/37345299?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jeffret-b", + "html_url": "https://github.com/jeffret-b", + "followers_url": "https://api.github.com/users/jeffret-b/followers", + "following_url": "https://api.github.com/users/jeffret-b/following{/other_user}", + "gists_url": "https://api.github.com/users/jeffret-b/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jeffret-b/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jeffret-b/subscriptions", + "organizations_url": "https://api.github.com/users/jeffret-b/orgs", + "repos_url": "https://api.github.com/users/jeffret-b/repos", + "events_url": "https://api.github.com/users/jeffret-b/events{/privacy}", + "received_events_url": "https://api.github.com/users/jeffret-b/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "jeffret-b", + "id": 37345299, + "node_id": "MDQ6VXNlcjM3MzQ1Mjk5", + "avatar_url": "https://avatars0.githubusercontent.com/u/37345299?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jeffret-b", + "html_url": "https://github.com/jeffret-b", + "followers_url": "https://api.github.com/users/jeffret-b/followers", + "following_url": "https://api.github.com/users/jeffret-b/following{/other_user}", + "gists_url": "https://api.github.com/users/jeffret-b/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jeffret-b/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jeffret-b/subscriptions", + "organizations_url": "https://api.github.com/users/jeffret-b/orgs", + "repos_url": "https://api.github.com/users/jeffret-b/repos", + "events_url": "https://api.github.com/users/jeffret-b/events{/privacy}", + "received_events_url": "https://api.github.com/users/jeffret-b/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "def3808ecd41583818aef3b35675756f00a45bbe", + "url": "https://api.github.com/repos/stapler/stapler/commits/def3808ecd41583818aef3b35675756f00a45bbe", + "html_url": "https://github.com/stapler/stapler/commit/def3808ecd41583818aef3b35675756f00a45bbe" + } + ], + "stats": { + "total": 4, + "additions": 2, + "deletions": 2 + }, + "files": [ + { + "sha": "94863e605b263eac4033a58ae826865663ac844a", + "filename": ".mvn/extensions.xml", + "status": "modified", + "additions": 1, + "deletions": 1, + "changes": 2, + "blob_url": "https://github.com/stapler/stapler/blob/72343298733508cced8dcb8eb43594bcc6130b26/.mvn/extensions.xml", + "raw_url": "https://github.com/stapler/stapler/raw/72343298733508cced8dcb8eb43594bcc6130b26/.mvn/extensions.xml", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/.mvn/extensions.xml?ref=72343298733508cced8dcb8eb43594bcc6130b26", + "patch": "@@ -2,6 +2,6 @@\n \n io.jenkins.tools.incrementals\n git-changelist-maven-extension\n- 1.0-beta-2\n+ 1.0-beta-7\n \n " + }, + { + "sha": "4976b0e34415ab2138ee63db72b1f374517bb2fd", + "filename": "pom.xml", + "status": "modified", + "additions": 1, + "deletions": 1, + "changes": 2, + "blob_url": "https://github.com/stapler/stapler/blob/72343298733508cced8dcb8eb43594bcc6130b26/pom.xml", + "raw_url": "https://github.com/stapler/stapler/raw/72343298733508cced8dcb8eb43594bcc6130b26/pom.xml", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/pom.xml?ref=72343298733508cced8dcb8eb43594bcc6130b26", + "patch": "@@ -357,7 +357,7 @@\n \n io.jenkins.tools.incrementals\n incrementals-enforcer-rules\n- 1.0-beta-4\n+ 1.0-beta-5\n \n \n " + } + ] +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_950acbd60ed4289520dcd2a395e5d77f181e1cff-1aa53060-8df1-4455-ae37-21eed443f58b.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_950acbd60ed4289520dcd2a395e5d77f181e1cff-1aa53060-8df1-4455-ae37-21eed443f58b.json new file mode 100644 index 0000000000..94257479a6 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_950acbd60ed4289520dcd2a395e5d77f181e1cff-1aa53060-8df1-4455-ae37-21eed443f58b.json @@ -0,0 +1,170 @@ +{ + "sha": "950acbd60ed4289520dcd2a395e5d77f181e1cff", + "node_id": "MDY6Q29tbWl0MTU0ODUxNDo5NTBhY2JkNjBlZDQyODk1MjBkY2QyYTM5NWU1ZDc3ZjE4MWUxY2Zm", + "commit": { + "author": { + "name": "Jesse Glick", + "email": "jglick@cloudbees.com", + "date": "2019-08-19T18:38:53Z" + }, + "committer": { + "name": "Jesse Glick", + "email": "jglick@cloudbees.com", + "date": "2019-08-19T18:38:53Z" + }, + "message": "[maven-release-plugin] prepare for next development iteration", + "tree": { + "sha": "cdd0f7a1782143bfbc97e0d7f6cd4f6cac504df8", + "url": "https://api.github.com/repos/stapler/stapler/git/trees/cdd0f7a1782143bfbc97e0d7f6cd4f6cac504df8" + }, + "url": "https://api.github.com/repos/stapler/stapler/git/commits/950acbd60ed4289520dcd2a395e5d77f181e1cff", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQEzBAABCgAdFiEEYYylhqBIUt57zhxYHdpp2UtiQxEFAl1a7L0ACgkQHdpp2Uti\nQxHaAwgApG8F+WMMEdEkw5pqcbz3m5fIRD47tKvgyXHRzE9nCIQ26GLyw4gRNBX+\nDT2lOE6EEPSpC5yqlAJSOZUKlmh7QLbolJwfm5NTi6+siV0zFQB7Y1A/BW6PawCh\nPoCgkWIpR6ElC2y48KSmWRC5BJ4NkXtwh/v3yqa094wY1zlv5EazT/e2CcWhL7Ky\n0/a4IFMFuVRMt1qzY43umTAWP6k36PorBWHOTsMrQ2Nrq3LHjbldH3KzRPqkWy9X\ntTp5hMQ1zr4wQYeb9duQFE5m8UcJaZP1Rl0uET2DdeceibLBeFWEFruuzWeY6y+d\ngmzN3JL1Qjeex/qI3s1G4vh0ybfxMg==\n=lHha\n-----END PGP SIGNATURE-----", + "payload": "tree cdd0f7a1782143bfbc97e0d7f6cd4f6cac504df8\nparent 6a243869aa3c3f80579102d00848a0083953d654\nauthor Jesse Glick 1566239933 -0400\ncommitter Jesse Glick 1566239933 -0400\n\n[maven-release-plugin] prepare for next development iteration\n" + } + }, + "url": "https://api.github.com/repos/stapler/stapler/commits/950acbd60ed4289520dcd2a395e5d77f181e1cff", + "html_url": "https://github.com/stapler/stapler/commit/950acbd60ed4289520dcd2a395e5d77f181e1cff", + "comments_url": "https://api.github.com/repos/stapler/stapler/commits/950acbd60ed4289520dcd2a395e5d77f181e1cff/comments", + "author": { + "login": "jglick", + "id": 154109, + "node_id": "MDQ6VXNlcjE1NDEwOQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/154109?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jglick", + "html_url": "https://github.com/jglick", + "followers_url": "https://api.github.com/users/jglick/followers", + "following_url": "https://api.github.com/users/jglick/following{/other_user}", + "gists_url": "https://api.github.com/users/jglick/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jglick/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jglick/subscriptions", + "organizations_url": "https://api.github.com/users/jglick/orgs", + "repos_url": "https://api.github.com/users/jglick/repos", + "events_url": "https://api.github.com/users/jglick/events{/privacy}", + "received_events_url": "https://api.github.com/users/jglick/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "jglick", + "id": 154109, + "node_id": "MDQ6VXNlcjE1NDEwOQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/154109?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jglick", + "html_url": "https://github.com/jglick", + "followers_url": "https://api.github.com/users/jglick/followers", + "following_url": "https://api.github.com/users/jglick/following{/other_user}", + "gists_url": "https://api.github.com/users/jglick/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jglick/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jglick/subscriptions", + "organizations_url": "https://api.github.com/users/jglick/orgs", + "repos_url": "https://api.github.com/users/jglick/repos", + "events_url": "https://api.github.com/users/jglick/events{/privacy}", + "received_events_url": "https://api.github.com/users/jglick/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "6a243869aa3c3f80579102d00848a0083953d654", + "url": "https://api.github.com/repos/stapler/stapler/commits/6a243869aa3c3f80579102d00848a0083953d654", + "html_url": "https://github.com/stapler/stapler/commit/6a243869aa3c3f80579102d00848a0083953d654" + } + ], + "stats": { + "total": 18, + "additions": 9, + "deletions": 9 + }, + "files": [ + { + "sha": "d5db8c67ff1f81d36f1e827f9167efef73a90e11", + "filename": "core/pom.xml", + "status": "modified", + "additions": 1, + "deletions": 1, + "changes": 2, + "blob_url": "https://github.com/stapler/stapler/blob/950acbd60ed4289520dcd2a395e5d77f181e1cff/core/pom.xml", + "raw_url": "https://github.com/stapler/stapler/raw/950acbd60ed4289520dcd2a395e5d77f181e1cff/core/pom.xml", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/core/pom.xml?ref=950acbd60ed4289520dcd2a395e5d77f181e1cff", + "patch": "@@ -3,7 +3,7 @@\n \n org.kohsuke.stapler\n stapler-parent\n- 1.258\n+ ${revision}${changelist}\n \n \n stapler" + }, + { + "sha": "df30de83b3590c884f757b29cbe192ed7448ad9a", + "filename": "groovy/pom.xml", + "status": "modified", + "additions": 1, + "deletions": 1, + "changes": 2, + "blob_url": "https://github.com/stapler/stapler/blob/950acbd60ed4289520dcd2a395e5d77f181e1cff/groovy/pom.xml", + "raw_url": "https://github.com/stapler/stapler/raw/950acbd60ed4289520dcd2a395e5d77f181e1cff/groovy/pom.xml", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/groovy/pom.xml?ref=950acbd60ed4289520dcd2a395e5d77f181e1cff", + "patch": "@@ -3,7 +3,7 @@\n \n org.kohsuke.stapler\n stapler-parent\n- 1.258\n+ ${revision}${changelist}\n \n \n stapler-groovy" + }, + { + "sha": "04a2e597ea9a15b153da5c17e92a0e8df44ec31a", + "filename": "jelly/pom.xml", + "status": "modified", + "additions": 1, + "deletions": 1, + "changes": 2, + "blob_url": "https://github.com/stapler/stapler/blob/950acbd60ed4289520dcd2a395e5d77f181e1cff/jelly/pom.xml", + "raw_url": "https://github.com/stapler/stapler/raw/950acbd60ed4289520dcd2a395e5d77f181e1cff/jelly/pom.xml", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/jelly/pom.xml?ref=950acbd60ed4289520dcd2a395e5d77f181e1cff", + "patch": "@@ -3,7 +3,7 @@\n \n org.kohsuke.stapler\n stapler-parent\n- 1.258\n+ ${revision}${changelist}\n \n \n stapler-jelly" + }, + { + "sha": "5fa54083143c6b88b5a51ac31b470ab312a879c1", + "filename": "jrebel/pom.xml", + "status": "modified", + "additions": 1, + "deletions": 1, + "changes": 2, + "blob_url": "https://github.com/stapler/stapler/blob/950acbd60ed4289520dcd2a395e5d77f181e1cff/jrebel/pom.xml", + "raw_url": "https://github.com/stapler/stapler/raw/950acbd60ed4289520dcd2a395e5d77f181e1cff/jrebel/pom.xml", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/jrebel/pom.xml?ref=950acbd60ed4289520dcd2a395e5d77f181e1cff", + "patch": "@@ -3,7 +3,7 @@\n \n org.kohsuke.stapler\n stapler-parent\n- 1.258\n+ ${revision}${changelist}\n \n \n stapler-jrebel" + }, + { + "sha": "8309e3bea60cdedb5920a821247fe726b2ef9cea", + "filename": "jruby/pom.xml", + "status": "modified", + "additions": 1, + "deletions": 1, + "changes": 2, + "blob_url": "https://github.com/stapler/stapler/blob/950acbd60ed4289520dcd2a395e5d77f181e1cff/jruby/pom.xml", + "raw_url": "https://github.com/stapler/stapler/raw/950acbd60ed4289520dcd2a395e5d77f181e1cff/jruby/pom.xml", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/jruby/pom.xml?ref=950acbd60ed4289520dcd2a395e5d77f181e1cff", + "patch": "@@ -3,7 +3,7 @@\n \n org.kohsuke.stapler\n stapler-parent\n- 1.258\n+ ${revision}${changelist}\n \n \n stapler-jruby" + }, + { + "sha": "5ce1d053c5c853854188bc7bc99c17e675856d29", + "filename": "jsp/pom.xml", + "status": "modified", + "additions": 1, + "deletions": 1, + "changes": 2, + "blob_url": "https://github.com/stapler/stapler/blob/950acbd60ed4289520dcd2a395e5d77f181e1cff/jsp/pom.xml", + "raw_url": "https://github.com/stapler/stapler/raw/950acbd60ed4289520dcd2a395e5d77f181e1cff/jsp/pom.xml", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/jsp/pom.xml?ref=950acbd60ed4289520dcd2a395e5d77f181e1cff", + "patch": "@@ -3,7 +3,7 @@\n \n org.kohsuke.stapler\n stapler-parent\n- 1.258\n+ ${revision}${changelist}\n \n \n stapler-jsp" + }, + { + "sha": "a5d53737cfb81a8cd139b084a7f196452c120ffa", + "filename": "pom.xml", + "status": "modified", + "additions": 3, + "deletions": 3, + "changes": 6, + "blob_url": "https://github.com/stapler/stapler/blob/950acbd60ed4289520dcd2a395e5d77f181e1cff/pom.xml", + "raw_url": "https://github.com/stapler/stapler/raw/950acbd60ed4289520dcd2a395e5d77f181e1cff/pom.xml", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/pom.xml?ref=950acbd60ed4289520dcd2a395e5d77f181e1cff", + "patch": "@@ -10,7 +10,7 @@\n org.kohsuke.stapler\n stapler-parent\n pom\n- 1.258\n+ ${revision}${changelist}\n \n Stapler\n Stapler HTTP request handling engine\n@@ -38,7 +38,7 @@\n scm:git:git://github.com/stapler/stapler.git\n scm:git:ssh://git@github.com/stapler/stapler.git\n https://github.com/stapler/stapler\n- stapler-parent-1.258\n+ ${scmTag}\n \n \n \n@@ -81,7 +81,7 @@\n \n UTF-8\n 8\n- 1.258\n+ 1.259\n -SNAPSHOT\n https://repo.jenkins-ci.org/incrementals/\n HEAD" + } + ] +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_950acbd60ed4289520dcd2a395e5d77f181e1cff-45c73127-9113-4bb6-8193-cedf907fa96a.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_950acbd60ed4289520dcd2a395e5d77f181e1cff-45c73127-9113-4bb6-8193-cedf907fa96a.json new file mode 100644 index 0000000000..94257479a6 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_950acbd60ed4289520dcd2a395e5d77f181e1cff-45c73127-9113-4bb6-8193-cedf907fa96a.json @@ -0,0 +1,170 @@ +{ + "sha": "950acbd60ed4289520dcd2a395e5d77f181e1cff", + "node_id": "MDY6Q29tbWl0MTU0ODUxNDo5NTBhY2JkNjBlZDQyODk1MjBkY2QyYTM5NWU1ZDc3ZjE4MWUxY2Zm", + "commit": { + "author": { + "name": "Jesse Glick", + "email": "jglick@cloudbees.com", + "date": "2019-08-19T18:38:53Z" + }, + "committer": { + "name": "Jesse Glick", + "email": "jglick@cloudbees.com", + "date": "2019-08-19T18:38:53Z" + }, + "message": "[maven-release-plugin] prepare for next development iteration", + "tree": { + "sha": "cdd0f7a1782143bfbc97e0d7f6cd4f6cac504df8", + "url": "https://api.github.com/repos/stapler/stapler/git/trees/cdd0f7a1782143bfbc97e0d7f6cd4f6cac504df8" + }, + "url": "https://api.github.com/repos/stapler/stapler/git/commits/950acbd60ed4289520dcd2a395e5d77f181e1cff", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQEzBAABCgAdFiEEYYylhqBIUt57zhxYHdpp2UtiQxEFAl1a7L0ACgkQHdpp2Uti\nQxHaAwgApG8F+WMMEdEkw5pqcbz3m5fIRD47tKvgyXHRzE9nCIQ26GLyw4gRNBX+\nDT2lOE6EEPSpC5yqlAJSOZUKlmh7QLbolJwfm5NTi6+siV0zFQB7Y1A/BW6PawCh\nPoCgkWIpR6ElC2y48KSmWRC5BJ4NkXtwh/v3yqa094wY1zlv5EazT/e2CcWhL7Ky\n0/a4IFMFuVRMt1qzY43umTAWP6k36PorBWHOTsMrQ2Nrq3LHjbldH3KzRPqkWy9X\ntTp5hMQ1zr4wQYeb9duQFE5m8UcJaZP1Rl0uET2DdeceibLBeFWEFruuzWeY6y+d\ngmzN3JL1Qjeex/qI3s1G4vh0ybfxMg==\n=lHha\n-----END PGP SIGNATURE-----", + "payload": "tree cdd0f7a1782143bfbc97e0d7f6cd4f6cac504df8\nparent 6a243869aa3c3f80579102d00848a0083953d654\nauthor Jesse Glick 1566239933 -0400\ncommitter Jesse Glick 1566239933 -0400\n\n[maven-release-plugin] prepare for next development iteration\n" + } + }, + "url": "https://api.github.com/repos/stapler/stapler/commits/950acbd60ed4289520dcd2a395e5d77f181e1cff", + "html_url": "https://github.com/stapler/stapler/commit/950acbd60ed4289520dcd2a395e5d77f181e1cff", + "comments_url": "https://api.github.com/repos/stapler/stapler/commits/950acbd60ed4289520dcd2a395e5d77f181e1cff/comments", + "author": { + "login": "jglick", + "id": 154109, + "node_id": "MDQ6VXNlcjE1NDEwOQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/154109?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jglick", + "html_url": "https://github.com/jglick", + "followers_url": "https://api.github.com/users/jglick/followers", + "following_url": "https://api.github.com/users/jglick/following{/other_user}", + "gists_url": "https://api.github.com/users/jglick/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jglick/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jglick/subscriptions", + "organizations_url": "https://api.github.com/users/jglick/orgs", + "repos_url": "https://api.github.com/users/jglick/repos", + "events_url": "https://api.github.com/users/jglick/events{/privacy}", + "received_events_url": "https://api.github.com/users/jglick/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "jglick", + "id": 154109, + "node_id": "MDQ6VXNlcjE1NDEwOQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/154109?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jglick", + "html_url": "https://github.com/jglick", + "followers_url": "https://api.github.com/users/jglick/followers", + "following_url": "https://api.github.com/users/jglick/following{/other_user}", + "gists_url": "https://api.github.com/users/jglick/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jglick/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jglick/subscriptions", + "organizations_url": "https://api.github.com/users/jglick/orgs", + "repos_url": "https://api.github.com/users/jglick/repos", + "events_url": "https://api.github.com/users/jglick/events{/privacy}", + "received_events_url": "https://api.github.com/users/jglick/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "6a243869aa3c3f80579102d00848a0083953d654", + "url": "https://api.github.com/repos/stapler/stapler/commits/6a243869aa3c3f80579102d00848a0083953d654", + "html_url": "https://github.com/stapler/stapler/commit/6a243869aa3c3f80579102d00848a0083953d654" + } + ], + "stats": { + "total": 18, + "additions": 9, + "deletions": 9 + }, + "files": [ + { + "sha": "d5db8c67ff1f81d36f1e827f9167efef73a90e11", + "filename": "core/pom.xml", + "status": "modified", + "additions": 1, + "deletions": 1, + "changes": 2, + "blob_url": "https://github.com/stapler/stapler/blob/950acbd60ed4289520dcd2a395e5d77f181e1cff/core/pom.xml", + "raw_url": "https://github.com/stapler/stapler/raw/950acbd60ed4289520dcd2a395e5d77f181e1cff/core/pom.xml", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/core/pom.xml?ref=950acbd60ed4289520dcd2a395e5d77f181e1cff", + "patch": "@@ -3,7 +3,7 @@\n \n org.kohsuke.stapler\n stapler-parent\n- 1.258\n+ ${revision}${changelist}\n \n \n stapler" + }, + { + "sha": "df30de83b3590c884f757b29cbe192ed7448ad9a", + "filename": "groovy/pom.xml", + "status": "modified", + "additions": 1, + "deletions": 1, + "changes": 2, + "blob_url": "https://github.com/stapler/stapler/blob/950acbd60ed4289520dcd2a395e5d77f181e1cff/groovy/pom.xml", + "raw_url": "https://github.com/stapler/stapler/raw/950acbd60ed4289520dcd2a395e5d77f181e1cff/groovy/pom.xml", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/groovy/pom.xml?ref=950acbd60ed4289520dcd2a395e5d77f181e1cff", + "patch": "@@ -3,7 +3,7 @@\n \n org.kohsuke.stapler\n stapler-parent\n- 1.258\n+ ${revision}${changelist}\n \n \n stapler-groovy" + }, + { + "sha": "04a2e597ea9a15b153da5c17e92a0e8df44ec31a", + "filename": "jelly/pom.xml", + "status": "modified", + "additions": 1, + "deletions": 1, + "changes": 2, + "blob_url": "https://github.com/stapler/stapler/blob/950acbd60ed4289520dcd2a395e5d77f181e1cff/jelly/pom.xml", + "raw_url": "https://github.com/stapler/stapler/raw/950acbd60ed4289520dcd2a395e5d77f181e1cff/jelly/pom.xml", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/jelly/pom.xml?ref=950acbd60ed4289520dcd2a395e5d77f181e1cff", + "patch": "@@ -3,7 +3,7 @@\n \n org.kohsuke.stapler\n stapler-parent\n- 1.258\n+ ${revision}${changelist}\n \n \n stapler-jelly" + }, + { + "sha": "5fa54083143c6b88b5a51ac31b470ab312a879c1", + "filename": "jrebel/pom.xml", + "status": "modified", + "additions": 1, + "deletions": 1, + "changes": 2, + "blob_url": "https://github.com/stapler/stapler/blob/950acbd60ed4289520dcd2a395e5d77f181e1cff/jrebel/pom.xml", + "raw_url": "https://github.com/stapler/stapler/raw/950acbd60ed4289520dcd2a395e5d77f181e1cff/jrebel/pom.xml", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/jrebel/pom.xml?ref=950acbd60ed4289520dcd2a395e5d77f181e1cff", + "patch": "@@ -3,7 +3,7 @@\n \n org.kohsuke.stapler\n stapler-parent\n- 1.258\n+ ${revision}${changelist}\n \n \n stapler-jrebel" + }, + { + "sha": "8309e3bea60cdedb5920a821247fe726b2ef9cea", + "filename": "jruby/pom.xml", + "status": "modified", + "additions": 1, + "deletions": 1, + "changes": 2, + "blob_url": "https://github.com/stapler/stapler/blob/950acbd60ed4289520dcd2a395e5d77f181e1cff/jruby/pom.xml", + "raw_url": "https://github.com/stapler/stapler/raw/950acbd60ed4289520dcd2a395e5d77f181e1cff/jruby/pom.xml", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/jruby/pom.xml?ref=950acbd60ed4289520dcd2a395e5d77f181e1cff", + "patch": "@@ -3,7 +3,7 @@\n \n org.kohsuke.stapler\n stapler-parent\n- 1.258\n+ ${revision}${changelist}\n \n \n stapler-jruby" + }, + { + "sha": "5ce1d053c5c853854188bc7bc99c17e675856d29", + "filename": "jsp/pom.xml", + "status": "modified", + "additions": 1, + "deletions": 1, + "changes": 2, + "blob_url": "https://github.com/stapler/stapler/blob/950acbd60ed4289520dcd2a395e5d77f181e1cff/jsp/pom.xml", + "raw_url": "https://github.com/stapler/stapler/raw/950acbd60ed4289520dcd2a395e5d77f181e1cff/jsp/pom.xml", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/jsp/pom.xml?ref=950acbd60ed4289520dcd2a395e5d77f181e1cff", + "patch": "@@ -3,7 +3,7 @@\n \n org.kohsuke.stapler\n stapler-parent\n- 1.258\n+ ${revision}${changelist}\n \n \n stapler-jsp" + }, + { + "sha": "a5d53737cfb81a8cd139b084a7f196452c120ffa", + "filename": "pom.xml", + "status": "modified", + "additions": 3, + "deletions": 3, + "changes": 6, + "blob_url": "https://github.com/stapler/stapler/blob/950acbd60ed4289520dcd2a395e5d77f181e1cff/pom.xml", + "raw_url": "https://github.com/stapler/stapler/raw/950acbd60ed4289520dcd2a395e5d77f181e1cff/pom.xml", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/pom.xml?ref=950acbd60ed4289520dcd2a395e5d77f181e1cff", + "patch": "@@ -10,7 +10,7 @@\n org.kohsuke.stapler\n stapler-parent\n pom\n- 1.258\n+ ${revision}${changelist}\n \n Stapler\n Stapler HTTP request handling engine\n@@ -38,7 +38,7 @@\n scm:git:git://github.com/stapler/stapler.git\n scm:git:ssh://git@github.com/stapler/stapler.git\n https://github.com/stapler/stapler\n- stapler-parent-1.258\n+ ${scmTag}\n \n \n \n@@ -81,7 +81,7 @@\n \n UTF-8\n 8\n- 1.258\n+ 1.259\n -SNAPSHOT\n https://repo.jenkins-ci.org/incrementals/\n HEAD" + } + ] +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_d922b808068cf95d6f6ab624ce2c7f49d51f5321-35c73b49-8705-4fee-abd6-36c9f4bc2825.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_d922b808068cf95d6f6ab624ce2c7f49d51f5321-35c73b49-8705-4fee-abd6-36c9f4bc2825.json new file mode 100644 index 0000000000..31a2f5ac36 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_d922b808068cf95d6f6ab624ce2c7f49d51f5321-35c73b49-8705-4fee-abd6-36c9f4bc2825.json @@ -0,0 +1,170 @@ +{ + "sha": "d922b808068cf95d6f6ab624ce2c7f49d51f5321", + "node_id": "MDY6Q29tbWl0MTU0ODUxNDpkOTIyYjgwODA2OGNmOTVkNmY2YWI2MjRjZTJjN2Y0OWQ1MWY1MzIx", + "commit": { + "author": { + "name": "Jesse Glick", + "email": "jglick@cloudbees.com", + "date": "2019-04-08T14:19:11Z" + }, + "committer": { + "name": "Jesse Glick", + "email": "jglick@cloudbees.com", + "date": "2019-04-08T14:19:11Z" + }, + "message": "[maven-release-plugin] prepare release stapler-parent-1.257", + "tree": { + "sha": "86a648b84700a80e22f089252cea0d70e61857bf", + "url": "https://api.github.com/repos/stapler/stapler/git/trees/86a648b84700a80e22f089252cea0d70e61857bf" + }, + "url": "https://api.github.com/repos/stapler/stapler/git/commits/d922b808068cf95d6f6ab624ce2c7f49d51f5321", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQEzBAABCgAdFiEEYYylhqBIUt57zhxYHdpp2UtiQxEFAlyrWF8ACgkQHdpp2Uti\nQxFUSQf/TTTCnvT3vAgDwXjs8YOqX9HNxwGl7ugrAN6TU2tRhBjLQovwFZgdJWMK\nVbQ9LNHPM4pDmedCnSMV7dd7b686Auy4qY3oSrr4ATtOZFj+qIxo3WzLXFfTm0+f\n2crxX4TrVj+to5kFb+tXZo5tB/36WThebpVJvT8KMgGEuUheYOanJeqqygsH0eCe\nbC3lMunAqKIe1NFxrEVET4Ut6Gt+SvOhzqf0bJASnPKiyugz68ZpOUOsHHAe3sxo\nlYUBrILfrMsUzxBTfcVVpSIUVv5gIQXVdzK+Jk27sCIfw9iV2Is7BlHW63inZHCM\nkjGyPLEI+rikA5xSrqrK37Omfha3Rw==\n=C5kb\n-----END PGP SIGNATURE-----", + "payload": "tree 86a648b84700a80e22f089252cea0d70e61857bf\nparent efe737fa365a0187e052bc81391efbd84847a1b0\nauthor Jesse Glick 1554733151 -0400\ncommitter Jesse Glick 1554733151 -0400\n\n[maven-release-plugin] prepare release stapler-parent-1.257\n" + } + }, + "url": "https://api.github.com/repos/stapler/stapler/commits/d922b808068cf95d6f6ab624ce2c7f49d51f5321", + "html_url": "https://github.com/stapler/stapler/commit/d922b808068cf95d6f6ab624ce2c7f49d51f5321", + "comments_url": "https://api.github.com/repos/stapler/stapler/commits/d922b808068cf95d6f6ab624ce2c7f49d51f5321/comments", + "author": { + "login": "jglick", + "id": 154109, + "node_id": "MDQ6VXNlcjE1NDEwOQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/154109?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jglick", + "html_url": "https://github.com/jglick", + "followers_url": "https://api.github.com/users/jglick/followers", + "following_url": "https://api.github.com/users/jglick/following{/other_user}", + "gists_url": "https://api.github.com/users/jglick/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jglick/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jglick/subscriptions", + "organizations_url": "https://api.github.com/users/jglick/orgs", + "repos_url": "https://api.github.com/users/jglick/repos", + "events_url": "https://api.github.com/users/jglick/events{/privacy}", + "received_events_url": "https://api.github.com/users/jglick/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "jglick", + "id": 154109, + "node_id": "MDQ6VXNlcjE1NDEwOQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/154109?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jglick", + "html_url": "https://github.com/jglick", + "followers_url": "https://api.github.com/users/jglick/followers", + "following_url": "https://api.github.com/users/jglick/following{/other_user}", + "gists_url": "https://api.github.com/users/jglick/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jglick/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jglick/subscriptions", + "organizations_url": "https://api.github.com/users/jglick/orgs", + "repos_url": "https://api.github.com/users/jglick/repos", + "events_url": "https://api.github.com/users/jglick/events{/privacy}", + "received_events_url": "https://api.github.com/users/jglick/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "efe737fa365a0187e052bc81391efbd84847a1b0", + "url": "https://api.github.com/repos/stapler/stapler/commits/efe737fa365a0187e052bc81391efbd84847a1b0", + "html_url": "https://github.com/stapler/stapler/commit/efe737fa365a0187e052bc81391efbd84847a1b0" + } + ], + "stats": { + "total": 16, + "additions": 8, + "deletions": 8 + }, + "files": [ + { + "sha": "286ca8dd7b8018f3140674710f7473523393782e", + "filename": "core/pom.xml", + "status": "modified", + "additions": 1, + "deletions": 1, + "changes": 2, + "blob_url": "https://github.com/stapler/stapler/blob/d922b808068cf95d6f6ab624ce2c7f49d51f5321/core/pom.xml", + "raw_url": "https://github.com/stapler/stapler/raw/d922b808068cf95d6f6ab624ce2c7f49d51f5321/core/pom.xml", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/core/pom.xml?ref=d922b808068cf95d6f6ab624ce2c7f49d51f5321", + "patch": "@@ -3,7 +3,7 @@\n \n org.kohsuke.stapler\n stapler-parent\n- ${revision}${changelist}\n+ 1.257\n \n \n stapler" + }, + { + "sha": "1a4475dd35726dbba416e63d994736cbe1c7ab99", + "filename": "groovy/pom.xml", + "status": "modified", + "additions": 1, + "deletions": 1, + "changes": 2, + "blob_url": "https://github.com/stapler/stapler/blob/d922b808068cf95d6f6ab624ce2c7f49d51f5321/groovy/pom.xml", + "raw_url": "https://github.com/stapler/stapler/raw/d922b808068cf95d6f6ab624ce2c7f49d51f5321/groovy/pom.xml", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/groovy/pom.xml?ref=d922b808068cf95d6f6ab624ce2c7f49d51f5321", + "patch": "@@ -3,7 +3,7 @@\n \n org.kohsuke.stapler\n stapler-parent\n- ${revision}${changelist}\n+ 1.257\n \n \n stapler-groovy" + }, + { + "sha": "8146cea2347fdadeca07bcc73e023ca92486b063", + "filename": "jelly/pom.xml", + "status": "modified", + "additions": 1, + "deletions": 1, + "changes": 2, + "blob_url": "https://github.com/stapler/stapler/blob/d922b808068cf95d6f6ab624ce2c7f49d51f5321/jelly/pom.xml", + "raw_url": "https://github.com/stapler/stapler/raw/d922b808068cf95d6f6ab624ce2c7f49d51f5321/jelly/pom.xml", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/jelly/pom.xml?ref=d922b808068cf95d6f6ab624ce2c7f49d51f5321", + "patch": "@@ -3,7 +3,7 @@\n \n org.kohsuke.stapler\n stapler-parent\n- ${revision}${changelist}\n+ 1.257\n \n \n stapler-jelly" + }, + { + "sha": "51b4ec42334a4fba9da46acea3f4fb17685d8019", + "filename": "jrebel/pom.xml", + "status": "modified", + "additions": 1, + "deletions": 1, + "changes": 2, + "blob_url": "https://github.com/stapler/stapler/blob/d922b808068cf95d6f6ab624ce2c7f49d51f5321/jrebel/pom.xml", + "raw_url": "https://github.com/stapler/stapler/raw/d922b808068cf95d6f6ab624ce2c7f49d51f5321/jrebel/pom.xml", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/jrebel/pom.xml?ref=d922b808068cf95d6f6ab624ce2c7f49d51f5321", + "patch": "@@ -3,7 +3,7 @@\n \n org.kohsuke.stapler\n stapler-parent\n- ${revision}${changelist}\n+ 1.257\n \n \n stapler-jrebel" + }, + { + "sha": "a9320b466ffd0c35dbf5dcfb04ce21d120676ef2", + "filename": "jruby/pom.xml", + "status": "modified", + "additions": 1, + "deletions": 1, + "changes": 2, + "blob_url": "https://github.com/stapler/stapler/blob/d922b808068cf95d6f6ab624ce2c7f49d51f5321/jruby/pom.xml", + "raw_url": "https://github.com/stapler/stapler/raw/d922b808068cf95d6f6ab624ce2c7f49d51f5321/jruby/pom.xml", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/jruby/pom.xml?ref=d922b808068cf95d6f6ab624ce2c7f49d51f5321", + "patch": "@@ -3,7 +3,7 @@\n \n org.kohsuke.stapler\n stapler-parent\n- ${revision}${changelist}\n+ 1.257\n \n \n stapler-jruby" + }, + { + "sha": "5782199c8726ec8938a63630cef1deb7336b3e41", + "filename": "jsp/pom.xml", + "status": "modified", + "additions": 1, + "deletions": 1, + "changes": 2, + "blob_url": "https://github.com/stapler/stapler/blob/d922b808068cf95d6f6ab624ce2c7f49d51f5321/jsp/pom.xml", + "raw_url": "https://github.com/stapler/stapler/raw/d922b808068cf95d6f6ab624ce2c7f49d51f5321/jsp/pom.xml", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/jsp/pom.xml?ref=d922b808068cf95d6f6ab624ce2c7f49d51f5321", + "patch": "@@ -3,7 +3,7 @@\n \n org.kohsuke.stapler\n stapler-parent\n- ${revision}${changelist}\n+ 1.257\n \n \n stapler-jsp" + }, + { + "sha": "bb9539f22936ea88efd4e73c080370957210f56b", + "filename": "pom.xml", + "status": "modified", + "additions": 2, + "deletions": 2, + "changes": 4, + "blob_url": "https://github.com/stapler/stapler/blob/d922b808068cf95d6f6ab624ce2c7f49d51f5321/pom.xml", + "raw_url": "https://github.com/stapler/stapler/raw/d922b808068cf95d6f6ab624ce2c7f49d51f5321/pom.xml", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/pom.xml?ref=d922b808068cf95d6f6ab624ce2c7f49d51f5321", + "patch": "@@ -10,7 +10,7 @@\n org.kohsuke.stapler\n stapler-parent\n pom\n- ${revision}${changelist}\n+ 1.257\n \n Stapler\n Stapler HTTP request handling engine\n@@ -38,7 +38,7 @@\n scm:git:git://github.com/stapler/stapler.git\n scm:git:ssh://git@github.com/stapler/stapler.git\n https://github.com/stapler/stapler\n- ${scmTag}\n+ stapler-parent-1.257\n \n \n " + } + ] +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_d922b808068cf95d6f6ab624ce2c7f49d51f5321-fb5ea1a9-6086-40a2-a542-7a87ee6bb437.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_d922b808068cf95d6f6ab624ce2c7f49d51f5321-fb5ea1a9-6086-40a2-a542-7a87ee6bb437.json new file mode 100644 index 0000000000..31a2f5ac36 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_d922b808068cf95d6f6ab624ce2c7f49d51f5321-fb5ea1a9-6086-40a2-a542-7a87ee6bb437.json @@ -0,0 +1,170 @@ +{ + "sha": "d922b808068cf95d6f6ab624ce2c7f49d51f5321", + "node_id": "MDY6Q29tbWl0MTU0ODUxNDpkOTIyYjgwODA2OGNmOTVkNmY2YWI2MjRjZTJjN2Y0OWQ1MWY1MzIx", + "commit": { + "author": { + "name": "Jesse Glick", + "email": "jglick@cloudbees.com", + "date": "2019-04-08T14:19:11Z" + }, + "committer": { + "name": "Jesse Glick", + "email": "jglick@cloudbees.com", + "date": "2019-04-08T14:19:11Z" + }, + "message": "[maven-release-plugin] prepare release stapler-parent-1.257", + "tree": { + "sha": "86a648b84700a80e22f089252cea0d70e61857bf", + "url": "https://api.github.com/repos/stapler/stapler/git/trees/86a648b84700a80e22f089252cea0d70e61857bf" + }, + "url": "https://api.github.com/repos/stapler/stapler/git/commits/d922b808068cf95d6f6ab624ce2c7f49d51f5321", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQEzBAABCgAdFiEEYYylhqBIUt57zhxYHdpp2UtiQxEFAlyrWF8ACgkQHdpp2Uti\nQxFUSQf/TTTCnvT3vAgDwXjs8YOqX9HNxwGl7ugrAN6TU2tRhBjLQovwFZgdJWMK\nVbQ9LNHPM4pDmedCnSMV7dd7b686Auy4qY3oSrr4ATtOZFj+qIxo3WzLXFfTm0+f\n2crxX4TrVj+to5kFb+tXZo5tB/36WThebpVJvT8KMgGEuUheYOanJeqqygsH0eCe\nbC3lMunAqKIe1NFxrEVET4Ut6Gt+SvOhzqf0bJASnPKiyugz68ZpOUOsHHAe3sxo\nlYUBrILfrMsUzxBTfcVVpSIUVv5gIQXVdzK+Jk27sCIfw9iV2Is7BlHW63inZHCM\nkjGyPLEI+rikA5xSrqrK37Omfha3Rw==\n=C5kb\n-----END PGP SIGNATURE-----", + "payload": "tree 86a648b84700a80e22f089252cea0d70e61857bf\nparent efe737fa365a0187e052bc81391efbd84847a1b0\nauthor Jesse Glick 1554733151 -0400\ncommitter Jesse Glick 1554733151 -0400\n\n[maven-release-plugin] prepare release stapler-parent-1.257\n" + } + }, + "url": "https://api.github.com/repos/stapler/stapler/commits/d922b808068cf95d6f6ab624ce2c7f49d51f5321", + "html_url": "https://github.com/stapler/stapler/commit/d922b808068cf95d6f6ab624ce2c7f49d51f5321", + "comments_url": "https://api.github.com/repos/stapler/stapler/commits/d922b808068cf95d6f6ab624ce2c7f49d51f5321/comments", + "author": { + "login": "jglick", + "id": 154109, + "node_id": "MDQ6VXNlcjE1NDEwOQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/154109?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jglick", + "html_url": "https://github.com/jglick", + "followers_url": "https://api.github.com/users/jglick/followers", + "following_url": "https://api.github.com/users/jglick/following{/other_user}", + "gists_url": "https://api.github.com/users/jglick/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jglick/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jglick/subscriptions", + "organizations_url": "https://api.github.com/users/jglick/orgs", + "repos_url": "https://api.github.com/users/jglick/repos", + "events_url": "https://api.github.com/users/jglick/events{/privacy}", + "received_events_url": "https://api.github.com/users/jglick/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "jglick", + "id": 154109, + "node_id": "MDQ6VXNlcjE1NDEwOQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/154109?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jglick", + "html_url": "https://github.com/jglick", + "followers_url": "https://api.github.com/users/jglick/followers", + "following_url": "https://api.github.com/users/jglick/following{/other_user}", + "gists_url": "https://api.github.com/users/jglick/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jglick/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jglick/subscriptions", + "organizations_url": "https://api.github.com/users/jglick/orgs", + "repos_url": "https://api.github.com/users/jglick/repos", + "events_url": "https://api.github.com/users/jglick/events{/privacy}", + "received_events_url": "https://api.github.com/users/jglick/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "efe737fa365a0187e052bc81391efbd84847a1b0", + "url": "https://api.github.com/repos/stapler/stapler/commits/efe737fa365a0187e052bc81391efbd84847a1b0", + "html_url": "https://github.com/stapler/stapler/commit/efe737fa365a0187e052bc81391efbd84847a1b0" + } + ], + "stats": { + "total": 16, + "additions": 8, + "deletions": 8 + }, + "files": [ + { + "sha": "286ca8dd7b8018f3140674710f7473523393782e", + "filename": "core/pom.xml", + "status": "modified", + "additions": 1, + "deletions": 1, + "changes": 2, + "blob_url": "https://github.com/stapler/stapler/blob/d922b808068cf95d6f6ab624ce2c7f49d51f5321/core/pom.xml", + "raw_url": "https://github.com/stapler/stapler/raw/d922b808068cf95d6f6ab624ce2c7f49d51f5321/core/pom.xml", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/core/pom.xml?ref=d922b808068cf95d6f6ab624ce2c7f49d51f5321", + "patch": "@@ -3,7 +3,7 @@\n \n org.kohsuke.stapler\n stapler-parent\n- ${revision}${changelist}\n+ 1.257\n \n \n stapler" + }, + { + "sha": "1a4475dd35726dbba416e63d994736cbe1c7ab99", + "filename": "groovy/pom.xml", + "status": "modified", + "additions": 1, + "deletions": 1, + "changes": 2, + "blob_url": "https://github.com/stapler/stapler/blob/d922b808068cf95d6f6ab624ce2c7f49d51f5321/groovy/pom.xml", + "raw_url": "https://github.com/stapler/stapler/raw/d922b808068cf95d6f6ab624ce2c7f49d51f5321/groovy/pom.xml", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/groovy/pom.xml?ref=d922b808068cf95d6f6ab624ce2c7f49d51f5321", + "patch": "@@ -3,7 +3,7 @@\n \n org.kohsuke.stapler\n stapler-parent\n- ${revision}${changelist}\n+ 1.257\n \n \n stapler-groovy" + }, + { + "sha": "8146cea2347fdadeca07bcc73e023ca92486b063", + "filename": "jelly/pom.xml", + "status": "modified", + "additions": 1, + "deletions": 1, + "changes": 2, + "blob_url": "https://github.com/stapler/stapler/blob/d922b808068cf95d6f6ab624ce2c7f49d51f5321/jelly/pom.xml", + "raw_url": "https://github.com/stapler/stapler/raw/d922b808068cf95d6f6ab624ce2c7f49d51f5321/jelly/pom.xml", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/jelly/pom.xml?ref=d922b808068cf95d6f6ab624ce2c7f49d51f5321", + "patch": "@@ -3,7 +3,7 @@\n \n org.kohsuke.stapler\n stapler-parent\n- ${revision}${changelist}\n+ 1.257\n \n \n stapler-jelly" + }, + { + "sha": "51b4ec42334a4fba9da46acea3f4fb17685d8019", + "filename": "jrebel/pom.xml", + "status": "modified", + "additions": 1, + "deletions": 1, + "changes": 2, + "blob_url": "https://github.com/stapler/stapler/blob/d922b808068cf95d6f6ab624ce2c7f49d51f5321/jrebel/pom.xml", + "raw_url": "https://github.com/stapler/stapler/raw/d922b808068cf95d6f6ab624ce2c7f49d51f5321/jrebel/pom.xml", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/jrebel/pom.xml?ref=d922b808068cf95d6f6ab624ce2c7f49d51f5321", + "patch": "@@ -3,7 +3,7 @@\n \n org.kohsuke.stapler\n stapler-parent\n- ${revision}${changelist}\n+ 1.257\n \n \n stapler-jrebel" + }, + { + "sha": "a9320b466ffd0c35dbf5dcfb04ce21d120676ef2", + "filename": "jruby/pom.xml", + "status": "modified", + "additions": 1, + "deletions": 1, + "changes": 2, + "blob_url": "https://github.com/stapler/stapler/blob/d922b808068cf95d6f6ab624ce2c7f49d51f5321/jruby/pom.xml", + "raw_url": "https://github.com/stapler/stapler/raw/d922b808068cf95d6f6ab624ce2c7f49d51f5321/jruby/pom.xml", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/jruby/pom.xml?ref=d922b808068cf95d6f6ab624ce2c7f49d51f5321", + "patch": "@@ -3,7 +3,7 @@\n \n org.kohsuke.stapler\n stapler-parent\n- ${revision}${changelist}\n+ 1.257\n \n \n stapler-jruby" + }, + { + "sha": "5782199c8726ec8938a63630cef1deb7336b3e41", + "filename": "jsp/pom.xml", + "status": "modified", + "additions": 1, + "deletions": 1, + "changes": 2, + "blob_url": "https://github.com/stapler/stapler/blob/d922b808068cf95d6f6ab624ce2c7f49d51f5321/jsp/pom.xml", + "raw_url": "https://github.com/stapler/stapler/raw/d922b808068cf95d6f6ab624ce2c7f49d51f5321/jsp/pom.xml", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/jsp/pom.xml?ref=d922b808068cf95d6f6ab624ce2c7f49d51f5321", + "patch": "@@ -3,7 +3,7 @@\n \n org.kohsuke.stapler\n stapler-parent\n- ${revision}${changelist}\n+ 1.257\n \n \n stapler-jsp" + }, + { + "sha": "bb9539f22936ea88efd4e73c080370957210f56b", + "filename": "pom.xml", + "status": "modified", + "additions": 2, + "deletions": 2, + "changes": 4, + "blob_url": "https://github.com/stapler/stapler/blob/d922b808068cf95d6f6ab624ce2c7f49d51f5321/pom.xml", + "raw_url": "https://github.com/stapler/stapler/raw/d922b808068cf95d6f6ab624ce2c7f49d51f5321/pom.xml", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/pom.xml?ref=d922b808068cf95d6f6ab624ce2c7f49d51f5321", + "patch": "@@ -10,7 +10,7 @@\n org.kohsuke.stapler\n stapler-parent\n pom\n- ${revision}${changelist}\n+ 1.257\n \n Stapler\n Stapler HTTP request handling engine\n@@ -38,7 +38,7 @@\n scm:git:git://github.com/stapler/stapler.git\n scm:git:ssh://git@github.com/stapler/stapler.git\n https://github.com/stapler/stapler\n- ${scmTag}\n+ stapler-parent-1.257\n \n \n " + } + ] +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_efe737fa365a0187e052bc81391efbd84847a1b0-3621ddfb-672d-47aa-8b45-5d15a3e6caaa.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_efe737fa365a0187e052bc81391efbd84847a1b0-3621ddfb-672d-47aa-8b45-5d15a3e6caaa.json new file mode 100644 index 0000000000..22efaee735 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_efe737fa365a0187e052bc81391efbd84847a1b0-3621ddfb-672d-47aa-8b45-5d15a3e6caaa.json @@ -0,0 +1,98 @@ +{ + "sha": "efe737fa365a0187e052bc81391efbd84847a1b0", + "node_id": "MDY6Q29tbWl0MTU0ODUxNDplZmU3MzdmYTM2NWEwMTg3ZTA1MmJjODEzOTFlZmJkODQ4NDdhMWIw", + "commit": { + "author": { + "name": "Jesse Glick", + "email": "jglick@cloudbees.com", + "date": "2019-04-08T14:17:55Z" + }, + "committer": { + "name": "Jesse Glick", + "email": "jglick@cloudbees.com", + "date": "2019-04-08T14:17:55Z" + }, + "message": "#157 neglected to add incrementals-maven-plugin to pluginManagement, breaking reincrementalify during release.", + "tree": { + "sha": "109f198441d6524d99e237ac863e28e80ad77e59", + "url": "https://api.github.com/repos/stapler/stapler/git/trees/109f198441d6524d99e237ac863e28e80ad77e59" + }, + "url": "https://api.github.com/repos/stapler/stapler/git/commits/efe737fa365a0187e052bc81391efbd84847a1b0", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQEzBAABCgAdFiEEYYylhqBIUt57zhxYHdpp2UtiQxEFAlyrWBMACgkQHdpp2Uti\nQxFdngf9HAAKvEN8oIEBq5Vy45V80FMdWVjiYb21qoZ5l6KHNgLm1AmBsnQWvvpU\n1Q+VKMfdp6+492flDYrn+rjLOVAUcHwReTHtyq7YqkUP1E/4FJfT/8mi0szD9u4+\nhDUWKUs0//LLqTGHGgvLcQc4FXHNzcuZIowOfuHlCAOgWHqWuYDnb4aFhY3s8RdJ\na6E0V9MeUtmehKZBhGedfY+b/JpudFC+9dquR5rHEg8cP5jr7Gc3Ifcgx9nNMYXE\nn8qiwz02udK8pU+Z1KVzU4NbHydVHN8V4GceeDhqRbNNM0hjJ1ieBQefpJ+7E76R\nW9pTOeYzI9Xi1nA2pqHR5HVIk5OggA==\n=FmWz\n-----END PGP SIGNATURE-----", + "payload": "tree 109f198441d6524d99e237ac863e28e80ad77e59\nparent 08b13de864bc134fd790decd4f20db9074c7685f\nauthor Jesse Glick 1554733075 -0400\ncommitter Jesse Glick 1554733075 -0400\n\n#157 neglected to add incrementals-maven-plugin to pluginManagement, breaking reincrementalify during release.\n" + } + }, + "url": "https://api.github.com/repos/stapler/stapler/commits/efe737fa365a0187e052bc81391efbd84847a1b0", + "html_url": "https://github.com/stapler/stapler/commit/efe737fa365a0187e052bc81391efbd84847a1b0", + "comments_url": "https://api.github.com/repos/stapler/stapler/commits/efe737fa365a0187e052bc81391efbd84847a1b0/comments", + "author": { + "login": "jglick", + "id": 154109, + "node_id": "MDQ6VXNlcjE1NDEwOQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/154109?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jglick", + "html_url": "https://github.com/jglick", + "followers_url": "https://api.github.com/users/jglick/followers", + "following_url": "https://api.github.com/users/jglick/following{/other_user}", + "gists_url": "https://api.github.com/users/jglick/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jglick/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jglick/subscriptions", + "organizations_url": "https://api.github.com/users/jglick/orgs", + "repos_url": "https://api.github.com/users/jglick/repos", + "events_url": "https://api.github.com/users/jglick/events{/privacy}", + "received_events_url": "https://api.github.com/users/jglick/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "jglick", + "id": 154109, + "node_id": "MDQ6VXNlcjE1NDEwOQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/154109?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jglick", + "html_url": "https://github.com/jglick", + "followers_url": "https://api.github.com/users/jglick/followers", + "following_url": "https://api.github.com/users/jglick/following{/other_user}", + "gists_url": "https://api.github.com/users/jglick/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jglick/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jglick/subscriptions", + "organizations_url": "https://api.github.com/users/jglick/orgs", + "repos_url": "https://api.github.com/users/jglick/repos", + "events_url": "https://api.github.com/users/jglick/events{/privacy}", + "received_events_url": "https://api.github.com/users/jglick/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "08b13de864bc134fd790decd4f20db9074c7685f", + "url": "https://api.github.com/repos/stapler/stapler/commits/08b13de864bc134fd790decd4f20db9074c7685f", + "html_url": "https://github.com/stapler/stapler/commit/08b13de864bc134fd790decd4f20db9074c7685f" + } + ], + "stats": { + "total": 9, + "additions": 9, + "deletions": 0 + }, + "files": [ + { + "sha": "879f7cfd81594702efa34611f52b94c795230436", + "filename": "pom.xml", + "status": "modified", + "additions": 9, + "deletions": 0, + "changes": 9, + "blob_url": "https://github.com/stapler/stapler/blob/efe737fa365a0187e052bc81391efbd84847a1b0/pom.xml", + "raw_url": "https://github.com/stapler/stapler/raw/efe737fa365a0187e052bc81391efbd84847a1b0/pom.xml", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/pom.xml?ref=efe737fa365a0187e052bc81391efbd84847a1b0", + "patch": "@@ -206,6 +206,15 @@\n -Djdk.net.URLClassPath.disableClassPathURLCheck=true\n \n \n+ \n+ io.jenkins.tools.incrementals\n+ incrementals-maven-plugin\n+ 1.0-beta-7\n+ \n+ false\n+ false\n+ \n+ \n \n \n " + } + ] +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_efe737fa365a0187e052bc81391efbd84847a1b0-ca95823a-7ad8-4b14-8d90-c619d98c589f.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_efe737fa365a0187e052bc81391efbd84847a1b0-ca95823a-7ad8-4b14-8d90-c619d98c589f.json new file mode 100644 index 0000000000..22efaee735 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_efe737fa365a0187e052bc81391efbd84847a1b0-ca95823a-7ad8-4b14-8d90-c619d98c589f.json @@ -0,0 +1,98 @@ +{ + "sha": "efe737fa365a0187e052bc81391efbd84847a1b0", + "node_id": "MDY6Q29tbWl0MTU0ODUxNDplZmU3MzdmYTM2NWEwMTg3ZTA1MmJjODEzOTFlZmJkODQ4NDdhMWIw", + "commit": { + "author": { + "name": "Jesse Glick", + "email": "jglick@cloudbees.com", + "date": "2019-04-08T14:17:55Z" + }, + "committer": { + "name": "Jesse Glick", + "email": "jglick@cloudbees.com", + "date": "2019-04-08T14:17:55Z" + }, + "message": "#157 neglected to add incrementals-maven-plugin to pluginManagement, breaking reincrementalify during release.", + "tree": { + "sha": "109f198441d6524d99e237ac863e28e80ad77e59", + "url": "https://api.github.com/repos/stapler/stapler/git/trees/109f198441d6524d99e237ac863e28e80ad77e59" + }, + "url": "https://api.github.com/repos/stapler/stapler/git/commits/efe737fa365a0187e052bc81391efbd84847a1b0", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQEzBAABCgAdFiEEYYylhqBIUt57zhxYHdpp2UtiQxEFAlyrWBMACgkQHdpp2Uti\nQxFdngf9HAAKvEN8oIEBq5Vy45V80FMdWVjiYb21qoZ5l6KHNgLm1AmBsnQWvvpU\n1Q+VKMfdp6+492flDYrn+rjLOVAUcHwReTHtyq7YqkUP1E/4FJfT/8mi0szD9u4+\nhDUWKUs0//LLqTGHGgvLcQc4FXHNzcuZIowOfuHlCAOgWHqWuYDnb4aFhY3s8RdJ\na6E0V9MeUtmehKZBhGedfY+b/JpudFC+9dquR5rHEg8cP5jr7Gc3Ifcgx9nNMYXE\nn8qiwz02udK8pU+Z1KVzU4NbHydVHN8V4GceeDhqRbNNM0hjJ1ieBQefpJ+7E76R\nW9pTOeYzI9Xi1nA2pqHR5HVIk5OggA==\n=FmWz\n-----END PGP SIGNATURE-----", + "payload": "tree 109f198441d6524d99e237ac863e28e80ad77e59\nparent 08b13de864bc134fd790decd4f20db9074c7685f\nauthor Jesse Glick 1554733075 -0400\ncommitter Jesse Glick 1554733075 -0400\n\n#157 neglected to add incrementals-maven-plugin to pluginManagement, breaking reincrementalify during release.\n" + } + }, + "url": "https://api.github.com/repos/stapler/stapler/commits/efe737fa365a0187e052bc81391efbd84847a1b0", + "html_url": "https://github.com/stapler/stapler/commit/efe737fa365a0187e052bc81391efbd84847a1b0", + "comments_url": "https://api.github.com/repos/stapler/stapler/commits/efe737fa365a0187e052bc81391efbd84847a1b0/comments", + "author": { + "login": "jglick", + "id": 154109, + "node_id": "MDQ6VXNlcjE1NDEwOQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/154109?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jglick", + "html_url": "https://github.com/jglick", + "followers_url": "https://api.github.com/users/jglick/followers", + "following_url": "https://api.github.com/users/jglick/following{/other_user}", + "gists_url": "https://api.github.com/users/jglick/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jglick/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jglick/subscriptions", + "organizations_url": "https://api.github.com/users/jglick/orgs", + "repos_url": "https://api.github.com/users/jglick/repos", + "events_url": "https://api.github.com/users/jglick/events{/privacy}", + "received_events_url": "https://api.github.com/users/jglick/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "jglick", + "id": 154109, + "node_id": "MDQ6VXNlcjE1NDEwOQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/154109?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jglick", + "html_url": "https://github.com/jglick", + "followers_url": "https://api.github.com/users/jglick/followers", + "following_url": "https://api.github.com/users/jglick/following{/other_user}", + "gists_url": "https://api.github.com/users/jglick/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jglick/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jglick/subscriptions", + "organizations_url": "https://api.github.com/users/jglick/orgs", + "repos_url": "https://api.github.com/users/jglick/repos", + "events_url": "https://api.github.com/users/jglick/events{/privacy}", + "received_events_url": "https://api.github.com/users/jglick/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "08b13de864bc134fd790decd4f20db9074c7685f", + "url": "https://api.github.com/repos/stapler/stapler/commits/08b13de864bc134fd790decd4f20db9074c7685f", + "html_url": "https://github.com/stapler/stapler/commit/08b13de864bc134fd790decd4f20db9074c7685f" + } + ], + "stats": { + "total": 9, + "additions": 9, + "deletions": 0 + }, + "files": [ + { + "sha": "879f7cfd81594702efa34611f52b94c795230436", + "filename": "pom.xml", + "status": "modified", + "additions": 9, + "deletions": 0, + "changes": 9, + "blob_url": "https://github.com/stapler/stapler/blob/efe737fa365a0187e052bc81391efbd84847a1b0/pom.xml", + "raw_url": "https://github.com/stapler/stapler/raw/efe737fa365a0187e052bc81391efbd84847a1b0/pom.xml", + "contents_url": "https://api.github.com/repos/stapler/stapler/contents/pom.xml?ref=efe737fa365a0187e052bc81391efbd84847a1b0", + "patch": "@@ -206,6 +206,15 @@\n -Djdk.net.URLClassPath.disableClassPathURLCheck=true\n \n \n+ \n+ io.jenkins.tools.incrementals\n+ incrementals-maven-plugin\n+ 1.0-beta-7\n+ \n+ false\n+ false\n+ \n+ \n \n \n " + } + ] +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/user-1b6473bc-f679-44ec-8a6a-6a9d036c91aa.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/user-1b6473bc-f679-44ec-8a6a-6a9d036c91aa.json new file mode 100644 index 0000000000..b9ce24cb03 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/user-1b6473bc-f679-44ec-8a6a-6a9d036c91aa.json @@ -0,0 +1,33 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 166, + "public_gists": 4, + "followers": 133, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-06-03T17:47:20Z" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler-2-342768.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler-2-342768.json new file mode 100644 index 0000000000..f32e3166c9 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler-2-342768.json @@ -0,0 +1,43 @@ +{ + "id": "34276839-6f01-44ea-856d-5b26cc12edf8", + "name": "repos_stapler_stapler", + "request": { + "url": "/repos/stapler/stapler", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_stapler_stapler-34276839-6f01-44ea-856d-5b26cc12edf8.json", + "headers": { + "Date": "Mon, 09 Sep 2019 18:31:00 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4955", + "X-RateLimit-Reset": "1568056823", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"449cae6ec2615b7bcbe15d6e821627cc\"", + "Last-Modified": "Tue, 27 Aug 2019 16:42:33 GMT", + "X-OAuth-Scopes": "delete_repo, gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D99C:7CF7:A2058:C010F:5D769A63" + } + }, + "uuid": "34276839-6f01-44ea-856d-5b26cc12edf8", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits-3-6214fe.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits-3-6214fe.json new file mode 100644 index 0000000000..a618d2c0cc --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits-3-6214fe.json @@ -0,0 +1,44 @@ +{ + "id": "6214feb0-5ed5-4325-8407-2f75bef1c4bd", + "name": "repos_stapler_stapler_commits", + "request": { + "url": "/repos/stapler/stapler/commits?path=pom.xml", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_stapler_stapler_commits-6214feb0-5ed5-4325-8407-2f75bef1c4bd.json", + "headers": { + "Date": "Mon, 09 Sep 2019 18:31:00 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4954", + "X-RateLimit-Reset": "1568056823", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"e637dc76b698b0b086c2753b30498d0a\"", + "Last-Modified": "Mon, 19 Aug 2019 18:38:53 GMT", + "X-OAuth-Scopes": "delete_repo, gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Link": "; rel=\"next\", ; rel=\"last\"", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D99C:7CF7:A2072:C014B:5D769A64" + } + }, + "uuid": "6214feb0-5ed5-4325-8407-2f75bef1c4bd", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_06b1108ec041fd8d6e7f54c8578d84a672fee9e4-8-4fa8c0.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_06b1108ec041fd8d6e7f54c8578d84a672fee9e4-8-4fa8c0.json new file mode 100644 index 0000000000..3edec13ae3 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_06b1108ec041fd8d6e7f54c8578d84a672fee9e4-8-4fa8c0.json @@ -0,0 +1,46 @@ +{ + "id": "4fa8c092-5fdf-4ac3-a09a-8713da340f66", + "name": "repos_stapler_stapler_commits_06b1108ec041fd8d6e7f54c8578d84a672fee9e4", + "request": { + "url": "/repos/stapler/stapler/commits/06b1108ec041fd8d6e7f54c8578d84a672fee9e4", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_stapler_stapler_commits_06b1108ec041fd8d6e7f54c8578d84a672fee9e4-4fa8c092-5fdf-4ac3-a09a-8713da340f66.json", + "headers": { + "Date": "Mon, 09 Sep 2019 18:31:02 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4949", + "X-RateLimit-Reset": "1568056823", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"0563d0f3c97c60e7ae7e2195d94abb92\"", + "Last-Modified": "Mon, 19 Aug 2019 17:42:58 GMT", + "X-OAuth-Scopes": "delete_repo, gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D99C:7CF7:A2154:C0274:5D769A65" + } + }, + "uuid": "4fa8c092-5fdf-4ac3-a09a-8713da340f66", + "persistent": true, + "scenarioName": "scenario-3-repos-stapler-stapler-commits-06b1108ec041fd8d6e7f54c8578d84a672fee9e4", + "requiredScenarioState": "Started", + "newScenarioState": "scenario-3-repos-stapler-stapler-commits-06b1108ec041fd8d6e7f54c8578d84a672fee9e4-2", + "insertionIndex": 8 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_06b1108ec041fd8d6e7f54c8578d84a672fee9e4-9-ad6e99.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_06b1108ec041fd8d6e7f54c8578d84a672fee9e4-9-ad6e99.json new file mode 100644 index 0000000000..39164f6579 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_06b1108ec041fd8d6e7f54c8578d84a672fee9e4-9-ad6e99.json @@ -0,0 +1,45 @@ +{ + "id": "ad6e998e-9ae1-4bae-9da2-1dd49495d5cb", + "name": "repos_stapler_stapler_commits_06b1108ec041fd8d6e7f54c8578d84a672fee9e4", + "request": { + "url": "/repos/stapler/stapler/commits/06b1108ec041fd8d6e7f54c8578d84a672fee9e4", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_stapler_stapler_commits_06b1108ec041fd8d6e7f54c8578d84a672fee9e4-ad6e998e-9ae1-4bae-9da2-1dd49495d5cb.json", + "headers": { + "Date": "Mon, 09 Sep 2019 18:31:02 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4948", + "X-RateLimit-Reset": "1568056823", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"0563d0f3c97c60e7ae7e2195d94abb92\"", + "Last-Modified": "Mon, 19 Aug 2019 17:42:58 GMT", + "X-OAuth-Scopes": "delete_repo, gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D99C:7CF7:A217C:C02A1:5D769A66" + } + }, + "uuid": "ad6e998e-9ae1-4bae-9da2-1dd49495d5cb", + "persistent": true, + "scenarioName": "scenario-3-repos-stapler-stapler-commits-06b1108ec041fd8d6e7f54c8578d84a672fee9e4", + "requiredScenarioState": "scenario-3-repos-stapler-stapler-commits-06b1108ec041fd8d6e7f54c8578d84a672fee9e4-2", + "insertionIndex": 9 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_2a971c4e38c6d6693f7ad8b6768e4d74840d6679-10-8ac20a.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_2a971c4e38c6d6693f7ad8b6768e4d74840d6679-10-8ac20a.json new file mode 100644 index 0000000000..d4581380c2 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_2a971c4e38c6d6693f7ad8b6768e4d74840d6679-10-8ac20a.json @@ -0,0 +1,46 @@ +{ + "id": "8ac20af2-3f87-419a-b5cb-a96f5f2fd3c7", + "name": "repos_stapler_stapler_commits_2a971c4e38c6d6693f7ad8b6768e4d74840d6679", + "request": { + "url": "/repos/stapler/stapler/commits/2a971c4e38c6d6693f7ad8b6768e4d74840d6679", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_stapler_stapler_commits_2a971c4e38c6d6693f7ad8b6768e4d74840d6679-8ac20af2-3f87-419a-b5cb-a96f5f2fd3c7.json", + "headers": { + "Date": "Mon, 09 Sep 2019 18:31:02 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4947", + "X-RateLimit-Reset": "1568056823", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"210b8038c41dfbe9d59f53360f6c2b2b\"", + "Last-Modified": "Fri, 28 Jun 2019 16:21:18 GMT", + "X-OAuth-Scopes": "delete_repo, gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D99C:7CF7:A219F:C02CD:5D769A66" + } + }, + "uuid": "8ac20af2-3f87-419a-b5cb-a96f5f2fd3c7", + "persistent": true, + "scenarioName": "scenario-4-repos-stapler-stapler-commits-2a971c4e38c6d6693f7ad8b6768e4d74840d6679", + "requiredScenarioState": "Started", + "newScenarioState": "scenario-4-repos-stapler-stapler-commits-2a971c4e38c6d6693f7ad8b6768e4d74840d6679-2", + "insertionIndex": 10 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_2a971c4e38c6d6693f7ad8b6768e4d74840d6679-11-c96500.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_2a971c4e38c6d6693f7ad8b6768e4d74840d6679-11-c96500.json new file mode 100644 index 0000000000..876e9d80c2 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_2a971c4e38c6d6693f7ad8b6768e4d74840d6679-11-c96500.json @@ -0,0 +1,45 @@ +{ + "id": "c9650076-4963-4d6a-9c1c-07c6339a48dd", + "name": "repos_stapler_stapler_commits_2a971c4e38c6d6693f7ad8b6768e4d74840d6679", + "request": { + "url": "/repos/stapler/stapler/commits/2a971c4e38c6d6693f7ad8b6768e4d74840d6679", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_stapler_stapler_commits_2a971c4e38c6d6693f7ad8b6768e4d74840d6679-c9650076-4963-4d6a-9c1c-07c6339a48dd.json", + "headers": { + "Date": "Mon, 09 Sep 2019 18:31:02 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4946", + "X-RateLimit-Reset": "1568056823", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"210b8038c41dfbe9d59f53360f6c2b2b\"", + "Last-Modified": "Fri, 28 Jun 2019 16:21:18 GMT", + "X-OAuth-Scopes": "delete_repo, gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D99C:7CF7:A21B5:C02E7:5D769A66" + } + }, + "uuid": "c9650076-4963-4d6a-9c1c-07c6339a48dd", + "persistent": true, + "scenarioName": "scenario-4-repos-stapler-stapler-commits-2a971c4e38c6d6693f7ad8b6768e4d74840d6679", + "requiredScenarioState": "scenario-4-repos-stapler-stapler-commits-2a971c4e38c6d6693f7ad8b6768e4d74840d6679-2", + "insertionIndex": 11 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_2f4ca0f03c1e6188867bddddce12ff213a107d9d-12-dd34f1.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_2f4ca0f03c1e6188867bddddce12ff213a107d9d-12-dd34f1.json new file mode 100644 index 0000000000..67741e4f86 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_2f4ca0f03c1e6188867bddddce12ff213a107d9d-12-dd34f1.json @@ -0,0 +1,46 @@ +{ + "id": "dd34f14b-38e1-406d-94b8-c650832d9bd4", + "name": "repos_stapler_stapler_commits_2f4ca0f03c1e6188867bddddce12ff213a107d9d", + "request": { + "url": "/repos/stapler/stapler/commits/2f4ca0f03c1e6188867bddddce12ff213a107d9d", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_stapler_stapler_commits_2f4ca0f03c1e6188867bddddce12ff213a107d9d-dd34f14b-38e1-406d-94b8-c650832d9bd4.json", + "headers": { + "Date": "Mon, 09 Sep 2019 18:31:02 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4945", + "X-RateLimit-Reset": "1568056823", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"ed3c1e9504b58dbca20c126b9e36718f\"", + "Last-Modified": "Mon, 08 Apr 2019 14:19:21 GMT", + "X-OAuth-Scopes": "delete_repo, gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D99C:7CF7:A21D2:C030E:5D769A66" + } + }, + "uuid": "dd34f14b-38e1-406d-94b8-c650832d9bd4", + "persistent": true, + "scenarioName": "scenario-5-repos-stapler-stapler-commits-2f4ca0f03c1e6188867bddddce12ff213a107d9d", + "requiredScenarioState": "Started", + "newScenarioState": "scenario-5-repos-stapler-stapler-commits-2f4ca0f03c1e6188867bddddce12ff213a107d9d-2", + "insertionIndex": 12 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_2f4ca0f03c1e6188867bddddce12ff213a107d9d-13-b7c821.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_2f4ca0f03c1e6188867bddddce12ff213a107d9d-13-b7c821.json new file mode 100644 index 0000000000..1edc6901a4 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_2f4ca0f03c1e6188867bddddce12ff213a107d9d-13-b7c821.json @@ -0,0 +1,45 @@ +{ + "id": "b7c821b4-b43e-44a2-bea6-83304ffae91f", + "name": "repos_stapler_stapler_commits_2f4ca0f03c1e6188867bddddce12ff213a107d9d", + "request": { + "url": "/repos/stapler/stapler/commits/2f4ca0f03c1e6188867bddddce12ff213a107d9d", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_stapler_stapler_commits_2f4ca0f03c1e6188867bddddce12ff213a107d9d-b7c821b4-b43e-44a2-bea6-83304ffae91f.json", + "headers": { + "Date": "Mon, 09 Sep 2019 18:31:03 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4944", + "X-RateLimit-Reset": "1568056823", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"ed3c1e9504b58dbca20c126b9e36718f\"", + "Last-Modified": "Mon, 08 Apr 2019 14:19:21 GMT", + "X-OAuth-Scopes": "delete_repo, gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D99C:7CF7:A2201:C0339:5D769A66" + } + }, + "uuid": "b7c821b4-b43e-44a2-bea6-83304ffae91f", + "persistent": true, + "scenarioName": "scenario-5-repos-stapler-stapler-commits-2f4ca0f03c1e6188867bddddce12ff213a107d9d", + "requiredScenarioState": "scenario-5-repos-stapler-stapler-commits-2f4ca0f03c1e6188867bddddce12ff213a107d9d-2", + "insertionIndex": 13 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_4f260c560ec120f4e2c2ed727244690b1f4d5dca-22-3e6d36.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_4f260c560ec120f4e2c2ed727244690b1f4d5dca-22-3e6d36.json new file mode 100644 index 0000000000..18c818f7ad --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_4f260c560ec120f4e2c2ed727244690b1f4d5dca-22-3e6d36.json @@ -0,0 +1,46 @@ +{ + "id": "3e6d369c-c2ff-4835-abb3-00858c380485", + "name": "repos_stapler_stapler_commits_4f260c560ec120f4e2c2ed727244690b1f4d5dca", + "request": { + "url": "/repos/stapler/stapler/commits/4f260c560ec120f4e2c2ed727244690b1f4d5dca", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_stapler_stapler_commits_4f260c560ec120f4e2c2ed727244690b1f4d5dca-3e6d369c-c2ff-4835-abb3-00858c380485.json", + "headers": { + "Date": "Mon, 09 Sep 2019 18:31:05 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4935", + "X-RateLimit-Reset": "1568056823", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"2524c8a4ca350cca9cada10977584c79\"", + "Last-Modified": "Mon, 18 Feb 2019 22:52:29 GMT", + "X-OAuth-Scopes": "delete_repo, gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D99C:7CF7:A2369:C04E2:5D769A69" + } + }, + "uuid": "3e6d369c-c2ff-4835-abb3-00858c380485", + "persistent": true, + "scenarioName": "scenario-10-repos-stapler-stapler-commits-4f260c560ec120f4e2c2ed727244690b1f4d5dca", + "requiredScenarioState": "Started", + "newScenarioState": "scenario-10-repos-stapler-stapler-commits-4f260c560ec120f4e2c2ed727244690b1f4d5dca-2", + "insertionIndex": 22 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_4f260c560ec120f4e2c2ed727244690b1f4d5dca-23-8573f1.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_4f260c560ec120f4e2c2ed727244690b1f4d5dca-23-8573f1.json new file mode 100644 index 0000000000..9bfc725f46 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_4f260c560ec120f4e2c2ed727244690b1f4d5dca-23-8573f1.json @@ -0,0 +1,45 @@ +{ + "id": "8573f146-63d0-4ffe-9d91-e05573680be5", + "name": "repos_stapler_stapler_commits_4f260c560ec120f4e2c2ed727244690b1f4d5dca", + "request": { + "url": "/repos/stapler/stapler/commits/4f260c560ec120f4e2c2ed727244690b1f4d5dca", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_stapler_stapler_commits_4f260c560ec120f4e2c2ed727244690b1f4d5dca-8573f146-63d0-4ffe-9d91-e05573680be5.json", + "headers": { + "Date": "Mon, 09 Sep 2019 18:31:05 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4934", + "X-RateLimit-Reset": "1568056823", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"2524c8a4ca350cca9cada10977584c79\"", + "Last-Modified": "Mon, 18 Feb 2019 22:52:29 GMT", + "X-OAuth-Scopes": "delete_repo, gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D99C:7CF7:A2386:C04FF:5D769A69" + } + }, + "uuid": "8573f146-63d0-4ffe-9d91-e05573680be5", + "persistent": true, + "scenarioName": "scenario-10-repos-stapler-stapler-commits-4f260c560ec120f4e2c2ed727244690b1f4d5dca", + "requiredScenarioState": "scenario-10-repos-stapler-stapler-commits-4f260c560ec120f4e2c2ed727244690b1f4d5dca-2", + "insertionIndex": 23 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_53ce34d7d89c5172ae4f4f3167e35852b1910b59-18-4c7823.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_53ce34d7d89c5172ae4f4f3167e35852b1910b59-18-4c7823.json new file mode 100644 index 0000000000..f82b53449d --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_53ce34d7d89c5172ae4f4f3167e35852b1910b59-18-4c7823.json @@ -0,0 +1,46 @@ +{ + "id": "4c78237a-7bc9-49ce-9a1b-0bed99e888b4", + "name": "repos_stapler_stapler_commits_53ce34d7d89c5172ae4f4f3167e35852b1910b59", + "request": { + "url": "/repos/stapler/stapler/commits/53ce34d7d89c5172ae4f4f3167e35852b1910b59", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_stapler_stapler_commits_53ce34d7d89c5172ae4f4f3167e35852b1910b59-4c78237a-7bc9-49ce-9a1b-0bed99e888b4.json", + "headers": { + "Date": "Mon, 09 Sep 2019 18:31:04 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4939", + "X-RateLimit-Reset": "1568056823", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"a4dd6b0ee041284621a857e8ea23c8a1\"", + "Last-Modified": "Wed, 03 Apr 2019 19:03:54 GMT", + "X-OAuth-Scopes": "delete_repo, gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D99C:7CF7:A22C3:C041E:5D769A68" + } + }, + "uuid": "4c78237a-7bc9-49ce-9a1b-0bed99e888b4", + "persistent": true, + "scenarioName": "scenario-8-repos-stapler-stapler-commits-53ce34d7d89c5172ae4f4f3167e35852b1910b59", + "requiredScenarioState": "Started", + "newScenarioState": "scenario-8-repos-stapler-stapler-commits-53ce34d7d89c5172ae4f4f3167e35852b1910b59-2", + "insertionIndex": 18 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_53ce34d7d89c5172ae4f4f3167e35852b1910b59-19-5f3cc3.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_53ce34d7d89c5172ae4f4f3167e35852b1910b59-19-5f3cc3.json new file mode 100644 index 0000000000..ff6a88b5c6 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_53ce34d7d89c5172ae4f4f3167e35852b1910b59-19-5f3cc3.json @@ -0,0 +1,45 @@ +{ + "id": "5f3cc3b8-f231-4c58-9ffd-f0cf3c14d49b", + "name": "repos_stapler_stapler_commits_53ce34d7d89c5172ae4f4f3167e35852b1910b59", + "request": { + "url": "/repos/stapler/stapler/commits/53ce34d7d89c5172ae4f4f3167e35852b1910b59", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_stapler_stapler_commits_53ce34d7d89c5172ae4f4f3167e35852b1910b59-5f3cc3b8-f231-4c58-9ffd-f0cf3c14d49b.json", + "headers": { + "Date": "Mon, 09 Sep 2019 18:31:04 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4938", + "X-RateLimit-Reset": "1568056823", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"a4dd6b0ee041284621a857e8ea23c8a1\"", + "Last-Modified": "Wed, 03 Apr 2019 19:03:54 GMT", + "X-OAuth-Scopes": "delete_repo, gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D99C:7CF7:A22E2:C0448:5D769A68" + } + }, + "uuid": "5f3cc3b8-f231-4c58-9ffd-f0cf3c14d49b", + "persistent": true, + "scenarioName": "scenario-8-repos-stapler-stapler-commits-53ce34d7d89c5172ae4f4f3167e35852b1910b59", + "requiredScenarioState": "scenario-8-repos-stapler-stapler-commits-53ce34d7d89c5172ae4f4f3167e35852b1910b59-2", + "insertionIndex": 19 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_6a243869aa3c3f80579102d00848a0083953d654-6-d76af9.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_6a243869aa3c3f80579102d00848a0083953d654-6-d76af9.json new file mode 100644 index 0000000000..b14f92610b --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_6a243869aa3c3f80579102d00848a0083953d654-6-d76af9.json @@ -0,0 +1,46 @@ +{ + "id": "d76af952-0ff3-4514-9a38-93d9570c5b3c", + "name": "repos_stapler_stapler_commits_6a243869aa3c3f80579102d00848a0083953d654", + "request": { + "url": "/repos/stapler/stapler/commits/6a243869aa3c3f80579102d00848a0083953d654", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_stapler_stapler_commits_6a243869aa3c3f80579102d00848a0083953d654-d76af952-0ff3-4514-9a38-93d9570c5b3c.json", + "headers": { + "Date": "Mon, 09 Sep 2019 18:31:01 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4951", + "X-RateLimit-Reset": "1568056823", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"94ef432d31efc82dd4627bbd7fdac3ea\"", + "Last-Modified": "Mon, 19 Aug 2019 18:38:42 GMT", + "X-OAuth-Scopes": "delete_repo, gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D99C:7CF7:A20F4:C01FD:5D769A65" + } + }, + "uuid": "d76af952-0ff3-4514-9a38-93d9570c5b3c", + "persistent": true, + "scenarioName": "scenario-2-repos-stapler-stapler-commits-6a243869aa3c3f80579102d00848a0083953d654", + "requiredScenarioState": "Started", + "newScenarioState": "scenario-2-repos-stapler-stapler-commits-6a243869aa3c3f80579102d00848a0083953d654-2", + "insertionIndex": 6 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_6a243869aa3c3f80579102d00848a0083953d654-7-a7972e.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_6a243869aa3c3f80579102d00848a0083953d654-7-a7972e.json new file mode 100644 index 0000000000..32e09cc071 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_6a243869aa3c3f80579102d00848a0083953d654-7-a7972e.json @@ -0,0 +1,45 @@ +{ + "id": "a7972e0c-a2e0-4e50-bd1a-374cfad5576c", + "name": "repos_stapler_stapler_commits_6a243869aa3c3f80579102d00848a0083953d654", + "request": { + "url": "/repos/stapler/stapler/commits/6a243869aa3c3f80579102d00848a0083953d654", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_stapler_stapler_commits_6a243869aa3c3f80579102d00848a0083953d654-a7972e0c-a2e0-4e50-bd1a-374cfad5576c.json", + "headers": { + "Date": "Mon, 09 Sep 2019 18:31:01 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4950", + "X-RateLimit-Reset": "1568056823", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"94ef432d31efc82dd4627bbd7fdac3ea\"", + "Last-Modified": "Mon, 19 Aug 2019 18:38:42 GMT", + "X-OAuth-Scopes": "delete_repo, gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D99C:7CF7:A2139:C0242:5D769A65" + } + }, + "uuid": "a7972e0c-a2e0-4e50-bd1a-374cfad5576c", + "persistent": true, + "scenarioName": "scenario-2-repos-stapler-stapler-commits-6a243869aa3c3f80579102d00848a0083953d654", + "requiredScenarioState": "scenario-2-repos-stapler-stapler-commits-6a243869aa3c3f80579102d00848a0083953d654-2", + "insertionIndex": 7 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_72343298733508cced8dcb8eb43594bcc6130b26-20-73ac5f.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_72343298733508cced8dcb8eb43594bcc6130b26-20-73ac5f.json new file mode 100644 index 0000000000..a714315715 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_72343298733508cced8dcb8eb43594bcc6130b26-20-73ac5f.json @@ -0,0 +1,46 @@ +{ + "id": "73ac5fc1-ea49-4c48-bc8a-f306908d7836", + "name": "repos_stapler_stapler_commits_72343298733508cced8dcb8eb43594bcc6130b26", + "request": { + "url": "/repos/stapler/stapler/commits/72343298733508cced8dcb8eb43594bcc6130b26", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_stapler_stapler_commits_72343298733508cced8dcb8eb43594bcc6130b26-73ac5fc1-ea49-4c48-bc8a-f306908d7836.json", + "headers": { + "Date": "Mon, 09 Sep 2019 18:31:04 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4937", + "X-RateLimit-Reset": "1568056823", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"133ab1934268062df543529934ac067f\"", + "Last-Modified": "Tue, 19 Feb 2019 21:27:25 GMT", + "X-OAuth-Scopes": "delete_repo, gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D99C:7CF7:A2333:C049A:5D769A68" + } + }, + "uuid": "73ac5fc1-ea49-4c48-bc8a-f306908d7836", + "persistent": true, + "scenarioName": "scenario-9-repos-stapler-stapler-commits-72343298733508cced8dcb8eb43594bcc6130b26", + "requiredScenarioState": "Started", + "newScenarioState": "scenario-9-repos-stapler-stapler-commits-72343298733508cced8dcb8eb43594bcc6130b26-2", + "insertionIndex": 20 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_72343298733508cced8dcb8eb43594bcc6130b26-21-77b7d9.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_72343298733508cced8dcb8eb43594bcc6130b26-21-77b7d9.json new file mode 100644 index 0000000000..7843c8e0b0 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_72343298733508cced8dcb8eb43594bcc6130b26-21-77b7d9.json @@ -0,0 +1,45 @@ +{ + "id": "77b7d93a-9cd6-48a5-af7d-2ee6e4efa296", + "name": "repos_stapler_stapler_commits_72343298733508cced8dcb8eb43594bcc6130b26", + "request": { + "url": "/repos/stapler/stapler/commits/72343298733508cced8dcb8eb43594bcc6130b26", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_stapler_stapler_commits_72343298733508cced8dcb8eb43594bcc6130b26-77b7d93a-9cd6-48a5-af7d-2ee6e4efa296.json", + "headers": { + "Date": "Mon, 09 Sep 2019 18:31:05 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4936", + "X-RateLimit-Reset": "1568056823", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"133ab1934268062df543529934ac067f\"", + "Last-Modified": "Tue, 19 Feb 2019 21:27:25 GMT", + "X-OAuth-Scopes": "delete_repo, gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D99C:7CF7:A2351:C04C1:5D769A68" + } + }, + "uuid": "77b7d93a-9cd6-48a5-af7d-2ee6e4efa296", + "persistent": true, + "scenarioName": "scenario-9-repos-stapler-stapler-commits-72343298733508cced8dcb8eb43594bcc6130b26", + "requiredScenarioState": "scenario-9-repos-stapler-stapler-commits-72343298733508cced8dcb8eb43594bcc6130b26-2", + "insertionIndex": 21 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_950acbd60ed4289520dcd2a395e5d77f181e1cff-4-45c731.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_950acbd60ed4289520dcd2a395e5d77f181e1cff-4-45c731.json new file mode 100644 index 0000000000..141e12a15c --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_950acbd60ed4289520dcd2a395e5d77f181e1cff-4-45c731.json @@ -0,0 +1,46 @@ +{ + "id": "45c73127-9113-4bb6-8193-cedf907fa96a", + "name": "repos_stapler_stapler_commits_950acbd60ed4289520dcd2a395e5d77f181e1cff", + "request": { + "url": "/repos/stapler/stapler/commits/950acbd60ed4289520dcd2a395e5d77f181e1cff", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_stapler_stapler_commits_950acbd60ed4289520dcd2a395e5d77f181e1cff-45c73127-9113-4bb6-8193-cedf907fa96a.json", + "headers": { + "Date": "Mon, 09 Sep 2019 18:31:01 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4953", + "X-RateLimit-Reset": "1568056823", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"6726f0c54296f6478d8760f10a8946f5\"", + "Last-Modified": "Mon, 19 Aug 2019 18:38:53 GMT", + "X-OAuth-Scopes": "delete_repo, gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D99C:7CF7:A20BD:C01B8:5D769A64" + } + }, + "uuid": "45c73127-9113-4bb6-8193-cedf907fa96a", + "persistent": true, + "scenarioName": "scenario-1-repos-stapler-stapler-commits-950acbd60ed4289520dcd2a395e5d77f181e1cff", + "requiredScenarioState": "Started", + "newScenarioState": "scenario-1-repos-stapler-stapler-commits-950acbd60ed4289520dcd2a395e5d77f181e1cff-2", + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_950acbd60ed4289520dcd2a395e5d77f181e1cff-5-1aa530.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_950acbd60ed4289520dcd2a395e5d77f181e1cff-5-1aa530.json new file mode 100644 index 0000000000..50d8c071c5 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_950acbd60ed4289520dcd2a395e5d77f181e1cff-5-1aa530.json @@ -0,0 +1,45 @@ +{ + "id": "1aa53060-8df1-4455-ae37-21eed443f58b", + "name": "repos_stapler_stapler_commits_950acbd60ed4289520dcd2a395e5d77f181e1cff", + "request": { + "url": "/repos/stapler/stapler/commits/950acbd60ed4289520dcd2a395e5d77f181e1cff", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_stapler_stapler_commits_950acbd60ed4289520dcd2a395e5d77f181e1cff-1aa53060-8df1-4455-ae37-21eed443f58b.json", + "headers": { + "Date": "Mon, 09 Sep 2019 18:31:01 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4952", + "X-RateLimit-Reset": "1568056823", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"6726f0c54296f6478d8760f10a8946f5\"", + "Last-Modified": "Mon, 19 Aug 2019 18:38:53 GMT", + "X-OAuth-Scopes": "delete_repo, gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D99C:7CF7:A20D9:C01DE:5D769A65" + } + }, + "uuid": "1aa53060-8df1-4455-ae37-21eed443f58b", + "persistent": true, + "scenarioName": "scenario-1-repos-stapler-stapler-commits-950acbd60ed4289520dcd2a395e5d77f181e1cff", + "requiredScenarioState": "scenario-1-repos-stapler-stapler-commits-950acbd60ed4289520dcd2a395e5d77f181e1cff-2", + "insertionIndex": 5 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_d922b808068cf95d6f6ab624ce2c7f49d51f5321-14-35c73b.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_d922b808068cf95d6f6ab624ce2c7f49d51f5321-14-35c73b.json new file mode 100644 index 0000000000..390f520815 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_d922b808068cf95d6f6ab624ce2c7f49d51f5321-14-35c73b.json @@ -0,0 +1,46 @@ +{ + "id": "35c73b49-8705-4fee-abd6-36c9f4bc2825", + "name": "repos_stapler_stapler_commits_d922b808068cf95d6f6ab624ce2c7f49d51f5321", + "request": { + "url": "/repos/stapler/stapler/commits/d922b808068cf95d6f6ab624ce2c7f49d51f5321", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_stapler_stapler_commits_d922b808068cf95d6f6ab624ce2c7f49d51f5321-35c73b49-8705-4fee-abd6-36c9f4bc2825.json", + "headers": { + "Date": "Mon, 09 Sep 2019 18:31:03 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4943", + "X-RateLimit-Reset": "1568056823", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"b596f4895bf3131a6d518d8a4c5a4f41\"", + "Last-Modified": "Mon, 08 Apr 2019 14:19:11 GMT", + "X-OAuth-Scopes": "delete_repo, gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D99C:7CF7:A222D:C0378:5D769A67" + } + }, + "uuid": "35c73b49-8705-4fee-abd6-36c9f4bc2825", + "persistent": true, + "scenarioName": "scenario-6-repos-stapler-stapler-commits-d922b808068cf95d6f6ab624ce2c7f49d51f5321", + "requiredScenarioState": "Started", + "newScenarioState": "scenario-6-repos-stapler-stapler-commits-d922b808068cf95d6f6ab624ce2c7f49d51f5321-2", + "insertionIndex": 14 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_d922b808068cf95d6f6ab624ce2c7f49d51f5321-15-fb5ea1.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_d922b808068cf95d6f6ab624ce2c7f49d51f5321-15-fb5ea1.json new file mode 100644 index 0000000000..2902fd5370 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_d922b808068cf95d6f6ab624ce2c7f49d51f5321-15-fb5ea1.json @@ -0,0 +1,45 @@ +{ + "id": "fb5ea1a9-6086-40a2-a542-7a87ee6bb437", + "name": "repos_stapler_stapler_commits_d922b808068cf95d6f6ab624ce2c7f49d51f5321", + "request": { + "url": "/repos/stapler/stapler/commits/d922b808068cf95d6f6ab624ce2c7f49d51f5321", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_stapler_stapler_commits_d922b808068cf95d6f6ab624ce2c7f49d51f5321-fb5ea1a9-6086-40a2-a542-7a87ee6bb437.json", + "headers": { + "Date": "Mon, 09 Sep 2019 18:31:03 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4942", + "X-RateLimit-Reset": "1568056823", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"b596f4895bf3131a6d518d8a4c5a4f41\"", + "Last-Modified": "Mon, 08 Apr 2019 14:19:11 GMT", + "X-OAuth-Scopes": "delete_repo, gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D99C:7CF7:A226E:C03A1:5D769A67" + } + }, + "uuid": "fb5ea1a9-6086-40a2-a542-7a87ee6bb437", + "persistent": true, + "scenarioName": "scenario-6-repos-stapler-stapler-commits-d922b808068cf95d6f6ab624ce2c7f49d51f5321", + "requiredScenarioState": "scenario-6-repos-stapler-stapler-commits-d922b808068cf95d6f6ab624ce2c7f49d51f5321-2", + "insertionIndex": 15 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_efe737fa365a0187e052bc81391efbd84847a1b0-16-3621dd.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_efe737fa365a0187e052bc81391efbd84847a1b0-16-3621dd.json new file mode 100644 index 0000000000..57ca9f174f --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_efe737fa365a0187e052bc81391efbd84847a1b0-16-3621dd.json @@ -0,0 +1,46 @@ +{ + "id": "3621ddfb-672d-47aa-8b45-5d15a3e6caaa", + "name": "repos_stapler_stapler_commits_efe737fa365a0187e052bc81391efbd84847a1b0", + "request": { + "url": "/repos/stapler/stapler/commits/efe737fa365a0187e052bc81391efbd84847a1b0", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_stapler_stapler_commits_efe737fa365a0187e052bc81391efbd84847a1b0-3621ddfb-672d-47aa-8b45-5d15a3e6caaa.json", + "headers": { + "Date": "Mon, 09 Sep 2019 18:31:03 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4941", + "X-RateLimit-Reset": "1568056823", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"105b96446da95ff8ee109ccaf4fd0d26\"", + "Last-Modified": "Mon, 08 Apr 2019 14:17:55 GMT", + "X-OAuth-Scopes": "delete_repo, gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D99C:7CF7:A228A:C03E4:5D769A67" + } + }, + "uuid": "3621ddfb-672d-47aa-8b45-5d15a3e6caaa", + "persistent": true, + "scenarioName": "scenario-7-repos-stapler-stapler-commits-efe737fa365a0187e052bc81391efbd84847a1b0", + "requiredScenarioState": "Started", + "newScenarioState": "scenario-7-repos-stapler-stapler-commits-efe737fa365a0187e052bc81391efbd84847a1b0-2", + "insertionIndex": 16 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_efe737fa365a0187e052bc81391efbd84847a1b0-17-ca9582.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_efe737fa365a0187e052bc81391efbd84847a1b0-17-ca9582.json new file mode 100644 index 0000000000..40f7197697 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_efe737fa365a0187e052bc81391efbd84847a1b0-17-ca9582.json @@ -0,0 +1,45 @@ +{ + "id": "ca95823a-7ad8-4b14-8d90-c619d98c589f", + "name": "repos_stapler_stapler_commits_efe737fa365a0187e052bc81391efbd84847a1b0", + "request": { + "url": "/repos/stapler/stapler/commits/efe737fa365a0187e052bc81391efbd84847a1b0", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_stapler_stapler_commits_efe737fa365a0187e052bc81391efbd84847a1b0-ca95823a-7ad8-4b14-8d90-c619d98c589f.json", + "headers": { + "Date": "Mon, 09 Sep 2019 18:31:04 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4940", + "X-RateLimit-Reset": "1568056823", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"105b96446da95ff8ee109ccaf4fd0d26\"", + "Last-Modified": "Mon, 08 Apr 2019 14:17:55 GMT", + "X-OAuth-Scopes": "delete_repo, gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D99C:7CF7:A22A6:C0400:5D769A67" + } + }, + "uuid": "ca95823a-7ad8-4b14-8d90-c619d98c589f", + "persistent": true, + "scenarioName": "scenario-7-repos-stapler-stapler-commits-efe737fa365a0187e052bc81391efbd84847a1b0", + "requiredScenarioState": "scenario-7-repos-stapler-stapler-commits-efe737fa365a0187e052bc81391efbd84847a1b0-2", + "insertionIndex": 17 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/user-1-1b6473.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/user-1-1b6473.json new file mode 100644 index 0000000000..f242a81b01 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/user-1-1b6473.json @@ -0,0 +1,43 @@ +{ + "id": "1b6473bc-f679-44ec-8a6a-6a9d036c91aa", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-1b6473bc-f679-44ec-8a6a-6a9d036c91aa.json", + "headers": { + "Date": "Mon, 09 Sep 2019 18:30:59 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4956", + "X-RateLimit-Reset": "1568056823", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"3ba1de3523043df743651bd23efc7def\"", + "Last-Modified": "Mon, 03 Jun 2019 17:47:20 GMT", + "X-OAuth-Scopes": "delete_repo, gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D99C:7CF7:A201C:C00FA:5D769A63" + } + }, + "uuid": "1b6473bc-f679-44ec-8a6a-6a9d036c91aa", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/createToken/__files/body-githubapp-create-installation-accesstokens.json b/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/createToken/__files/body-githubapp-create-installation-accesstokens.json new file mode 100644 index 0000000000..d891cc0e7d --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/createToken/__files/body-githubapp-create-installation-accesstokens.json @@ -0,0 +1,107 @@ +{ + "token": "bogus", + "expires_at": "2019-08-10T05:54:58Z", + "permissions": { + "checks": "write", + "pull_requests": "write", + "contents": "read", + "metadata": "read" + }, + "repository_selection": "selected", + "repositories": [ + { + "id": 111111111, + "node_id": "asdfasdf", + "name": "bogus", + "full_name": "bogus/bogus", + "private": true, + "owner": { + "login": "bogus", + "id": 11111111, + "node_id": "asdfasdf", + "avatar_url": "https://avatars2.githubusercontent.com/u/11111111?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bogus", + "html_url": "https://github.com/bogus", + "followers_url": "https://api.github.com/users/bogus/followers", + "following_url": "https://api.github.com/users/bogus/following{/other_user}", + "gists_url": "https://api.github.com/users/bogus/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bogus/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bogus/subscriptions", + "organizations_url": "https://api.github.com/users/bogus/orgs", + "repos_url": "https://api.github.com/users/bogus/repos", + "events_url": "https://api.github.com/users/bogus/events{/privacy}", + "received_events_url": "https://api.github.com/users/bogus/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/bogus/bogus", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/bogus/bogus", + "forks_url": "https://api.github.com/repos/bogus/bogus/forks", + "keys_url": "https://api.github.com/repos/bogus/bogus/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bogus/bogus/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bogus/bogus/teams", + "hooks_url": "https://api.github.com/repos/bogus/bogus/hooks", + "issue_events_url": "https://api.github.com/repos/bogus/bogus/issues/events{/number}", + "events_url": "https://api.github.com/repos/bogus/bogus/events", + "assignees_url": "https://api.github.com/repos/bogus/bogus/assignees{/user}", + "branches_url": "https://api.github.com/repos/bogus/bogus/branches{/branch}", + "tags_url": "https://api.github.com/repos/bogus/bogus/tags", + "blobs_url": "https://api.github.com/repos/bogus/bogus/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bogus/bogus/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bogus/bogus/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bogus/bogus/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bogus/bogus/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bogus/bogus/languages", + "stargazers_url": "https://api.github.com/repos/bogus/bogus/stargazers", + "contributors_url": "https://api.github.com/repos/bogus/bogus/contributors", + "subscribers_url": "https://api.github.com/repos/bogus/bogus/subscribers", + "subscription_url": "https://api.github.com/repos/bogus/bogus/subscription", + "commits_url": "https://api.github.com/repos/bogus/bogus/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bogus/bogus/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bogus/bogus/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bogus/bogus/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bogus/bogus/contents/{+path}", + "compare_url": "https://api.github.com/repos/bogus/bogus/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bogus/bogus/merges", + "archive_url": "https://api.github.com/repos/bogus/bogus/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bogus/bogus/downloads", + "issues_url": "https://api.github.com/repos/bogus/bogus/issues{/number}", + "pulls_url": "https://api.github.com/repos/bogus/bogus/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bogus/bogus/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bogus/bogus/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bogus/bogus/labels{/name}", + "releases_url": "https://api.github.com/repos/bogus/bogus/releases{/id}", + "deployments_url": "https://api.github.com/repos/bogus/bogus/deployments", + "created_at": "2018-09-06T03:25:38Z", + "updated_at": "2018-09-30T22:04:06Z", + "pushed_at": "2019-08-08T22:22:34Z", + "git_url": "git://github.com/bogus/bogus.git", + "ssh_url": "git@github.com:bogus/bogus.git", + "clone_url": "https://github.com/bogus/bogus.git", + "svn_url": "https://github.com/bogus/bogus", + "homepage": null, + "size": 618, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 5, + "license": null, + "forks": 0, + "open_issues": 5, + "watchers": 0, + "default_branch": "master" + } + ] +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/createToken/__files/body-mapping-githubapp-app.json b/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/createToken/__files/body-mapping-githubapp-app.json new file mode 100644 index 0000000000..d36be086d7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/createToken/__files/body-mapping-githubapp-app.json @@ -0,0 +1,41 @@ +{ + "id": 11111, + "node_id": "MDM6QXBwMzI2MTY=", + "owner": { + "login": "bogus", + "id": 111111111, + "node_id": "asdfasdfasdf", + "avatar_url": "https://avatars2.githubusercontent.com/u/111111111?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bogus", + "html_url": "https://github.com/bogus", + "followers_url": "https://api.github.com/users/bogus/followers", + "following_url": "https://api.github.com/users/bogus/following{/other_user}", + "gists_url": "https://api.github.com/users/bogus/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bogus/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bogus/subscriptions", + "organizations_url": "https://api.github.com/users/bogus/orgs", + "repos_url": "https://api.github.com/users/bogus/repos", + "events_url": "https://api.github.com/users/bogus/events{/privacy}", + "received_events_url": "https://api.github.com/users/bogus/received_events", + "type": "Organization", + "site_admin": false + }, + "name": "Bogus-Development", + "description": "", + "external_url": "https://bogus.domain.com", + "html_url": "https://github.com/apps/bogus-development", + "created_at": "2019-06-10T04:21:41Z", + "updated_at": "2019-06-10T04:21:41Z", + "permissions": { + "checks": "write", + "contents": "read", + "metadata": "read", + "pull_requests": "write" + }, + "events": [ + "pull_request", + "push" + ], + "installations_count": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/createToken/__files/body-mapping-githubapp-installation-by-user.json b/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/createToken/__files/body-mapping-githubapp-installation-by-user.json new file mode 100644 index 0000000000..8975c0c55d --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/createToken/__files/body-mapping-githubapp-installation-by-user.json @@ -0,0 +1,43 @@ +{ + "id": 11111111, + "account": { + "login": "bogus", + "id": 111111111, + "node_id": "asdfasdfasdf", + "avatar_url": "https://avatars2.githubusercontent.com/u/111111111?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bogus", + "html_url": "https://github.com/bogus", + "followers_url": "https://api.github.com/users/bogus/followers", + "following_url": "https://api.github.com/users/bogus/following{/other_user}", + "gists_url": "https://api.github.com/users/bogus/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bogus/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bogus/subscriptions", + "organizations_url": "https://api.github.com/users/bogus/orgs", + "repos_url": "https://api.github.com/users/bogus/repos", + "events_url": "https://api.github.com/users/bogus/events{/privacy}", + "received_events_url": "https://api.github.com/users/bogus/received_events", + "type": "Organization", + "site_admin": false + }, + "repository_selection": "selected", + "access_tokens_url": "https://api.github.com/app/installations/11111111/access_tokens", + "repositories_url": "https://api.github.com/installation/repositories", + "html_url": "https://github.com/organizations/bogus/settings/installations/11111111", + "app_id": 11111, + "target_id": 111111111, + "target_type": "Organization", + "permissions": { + "checks": "write", + "pull_requests": "write", + "contents": "read", + "metadata": "read" + }, + "events": [ + "pull_request", + "push" + ], + "created_at": "2019-07-04T01:19:36.000Z", + "updated_at": "2019-07-30T22:48:09.000Z", + "single_file_name": null +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/createToken/mappings/mapping-githubapp-app.json b/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/createToken/mappings/mapping-githubapp-app.json new file mode 100644 index 0000000000..999f4c8286 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/createToken/mappings/mapping-githubapp-app.json @@ -0,0 +1,34 @@ +{ + "request": { + "url": "/app", + "method": "GET", + "headers" : { + "Accept" : { + "equalTo" : "application/vnd.github.machine-man-preview+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "body-mapping-githubapp-app.json", + "headers": { + "Server": "GitHub.com", + "Date": "Fri, 09 Aug 2019 05:36:38 GMT", + "Content-Type": "application/json; charset=utf-8", + "Status": "200 OK", + "Cache-Control": "public, max-age=60, s-maxage=60", + "Vary": ["Accept","Accept-Encoding"], + "ETag": "W/\"01163b1a237898d328ed56cd0e9aefca\"", + "X-GitHub-Media-Type": "github.machine-man-preview; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-XSS-Protection": "1; mode=block", + "X-GitHub-Request-Id": "E0C4:3088:300C54:3ACB77:5D4D0666" + } + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/createToken/mappings/mapping-githubapp-create-installation-accesstokens.json b/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/createToken/mappings/mapping-githubapp-create-installation-accesstokens.json new file mode 100644 index 0000000000..7996662d18 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/createToken/mappings/mapping-githubapp-create-installation-accesstokens.json @@ -0,0 +1,39 @@ +{ + "request" : { + "url" : "/app/installations/11111111/access_tokens", + "method" : "POST", + "bodyPatterns" : [ { + "equalToJson" : "{\"repository_ids\":[111111111],\"permissions\":{\"pull_requests\":\"write\",\"metadata\":\"read\",\"checks\":\"write\",\"contents\":\"read\"}}", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : false + } ], + "headers" : { + "Accept" : { + "equalTo" : "application/vnd.github.machine-man-preview+json" + } + } + }, + "response" : { + "status" : 201, + "bodyFileName" : "body-githubapp-create-installation-accesstokens.json", + "headers" : { + "Date" : "Sat, 10 Aug 2019 04:54:58 GMT", + "Content-Type" : "application/json; charset=utf-8", + "Server" : "GitHub.com", + "Status" : "201 Created", + "Cache-Control" : "public, max-age=60, s-maxage=60", + "Vary" : [ "Accept", "Accept-Encoding" ], + "ETag" : "\"c47070915d3f78d2c4aea4bd8a2c3351\"", + "X-GitHub-Media-Type" : "github.machine-man-preview; format=json", + "Access-Control-Expose-Headers" : "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin" : "*", + "Strict-Transport-Security" : "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options" : "deny", + "X-Content-Type-Options" : "nosniff", + "X-XSS-Protection" : "1; mode=block", + "Referrer-Policy" : "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy" : "default-src 'none'", + "X-GitHub-Request-Id" : "EEC8:4357:E0DD17:110A2E7:5D4E4E22" + } + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/createToken/mappings/mapping-githubapp-installation-by-user.json b/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/createToken/mappings/mapping-githubapp-installation-by-user.json new file mode 100644 index 0000000000..573705fde7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/createToken/mappings/mapping-githubapp-installation-by-user.json @@ -0,0 +1,34 @@ +{ + "request": { + "url": "/users/bogus/installation", + "method": "GET", + "headers" : { + "Accept" : { + "equalTo" : "application/vnd.github.machine-man-preview+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "body-mapping-githubapp-installation-by-user.json", + "headers": { + "Server": "GitHub.com", + "Date": "Fri, 09 Aug 2019 05:36:38 GMT", + "Content-Type": "application/json; charset=utf-8", + "Status": "200 OK", + "Cache-Control": "public, max-age=60, s-maxage=60", + "Vary": ["Accept","Accept-Encoding"], + "ETag": "W/\"01163b1a237898d328ed56cd0e9aefca\"", + "X-GitHub-Media-Type": "github.machine-man-preview; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-XSS-Protection": "1; mode=block", + "X-GitHub-Request-Id": "E0C4:3088:300C54:3ACB77:5D4D0666" + } + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/deleteInstallation/__files/body-mapping-githubapp-app.json b/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/deleteInstallation/__files/body-mapping-githubapp-app.json new file mode 100644 index 0000000000..d36be086d7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/deleteInstallation/__files/body-mapping-githubapp-app.json @@ -0,0 +1,41 @@ +{ + "id": 11111, + "node_id": "MDM6QXBwMzI2MTY=", + "owner": { + "login": "bogus", + "id": 111111111, + "node_id": "asdfasdfasdf", + "avatar_url": "https://avatars2.githubusercontent.com/u/111111111?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bogus", + "html_url": "https://github.com/bogus", + "followers_url": "https://api.github.com/users/bogus/followers", + "following_url": "https://api.github.com/users/bogus/following{/other_user}", + "gists_url": "https://api.github.com/users/bogus/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bogus/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bogus/subscriptions", + "organizations_url": "https://api.github.com/users/bogus/orgs", + "repos_url": "https://api.github.com/users/bogus/repos", + "events_url": "https://api.github.com/users/bogus/events{/privacy}", + "received_events_url": "https://api.github.com/users/bogus/received_events", + "type": "Organization", + "site_admin": false + }, + "name": "Bogus-Development", + "description": "", + "external_url": "https://bogus.domain.com", + "html_url": "https://github.com/apps/bogus-development", + "created_at": "2019-06-10T04:21:41Z", + "updated_at": "2019-06-10T04:21:41Z", + "permissions": { + "checks": "write", + "contents": "read", + "metadata": "read", + "pull_requests": "write" + }, + "events": [ + "pull_request", + "push" + ], + "installations_count": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/deleteInstallation/__files/body-mapping-githubapp-installation-by-user.json b/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/deleteInstallation/__files/body-mapping-githubapp-installation-by-user.json new file mode 100644 index 0000000000..8975c0c55d --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/deleteInstallation/__files/body-mapping-githubapp-installation-by-user.json @@ -0,0 +1,43 @@ +{ + "id": 11111111, + "account": { + "login": "bogus", + "id": 111111111, + "node_id": "asdfasdfasdf", + "avatar_url": "https://avatars2.githubusercontent.com/u/111111111?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bogus", + "html_url": "https://github.com/bogus", + "followers_url": "https://api.github.com/users/bogus/followers", + "following_url": "https://api.github.com/users/bogus/following{/other_user}", + "gists_url": "https://api.github.com/users/bogus/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bogus/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bogus/subscriptions", + "organizations_url": "https://api.github.com/users/bogus/orgs", + "repos_url": "https://api.github.com/users/bogus/repos", + "events_url": "https://api.github.com/users/bogus/events{/privacy}", + "received_events_url": "https://api.github.com/users/bogus/received_events", + "type": "Organization", + "site_admin": false + }, + "repository_selection": "selected", + "access_tokens_url": "https://api.github.com/app/installations/11111111/access_tokens", + "repositories_url": "https://api.github.com/installation/repositories", + "html_url": "https://github.com/organizations/bogus/settings/installations/11111111", + "app_id": 11111, + "target_id": 111111111, + "target_type": "Organization", + "permissions": { + "checks": "write", + "pull_requests": "write", + "contents": "read", + "metadata": "read" + }, + "events": [ + "pull_request", + "push" + ], + "created_at": "2019-07-04T01:19:36.000Z", + "updated_at": "2019-07-30T22:48:09.000Z", + "single_file_name": null +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/deleteInstallation/mappings/mapping-githubapp-app.json b/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/deleteInstallation/mappings/mapping-githubapp-app.json new file mode 100644 index 0000000000..999f4c8286 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/deleteInstallation/mappings/mapping-githubapp-app.json @@ -0,0 +1,34 @@ +{ + "request": { + "url": "/app", + "method": "GET", + "headers" : { + "Accept" : { + "equalTo" : "application/vnd.github.machine-man-preview+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "body-mapping-githubapp-app.json", + "headers": { + "Server": "GitHub.com", + "Date": "Fri, 09 Aug 2019 05:36:38 GMT", + "Content-Type": "application/json; charset=utf-8", + "Status": "200 OK", + "Cache-Control": "public, max-age=60, s-maxage=60", + "Vary": ["Accept","Accept-Encoding"], + "ETag": "W/\"01163b1a237898d328ed56cd0e9aefca\"", + "X-GitHub-Media-Type": "github.machine-man-preview; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-XSS-Protection": "1; mode=block", + "X-GitHub-Request-Id": "E0C4:3088:300C54:3ACB77:5D4D0666" + } + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/deleteInstallation/mappings/mapping-githubapp-delete-installation.json b/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/deleteInstallation/mappings/mapping-githubapp-delete-installation.json new file mode 100644 index 0000000000..4fbf043a8f --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/deleteInstallation/mappings/mapping-githubapp-delete-installation.json @@ -0,0 +1,33 @@ +{ + "request": { + "url": "/app/installations/11111111", + "method": "DELETE", + "headers" : { + "Accept" : { + "equalTo" : "application/vnd.github.gambit-preview+json" + } + } + }, + "response": { + "status": 204, + "headers": { + "Server": "GitHub.com", + "Date": "Fri, 09 Aug 2019 05:36:38 GMT", + "Content-Type": "application/json; charset=utf-8", + "Status": "204 No Content", + "Cache-Control": "public, max-age=60, s-maxage=60", + "Vary": ["Accept","Accept-Encoding"], + "ETag": "W/\"01163b1a237898d328ed56cd0e9aefca\"", + "X-GitHub-Media-Type": "github.machine-man-preview; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-XSS-Protection": "1; mode=block", + "X-GitHub-Request-Id": "E0C4:3088:300C54:3ACB77:5D4D0666" + } + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/deleteInstallation/mappings/mapping-githubapp-installation-by-user.json b/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/deleteInstallation/mappings/mapping-githubapp-installation-by-user.json new file mode 100644 index 0000000000..573705fde7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/deleteInstallation/mappings/mapping-githubapp-installation-by-user.json @@ -0,0 +1,34 @@ +{ + "request": { + "url": "/users/bogus/installation", + "method": "GET", + "headers" : { + "Accept" : { + "equalTo" : "application/vnd.github.machine-man-preview+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "body-mapping-githubapp-installation-by-user.json", + "headers": { + "Server": "GitHub.com", + "Date": "Fri, 09 Aug 2019 05:36:38 GMT", + "Content-Type": "application/json; charset=utf-8", + "Status": "200 OK", + "Cache-Control": "public, max-age=60, s-maxage=60", + "Vary": ["Accept","Accept-Encoding"], + "ETag": "W/\"01163b1a237898d328ed56cd0e9aefca\"", + "X-GitHub-Media-Type": "github.machine-man-preview; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-XSS-Protection": "1; mode=block", + "X-GitHub-Request-Id": "E0C4:3088:300C54:3ACB77:5D4D0666" + } + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getGitHubApp/__files/body-mapping-githubapp-app.json b/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getGitHubApp/__files/body-mapping-githubapp-app.json new file mode 100644 index 0000000000..d36be086d7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getGitHubApp/__files/body-mapping-githubapp-app.json @@ -0,0 +1,41 @@ +{ + "id": 11111, + "node_id": "MDM6QXBwMzI2MTY=", + "owner": { + "login": "bogus", + "id": 111111111, + "node_id": "asdfasdfasdf", + "avatar_url": "https://avatars2.githubusercontent.com/u/111111111?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bogus", + "html_url": "https://github.com/bogus", + "followers_url": "https://api.github.com/users/bogus/followers", + "following_url": "https://api.github.com/users/bogus/following{/other_user}", + "gists_url": "https://api.github.com/users/bogus/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bogus/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bogus/subscriptions", + "organizations_url": "https://api.github.com/users/bogus/orgs", + "repos_url": "https://api.github.com/users/bogus/repos", + "events_url": "https://api.github.com/users/bogus/events{/privacy}", + "received_events_url": "https://api.github.com/users/bogus/received_events", + "type": "Organization", + "site_admin": false + }, + "name": "Bogus-Development", + "description": "", + "external_url": "https://bogus.domain.com", + "html_url": "https://github.com/apps/bogus-development", + "created_at": "2019-06-10T04:21:41Z", + "updated_at": "2019-06-10T04:21:41Z", + "permissions": { + "checks": "write", + "contents": "read", + "metadata": "read", + "pull_requests": "write" + }, + "events": [ + "pull_request", + "push" + ], + "installations_count": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getGitHubApp/mappings/mapping-githubapp-app.json b/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getGitHubApp/mappings/mapping-githubapp-app.json new file mode 100644 index 0000000000..999f4c8286 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getGitHubApp/mappings/mapping-githubapp-app.json @@ -0,0 +1,34 @@ +{ + "request": { + "url": "/app", + "method": "GET", + "headers" : { + "Accept" : { + "equalTo" : "application/vnd.github.machine-man-preview+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "body-mapping-githubapp-app.json", + "headers": { + "Server": "GitHub.com", + "Date": "Fri, 09 Aug 2019 05:36:38 GMT", + "Content-Type": "application/json; charset=utf-8", + "Status": "200 OK", + "Cache-Control": "public, max-age=60, s-maxage=60", + "Vary": ["Accept","Accept-Encoding"], + "ETag": "W/\"01163b1a237898d328ed56cd0e9aefca\"", + "X-GitHub-Media-Type": "github.machine-man-preview; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-XSS-Protection": "1; mode=block", + "X-GitHub-Request-Id": "E0C4:3088:300C54:3ACB77:5D4D0666" + } + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getInstallationById/__files/body-mapping-githubapp-app.json b/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getInstallationById/__files/body-mapping-githubapp-app.json new file mode 100644 index 0000000000..d36be086d7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getInstallationById/__files/body-mapping-githubapp-app.json @@ -0,0 +1,41 @@ +{ + "id": 11111, + "node_id": "MDM6QXBwMzI2MTY=", + "owner": { + "login": "bogus", + "id": 111111111, + "node_id": "asdfasdfasdf", + "avatar_url": "https://avatars2.githubusercontent.com/u/111111111?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bogus", + "html_url": "https://github.com/bogus", + "followers_url": "https://api.github.com/users/bogus/followers", + "following_url": "https://api.github.com/users/bogus/following{/other_user}", + "gists_url": "https://api.github.com/users/bogus/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bogus/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bogus/subscriptions", + "organizations_url": "https://api.github.com/users/bogus/orgs", + "repos_url": "https://api.github.com/users/bogus/repos", + "events_url": "https://api.github.com/users/bogus/events{/privacy}", + "received_events_url": "https://api.github.com/users/bogus/received_events", + "type": "Organization", + "site_admin": false + }, + "name": "Bogus-Development", + "description": "", + "external_url": "https://bogus.domain.com", + "html_url": "https://github.com/apps/bogus-development", + "created_at": "2019-06-10T04:21:41Z", + "updated_at": "2019-06-10T04:21:41Z", + "permissions": { + "checks": "write", + "contents": "read", + "metadata": "read", + "pull_requests": "write" + }, + "events": [ + "pull_request", + "push" + ], + "installations_count": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getInstallationById/__files/body-mapping-githubapp-installation-by-id.json b/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getInstallationById/__files/body-mapping-githubapp-installation-by-id.json new file mode 100644 index 0000000000..8975c0c55d --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getInstallationById/__files/body-mapping-githubapp-installation-by-id.json @@ -0,0 +1,43 @@ +{ + "id": 11111111, + "account": { + "login": "bogus", + "id": 111111111, + "node_id": "asdfasdfasdf", + "avatar_url": "https://avatars2.githubusercontent.com/u/111111111?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bogus", + "html_url": "https://github.com/bogus", + "followers_url": "https://api.github.com/users/bogus/followers", + "following_url": "https://api.github.com/users/bogus/following{/other_user}", + "gists_url": "https://api.github.com/users/bogus/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bogus/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bogus/subscriptions", + "organizations_url": "https://api.github.com/users/bogus/orgs", + "repos_url": "https://api.github.com/users/bogus/repos", + "events_url": "https://api.github.com/users/bogus/events{/privacy}", + "received_events_url": "https://api.github.com/users/bogus/received_events", + "type": "Organization", + "site_admin": false + }, + "repository_selection": "selected", + "access_tokens_url": "https://api.github.com/app/installations/11111111/access_tokens", + "repositories_url": "https://api.github.com/installation/repositories", + "html_url": "https://github.com/organizations/bogus/settings/installations/11111111", + "app_id": 11111, + "target_id": 111111111, + "target_type": "Organization", + "permissions": { + "checks": "write", + "pull_requests": "write", + "contents": "read", + "metadata": "read" + }, + "events": [ + "pull_request", + "push" + ], + "created_at": "2019-07-04T01:19:36.000Z", + "updated_at": "2019-07-30T22:48:09.000Z", + "single_file_name": null +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getInstallationById/mappings/mapping-githubapp-app.json b/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getInstallationById/mappings/mapping-githubapp-app.json new file mode 100644 index 0000000000..999f4c8286 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getInstallationById/mappings/mapping-githubapp-app.json @@ -0,0 +1,34 @@ +{ + "request": { + "url": "/app", + "method": "GET", + "headers" : { + "Accept" : { + "equalTo" : "application/vnd.github.machine-man-preview+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "body-mapping-githubapp-app.json", + "headers": { + "Server": "GitHub.com", + "Date": "Fri, 09 Aug 2019 05:36:38 GMT", + "Content-Type": "application/json; charset=utf-8", + "Status": "200 OK", + "Cache-Control": "public, max-age=60, s-maxage=60", + "Vary": ["Accept","Accept-Encoding"], + "ETag": "W/\"01163b1a237898d328ed56cd0e9aefca\"", + "X-GitHub-Media-Type": "github.machine-man-preview; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-XSS-Protection": "1; mode=block", + "X-GitHub-Request-Id": "E0C4:3088:300C54:3ACB77:5D4D0666" + } + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getInstallationById/mappings/mapping-githubapp-installation-by-id.json b/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getInstallationById/mappings/mapping-githubapp-installation-by-id.json new file mode 100644 index 0000000000..87ba55f445 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getInstallationById/mappings/mapping-githubapp-installation-by-id.json @@ -0,0 +1,34 @@ +{ + "request": { + "url": "/app/installations/1111111", + "method": "GET", + "headers" : { + "Accept" : { + "equalTo" : "application/vnd.github.machine-man-preview+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "body-mapping-githubapp-installation-by-id.json", + "headers": { + "Server": "GitHub.com", + "Date": "Fri, 09 Aug 2019 05:36:38 GMT", + "Content-Type": "application/json; charset=utf-8", + "Status": "200 OK", + "Cache-Control": "public, max-age=60, s-maxage=60", + "Vary": ["Accept","Accept-Encoding"], + "ETag": "W/\"01163b1a237898d328ed56cd0e9aefca\"", + "X-GitHub-Media-Type": "github.machine-man-preview; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-XSS-Protection": "1; mode=block", + "X-GitHub-Request-Id": "E0C4:3088:300C54:3ACB77:5D4D0666" + } + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getInstallationByOrganization/__files/body-mapping-githubapp-app.json b/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getInstallationByOrganization/__files/body-mapping-githubapp-app.json new file mode 100644 index 0000000000..d36be086d7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getInstallationByOrganization/__files/body-mapping-githubapp-app.json @@ -0,0 +1,41 @@ +{ + "id": 11111, + "node_id": "MDM6QXBwMzI2MTY=", + "owner": { + "login": "bogus", + "id": 111111111, + "node_id": "asdfasdfasdf", + "avatar_url": "https://avatars2.githubusercontent.com/u/111111111?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bogus", + "html_url": "https://github.com/bogus", + "followers_url": "https://api.github.com/users/bogus/followers", + "following_url": "https://api.github.com/users/bogus/following{/other_user}", + "gists_url": "https://api.github.com/users/bogus/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bogus/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bogus/subscriptions", + "organizations_url": "https://api.github.com/users/bogus/orgs", + "repos_url": "https://api.github.com/users/bogus/repos", + "events_url": "https://api.github.com/users/bogus/events{/privacy}", + "received_events_url": "https://api.github.com/users/bogus/received_events", + "type": "Organization", + "site_admin": false + }, + "name": "Bogus-Development", + "description": "", + "external_url": "https://bogus.domain.com", + "html_url": "https://github.com/apps/bogus-development", + "created_at": "2019-06-10T04:21:41Z", + "updated_at": "2019-06-10T04:21:41Z", + "permissions": { + "checks": "write", + "contents": "read", + "metadata": "read", + "pull_requests": "write" + }, + "events": [ + "pull_request", + "push" + ], + "installations_count": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getInstallationByOrganization/__files/body-mapping-githubapp-installation-by-organization.json b/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getInstallationByOrganization/__files/body-mapping-githubapp-installation-by-organization.json new file mode 100644 index 0000000000..8975c0c55d --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getInstallationByOrganization/__files/body-mapping-githubapp-installation-by-organization.json @@ -0,0 +1,43 @@ +{ + "id": 11111111, + "account": { + "login": "bogus", + "id": 111111111, + "node_id": "asdfasdfasdf", + "avatar_url": "https://avatars2.githubusercontent.com/u/111111111?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bogus", + "html_url": "https://github.com/bogus", + "followers_url": "https://api.github.com/users/bogus/followers", + "following_url": "https://api.github.com/users/bogus/following{/other_user}", + "gists_url": "https://api.github.com/users/bogus/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bogus/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bogus/subscriptions", + "organizations_url": "https://api.github.com/users/bogus/orgs", + "repos_url": "https://api.github.com/users/bogus/repos", + "events_url": "https://api.github.com/users/bogus/events{/privacy}", + "received_events_url": "https://api.github.com/users/bogus/received_events", + "type": "Organization", + "site_admin": false + }, + "repository_selection": "selected", + "access_tokens_url": "https://api.github.com/app/installations/11111111/access_tokens", + "repositories_url": "https://api.github.com/installation/repositories", + "html_url": "https://github.com/organizations/bogus/settings/installations/11111111", + "app_id": 11111, + "target_id": 111111111, + "target_type": "Organization", + "permissions": { + "checks": "write", + "pull_requests": "write", + "contents": "read", + "metadata": "read" + }, + "events": [ + "pull_request", + "push" + ], + "created_at": "2019-07-04T01:19:36.000Z", + "updated_at": "2019-07-30T22:48:09.000Z", + "single_file_name": null +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getInstallationByOrganization/mappings/mapping-githubapp-app.json b/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getInstallationByOrganization/mappings/mapping-githubapp-app.json new file mode 100644 index 0000000000..999f4c8286 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getInstallationByOrganization/mappings/mapping-githubapp-app.json @@ -0,0 +1,34 @@ +{ + "request": { + "url": "/app", + "method": "GET", + "headers" : { + "Accept" : { + "equalTo" : "application/vnd.github.machine-man-preview+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "body-mapping-githubapp-app.json", + "headers": { + "Server": "GitHub.com", + "Date": "Fri, 09 Aug 2019 05:36:38 GMT", + "Content-Type": "application/json; charset=utf-8", + "Status": "200 OK", + "Cache-Control": "public, max-age=60, s-maxage=60", + "Vary": ["Accept","Accept-Encoding"], + "ETag": "W/\"01163b1a237898d328ed56cd0e9aefca\"", + "X-GitHub-Media-Type": "github.machine-man-preview; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-XSS-Protection": "1; mode=block", + "X-GitHub-Request-Id": "E0C4:3088:300C54:3ACB77:5D4D0666" + } + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getInstallationByOrganization/mappings/mapping-githubapp-installation-by-organization.json b/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getInstallationByOrganization/mappings/mapping-githubapp-installation-by-organization.json new file mode 100644 index 0000000000..bd94ed4800 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getInstallationByOrganization/mappings/mapping-githubapp-installation-by-organization.json @@ -0,0 +1,34 @@ +{ + "request": { + "url": "/orgs/bogus/installation", + "method": "GET", + "headers" : { + "Accept" : { + "equalTo" : "application/vnd.github.machine-man-preview+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "body-mapping-githubapp-installation-by-organization.json", + "headers": { + "Server": "GitHub.com", + "Date": "Fri, 09 Aug 2019 05:36:38 GMT", + "Content-Type": "application/json; charset=utf-8", + "Status": "200 OK", + "Cache-Control": "public, max-age=60, s-maxage=60", + "Vary": ["Accept","Accept-Encoding"], + "ETag": "W/\"01163b1a237898d328ed56cd0e9aefca\"", + "X-GitHub-Media-Type": "github.machine-man-preview; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-XSS-Protection": "1; mode=block", + "X-GitHub-Request-Id": "E0C4:3088:300C54:3ACB77:5D4D0666" + } + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getInstallationByRepository/__files/body-mapping-githubapp-app.json b/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getInstallationByRepository/__files/body-mapping-githubapp-app.json new file mode 100644 index 0000000000..d36be086d7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getInstallationByRepository/__files/body-mapping-githubapp-app.json @@ -0,0 +1,41 @@ +{ + "id": 11111, + "node_id": "MDM6QXBwMzI2MTY=", + "owner": { + "login": "bogus", + "id": 111111111, + "node_id": "asdfasdfasdf", + "avatar_url": "https://avatars2.githubusercontent.com/u/111111111?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bogus", + "html_url": "https://github.com/bogus", + "followers_url": "https://api.github.com/users/bogus/followers", + "following_url": "https://api.github.com/users/bogus/following{/other_user}", + "gists_url": "https://api.github.com/users/bogus/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bogus/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bogus/subscriptions", + "organizations_url": "https://api.github.com/users/bogus/orgs", + "repos_url": "https://api.github.com/users/bogus/repos", + "events_url": "https://api.github.com/users/bogus/events{/privacy}", + "received_events_url": "https://api.github.com/users/bogus/received_events", + "type": "Organization", + "site_admin": false + }, + "name": "Bogus-Development", + "description": "", + "external_url": "https://bogus.domain.com", + "html_url": "https://github.com/apps/bogus-development", + "created_at": "2019-06-10T04:21:41Z", + "updated_at": "2019-06-10T04:21:41Z", + "permissions": { + "checks": "write", + "contents": "read", + "metadata": "read", + "pull_requests": "write" + }, + "events": [ + "pull_request", + "push" + ], + "installations_count": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getInstallationByRepository/__files/body-mapping-githubapp-installation-by-repository.json b/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getInstallationByRepository/__files/body-mapping-githubapp-installation-by-repository.json new file mode 100644 index 0000000000..8975c0c55d --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getInstallationByRepository/__files/body-mapping-githubapp-installation-by-repository.json @@ -0,0 +1,43 @@ +{ + "id": 11111111, + "account": { + "login": "bogus", + "id": 111111111, + "node_id": "asdfasdfasdf", + "avatar_url": "https://avatars2.githubusercontent.com/u/111111111?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bogus", + "html_url": "https://github.com/bogus", + "followers_url": "https://api.github.com/users/bogus/followers", + "following_url": "https://api.github.com/users/bogus/following{/other_user}", + "gists_url": "https://api.github.com/users/bogus/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bogus/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bogus/subscriptions", + "organizations_url": "https://api.github.com/users/bogus/orgs", + "repos_url": "https://api.github.com/users/bogus/repos", + "events_url": "https://api.github.com/users/bogus/events{/privacy}", + "received_events_url": "https://api.github.com/users/bogus/received_events", + "type": "Organization", + "site_admin": false + }, + "repository_selection": "selected", + "access_tokens_url": "https://api.github.com/app/installations/11111111/access_tokens", + "repositories_url": "https://api.github.com/installation/repositories", + "html_url": "https://github.com/organizations/bogus/settings/installations/11111111", + "app_id": 11111, + "target_id": 111111111, + "target_type": "Organization", + "permissions": { + "checks": "write", + "pull_requests": "write", + "contents": "read", + "metadata": "read" + }, + "events": [ + "pull_request", + "push" + ], + "created_at": "2019-07-04T01:19:36.000Z", + "updated_at": "2019-07-30T22:48:09.000Z", + "single_file_name": null +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getInstallationByRepository/mappings/mapping-githubapp-app.json b/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getInstallationByRepository/mappings/mapping-githubapp-app.json new file mode 100644 index 0000000000..999f4c8286 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getInstallationByRepository/mappings/mapping-githubapp-app.json @@ -0,0 +1,34 @@ +{ + "request": { + "url": "/app", + "method": "GET", + "headers" : { + "Accept" : { + "equalTo" : "application/vnd.github.machine-man-preview+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "body-mapping-githubapp-app.json", + "headers": { + "Server": "GitHub.com", + "Date": "Fri, 09 Aug 2019 05:36:38 GMT", + "Content-Type": "application/json; charset=utf-8", + "Status": "200 OK", + "Cache-Control": "public, max-age=60, s-maxage=60", + "Vary": ["Accept","Accept-Encoding"], + "ETag": "W/\"01163b1a237898d328ed56cd0e9aefca\"", + "X-GitHub-Media-Type": "github.machine-man-preview; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-XSS-Protection": "1; mode=block", + "X-GitHub-Request-Id": "E0C4:3088:300C54:3ACB77:5D4D0666" + } + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getInstallationByRepository/mappings/mapping-githubapp-installation-by-repository.json b/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getInstallationByRepository/mappings/mapping-githubapp-installation-by-repository.json new file mode 100644 index 0000000000..3fd3c011c0 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getInstallationByRepository/mappings/mapping-githubapp-installation-by-repository.json @@ -0,0 +1,34 @@ +{ + "request": { + "url": "/repos/bogus/bogus/installation", + "method": "GET", + "headers" : { + "Accept" : { + "equalTo" : "application/vnd.github.machine-man-preview+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "body-mapping-githubapp-installation-by-repository.json", + "headers": { + "Server": "GitHub.com", + "Date": "Fri, 09 Aug 2019 05:36:38 GMT", + "Content-Type": "application/json; charset=utf-8", + "Status": "200 OK", + "Cache-Control": "public, max-age=60, s-maxage=60", + "Vary": ["Accept","Accept-Encoding"], + "ETag": "W/\"01163b1a237898d328ed56cd0e9aefca\"", + "X-GitHub-Media-Type": "github.machine-man-preview; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-XSS-Protection": "1; mode=block", + "X-GitHub-Request-Id": "E0C4:3088:300C54:3ACB77:5D4D0666" + } + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getInstallationByUser/__files/body-mapping-githubapp-app.json b/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getInstallationByUser/__files/body-mapping-githubapp-app.json new file mode 100644 index 0000000000..d36be086d7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getInstallationByUser/__files/body-mapping-githubapp-app.json @@ -0,0 +1,41 @@ +{ + "id": 11111, + "node_id": "MDM6QXBwMzI2MTY=", + "owner": { + "login": "bogus", + "id": 111111111, + "node_id": "asdfasdfasdf", + "avatar_url": "https://avatars2.githubusercontent.com/u/111111111?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bogus", + "html_url": "https://github.com/bogus", + "followers_url": "https://api.github.com/users/bogus/followers", + "following_url": "https://api.github.com/users/bogus/following{/other_user}", + "gists_url": "https://api.github.com/users/bogus/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bogus/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bogus/subscriptions", + "organizations_url": "https://api.github.com/users/bogus/orgs", + "repos_url": "https://api.github.com/users/bogus/repos", + "events_url": "https://api.github.com/users/bogus/events{/privacy}", + "received_events_url": "https://api.github.com/users/bogus/received_events", + "type": "Organization", + "site_admin": false + }, + "name": "Bogus-Development", + "description": "", + "external_url": "https://bogus.domain.com", + "html_url": "https://github.com/apps/bogus-development", + "created_at": "2019-06-10T04:21:41Z", + "updated_at": "2019-06-10T04:21:41Z", + "permissions": { + "checks": "write", + "contents": "read", + "metadata": "read", + "pull_requests": "write" + }, + "events": [ + "pull_request", + "push" + ], + "installations_count": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getInstallationByUser/__files/body-mapping-githubapp-installation-by-user.json b/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getInstallationByUser/__files/body-mapping-githubapp-installation-by-user.json new file mode 100644 index 0000000000..8975c0c55d --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getInstallationByUser/__files/body-mapping-githubapp-installation-by-user.json @@ -0,0 +1,43 @@ +{ + "id": 11111111, + "account": { + "login": "bogus", + "id": 111111111, + "node_id": "asdfasdfasdf", + "avatar_url": "https://avatars2.githubusercontent.com/u/111111111?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bogus", + "html_url": "https://github.com/bogus", + "followers_url": "https://api.github.com/users/bogus/followers", + "following_url": "https://api.github.com/users/bogus/following{/other_user}", + "gists_url": "https://api.github.com/users/bogus/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bogus/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bogus/subscriptions", + "organizations_url": "https://api.github.com/users/bogus/orgs", + "repos_url": "https://api.github.com/users/bogus/repos", + "events_url": "https://api.github.com/users/bogus/events{/privacy}", + "received_events_url": "https://api.github.com/users/bogus/received_events", + "type": "Organization", + "site_admin": false + }, + "repository_selection": "selected", + "access_tokens_url": "https://api.github.com/app/installations/11111111/access_tokens", + "repositories_url": "https://api.github.com/installation/repositories", + "html_url": "https://github.com/organizations/bogus/settings/installations/11111111", + "app_id": 11111, + "target_id": 111111111, + "target_type": "Organization", + "permissions": { + "checks": "write", + "pull_requests": "write", + "contents": "read", + "metadata": "read" + }, + "events": [ + "pull_request", + "push" + ], + "created_at": "2019-07-04T01:19:36.000Z", + "updated_at": "2019-07-30T22:48:09.000Z", + "single_file_name": null +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getInstallationByUser/mappings/mapping-githubapp-app.json b/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getInstallationByUser/mappings/mapping-githubapp-app.json new file mode 100644 index 0000000000..999f4c8286 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getInstallationByUser/mappings/mapping-githubapp-app.json @@ -0,0 +1,34 @@ +{ + "request": { + "url": "/app", + "method": "GET", + "headers" : { + "Accept" : { + "equalTo" : "application/vnd.github.machine-man-preview+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "body-mapping-githubapp-app.json", + "headers": { + "Server": "GitHub.com", + "Date": "Fri, 09 Aug 2019 05:36:38 GMT", + "Content-Type": "application/json; charset=utf-8", + "Status": "200 OK", + "Cache-Control": "public, max-age=60, s-maxage=60", + "Vary": ["Accept","Accept-Encoding"], + "ETag": "W/\"01163b1a237898d328ed56cd0e9aefca\"", + "X-GitHub-Media-Type": "github.machine-man-preview; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-XSS-Protection": "1; mode=block", + "X-GitHub-Request-Id": "E0C4:3088:300C54:3ACB77:5D4D0666" + } + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getInstallationByUser/mappings/mapping-githubapp-installation-by-user.json b/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getInstallationByUser/mappings/mapping-githubapp-installation-by-user.json new file mode 100644 index 0000000000..573705fde7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/getInstallationByUser/mappings/mapping-githubapp-installation-by-user.json @@ -0,0 +1,34 @@ +{ + "request": { + "url": "/users/bogus/installation", + "method": "GET", + "headers" : { + "Accept" : { + "equalTo" : "application/vnd.github.machine-man-preview+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "body-mapping-githubapp-installation-by-user.json", + "headers": { + "Server": "GitHub.com", + "Date": "Fri, 09 Aug 2019 05:36:38 GMT", + "Content-Type": "application/json; charset=utf-8", + "Status": "200 OK", + "Cache-Control": "public, max-age=60, s-maxage=60", + "Vary": ["Accept","Accept-Encoding"], + "ETag": "W/\"01163b1a237898d328ed56cd0e9aefca\"", + "X-GitHub-Media-Type": "github.machine-man-preview; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-XSS-Protection": "1; mode=block", + "X-GitHub-Request-Id": "E0C4:3088:300C54:3ACB77:5D4D0666" + } + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/listInstallations/__files/body-mapping-githubapp-app.json b/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/listInstallations/__files/body-mapping-githubapp-app.json new file mode 100644 index 0000000000..d36be086d7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/listInstallations/__files/body-mapping-githubapp-app.json @@ -0,0 +1,41 @@ +{ + "id": 11111, + "node_id": "MDM6QXBwMzI2MTY=", + "owner": { + "login": "bogus", + "id": 111111111, + "node_id": "asdfasdfasdf", + "avatar_url": "https://avatars2.githubusercontent.com/u/111111111?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bogus", + "html_url": "https://github.com/bogus", + "followers_url": "https://api.github.com/users/bogus/followers", + "following_url": "https://api.github.com/users/bogus/following{/other_user}", + "gists_url": "https://api.github.com/users/bogus/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bogus/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bogus/subscriptions", + "organizations_url": "https://api.github.com/users/bogus/orgs", + "repos_url": "https://api.github.com/users/bogus/repos", + "events_url": "https://api.github.com/users/bogus/events{/privacy}", + "received_events_url": "https://api.github.com/users/bogus/received_events", + "type": "Organization", + "site_admin": false + }, + "name": "Bogus-Development", + "description": "", + "external_url": "https://bogus.domain.com", + "html_url": "https://github.com/apps/bogus-development", + "created_at": "2019-06-10T04:21:41Z", + "updated_at": "2019-06-10T04:21:41Z", + "permissions": { + "checks": "write", + "contents": "read", + "metadata": "read", + "pull_requests": "write" + }, + "events": [ + "pull_request", + "push" + ], + "installations_count": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/listInstallations/__files/body-mapping-githubapp-installations.json b/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/listInstallations/__files/body-mapping-githubapp-installations.json new file mode 100644 index 0000000000..d81bc3786e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/listInstallations/__files/body-mapping-githubapp-installations.json @@ -0,0 +1,45 @@ +[ + { + "id": 11111111, + "account": { + "login": "bogus", + "id": 111111111, + "node_id": "asdfasdfasdf", + "avatar_url": "https://avatars2.githubusercontent.com/u/111111111?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bogus", + "html_url": "https://github.com/bogus", + "followers_url": "https://api.github.com/users/bogus/followers", + "following_url": "https://api.github.com/users/bogus/following{/other_user}", + "gists_url": "https://api.github.com/users/bogus/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bogus/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bogus/subscriptions", + "organizations_url": "https://api.github.com/users/bogus/orgs", + "repos_url": "https://api.github.com/users/bogus/repos", + "events_url": "https://api.github.com/users/bogus/events{/privacy}", + "received_events_url": "https://api.github.com/users/bogus/received_events", + "type": "Organization", + "site_admin": false + }, + "repository_selection": "selected", + "access_tokens_url": "https://api.github.com/app/installations/11111111/access_tokens", + "repositories_url": "https://api.github.com/installation/repositories", + "html_url": "https://github.com/organizations/bogus/settings/installations/11111111", + "app_id": 11111, + "target_id": 111111111, + "target_type": "Organization", + "permissions": { + "checks": "write", + "pull_requests": "write", + "contents": "read", + "metadata": "read" + }, + "events": [ + "pull_request", + "push" + ], + "created_at": "2019-07-04T01:19:36.000Z", + "updated_at": "2019-07-30T22:48:09.000Z", + "single_file_name": null + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/listInstallations/mappings/mapping-githubapp-app.json b/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/listInstallations/mappings/mapping-githubapp-app.json new file mode 100644 index 0000000000..999f4c8286 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/listInstallations/mappings/mapping-githubapp-app.json @@ -0,0 +1,34 @@ +{ + "request": { + "url": "/app", + "method": "GET", + "headers" : { + "Accept" : { + "equalTo" : "application/vnd.github.machine-man-preview+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "body-mapping-githubapp-app.json", + "headers": { + "Server": "GitHub.com", + "Date": "Fri, 09 Aug 2019 05:36:38 GMT", + "Content-Type": "application/json; charset=utf-8", + "Status": "200 OK", + "Cache-Control": "public, max-age=60, s-maxage=60", + "Vary": ["Accept","Accept-Encoding"], + "ETag": "W/\"01163b1a237898d328ed56cd0e9aefca\"", + "X-GitHub-Media-Type": "github.machine-man-preview; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-XSS-Protection": "1; mode=block", + "X-GitHub-Request-Id": "E0C4:3088:300C54:3ACB77:5D4D0666" + } + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/listInstallations/mappings/mapping-githubapp-installations.json b/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/listInstallations/mappings/mapping-githubapp-installations.json new file mode 100644 index 0000000000..5b01455c26 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHAppTest/wiremock/listInstallations/mappings/mapping-githubapp-installations.json @@ -0,0 +1,34 @@ +{ + "request": { + "url": "/app/installations", + "method": "GET", + "headers" : { + "Accept" : { + "equalTo" : "application/vnd.github.machine-man-preview+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "body-mapping-githubapp-installations.json", + "headers": { + "Server": "GitHub.com", + "Date": "Fri, 09 Aug 2019 05:36:38 GMT", + "Content-Type": "application/json; charset=utf-8", + "Status": "200 OK", + "Cache-Control": "public, max-age=60, s-maxage=60", + "Vary": ["Accept","Accept-Encoding"], + "ETag": "W/\"01163b1a237898d328ed56cd0e9aefca\"", + "X-GitHub-Media-Type": "github.machine-man-preview; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-XSS-Protection": "1; mode=block", + "X-GitHub-Request-Id": "E0C4:3088:300C54:3ACB77:5D4D0666" + } + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testCRUDContent/__files/repos_github-api-test-org_ghcontentintegrationtest-4f1ed47c-f261-4520-80d7-16b5952dd0e9.json b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testCRUDContent/__files/repos_github-api-test-org_ghcontentintegrationtest-4f1ed47c-f261-4520-80d7-16b5952dd0e9.json new file mode 100644 index 0000000000..a2718e2e2d --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testCRUDContent/__files/repos_github-api-test-org_ghcontentintegrationtest-4f1ed47c-f261-4520-80d7-16b5952dd0e9.json @@ -0,0 +1,312 @@ +{ + "id": 40763577, + "node_id": "MDEwOlJlcG9zaXRvcnk0MDc2MzU3Nw==", + "name": "GHContentIntegrationTest", + "full_name": "github-api-test-org/GHContentIntegrationTest", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/GHContentIntegrationTest", + "description": "Repository used for integration test of github-api", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest", + "forks_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/deployments", + "created_at": "2015-08-15T14:14:57Z", + "updated_at": "2019-10-11T22:17:07Z", + "pushed_at": "2019-10-11T22:17:06Z", + "git_url": "git://github.com/github-api-test-org/GHContentIntegrationTest.git", + "ssh_url": "git@github.com:github-api-test-org/GHContentIntegrationTest.git", + "clone_url": "https://github.com/github-api-test-org/GHContentIntegrationTest.git", + "svn_url": "https://github.com/github-api-test-org/GHContentIntegrationTest", + "homepage": null, + "size": 38, + "stargazers_count": 1, + "watchers_count": 1, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 40, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 40, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "parent": { + "id": 19653852, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTY1Mzg1Mg==", + "name": "GHContentIntegrationTest", + "full_name": "kohsuke2/GHContentIntegrationTest", + "private": false, + "owner": { + "login": "kohsuke2", + "id": 1329242, + "node_id": "MDQ6VXNlcjEzMjkyNDI=", + "avatar_url": "https://avatars2.githubusercontent.com/u/1329242?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kohsuke2", + "html_url": "https://github.com/kohsuke2", + "followers_url": "https://api.github.com/users/kohsuke2/followers", + "following_url": "https://api.github.com/users/kohsuke2/following{/other_user}", + "gists_url": "https://api.github.com/users/kohsuke2/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kohsuke2/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kohsuke2/subscriptions", + "organizations_url": "https://api.github.com/users/kohsuke2/orgs", + "repos_url": "https://api.github.com/users/kohsuke2/repos", + "events_url": "https://api.github.com/users/kohsuke2/events{/privacy}", + "received_events_url": "https://api.github.com/users/kohsuke2/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/kohsuke2/GHContentIntegrationTest", + "description": "Repository used for integration test of github-api", + "fork": true, + "url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest", + "forks_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/forks", + "keys_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/teams", + "hooks_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/hooks", + "issue_events_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/issues/events{/number}", + "events_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/events", + "assignees_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/assignees{/user}", + "branches_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/branches{/branch}", + "tags_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/tags", + "blobs_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/statuses/{sha}", + "languages_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/languages", + "stargazers_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/stargazers", + "contributors_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/contributors", + "subscribers_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/subscribers", + "subscription_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/subscription", + "commits_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/contents/{+path}", + "compare_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/merges", + "archive_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/downloads", + "issues_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/issues{/number}", + "pulls_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/pulls{/number}", + "milestones_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/milestones{/number}", + "notifications_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/labels{/name}", + "releases_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/releases{/id}", + "deployments_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/deployments", + "created_at": "2014-05-10T22:50:30Z", + "updated_at": "2018-11-07T15:36:19Z", + "pushed_at": "2018-11-07T15:36:18Z", + "git_url": "git://github.com/kohsuke2/GHContentIntegrationTest.git", + "ssh_url": "git@github.com:kohsuke2/GHContentIntegrationTest.git", + "clone_url": "https://github.com/kohsuke2/GHContentIntegrationTest.git", + "svn_url": "https://github.com/kohsuke2/GHContentIntegrationTest", + "homepage": null, + "size": 111, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + }, + "source": { + "id": 14779458, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDc3OTQ1OA==", + "name": "github-api-test-1", + "full_name": "farmdawgnation/github-api-test-1", + "private": false, + "owner": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/farmdawgnation/github-api-test-1", + "description": "Repository used for integration test of github-api", + "fork": false, + "url": "https://api.github.com/repos/farmdawgnation/github-api-test-1", + "forks_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/forks", + "keys_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/teams", + "hooks_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/hooks", + "issue_events_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/issues/events{/number}", + "events_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/events", + "assignees_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/assignees{/user}", + "branches_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/branches{/branch}", + "tags_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/tags", + "blobs_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/statuses/{sha}", + "languages_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/languages", + "stargazers_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/stargazers", + "contributors_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/contributors", + "subscribers_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/subscribers", + "subscription_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/subscription", + "commits_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/contents/{+path}", + "compare_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/merges", + "archive_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/downloads", + "issues_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/issues{/number}", + "pulls_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/pulls{/number}", + "milestones_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/milestones{/number}", + "notifications_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/labels{/name}", + "releases_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/releases{/id}", + "deployments_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/deployments", + "created_at": "2013-11-28T14:46:38Z", + "updated_at": "2016-02-05T13:33:23Z", + "pushed_at": "2013-11-28T14:55:36Z", + "git_url": "git://github.com/farmdawgnation/github-api-test-1.git", + "ssh_url": "git@github.com:farmdawgnation/github-api-test-1.git", + "clone_url": "https://github.com/farmdawgnation/github-api-test-1.git", + "svn_url": "https://github.com/farmdawgnation/github-api-test-1", + "homepage": null, + "size": 89, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 59, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 59, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + }, + "network_count": 59, + "subscribers_count": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testCRUDContent/__files/repos_github-api-test-org_ghcontentintegrationtest_contents_test-file-to-createtxt-30d0709c-ebc9-4631-8f44-bd942c44a711.json b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testCRUDContent/__files/repos_github-api-test-org_ghcontentintegrationtest_contents_test-file-to-createtxt-30d0709c-ebc9-4631-8f44-bd942c44a711.json new file mode 100644 index 0000000000..ef8e34384d --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testCRUDContent/__files/repos_github-api-test-org_ghcontentintegrationtest_contents_test-file-to-createtxt-30d0709c-ebc9-4631-8f44-bd942c44a711.json @@ -0,0 +1,52 @@ +{ + "content": { + "name": "test-file-to-create.txt", + "path": "test-file-to-create.txt", + "sha": "da2d3cc78776aec68881668775c46a53f0ee2288", + "size": 25, + "url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/contents/test-file-to-create.txt?ref=master", + "html_url": "https://github.com/github-api-test-org/GHContentIntegrationTest/blob/master/test-file-to-create.txt", + "git_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/git/blobs/da2d3cc78776aec68881668775c46a53f0ee2288", + "download_url": "https://raw.githubusercontent.com/github-api-test-org/GHContentIntegrationTest/master/test-file-to-create.txt", + "type": "file", + "_links": { + "self": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/contents/test-file-to-create.txt?ref=master", + "git": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/git/blobs/da2d3cc78776aec68881668775c46a53f0ee2288", + "html": "https://github.com/github-api-test-org/GHContentIntegrationTest/blob/master/test-file-to-create.txt" + } + }, + "commit": { + "sha": "bc9cda986e02ae2677358a28f9cb6097865b3536", + "node_id": "MDY6Q29tbWl0NDA3NjM1Nzc6YmM5Y2RhOTg2ZTAyYWUyNjc3MzU4YTI4ZjljYjYwOTc4NjViMzUzNg==", + "url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/git/commits/bc9cda986e02ae2677358a28f9cb6097865b3536", + "html_url": "https://github.com/github-api-test-org/GHContentIntegrationTest/commit/bc9cda986e02ae2677358a28f9cb6097865b3536", + "author": { + "name": "Liam Newman", + "email": "bitwiseman@gmail.com", + "date": "2019-10-11T22:17:43Z" + }, + "committer": { + "name": "Liam Newman", + "email": "bitwiseman@gmail.com", + "date": "2019-10-11T22:17:43Z" + }, + "tree": { + "sha": "7aaee6a6cddcf48f94a40093de05be83c580ce10", + "url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/git/trees/7aaee6a6cddcf48f94a40093de05be83c580ce10" + }, + "message": "Updated file for integration tests.", + "parents": [ + { + "sha": "88bd1f52fc1e8242758364cee7dce2c82790d272", + "url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/git/commits/88bd1f52fc1e8242758364cee7dce2c82790d272", + "html_url": "https://github.com/github-api-test-org/GHContentIntegrationTest/commit/88bd1f52fc1e8242758364cee7dce2c82790d272" + } + ], + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testCRUDContent/__files/repos_github-api-test-org_ghcontentintegrationtest_contents_test-file-to-createtxt-5d54ef56-18eb-43d3-9167-bf3bfae69460.json b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testCRUDContent/__files/repos_github-api-test-org_ghcontentintegrationtest_contents_test-file-to-createtxt-5d54ef56-18eb-43d3-9167-bf3bfae69460.json new file mode 100644 index 0000000000..8f875233de --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testCRUDContent/__files/repos_github-api-test-org_ghcontentintegrationtest_contents_test-file-to-createtxt-5d54ef56-18eb-43d3-9167-bf3bfae69460.json @@ -0,0 +1,37 @@ +{ + "content": null, + "commit": { + "sha": "9cc8aeb99d67bcbafbf0f5d18bd584ac49758ddd", + "node_id": "MDY6Q29tbWl0NDA3NjM1Nzc6OWNjOGFlYjk5ZDY3YmNiYWZiZjBmNWQxOGJkNTg0YWM0OTc1OGRkZA==", + "url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/git/commits/9cc8aeb99d67bcbafbf0f5d18bd584ac49758ddd", + "html_url": "https://github.com/github-api-test-org/GHContentIntegrationTest/commit/9cc8aeb99d67bcbafbf0f5d18bd584ac49758ddd", + "author": { + "name": "Liam Newman", + "email": "bitwiseman@gmail.com", + "date": "2019-10-11T22:17:44Z" + }, + "committer": { + "name": "Liam Newman", + "email": "bitwiseman@gmail.com", + "date": "2019-10-11T22:17:44Z" + }, + "tree": { + "sha": "7cc7cd2aba0de1a3f684338c892c84b7ebe6635b", + "url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/git/trees/7cc7cd2aba0de1a3f684338c892c84b7ebe6635b" + }, + "message": "Enough of this foolishness!", + "parents": [ + { + "sha": "bc9cda986e02ae2677358a28f9cb6097865b3536", + "url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/git/commits/bc9cda986e02ae2677358a28f9cb6097865b3536", + "html_url": "https://github.com/github-api-test-org/GHContentIntegrationTest/commit/bc9cda986e02ae2677358a28f9cb6097865b3536" + } + ], + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testCRUDContent/__files/repos_github-api-test-org_ghcontentintegrationtest_contents_test-file-to-createtxt-67d9bcdb-d0e8-44b0-9077-8530b3b77997.json b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testCRUDContent/__files/repos_github-api-test-org_ghcontentintegrationtest_contents_test-file-to-createtxt-67d9bcdb-d0e8-44b0-9077-8530b3b77997.json new file mode 100644 index 0000000000..3d20a236e0 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testCRUDContent/__files/repos_github-api-test-org_ghcontentintegrationtest_contents_test-file-to-createtxt-67d9bcdb-d0e8-44b0-9077-8530b3b77997.json @@ -0,0 +1,18 @@ +{ + "name": "test-file-to-create.txt", + "path": "test-file-to-create.txt", + "sha": "8db9c31d79dfb9d0411c7af11b7ec7fabc72c5b1", + "size": 34, + "url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/contents/test-file-to-create.txt?ref=master", + "html_url": "https://github.com/github-api-test-org/GHContentIntegrationTest/blob/master/test-file-to-create.txt", + "git_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/git/blobs/8db9c31d79dfb9d0411c7af11b7ec7fabc72c5b1", + "download_url": "https://raw.githubusercontent.com/github-api-test-org/GHContentIntegrationTest/master/test-file-to-create.txt", + "type": "file", + "content": "dGhpcyBpcyBhbiBhd2Vzb21lIGZpbGUgSSBjcmVhdGVkCg==\n", + "encoding": "base64", + "_links": { + "self": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/contents/test-file-to-create.txt?ref=master", + "git": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/git/blobs/8db9c31d79dfb9d0411c7af11b7ec7fabc72c5b1", + "html": "https://github.com/github-api-test-org/GHContentIntegrationTest/blob/master/test-file-to-create.txt" + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testCRUDContent/__files/repos_github-api-test-org_ghcontentintegrationtest_contents_test-file-to-createtxt-c2b7d86b-e154-4f46-8ab0-f253f77f5dda.json b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testCRUDContent/__files/repos_github-api-test-org_ghcontentintegrationtest_contents_test-file-to-createtxt-c2b7d86b-e154-4f46-8ab0-f253f77f5dda.json new file mode 100644 index 0000000000..b186b542ac --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testCRUDContent/__files/repos_github-api-test-org_ghcontentintegrationtest_contents_test-file-to-createtxt-c2b7d86b-e154-4f46-8ab0-f253f77f5dda.json @@ -0,0 +1,18 @@ +{ + "name": "test-file-to-create.txt", + "path": "test-file-to-create.txt", + "sha": "da2d3cc78776aec68881668775c46a53f0ee2288", + "size": 25, + "url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/contents/test-file-to-create.txt?ref=master", + "html_url": "https://github.com/github-api-test-org/GHContentIntegrationTest/blob/master/test-file-to-create.txt", + "git_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/git/blobs/da2d3cc78776aec68881668775c46a53f0ee2288", + "download_url": "https://raw.githubusercontent.com/github-api-test-org/GHContentIntegrationTest/master/test-file-to-create.txt", + "type": "file", + "content": "dGhpcyBpcyBzb21lIG5ldyBjb250ZW50Cg==\n", + "encoding": "base64", + "_links": { + "self": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/contents/test-file-to-create.txt?ref=master", + "git": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/git/blobs/da2d3cc78776aec68881668775c46a53f0ee2288", + "html": "https://github.com/github-api-test-org/GHContentIntegrationTest/blob/master/test-file-to-create.txt" + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testCRUDContent/__files/repos_github-api-test-org_ghcontentintegrationtest_contents_test-file-to-createtxt-fa09f0c6-b78d-4504-b3ab-6050682ab604.json b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testCRUDContent/__files/repos_github-api-test-org_ghcontentintegrationtest_contents_test-file-to-createtxt-fa09f0c6-b78d-4504-b3ab-6050682ab604.json new file mode 100644 index 0000000000..4758568bd0 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testCRUDContent/__files/repos_github-api-test-org_ghcontentintegrationtest_contents_test-file-to-createtxt-fa09f0c6-b78d-4504-b3ab-6050682ab604.json @@ -0,0 +1,52 @@ +{ + "content": { + "name": "test-file-to-create.txt", + "path": "test-file-to-create.txt", + "sha": "8db9c31d79dfb9d0411c7af11b7ec7fabc72c5b1", + "size": 34, + "url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/contents/test-file-to-create.txt?ref=master", + "html_url": "https://github.com/github-api-test-org/GHContentIntegrationTest/blob/master/test-file-to-create.txt", + "git_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/git/blobs/8db9c31d79dfb9d0411c7af11b7ec7fabc72c5b1", + "download_url": "https://raw.githubusercontent.com/github-api-test-org/GHContentIntegrationTest/master/test-file-to-create.txt", + "type": "file", + "_links": { + "self": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/contents/test-file-to-create.txt?ref=master", + "git": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/git/blobs/8db9c31d79dfb9d0411c7af11b7ec7fabc72c5b1", + "html": "https://github.com/github-api-test-org/GHContentIntegrationTest/blob/master/test-file-to-create.txt" + } + }, + "commit": { + "sha": "88bd1f52fc1e8242758364cee7dce2c82790d272", + "node_id": "MDY6Q29tbWl0NDA3NjM1Nzc6ODhiZDFmNTJmYzFlODI0Mjc1ODM2NGNlZTdkY2UyYzgyNzkwZDI3Mg==", + "url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/git/commits/88bd1f52fc1e8242758364cee7dce2c82790d272", + "html_url": "https://github.com/github-api-test-org/GHContentIntegrationTest/commit/88bd1f52fc1e8242758364cee7dce2c82790d272", + "author": { + "name": "Liam Newman", + "email": "bitwiseman@gmail.com", + "date": "2019-10-11T22:17:42Z" + }, + "committer": { + "name": "Liam Newman", + "email": "bitwiseman@gmail.com", + "date": "2019-10-11T22:17:42Z" + }, + "tree": { + "sha": "baa85f9e7c712c76d80024300011226f4b442945", + "url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/git/trees/baa85f9e7c712c76d80024300011226f4b442945" + }, + "message": "Creating a file for integration tests.", + "parents": [ + { + "sha": "89ac3f7e8c951288c26f6a80bddbd32ecf28fbba", + "url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/git/commits/89ac3f7e8c951288c26f6a80bddbd32ecf28fbba", + "html_url": "https://github.com/github-api-test-org/GHContentIntegrationTest/commit/89ac3f7e8c951288c26f6a80bddbd32ecf28fbba" + } + ], + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testCRUDContent/__files/user-c9f376fa-4819-4dc7-bc79-43cabec4276f.json b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testCRUDContent/__files/user-c9f376fa-4819-4dc7-bc79-43cabec4276f.json new file mode 100644 index 0000000000..760bd7fb8a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testCRUDContent/__files/user-c9f376fa-4819-4dc7-bc79-43cabec4276f.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 168, + "public_gists": 5, + "followers": 138, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testCRUDContent/mappings/repos_github-api-test-org_ghcontentintegrationtest-2-4f1ed4.json b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testCRUDContent/mappings/repos_github-api-test-org_ghcontentintegrationtest-2-4f1ed4.json new file mode 100644 index 0000000000..744c15f42f --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testCRUDContent/mappings/repos_github-api-test-org_ghcontentintegrationtest-2-4f1ed4.json @@ -0,0 +1,40 @@ +{ + "id": "4f1ed47c-f261-4520-80d7-16b5952dd0e9", + "name": "repos_github-api-test-org_ghcontentintegrationtest", + "request": { + "url": "/repos/github-api-test-org/GHContentIntegrationTest", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_ghcontentintegrationtest-4f1ed47c-f261-4520-80d7-16b5952dd0e9.json", + "headers": { + "Server": "GitHub.com", + "Date": "Fri, 11 Oct 2019 22:17:42 GMT", + "Content-Type": "application/json; charset=utf-8", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4693", + "X-RateLimit-Reset": "1570835121", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"7a79bc3c7c98b7f2a0de605eea3ad3f6\"", + "Last-Modified": "Fri, 11 Oct 2019 22:17:07 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C0F4:34C4:13C474:28F9B7:5DA0FF85" + } + }, + "uuid": "4f1ed47c-f261-4520-80d7-16b5952dd0e9", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testCRUDContent/mappings/repos_github-api-test-org_ghcontentintegrationtest_contents_test-file-to-createtxt-3-fa09f0.json b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testCRUDContent/mappings/repos_github-api-test-org_ghcontentintegrationtest_contents_test-file-to-createtxt-3-fa09f0.json new file mode 100644 index 0000000000..141d49597a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testCRUDContent/mappings/repos_github-api-test-org_ghcontentintegrationtest_contents_test-file-to-createtxt-3-fa09f0.json @@ -0,0 +1,46 @@ +{ + "id": "fa09f0c6-b78d-4504-b3ab-6050682ab604", + "name": "repos_github-api-test-org_ghcontentintegrationtest_contents_test-file-to-createtxt", + "request": { + "url": "/repos/github-api-test-org/GHContentIntegrationTest/contents/test-file-to-create.txt", + "method": "PUT", + "bodyPatterns": [ + { + "equalToJson": "{\"path\":\"test-file-to-create.txt\",\"message\":\"Creating a file for integration tests.\",\"content\":\"dGhpcyBpcyBhbiBhd2Vzb21lIGZpbGUgSSBjcmVhdGVkCg==\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "repos_github-api-test-org_ghcontentintegrationtest_contents_test-file-to-createtxt-fa09f0c6-b78d-4504-b3ab-6050682ab604.json", + "headers": { + "Server": "GitHub.com", + "Date": "Fri, 11 Oct 2019 22:17:43 GMT", + "Content-Type": "application/json; charset=utf-8", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4692", + "X-RateLimit-Reset": "1570835121", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"5a65778879e07c7838638cb58a54f72d\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C0F4:34C4:13C485:28FA2A:5DA0FF86" + } + }, + "uuid": "fa09f0c6-b78d-4504-b3ab-6050682ab604", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testCRUDContent/mappings/repos_github-api-test-org_ghcontentintegrationtest_contents_test-file-to-createtxt-4-67d9bc.json b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testCRUDContent/mappings/repos_github-api-test-org_ghcontentintegrationtest_contents_test-file-to-createtxt-4-67d9bc.json new file mode 100644 index 0000000000..47dcccc85d --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testCRUDContent/mappings/repos_github-api-test-org_ghcontentintegrationtest_contents_test-file-to-createtxt-4-67d9bc.json @@ -0,0 +1,43 @@ +{ + "id": "67d9bcdb-d0e8-44b0-9077-8530b3b77997", + "name": "repos_github-api-test-org_ghcontentintegrationtest_contents_test-file-to-createtxt", + "request": { + "url": "/repos/github-api-test-org/GHContentIntegrationTest/contents/test-file-to-create.txt?ref=master", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_ghcontentintegrationtest_contents_test-file-to-createtxt-67d9bcdb-d0e8-44b0-9077-8530b3b77997.json", + "headers": { + "Server": "GitHub.com", + "Date": "Fri, 11 Oct 2019 22:17:43 GMT", + "Content-Type": "application/json; charset=utf-8", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4691", + "X-RateLimit-Reset": "1570835121", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"8db9c31d79dfb9d0411c7af11b7ec7fabc72c5b1\"", + "Last-Modified": "Fri, 11 Oct 2019 22:17:42 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C0F4:34C4:13C4C4:28FAA9:5DA0FF87" + } + }, + "uuid": "67d9bcdb-d0e8-44b0-9077-8530b3b77997", + "persistent": true, + "scenarioName": "scenario-1-repos-github-api-test-org-GHContentIntegrationTest-contents-test-file-to-create.txt", + "requiredScenarioState": "Started", + "newScenarioState": "scenario-1-repos-github-api-test-org-GHContentIntegrationTest-contents-test-file-to-create.txt-2", + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testCRUDContent/mappings/repos_github-api-test-org_ghcontentintegrationtest_contents_test-file-to-createtxt-5-30d070.json b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testCRUDContent/mappings/repos_github-api-test-org_ghcontentintegrationtest_contents_test-file-to-createtxt-5-30d070.json new file mode 100644 index 0000000000..07c37aae53 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testCRUDContent/mappings/repos_github-api-test-org_ghcontentintegrationtest_contents_test-file-to-createtxt-5-30d070.json @@ -0,0 +1,46 @@ +{ + "id": "30d0709c-ebc9-4631-8f44-bd942c44a711", + "name": "repos_github-api-test-org_ghcontentintegrationtest_contents_test-file-to-createtxt", + "request": { + "url": "/repos/github-api-test-org/GHContentIntegrationTest/contents/test-file-to-create.txt", + "method": "PUT", + "bodyPatterns": [ + { + "equalToJson": "{\"path\":\"test-file-to-create.txt\",\"message\":\"Updated file for integration tests.\",\"sha\":\"8db9c31d79dfb9d0411c7af11b7ec7fabc72c5b1\",\"content\":\"dGhpcyBpcyBzb21lIG5ldyBjb250ZW50Cg==\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_ghcontentintegrationtest_contents_test-file-to-createtxt-30d0709c-ebc9-4631-8f44-bd942c44a711.json", + "headers": { + "Server": "GitHub.com", + "Date": "Fri, 11 Oct 2019 22:17:44 GMT", + "Content-Type": "application/json; charset=utf-8", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4690", + "X-RateLimit-Reset": "1570835121", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"8648a7c6196682f3b051a90fffb4f4e3\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C0F4:34C4:13C4D5:28FACF:5DA0FF87" + } + }, + "uuid": "30d0709c-ebc9-4631-8f44-bd942c44a711", + "persistent": true, + "insertionIndex": 5 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testCRUDContent/mappings/repos_github-api-test-org_ghcontentintegrationtest_contents_test-file-to-createtxt-6-c2b7d8.json b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testCRUDContent/mappings/repos_github-api-test-org_ghcontentintegrationtest_contents_test-file-to-createtxt-6-c2b7d8.json new file mode 100644 index 0000000000..34b35eba8f --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testCRUDContent/mappings/repos_github-api-test-org_ghcontentintegrationtest_contents_test-file-to-createtxt-6-c2b7d8.json @@ -0,0 +1,42 @@ +{ + "id": "c2b7d86b-e154-4f46-8ab0-f253f77f5dda", + "name": "repos_github-api-test-org_ghcontentintegrationtest_contents_test-file-to-createtxt", + "request": { + "url": "/repos/github-api-test-org/GHContentIntegrationTest/contents/test-file-to-create.txt?ref=master", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_ghcontentintegrationtest_contents_test-file-to-createtxt-c2b7d86b-e154-4f46-8ab0-f253f77f5dda.json", + "headers": { + "Server": "GitHub.com", + "Date": "Fri, 11 Oct 2019 22:17:44 GMT", + "Content-Type": "application/json; charset=utf-8", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4689", + "X-RateLimit-Reset": "1570835121", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"da2d3cc78776aec68881668775c46a53f0ee2288\"", + "Last-Modified": "Fri, 11 Oct 2019 22:17:43 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C0F4:34C4:13C50E:28FB46:5DA0FF88" + } + }, + "uuid": "c2b7d86b-e154-4f46-8ab0-f253f77f5dda", + "persistent": true, + "scenarioName": "scenario-1-repos-github-api-test-org-GHContentIntegrationTest-contents-test-file-to-create.txt", + "requiredScenarioState": "scenario-1-repos-github-api-test-org-GHContentIntegrationTest-contents-test-file-to-create.txt-2", + "insertionIndex": 6 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testCRUDContent/mappings/repos_github-api-test-org_ghcontentintegrationtest_contents_test-file-to-createtxt-7-5d54ef.json b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testCRUDContent/mappings/repos_github-api-test-org_ghcontentintegrationtest_contents_test-file-to-createtxt-7-5d54ef.json new file mode 100644 index 0000000000..cf34d0a0b9 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testCRUDContent/mappings/repos_github-api-test-org_ghcontentintegrationtest_contents_test-file-to-createtxt-7-5d54ef.json @@ -0,0 +1,39 @@ +{ + "id": "5d54ef56-18eb-43d3-9167-bf3bfae69460", + "name": "repos_github-api-test-org_ghcontentintegrationtest_contents_test-file-to-createtxt", + "request": { + "url": "/repos/github-api-test-org/GHContentIntegrationTest/contents/test-file-to-create.txt?path=test-file-to-create.txt&message=Enough+of+this+foolishness%21&sha=da2d3cc78776aec68881668775c46a53f0ee2288", + "method": "DELETE" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_ghcontentintegrationtest_contents_test-file-to-createtxt-5d54ef56-18eb-43d3-9167-bf3bfae69460.json", + "headers": { + "Server": "GitHub.com", + "Date": "Fri, 11 Oct 2019 22:17:45 GMT", + "Content-Type": "application/json; charset=utf-8", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4688", + "X-RateLimit-Reset": "1570835121", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"6d6afdfe857395e134b3708d795d54e9\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C0F4:34C4:13C51E:28FB7B:5DA0FF88" + } + }, + "uuid": "5d54ef56-18eb-43d3-9167-bf3bfae69460", + "persistent": true, + "insertionIndex": 7 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testCRUDContent/mappings/user-1-c9f376.json b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testCRUDContent/mappings/user-1-c9f376.json new file mode 100644 index 0000000000..1cd6ddcf17 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testCRUDContent/mappings/user-1-c9f376.json @@ -0,0 +1,40 @@ +{ + "id": "c9f376fa-4819-4dc7-bc79-43cabec4276f", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-c9f376fa-4819-4dc7-bc79-43cabec4276f.json", + "headers": { + "Server": "GitHub.com", + "Date": "Fri, 11 Oct 2019 22:17:41 GMT", + "Content-Type": "application/json; charset=utf-8", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4697", + "X-RateLimit-Reset": "1570835121", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"42eed4772a65221c408dcbe210034076\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C0F4:34C4:13C437:28F99B:5DA0FF85" + } + }, + "uuid": "c9f376fa-4819-4dc7-bc79-43cabec4276f", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetDirectoryContent/__files/repos_github-api-test-org_ghcontentintegrationtest-7b176dc1-41fe-4677-ae9d-f420dfa1153f.json b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetDirectoryContent/__files/repos_github-api-test-org_ghcontentintegrationtest-7b176dc1-41fe-4677-ae9d-f420dfa1153f.json new file mode 100644 index 0000000000..a2718e2e2d --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetDirectoryContent/__files/repos_github-api-test-org_ghcontentintegrationtest-7b176dc1-41fe-4677-ae9d-f420dfa1153f.json @@ -0,0 +1,312 @@ +{ + "id": 40763577, + "node_id": "MDEwOlJlcG9zaXRvcnk0MDc2MzU3Nw==", + "name": "GHContentIntegrationTest", + "full_name": "github-api-test-org/GHContentIntegrationTest", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/GHContentIntegrationTest", + "description": "Repository used for integration test of github-api", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest", + "forks_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/deployments", + "created_at": "2015-08-15T14:14:57Z", + "updated_at": "2019-10-11T22:17:07Z", + "pushed_at": "2019-10-11T22:17:06Z", + "git_url": "git://github.com/github-api-test-org/GHContentIntegrationTest.git", + "ssh_url": "git@github.com:github-api-test-org/GHContentIntegrationTest.git", + "clone_url": "https://github.com/github-api-test-org/GHContentIntegrationTest.git", + "svn_url": "https://github.com/github-api-test-org/GHContentIntegrationTest", + "homepage": null, + "size": 38, + "stargazers_count": 1, + "watchers_count": 1, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 40, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 40, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "parent": { + "id": 19653852, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTY1Mzg1Mg==", + "name": "GHContentIntegrationTest", + "full_name": "kohsuke2/GHContentIntegrationTest", + "private": false, + "owner": { + "login": "kohsuke2", + "id": 1329242, + "node_id": "MDQ6VXNlcjEzMjkyNDI=", + "avatar_url": "https://avatars2.githubusercontent.com/u/1329242?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kohsuke2", + "html_url": "https://github.com/kohsuke2", + "followers_url": "https://api.github.com/users/kohsuke2/followers", + "following_url": "https://api.github.com/users/kohsuke2/following{/other_user}", + "gists_url": "https://api.github.com/users/kohsuke2/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kohsuke2/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kohsuke2/subscriptions", + "organizations_url": "https://api.github.com/users/kohsuke2/orgs", + "repos_url": "https://api.github.com/users/kohsuke2/repos", + "events_url": "https://api.github.com/users/kohsuke2/events{/privacy}", + "received_events_url": "https://api.github.com/users/kohsuke2/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/kohsuke2/GHContentIntegrationTest", + "description": "Repository used for integration test of github-api", + "fork": true, + "url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest", + "forks_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/forks", + "keys_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/teams", + "hooks_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/hooks", + "issue_events_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/issues/events{/number}", + "events_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/events", + "assignees_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/assignees{/user}", + "branches_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/branches{/branch}", + "tags_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/tags", + "blobs_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/statuses/{sha}", + "languages_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/languages", + "stargazers_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/stargazers", + "contributors_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/contributors", + "subscribers_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/subscribers", + "subscription_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/subscription", + "commits_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/contents/{+path}", + "compare_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/merges", + "archive_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/downloads", + "issues_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/issues{/number}", + "pulls_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/pulls{/number}", + "milestones_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/milestones{/number}", + "notifications_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/labels{/name}", + "releases_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/releases{/id}", + "deployments_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/deployments", + "created_at": "2014-05-10T22:50:30Z", + "updated_at": "2018-11-07T15:36:19Z", + "pushed_at": "2018-11-07T15:36:18Z", + "git_url": "git://github.com/kohsuke2/GHContentIntegrationTest.git", + "ssh_url": "git@github.com:kohsuke2/GHContentIntegrationTest.git", + "clone_url": "https://github.com/kohsuke2/GHContentIntegrationTest.git", + "svn_url": "https://github.com/kohsuke2/GHContentIntegrationTest", + "homepage": null, + "size": 111, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + }, + "source": { + "id": 14779458, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDc3OTQ1OA==", + "name": "github-api-test-1", + "full_name": "farmdawgnation/github-api-test-1", + "private": false, + "owner": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/farmdawgnation/github-api-test-1", + "description": "Repository used for integration test of github-api", + "fork": false, + "url": "https://api.github.com/repos/farmdawgnation/github-api-test-1", + "forks_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/forks", + "keys_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/teams", + "hooks_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/hooks", + "issue_events_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/issues/events{/number}", + "events_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/events", + "assignees_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/assignees{/user}", + "branches_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/branches{/branch}", + "tags_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/tags", + "blobs_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/statuses/{sha}", + "languages_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/languages", + "stargazers_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/stargazers", + "contributors_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/contributors", + "subscribers_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/subscribers", + "subscription_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/subscription", + "commits_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/contents/{+path}", + "compare_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/merges", + "archive_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/downloads", + "issues_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/issues{/number}", + "pulls_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/pulls{/number}", + "milestones_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/milestones{/number}", + "notifications_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/labels{/name}", + "releases_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/releases{/id}", + "deployments_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/deployments", + "created_at": "2013-11-28T14:46:38Z", + "updated_at": "2016-02-05T13:33:23Z", + "pushed_at": "2013-11-28T14:55:36Z", + "git_url": "git://github.com/farmdawgnation/github-api-test-1.git", + "ssh_url": "git@github.com:farmdawgnation/github-api-test-1.git", + "clone_url": "https://github.com/farmdawgnation/github-api-test-1.git", + "svn_url": "https://github.com/farmdawgnation/github-api-test-1", + "homepage": null, + "size": 89, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 59, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 59, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + }, + "network_count": 59, + "subscribers_count": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetDirectoryContent/__files/repos_github-api-test-org_ghcontentintegrationtest_contents_ghcontent-ro_a-dir-with-3-entries-b4bdb0bb-efdb-4a83-b03e-053ac0e8c56a.json b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetDirectoryContent/__files/repos_github-api-test-org_ghcontentintegrationtest_contents_ghcontent-ro_a-dir-with-3-entries-b4bdb0bb-efdb-4a83-b03e-053ac0e8c56a.json new file mode 100644 index 0000000000..c972920857 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetDirectoryContent/__files/repos_github-api-test-org_ghcontentintegrationtest_contents_ghcontent-ro_a-dir-with-3-entries-b4bdb0bb-efdb-4a83-b03e-053ac0e8c56a.json @@ -0,0 +1,50 @@ +[ + { + "name": "entry-one", + "path": "ghcontent-ro/a-dir-with-3-entries/entry-one", + "sha": "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", + "size": 0, + "url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/contents/ghcontent-ro/a-dir-with-3-entries/entry-one?ref=master", + "html_url": "https://github.com/github-api-test-org/GHContentIntegrationTest/blob/master/ghcontent-ro/a-dir-with-3-entries/entry-one", + "git_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/git/blobs/e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", + "download_url": "https://raw.githubusercontent.com/github-api-test-org/GHContentIntegrationTest/master/ghcontent-ro/a-dir-with-3-entries/entry-one", + "type": "file", + "_links": { + "self": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/contents/ghcontent-ro/a-dir-with-3-entries/entry-one?ref=master", + "git": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/git/blobs/e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", + "html": "https://github.com/github-api-test-org/GHContentIntegrationTest/blob/master/ghcontent-ro/a-dir-with-3-entries/entry-one" + } + }, + { + "name": "entry-three", + "path": "ghcontent-ro/a-dir-with-3-entries/entry-three", + "sha": "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", + "size": 0, + "url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/contents/ghcontent-ro/a-dir-with-3-entries/entry-three?ref=master", + "html_url": "https://github.com/github-api-test-org/GHContentIntegrationTest/blob/master/ghcontent-ro/a-dir-with-3-entries/entry-three", + "git_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/git/blobs/e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", + "download_url": "https://raw.githubusercontent.com/github-api-test-org/GHContentIntegrationTest/master/ghcontent-ro/a-dir-with-3-entries/entry-three", + "type": "file", + "_links": { + "self": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/contents/ghcontent-ro/a-dir-with-3-entries/entry-three?ref=master", + "git": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/git/blobs/e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", + "html": "https://github.com/github-api-test-org/GHContentIntegrationTest/blob/master/ghcontent-ro/a-dir-with-3-entries/entry-three" + } + }, + { + "name": "entry-two", + "path": "ghcontent-ro/a-dir-with-3-entries/entry-two", + "sha": "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", + "size": 0, + "url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/contents/ghcontent-ro/a-dir-with-3-entries/entry-two?ref=master", + "html_url": "https://github.com/github-api-test-org/GHContentIntegrationTest/blob/master/ghcontent-ro/a-dir-with-3-entries/entry-two", + "git_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/git/blobs/e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", + "download_url": "https://raw.githubusercontent.com/github-api-test-org/GHContentIntegrationTest/master/ghcontent-ro/a-dir-with-3-entries/entry-two", + "type": "file", + "_links": { + "self": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/contents/ghcontent-ro/a-dir-with-3-entries/entry-two?ref=master", + "git": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/git/blobs/e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", + "html": "https://github.com/github-api-test-org/GHContentIntegrationTest/blob/master/ghcontent-ro/a-dir-with-3-entries/entry-two" + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetDirectoryContent/__files/user-842cc871-f338-4cc0-8fb0-db276fb4224a.json b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetDirectoryContent/__files/user-842cc871-f338-4cc0-8fb0-db276fb4224a.json new file mode 100644 index 0000000000..760bd7fb8a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetDirectoryContent/__files/user-842cc871-f338-4cc0-8fb0-db276fb4224a.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 168, + "public_gists": 5, + "followers": 138, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetDirectoryContent/mappings/repos_github-api-test-org_ghcontentintegrationtest-2-7b176d.json b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetDirectoryContent/mappings/repos_github-api-test-org_ghcontentintegrationtest-2-7b176d.json new file mode 100644 index 0000000000..fc626d3292 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetDirectoryContent/mappings/repos_github-api-test-org_ghcontentintegrationtest-2-7b176d.json @@ -0,0 +1,40 @@ +{ + "id": "7b176dc1-41fe-4677-ae9d-f420dfa1153f", + "name": "repos_github-api-test-org_ghcontentintegrationtest", + "request": { + "url": "/repos/github-api-test-org/GHContentIntegrationTest", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_ghcontentintegrationtest-7b176dc1-41fe-4677-ae9d-f420dfa1153f.json", + "headers": { + "Server": "GitHub.com", + "Date": "Fri, 11 Oct 2019 22:17:36 GMT", + "Content-Type": "application/json; charset=utf-8", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4717", + "X-RateLimit-Reset": "1570835121", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"7a79bc3c7c98b7f2a0de605eea3ad3f6\"", + "Last-Modified": "Fri, 11 Oct 2019 22:17:07 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C0E5:4B0B:183A14:2F203B:5DA0FF7F" + } + }, + "uuid": "7b176dc1-41fe-4677-ae9d-f420dfa1153f", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetDirectoryContent/mappings/repos_github-api-test-org_ghcontentintegrationtest_contents_ghcontent-ro_a-dir-with-3-entries-3-b4bdb0.json b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetDirectoryContent/mappings/repos_github-api-test-org_ghcontentintegrationtest_contents_ghcontent-ro_a-dir-with-3-entries-3-b4bdb0.json new file mode 100644 index 0000000000..d85a9bbc67 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetDirectoryContent/mappings/repos_github-api-test-org_ghcontentintegrationtest_contents_ghcontent-ro_a-dir-with-3-entries-3-b4bdb0.json @@ -0,0 +1,40 @@ +{ + "id": "b4bdb0bb-efdb-4a83-b03e-053ac0e8c56a", + "name": "repos_github-api-test-org_ghcontentintegrationtest_contents_ghcontent-ro_a-dir-with-3-entries", + "request": { + "url": "/repos/github-api-test-org/GHContentIntegrationTest/contents/ghcontent-ro/a-dir-with-3-entries", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_ghcontentintegrationtest_contents_ghcontent-ro_a-dir-with-3-entries-b4bdb0bb-efdb-4a83-b03e-053ac0e8c56a.json", + "headers": { + "Server": "GitHub.com", + "Date": "Fri, 11 Oct 2019 22:17:37 GMT", + "Content-Type": "application/json; charset=utf-8", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4716", + "X-RateLimit-Reset": "1570835121", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"7cc7cd2aba0de1a3f684338c892c84b7ebe6635b\"", + "Last-Modified": "Fri, 11 Oct 2019 22:17:07 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C0E5:4B0B:183A34:2F2135:5DA0FF80" + } + }, + "uuid": "b4bdb0bb-efdb-4a83-b03e-053ac0e8c56a", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetDirectoryContent/mappings/user-1-842cc8.json b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetDirectoryContent/mappings/user-1-842cc8.json new file mode 100644 index 0000000000..fc31299988 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetDirectoryContent/mappings/user-1-842cc8.json @@ -0,0 +1,40 @@ +{ + "id": "842cc871-f338-4cc0-8fb0-db276fb4224a", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-842cc871-f338-4cc0-8fb0-db276fb4224a.json", + "headers": { + "Server": "GitHub.com", + "Date": "Fri, 11 Oct 2019 22:17:35 GMT", + "Content-Type": "application/json; charset=utf-8", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4721", + "X-RateLimit-Reset": "1570835121", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"42eed4772a65221c408dcbe210034076\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C0E5:4B0B:18399E:2F2026:5DA0FF7F" + } + }, + "uuid": "842cc871-f338-4cc0-8fb0-db276fb4224a", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetDirectoryContentTrailingSlash/__files/repos_github-api-test-org_ghcontentintegrationtest-5c51b83e-0d7f-4289-9b1f-fb2a2b15c4ed.json b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetDirectoryContentTrailingSlash/__files/repos_github-api-test-org_ghcontentintegrationtest-5c51b83e-0d7f-4289-9b1f-fb2a2b15c4ed.json new file mode 100644 index 0000000000..a2718e2e2d --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetDirectoryContentTrailingSlash/__files/repos_github-api-test-org_ghcontentintegrationtest-5c51b83e-0d7f-4289-9b1f-fb2a2b15c4ed.json @@ -0,0 +1,312 @@ +{ + "id": 40763577, + "node_id": "MDEwOlJlcG9zaXRvcnk0MDc2MzU3Nw==", + "name": "GHContentIntegrationTest", + "full_name": "github-api-test-org/GHContentIntegrationTest", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/GHContentIntegrationTest", + "description": "Repository used for integration test of github-api", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest", + "forks_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/deployments", + "created_at": "2015-08-15T14:14:57Z", + "updated_at": "2019-10-11T22:17:07Z", + "pushed_at": "2019-10-11T22:17:06Z", + "git_url": "git://github.com/github-api-test-org/GHContentIntegrationTest.git", + "ssh_url": "git@github.com:github-api-test-org/GHContentIntegrationTest.git", + "clone_url": "https://github.com/github-api-test-org/GHContentIntegrationTest.git", + "svn_url": "https://github.com/github-api-test-org/GHContentIntegrationTest", + "homepage": null, + "size": 38, + "stargazers_count": 1, + "watchers_count": 1, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 40, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 40, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "parent": { + "id": 19653852, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTY1Mzg1Mg==", + "name": "GHContentIntegrationTest", + "full_name": "kohsuke2/GHContentIntegrationTest", + "private": false, + "owner": { + "login": "kohsuke2", + "id": 1329242, + "node_id": "MDQ6VXNlcjEzMjkyNDI=", + "avatar_url": "https://avatars2.githubusercontent.com/u/1329242?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kohsuke2", + "html_url": "https://github.com/kohsuke2", + "followers_url": "https://api.github.com/users/kohsuke2/followers", + "following_url": "https://api.github.com/users/kohsuke2/following{/other_user}", + "gists_url": "https://api.github.com/users/kohsuke2/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kohsuke2/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kohsuke2/subscriptions", + "organizations_url": "https://api.github.com/users/kohsuke2/orgs", + "repos_url": "https://api.github.com/users/kohsuke2/repos", + "events_url": "https://api.github.com/users/kohsuke2/events{/privacy}", + "received_events_url": "https://api.github.com/users/kohsuke2/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/kohsuke2/GHContentIntegrationTest", + "description": "Repository used for integration test of github-api", + "fork": true, + "url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest", + "forks_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/forks", + "keys_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/teams", + "hooks_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/hooks", + "issue_events_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/issues/events{/number}", + "events_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/events", + "assignees_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/assignees{/user}", + "branches_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/branches{/branch}", + "tags_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/tags", + "blobs_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/statuses/{sha}", + "languages_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/languages", + "stargazers_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/stargazers", + "contributors_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/contributors", + "subscribers_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/subscribers", + "subscription_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/subscription", + "commits_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/contents/{+path}", + "compare_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/merges", + "archive_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/downloads", + "issues_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/issues{/number}", + "pulls_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/pulls{/number}", + "milestones_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/milestones{/number}", + "notifications_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/labels{/name}", + "releases_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/releases{/id}", + "deployments_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/deployments", + "created_at": "2014-05-10T22:50:30Z", + "updated_at": "2018-11-07T15:36:19Z", + "pushed_at": "2018-11-07T15:36:18Z", + "git_url": "git://github.com/kohsuke2/GHContentIntegrationTest.git", + "ssh_url": "git@github.com:kohsuke2/GHContentIntegrationTest.git", + "clone_url": "https://github.com/kohsuke2/GHContentIntegrationTest.git", + "svn_url": "https://github.com/kohsuke2/GHContentIntegrationTest", + "homepage": null, + "size": 111, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + }, + "source": { + "id": 14779458, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDc3OTQ1OA==", + "name": "github-api-test-1", + "full_name": "farmdawgnation/github-api-test-1", + "private": false, + "owner": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/farmdawgnation/github-api-test-1", + "description": "Repository used for integration test of github-api", + "fork": false, + "url": "https://api.github.com/repos/farmdawgnation/github-api-test-1", + "forks_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/forks", + "keys_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/teams", + "hooks_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/hooks", + "issue_events_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/issues/events{/number}", + "events_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/events", + "assignees_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/assignees{/user}", + "branches_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/branches{/branch}", + "tags_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/tags", + "blobs_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/statuses/{sha}", + "languages_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/languages", + "stargazers_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/stargazers", + "contributors_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/contributors", + "subscribers_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/subscribers", + "subscription_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/subscription", + "commits_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/contents/{+path}", + "compare_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/merges", + "archive_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/downloads", + "issues_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/issues{/number}", + "pulls_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/pulls{/number}", + "milestones_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/milestones{/number}", + "notifications_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/labels{/name}", + "releases_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/releases{/id}", + "deployments_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/deployments", + "created_at": "2013-11-28T14:46:38Z", + "updated_at": "2016-02-05T13:33:23Z", + "pushed_at": "2013-11-28T14:55:36Z", + "git_url": "git://github.com/farmdawgnation/github-api-test-1.git", + "ssh_url": "git@github.com:farmdawgnation/github-api-test-1.git", + "clone_url": "https://github.com/farmdawgnation/github-api-test-1.git", + "svn_url": "https://github.com/farmdawgnation/github-api-test-1", + "homepage": null, + "size": 89, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 59, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 59, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + }, + "network_count": 59, + "subscribers_count": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetDirectoryContentTrailingSlash/__files/repos_github-api-test-org_ghcontentintegrationtest_contents_ghcontent-ro_a-dir-with-3-entries-29ca1e20-a321-449e-93db-dc5155bb4118.json b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetDirectoryContentTrailingSlash/__files/repos_github-api-test-org_ghcontentintegrationtest_contents_ghcontent-ro_a-dir-with-3-entries-29ca1e20-a321-449e-93db-dc5155bb4118.json new file mode 100644 index 0000000000..c972920857 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetDirectoryContentTrailingSlash/__files/repos_github-api-test-org_ghcontentintegrationtest_contents_ghcontent-ro_a-dir-with-3-entries-29ca1e20-a321-449e-93db-dc5155bb4118.json @@ -0,0 +1,50 @@ +[ + { + "name": "entry-one", + "path": "ghcontent-ro/a-dir-with-3-entries/entry-one", + "sha": "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", + "size": 0, + "url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/contents/ghcontent-ro/a-dir-with-3-entries/entry-one?ref=master", + "html_url": "https://github.com/github-api-test-org/GHContentIntegrationTest/blob/master/ghcontent-ro/a-dir-with-3-entries/entry-one", + "git_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/git/blobs/e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", + "download_url": "https://raw.githubusercontent.com/github-api-test-org/GHContentIntegrationTest/master/ghcontent-ro/a-dir-with-3-entries/entry-one", + "type": "file", + "_links": { + "self": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/contents/ghcontent-ro/a-dir-with-3-entries/entry-one?ref=master", + "git": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/git/blobs/e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", + "html": "https://github.com/github-api-test-org/GHContentIntegrationTest/blob/master/ghcontent-ro/a-dir-with-3-entries/entry-one" + } + }, + { + "name": "entry-three", + "path": "ghcontent-ro/a-dir-with-3-entries/entry-three", + "sha": "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", + "size": 0, + "url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/contents/ghcontent-ro/a-dir-with-3-entries/entry-three?ref=master", + "html_url": "https://github.com/github-api-test-org/GHContentIntegrationTest/blob/master/ghcontent-ro/a-dir-with-3-entries/entry-three", + "git_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/git/blobs/e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", + "download_url": "https://raw.githubusercontent.com/github-api-test-org/GHContentIntegrationTest/master/ghcontent-ro/a-dir-with-3-entries/entry-three", + "type": "file", + "_links": { + "self": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/contents/ghcontent-ro/a-dir-with-3-entries/entry-three?ref=master", + "git": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/git/blobs/e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", + "html": "https://github.com/github-api-test-org/GHContentIntegrationTest/blob/master/ghcontent-ro/a-dir-with-3-entries/entry-three" + } + }, + { + "name": "entry-two", + "path": "ghcontent-ro/a-dir-with-3-entries/entry-two", + "sha": "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", + "size": 0, + "url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/contents/ghcontent-ro/a-dir-with-3-entries/entry-two?ref=master", + "html_url": "https://github.com/github-api-test-org/GHContentIntegrationTest/blob/master/ghcontent-ro/a-dir-with-3-entries/entry-two", + "git_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/git/blobs/e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", + "download_url": "https://raw.githubusercontent.com/github-api-test-org/GHContentIntegrationTest/master/ghcontent-ro/a-dir-with-3-entries/entry-two", + "type": "file", + "_links": { + "self": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/contents/ghcontent-ro/a-dir-with-3-entries/entry-two?ref=master", + "git": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/git/blobs/e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", + "html": "https://github.com/github-api-test-org/GHContentIntegrationTest/blob/master/ghcontent-ro/a-dir-with-3-entries/entry-two" + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetDirectoryContentTrailingSlash/__files/user-00d46d71-d7b4-430e-948c-8a70ecd0e9b3.json b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetDirectoryContentTrailingSlash/__files/user-00d46d71-d7b4-430e-948c-8a70ecd0e9b3.json new file mode 100644 index 0000000000..760bd7fb8a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetDirectoryContentTrailingSlash/__files/user-00d46d71-d7b4-430e-948c-8a70ecd0e9b3.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 168, + "public_gists": 5, + "followers": 138, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetDirectoryContentTrailingSlash/mappings/repos_github-api-test-org_ghcontentintegrationtest-2-5c51b8.json b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetDirectoryContentTrailingSlash/mappings/repos_github-api-test-org_ghcontentintegrationtest-2-5c51b8.json new file mode 100644 index 0000000000..2c83c43aa9 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetDirectoryContentTrailingSlash/mappings/repos_github-api-test-org_ghcontentintegrationtest-2-5c51b8.json @@ -0,0 +1,40 @@ +{ + "id": "5c51b83e-0d7f-4289-9b1f-fb2a2b15c4ed", + "name": "repos_github-api-test-org_ghcontentintegrationtest", + "request": { + "url": "/repos/github-api-test-org/GHContentIntegrationTest", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_ghcontentintegrationtest-5c51b83e-0d7f-4289-9b1f-fb2a2b15c4ed.json", + "headers": { + "Server": "GitHub.com", + "Date": "Fri, 11 Oct 2019 22:17:38 GMT", + "Content-Type": "application/json; charset=utf-8", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4709", + "X-RateLimit-Reset": "1570835121", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"7a79bc3c7c98b7f2a0de605eea3ad3f6\"", + "Last-Modified": "Fri, 11 Oct 2019 22:17:07 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C0EA:0DF0:11FF02:271656:5DA0FF82" + } + }, + "uuid": "5c51b83e-0d7f-4289-9b1f-fb2a2b15c4ed", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetDirectoryContentTrailingSlash/mappings/repos_github-api-test-org_ghcontentintegrationtest_contents_ghcontent-ro_a-dir-with-3-entries-3-29ca1e.json b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetDirectoryContentTrailingSlash/mappings/repos_github-api-test-org_ghcontentintegrationtest_contents_ghcontent-ro_a-dir-with-3-entries-3-29ca1e.json new file mode 100644 index 0000000000..a434db307b --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetDirectoryContentTrailingSlash/mappings/repos_github-api-test-org_ghcontentintegrationtest_contents_ghcontent-ro_a-dir-with-3-entries-3-29ca1e.json @@ -0,0 +1,40 @@ +{ + "id": "29ca1e20-a321-449e-93db-dc5155bb4118", + "name": "repos_github-api-test-org_ghcontentintegrationtest_contents_ghcontent-ro_a-dir-with-3-entries", + "request": { + "url": "/repos/github-api-test-org/GHContentIntegrationTest/contents/ghcontent-ro/a-dir-with-3-entries?ref=master", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_ghcontentintegrationtest_contents_ghcontent-ro_a-dir-with-3-entries-29ca1e20-a321-449e-93db-dc5155bb4118.json", + "headers": { + "Server": "GitHub.com", + "Date": "Fri, 11 Oct 2019 22:17:38 GMT", + "Content-Type": "application/json; charset=utf-8", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4708", + "X-RateLimit-Reset": "1570835121", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"7cc7cd2aba0de1a3f684338c892c84b7ebe6635b\"", + "Last-Modified": "Fri, 11 Oct 2019 22:17:07 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C0EA:0DF0:11FF0E:27169E:5DA0FF82" + } + }, + "uuid": "29ca1e20-a321-449e-93db-dc5155bb4118", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetDirectoryContentTrailingSlash/mappings/user-1-00d46d.json b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetDirectoryContentTrailingSlash/mappings/user-1-00d46d.json new file mode 100644 index 0000000000..ae505d7fc3 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetDirectoryContentTrailingSlash/mappings/user-1-00d46d.json @@ -0,0 +1,40 @@ +{ + "id": "00d46d71-d7b4-430e-948c-8a70ecd0e9b3", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-00d46d71-d7b4-430e-948c-8a70ecd0e9b3.json", + "headers": { + "Server": "GitHub.com", + "Date": "Fri, 11 Oct 2019 22:17:38 GMT", + "Content-Type": "application/json; charset=utf-8", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4713", + "X-RateLimit-Reset": "1570835121", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"42eed4772a65221c408dcbe210034076\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C0EA:0DF0:11FEEA:271644:5DA0FF81" + } + }, + "uuid": "00d46d71-d7b4-430e-948c-8a70ecd0e9b3", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetEmptyFileContent/__files/repos_github-api-test-org_ghcontentintegrationtest-0c161f59-1b24-493e-b05a-cea86caa45a9.json b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetEmptyFileContent/__files/repos_github-api-test-org_ghcontentintegrationtest-0c161f59-1b24-493e-b05a-cea86caa45a9.json new file mode 100644 index 0000000000..a2718e2e2d --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetEmptyFileContent/__files/repos_github-api-test-org_ghcontentintegrationtest-0c161f59-1b24-493e-b05a-cea86caa45a9.json @@ -0,0 +1,312 @@ +{ + "id": 40763577, + "node_id": "MDEwOlJlcG9zaXRvcnk0MDc2MzU3Nw==", + "name": "GHContentIntegrationTest", + "full_name": "github-api-test-org/GHContentIntegrationTest", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/GHContentIntegrationTest", + "description": "Repository used for integration test of github-api", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest", + "forks_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/deployments", + "created_at": "2015-08-15T14:14:57Z", + "updated_at": "2019-10-11T22:17:07Z", + "pushed_at": "2019-10-11T22:17:06Z", + "git_url": "git://github.com/github-api-test-org/GHContentIntegrationTest.git", + "ssh_url": "git@github.com:github-api-test-org/GHContentIntegrationTest.git", + "clone_url": "https://github.com/github-api-test-org/GHContentIntegrationTest.git", + "svn_url": "https://github.com/github-api-test-org/GHContentIntegrationTest", + "homepage": null, + "size": 38, + "stargazers_count": 1, + "watchers_count": 1, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 40, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 40, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "parent": { + "id": 19653852, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTY1Mzg1Mg==", + "name": "GHContentIntegrationTest", + "full_name": "kohsuke2/GHContentIntegrationTest", + "private": false, + "owner": { + "login": "kohsuke2", + "id": 1329242, + "node_id": "MDQ6VXNlcjEzMjkyNDI=", + "avatar_url": "https://avatars2.githubusercontent.com/u/1329242?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kohsuke2", + "html_url": "https://github.com/kohsuke2", + "followers_url": "https://api.github.com/users/kohsuke2/followers", + "following_url": "https://api.github.com/users/kohsuke2/following{/other_user}", + "gists_url": "https://api.github.com/users/kohsuke2/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kohsuke2/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kohsuke2/subscriptions", + "organizations_url": "https://api.github.com/users/kohsuke2/orgs", + "repos_url": "https://api.github.com/users/kohsuke2/repos", + "events_url": "https://api.github.com/users/kohsuke2/events{/privacy}", + "received_events_url": "https://api.github.com/users/kohsuke2/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/kohsuke2/GHContentIntegrationTest", + "description": "Repository used for integration test of github-api", + "fork": true, + "url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest", + "forks_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/forks", + "keys_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/teams", + "hooks_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/hooks", + "issue_events_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/issues/events{/number}", + "events_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/events", + "assignees_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/assignees{/user}", + "branches_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/branches{/branch}", + "tags_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/tags", + "blobs_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/statuses/{sha}", + "languages_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/languages", + "stargazers_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/stargazers", + "contributors_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/contributors", + "subscribers_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/subscribers", + "subscription_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/subscription", + "commits_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/contents/{+path}", + "compare_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/merges", + "archive_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/downloads", + "issues_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/issues{/number}", + "pulls_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/pulls{/number}", + "milestones_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/milestones{/number}", + "notifications_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/labels{/name}", + "releases_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/releases{/id}", + "deployments_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/deployments", + "created_at": "2014-05-10T22:50:30Z", + "updated_at": "2018-11-07T15:36:19Z", + "pushed_at": "2018-11-07T15:36:18Z", + "git_url": "git://github.com/kohsuke2/GHContentIntegrationTest.git", + "ssh_url": "git@github.com:kohsuke2/GHContentIntegrationTest.git", + "clone_url": "https://github.com/kohsuke2/GHContentIntegrationTest.git", + "svn_url": "https://github.com/kohsuke2/GHContentIntegrationTest", + "homepage": null, + "size": 111, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + }, + "source": { + "id": 14779458, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDc3OTQ1OA==", + "name": "github-api-test-1", + "full_name": "farmdawgnation/github-api-test-1", + "private": false, + "owner": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/farmdawgnation/github-api-test-1", + "description": "Repository used for integration test of github-api", + "fork": false, + "url": "https://api.github.com/repos/farmdawgnation/github-api-test-1", + "forks_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/forks", + "keys_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/teams", + "hooks_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/hooks", + "issue_events_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/issues/events{/number}", + "events_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/events", + "assignees_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/assignees{/user}", + "branches_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/branches{/branch}", + "tags_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/tags", + "blobs_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/statuses/{sha}", + "languages_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/languages", + "stargazers_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/stargazers", + "contributors_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/contributors", + "subscribers_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/subscribers", + "subscription_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/subscription", + "commits_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/contents/{+path}", + "compare_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/merges", + "archive_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/downloads", + "issues_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/issues{/number}", + "pulls_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/pulls{/number}", + "milestones_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/milestones{/number}", + "notifications_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/labels{/name}", + "releases_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/releases{/id}", + "deployments_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/deployments", + "created_at": "2013-11-28T14:46:38Z", + "updated_at": "2016-02-05T13:33:23Z", + "pushed_at": "2013-11-28T14:55:36Z", + "git_url": "git://github.com/farmdawgnation/github-api-test-1.git", + "ssh_url": "git@github.com:farmdawgnation/github-api-test-1.git", + "clone_url": "https://github.com/farmdawgnation/github-api-test-1.git", + "svn_url": "https://github.com/farmdawgnation/github-api-test-1", + "homepage": null, + "size": 89, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 59, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 59, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + }, + "network_count": 59, + "subscribers_count": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetEmptyFileContent/__files/repos_github-api-test-org_ghcontentintegrationtest_contents_ghcontent-ro_an-empty-file-09629f63-a530-4e70-86d7-7c38d409c649.json b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetEmptyFileContent/__files/repos_github-api-test-org_ghcontentintegrationtest_contents_ghcontent-ro_an-empty-file-09629f63-a530-4e70-86d7-7c38d409c649.json new file mode 100644 index 0000000000..68d210f7e0 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetEmptyFileContent/__files/repos_github-api-test-org_ghcontentintegrationtest_contents_ghcontent-ro_an-empty-file-09629f63-a530-4e70-86d7-7c38d409c649.json @@ -0,0 +1,18 @@ +{ + "name": "an-empty-file", + "path": "ghcontent-ro/an-empty-file", + "sha": "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", + "size": 0, + "url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/contents/ghcontent-ro/an-empty-file?ref=master", + "html_url": "https://github.com/github-api-test-org/GHContentIntegrationTest/blob/master/ghcontent-ro/an-empty-file", + "git_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/git/blobs/e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", + "download_url": "https://raw.githubusercontent.com/github-api-test-org/GHContentIntegrationTest/master/ghcontent-ro/an-empty-file", + "type": "file", + "content": "", + "encoding": "base64", + "_links": { + "self": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/contents/ghcontent-ro/an-empty-file?ref=master", + "git": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/git/blobs/e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", + "html": "https://github.com/github-api-test-org/GHContentIntegrationTest/blob/master/ghcontent-ro/an-empty-file" + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetEmptyFileContent/__files/user-94ede01e-bf08-434a-a769-b1ca13cbbe5c.json b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetEmptyFileContent/__files/user-94ede01e-bf08-434a-a769-b1ca13cbbe5c.json new file mode 100644 index 0000000000..760bd7fb8a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetEmptyFileContent/__files/user-94ede01e-bf08-434a-a769-b1ca13cbbe5c.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 168, + "public_gists": 5, + "followers": 138, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetEmptyFileContent/mappings/repos_github-api-test-org_ghcontentintegrationtest-2-0c161f.json b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetEmptyFileContent/mappings/repos_github-api-test-org_ghcontentintegrationtest-2-0c161f.json new file mode 100644 index 0000000000..88d932575c --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetEmptyFileContent/mappings/repos_github-api-test-org_ghcontentintegrationtest-2-0c161f.json @@ -0,0 +1,40 @@ +{ + "id": "0c161f59-1b24-493e-b05a-cea86caa45a9", + "name": "repos_github-api-test-org_ghcontentintegrationtest", + "request": { + "url": "/repos/github-api-test-org/GHContentIntegrationTest", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_ghcontentintegrationtest-0c161f59-1b24-493e-b05a-cea86caa45a9.json", + "headers": { + "Server": "GitHub.com", + "Date": "Fri, 11 Oct 2019 22:17:40 GMT", + "Content-Type": "application/json; charset=utf-8", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4701", + "X-RateLimit-Reset": "1570835121", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"7a79bc3c7c98b7f2a0de605eea3ad3f6\"", + "Last-Modified": "Fri, 11 Oct 2019 22:17:07 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C0EE:6185:148394:2A3C68:5DA0FF83" + } + }, + "uuid": "0c161f59-1b24-493e-b05a-cea86caa45a9", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetEmptyFileContent/mappings/repos_github-api-test-org_ghcontentintegrationtest_contents_ghcontent-ro_an-empty-file-3-09629f.json b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetEmptyFileContent/mappings/repos_github-api-test-org_ghcontentintegrationtest_contents_ghcontent-ro_an-empty-file-3-09629f.json new file mode 100644 index 0000000000..5a8fccd58a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetEmptyFileContent/mappings/repos_github-api-test-org_ghcontentintegrationtest_contents_ghcontent-ro_an-empty-file-3-09629f.json @@ -0,0 +1,40 @@ +{ + "id": "09629f63-a530-4e70-86d7-7c38d409c649", + "name": "repos_github-api-test-org_ghcontentintegrationtest_contents_ghcontent-ro_an-empty-file", + "request": { + "url": "/repos/github-api-test-org/GHContentIntegrationTest/contents/ghcontent-ro/an-empty-file", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_ghcontentintegrationtest_contents_ghcontent-ro_an-empty-file-09629f63-a530-4e70-86d7-7c38d409c649.json", + "headers": { + "Server": "GitHub.com", + "Date": "Fri, 11 Oct 2019 22:17:40 GMT", + "Content-Type": "application/json; charset=utf-8", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4700", + "X-RateLimit-Reset": "1570835121", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"e69de29bb2d1d6434b8b29ae775ad8c2e48c5391\"", + "Last-Modified": "Fri, 11 Oct 2019 22:17:05 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C0EE:6185:1483AF:2A3CE5:5DA0FF84" + } + }, + "uuid": "09629f63-a530-4e70-86d7-7c38d409c649", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetEmptyFileContent/mappings/user-1-94ede0.json b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetEmptyFileContent/mappings/user-1-94ede0.json new file mode 100644 index 0000000000..5f512a6ed9 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetEmptyFileContent/mappings/user-1-94ede0.json @@ -0,0 +1,40 @@ +{ + "id": "94ede01e-bf08-434a-a769-b1ca13cbbe5c", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-94ede01e-bf08-434a-a769-b1ca13cbbe5c.json", + "headers": { + "Server": "GitHub.com", + "Date": "Fri, 11 Oct 2019 22:17:39 GMT", + "Content-Type": "application/json; charset=utf-8", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4705", + "X-RateLimit-Reset": "1570835121", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"42eed4772a65221c408dcbe210034076\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C0EE:6185:148366:2A3C4C:5DA0FF83" + } + }, + "uuid": "94ede01e-bf08-434a-a769-b1ca13cbbe5c", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetFileContent/__files/repos_github-api-test-org_ghcontentintegrationtest-a9082058-4cee-4bf3-8d5f-c1b7d7ca1f0f.json b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetFileContent/__files/repos_github-api-test-org_ghcontentintegrationtest-a9082058-4cee-4bf3-8d5f-c1b7d7ca1f0f.json new file mode 100644 index 0000000000..819dcde4e7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetFileContent/__files/repos_github-api-test-org_ghcontentintegrationtest-a9082058-4cee-4bf3-8d5f-c1b7d7ca1f0f.json @@ -0,0 +1,312 @@ +{ + "id": 40763577, + "node_id": "MDEwOlJlcG9zaXRvcnk0MDc2MzU3Nw==", + "name": "GHContentIntegrationTest", + "full_name": "github-api-test-org/GHContentIntegrationTest", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/GHContentIntegrationTest", + "description": "Repository used for integration test of github-api", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest", + "forks_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/deployments", + "created_at": "2015-08-15T14:14:57Z", + "updated_at": "2019-10-11T22:17:44Z", + "pushed_at": "2019-10-11T22:17:45Z", + "git_url": "git://github.com/github-api-test-org/GHContentIntegrationTest.git", + "ssh_url": "git@github.com:github-api-test-org/GHContentIntegrationTest.git", + "clone_url": "https://github.com/github-api-test-org/GHContentIntegrationTest.git", + "svn_url": "https://github.com/github-api-test-org/GHContentIntegrationTest", + "homepage": null, + "size": 38, + "stargazers_count": 1, + "watchers_count": 1, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 40, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 40, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "parent": { + "id": 19653852, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTY1Mzg1Mg==", + "name": "GHContentIntegrationTest", + "full_name": "kohsuke2/GHContentIntegrationTest", + "private": false, + "owner": { + "login": "kohsuke2", + "id": 1329242, + "node_id": "MDQ6VXNlcjEzMjkyNDI=", + "avatar_url": "https://avatars2.githubusercontent.com/u/1329242?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kohsuke2", + "html_url": "https://github.com/kohsuke2", + "followers_url": "https://api.github.com/users/kohsuke2/followers", + "following_url": "https://api.github.com/users/kohsuke2/following{/other_user}", + "gists_url": "https://api.github.com/users/kohsuke2/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kohsuke2/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kohsuke2/subscriptions", + "organizations_url": "https://api.github.com/users/kohsuke2/orgs", + "repos_url": "https://api.github.com/users/kohsuke2/repos", + "events_url": "https://api.github.com/users/kohsuke2/events{/privacy}", + "received_events_url": "https://api.github.com/users/kohsuke2/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/kohsuke2/GHContentIntegrationTest", + "description": "Repository used for integration test of github-api", + "fork": true, + "url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest", + "forks_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/forks", + "keys_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/teams", + "hooks_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/hooks", + "issue_events_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/issues/events{/number}", + "events_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/events", + "assignees_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/assignees{/user}", + "branches_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/branches{/branch}", + "tags_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/tags", + "blobs_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/statuses/{sha}", + "languages_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/languages", + "stargazers_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/stargazers", + "contributors_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/contributors", + "subscribers_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/subscribers", + "subscription_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/subscription", + "commits_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/contents/{+path}", + "compare_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/merges", + "archive_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/downloads", + "issues_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/issues{/number}", + "pulls_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/pulls{/number}", + "milestones_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/milestones{/number}", + "notifications_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/labels{/name}", + "releases_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/releases{/id}", + "deployments_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/deployments", + "created_at": "2014-05-10T22:50:30Z", + "updated_at": "2018-11-07T15:36:19Z", + "pushed_at": "2018-11-07T15:36:18Z", + "git_url": "git://github.com/kohsuke2/GHContentIntegrationTest.git", + "ssh_url": "git@github.com:kohsuke2/GHContentIntegrationTest.git", + "clone_url": "https://github.com/kohsuke2/GHContentIntegrationTest.git", + "svn_url": "https://github.com/kohsuke2/GHContentIntegrationTest", + "homepage": null, + "size": 111, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + }, + "source": { + "id": 14779458, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDc3OTQ1OA==", + "name": "github-api-test-1", + "full_name": "farmdawgnation/github-api-test-1", + "private": false, + "owner": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/farmdawgnation/github-api-test-1", + "description": "Repository used for integration test of github-api", + "fork": false, + "url": "https://api.github.com/repos/farmdawgnation/github-api-test-1", + "forks_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/forks", + "keys_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/teams", + "hooks_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/hooks", + "issue_events_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/issues/events{/number}", + "events_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/events", + "assignees_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/assignees{/user}", + "branches_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/branches{/branch}", + "tags_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/tags", + "blobs_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/statuses/{sha}", + "languages_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/languages", + "stargazers_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/stargazers", + "contributors_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/contributors", + "subscribers_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/subscribers", + "subscription_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/subscription", + "commits_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/contents/{+path}", + "compare_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/merges", + "archive_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/downloads", + "issues_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/issues{/number}", + "pulls_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/pulls{/number}", + "milestones_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/milestones{/number}", + "notifications_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/labels{/name}", + "releases_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/releases{/id}", + "deployments_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/deployments", + "created_at": "2013-11-28T14:46:38Z", + "updated_at": "2016-02-05T13:33:23Z", + "pushed_at": "2013-11-28T14:55:36Z", + "git_url": "git://github.com/farmdawgnation/github-api-test-1.git", + "ssh_url": "git@github.com:farmdawgnation/github-api-test-1.git", + "clone_url": "https://github.com/farmdawgnation/github-api-test-1.git", + "svn_url": "https://github.com/farmdawgnation/github-api-test-1", + "homepage": null, + "size": 89, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 59, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 59, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + }, + "network_count": 59, + "subscribers_count": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetFileContent/__files/repos_github-api-test-org_ghcontentintegrationtest-fbcbe20f-df3f-4011-9340-bb9be7b2c36e.json b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetFileContent/__files/repos_github-api-test-org_ghcontentintegrationtest-fbcbe20f-df3f-4011-9340-bb9be7b2c36e.json new file mode 100644 index 0000000000..819dcde4e7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetFileContent/__files/repos_github-api-test-org_ghcontentintegrationtest-fbcbe20f-df3f-4011-9340-bb9be7b2c36e.json @@ -0,0 +1,312 @@ +{ + "id": 40763577, + "node_id": "MDEwOlJlcG9zaXRvcnk0MDc2MzU3Nw==", + "name": "GHContentIntegrationTest", + "full_name": "github-api-test-org/GHContentIntegrationTest", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/GHContentIntegrationTest", + "description": "Repository used for integration test of github-api", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest", + "forks_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/deployments", + "created_at": "2015-08-15T14:14:57Z", + "updated_at": "2019-10-11T22:17:44Z", + "pushed_at": "2019-10-11T22:17:45Z", + "git_url": "git://github.com/github-api-test-org/GHContentIntegrationTest.git", + "ssh_url": "git@github.com:github-api-test-org/GHContentIntegrationTest.git", + "clone_url": "https://github.com/github-api-test-org/GHContentIntegrationTest.git", + "svn_url": "https://github.com/github-api-test-org/GHContentIntegrationTest", + "homepage": null, + "size": 38, + "stargazers_count": 1, + "watchers_count": 1, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 40, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 40, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "parent": { + "id": 19653852, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTY1Mzg1Mg==", + "name": "GHContentIntegrationTest", + "full_name": "kohsuke2/GHContentIntegrationTest", + "private": false, + "owner": { + "login": "kohsuke2", + "id": 1329242, + "node_id": "MDQ6VXNlcjEzMjkyNDI=", + "avatar_url": "https://avatars2.githubusercontent.com/u/1329242?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kohsuke2", + "html_url": "https://github.com/kohsuke2", + "followers_url": "https://api.github.com/users/kohsuke2/followers", + "following_url": "https://api.github.com/users/kohsuke2/following{/other_user}", + "gists_url": "https://api.github.com/users/kohsuke2/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kohsuke2/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kohsuke2/subscriptions", + "organizations_url": "https://api.github.com/users/kohsuke2/orgs", + "repos_url": "https://api.github.com/users/kohsuke2/repos", + "events_url": "https://api.github.com/users/kohsuke2/events{/privacy}", + "received_events_url": "https://api.github.com/users/kohsuke2/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/kohsuke2/GHContentIntegrationTest", + "description": "Repository used for integration test of github-api", + "fork": true, + "url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest", + "forks_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/forks", + "keys_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/teams", + "hooks_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/hooks", + "issue_events_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/issues/events{/number}", + "events_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/events", + "assignees_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/assignees{/user}", + "branches_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/branches{/branch}", + "tags_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/tags", + "blobs_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/statuses/{sha}", + "languages_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/languages", + "stargazers_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/stargazers", + "contributors_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/contributors", + "subscribers_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/subscribers", + "subscription_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/subscription", + "commits_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/contents/{+path}", + "compare_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/merges", + "archive_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/downloads", + "issues_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/issues{/number}", + "pulls_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/pulls{/number}", + "milestones_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/milestones{/number}", + "notifications_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/labels{/name}", + "releases_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/releases{/id}", + "deployments_url": "https://api.github.com/repos/kohsuke2/GHContentIntegrationTest/deployments", + "created_at": "2014-05-10T22:50:30Z", + "updated_at": "2018-11-07T15:36:19Z", + "pushed_at": "2018-11-07T15:36:18Z", + "git_url": "git://github.com/kohsuke2/GHContentIntegrationTest.git", + "ssh_url": "git@github.com:kohsuke2/GHContentIntegrationTest.git", + "clone_url": "https://github.com/kohsuke2/GHContentIntegrationTest.git", + "svn_url": "https://github.com/kohsuke2/GHContentIntegrationTest", + "homepage": null, + "size": 111, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + }, + "source": { + "id": 14779458, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDc3OTQ1OA==", + "name": "github-api-test-1", + "full_name": "farmdawgnation/github-api-test-1", + "private": false, + "owner": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/farmdawgnation/github-api-test-1", + "description": "Repository used for integration test of github-api", + "fork": false, + "url": "https://api.github.com/repos/farmdawgnation/github-api-test-1", + "forks_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/forks", + "keys_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/teams", + "hooks_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/hooks", + "issue_events_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/issues/events{/number}", + "events_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/events", + "assignees_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/assignees{/user}", + "branches_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/branches{/branch}", + "tags_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/tags", + "blobs_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/statuses/{sha}", + "languages_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/languages", + "stargazers_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/stargazers", + "contributors_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/contributors", + "subscribers_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/subscribers", + "subscription_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/subscription", + "commits_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/contents/{+path}", + "compare_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/merges", + "archive_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/downloads", + "issues_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/issues{/number}", + "pulls_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/pulls{/number}", + "milestones_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/milestones{/number}", + "notifications_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/labels{/name}", + "releases_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/releases{/id}", + "deployments_url": "https://api.github.com/repos/farmdawgnation/github-api-test-1/deployments", + "created_at": "2013-11-28T14:46:38Z", + "updated_at": "2016-02-05T13:33:23Z", + "pushed_at": "2013-11-28T14:55:36Z", + "git_url": "git://github.com/farmdawgnation/github-api-test-1.git", + "ssh_url": "git@github.com:farmdawgnation/github-api-test-1.git", + "clone_url": "https://github.com/farmdawgnation/github-api-test-1.git", + "svn_url": "https://github.com/farmdawgnation/github-api-test-1", + "homepage": null, + "size": 89, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 59, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 59, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + }, + "network_count": 59, + "subscribers_count": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetFileContent/__files/repos_github-api-test-org_ghcontentintegrationtest_contents_ghcontent-ro_a-file-with-content-cf14dc4b-72ea-4159-bc7a-4d10a2ebb43e.json b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetFileContent/__files/repos_github-api-test-org_ghcontentintegrationtest_contents_ghcontent-ro_a-file-with-content-cf14dc4b-72ea-4159-bc7a-4d10a2ebb43e.json new file mode 100644 index 0000000000..6c820991f6 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetFileContent/__files/repos_github-api-test-org_ghcontentintegrationtest_contents_ghcontent-ro_a-file-with-content-cf14dc4b-72ea-4159-bc7a-4d10a2ebb43e.json @@ -0,0 +1,18 @@ +{ + "name": "a-file-with-content", + "path": "ghcontent-ro/a-file-with-content", + "sha": "901fd87750a8e53fe39a219cad50d4f7c80ca272", + "size": 22, + "url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/contents/ghcontent-ro/a-file-with-content?ref=master", + "html_url": "https://github.com/github-api-test-org/GHContentIntegrationTest/blob/master/ghcontent-ro/a-file-with-content", + "git_url": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/git/blobs/901fd87750a8e53fe39a219cad50d4f7c80ca272", + "download_url": "https://raw.githubusercontent.com/github-api-test-org/GHContentIntegrationTest/master/ghcontent-ro/a-file-with-content", + "type": "file", + "content": "dGhhbmtzIGZvciByZWFkaW5nIG1lCg==\n", + "encoding": "base64", + "_links": { + "self": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/contents/ghcontent-ro/a-file-with-content?ref=master", + "git": "https://api.github.com/repos/github-api-test-org/GHContentIntegrationTest/git/blobs/901fd87750a8e53fe39a219cad50d4f7c80ca272", + "html": "https://github.com/github-api-test-org/GHContentIntegrationTest/blob/master/ghcontent-ro/a-file-with-content" + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetFileContent/__files/user-8aeceae0-b015-47cc-9b83-17411b8d4bbd.json b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetFileContent/__files/user-8aeceae0-b015-47cc-9b83-17411b8d4bbd.json new file mode 100644 index 0000000000..760bd7fb8a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetFileContent/__files/user-8aeceae0-b015-47cc-9b83-17411b8d4bbd.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 168, + "public_gists": 5, + "followers": 138, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetFileContent/mappings/repos_github-api-test-org_ghcontentintegrationtest-2-fbcbe2.json b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetFileContent/mappings/repos_github-api-test-org_ghcontentintegrationtest-2-fbcbe2.json new file mode 100644 index 0000000000..a1d9141a9d --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetFileContent/mappings/repos_github-api-test-org_ghcontentintegrationtest-2-fbcbe2.json @@ -0,0 +1,43 @@ +{ + "id": "fbcbe20f-df3f-4011-9340-bb9be7b2c36e", + "name": "repos_github-api-test-org_ghcontentintegrationtest", + "request": { + "url": "/repos/github-api-test-org/GHContentIntegrationTest", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_ghcontentintegrationtest-fbcbe20f-df3f-4011-9340-bb9be7b2c36e.json", + "headers": { + "Server": "GitHub.com", + "Date": "Fri, 11 Oct 2019 22:17:46 GMT", + "Content-Type": "application/json; charset=utf-8", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4681", + "X-RateLimit-Reset": "1570835121", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"81a0a47733535ab0417cce462ddb54d6\"", + "Last-Modified": "Fri, 11 Oct 2019 22:17:44 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C0F9:5709:1995AA:2FA20A:5DA0FF8A" + } + }, + "uuid": "fbcbe20f-df3f-4011-9340-bb9be7b2c36e", + "persistent": true, + "scenarioName": "scenario-1-repos-github-api-test-org-GHContentIntegrationTest", + "requiredScenarioState": "Started", + "newScenarioState": "scenario-1-repos-github-api-test-org-GHContentIntegrationTest-2", + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetFileContent/mappings/repos_github-api-test-org_ghcontentintegrationtest-3-a90820.json b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetFileContent/mappings/repos_github-api-test-org_ghcontentintegrationtest-3-a90820.json new file mode 100644 index 0000000000..6643f82624 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetFileContent/mappings/repos_github-api-test-org_ghcontentintegrationtest-3-a90820.json @@ -0,0 +1,42 @@ +{ + "id": "a9082058-4cee-4bf3-8d5f-c1b7d7ca1f0f", + "name": "repos_github-api-test-org_ghcontentintegrationtest", + "request": { + "url": "/repos/github-api-test-org/GHContentIntegrationTest", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_ghcontentintegrationtest-a9082058-4cee-4bf3-8d5f-c1b7d7ca1f0f.json", + "headers": { + "Server": "GitHub.com", + "Date": "Fri, 11 Oct 2019 22:17:47 GMT", + "Content-Type": "application/json; charset=utf-8", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4680", + "X-RateLimit-Reset": "1570835121", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"81a0a47733535ab0417cce462ddb54d6\"", + "Last-Modified": "Fri, 11 Oct 2019 22:17:44 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C0F9:5709:1995BD:2FA293:5DA0FF8A" + } + }, + "uuid": "a9082058-4cee-4bf3-8d5f-c1b7d7ca1f0f", + "persistent": true, + "scenarioName": "scenario-1-repos-github-api-test-org-GHContentIntegrationTest", + "requiredScenarioState": "scenario-1-repos-github-api-test-org-GHContentIntegrationTest-2", + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetFileContent/mappings/repos_github-api-test-org_ghcontentintegrationtest_contents_ghcontent-ro_a-file-with-content-4-cf14dc.json b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetFileContent/mappings/repos_github-api-test-org_ghcontentintegrationtest_contents_ghcontent-ro_a-file-with-content-4-cf14dc.json new file mode 100644 index 0000000000..bddc7150ba --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetFileContent/mappings/repos_github-api-test-org_ghcontentintegrationtest_contents_ghcontent-ro_a-file-with-content-4-cf14dc.json @@ -0,0 +1,40 @@ +{ + "id": "cf14dc4b-72ea-4159-bc7a-4d10a2ebb43e", + "name": "repos_github-api-test-org_ghcontentintegrationtest_contents_ghcontent-ro_a-file-with-content", + "request": { + "url": "/repos/github-api-test-org/GHContentIntegrationTest/contents/ghcontent-ro/a-file-with-content", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_ghcontentintegrationtest_contents_ghcontent-ro_a-file-with-content-cf14dc4b-72ea-4159-bc7a-4d10a2ebb43e.json", + "headers": { + "Server": "GitHub.com", + "Date": "Fri, 11 Oct 2019 22:17:47 GMT", + "Content-Type": "application/json; charset=utf-8", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4679", + "X-RateLimit-Reset": "1570835121", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"901fd87750a8e53fe39a219cad50d4f7c80ca272\"", + "Last-Modified": "Fri, 11 Oct 2019 22:17:44 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C0F9:5709:1995E5:2FA2CC:5DA0FF8B" + } + }, + "uuid": "cf14dc4b-72ea-4159-bc7a-4d10a2ebb43e", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetFileContent/mappings/user-1-8aecea.json b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetFileContent/mappings/user-1-8aecea.json new file mode 100644 index 0000000000..4dc6bc2737 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHContentIntegrationTest/wiremock/testGetFileContent/mappings/user-1-8aecea.json @@ -0,0 +1,40 @@ +{ + "id": "8aeceae0-b015-47cc-9b83-17411b8d4bbd", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-8aeceae0-b015-47cc-9b83-17411b8d4bbd.json", + "headers": { + "Server": "GitHub.com", + "Date": "Fri, 11 Oct 2019 22:17:46 GMT", + "Content-Type": "application/json; charset=utf-8", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4685", + "X-RateLimit-Reset": "1570835121", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"42eed4772a65221c408dcbe210034076\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C0F9:5709:199567:2FA1F1:5DA0FF89" + } + }, + "uuid": "8aeceae0-b015-47cc-9b83-17411b8d4bbd", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHDeploymentTest/wiremock/testGetDeploymentById/__files/orgs_github-api-test-org-4def936c-47fd-43aa-851a-f9dd06f236b5.json b/src/test/resources/org/kohsuke/github/GHDeploymentTest/wiremock/testGetDeploymentById/__files/orgs_github-api-test-org-4def936c-47fd-43aa-851a-f9dd06f236b5.json new file mode 100644 index 0000000000..99b5920ccb --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHDeploymentTest/wiremock/testGetDeploymentById/__files/orgs_github-api-test-org-4def936c-47fd-43aa-851a-f9dd06f236b5.json @@ -0,0 +1,41 @@ +{ + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "url": "https://api.github.com/orgs/github-api-test-org", + "repos_url": "https://api.github.com/orgs/github-api-test-org/repos", + "events_url": "https://api.github.com/orgs/github-api-test-org/events", + "hooks_url": "https://api.github.com/orgs/github-api-test-org/hooks", + "issues_url": "https://api.github.com/orgs/github-api-test-org/issues", + "members_url": "https://api.github.com/orgs/github-api-test-org/members{/member}", + "public_members_url": "https://api.github.com/orgs/github-api-test-org/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "description": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 10, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/github-api-test-org", + "created_at": "2014-05-10T19:39:11Z", + "updated_at": "2015-04-20T00:42:30Z", + "type": "Organization", + "total_private_repos": 0, + "owned_private_repos": 0, + "private_gists": 0, + "disk_usage": 132, + "collaborators": 0, + "billing_email": "kk@kohsuke.org", + "default_repository_permission": "none", + "members_can_create_repositories": false, + "two_factor_requirement_enabled": false, + "plan": { + "name": "free", + "space": 976562499, + "private_repos": 0, + "filled_seats": 7, + "seats": 0 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHDeploymentTest/wiremock/testGetDeploymentById/__files/repos_github-api-test-org_github-api-a1a9ff0a-2e37-4803-a9de-fb8fffd45f41.json b/src/test/resources/org/kohsuke/github/GHDeploymentTest/wiremock/testGetDeploymentById/__files/repos_github-api-test-org_github-api-a1a9ff0a-2e37-4803-a9de-fb8fffd45f41.json new file mode 100644 index 0000000000..d2b06356d8 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHDeploymentTest/wiremock/testGetDeploymentById/__files/repos_github-api-test-org_github-api-a1a9ff0a-2e37-4803-a9de-fb8fffd45f41.json @@ -0,0 +1,330 @@ +{ + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Tricky", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-30T22:36:47Z", + "pushed_at": "2019-10-21T22:34:49Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11391, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "parent": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-10-28T06:11:20Z", + "pushed_at": "2019-10-29T23:24:04Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 14742, + "stargazers_count": 568, + "watchers_count": 568, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 433, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 66, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 433, + "open_issues": 66, + "watchers": 568, + "default_branch": "master" + }, + "source": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-10-28T06:11:20Z", + "pushed_at": "2019-10-29T23:24:04Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 14742, + "stargazers_count": 568, + "watchers_count": 568, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 433, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 66, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 433, + "open_issues": 66, + "watchers": 568, + "default_branch": "master" + }, + "network_count": 433, + "subscribers_count": 0 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHDeploymentTest/wiremock/testGetDeploymentById/__files/repos_github-api-test-org_github-api_deployments_178653229-d1d9d992-25e4-4a4b-8710-5b0c57e99a64.json b/src/test/resources/org/kohsuke/github/GHDeploymentTest/wiremock/testGetDeploymentById/__files/repos_github-api-test-org_github-api_deployments_178653229-d1d9d992-25e4-4a4b-8710-5b0c57e99a64.json new file mode 100644 index 0000000000..1eea36725f --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHDeploymentTest/wiremock/testGetDeploymentById/__files/repos_github-api-test-org_github-api_deployments_178653229-d1d9d992-25e4-4a4b-8710-5b0c57e99a64.json @@ -0,0 +1,36 @@ +{ + "url": "https://api.github.com/repos/github-api-test-org/github-api/deployments/178653229", + "id": 178653229, + "node_id": "MDEwOkRlcGxveW1lbnQxNzg2NTMyMjk=", + "sha": "3a09d2de4a9a1322a0ba2c3e2f54a919ca8fe353", + "ref": "master", + "task": "deploy", + "payload": {}, + "original_environment": "production", + "environment": "production", + "description": null, + "creator": { + "login": "martinvanzijl", + "id": 24422213, + "node_id": "MDQ6VXNlcjI0NDIyMjEz", + "avatar_url": "https://avatars0.githubusercontent.com/u/24422213?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/martinvanzijl", + "html_url": "https://github.com/martinvanzijl", + "followers_url": "https://api.github.com/users/martinvanzijl/followers", + "following_url": "https://api.github.com/users/martinvanzijl/following{/other_user}", + "gists_url": "https://api.github.com/users/martinvanzijl/gists{/gist_id}", + "starred_url": "https://api.github.com/users/martinvanzijl/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/martinvanzijl/subscriptions", + "organizations_url": "https://api.github.com/users/martinvanzijl/orgs", + "repos_url": "https://api.github.com/users/martinvanzijl/repos", + "events_url": "https://api.github.com/users/martinvanzijl/events{/privacy}", + "received_events_url": "https://api.github.com/users/martinvanzijl/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2019-10-30T00:03:34Z", + "updated_at": "2019-10-30T00:03:34Z", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments/178653229/statuses", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHDeploymentTest/wiremock/testGetDeploymentById/mappings/orgs_github-api-test-org-1-4def93.json b/src/test/resources/org/kohsuke/github/GHDeploymentTest/wiremock/testGetDeploymentById/mappings/orgs_github-api-test-org-1-4def93.json new file mode 100644 index 0000000000..a1f19b6efb --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHDeploymentTest/wiremock/testGetDeploymentById/mappings/orgs_github-api-test-org-1-4def93.json @@ -0,0 +1,41 @@ +{ + "id": "4def936c-47fd-43aa-851a-f9dd06f236b5", + "name": "orgs_github-api-test-org", + "request": { + "url": "/orgs/github-api-test-org", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_github-api-test-org-4def936c-47fd-43aa-851a-f9dd06f236b5.json", + "headers": { + "Date": "Wed, 30 Oct 2019 00:11:46 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4980", + "X-RateLimit-Reset": "1572397284", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"4342e0e7004c1a50986c767513fe857d\"", + "Last-Modified": "Mon, 20 Apr 2015 00:42:30 GMT", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "DFCA:4866:E50AD:103D70:5DB8D541" + } + }, + "uuid": "4def936c-47fd-43aa-851a-f9dd06f236b5", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHDeploymentTest/wiremock/testGetDeploymentById/mappings/repos_github-api-test-org_github-api-2-a1a9ff.json b/src/test/resources/org/kohsuke/github/GHDeploymentTest/wiremock/testGetDeploymentById/mappings/repos_github-api-test-org_github-api-2-a1a9ff.json new file mode 100644 index 0000000000..8a1f12ec46 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHDeploymentTest/wiremock/testGetDeploymentById/mappings/repos_github-api-test-org_github-api-2-a1a9ff.json @@ -0,0 +1,41 @@ +{ + "id": "a1a9ff0a-2e37-4803-a9de-fb8fffd45f41", + "name": "repos_github-api-test-org_github-api", + "request": { + "url": "/repos/github-api-test-org/github-api", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api-a1a9ff0a-2e37-4803-a9de-fb8fffd45f41.json", + "headers": { + "Date": "Wed, 30 Oct 2019 00:11:47 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4979", + "X-RateLimit-Reset": "1572397284", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"4ef7d9ee7bc7f4f32000eb0720da5bf1\"", + "Last-Modified": "Mon, 30 Sep 2019 22:36:47 GMT", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "DFCA:4866:E50D8:103D81:5DB8D542" + } + }, + "uuid": "a1a9ff0a-2e37-4803-a9de-fb8fffd45f41", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHDeploymentTest/wiremock/testGetDeploymentById/mappings/repos_github-api-test-org_github-api_deployments_178653229-3-d1d9d9.json b/src/test/resources/org/kohsuke/github/GHDeploymentTest/wiremock/testGetDeploymentById/mappings/repos_github-api-test-org_github-api_deployments_178653229-3-d1d9d9.json new file mode 100644 index 0000000000..0686b5e781 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHDeploymentTest/wiremock/testGetDeploymentById/mappings/repos_github-api-test-org_github-api_deployments_178653229-3-d1d9d9.json @@ -0,0 +1,41 @@ +{ + "id": "d1d9d992-25e4-4a4b-8710-5b0c57e99a64", + "name": "repos_github-api-test-org_github-api_deployments_178653229", + "request": { + "url": "/repos/github-api-test-org/github-api/deployments/178653229", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api_deployments_178653229-d1d9d992-25e4-4a4b-8710-5b0c57e99a64.json", + "headers": { + "Date": "Wed, 30 Oct 2019 00:11:48 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4978", + "X-RateLimit-Reset": "1572397284", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"e1b3c1f524645e959b25405131fba656\"", + "Last-Modified": "Wed, 30 Oct 2019 00:03:34 GMT", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "DFCA:4866:E50EA:103DAF:5DB8D543" + } + }, + "uuid": "d1d9d992-25e4-4a4b-8710-5b0c57e99a64", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHEventPayloadTest/commit_comment.json b/src/test/resources/org/kohsuke/github/GHEventPayloadTest/commit_comment.json index bcf70894cd..4afa1f39da 100644 --- a/src/test/resources/org/kohsuke/github/GHEventPayloadTest/commit_comment.json +++ b/src/test/resources/org/kohsuke/github/GHEventPayloadTest/commit_comment.json @@ -137,4 +137,4 @@ "type": "User", "site_admin": false } -} +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHEventPayloadTest/create.json b/src/test/resources/org/kohsuke/github/GHEventPayloadTest/create.json index 51d690c378..2d48b54f0c 100644 --- a/src/test/resources/org/kohsuke/github/GHEventPayloadTest/create.json +++ b/src/test/resources/org/kohsuke/github/GHEventPayloadTest/create.json @@ -110,4 +110,4 @@ "type": "User", "site_admin": false } -} +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHEventPayloadTest/delete.json b/src/test/resources/org/kohsuke/github/GHEventPayloadTest/delete.json index 0759bcd04a..f8dfc87341 100644 --- a/src/test/resources/org/kohsuke/github/GHEventPayloadTest/delete.json +++ b/src/test/resources/org/kohsuke/github/GHEventPayloadTest/delete.json @@ -108,4 +108,4 @@ "type": "User", "site_admin": false } -} +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHEventPayloadTest/deployment.json b/src/test/resources/org/kohsuke/github/GHEventPayloadTest/deployment.json index 9f2ca9668f..5d8c5bbe94 100644 --- a/src/test/resources/org/kohsuke/github/GHEventPayloadTest/deployment.json +++ b/src/test/resources/org/kohsuke/github/GHEventPayloadTest/deployment.json @@ -5,8 +5,7 @@ "sha": "9049f1265b7d61be4a8904a9a27120d2064dab3b", "ref": "master", "task": "deploy", - "payload": { - }, + "payload": {}, "environment": "production", "description": null, "creator": { @@ -139,4 +138,4 @@ "type": "User", "site_admin": false } -} +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHEventPayloadTest/deployment_status.json b/src/test/resources/org/kohsuke/github/GHEventPayloadTest/deployment_status.json index e1dcd0706f..904ffd88a8 100644 --- a/src/test/resources/org/kohsuke/github/GHEventPayloadTest/deployment_status.json +++ b/src/test/resources/org/kohsuke/github/GHEventPayloadTest/deployment_status.json @@ -35,8 +35,7 @@ "sha": "9049f1265b7d61be4a8904a9a27120d2064dab3b", "ref": "master", "task": "deploy", - "payload": { - }, + "payload": {}, "environment": "production", "description": null, "creator": { @@ -169,4 +168,4 @@ "type": "User", "site_admin": false } -} +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHEventPayloadTest/fork.json b/src/test/resources/org/kohsuke/github/GHEventPayloadTest/fork.json index e01d3c50fc..36a2a4324d 100644 --- a/src/test/resources/org/kohsuke/github/GHEventPayloadTest/fork.json +++ b/src/test/resources/org/kohsuke/github/GHEventPayloadTest/fork.json @@ -193,4 +193,4 @@ "type": "Organization", "site_admin": false } -} +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHEventPayloadTest/gollum.json b/src/test/resources/org/kohsuke/github/GHEventPayloadTest/gollum.json index 79527b91ca..4413118300 100644 --- a/src/test/resources/org/kohsuke/github/GHEventPayloadTest/gollum.json +++ b/src/test/resources/org/kohsuke/github/GHEventPayloadTest/gollum.json @@ -115,4 +115,4 @@ "type": "User", "site_admin": true } -} +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHEventPayloadTest/issue_comment.json b/src/test/resources/org/kohsuke/github/GHEventPayloadTest/issue_comment.json index 6f6e7d8975..758eb2f38c 100644 --- a/src/test/resources/org/kohsuke/github/GHEventPayloadTest/issue_comment.json +++ b/src/test/resources/org/kohsuke/github/GHEventPayloadTest/issue_comment.json @@ -179,4 +179,4 @@ "type": "User", "site_admin": false } -} +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHEventPayloadTest/issues.json b/src/test/resources/org/kohsuke/github/GHEventPayloadTest/issues.json index 5e0c52b0c1..d3fe4b8c3e 100644 --- a/src/test/resources/org/kohsuke/github/GHEventPayloadTest/issues.json +++ b/src/test/resources/org/kohsuke/github/GHEventPayloadTest/issues.json @@ -153,4 +153,4 @@ "type": "User", "site_admin": false } -} +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHEventPayloadTest/label.json b/src/test/resources/org/kohsuke/github/GHEventPayloadTest/label.json index b7a0be1b2e..807d8c43fb 100644 --- a/src/test/resources/org/kohsuke/github/GHEventPayloadTest/label.json +++ b/src/test/resources/org/kohsuke/github/GHEventPayloadTest/label.json @@ -125,4 +125,4 @@ "type": "User", "site_admin": true } -} +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHEventPayloadTest/member.json b/src/test/resources/org/kohsuke/github/GHEventPayloadTest/member.json index 20305670e3..bbb816e73b 100644 --- a/src/test/resources/org/kohsuke/github/GHEventPayloadTest/member.json +++ b/src/test/resources/org/kohsuke/github/GHEventPayloadTest/member.json @@ -125,4 +125,4 @@ "type": "User", "site_admin": false } -} +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHEventPayloadTest/membership.json b/src/test/resources/org/kohsuke/github/GHEventPayloadTest/membership.json index 612d967f6d..600208b580 100644 --- a/src/test/resources/org/kohsuke/github/GHEventPayloadTest/membership.json +++ b/src/test/resources/org/kohsuke/github/GHEventPayloadTest/membership.json @@ -58,4 +58,4 @@ "public_members_url": "https://api.github.com/orgs/baxterandthehackers/public_members{/member}", "avatar_url": "https://avatars.githubusercontent.com/u/7649605?v=2" } -} +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHEventPayloadTest/milestone.json b/src/test/resources/org/kohsuke/github/GHEventPayloadTest/milestone.json index 1cd673eef5..af2468c79a 100644 --- a/src/test/resources/org/kohsuke/github/GHEventPayloadTest/milestone.json +++ b/src/test/resources/org/kohsuke/github/GHEventPayloadTest/milestone.json @@ -155,4 +155,4 @@ "type": "User", "site_admin": true } -} +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHEventPayloadTest/page_build.json b/src/test/resources/org/kohsuke/github/GHEventPayloadTest/page_build.json index 80962c016e..57714f94f5 100644 --- a/src/test/resources/org/kohsuke/github/GHEventPayloadTest/page_build.json +++ b/src/test/resources/org/kohsuke/github/GHEventPayloadTest/page_build.json @@ -136,4 +136,4 @@ "type": "User", "site_admin": false } -} +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHEventPayloadTest/public.json b/src/test/resources/org/kohsuke/github/GHEventPayloadTest/public.json index f596a54282..a3e0f24cd1 100644 --- a/src/test/resources/org/kohsuke/github/GHEventPayloadTest/public.json +++ b/src/test/resources/org/kohsuke/github/GHEventPayloadTest/public.json @@ -105,4 +105,4 @@ "type": "User", "site_admin": false } -} +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHEventPayloadTest/pull_request.json b/src/test/resources/org/kohsuke/github/GHEventPayloadTest/pull_request.json index 316cc4e8f7..4eaabe17fe 100644 --- a/src/test/resources/org/kohsuke/github/GHEventPayloadTest/pull_request.json +++ b/src/test/resources/org/kohsuke/github/GHEventPayloadTest/pull_request.json @@ -409,4 +409,4 @@ "type": "User", "site_admin": false } -} +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHEventPayloadTest/pull_request_review.json b/src/test/resources/org/kohsuke/github/GHEventPayloadTest/pull_request_review.json index dd6698c3ac..0534006d9d 100644 --- a/src/test/resources/org/kohsuke/github/GHEventPayloadTest/pull_request_review.json +++ b/src/test/resources/org/kohsuke/github/GHEventPayloadTest/pull_request_review.json @@ -439,4 +439,4 @@ "type": "User", "site_admin": false } -} +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHEventPayloadTest/pull_request_review_comment.json b/src/test/resources/org/kohsuke/github/GHEventPayloadTest/pull_request_review_comment.json index a89b6b547d..9934971675 100644 --- a/src/test/resources/org/kohsuke/github/GHEventPayloadTest/pull_request_review_comment.json +++ b/src/test/resources/org/kohsuke/github/GHEventPayloadTest/pull_request_review_comment.json @@ -443,4 +443,4 @@ "type": "User", "site_admin": false } -} +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHEventPayloadTest/push.json b/src/test/resources/org/kohsuke/github/GHEventPayloadTest/push.json index 11477e0bb7..6abcf9f261 100644 --- a/src/test/resources/org/kohsuke/github/GHEventPayloadTest/push.json +++ b/src/test/resources/org/kohsuke/github/GHEventPayloadTest/push.json @@ -25,10 +25,8 @@ "email": "baxterthehacker@users.noreply.github.com", "username": "baxterthehacker" }, - "added": [ - ], - "removed": [ - ], + "added": [], + "removed": [], "modified": [ "README.md" ] @@ -51,10 +49,8 @@ "email": "baxterthehacker@users.noreply.github.com", "username": "baxterthehacker" }, - "added": [ - ], - "removed": [ - ], + "added": [], + "removed": [], "modified": [ "README.md" ] @@ -156,4 +152,4 @@ "type": "User", "site_admin": false } -} +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHEventPayloadTest/release.json b/src/test/resources/org/kohsuke/github/GHEventPayloadTest/release.json index 35de2f33eb..3e4c536f94 100644 --- a/src/test/resources/org/kohsuke/github/GHEventPayloadTest/release.json +++ b/src/test/resources/org/kohsuke/github/GHEventPayloadTest/release.json @@ -32,8 +32,7 @@ "prerelease": false, "created_at": "2015-05-05T23:40:12Z", "published_at": "2015-05-05T23:40:38Z", - "assets": [ - ], + "assets": [], "tarball_url": "https://api.github.com/repos/baxterthehacker/public-repo/tarball/0.0.1", "zipball_url": "https://api.github.com/repos/baxterthehacker/public-repo/zipball/0.0.1", "body": null @@ -144,4 +143,4 @@ "type": "User", "site_admin": false } -} +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHEventPayloadTest/repository.json b/src/test/resources/org/kohsuke/github/GHEventPayloadTest/repository.json index d22386c3f2..1488482c7b 100644 --- a/src/test/resources/org/kohsuke/github/GHEventPayloadTest/repository.json +++ b/src/test/resources/org/kohsuke/github/GHEventPayloadTest/repository.json @@ -116,4 +116,4 @@ "type": "User", "site_admin": false } -} +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHEventPayloadTest/status.json b/src/test/resources/org/kohsuke/github/GHEventPayloadTest/status.json index 82f5a09967..a9c45c5c93 100644 --- a/src/test/resources/org/kohsuke/github/GHEventPayloadTest/status.json +++ b/src/test/resources/org/kohsuke/github/GHEventPayloadTest/status.json @@ -68,8 +68,7 @@ "type": "User", "site_admin": false }, - "parents": [ - ] + "parents": [] }, "branches": [ { @@ -202,4 +201,4 @@ "type": "User", "site_admin": false } -} +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHEventPayloadTest/team_add.json b/src/test/resources/org/kohsuke/github/GHEventPayloadTest/team_add.json index bd4256bc07..f5c84da340 100644 --- a/src/test/resources/org/kohsuke/github/GHEventPayloadTest/team_add.json +++ b/src/test/resources/org/kohsuke/github/GHEventPayloadTest/team_add.json @@ -126,4 +126,4 @@ "type": "Organization", "site_admin": false } -} +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHEventPayloadTest/watch.json b/src/test/resources/org/kohsuke/github/GHEventPayloadTest/watch.json index 88bc71d0ab..e71cd76b28 100644 --- a/src/test/resources/org/kohsuke/github/GHEventPayloadTest/watch.json +++ b/src/test/resources/org/kohsuke/github/GHEventPayloadTest/watch.json @@ -106,4 +106,4 @@ "type": "User", "site_admin": false } -} +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHGistUpdaterTest/wiremock/testGitUpdater/__files/gists-fde9aa5a-83fc-41d8-b556-16335859de73.json b/src/test/resources/org/kohsuke/github/GHGistUpdaterTest/wiremock/testGitUpdater/__files/gists-fde9aa5a-83fc-41d8-b556-16335859de73.json new file mode 100644 index 0000000000..c0d3a5cb17 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHGistUpdaterTest/wiremock/testGitUpdater/__files/gists-fde9aa5a-83fc-41d8-b556-16335859de73.json @@ -0,0 +1,100 @@ +{ + "url": "https://api.github.com/gists/209fef72c25fe4b3f673437603ab6d5d", + "forks_url": "https://api.github.com/gists/209fef72c25fe4b3f673437603ab6d5d/forks", + "commits_url": "https://api.github.com/gists/209fef72c25fe4b3f673437603ab6d5d/commits", + "id": "209fef72c25fe4b3f673437603ab6d5d", + "node_id": "MDQ6R2lzdDIwOWZlZjcyYzI1ZmU0YjNmNjczNDM3NjAzYWI2ZDVk", + "git_pull_url": "https://gist.github.com/209fef72c25fe4b3f673437603ab6d5d.git", + "git_push_url": "https://gist.github.com/209fef72c25fe4b3f673437603ab6d5d.git", + "html_url": "https://gist.github.com/209fef72c25fe4b3f673437603ab6d5d", + "files": { + "rename-me.py": { + "filename": "rename-me.py", + "type": "application/x-python", + "language": "Python", + "raw_url": "https://gist.githubusercontent.com/martinvanzijl/209fef72c25fe4b3f673437603ab6d5d/raw/b609dee383ab7aee026b182aa99086777a97cb77/rename-me.py", + "size": 13, + "truncated": false, + "content": "print 'hello'" + }, + "unmodified.txt": { + "filename": "unmodified.txt", + "type": "text/plain", + "language": "Text", + "raw_url": "https://gist.githubusercontent.com/martinvanzijl/209fef72c25fe4b3f673437603ab6d5d/raw/92aaf920c4873e413416e552aaad16cd79d361b7/unmodified.txt", + "size": 20, + "truncated": false, + "content": "Should be unmodified" + }, + "update-me.txt": { + "filename": "update-me.txt", + "type": "text/plain", + "language": "Text", + "raw_url": "https://gist.githubusercontent.com/martinvanzijl/209fef72c25fe4b3f673437603ab6d5d/raw/bd835e30ff8e75fb7f435c1868b747f83c3ba243/update-me.txt", + "size": 13, + "truncated": false, + "content": "To be updated" + } + }, + "public": true, + "created_at": "2019-10-09T18:06:38Z", + "updated_at": "2019-10-09T18:06:38Z", + "description": "Test for the API", + "comments": 0, + "user": null, + "comments_url": "https://api.github.com/gists/209fef72c25fe4b3f673437603ab6d5d/comments", + "owner": { + "login": "martinvanzijl", + "id": 24422213, + "node_id": "MDQ6VXNlcjI0NDIyMjEz", + "avatar_url": "https://avatars0.githubusercontent.com/u/24422213?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/martinvanzijl", + "html_url": "https://github.com/martinvanzijl", + "followers_url": "https://api.github.com/users/martinvanzijl/followers", + "following_url": "https://api.github.com/users/martinvanzijl/following{/other_user}", + "gists_url": "https://api.github.com/users/martinvanzijl/gists{/gist_id}", + "starred_url": "https://api.github.com/users/martinvanzijl/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/martinvanzijl/subscriptions", + "organizations_url": "https://api.github.com/users/martinvanzijl/orgs", + "repos_url": "https://api.github.com/users/martinvanzijl/repos", + "events_url": "https://api.github.com/users/martinvanzijl/events{/privacy}", + "received_events_url": "https://api.github.com/users/martinvanzijl/received_events", + "type": "User", + "site_admin": false + }, + "forks": [], + "history": [ + { + "user": { + "login": "martinvanzijl", + "id": 24422213, + "node_id": "MDQ6VXNlcjI0NDIyMjEz", + "avatar_url": "https://avatars0.githubusercontent.com/u/24422213?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/martinvanzijl", + "html_url": "https://github.com/martinvanzijl", + "followers_url": "https://api.github.com/users/martinvanzijl/followers", + "following_url": "https://api.github.com/users/martinvanzijl/following{/other_user}", + "gists_url": "https://api.github.com/users/martinvanzijl/gists{/gist_id}", + "starred_url": "https://api.github.com/users/martinvanzijl/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/martinvanzijl/subscriptions", + "organizations_url": "https://api.github.com/users/martinvanzijl/orgs", + "repos_url": "https://api.github.com/users/martinvanzijl/repos", + "events_url": "https://api.github.com/users/martinvanzijl/events{/privacy}", + "received_events_url": "https://api.github.com/users/martinvanzijl/received_events", + "type": "User", + "site_admin": false + }, + "version": "3ef13d1c0c4fc4deef97527c758d1068d2ca4fe3", + "committed_at": "2019-10-09T18:06:37Z", + "change_status": { + "total": 3, + "additions": 3, + "deletions": 0 + }, + "url": "https://api.github.com/gists/209fef72c25fe4b3f673437603ab6d5d/3ef13d1c0c4fc4deef97527c758d1068d2ca4fe3" + } + ], + "truncated": false +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHGistUpdaterTest/wiremock/testGitUpdater/__files/gists_209fef72c25fe4b3f673437603ab6d5d-d3ef0c04-12e0-4815-a871-ab7a397b00d7.json b/src/test/resources/org/kohsuke/github/GHGistUpdaterTest/wiremock/testGitUpdater/__files/gists_209fef72c25fe4b3f673437603ab6d5d-d3ef0c04-12e0-4815-a871-ab7a397b00d7.json new file mode 100644 index 0000000000..0aeeb7f2b7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHGistUpdaterTest/wiremock/testGitUpdater/__files/gists_209fef72c25fe4b3f673437603ab6d5d-d3ef0c04-12e0-4815-a871-ab7a397b00d7.json @@ -0,0 +1,139 @@ +{ + "url": "https://api.github.com/gists/209fef72c25fe4b3f673437603ab6d5d", + "forks_url": "https://api.github.com/gists/209fef72c25fe4b3f673437603ab6d5d/forks", + "commits_url": "https://api.github.com/gists/209fef72c25fe4b3f673437603ab6d5d/commits", + "id": "209fef72c25fe4b3f673437603ab6d5d", + "node_id": "MDQ6R2lzdDIwOWZlZjcyYzI1ZmU0YjNmNjczNDM3NjAzYWI2ZDVk", + "git_pull_url": "https://gist.github.com/209fef72c25fe4b3f673437603ab6d5d.git", + "git_push_url": "https://gist.github.com/209fef72c25fe4b3f673437603ab6d5d.git", + "html_url": "https://gist.github.com/209fef72c25fe4b3f673437603ab6d5d", + "files": { + "new-file.txt": { + "filename": "new-file.txt", + "type": "text/plain", + "language": "Text", + "raw_url": "https://gist.githubusercontent.com/martinvanzijl/209fef72c25fe4b3f673437603ab6d5d/raw/be732fb7a4178a55e5794e0b142b6e251545d7e4/new-file.txt", + "size": 16, + "truncated": false, + "content": "Added by updater" + }, + "renamed.py": { + "filename": "renamed.py", + "type": "application/x-python", + "language": "Python", + "raw_url": "https://gist.githubusercontent.com/martinvanzijl/209fef72c25fe4b3f673437603ab6d5d/raw/b609dee383ab7aee026b182aa99086777a97cb77/renamed.py", + "size": 13, + "truncated": false, + "content": "print 'hello'" + }, + "unmodified.txt": { + "filename": "unmodified.txt", + "type": "text/plain", + "language": "Text", + "raw_url": "https://gist.githubusercontent.com/martinvanzijl/209fef72c25fe4b3f673437603ab6d5d/raw/92aaf920c4873e413416e552aaad16cd79d361b7/unmodified.txt", + "size": 20, + "truncated": false, + "content": "Should be unmodified" + }, + "update-me.txt": { + "filename": "update-me.txt", + "type": "text/plain", + "language": "Text", + "raw_url": "https://gist.githubusercontent.com/martinvanzijl/209fef72c25fe4b3f673437603ab6d5d/raw/401c618749d9904b511a478bf45934966158b5bb/update-me.txt", + "size": 22, + "truncated": false, + "content": "Content updated by API" + } + }, + "public": true, + "created_at": "2019-10-09T18:06:38Z", + "updated_at": "2019-10-09T18:06:39Z", + "description": "Description updated by API", + "comments": 0, + "user": null, + "comments_url": "https://api.github.com/gists/209fef72c25fe4b3f673437603ab6d5d/comments", + "owner": { + "login": "martinvanzijl", + "id": 24422213, + "node_id": "MDQ6VXNlcjI0NDIyMjEz", + "avatar_url": "https://avatars0.githubusercontent.com/u/24422213?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/martinvanzijl", + "html_url": "https://github.com/martinvanzijl", + "followers_url": "https://api.github.com/users/martinvanzijl/followers", + "following_url": "https://api.github.com/users/martinvanzijl/following{/other_user}", + "gists_url": "https://api.github.com/users/martinvanzijl/gists{/gist_id}", + "starred_url": "https://api.github.com/users/martinvanzijl/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/martinvanzijl/subscriptions", + "organizations_url": "https://api.github.com/users/martinvanzijl/orgs", + "repos_url": "https://api.github.com/users/martinvanzijl/repos", + "events_url": "https://api.github.com/users/martinvanzijl/events{/privacy}", + "received_events_url": "https://api.github.com/users/martinvanzijl/received_events", + "type": "User", + "site_admin": false + }, + "forks": [], + "history": [ + { + "user": { + "login": "martinvanzijl", + "id": 24422213, + "node_id": "MDQ6VXNlcjI0NDIyMjEz", + "avatar_url": "https://avatars0.githubusercontent.com/u/24422213?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/martinvanzijl", + "html_url": "https://github.com/martinvanzijl", + "followers_url": "https://api.github.com/users/martinvanzijl/followers", + "following_url": "https://api.github.com/users/martinvanzijl/following{/other_user}", + "gists_url": "https://api.github.com/users/martinvanzijl/gists{/gist_id}", + "starred_url": "https://api.github.com/users/martinvanzijl/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/martinvanzijl/subscriptions", + "organizations_url": "https://api.github.com/users/martinvanzijl/orgs", + "repos_url": "https://api.github.com/users/martinvanzijl/repos", + "events_url": "https://api.github.com/users/martinvanzijl/events{/privacy}", + "received_events_url": "https://api.github.com/users/martinvanzijl/received_events", + "type": "User", + "site_admin": false + }, + "version": "a081e0cf18f30a48b337375327d1f04d4d61b2ab", + "committed_at": "2019-10-09T18:06:39Z", + "change_status": { + "total": 3, + "additions": 2, + "deletions": 1 + }, + "url": "https://api.github.com/gists/209fef72c25fe4b3f673437603ab6d5d/a081e0cf18f30a48b337375327d1f04d4d61b2ab" + }, + { + "user": { + "login": "martinvanzijl", + "id": 24422213, + "node_id": "MDQ6VXNlcjI0NDIyMjEz", + "avatar_url": "https://avatars0.githubusercontent.com/u/24422213?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/martinvanzijl", + "html_url": "https://github.com/martinvanzijl", + "followers_url": "https://api.github.com/users/martinvanzijl/followers", + "following_url": "https://api.github.com/users/martinvanzijl/following{/other_user}", + "gists_url": "https://api.github.com/users/martinvanzijl/gists{/gist_id}", + "starred_url": "https://api.github.com/users/martinvanzijl/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/martinvanzijl/subscriptions", + "organizations_url": "https://api.github.com/users/martinvanzijl/orgs", + "repos_url": "https://api.github.com/users/martinvanzijl/repos", + "events_url": "https://api.github.com/users/martinvanzijl/events{/privacy}", + "received_events_url": "https://api.github.com/users/martinvanzijl/received_events", + "type": "User", + "site_admin": false + }, + "version": "3ef13d1c0c4fc4deef97527c758d1068d2ca4fe3", + "committed_at": "2019-10-09T18:06:37Z", + "change_status": { + "total": 3, + "additions": 3, + "deletions": 0 + }, + "url": "https://api.github.com/gists/209fef72c25fe4b3f673437603ab6d5d/3ef13d1c0c4fc4deef97527c758d1068d2ca4fe3" + } + ], + "truncated": false +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHGistUpdaterTest/wiremock/testGitUpdater/mappings/gists-1-fde9aa.json b/src/test/resources/org/kohsuke/github/GHGistUpdaterTest/wiremock/testGitUpdater/mappings/gists-1-fde9aa.json new file mode 100644 index 0000000000..15895715f0 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHGistUpdaterTest/wiremock/testGitUpdater/mappings/gists-1-fde9aa.json @@ -0,0 +1,48 @@ +{ + "id": "fde9aa5a-83fc-41d8-b556-16335859de73", + "name": "gists", + "request": { + "url": "/gists", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"public\":true,\"description\":\"Test for the API\",\"files\":{\"unmodified.txt\":{\"content\":\"Should be unmodified\"},\"rename-me.py\":{\"content\":\"print 'hello'\"},\"update-me.txt\":{\"content\":\"To be updated\"}}}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "gists-fde9aa5a-83fc-41d8-b556-16335859de73.json", + "headers": { + "Date": "Wed, 09 Oct 2019 18:06:38 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4986", + "X-RateLimit-Reset": "1570647617", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"f60e43f46988893f64e50f632c072e41\"", + "Location": "https://api.github.com/gists/209fef72c25fe4b3f673437603ab6d5d", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "AF56:13F4:1234663:150EFE0:5D9E21AD" + } + }, + "uuid": "fde9aa5a-83fc-41d8-b556-16335859de73", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHGistUpdaterTest/wiremock/testGitUpdater/mappings/gists_209fef72c25fe4b3f673437603ab6d5d-2-d3ef0c.json b/src/test/resources/org/kohsuke/github/GHGistUpdaterTest/wiremock/testGitUpdater/mappings/gists_209fef72c25fe4b3f673437603ab6d5d-2-d3ef0c.json new file mode 100644 index 0000000000..a7225467da --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHGistUpdaterTest/wiremock/testGitUpdater/mappings/gists_209fef72c25fe4b3f673437603ab6d5d-2-d3ef0c.json @@ -0,0 +1,47 @@ +{ + "id": "d3ef0c04-12e0-4815-a871-ab7a397b00d7", + "name": "gists_209fef72c25fe4b3f673437603ab6d5d", + "request": { + "url": "/gists/209fef72c25fe4b3f673437603ab6d5d", + "method": "PATCH", + "bodyPatterns": [ + { + "equalToJson": "{\"description\":\"Description updated by API\",\"files\":{\"new-file.txt\":{\"content\":\"Added by updater\"},\"rename-me.py\":{\"filename\":\"renamed.py\"},\"update-me.txt\":{\"content\":\"Content updated by API\"}}}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 200, + "bodyFileName": "gists_209fef72c25fe4b3f673437603ab6d5d-d3ef0c04-12e0-4815-a871-ab7a397b00d7.json", + "headers": { + "Date": "Wed, 09 Oct 2019 18:06:40 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4985", + "X-RateLimit-Reset": "1570647617", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"428bc6a3a9c8f9c26b9023cf8ff0ac9f\"", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "AF56:13F4:1234695:150F007:5D9E21AE" + } + }, + "uuid": "d3ef0c04-12e0-4815-a871-ab7a397b00d7", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHGistUpdaterTest/wiremock/testGitUpdater/mappings/gists_209fef72c25fe4b3f673437603ab6d5d-3-94cd51.json b/src/test/resources/org/kohsuke/github/GHGistUpdaterTest/wiremock/testGitUpdater/mappings/gists_209fef72c25fe4b3f673437603ab6d5d-3-94cd51.json new file mode 100644 index 0000000000..1341899dd2 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHGistUpdaterTest/wiremock/testGitUpdater/mappings/gists_209fef72c25fe4b3f673437603ab6d5d-3-94cd51.json @@ -0,0 +1,33 @@ +{ + "id": "94cd5114-cc74-4003-ba1f-6bedcb561d20", + "name": "gists_209fef72c25fe4b3f673437603ab6d5d", + "request": { + "url": "/gists/209fef72c25fe4b3f673437603ab6d5d", + "method": "DELETE" + }, + "response": { + "status": 204, + "headers": { + "Date": "Wed, 09 Oct 2019 18:06:40 GMT", + "Server": "GitHub.com", + "Status": "204 No Content", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4984", + "X-RateLimit-Reset": "1570647617", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "AF56:13F4:12346B2:150F02F:5D9E21B0" + } + }, + "uuid": "94cd5114-cc74-4003-ba1f-6bedcb561d20", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/__files/orgs_github-api-test-org-0974905b-3de8-4061-bf78-6c18b9b91f54.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/__files/orgs_github-api-test-org-0974905b-3de8-4061-bf78-6c18b9b91f54.json new file mode 100644 index 0000000000..99b5920ccb --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/__files/orgs_github-api-test-org-0974905b-3de8-4061-bf78-6c18b9b91f54.json @@ -0,0 +1,41 @@ +{ + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "url": "https://api.github.com/orgs/github-api-test-org", + "repos_url": "https://api.github.com/orgs/github-api-test-org/repos", + "events_url": "https://api.github.com/orgs/github-api-test-org/events", + "hooks_url": "https://api.github.com/orgs/github-api-test-org/hooks", + "issues_url": "https://api.github.com/orgs/github-api-test-org/issues", + "members_url": "https://api.github.com/orgs/github-api-test-org/members{/member}", + "public_members_url": "https://api.github.com/orgs/github-api-test-org/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "description": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 10, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/github-api-test-org", + "created_at": "2014-05-10T19:39:11Z", + "updated_at": "2015-04-20T00:42:30Z", + "type": "Organization", + "total_private_repos": 0, + "owned_private_repos": 0, + "private_gists": 0, + "disk_usage": 132, + "collaborators": 0, + "billing_email": "kk@kohsuke.org", + "default_repository_permission": "none", + "members_can_create_repositories": false, + "two_factor_requirement_enabled": false, + "plan": { + "name": "free", + "space": 976562499, + "private_repos": 0, + "filled_seats": 7, + "seats": 0 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/__files/repos_github-api-test-org_github-api-ef3199ce-5e1b-4d47-ae87-ca3fe49a8dc6.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/__files/repos_github-api-test-org_github-api-ef3199ce-5e1b-4d47-ae87-ca3fe49a8dc6.json new file mode 100644 index 0000000000..70addcd65e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/__files/repos_github-api-test-org_github-api-ef3199ce-5e1b-4d47-ae87-ca3fe49a8dc6.json @@ -0,0 +1,330 @@ +{ + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Tricky", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-30T22:36:47Z", + "pushed_at": "2019-10-05T21:11:41Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11391, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "parent": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-10-10T19:18:03Z", + "pushed_at": "2019-10-09T20:42:07Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 13176, + "stargazers_count": 562, + "watchers_count": 562, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 430, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 82, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 430, + "open_issues": 82, + "watchers": 562, + "default_branch": "master" + }, + "source": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-10-10T19:18:03Z", + "pushed_at": "2019-10-09T20:42:07Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 13176, + "stargazers_count": 562, + "watchers_count": 562, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 430, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 82, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 430, + "open_issues": 82, + "watchers": 562, + "default_branch": "master" + }, + "network_count": 430, + "subscribers_count": 0 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/__files/repos_github-api-test-org_github-api_issues-218efdaf-b6d8-4161-935b-58bb1ab4d9fb.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/__files/repos_github-api-test-org_github-api_issues-218efdaf-b6d8-4161-935b-58bb1ab4d9fb.json new file mode 100644 index 0000000000..477a6ca0db --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/__files/repos_github-api-test-org_github-api_issues-218efdaf-b6d8-4161-935b-58bb1ab4d9fb.json @@ -0,0 +1,45 @@ +{ + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/313", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/313/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/313/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/313/events", + "html_url": "https://github.com/github-api-test-org/github-api/issues/313", + "id": 505616897, + "node_id": "MDU6SXNzdWU1MDU2MTY4OTc=", + "number": 313, + "title": "Test from the API", + "user": { + "login": "martinvanzijl", + "id": 24422213, + "node_id": "MDQ6VXNlcjI0NDIyMjEz", + "avatar_url": "https://avatars0.githubusercontent.com/u/24422213?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/martinvanzijl", + "html_url": "https://github.com/martinvanzijl", + "followers_url": "https://api.github.com/users/martinvanzijl/followers", + "following_url": "https://api.github.com/users/martinvanzijl/following{/other_user}", + "gists_url": "https://api.github.com/users/martinvanzijl/gists{/gist_id}", + "starred_url": "https://api.github.com/users/martinvanzijl/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/martinvanzijl/subscriptions", + "organizations_url": "https://api.github.com/users/martinvanzijl/orgs", + "repos_url": "https://api.github.com/users/martinvanzijl/repos", + "events_url": "https://api.github.com/users/martinvanzijl/events{/privacy}", + "received_events_url": "https://api.github.com/users/martinvanzijl/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-10-11T03:30:18Z", + "updated_at": "2019-10-11T03:30:18Z", + "closed_at": null, + "author_association": "MEMBER", + "body": null, + "closed_by": null +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/__files/repos_github-api-test-org_github-api_issues_313-450e6f09-ae2a-4870-a24d-f7620a437891.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/__files/repos_github-api-test-org_github-api_issues_313-450e6f09-ae2a-4870-a24d-f7620a437891.json new file mode 100644 index 0000000000..2867d19fc1 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/__files/repos_github-api-test-org_github-api_issues_313-450e6f09-ae2a-4870-a24d-f7620a437891.json @@ -0,0 +1,73 @@ +{ + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/313", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/313/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/313/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/313/events", + "html_url": "https://github.com/github-api-test-org/github-api/issues/313", + "id": 505616897, + "node_id": "MDU6SXNzdWU1MDU2MTY4OTc=", + "number": 313, + "title": "Test from the API", + "user": { + "login": "martinvanzijl", + "id": 24422213, + "node_id": "MDQ6VXNlcjI0NDIyMjEz", + "avatar_url": "https://avatars0.githubusercontent.com/u/24422213?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/martinvanzijl", + "html_url": "https://github.com/martinvanzijl", + "followers_url": "https://api.github.com/users/martinvanzijl/followers", + "following_url": "https://api.github.com/users/martinvanzijl/following{/other_user}", + "gists_url": "https://api.github.com/users/martinvanzijl/gists{/gist_id}", + "starred_url": "https://api.github.com/users/martinvanzijl/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/martinvanzijl/subscriptions", + "organizations_url": "https://api.github.com/users/martinvanzijl/orgs", + "repos_url": "https://api.github.com/users/martinvanzijl/repos", + "events_url": "https://api.github.com/users/martinvanzijl/events{/privacy}", + "received_events_url": "https://api.github.com/users/martinvanzijl/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 1609073376, + "node_id": "MDU6TGFiZWwxNjA5MDczMzc2", + "url": "https://api.github.com/repos/github-api-test-org/github-api/labels/test-label", + "name": "test-label", + "color": "ededed", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-10-11T03:30:18Z", + "updated_at": "2019-10-11T03:30:21Z", + "closed_at": "2019-10-11T03:30:21Z", + "author_association": "MEMBER", + "body": null, + "closed_by": { + "login": "martinvanzijl", + "id": 24422213, + "node_id": "MDQ6VXNlcjI0NDIyMjEz", + "avatar_url": "https://avatars0.githubusercontent.com/u/24422213?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/martinvanzijl", + "html_url": "https://github.com/martinvanzijl", + "followers_url": "https://api.github.com/users/martinvanzijl/followers", + "following_url": "https://api.github.com/users/martinvanzijl/following{/other_user}", + "gists_url": "https://api.github.com/users/martinvanzijl/gists{/gist_id}", + "starred_url": "https://api.github.com/users/martinvanzijl/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/martinvanzijl/subscriptions", + "organizations_url": "https://api.github.com/users/martinvanzijl/orgs", + "repos_url": "https://api.github.com/users/martinvanzijl/repos", + "events_url": "https://api.github.com/users/martinvanzijl/events{/privacy}", + "received_events_url": "https://api.github.com/users/martinvanzijl/received_events", + "type": "User", + "site_admin": false + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/__files/repos_github-api-test-org_github-api_issues_313-9895867a-152d-425a-85ab-b7557241c309.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/__files/repos_github-api-test-org_github-api_issues_313-9895867a-152d-425a-85ab-b7557241c309.json new file mode 100644 index 0000000000..be017751a3 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/__files/repos_github-api-test-org_github-api_issues_313-9895867a-152d-425a-85ab-b7557241c309.json @@ -0,0 +1,54 @@ +{ + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/313", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/313/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/313/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/313/events", + "html_url": "https://github.com/github-api-test-org/github-api/issues/313", + "id": 505616897, + "node_id": "MDU6SXNzdWU1MDU2MTY4OTc=", + "number": 313, + "title": "Test from the API", + "user": { + "login": "martinvanzijl", + "id": 24422213, + "node_id": "MDQ6VXNlcjI0NDIyMjEz", + "avatar_url": "https://avatars0.githubusercontent.com/u/24422213?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/martinvanzijl", + "html_url": "https://github.com/martinvanzijl", + "followers_url": "https://api.github.com/users/martinvanzijl/followers", + "following_url": "https://api.github.com/users/martinvanzijl/following{/other_user}", + "gists_url": "https://api.github.com/users/martinvanzijl/gists{/gist_id}", + "starred_url": "https://api.github.com/users/martinvanzijl/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/martinvanzijl/subscriptions", + "organizations_url": "https://api.github.com/users/martinvanzijl/orgs", + "repos_url": "https://api.github.com/users/martinvanzijl/repos", + "events_url": "https://api.github.com/users/martinvanzijl/events{/privacy}", + "received_events_url": "https://api.github.com/users/martinvanzijl/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 1609073376, + "node_id": "MDU6TGFiZWwxNjA5MDczMzc2", + "url": "https://api.github.com/repos/github-api-test-org/github-api/labels/test-label", + "name": "test-label", + "color": "ededed", + "default": false + } + ], + "state": "open", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-10-11T03:30:18Z", + "updated_at": "2019-10-11T03:30:19Z", + "closed_at": null, + "author_association": "MEMBER", + "body": null, + "closed_by": null +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/__files/repos_github-api-test-org_github-api_issues_313_events-ef9890e7-cc75-4757-afba-42fc12908cd9.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/__files/repos_github-api-test-org_github-api_issues_313_events-ef9890e7-cc75-4757-afba-42fc12908cd9.json new file mode 100644 index 0000000000..fc9e600215 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/__files/repos_github-api-test-org_github-api_issues_313_events-ef9890e7-cc75-4757-afba-42fc12908cd9.json @@ -0,0 +1,35 @@ +[ + { + "id": 2704815753, + "node_id": "MDEyOkxhYmVsZWRFdmVudDI3MDQ4MTU3NTM=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2704815753", + "actor": { + "login": "martinvanzijl", + "id": 24422213, + "node_id": "MDQ6VXNlcjI0NDIyMjEz", + "avatar_url": "https://avatars0.githubusercontent.com/u/24422213?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/martinvanzijl", + "html_url": "https://github.com/martinvanzijl", + "followers_url": "https://api.github.com/users/martinvanzijl/followers", + "following_url": "https://api.github.com/users/martinvanzijl/following{/other_user}", + "gists_url": "https://api.github.com/users/martinvanzijl/gists{/gist_id}", + "starred_url": "https://api.github.com/users/martinvanzijl/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/martinvanzijl/subscriptions", + "organizations_url": "https://api.github.com/users/martinvanzijl/orgs", + "repos_url": "https://api.github.com/users/martinvanzijl/repos", + "events_url": "https://api.github.com/users/martinvanzijl/events{/privacy}", + "received_events_url": "https://api.github.com/users/martinvanzijl/received_events", + "type": "User", + "site_admin": false + }, + "event": "labeled", + "commit_id": null, + "commit_url": null, + "created_at": "2019-10-11T03:30:19Z", + "label": { + "name": "test-label", + "color": "ededed" + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/__files/repos_github-api-test-org_github-api_issues_events_2704815753-306d4048-2cef-4339-aae4-e03195f651e4.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/__files/repos_github-api-test-org_github-api_issues_events_2704815753-306d4048-2cef-4339-aae4-e03195f651e4.json new file mode 100644 index 0000000000..67abe462a1 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/__files/repos_github-api-test-org_github-api_issues_events_2704815753-306d4048-2cef-4339-aae4-e03195f651e4.json @@ -0,0 +1,86 @@ +{ + "id": 2704815753, + "node_id": "MDEyOkxhYmVsZWRFdmVudDI3MDQ4MTU3NTM=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2704815753", + "actor": { + "login": "martinvanzijl", + "id": 24422213, + "node_id": "MDQ6VXNlcjI0NDIyMjEz", + "avatar_url": "https://avatars0.githubusercontent.com/u/24422213?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/martinvanzijl", + "html_url": "https://github.com/martinvanzijl", + "followers_url": "https://api.github.com/users/martinvanzijl/followers", + "following_url": "https://api.github.com/users/martinvanzijl/following{/other_user}", + "gists_url": "https://api.github.com/users/martinvanzijl/gists{/gist_id}", + "starred_url": "https://api.github.com/users/martinvanzijl/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/martinvanzijl/subscriptions", + "organizations_url": "https://api.github.com/users/martinvanzijl/orgs", + "repos_url": "https://api.github.com/users/martinvanzijl/repos", + "events_url": "https://api.github.com/users/martinvanzijl/events{/privacy}", + "received_events_url": "https://api.github.com/users/martinvanzijl/received_events", + "type": "User", + "site_admin": false + }, + "event": "labeled", + "commit_id": null, + "commit_url": null, + "created_at": "2019-10-11T03:30:19Z", + "label": { + "name": "test-label", + "color": "ededed" + }, + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/313", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/313/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/313/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/313/events", + "html_url": "https://github.com/github-api-test-org/github-api/issues/313", + "id": 505616897, + "node_id": "MDU6SXNzdWU1MDU2MTY4OTc=", + "number": 313, + "title": "Test from the API", + "user": { + "login": "martinvanzijl", + "id": 24422213, + "node_id": "MDQ6VXNlcjI0NDIyMjEz", + "avatar_url": "https://avatars0.githubusercontent.com/u/24422213?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/martinvanzijl", + "html_url": "https://github.com/martinvanzijl", + "followers_url": "https://api.github.com/users/martinvanzijl/followers", + "following_url": "https://api.github.com/users/martinvanzijl/following{/other_user}", + "gists_url": "https://api.github.com/users/martinvanzijl/gists{/gist_id}", + "starred_url": "https://api.github.com/users/martinvanzijl/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/martinvanzijl/subscriptions", + "organizations_url": "https://api.github.com/users/martinvanzijl/orgs", + "repos_url": "https://api.github.com/users/martinvanzijl/repos", + "events_url": "https://api.github.com/users/martinvanzijl/events{/privacy}", + "received_events_url": "https://api.github.com/users/martinvanzijl/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 1609073376, + "node_id": "MDU6TGFiZWwxNjA5MDczMzc2", + "url": "https://api.github.com/repos/github-api-test-org/github-api/labels/test-label", + "name": "test-label", + "color": "ededed", + "default": false + } + ], + "state": "open", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-10-11T03:30:18Z", + "updated_at": "2019-10-11T03:30:19Z", + "closed_at": null, + "author_association": "COLLABORATOR", + "body": null + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/mappings/orgs_github-api-test-org-6-097490.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/mappings/orgs_github-api-test-org-6-097490.json new file mode 100644 index 0000000000..8a563f3951 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/mappings/orgs_github-api-test-org-6-097490.json @@ -0,0 +1,41 @@ +{ + "id": "0974905b-3de8-4061-bf78-6c18b9b91f54", + "name": "orgs_github-api-test-org", + "request": { + "url": "/orgs/github-api-test-org", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_github-api-test-org-0974905b-3de8-4061-bf78-6c18b9b91f54.json", + "headers": { + "Date": "Fri, 11 Oct 2019 03:33:44 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4966", + "X-RateLimit-Reset": "1570768157", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"4342e0e7004c1a50986c767513fe857d\"", + "Last-Modified": "Mon, 20 Apr 2015 00:42:30 GMT", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C425:6C54:15E531:196CC3:5D9FF818" + } + }, + "uuid": "0974905b-3de8-4061-bf78-6c18b9b91f54", + "persistent": true, + "insertionIndex": 6 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/mappings/repos_github-api-test-org_github-api-7-ef3199.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/mappings/repos_github-api-test-org_github-api-7-ef3199.json new file mode 100644 index 0000000000..2dccfb5ea1 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/mappings/repos_github-api-test-org_github-api-7-ef3199.json @@ -0,0 +1,41 @@ +{ + "id": "ef3199ce-5e1b-4d47-ae87-ca3fe49a8dc6", + "name": "repos_github-api-test-org_github-api", + "request": { + "url": "/repos/github-api-test-org/github-api", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api-ef3199ce-5e1b-4d47-ae87-ca3fe49a8dc6.json", + "headers": { + "Date": "Fri, 11 Oct 2019 03:33:45 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4965", + "X-RateLimit-Reset": "1570768157", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"372f82a1e3bde8ceaacf16c227e5ca93\"", + "Last-Modified": "Mon, 30 Sep 2019 22:36:47 GMT", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C425:6C54:15E53F:196CD5:5D9FF818" + } + }, + "uuid": "ef3199ce-5e1b-4d47-ae87-ca3fe49a8dc6", + "persistent": true, + "insertionIndex": 7 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/mappings/repos_github-api-test-org_github-api_issues-5-218efd.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/mappings/repos_github-api-test-org_github-api_issues-5-218efd.json new file mode 100644 index 0000000000..1e282383fa --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/mappings/repos_github-api-test-org_github-api_issues-5-218efd.json @@ -0,0 +1,48 @@ +{ + "id": "218efdaf-b6d8-4161-935b-58bb1ab4d9fb", + "name": "repos_github-api-test-org_github-api_issues", + "request": { + "url": "/repos/github-api-test-org/github-api/issues", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"assignees\":[],\"title\":\"Test from the API\",\"labels\":[]}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "repos_github-api-test-org_github-api_issues-218efdaf-b6d8-4161-935b-58bb1ab4d9fb.json", + "headers": { + "Date": "Fri, 11 Oct 2019 03:30:19 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4987", + "X-RateLimit-Reset": "1570768157", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"e1ef249243a0702886c04cdaa9aed9f7\"", + "Location": "https://api.github.com/repos/github-api-test-org/github-api/issues/313", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C425:5841:162B1F:19A693:5D9FF74A" + } + }, + "uuid": "218efdaf-b6d8-4161-935b-58bb1ab4d9fb", + "persistent": true, + "insertionIndex": 5 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/mappings/repos_github-api-test-org_github-api_issues_313-6-989586.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/mappings/repos_github-api-test-org_github-api_issues_313-6-989586.json new file mode 100644 index 0000000000..a95976f9f0 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/mappings/repos_github-api-test-org_github-api_issues_313-6-989586.json @@ -0,0 +1,47 @@ +{ + "id": "9895867a-152d-425a-85ab-b7557241c309", + "name": "repos_github-api-test-org_github-api_issues_313", + "request": { + "url": "/repos/github-api-test-org/github-api/issues/313", + "method": "PATCH", + "bodyPatterns": [ + { + "equalToJson": "{\"labels\":[\"test-label\"]}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api_issues_313-9895867a-152d-425a-85ab-b7557241c309.json", + "headers": { + "Date": "Fri, 11 Oct 2019 03:30:19 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4986", + "X-RateLimit-Reset": "1570768157", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"156824107235f2d1bc92a324caca92d3\"", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C425:5841:162B43:19A6B5:5D9FF74B" + } + }, + "uuid": "9895867a-152d-425a-85ab-b7557241c309", + "persistent": true, + "insertionIndex": 6 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/mappings/repos_github-api-test-org_github-api_issues_313-9-450e6f.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/mappings/repos_github-api-test-org_github-api_issues_313-9-450e6f.json new file mode 100644 index 0000000000..d1a57883d0 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/mappings/repos_github-api-test-org_github-api_issues_313-9-450e6f.json @@ -0,0 +1,47 @@ +{ + "id": "450e6f09-ae2a-4870-a24d-f7620a437891", + "name": "repos_github-api-test-org_github-api_issues_313", + "request": { + "url": "/repos/github-api-test-org/github-api/issues/313", + "method": "PATCH", + "bodyPatterns": [ + { + "equalToJson": "{\"state\":\"closed\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api_issues_313-450e6f09-ae2a-4870-a24d-f7620a437891.json", + "headers": { + "Date": "Fri, 11 Oct 2019 03:30:21 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4983", + "X-RateLimit-Reset": "1570768157", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"fbb10a2c4f764898914d634928494d25\"", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C425:5841:162B75:19A6FB:5D9FF74C" + } + }, + "uuid": "450e6f09-ae2a-4870-a24d-f7620a437891", + "persistent": true, + "insertionIndex": 9 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/mappings/repos_github-api-test-org_github-api_issues_313_events-7-ef9890.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/mappings/repos_github-api-test-org_github-api_issues_313_events-7-ef9890.json new file mode 100644 index 0000000000..bf66f42b9b --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/mappings/repos_github-api-test-org_github-api_issues_313_events-7-ef9890.json @@ -0,0 +1,40 @@ +{ + "id": "ef9890e7-cc75-4757-afba-42fc12908cd9", + "name": "repos_github-api-test-org_github-api_issues_313_events", + "request": { + "url": "/repos/github-api-test-org/github-api/issues/313/events", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api_issues_313_events-ef9890e7-cc75-4757-afba-42fc12908cd9.json", + "headers": { + "Date": "Fri, 11 Oct 2019 03:30:20 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4985", + "X-RateLimit-Reset": "1570768157", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"36e3ee1bd95ef214115e90c88db267ac\"", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C425:5841:162B53:19A6D1:5D9FF74B" + } + }, + "uuid": "ef9890e7-cc75-4757-afba-42fc12908cd9", + "persistent": true, + "insertionIndex": 7 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/mappings/repos_github-api-test-org_github-api_issues_events_2704815753-8-306d40.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/mappings/repos_github-api-test-org_github-api_issues_events_2704815753-8-306d40.json new file mode 100644 index 0000000000..abb46cec7b --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/mappings/repos_github-api-test-org_github-api_issues_events_2704815753-8-306d40.json @@ -0,0 +1,41 @@ +{ + "id": "306d4048-2cef-4339-aae4-e03195f651e4", + "name": "repos_github-api-test-org_github-api_issues_events_2704815753", + "request": { + "url": "/repos/github-api-test-org/github-api/issues/events/2704815753", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api_issues_events_2704815753-306d4048-2cef-4339-aae4-e03195f651e4.json", + "headers": { + "Date": "Fri, 11 Oct 2019 03:30:20 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4984", + "X-RateLimit-Reset": "1570768157", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"11ac613d699eae4c0ed7856f256d2f3d\"", + "Last-Modified": "Fri, 11 Oct 2019 03:30:19 GMT", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C425:5841:162B67:19A6E7:5D9FF74C" + } + }, + "uuid": "306d4048-2cef-4339-aae4-e03195f651e4", + "persistent": true, + "insertionIndex": 8 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/orgs_github-api-test-org-b27b8752-74a5-4f0d-8d9c-483cb31d4178.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/orgs_github-api-test-org-b27b8752-74a5-4f0d-8d9c-483cb31d4178.json new file mode 100644 index 0000000000..99b5920ccb --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/orgs_github-api-test-org-b27b8752-74a5-4f0d-8d9c-483cb31d4178.json @@ -0,0 +1,41 @@ +{ + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "url": "https://api.github.com/orgs/github-api-test-org", + "repos_url": "https://api.github.com/orgs/github-api-test-org/repos", + "events_url": "https://api.github.com/orgs/github-api-test-org/events", + "hooks_url": "https://api.github.com/orgs/github-api-test-org/hooks", + "issues_url": "https://api.github.com/orgs/github-api-test-org/issues", + "members_url": "https://api.github.com/orgs/github-api-test-org/members{/member}", + "public_members_url": "https://api.github.com/orgs/github-api-test-org/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "description": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 10, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/github-api-test-org", + "created_at": "2014-05-10T19:39:11Z", + "updated_at": "2015-04-20T00:42:30Z", + "type": "Organization", + "total_private_repos": 0, + "owned_private_repos": 0, + "private_gists": 0, + "disk_usage": 132, + "collaborators": 0, + "billing_email": "kk@kohsuke.org", + "default_repository_permission": "none", + "members_can_create_repositories": false, + "two_factor_requirement_enabled": false, + "plan": { + "name": "free", + "space": 976562499, + "private_repos": 0, + "filled_seats": 7, + "seats": 0 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repos_github-api-test-org_github-api-2afea771-4bdb-4e32-b0ba-e72ed286f6c2.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repos_github-api-test-org_github-api-2afea771-4bdb-4e32-b0ba-e72ed286f6c2.json new file mode 100644 index 0000000000..70addcd65e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repos_github-api-test-org_github-api-2afea771-4bdb-4e32-b0ba-e72ed286f6c2.json @@ -0,0 +1,330 @@ +{ + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Tricky", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-30T22:36:47Z", + "pushed_at": "2019-10-05T21:11:41Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11391, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "parent": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-10-10T19:18:03Z", + "pushed_at": "2019-10-09T20:42:07Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 13176, + "stargazers_count": 562, + "watchers_count": 562, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 430, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 82, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 430, + "open_issues": 82, + "watchers": 562, + "default_branch": "master" + }, + "source": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-10-10T19:18:03Z", + "pushed_at": "2019-10-09T20:42:07Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 13176, + "stargazers_count": 562, + "watchers_count": 562, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 430, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 82, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 430, + "open_issues": 82, + "watchers": 562, + "default_branch": "master" + }, + "network_count": 430, + "subscribers_count": 0 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repos_github-api-test-org_github-api_issues_events-d6129252-9f48-4380-babb-cc06baa4234e.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repos_github-api-test-org_github-api_issues_events-d6129252-9f48-4380-babb-cc06baa4234e.json new file mode 100644 index 0000000000..8db9125aff --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repos_github-api-test-org_github-api_issues_events-d6129252-9f48-4380-babb-cc06baa4234e.json @@ -0,0 +1,2635 @@ +[ + { + "id": 2704815778, + "node_id": "MDExOkNsb3NlZEV2ZW50MjcwNDgxNTc3OA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2704815778", + "actor": { + "login": "martinvanzijl", + "id": 24422213, + "node_id": "MDQ6VXNlcjI0NDIyMjEz", + "avatar_url": "https://avatars0.githubusercontent.com/u/24422213?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/martinvanzijl", + "html_url": "https://github.com/martinvanzijl", + "followers_url": "https://api.github.com/users/martinvanzijl/followers", + "following_url": "https://api.github.com/users/martinvanzijl/following{/other_user}", + "gists_url": "https://api.github.com/users/martinvanzijl/gists{/gist_id}", + "starred_url": "https://api.github.com/users/martinvanzijl/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/martinvanzijl/subscriptions", + "organizations_url": "https://api.github.com/users/martinvanzijl/orgs", + "repos_url": "https://api.github.com/users/martinvanzijl/repos", + "events_url": "https://api.github.com/users/martinvanzijl/events{/privacy}", + "received_events_url": "https://api.github.com/users/martinvanzijl/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-10-11T03:30:21Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/313", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/313/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/313/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/313/events", + "html_url": "https://github.com/github-api-test-org/github-api/issues/313", + "id": 505616897, + "node_id": "MDU6SXNzdWU1MDU2MTY4OTc=", + "number": 313, + "title": "Test from the API", + "user": { + "login": "martinvanzijl", + "id": 24422213, + "node_id": "MDQ6VXNlcjI0NDIyMjEz", + "avatar_url": "https://avatars0.githubusercontent.com/u/24422213?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/martinvanzijl", + "html_url": "https://github.com/martinvanzijl", + "followers_url": "https://api.github.com/users/martinvanzijl/followers", + "following_url": "https://api.github.com/users/martinvanzijl/following{/other_user}", + "gists_url": "https://api.github.com/users/martinvanzijl/gists{/gist_id}", + "starred_url": "https://api.github.com/users/martinvanzijl/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/martinvanzijl/subscriptions", + "organizations_url": "https://api.github.com/users/martinvanzijl/orgs", + "repos_url": "https://api.github.com/users/martinvanzijl/repos", + "events_url": "https://api.github.com/users/martinvanzijl/events{/privacy}", + "received_events_url": "https://api.github.com/users/martinvanzijl/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 1609073376, + "node_id": "MDU6TGFiZWwxNjA5MDczMzc2", + "url": "https://api.github.com/repos/github-api-test-org/github-api/labels/test-label", + "name": "test-label", + "color": "ededed", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-10-11T03:30:18Z", + "updated_at": "2019-10-11T03:30:21Z", + "closed_at": "2019-10-11T03:30:21Z", + "author_association": "COLLABORATOR", + "body": null + } + }, + { + "id": 2704815753, + "node_id": "MDEyOkxhYmVsZWRFdmVudDI3MDQ4MTU3NTM=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2704815753", + "actor": { + "login": "martinvanzijl", + "id": 24422213, + "node_id": "MDQ6VXNlcjI0NDIyMjEz", + "avatar_url": "https://avatars0.githubusercontent.com/u/24422213?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/martinvanzijl", + "html_url": "https://github.com/martinvanzijl", + "followers_url": "https://api.github.com/users/martinvanzijl/followers", + "following_url": "https://api.github.com/users/martinvanzijl/following{/other_user}", + "gists_url": "https://api.github.com/users/martinvanzijl/gists{/gist_id}", + "starred_url": "https://api.github.com/users/martinvanzijl/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/martinvanzijl/subscriptions", + "organizations_url": "https://api.github.com/users/martinvanzijl/orgs", + "repos_url": "https://api.github.com/users/martinvanzijl/repos", + "events_url": "https://api.github.com/users/martinvanzijl/events{/privacy}", + "received_events_url": "https://api.github.com/users/martinvanzijl/received_events", + "type": "User", + "site_admin": false + }, + "event": "labeled", + "commit_id": null, + "commit_url": null, + "created_at": "2019-10-11T03:30:19Z", + "label": { + "name": "test-label", + "color": "ededed" + }, + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/313", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/313/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/313/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/313/events", + "html_url": "https://github.com/github-api-test-org/github-api/issues/313", + "id": 505616897, + "node_id": "MDU6SXNzdWU1MDU2MTY4OTc=", + "number": 313, + "title": "Test from the API", + "user": { + "login": "martinvanzijl", + "id": 24422213, + "node_id": "MDQ6VXNlcjI0NDIyMjEz", + "avatar_url": "https://avatars0.githubusercontent.com/u/24422213?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/martinvanzijl", + "html_url": "https://github.com/martinvanzijl", + "followers_url": "https://api.github.com/users/martinvanzijl/followers", + "following_url": "https://api.github.com/users/martinvanzijl/following{/other_user}", + "gists_url": "https://api.github.com/users/martinvanzijl/gists{/gist_id}", + "starred_url": "https://api.github.com/users/martinvanzijl/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/martinvanzijl/subscriptions", + "organizations_url": "https://api.github.com/users/martinvanzijl/orgs", + "repos_url": "https://api.github.com/users/martinvanzijl/repos", + "events_url": "https://api.github.com/users/martinvanzijl/events{/privacy}", + "received_events_url": "https://api.github.com/users/martinvanzijl/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 1609073376, + "node_id": "MDU6TGFiZWwxNjA5MDczMzc2", + "url": "https://api.github.com/repos/github-api-test-org/github-api/labels/test-label", + "name": "test-label", + "color": "ededed", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-10-11T03:30:18Z", + "updated_at": "2019-10-11T03:30:21Z", + "closed_at": "2019-10-11T03:30:21Z", + "author_association": "COLLABORATOR", + "body": null + } + }, + { + "id": 2704814591, + "node_id": "MDExOkNsb3NlZEV2ZW50MjcwNDgxNDU5MQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2704814591", + "actor": { + "login": "martinvanzijl", + "id": 24422213, + "node_id": "MDQ6VXNlcjI0NDIyMjEz", + "avatar_url": "https://avatars0.githubusercontent.com/u/24422213?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/martinvanzijl", + "html_url": "https://github.com/martinvanzijl", + "followers_url": "https://api.github.com/users/martinvanzijl/followers", + "following_url": "https://api.github.com/users/martinvanzijl/following{/other_user}", + "gists_url": "https://api.github.com/users/martinvanzijl/gists{/gist_id}", + "starred_url": "https://api.github.com/users/martinvanzijl/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/martinvanzijl/subscriptions", + "organizations_url": "https://api.github.com/users/martinvanzijl/orgs", + "repos_url": "https://api.github.com/users/martinvanzijl/repos", + "events_url": "https://api.github.com/users/martinvanzijl/events{/privacy}", + "received_events_url": "https://api.github.com/users/martinvanzijl/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-10-11T03:29:20Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/312", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/312/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/312/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/312/events", + "html_url": "https://github.com/github-api-test-org/github-api/issues/312", + "id": 505616681, + "node_id": "MDU6SXNzdWU1MDU2MTY2ODE=", + "number": 312, + "title": "Test from the API", + "user": { + "login": "martinvanzijl", + "id": 24422213, + "node_id": "MDQ6VXNlcjI0NDIyMjEz", + "avatar_url": "https://avatars0.githubusercontent.com/u/24422213?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/martinvanzijl", + "html_url": "https://github.com/martinvanzijl", + "followers_url": "https://api.github.com/users/martinvanzijl/followers", + "following_url": "https://api.github.com/users/martinvanzijl/following{/other_user}", + "gists_url": "https://api.github.com/users/martinvanzijl/gists{/gist_id}", + "starred_url": "https://api.github.com/users/martinvanzijl/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/martinvanzijl/subscriptions", + "organizations_url": "https://api.github.com/users/martinvanzijl/orgs", + "repos_url": "https://api.github.com/users/martinvanzijl/repos", + "events_url": "https://api.github.com/users/martinvanzijl/events{/privacy}", + "received_events_url": "https://api.github.com/users/martinvanzijl/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 1609073376, + "node_id": "MDU6TGFiZWwxNjA5MDczMzc2", + "url": "https://api.github.com/repos/github-api-test-org/github-api/labels/test-label", + "name": "test-label", + "color": "ededed", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-10-11T03:29:17Z", + "updated_at": "2019-10-11T03:29:19Z", + "closed_at": "2019-10-11T03:29:19Z", + "author_association": "COLLABORATOR", + "body": null + } + }, + { + "id": 2704814544, + "node_id": "MDEyOkxhYmVsZWRFdmVudDI3MDQ4MTQ1NDQ=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2704814544", + "actor": { + "login": "martinvanzijl", + "id": 24422213, + "node_id": "MDQ6VXNlcjI0NDIyMjEz", + "avatar_url": "https://avatars0.githubusercontent.com/u/24422213?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/martinvanzijl", + "html_url": "https://github.com/martinvanzijl", + "followers_url": "https://api.github.com/users/martinvanzijl/followers", + "following_url": "https://api.github.com/users/martinvanzijl/following{/other_user}", + "gists_url": "https://api.github.com/users/martinvanzijl/gists{/gist_id}", + "starred_url": "https://api.github.com/users/martinvanzijl/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/martinvanzijl/subscriptions", + "organizations_url": "https://api.github.com/users/martinvanzijl/orgs", + "repos_url": "https://api.github.com/users/martinvanzijl/repos", + "events_url": "https://api.github.com/users/martinvanzijl/events{/privacy}", + "received_events_url": "https://api.github.com/users/martinvanzijl/received_events", + "type": "User", + "site_admin": false + }, + "event": "labeled", + "commit_id": null, + "commit_url": null, + "created_at": "2019-10-11T03:29:18Z", + "label": { + "name": "test-label", + "color": "ededed" + }, + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/312", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/312/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/312/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/312/events", + "html_url": "https://github.com/github-api-test-org/github-api/issues/312", + "id": 505616681, + "node_id": "MDU6SXNzdWU1MDU2MTY2ODE=", + "number": 312, + "title": "Test from the API", + "user": { + "login": "martinvanzijl", + "id": 24422213, + "node_id": "MDQ6VXNlcjI0NDIyMjEz", + "avatar_url": "https://avatars0.githubusercontent.com/u/24422213?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/martinvanzijl", + "html_url": "https://github.com/martinvanzijl", + "followers_url": "https://api.github.com/users/martinvanzijl/followers", + "following_url": "https://api.github.com/users/martinvanzijl/following{/other_user}", + "gists_url": "https://api.github.com/users/martinvanzijl/gists{/gist_id}", + "starred_url": "https://api.github.com/users/martinvanzijl/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/martinvanzijl/subscriptions", + "organizations_url": "https://api.github.com/users/martinvanzijl/orgs", + "repos_url": "https://api.github.com/users/martinvanzijl/repos", + "events_url": "https://api.github.com/users/martinvanzijl/events{/privacy}", + "received_events_url": "https://api.github.com/users/martinvanzijl/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 1609073376, + "node_id": "MDU6TGFiZWwxNjA5MDczMzc2", + "url": "https://api.github.com/repos/github-api-test-org/github-api/labels/test-label", + "name": "test-label", + "color": "ededed", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-10-11T03:29:17Z", + "updated_at": "2019-10-11T03:29:19Z", + "closed_at": "2019-10-11T03:29:19Z", + "author_association": "COLLABORATOR", + "body": null + } + }, + { + "id": 2704805468, + "node_id": "MDExOkNsb3NlZEV2ZW50MjcwNDgwNTQ2OA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2704805468", + "actor": { + "login": "martinvanzijl", + "id": 24422213, + "node_id": "MDQ6VXNlcjI0NDIyMjEz", + "avatar_url": "https://avatars0.githubusercontent.com/u/24422213?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/martinvanzijl", + "html_url": "https://github.com/martinvanzijl", + "followers_url": "https://api.github.com/users/martinvanzijl/followers", + "following_url": "https://api.github.com/users/martinvanzijl/following{/other_user}", + "gists_url": "https://api.github.com/users/martinvanzijl/gists{/gist_id}", + "starred_url": "https://api.github.com/users/martinvanzijl/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/martinvanzijl/subscriptions", + "organizations_url": "https://api.github.com/users/martinvanzijl/orgs", + "repos_url": "https://api.github.com/users/martinvanzijl/repos", + "events_url": "https://api.github.com/users/martinvanzijl/events{/privacy}", + "received_events_url": "https://api.github.com/users/martinvanzijl/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-10-11T03:22:05Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/311", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/311/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/311/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/311/events", + "html_url": "https://github.com/github-api-test-org/github-api/issues/311", + "id": 505614938, + "node_id": "MDU6SXNzdWU1MDU2MTQ5Mzg=", + "number": 311, + "title": "Test from the API", + "user": { + "login": "martinvanzijl", + "id": 24422213, + "node_id": "MDQ6VXNlcjI0NDIyMjEz", + "avatar_url": "https://avatars0.githubusercontent.com/u/24422213?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/martinvanzijl", + "html_url": "https://github.com/martinvanzijl", + "followers_url": "https://api.github.com/users/martinvanzijl/followers", + "following_url": "https://api.github.com/users/martinvanzijl/following{/other_user}", + "gists_url": "https://api.github.com/users/martinvanzijl/gists{/gist_id}", + "starred_url": "https://api.github.com/users/martinvanzijl/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/martinvanzijl/subscriptions", + "organizations_url": "https://api.github.com/users/martinvanzijl/orgs", + "repos_url": "https://api.github.com/users/martinvanzijl/repos", + "events_url": "https://api.github.com/users/martinvanzijl/events{/privacy}", + "received_events_url": "https://api.github.com/users/martinvanzijl/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 1609073376, + "node_id": "MDU6TGFiZWwxNjA5MDczMzc2", + "url": "https://api.github.com/repos/github-api-test-org/github-api/labels/test-label", + "name": "test-label", + "color": "ededed", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-10-11T03:22:03Z", + "updated_at": "2019-10-11T03:22:05Z", + "closed_at": "2019-10-11T03:22:05Z", + "author_association": "COLLABORATOR", + "body": null + } + }, + { + "id": 2704805438, + "node_id": "MDEyOkxhYmVsZWRFdmVudDI3MDQ4MDU0Mzg=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2704805438", + "actor": { + "login": "martinvanzijl", + "id": 24422213, + "node_id": "MDQ6VXNlcjI0NDIyMjEz", + "avatar_url": "https://avatars0.githubusercontent.com/u/24422213?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/martinvanzijl", + "html_url": "https://github.com/martinvanzijl", + "followers_url": "https://api.github.com/users/martinvanzijl/followers", + "following_url": "https://api.github.com/users/martinvanzijl/following{/other_user}", + "gists_url": "https://api.github.com/users/martinvanzijl/gists{/gist_id}", + "starred_url": "https://api.github.com/users/martinvanzijl/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/martinvanzijl/subscriptions", + "organizations_url": "https://api.github.com/users/martinvanzijl/orgs", + "repos_url": "https://api.github.com/users/martinvanzijl/repos", + "events_url": "https://api.github.com/users/martinvanzijl/events{/privacy}", + "received_events_url": "https://api.github.com/users/martinvanzijl/received_events", + "type": "User", + "site_admin": false + }, + "event": "labeled", + "commit_id": null, + "commit_url": null, + "created_at": "2019-10-11T03:22:04Z", + "label": { + "name": "test-label", + "color": "ededed" + }, + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/311", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/311/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/311/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/311/events", + "html_url": "https://github.com/github-api-test-org/github-api/issues/311", + "id": 505614938, + "node_id": "MDU6SXNzdWU1MDU2MTQ5Mzg=", + "number": 311, + "title": "Test from the API", + "user": { + "login": "martinvanzijl", + "id": 24422213, + "node_id": "MDQ6VXNlcjI0NDIyMjEz", + "avatar_url": "https://avatars0.githubusercontent.com/u/24422213?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/martinvanzijl", + "html_url": "https://github.com/martinvanzijl", + "followers_url": "https://api.github.com/users/martinvanzijl/followers", + "following_url": "https://api.github.com/users/martinvanzijl/following{/other_user}", + "gists_url": "https://api.github.com/users/martinvanzijl/gists{/gist_id}", + "starred_url": "https://api.github.com/users/martinvanzijl/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/martinvanzijl/subscriptions", + "organizations_url": "https://api.github.com/users/martinvanzijl/orgs", + "repos_url": "https://api.github.com/users/martinvanzijl/repos", + "events_url": "https://api.github.com/users/martinvanzijl/events{/privacy}", + "received_events_url": "https://api.github.com/users/martinvanzijl/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 1609073376, + "node_id": "MDU6TGFiZWwxNjA5MDczMzc2", + "url": "https://api.github.com/repos/github-api-test-org/github-api/labels/test-label", + "name": "test-label", + "color": "ededed", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-10-11T03:22:03Z", + "updated_at": "2019-10-11T03:22:05Z", + "closed_at": "2019-10-11T03:22:05Z", + "author_association": "COLLABORATOR", + "body": null + } + }, + { + "id": 2704799433, + "node_id": "MDEyOkxhYmVsZWRFdmVudDI3MDQ3OTk0MzM=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2704799433", + "actor": { + "login": "martinvanzijl", + "id": 24422213, + "node_id": "MDQ6VXNlcjI0NDIyMjEz", + "avatar_url": "https://avatars0.githubusercontent.com/u/24422213?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/martinvanzijl", + "html_url": "https://github.com/martinvanzijl", + "followers_url": "https://api.github.com/users/martinvanzijl/followers", + "following_url": "https://api.github.com/users/martinvanzijl/following{/other_user}", + "gists_url": "https://api.github.com/users/martinvanzijl/gists{/gist_id}", + "starred_url": "https://api.github.com/users/martinvanzijl/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/martinvanzijl/subscriptions", + "organizations_url": "https://api.github.com/users/martinvanzijl/orgs", + "repos_url": "https://api.github.com/users/martinvanzijl/repos", + "events_url": "https://api.github.com/users/martinvanzijl/events{/privacy}", + "received_events_url": "https://api.github.com/users/martinvanzijl/received_events", + "type": "User", + "site_admin": false + }, + "event": "labeled", + "commit_id": null, + "commit_url": null, + "created_at": "2019-10-11T03:17:01Z", + "label": { + "name": "test-label", + "color": "ededed" + }, + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/310", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/310/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/310/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/310/events", + "html_url": "https://github.com/github-api-test-org/github-api/issues/310", + "id": 505613709, + "node_id": "MDU6SXNzdWU1MDU2MTM3MDk=", + "number": 310, + "title": "Test from the API", + "user": { + "login": "martinvanzijl", + "id": 24422213, + "node_id": "MDQ6VXNlcjI0NDIyMjEz", + "avatar_url": "https://avatars0.githubusercontent.com/u/24422213?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/martinvanzijl", + "html_url": "https://github.com/martinvanzijl", + "followers_url": "https://api.github.com/users/martinvanzijl/followers", + "following_url": "https://api.github.com/users/martinvanzijl/following{/other_user}", + "gists_url": "https://api.github.com/users/martinvanzijl/gists{/gist_id}", + "starred_url": "https://api.github.com/users/martinvanzijl/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/martinvanzijl/subscriptions", + "organizations_url": "https://api.github.com/users/martinvanzijl/orgs", + "repos_url": "https://api.github.com/users/martinvanzijl/repos", + "events_url": "https://api.github.com/users/martinvanzijl/events{/privacy}", + "received_events_url": "https://api.github.com/users/martinvanzijl/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 1609073376, + "node_id": "MDU6TGFiZWwxNjA5MDczMzc2", + "url": "https://api.github.com/repos/github-api-test-org/github-api/labels/test-label", + "name": "test-label", + "color": "ededed", + "default": false + } + ], + "state": "open", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-10-11T03:17:00Z", + "updated_at": "2019-10-11T03:17:01Z", + "closed_at": null, + "author_association": "COLLABORATOR", + "body": null + } + }, + { + "id": 2689533890, + "node_id": "MDExOkNsb3NlZEV2ZW50MjY4OTUzMzg5MA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2689533890", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-10-05T21:11:44Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/309", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/309/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/309/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/309/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/309", + "id": 503016634, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzI0OTc2NzY0", + "number": 309, + "title": "mergeCommitSHA", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-10-05T21:11:40Z", + "updated_at": "2019-10-05T21:11:44Z", + "closed_at": "2019-10-05T21:11:44Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/309", + "html_url": "https://github.com/github-api-test-org/github-api/pull/309", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/309.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/309.patch" + }, + "body": "## test" + } + }, + { + "id": 2689529120, + "node_id": "MDExOkNsb3NlZEV2ZW50MjY4OTUyOTEyMA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2689529120", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-10-05T21:06:17Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/308", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/308/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/308/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/308/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/308", + "id": 503016151, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzI0OTc2NDE3", + "number": 308, + "title": "mergeCommitSHA", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-10-05T21:06:14Z", + "updated_at": "2019-10-05T21:06:17Z", + "closed_at": "2019-10-05T21:06:17Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/308", + "html_url": "https://github.com/github-api-test-org/github-api/pull/308", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/308.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/308.patch" + }, + "body": "## test" + } + }, + { + "id": 2689528838, + "node_id": "MDExOkNsb3NlZEV2ZW50MjY4OTUyODgzOA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2689528838", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-10-05T21:05:41Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/307", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/307/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/307/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/307/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/307", + "id": 503016070, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzI0OTc2MzY0", + "number": 307, + "title": "mergeCommitSHA", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-10-05T21:05:18Z", + "updated_at": "2019-10-05T21:05:41Z", + "closed_at": "2019-10-05T21:05:41Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/307", + "html_url": "https://github.com/github-api-test-org/github-api/pull/307", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/307.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/307.patch" + }, + "body": "## test" + } + }, + { + "id": 2689528162, + "node_id": "MDExOkNsb3NlZEV2ZW50MjY4OTUyODE2Mg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2689528162", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-10-05T21:03:55Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/306", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/306/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/306/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/306/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/306", + "id": 503015957, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzI0OTc2Mjg1", + "number": 306, + "title": "mergeCommitSHA", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-10-05T21:03:53Z", + "updated_at": "2019-10-05T21:03:55Z", + "closed_at": "2019-10-05T21:03:55Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/306", + "html_url": "https://github.com/github-api-test-org/github-api/pull/306", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/306.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/306.patch" + }, + "body": "## test" + } + }, + { + "id": 2689526916, + "node_id": "MDExOkNsb3NlZEV2ZW50MjY4OTUyNjkxNg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2689526916", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-10-05T21:02:37Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/305", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/305/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/305/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/305/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/305", + "id": 503015817, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzI0OTc2MTgz", + "number": 305, + "title": "mergeCommitSHA", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-10-05T21:02:35Z", + "updated_at": "2019-10-05T21:02:37Z", + "closed_at": "2019-10-05T21:02:37Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/305", + "html_url": "https://github.com/github-api-test-org/github-api/pull/305", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/305.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/305.patch" + }, + "body": "## test" + } + }, + { + "id": 2689293858, + "node_id": "MDExOkNsb3NlZEV2ZW50MjY4OTI5Mzg1OA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2689293858", + "actor": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-10-05T13:12:38Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/304", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/304/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/304/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/304/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/304", + "id": 502961627, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzI0OTM4NjI5", + "number": 304, + "title": "testPullRequestTeamReviewRequests", + "user": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-10-05T13:12:37Z", + "updated_at": "2019-10-05T13:12:38Z", + "closed_at": "2019-10-05T13:12:38Z", + "author_association": "COLLABORATOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/304", + "html_url": "https://github.com/github-api-test-org/github-api/pull/304", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/304.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/304.patch" + }, + "body": "## test" + } + }, + { + "id": 2689293845, + "node_id": "MDIwOlJldmlld1JlcXVlc3RlZEV2ZW50MjY4OTI5Mzg0NQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2689293845", + "actor": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "event": "review_requested", + "commit_id": null, + "commit_url": null, + "created_at": "2019-10-05T13:12:37Z", + "review_requester": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "requested_team": { + "name": "dummy-team", + "id": 3451996, + "node_id": "MDQ6VGVhbTM0NTE5OTY=", + "slug": "dummy-team", + "description": "Updated by API TestModified", + "privacy": "closed", + "url": "https://api.github.com/teams/3451996", + "html_url": "https://github.com/orgs/github-api-test-org/teams/dummy-team", + "members_url": "https://api.github.com/teams/3451996/members{/member}", + "repositories_url": "https://api.github.com/teams/3451996/repos", + "permission": "pull" + }, + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/304", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/304/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/304/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/304/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/304", + "id": 502961627, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzI0OTM4NjI5", + "number": 304, + "title": "testPullRequestTeamReviewRequests", + "user": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-10-05T13:12:37Z", + "updated_at": "2019-10-05T13:12:38Z", + "closed_at": "2019-10-05T13:12:38Z", + "author_association": "COLLABORATOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/304", + "html_url": "https://github.com/github-api-test-org/github-api/pull/304", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/304.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/304.patch" + }, + "body": "## test" + } + }, + { + "id": 2689289235, + "node_id": "MDExOkNsb3NlZEV2ZW50MjY4OTI4OTIzNQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2689289235", + "actor": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-10-05T13:02:19Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/303", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/303/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/303/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/303/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/303", + "id": 502959055, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzI0OTM2ODYx", + "number": 303, + "title": "testPullRequestTeamReviewRequests", + "user": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-10-05T12:46:14Z", + "updated_at": "2019-10-05T13:02:19Z", + "closed_at": "2019-10-05T13:02:19Z", + "author_association": "COLLABORATOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/303", + "html_url": "https://github.com/github-api-test-org/github-api/pull/303", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/303.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/303.patch" + }, + "body": "## test" + } + }, + { + "id": 2689282060, + "node_id": "MDIwOlJldmlld1JlcXVlc3RlZEV2ZW50MjY4OTI4MjA2MA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2689282060", + "actor": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "event": "review_requested", + "commit_id": null, + "commit_url": null, + "created_at": "2019-10-05T12:46:15Z", + "review_requester": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "requested_team": { + "name": "dummy-team", + "id": 3451996, + "node_id": "MDQ6VGVhbTM0NTE5OTY=", + "slug": "dummy-team", + "description": "Updated by API TestModified", + "privacy": "closed", + "url": "https://api.github.com/teams/3451996", + "html_url": "https://github.com/orgs/github-api-test-org/teams/dummy-team", + "members_url": "https://api.github.com/teams/3451996/members{/member}", + "repositories_url": "https://api.github.com/teams/3451996/repos", + "permission": "pull" + }, + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/303", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/303/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/303/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/303/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/303", + "id": 502959055, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzI0OTM2ODYx", + "number": 303, + "title": "testPullRequestTeamReviewRequests", + "user": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-10-05T12:46:14Z", + "updated_at": "2019-10-05T13:02:19Z", + "closed_at": "2019-10-05T13:02:19Z", + "author_association": "COLLABORATOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/303", + "html_url": "https://github.com/github-api-test-org/github-api/pull/303", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/303.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/303.patch" + }, + "body": "## test" + } + }, + { + "id": 2689281438, + "node_id": "MDExOkNsb3NlZEV2ZW50MjY4OTI4MTQzOA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2689281438", + "actor": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-10-05T12:44:47Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/302", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/302/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/302/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/302/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/302", + "id": 502958900, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzI0OTM2NzY1", + "number": 302, + "title": "testPullRequestTeamReviewRequests", + "user": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-10-05T12:44:46Z", + "updated_at": "2019-10-05T12:44:47Z", + "closed_at": "2019-10-05T12:44:47Z", + "author_association": "COLLABORATOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/302", + "html_url": "https://github.com/github-api-test-org/github-api/pull/302", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/302.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/302.patch" + }, + "body": "## test" + } + }, + { + "id": 2689279995, + "node_id": "MDExOkNsb3NlZEV2ZW50MjY4OTI3OTk5NQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2689279995", + "actor": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-10-05T12:41:40Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/301", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/301/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/301/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/301/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/301", + "id": 502958575, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzI0OTM2NTQ2", + "number": 301, + "title": "testPullRequestTeamReviewRequests", + "user": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-10-05T12:41:39Z", + "updated_at": "2019-10-05T12:41:40Z", + "closed_at": "2019-10-05T12:41:40Z", + "author_association": "COLLABORATOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/301", + "html_url": "https://github.com/github-api-test-org/github-api/pull/301", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/301.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/301.patch" + }, + "body": "## test" + } + }, + { + "id": 2689279274, + "node_id": "MDExOkNsb3NlZEV2ZW50MjY4OTI3OTI3NA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2689279274", + "actor": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-10-05T12:40:03Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/300", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/300/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/300/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/300/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/300", + "id": 502958421, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzI0OTM2NDQ1", + "number": 300, + "title": "testPullRequestTeamReviewRequests", + "user": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-10-05T12:40:01Z", + "updated_at": "2019-10-05T12:40:03Z", + "closed_at": "2019-10-05T12:40:03Z", + "author_association": "COLLABORATOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/300", + "html_url": "https://github.com/github-api-test-org/github-api/pull/300", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/300.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/300.patch" + }, + "body": "## test" + } + }, + { + "id": 2689276859, + "node_id": "MDExOkNsb3NlZEV2ZW50MjY4OTI3Njg1OQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2689276859", + "actor": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-10-05T12:34:33Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/299", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/299/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/299/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/299/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/299", + "id": 502957866, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzI0OTM2MDc3", + "number": 299, + "title": "testPullRequestReviewRequests", + "user": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-10-05T12:34:31Z", + "updated_at": "2019-10-05T12:34:33Z", + "closed_at": "2019-10-05T12:34:33Z", + "author_association": "COLLABORATOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/299", + "html_url": "https://github.com/github-api-test-org/github-api/pull/299", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/299.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/299.patch" + }, + "body": "## test" + } + }, + { + "id": 2689276842, + "node_id": "MDIwOlJldmlld1JlcXVlc3RlZEV2ZW50MjY4OTI3Njg0Mg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2689276842", + "actor": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "event": "review_requested", + "commit_id": null, + "commit_url": null, + "created_at": "2019-10-05T12:34:32Z", + "review_requester": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "requested_reviewer": { + "login": "kohsuke2", + "id": 1329242, + "node_id": "MDQ6VXNlcjEzMjkyNDI=", + "avatar_url": "https://avatars2.githubusercontent.com/u/1329242?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kohsuke2", + "html_url": "https://github.com/kohsuke2", + "followers_url": "https://api.github.com/users/kohsuke2/followers", + "following_url": "https://api.github.com/users/kohsuke2/following{/other_user}", + "gists_url": "https://api.github.com/users/kohsuke2/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kohsuke2/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kohsuke2/subscriptions", + "organizations_url": "https://api.github.com/users/kohsuke2/orgs", + "repos_url": "https://api.github.com/users/kohsuke2/repos", + "events_url": "https://api.github.com/users/kohsuke2/events{/privacy}", + "received_events_url": "https://api.github.com/users/kohsuke2/received_events", + "type": "User", + "site_admin": false + }, + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/299", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/299/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/299/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/299/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/299", + "id": 502957866, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzI0OTM2MDc3", + "number": 299, + "title": "testPullRequestReviewRequests", + "user": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-10-05T12:34:31Z", + "updated_at": "2019-10-05T12:34:33Z", + "closed_at": "2019-10-05T12:34:33Z", + "author_association": "COLLABORATOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/299", + "html_url": "https://github.com/github-api-test-org/github-api/pull/299", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/299.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/299.patch" + }, + "body": "## test" + } + }, + { + "id": 2652148783, + "node_id": "MDExOkNsb3NlZEV2ZW50MjY1MjE0ODc4Mw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2652148783", + "actor": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-21T14:29:16Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/298", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/298/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/298/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/298/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/298", + "id": 496662096, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE5OTY0MzI4", + "number": 298, + "title": "testPullRequestReviewRequests", + "user": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-21T14:29:14Z", + "updated_at": "2019-09-21T14:29:16Z", + "closed_at": "2019-09-21T14:29:16Z", + "author_association": "COLLABORATOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/298", + "html_url": "https://github.com/github-api-test-org/github-api/pull/298", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/298.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/298.patch" + }, + "body": "## test" + } + }, + { + "id": 2652148776, + "node_id": "MDIwOlJldmlld1JlcXVlc3RlZEV2ZW50MjY1MjE0ODc3Ng==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2652148776", + "actor": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "event": "review_requested", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-21T14:29:14Z", + "review_requester": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "requested_reviewer": { + "login": "kohsuke2", + "id": 1329242, + "node_id": "MDQ6VXNlcjEzMjkyNDI=", + "avatar_url": "https://avatars2.githubusercontent.com/u/1329242?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kohsuke2", + "html_url": "https://github.com/kohsuke2", + "followers_url": "https://api.github.com/users/kohsuke2/followers", + "following_url": "https://api.github.com/users/kohsuke2/following{/other_user}", + "gists_url": "https://api.github.com/users/kohsuke2/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kohsuke2/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kohsuke2/subscriptions", + "organizations_url": "https://api.github.com/users/kohsuke2/orgs", + "repos_url": "https://api.github.com/users/kohsuke2/repos", + "events_url": "https://api.github.com/users/kohsuke2/events{/privacy}", + "received_events_url": "https://api.github.com/users/kohsuke2/received_events", + "type": "User", + "site_admin": false + }, + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/298", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/298/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/298/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/298/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/298", + "id": 496662096, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE5OTY0MzI4", + "number": 298, + "title": "testPullRequestReviewRequests", + "user": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-21T14:29:14Z", + "updated_at": "2019-09-21T14:29:16Z", + "closed_at": "2019-09-21T14:29:16Z", + "author_association": "COLLABORATOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/298", + "html_url": "https://github.com/github-api-test-org/github-api/pull/298", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/298.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/298.patch" + }, + "body": "## test" + } + }, + { + "id": 2652148370, + "node_id": "MDExOkNsb3NlZEV2ZW50MjY1MjE0ODM3MA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2652148370", + "actor": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-21T14:28:19Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/297", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/297/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/297/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/297/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/297", + "id": 496662005, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE5OTY0MjYw", + "number": 297, + "title": "testPullRequestReviewRequests", + "user": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-21T14:28:17Z", + "updated_at": "2019-09-21T14:28:19Z", + "closed_at": "2019-09-21T14:28:19Z", + "author_association": "COLLABORATOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/297", + "html_url": "https://github.com/github-api-test-org/github-api/pull/297", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/297.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/297.patch" + }, + "body": "## test" + } + }, + { + "id": 2652148362, + "node_id": "MDIwOlJldmlld1JlcXVlc3RlZEV2ZW50MjY1MjE0ODM2Mg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2652148362", + "actor": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "event": "review_requested", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-21T14:28:18Z", + "review_requester": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "requested_reviewer": { + "login": "kohsuke2", + "id": 1329242, + "node_id": "MDQ6VXNlcjEzMjkyNDI=", + "avatar_url": "https://avatars2.githubusercontent.com/u/1329242?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kohsuke2", + "html_url": "https://github.com/kohsuke2", + "followers_url": "https://api.github.com/users/kohsuke2/followers", + "following_url": "https://api.github.com/users/kohsuke2/following{/other_user}", + "gists_url": "https://api.github.com/users/kohsuke2/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kohsuke2/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kohsuke2/subscriptions", + "organizations_url": "https://api.github.com/users/kohsuke2/orgs", + "repos_url": "https://api.github.com/users/kohsuke2/repos", + "events_url": "https://api.github.com/users/kohsuke2/events{/privacy}", + "received_events_url": "https://api.github.com/users/kohsuke2/received_events", + "type": "User", + "site_admin": false + }, + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/297", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/297/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/297/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/297/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/297", + "id": 496662005, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE5OTY0MjYw", + "number": 297, + "title": "testPullRequestReviewRequests", + "user": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-21T14:28:17Z", + "updated_at": "2019-09-21T14:28:19Z", + "closed_at": "2019-09-21T14:28:19Z", + "author_association": "COLLABORATOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/297", + "html_url": "https://github.com/github-api-test-org/github-api/pull/297", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/297.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/297.patch" + }, + "body": "## test" + } + }, + { + "id": 2652147584, + "node_id": "MDExOkNsb3NlZEV2ZW50MjY1MjE0NzU4NA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2652147584", + "actor": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-21T14:26:33Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/296", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/296/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/296/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/296/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/296", + "id": 496661825, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE5OTY0MTQw", + "number": 296, + "title": "testPullRequestReviewRequests", + "user": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-21T14:26:31Z", + "updated_at": "2019-09-21T14:26:33Z", + "closed_at": "2019-09-21T14:26:33Z", + "author_association": "COLLABORATOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/296", + "html_url": "https://github.com/github-api-test-org/github-api/pull/296", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/296.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/296.patch" + }, + "body": "## test" + } + }, + { + "id": 2652147572, + "node_id": "MDIwOlJldmlld1JlcXVlc3RlZEV2ZW50MjY1MjE0NzU3Mg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2652147572", + "actor": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "event": "review_requested", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-21T14:26:32Z", + "review_requester": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "requested_reviewer": { + "login": "kohsuke2", + "id": 1329242, + "node_id": "MDQ6VXNlcjEzMjkyNDI=", + "avatar_url": "https://avatars2.githubusercontent.com/u/1329242?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kohsuke2", + "html_url": "https://github.com/kohsuke2", + "followers_url": "https://api.github.com/users/kohsuke2/followers", + "following_url": "https://api.github.com/users/kohsuke2/following{/other_user}", + "gists_url": "https://api.github.com/users/kohsuke2/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kohsuke2/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kohsuke2/subscriptions", + "organizations_url": "https://api.github.com/users/kohsuke2/orgs", + "repos_url": "https://api.github.com/users/kohsuke2/repos", + "events_url": "https://api.github.com/users/kohsuke2/events{/privacy}", + "received_events_url": "https://api.github.com/users/kohsuke2/received_events", + "type": "User", + "site_admin": false + }, + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/296", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/296/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/296/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/296/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/296", + "id": 496661825, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE5OTY0MTQw", + "number": 296, + "title": "testPullRequestReviewRequests", + "user": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-21T14:26:31Z", + "updated_at": "2019-09-21T14:26:33Z", + "closed_at": "2019-09-21T14:26:33Z", + "author_association": "COLLABORATOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/296", + "html_url": "https://github.com/github-api-test-org/github-api/pull/296", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/296.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/296.patch" + }, + "body": "## test" + } + }, + { + "id": 2623507248, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYyMzUwNzI0OA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2623507248", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-10T19:59:00Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/295", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/295/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/295/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/295/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/295", + "id": 491868141, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE2MTUzMDk0", + "number": 295, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-10T19:58:58Z", + "updated_at": "2019-09-10T19:59:00Z", + "closed_at": "2019-09-10T19:58:59Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/295", + "html_url": "https://github.com/github-api-test-org/github-api/pull/295", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/295.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/295.patch" + }, + "body": "## test" + } + }, + { + "id": 2623244519, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYyMzI0NDUxOQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2623244519", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-10T18:23:28Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/294", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/294/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/294/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/294/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/294", + "id": 491827352, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE2MTE5NjA4", + "number": 294, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-10T18:23:23Z", + "updated_at": "2019-09-10T18:23:28Z", + "closed_at": "2019-09-10T18:23:28Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/294", + "html_url": "https://github.com/github-api-test-org/github-api/pull/294", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/294.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/294.patch" + }, + "body": "## test" + } + }, + { + "id": 2623233017, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYyMzIzMzAxNw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2623233017", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-10T18:19:41Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/293", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/293/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/293/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/293/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/293", + "id": 491825727, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE2MTE4Mjg2", + "number": 293, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-10T18:19:38Z", + "updated_at": "2019-09-10T18:19:41Z", + "closed_at": "2019-09-10T18:19:41Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/293", + "html_url": "https://github.com/github-api-test-org/github-api/pull/293", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/293.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/293.patch" + }, + "body": "## test" + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-208a37ec-cb3d-4d4e-b27f-f6df770111b3.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-208a37ec-cb3d-4d4e-b27f-f6df770111b3.json new file mode 100644 index 0000000000..4b2418011a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-208a37ec-cb3d-4d4e-b27f-f6df770111b3.json @@ -0,0 +1,2527 @@ +[ + { + "id": 2615995003, + "node_id": "MDEyOkxhYmVsZWRFdmVudDI2MTU5OTUwMDM=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615995003", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "labeled", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:44:44Z", + "label": { + "name": "setLabels_label_name", + "color": "ededed" + }, + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/125", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/125/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/125/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/125/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/125", + "id": 490591152, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY2Mzg2", + "number": 125, + "title": "setLabels", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 1541702441, + "node_id": "MDU6TGFiZWwxNTQxNzAyNDQx", + "url": "https://api.github.com/repos/github-api-test-org/github-api/labels/setLabels_label_name", + "name": "setLabels_label_name", + "color": "ededed", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:44:44Z", + "updated_at": "2019-09-07T04:44:46Z", + "closed_at": "2019-09-07T04:44:46Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/125", + "html_url": "https://github.com/github-api-test-org/github-api/pull/125", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/125.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/125.patch" + }, + "body": "## test" + } + }, + { + "id": 2615994993, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk5NDk5Mw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615994993", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:44:43Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/124", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/124/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/124/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/124/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/124", + "id": 490591148, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY2Mzgy", + "number": 124, + "title": "getUser", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:44:40Z", + "updated_at": "2019-09-07T04:44:43Z", + "closed_at": "2019-09-07T04:44:43Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/124", + "html_url": "https://github.com/github-api-test-org/github-api/pull/124", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/124.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/124.patch" + }, + "body": "## test" + } + }, + { + "id": 2615994961, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk5NDk2MQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615994961", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:44:39Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/123", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/123/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/123/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/123/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/123", + "id": 490591146, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY2Mzgw", + "number": 123, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:44:38Z", + "updated_at": "2019-09-07T04:44:39Z", + "closed_at": "2019-09-07T04:44:39Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/123", + "html_url": "https://github.com/github-api-test-org/github-api/pull/123", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/123.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/123.patch" + }, + "body": "## test" + } + }, + { + "id": 2615994933, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk5NDkzMw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615994933", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:44:35Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/121", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/121/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/121/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/121/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/121", + "id": 490591133, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY2Mzcw", + "number": 121, + "title": "queryPullRequestsQualifiedHead_stable", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:44:32Z", + "updated_at": "2019-09-07T04:44:34Z", + "closed_at": "2019-09-07T04:44:34Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/121", + "html_url": "https://github.com/github-api-test-org/github-api/pull/121", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/121.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/121.patch" + }, + "body": null + } + }, + { + "id": 2615994926, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk5NDkyNg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615994926", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:44:34Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/122", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/122/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/122/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/122/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/122", + "id": 490591134, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY2Mzcx", + "number": 122, + "title": "queryPullRequestsQualifiedHead_rc", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:44:33Z", + "updated_at": "2019-09-07T04:44:34Z", + "closed_at": "2019-09-07T04:44:34Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/122", + "html_url": "https://github.com/github-api-test-org/github-api/pull/122", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/122.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/122.patch" + }, + "body": null + } + }, + { + "id": 2615994902, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk5NDkwMg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615994902", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:44:30Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/119", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/119/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/119/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/119/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/119", + "id": 490590924, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY2MjIy", + "number": 119, + "title": "updateContentSquashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:41:21Z", + "updated_at": "2019-09-07T04:45:30Z", + "closed_at": "2019-09-07T04:44:30Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/119", + "html_url": "https://github.com/github-api-test-org/github-api/pull/119", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/119.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/119.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2615994896, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk5NDg5Ng==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615994896", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:44:30Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/120", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/120/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/120/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/120/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/120", + "id": 490591127, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY2MzY2", + "number": 120, + "title": "testPullRequestReviews", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:44:26Z", + "updated_at": "2019-09-07T04:44:30Z", + "closed_at": "2019-09-07T04:44:30Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/120", + "html_url": "https://github.com/github-api-test-org/github-api/pull/120", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/120.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/120.patch" + }, + "body": "## test" + } + }, + { + "id": 2615993779, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk5Mzc3OQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615993779", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:41:15Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/117", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/117/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/117/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/117/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/117", + "id": 490590912, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY2MjE0", + "number": 117, + "title": "queryPullRequestsQualifiedHead_stable", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:41:12Z", + "updated_at": "2019-09-07T04:41:15Z", + "closed_at": "2019-09-07T04:41:15Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/117", + "html_url": "https://github.com/github-api-test-org/github-api/pull/117", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/117.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/117.patch" + }, + "body": null + } + }, + { + "id": 2615993766, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk5Mzc2Ng==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615993766", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:41:14Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/118", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/118/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/118/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/118/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/118", + "id": 490590913, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY2MjE1", + "number": 118, + "title": "queryPullRequestsQualifiedHead_rc", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:41:13Z", + "updated_at": "2019-09-07T04:41:14Z", + "closed_at": "2019-09-07T04:41:14Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/118", + "html_url": "https://github.com/github-api-test-org/github-api/pull/118", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/118.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/118.patch" + }, + "body": null + } + }, + { + "id": 2615993711, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk5MzcxMQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615993711", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:41:11Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/116", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/116/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/116/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/116/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/116", + "id": 490590904, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY2MjA5", + "number": 116, + "title": "testPullRequestReviews", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:41:06Z", + "updated_at": "2019-09-07T04:41:11Z", + "closed_at": "2019-09-07T04:41:11Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/116", + "html_url": "https://github.com/github-api-test-org/github-api/pull/116", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/116.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/116.patch" + }, + "body": "## test" + } + }, + { + "id": 2615992899, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk5Mjg5OQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615992899", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:39:04Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/115", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/115/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/115/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/115/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/115", + "id": 490590763, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY2MTE1", + "number": 115, + "title": "testPullRequestReviews", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:39:00Z", + "updated_at": "2019-09-07T04:39:04Z", + "closed_at": "2019-09-07T04:39:04Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/115", + "html_url": "https://github.com/github-api-test-org/github-api/pull/115", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/115.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/115.patch" + }, + "body": "## test" + } + }, + { + "id": 2615989271, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk4OTI3MQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615989271", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:30:01Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/114", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/114/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/114/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/114/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/114", + "id": 490590156, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY1NzAz", + "number": 114, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:29:59Z", + "updated_at": "2019-09-07T04:30:01Z", + "closed_at": "2019-09-07T04:30:01Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/114", + "html_url": "https://github.com/github-api-test-org/github-api/pull/114", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/114.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/114.patch" + }, + "body": "## test" + } + }, + { + "id": 2615989252, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk4OTI1Mg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615989252", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:29:58Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/113", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/113/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/113/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/113/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/113", + "id": 490590153, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY1NzAy", + "number": 113, + "title": "setAssignee", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "assignees": [ + { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + } + ], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:29:55Z", + "updated_at": "2019-09-07T04:29:57Z", + "closed_at": "2019-09-07T04:29:57Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/113", + "html_url": "https://github.com/github-api-test-org/github-api/pull/113", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/113.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/113.patch" + }, + "body": "## test" + } + }, + { + "id": 2615989238, + "node_id": "MDEzOkFzc2lnbmVkRXZlbnQyNjE1OTg5MjM4", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615989238", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "assigned", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:29:56Z", + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "assigner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/113", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/113/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/113/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/113/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/113", + "id": 490590153, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY1NzAy", + "number": 113, + "title": "setAssignee", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "assignees": [ + { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + } + ], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:29:55Z", + "updated_at": "2019-09-07T04:29:57Z", + "closed_at": "2019-09-07T04:29:57Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/113", + "html_url": "https://github.com/github-api-test-org/github-api/pull/113", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/113.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/113.patch" + }, + "body": "## test" + } + }, + { + "id": 2615989226, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk4OTIyNg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615989226", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:29:54Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/112", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/112/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/112/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/112/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/112", + "id": 490590145, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY1Njk5", + "number": 112, + "title": "createPullRequestComment", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2019-09-07T04:29:52Z", + "updated_at": "2019-09-07T04:29:54Z", + "closed_at": "2019-09-07T04:29:54Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/112", + "html_url": "https://github.com/github-api-test-org/github-api/pull/112", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/112.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/112.patch" + }, + "body": "## test" + } + }, + { + "id": 2615989204, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk4OTIwNA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615989204", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:29:51Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/111", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/111/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/111/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/111/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/111", + "id": 490590138, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY1Njk1", + "number": 111, + "title": "queryPullRequestsUnqualifiedHead_rc", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:29:48Z", + "updated_at": "2019-09-07T04:29:51Z", + "closed_at": "2019-09-07T04:29:50Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/111", + "html_url": "https://github.com/github-api-test-org/github-api/pull/111", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/111.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/111.patch" + }, + "body": null + } + }, + { + "id": 2615989198, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk4OTE5OA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615989198", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:29:50Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/110", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/110/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/110/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/110/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/110", + "id": 490590136, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY1Njk0", + "number": 110, + "title": "queryPullRequestsUnqualifiedHead_stable", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:29:48Z", + "updated_at": "2019-09-07T04:29:50Z", + "closed_at": "2019-09-07T04:29:50Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/110", + "html_url": "https://github.com/github-api-test-org/github-api/pull/110", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/110.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/110.patch" + }, + "body": null + } + }, + { + "id": 2615989151, + "node_id": "MDE5OkhlYWRSZWZEZWxldGVkRXZlbnQyNjE1OTg5MTUx", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615989151", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "head_ref_deleted", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:29:46Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/109", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/109/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/109/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/109/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/109", + "id": 490590130, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY1Njkw", + "number": 109, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:29:42Z", + "updated_at": "2019-09-07T04:29:46Z", + "closed_at": "2019-09-07T04:29:44Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/109", + "html_url": "https://github.com/github-api-test-org/github-api/pull/109", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/109.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/109.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2615989144, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk4OTE0NA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615989144", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:29:44Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/109", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/109/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/109/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/109/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/109", + "id": 490590130, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY1Njkw", + "number": 109, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:29:42Z", + "updated_at": "2019-09-07T04:29:46Z", + "closed_at": "2019-09-07T04:29:44Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/109", + "html_url": "https://github.com/github-api-test-org/github-api/pull/109", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/109.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/109.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2615989143, + "node_id": "MDExOk1lcmdlZEV2ZW50MjYxNTk4OTE0Mw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615989143", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "merged", + "commit_id": "99365864dfba9bc89cb4f34b3e0681b7ea4834b8", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/99365864dfba9bc89cb4f34b3e0681b7ea4834b8", + "created_at": "2019-09-07T04:29:44Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/109", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/109/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/109/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/109/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/109", + "id": 490590130, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY1Njkw", + "number": 109, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:29:42Z", + "updated_at": "2019-09-07T04:29:46Z", + "closed_at": "2019-09-07T04:29:44Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/109", + "html_url": "https://github.com/github-api-test-org/github-api/pull/109", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/109.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/109.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2615989142, + "node_id": "MDE1OlJlZmVyZW5jZWRFdmVudDI2MTU5ODkxNDI=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615989142", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "referenced", + "commit_id": "99365864dfba9bc89cb4f34b3e0681b7ea4834b8", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/99365864dfba9bc89cb4f34b3e0681b7ea4834b8", + "created_at": "2019-09-07T04:29:44Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/109", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/109/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/109/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/109/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/109", + "id": 490590130, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY1Njkw", + "number": 109, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:29:42Z", + "updated_at": "2019-09-07T04:29:46Z", + "closed_at": "2019-09-07T04:29:44Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/109", + "html_url": "https://github.com/github-api-test-org/github-api/pull/109", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/109.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/109.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2615989086, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk4OTA4Ng==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615989086", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:29:37Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/108", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/108/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/108/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/108/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/108", + "id": 490590117, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY1Njgy", + "number": 108, + "title": "pullRequestReviewComments", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:29:34Z", + "updated_at": "2019-09-07T04:29:37Z", + "closed_at": "2019-09-07T04:29:37Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/108", + "html_url": "https://github.com/github-api-test-org/github-api/pull/108", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/108.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/108.patch" + }, + "body": "## test" + } + }, + { + "id": 2615989064, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk4OTA2NA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615989064", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:29:32Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/107", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/107/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/107/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/107/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/107", + "id": 490590111, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY1Njc3", + "number": 107, + "title": "mergeCommitSHA", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:29:28Z", + "updated_at": "2019-09-07T04:29:32Z", + "closed_at": "2019-09-07T04:29:32Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/107", + "html_url": "https://github.com/github-api-test-org/github-api/pull/107", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/107.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/107.patch" + }, + "body": "## test" + } + }, + { + "id": 2615989039, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk4OTAzOQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615989039", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:29:27Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/106", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/106/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/106/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/106/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/106", + "id": 490590105, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY1Njcx", + "number": 106, + "title": "setLabels", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 1541702441, + "node_id": "MDU6TGFiZWwxNTQxNzAyNDQx", + "url": "https://api.github.com/repos/github-api-test-org/github-api/labels/setLabels_label_name", + "name": "setLabels_label_name", + "color": "ededed", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:29:25Z", + "updated_at": "2019-09-07T04:29:27Z", + "closed_at": "2019-09-07T04:29:27Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/106", + "html_url": "https://github.com/github-api-test-org/github-api/pull/106", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/106.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/106.patch" + }, + "body": "## test" + } + }, + { + "id": 2615989030, + "node_id": "MDEyOkxhYmVsZWRFdmVudDI2MTU5ODkwMzA=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615989030", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "labeled", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:29:25Z", + "label": { + "name": "setLabels_label_name", + "color": "ededed" + }, + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/106", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/106/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/106/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/106/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/106", + "id": 490590105, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY1Njcx", + "number": 106, + "title": "setLabels", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 1541702441, + "node_id": "MDU6TGFiZWwxNTQxNzAyNDQx", + "url": "https://api.github.com/repos/github-api-test-org/github-api/labels/setLabels_label_name", + "name": "setLabels_label_name", + "color": "ededed", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:29:25Z", + "updated_at": "2019-09-07T04:29:27Z", + "closed_at": "2019-09-07T04:29:27Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/106", + "html_url": "https://github.com/github-api-test-org/github-api/pull/106", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/106.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/106.patch" + }, + "body": "## test" + } + }, + { + "id": 2615989016, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk4OTAxNg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615989016", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:29:23Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/105", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/105/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/105/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/105/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/105", + "id": 490590100, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY1NjY4", + "number": 105, + "title": "getUser", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:29:20Z", + "updated_at": "2019-09-07T04:29:23Z", + "closed_at": "2019-09-07T04:29:23Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/105", + "html_url": "https://github.com/github-api-test-org/github-api/pull/105", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/105.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/105.patch" + }, + "body": "## test" + } + }, + { + "id": 2615988992, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk4ODk5Mg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615988992", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:29:19Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/104", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/104/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/104/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/104/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/104", + "id": 490590094, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY1NjY0", + "number": 104, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:29:18Z", + "updated_at": "2019-09-07T04:29:19Z", + "closed_at": "2019-09-07T04:29:19Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/104", + "html_url": "https://github.com/github-api-test-org/github-api/pull/104", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/104.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/104.patch" + }, + "body": "## test" + } + }, + { + "id": 2615988979, + "node_id": "MDE5OkhlYWRSZWZEZWxldGVkRXZlbnQyNjE1OTg4OTc5", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615988979", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "head_ref_deleted", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:29:17Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/103", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/103/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/103/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/103/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/103", + "id": 490590087, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY1NjYx", + "number": 103, + "title": "updateContentSquashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:29:13Z", + "updated_at": "2019-09-07T04:29:17Z", + "closed_at": "2019-09-07T04:29:15Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/103", + "html_url": "https://github.com/github-api-test-org/github-api/pull/103", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/103.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/103.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2615988969, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk4ODk2OQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615988969", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:29:15Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/103", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/103/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/103/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/103/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/103", + "id": 490590087, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY1NjYx", + "number": 103, + "title": "updateContentSquashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:29:13Z", + "updated_at": "2019-09-07T04:29:17Z", + "closed_at": "2019-09-07T04:29:15Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/103", + "html_url": "https://github.com/github-api-test-org/github-api/pull/103", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/103.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/103.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2615988968, + "node_id": "MDExOk1lcmdlZEV2ZW50MjYxNTk4ODk2OA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615988968", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "merged", + "commit_id": "7155970f95dc1e9af20607ac01eb7e9b99f0ae03", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/7155970f95dc1e9af20607ac01eb7e9b99f0ae03", + "created_at": "2019-09-07T04:29:15Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/103", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/103/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/103/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/103/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/103", + "id": 490590087, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY1NjYx", + "number": 103, + "title": "updateContentSquashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:29:13Z", + "updated_at": "2019-09-07T04:29:17Z", + "closed_at": "2019-09-07T04:29:15Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/103", + "html_url": "https://github.com/github-api-test-org/github-api/pull/103", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/103.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/103.patch" + }, + "body": "## test squash" + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-28692783-a6a7-432a-bae1-15bcb4e48175.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-28692783-a6a7-432a-bae1-15bcb4e48175.json new file mode 100644 index 0000000000..864c3930da --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-28692783-a6a7-432a-bae1-15bcb4e48175.json @@ -0,0 +1,2634 @@ +[ + { + "id": 2616456118, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1NjExOA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616456118", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:59:36Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/189", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/189/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/189/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/189/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/189", + "id": 490688747, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwODIw", + "number": 189, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:59:34Z", + "updated_at": "2019-09-07T22:59:36Z", + "closed_at": "2019-09-07T22:59:36Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/189", + "html_url": "https://github.com/github-api-test-org/github-api/pull/189", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/189.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/189.patch" + }, + "body": "## test" + } + }, + { + "id": 2616456098, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1NjA5OA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616456098", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:59:33Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/188", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/188/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/188/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/188/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/188", + "id": 490688739, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwODE1", + "number": 188, + "title": "setAssignee", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "assignees": [ + { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + } + ], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:59:30Z", + "updated_at": "2019-09-07T22:59:33Z", + "closed_at": "2019-09-07T22:59:33Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/188", + "html_url": "https://github.com/github-api-test-org/github-api/pull/188", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/188.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/188.patch" + }, + "body": "## test" + } + }, + { + "id": 2616456091, + "node_id": "MDEzOkFzc2lnbmVkRXZlbnQyNjE2NDU2MDkx", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616456091", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "assigned", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:59:31Z", + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "assigner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/188", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/188/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/188/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/188/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/188", + "id": 490688739, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwODE1", + "number": 188, + "title": "setAssignee", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "assignees": [ + { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + } + ], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:59:30Z", + "updated_at": "2019-09-07T22:59:33Z", + "closed_at": "2019-09-07T22:59:33Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/188", + "html_url": "https://github.com/github-api-test-org/github-api/pull/188", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/188.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/188.patch" + }, + "body": "## test" + } + }, + { + "id": 2616456078, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1NjA3OA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616456078", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:59:29Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/187", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/187/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/187/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/187/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/187", + "id": 490688737, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwODEz", + "number": 187, + "title": "createPullRequestComment", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2019-09-07T22:59:28Z", + "updated_at": "2019-09-07T22:59:29Z", + "closed_at": "2019-09-07T22:59:29Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/187", + "html_url": "https://github.com/github-api-test-org/github-api/pull/187", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/187.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/187.patch" + }, + "body": "## test" + } + }, + { + "id": 2616456062, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1NjA2Mg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616456062", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:59:26Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/185", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/185/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/185/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/185/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/185", + "id": 490688730, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwODA3", + "number": 185, + "title": "queryPullRequestsUnqualifiedHead_stable", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:59:23Z", + "updated_at": "2019-09-07T22:59:26Z", + "closed_at": "2019-09-07T22:59:26Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/185", + "html_url": "https://github.com/github-api-test-org/github-api/pull/185", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/185.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/185.patch" + }, + "body": null + } + }, + { + "id": 2616456059, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1NjA1OQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616456059", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:59:26Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/186", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/186/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/186/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/186/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/186", + "id": 490688733, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwODA5", + "number": 186, + "title": "queryPullRequestsUnqualifiedHead_rc", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:59:24Z", + "updated_at": "2019-09-07T22:59:26Z", + "closed_at": "2019-09-07T22:59:26Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/186", + "html_url": "https://github.com/github-api-test-org/github-api/pull/186", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/186.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/186.patch" + }, + "body": null + } + }, + { + "id": 2616456052, + "node_id": "MDE5OkhlYWRSZWZEZWxldGVkRXZlbnQyNjE2NDU2MDUy", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616456052", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "head_ref_deleted", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:59:22Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/184", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/184/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/184/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/184/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/184", + "id": 490688718, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwNzk5", + "number": 184, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:59:19Z", + "updated_at": "2019-09-07T22:59:22Z", + "closed_at": "2019-09-07T22:59:21Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/184", + "html_url": "https://github.com/github-api-test-org/github-api/pull/184", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/184.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/184.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616456048, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1NjA0OA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616456048", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:59:21Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/184", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/184/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/184/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/184/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/184", + "id": 490688718, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwNzk5", + "number": 184, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:59:19Z", + "updated_at": "2019-09-07T22:59:22Z", + "closed_at": "2019-09-07T22:59:21Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/184", + "html_url": "https://github.com/github-api-test-org/github-api/pull/184", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/184.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/184.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616456046, + "node_id": "MDExOk1lcmdlZEV2ZW50MjYxNjQ1NjA0Ng==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616456046", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "merged", + "commit_id": "ae7b0a1fa1f6c471534020fb1587ab4d6e566e91", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/ae7b0a1fa1f6c471534020fb1587ab4d6e566e91", + "created_at": "2019-09-07T22:59:21Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/184", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/184/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/184/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/184/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/184", + "id": 490688718, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwNzk5", + "number": 184, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:59:19Z", + "updated_at": "2019-09-07T22:59:22Z", + "closed_at": "2019-09-07T22:59:21Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/184", + "html_url": "https://github.com/github-api-test-org/github-api/pull/184", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/184.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/184.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616456045, + "node_id": "MDE1OlJlZmVyZW5jZWRFdmVudDI2MTY0NTYwNDU=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616456045", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "referenced", + "commit_id": "ae7b0a1fa1f6c471534020fb1587ab4d6e566e91", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/ae7b0a1fa1f6c471534020fb1587ab4d6e566e91", + "created_at": "2019-09-07T22:59:21Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/184", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/184/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/184/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/184/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/184", + "id": 490688718, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwNzk5", + "number": 184, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:59:19Z", + "updated_at": "2019-09-07T22:59:22Z", + "closed_at": "2019-09-07T22:59:21Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/184", + "html_url": "https://github.com/github-api-test-org/github-api/pull/184", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/184.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/184.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616456016, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1NjAxNg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616456016", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:59:14Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/183", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/183/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/183/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/183/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/183", + "id": 490688711, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwNzk0", + "number": 183, + "title": "pullRequestReviewComments", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:59:10Z", + "updated_at": "2019-09-07T22:59:14Z", + "closed_at": "2019-09-07T22:59:14Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/183", + "html_url": "https://github.com/github-api-test-org/github-api/pull/183", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/183.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/183.patch" + }, + "body": "## test" + } + }, + { + "id": 2616455997, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1NTk5Nw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616455997", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:59:09Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/182", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/182/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/182/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/182/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/182", + "id": 490688706, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwNzkx", + "number": 182, + "title": "mergeCommitSHA", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:59:06Z", + "updated_at": "2019-09-07T22:59:09Z", + "closed_at": "2019-09-07T22:59:09Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/182", + "html_url": "https://github.com/github-api-test-org/github-api/pull/182", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/182.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/182.patch" + }, + "body": "## test" + } + }, + { + "id": 2616455972, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1NTk3Mg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616455972", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:59:04Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/181", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/181/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/181/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/181/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/181", + "id": 490688702, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwNzg3", + "number": 181, + "title": "setLabels", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 1541702441, + "node_id": "MDU6TGFiZWwxNTQxNzAyNDQx", + "url": "https://api.github.com/repos/github-api-test-org/github-api/labels/setLabels_label_name", + "name": "setLabels_label_name", + "color": "ededed", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:59:02Z", + "updated_at": "2019-09-07T22:59:04Z", + "closed_at": "2019-09-07T22:59:04Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/181", + "html_url": "https://github.com/github-api-test-org/github-api/pull/181", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/181.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/181.patch" + }, + "body": "## test" + } + }, + { + "id": 2616455958, + "node_id": "MDEyOkxhYmVsZWRFdmVudDI2MTY0NTU5NTg=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616455958", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "labeled", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:59:03Z", + "label": { + "name": "setLabels_label_name", + "color": "ededed" + }, + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/181", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/181/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/181/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/181/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/181", + "id": 490688702, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwNzg3", + "number": 181, + "title": "setLabels", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 1541702441, + "node_id": "MDU6TGFiZWwxNTQxNzAyNDQx", + "url": "https://api.github.com/repos/github-api-test-org/github-api/labels/setLabels_label_name", + "name": "setLabels_label_name", + "color": "ededed", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:59:02Z", + "updated_at": "2019-09-07T22:59:04Z", + "closed_at": "2019-09-07T22:59:04Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/181", + "html_url": "https://github.com/github-api-test-org/github-api/pull/181", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/181.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/181.patch" + }, + "body": "## test" + } + }, + { + "id": 2616455930, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1NTkzMA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616455930", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:59:00Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/180", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/180/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/180/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/180/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/180", + "id": 490688699, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwNzg1", + "number": 180, + "title": "getUser", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:58:58Z", + "updated_at": "2019-09-07T22:59:00Z", + "closed_at": "2019-09-07T22:59:00Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/180", + "html_url": "https://github.com/github-api-test-org/github-api/pull/180", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/180.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/180.patch" + }, + "body": "## test" + } + }, + { + "id": 2616455910, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1NTkxMA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616455910", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:58:57Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/179", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/179/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/179/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/179/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/179", + "id": 490688697, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwNzg0", + "number": 179, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:58:55Z", + "updated_at": "2019-09-07T22:58:56Z", + "closed_at": "2019-09-07T22:58:56Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/179", + "html_url": "https://github.com/github-api-test-org/github-api/pull/179", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/179.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/179.patch" + }, + "body": "## test" + } + }, + { + "id": 2616455902, + "node_id": "MDE5OkhlYWRSZWZEZWxldGVkRXZlbnQyNjE2NDU1OTAy", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616455902", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "head_ref_deleted", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:58:54Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/178", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/178/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/178/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/178/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/178", + "id": 490688690, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwNzc3", + "number": 178, + "title": "updateContentSquashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:58:51Z", + "updated_at": "2019-09-07T22:58:54Z", + "closed_at": "2019-09-07T22:58:53Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/178", + "html_url": "https://github.com/github-api-test-org/github-api/pull/178", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/178.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/178.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616455900, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1NTkwMA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616455900", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:58:53Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/178", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/178/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/178/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/178/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/178", + "id": 490688690, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwNzc3", + "number": 178, + "title": "updateContentSquashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:58:51Z", + "updated_at": "2019-09-07T22:58:54Z", + "closed_at": "2019-09-07T22:58:53Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/178", + "html_url": "https://github.com/github-api-test-org/github-api/pull/178", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/178.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/178.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616455899, + "node_id": "MDExOk1lcmdlZEV2ZW50MjYxNjQ1NTg5OQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616455899", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "merged", + "commit_id": "2acbcdb94d592d18858ad88e9a96591e4386fe21", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/2acbcdb94d592d18858ad88e9a96591e4386fe21", + "created_at": "2019-09-07T22:58:53Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/178", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/178/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/178/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/178/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/178", + "id": 490688690, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwNzc3", + "number": 178, + "title": "updateContentSquashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:58:51Z", + "updated_at": "2019-09-07T22:58:54Z", + "closed_at": "2019-09-07T22:58:53Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/178", + "html_url": "https://github.com/github-api-test-org/github-api/pull/178", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/178.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/178.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616455898, + "node_id": "MDE1OlJlZmVyZW5jZWRFdmVudDI2MTY0NTU4OTg=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616455898", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "referenced", + "commit_id": "2acbcdb94d592d18858ad88e9a96591e4386fe21", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/2acbcdb94d592d18858ad88e9a96591e4386fe21", + "created_at": "2019-09-07T22:58:53Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/178", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/178/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/178/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/178/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/178", + "id": 490688690, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwNzc3", + "number": 178, + "title": "updateContentSquashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:58:51Z", + "updated_at": "2019-09-07T22:58:54Z", + "closed_at": "2019-09-07T22:58:53Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/178", + "html_url": "https://github.com/github-api-test-org/github-api/pull/178", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/178.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/178.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616455812, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1NTgxMg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616455812", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:58:45Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/177", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/177/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/177/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/177/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/177", + "id": 490688676, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwNzY3", + "number": 177, + "title": "queryPullRequestsQualifiedHead_rc", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:58:42Z", + "updated_at": "2019-09-07T22:58:44Z", + "closed_at": "2019-09-07T22:58:44Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/177", + "html_url": "https://github.com/github-api-test-org/github-api/pull/177", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/177.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/177.patch" + }, + "body": null + } + }, + { + "id": 2616455810, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1NTgxMA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616455810", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:58:44Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/176", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/176/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/176/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/176/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/176", + "id": 490688675, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwNzY2", + "number": 176, + "title": "queryPullRequestsQualifiedHead_stable", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:58:42Z", + "updated_at": "2019-09-07T22:58:44Z", + "closed_at": "2019-09-07T22:58:44Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/176", + "html_url": "https://github.com/github-api-test-org/github-api/pull/176", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/176.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/176.patch" + }, + "body": null + } + }, + { + "id": 2616455784, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1NTc4NA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616455784", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:58:40Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/175", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/175/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/175/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/175/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/175", + "id": 490688669, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwNzYw", + "number": 175, + "title": "testPullRequestReviews", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:58:36Z", + "updated_at": "2019-09-07T22:58:40Z", + "closed_at": "2019-09-07T22:58:40Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/175", + "html_url": "https://github.com/github-api-test-org/github-api/pull/175", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/175.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/175.patch" + }, + "body": "## test" + } + }, + { + "id": 2616453198, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1MzE5OA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616453198", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:50:13Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/174", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/174/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/174/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/174/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/174", + "id": 490688105, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwMzgw", + "number": 174, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:50:12Z", + "updated_at": "2019-09-07T22:50:13Z", + "closed_at": "2019-09-07T22:50:13Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/174", + "html_url": "https://github.com/github-api-test-org/github-api/pull/174", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/174.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/174.patch" + }, + "body": "## test" + } + }, + { + "id": 2616453185, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1MzE4NQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616453185", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:50:11Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/173", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/173/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/173/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/173/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/173", + "id": 490688099, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwMzc3", + "number": 173, + "title": "setAssignee", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "assignees": [ + { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + } + ], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:50:09Z", + "updated_at": "2019-09-07T22:50:11Z", + "closed_at": "2019-09-07T22:50:11Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/173", + "html_url": "https://github.com/github-api-test-org/github-api/pull/173", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/173.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/173.patch" + }, + "body": "## test" + } + }, + { + "id": 2616453174, + "node_id": "MDEzOkFzc2lnbmVkRXZlbnQyNjE2NDUzMTc0", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616453174", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "assigned", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:50:10Z", + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "assigner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/173", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/173/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/173/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/173/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/173", + "id": 490688099, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwMzc3", + "number": 173, + "title": "setAssignee", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "assignees": [ + { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + } + ], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:50:09Z", + "updated_at": "2019-09-07T22:50:11Z", + "closed_at": "2019-09-07T22:50:11Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/173", + "html_url": "https://github.com/github-api-test-org/github-api/pull/173", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/173.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/173.patch" + }, + "body": "## test" + } + }, + { + "id": 2616453142, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1MzE0Mg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616453142", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:50:08Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/172", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/172/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/172/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/172/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/172", + "id": 490688094, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwMzc0", + "number": 172, + "title": "createPullRequestComment", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2019-09-07T22:50:06Z", + "updated_at": "2019-09-07T22:50:08Z", + "closed_at": "2019-09-07T22:50:08Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/172", + "html_url": "https://github.com/github-api-test-org/github-api/pull/172", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/172.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/172.patch" + }, + "body": "## test" + } + }, + { + "id": 2616453127, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1MzEyNw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616453127", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:50:04Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/170", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/170/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/170/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/170/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/170", + "id": 490688082, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwMzYz", + "number": 170, + "title": "queryPullRequestsUnqualifiedHead_stable", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:50:01Z", + "updated_at": "2019-09-07T22:50:04Z", + "closed_at": "2019-09-07T22:50:04Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/170", + "html_url": "https://github.com/github-api-test-org/github-api/pull/170", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/170.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/170.patch" + }, + "body": null + } + }, + { + "id": 2616453120, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1MzEyMA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616453120", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:50:04Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/171", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/171/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/171/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/171/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/171", + "id": 490688084, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwMzY1", + "number": 171, + "title": "queryPullRequestsUnqualifiedHead_rc", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:50:02Z", + "updated_at": "2019-09-07T22:50:04Z", + "closed_at": "2019-09-07T22:50:04Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/171", + "html_url": "https://github.com/github-api-test-org/github-api/pull/171", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/171.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/171.patch" + }, + "body": null + } + }, + { + "id": 2616453074, + "node_id": "MDE5OkhlYWRSZWZEZWxldGVkRXZlbnQyNjE2NDUzMDc0", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616453074", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "head_ref_deleted", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:49:59Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/169", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/169/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/169/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/169/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/169", + "id": 490688075, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwMzU2", + "number": 169, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:49:56Z", + "updated_at": "2019-09-07T22:49:59Z", + "closed_at": "2019-09-07T22:49:58Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/169", + "html_url": "https://github.com/github-api-test-org/github-api/pull/169", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/169.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/169.patch" + }, + "body": "## test squash" + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-2b6f606b-278c-47b2-99ff-9036f43b0f68.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-2b6f606b-278c-47b2-99ff-9036f43b0f68.json new file mode 100644 index 0000000000..db1533323e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-2b6f606b-278c-47b2-99ff-9036f43b0f68.json @@ -0,0 +1,2492 @@ +[ + { + "id": 2623226299, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYyMzIyNjI5OQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2623226299", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-10T18:17:25Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/292", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/292/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/292/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/292/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/292", + "id": 491824771, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE2MTE3NDk4", + "number": 292, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-10T18:17:21Z", + "updated_at": "2019-09-10T18:17:25Z", + "closed_at": "2019-09-10T18:17:25Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/292", + "html_url": "https://github.com/github-api-test-org/github-api/pull/292", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/292.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/292.patch" + }, + "body": "## test" + } + }, + { + "id": 2623215956, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYyMzIxNTk1Ng==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2623215956", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-10T18:13:42Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/291", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/291/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/291/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/291/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/291", + "id": 491822440, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE2MTE1NjE0", + "number": 291, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-10T18:11:54Z", + "updated_at": "2019-09-10T18:13:42Z", + "closed_at": "2019-09-10T18:13:42Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/291", + "html_url": "https://github.com/github-api-test-org/github-api/pull/291", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/291.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/291.patch" + }, + "body": "## test" + } + }, + { + "id": 2622801467, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYyMjgwMTQ2Nw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2622801467", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-10T15:54:18Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/290", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/290/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/290/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/290/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/290", + "id": 491760487, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE2MDY1Mzg5", + "number": 290, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-10T15:54:14Z", + "updated_at": "2019-09-10T15:54:18Z", + "closed_at": "2019-09-10T15:54:18Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/290", + "html_url": "https://github.com/github-api-test-org/github-api/pull/290", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/290.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/290.patch" + }, + "body": "## test" + } + }, + { + "id": 2622777398, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYyMjc3NzM5OA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2622777398", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-10T15:47:25Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/289", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/289/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/289/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/289/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/289", + "id": 491756553, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE2MDYyMTc5", + "number": 289, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-10T15:47:08Z", + "updated_at": "2019-09-10T15:47:25Z", + "closed_at": "2019-09-10T15:47:25Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/289", + "html_url": "https://github.com/github-api-test-org/github-api/pull/289", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/289.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/289.patch" + }, + "body": "## test" + } + }, + { + "id": 2622701287, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYyMjcwMTI4Nw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2622701287", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-10T15:26:32Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/288", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/288/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/288/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/288/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/288", + "id": 491744750, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE2MDUyNTEz", + "number": 288, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-10T15:26:28Z", + "updated_at": "2019-09-10T15:26:32Z", + "closed_at": "2019-09-10T15:26:32Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/288", + "html_url": "https://github.com/github-api-test-org/github-api/pull/288", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/288.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/288.patch" + }, + "body": "## test" + } + }, + { + "id": 2622542572, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYyMjU0MjU3Mg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2622542572", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-10T14:45:02Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/287", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/287/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/287/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/287/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/287", + "id": 491719499, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE2MDMxODEx", + "number": 287, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-10T14:44:14Z", + "updated_at": "2019-09-10T14:45:02Z", + "closed_at": "2019-09-10T14:45:02Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/287", + "html_url": "https://github.com/github-api-test-org/github-api/pull/287", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/287.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/287.patch" + }, + "body": "## test" + } + }, + { + "id": 2622516997, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYyMjUxNjk5Nw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2622516997", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-10T14:38:18Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/286", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/286/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/286/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/286/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/286", + "id": 491712999, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE2MDI2NTcz", + "number": 286, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-10T14:33:37Z", + "updated_at": "2019-09-10T14:38:18Z", + "closed_at": "2019-09-10T14:38:18Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/286", + "html_url": "https://github.com/github-api-test-org/github-api/pull/286", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/286.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/286.patch" + }, + "body": "## test" + } + }, + { + "id": 2622483639, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYyMjQ4MzYzOQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2622483639", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-10T14:29:44Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/285", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/285/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/285/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/285/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/285", + "id": 491709400, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE2MDIzNzM0", + "number": 285, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-10T14:28:01Z", + "updated_at": "2019-09-10T14:29:44Z", + "closed_at": "2019-09-10T14:29:44Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/285", + "html_url": "https://github.com/github-api-test-org/github-api/pull/285", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/285.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/285.patch" + }, + "body": "## test" + } + }, + { + "id": 2622469082, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYyMjQ2OTA4Mg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2622469082", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-10T14:26:05Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/284", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/284/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/284/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/284/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/284", + "id": 491708158, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE2MDIyNzA1", + "number": 284, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-10T14:26:04Z", + "updated_at": "2019-09-10T14:26:05Z", + "closed_at": "2019-09-10T14:26:05Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/284", + "html_url": "https://github.com/github-api-test-org/github-api/pull/284", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/284.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/284.patch" + }, + "body": "## test" + } + }, + { + "id": 2622459395, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYyMjQ1OTM5NQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2622459395", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-10T14:23:34Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/283", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/283/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/283/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/283/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/283", + "id": 491706573, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE2MDIxNDU3", + "number": 283, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-10T14:23:33Z", + "updated_at": "2019-09-10T14:23:34Z", + "closed_at": "2019-09-10T14:23:34Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/283", + "html_url": "https://github.com/github-api-test-org/github-api/pull/283", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/283.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/283.patch" + }, + "body": "## test" + } + }, + { + "id": 2622442367, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYyMjQ0MjM2Nw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2622442367", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-10T14:19:07Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/282", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/282/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/282/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/282/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/282", + "id": 491703709, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE2MDE5MTU3", + "number": 282, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-10T14:19:06Z", + "updated_at": "2019-09-10T14:19:07Z", + "closed_at": "2019-09-10T14:19:07Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/282", + "html_url": "https://github.com/github-api-test-org/github-api/pull/282", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/282.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/282.patch" + }, + "body": "## test" + } + }, + { + "id": 2622420034, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYyMjQyMDAzNA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2622420034", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-10T14:13:14Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/281", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/281/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/281/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/281/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/281", + "id": 491700000, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE2MDE2Mjg3", + "number": 281, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-10T14:13:13Z", + "updated_at": "2019-09-10T14:13:14Z", + "closed_at": "2019-09-10T14:13:14Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/281", + "html_url": "https://github.com/github-api-test-org/github-api/pull/281", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/281.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/281.patch" + }, + "body": "## test" + } + }, + { + "id": 2622363511, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYyMjM2MzUxMQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2622363511", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-10T13:58:05Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/280", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/280/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/280/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/280/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/280", + "id": 491690627, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE2MDA4ODg2", + "number": 280, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-10T13:58:02Z", + "updated_at": "2019-09-10T13:58:04Z", + "closed_at": "2019-09-10T13:58:04Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/280", + "html_url": "https://github.com/github-api-test-org/github-api/pull/280", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/280.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/280.patch" + }, + "body": "## test" + } + }, + { + "id": 2622352779, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYyMjM1Mjc3OQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2622352779", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-10T13:55:18Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/279", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/279/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/279/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/279/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/279", + "id": 491688810, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE2MDA3NTAw", + "number": 279, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-10T13:55:15Z", + "updated_at": "2019-09-10T13:55:18Z", + "closed_at": "2019-09-10T13:55:18Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/279", + "html_url": "https://github.com/github-api-test-org/github-api/pull/279", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/279.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/279.patch" + }, + "body": "## test" + } + }, + { + "id": 2622343307, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYyMjM0MzMwNw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2622343307", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-10T13:52:44Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/278", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/278/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/278/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/278/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/278", + "id": 491687216, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE2MDA2MjQy", + "number": 278, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-10T13:52:42Z", + "updated_at": "2019-09-10T13:52:44Z", + "closed_at": "2019-09-10T13:52:44Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/278", + "html_url": "https://github.com/github-api-test-org/github-api/pull/278", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/278.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/278.patch" + }, + "body": "## test" + } + }, + { + "id": 2622324621, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYyMjMyNDYyMQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2622324621", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-10T13:47:45Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/277", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/277/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/277/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/277/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/277", + "id": 491684130, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE2MDAzODA5", + "number": 277, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-10T13:47:44Z", + "updated_at": "2019-09-10T13:47:45Z", + "closed_at": "2019-09-10T13:47:45Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/277", + "html_url": "https://github.com/github-api-test-org/github-api/pull/277", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/277.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/277.patch" + }, + "body": "## test" + } + }, + { + "id": 2622292535, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYyMjI5MjUzNQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2622292535", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-10T13:39:00Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/276", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/276/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/276/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/276/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/276", + "id": 491678885, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1OTk5NzQy", + "number": 276, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-10T13:38:59Z", + "updated_at": "2019-09-10T13:39:00Z", + "closed_at": "2019-09-10T13:39:00Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/276", + "html_url": "https://github.com/github-api-test-org/github-api/pull/276", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/276.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/276.patch" + }, + "body": "## test" + } + }, + { + "id": 2622267404, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYyMjI2NzQwNA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2622267404", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-10T13:32:04Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/275", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/275/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/275/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/275/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/275", + "id": 491674715, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1OTk2NDAw", + "number": 275, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-10T13:32:01Z", + "updated_at": "2019-09-10T13:32:04Z", + "closed_at": "2019-09-10T13:32:03Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/275", + "html_url": "https://github.com/github-api-test-org/github-api/pull/275", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/275.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/275.patch" + }, + "body": "## test" + } + }, + { + "id": 2622261381, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYyMjI2MTM4MQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2622261381", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-10T13:30:19Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/274", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/274/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/274/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/274/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/274", + "id": 491673743, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1OTk1NjI1", + "number": 274, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-10T13:30:18Z", + "updated_at": "2019-09-10T13:30:19Z", + "closed_at": "2019-09-10T13:30:19Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/274", + "html_url": "https://github.com/github-api-test-org/github-api/pull/274", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/274.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/274.patch" + }, + "body": "## test" + } + }, + { + "id": 2617061980, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNzA2MTk4MA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2617061980", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T23:20:38Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/273", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/273/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/273/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/273/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/273", + "id": 490822046, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MzE2Mzc3", + "number": 273, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T23:20:37Z", + "updated_at": "2019-09-08T23:20:38Z", + "closed_at": "2019-09-08T23:20:38Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/273", + "html_url": "https://github.com/github-api-test-org/github-api/pull/273", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/273.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/273.patch" + }, + "body": "## test" + } + }, + { + "id": 2616603416, + "node_id": "MDE5OkhlYWRSZWZEZWxldGVkRXZlbnQyNjE2NjAzNDE2", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616603416", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "head_ref_deleted", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T07:25:55Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/261", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/261/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/261/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/261/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/261", + "id": 490720728, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzE5", + "number": 261, + "title": "updateContentSquashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T07:24:23Z", + "updated_at": "2019-09-08T07:25:55Z", + "closed_at": "2019-09-08T07:24:25Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/261", + "html_url": "https://github.com/github-api-test-org/github-api/pull/261", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/261.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/261.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616603381, + "node_id": "MDE5OkhlYWRSZWZEZWxldGVkRXZlbnQyNjE2NjAzMzgx", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616603381", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "head_ref_deleted", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T07:25:48Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/267", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/267/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/267/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/267/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/267", + "id": 490720761, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzQz", + "number": 267, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T07:24:51Z", + "updated_at": "2019-09-08T07:25:48Z", + "closed_at": "2019-09-08T07:24:54Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/267", + "html_url": "https://github.com/github-api-test-org/github-api/pull/267", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/267.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/267.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616603124, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjYwMzEyNA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616603124", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T07:25:09Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/272", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/272/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/272/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/272/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/272", + "id": 490720797, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzcw", + "number": 272, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T07:25:08Z", + "updated_at": "2019-09-08T07:25:09Z", + "closed_at": "2019-09-08T07:25:09Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/272", + "html_url": "https://github.com/github-api-test-org/github-api/pull/272", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/272.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/272.patch" + }, + "body": "## test" + } + }, + { + "id": 2616603103, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjYwMzEwMw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616603103", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T07:25:06Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/271", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/271/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/271/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/271/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/271", + "id": 490720788, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzYz", + "number": 271, + "title": "setAssignee", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "assignees": [ + { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + } + ], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T07:25:04Z", + "updated_at": "2019-09-08T07:25:06Z", + "closed_at": "2019-09-08T07:25:06Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/271", + "html_url": "https://github.com/github-api-test-org/github-api/pull/271", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/271.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/271.patch" + }, + "body": "## test" + } + }, + { + "id": 2616603092, + "node_id": "MDEzOkFzc2lnbmVkRXZlbnQyNjE2NjAzMDky", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616603092", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "assigned", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T07:25:04Z", + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "assigner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/271", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/271/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/271/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/271/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/271", + "id": 490720788, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzYz", + "number": 271, + "title": "setAssignee", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "assignees": [ + { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + } + ], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T07:25:04Z", + "updated_at": "2019-09-08T07:25:06Z", + "closed_at": "2019-09-08T07:25:06Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/271", + "html_url": "https://github.com/github-api-test-org/github-api/pull/271", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/271.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/271.patch" + }, + "body": "## test" + } + }, + { + "id": 2616603073, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjYwMzA3Mw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616603073", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T07:25:02Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/270", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/270/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/270/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/270/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/270", + "id": 490720781, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzU4", + "number": 270, + "title": "createPullRequestComment", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2019-09-08T07:25:00Z", + "updated_at": "2019-09-08T07:25:02Z", + "closed_at": "2019-09-08T07:25:02Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/270", + "html_url": "https://github.com/github-api-test-org/github-api/pull/270", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/270.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/270.patch" + }, + "body": "## test" + } + }, + { + "id": 2616603054, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjYwMzA1NA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616603054", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T07:24:59Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/269", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/269/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/269/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/269/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/269", + "id": 490720773, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzUy", + "number": 269, + "title": "queryPullRequestsUnqualifiedHead_rc", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T07:24:56Z", + "updated_at": "2019-09-08T07:24:59Z", + "closed_at": "2019-09-08T07:24:59Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/269", + "html_url": "https://github.com/github-api-test-org/github-api/pull/269", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/269.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/269.patch" + }, + "body": null + } + }, + { + "id": 2616603052, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjYwMzA1Mg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616603052", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T07:24:58Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/268", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/268/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/268/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/268/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/268", + "id": 490720771, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzUw", + "number": 268, + "title": "queryPullRequestsUnqualifiedHead_stable", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T07:24:56Z", + "updated_at": "2019-09-08T07:24:58Z", + "closed_at": "2019-09-08T07:24:58Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/268", + "html_url": "https://github.com/github-api-test-org/github-api/pull/268", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/268.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/268.patch" + }, + "body": null + } + }, + { + "id": 2616603019, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjYwMzAxOQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616603019", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T07:24:54Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/267", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/267/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/267/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/267/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/267", + "id": 490720761, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzQz", + "number": 267, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T07:24:51Z", + "updated_at": "2019-09-08T07:25:48Z", + "closed_at": "2019-09-08T07:24:54Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/267", + "html_url": "https://github.com/github-api-test-org/github-api/pull/267", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/267.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/267.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616603017, + "node_id": "MDExOk1lcmdlZEV2ZW50MjYxNjYwMzAxNw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616603017", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "merged", + "commit_id": "ecec449372b1e8270524a35c1a5aa8fdaf0e6676", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/ecec449372b1e8270524a35c1a5aa8fdaf0e6676", + "created_at": "2019-09-08T07:24:54Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/267", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/267/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/267/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/267/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/267", + "id": 490720761, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzQz", + "number": 267, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T07:24:51Z", + "updated_at": "2019-09-08T07:25:48Z", + "closed_at": "2019-09-08T07:24:54Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/267", + "html_url": "https://github.com/github-api-test-org/github-api/pull/267", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/267.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/267.patch" + }, + "body": "## test squash" + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-4917724b-b110-4549-81b5-c329a13c467a.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-4917724b-b110-4549-81b5-c329a13c467a.json new file mode 100644 index 0000000000..38b39f2c73 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-4917724b-b110-4549-81b5-c329a13c467a.json @@ -0,0 +1,2514 @@ +[ + { + "id": 2615901622, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTkwMTYyMg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615901622", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T01:02:01Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/22", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/22/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/22/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/22/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/22", + "id": 490573202, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTUzOTIz", + "number": 22, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T01:01:59Z", + "updated_at": "2019-09-07T01:02:01Z", + "closed_at": "2019-09-07T01:02:01Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/22", + "html_url": "https://github.com/github-api-test-org/github-api/pull/22", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/22.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/22.patch" + }, + "body": "## test" + } + }, + { + "id": 2615900006, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTkwMDAwNg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615900006", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T00:59:25Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/21", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/21/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/21/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/21/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/21", + "id": 490572877, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTUzNjc3", + "number": 21, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T00:59:21Z", + "updated_at": "2019-09-07T00:59:25Z", + "closed_at": "2019-09-07T00:59:25Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/21", + "html_url": "https://github.com/github-api-test-org/github-api/pull/21", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/21.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/21.patch" + }, + "body": "## test" + } + }, + { + "id": 2615899537, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTg5OTUzNw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615899537", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T00:58:43Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/20", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/20/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/20/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/20/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/20", + "id": 490572779, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTUzNTky", + "number": 20, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T00:58:31Z", + "updated_at": "2019-09-07T00:58:43Z", + "closed_at": "2019-09-07T00:58:43Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/20", + "html_url": "https://github.com/github-api-test-org/github-api/pull/20", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/20.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/20.patch" + }, + "body": "## test" + } + }, + { + "id": 2615898901, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTg5ODkwMQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615898901", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T00:57:56Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/19", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/19/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/19/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/19/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/19", + "id": 490572679, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTUzNTIx", + "number": 19, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T00:57:31Z", + "updated_at": "2019-09-07T00:57:56Z", + "closed_at": "2019-09-07T00:57:56Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/19", + "html_url": "https://github.com/github-api-test-org/github-api/pull/19", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/19.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/19.patch" + }, + "body": "## test" + } + }, + { + "id": 2615891491, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTg5MTQ5MQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615891491", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T00:46:41Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/18", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/18/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/18/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/18/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/18", + "id": 490571327, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTUyNDA5", + "number": 18, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T00:46:33Z", + "updated_at": "2019-09-07T00:46:41Z", + "closed_at": "2019-09-07T00:46:41Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/18", + "html_url": "https://github.com/github-api-test-org/github-api/pull/18", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/18.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/18.patch" + }, + "body": "## test" + } + }, + { + "id": 2615890429, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTg5MDQyOQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615890429", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T00:45:04Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/17", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/17/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/17/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/17/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/17", + "id": 490571037, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTUyMTc0", + "number": 17, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T00:44:35Z", + "updated_at": "2019-09-07T00:45:04Z", + "closed_at": "2019-09-07T00:45:04Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/17", + "html_url": "https://github.com/github-api-test-org/github-api/pull/17", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/17.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/17.patch" + }, + "body": "## test" + } + }, + { + "id": 2615889526, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTg4OTUyNg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615889526", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T00:43:21Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/16", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/16/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/16/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/16/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/16", + "id": 490570289, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTUxNTUw", + "number": 16, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T00:39:10Z", + "updated_at": "2019-09-07T00:43:21Z", + "closed_at": "2019-09-07T00:43:21Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/16", + "html_url": "https://github.com/github-api-test-org/github-api/pull/16", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/16.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/16.patch" + }, + "body": "## test" + } + }, + { + "id": 2615869242, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTg2OTI0Mg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615869242", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T00:14:53Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/15", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/15/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/15/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/15/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/15", + "id": 490566594, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTQ4NTc1", + "number": 15, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T00:14:52Z", + "updated_at": "2019-09-07T00:14:53Z", + "closed_at": "2019-09-07T00:14:53Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/15", + "html_url": "https://github.com/github-api-test-org/github-api/pull/15", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/15.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/15.patch" + }, + "body": "## test" + } + }, + { + "id": 2615869225, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTg2OTIyNQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615869225", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T00:14:51Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/14", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/14/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/14/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/14/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/14", + "id": 490566581, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTQ4NTcw", + "number": 14, + "title": "setAssignee", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "assignees": [ + { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + } + ], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T00:14:49Z", + "updated_at": "2019-09-07T00:14:51Z", + "closed_at": "2019-09-07T00:14:51Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/14", + "html_url": "https://github.com/github-api-test-org/github-api/pull/14", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/14.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/14.patch" + }, + "body": "## test" + } + }, + { + "id": 2615869195, + "node_id": "MDEzOkFzc2lnbmVkRXZlbnQyNjE1ODY5MTk1", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615869195", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "assigned", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T00:14:49Z", + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "assigner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/14", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/14/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/14/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/14/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/14", + "id": 490566581, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTQ4NTcw", + "number": 14, + "title": "setAssignee", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "assignees": [ + { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + } + ], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T00:14:49Z", + "updated_at": "2019-09-07T00:14:51Z", + "closed_at": "2019-09-07T00:14:51Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/14", + "html_url": "https://github.com/github-api-test-org/github-api/pull/14", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/14.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/14.patch" + }, + "body": "## test" + } + }, + { + "id": 2615869177, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTg2OTE3Nw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615869177", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T00:14:47Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/13", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/13/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/13/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/13/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/13", + "id": 490566570, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTQ4NTYy", + "number": 13, + "title": "createPullRequestComment", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2019-09-07T00:14:45Z", + "updated_at": "2019-09-07T00:14:47Z", + "closed_at": "2019-09-07T00:14:47Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/13", + "html_url": "https://github.com/github-api-test-org/github-api/pull/13", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/13.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/13.patch" + }, + "body": "## test" + } + }, + { + "id": 2615869142, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTg2OTE0Mg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615869142", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T00:14:44Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/12", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/12/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/12/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/12/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/12", + "id": 490566559, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTQ4NTUz", + "number": 12, + "title": "queryPullRequestsUnqualifiedHead_rc", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T00:14:42Z", + "updated_at": "2019-09-07T00:14:44Z", + "closed_at": "2019-09-07T00:14:44Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/12", + "html_url": "https://github.com/github-api-test-org/github-api/pull/12", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/12.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/12.patch" + }, + "body": null + } + }, + { + "id": 2615869132, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTg2OTEzMg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615869132", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T00:14:44Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/11", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/11/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/11/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/11/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/11", + "id": 490566557, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTQ4NTUx", + "number": 11, + "title": "queryPullRequestsUnqualifiedHead_stable", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T00:14:42Z", + "updated_at": "2019-09-07T00:14:44Z", + "closed_at": "2019-09-07T00:14:44Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/11", + "html_url": "https://github.com/github-api-test-org/github-api/pull/11", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/11.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/11.patch" + }, + "body": null + } + }, + { + "id": 2615869098, + "node_id": "MDE5OkhlYWRSZWZEZWxldGVkRXZlbnQyNjE1ODY5MDk4", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615869098", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "head_ref_deleted", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T00:14:40Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/10", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/10/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/10/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/10/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/10", + "id": 490566538, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTQ4NTM2", + "number": 10, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T00:14:37Z", + "updated_at": "2019-09-07T00:14:40Z", + "closed_at": "2019-09-07T00:14:39Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/10", + "html_url": "https://github.com/github-api-test-org/github-api/pull/10", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/10.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/10.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2615869072, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTg2OTA3Mg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615869072", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T00:14:39Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/10", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/10/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/10/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/10/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/10", + "id": 490566538, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTQ4NTM2", + "number": 10, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T00:14:37Z", + "updated_at": "2019-09-07T00:14:40Z", + "closed_at": "2019-09-07T00:14:39Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/10", + "html_url": "https://github.com/github-api-test-org/github-api/pull/10", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/10.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/10.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2615869069, + "node_id": "MDExOk1lcmdlZEV2ZW50MjYxNTg2OTA2OQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615869069", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "merged", + "commit_id": "d7cae0fcda3c066910e8d9d5881846ca3e40e6fd", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/d7cae0fcda3c066910e8d9d5881846ca3e40e6fd", + "created_at": "2019-09-07T00:14:39Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/10", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/10/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/10/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/10/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/10", + "id": 490566538, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTQ4NTM2", + "number": 10, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T00:14:37Z", + "updated_at": "2019-09-07T00:14:40Z", + "closed_at": "2019-09-07T00:14:39Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/10", + "html_url": "https://github.com/github-api-test-org/github-api/pull/10", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/10.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/10.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2615869068, + "node_id": "MDE1OlJlZmVyZW5jZWRFdmVudDI2MTU4NjkwNjg=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615869068", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "referenced", + "commit_id": "d7cae0fcda3c066910e8d9d5881846ca3e40e6fd", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/d7cae0fcda3c066910e8d9d5881846ca3e40e6fd", + "created_at": "2019-09-07T00:14:39Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/10", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/10/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/10/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/10/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/10", + "id": 490566538, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTQ4NTM2", + "number": 10, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T00:14:37Z", + "updated_at": "2019-09-07T00:14:40Z", + "closed_at": "2019-09-07T00:14:39Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/10", + "html_url": "https://github.com/github-api-test-org/github-api/pull/10", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/10.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/10.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2615868991, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTg2ODk5MQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615868991", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T00:14:32Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/9", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/9/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/9/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/9/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/9", + "id": 490566522, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTQ4NTIz", + "number": 9, + "title": "pullRequestReviewComments", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T00:14:30Z", + "updated_at": "2019-09-07T00:14:32Z", + "closed_at": "2019-09-07T00:14:32Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/9", + "html_url": "https://github.com/github-api-test-org/github-api/pull/9", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/9.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/9.patch" + }, + "body": "## test" + } + }, + { + "id": 2615868946, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTg2ODk0Ng==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615868946", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T00:14:28Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/8", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/8/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/8/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/8/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/8", + "id": 490566506, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTQ4NTA3", + "number": 8, + "title": "mergeCommitSHA", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T00:14:24Z", + "updated_at": "2019-09-07T00:14:28Z", + "closed_at": "2019-09-07T00:14:28Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/8", + "html_url": "https://github.com/github-api-test-org/github-api/pull/8", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/8.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/8.patch" + }, + "body": "## test" + } + }, + { + "id": 2615868854, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTg2ODg1NA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615868854", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T00:14:23Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/7", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/7/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/7/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/7/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/7", + "id": 490566493, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTQ4NDk1", + "number": 7, + "title": "setLabels", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 1541702441, + "node_id": "MDU6TGFiZWwxNTQxNzAyNDQx", + "url": "https://api.github.com/repos/github-api-test-org/github-api/labels/setLabels_label_name", + "name": "setLabels_label_name", + "color": "ededed", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T00:14:20Z", + "updated_at": "2019-09-07T00:14:23Z", + "closed_at": "2019-09-07T00:14:23Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/7", + "html_url": "https://github.com/github-api-test-org/github-api/pull/7", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/7.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/7.patch" + }, + "body": "## test" + } + }, + { + "id": 2615868822, + "node_id": "MDEyOkxhYmVsZWRFdmVudDI2MTU4Njg4MjI=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615868822", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "labeled", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T00:14:20Z", + "label": { + "name": "setLabels_label_name", + "color": "ededed" + }, + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/7", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/7/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/7/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/7/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/7", + "id": 490566493, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTQ4NDk1", + "number": 7, + "title": "setLabels", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 1541702441, + "node_id": "MDU6TGFiZWwxNTQxNzAyNDQx", + "url": "https://api.github.com/repos/github-api-test-org/github-api/labels/setLabels_label_name", + "name": "setLabels_label_name", + "color": "ededed", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T00:14:20Z", + "updated_at": "2019-09-07T00:14:23Z", + "closed_at": "2019-09-07T00:14:23Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/7", + "html_url": "https://github.com/github-api-test-org/github-api/pull/7", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/7.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/7.patch" + }, + "body": "## test" + } + }, + { + "id": 2615868784, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTg2ODc4NA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615868784", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T00:14:18Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/6", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/6/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/6/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/6/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/6", + "id": 490566483, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTQ4NDg5", + "number": 6, + "title": "getUser", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T00:14:15Z", + "updated_at": "2019-09-07T00:14:18Z", + "closed_at": "2019-09-07T00:14:18Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/6", + "html_url": "https://github.com/github-api-test-org/github-api/pull/6", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/6.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/6.patch" + }, + "body": "## test" + } + }, + { + "id": 2615868729, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTg2ODcyOQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615868729", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T00:14:14Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/5", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/5/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/5/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/5/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/5", + "id": 490566477, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTQ4NDg0", + "number": 5, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T00:14:12Z", + "updated_at": "2019-09-07T00:14:14Z", + "closed_at": "2019-09-07T00:14:14Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/5", + "html_url": "https://github.com/github-api-test-org/github-api/pull/5", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/5.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/5.patch" + }, + "body": "## test" + } + }, + { + "id": 2615868680, + "node_id": "MDE5OkhlYWRSZWZEZWxldGVkRXZlbnQyNjE1ODY4Njgw", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615868680", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "head_ref_deleted", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T00:14:10Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/4", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/4/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/4/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/4/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/4", + "id": 490566463, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTQ4NDc0", + "number": 4, + "title": "updateContentSquashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T00:14:06Z", + "updated_at": "2019-09-07T00:14:10Z", + "closed_at": "2019-09-07T00:14:09Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/4", + "html_url": "https://github.com/github-api-test-org/github-api/pull/4", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/4.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/4.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2615868666, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTg2ODY2Ng==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615868666", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T00:14:09Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/4", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/4/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/4/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/4/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/4", + "id": 490566463, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTQ4NDc0", + "number": 4, + "title": "updateContentSquashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T00:14:06Z", + "updated_at": "2019-09-07T00:14:10Z", + "closed_at": "2019-09-07T00:14:09Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/4", + "html_url": "https://github.com/github-api-test-org/github-api/pull/4", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/4.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/4.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2615868665, + "node_id": "MDExOk1lcmdlZEV2ZW50MjYxNTg2ODY2NQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615868665", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "merged", + "commit_id": "432fd84ecd0973d3c4987fb3e3ae63f084a7f6a1", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/432fd84ecd0973d3c4987fb3e3ae63f084a7f6a1", + "created_at": "2019-09-07T00:14:09Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/4", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/4/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/4/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/4/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/4", + "id": 490566463, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTQ4NDc0", + "number": 4, + "title": "updateContentSquashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T00:14:06Z", + "updated_at": "2019-09-07T00:14:10Z", + "closed_at": "2019-09-07T00:14:09Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/4", + "html_url": "https://github.com/github-api-test-org/github-api/pull/4", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/4.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/4.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2615868659, + "node_id": "MDE1OlJlZmVyZW5jZWRFdmVudDI2MTU4Njg2NTk=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615868659", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "referenced", + "commit_id": "432fd84ecd0973d3c4987fb3e3ae63f084a7f6a1", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/432fd84ecd0973d3c4987fb3e3ae63f084a7f6a1", + "created_at": "2019-09-07T00:14:09Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/4", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/4/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/4/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/4/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/4", + "id": 490566463, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTQ4NDc0", + "number": 4, + "title": "updateContentSquashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T00:14:06Z", + "updated_at": "2019-09-07T00:14:10Z", + "closed_at": "2019-09-07T00:14:09Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/4", + "html_url": "https://github.com/github-api-test-org/github-api/pull/4", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/4.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/4.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2615868562, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTg2ODU2Mg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615868562", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T00:14:00Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/2", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/2/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/2/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/2/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/2", + "id": 490566437, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTQ4NDU3", + "number": 2, + "title": "queryPullRequestsQualifiedHead_stable", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T00:13:56Z", + "updated_at": "2019-09-07T00:14:00Z", + "closed_at": "2019-09-07T00:14:00Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/2", + "html_url": "https://github.com/github-api-test-org/github-api/pull/2", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/2.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/2.patch" + }, + "body": null + } + }, + { + "id": 2615868558, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTg2ODU1OA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615868558", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T00:13:59Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/3", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/3/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/3/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/3/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/3", + "id": 490566440, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTQ4NDU5", + "number": 3, + "title": "queryPullRequestsQualifiedHead_rc", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T00:13:57Z", + "updated_at": "2019-09-07T00:13:59Z", + "closed_at": "2019-09-07T00:13:59Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/3", + "html_url": "https://github.com/github-api-test-org/github-api/pull/3", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/3.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/3.patch" + }, + "body": null + } + }, + { + "id": 2615868520, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTg2ODUyMA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615868520", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T00:13:55Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/1", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/1/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/1/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/1/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/1", + "id": 490566421, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTQ4NDQ1", + "number": 1, + "title": "testPullRequestReviews", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T00:13:51Z", + "updated_at": "2019-09-07T00:13:55Z", + "closed_at": "2019-09-07T00:13:55Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/1", + "html_url": "https://github.com/github-api-test-org/github-api/pull/1", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/1.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/1.patch" + }, + "body": "## test" + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-5f55d936-4d74-4c99-bc0d-f3c3a90dd81a.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-5f55d936-4d74-4c99-bc0d-f3c3a90dd81a.json new file mode 100644 index 0000000000..3a3206080a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-5f55d936-4d74-4c99-bc0d-f3c3a90dd81a.json @@ -0,0 +1,2394 @@ +[ + { + "id": 2615976426, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3NjQyNg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615976426", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:04:13Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/51", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/51/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/51/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/51/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/51", + "id": 490588157, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0MzMw", + "number": 51, + "title": "createPullRequestComment", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2019-09-07T04:04:12Z", + "updated_at": "2019-09-07T04:04:13Z", + "closed_at": "2019-09-07T04:04:13Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/51", + "html_url": "https://github.com/github-api-test-org/github-api/pull/51", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/51.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/51.patch" + }, + "body": "## test" + } + }, + { + "id": 2615976392, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3NjM5Mg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615976392", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:04:10Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/49", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/49/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/49/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/49/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/49", + "id": 490588148, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0MzI1", + "number": 49, + "title": "queryPullRequestsUnqualifiedHead_stable", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:04:07Z", + "updated_at": "2019-09-07T04:04:10Z", + "closed_at": "2019-09-07T04:04:10Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/49", + "html_url": "https://github.com/github-api-test-org/github-api/pull/49", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/49.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/49.patch" + }, + "body": null + } + }, + { + "id": 2615976391, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3NjM5MQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615976391", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:04:10Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/50", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/50/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/50/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/50/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/50", + "id": 490588151, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0MzI3", + "number": 50, + "title": "queryPullRequestsUnqualifiedHead_rc", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:04:08Z", + "updated_at": "2019-09-07T04:04:10Z", + "closed_at": "2019-09-07T04:04:10Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/50", + "html_url": "https://github.com/github-api-test-org/github-api/pull/50", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/50.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/50.patch" + }, + "body": null + } + }, + { + "id": 2615976354, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3NjM1NA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615976354", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:04:04Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/48", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/48/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/48/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/48/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/48", + "id": 490588140, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0MzE4", + "number": 48, + "title": "pullRequestReviewComments", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:04:02Z", + "updated_at": "2019-09-07T04:04:04Z", + "closed_at": "2019-09-07T04:04:04Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/48", + "html_url": "https://github.com/github-api-test-org/github-api/pull/48", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/48.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/48.patch" + }, + "body": "## test" + } + }, + { + "id": 2615976335, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3NjMzNQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615976335", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:04:00Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/47", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/47/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/47/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/47/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/47", + "id": 490588134, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0MzEz", + "number": 47, + "title": "mergeCommitSHA", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:03:56Z", + "updated_at": "2019-09-07T04:04:00Z", + "closed_at": "2019-09-07T04:04:00Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/47", + "html_url": "https://github.com/github-api-test-org/github-api/pull/47", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/47.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/47.patch" + }, + "body": "## test" + } + }, + { + "id": 2615976304, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3NjMwNA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615976304", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:03:55Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/46", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/46/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/46/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/46/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/46", + "id": 490588129, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0MzEw", + "number": 46, + "title": "setLabels", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 1541702441, + "node_id": "MDU6TGFiZWwxNTQxNzAyNDQx", + "url": "https://api.github.com/repos/github-api-test-org/github-api/labels/setLabels_label_name", + "name": "setLabels_label_name", + "color": "ededed", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:03:52Z", + "updated_at": "2019-09-07T04:03:54Z", + "closed_at": "2019-09-07T04:03:54Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/46", + "html_url": "https://github.com/github-api-test-org/github-api/pull/46", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/46.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/46.patch" + }, + "body": "## test" + } + }, + { + "id": 2615976298, + "node_id": "MDEyOkxhYmVsZWRFdmVudDI2MTU5NzYyOTg=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615976298", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "labeled", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:03:53Z", + "label": { + "name": "setLabels_label_name", + "color": "ededed" + }, + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/46", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/46/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/46/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/46/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/46", + "id": 490588129, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0MzEw", + "number": 46, + "title": "setLabels", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 1541702441, + "node_id": "MDU6TGFiZWwxNTQxNzAyNDQx", + "url": "https://api.github.com/repos/github-api-test-org/github-api/labels/setLabels_label_name", + "name": "setLabels_label_name", + "color": "ededed", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:03:52Z", + "updated_at": "2019-09-07T04:03:54Z", + "closed_at": "2019-09-07T04:03:54Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/46", + "html_url": "https://github.com/github-api-test-org/github-api/pull/46", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/46.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/46.patch" + }, + "body": "## test" + } + }, + { + "id": 2615976286, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3NjI4Ng==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615976286", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:03:51Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/45", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/45/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/45/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/45/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/45", + "id": 490588126, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0MzA4", + "number": 45, + "title": "getUser", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:03:48Z", + "updated_at": "2019-09-07T04:03:51Z", + "closed_at": "2019-09-07T04:03:51Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/45", + "html_url": "https://github.com/github-api-test-org/github-api/pull/45", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/45.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/45.patch" + }, + "body": "## test" + } + }, + { + "id": 2615976267, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3NjI2Nw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615976267", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:03:46Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/44", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/44/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/44/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/44/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/44", + "id": 490588123, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0MzA2", + "number": 44, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:03:45Z", + "updated_at": "2019-09-07T04:03:46Z", + "closed_at": "2019-09-07T04:03:46Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/44", + "html_url": "https://github.com/github-api-test-org/github-api/pull/44", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/44.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/44.patch" + }, + "body": "## test" + } + }, + { + "id": 2615976232, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3NjIzMg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615976232", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:03:42Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/43", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/43/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/43/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/43/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/43", + "id": 490588112, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0Mjk4", + "number": 43, + "title": "queryPullRequestsQualifiedHead_rc", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:03:39Z", + "updated_at": "2019-09-07T04:03:41Z", + "closed_at": "2019-09-07T04:03:41Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/43", + "html_url": "https://github.com/github-api-test-org/github-api/pull/43", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/43.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/43.patch" + }, + "body": null + } + }, + { + "id": 2615976230, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3NjIzMA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615976230", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:03:41Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/42", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/42/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/42/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/42/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/42", + "id": 490588111, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0Mjk3", + "number": 42, + "title": "queryPullRequestsQualifiedHead_stable", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:03:39Z", + "updated_at": "2019-09-07T04:03:41Z", + "closed_at": "2019-09-07T04:03:41Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/42", + "html_url": "https://github.com/github-api-test-org/github-api/pull/42", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/42.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/42.patch" + }, + "body": null + } + }, + { + "id": 2615976211, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3NjIxMQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615976211", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:03:37Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/41", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/41/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/41/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/41/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/41", + "id": 490588104, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0Mjkx", + "number": 41, + "title": "testPullRequestReviews", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:03:33Z", + "updated_at": "2019-09-07T04:03:37Z", + "closed_at": "2019-09-07T04:03:37Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/41", + "html_url": "https://github.com/github-api-test-org/github-api/pull/41", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/41.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/41.patch" + }, + "body": "## test" + } + }, + { + "id": 2615974567, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3NDU2Nw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615974567", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T03:59:31Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/40", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/40/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/40/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/40/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/40", + "id": 490587778, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0MDQx", + "number": 40, + "title": "testPullRequestReviews", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T03:59:27Z", + "updated_at": "2019-09-07T03:59:31Z", + "closed_at": "2019-09-07T03:59:31Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/40", + "html_url": "https://github.com/github-api-test-org/github-api/pull/40", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/40.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/40.patch" + }, + "body": "## test" + } + }, + { + "id": 2615973483, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3MzQ4Mw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615973483", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T03:56:11Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/39", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/39/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/39/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/39/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/39", + "id": 490587553, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTYzODc5", + "number": 39, + "title": "testPullRequestReviews", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T03:56:07Z", + "updated_at": "2019-09-07T03:56:11Z", + "closed_at": "2019-09-07T03:56:11Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/39", + "html_url": "https://github.com/github-api-test-org/github-api/pull/39", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/39.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/39.patch" + }, + "body": "## test" + } + }, + { + "id": 2615971340, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3MTM0MA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615971340", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T03:49:51Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/37", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/37/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/37/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/37/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/37", + "id": 490587122, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTYzNTc2", + "number": 37, + "title": "queryPullRequestsQualifiedHead_stable", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T03:49:48Z", + "updated_at": "2019-09-07T03:49:51Z", + "closed_at": "2019-09-07T03:49:51Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/37", + "html_url": "https://github.com/github-api-test-org/github-api/pull/37", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/37.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/37.patch" + }, + "body": null + } + }, + { + "id": 2615971331, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3MTMzMQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615971331", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T03:49:50Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/38", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/38/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/38/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/38/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/38", + "id": 490587124, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTYzNTc4", + "number": 38, + "title": "queryPullRequestsQualifiedHead_rc", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T03:49:49Z", + "updated_at": "2019-09-07T03:49:50Z", + "closed_at": "2019-09-07T03:49:50Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/38", + "html_url": "https://github.com/github-api-test-org/github-api/pull/38", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/38.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/38.patch" + }, + "body": null + } + }, + { + "id": 2615970823, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3MDgyMw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615970823", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T03:48:18Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/34", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/34/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/34/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/34/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/34", + "id": 490581354, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTU5NTIz", + "number": 34, + "title": "queryPullRequestsQualifiedHead_stable", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T02:32:03Z", + "updated_at": "2019-09-07T03:48:18Z", + "closed_at": "2019-09-07T03:48:18Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/34", + "html_url": "https://github.com/github-api-test-org/github-api/pull/34", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/34.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/34.patch" + }, + "body": null + } + }, + { + "id": 2615970819, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3MDgxOQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615970819", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T03:48:17Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/35", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/35/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/35/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/35/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/35", + "id": 490581356, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTU5NTI1", + "number": 35, + "title": "queryPullRequestsQualifiedHead_rc", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T02:32:04Z", + "updated_at": "2019-09-07T03:48:17Z", + "closed_at": "2019-09-07T03:48:17Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/35", + "html_url": "https://github.com/github-api-test-org/github-api/pull/35", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/35.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/35.patch" + }, + "body": null + } + }, + { + "id": 2615970815, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3MDgxNQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615970815", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T03:48:17Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/36", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/36/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/36/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/36/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/36", + "id": 490581364, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTU5NTMx", + "number": 36, + "title": "mergeCommitSHA", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T02:32:07Z", + "updated_at": "2019-09-07T03:48:17Z", + "closed_at": "2019-09-07T03:48:17Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/36", + "html_url": "https://github.com/github-api-test-org/github-api/pull/36", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/36.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/36.patch" + }, + "body": "## test" + } + }, + { + "id": 2615942486, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk0MjQ4Ng==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615942486", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T02:32:02Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/33", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/33/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/33/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/33/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/33", + "id": 490581347, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTU5NTE4", + "number": 33, + "title": "testPullRequestReviews", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T02:31:58Z", + "updated_at": "2019-09-07T02:32:02Z", + "closed_at": "2019-09-07T02:32:02Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/33", + "html_url": "https://github.com/github-api-test-org/github-api/pull/33", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/33.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/33.patch" + }, + "body": "## test" + } + }, + { + "id": 2615942311, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk0MjMxMQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615942311", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T02:31:30Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/32", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/32/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/32/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/32/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/32", + "id": 490581141, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTU5Mzgy", + "number": 32, + "title": "mergeCommitSHA", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T02:29:22Z", + "updated_at": "2019-09-07T02:31:30Z", + "closed_at": "2019-09-07T02:31:30Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/32", + "html_url": "https://github.com/github-api-test-org/github-api/pull/32", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/32.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/32.patch" + }, + "body": "## test" + } + }, + { + "id": 2615942310, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk0MjMxMA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615942310", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T02:31:30Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/31", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/31/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/31/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/31/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/31", + "id": 490581132, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTU5Mzc1", + "number": 31, + "title": "queryPullRequestsQualifiedHead_rc", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T02:29:19Z", + "updated_at": "2019-09-07T02:31:30Z", + "closed_at": "2019-09-07T02:31:30Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/31", + "html_url": "https://github.com/github-api-test-org/github-api/pull/31", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/31.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/31.patch" + }, + "body": null + } + }, + { + "id": 2615942309, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk0MjMwOQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615942309", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T02:31:30Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/30", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/30/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/30/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/30/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/30", + "id": 490581131, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTU5Mzc0", + "number": 30, + "title": "queryPullRequestsQualifiedHead_stable", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T02:29:18Z", + "updated_at": "2019-09-07T02:31:30Z", + "closed_at": "2019-09-07T02:31:30Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/30", + "html_url": "https://github.com/github-api-test-org/github-api/pull/30", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/30.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/30.patch" + }, + "body": null + } + }, + { + "id": 2615941478, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk0MTQ3OA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615941478", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T02:29:17Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/28", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/28/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/28/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/28/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/28", + "id": 490580930, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTU5MjQ1", + "number": 28, + "title": "createPullRequestComment", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2019-09-07T02:26:38Z", + "updated_at": "2019-09-07T02:29:17Z", + "closed_at": "2019-09-07T02:29:17Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/28", + "html_url": "https://github.com/github-api-test-org/github-api/pull/28", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/28.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/28.patch" + }, + "body": "## test" + } + }, + { + "id": 2615941475, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk0MTQ3NQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615941475", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T02:29:16Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/29", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/29/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/29/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/29/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/29", + "id": 490581010, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTU5MzA4", + "number": 29, + "title": "mergeCommitSHA", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T02:27:44Z", + "updated_at": "2019-09-07T02:29:16Z", + "closed_at": "2019-09-07T02:29:16Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/29", + "html_url": "https://github.com/github-api-test-org/github-api/pull/29", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/29.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/29.patch" + }, + "body": "## test" + } + }, + { + "id": 2615940330, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk0MDMzMA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615940330", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T02:26:05Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/27", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/27/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/27/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/27/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/27", + "id": 490580882, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTU5MjEw", + "number": 27, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T02:26:04Z", + "updated_at": "2019-09-07T02:26:05Z", + "closed_at": "2019-09-07T02:26:05Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/27", + "html_url": "https://github.com/github-api-test-org/github-api/pull/27", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/27.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/27.patch" + }, + "body": "## test" + } + }, + { + "id": 2615924076, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTkyNDA3Ng==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615924076", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T01:46:40Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/26", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/26/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/26/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/26/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/26", + "id": 490577402, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTU2OTUx", + "number": 26, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T01:46:38Z", + "updated_at": "2019-09-07T01:46:40Z", + "closed_at": "2019-09-07T01:46:40Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/26", + "html_url": "https://github.com/github-api-test-org/github-api/pull/26", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/26.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/26.patch" + }, + "body": "## test" + } + }, + { + "id": 2615923838, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTkyMzgzOA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615923838", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T01:46:01Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/25", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/25/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/25/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/25/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/25", + "id": 490577344, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTU2OTE5", + "number": 25, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T01:46:00Z", + "updated_at": "2019-09-07T01:46:01Z", + "closed_at": "2019-09-07T01:46:01Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/25", + "html_url": "https://github.com/github-api-test-org/github-api/pull/25", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/25.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/25.patch" + }, + "body": "## test" + } + }, + { + "id": 2615905493, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTkwNTQ5Mw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615905493", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T01:08:46Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/24", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/24/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/24/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/24/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/24", + "id": 490573907, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTU0NDU3", + "number": 24, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T01:08:44Z", + "updated_at": "2019-09-07T01:08:46Z", + "closed_at": "2019-09-07T01:08:46Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/24", + "html_url": "https://github.com/github-api-test-org/github-api/pull/24", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/24.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/24.patch" + }, + "body": "## test" + } + }, + { + "id": 2615905009, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTkwNTAwOQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615905009", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T01:07:59Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/23", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/23/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/23/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/23/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/23", + "id": 490573835, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTU0Mzk4", + "number": 23, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T01:07:58Z", + "updated_at": "2019-09-07T01:07:59Z", + "closed_at": "2019-09-07T01:07:59Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/23", + "html_url": "https://github.com/github-api-test-org/github-api/pull/23", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/23.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/23.patch" + }, + "body": "## test" + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-654e008f-d77e-4339-957e-f2bdfcab904b.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-654e008f-d77e-4339-957e-f2bdfcab904b.json new file mode 100644 index 0000000000..2f8da11b09 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-654e008f-d77e-4339-957e-f2bdfcab904b.json @@ -0,0 +1,2492 @@ +[ + { + "id": 2616569206, + "node_id": "MDE5OkhlYWRSZWZEZWxldGVkRXZlbnQyNjE2NTY5MjA2", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616569206", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "head_ref_deleted", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T05:42:52Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/236", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/236/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/236/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/236/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/236", + "id": 490713654, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ3NTA2", + "number": 236, + "title": "updateContentSquashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T05:42:48Z", + "updated_at": "2019-09-08T05:42:52Z", + "closed_at": "2019-09-08T05:42:50Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/236", + "html_url": "https://github.com/github-api-test-org/github-api/pull/236", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/236.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/236.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616569197, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU2OTE5Nw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616569197", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T05:42:50Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/236", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/236/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/236/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/236/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/236", + "id": 490713654, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ3NTA2", + "number": 236, + "title": "updateContentSquashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T05:42:48Z", + "updated_at": "2019-09-08T05:42:52Z", + "closed_at": "2019-09-08T05:42:50Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/236", + "html_url": "https://github.com/github-api-test-org/github-api/pull/236", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/236.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/236.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616569196, + "node_id": "MDExOk1lcmdlZEV2ZW50MjYxNjU2OTE5Ng==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616569196", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "merged", + "commit_id": "e9dd561d4b7dc525b67e02538aa5d2eff3c3c289", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/e9dd561d4b7dc525b67e02538aa5d2eff3c3c289", + "created_at": "2019-09-08T05:42:50Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/236", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/236/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/236/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/236/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/236", + "id": 490713654, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ3NTA2", + "number": 236, + "title": "updateContentSquashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T05:42:48Z", + "updated_at": "2019-09-08T05:42:52Z", + "closed_at": "2019-09-08T05:42:50Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/236", + "html_url": "https://github.com/github-api-test-org/github-api/pull/236", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/236.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/236.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616569195, + "node_id": "MDE1OlJlZmVyZW5jZWRFdmVudDI2MTY1NjkxOTU=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616569195", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "referenced", + "commit_id": "e9dd561d4b7dc525b67e02538aa5d2eff3c3c289", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/e9dd561d4b7dc525b67e02538aa5d2eff3c3c289", + "created_at": "2019-09-08T05:42:50Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/236", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/236/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/236/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/236/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/236", + "id": 490713654, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ3NTA2", + "number": 236, + "title": "updateContentSquashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T05:42:48Z", + "updated_at": "2019-09-08T05:42:52Z", + "closed_at": "2019-09-08T05:42:50Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/236", + "html_url": "https://github.com/github-api-test-org/github-api/pull/236", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/236.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/236.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616569153, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU2OTE1Mw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616569153", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T05:42:42Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/234", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/234/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/234/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/234/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/234", + "id": 490713643, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ3NDk4", + "number": 234, + "title": "queryPullRequestsQualifiedHead_stable", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T05:42:39Z", + "updated_at": "2019-09-08T05:42:42Z", + "closed_at": "2019-09-08T05:42:42Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/234", + "html_url": "https://github.com/github-api-test-org/github-api/pull/234", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/234.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/234.patch" + }, + "body": null + } + }, + { + "id": 2616569152, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU2OTE1Mg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616569152", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T05:42:42Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/235", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/235/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/235/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/235/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/235", + "id": 490713645, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ3NTAw", + "number": 235, + "title": "queryPullRequestsQualifiedHead_rc", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T05:42:40Z", + "updated_at": "2019-09-08T05:42:41Z", + "closed_at": "2019-09-08T05:42:41Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/235", + "html_url": "https://github.com/github-api-test-org/github-api/pull/235", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/235.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/235.patch" + }, + "body": null + } + }, + { + "id": 2616569136, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU2OTEzNg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616569136", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T05:42:38Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/233", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/233/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/233/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/233/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/233", + "id": 490713635, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ3NDkz", + "number": 233, + "title": "testPullRequestReviews", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T05:42:34Z", + "updated_at": "2019-09-08T05:42:38Z", + "closed_at": "2019-09-08T05:42:38Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/233", + "html_url": "https://github.com/github-api-test-org/github-api/pull/233", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/233.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/233.patch" + }, + "body": "## test" + } + }, + { + "id": 2616568706, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU2ODcwNg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616568706", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T05:41:13Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/232", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/232/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/232/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/232/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/232", + "id": 490713554, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ3NDM5", + "number": 232, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T05:41:12Z", + "updated_at": "2019-09-08T05:41:13Z", + "closed_at": "2019-09-08T05:41:13Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/232", + "html_url": "https://github.com/github-api-test-org/github-api/pull/232", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/232.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/232.patch" + }, + "body": "## test" + } + }, + { + "id": 2616568637, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU2ODYzNw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616568637", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T05:40:58Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/231", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/231/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/231/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/231/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/231", + "id": 490713543, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ3NDMy", + "number": 231, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T05:40:56Z", + "updated_at": "2019-09-08T05:40:58Z", + "closed_at": "2019-09-08T05:40:58Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/231", + "html_url": "https://github.com/github-api-test-org/github-api/pull/231", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/231.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/231.patch" + }, + "body": "## test" + } + }, + { + "id": 2616568464, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU2ODQ2NA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616568464", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T05:40:25Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/230", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/230/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/230/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/230/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/230", + "id": 490713512, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ3NDA5", + "number": 230, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T05:40:24Z", + "updated_at": "2019-09-08T05:40:25Z", + "closed_at": "2019-09-08T05:40:25Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/230", + "html_url": "https://github.com/github-api-test-org/github-api/pull/230", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/230.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/230.patch" + }, + "body": "## test" + } + }, + { + "id": 2616567718, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU2NzcxOA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616567718", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T05:37:41Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/229", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/229/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/229/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/229/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/229", + "id": 490713315, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ3MjYw", + "number": 229, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T05:37:39Z", + "updated_at": "2019-09-08T05:37:40Z", + "closed_at": "2019-09-08T05:37:40Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/229", + "html_url": "https://github.com/github-api-test-org/github-api/pull/229", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/229.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/229.patch" + }, + "body": "## test" + } + }, + { + "id": 2616562491, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU2MjQ5MQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616562491", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T05:19:10Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/228", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/228/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/228/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/228/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/228", + "id": 490712141, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ2NDUz", + "number": 228, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T05:19:07Z", + "updated_at": "2019-09-08T05:19:10Z", + "closed_at": "2019-09-08T05:19:10Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/228", + "html_url": "https://github.com/github-api-test-org/github-api/pull/228", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/228.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/228.patch" + }, + "body": "## test" + } + }, + { + "id": 2616561389, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU2MTM4OQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616561389", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T05:15:15Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/227", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/227/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/227/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/227/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/227", + "id": 490711864, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ2MjQ2", + "number": 227, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T05:15:14Z", + "updated_at": "2019-09-08T05:15:15Z", + "closed_at": "2019-09-08T05:15:15Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/227", + "html_url": "https://github.com/github-api-test-org/github-api/pull/227", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/227.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/227.patch" + }, + "body": "## test" + } + }, + { + "id": 2616560316, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU2MDMxNg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616560316", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T05:11:35Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/226", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/226/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/226/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/226/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/226", + "id": 490711580, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ2MDQ4", + "number": 226, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T05:11:28Z", + "updated_at": "2019-09-08T05:11:35Z", + "closed_at": "2019-09-08T05:11:35Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/226", + "html_url": "https://github.com/github-api-test-org/github-api/pull/226", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/226.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/226.patch" + }, + "body": "## test" + } + }, + { + "id": 2616558325, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU1ODMyNQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616558325", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T05:04:07Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/225", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/225/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/225/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/225/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/225", + "id": 490711082, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ1Njk2", + "number": 225, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T05:04:01Z", + "updated_at": "2019-09-08T05:04:07Z", + "closed_at": "2019-09-08T05:04:07Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/225", + "html_url": "https://github.com/github-api-test-org/github-api/pull/225", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/225.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/225.patch" + }, + "body": "## test" + } + }, + { + "id": 2616557553, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU1NzU1Mw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616557553", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T05:01:36Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/224", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/224/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/224/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/224/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/224", + "id": 490710901, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ1NTcz", + "number": 224, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T05:01:35Z", + "updated_at": "2019-09-08T05:01:36Z", + "closed_at": "2019-09-08T05:01:36Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/224", + "html_url": "https://github.com/github-api-test-org/github-api/pull/224", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/224.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/224.patch" + }, + "body": "## test" + } + }, + { + "id": 2616557200, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU1NzIwMA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616557200", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T05:00:31Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/223", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/223/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/223/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/223/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/223", + "id": 490710820, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ1NTEw", + "number": 223, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T05:00:29Z", + "updated_at": "2019-09-08T05:00:31Z", + "closed_at": "2019-09-08T05:00:31Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/223", + "html_url": "https://github.com/github-api-test-org/github-api/pull/223", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/223.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/223.patch" + }, + "body": "## test" + } + }, + { + "id": 2616556835, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU1NjgzNQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616556835", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T04:59:21Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/222", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/222/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/222/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/222/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/222", + "id": 490710748, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ1NDYx", + "number": 222, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T04:59:14Z", + "updated_at": "2019-09-08T04:59:21Z", + "closed_at": "2019-09-08T04:59:21Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/222", + "html_url": "https://github.com/github-api-test-org/github-api/pull/222", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/222.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/222.patch" + }, + "body": "## test" + } + }, + { + "id": 2616554959, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU1NDk1OQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616554959", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T04:51:53Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/221", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/221/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/221/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/221/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/221", + "id": 490710339, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ1MTgz", + "number": 221, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T04:51:52Z", + "updated_at": "2019-09-08T04:51:53Z", + "closed_at": "2019-09-08T04:51:53Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/221", + "html_url": "https://github.com/github-api-test-org/github-api/pull/221", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/221.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/221.patch" + }, + "body": "## test" + } + }, + { + "id": 2616554109, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU1NDEwOQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616554109", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T04:48:45Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/220", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/220/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/220/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/220/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/220", + "id": 490710130, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ1MDMw", + "number": 220, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T04:48:44Z", + "updated_at": "2019-09-08T04:48:45Z", + "closed_at": "2019-09-08T04:48:45Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/220", + "html_url": "https://github.com/github-api-test-org/github-api/pull/220", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/220.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/220.patch" + }, + "body": "## test" + } + }, + { + "id": 2616553891, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU1Mzg5MQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616553891", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T04:47:58Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/219", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/219/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/219/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/219/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/219", + "id": 490710061, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ0OTc3", + "number": 219, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T04:47:41Z", + "updated_at": "2019-09-08T04:47:58Z", + "closed_at": "2019-09-08T04:47:58Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/219", + "html_url": "https://github.com/github-api-test-org/github-api/pull/219", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/219.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/219.patch" + }, + "body": "## test" + } + }, + { + "id": 2616458442, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1ODQ0Mg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616458442", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T23:06:52Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/218", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/218/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/218/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/218/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/218", + "id": 490689319, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMxMjE0", + "number": 218, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T23:06:50Z", + "updated_at": "2019-09-07T23:06:52Z", + "closed_at": "2019-09-07T23:06:52Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/218", + "html_url": "https://github.com/github-api-test-org/github-api/pull/218", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/218.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/218.patch" + }, + "body": "## test" + } + }, + { + "id": 2616458089, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1ODA4OQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616458089", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T23:05:44Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/217", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/217/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/217/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/217/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/217", + "id": 490689244, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMxMTY4", + "number": 217, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T23:05:43Z", + "updated_at": "2019-09-07T23:05:44Z", + "closed_at": "2019-09-07T23:05:44Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/217", + "html_url": "https://github.com/github-api-test-org/github-api/pull/217", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/217.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/217.patch" + }, + "body": "## test" + } + }, + { + "id": 2616458073, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1ODA3Mw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616458073", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T23:05:41Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/216", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/216/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/216/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/216/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/216", + "id": 490689241, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMxMTY2", + "number": 216, + "title": "setAssignee", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "assignees": [ + { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + } + ], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T23:05:38Z", + "updated_at": "2019-09-07T23:05:41Z", + "closed_at": "2019-09-07T23:05:41Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/216", + "html_url": "https://github.com/github-api-test-org/github-api/pull/216", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/216.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/216.patch" + }, + "body": "## test" + } + }, + { + "id": 2616458065, + "node_id": "MDEzOkFzc2lnbmVkRXZlbnQyNjE2NDU4MDY1", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616458065", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "assigned", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T23:05:39Z", + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "assigner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/216", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/216/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/216/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/216/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/216", + "id": 490689241, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMxMTY2", + "number": 216, + "title": "setAssignee", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "assignees": [ + { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + } + ], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T23:05:38Z", + "updated_at": "2019-09-07T23:05:41Z", + "closed_at": "2019-09-07T23:05:41Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/216", + "html_url": "https://github.com/github-api-test-org/github-api/pull/216", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/216.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/216.patch" + }, + "body": "## test" + } + }, + { + "id": 2616458054, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1ODA1NA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616458054", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T23:05:36Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/215", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/215/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/215/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/215/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/215", + "id": 490689231, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMxMTU3", + "number": 215, + "title": "createPullRequestComment", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2019-09-07T23:05:34Z", + "updated_at": "2019-09-07T23:05:36Z", + "closed_at": "2019-09-07T23:05:36Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/215", + "html_url": "https://github.com/github-api-test-org/github-api/pull/215", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/215.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/215.patch" + }, + "body": "## test" + } + }, + { + "id": 2616458038, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1ODAzOA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616458038", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T23:05:32Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/214", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/214/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/214/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/214/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/214", + "id": 490689222, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMxMTUw", + "number": 214, + "title": "queryPullRequestsUnqualifiedHead_rc", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T23:05:30Z", + "updated_at": "2019-09-07T23:05:32Z", + "closed_at": "2019-09-07T23:05:32Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/214", + "html_url": "https://github.com/github-api-test-org/github-api/pull/214", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/214.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/214.patch" + }, + "body": null + } + }, + { + "id": 2616458034, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1ODAzNA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616458034", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T23:05:32Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/213", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/213/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/213/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/213/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/213", + "id": 490689220, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMxMTQ5", + "number": 213, + "title": "queryPullRequestsUnqualifiedHead_stable", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T23:05:30Z", + "updated_at": "2019-09-07T23:05:32Z", + "closed_at": "2019-09-07T23:05:32Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/213", + "html_url": "https://github.com/github-api-test-org/github-api/pull/213", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/213.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/213.patch" + }, + "body": null + } + }, + { + "id": 2616457993, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1Nzk5Mw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616457993", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T23:05:24Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/212", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/212/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/212/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/212/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/212", + "id": 490689203, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMxMTM2", + "number": 212, + "title": "pullRequestReviewComments", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T23:05:21Z", + "updated_at": "2019-09-07T23:05:24Z", + "closed_at": "2019-09-07T23:05:24Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/212", + "html_url": "https://github.com/github-api-test-org/github-api/pull/212", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/212.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/212.patch" + }, + "body": "## test" + } + }, + { + "id": 2616457959, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1Nzk1OQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616457959", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T23:05:19Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/211", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/211/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/211/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/211/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/211", + "id": 490689195, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMxMTMx", + "number": 211, + "title": "mergeCommitSHA", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T23:05:16Z", + "updated_at": "2019-09-07T23:05:19Z", + "closed_at": "2019-09-07T23:05:19Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/211", + "html_url": "https://github.com/github-api-test-org/github-api/pull/211", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/211.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/211.patch" + }, + "body": "## test" + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-6f0d6963-5006-4dba-b11b-a0408d0f798f.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-6f0d6963-5006-4dba-b11b-a0408d0f798f.json new file mode 100644 index 0000000000..8bfa2a11ba --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-6f0d6963-5006-4dba-b11b-a0408d0f798f.json @@ -0,0 +1,2501 @@ +[ + { + "id": 2616432191, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQzMjE5MQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616432191", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T21:43:42Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/145", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/145/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/145/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/145/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/145", + "id": 490683327, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjI3MTE4", + "number": 145, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T21:43:41Z", + "updated_at": "2019-09-07T21:43:42Z", + "closed_at": "2019-09-07T21:43:42Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/145", + "html_url": "https://github.com/github-api-test-org/github-api/pull/145", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/145.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/145.patch" + }, + "body": "## test" + } + }, + { + "id": 2616419418, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQxOTQxOA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616419418", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T21:07:53Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/144", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/144/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/144/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/144/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/144", + "id": 490680475, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjI1MjAx", + "number": 144, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T21:07:52Z", + "updated_at": "2019-09-07T21:07:53Z", + "closed_at": "2019-09-07T21:07:53Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/144", + "html_url": "https://github.com/github-api-test-org/github-api/pull/144", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/144.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/144.patch" + }, + "body": "## test" + } + }, + { + "id": 2616411404, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQxMTQwNA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616411404", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T20:46:03Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/143", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/143/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/143/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/143/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/143", + "id": 490678684, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjIzOTk0", + "number": 143, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T20:46:02Z", + "updated_at": "2019-09-07T20:46:03Z", + "closed_at": "2019-09-07T20:46:03Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/143", + "html_url": "https://github.com/github-api-test-org/github-api/pull/143", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/143.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/143.patch" + }, + "body": "## test" + } + }, + { + "id": 2616393850, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjM5Mzg1MA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616393850", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T20:02:45Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/142", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/142/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/142/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/142/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/142", + "id": 490674814, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjIxNDEy", + "number": 142, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T20:02:44Z", + "updated_at": "2019-09-07T20:02:45Z", + "closed_at": "2019-09-07T20:02:45Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/142", + "html_url": "https://github.com/github-api-test-org/github-api/pull/142", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/142.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/142.patch" + }, + "body": "## test" + } + }, + { + "id": 2616393073, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjM5MzA3Mw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616393073", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T20:00:57Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/141", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/141/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/141/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/141/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/141", + "id": 490674583, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjIxMjkz", + "number": 141, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T20:00:56Z", + "updated_at": "2019-09-07T20:00:57Z", + "closed_at": "2019-09-07T20:00:57Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/141", + "html_url": "https://github.com/github-api-test-org/github-api/pull/141", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/141.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/141.patch" + }, + "body": "## test" + } + }, + { + "id": 2616393006, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjM5MzAwNg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616393006", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T20:00:47Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/140", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/140/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/140/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/140/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/140", + "id": 490674562, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjIxMjc5", + "number": 140, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T20:00:46Z", + "updated_at": "2019-09-07T20:00:47Z", + "closed_at": "2019-09-07T20:00:47Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/140", + "html_url": "https://github.com/github-api-test-org/github-api/pull/140", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/140.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/140.patch" + }, + "body": "## test" + } + }, + { + "id": 2616391494, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjM5MTQ5NA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616391494", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T19:57:10Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/139", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/139/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/139/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/139/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/139", + "id": 490674248, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjIxMDc4", + "number": 139, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T19:57:08Z", + "updated_at": "2019-09-07T19:57:10Z", + "closed_at": "2019-09-07T19:57:10Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/139", + "html_url": "https://github.com/github-api-test-org/github-api/pull/139", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/139.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/139.patch" + }, + "body": "## test" + } + }, + { + "id": 2616390652, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjM5MDY1Mg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616390652", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T19:55:13Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/138", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/138/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/138/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/138/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/138", + "id": 490674077, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjIwOTY0", + "number": 138, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T19:55:12Z", + "updated_at": "2019-09-07T19:55:13Z", + "closed_at": "2019-09-07T19:55:13Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/138", + "html_url": "https://github.com/github-api-test-org/github-api/pull/138", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/138.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/138.patch" + }, + "body": "## test" + } + }, + { + "id": 2616389990, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjM4OTk5MA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616389990", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T19:53:43Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/137", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/137/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/137/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/137/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/137", + "id": 490673917, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjIwODY3", + "number": 137, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T19:53:42Z", + "updated_at": "2019-09-07T19:53:43Z", + "closed_at": "2019-09-07T19:53:43Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/137", + "html_url": "https://github.com/github-api-test-org/github-api/pull/137", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/137.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/137.patch" + }, + "body": "## test" + } + }, + { + "id": 2616388040, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjM4ODA0MA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616388040", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T19:48:52Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/136", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/136/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/136/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/136/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/136", + "id": 490673489, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjIwNTk2", + "number": 136, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T19:48:51Z", + "updated_at": "2019-09-07T19:48:52Z", + "closed_at": "2019-09-07T19:48:52Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/136", + "html_url": "https://github.com/github-api-test-org/github-api/pull/136", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/136.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/136.patch" + }, + "body": "## test" + } + }, + { + "id": 2615995734, + "node_id": "MDE5OkhlYWRSZWZEZWxldGVkRXZlbnQyNjE1OTk1NzM0", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615995734", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "head_ref_deleted", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:47:03Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/135", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/135/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/135/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/135/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/135", + "id": 490591319, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY2NTAz", + "number": 135, + "title": "updateContentSquashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:46:59Z", + "updated_at": "2019-09-07T04:47:03Z", + "closed_at": "2019-09-07T04:47:01Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/135", + "html_url": "https://github.com/github-api-test-org/github-api/pull/135", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/135.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/135.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2615995728, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk5NTcyOA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615995728", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:47:02Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/135", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/135/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/135/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/135/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/135", + "id": 490591319, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY2NTAz", + "number": 135, + "title": "updateContentSquashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:46:59Z", + "updated_at": "2019-09-07T04:47:03Z", + "closed_at": "2019-09-07T04:47:01Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/135", + "html_url": "https://github.com/github-api-test-org/github-api/pull/135", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/135.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/135.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2615995725, + "node_id": "MDExOk1lcmdlZEV2ZW50MjYxNTk5NTcyNQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615995725", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "merged", + "commit_id": "e6c3619a8e558975a29fb7dbd7ae7fe549c2b514", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/e6c3619a8e558975a29fb7dbd7ae7fe549c2b514", + "created_at": "2019-09-07T04:47:01Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/135", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/135/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/135/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/135/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/135", + "id": 490591319, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY2NTAz", + "number": 135, + "title": "updateContentSquashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:46:59Z", + "updated_at": "2019-09-07T04:47:03Z", + "closed_at": "2019-09-07T04:47:01Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/135", + "html_url": "https://github.com/github-api-test-org/github-api/pull/135", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/135.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/135.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2615995724, + "node_id": "MDE1OlJlZmVyZW5jZWRFdmVudDI2MTU5OTU3MjQ=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615995724", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "referenced", + "commit_id": "e6c3619a8e558975a29fb7dbd7ae7fe549c2b514", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/e6c3619a8e558975a29fb7dbd7ae7fe549c2b514", + "created_at": "2019-09-07T04:47:01Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/135", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/135/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/135/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/135/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/135", + "id": 490591319, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY2NTAz", + "number": 135, + "title": "updateContentSquashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:46:59Z", + "updated_at": "2019-09-07T04:47:03Z", + "closed_at": "2019-09-07T04:47:01Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/135", + "html_url": "https://github.com/github-api-test-org/github-api/pull/135", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/135.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/135.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2615995531, + "node_id": "MDE5OkhlYWRSZWZEZWxldGVkRXZlbnQyNjE1OTk1NTMx", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615995531", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "head_ref_deleted", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:46:21Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/134", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/134/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/134/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/134/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/134", + "id": 490591276, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY2NDcx", + "number": 134, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:46:17Z", + "updated_at": "2019-09-07T04:46:21Z", + "closed_at": "2019-09-07T04:46:20Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/134", + "html_url": "https://github.com/github-api-test-org/github-api/pull/134", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/134.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/134.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2615995524, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk5NTUyNA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615995524", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:46:20Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/134", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/134/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/134/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/134/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/134", + "id": 490591276, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY2NDcx", + "number": 134, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:46:17Z", + "updated_at": "2019-09-07T04:46:21Z", + "closed_at": "2019-09-07T04:46:20Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/134", + "html_url": "https://github.com/github-api-test-org/github-api/pull/134", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/134.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/134.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2615995521, + "node_id": "MDExOk1lcmdlZEV2ZW50MjYxNTk5NTUyMQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615995521", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "merged", + "commit_id": "c1099490b4543f34ae55cd3a57192f55054ed174", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/c1099490b4543f34ae55cd3a57192f55054ed174", + "created_at": "2019-09-07T04:46:19Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/134", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/134/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/134/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/134/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/134", + "id": 490591276, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY2NDcx", + "number": 134, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:46:17Z", + "updated_at": "2019-09-07T04:46:21Z", + "closed_at": "2019-09-07T04:46:20Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/134", + "html_url": "https://github.com/github-api-test-org/github-api/pull/134", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/134.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/134.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2615995520, + "node_id": "MDE1OlJlZmVyZW5jZWRFdmVudDI2MTU5OTU1MjA=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615995520", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "referenced", + "commit_id": "c1099490b4543f34ae55cd3a57192f55054ed174", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/c1099490b4543f34ae55cd3a57192f55054ed174", + "created_at": "2019-09-07T04:46:19Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/134", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/134/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/134/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/134/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/134", + "id": 490591276, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY2NDcx", + "number": 134, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:46:17Z", + "updated_at": "2019-09-07T04:46:21Z", + "closed_at": "2019-09-07T04:46:20Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/134", + "html_url": "https://github.com/github-api-test-org/github-api/pull/134", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/134.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/134.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2615995259, + "node_id": "MDE5OkhlYWRSZWZEZWxldGVkRXZlbnQyNjE1OTk1MjU5", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615995259", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "head_ref_deleted", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:45:30Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/119", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/119/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/119/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/119/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/119", + "id": 490590924, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY2MjIy", + "number": 119, + "title": "updateContentSquashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:41:21Z", + "updated_at": "2019-09-07T04:45:30Z", + "closed_at": "2019-09-07T04:44:30Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/119", + "html_url": "https://github.com/github-api-test-org/github-api/pull/119", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/119.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/119.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2615995211, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk5NTIxMQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615995211", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:45:21Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/133", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/133/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/133/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/133/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/133", + "id": 490591197, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY2NDE1", + "number": 133, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:45:20Z", + "updated_at": "2019-09-07T04:45:21Z", + "closed_at": "2019-09-07T04:45:21Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/133", + "html_url": "https://github.com/github-api-test-org/github-api/pull/133", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/133.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/133.patch" + }, + "body": "## test" + } + }, + { + "id": 2615995204, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk5NTIwNA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615995204", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:45:18Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/132", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/132/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/132/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/132/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/132", + "id": 490591193, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY2NDEy", + "number": 132, + "title": "setAssignee", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "assignees": [ + { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + } + ], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:45:15Z", + "updated_at": "2019-09-07T04:45:18Z", + "closed_at": "2019-09-07T04:45:18Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/132", + "html_url": "https://github.com/github-api-test-org/github-api/pull/132", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/132.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/132.patch" + }, + "body": "## test" + } + }, + { + "id": 2615995195, + "node_id": "MDEzOkFzc2lnbmVkRXZlbnQyNjE1OTk1MTk1", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615995195", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "assigned", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:45:16Z", + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "assigner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/132", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/132/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/132/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/132/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/132", + "id": 490591193, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY2NDEy", + "number": 132, + "title": "setAssignee", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "assignees": [ + { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + } + ], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:45:15Z", + "updated_at": "2019-09-07T04:45:18Z", + "closed_at": "2019-09-07T04:45:18Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/132", + "html_url": "https://github.com/github-api-test-org/github-api/pull/132", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/132.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/132.patch" + }, + "body": "## test" + } + }, + { + "id": 2615995182, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk5NTE4Mg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615995182", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:45:14Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/131", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/131/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/131/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/131/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/131", + "id": 490591188, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY2NDA5", + "number": 131, + "title": "createPullRequestComment", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2019-09-07T04:45:12Z", + "updated_at": "2019-09-07T04:45:14Z", + "closed_at": "2019-09-07T04:45:14Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/131", + "html_url": "https://github.com/github-api-test-org/github-api/pull/131", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/131.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/131.patch" + }, + "body": "## test" + } + }, + { + "id": 2615995166, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk5NTE2Ng==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615995166", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:45:11Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/129", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/129/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/129/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/129/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/129", + "id": 490591180, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY2NDAz", + "number": 129, + "title": "queryPullRequestsUnqualifiedHead_stable", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:45:07Z", + "updated_at": "2019-09-07T04:45:11Z", + "closed_at": "2019-09-07T04:45:11Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/129", + "html_url": "https://github.com/github-api-test-org/github-api/pull/129", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/129.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/129.patch" + }, + "body": null + } + }, + { + "id": 2615995157, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk5NTE1Nw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615995157", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:45:10Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/130", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/130/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/130/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/130/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/130", + "id": 490591184, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY2NDA2", + "number": 130, + "title": "queryPullRequestsUnqualifiedHead_rc", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:45:08Z", + "updated_at": "2019-09-07T04:45:10Z", + "closed_at": "2019-09-07T04:45:10Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/130", + "html_url": "https://github.com/github-api-test-org/github-api/pull/130", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/130.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/130.patch" + }, + "body": null + } + }, + { + "id": 2615995134, + "node_id": "MDE5OkhlYWRSZWZEZWxldGVkRXZlbnQyNjE1OTk1MTM0", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615995134", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "head_ref_deleted", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:45:07Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/128", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/128/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/128/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/128/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/128", + "id": 490591171, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY2Mzk5", + "number": 128, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:45:02Z", + "updated_at": "2019-09-07T04:45:07Z", + "closed_at": "2019-09-07T04:45:05Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/128", + "html_url": "https://github.com/github-api-test-org/github-api/pull/128", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/128.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/128.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2615995125, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk5NTEyNQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615995125", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:45:05Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/128", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/128/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/128/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/128/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/128", + "id": 490591171, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY2Mzk5", + "number": 128, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:45:02Z", + "updated_at": "2019-09-07T04:45:07Z", + "closed_at": "2019-09-07T04:45:05Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/128", + "html_url": "https://github.com/github-api-test-org/github-api/pull/128", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/128.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/128.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2615995077, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk5NTA3Nw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615995077", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:44:57Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/127", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/127/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/127/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/127/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/127", + "id": 490591160, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY2Mzky", + "number": 127, + "title": "pullRequestReviewComments", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:44:53Z", + "updated_at": "2019-09-07T04:44:57Z", + "closed_at": "2019-09-07T04:44:57Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/127", + "html_url": "https://github.com/github-api-test-org/github-api/pull/127", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/127.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/127.patch" + }, + "body": "## test" + } + }, + { + "id": 2615995035, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk5NTAzNQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615995035", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:44:52Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/126", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/126/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/126/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/126/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/126", + "id": 490591154, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY2Mzg3", + "number": 126, + "title": "mergeCommitSHA", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:44:48Z", + "updated_at": "2019-09-07T04:44:52Z", + "closed_at": "2019-09-07T04:44:52Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/126", + "html_url": "https://github.com/github-api-test-org/github-api/pull/126", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/126.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/126.patch" + }, + "body": "## test" + } + }, + { + "id": 2615995016, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk5NTAxNg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615995016", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:44:46Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/125", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/125/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/125/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/125/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/125", + "id": 490591152, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY2Mzg2", + "number": 125, + "title": "setLabels", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 1541702441, + "node_id": "MDU6TGFiZWwxNTQxNzAyNDQx", + "url": "https://api.github.com/repos/github-api-test-org/github-api/labels/setLabels_label_name", + "name": "setLabels_label_name", + "color": "ededed", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:44:44Z", + "updated_at": "2019-09-07T04:44:46Z", + "closed_at": "2019-09-07T04:44:46Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/125", + "html_url": "https://github.com/github-api-test-org/github-api/pull/125", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/125.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/125.patch" + }, + "body": "## test" + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-71d7968e-586e-4120-81db-eea6f1aca2f0.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-71d7968e-586e-4120-81db-eea6f1aca2f0.json new file mode 100644 index 0000000000..34f3e99cc9 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-71d7968e-586e-4120-81db-eea6f1aca2f0.json @@ -0,0 +1,2536 @@ +[ + { + "id": 2616457943, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1Nzk0Mw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616457943", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T23:05:14Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/210", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/210/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/210/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/210/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/210", + "id": 490689190, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMxMTI3", + "number": 210, + "title": "setLabels", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 1541702441, + "node_id": "MDU6TGFiZWwxNTQxNzAyNDQx", + "url": "https://api.github.com/repos/github-api-test-org/github-api/labels/setLabels_label_name", + "name": "setLabels_label_name", + "color": "ededed", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T23:05:12Z", + "updated_at": "2019-09-07T23:05:14Z", + "closed_at": "2019-09-07T23:05:14Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/210", + "html_url": "https://github.com/github-api-test-org/github-api/pull/210", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/210.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/210.patch" + }, + "body": "## test" + } + }, + { + "id": 2616457934, + "node_id": "MDEyOkxhYmVsZWRFdmVudDI2MTY0NTc5MzQ=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616457934", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "labeled", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T23:05:12Z", + "label": { + "name": "setLabels_label_name", + "color": "ededed" + }, + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/210", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/210/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/210/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/210/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/210", + "id": 490689190, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMxMTI3", + "number": 210, + "title": "setLabels", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 1541702441, + "node_id": "MDU6TGFiZWwxNTQxNzAyNDQx", + "url": "https://api.github.com/repos/github-api-test-org/github-api/labels/setLabels_label_name", + "name": "setLabels_label_name", + "color": "ededed", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T23:05:12Z", + "updated_at": "2019-09-07T23:05:14Z", + "closed_at": "2019-09-07T23:05:14Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/210", + "html_url": "https://github.com/github-api-test-org/github-api/pull/210", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/210.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/210.patch" + }, + "body": "## test" + } + }, + { + "id": 2616457924, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1NzkyNA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616457924", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T23:05:10Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/209", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/209/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/209/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/209/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/209", + "id": 490689180, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMxMTIw", + "number": 209, + "title": "getUser", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T23:05:06Z", + "updated_at": "2019-09-07T23:05:10Z", + "closed_at": "2019-09-07T23:05:09Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/209", + "html_url": "https://github.com/github-api-test-org/github-api/pull/209", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/209.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/209.patch" + }, + "body": "## test" + } + }, + { + "id": 2616457897, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1Nzg5Nw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616457897", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T23:05:05Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/208", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/208/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/208/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/208/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/208", + "id": 490689173, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMxMTE0", + "number": 208, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T23:05:04Z", + "updated_at": "2019-09-07T23:05:05Z", + "closed_at": "2019-09-07T23:05:05Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/208", + "html_url": "https://github.com/github-api-test-org/github-api/pull/208", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/208.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/208.patch" + }, + "body": "## test" + } + }, + { + "id": 2616457872, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1Nzg3Mg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616457872", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T23:04:58Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/206", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/206/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/206/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/206/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/206", + "id": 490689160, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMxMTAy", + "number": 206, + "title": "queryPullRequestsQualifiedHead_stable", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T23:04:55Z", + "updated_at": "2019-09-07T23:04:58Z", + "closed_at": "2019-09-07T23:04:58Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/206", + "html_url": "https://github.com/github-api-test-org/github-api/pull/206", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/206.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/206.patch" + }, + "body": null + } + }, + { + "id": 2616457869, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1Nzg2OQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616457869", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T23:04:57Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/207", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/207/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/207/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/207/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/207", + "id": 490689162, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMxMTAz", + "number": 207, + "title": "queryPullRequestsQualifiedHead_rc", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T23:04:56Z", + "updated_at": "2019-09-07T23:04:57Z", + "closed_at": "2019-09-07T23:04:57Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/207", + "html_url": "https://github.com/github-api-test-org/github-api/pull/207", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/207.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/207.patch" + }, + "body": null + } + }, + { + "id": 2616457849, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1Nzg0OQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616457849", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T23:04:54Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/205", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/205/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/205/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/205/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/205", + "id": 490689154, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMxMDk2", + "number": 205, + "title": "testPullRequestReviews", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T23:04:50Z", + "updated_at": "2019-09-07T23:04:54Z", + "closed_at": "2019-09-07T23:04:54Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/205", + "html_url": "https://github.com/github-api-test-org/github-api/pull/205", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/205.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/205.patch" + }, + "body": "## test" + } + }, + { + "id": 2616457763, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1Nzc2Mw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616457763", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T23:04:26Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/204", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/204/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/204/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/204/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/204", + "id": 490689120, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMxMDcy", + "number": 204, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T23:04:25Z", + "updated_at": "2019-09-07T23:04:26Z", + "closed_at": "2019-09-07T23:04:26Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/204", + "html_url": "https://github.com/github-api-test-org/github-api/pull/204", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/204.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/204.patch" + }, + "body": "## test" + } + }, + { + "id": 2616457750, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1Nzc1MA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616457750", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T23:04:22Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/203", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/203/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/203/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/203/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/203", + "id": 490689112, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMxMDY2", + "number": 203, + "title": "setAssignee", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "assignees": [ + { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + } + ], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T23:04:21Z", + "updated_at": "2019-09-07T23:04:22Z", + "closed_at": "2019-09-07T23:04:22Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/203", + "html_url": "https://github.com/github-api-test-org/github-api/pull/203", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/203.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/203.patch" + }, + "body": "## test" + } + }, + { + "id": 2616457748, + "node_id": "MDEzOkFzc2lnbmVkRXZlbnQyNjE2NDU3NzQ4", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616457748", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "assigned", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T23:04:21Z", + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "assigner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/203", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/203/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/203/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/203/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/203", + "id": 490689112, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMxMDY2", + "number": 203, + "title": "setAssignee", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "assignees": [ + { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + } + ], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T23:04:21Z", + "updated_at": "2019-09-07T23:04:22Z", + "closed_at": "2019-09-07T23:04:22Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/203", + "html_url": "https://github.com/github-api-test-org/github-api/pull/203", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/203.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/203.patch" + }, + "body": "## test" + } + }, + { + "id": 2616457740, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1Nzc0MA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616457740", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T23:04:19Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/202", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/202/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/202/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/202/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/202", + "id": 490689105, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMxMDYw", + "number": 202, + "title": "createPullRequestComment", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2019-09-07T23:04:17Z", + "updated_at": "2019-09-07T23:04:19Z", + "closed_at": "2019-09-07T23:04:19Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/202", + "html_url": "https://github.com/github-api-test-org/github-api/pull/202", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/202.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/202.patch" + }, + "body": "## test" + } + }, + { + "id": 2616457723, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1NzcyMw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616457723", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T23:04:15Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/200", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/200/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/200/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/200/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/200", + "id": 490689098, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMxMDU2", + "number": 200, + "title": "queryPullRequestsUnqualifiedHead_stable", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T23:04:12Z", + "updated_at": "2019-09-07T23:04:15Z", + "closed_at": "2019-09-07T23:04:15Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/200", + "html_url": "https://github.com/github-api-test-org/github-api/pull/200", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/200.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/200.patch" + }, + "body": null + } + }, + { + "id": 2616457720, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1NzcyMA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616457720", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T23:04:14Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/201", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/201/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/201/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/201/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/201", + "id": 490689099, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMxMDU3", + "number": 201, + "title": "queryPullRequestsUnqualifiedHead_rc", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T23:04:13Z", + "updated_at": "2019-09-07T23:04:14Z", + "closed_at": "2019-09-07T23:04:14Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/201", + "html_url": "https://github.com/github-api-test-org/github-api/pull/201", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/201.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/201.patch" + }, + "body": null + } + }, + { + "id": 2616457695, + "node_id": "MDE5OkhlYWRSZWZEZWxldGVkRXZlbnQyNjE2NDU3Njk1", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616457695", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "head_ref_deleted", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T23:04:11Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/199", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/199/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/199/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/199/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/199", + "id": 490689091, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMxMDUy", + "number": 199, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T23:04:08Z", + "updated_at": "2019-09-07T23:04:11Z", + "closed_at": "2019-09-07T23:04:10Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/199", + "html_url": "https://github.com/github-api-test-org/github-api/pull/199", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/199.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/199.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616457691, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1NzY5MQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616457691", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T23:04:10Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/199", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/199/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/199/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/199/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/199", + "id": 490689091, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMxMDUy", + "number": 199, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T23:04:08Z", + "updated_at": "2019-09-07T23:04:11Z", + "closed_at": "2019-09-07T23:04:10Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/199", + "html_url": "https://github.com/github-api-test-org/github-api/pull/199", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/199.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/199.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616457687, + "node_id": "MDExOk1lcmdlZEV2ZW50MjYxNjQ1NzY4Nw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616457687", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "merged", + "commit_id": "887e69d3a0450d17a3b9a7020206e6c4730d2cae", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/887e69d3a0450d17a3b9a7020206e6c4730d2cae", + "created_at": "2019-09-07T23:04:10Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/199", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/199/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/199/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/199/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/199", + "id": 490689091, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMxMDUy", + "number": 199, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T23:04:08Z", + "updated_at": "2019-09-07T23:04:11Z", + "closed_at": "2019-09-07T23:04:10Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/199", + "html_url": "https://github.com/github-api-test-org/github-api/pull/199", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/199.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/199.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616457685, + "node_id": "MDE1OlJlZmVyZW5jZWRFdmVudDI2MTY0NTc2ODU=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616457685", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "referenced", + "commit_id": "887e69d3a0450d17a3b9a7020206e6c4730d2cae", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/887e69d3a0450d17a3b9a7020206e6c4730d2cae", + "created_at": "2019-09-07T23:04:10Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/199", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/199/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/199/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/199/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/199", + "id": 490689091, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMxMDUy", + "number": 199, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T23:04:08Z", + "updated_at": "2019-09-07T23:04:11Z", + "closed_at": "2019-09-07T23:04:10Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/199", + "html_url": "https://github.com/github-api-test-org/github-api/pull/199", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/199.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/199.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616457638, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1NzYzOA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616457638", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T23:04:02Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/198", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/198/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/198/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/198/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/198", + "id": 490689080, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMxMDQ0", + "number": 198, + "title": "pullRequestReviewComments", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T23:03:59Z", + "updated_at": "2019-09-07T23:04:02Z", + "closed_at": "2019-09-07T23:04:02Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/198", + "html_url": "https://github.com/github-api-test-org/github-api/pull/198", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/198.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/198.patch" + }, + "body": "## test" + } + }, + { + "id": 2616457608, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1NzYwOA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616457608", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T23:03:57Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/197", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/197/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/197/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/197/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/197", + "id": 490689072, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMxMDQx", + "number": 197, + "title": "mergeCommitSHA", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T23:03:53Z", + "updated_at": "2019-09-07T23:03:57Z", + "closed_at": "2019-09-07T23:03:57Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/197", + "html_url": "https://github.com/github-api-test-org/github-api/pull/197", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/197.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/197.patch" + }, + "body": "## test" + } + }, + { + "id": 2616457582, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1NzU4Mg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616457582", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T23:03:52Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/196", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/196/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/196/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/196/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/196", + "id": 490689065, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMxMDM0", + "number": 196, + "title": "setLabels", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 1541702441, + "node_id": "MDU6TGFiZWwxNTQxNzAyNDQx", + "url": "https://api.github.com/repos/github-api-test-org/github-api/labels/setLabels_label_name", + "name": "setLabels_label_name", + "color": "ededed", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T23:03:49Z", + "updated_at": "2019-09-07T23:03:52Z", + "closed_at": "2019-09-07T23:03:52Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/196", + "html_url": "https://github.com/github-api-test-org/github-api/pull/196", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/196.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/196.patch" + }, + "body": "## test" + } + }, + { + "id": 2616457571, + "node_id": "MDEyOkxhYmVsZWRFdmVudDI2MTY0NTc1NzE=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616457571", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "labeled", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T23:03:50Z", + "label": { + "name": "setLabels_label_name", + "color": "ededed" + }, + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/196", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/196/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/196/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/196/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/196", + "id": 490689065, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMxMDM0", + "number": 196, + "title": "setLabels", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 1541702441, + "node_id": "MDU6TGFiZWwxNTQxNzAyNDQx", + "url": "https://api.github.com/repos/github-api-test-org/github-api/labels/setLabels_label_name", + "name": "setLabels_label_name", + "color": "ededed", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T23:03:49Z", + "updated_at": "2019-09-07T23:03:52Z", + "closed_at": "2019-09-07T23:03:52Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/196", + "html_url": "https://github.com/github-api-test-org/github-api/pull/196", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/196.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/196.patch" + }, + "body": "## test" + } + }, + { + "id": 2616457546, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1NzU0Ng==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616457546", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T23:03:47Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/195", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/195/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/195/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/195/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/195", + "id": 490689060, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMxMDMw", + "number": 195, + "title": "getUser", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T23:03:44Z", + "updated_at": "2019-09-07T23:03:47Z", + "closed_at": "2019-09-07T23:03:47Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/195", + "html_url": "https://github.com/github-api-test-org/github-api/pull/195", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/195.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/195.patch" + }, + "body": "## test" + } + }, + { + "id": 2616457535, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1NzUzNQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616457535", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T23:03:43Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/194", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/194/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/194/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/194/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/194", + "id": 490689058, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMxMDI5", + "number": 194, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T23:03:42Z", + "updated_at": "2019-09-07T23:03:43Z", + "closed_at": "2019-09-07T23:03:43Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/194", + "html_url": "https://github.com/github-api-test-org/github-api/pull/194", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/194.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/194.patch" + }, + "body": "## test" + } + }, + { + "id": 2616457448, + "node_id": "MDE5OkhlYWRSZWZEZWxldGVkRXZlbnQyNjE2NDU3NDQ4", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616457448", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "head_ref_deleted", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T23:03:24Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/193", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/193/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/193/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/193/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/193", + "id": 490689031, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMxMDEz", + "number": 193, + "title": "updateContentSquashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T23:03:20Z", + "updated_at": "2019-09-07T23:03:24Z", + "closed_at": "2019-09-07T23:03:22Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/193", + "html_url": "https://github.com/github-api-test-org/github-api/pull/193", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/193.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/193.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616457435, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1NzQzNQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616457435", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T23:03:22Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/193", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/193/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/193/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/193/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/193", + "id": 490689031, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMxMDEz", + "number": 193, + "title": "updateContentSquashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T23:03:20Z", + "updated_at": "2019-09-07T23:03:24Z", + "closed_at": "2019-09-07T23:03:22Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/193", + "html_url": "https://github.com/github-api-test-org/github-api/pull/193", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/193.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/193.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616457434, + "node_id": "MDExOk1lcmdlZEV2ZW50MjYxNjQ1NzQzNA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616457434", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "merged", + "commit_id": "e1c3a54855c23347e43ddb12d5d92d78b6609474", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/e1c3a54855c23347e43ddb12d5d92d78b6609474", + "created_at": "2019-09-07T23:03:22Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/193", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/193/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/193/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/193/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/193", + "id": 490689031, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMxMDEz", + "number": 193, + "title": "updateContentSquashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T23:03:20Z", + "updated_at": "2019-09-07T23:03:24Z", + "closed_at": "2019-09-07T23:03:22Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/193", + "html_url": "https://github.com/github-api-test-org/github-api/pull/193", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/193.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/193.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616457433, + "node_id": "MDE1OlJlZmVyZW5jZWRFdmVudDI2MTY0NTc0MzM=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616457433", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "referenced", + "commit_id": "e1c3a54855c23347e43ddb12d5d92d78b6609474", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/e1c3a54855c23347e43ddb12d5d92d78b6609474", + "created_at": "2019-09-07T23:03:22Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/193", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/193/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/193/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/193/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/193", + "id": 490689031, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMxMDEz", + "number": 193, + "title": "updateContentSquashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T23:03:20Z", + "updated_at": "2019-09-07T23:03:24Z", + "closed_at": "2019-09-07T23:03:22Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/193", + "html_url": "https://github.com/github-api-test-org/github-api/pull/193", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/193.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/193.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616457318, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1NzMxOA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616457318", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T23:02:59Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/191", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/191/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/191/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/191/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/191", + "id": 490689002, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwOTky", + "number": 191, + "title": "queryPullRequestsQualifiedHead_stable", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T23:02:56Z", + "updated_at": "2019-09-07T23:02:59Z", + "closed_at": "2019-09-07T23:02:59Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/191", + "html_url": "https://github.com/github-api-test-org/github-api/pull/191", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/191.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/191.patch" + }, + "body": null + } + }, + { + "id": 2616457312, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1NzMxMg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616457312", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T23:02:59Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/192", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/192/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/192/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/192/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/192", + "id": 490689003, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwOTkz", + "number": 192, + "title": "queryPullRequestsQualifiedHead_rc", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T23:02:57Z", + "updated_at": "2019-09-07T23:02:58Z", + "closed_at": "2019-09-07T23:02:58Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/192", + "html_url": "https://github.com/github-api-test-org/github-api/pull/192", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/192.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/192.patch" + }, + "body": null + } + }, + { + "id": 2616457014, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1NzAxNA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616457014", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T23:02:09Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/190", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/190/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/190/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/190/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/190", + "id": 490688943, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwOTUw", + "number": 190, + "title": "testPullRequestReviews", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T23:02:05Z", + "updated_at": "2019-09-07T23:02:09Z", + "closed_at": "2019-09-07T23:02:09Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/190", + "html_url": "https://github.com/github-api-test-org/github-api/pull/190", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/190.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/190.patch" + }, + "body": "## test" + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-72a13002-acc3-4c49-a916-daaf249874b5.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-72a13002-acc3-4c49-a916-daaf249874b5.json new file mode 100644 index 0000000000..1cc8323699 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-72a13002-acc3-4c49-a916-daaf249874b5.json @@ -0,0 +1,2394 @@ +[ + { + "id": 2616603016, + "node_id": "MDE1OlJlZmVyZW5jZWRFdmVudDI2MTY2MDMwMTY=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616603016", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "referenced", + "commit_id": "ecec449372b1e8270524a35c1a5aa8fdaf0e6676", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/ecec449372b1e8270524a35c1a5aa8fdaf0e6676", + "created_at": "2019-09-08T07:24:54Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/267", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/267/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/267/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/267/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/267", + "id": 490720761, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzQz", + "number": 267, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T07:24:51Z", + "updated_at": "2019-09-08T07:25:48Z", + "closed_at": "2019-09-08T07:24:54Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/267", + "html_url": "https://github.com/github-api-test-org/github-api/pull/267", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/267.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/267.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616602977, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjYwMjk3Nw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616602977", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T07:24:47Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/266", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/266/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/266/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/266/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/266", + "id": 490720755, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzQw", + "number": 266, + "title": "pullRequestReviewComments", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T07:24:43Z", + "updated_at": "2019-09-08T07:24:46Z", + "closed_at": "2019-09-08T07:24:46Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/266", + "html_url": "https://github.com/github-api-test-org/github-api/pull/266", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/266.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/266.patch" + }, + "body": "## test" + } + }, + { + "id": 2616602953, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjYwMjk1Mw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616602953", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T07:24:42Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/265", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/265/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/265/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/265/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/265", + "id": 490720748, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzM0", + "number": 265, + "title": "mergeCommitSHA", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T07:24:38Z", + "updated_at": "2019-09-08T07:24:42Z", + "closed_at": "2019-09-08T07:24:42Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/265", + "html_url": "https://github.com/github-api-test-org/github-api/pull/265", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/265.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/265.patch" + }, + "body": "## test" + } + }, + { + "id": 2616602922, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjYwMjkyMg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616602922", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T07:24:36Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/264", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/264/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/264/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/264/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/264", + "id": 490720743, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzMw", + "number": 264, + "title": "setLabels", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 1541702441, + "node_id": "MDU6TGFiZWwxNTQxNzAyNDQx", + "url": "https://api.github.com/repos/github-api-test-org/github-api/labels/setLabels_label_name", + "name": "setLabels_label_name", + "color": "ededed", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T07:24:34Z", + "updated_at": "2019-09-08T07:24:36Z", + "closed_at": "2019-09-08T07:24:36Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/264", + "html_url": "https://github.com/github-api-test-org/github-api/pull/264", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/264.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/264.patch" + }, + "body": "## test" + } + }, + { + "id": 2616602907, + "node_id": "MDEyOkxhYmVsZWRFdmVudDI2MTY2MDI5MDc=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616602907", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "labeled", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T07:24:35Z", + "label": { + "name": "setLabels_label_name", + "color": "ededed" + }, + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/264", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/264/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/264/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/264/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/264", + "id": 490720743, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzMw", + "number": 264, + "title": "setLabels", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 1541702441, + "node_id": "MDU6TGFiZWwxNTQxNzAyNDQx", + "url": "https://api.github.com/repos/github-api-test-org/github-api/labels/setLabels_label_name", + "name": "setLabels_label_name", + "color": "ededed", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T07:24:34Z", + "updated_at": "2019-09-08T07:24:36Z", + "closed_at": "2019-09-08T07:24:36Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/264", + "html_url": "https://github.com/github-api-test-org/github-api/pull/264", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/264.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/264.patch" + }, + "body": "## test" + } + }, + { + "id": 2616602899, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjYwMjg5OQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616602899", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T07:24:33Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/263", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/263/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/263/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/263/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/263", + "id": 490720734, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzIy", + "number": 263, + "title": "getUser", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T07:24:30Z", + "updated_at": "2019-09-08T07:24:33Z", + "closed_at": "2019-09-08T07:24:33Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/263", + "html_url": "https://github.com/github-api-test-org/github-api/pull/263", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/263.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/263.patch" + }, + "body": "## test" + } + }, + { + "id": 2616602878, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjYwMjg3OA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616602878", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T07:24:29Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/262", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/262/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/262/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/262/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/262", + "id": 490720732, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzIx", + "number": 262, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T07:24:28Z", + "updated_at": "2019-09-08T07:24:28Z", + "closed_at": "2019-09-08T07:24:28Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/262", + "html_url": "https://github.com/github-api-test-org/github-api/pull/262", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/262.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/262.patch" + }, + "body": "## test" + } + }, + { + "id": 2616602870, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjYwMjg3MA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616602870", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T07:24:26Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/261", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/261/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/261/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/261/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/261", + "id": 490720728, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzE5", + "number": 261, + "title": "updateContentSquashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T07:24:23Z", + "updated_at": "2019-09-08T07:25:55Z", + "closed_at": "2019-09-08T07:24:25Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/261", + "html_url": "https://github.com/github-api-test-org/github-api/pull/261", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/261.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/261.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616602869, + "node_id": "MDExOk1lcmdlZEV2ZW50MjYxNjYwMjg2OQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616602869", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "merged", + "commit_id": "912e2176a00e60e02196737e0ae4c218a14b5dcb", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/912e2176a00e60e02196737e0ae4c218a14b5dcb", + "created_at": "2019-09-08T07:24:25Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/261", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/261/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/261/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/261/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/261", + "id": 490720728, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzE5", + "number": 261, + "title": "updateContentSquashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T07:24:23Z", + "updated_at": "2019-09-08T07:25:55Z", + "closed_at": "2019-09-08T07:24:25Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/261", + "html_url": "https://github.com/github-api-test-org/github-api/pull/261", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/261.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/261.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616602868, + "node_id": "MDE1OlJlZmVyZW5jZWRFdmVudDI2MTY2MDI4Njg=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616602868", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "referenced", + "commit_id": "912e2176a00e60e02196737e0ae4c218a14b5dcb", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/912e2176a00e60e02196737e0ae4c218a14b5dcb", + "created_at": "2019-09-08T07:24:25Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/261", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/261/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/261/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/261/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/261", + "id": 490720728, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzE5", + "number": 261, + "title": "updateContentSquashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T07:24:23Z", + "updated_at": "2019-09-08T07:25:55Z", + "closed_at": "2019-09-08T07:24:25Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/261", + "html_url": "https://github.com/github-api-test-org/github-api/pull/261", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/261.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/261.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616602821, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjYwMjgyMQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616602821", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T07:24:17Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/259", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/259/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/259/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/259/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/259", + "id": 490720714, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzEw", + "number": 259, + "title": "queryPullRequestsQualifiedHead_stable", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T07:24:14Z", + "updated_at": "2019-09-08T07:24:17Z", + "closed_at": "2019-09-08T07:24:17Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/259", + "html_url": "https://github.com/github-api-test-org/github-api/pull/259", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/259.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/259.patch" + }, + "body": null + } + }, + { + "id": 2616602819, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjYwMjgxOQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616602819", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T07:24:16Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/260", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/260/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/260/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/260/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/260", + "id": 490720715, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzEx", + "number": 260, + "title": "queryPullRequestsQualifiedHead_rc", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T07:24:15Z", + "updated_at": "2019-09-08T07:24:16Z", + "closed_at": "2019-09-08T07:24:16Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/260", + "html_url": "https://github.com/github-api-test-org/github-api/pull/260", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/260.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/260.patch" + }, + "body": null + } + }, + { + "id": 2616602792, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjYwMjc5Mg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616602792", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T07:24:13Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/258", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/258/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/258/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/258/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/258", + "id": 490720707, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzA1", + "number": 258, + "title": "testPullRequestReviews", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T07:24:09Z", + "updated_at": "2019-09-08T07:24:12Z", + "closed_at": "2019-09-08T07:24:12Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/258", + "html_url": "https://github.com/github-api-test-org/github-api/pull/258", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/258.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/258.patch" + }, + "body": "## test" + } + }, + { + "id": 2616602013, + "node_id": "MDE5OkhlYWRSZWZEZWxldGVkRXZlbnQyNjE2NjAyMDEz", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616602013", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "head_ref_deleted", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T07:22:13Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/257", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/257/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/257/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/257/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/257", + "id": 490718451, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUwODEz", + "number": 257, + "title": "updateContentSquashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T06:55:35Z", + "updated_at": "2019-09-08T07:22:13Z", + "closed_at": "2019-09-08T06:55:37Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/257", + "html_url": "https://github.com/github-api-test-org/github-api/pull/257", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/257.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/257.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616592221, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU5MjIyMQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616592221", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T06:55:37Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/257", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/257/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/257/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/257/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/257", + "id": 490718451, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUwODEz", + "number": 257, + "title": "updateContentSquashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T06:55:35Z", + "updated_at": "2019-09-08T07:22:13Z", + "closed_at": "2019-09-08T06:55:37Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/257", + "html_url": "https://github.com/github-api-test-org/github-api/pull/257", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/257.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/257.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616592220, + "node_id": "MDExOk1lcmdlZEV2ZW50MjYxNjU5MjIyMA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616592220", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "merged", + "commit_id": "3635cfa5fb1d5e8e2a6da110f7a3d8b3cc0d8818", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/3635cfa5fb1d5e8e2a6da110f7a3d8b3cc0d8818", + "created_at": "2019-09-08T06:55:37Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/257", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/257/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/257/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/257/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/257", + "id": 490718451, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUwODEz", + "number": 257, + "title": "updateContentSquashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T06:55:35Z", + "updated_at": "2019-09-08T07:22:13Z", + "closed_at": "2019-09-08T06:55:37Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/257", + "html_url": "https://github.com/github-api-test-org/github-api/pull/257", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/257.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/257.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616592219, + "node_id": "MDE1OlJlZmVyZW5jZWRFdmVudDI2MTY1OTIyMTk=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616592219", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "referenced", + "commit_id": "3635cfa5fb1d5e8e2a6da110f7a3d8b3cc0d8818", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/3635cfa5fb1d5e8e2a6da110f7a3d8b3cc0d8818", + "created_at": "2019-09-08T06:55:37Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/257", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/257/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/257/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/257/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/257", + "id": 490718451, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUwODEz", + "number": 257, + "title": "updateContentSquashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T06:55:35Z", + "updated_at": "2019-09-08T07:22:13Z", + "closed_at": "2019-09-08T06:55:37Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/257", + "html_url": "https://github.com/github-api-test-org/github-api/pull/257", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/257.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/257.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616592047, + "node_id": "MDE5OkhlYWRSZWZEZWxldGVkRXZlbnQyNjE2NTkyMDQ3", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616592047", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "head_ref_deleted", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T06:55:04Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/256", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/256/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/256/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/256/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/256", + "id": 490718385, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUwNzY0", + "number": 256, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T06:54:41Z", + "updated_at": "2019-09-08T06:55:04Z", + "closed_at": "2019-09-08T06:54:43Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/256", + "html_url": "https://github.com/github-api-test-org/github-api/pull/256", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/256.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/256.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616591929, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU5MTkyOQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616591929", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T06:54:43Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/256", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/256/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/256/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/256/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/256", + "id": 490718385, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUwNzY0", + "number": 256, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T06:54:41Z", + "updated_at": "2019-09-08T06:55:04Z", + "closed_at": "2019-09-08T06:54:43Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/256", + "html_url": "https://github.com/github-api-test-org/github-api/pull/256", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/256.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/256.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616591927, + "node_id": "MDExOk1lcmdlZEV2ZW50MjYxNjU5MTkyNw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616591927", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "merged", + "commit_id": "d7c5519e669a491df99919c21389bdc5b40123d7", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/d7c5519e669a491df99919c21389bdc5b40123d7", + "created_at": "2019-09-08T06:54:43Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/256", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/256/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/256/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/256/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/256", + "id": 490718385, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUwNzY0", + "number": 256, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T06:54:41Z", + "updated_at": "2019-09-08T06:55:04Z", + "closed_at": "2019-09-08T06:54:43Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/256", + "html_url": "https://github.com/github-api-test-org/github-api/pull/256", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/256.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/256.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616591926, + "node_id": "MDE1OlJlZmVyZW5jZWRFdmVudDI2MTY1OTE5MjY=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616591926", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "referenced", + "commit_id": "d7c5519e669a491df99919c21389bdc5b40123d7", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/d7c5519e669a491df99919c21389bdc5b40123d7", + "created_at": "2019-09-08T06:54:43Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/256", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/256/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/256/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/256/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/256", + "id": 490718385, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUwNzY0", + "number": 256, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T06:54:41Z", + "updated_at": "2019-09-08T06:55:04Z", + "closed_at": "2019-09-08T06:54:43Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/256", + "html_url": "https://github.com/github-api-test-org/github-api/pull/256", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/256.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/256.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616585693, + "node_id": "MDE5OkhlYWRSZWZEZWxldGVkRXZlbnQyNjE2NTg1Njkz", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616585693", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "head_ref_deleted", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T06:36:14Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/255", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/255/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/255/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/255/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/255", + "id": 490716883, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ5NzA0", + "number": 255, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T06:32:40Z", + "updated_at": "2019-09-08T06:36:14Z", + "closed_at": "2019-09-08T06:32:43Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/255", + "html_url": "https://github.com/github-api-test-org/github-api/pull/255", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/255.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/255.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616584595, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU4NDU5NQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616584595", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T06:32:43Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/255", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/255/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/255/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/255/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/255", + "id": 490716883, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ5NzA0", + "number": 255, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T06:32:40Z", + "updated_at": "2019-09-08T06:36:14Z", + "closed_at": "2019-09-08T06:32:43Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/255", + "html_url": "https://github.com/github-api-test-org/github-api/pull/255", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/255.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/255.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616584593, + "node_id": "MDExOk1lcmdlZEV2ZW50MjYxNjU4NDU5Mw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616584593", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "merged", + "commit_id": "f4e47a3f73b3e020631599efda52f14082524d59", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/f4e47a3f73b3e020631599efda52f14082524d59", + "created_at": "2019-09-08T06:32:43Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/255", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/255/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/255/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/255/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/255", + "id": 490716883, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ5NzA0", + "number": 255, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T06:32:40Z", + "updated_at": "2019-09-08T06:36:14Z", + "closed_at": "2019-09-08T06:32:43Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/255", + "html_url": "https://github.com/github-api-test-org/github-api/pull/255", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/255.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/255.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616584592, + "node_id": "MDE1OlJlZmVyZW5jZWRFdmVudDI2MTY1ODQ1OTI=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616584592", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "referenced", + "commit_id": "f4e47a3f73b3e020631599efda52f14082524d59", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/f4e47a3f73b3e020631599efda52f14082524d59", + "created_at": "2019-09-08T06:32:43Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/255", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/255/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/255/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/255/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/255", + "id": 490716883, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ5NzA0", + "number": 255, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T06:32:40Z", + "updated_at": "2019-09-08T06:36:14Z", + "closed_at": "2019-09-08T06:32:43Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/255", + "html_url": "https://github.com/github-api-test-org/github-api/pull/255", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/255.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/255.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616584137, + "node_id": "MDE5OkhlYWRSZWZEZWxldGVkRXZlbnQyNjE2NTg0MTM3", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616584137", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "head_ref_deleted", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T06:31:22Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/254", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/254/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/254/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/254/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/254", + "id": 490716565, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ5NTE1", + "number": 254, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T06:28:31Z", + "updated_at": "2019-09-08T06:31:22Z", + "closed_at": "2019-09-08T06:28:34Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/254", + "html_url": "https://github.com/github-api-test-org/github-api/pull/254", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/254.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/254.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616583295, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU4MzI5NQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616583295", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T06:28:34Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/254", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/254/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/254/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/254/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/254", + "id": 490716565, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ5NTE1", + "number": 254, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T06:28:31Z", + "updated_at": "2019-09-08T06:31:22Z", + "closed_at": "2019-09-08T06:28:34Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/254", + "html_url": "https://github.com/github-api-test-org/github-api/pull/254", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/254.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/254.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616583293, + "node_id": "MDExOk1lcmdlZEV2ZW50MjYxNjU4MzI5Mw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616583293", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "merged", + "commit_id": "846d413a390536c82419c18b672c9c228d210aa5", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/846d413a390536c82419c18b672c9c228d210aa5", + "created_at": "2019-09-08T06:28:34Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/254", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/254/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/254/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/254/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/254", + "id": 490716565, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ5NTE1", + "number": 254, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T06:28:31Z", + "updated_at": "2019-09-08T06:31:22Z", + "closed_at": "2019-09-08T06:28:34Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/254", + "html_url": "https://github.com/github-api-test-org/github-api/pull/254", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/254.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/254.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616583291, + "node_id": "MDE1OlJlZmVyZW5jZWRFdmVudDI2MTY1ODMyOTE=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616583291", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "referenced", + "commit_id": "846d413a390536c82419c18b672c9c228d210aa5", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/846d413a390536c82419c18b672c9c228d210aa5", + "created_at": "2019-09-08T06:28:34Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/254", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/254/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/254/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/254/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/254", + "id": 490716565, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ5NTE1", + "number": 254, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T06:28:31Z", + "updated_at": "2019-09-08T06:31:22Z", + "closed_at": "2019-09-08T06:28:34Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/254", + "html_url": "https://github.com/github-api-test-org/github-api/pull/254", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/254.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/254.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616583073, + "node_id": "MDE5OkhlYWRSZWZEZWxldGVkRXZlbnQyNjE2NTgzMDcz", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616583073", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "head_ref_deleted", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T06:27:56Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/253", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/253/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/253/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/253/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/253", + "id": 490716080, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ5MTgx", + "number": 253, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T06:20:49Z", + "updated_at": "2019-09-08T06:27:56Z", + "closed_at": "2019-09-08T06:20:51Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/253", + "html_url": "https://github.com/github-api-test-org/github-api/pull/253", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/253.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/253.patch" + }, + "body": "## test squash" + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-83c7abdb-5f08-4826-9313-decbfa7b2531.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-83c7abdb-5f08-4826-9313-decbfa7b2531.json new file mode 100644 index 0000000000..c40615d529 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-83c7abdb-5f08-4826-9313-decbfa7b2531.json @@ -0,0 +1,2394 @@ +[ + { + "id": 2616453066, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1MzA2Ng==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616453066", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:49:58Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/169", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/169/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/169/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/169/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/169", + "id": 490688075, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwMzU2", + "number": 169, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:49:56Z", + "updated_at": "2019-09-07T22:49:59Z", + "closed_at": "2019-09-07T22:49:58Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/169", + "html_url": "https://github.com/github-api-test-org/github-api/pull/169", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/169.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/169.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616453064, + "node_id": "MDExOk1lcmdlZEV2ZW50MjYxNjQ1MzA2NA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616453064", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "merged", + "commit_id": "0ccc6d19a336437d42b7dea45ffe7800151335ec", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/0ccc6d19a336437d42b7dea45ffe7800151335ec", + "created_at": "2019-09-07T22:49:58Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/169", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/169/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/169/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/169/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/169", + "id": 490688075, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwMzU2", + "number": 169, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:49:56Z", + "updated_at": "2019-09-07T22:49:59Z", + "closed_at": "2019-09-07T22:49:58Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/169", + "html_url": "https://github.com/github-api-test-org/github-api/pull/169", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/169.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/169.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616453063, + "node_id": "MDE1OlJlZmVyZW5jZWRFdmVudDI2MTY0NTMwNjM=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616453063", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "referenced", + "commit_id": "0ccc6d19a336437d42b7dea45ffe7800151335ec", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/0ccc6d19a336437d42b7dea45ffe7800151335ec", + "created_at": "2019-09-07T22:49:58Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/169", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/169/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/169/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/169/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/169", + "id": 490688075, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwMzU2", + "number": 169, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:49:56Z", + "updated_at": "2019-09-07T22:49:59Z", + "closed_at": "2019-09-07T22:49:58Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/169", + "html_url": "https://github.com/github-api-test-org/github-api/pull/169", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/169.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/169.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616453025, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1MzAyNQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616453025", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:49:51Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/168", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/168/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/168/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/168/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/168", + "id": 490688067, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwMzQ5", + "number": 168, + "title": "pullRequestReviewComments", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:49:48Z", + "updated_at": "2019-09-07T22:49:51Z", + "closed_at": "2019-09-07T22:49:51Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/168", + "html_url": "https://github.com/github-api-test-org/github-api/pull/168", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/168.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/168.patch" + }, + "body": "## test" + } + }, + { + "id": 2616453014, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1MzAxNA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616453014", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:49:47Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/167", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/167/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/167/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/167/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/167", + "id": 490688059, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwMzQ0", + "number": 167, + "title": "mergeCommitSHA", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:49:43Z", + "updated_at": "2019-09-07T22:49:47Z", + "closed_at": "2019-09-07T22:49:47Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/167", + "html_url": "https://github.com/github-api-test-org/github-api/pull/167", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/167.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/167.patch" + }, + "body": "## test" + } + }, + { + "id": 2616452996, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1Mjk5Ng==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616452996", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:49:42Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/166", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/166/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/166/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/166/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/166", + "id": 490688055, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwMzQx", + "number": 166, + "title": "setLabels", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 1541702441, + "node_id": "MDU6TGFiZWwxNTQxNzAyNDQx", + "url": "https://api.github.com/repos/github-api-test-org/github-api/labels/setLabels_label_name", + "name": "setLabels_label_name", + "color": "ededed", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:49:39Z", + "updated_at": "2019-09-07T22:49:42Z", + "closed_at": "2019-09-07T22:49:42Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/166", + "html_url": "https://github.com/github-api-test-org/github-api/pull/166", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/166.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/166.patch" + }, + "body": "## test" + } + }, + { + "id": 2616452984, + "node_id": "MDEyOkxhYmVsZWRFdmVudDI2MTY0NTI5ODQ=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616452984", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "labeled", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:49:40Z", + "label": { + "name": "setLabels_label_name", + "color": "ededed" + }, + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/166", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/166/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/166/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/166/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/166", + "id": 490688055, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwMzQx", + "number": 166, + "title": "setLabels", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 1541702441, + "node_id": "MDU6TGFiZWwxNTQxNzAyNDQx", + "url": "https://api.github.com/repos/github-api-test-org/github-api/labels/setLabels_label_name", + "name": "setLabels_label_name", + "color": "ededed", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:49:39Z", + "updated_at": "2019-09-07T22:49:42Z", + "closed_at": "2019-09-07T22:49:42Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/166", + "html_url": "https://github.com/github-api-test-org/github-api/pull/166", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/166.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/166.patch" + }, + "body": "## test" + } + }, + { + "id": 2616452978, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1Mjk3OA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616452978", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:49:38Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/165", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/165/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/165/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/165/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/165", + "id": 490688051, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwMzM4", + "number": 165, + "title": "getUser", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:49:36Z", + "updated_at": "2019-09-07T22:49:38Z", + "closed_at": "2019-09-07T22:49:38Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/165", + "html_url": "https://github.com/github-api-test-org/github-api/pull/165", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/165.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/165.patch" + }, + "body": "## test" + } + }, + { + "id": 2616452966, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1Mjk2Ng==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616452966", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:49:34Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/164", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/164/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/164/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/164/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/164", + "id": 490688048, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwMzM3", + "number": 164, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:49:33Z", + "updated_at": "2019-09-07T22:49:34Z", + "closed_at": "2019-09-07T22:49:34Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/164", + "html_url": "https://github.com/github-api-test-org/github-api/pull/164", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/164.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/164.patch" + }, + "body": "## test" + } + }, + { + "id": 2616452961, + "node_id": "MDE5OkhlYWRSZWZEZWxldGVkRXZlbnQyNjE2NDUyOTYx", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616452961", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "head_ref_deleted", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:49:32Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/163", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/163/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/163/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/163/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/163", + "id": 490688043, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwMzMz", + "number": 163, + "title": "updateContentSquashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:49:28Z", + "updated_at": "2019-09-07T22:49:32Z", + "closed_at": "2019-09-07T22:49:31Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/163", + "html_url": "https://github.com/github-api-test-org/github-api/pull/163", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/163.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/163.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616452956, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1Mjk1Ng==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616452956", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:49:31Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/163", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/163/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/163/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/163/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/163", + "id": 490688043, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwMzMz", + "number": 163, + "title": "updateContentSquashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:49:28Z", + "updated_at": "2019-09-07T22:49:32Z", + "closed_at": "2019-09-07T22:49:31Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/163", + "html_url": "https://github.com/github-api-test-org/github-api/pull/163", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/163.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/163.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616452955, + "node_id": "MDExOk1lcmdlZEV2ZW50MjYxNjQ1Mjk1NQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616452955", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "merged", + "commit_id": "baeb03370762a645d682dee5bc29dd97709829db", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/baeb03370762a645d682dee5bc29dd97709829db", + "created_at": "2019-09-07T22:49:31Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/163", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/163/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/163/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/163/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/163", + "id": 490688043, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwMzMz", + "number": 163, + "title": "updateContentSquashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:49:28Z", + "updated_at": "2019-09-07T22:49:32Z", + "closed_at": "2019-09-07T22:49:31Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/163", + "html_url": "https://github.com/github-api-test-org/github-api/pull/163", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/163.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/163.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616452954, + "node_id": "MDE1OlJlZmVyZW5jZWRFdmVudDI2MTY0NTI5NTQ=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616452954", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "referenced", + "commit_id": "baeb03370762a645d682dee5bc29dd97709829db", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/baeb03370762a645d682dee5bc29dd97709829db", + "created_at": "2019-09-07T22:49:31Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/163", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/163/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/163/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/163/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/163", + "id": 490688043, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwMzMz", + "number": 163, + "title": "updateContentSquashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:49:28Z", + "updated_at": "2019-09-07T22:49:32Z", + "closed_at": "2019-09-07T22:49:31Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/163", + "html_url": "https://github.com/github-api-test-org/github-api/pull/163", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/163.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/163.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616452924, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1MjkyNA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616452924", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:49:23Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/161", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/161/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/161/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/161/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/161", + "id": 490688036, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwMzI5", + "number": 161, + "title": "queryPullRequestsQualifiedHead_stable", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:49:20Z", + "updated_at": "2019-09-07T22:49:23Z", + "closed_at": "2019-09-07T22:49:23Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/161", + "html_url": "https://github.com/github-api-test-org/github-api/pull/161", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/161.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/161.patch" + }, + "body": null + } + }, + { + "id": 2616452921, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1MjkyMQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616452921", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:49:22Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/162", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/162/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/162/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/162/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/162", + "id": 490688037, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwMzMw", + "number": 162, + "title": "queryPullRequestsQualifiedHead_rc", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:49:21Z", + "updated_at": "2019-09-07T22:49:22Z", + "closed_at": "2019-09-07T22:49:22Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/162", + "html_url": "https://github.com/github-api-test-org/github-api/pull/162", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/162.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/162.patch" + }, + "body": null + } + }, + { + "id": 2616452909, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1MjkwOQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616452909", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:49:18Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/160", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/160/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/160/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/160/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/160", + "id": 490688032, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwMzI2", + "number": 160, + "title": "testPullRequestReviews", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:49:14Z", + "updated_at": "2019-09-07T22:49:18Z", + "closed_at": "2019-09-07T22:49:18Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/160", + "html_url": "https://github.com/github-api-test-org/github-api/pull/160", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/160.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/160.patch" + }, + "body": "## test" + } + }, + { + "id": 2616452302, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1MjMwMg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616452302", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:46:52Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/158", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/158/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/158/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/158/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/158", + "id": 490687857, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwMTk0", + "number": 158, + "title": "queryPullRequestsQualifiedHead_stable", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:46:50Z", + "updated_at": "2019-09-07T22:46:52Z", + "closed_at": "2019-09-07T22:46:52Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/158", + "html_url": "https://github.com/github-api-test-org/github-api/pull/158", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/158.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/158.patch" + }, + "body": null + } + }, + { + "id": 2616452299, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1MjI5OQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616452299", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:46:52Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/159", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/159/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/159/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/159/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/159", + "id": 490687860, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwMTk3", + "number": 159, + "title": "queryPullRequestsQualifiedHead_rc", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:46:51Z", + "updated_at": "2019-09-07T22:46:52Z", + "closed_at": "2019-09-07T22:46:52Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/159", + "html_url": "https://github.com/github-api-test-org/github-api/pull/159", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/159.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/159.patch" + }, + "body": null + } + }, + { + "id": 2616452255, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1MjI1NQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616452255", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:46:39Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/157", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/157/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/157/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/157/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/157", + "id": 490687837, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwMTgw", + "number": 157, + "title": "testPullRequestReviews", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:46:35Z", + "updated_at": "2019-09-07T22:46:39Z", + "closed_at": "2019-09-07T22:46:39Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/157", + "html_url": "https://github.com/github-api-test-org/github-api/pull/157", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/157.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/157.patch" + }, + "body": "## test" + } + }, + { + "id": 2616452012, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1MjAxMg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616452012", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:45:42Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/156", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/156/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/156/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/156/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/156", + "id": 490687771, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwMTM4", + "number": 156, + "title": "getUser", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:45:39Z", + "updated_at": "2019-09-07T22:45:42Z", + "closed_at": "2019-09-07T22:45:42Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/156", + "html_url": "https://github.com/github-api-test-org/github-api/pull/156", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/156.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/156.patch" + }, + "body": "## test" + } + }, + { + "id": 2616451777, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1MTc3Nw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616451777", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:44:42Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/155", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/155/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/155/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/155/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/155", + "id": 490687709, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwMDkz", + "number": 155, + "title": "queryPullRequestsQualifiedHead_rc", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:44:40Z", + "updated_at": "2019-09-07T22:44:42Z", + "closed_at": "2019-09-07T22:44:42Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/155", + "html_url": "https://github.com/github-api-test-org/github-api/pull/155", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/155.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/155.patch" + }, + "body": null + } + }, + { + "id": 2616451775, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1MTc3NQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616451775", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:44:42Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/154", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/154/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/154/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/154/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/154", + "id": 490687708, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwMDky", + "number": 154, + "title": "queryPullRequestsQualifiedHead_stable", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:44:40Z", + "updated_at": "2019-09-07T22:44:42Z", + "closed_at": "2019-09-07T22:44:42Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/154", + "html_url": "https://github.com/github-api-test-org/github-api/pull/154", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/154.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/154.patch" + }, + "body": null + } + }, + { + "id": 2616451708, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1MTcwOA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616451708", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:44:34Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/153", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/153/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/153/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/153/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/153", + "id": 490687694, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwMDgy", + "number": 153, + "title": "testPullRequestReviews", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:44:30Z", + "updated_at": "2019-09-07T22:44:33Z", + "closed_at": "2019-09-07T22:44:33Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/153", + "html_url": "https://github.com/github-api-test-org/github-api/pull/153", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/153.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/153.patch" + }, + "body": "## test" + } + }, + { + "id": 2616450961, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1MDk2MQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616450961", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:42:06Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/151", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/151/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/151/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/151/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/151", + "id": 490687530, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjI5OTc1", + "number": 151, + "title": "queryPullRequestsQualifiedHead_stable", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:42:03Z", + "updated_at": "2019-09-07T22:42:06Z", + "closed_at": "2019-09-07T22:42:06Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/151", + "html_url": "https://github.com/github-api-test-org/github-api/pull/151", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/151.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/151.patch" + }, + "body": null + } + }, + { + "id": 2616450959, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1MDk1OQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616450959", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:42:06Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/152", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/152/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/152/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/152/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/152", + "id": 490687531, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjI5OTc2", + "number": 152, + "title": "queryPullRequestsQualifiedHead_rc", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:42:04Z", + "updated_at": "2019-09-07T22:42:06Z", + "closed_at": "2019-09-07T22:42:06Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/152", + "html_url": "https://github.com/github-api-test-org/github-api/pull/152", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/152.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/152.patch" + }, + "body": null + } + }, + { + "id": 2616450670, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1MDY3MA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616450670", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:41:07Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/150", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/150/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/150/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/150/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/150", + "id": 490687470, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjI5OTM2", + "number": 150, + "title": "testPullRequestReviews", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:41:03Z", + "updated_at": "2019-09-07T22:41:07Z", + "closed_at": "2019-09-07T22:41:07Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/150", + "html_url": "https://github.com/github-api-test-org/github-api/pull/150", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/150.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/150.patch" + }, + "body": "## test" + } + }, + { + "id": 2616449799, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ0OTc5OQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616449799", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:38:11Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/149", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/149/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/149/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/149/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/149", + "id": 490687271, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjI5ODA1", + "number": 149, + "title": "testPullRequestReviews", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:38:07Z", + "updated_at": "2019-09-07T22:38:11Z", + "closed_at": "2019-09-07T22:38:11Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/149", + "html_url": "https://github.com/github-api-test-org/github-api/pull/149", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/149.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/149.patch" + }, + "body": "## test" + } + }, + { + "id": 2616448841, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ0ODg0MQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616448841", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:34:36Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/148", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/148/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/148/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/148/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/148", + "id": 490687031, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjI5NjM0", + "number": 148, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:34:35Z", + "updated_at": "2019-09-07T22:34:36Z", + "closed_at": "2019-09-07T22:34:36Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/148", + "html_url": "https://github.com/github-api-test-org/github-api/pull/148", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/148.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/148.patch" + }, + "body": "## test" + } + }, + { + "id": 2616444870, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ0NDg3MA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616444870", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:20:52Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/147", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/147/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/147/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/147/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/147", + "id": 490686065, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjI4OTk3", + "number": 147, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:20:51Z", + "updated_at": "2019-09-07T22:20:52Z", + "closed_at": "2019-09-07T22:20:52Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/147", + "html_url": "https://github.com/github-api-test-org/github-api/pull/147", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/147.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/147.patch" + }, + "body": "## test" + } + }, + { + "id": 2616441556, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ0MTU1Ng==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616441556", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:10:01Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/146", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/146/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/146/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/146/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/146", + "id": 490685323, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjI4NDk1", + "number": 146, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:10:00Z", + "updated_at": "2019-09-07T22:10:01Z", + "closed_at": "2019-09-07T22:10:01Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/146", + "html_url": "https://github.com/github-api-test-org/github-api/pull/146", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/146.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/146.patch" + }, + "body": "## test" + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-94dd8eff-b6f3-4003-89c9-c97721354a77.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-94dd8eff-b6f3-4003-89c9-c97721354a77.json new file mode 100644 index 0000000000..98e61e3f08 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-94dd8eff-b6f3-4003-89c9-c97721354a77.json @@ -0,0 +1,2656 @@ +[ + { + "id": 2615988967, + "node_id": "MDE1OlJlZmVyZW5jZWRFdmVudDI2MTU5ODg5Njc=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615988967", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "referenced", + "commit_id": "7155970f95dc1e9af20607ac01eb7e9b99f0ae03", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/7155970f95dc1e9af20607ac01eb7e9b99f0ae03", + "created_at": "2019-09-07T04:29:15Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/103", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/103/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/103/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/103/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/103", + "id": 490590087, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY1NjYx", + "number": 103, + "title": "updateContentSquashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:29:13Z", + "updated_at": "2019-09-07T04:29:17Z", + "closed_at": "2019-09-07T04:29:15Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/103", + "html_url": "https://github.com/github-api-test-org/github-api/pull/103", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/103.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/103.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2615988902, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk4ODkwMg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615988902", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:29:06Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/101", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/101/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/101/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/101/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/101", + "id": 490590076, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY1NjUx", + "number": 101, + "title": "queryPullRequestsQualifiedHead_stable", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:29:04Z", + "updated_at": "2019-09-07T04:29:06Z", + "closed_at": "2019-09-07T04:29:06Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/101", + "html_url": "https://github.com/github-api-test-org/github-api/pull/101", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/101.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/101.patch" + }, + "body": null + } + }, + { + "id": 2615988895, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk4ODg5NQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615988895", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:29:06Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/102", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/102/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/102/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/102/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/102", + "id": 490590078, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY1NjUz", + "number": 102, + "title": "queryPullRequestsQualifiedHead_rc", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:29:05Z", + "updated_at": "2019-09-07T04:29:06Z", + "closed_at": "2019-09-07T04:29:06Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/102", + "html_url": "https://github.com/github-api-test-org/github-api/pull/102", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/102.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/102.patch" + }, + "body": null + } + }, + { + "id": 2615988867, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk4ODg2Nw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615988867", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:29:02Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/100", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/100/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/100/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/100/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/100", + "id": 490590073, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY1NjQ4", + "number": 100, + "title": "testPullRequestReviews", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:28:58Z", + "updated_at": "2019-09-07T04:29:02Z", + "closed_at": "2019-09-07T04:29:02Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/100", + "html_url": "https://github.com/github-api-test-org/github-api/pull/100", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/100.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/100.patch" + }, + "body": "## test" + } + }, + { + "id": 2615983693, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk4MzY5Mw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615983693", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:25:09Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/99", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/99/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/99/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/99/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/99", + "id": 490589840, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY1NDc4", + "number": 99, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:25:08Z", + "updated_at": "2019-09-07T04:25:09Z", + "closed_at": "2019-09-07T04:25:09Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/99", + "html_url": "https://github.com/github-api-test-org/github-api/pull/99", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/99.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/99.patch" + }, + "body": "## test" + } + }, + { + "id": 2615983668, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk4MzY2OA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615983668", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:25:06Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/98", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/98/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/98/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/98/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/98", + "id": 490589834, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY1NDc1", + "number": 98, + "title": "setAssignee", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "assignees": [ + { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + } + ], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:25:03Z", + "updated_at": "2019-09-07T04:25:05Z", + "closed_at": "2019-09-07T04:25:05Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/98", + "html_url": "https://github.com/github-api-test-org/github-api/pull/98", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/98.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/98.patch" + }, + "body": "## test" + } + }, + { + "id": 2615983655, + "node_id": "MDEzOkFzc2lnbmVkRXZlbnQyNjE1OTgzNjU1", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615983655", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "assigned", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:25:04Z", + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "assigner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/98", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/98/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/98/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/98/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/98", + "id": 490589834, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY1NDc1", + "number": 98, + "title": "setAssignee", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "assignees": [ + { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + } + ], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:25:03Z", + "updated_at": "2019-09-07T04:25:05Z", + "closed_at": "2019-09-07T04:25:05Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/98", + "html_url": "https://github.com/github-api-test-org/github-api/pull/98", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/98.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/98.patch" + }, + "body": "## test" + } + }, + { + "id": 2615983652, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk4MzY1Mg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615983652", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:25:01Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/97", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/97/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/97/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/97/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/97", + "id": 490589828, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY1NDcw", + "number": 97, + "title": "createPullRequestComment", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2019-09-07T04:24:59Z", + "updated_at": "2019-09-07T04:25:01Z", + "closed_at": "2019-09-07T04:25:01Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/97", + "html_url": "https://github.com/github-api-test-org/github-api/pull/97", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/97.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/97.patch" + }, + "body": "## test" + } + }, + { + "id": 2615983648, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk4MzY0OA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615983648", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:24:57Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/96", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/96/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/96/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/96/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/96", + "id": 490589822, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY1NDY2", + "number": 96, + "title": "queryPullRequestsUnqualifiedHead_rc", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:24:55Z", + "updated_at": "2019-09-07T04:24:57Z", + "closed_at": "2019-09-07T04:24:57Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/96", + "html_url": "https://github.com/github-api-test-org/github-api/pull/96", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/96.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/96.patch" + }, + "body": null + } + }, + { + "id": 2615983647, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk4MzY0Nw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615983647", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:24:57Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/95", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/95/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/95/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/95/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/95", + "id": 490589821, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY1NDY1", + "number": 95, + "title": "queryPullRequestsUnqualifiedHead_stable", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:24:55Z", + "updated_at": "2019-09-07T04:24:57Z", + "closed_at": "2019-09-07T04:24:57Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/95", + "html_url": "https://github.com/github-api-test-org/github-api/pull/95", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/95.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/95.patch" + }, + "body": null + } + }, + { + "id": 2615983629, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk4MzYyOQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615983629", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:24:51Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/94", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/94/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/94/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/94/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/94", + "id": 490589812, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY1NDU2", + "number": 94, + "title": "pullRequestReviewComments", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:24:48Z", + "updated_at": "2019-09-07T04:24:51Z", + "closed_at": "2019-09-07T04:24:51Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/94", + "html_url": "https://github.com/github-api-test-org/github-api/pull/94", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/94.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/94.patch" + }, + "body": "## test" + } + }, + { + "id": 2615983617, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk4MzYxNw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615983617", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:24:47Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/93", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/93/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/93/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/93/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/93", + "id": 490589801, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY1NDUx", + "number": 93, + "title": "mergeCommitSHA", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:24:43Z", + "updated_at": "2019-09-07T04:24:47Z", + "closed_at": "2019-09-07T04:24:46Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/93", + "html_url": "https://github.com/github-api-test-org/github-api/pull/93", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/93.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/93.patch" + }, + "body": "## test" + } + }, + { + "id": 2615983599, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk4MzU5OQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615983599", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:24:41Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/92", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/92/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/92/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/92/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/92", + "id": 490589796, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY1NDQ4", + "number": 92, + "title": "setLabels", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 1541702441, + "node_id": "MDU6TGFiZWwxNTQxNzAyNDQx", + "url": "https://api.github.com/repos/github-api-test-org/github-api/labels/setLabels_label_name", + "name": "setLabels_label_name", + "color": "ededed", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:24:39Z", + "updated_at": "2019-09-07T04:24:41Z", + "closed_at": "2019-09-07T04:24:41Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/92", + "html_url": "https://github.com/github-api-test-org/github-api/pull/92", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/92.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/92.patch" + }, + "body": "## test" + } + }, + { + "id": 2615983592, + "node_id": "MDEyOkxhYmVsZWRFdmVudDI2MTU5ODM1OTI=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615983592", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "labeled", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:24:40Z", + "label": { + "name": "setLabels_label_name", + "color": "ededed" + }, + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/92", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/92/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/92/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/92/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/92", + "id": 490589796, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY1NDQ4", + "number": 92, + "title": "setLabels", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 1541702441, + "node_id": "MDU6TGFiZWwxNTQxNzAyNDQx", + "url": "https://api.github.com/repos/github-api-test-org/github-api/labels/setLabels_label_name", + "name": "setLabels_label_name", + "color": "ededed", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:24:39Z", + "updated_at": "2019-09-07T04:24:41Z", + "closed_at": "2019-09-07T04:24:41Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/92", + "html_url": "https://github.com/github-api-test-org/github-api/pull/92", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/92.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/92.patch" + }, + "body": "## test" + } + }, + { + "id": 2615983579, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk4MzU3OQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615983579", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:24:38Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/91", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/91/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/91/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/91/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/91", + "id": 490589794, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY1NDQ2", + "number": 91, + "title": "getUser", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:24:35Z", + "updated_at": "2019-09-07T04:24:38Z", + "closed_at": "2019-09-07T04:24:38Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/91", + "html_url": "https://github.com/github-api-test-org/github-api/pull/91", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/91.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/91.patch" + }, + "body": "## test" + } + }, + { + "id": 2615983553, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk4MzU1Mw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615983553", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:24:34Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/90", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/90/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/90/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/90/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/90", + "id": 490589787, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY1NDQw", + "number": 90, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:24:33Z", + "updated_at": "2019-09-07T04:24:34Z", + "closed_at": "2019-09-07T04:24:34Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/90", + "html_url": "https://github.com/github-api-test-org/github-api/pull/90", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/90.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/90.patch" + }, + "body": "## test" + } + }, + { + "id": 2615983536, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk4MzUzNg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615983536", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:24:29Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/88", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/88/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/88/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/88/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/88", + "id": 490589779, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY1NDMz", + "number": 88, + "title": "queryPullRequestsQualifiedHead_stable", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:24:26Z", + "updated_at": "2019-09-07T04:24:29Z", + "closed_at": "2019-09-07T04:24:29Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/88", + "html_url": "https://github.com/github-api-test-org/github-api/pull/88", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/88.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/88.patch" + }, + "body": null + } + }, + { + "id": 2615983533, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk4MzUzMw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615983533", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:24:29Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/89", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/89/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/89/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/89/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/89", + "id": 490589783, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY1NDM2", + "number": 89, + "title": "queryPullRequestsQualifiedHead_rc", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:24:27Z", + "updated_at": "2019-09-07T04:24:29Z", + "closed_at": "2019-09-07T04:24:29Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/89", + "html_url": "https://github.com/github-api-test-org/github-api/pull/89", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/89.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/89.patch" + }, + "body": null + } + }, + { + "id": 2615983522, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk4MzUyMg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615983522", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:24:25Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/87", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/87/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/87/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/87/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/87", + "id": 490589775, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY1NDMw", + "number": 87, + "title": "testPullRequestReviews", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:24:21Z", + "updated_at": "2019-09-07T04:24:25Z", + "closed_at": "2019-09-07T04:24:25Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/87", + "html_url": "https://github.com/github-api-test-org/github-api/pull/87", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/87.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/87.patch" + }, + "body": "## test" + } + }, + { + "id": 2615979460, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3OTQ2MA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615979460", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:12:18Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/86", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/86/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/86/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/86/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/86", + "id": 490588844, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0ODIz", + "number": 86, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:12:16Z", + "updated_at": "2019-09-07T04:12:17Z", + "closed_at": "2019-09-07T04:12:17Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/86", + "html_url": "https://github.com/github-api-test-org/github-api/pull/86", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/86.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/86.patch" + }, + "body": "## test" + } + }, + { + "id": 2615979429, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3OTQyOQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615979429", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:12:15Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/85", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/85/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/85/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/85/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/85", + "id": 490588839, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0ODIx", + "number": 85, + "title": "setAssignee", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "assignees": [ + { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + } + ], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:12:13Z", + "updated_at": "2019-09-07T04:12:14Z", + "closed_at": "2019-09-07T04:12:14Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/85", + "html_url": "https://github.com/github-api-test-org/github-api/pull/85", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/85.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/85.patch" + }, + "body": "## test" + } + }, + { + "id": 2615979427, + "node_id": "MDEzOkFzc2lnbmVkRXZlbnQyNjE1OTc5NDI3", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615979427", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "assigned", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:12:13Z", + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "assigner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/85", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/85/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/85/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/85/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/85", + "id": 490588839, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0ODIx", + "number": 85, + "title": "setAssignee", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "assignees": [ + { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + } + ], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:12:13Z", + "updated_at": "2019-09-07T04:12:14Z", + "closed_at": "2019-09-07T04:12:14Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/85", + "html_url": "https://github.com/github-api-test-org/github-api/pull/85", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/85.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/85.patch" + }, + "body": "## test" + } + }, + { + "id": 2615979402, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3OTQwMg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615979402", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:12:11Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/84", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/84/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/84/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/84/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/84", + "id": 490588831, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0ODE3", + "number": 84, + "title": "createPullRequestComment", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2019-09-07T04:12:09Z", + "updated_at": "2019-09-07T04:12:11Z", + "closed_at": "2019-09-07T04:12:11Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/84", + "html_url": "https://github.com/github-api-test-org/github-api/pull/84", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/84.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/84.patch" + }, + "body": "## test" + } + }, + { + "id": 2615979377, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3OTM3Nw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615979377", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:12:08Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/82", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/82/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/82/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/82/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/82", + "id": 490588822, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0ODEw", + "number": 82, + "title": "queryPullRequestsUnqualifiedHead_stable", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:12:05Z", + "updated_at": "2019-09-07T04:12:08Z", + "closed_at": "2019-09-07T04:12:08Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/82", + "html_url": "https://github.com/github-api-test-org/github-api/pull/82", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/82.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/82.patch" + }, + "body": null + } + }, + { + "id": 2615979376, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3OTM3Ng==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615979376", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:12:07Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/83", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/83/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/83/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/83/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/83", + "id": 490588824, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0ODEy", + "number": 83, + "title": "queryPullRequestsUnqualifiedHead_rc", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:12:06Z", + "updated_at": "2019-09-07T04:12:07Z", + "closed_at": "2019-09-07T04:12:07Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/83", + "html_url": "https://github.com/github-api-test-org/github-api/pull/83", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/83.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/83.patch" + }, + "body": null + } + }, + { + "id": 2615979339, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3OTMzOQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615979339", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:12:01Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/81", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/81/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/81/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/81/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/81", + "id": 490588815, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0ODAz", + "number": 81, + "title": "pullRequestReviewComments", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:11:57Z", + "updated_at": "2019-09-07T04:12:01Z", + "closed_at": "2019-09-07T04:12:01Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/81", + "html_url": "https://github.com/github-api-test-org/github-api/pull/81", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/81.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/81.patch" + }, + "body": "## test" + } + }, + { + "id": 2615979310, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3OTMxMA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615979310", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:11:56Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/80", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/80/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/80/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/80/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/80", + "id": 490588801, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0Nzkw", + "number": 80, + "title": "mergeCommitSHA", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:11:52Z", + "updated_at": "2019-09-07T04:11:56Z", + "closed_at": "2019-09-07T04:11:56Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/80", + "html_url": "https://github.com/github-api-test-org/github-api/pull/80", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/80.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/80.patch" + }, + "body": "## test" + } + }, + { + "id": 2615979282, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3OTI4Mg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615979282", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:11:51Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/79", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/79/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/79/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/79/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/79", + "id": 490588792, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0Nzgz", + "number": 79, + "title": "setLabels", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 1541702441, + "node_id": "MDU6TGFiZWwxNTQxNzAyNDQx", + "url": "https://api.github.com/repos/github-api-test-org/github-api/labels/setLabels_label_name", + "name": "setLabels_label_name", + "color": "ededed", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:11:49Z", + "updated_at": "2019-09-07T04:11:51Z", + "closed_at": "2019-09-07T04:11:51Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/79", + "html_url": "https://github.com/github-api-test-org/github-api/pull/79", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/79.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/79.patch" + }, + "body": "## test" + } + }, + { + "id": 2615979268, + "node_id": "MDEyOkxhYmVsZWRFdmVudDI2MTU5NzkyNjg=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615979268", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "labeled", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:11:49Z", + "label": { + "name": "setLabels_label_name", + "color": "ededed" + }, + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/79", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/79/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/79/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/79/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/79", + "id": 490588792, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0Nzgz", + "number": 79, + "title": "setLabels", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 1541702441, + "node_id": "MDU6TGFiZWwxNTQxNzAyNDQx", + "url": "https://api.github.com/repos/github-api-test-org/github-api/labels/setLabels_label_name", + "name": "setLabels_label_name", + "color": "ededed", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:11:49Z", + "updated_at": "2019-09-07T04:11:51Z", + "closed_at": "2019-09-07T04:11:51Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/79", + "html_url": "https://github.com/github-api-test-org/github-api/pull/79", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/79.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/79.patch" + }, + "body": "## test" + } + }, + { + "id": 2615979257, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3OTI1Nw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615979257", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:11:47Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/78", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/78/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/78/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/78/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/78", + "id": 490588786, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0Nzc5", + "number": 78, + "title": "getUser", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:11:45Z", + "updated_at": "2019-09-07T04:11:47Z", + "closed_at": "2019-09-07T04:11:47Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/78", + "html_url": "https://github.com/github-api-test-org/github-api/pull/78", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/78.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/78.patch" + }, + "body": "## test" + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-9c193fd6-e6f6-4949-8414-cf031e70f82e.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-9c193fd6-e6f6-4949-8414-cf031e70f82e.json new file mode 100644 index 0000000000..7bb1ee9b61 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-9c193fd6-e6f6-4949-8414-cf031e70f82e.json @@ -0,0 +1,2514 @@ +[ + { + "id": 2616580843, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU4MDg0Mw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616580843", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T06:20:51Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/253", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/253/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/253/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/253/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/253", + "id": 490716080, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ5MTgx", + "number": 253, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T06:20:49Z", + "updated_at": "2019-09-08T06:27:56Z", + "closed_at": "2019-09-08T06:20:51Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/253", + "html_url": "https://github.com/github-api-test-org/github-api/pull/253", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/253.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/253.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616580842, + "node_id": "MDExOk1lcmdlZEV2ZW50MjYxNjU4MDg0Mg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616580842", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "merged", + "commit_id": "5c3b1ddd0395cc79bd87a955666a1b04990baca5", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/5c3b1ddd0395cc79bd87a955666a1b04990baca5", + "created_at": "2019-09-08T06:20:51Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/253", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/253/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/253/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/253/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/253", + "id": 490716080, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ5MTgx", + "number": 253, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T06:20:49Z", + "updated_at": "2019-09-08T06:27:56Z", + "closed_at": "2019-09-08T06:20:51Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/253", + "html_url": "https://github.com/github-api-test-org/github-api/pull/253", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/253.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/253.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616580841, + "node_id": "MDE1OlJlZmVyZW5jZWRFdmVudDI2MTY1ODA4NDE=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616580841", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "referenced", + "commit_id": "5c3b1ddd0395cc79bd87a955666a1b04990baca5", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/5c3b1ddd0395cc79bd87a955666a1b04990baca5", + "created_at": "2019-09-08T06:20:51Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/253", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/253/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/253/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/253/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/253", + "id": 490716080, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ5MTgx", + "number": 253, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T06:20:49Z", + "updated_at": "2019-09-08T06:27:56Z", + "closed_at": "2019-09-08T06:20:51Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/253", + "html_url": "https://github.com/github-api-test-org/github-api/pull/253", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/253.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/253.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616580460, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU4MDQ2MA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616580460", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T06:19:44Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/252", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/252/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/252/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/252/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/252", + "id": 490716006, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ5MTI4", + "number": 252, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T06:19:43Z", + "updated_at": "2019-09-08T06:19:44Z", + "closed_at": "2019-09-08T06:19:44Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/252", + "html_url": "https://github.com/github-api-test-org/github-api/pull/252", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/252.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/252.patch" + }, + "body": "## test" + } + }, + { + "id": 2616580320, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU4MDMyMA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616580320", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T06:19:11Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/251", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/251/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/251/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/251/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/251", + "id": 490715981, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ5MTA3", + "number": 251, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T06:19:10Z", + "updated_at": "2019-09-08T06:19:11Z", + "closed_at": "2019-09-08T06:19:11Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/251", + "html_url": "https://github.com/github-api-test-org/github-api/pull/251", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/251.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/251.patch" + }, + "body": "## test" + } + }, + { + "id": 2616579836, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU3OTgzNg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616579836", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T06:17:22Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/250", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/250/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/250/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/250/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/250", + "id": 490715869, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ5MDIz", + "number": 250, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T06:17:21Z", + "updated_at": "2019-09-08T06:17:22Z", + "closed_at": "2019-09-08T06:17:22Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/250", + "html_url": "https://github.com/github-api-test-org/github-api/pull/250", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/250.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/250.patch" + }, + "body": "## test" + } + }, + { + "id": 2616578453, + "node_id": "MDE5OkhlYWRSZWZEZWxldGVkRXZlbnQyNjE2NTc4NDUz", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616578453", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "head_ref_deleted", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T06:12:46Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/249", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/249/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/249/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/249/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/249", + "id": 490715559, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ4ODAy", + "number": 249, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T06:12:42Z", + "updated_at": "2019-09-08T06:12:46Z", + "closed_at": "2019-09-08T06:12:45Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/249", + "html_url": "https://github.com/github-api-test-org/github-api/pull/249", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/249.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/249.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616578443, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU3ODQ0Mw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616578443", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T06:12:45Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/249", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/249/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/249/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/249/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/249", + "id": 490715559, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ4ODAy", + "number": 249, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T06:12:42Z", + "updated_at": "2019-09-08T06:12:46Z", + "closed_at": "2019-09-08T06:12:45Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/249", + "html_url": "https://github.com/github-api-test-org/github-api/pull/249", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/249.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/249.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616578442, + "node_id": "MDExOk1lcmdlZEV2ZW50MjYxNjU3ODQ0Mg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616578442", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "merged", + "commit_id": "282504b288e9fd86b81c499e706748d37d6fcb61", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/282504b288e9fd86b81c499e706748d37d6fcb61", + "created_at": "2019-09-08T06:12:45Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/249", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/249/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/249/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/249/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/249", + "id": 490715559, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ4ODAy", + "number": 249, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T06:12:42Z", + "updated_at": "2019-09-08T06:12:46Z", + "closed_at": "2019-09-08T06:12:45Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/249", + "html_url": "https://github.com/github-api-test-org/github-api/pull/249", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/249.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/249.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616578441, + "node_id": "MDE1OlJlZmVyZW5jZWRFdmVudDI2MTY1Nzg0NDE=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616578441", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "referenced", + "commit_id": "282504b288e9fd86b81c499e706748d37d6fcb61", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/282504b288e9fd86b81c499e706748d37d6fcb61", + "created_at": "2019-09-08T06:12:45Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/249", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/249/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/249/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/249/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/249", + "id": 490715559, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ4ODAy", + "number": 249, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T06:12:42Z", + "updated_at": "2019-09-08T06:12:46Z", + "closed_at": "2019-09-08T06:12:45Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/249", + "html_url": "https://github.com/github-api-test-org/github-api/pull/249", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/249.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/249.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616574853, + "node_id": "MDE5OkhlYWRSZWZEZWxldGVkRXZlbnQyNjE2NTc0ODUz", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616574853", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "head_ref_deleted", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T06:00:56Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/248", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/248/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/248/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/248/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/248", + "id": 490714798, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ4Mjgy", + "number": 248, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T06:00:52Z", + "updated_at": "2019-09-08T06:00:56Z", + "closed_at": "2019-09-08T06:00:55Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/248", + "html_url": "https://github.com/github-api-test-org/github-api/pull/248", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/248.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/248.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616574843, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU3NDg0Mw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616574843", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T06:00:55Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/248", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/248/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/248/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/248/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/248", + "id": 490714798, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ4Mjgy", + "number": 248, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T06:00:52Z", + "updated_at": "2019-09-08T06:00:56Z", + "closed_at": "2019-09-08T06:00:55Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/248", + "html_url": "https://github.com/github-api-test-org/github-api/pull/248", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/248.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/248.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616574841, + "node_id": "MDExOk1lcmdlZEV2ZW50MjYxNjU3NDg0MQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616574841", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "merged", + "commit_id": "4f863b31a9bb101530fb560f1f0ed417de2266ca", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/4f863b31a9bb101530fb560f1f0ed417de2266ca", + "created_at": "2019-09-08T06:00:54Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/248", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/248/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/248/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/248/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/248", + "id": 490714798, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ4Mjgy", + "number": 248, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T06:00:52Z", + "updated_at": "2019-09-08T06:00:56Z", + "closed_at": "2019-09-08T06:00:55Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/248", + "html_url": "https://github.com/github-api-test-org/github-api/pull/248", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/248.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/248.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616574839, + "node_id": "MDE1OlJlZmVyZW5jZWRFdmVudDI2MTY1NzQ4Mzk=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616574839", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "referenced", + "commit_id": "4f863b31a9bb101530fb560f1f0ed417de2266ca", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/4f863b31a9bb101530fb560f1f0ed417de2266ca", + "created_at": "2019-09-08T06:00:54Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/248", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/248/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/248/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/248/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/248", + "id": 490714798, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ4Mjgy", + "number": 248, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T06:00:52Z", + "updated_at": "2019-09-08T06:00:56Z", + "closed_at": "2019-09-08T06:00:55Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/248", + "html_url": "https://github.com/github-api-test-org/github-api/pull/248", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/248.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/248.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616569401, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU2OTQwMQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616569401", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T05:43:35Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/247", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/247/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/247/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/247/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/247", + "id": 490713719, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ3NTU2", + "number": 247, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T05:43:34Z", + "updated_at": "2019-09-08T05:43:35Z", + "closed_at": "2019-09-08T05:43:35Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/247", + "html_url": "https://github.com/github-api-test-org/github-api/pull/247", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/247.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/247.patch" + }, + "body": "## test" + } + }, + { + "id": 2616569391, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU2OTM5MQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616569391", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T05:43:33Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/246", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/246/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/246/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/246/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/246", + "id": 490713713, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ3NTUz", + "number": 246, + "title": "setAssignee", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "assignees": [ + { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + } + ], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T05:43:31Z", + "updated_at": "2019-09-08T05:43:33Z", + "closed_at": "2019-09-08T05:43:33Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/246", + "html_url": "https://github.com/github-api-test-org/github-api/pull/246", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/246.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/246.patch" + }, + "body": "## test" + } + }, + { + "id": 2616569387, + "node_id": "MDEzOkFzc2lnbmVkRXZlbnQyNjE2NTY5Mzg3", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616569387", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "assigned", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T05:43:31Z", + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "assigner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/246", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/246/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/246/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/246/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/246", + "id": 490713713, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ3NTUz", + "number": 246, + "title": "setAssignee", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "assignees": [ + { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + } + ], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T05:43:31Z", + "updated_at": "2019-09-08T05:43:33Z", + "closed_at": "2019-09-08T05:43:33Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/246", + "html_url": "https://github.com/github-api-test-org/github-api/pull/246", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/246.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/246.patch" + }, + "body": "## test" + } + }, + { + "id": 2616569377, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU2OTM3Nw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616569377", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T05:43:29Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/245", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/245/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/245/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/245/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/245", + "id": 490713704, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ3NTQ1", + "number": 245, + "title": "createPullRequestComment", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2019-09-08T05:43:28Z", + "updated_at": "2019-09-08T05:43:29Z", + "closed_at": "2019-09-08T05:43:29Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/245", + "html_url": "https://github.com/github-api-test-org/github-api/pull/245", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/245.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/245.patch" + }, + "body": "## test" + } + }, + { + "id": 2616569367, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU2OTM2Nw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616569367", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T05:43:26Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/243", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/243/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/243/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/243/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/243", + "id": 490713699, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ3NTQx", + "number": 243, + "title": "queryPullRequestsUnqualifiedHead_stable", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T05:43:23Z", + "updated_at": "2019-09-08T05:43:26Z", + "closed_at": "2019-09-08T05:43:26Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/243", + "html_url": "https://github.com/github-api-test-org/github-api/pull/243", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/243.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/243.patch" + }, + "body": null + } + }, + { + "id": 2616569366, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU2OTM2Ng==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616569366", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T05:43:26Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/244", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/244/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/244/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/244/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/244", + "id": 490713700, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ3NTQy", + "number": 244, + "title": "queryPullRequestsUnqualifiedHead_rc", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T05:43:24Z", + "updated_at": "2019-09-08T05:43:25Z", + "closed_at": "2019-09-08T05:43:25Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/244", + "html_url": "https://github.com/github-api-test-org/github-api/pull/244", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/244.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/244.patch" + }, + "body": null + } + }, + { + "id": 2616569356, + "node_id": "MDE5OkhlYWRSZWZEZWxldGVkRXZlbnQyNjE2NTY5MzU2", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616569356", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "head_ref_deleted", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T05:43:22Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/242", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/242/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/242/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/242/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/242", + "id": 490713692, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ3NTM2", + "number": 242, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T05:43:18Z", + "updated_at": "2019-09-08T05:43:22Z", + "closed_at": "2019-09-08T05:43:21Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/242", + "html_url": "https://github.com/github-api-test-org/github-api/pull/242", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/242.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/242.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616569342, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU2OTM0Mg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616569342", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T05:43:21Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/242", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/242/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/242/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/242/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/242", + "id": 490713692, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ3NTM2", + "number": 242, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T05:43:18Z", + "updated_at": "2019-09-08T05:43:22Z", + "closed_at": "2019-09-08T05:43:21Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/242", + "html_url": "https://github.com/github-api-test-org/github-api/pull/242", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/242.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/242.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616569338, + "node_id": "MDExOk1lcmdlZEV2ZW50MjYxNjU2OTMzOA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616569338", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "merged", + "commit_id": "a5a64cd00e921fbde33aefc38a95c200563c3aa1", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/a5a64cd00e921fbde33aefc38a95c200563c3aa1", + "created_at": "2019-09-08T05:43:21Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/242", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/242/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/242/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/242/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/242", + "id": 490713692, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ3NTM2", + "number": 242, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T05:43:18Z", + "updated_at": "2019-09-08T05:43:22Z", + "closed_at": "2019-09-08T05:43:21Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/242", + "html_url": "https://github.com/github-api-test-org/github-api/pull/242", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/242.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/242.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616569337, + "node_id": "MDE1OlJlZmVyZW5jZWRFdmVudDI2MTY1NjkzMzc=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616569337", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "referenced", + "commit_id": "a5a64cd00e921fbde33aefc38a95c200563c3aa1", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/a5a64cd00e921fbde33aefc38a95c200563c3aa1", + "created_at": "2019-09-08T05:43:21Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/242", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/242/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/242/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/242/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/242", + "id": 490713692, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ3NTM2", + "number": 242, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T05:43:18Z", + "updated_at": "2019-09-08T05:43:22Z", + "closed_at": "2019-09-08T05:43:21Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/242", + "html_url": "https://github.com/github-api-test-org/github-api/pull/242", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/242.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/242.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616569293, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU2OTI5Mw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616569293", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T05:43:13Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/241", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/241/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/241/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/241/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/241", + "id": 490713680, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ3NTI4", + "number": 241, + "title": "pullRequestReviewComments", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T05:43:10Z", + "updated_at": "2019-09-08T05:43:13Z", + "closed_at": "2019-09-08T05:43:13Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/241", + "html_url": "https://github.com/github-api-test-org/github-api/pull/241", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/241.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/241.patch" + }, + "body": "## test" + } + }, + { + "id": 2616569271, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU2OTI3MQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616569271", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T05:43:08Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/240", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/240/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/240/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/240/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/240", + "id": 490713672, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ3NTIz", + "number": 240, + "title": "mergeCommitSHA", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T05:43:04Z", + "updated_at": "2019-09-08T05:43:08Z", + "closed_at": "2019-09-08T05:43:08Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/240", + "html_url": "https://github.com/github-api-test-org/github-api/pull/240", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/240.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/240.patch" + }, + "body": "## test" + } + }, + { + "id": 2616569241, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU2OTI0MQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616569241", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T05:43:03Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/239", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/239/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/239/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/239/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/239", + "id": 490713664, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ3NTE2", + "number": 239, + "title": "setLabels", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 1541702441, + "node_id": "MDU6TGFiZWwxNTQxNzAyNDQx", + "url": "https://api.github.com/repos/github-api-test-org/github-api/labels/setLabels_label_name", + "name": "setLabels_label_name", + "color": "ededed", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T05:43:00Z", + "updated_at": "2019-09-08T05:43:03Z", + "closed_at": "2019-09-08T05:43:03Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/239", + "html_url": "https://github.com/github-api-test-org/github-api/pull/239", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/239.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/239.patch" + }, + "body": "## test" + } + }, + { + "id": 2616569234, + "node_id": "MDEyOkxhYmVsZWRFdmVudDI2MTY1NjkyMzQ=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616569234", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "labeled", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T05:43:00Z", + "label": { + "name": "setLabels_label_name", + "color": "ededed" + }, + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/239", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/239/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/239/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/239/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/239", + "id": 490713664, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ3NTE2", + "number": 239, + "title": "setLabels", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 1541702441, + "node_id": "MDU6TGFiZWwxNTQxNzAyNDQx", + "url": "https://api.github.com/repos/github-api-test-org/github-api/labels/setLabels_label_name", + "name": "setLabels_label_name", + "color": "ededed", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T05:43:00Z", + "updated_at": "2019-09-08T05:43:03Z", + "closed_at": "2019-09-08T05:43:03Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/239", + "html_url": "https://github.com/github-api-test-org/github-api/pull/239", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/239.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/239.patch" + }, + "body": "## test" + } + }, + { + "id": 2616569227, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU2OTIyNw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616569227", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T05:42:58Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/238", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/238/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/238/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/238/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/238", + "id": 490713663, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ3NTE1", + "number": 238, + "title": "getUser", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T05:42:55Z", + "updated_at": "2019-09-08T05:42:58Z", + "closed_at": "2019-09-08T05:42:58Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/238", + "html_url": "https://github.com/github-api-test-org/github-api/pull/238", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/238.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/238.patch" + }, + "body": "## test" + } + }, + { + "id": 2616569214, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU2OTIxNA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616569214", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T05:42:54Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/237", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/237/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/237/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/237/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/237", + "id": 490713661, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ3NTEz", + "number": 237, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T05:42:53Z", + "updated_at": "2019-09-08T05:42:54Z", + "closed_at": "2019-09-08T05:42:54Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/237", + "html_url": "https://github.com/github-api-test-org/github-api/pull/237", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/237.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/237.patch" + }, + "body": "## test" + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-b1ad56d6-c0c7-4679-a0dd-5a6c94eb84b1.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-b1ad56d6-c0c7-4679-a0dd-5a6c94eb84b1.json new file mode 100644 index 0000000000..d81daeffb6 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-b1ad56d6-c0c7-4679-a0dd-5a6c94eb84b1.json @@ -0,0 +1,2656 @@ +[ + { + "id": 2615979229, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3OTIyOQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615979229", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:11:43Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/77", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/77/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/77/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/77/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/77", + "id": 490588781, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0Nzc2", + "number": 77, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:11:42Z", + "updated_at": "2019-09-07T04:11:43Z", + "closed_at": "2019-09-07T04:11:43Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/77", + "html_url": "https://github.com/github-api-test-org/github-api/pull/77", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/77.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/77.patch" + }, + "body": "## test" + } + }, + { + "id": 2615979184, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3OTE4NA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615979184", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:11:38Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/75", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/75/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/75/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/75/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/75", + "id": 490588772, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0NzY4", + "number": 75, + "title": "queryPullRequestsQualifiedHead_stable", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:11:35Z", + "updated_at": "2019-09-07T04:11:38Z", + "closed_at": "2019-09-07T04:11:38Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/75", + "html_url": "https://github.com/github-api-test-org/github-api/pull/75", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/75.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/75.patch" + }, + "body": null + } + }, + { + "id": 2615979179, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3OTE3OQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615979179", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:11:38Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/76", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/76/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/76/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/76/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/76", + "id": 490588773, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0NzY5", + "number": 76, + "title": "queryPullRequestsQualifiedHead_rc", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:11:36Z", + "updated_at": "2019-09-07T04:11:38Z", + "closed_at": "2019-09-07T04:11:38Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/76", + "html_url": "https://github.com/github-api-test-org/github-api/pull/76", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/76.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/76.patch" + }, + "body": null + } + }, + { + "id": 2615979148, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3OTE0OA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615979148", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:11:34Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/74", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/74/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/74/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/74/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/74", + "id": 490588760, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0NzU5", + "number": 74, + "title": "testPullRequestReviews", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:11:30Z", + "updated_at": "2019-09-07T04:11:34Z", + "closed_at": "2019-09-07T04:11:34Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/74", + "html_url": "https://github.com/github-api-test-org/github-api/pull/74", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/74.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/74.patch" + }, + "body": "## test" + } + }, + { + "id": 2615977722, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3NzcyMg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615977722", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:07:20Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/73", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/73/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/73/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/73/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/73", + "id": 490588408, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0NTIw", + "number": 73, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:07:19Z", + "updated_at": "2019-09-07T04:07:20Z", + "closed_at": "2019-09-07T04:07:20Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/73", + "html_url": "https://github.com/github-api-test-org/github-api/pull/73", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/73.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/73.patch" + }, + "body": "## test" + } + }, + { + "id": 2615977710, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3NzcxMA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615977710", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:07:17Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/72", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/72/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/72/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/72/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/72", + "id": 490588405, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0NTE3", + "number": 72, + "title": "setAssignee", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "assignees": [ + { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + } + ], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:07:15Z", + "updated_at": "2019-09-07T04:07:17Z", + "closed_at": "2019-09-07T04:07:17Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/72", + "html_url": "https://github.com/github-api-test-org/github-api/pull/72", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/72.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/72.patch" + }, + "body": "## test" + } + }, + { + "id": 2615977698, + "node_id": "MDEzOkFzc2lnbmVkRXZlbnQyNjE1OTc3Njk4", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615977698", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "assigned", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:07:16Z", + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "assigner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/72", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/72/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/72/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/72/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/72", + "id": 490588405, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0NTE3", + "number": 72, + "title": "setAssignee", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "assignees": [ + { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + } + ], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:07:15Z", + "updated_at": "2019-09-07T04:07:17Z", + "closed_at": "2019-09-07T04:07:17Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/72", + "html_url": "https://github.com/github-api-test-org/github-api/pull/72", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/72.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/72.patch" + }, + "body": "## test" + } + }, + { + "id": 2615977678, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3NzY3OA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615977678", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:07:13Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/71", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/71/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/71/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/71/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/71", + "id": 490588400, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0NTEz", + "number": 71, + "title": "createPullRequestComment", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2019-09-07T04:07:12Z", + "updated_at": "2019-09-07T04:07:13Z", + "closed_at": "2019-09-07T04:07:13Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/71", + "html_url": "https://github.com/github-api-test-org/github-api/pull/71", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/71.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/71.patch" + }, + "body": "## test" + } + }, + { + "id": 2615977659, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3NzY1OQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615977659", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:07:11Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/69", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/69/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/69/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/69/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/69", + "id": 490588394, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0NTA4", + "number": 69, + "title": "queryPullRequestsUnqualifiedHead_stable", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:07:08Z", + "updated_at": "2019-09-07T04:07:11Z", + "closed_at": "2019-09-07T04:07:11Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/69", + "html_url": "https://github.com/github-api-test-org/github-api/pull/69", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/69.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/69.patch" + }, + "body": null + } + }, + { + "id": 2615977657, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3NzY1Nw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615977657", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:07:10Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/70", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/70/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/70/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/70/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/70", + "id": 490588396, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0NTA5", + "number": 70, + "title": "queryPullRequestsUnqualifiedHead_rc", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:07:09Z", + "updated_at": "2019-09-07T04:07:10Z", + "closed_at": "2019-09-07T04:07:10Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/70", + "html_url": "https://github.com/github-api-test-org/github-api/pull/70", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/70.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/70.patch" + }, + "body": null + } + }, + { + "id": 2615977615, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3NzYxNQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615977615", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:07:05Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/68", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/68/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/68/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/68/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/68", + "id": 490588385, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0NTAx", + "number": 68, + "title": "pullRequestReviewComments", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:07:03Z", + "updated_at": "2019-09-07T04:07:05Z", + "closed_at": "2019-09-07T04:07:05Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/68", + "html_url": "https://github.com/github-api-test-org/github-api/pull/68", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/68.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/68.patch" + }, + "body": "## test" + } + }, + { + "id": 2615977601, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3NzYwMQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615977601", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:07:01Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/67", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/67/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/67/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/67/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/67", + "id": 490588382, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0NDk4", + "number": 67, + "title": "mergeCommitSHA", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:06:58Z", + "updated_at": "2019-09-07T04:07:01Z", + "closed_at": "2019-09-07T04:07:01Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/67", + "html_url": "https://github.com/github-api-test-org/github-api/pull/67", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/67.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/67.patch" + }, + "body": "## test" + } + }, + { + "id": 2615977576, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3NzU3Ng==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615977576", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:06:56Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/66", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/66/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/66/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/66/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/66", + "id": 490588375, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0NDkz", + "number": 66, + "title": "setLabels", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 1541702441, + "node_id": "MDU6TGFiZWwxNTQxNzAyNDQx", + "url": "https://api.github.com/repos/github-api-test-org/github-api/labels/setLabels_label_name", + "name": "setLabels_label_name", + "color": "ededed", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:06:54Z", + "updated_at": "2019-09-07T04:06:56Z", + "closed_at": "2019-09-07T04:06:56Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/66", + "html_url": "https://github.com/github-api-test-org/github-api/pull/66", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/66.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/66.patch" + }, + "body": "## test" + } + }, + { + "id": 2615977568, + "node_id": "MDEyOkxhYmVsZWRFdmVudDI2MTU5Nzc1Njg=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615977568", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "labeled", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:06:55Z", + "label": { + "name": "setLabels_label_name", + "color": "ededed" + }, + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/66", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/66/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/66/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/66/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/66", + "id": 490588375, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0NDkz", + "number": 66, + "title": "setLabels", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 1541702441, + "node_id": "MDU6TGFiZWwxNTQxNzAyNDQx", + "url": "https://api.github.com/repos/github-api-test-org/github-api/labels/setLabels_label_name", + "name": "setLabels_label_name", + "color": "ededed", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:06:54Z", + "updated_at": "2019-09-07T04:06:56Z", + "closed_at": "2019-09-07T04:06:56Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/66", + "html_url": "https://github.com/github-api-test-org/github-api/pull/66", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/66.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/66.patch" + }, + "body": "## test" + } + }, + { + "id": 2615977559, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3NzU1OQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615977559", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:06:53Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/65", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/65/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/65/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/65/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/65", + "id": 490588369, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0NDg4", + "number": 65, + "title": "getUser", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:06:50Z", + "updated_at": "2019-09-07T04:06:53Z", + "closed_at": "2019-09-07T04:06:53Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/65", + "html_url": "https://github.com/github-api-test-org/github-api/pull/65", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/65.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/65.patch" + }, + "body": "## test" + } + }, + { + "id": 2615977535, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3NzUzNQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615977535", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:06:49Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/64", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/64/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/64/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/64/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/64", + "id": 490588363, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0NDg0", + "number": 64, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:06:48Z", + "updated_at": "2019-09-07T04:06:49Z", + "closed_at": "2019-09-07T04:06:49Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/64", + "html_url": "https://github.com/github-api-test-org/github-api/pull/64", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/64.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/64.patch" + }, + "body": "## test" + } + }, + { + "id": 2615977446, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3NzQ0Ng==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615977446", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:06:45Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/63", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/63/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/63/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/63/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/63", + "id": 490588352, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0NDc3", + "number": 63, + "title": "queryPullRequestsQualifiedHead_rc", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:06:42Z", + "updated_at": "2019-09-07T04:06:45Z", + "closed_at": "2019-09-07T04:06:45Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/63", + "html_url": "https://github.com/github-api-test-org/github-api/pull/63", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/63.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/63.patch" + }, + "body": null + } + }, + { + "id": 2615977439, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3NzQzOQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615977439", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:06:44Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/62", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/62/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/62/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/62/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/62", + "id": 490588350, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0NDc1", + "number": 62, + "title": "queryPullRequestsQualifiedHead_stable", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:06:42Z", + "updated_at": "2019-09-07T04:06:44Z", + "closed_at": "2019-09-07T04:06:44Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/62", + "html_url": "https://github.com/github-api-test-org/github-api/pull/62", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/62.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/62.patch" + }, + "body": null + } + }, + { + "id": 2615977415, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3NzQxNQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615977415", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:06:40Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/61", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/61/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/61/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/61/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/61", + "id": 490588274, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0NDIx", + "number": 61, + "title": "pullRequestReviewComments", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:05:43Z", + "updated_at": "2019-09-07T04:06:40Z", + "closed_at": "2019-09-07T04:06:40Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/61", + "html_url": "https://github.com/github-api-test-org/github-api/pull/61", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/61.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/61.patch" + }, + "body": "## test" + } + }, + { + "id": 2615976947, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3Njk0Nw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615976947", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:05:41Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/60", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/60/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/60/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/60/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/60", + "id": 490588265, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0NDE0", + "number": 60, + "title": "mergeCommitSHA", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:05:37Z", + "updated_at": "2019-09-07T04:05:41Z", + "closed_at": "2019-09-07T04:05:41Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/60", + "html_url": "https://github.com/github-api-test-org/github-api/pull/60", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/60.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/60.patch" + }, + "body": "## test" + } + }, + { + "id": 2615976907, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3NjkwNw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615976907", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:05:36Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/59", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/59/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/59/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/59/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/59", + "id": 490588260, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0NDA5", + "number": 59, + "title": "setLabels", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 1541702441, + "node_id": "MDU6TGFiZWwxNTQxNzAyNDQx", + "url": "https://api.github.com/repos/github-api-test-org/github-api/labels/setLabels_label_name", + "name": "setLabels_label_name", + "color": "ededed", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:05:33Z", + "updated_at": "2019-09-07T04:05:36Z", + "closed_at": "2019-09-07T04:05:36Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/59", + "html_url": "https://github.com/github-api-test-org/github-api/pull/59", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/59.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/59.patch" + }, + "body": "## test" + } + }, + { + "id": 2615976898, + "node_id": "MDEyOkxhYmVsZWRFdmVudDI2MTU5NzY4OTg=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615976898", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "labeled", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:05:34Z", + "label": { + "name": "setLabels_label_name", + "color": "ededed" + }, + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/59", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/59/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/59/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/59/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/59", + "id": 490588260, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0NDA5", + "number": 59, + "title": "setLabels", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 1541702441, + "node_id": "MDU6TGFiZWwxNTQxNzAyNDQx", + "url": "https://api.github.com/repos/github-api-test-org/github-api/labels/setLabels_label_name", + "name": "setLabels_label_name", + "color": "ededed", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:05:33Z", + "updated_at": "2019-09-07T04:05:36Z", + "closed_at": "2019-09-07T04:05:36Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/59", + "html_url": "https://github.com/github-api-test-org/github-api/pull/59", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/59.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/59.patch" + }, + "body": "## test" + } + }, + { + "id": 2615976883, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3Njg4Mw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615976883", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:05:32Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/58", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/58/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/58/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/58/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/58", + "id": 490588254, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0NDA0", + "number": 58, + "title": "getUser", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:05:29Z", + "updated_at": "2019-09-07T04:05:32Z", + "closed_at": "2019-09-07T04:05:32Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/58", + "html_url": "https://github.com/github-api-test-org/github-api/pull/58", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/58.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/58.patch" + }, + "body": "## test" + } + }, + { + "id": 2615976861, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3Njg2MQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615976861", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:05:28Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/57", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/57/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/57/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/57/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/57", + "id": 490588252, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0NDAy", + "number": 57, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:05:27Z", + "updated_at": "2019-09-07T04:05:28Z", + "closed_at": "2019-09-07T04:05:28Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/57", + "html_url": "https://github.com/github-api-test-org/github-api/pull/57", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/57.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/57.patch" + }, + "body": "## test" + } + }, + { + "id": 2615976839, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3NjgzOQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615976839", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:05:24Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/55", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/55/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/55/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/55/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/55", + "id": 490588243, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0Mzk1", + "number": 55, + "title": "queryPullRequestsQualifiedHead_stable", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:05:21Z", + "updated_at": "2019-09-07T04:05:24Z", + "closed_at": "2019-09-07T04:05:24Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/55", + "html_url": "https://github.com/github-api-test-org/github-api/pull/55", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/55.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/55.patch" + }, + "body": null + } + }, + { + "id": 2615976833, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3NjgzMw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615976833", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:05:23Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/56", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/56/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/56/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/56/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/56", + "id": 490588244, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0Mzk2", + "number": 56, + "title": "queryPullRequestsQualifiedHead_rc", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:05:22Z", + "updated_at": "2019-09-07T04:05:23Z", + "closed_at": "2019-09-07T04:05:23Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/56", + "html_url": "https://github.com/github-api-test-org/github-api/pull/56", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/56.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/56.patch" + }, + "body": null + } + }, + { + "id": 2615976801, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3NjgwMQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615976801", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:05:20Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/54", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/54/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/54/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/54/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/54", + "id": 490588234, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0Mzg5", + "number": 54, + "title": "testPullRequestReviews", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:05:16Z", + "updated_at": "2019-09-07T04:05:20Z", + "closed_at": "2019-09-07T04:05:20Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/54", + "html_url": "https://github.com/github-api-test-org/github-api/pull/54", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/54.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/54.patch" + }, + "body": "## test" + } + }, + { + "id": 2615976474, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3NjQ3NA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615976474", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:04:21Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/53", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/53/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/53/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/53/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/53", + "id": 490588172, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0MzQz", + "number": 53, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:04:19Z", + "updated_at": "2019-09-07T04:04:21Z", + "closed_at": "2019-09-07T04:04:21Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/53", + "html_url": "https://github.com/github-api-test-org/github-api/pull/53", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/53.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/53.patch" + }, + "body": "## test" + } + }, + { + "id": 2615976458, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3NjQ1OA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615976458", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:04:17Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/52", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/52/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/52/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/52/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/52", + "id": 490588164, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0MzM1", + "number": 52, + "title": "setAssignee", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "assignees": [ + { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + } + ], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:04:15Z", + "updated_at": "2019-09-07T04:04:17Z", + "closed_at": "2019-09-07T04:04:17Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/52", + "html_url": "https://github.com/github-api-test-org/github-api/pull/52", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/52.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/52.patch" + }, + "body": "## test" + } + }, + { + "id": 2615976443, + "node_id": "MDEzOkFzc2lnbmVkRXZlbnQyNjE1OTc2NDQz", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615976443", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "event": "assigned", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:04:16Z", + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "assigner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/52", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/52/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/52/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/52/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/52", + "id": 490588164, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0MzM1", + "number": 52, + "title": "setAssignee", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "assignees": [ + { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + } + ], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:04:15Z", + "updated_at": "2019-09-07T04:04:17Z", + "closed_at": "2019-09-07T04:04:17Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/52", + "html_url": "https://github.com/github-api-test-org/github-api/pull/52", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/52.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/52.patch" + }, + "body": "## test" + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/orgs_github-api-test-org-1-b27b87.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/orgs_github-api-test-org-1-b27b87.json new file mode 100644 index 0000000000..c4aff2ee35 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/orgs_github-api-test-org-1-b27b87.json @@ -0,0 +1,41 @@ +{ + "id": "b27b8752-74a5-4f0d-8d9c-483cb31d4178", + "name": "orgs_github-api-test-org", + "request": { + "url": "/orgs/github-api-test-org", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_github-api-test-org-b27b8752-74a5-4f0d-8d9c-483cb31d4178.json", + "headers": { + "Date": "Fri, 11 Oct 2019 03:33:33 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4982", + "X-RateLimit-Reset": "1570768157", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"4342e0e7004c1a50986c767513fe857d\"", + "Last-Modified": "Mon, 20 Apr 2015 00:42:30 GMT", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C422:6D1D:15D91A:194D65:5D9FF80D" + } + }, + "uuid": "b27b8752-74a5-4f0d-8d9c-483cb31d4178", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repos_github-api-test-org_github-api-2-2afea7.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repos_github-api-test-org_github-api-2-2afea7.json new file mode 100644 index 0000000000..ec528b4109 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repos_github-api-test-org_github-api-2-2afea7.json @@ -0,0 +1,41 @@ +{ + "id": "2afea771-4bdb-4e32-b0ba-e72ed286f6c2", + "name": "repos_github-api-test-org_github-api", + "request": { + "url": "/repos/github-api-test-org/github-api", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api-2afea771-4bdb-4e32-b0ba-e72ed286f6c2.json", + "headers": { + "Date": "Fri, 11 Oct 2019 03:33:34 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4981", + "X-RateLimit-Reset": "1570768157", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"372f82a1e3bde8ceaacf16c227e5ca93\"", + "Last-Modified": "Mon, 30 Sep 2019 22:36:47 GMT", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C422:6D1D:15D943:194D77:5D9FF80D" + } + }, + "uuid": "2afea771-4bdb-4e32-b0ba-e72ed286f6c2", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repos_github-api-test-org_github-api_issues_events-3-d61292.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repos_github-api-test-org_github-api_issues_events-3-d61292.json new file mode 100644 index 0000000000..1948e9e98e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repos_github-api-test-org_github-api_issues_events-3-d61292.json @@ -0,0 +1,41 @@ +{ + "id": "d6129252-9f48-4380-babb-cc06baa4234e", + "name": "repos_github-api-test-org_github-api_issues_events", + "request": { + "url": "/repos/github-api-test-org/github-api/issues/events", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api_issues_events-d6129252-9f48-4380-babb-cc06baa4234e.json", + "headers": { + "Date": "Fri, 11 Oct 2019 03:33:35 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4980", + "X-RateLimit-Reset": "1570768157", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"092fd69b20562cd35fb3c435ea1c0031\"", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C422:6D1D:15D95C:194DAC:5D9FF80E", + "Link": "; rel=\"next\", ; rel=\"last\"" + } + }, + "uuid": "d6129252-9f48-4380-babb-cc06baa4234e", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-10-83c7ab.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-10-83c7ab.json new file mode 100644 index 0000000000..1708e0aa97 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-10-83c7ab.json @@ -0,0 +1,41 @@ +{ + "id": "83c7abdb-5f08-4826-9313-decbfa7b2531", + "name": "repositories_206888201_issues_events", + "request": { + "url": "/repositories/206888201/issues/events?page=8", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repositories_206888201_issues_events-83c7abdb-5f08-4826-9313-decbfa7b2531.json", + "headers": { + "Date": "Fri, 11 Oct 2019 03:33:39 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4973", + "X-RateLimit-Reset": "1570768157", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"3099abaf575f78264f6a77ee055b40a6\"", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C422:6D1D:15DA11:194E81:5D9FF813", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "83c7abdb-5f08-4826-9313-decbfa7b2531", + "persistent": true, + "insertionIndex": 10 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-11-6f0d69.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-11-6f0d69.json new file mode 100644 index 0000000000..801ac5cfe3 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-11-6f0d69.json @@ -0,0 +1,41 @@ +{ + "id": "6f0d6963-5006-4dba-b11b-a0408d0f798f", + "name": "repositories_206888201_issues_events", + "request": { + "url": "/repositories/206888201/issues/events?page=9", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repositories_206888201_issues_events-6f0d6963-5006-4dba-b11b-a0408d0f798f.json", + "headers": { + "Date": "Fri, 11 Oct 2019 03:33:40 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4972", + "X-RateLimit-Reset": "1570768157", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"7479a98183ab9c40204e1adf35bcd59d\"", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C422:6D1D:15DA33:194EA8:5D9FF813", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "6f0d6963-5006-4dba-b11b-a0408d0f798f", + "persistent": true, + "insertionIndex": 11 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-12-208a37.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-12-208a37.json new file mode 100644 index 0000000000..2b55d25d79 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-12-208a37.json @@ -0,0 +1,41 @@ +{ + "id": "208a37ec-cb3d-4d4e-b27f-f6df770111b3", + "name": "repositories_206888201_issues_events", + "request": { + "url": "/repositories/206888201/issues/events?page=10", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repositories_206888201_issues_events-208a37ec-cb3d-4d4e-b27f-f6df770111b3.json", + "headers": { + "Date": "Fri, 11 Oct 2019 03:33:40 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4971", + "X-RateLimit-Reset": "1570768157", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"a4a6408a2ac034f1fbe3e3970977667e\"", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C422:6D1D:15DA52:194ECF:5D9FF814", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "208a37ec-cb3d-4d4e-b27f-f6df770111b3", + "persistent": true, + "insertionIndex": 12 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-13-94dd8e.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-13-94dd8e.json new file mode 100644 index 0000000000..2bbe198d73 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-13-94dd8e.json @@ -0,0 +1,41 @@ +{ + "id": "94dd8eff-b6f3-4003-89c9-c97721354a77", + "name": "repositories_206888201_issues_events", + "request": { + "url": "/repositories/206888201/issues/events?page=11", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repositories_206888201_issues_events-94dd8eff-b6f3-4003-89c9-c97721354a77.json", + "headers": { + "Date": "Fri, 11 Oct 2019 03:33:41 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4970", + "X-RateLimit-Reset": "1570768157", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"98a3f5cf7a07880aba4cf561323dccda\"", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C422:6D1D:15DA74:194EF4:5D9FF814", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "94dd8eff-b6f3-4003-89c9-c97721354a77", + "persistent": true, + "insertionIndex": 13 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-14-b1ad56.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-14-b1ad56.json new file mode 100644 index 0000000000..a25410ab69 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-14-b1ad56.json @@ -0,0 +1,41 @@ +{ + "id": "b1ad56d6-c0c7-4679-a0dd-5a6c94eb84b1", + "name": "repositories_206888201_issues_events", + "request": { + "url": "/repositories/206888201/issues/events?page=12", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repositories_206888201_issues_events-b1ad56d6-c0c7-4679-a0dd-5a6c94eb84b1.json", + "headers": { + "Date": "Fri, 11 Oct 2019 03:33:42 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4969", + "X-RateLimit-Reset": "1570768157", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"93f584f3cbca7b493137817b50efcb79\"", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C422:6D1D:15DA8A:194F0D:5D9FF815", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "b1ad56d6-c0c7-4679-a0dd-5a6c94eb84b1", + "persistent": true, + "insertionIndex": 14 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-15-5f55d9.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-15-5f55d9.json new file mode 100644 index 0000000000..238dfd70ea --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-15-5f55d9.json @@ -0,0 +1,41 @@ +{ + "id": "5f55d936-4d74-4c99-bc0d-f3c3a90dd81a", + "name": "repositories_206888201_issues_events", + "request": { + "url": "/repositories/206888201/issues/events?page=13", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repositories_206888201_issues_events-5f55d936-4d74-4c99-bc0d-f3c3a90dd81a.json", + "headers": { + "Date": "Fri, 11 Oct 2019 03:33:42 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4968", + "X-RateLimit-Reset": "1570768157", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"631e803d6d5cd4accd96a32f4e8a8801\"", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C422:6D1D:15DA9B:194F22:5D9FF816", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "5f55d936-4d74-4c99-bc0d-f3c3a90dd81a", + "persistent": true, + "insertionIndex": 15 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-16-491772.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-16-491772.json new file mode 100644 index 0000000000..86b4828064 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-16-491772.json @@ -0,0 +1,41 @@ +{ + "id": "4917724b-b110-4549-81b5-c329a13c467a", + "name": "repositories_206888201_issues_events", + "request": { + "url": "/repositories/206888201/issues/events?page=14", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repositories_206888201_issues_events-4917724b-b110-4549-81b5-c329a13c467a.json", + "headers": { + "Date": "Fri, 11 Oct 2019 03:33:43 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4967", + "X-RateLimit-Reset": "1570768157", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"092e91a5d64a54cbf0a6c0a36e903875\"", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C422:6D1D:15DAB7:194F3C:5D9FF816", + "Link": "; rel=\"prev\", ; rel=\"first\"" + } + }, + "uuid": "4917724b-b110-4549-81b5-c329a13c467a", + "persistent": true, + "insertionIndex": 16 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-4-2b6f60.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-4-2b6f60.json new file mode 100644 index 0000000000..b31b7f9c10 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-4-2b6f60.json @@ -0,0 +1,41 @@ +{ + "id": "2b6f606b-278c-47b2-99ff-9036f43b0f68", + "name": "repositories_206888201_issues_events", + "request": { + "url": "/repositories/206888201/issues/events?page=2", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repositories_206888201_issues_events-2b6f606b-278c-47b2-99ff-9036f43b0f68.json", + "headers": { + "Date": "Fri, 11 Oct 2019 03:33:36 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4979", + "X-RateLimit-Reset": "1570768157", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"ffd8fe1745a4005b962c1a1286e56dc0\"", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C422:6D1D:15D978:194DCB:5D9FF80F", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "2b6f606b-278c-47b2-99ff-9036f43b0f68", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-5-72a130.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-5-72a130.json new file mode 100644 index 0000000000..9bdf2dcce2 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-5-72a130.json @@ -0,0 +1,41 @@ +{ + "id": "72a13002-acc3-4c49-a916-daaf249874b5", + "name": "repositories_206888201_issues_events", + "request": { + "url": "/repositories/206888201/issues/events?page=3", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repositories_206888201_issues_events-72a13002-acc3-4c49-a916-daaf249874b5.json", + "headers": { + "Date": "Fri, 11 Oct 2019 03:33:36 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4978", + "X-RateLimit-Reset": "1570768157", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"2afc0b6e99395673ff63823bb29845e9\"", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C422:6D1D:15D991:194DE8:5D9FF810", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "72a13002-acc3-4c49-a916-daaf249874b5", + "persistent": true, + "insertionIndex": 5 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-6-9c193f.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-6-9c193f.json new file mode 100644 index 0000000000..3cd02c6d5f --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-6-9c193f.json @@ -0,0 +1,41 @@ +{ + "id": "9c193fd6-e6f6-4949-8414-cf031e70f82e", + "name": "repositories_206888201_issues_events", + "request": { + "url": "/repositories/206888201/issues/events?page=4", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repositories_206888201_issues_events-9c193fd6-e6f6-4949-8414-cf031e70f82e.json", + "headers": { + "Date": "Fri, 11 Oct 2019 03:33:37 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4977", + "X-RateLimit-Reset": "1570768157", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"d332f6c50e3c94ecc91302b97d8ba899\"", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C422:6D1D:15D9A7:194E04:5D9FF810", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "9c193fd6-e6f6-4949-8414-cf031e70f82e", + "persistent": true, + "insertionIndex": 6 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-7-654e00.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-7-654e00.json new file mode 100644 index 0000000000..8651b68df1 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-7-654e00.json @@ -0,0 +1,41 @@ +{ + "id": "654e008f-d77e-4339-957e-f2bdfcab904b", + "name": "repositories_206888201_issues_events", + "request": { + "url": "/repositories/206888201/issues/events?page=5", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repositories_206888201_issues_events-654e008f-d77e-4339-957e-f2bdfcab904b.json", + "headers": { + "Date": "Fri, 11 Oct 2019 03:33:37 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4976", + "X-RateLimit-Reset": "1570768157", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"021b9686a4cb768611897c6a6ad6737f\"", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C422:6D1D:15D9C1:194E22:5D9FF811", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "654e008f-d77e-4339-957e-f2bdfcab904b", + "persistent": true, + "insertionIndex": 7 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-8-71d796.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-8-71d796.json new file mode 100644 index 0000000000..79ab97447f --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-8-71d796.json @@ -0,0 +1,41 @@ +{ + "id": "71d7968e-586e-4120-81db-eea6f1aca2f0", + "name": "repositories_206888201_issues_events", + "request": { + "url": "/repositories/206888201/issues/events?page=6", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repositories_206888201_issues_events-71d7968e-586e-4120-81db-eea6f1aca2f0.json", + "headers": { + "Date": "Fri, 11 Oct 2019 03:33:38 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4975", + "X-RateLimit-Reset": "1570768157", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"8d9a4dccbaedb85de5d83b651c7025aa\"", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C422:6D1D:15D9DA:194E3D:5D9FF811", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "71d7968e-586e-4120-81db-eea6f1aca2f0", + "persistent": true, + "insertionIndex": 8 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-9-286927.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-9-286927.json new file mode 100644 index 0000000000..3ab555927b --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-9-286927.json @@ -0,0 +1,41 @@ +{ + "id": "28692783-a6a7-432a-bae1-15bcb4e48175", + "name": "repositories_206888201_issues_events", + "request": { + "url": "/repositories/206888201/issues/events?page=7", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repositories_206888201_issues_events-28692783-a6a7-432a-bae1-15bcb4e48175.json", + "headers": { + "Date": "Fri, 11 Oct 2019 03:33:39 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4974", + "X-RateLimit-Reset": "1570768157", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"d9a7cbd31107d98132b995ab96894661\"", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C422:6D1D:15D9F1:194E5C:5D9FF812", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "28692783-a6a7-432a-bae1-15bcb4e48175", + "persistent": true, + "insertionIndex": 9 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryFullLicense/__files/licenses_mit-4cc836da-9288-41bd-886c-05c93470225d.json b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryFullLicense/__files/licenses_mit-4cc836da-9288-41bd-886c-05c93470225d.json new file mode 100644 index 0000000000..b8c174e94b --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryFullLicense/__files/licenses_mit-4cc836da-9288-41bd-886c-05c93470225d.json @@ -0,0 +1,25 @@ +{ + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz", + "html_url": "http://choosealicense.com/licenses/mit/", + "description": "A short and simple permissive license with conditions only requiring preservation of copyright and license notices. Licensed works, modifications, and larger works may be distributed under different terms and without source code.", + "implementation": "Create a text file (typically named LICENSE or LICENSE.txt) in the root of your source code and copy the text of the license into the file. Replace [year] with the current year and [fullname] with the name (or names) of the copyright holders.", + "permissions": [ + "commercial-use", + "modifications", + "distribution", + "private-use" + ], + "conditions": [ + "include-copyright" + ], + "limitations": [ + "liability", + "warranty" + ], + "body": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n", + "featured": true +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryFullLicense/__files/repos_github-api_github-api-631120d1-4833-49ea-a8f7-55a6085625ef.json b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryFullLicense/__files/repos_github-api_github-api-631120d1-4833-49ea-a8f7-55a6085625ef.json new file mode 100644 index 0000000000..8d7603c61d --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryFullLicense/__files/repos_github-api_github-api-631120d1-4833-49ea-a8f7-55a6085625ef.json @@ -0,0 +1,130 @@ +{ + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-10-04T16:15:14Z", + "pushed_at": "2019-10-04T17:28:24Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 12265, + "stargazers_count": 557, + "watchers_count": 557, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 428, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 86, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 428, + "open_issues": 86, + "watchers": 557, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "network_count": 428, + "subscribers_count": 50 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryFullLicense/__files/repos_github-api_github-api_license-f6ba1895-6c06-4c51-9ad0-fcf322e87ee4.json b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryFullLicense/__files/repos_github-api_github-api_license-f6ba1895-6c06-4c51-9ad0-fcf322e87ee4.json new file mode 100644 index 0000000000..299e4262b2 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryFullLicense/__files/repos_github-api_github-api_license-f6ba1895-6c06-4c51-9ad0-fcf322e87ee4.json @@ -0,0 +1,25 @@ +{ + "name": "LICENSE.txt", + "path": "LICENSE.txt", + "sha": "a12243f2fc5b8c2ba47dd677d0b0c7583539584d", + "size": 1104, + "url": "https://api.github.com/repos/github-api/github-api/contents/LICENSE.txt?ref=master", + "html_url": "https://github.com/github-api/github-api/blob/master/LICENSE.txt", + "git_url": "https://api.github.com/repos/github-api/github-api/git/blobs/a12243f2fc5b8c2ba47dd677d0b0c7583539584d", + "download_url": "https://raw.githubusercontent.com/github-api/github-api/master/LICENSE.txt", + "type": "file", + "content": "IENvcHlyaWdodCAoYykgMjAxMS0gS29oc3VrZSBLYXdhZ3VjaGkgYW5kIG90\naGVyIGNvbnRyaWJ1dG9ycwoKIFBlcm1pc3Npb24gaXMgaGVyZWJ5IGdyYW50\nZWQsIGZyZWUgb2YgY2hhcmdlLCB0byBhbnkgcGVyc29uCiBvYnRhaW5pbmcg\nYSBjb3B5IG9mIHRoaXMgc29mdHdhcmUgYW5kIGFzc29jaWF0ZWQgZG9jdW1l\nbnRhdGlvbgogZmlsZXMgKHRoZSAiU29mdHdhcmUiKSwgdG8gZGVhbCBpbiB0\naGUgU29mdHdhcmUgd2l0aG91dAogcmVzdHJpY3Rpb24sIGluY2x1ZGluZyB3\naXRob3V0IGxpbWl0YXRpb24gdGhlIHJpZ2h0cyB0byB1c2UsCiBjb3B5LCBt\nb2RpZnksIG1lcmdlLCBwdWJsaXNoLCBkaXN0cmlidXRlLCBzdWJsaWNlbnNl\nLCBhbmQvb3Igc2VsbAogY29waWVzIG9mIHRoZSBTb2Z0d2FyZSwgYW5kIHRv\nIHBlcm1pdCBwZXJzb25zIHRvIHdob20gdGhlCiBTb2Z0d2FyZSBpcyBmdXJu\naXNoZWQgdG8gZG8gc28sIHN1YmplY3QgdG8gdGhlIGZvbGxvd2luZwogY29u\nZGl0aW9uczoKCiBUaGUgYWJvdmUgY29weXJpZ2h0IG5vdGljZSBhbmQgdGhp\ncyBwZXJtaXNzaW9uIG5vdGljZSBzaGFsbCBiZQogaW5jbHVkZWQgaW4gYWxs\nIGNvcGllcyBvciBzdWJzdGFudGlhbCBwb3J0aW9ucyBvZiB0aGUgU29mdHdh\ncmUuCgogVEhFIFNPRlRXQVJFIElTIFBST1ZJREVEICJBUyBJUyIsIFdJVEhP\nVVQgV0FSUkFOVFkgT0YgQU5ZIEtJTkQsCiBFWFBSRVNTIE9SIElNUExJRUQs\nIElOQ0xVRElORyBCVVQgTk9UIExJTUlURUQgVE8gVEhFIFdBUlJBTlRJRVMK\nIE9GIE1FUkNIQU5UQUJJTElUWSwgRklUTkVTUyBGT1IgQSBQQVJUSUNVTEFS\nIFBVUlBPU0UgQU5ECiBOT05JTkZSSU5HRU1FTlQuIElOIE5PIEVWRU5UIFNI\nQUxMIFRIRSBBVVRIT1JTIE9SIENPUFlSSUdIVAogSE9MREVSUyBCRSBMSUFC\nTEUgRk9SIEFOWSBDTEFJTSwgREFNQUdFUyBPUiBPVEhFUiBMSUFCSUxJVFks\nCiBXSEVUSEVSIElOIEFOIEFDVElPTiBPRiBDT05UUkFDVCwgVE9SVCBPUiBP\nVEhFUldJU0UsIEFSSVNJTkcKIEZST00sIE9VVCBPRiBPUiBJTiBDT05ORUNU\nSU9OIFdJVEggVEhFIFNPRlRXQVJFIE9SIFRIRSBVU0UgT1IKIE9USEVSIERF\nQUxJTkdTIElOIFRIRSBTT0ZUV0FSRS4K\n", + "encoding": "base64", + "_links": { + "self": "https://api.github.com/repos/github-api/github-api/contents/LICENSE.txt?ref=master", + "git": "https://api.github.com/repos/github-api/github-api/git/blobs/a12243f2fc5b8c2ba47dd677d0b0c7583539584d", + "html": "https://github.com/github-api/github-api/blob/master/LICENSE.txt" + }, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryFullLicense/__files/user-eeb32135-bbb9-4c4c-8166-472f24fba13a.json b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryFullLicense/__files/user-eeb32135-bbb9-4c4c-8166-472f24fba13a.json new file mode 100644 index 0000000000..41fc9e3d00 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryFullLicense/__files/user-eeb32135-bbb9-4c4c-8166-472f24fba13a.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 168, + "public_gists": 4, + "followers": 136, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryFullLicense/mappings/licenses_mit-4-4cc836.json b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryFullLicense/mappings/licenses_mit-4-4cc836.json new file mode 100644 index 0000000000..94a654fa64 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryFullLicense/mappings/licenses_mit-4-4cc836.json @@ -0,0 +1,42 @@ +{ + "id": "4cc836da-9288-41bd-886c-05c93470225d", + "name": "licenses_mit", + "request": { + "url": "/licenses/mit", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "licenses_mit-4cc836da-9288-41bd-886c-05c93470225d.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:29:35 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4583", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"cdc71ea0b0e60f4cdbf00107bcf1035c\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C161:67D5:1425BD1:18429E5:5D97817F" + } + }, + "uuid": "4cc836da-9288-41bd-886c-05c93470225d", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryFullLicense/mappings/repos_github-api_github-api-2-631120.json b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryFullLicense/mappings/repos_github-api_github-api-2-631120.json new file mode 100644 index 0000000000..36b0371aa2 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryFullLicense/mappings/repos_github-api_github-api-2-631120.json @@ -0,0 +1,43 @@ +{ + "id": "631120d1-4833-49ea-a8f7-55a6085625ef", + "name": "repos_github-api_github-api", + "request": { + "url": "/repos/github-api/github-api", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api_github-api-631120d1-4833-49ea-a8f7-55a6085625ef.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:29:35 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4585", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"973d36671120e8acb6adb43ce42e6820\"", + "Last-Modified": "Fri, 04 Oct 2019 16:15:14 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C161:67D5:1425BB7:18429A6:5D97817E" + } + }, + "uuid": "631120d1-4833-49ea-a8f7-55a6085625ef", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryFullLicense/mappings/repos_github-api_github-api_license-3-f6ba18.json b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryFullLicense/mappings/repos_github-api_github-api_license-3-f6ba18.json new file mode 100644 index 0000000000..9a683b88f5 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryFullLicense/mappings/repos_github-api_github-api_license-3-f6ba18.json @@ -0,0 +1,43 @@ +{ + "id": "f6ba1895-6c06-4c51-9ad0-fcf322e87ee4", + "name": "repos_github-api_github-api_license", + "request": { + "url": "/repos/github-api/github-api/license", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api_github-api_license-f6ba1895-6c06-4c51-9ad0-fcf322e87ee4.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:29:35 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4584", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"22f018ca5a5e3c36ee8522bb91a5046a\"", + "Last-Modified": "Fri, 04 Oct 2019 16:15:09 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C161:67D5:1425BC5:18429D3:5D97817F" + } + }, + "uuid": "f6ba1895-6c06-4c51-9ad0-fcf322e87ee4", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryFullLicense/mappings/user-1-eeb321.json b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryFullLicense/mappings/user-1-eeb321.json new file mode 100644 index 0000000000..62702f9066 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryFullLicense/mappings/user-1-eeb321.json @@ -0,0 +1,43 @@ +{ + "id": "eeb32135-bbb9-4c4c-8166-472f24fba13a", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-eeb32135-bbb9-4c4c-8166-472f24fba13a.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:29:34 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4587", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"af0c41afcacb8ceee14b7d896719c3bd\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C161:67D5:1425B9D:1842999:5D97817E" + } + }, + "uuid": "eeb32135-bbb9-4c4c-8166-472f24fba13a", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicense/__files/repos_github-api_github-api-1f9552cb-0b47-47ca-bb9b-f685d1dbbf05.json b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicense/__files/repos_github-api_github-api-1f9552cb-0b47-47ca-bb9b-f685d1dbbf05.json new file mode 100644 index 0000000000..8d7603c61d --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicense/__files/repos_github-api_github-api-1f9552cb-0b47-47ca-bb9b-f685d1dbbf05.json @@ -0,0 +1,130 @@ +{ + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-10-04T16:15:14Z", + "pushed_at": "2019-10-04T17:28:24Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 12265, + "stargazers_count": 557, + "watchers_count": 557, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 428, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 86, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 428, + "open_issues": 86, + "watchers": 557, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "network_count": 428, + "subscribers_count": 50 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicense/__files/repos_github-api_github-api_license-b99917fd-7863-4815-8e2e-cd3261475e98.json b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicense/__files/repos_github-api_github-api_license-b99917fd-7863-4815-8e2e-cd3261475e98.json new file mode 100644 index 0000000000..299e4262b2 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicense/__files/repos_github-api_github-api_license-b99917fd-7863-4815-8e2e-cd3261475e98.json @@ -0,0 +1,25 @@ +{ + "name": "LICENSE.txt", + "path": "LICENSE.txt", + "sha": "a12243f2fc5b8c2ba47dd677d0b0c7583539584d", + "size": 1104, + "url": "https://api.github.com/repos/github-api/github-api/contents/LICENSE.txt?ref=master", + "html_url": "https://github.com/github-api/github-api/blob/master/LICENSE.txt", + "git_url": "https://api.github.com/repos/github-api/github-api/git/blobs/a12243f2fc5b8c2ba47dd677d0b0c7583539584d", + "download_url": "https://raw.githubusercontent.com/github-api/github-api/master/LICENSE.txt", + "type": "file", + "content": "IENvcHlyaWdodCAoYykgMjAxMS0gS29oc3VrZSBLYXdhZ3VjaGkgYW5kIG90\naGVyIGNvbnRyaWJ1dG9ycwoKIFBlcm1pc3Npb24gaXMgaGVyZWJ5IGdyYW50\nZWQsIGZyZWUgb2YgY2hhcmdlLCB0byBhbnkgcGVyc29uCiBvYnRhaW5pbmcg\nYSBjb3B5IG9mIHRoaXMgc29mdHdhcmUgYW5kIGFzc29jaWF0ZWQgZG9jdW1l\nbnRhdGlvbgogZmlsZXMgKHRoZSAiU29mdHdhcmUiKSwgdG8gZGVhbCBpbiB0\naGUgU29mdHdhcmUgd2l0aG91dAogcmVzdHJpY3Rpb24sIGluY2x1ZGluZyB3\naXRob3V0IGxpbWl0YXRpb24gdGhlIHJpZ2h0cyB0byB1c2UsCiBjb3B5LCBt\nb2RpZnksIG1lcmdlLCBwdWJsaXNoLCBkaXN0cmlidXRlLCBzdWJsaWNlbnNl\nLCBhbmQvb3Igc2VsbAogY29waWVzIG9mIHRoZSBTb2Z0d2FyZSwgYW5kIHRv\nIHBlcm1pdCBwZXJzb25zIHRvIHdob20gdGhlCiBTb2Z0d2FyZSBpcyBmdXJu\naXNoZWQgdG8gZG8gc28sIHN1YmplY3QgdG8gdGhlIGZvbGxvd2luZwogY29u\nZGl0aW9uczoKCiBUaGUgYWJvdmUgY29weXJpZ2h0IG5vdGljZSBhbmQgdGhp\ncyBwZXJtaXNzaW9uIG5vdGljZSBzaGFsbCBiZQogaW5jbHVkZWQgaW4gYWxs\nIGNvcGllcyBvciBzdWJzdGFudGlhbCBwb3J0aW9ucyBvZiB0aGUgU29mdHdh\ncmUuCgogVEhFIFNPRlRXQVJFIElTIFBST1ZJREVEICJBUyBJUyIsIFdJVEhP\nVVQgV0FSUkFOVFkgT0YgQU5ZIEtJTkQsCiBFWFBSRVNTIE9SIElNUExJRUQs\nIElOQ0xVRElORyBCVVQgTk9UIExJTUlURUQgVE8gVEhFIFdBUlJBTlRJRVMK\nIE9GIE1FUkNIQU5UQUJJTElUWSwgRklUTkVTUyBGT1IgQSBQQVJUSUNVTEFS\nIFBVUlBPU0UgQU5ECiBOT05JTkZSSU5HRU1FTlQuIElOIE5PIEVWRU5UIFNI\nQUxMIFRIRSBBVVRIT1JTIE9SIENPUFlSSUdIVAogSE9MREVSUyBCRSBMSUFC\nTEUgRk9SIEFOWSBDTEFJTSwgREFNQUdFUyBPUiBPVEhFUiBMSUFCSUxJVFks\nCiBXSEVUSEVSIElOIEFOIEFDVElPTiBPRiBDT05UUkFDVCwgVE9SVCBPUiBP\nVEhFUldJU0UsIEFSSVNJTkcKIEZST00sIE9VVCBPRiBPUiBJTiBDT05ORUNU\nSU9OIFdJVEggVEhFIFNPRlRXQVJFIE9SIFRIRSBVU0UgT1IKIE9USEVSIERF\nQUxJTkdTIElOIFRIRSBTT0ZUV0FSRS4K\n", + "encoding": "base64", + "_links": { + "self": "https://api.github.com/repos/github-api/github-api/contents/LICENSE.txt?ref=master", + "git": "https://api.github.com/repos/github-api/github-api/git/blobs/a12243f2fc5b8c2ba47dd677d0b0c7583539584d", + "html": "https://github.com/github-api/github-api/blob/master/LICENSE.txt" + }, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicense/__files/user-659cc231-9415-4c8e-8f9f-153362753343.json b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicense/__files/user-659cc231-9415-4c8e-8f9f-153362753343.json new file mode 100644 index 0000000000..41fc9e3d00 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicense/__files/user-659cc231-9415-4c8e-8f9f-153362753343.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 168, + "public_gists": 4, + "followers": 136, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicense/mappings/repos_github-api_github-api-2-1f9552.json b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicense/mappings/repos_github-api_github-api-2-1f9552.json new file mode 100644 index 0000000000..44394c38c3 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicense/mappings/repos_github-api_github-api-2-1f9552.json @@ -0,0 +1,43 @@ +{ + "id": "1f9552cb-0b47-47ca-bb9b-f685d1dbbf05", + "name": "repos_github-api_github-api", + "request": { + "url": "/repos/github-api/github-api", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api_github-api-1f9552cb-0b47-47ca-bb9b-f685d1dbbf05.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:29:33 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4589", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"973d36671120e8acb6adb43ce42e6820\"", + "Last-Modified": "Fri, 04 Oct 2019 16:15:14 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C15D:9576:93A269:B07BAE:5D97817C" + } + }, + "uuid": "1f9552cb-0b47-47ca-bb9b-f685d1dbbf05", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicense/mappings/repos_github-api_github-api_license-3-b99917.json b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicense/mappings/repos_github-api_github-api_license-3-b99917.json new file mode 100644 index 0000000000..fc1d4cf0ff --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicense/mappings/repos_github-api_github-api_license-3-b99917.json @@ -0,0 +1,43 @@ +{ + "id": "b99917fd-7863-4815-8e2e-cd3261475e98", + "name": "repos_github-api_github-api_license", + "request": { + "url": "/repos/github-api/github-api/license", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api_github-api_license-b99917fd-7863-4815-8e2e-cd3261475e98.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:29:34 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4588", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"22f018ca5a5e3c36ee8522bb91a5046a\"", + "Last-Modified": "Fri, 04 Oct 2019 16:15:09 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C15D:9576:93A277:B07BCE:5D97817D" + } + }, + "uuid": "b99917fd-7863-4815-8e2e-cd3261475e98", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicense/mappings/user-1-659cc2.json b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicense/mappings/user-1-659cc2.json new file mode 100644 index 0000000000..9f1c1d0ede --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicense/mappings/user-1-659cc2.json @@ -0,0 +1,43 @@ +{ + "id": "659cc231-9415-4c8e-8f9f-153362753343", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-659cc231-9415-4c8e-8f9f-153362753343.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:29:32 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4591", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"af0c41afcacb8ceee14b7d896719c3bd\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C15D:9576:93A250:B07BA4:5D97817C" + } + }, + "uuid": "659cc231-9415-4c8e-8f9f-153362753343", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicenseAtom/__files/repos_atom_atom-bd1153cf-7be6-4147-9e7e-e12a0d7789f2.json b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicenseAtom/__files/repos_atom_atom-bd1153cf-7be6-4147-9e7e-e12a0d7789f2.json new file mode 100644 index 0000000000..ff2bee6b93 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicenseAtom/__files/repos_atom_atom-bd1153cf-7be6-4147-9e7e-e12a0d7789f2.json @@ -0,0 +1,127 @@ +{ + "id": 3228505, + "node_id": "MDEwOlJlcG9zaXRvcnkzMjI4NTA1", + "name": "atom", + "full_name": "atom/atom", + "private": false, + "owner": { + "login": "atom", + "id": 1089146, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwODkxNDY=", + "avatar_url": "https://avatars2.githubusercontent.com/u/1089146?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/atom", + "html_url": "https://github.com/atom", + "followers_url": "https://api.github.com/users/atom/followers", + "following_url": "https://api.github.com/users/atom/following{/other_user}", + "gists_url": "https://api.github.com/users/atom/gists{/gist_id}", + "starred_url": "https://api.github.com/users/atom/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/atom/subscriptions", + "organizations_url": "https://api.github.com/users/atom/orgs", + "repos_url": "https://api.github.com/users/atom/repos", + "events_url": "https://api.github.com/users/atom/events{/privacy}", + "received_events_url": "https://api.github.com/users/atom/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/atom/atom", + "description": ":atom: The hackable text editor", + "fork": false, + "url": "https://api.github.com/repos/atom/atom", + "forks_url": "https://api.github.com/repos/atom/atom/forks", + "keys_url": "https://api.github.com/repos/atom/atom/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/atom/atom/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/atom/atom/teams", + "hooks_url": "https://api.github.com/repos/atom/atom/hooks", + "issue_events_url": "https://api.github.com/repos/atom/atom/issues/events{/number}", + "events_url": "https://api.github.com/repos/atom/atom/events", + "assignees_url": "https://api.github.com/repos/atom/atom/assignees{/user}", + "branches_url": "https://api.github.com/repos/atom/atom/branches{/branch}", + "tags_url": "https://api.github.com/repos/atom/atom/tags", + "blobs_url": "https://api.github.com/repos/atom/atom/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/atom/atom/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/atom/atom/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/atom/atom/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/atom/atom/statuses/{sha}", + "languages_url": "https://api.github.com/repos/atom/atom/languages", + "stargazers_url": "https://api.github.com/repos/atom/atom/stargazers", + "contributors_url": "https://api.github.com/repos/atom/atom/contributors", + "subscribers_url": "https://api.github.com/repos/atom/atom/subscribers", + "subscription_url": "https://api.github.com/repos/atom/atom/subscription", + "commits_url": "https://api.github.com/repos/atom/atom/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/atom/atom/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/atom/atom/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/atom/atom/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/atom/atom/contents/{+path}", + "compare_url": "https://api.github.com/repos/atom/atom/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/atom/atom/merges", + "archive_url": "https://api.github.com/repos/atom/atom/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/atom/atom/downloads", + "issues_url": "https://api.github.com/repos/atom/atom/issues{/number}", + "pulls_url": "https://api.github.com/repos/atom/atom/pulls{/number}", + "milestones_url": "https://api.github.com/repos/atom/atom/milestones{/number}", + "notifications_url": "https://api.github.com/repos/atom/atom/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/atom/atom/labels{/name}", + "releases_url": "https://api.github.com/repos/atom/atom/releases{/id}", + "deployments_url": "https://api.github.com/repos/atom/atom/deployments", + "created_at": "2012-01-20T18:18:21Z", + "updated_at": "2019-10-04T16:36:19Z", + "pushed_at": "2019-10-02T18:53:08Z", + "git_url": "git://github.com/atom/atom.git", + "ssh_url": "git@github.com:atom/atom.git", + "clone_url": "https://github.com/atom/atom.git", + "svn_url": "https://github.com/atom/atom", + "homepage": "https://atom.io", + "size": 314158, + "stargazers_count": 50039, + "watchers_count": 50039, + "language": "JavaScript", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 12930, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 587, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 12930, + "open_issues": 587, + "watchers": 50039, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + }, + "organization": { + "login": "atom", + "id": 1089146, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwODkxNDY=", + "avatar_url": "https://avatars2.githubusercontent.com/u/1089146?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/atom", + "html_url": "https://github.com/atom", + "followers_url": "https://api.github.com/users/atom/followers", + "following_url": "https://api.github.com/users/atom/following{/other_user}", + "gists_url": "https://api.github.com/users/atom/gists{/gist_id}", + "starred_url": "https://api.github.com/users/atom/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/atom/subscriptions", + "organizations_url": "https://api.github.com/users/atom/orgs", + "repos_url": "https://api.github.com/users/atom/repos", + "events_url": "https://api.github.com/users/atom/events{/privacy}", + "received_events_url": "https://api.github.com/users/atom/received_events", + "type": "Organization", + "site_admin": false + }, + "network_count": 12930, + "subscribers_count": 2463 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicenseAtom/__files/repos_atom_atom_license-a0fac733-4d83-4d68-be23-c1c57574ea10.json b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicenseAtom/__files/repos_atom_atom_license-a0fac733-4d83-4d68-be23-c1c57574ea10.json new file mode 100644 index 0000000000..37d64c2287 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicenseAtom/__files/repos_atom_atom_license-a0fac733-4d83-4d68-be23-c1c57574ea10.json @@ -0,0 +1,25 @@ +{ + "name": "LICENSE.md", + "path": "LICENSE.md", + "sha": "ef355c2dd7ccd13cf3aba8e20522ca8f578d481f", + "size": 1060, + "url": "https://api.github.com/repos/atom/atom/contents/LICENSE.md?ref=master", + "html_url": "https://github.com/atom/atom/blob/master/LICENSE.md", + "git_url": "https://api.github.com/repos/atom/atom/git/blobs/ef355c2dd7ccd13cf3aba8e20522ca8f578d481f", + "download_url": "https://raw.githubusercontent.com/atom/atom/master/LICENSE.md", + "type": "file", + "content": "Q29weXJpZ2h0IChjKSAyMDExLTIwMTkgR2l0SHViIEluYy4KClBlcm1pc3Np\nb24gaXMgaGVyZWJ5IGdyYW50ZWQsIGZyZWUgb2YgY2hhcmdlLCB0byBhbnkg\ncGVyc29uIG9idGFpbmluZwphIGNvcHkgb2YgdGhpcyBzb2Z0d2FyZSBhbmQg\nYXNzb2NpYXRlZCBkb2N1bWVudGF0aW9uIGZpbGVzICh0aGUKIlNvZnR3YXJl\nIiksIHRvIGRlYWwgaW4gdGhlIFNvZnR3YXJlIHdpdGhvdXQgcmVzdHJpY3Rp\nb24sIGluY2x1ZGluZwp3aXRob3V0IGxpbWl0YXRpb24gdGhlIHJpZ2h0cyB0\nbyB1c2UsIGNvcHksIG1vZGlmeSwgbWVyZ2UsIHB1Ymxpc2gsCmRpc3RyaWJ1\ndGUsIHN1YmxpY2Vuc2UsIGFuZC9vciBzZWxsIGNvcGllcyBvZiB0aGUgU29m\ndHdhcmUsIGFuZCB0bwpwZXJtaXQgcGVyc29ucyB0byB3aG9tIHRoZSBTb2Z0\nd2FyZSBpcyBmdXJuaXNoZWQgdG8gZG8gc28sIHN1YmplY3QgdG8KdGhlIGZv\nbGxvd2luZyBjb25kaXRpb25zOgoKVGhlIGFib3ZlIGNvcHlyaWdodCBub3Rp\nY2UgYW5kIHRoaXMgcGVybWlzc2lvbiBub3RpY2Ugc2hhbGwgYmUKaW5jbHVk\nZWQgaW4gYWxsIGNvcGllcyBvciBzdWJzdGFudGlhbCBwb3J0aW9ucyBvZiB0\naGUgU29mdHdhcmUuCgpUSEUgU09GVFdBUkUgSVMgUFJPVklERUQgIkFTIElT\nIiwgV0lUSE9VVCBXQVJSQU5UWSBPRiBBTlkgS0lORCwKRVhQUkVTUyBPUiBJ\nTVBMSUVELCBJTkNMVURJTkcgQlVUIE5PVCBMSU1JVEVEIFRPIFRIRSBXQVJS\nQU5USUVTIE9GCk1FUkNIQU5UQUJJTElUWSwgRklUTkVTUyBGT1IgQSBQQVJU\nSUNVTEFSIFBVUlBPU0UgQU5ECk5PTklORlJJTkdFTUVOVC4gSU4gTk8gRVZF\nTlQgU0hBTEwgVEhFIEFVVEhPUlMgT1IgQ09QWVJJR0hUIEhPTERFUlMgQkUK\nTElBQkxFIEZPUiBBTlkgQ0xBSU0sIERBTUFHRVMgT1IgT1RIRVIgTElBQklM\nSVRZLCBXSEVUSEVSIElOIEFOIEFDVElPTgpPRiBDT05UUkFDVCwgVE9SVCBP\nUiBPVEhFUldJU0UsIEFSSVNJTkcgRlJPTSwgT1VUIE9GIE9SIElOIENPTk5F\nQ1RJT04KV0lUSCBUSEUgU09GVFdBUkUgT1IgVEhFIFVTRSBPUiBPVEhFUiBE\nRUFMSU5HUyBJTiBUSEUgU09GVFdBUkUuCg==\n", + "encoding": "base64", + "_links": { + "self": "https://api.github.com/repos/atom/atom/contents/LICENSE.md?ref=master", + "git": "https://api.github.com/repos/atom/atom/git/blobs/ef355c2dd7ccd13cf3aba8e20522ca8f578d481f", + "html": "https://github.com/atom/atom/blob/master/LICENSE.md" + }, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicenseAtom/__files/user-30af4231-bcac-4e52-8dfe-da122934c709.json b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicenseAtom/__files/user-30af4231-bcac-4e52-8dfe-da122934c709.json new file mode 100644 index 0000000000..41fc9e3d00 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicenseAtom/__files/user-30af4231-bcac-4e52-8dfe-da122934c709.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 168, + "public_gists": 4, + "followers": 136, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicenseAtom/mappings/repos_atom_atom-2-bd1153.json b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicenseAtom/mappings/repos_atom_atom-2-bd1153.json new file mode 100644 index 0000000000..47f8c0bffc --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicenseAtom/mappings/repos_atom_atom-2-bd1153.json @@ -0,0 +1,43 @@ +{ + "id": "bd1153cf-7be6-4147-9e7e-e12a0d7789f2", + "name": "repos_atom_atom", + "request": { + "url": "/repos/atom/atom", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_atom_atom-bd1153cf-7be6-4147-9e7e-e12a0d7789f2.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:29:37 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4572", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"a63d0def5b3c51b1300382b5fe799e08\"", + "Last-Modified": "Fri, 04 Oct 2019 16:36:19 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C16B:6B2D:155EEB9:198D221:5D978181" + } + }, + "uuid": "bd1153cf-7be6-4147-9e7e-e12a0d7789f2", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicenseAtom/mappings/repos_atom_atom_license-3-a0fac7.json b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicenseAtom/mappings/repos_atom_atom_license-3-a0fac7.json new file mode 100644 index 0000000000..774422d937 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicenseAtom/mappings/repos_atom_atom_license-3-a0fac7.json @@ -0,0 +1,43 @@ +{ + "id": "a0fac733-4d83-4d68-be23-c1c57574ea10", + "name": "repos_atom_atom_license", + "request": { + "url": "/repos/atom/atom/license", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_atom_atom_license-a0fac733-4d83-4d68-be23-c1c57574ea10.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:29:37 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4571", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"3644815f2f59c056ae2d1b03bf4b63e0\"", + "Last-Modified": "Tue, 24 Sep 2019 20:19:48 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C16B:6B2D:155EECD:198D249:5D978181" + } + }, + "uuid": "a0fac733-4d83-4d68-be23-c1c57574ea10", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicenseAtom/mappings/user-1-30af42.json b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicenseAtom/mappings/user-1-30af42.json new file mode 100644 index 0000000000..07c02325d5 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicenseAtom/mappings/user-1-30af42.json @@ -0,0 +1,43 @@ +{ + "id": "30af4231-bcac-4e52-8dfe-da122934c709", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-30af4231-bcac-4e52-8dfe-da122934c709.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:29:37 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4574", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"af0c41afcacb8ceee14b7d896719c3bd\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C16B:6B2D:155EEA1:198D211:5D978181" + } + }, + "uuid": "30af4231-bcac-4e52-8dfe-da122934c709", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicenseContent/__files/repos_pomes_pomes-7c3e7b36-6930-4804-8d6e-83075abfcde8.json b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicenseContent/__files/repos_pomes_pomes-7c3e7b36-6930-4804-8d6e-83075abfcde8.json new file mode 100644 index 0000000000..cfc7decc75 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicenseContent/__files/repos_pomes_pomes-7c3e7b36-6930-4804-8d6e-83075abfcde8.json @@ -0,0 +1,127 @@ +{ + "id": 54015549, + "node_id": "MDEwOlJlcG9zaXRvcnk1NDAxNTU0OQ==", + "name": "pomes", + "full_name": "pomes/pomes", + "private": false, + "owner": { + "login": "pomes", + "id": 17839846, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE3ODM5ODQ2", + "avatar_url": "https://avatars3.githubusercontent.com/u/17839846?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/pomes", + "html_url": "https://github.com/pomes", + "followers_url": "https://api.github.com/users/pomes/followers", + "following_url": "https://api.github.com/users/pomes/following{/other_user}", + "gists_url": "https://api.github.com/users/pomes/gists{/gist_id}", + "starred_url": "https://api.github.com/users/pomes/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/pomes/subscriptions", + "organizations_url": "https://api.github.com/users/pomes/orgs", + "repos_url": "https://api.github.com/users/pomes/repos", + "events_url": "https://api.github.com/users/pomes/events{/privacy}", + "received_events_url": "https://api.github.com/users/pomes/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/pomes/pomes", + "description": "Pomes provides a library and tools for locating and reviewing Maven POMs", + "fork": false, + "url": "https://api.github.com/repos/pomes/pomes", + "forks_url": "https://api.github.com/repos/pomes/pomes/forks", + "keys_url": "https://api.github.com/repos/pomes/pomes/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/pomes/pomes/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/pomes/pomes/teams", + "hooks_url": "https://api.github.com/repos/pomes/pomes/hooks", + "issue_events_url": "https://api.github.com/repos/pomes/pomes/issues/events{/number}", + "events_url": "https://api.github.com/repos/pomes/pomes/events", + "assignees_url": "https://api.github.com/repos/pomes/pomes/assignees{/user}", + "branches_url": "https://api.github.com/repos/pomes/pomes/branches{/branch}", + "tags_url": "https://api.github.com/repos/pomes/pomes/tags", + "blobs_url": "https://api.github.com/repos/pomes/pomes/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/pomes/pomes/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/pomes/pomes/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/pomes/pomes/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/pomes/pomes/statuses/{sha}", + "languages_url": "https://api.github.com/repos/pomes/pomes/languages", + "stargazers_url": "https://api.github.com/repos/pomes/pomes/stargazers", + "contributors_url": "https://api.github.com/repos/pomes/pomes/contributors", + "subscribers_url": "https://api.github.com/repos/pomes/pomes/subscribers", + "subscription_url": "https://api.github.com/repos/pomes/pomes/subscription", + "commits_url": "https://api.github.com/repos/pomes/pomes/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/pomes/pomes/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/pomes/pomes/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/pomes/pomes/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/pomes/pomes/contents/{+path}", + "compare_url": "https://api.github.com/repos/pomes/pomes/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/pomes/pomes/merges", + "archive_url": "https://api.github.com/repos/pomes/pomes/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/pomes/pomes/downloads", + "issues_url": "https://api.github.com/repos/pomes/pomes/issues{/number}", + "pulls_url": "https://api.github.com/repos/pomes/pomes/pulls{/number}", + "milestones_url": "https://api.github.com/repos/pomes/pomes/milestones{/number}", + "notifications_url": "https://api.github.com/repos/pomes/pomes/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/pomes/pomes/labels{/name}", + "releases_url": "https://api.github.com/repos/pomes/pomes/releases{/id}", + "deployments_url": "https://api.github.com/repos/pomes/pomes/deployments", + "created_at": "2016-03-16T08:51:08Z", + "updated_at": "2016-06-26T05:41:12Z", + "pushed_at": "2016-08-14T23:17:04Z", + "git_url": "git://github.com/pomes/pomes.git", + "ssh_url": "git@github.com:pomes/pomes.git", + "clone_url": "https://github.com/pomes/pomes.git", + "svn_url": "https://github.com/pomes/pomes", + "homepage": "https://github.com/pomes/pomes/", + "size": 1049, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Groovy", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 8, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 0, + "open_issues": 8, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + }, + "organization": { + "login": "pomes", + "id": 17839846, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE3ODM5ODQ2", + "avatar_url": "https://avatars3.githubusercontent.com/u/17839846?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/pomes", + "html_url": "https://github.com/pomes", + "followers_url": "https://api.github.com/users/pomes/followers", + "following_url": "https://api.github.com/users/pomes/following{/other_user}", + "gists_url": "https://api.github.com/users/pomes/gists{/gist_id}", + "starred_url": "https://api.github.com/users/pomes/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/pomes/subscriptions", + "organizations_url": "https://api.github.com/users/pomes/orgs", + "repos_url": "https://api.github.com/users/pomes/repos", + "events_url": "https://api.github.com/users/pomes/events{/privacy}", + "received_events_url": "https://api.github.com/users/pomes/received_events", + "type": "Organization", + "site_admin": false + }, + "network_count": 0, + "subscribers_count": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicenseContent/__files/repos_pomes_pomes_license-c59d46f6-2c50-4afd-80b6-40dbfa4dd754.json b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicenseContent/__files/repos_pomes_pomes_license-c59d46f6-2c50-4afd-80b6-40dbfa4dd754.json new file mode 100644 index 0000000000..34cefa04e1 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicenseContent/__files/repos_pomes_pomes_license-c59d46f6-2c50-4afd-80b6-40dbfa4dd754.json @@ -0,0 +1,25 @@ +{ + "name": "LICENSE", + "path": "LICENSE", + "sha": "8371492840f9485d7baf719dc2ae3e4cb9e8c03b", + "size": 11361, + "url": "https://api.github.com/repos/pomes/pomes/contents/LICENSE?ref=master", + "html_url": "https://github.com/pomes/pomes/blob/master/LICENSE", + "git_url": "https://api.github.com/repos/pomes/pomes/git/blobs/8371492840f9485d7baf719dc2ae3e4cb9e8c03b", + "download_url": "https://raw.githubusercontent.com/pomes/pomes/master/LICENSE", + "type": "file", + "content": "CiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIEFwYWNoZSBMaWNl\nbnNlCiAgICAgICAgICAgICAgICAgICAgICAgICAgIFZlcnNpb24gMi4wLCBK\nYW51YXJ5IDIwMDQKICAgICAgICAgICAgICAgICAgICAgICAgaHR0cDovL3d3\ndy5hcGFjaGUub3JnL2xpY2Vuc2VzLwoKICAgVEVSTVMgQU5EIENPTkRJVElP\nTlMgRk9SIFVTRSwgUkVQUk9EVUNUSU9OLCBBTkQgRElTVFJJQlVUSU9OCgog\nICAxLiBEZWZpbml0aW9ucy4KCiAgICAgICJMaWNlbnNlIiBzaGFsbCBtZWFu\nIHRoZSB0ZXJtcyBhbmQgY29uZGl0aW9ucyBmb3IgdXNlLCByZXByb2R1Y3Rp\nb24sCiAgICAgIGFuZCBkaXN0cmlidXRpb24gYXMgZGVmaW5lZCBieSBTZWN0\naW9ucyAxIHRocm91Z2ggOSBvZiB0aGlzIGRvY3VtZW50LgoKICAgICAgIkxp\nY2Vuc29yIiBzaGFsbCBtZWFuIHRoZSBjb3B5cmlnaHQgb3duZXIgb3IgZW50\naXR5IGF1dGhvcml6ZWQgYnkKICAgICAgdGhlIGNvcHlyaWdodCBvd25lciB0\naGF0IGlzIGdyYW50aW5nIHRoZSBMaWNlbnNlLgoKICAgICAgIkxlZ2FsIEVu\ndGl0eSIgc2hhbGwgbWVhbiB0aGUgdW5pb24gb2YgdGhlIGFjdGluZyBlbnRp\ndHkgYW5kIGFsbAogICAgICBvdGhlciBlbnRpdGllcyB0aGF0IGNvbnRyb2ws\nIGFyZSBjb250cm9sbGVkIGJ5LCBvciBhcmUgdW5kZXIgY29tbW9uCiAgICAg\nIGNvbnRyb2wgd2l0aCB0aGF0IGVudGl0eS4gRm9yIHRoZSBwdXJwb3NlcyBv\nZiB0aGlzIGRlZmluaXRpb24sCiAgICAgICJjb250cm9sIiBtZWFucyAoaSkg\ndGhlIHBvd2VyLCBkaXJlY3Qgb3IgaW5kaXJlY3QsIHRvIGNhdXNlIHRoZQog\nICAgICBkaXJlY3Rpb24gb3IgbWFuYWdlbWVudCBvZiBzdWNoIGVudGl0eSwg\nd2hldGhlciBieSBjb250cmFjdCBvcgogICAgICBvdGhlcndpc2UsIG9yIChp\naSkgb3duZXJzaGlwIG9mIGZpZnR5IHBlcmNlbnQgKDUwJSkgb3IgbW9yZSBv\nZiB0aGUKICAgICAgb3V0c3RhbmRpbmcgc2hhcmVzLCBvciAoaWlpKSBiZW5l\nZmljaWFsIG93bmVyc2hpcCBvZiBzdWNoIGVudGl0eS4KCiAgICAgICJZb3Ui\nIChvciAiWW91ciIpIHNoYWxsIG1lYW4gYW4gaW5kaXZpZHVhbCBvciBMZWdh\nbCBFbnRpdHkKICAgICAgZXhlcmNpc2luZyBwZXJtaXNzaW9ucyBncmFudGVk\nIGJ5IHRoaXMgTGljZW5zZS4KCiAgICAgICJTb3VyY2UiIGZvcm0gc2hhbGwg\nbWVhbiB0aGUgcHJlZmVycmVkIGZvcm0gZm9yIG1ha2luZyBtb2RpZmljYXRp\nb25zLAogICAgICBpbmNsdWRpbmcgYnV0IG5vdCBsaW1pdGVkIHRvIHNvZnR3\nYXJlIHNvdXJjZSBjb2RlLCBkb2N1bWVudGF0aW9uCiAgICAgIHNvdXJjZSwg\nYW5kIGNvbmZpZ3VyYXRpb24gZmlsZXMuCgogICAgICAiT2JqZWN0IiBmb3Jt\nIHNoYWxsIG1lYW4gYW55IGZvcm0gcmVzdWx0aW5nIGZyb20gbWVjaGFuaWNh\nbAogICAgICB0cmFuc2Zvcm1hdGlvbiBvciB0cmFuc2xhdGlvbiBvZiBhIFNv\ndXJjZSBmb3JtLCBpbmNsdWRpbmcgYnV0CiAgICAgIG5vdCBsaW1pdGVkIHRv\nIGNvbXBpbGVkIG9iamVjdCBjb2RlLCBnZW5lcmF0ZWQgZG9jdW1lbnRhdGlv\nbiwKICAgICAgYW5kIGNvbnZlcnNpb25zIHRvIG90aGVyIG1lZGlhIHR5cGVz\nLgoKICAgICAgIldvcmsiIHNoYWxsIG1lYW4gdGhlIHdvcmsgb2YgYXV0aG9y\nc2hpcCwgd2hldGhlciBpbiBTb3VyY2Ugb3IKICAgICAgT2JqZWN0IGZvcm0s\nIG1hZGUgYXZhaWxhYmxlIHVuZGVyIHRoZSBMaWNlbnNlLCBhcyBpbmRpY2F0\nZWQgYnkgYQogICAgICBjb3B5cmlnaHQgbm90aWNlIHRoYXQgaXMgaW5jbHVk\nZWQgaW4gb3IgYXR0YWNoZWQgdG8gdGhlIHdvcmsKICAgICAgKGFuIGV4YW1w\nbGUgaXMgcHJvdmlkZWQgaW4gdGhlIEFwcGVuZGl4IGJlbG93KS4KCiAgICAg\nICJEZXJpdmF0aXZlIFdvcmtzIiBzaGFsbCBtZWFuIGFueSB3b3JrLCB3aGV0\naGVyIGluIFNvdXJjZSBvciBPYmplY3QKICAgICAgZm9ybSwgdGhhdCBpcyBi\nYXNlZCBvbiAob3IgZGVyaXZlZCBmcm9tKSB0aGUgV29yayBhbmQgZm9yIHdo\naWNoIHRoZQogICAgICBlZGl0b3JpYWwgcmV2aXNpb25zLCBhbm5vdGF0aW9u\ncywgZWxhYm9yYXRpb25zLCBvciBvdGhlciBtb2RpZmljYXRpb25zCiAgICAg\nIHJlcHJlc2VudCwgYXMgYSB3aG9sZSwgYW4gb3JpZ2luYWwgd29yayBvZiBh\ndXRob3JzaGlwLiBGb3IgdGhlIHB1cnBvc2VzCiAgICAgIG9mIHRoaXMgTGlj\nZW5zZSwgRGVyaXZhdGl2ZSBXb3JrcyBzaGFsbCBub3QgaW5jbHVkZSB3b3Jr\ncyB0aGF0IHJlbWFpbgogICAgICBzZXBhcmFibGUgZnJvbSwgb3IgbWVyZWx5\nIGxpbmsgKG9yIGJpbmQgYnkgdmFsdWUpIHRvIHRoZSBpbnRlcmZhY2VzIG9m\nLAogICAgICB0aGUgV29yayBhbmQgRGVyaXZhdGl2ZSBXb3JrcyB0aGVyZW9m\nLgoKICAgICAgIkNvbnRyaWJ1dGlvbiIgc2hhbGwgbWVhbiBhbnkgd29yayBv\nZiBhdXRob3JzaGlwLCBpbmNsdWRpbmcKICAgICAgdGhlIG9yaWdpbmFsIHZl\ncnNpb24gb2YgdGhlIFdvcmsgYW5kIGFueSBtb2RpZmljYXRpb25zIG9yIGFk\nZGl0aW9ucwogICAgICB0byB0aGF0IFdvcmsgb3IgRGVyaXZhdGl2ZSBXb3Jr\ncyB0aGVyZW9mLCB0aGF0IGlzIGludGVudGlvbmFsbHkKICAgICAgc3VibWl0\ndGVkIHRvIExpY2Vuc29yIGZvciBpbmNsdXNpb24gaW4gdGhlIFdvcmsgYnkg\ndGhlIGNvcHlyaWdodCBvd25lcgogICAgICBvciBieSBhbiBpbmRpdmlkdWFs\nIG9yIExlZ2FsIEVudGl0eSBhdXRob3JpemVkIHRvIHN1Ym1pdCBvbiBiZWhh\nbGYgb2YKICAgICAgdGhlIGNvcHlyaWdodCBvd25lci4gRm9yIHRoZSBwdXJw\nb3NlcyBvZiB0aGlzIGRlZmluaXRpb24sICJzdWJtaXR0ZWQiCiAgICAgIG1l\nYW5zIGFueSBmb3JtIG9mIGVsZWN0cm9uaWMsIHZlcmJhbCwgb3Igd3JpdHRl\nbiBjb21tdW5pY2F0aW9uIHNlbnQKICAgICAgdG8gdGhlIExpY2Vuc29yIG9y\nIGl0cyByZXByZXNlbnRhdGl2ZXMsIGluY2x1ZGluZyBidXQgbm90IGxpbWl0\nZWQgdG8KICAgICAgY29tbXVuaWNhdGlvbiBvbiBlbGVjdHJvbmljIG1haWxp\nbmcgbGlzdHMsIHNvdXJjZSBjb2RlIGNvbnRyb2wgc3lzdGVtcywKICAgICAg\nYW5kIGlzc3VlIHRyYWNraW5nIHN5c3RlbXMgdGhhdCBhcmUgbWFuYWdlZCBi\neSwgb3Igb24gYmVoYWxmIG9mLCB0aGUKICAgICAgTGljZW5zb3IgZm9yIHRo\nZSBwdXJwb3NlIG9mIGRpc2N1c3NpbmcgYW5kIGltcHJvdmluZyB0aGUgV29y\naywgYnV0CiAgICAgIGV4Y2x1ZGluZyBjb21tdW5pY2F0aW9uIHRoYXQgaXMg\nY29uc3BpY3VvdXNseSBtYXJrZWQgb3Igb3RoZXJ3aXNlCiAgICAgIGRlc2ln\nbmF0ZWQgaW4gd3JpdGluZyBieSB0aGUgY29weXJpZ2h0IG93bmVyIGFzICJO\nb3QgYSBDb250cmlidXRpb24uIgoKICAgICAgIkNvbnRyaWJ1dG9yIiBzaGFs\nbCBtZWFuIExpY2Vuc29yIGFuZCBhbnkgaW5kaXZpZHVhbCBvciBMZWdhbCBF\nbnRpdHkKICAgICAgb24gYmVoYWxmIG9mIHdob20gYSBDb250cmlidXRpb24g\naGFzIGJlZW4gcmVjZWl2ZWQgYnkgTGljZW5zb3IgYW5kCiAgICAgIHN1YnNl\ncXVlbnRseSBpbmNvcnBvcmF0ZWQgd2l0aGluIHRoZSBXb3JrLgoKICAgMi4g\nR3JhbnQgb2YgQ29weXJpZ2h0IExpY2Vuc2UuIFN1YmplY3QgdG8gdGhlIHRl\ncm1zIGFuZCBjb25kaXRpb25zIG9mCiAgICAgIHRoaXMgTGljZW5zZSwgZWFj\naCBDb250cmlidXRvciBoZXJlYnkgZ3JhbnRzIHRvIFlvdSBhIHBlcnBldHVh\nbCwKICAgICAgd29ybGR3aWRlLCBub24tZXhjbHVzaXZlLCBuby1jaGFyZ2Us\nIHJveWFsdHktZnJlZSwgaXJyZXZvY2FibGUKICAgICAgY29weXJpZ2h0IGxp\nY2Vuc2UgdG8gcmVwcm9kdWNlLCBwcmVwYXJlIERlcml2YXRpdmUgV29ya3Mg\nb2YsCiAgICAgIHB1YmxpY2x5IGRpc3BsYXksIHB1YmxpY2x5IHBlcmZvcm0s\nIHN1YmxpY2Vuc2UsIGFuZCBkaXN0cmlidXRlIHRoZQogICAgICBXb3JrIGFu\nZCBzdWNoIERlcml2YXRpdmUgV29ya3MgaW4gU291cmNlIG9yIE9iamVjdCBm\nb3JtLgoKICAgMy4gR3JhbnQgb2YgUGF0ZW50IExpY2Vuc2UuIFN1YmplY3Qg\ndG8gdGhlIHRlcm1zIGFuZCBjb25kaXRpb25zIG9mCiAgICAgIHRoaXMgTGlj\nZW5zZSwgZWFjaCBDb250cmlidXRvciBoZXJlYnkgZ3JhbnRzIHRvIFlvdSBh\nIHBlcnBldHVhbCwKICAgICAgd29ybGR3aWRlLCBub24tZXhjbHVzaXZlLCBu\nby1jaGFyZ2UsIHJveWFsdHktZnJlZSwgaXJyZXZvY2FibGUKICAgICAgKGV4\nY2VwdCBhcyBzdGF0ZWQgaW4gdGhpcyBzZWN0aW9uKSBwYXRlbnQgbGljZW5z\nZSB0byBtYWtlLCBoYXZlIG1hZGUsCiAgICAgIHVzZSwgb2ZmZXIgdG8gc2Vs\nbCwgc2VsbCwgaW1wb3J0LCBhbmQgb3RoZXJ3aXNlIHRyYW5zZmVyIHRoZSBX\nb3JrLAogICAgICB3aGVyZSBzdWNoIGxpY2Vuc2UgYXBwbGllcyBvbmx5IHRv\nIHRob3NlIHBhdGVudCBjbGFpbXMgbGljZW5zYWJsZQogICAgICBieSBzdWNo\nIENvbnRyaWJ1dG9yIHRoYXQgYXJlIG5lY2Vzc2FyaWx5IGluZnJpbmdlZCBi\neSB0aGVpcgogICAgICBDb250cmlidXRpb24ocykgYWxvbmUgb3IgYnkgY29t\nYmluYXRpb24gb2YgdGhlaXIgQ29udHJpYnV0aW9uKHMpCiAgICAgIHdpdGgg\ndGhlIFdvcmsgdG8gd2hpY2ggc3VjaCBDb250cmlidXRpb24ocykgd2FzIHN1\nYm1pdHRlZC4gSWYgWW91CiAgICAgIGluc3RpdHV0ZSBwYXRlbnQgbGl0aWdh\ndGlvbiBhZ2FpbnN0IGFueSBlbnRpdHkgKGluY2x1ZGluZyBhCiAgICAgIGNy\nb3NzLWNsYWltIG9yIGNvdW50ZXJjbGFpbSBpbiBhIGxhd3N1aXQpIGFsbGVn\naW5nIHRoYXQgdGhlIFdvcmsKICAgICAgb3IgYSBDb250cmlidXRpb24gaW5j\nb3Jwb3JhdGVkIHdpdGhpbiB0aGUgV29yayBjb25zdGl0dXRlcyBkaXJlY3QK\nICAgICAgb3IgY29udHJpYnV0b3J5IHBhdGVudCBpbmZyaW5nZW1lbnQsIHRo\nZW4gYW55IHBhdGVudCBsaWNlbnNlcwogICAgICBncmFudGVkIHRvIFlvdSB1\nbmRlciB0aGlzIExpY2Vuc2UgZm9yIHRoYXQgV29yayBzaGFsbCB0ZXJtaW5h\ndGUKICAgICAgYXMgb2YgdGhlIGRhdGUgc3VjaCBsaXRpZ2F0aW9uIGlzIGZp\nbGVkLgoKICAgNC4gUmVkaXN0cmlidXRpb24uIFlvdSBtYXkgcmVwcm9kdWNl\nIGFuZCBkaXN0cmlidXRlIGNvcGllcyBvZiB0aGUKICAgICAgV29yayBvciBE\nZXJpdmF0aXZlIFdvcmtzIHRoZXJlb2YgaW4gYW55IG1lZGl1bSwgd2l0aCBv\nciB3aXRob3V0CiAgICAgIG1vZGlmaWNhdGlvbnMsIGFuZCBpbiBTb3VyY2Ug\nb3IgT2JqZWN0IGZvcm0sIHByb3ZpZGVkIHRoYXQgWW91CiAgICAgIG1lZXQg\ndGhlIGZvbGxvd2luZyBjb25kaXRpb25zOgoKICAgICAgKGEpIFlvdSBtdXN0\nIGdpdmUgYW55IG90aGVyIHJlY2lwaWVudHMgb2YgdGhlIFdvcmsgb3IKICAg\nICAgICAgIERlcml2YXRpdmUgV29ya3MgYSBjb3B5IG9mIHRoaXMgTGljZW5z\nZTsgYW5kCgogICAgICAoYikgWW91IG11c3QgY2F1c2UgYW55IG1vZGlmaWVk\nIGZpbGVzIHRvIGNhcnJ5IHByb21pbmVudCBub3RpY2VzCiAgICAgICAgICBz\ndGF0aW5nIHRoYXQgWW91IGNoYW5nZWQgdGhlIGZpbGVzOyBhbmQKCiAgICAg\nIChjKSBZb3UgbXVzdCByZXRhaW4sIGluIHRoZSBTb3VyY2UgZm9ybSBvZiBh\nbnkgRGVyaXZhdGl2ZSBXb3JrcwogICAgICAgICAgdGhhdCBZb3UgZGlzdHJp\nYnV0ZSwgYWxsIGNvcHlyaWdodCwgcGF0ZW50LCB0cmFkZW1hcmssIGFuZAog\nICAgICAgICAgYXR0cmlidXRpb24gbm90aWNlcyBmcm9tIHRoZSBTb3VyY2Ug\nZm9ybSBvZiB0aGUgV29yaywKICAgICAgICAgIGV4Y2x1ZGluZyB0aG9zZSBu\nb3RpY2VzIHRoYXQgZG8gbm90IHBlcnRhaW4gdG8gYW55IHBhcnQgb2YKICAg\nICAgICAgIHRoZSBEZXJpdmF0aXZlIFdvcmtzOyBhbmQKCiAgICAgIChkKSBJ\nZiB0aGUgV29yayBpbmNsdWRlcyBhICJOT1RJQ0UiIHRleHQgZmlsZSBhcyBw\nYXJ0IG9mIGl0cwogICAgICAgICAgZGlzdHJpYnV0aW9uLCB0aGVuIGFueSBE\nZXJpdmF0aXZlIFdvcmtzIHRoYXQgWW91IGRpc3RyaWJ1dGUgbXVzdAogICAg\nICAgICAgaW5jbHVkZSBhIHJlYWRhYmxlIGNvcHkgb2YgdGhlIGF0dHJpYnV0\naW9uIG5vdGljZXMgY29udGFpbmVkCiAgICAgICAgICB3aXRoaW4gc3VjaCBO\nT1RJQ0UgZmlsZSwgZXhjbHVkaW5nIHRob3NlIG5vdGljZXMgdGhhdCBkbyBu\nb3QKICAgICAgICAgIHBlcnRhaW4gdG8gYW55IHBhcnQgb2YgdGhlIERlcml2\nYXRpdmUgV29ya3MsIGluIGF0IGxlYXN0IG9uZQogICAgICAgICAgb2YgdGhl\nIGZvbGxvd2luZyBwbGFjZXM6IHdpdGhpbiBhIE5PVElDRSB0ZXh0IGZpbGUg\nZGlzdHJpYnV0ZWQKICAgICAgICAgIGFzIHBhcnQgb2YgdGhlIERlcml2YXRp\ndmUgV29ya3M7IHdpdGhpbiB0aGUgU291cmNlIGZvcm0gb3IKICAgICAgICAg\nIGRvY3VtZW50YXRpb24sIGlmIHByb3ZpZGVkIGFsb25nIHdpdGggdGhlIERl\ncml2YXRpdmUgV29ya3M7IG9yLAogICAgICAgICAgd2l0aGluIGEgZGlzcGxh\neSBnZW5lcmF0ZWQgYnkgdGhlIERlcml2YXRpdmUgV29ya3MsIGlmIGFuZAog\nICAgICAgICAgd2hlcmV2ZXIgc3VjaCB0aGlyZC1wYXJ0eSBub3RpY2VzIG5v\ncm1hbGx5IGFwcGVhci4gVGhlIGNvbnRlbnRzCiAgICAgICAgICBvZiB0aGUg\nTk9USUNFIGZpbGUgYXJlIGZvciBpbmZvcm1hdGlvbmFsIHB1cnBvc2VzIG9u\nbHkgYW5kCiAgICAgICAgICBkbyBub3QgbW9kaWZ5IHRoZSBMaWNlbnNlLiBZ\nb3UgbWF5IGFkZCBZb3VyIG93biBhdHRyaWJ1dGlvbgogICAgICAgICAgbm90\naWNlcyB3aXRoaW4gRGVyaXZhdGl2ZSBXb3JrcyB0aGF0IFlvdSBkaXN0cmli\ndXRlLCBhbG9uZ3NpZGUKICAgICAgICAgIG9yIGFzIGFuIGFkZGVuZHVtIHRv\nIHRoZSBOT1RJQ0UgdGV4dCBmcm9tIHRoZSBXb3JrLCBwcm92aWRlZAogICAg\nICAgICAgdGhhdCBzdWNoIGFkZGl0aW9uYWwgYXR0cmlidXRpb24gbm90aWNl\ncyBjYW5ub3QgYmUgY29uc3RydWVkCiAgICAgICAgICBhcyBtb2RpZnlpbmcg\ndGhlIExpY2Vuc2UuCgogICAgICBZb3UgbWF5IGFkZCBZb3VyIG93biBjb3B5\ncmlnaHQgc3RhdGVtZW50IHRvIFlvdXIgbW9kaWZpY2F0aW9ucyBhbmQKICAg\nICAgbWF5IHByb3ZpZGUgYWRkaXRpb25hbCBvciBkaWZmZXJlbnQgbGljZW5z\nZSB0ZXJtcyBhbmQgY29uZGl0aW9ucwogICAgICBmb3IgdXNlLCByZXByb2R1\nY3Rpb24sIG9yIGRpc3RyaWJ1dGlvbiBvZiBZb3VyIG1vZGlmaWNhdGlvbnMs\nIG9yCiAgICAgIGZvciBhbnkgc3VjaCBEZXJpdmF0aXZlIFdvcmtzIGFzIGEg\nd2hvbGUsIHByb3ZpZGVkIFlvdXIgdXNlLAogICAgICByZXByb2R1Y3Rpb24s\nIGFuZCBkaXN0cmlidXRpb24gb2YgdGhlIFdvcmsgb3RoZXJ3aXNlIGNvbXBs\naWVzIHdpdGgKICAgICAgdGhlIGNvbmRpdGlvbnMgc3RhdGVkIGluIHRoaXMg\nTGljZW5zZS4KCiAgIDUuIFN1Ym1pc3Npb24gb2YgQ29udHJpYnV0aW9ucy4g\nVW5sZXNzIFlvdSBleHBsaWNpdGx5IHN0YXRlIG90aGVyd2lzZSwKICAgICAg\nYW55IENvbnRyaWJ1dGlvbiBpbnRlbnRpb25hbGx5IHN1Ym1pdHRlZCBmb3Ig\naW5jbHVzaW9uIGluIHRoZSBXb3JrCiAgICAgIGJ5IFlvdSB0byB0aGUgTGlj\nZW5zb3Igc2hhbGwgYmUgdW5kZXIgdGhlIHRlcm1zIGFuZCBjb25kaXRpb25z\nIG9mCiAgICAgIHRoaXMgTGljZW5zZSwgd2l0aG91dCBhbnkgYWRkaXRpb25h\nbCB0ZXJtcyBvciBjb25kaXRpb25zLgogICAgICBOb3R3aXRoc3RhbmRpbmcg\ndGhlIGFib3ZlLCBub3RoaW5nIGhlcmVpbiBzaGFsbCBzdXBlcnNlZGUgb3Ig\nbW9kaWZ5CiAgICAgIHRoZSB0ZXJtcyBvZiBhbnkgc2VwYXJhdGUgbGljZW5z\nZSBhZ3JlZW1lbnQgeW91IG1heSBoYXZlIGV4ZWN1dGVkCiAgICAgIHdpdGgg\nTGljZW5zb3IgcmVnYXJkaW5nIHN1Y2ggQ29udHJpYnV0aW9ucy4KCiAgIDYu\nIFRyYWRlbWFya3MuIFRoaXMgTGljZW5zZSBkb2VzIG5vdCBncmFudCBwZXJt\naXNzaW9uIHRvIHVzZSB0aGUgdHJhZGUKICAgICAgbmFtZXMsIHRyYWRlbWFy\na3MsIHNlcnZpY2UgbWFya3MsIG9yIHByb2R1Y3QgbmFtZXMgb2YgdGhlIExp\nY2Vuc29yLAogICAgICBleGNlcHQgYXMgcmVxdWlyZWQgZm9yIHJlYXNvbmFi\nbGUgYW5kIGN1c3RvbWFyeSB1c2UgaW4gZGVzY3JpYmluZyB0aGUKICAgICAg\nb3JpZ2luIG9mIHRoZSBXb3JrIGFuZCByZXByb2R1Y2luZyB0aGUgY29udGVu\ndCBvZiB0aGUgTk9USUNFIGZpbGUuCgogICA3LiBEaXNjbGFpbWVyIG9mIFdh\ncnJhbnR5LiBVbmxlc3MgcmVxdWlyZWQgYnkgYXBwbGljYWJsZSBsYXcgb3IK\nICAgICAgYWdyZWVkIHRvIGluIHdyaXRpbmcsIExpY2Vuc29yIHByb3ZpZGVz\nIHRoZSBXb3JrIChhbmQgZWFjaAogICAgICBDb250cmlidXRvciBwcm92aWRl\ncyBpdHMgQ29udHJpYnV0aW9ucykgb24gYW4gIkFTIElTIiBCQVNJUywKICAg\nICAgV0lUSE9VVCBXQVJSQU5USUVTIE9SIENPTkRJVElPTlMgT0YgQU5ZIEtJ\nTkQsIGVpdGhlciBleHByZXNzIG9yCiAgICAgIGltcGxpZWQsIGluY2x1ZGlu\nZywgd2l0aG91dCBsaW1pdGF0aW9uLCBhbnkgd2FycmFudGllcyBvciBjb25k\naXRpb25zCiAgICAgIG9mIFRJVExFLCBOT04tSU5GUklOR0VNRU5ULCBNRVJD\nSEFOVEFCSUxJVFksIG9yIEZJVE5FU1MgRk9SIEEKICAgICAgUEFSVElDVUxB\nUiBQVVJQT1NFLiBZb3UgYXJlIHNvbGVseSByZXNwb25zaWJsZSBmb3IgZGV0\nZXJtaW5pbmcgdGhlCiAgICAgIGFwcHJvcHJpYXRlbmVzcyBvZiB1c2luZyBv\nciByZWRpc3RyaWJ1dGluZyB0aGUgV29yayBhbmQgYXNzdW1lIGFueQogICAg\nICByaXNrcyBhc3NvY2lhdGVkIHdpdGggWW91ciBleGVyY2lzZSBvZiBwZXJt\naXNzaW9ucyB1bmRlciB0aGlzIExpY2Vuc2UuCgogICA4LiBMaW1pdGF0aW9u\nIG9mIExpYWJpbGl0eS4gSW4gbm8gZXZlbnQgYW5kIHVuZGVyIG5vIGxlZ2Fs\nIHRoZW9yeSwKICAgICAgd2hldGhlciBpbiB0b3J0IChpbmNsdWRpbmcgbmVn\nbGlnZW5jZSksIGNvbnRyYWN0LCBvciBvdGhlcndpc2UsCiAgICAgIHVubGVz\ncyByZXF1aXJlZCBieSBhcHBsaWNhYmxlIGxhdyAoc3VjaCBhcyBkZWxpYmVy\nYXRlIGFuZCBncm9zc2x5CiAgICAgIG5lZ2xpZ2VudCBhY3RzKSBvciBhZ3Jl\nZWQgdG8gaW4gd3JpdGluZywgc2hhbGwgYW55IENvbnRyaWJ1dG9yIGJlCiAg\nICAgIGxpYWJsZSB0byBZb3UgZm9yIGRhbWFnZXMsIGluY2x1ZGluZyBhbnkg\nZGlyZWN0LCBpbmRpcmVjdCwgc3BlY2lhbCwKICAgICAgaW5jaWRlbnRhbCwg\nb3IgY29uc2VxdWVudGlhbCBkYW1hZ2VzIG9mIGFueSBjaGFyYWN0ZXIgYXJp\nc2luZyBhcyBhCiAgICAgIHJlc3VsdCBvZiB0aGlzIExpY2Vuc2Ugb3Igb3V0\nIG9mIHRoZSB1c2Ugb3IgaW5hYmlsaXR5IHRvIHVzZSB0aGUKICAgICAgV29y\nayAoaW5jbHVkaW5nIGJ1dCBub3QgbGltaXRlZCB0byBkYW1hZ2VzIGZvciBs\nb3NzIG9mIGdvb2R3aWxsLAogICAgICB3b3JrIHN0b3BwYWdlLCBjb21wdXRl\nciBmYWlsdXJlIG9yIG1hbGZ1bmN0aW9uLCBvciBhbnkgYW5kIGFsbAogICAg\nICBvdGhlciBjb21tZXJjaWFsIGRhbWFnZXMgb3IgbG9zc2VzKSwgZXZlbiBp\nZiBzdWNoIENvbnRyaWJ1dG9yCiAgICAgIGhhcyBiZWVuIGFkdmlzZWQgb2Yg\ndGhlIHBvc3NpYmlsaXR5IG9mIHN1Y2ggZGFtYWdlcy4KCiAgIDkuIEFjY2Vw\ndGluZyBXYXJyYW50eSBvciBBZGRpdGlvbmFsIExpYWJpbGl0eS4gV2hpbGUg\ncmVkaXN0cmlidXRpbmcKICAgICAgdGhlIFdvcmsgb3IgRGVyaXZhdGl2ZSBX\nb3JrcyB0aGVyZW9mLCBZb3UgbWF5IGNob29zZSB0byBvZmZlciwKICAgICAg\nYW5kIGNoYXJnZSBhIGZlZSBmb3IsIGFjY2VwdGFuY2Ugb2Ygc3VwcG9ydCwg\nd2FycmFudHksIGluZGVtbml0eSwKICAgICAgb3Igb3RoZXIgbGlhYmlsaXR5\nIG9ibGlnYXRpb25zIGFuZC9vciByaWdodHMgY29uc2lzdGVudCB3aXRoIHRo\naXMKICAgICAgTGljZW5zZS4gSG93ZXZlciwgaW4gYWNjZXB0aW5nIHN1Y2gg\nb2JsaWdhdGlvbnMsIFlvdSBtYXkgYWN0IG9ubHkKICAgICAgb24gWW91ciBv\nd24gYmVoYWxmIGFuZCBvbiBZb3VyIHNvbGUgcmVzcG9uc2liaWxpdHksIG5v\ndCBvbiBiZWhhbGYKICAgICAgb2YgYW55IG90aGVyIENvbnRyaWJ1dG9yLCBh\nbmQgb25seSBpZiBZb3UgYWdyZWUgdG8gaW5kZW1uaWZ5LAogICAgICBkZWZl\nbmQsIGFuZCBob2xkIGVhY2ggQ29udHJpYnV0b3IgaGFybWxlc3MgZm9yIGFu\neSBsaWFiaWxpdHkKICAgICAgaW5jdXJyZWQgYnksIG9yIGNsYWltcyBhc3Nl\ncnRlZCBhZ2FpbnN0LCBzdWNoIENvbnRyaWJ1dG9yIGJ5IHJlYXNvbgogICAg\nICBvZiB5b3VyIGFjY2VwdGluZyBhbnkgc3VjaCB3YXJyYW50eSBvciBhZGRp\ndGlvbmFsIGxpYWJpbGl0eS4KCiAgIEVORCBPRiBURVJNUyBBTkQgQ09ORElU\nSU9OUwoKICAgQVBQRU5ESVg6IEhvdyB0byBhcHBseSB0aGUgQXBhY2hlIExp\nY2Vuc2UgdG8geW91ciB3b3JrLgoKICAgICAgVG8gYXBwbHkgdGhlIEFwYWNo\nZSBMaWNlbnNlIHRvIHlvdXIgd29yaywgYXR0YWNoIHRoZSBmb2xsb3dpbmcK\nICAgICAgYm9pbGVycGxhdGUgbm90aWNlLCB3aXRoIHRoZSBmaWVsZHMgZW5j\nbG9zZWQgYnkgYnJhY2tldHMgIltdIgogICAgICByZXBsYWNlZCB3aXRoIHlv\ndXIgb3duIGlkZW50aWZ5aW5nIGluZm9ybWF0aW9uLiAoRG9uJ3QgaW5jbHVk\nZQogICAgICB0aGUgYnJhY2tldHMhKSAgVGhlIHRleHQgc2hvdWxkIGJlIGVu\nY2xvc2VkIGluIHRoZSBhcHByb3ByaWF0ZQogICAgICBjb21tZW50IHN5bnRh\neCBmb3IgdGhlIGZpbGUgZm9ybWF0LiBXZSBhbHNvIHJlY29tbWVuZCB0aGF0\nIGEKICAgICAgZmlsZSBvciBjbGFzcyB2YWx1ZSBhbmQgZGVzY3JpcHRpb24g\nb2YgcHVycG9zZSBiZSBpbmNsdWRlZCBvbiB0aGUKICAgICAgc2FtZSAicHJp\nbnRlZCBwYWdlIiBhcyB0aGUgY29weXJpZ2h0IG5vdGljZSBmb3IgZWFzaWVy\nCiAgICAgIGlkZW50aWZpY2F0aW9uIHdpdGhpbiB0aGlyZC1wYXJ0eSBhcmNo\naXZlcy4KCiAgIENvcHlyaWdodCBbeXl5eV0gW3ZhbHVlIG9mIGNvcHlyaWdo\ndCBvd25lcl0KCiAgIExpY2Vuc2VkIHVuZGVyIHRoZSBBcGFjaGUgTGljZW5z\nZSwgVmVyc2lvbiAyLjAgKHRoZSAiTGljZW5zZSIpOwogICB5b3UgbWF5IG5v\ndCB1c2UgdGhpcyBmaWxlIGV4Y2VwdCBpbiBjb21wbGlhbmNlIHdpdGggdGhl\nIExpY2Vuc2UuCiAgIFlvdSBtYXkgb2J0YWluIGEgY29weSBvZiB0aGUgTGlj\nZW5zZSBhdAoKICAgICAgIGh0dHA6Ly93d3cuYXBhY2hlLm9yZy9saWNlbnNl\ncy9MSUNFTlNFLTIuMAoKICAgVW5sZXNzIHJlcXVpcmVkIGJ5IGFwcGxpY2Fi\nbGUgbGF3IG9yIGFncmVlZCB0byBpbiB3cml0aW5nLCBzb2Z0d2FyZQogICBk\naXN0cmlidXRlZCB1bmRlciB0aGUgTGljZW5zZSBpcyBkaXN0cmlidXRlZCBv\nbiBhbiAiQVMgSVMiIEJBU0lTLAogICBXSVRIT1VUIFdBUlJBTlRJRVMgT1Ig\nQ09ORElUSU9OUyBPRiBBTlkgS0lORCwgZWl0aGVyIGV4cHJlc3Mgb3IgaW1w\nbGllZC4KICAgU2VlIHRoZSBMaWNlbnNlIGZvciB0aGUgc3BlY2lmaWMgbGFu\nZ3VhZ2UgZ292ZXJuaW5nIHBlcm1pc3Npb25zIGFuZAogICBsaW1pdGF0aW9u\ncyB1bmRlciB0aGUgTGljZW5zZS4K\n", + "encoding": "base64", + "_links": { + "self": "https://api.github.com/repos/pomes/pomes/contents/LICENSE?ref=master", + "git": "https://api.github.com/repos/pomes/pomes/git/blobs/8371492840f9485d7baf719dc2ae3e4cb9e8c03b", + "html": "https://github.com/pomes/pomes/blob/master/LICENSE" + }, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicenseContent/__files/user-767d6575-bd87-4641-a940-a567ff936667.json b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicenseContent/__files/user-767d6575-bd87-4641-a940-a567ff936667.json new file mode 100644 index 0000000000..41fc9e3d00 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicenseContent/__files/user-767d6575-bd87-4641-a940-a567ff936667.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 168, + "public_gists": 4, + "followers": 136, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicenseContent/mappings/repos_pomes_pomes-2-7c3e7b.json b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicenseContent/mappings/repos_pomes_pomes-2-7c3e7b.json new file mode 100644 index 0000000000..2771b8c27a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicenseContent/mappings/repos_pomes_pomes-2-7c3e7b.json @@ -0,0 +1,43 @@ +{ + "id": "7c3e7b36-6930-4804-8d6e-83075abfcde8", + "name": "repos_pomes_pomes", + "request": { + "url": "/repos/pomes/pomes", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_pomes_pomes-7c3e7b36-6930-4804-8d6e-83075abfcde8.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:29:36 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4576", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"66e425cde189cc71851c3869a89f8541\"", + "Last-Modified": "Sun, 26 Jun 2016 05:41:12 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C167:78ED:1CE7E5A:2277637:5D978180" + } + }, + "uuid": "7c3e7b36-6930-4804-8d6e-83075abfcde8", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicenseContent/mappings/repos_pomes_pomes_license-3-c59d46.json b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicenseContent/mappings/repos_pomes_pomes_license-3-c59d46.json new file mode 100644 index 0000000000..2f6f97ae41 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicenseContent/mappings/repos_pomes_pomes_license-3-c59d46.json @@ -0,0 +1,43 @@ +{ + "id": "c59d46f6-2c50-4afd-80b6-40dbfa4dd754", + "name": "repos_pomes_pomes_license", + "request": { + "url": "/repos/pomes/pomes/license", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_pomes_pomes_license-c59d46f6-2c50-4afd-80b6-40dbfa4dd754.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:29:36 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4575", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"9c9e74dccdac3dc6904a9b3926a63906\"", + "Last-Modified": "Sun, 14 Aug 2016 23:16:59 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C167:78ED:1CE7E70:2277667:5D978180" + } + }, + "uuid": "c59d46f6-2c50-4afd-80b6-40dbfa4dd754", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicenseContent/mappings/user-1-767d65.json b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicenseContent/mappings/user-1-767d65.json new file mode 100644 index 0000000000..fa06ce977e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicenseContent/mappings/user-1-767d65.json @@ -0,0 +1,43 @@ +{ + "id": "767d6575-bd87-4641-a940-a567ff936667", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-767d6575-bd87-4641-a940-a567ff936667.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:29:36 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4578", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"af0c41afcacb8ceee14b7d896719c3bd\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C167:78ED:1CE7E34:2277624:5D978180" + } + }, + "uuid": "767d6575-bd87-4641-a940-a567ff936667", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicenseContent_raw/__files/pomes_pomes_master_license-050b93b9-0d3b-4dd2-bde1-a220548659e4.txt b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicenseContent_raw/__files/pomes_pomes_master_license-050b93b9-0d3b-4dd2-bde1-a220548659e4.txt new file mode 100644 index 0000000000..8371492840 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicenseContent_raw/__files/pomes_pomes_master_license-050b93b9-0d3b-4dd2-bde1-a220548659e4.txt @@ -0,0 +1,202 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by value) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class value and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [value of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicenseContent_raw/mappings/pomes_pomes_master_license-1-050b93.json b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicenseContent_raw/mappings/pomes_pomes_master_license-1-050b93.json new file mode 100644 index 0000000000..021d4f13ce --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicenseContent_raw/mappings/pomes_pomes_master_license-1-050b93.json @@ -0,0 +1,40 @@ +{ + "id": "050b93b9-0d3b-4dd2-bde1-a220548659e4", + "name": "pomes_pomes_master_license", + "request": { + "url": "/pomes/pomes/master/LICENSE", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "pomes_pomes_master_license-050b93b9-0d3b-4dd2-bde1-a220548659e4.txt", + "headers": { + "Content-Security-Policy": "default-src 'none'; style-src 'unsafe-inline'; sandbox", + "Strict-Transport-Security": "max-age=31536000", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-XSS-Protection": "1; mode=block", + "ETag": "\"8371492840f9485d7baf719dc2ae3e4cb9e8c03b\"", + "Content-Type": "text/plain; charset=utf-8", + "Cache-Control": "max-age=300", + "X-Geo-Block-List": "", + "X-GitHub-Request-Id": "D052:95E9:35B030:3EB19C:5D97BE56", + "Accept-Ranges": "bytes", + "Date": "Fri, 04 Oct 2019 21:51:06 GMT", + "Via": "1.1 varnish", + "Connection": "keep-alive", + "X-Served-By": "cache-sea1029-SEA", + "X-Cache": "HIT", + "X-Cache-Hits": "1", + "X-Timer": "S1570225867.643479,VS0,VE1", + "Vary": "Authorization,Accept-Encoding", + "Access-Control-Allow-Origin": "*", + "X-Fastly-Request-ID": "ed4498a6662707a954a7a5c0303bd74ec724215a", + "Expires": "Fri, 04 Oct 2019 21:56:06 GMT", + "Source-Age": "116" + } + }, + "uuid": "050b93b9-0d3b-4dd2-bde1-a220548659e4", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicensePomes/__files/repos_pomes_pomes-c9deed07-bd75-4016-bc8e-ee09b582b604.json b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicensePomes/__files/repos_pomes_pomes-c9deed07-bd75-4016-bc8e-ee09b582b604.json new file mode 100644 index 0000000000..cfc7decc75 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicensePomes/__files/repos_pomes_pomes-c9deed07-bd75-4016-bc8e-ee09b582b604.json @@ -0,0 +1,127 @@ +{ + "id": 54015549, + "node_id": "MDEwOlJlcG9zaXRvcnk1NDAxNTU0OQ==", + "name": "pomes", + "full_name": "pomes/pomes", + "private": false, + "owner": { + "login": "pomes", + "id": 17839846, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE3ODM5ODQ2", + "avatar_url": "https://avatars3.githubusercontent.com/u/17839846?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/pomes", + "html_url": "https://github.com/pomes", + "followers_url": "https://api.github.com/users/pomes/followers", + "following_url": "https://api.github.com/users/pomes/following{/other_user}", + "gists_url": "https://api.github.com/users/pomes/gists{/gist_id}", + "starred_url": "https://api.github.com/users/pomes/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/pomes/subscriptions", + "organizations_url": "https://api.github.com/users/pomes/orgs", + "repos_url": "https://api.github.com/users/pomes/repos", + "events_url": "https://api.github.com/users/pomes/events{/privacy}", + "received_events_url": "https://api.github.com/users/pomes/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/pomes/pomes", + "description": "Pomes provides a library and tools for locating and reviewing Maven POMs", + "fork": false, + "url": "https://api.github.com/repos/pomes/pomes", + "forks_url": "https://api.github.com/repos/pomes/pomes/forks", + "keys_url": "https://api.github.com/repos/pomes/pomes/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/pomes/pomes/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/pomes/pomes/teams", + "hooks_url": "https://api.github.com/repos/pomes/pomes/hooks", + "issue_events_url": "https://api.github.com/repos/pomes/pomes/issues/events{/number}", + "events_url": "https://api.github.com/repos/pomes/pomes/events", + "assignees_url": "https://api.github.com/repos/pomes/pomes/assignees{/user}", + "branches_url": "https://api.github.com/repos/pomes/pomes/branches{/branch}", + "tags_url": "https://api.github.com/repos/pomes/pomes/tags", + "blobs_url": "https://api.github.com/repos/pomes/pomes/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/pomes/pomes/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/pomes/pomes/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/pomes/pomes/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/pomes/pomes/statuses/{sha}", + "languages_url": "https://api.github.com/repos/pomes/pomes/languages", + "stargazers_url": "https://api.github.com/repos/pomes/pomes/stargazers", + "contributors_url": "https://api.github.com/repos/pomes/pomes/contributors", + "subscribers_url": "https://api.github.com/repos/pomes/pomes/subscribers", + "subscription_url": "https://api.github.com/repos/pomes/pomes/subscription", + "commits_url": "https://api.github.com/repos/pomes/pomes/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/pomes/pomes/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/pomes/pomes/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/pomes/pomes/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/pomes/pomes/contents/{+path}", + "compare_url": "https://api.github.com/repos/pomes/pomes/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/pomes/pomes/merges", + "archive_url": "https://api.github.com/repos/pomes/pomes/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/pomes/pomes/downloads", + "issues_url": "https://api.github.com/repos/pomes/pomes/issues{/number}", + "pulls_url": "https://api.github.com/repos/pomes/pomes/pulls{/number}", + "milestones_url": "https://api.github.com/repos/pomes/pomes/milestones{/number}", + "notifications_url": "https://api.github.com/repos/pomes/pomes/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/pomes/pomes/labels{/name}", + "releases_url": "https://api.github.com/repos/pomes/pomes/releases{/id}", + "deployments_url": "https://api.github.com/repos/pomes/pomes/deployments", + "created_at": "2016-03-16T08:51:08Z", + "updated_at": "2016-06-26T05:41:12Z", + "pushed_at": "2016-08-14T23:17:04Z", + "git_url": "git://github.com/pomes/pomes.git", + "ssh_url": "git@github.com:pomes/pomes.git", + "clone_url": "https://github.com/pomes/pomes.git", + "svn_url": "https://github.com/pomes/pomes", + "homepage": "https://github.com/pomes/pomes/", + "size": 1049, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Groovy", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 8, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 0, + "open_issues": 8, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + }, + "organization": { + "login": "pomes", + "id": 17839846, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE3ODM5ODQ2", + "avatar_url": "https://avatars3.githubusercontent.com/u/17839846?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/pomes", + "html_url": "https://github.com/pomes", + "followers_url": "https://api.github.com/users/pomes/followers", + "following_url": "https://api.github.com/users/pomes/following{/other_user}", + "gists_url": "https://api.github.com/users/pomes/gists{/gist_id}", + "starred_url": "https://api.github.com/users/pomes/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/pomes/subscriptions", + "organizations_url": "https://api.github.com/users/pomes/orgs", + "repos_url": "https://api.github.com/users/pomes/repos", + "events_url": "https://api.github.com/users/pomes/events{/privacy}", + "received_events_url": "https://api.github.com/users/pomes/received_events", + "type": "Organization", + "site_admin": false + }, + "network_count": 0, + "subscribers_count": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicensePomes/__files/repos_pomes_pomes_license-47a3f209-8281-4238-b926-f199992b4cdf.json b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicensePomes/__files/repos_pomes_pomes_license-47a3f209-8281-4238-b926-f199992b4cdf.json new file mode 100644 index 0000000000..34cefa04e1 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicensePomes/__files/repos_pomes_pomes_license-47a3f209-8281-4238-b926-f199992b4cdf.json @@ -0,0 +1,25 @@ +{ + "name": "LICENSE", + "path": "LICENSE", + "sha": "8371492840f9485d7baf719dc2ae3e4cb9e8c03b", + "size": 11361, + "url": "https://api.github.com/repos/pomes/pomes/contents/LICENSE?ref=master", + "html_url": "https://github.com/pomes/pomes/blob/master/LICENSE", + "git_url": "https://api.github.com/repos/pomes/pomes/git/blobs/8371492840f9485d7baf719dc2ae3e4cb9e8c03b", + "download_url": "https://raw.githubusercontent.com/pomes/pomes/master/LICENSE", + "type": "file", + "content": "CiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIEFwYWNoZSBMaWNl\nbnNlCiAgICAgICAgICAgICAgICAgICAgICAgICAgIFZlcnNpb24gMi4wLCBK\nYW51YXJ5IDIwMDQKICAgICAgICAgICAgICAgICAgICAgICAgaHR0cDovL3d3\ndy5hcGFjaGUub3JnL2xpY2Vuc2VzLwoKICAgVEVSTVMgQU5EIENPTkRJVElP\nTlMgRk9SIFVTRSwgUkVQUk9EVUNUSU9OLCBBTkQgRElTVFJJQlVUSU9OCgog\nICAxLiBEZWZpbml0aW9ucy4KCiAgICAgICJMaWNlbnNlIiBzaGFsbCBtZWFu\nIHRoZSB0ZXJtcyBhbmQgY29uZGl0aW9ucyBmb3IgdXNlLCByZXByb2R1Y3Rp\nb24sCiAgICAgIGFuZCBkaXN0cmlidXRpb24gYXMgZGVmaW5lZCBieSBTZWN0\naW9ucyAxIHRocm91Z2ggOSBvZiB0aGlzIGRvY3VtZW50LgoKICAgICAgIkxp\nY2Vuc29yIiBzaGFsbCBtZWFuIHRoZSBjb3B5cmlnaHQgb3duZXIgb3IgZW50\naXR5IGF1dGhvcml6ZWQgYnkKICAgICAgdGhlIGNvcHlyaWdodCBvd25lciB0\naGF0IGlzIGdyYW50aW5nIHRoZSBMaWNlbnNlLgoKICAgICAgIkxlZ2FsIEVu\ndGl0eSIgc2hhbGwgbWVhbiB0aGUgdW5pb24gb2YgdGhlIGFjdGluZyBlbnRp\ndHkgYW5kIGFsbAogICAgICBvdGhlciBlbnRpdGllcyB0aGF0IGNvbnRyb2ws\nIGFyZSBjb250cm9sbGVkIGJ5LCBvciBhcmUgdW5kZXIgY29tbW9uCiAgICAg\nIGNvbnRyb2wgd2l0aCB0aGF0IGVudGl0eS4gRm9yIHRoZSBwdXJwb3NlcyBv\nZiB0aGlzIGRlZmluaXRpb24sCiAgICAgICJjb250cm9sIiBtZWFucyAoaSkg\ndGhlIHBvd2VyLCBkaXJlY3Qgb3IgaW5kaXJlY3QsIHRvIGNhdXNlIHRoZQog\nICAgICBkaXJlY3Rpb24gb3IgbWFuYWdlbWVudCBvZiBzdWNoIGVudGl0eSwg\nd2hldGhlciBieSBjb250cmFjdCBvcgogICAgICBvdGhlcndpc2UsIG9yIChp\naSkgb3duZXJzaGlwIG9mIGZpZnR5IHBlcmNlbnQgKDUwJSkgb3IgbW9yZSBv\nZiB0aGUKICAgICAgb3V0c3RhbmRpbmcgc2hhcmVzLCBvciAoaWlpKSBiZW5l\nZmljaWFsIG93bmVyc2hpcCBvZiBzdWNoIGVudGl0eS4KCiAgICAgICJZb3Ui\nIChvciAiWW91ciIpIHNoYWxsIG1lYW4gYW4gaW5kaXZpZHVhbCBvciBMZWdh\nbCBFbnRpdHkKICAgICAgZXhlcmNpc2luZyBwZXJtaXNzaW9ucyBncmFudGVk\nIGJ5IHRoaXMgTGljZW5zZS4KCiAgICAgICJTb3VyY2UiIGZvcm0gc2hhbGwg\nbWVhbiB0aGUgcHJlZmVycmVkIGZvcm0gZm9yIG1ha2luZyBtb2RpZmljYXRp\nb25zLAogICAgICBpbmNsdWRpbmcgYnV0IG5vdCBsaW1pdGVkIHRvIHNvZnR3\nYXJlIHNvdXJjZSBjb2RlLCBkb2N1bWVudGF0aW9uCiAgICAgIHNvdXJjZSwg\nYW5kIGNvbmZpZ3VyYXRpb24gZmlsZXMuCgogICAgICAiT2JqZWN0IiBmb3Jt\nIHNoYWxsIG1lYW4gYW55IGZvcm0gcmVzdWx0aW5nIGZyb20gbWVjaGFuaWNh\nbAogICAgICB0cmFuc2Zvcm1hdGlvbiBvciB0cmFuc2xhdGlvbiBvZiBhIFNv\ndXJjZSBmb3JtLCBpbmNsdWRpbmcgYnV0CiAgICAgIG5vdCBsaW1pdGVkIHRv\nIGNvbXBpbGVkIG9iamVjdCBjb2RlLCBnZW5lcmF0ZWQgZG9jdW1lbnRhdGlv\nbiwKICAgICAgYW5kIGNvbnZlcnNpb25zIHRvIG90aGVyIG1lZGlhIHR5cGVz\nLgoKICAgICAgIldvcmsiIHNoYWxsIG1lYW4gdGhlIHdvcmsgb2YgYXV0aG9y\nc2hpcCwgd2hldGhlciBpbiBTb3VyY2Ugb3IKICAgICAgT2JqZWN0IGZvcm0s\nIG1hZGUgYXZhaWxhYmxlIHVuZGVyIHRoZSBMaWNlbnNlLCBhcyBpbmRpY2F0\nZWQgYnkgYQogICAgICBjb3B5cmlnaHQgbm90aWNlIHRoYXQgaXMgaW5jbHVk\nZWQgaW4gb3IgYXR0YWNoZWQgdG8gdGhlIHdvcmsKICAgICAgKGFuIGV4YW1w\nbGUgaXMgcHJvdmlkZWQgaW4gdGhlIEFwcGVuZGl4IGJlbG93KS4KCiAgICAg\nICJEZXJpdmF0aXZlIFdvcmtzIiBzaGFsbCBtZWFuIGFueSB3b3JrLCB3aGV0\naGVyIGluIFNvdXJjZSBvciBPYmplY3QKICAgICAgZm9ybSwgdGhhdCBpcyBi\nYXNlZCBvbiAob3IgZGVyaXZlZCBmcm9tKSB0aGUgV29yayBhbmQgZm9yIHdo\naWNoIHRoZQogICAgICBlZGl0b3JpYWwgcmV2aXNpb25zLCBhbm5vdGF0aW9u\ncywgZWxhYm9yYXRpb25zLCBvciBvdGhlciBtb2RpZmljYXRpb25zCiAgICAg\nIHJlcHJlc2VudCwgYXMgYSB3aG9sZSwgYW4gb3JpZ2luYWwgd29yayBvZiBh\ndXRob3JzaGlwLiBGb3IgdGhlIHB1cnBvc2VzCiAgICAgIG9mIHRoaXMgTGlj\nZW5zZSwgRGVyaXZhdGl2ZSBXb3JrcyBzaGFsbCBub3QgaW5jbHVkZSB3b3Jr\ncyB0aGF0IHJlbWFpbgogICAgICBzZXBhcmFibGUgZnJvbSwgb3IgbWVyZWx5\nIGxpbmsgKG9yIGJpbmQgYnkgdmFsdWUpIHRvIHRoZSBpbnRlcmZhY2VzIG9m\nLAogICAgICB0aGUgV29yayBhbmQgRGVyaXZhdGl2ZSBXb3JrcyB0aGVyZW9m\nLgoKICAgICAgIkNvbnRyaWJ1dGlvbiIgc2hhbGwgbWVhbiBhbnkgd29yayBv\nZiBhdXRob3JzaGlwLCBpbmNsdWRpbmcKICAgICAgdGhlIG9yaWdpbmFsIHZl\ncnNpb24gb2YgdGhlIFdvcmsgYW5kIGFueSBtb2RpZmljYXRpb25zIG9yIGFk\nZGl0aW9ucwogICAgICB0byB0aGF0IFdvcmsgb3IgRGVyaXZhdGl2ZSBXb3Jr\ncyB0aGVyZW9mLCB0aGF0IGlzIGludGVudGlvbmFsbHkKICAgICAgc3VibWl0\ndGVkIHRvIExpY2Vuc29yIGZvciBpbmNsdXNpb24gaW4gdGhlIFdvcmsgYnkg\ndGhlIGNvcHlyaWdodCBvd25lcgogICAgICBvciBieSBhbiBpbmRpdmlkdWFs\nIG9yIExlZ2FsIEVudGl0eSBhdXRob3JpemVkIHRvIHN1Ym1pdCBvbiBiZWhh\nbGYgb2YKICAgICAgdGhlIGNvcHlyaWdodCBvd25lci4gRm9yIHRoZSBwdXJw\nb3NlcyBvZiB0aGlzIGRlZmluaXRpb24sICJzdWJtaXR0ZWQiCiAgICAgIG1l\nYW5zIGFueSBmb3JtIG9mIGVsZWN0cm9uaWMsIHZlcmJhbCwgb3Igd3JpdHRl\nbiBjb21tdW5pY2F0aW9uIHNlbnQKICAgICAgdG8gdGhlIExpY2Vuc29yIG9y\nIGl0cyByZXByZXNlbnRhdGl2ZXMsIGluY2x1ZGluZyBidXQgbm90IGxpbWl0\nZWQgdG8KICAgICAgY29tbXVuaWNhdGlvbiBvbiBlbGVjdHJvbmljIG1haWxp\nbmcgbGlzdHMsIHNvdXJjZSBjb2RlIGNvbnRyb2wgc3lzdGVtcywKICAgICAg\nYW5kIGlzc3VlIHRyYWNraW5nIHN5c3RlbXMgdGhhdCBhcmUgbWFuYWdlZCBi\neSwgb3Igb24gYmVoYWxmIG9mLCB0aGUKICAgICAgTGljZW5zb3IgZm9yIHRo\nZSBwdXJwb3NlIG9mIGRpc2N1c3NpbmcgYW5kIGltcHJvdmluZyB0aGUgV29y\naywgYnV0CiAgICAgIGV4Y2x1ZGluZyBjb21tdW5pY2F0aW9uIHRoYXQgaXMg\nY29uc3BpY3VvdXNseSBtYXJrZWQgb3Igb3RoZXJ3aXNlCiAgICAgIGRlc2ln\nbmF0ZWQgaW4gd3JpdGluZyBieSB0aGUgY29weXJpZ2h0IG93bmVyIGFzICJO\nb3QgYSBDb250cmlidXRpb24uIgoKICAgICAgIkNvbnRyaWJ1dG9yIiBzaGFs\nbCBtZWFuIExpY2Vuc29yIGFuZCBhbnkgaW5kaXZpZHVhbCBvciBMZWdhbCBF\nbnRpdHkKICAgICAgb24gYmVoYWxmIG9mIHdob20gYSBDb250cmlidXRpb24g\naGFzIGJlZW4gcmVjZWl2ZWQgYnkgTGljZW5zb3IgYW5kCiAgICAgIHN1YnNl\ncXVlbnRseSBpbmNvcnBvcmF0ZWQgd2l0aGluIHRoZSBXb3JrLgoKICAgMi4g\nR3JhbnQgb2YgQ29weXJpZ2h0IExpY2Vuc2UuIFN1YmplY3QgdG8gdGhlIHRl\ncm1zIGFuZCBjb25kaXRpb25zIG9mCiAgICAgIHRoaXMgTGljZW5zZSwgZWFj\naCBDb250cmlidXRvciBoZXJlYnkgZ3JhbnRzIHRvIFlvdSBhIHBlcnBldHVh\nbCwKICAgICAgd29ybGR3aWRlLCBub24tZXhjbHVzaXZlLCBuby1jaGFyZ2Us\nIHJveWFsdHktZnJlZSwgaXJyZXZvY2FibGUKICAgICAgY29weXJpZ2h0IGxp\nY2Vuc2UgdG8gcmVwcm9kdWNlLCBwcmVwYXJlIERlcml2YXRpdmUgV29ya3Mg\nb2YsCiAgICAgIHB1YmxpY2x5IGRpc3BsYXksIHB1YmxpY2x5IHBlcmZvcm0s\nIHN1YmxpY2Vuc2UsIGFuZCBkaXN0cmlidXRlIHRoZQogICAgICBXb3JrIGFu\nZCBzdWNoIERlcml2YXRpdmUgV29ya3MgaW4gU291cmNlIG9yIE9iamVjdCBm\nb3JtLgoKICAgMy4gR3JhbnQgb2YgUGF0ZW50IExpY2Vuc2UuIFN1YmplY3Qg\ndG8gdGhlIHRlcm1zIGFuZCBjb25kaXRpb25zIG9mCiAgICAgIHRoaXMgTGlj\nZW5zZSwgZWFjaCBDb250cmlidXRvciBoZXJlYnkgZ3JhbnRzIHRvIFlvdSBh\nIHBlcnBldHVhbCwKICAgICAgd29ybGR3aWRlLCBub24tZXhjbHVzaXZlLCBu\nby1jaGFyZ2UsIHJveWFsdHktZnJlZSwgaXJyZXZvY2FibGUKICAgICAgKGV4\nY2VwdCBhcyBzdGF0ZWQgaW4gdGhpcyBzZWN0aW9uKSBwYXRlbnQgbGljZW5z\nZSB0byBtYWtlLCBoYXZlIG1hZGUsCiAgICAgIHVzZSwgb2ZmZXIgdG8gc2Vs\nbCwgc2VsbCwgaW1wb3J0LCBhbmQgb3RoZXJ3aXNlIHRyYW5zZmVyIHRoZSBX\nb3JrLAogICAgICB3aGVyZSBzdWNoIGxpY2Vuc2UgYXBwbGllcyBvbmx5IHRv\nIHRob3NlIHBhdGVudCBjbGFpbXMgbGljZW5zYWJsZQogICAgICBieSBzdWNo\nIENvbnRyaWJ1dG9yIHRoYXQgYXJlIG5lY2Vzc2FyaWx5IGluZnJpbmdlZCBi\neSB0aGVpcgogICAgICBDb250cmlidXRpb24ocykgYWxvbmUgb3IgYnkgY29t\nYmluYXRpb24gb2YgdGhlaXIgQ29udHJpYnV0aW9uKHMpCiAgICAgIHdpdGgg\ndGhlIFdvcmsgdG8gd2hpY2ggc3VjaCBDb250cmlidXRpb24ocykgd2FzIHN1\nYm1pdHRlZC4gSWYgWW91CiAgICAgIGluc3RpdHV0ZSBwYXRlbnQgbGl0aWdh\ndGlvbiBhZ2FpbnN0IGFueSBlbnRpdHkgKGluY2x1ZGluZyBhCiAgICAgIGNy\nb3NzLWNsYWltIG9yIGNvdW50ZXJjbGFpbSBpbiBhIGxhd3N1aXQpIGFsbGVn\naW5nIHRoYXQgdGhlIFdvcmsKICAgICAgb3IgYSBDb250cmlidXRpb24gaW5j\nb3Jwb3JhdGVkIHdpdGhpbiB0aGUgV29yayBjb25zdGl0dXRlcyBkaXJlY3QK\nICAgICAgb3IgY29udHJpYnV0b3J5IHBhdGVudCBpbmZyaW5nZW1lbnQsIHRo\nZW4gYW55IHBhdGVudCBsaWNlbnNlcwogICAgICBncmFudGVkIHRvIFlvdSB1\nbmRlciB0aGlzIExpY2Vuc2UgZm9yIHRoYXQgV29yayBzaGFsbCB0ZXJtaW5h\ndGUKICAgICAgYXMgb2YgdGhlIGRhdGUgc3VjaCBsaXRpZ2F0aW9uIGlzIGZp\nbGVkLgoKICAgNC4gUmVkaXN0cmlidXRpb24uIFlvdSBtYXkgcmVwcm9kdWNl\nIGFuZCBkaXN0cmlidXRlIGNvcGllcyBvZiB0aGUKICAgICAgV29yayBvciBE\nZXJpdmF0aXZlIFdvcmtzIHRoZXJlb2YgaW4gYW55IG1lZGl1bSwgd2l0aCBv\nciB3aXRob3V0CiAgICAgIG1vZGlmaWNhdGlvbnMsIGFuZCBpbiBTb3VyY2Ug\nb3IgT2JqZWN0IGZvcm0sIHByb3ZpZGVkIHRoYXQgWW91CiAgICAgIG1lZXQg\ndGhlIGZvbGxvd2luZyBjb25kaXRpb25zOgoKICAgICAgKGEpIFlvdSBtdXN0\nIGdpdmUgYW55IG90aGVyIHJlY2lwaWVudHMgb2YgdGhlIFdvcmsgb3IKICAg\nICAgICAgIERlcml2YXRpdmUgV29ya3MgYSBjb3B5IG9mIHRoaXMgTGljZW5z\nZTsgYW5kCgogICAgICAoYikgWW91IG11c3QgY2F1c2UgYW55IG1vZGlmaWVk\nIGZpbGVzIHRvIGNhcnJ5IHByb21pbmVudCBub3RpY2VzCiAgICAgICAgICBz\ndGF0aW5nIHRoYXQgWW91IGNoYW5nZWQgdGhlIGZpbGVzOyBhbmQKCiAgICAg\nIChjKSBZb3UgbXVzdCByZXRhaW4sIGluIHRoZSBTb3VyY2UgZm9ybSBvZiBh\nbnkgRGVyaXZhdGl2ZSBXb3JrcwogICAgICAgICAgdGhhdCBZb3UgZGlzdHJp\nYnV0ZSwgYWxsIGNvcHlyaWdodCwgcGF0ZW50LCB0cmFkZW1hcmssIGFuZAog\nICAgICAgICAgYXR0cmlidXRpb24gbm90aWNlcyBmcm9tIHRoZSBTb3VyY2Ug\nZm9ybSBvZiB0aGUgV29yaywKICAgICAgICAgIGV4Y2x1ZGluZyB0aG9zZSBu\nb3RpY2VzIHRoYXQgZG8gbm90IHBlcnRhaW4gdG8gYW55IHBhcnQgb2YKICAg\nICAgICAgIHRoZSBEZXJpdmF0aXZlIFdvcmtzOyBhbmQKCiAgICAgIChkKSBJ\nZiB0aGUgV29yayBpbmNsdWRlcyBhICJOT1RJQ0UiIHRleHQgZmlsZSBhcyBw\nYXJ0IG9mIGl0cwogICAgICAgICAgZGlzdHJpYnV0aW9uLCB0aGVuIGFueSBE\nZXJpdmF0aXZlIFdvcmtzIHRoYXQgWW91IGRpc3RyaWJ1dGUgbXVzdAogICAg\nICAgICAgaW5jbHVkZSBhIHJlYWRhYmxlIGNvcHkgb2YgdGhlIGF0dHJpYnV0\naW9uIG5vdGljZXMgY29udGFpbmVkCiAgICAgICAgICB3aXRoaW4gc3VjaCBO\nT1RJQ0UgZmlsZSwgZXhjbHVkaW5nIHRob3NlIG5vdGljZXMgdGhhdCBkbyBu\nb3QKICAgICAgICAgIHBlcnRhaW4gdG8gYW55IHBhcnQgb2YgdGhlIERlcml2\nYXRpdmUgV29ya3MsIGluIGF0IGxlYXN0IG9uZQogICAgICAgICAgb2YgdGhl\nIGZvbGxvd2luZyBwbGFjZXM6IHdpdGhpbiBhIE5PVElDRSB0ZXh0IGZpbGUg\nZGlzdHJpYnV0ZWQKICAgICAgICAgIGFzIHBhcnQgb2YgdGhlIERlcml2YXRp\ndmUgV29ya3M7IHdpdGhpbiB0aGUgU291cmNlIGZvcm0gb3IKICAgICAgICAg\nIGRvY3VtZW50YXRpb24sIGlmIHByb3ZpZGVkIGFsb25nIHdpdGggdGhlIERl\ncml2YXRpdmUgV29ya3M7IG9yLAogICAgICAgICAgd2l0aGluIGEgZGlzcGxh\neSBnZW5lcmF0ZWQgYnkgdGhlIERlcml2YXRpdmUgV29ya3MsIGlmIGFuZAog\nICAgICAgICAgd2hlcmV2ZXIgc3VjaCB0aGlyZC1wYXJ0eSBub3RpY2VzIG5v\ncm1hbGx5IGFwcGVhci4gVGhlIGNvbnRlbnRzCiAgICAgICAgICBvZiB0aGUg\nTk9USUNFIGZpbGUgYXJlIGZvciBpbmZvcm1hdGlvbmFsIHB1cnBvc2VzIG9u\nbHkgYW5kCiAgICAgICAgICBkbyBub3QgbW9kaWZ5IHRoZSBMaWNlbnNlLiBZ\nb3UgbWF5IGFkZCBZb3VyIG93biBhdHRyaWJ1dGlvbgogICAgICAgICAgbm90\naWNlcyB3aXRoaW4gRGVyaXZhdGl2ZSBXb3JrcyB0aGF0IFlvdSBkaXN0cmli\ndXRlLCBhbG9uZ3NpZGUKICAgICAgICAgIG9yIGFzIGFuIGFkZGVuZHVtIHRv\nIHRoZSBOT1RJQ0UgdGV4dCBmcm9tIHRoZSBXb3JrLCBwcm92aWRlZAogICAg\nICAgICAgdGhhdCBzdWNoIGFkZGl0aW9uYWwgYXR0cmlidXRpb24gbm90aWNl\ncyBjYW5ub3QgYmUgY29uc3RydWVkCiAgICAgICAgICBhcyBtb2RpZnlpbmcg\ndGhlIExpY2Vuc2UuCgogICAgICBZb3UgbWF5IGFkZCBZb3VyIG93biBjb3B5\ncmlnaHQgc3RhdGVtZW50IHRvIFlvdXIgbW9kaWZpY2F0aW9ucyBhbmQKICAg\nICAgbWF5IHByb3ZpZGUgYWRkaXRpb25hbCBvciBkaWZmZXJlbnQgbGljZW5z\nZSB0ZXJtcyBhbmQgY29uZGl0aW9ucwogICAgICBmb3IgdXNlLCByZXByb2R1\nY3Rpb24sIG9yIGRpc3RyaWJ1dGlvbiBvZiBZb3VyIG1vZGlmaWNhdGlvbnMs\nIG9yCiAgICAgIGZvciBhbnkgc3VjaCBEZXJpdmF0aXZlIFdvcmtzIGFzIGEg\nd2hvbGUsIHByb3ZpZGVkIFlvdXIgdXNlLAogICAgICByZXByb2R1Y3Rpb24s\nIGFuZCBkaXN0cmlidXRpb24gb2YgdGhlIFdvcmsgb3RoZXJ3aXNlIGNvbXBs\naWVzIHdpdGgKICAgICAgdGhlIGNvbmRpdGlvbnMgc3RhdGVkIGluIHRoaXMg\nTGljZW5zZS4KCiAgIDUuIFN1Ym1pc3Npb24gb2YgQ29udHJpYnV0aW9ucy4g\nVW5sZXNzIFlvdSBleHBsaWNpdGx5IHN0YXRlIG90aGVyd2lzZSwKICAgICAg\nYW55IENvbnRyaWJ1dGlvbiBpbnRlbnRpb25hbGx5IHN1Ym1pdHRlZCBmb3Ig\naW5jbHVzaW9uIGluIHRoZSBXb3JrCiAgICAgIGJ5IFlvdSB0byB0aGUgTGlj\nZW5zb3Igc2hhbGwgYmUgdW5kZXIgdGhlIHRlcm1zIGFuZCBjb25kaXRpb25z\nIG9mCiAgICAgIHRoaXMgTGljZW5zZSwgd2l0aG91dCBhbnkgYWRkaXRpb25h\nbCB0ZXJtcyBvciBjb25kaXRpb25zLgogICAgICBOb3R3aXRoc3RhbmRpbmcg\ndGhlIGFib3ZlLCBub3RoaW5nIGhlcmVpbiBzaGFsbCBzdXBlcnNlZGUgb3Ig\nbW9kaWZ5CiAgICAgIHRoZSB0ZXJtcyBvZiBhbnkgc2VwYXJhdGUgbGljZW5z\nZSBhZ3JlZW1lbnQgeW91IG1heSBoYXZlIGV4ZWN1dGVkCiAgICAgIHdpdGgg\nTGljZW5zb3IgcmVnYXJkaW5nIHN1Y2ggQ29udHJpYnV0aW9ucy4KCiAgIDYu\nIFRyYWRlbWFya3MuIFRoaXMgTGljZW5zZSBkb2VzIG5vdCBncmFudCBwZXJt\naXNzaW9uIHRvIHVzZSB0aGUgdHJhZGUKICAgICAgbmFtZXMsIHRyYWRlbWFy\na3MsIHNlcnZpY2UgbWFya3MsIG9yIHByb2R1Y3QgbmFtZXMgb2YgdGhlIExp\nY2Vuc29yLAogICAgICBleGNlcHQgYXMgcmVxdWlyZWQgZm9yIHJlYXNvbmFi\nbGUgYW5kIGN1c3RvbWFyeSB1c2UgaW4gZGVzY3JpYmluZyB0aGUKICAgICAg\nb3JpZ2luIG9mIHRoZSBXb3JrIGFuZCByZXByb2R1Y2luZyB0aGUgY29udGVu\ndCBvZiB0aGUgTk9USUNFIGZpbGUuCgogICA3LiBEaXNjbGFpbWVyIG9mIFdh\ncnJhbnR5LiBVbmxlc3MgcmVxdWlyZWQgYnkgYXBwbGljYWJsZSBsYXcgb3IK\nICAgICAgYWdyZWVkIHRvIGluIHdyaXRpbmcsIExpY2Vuc29yIHByb3ZpZGVz\nIHRoZSBXb3JrIChhbmQgZWFjaAogICAgICBDb250cmlidXRvciBwcm92aWRl\ncyBpdHMgQ29udHJpYnV0aW9ucykgb24gYW4gIkFTIElTIiBCQVNJUywKICAg\nICAgV0lUSE9VVCBXQVJSQU5USUVTIE9SIENPTkRJVElPTlMgT0YgQU5ZIEtJ\nTkQsIGVpdGhlciBleHByZXNzIG9yCiAgICAgIGltcGxpZWQsIGluY2x1ZGlu\nZywgd2l0aG91dCBsaW1pdGF0aW9uLCBhbnkgd2FycmFudGllcyBvciBjb25k\naXRpb25zCiAgICAgIG9mIFRJVExFLCBOT04tSU5GUklOR0VNRU5ULCBNRVJD\nSEFOVEFCSUxJVFksIG9yIEZJVE5FU1MgRk9SIEEKICAgICAgUEFSVElDVUxB\nUiBQVVJQT1NFLiBZb3UgYXJlIHNvbGVseSByZXNwb25zaWJsZSBmb3IgZGV0\nZXJtaW5pbmcgdGhlCiAgICAgIGFwcHJvcHJpYXRlbmVzcyBvZiB1c2luZyBv\nciByZWRpc3RyaWJ1dGluZyB0aGUgV29yayBhbmQgYXNzdW1lIGFueQogICAg\nICByaXNrcyBhc3NvY2lhdGVkIHdpdGggWW91ciBleGVyY2lzZSBvZiBwZXJt\naXNzaW9ucyB1bmRlciB0aGlzIExpY2Vuc2UuCgogICA4LiBMaW1pdGF0aW9u\nIG9mIExpYWJpbGl0eS4gSW4gbm8gZXZlbnQgYW5kIHVuZGVyIG5vIGxlZ2Fs\nIHRoZW9yeSwKICAgICAgd2hldGhlciBpbiB0b3J0IChpbmNsdWRpbmcgbmVn\nbGlnZW5jZSksIGNvbnRyYWN0LCBvciBvdGhlcndpc2UsCiAgICAgIHVubGVz\ncyByZXF1aXJlZCBieSBhcHBsaWNhYmxlIGxhdyAoc3VjaCBhcyBkZWxpYmVy\nYXRlIGFuZCBncm9zc2x5CiAgICAgIG5lZ2xpZ2VudCBhY3RzKSBvciBhZ3Jl\nZWQgdG8gaW4gd3JpdGluZywgc2hhbGwgYW55IENvbnRyaWJ1dG9yIGJlCiAg\nICAgIGxpYWJsZSB0byBZb3UgZm9yIGRhbWFnZXMsIGluY2x1ZGluZyBhbnkg\nZGlyZWN0LCBpbmRpcmVjdCwgc3BlY2lhbCwKICAgICAgaW5jaWRlbnRhbCwg\nb3IgY29uc2VxdWVudGlhbCBkYW1hZ2VzIG9mIGFueSBjaGFyYWN0ZXIgYXJp\nc2luZyBhcyBhCiAgICAgIHJlc3VsdCBvZiB0aGlzIExpY2Vuc2Ugb3Igb3V0\nIG9mIHRoZSB1c2Ugb3IgaW5hYmlsaXR5IHRvIHVzZSB0aGUKICAgICAgV29y\nayAoaW5jbHVkaW5nIGJ1dCBub3QgbGltaXRlZCB0byBkYW1hZ2VzIGZvciBs\nb3NzIG9mIGdvb2R3aWxsLAogICAgICB3b3JrIHN0b3BwYWdlLCBjb21wdXRl\nciBmYWlsdXJlIG9yIG1hbGZ1bmN0aW9uLCBvciBhbnkgYW5kIGFsbAogICAg\nICBvdGhlciBjb21tZXJjaWFsIGRhbWFnZXMgb3IgbG9zc2VzKSwgZXZlbiBp\nZiBzdWNoIENvbnRyaWJ1dG9yCiAgICAgIGhhcyBiZWVuIGFkdmlzZWQgb2Yg\ndGhlIHBvc3NpYmlsaXR5IG9mIHN1Y2ggZGFtYWdlcy4KCiAgIDkuIEFjY2Vw\ndGluZyBXYXJyYW50eSBvciBBZGRpdGlvbmFsIExpYWJpbGl0eS4gV2hpbGUg\ncmVkaXN0cmlidXRpbmcKICAgICAgdGhlIFdvcmsgb3IgRGVyaXZhdGl2ZSBX\nb3JrcyB0aGVyZW9mLCBZb3UgbWF5IGNob29zZSB0byBvZmZlciwKICAgICAg\nYW5kIGNoYXJnZSBhIGZlZSBmb3IsIGFjY2VwdGFuY2Ugb2Ygc3VwcG9ydCwg\nd2FycmFudHksIGluZGVtbml0eSwKICAgICAgb3Igb3RoZXIgbGlhYmlsaXR5\nIG9ibGlnYXRpb25zIGFuZC9vciByaWdodHMgY29uc2lzdGVudCB3aXRoIHRo\naXMKICAgICAgTGljZW5zZS4gSG93ZXZlciwgaW4gYWNjZXB0aW5nIHN1Y2gg\nb2JsaWdhdGlvbnMsIFlvdSBtYXkgYWN0IG9ubHkKICAgICAgb24gWW91ciBv\nd24gYmVoYWxmIGFuZCBvbiBZb3VyIHNvbGUgcmVzcG9uc2liaWxpdHksIG5v\ndCBvbiBiZWhhbGYKICAgICAgb2YgYW55IG90aGVyIENvbnRyaWJ1dG9yLCBh\nbmQgb25seSBpZiBZb3UgYWdyZWUgdG8gaW5kZW1uaWZ5LAogICAgICBkZWZl\nbmQsIGFuZCBob2xkIGVhY2ggQ29udHJpYnV0b3IgaGFybWxlc3MgZm9yIGFu\neSBsaWFiaWxpdHkKICAgICAgaW5jdXJyZWQgYnksIG9yIGNsYWltcyBhc3Nl\ncnRlZCBhZ2FpbnN0LCBzdWNoIENvbnRyaWJ1dG9yIGJ5IHJlYXNvbgogICAg\nICBvZiB5b3VyIGFjY2VwdGluZyBhbnkgc3VjaCB3YXJyYW50eSBvciBhZGRp\ndGlvbmFsIGxpYWJpbGl0eS4KCiAgIEVORCBPRiBURVJNUyBBTkQgQ09ORElU\nSU9OUwoKICAgQVBQRU5ESVg6IEhvdyB0byBhcHBseSB0aGUgQXBhY2hlIExp\nY2Vuc2UgdG8geW91ciB3b3JrLgoKICAgICAgVG8gYXBwbHkgdGhlIEFwYWNo\nZSBMaWNlbnNlIHRvIHlvdXIgd29yaywgYXR0YWNoIHRoZSBmb2xsb3dpbmcK\nICAgICAgYm9pbGVycGxhdGUgbm90aWNlLCB3aXRoIHRoZSBmaWVsZHMgZW5j\nbG9zZWQgYnkgYnJhY2tldHMgIltdIgogICAgICByZXBsYWNlZCB3aXRoIHlv\ndXIgb3duIGlkZW50aWZ5aW5nIGluZm9ybWF0aW9uLiAoRG9uJ3QgaW5jbHVk\nZQogICAgICB0aGUgYnJhY2tldHMhKSAgVGhlIHRleHQgc2hvdWxkIGJlIGVu\nY2xvc2VkIGluIHRoZSBhcHByb3ByaWF0ZQogICAgICBjb21tZW50IHN5bnRh\neCBmb3IgdGhlIGZpbGUgZm9ybWF0LiBXZSBhbHNvIHJlY29tbWVuZCB0aGF0\nIGEKICAgICAgZmlsZSBvciBjbGFzcyB2YWx1ZSBhbmQgZGVzY3JpcHRpb24g\nb2YgcHVycG9zZSBiZSBpbmNsdWRlZCBvbiB0aGUKICAgICAgc2FtZSAicHJp\nbnRlZCBwYWdlIiBhcyB0aGUgY29weXJpZ2h0IG5vdGljZSBmb3IgZWFzaWVy\nCiAgICAgIGlkZW50aWZpY2F0aW9uIHdpdGhpbiB0aGlyZC1wYXJ0eSBhcmNo\naXZlcy4KCiAgIENvcHlyaWdodCBbeXl5eV0gW3ZhbHVlIG9mIGNvcHlyaWdo\ndCBvd25lcl0KCiAgIExpY2Vuc2VkIHVuZGVyIHRoZSBBcGFjaGUgTGljZW5z\nZSwgVmVyc2lvbiAyLjAgKHRoZSAiTGljZW5zZSIpOwogICB5b3UgbWF5IG5v\ndCB1c2UgdGhpcyBmaWxlIGV4Y2VwdCBpbiBjb21wbGlhbmNlIHdpdGggdGhl\nIExpY2Vuc2UuCiAgIFlvdSBtYXkgb2J0YWluIGEgY29weSBvZiB0aGUgTGlj\nZW5zZSBhdAoKICAgICAgIGh0dHA6Ly93d3cuYXBhY2hlLm9yZy9saWNlbnNl\ncy9MSUNFTlNFLTIuMAoKICAgVW5sZXNzIHJlcXVpcmVkIGJ5IGFwcGxpY2Fi\nbGUgbGF3IG9yIGFncmVlZCB0byBpbiB3cml0aW5nLCBzb2Z0d2FyZQogICBk\naXN0cmlidXRlZCB1bmRlciB0aGUgTGljZW5zZSBpcyBkaXN0cmlidXRlZCBv\nbiBhbiAiQVMgSVMiIEJBU0lTLAogICBXSVRIT1VUIFdBUlJBTlRJRVMgT1Ig\nQ09ORElUSU9OUyBPRiBBTlkgS0lORCwgZWl0aGVyIGV4cHJlc3Mgb3IgaW1w\nbGllZC4KICAgU2VlIHRoZSBMaWNlbnNlIGZvciB0aGUgc3BlY2lmaWMgbGFu\nZ3VhZ2UgZ292ZXJuaW5nIHBlcm1pc3Npb25zIGFuZAogICBsaW1pdGF0aW9u\ncyB1bmRlciB0aGUgTGljZW5zZS4K\n", + "encoding": "base64", + "_links": { + "self": "https://api.github.com/repos/pomes/pomes/contents/LICENSE?ref=master", + "git": "https://api.github.com/repos/pomes/pomes/git/blobs/8371492840f9485d7baf719dc2ae3e4cb9e8c03b", + "html": "https://github.com/pomes/pomes/blob/master/LICENSE" + }, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicensePomes/__files/user-f33aa0eb-ef47-4106-b877-b8938a450623.json b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicensePomes/__files/user-f33aa0eb-ef47-4106-b877-b8938a450623.json new file mode 100644 index 0000000000..41fc9e3d00 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicensePomes/__files/user-f33aa0eb-ef47-4106-b877-b8938a450623.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 168, + "public_gists": 4, + "followers": 136, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicensePomes/mappings/repos_pomes_pomes-2-c9deed.json b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicensePomes/mappings/repos_pomes_pomes-2-c9deed.json new file mode 100644 index 0000000000..710799cabb --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicensePomes/mappings/repos_pomes_pomes-2-c9deed.json @@ -0,0 +1,43 @@ +{ + "id": "c9deed07-bd75-4016-bc8e-ee09b582b604", + "name": "repos_pomes_pomes", + "request": { + "url": "/repos/pomes/pomes", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_pomes_pomes-c9deed07-bd75-4016-bc8e-ee09b582b604.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:29:39 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4562", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"66e425cde189cc71851c3869a89f8541\"", + "Last-Modified": "Sun, 26 Jun 2016 05:41:12 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C174:361C:AC6AF8:CD8FD1:5D978182" + } + }, + "uuid": "c9deed07-bd75-4016-bc8e-ee09b582b604", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicensePomes/mappings/repos_pomes_pomes_license-3-47a3f2.json b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicensePomes/mappings/repos_pomes_pomes_license-3-47a3f2.json new file mode 100644 index 0000000000..88cd9be747 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicensePomes/mappings/repos_pomes_pomes_license-3-47a3f2.json @@ -0,0 +1,43 @@ +{ + "id": "47a3f209-8281-4238-b926-f199992b4cdf", + "name": "repos_pomes_pomes_license", + "request": { + "url": "/repos/pomes/pomes/license", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_pomes_pomes_license-47a3f209-8281-4238-b926-f199992b4cdf.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:29:39 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4561", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"9c9e74dccdac3dc6904a9b3926a63906\"", + "Last-Modified": "Sun, 14 Aug 2016 23:16:59 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C174:361C:AC6B02:CD900F:5D978183" + } + }, + "uuid": "47a3f209-8281-4238-b926-f199992b4cdf", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicensePomes/mappings/user-1-f33aa0.json b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicensePomes/mappings/user-1-f33aa0.json new file mode 100644 index 0000000000..191fa4ce8b --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryLicensePomes/mappings/user-1-f33aa0.json @@ -0,0 +1,43 @@ +{ + "id": "f33aa0eb-ef47-4106-b877-b8938a450623", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-f33aa0eb-ef47-4106-b877-b8938a450623.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:29:38 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4564", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"af0c41afcacb8ceee14b7d896719c3bd\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C174:361C:AC6ACA:CD8FC8:5D978182" + } + }, + "uuid": "f33aa0eb-ef47-4106-b877-b8938a450623", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryWithoutLicense/__files/repos_github-api-test-org_empty-ed789279-0e18-43b9-8ee5-4a9a40160834.json b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryWithoutLicense/__files/repos_github-api-test-org_empty-ed789279-0e18-43b9-8ee5-4a9a40160834.json new file mode 100644 index 0000000000..5179da1394 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryWithoutLicense/__files/repos_github-api-test-org_empty-ed789279-0e18-43b9-8ee5-4a9a40160834.json @@ -0,0 +1,124 @@ +{ + "id": 60391080, + "node_id": "MDEwOlJlcG9zaXRvcnk2MDM5MTA4MA==", + "name": "empty", + "full_name": "github-api-test-org/empty", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/empty", + "description": "Repository that has no contributor", + "fork": false, + "url": "https://api.github.com/repos/github-api-test-org/empty", + "forks_url": "https://api.github.com/repos/github-api-test-org/empty/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/empty/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/empty/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/empty/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/empty/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/empty/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/empty/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/empty/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/empty/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/empty/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/empty/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/empty/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/empty/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/empty/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/empty/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/empty/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/empty/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/empty/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/empty/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/empty/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/empty/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/empty/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/empty/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/empty/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/empty/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/empty/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/empty/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/empty/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/empty/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/empty/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/empty/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/empty/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/empty/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/empty/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/empty/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/empty/deployments", + "created_at": "2016-06-04T03:22:22Z", + "updated_at": "2016-06-04T03:22:22Z", + "pushed_at": "2016-06-04T03:22:23Z", + "git_url": "git://github.com/github-api-test-org/empty.git", + "ssh_url": "git@github.com:github-api-test-org/empty.git", + "clone_url": "https://github.com/github-api-test-org/empty.git", + "svn_url": "https://github.com/github-api-test-org/empty", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "network_count": 0, + "subscribers_count": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryWithoutLicense/__files/user-3003d0dd-7267-40ad-a499-e3fb8ce52a3f.json b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryWithoutLicense/__files/user-3003d0dd-7267-40ad-a499-e3fb8ce52a3f.json new file mode 100644 index 0000000000..41fc9e3d00 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryWithoutLicense/__files/user-3003d0dd-7267-40ad-a499-e3fb8ce52a3f.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 168, + "public_gists": 4, + "followers": 136, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryWithoutLicense/mappings/repos_github-api-test-org_empty-2-ed7892.json b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryWithoutLicense/mappings/repos_github-api-test-org_empty-2-ed7892.json new file mode 100644 index 0000000000..b396ce7b77 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryWithoutLicense/mappings/repos_github-api-test-org_empty-2-ed7892.json @@ -0,0 +1,43 @@ +{ + "id": "ed789279-0e18-43b9-8ee5-4a9a40160834", + "name": "repos_github-api-test-org_empty", + "request": { + "url": "/repos/github-api-test-org/empty", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_empty-ed789279-0e18-43b9-8ee5-4a9a40160834.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:29:35 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4580", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"71a57ee919c57e5e9eb076f615232a66\"", + "Last-Modified": "Sat, 04 Jun 2016 03:22:22 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C164:78ED:1CE7E15:22775EE:5D97817F" + } + }, + "uuid": "ed789279-0e18-43b9-8ee5-4a9a40160834", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryWithoutLicense/mappings/repos_github-api-test-org_empty_license-3-fb7ab8.json b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryWithoutLicense/mappings/repos_github-api-test-org_empty_license-3-fb7ab8.json new file mode 100644 index 0000000000..3374cb9d2c --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryWithoutLicense/mappings/repos_github-api-test-org_empty_license-3-fb7ab8.json @@ -0,0 +1,36 @@ +{ + "id": "fb7ab87e-4ea2-4c1a-8b5e-a3116734964d", + "name": "repos_github-api-test-org_empty_license", + "request": { + "url": "/repos/github-api-test-org/empty/license", + "method": "GET" + }, + "response": { + "status": 404, + "body": "{\"message\":\"Not Found\",\"documentation_url\":\"https://developer.github.com/v3/licenses/#get-the-contents-of-a-repositorys-license\"}", + "headers": { + "Date": "Fri, 04 Oct 2019 17:29:36 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4579", + "X-RateLimit-Reset": "1570212957", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C164:78ED:1CE7E25:2277611:5D97817F" + } + }, + "uuid": "fb7ab87e-4ea2-4c1a-8b5e-a3116734964d", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryWithoutLicense/mappings/user-1-3003d0.json b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryWithoutLicense/mappings/user-1-3003d0.json new file mode 100644 index 0000000000..badb8bc2b5 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/checkRepositoryWithoutLicense/mappings/user-1-3003d0.json @@ -0,0 +1,43 @@ +{ + "id": "3003d0dd-7267-40ad-a499-e3fb8ce52a3f", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-3003d0dd-7267-40ad-a499-e3fb8ce52a3f.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:29:35 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4582", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"af0c41afcacb8ceee14b7d896719c3bd\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C164:78ED:1CE7DF6:22775DB:5D97817F" + } + }, + "uuid": "3003d0dd-7267-40ad-a499-e3fb8ce52a3f", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/getLicense/__files/licenses_mit-2182eadf-58a8-487f-89af-e6f6e8c527fe.json b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/getLicense/__files/licenses_mit-2182eadf-58a8-487f-89af-e6f6e8c527fe.json new file mode 100644 index 0000000000..b8c174e94b --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/getLicense/__files/licenses_mit-2182eadf-58a8-487f-89af-e6f6e8c527fe.json @@ -0,0 +1,25 @@ +{ + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz", + "html_url": "http://choosealicense.com/licenses/mit/", + "description": "A short and simple permissive license with conditions only requiring preservation of copyright and license notices. Licensed works, modifications, and larger works may be distributed under different terms and without source code.", + "implementation": "Create a text file (typically named LICENSE or LICENSE.txt) in the root of your source code and copy the text of the license into the file. Replace [year] with the current year and [fullname] with the name (or names) of the copyright holders.", + "permissions": [ + "commercial-use", + "modifications", + "distribution", + "private-use" + ], + "conditions": [ + "include-copyright" + ], + "limitations": [ + "liability", + "warranty" + ], + "body": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n", + "featured": true +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/getLicense/__files/user-38876ae8-0962-4f1b-97cf-78ca1fb1fcb9.json b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/getLicense/__files/user-38876ae8-0962-4f1b-97cf-78ca1fb1fcb9.json new file mode 100644 index 0000000000..41fc9e3d00 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/getLicense/__files/user-38876ae8-0962-4f1b-97cf-78ca1fb1fcb9.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 168, + "public_gists": 4, + "followers": 136, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/getLicense/mappings/licenses_mit-2-2182ea.json b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/getLicense/mappings/licenses_mit-2-2182ea.json new file mode 100644 index 0000000000..8e57d98cef --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/getLicense/mappings/licenses_mit-2-2182ea.json @@ -0,0 +1,42 @@ +{ + "id": "2182eadf-58a8-487f-89af-e6f6e8c527fe", + "name": "licenses_mit", + "request": { + "url": "/licenses/mit", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "licenses_mit-2182eadf-58a8-487f-89af-e6f6e8c527fe.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:29:38 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4565", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"cdc71ea0b0e60f4cdbf00107bcf1035c\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C171:9576:93A2DE:B07C4A:5D978182" + } + }, + "uuid": "2182eadf-58a8-487f-89af-e6f6e8c527fe", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/getLicense/mappings/user-1-38876a.json b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/getLicense/mappings/user-1-38876a.json new file mode 100644 index 0000000000..8c6e8ac28f --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/getLicense/mappings/user-1-38876a.json @@ -0,0 +1,43 @@ +{ + "id": "38876ae8-0962-4f1b-97cf-78ca1fb1fcb9", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-38876ae8-0962-4f1b-97cf-78ca1fb1fcb9.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:29:38 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4567", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"af0c41afcacb8ceee14b7d896719c3bd\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C171:9576:93A2D3:B07C45:5D978182" + } + }, + "uuid": "38876ae8-0962-4f1b-97cf-78ca1fb1fcb9", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/listLicenses/__files/licenses-b3d307b7-ab1a-4a9e-9b89-d0a7e8fcd2e8.json b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/listLicenses/__files/licenses-b3d307b7-ab1a-4a9e-9b89-d0a7e8fcd2e8.json new file mode 100644 index 0000000000..cdbd51e907 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/listLicenses/__files/licenses-b3d307b7-ab1a-4a9e-9b89-d0a7e8fcd2e8.json @@ -0,0 +1,86 @@ +[ + { + "key": "agpl-3.0", + "name": "GNU Affero General Public License v3.0", + "spdx_id": "AGPL-3.0", + "url": "https://api.github.com/licenses/agpl-3.0", + "node_id": "MDc6TGljZW5zZTE=" + }, + { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + { + "key": "bsd-2-clause", + "name": "BSD 2-Clause \"Simplified\" License", + "spdx_id": "BSD-2-Clause", + "url": "https://api.github.com/licenses/bsd-2-clause", + "node_id": "MDc6TGljZW5zZTQ=" + }, + { + "key": "bsd-3-clause", + "name": "BSD 3-Clause \"New\" or \"Revised\" License", + "spdx_id": "BSD-3-Clause", + "url": "https://api.github.com/licenses/bsd-3-clause", + "node_id": "MDc6TGljZW5zZTU=" + }, + { + "key": "epl-2.0", + "name": "Eclipse Public License 2.0", + "spdx_id": "EPL-2.0", + "url": "https://api.github.com/licenses/epl-2.0", + "node_id": "MDc6TGljZW5zZTMy" + }, + { + "key": "gpl-2.0", + "name": "GNU General Public License v2.0", + "spdx_id": "GPL-2.0", + "url": "https://api.github.com/licenses/gpl-2.0", + "node_id": "MDc6TGljZW5zZTg=" + }, + { + "key": "gpl-3.0", + "name": "GNU General Public License v3.0", + "spdx_id": "GPL-3.0", + "url": "https://api.github.com/licenses/gpl-3.0", + "node_id": "MDc6TGljZW5zZTk=" + }, + { + "key": "lgpl-2.1", + "name": "GNU Lesser General Public License v2.1", + "spdx_id": "LGPL-2.1", + "url": "https://api.github.com/licenses/lgpl-2.1", + "node_id": "MDc6TGljZW5zZTEx" + }, + { + "key": "lgpl-3.0", + "name": "GNU Lesser General Public License v3.0", + "spdx_id": "LGPL-3.0", + "url": "https://api.github.com/licenses/lgpl-3.0", + "node_id": "MDc6TGljZW5zZTEy" + }, + { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + { + "key": "mpl-2.0", + "name": "Mozilla Public License 2.0", + "spdx_id": "MPL-2.0", + "url": "https://api.github.com/licenses/mpl-2.0", + "node_id": "MDc6TGljZW5zZTE0" + }, + { + "key": "unlicense", + "name": "The Unlicense", + "spdx_id": "Unlicense", + "url": "https://api.github.com/licenses/unlicense", + "node_id": "MDc6TGljZW5zZTE1" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/listLicenses/__files/user-dfe7f772-b859-48ce-919e-54ccde4cdd28.json b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/listLicenses/__files/user-dfe7f772-b859-48ce-919e-54ccde4cdd28.json new file mode 100644 index 0000000000..41fc9e3d00 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/listLicenses/__files/user-dfe7f772-b859-48ce-919e-54ccde4cdd28.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 168, + "public_gists": 4, + "followers": 136, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/listLicenses/mappings/licenses-2-b3d307.json b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/listLicenses/mappings/licenses-2-b3d307.json new file mode 100644 index 0000000000..789b180eec --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/listLicenses/mappings/licenses-2-b3d307.json @@ -0,0 +1,42 @@ +{ + "id": "b3d307b7-ab1a-4a9e-9b89-d0a7e8fcd2e8", + "name": "licenses", + "request": { + "url": "/licenses", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "licenses-b3d307b7-ab1a-4a9e-9b89-d0a7e8fcd2e8.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:29:40 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4558", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"817ce11d2bcbc6e73bfd956126377438\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C177:67D6:1D2C942:22B621B:5D978183" + } + }, + "uuid": "b3d307b7-ab1a-4a9e-9b89-d0a7e8fcd2e8", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/listLicenses/mappings/user-1-dfe7f7.json b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/listLicenses/mappings/user-1-dfe7f7.json new file mode 100644 index 0000000000..864b3732a8 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/listLicenses/mappings/user-1-dfe7f7.json @@ -0,0 +1,43 @@ +{ + "id": "dfe7f772-b859-48ce-919e-54ccde4cdd28", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-dfe7f772-b859-48ce-919e-54ccde4cdd28.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:29:39 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4560", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"af0c41afcacb8ceee14b7d896719c3bd\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C177:67D6:1D2C91A:22B6203:5D978183" + } + }, + "uuid": "dfe7f772-b859-48ce-919e-54ccde4cdd28", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/listLicensesCheckIndividualLicense/__files/licenses-f00fa680-0dd6-401b-a35f-1ed72d7587a7.json b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/listLicensesCheckIndividualLicense/__files/licenses-f00fa680-0dd6-401b-a35f-1ed72d7587a7.json new file mode 100644 index 0000000000..cdbd51e907 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/listLicensesCheckIndividualLicense/__files/licenses-f00fa680-0dd6-401b-a35f-1ed72d7587a7.json @@ -0,0 +1,86 @@ +[ + { + "key": "agpl-3.0", + "name": "GNU Affero General Public License v3.0", + "spdx_id": "AGPL-3.0", + "url": "https://api.github.com/licenses/agpl-3.0", + "node_id": "MDc6TGljZW5zZTE=" + }, + { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + { + "key": "bsd-2-clause", + "name": "BSD 2-Clause \"Simplified\" License", + "spdx_id": "BSD-2-Clause", + "url": "https://api.github.com/licenses/bsd-2-clause", + "node_id": "MDc6TGljZW5zZTQ=" + }, + { + "key": "bsd-3-clause", + "name": "BSD 3-Clause \"New\" or \"Revised\" License", + "spdx_id": "BSD-3-Clause", + "url": "https://api.github.com/licenses/bsd-3-clause", + "node_id": "MDc6TGljZW5zZTU=" + }, + { + "key": "epl-2.0", + "name": "Eclipse Public License 2.0", + "spdx_id": "EPL-2.0", + "url": "https://api.github.com/licenses/epl-2.0", + "node_id": "MDc6TGljZW5zZTMy" + }, + { + "key": "gpl-2.0", + "name": "GNU General Public License v2.0", + "spdx_id": "GPL-2.0", + "url": "https://api.github.com/licenses/gpl-2.0", + "node_id": "MDc6TGljZW5zZTg=" + }, + { + "key": "gpl-3.0", + "name": "GNU General Public License v3.0", + "spdx_id": "GPL-3.0", + "url": "https://api.github.com/licenses/gpl-3.0", + "node_id": "MDc6TGljZW5zZTk=" + }, + { + "key": "lgpl-2.1", + "name": "GNU Lesser General Public License v2.1", + "spdx_id": "LGPL-2.1", + "url": "https://api.github.com/licenses/lgpl-2.1", + "node_id": "MDc6TGljZW5zZTEx" + }, + { + "key": "lgpl-3.0", + "name": "GNU Lesser General Public License v3.0", + "spdx_id": "LGPL-3.0", + "url": "https://api.github.com/licenses/lgpl-3.0", + "node_id": "MDc6TGljZW5zZTEy" + }, + { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + { + "key": "mpl-2.0", + "name": "Mozilla Public License 2.0", + "spdx_id": "MPL-2.0", + "url": "https://api.github.com/licenses/mpl-2.0", + "node_id": "MDc6TGljZW5zZTE0" + }, + { + "key": "unlicense", + "name": "The Unlicense", + "spdx_id": "Unlicense", + "url": "https://api.github.com/licenses/unlicense", + "node_id": "MDc6TGljZW5zZTE1" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/listLicensesCheckIndividualLicense/__files/user-b8102c16-0e43-4f4d-96c1-7d6cfb5981c2.json b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/listLicensesCheckIndividualLicense/__files/user-b8102c16-0e43-4f4d-96c1-7d6cfb5981c2.json new file mode 100644 index 0000000000..41fc9e3d00 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/listLicensesCheckIndividualLicense/__files/user-b8102c16-0e43-4f4d-96c1-7d6cfb5981c2.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 168, + "public_gists": 4, + "followers": 136, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/listLicensesCheckIndividualLicense/mappings/licenses-2-f00fa6.json b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/listLicensesCheckIndividualLicense/mappings/licenses-2-f00fa6.json new file mode 100644 index 0000000000..c7138f1249 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/listLicensesCheckIndividualLicense/mappings/licenses-2-f00fa6.json @@ -0,0 +1,42 @@ +{ + "id": "f00fa680-0dd6-401b-a35f-1ed72d7587a7", + "name": "licenses", + "request": { + "url": "/licenses", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "licenses-f00fa680-0dd6-401b-a35f-1ed72d7587a7.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:29:38 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4568", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"817ce11d2bcbc6e73bfd956126377438\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C16E:78E9:15A3A1A:19D2447:5D978181" + } + }, + "uuid": "f00fa680-0dd6-401b-a35f-1ed72d7587a7", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/listLicensesCheckIndividualLicense/mappings/user-1-b8102c.json b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/listLicensesCheckIndividualLicense/mappings/user-1-b8102c.json new file mode 100644 index 0000000000..75754a0027 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHLicenseTest/wiremock/listLicensesCheckIndividualLicense/mappings/user-1-b8102c.json @@ -0,0 +1,43 @@ +{ + "id": "b8102c16-0e43-4f4d-96c1-7d6cfb5981c2", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-b8102c16-0e43-4f4d-96c1-7d6cfb5981c2.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:29:37 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4570", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"af0c41afcacb8ceee14b7d896719c3bd\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C16E:78E9:15A39FF:19D2438:5D978181" + } + }, + "uuid": "b8102c16-0e43-4f4d-96c1-7d6cfb5981c2", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHMilestoneTest/wiremock/testUpdateMilestone/__files/orgs_github-api-test-org-fdbcaf38-478b-440a-851a-b5913757f6f3.json b/src/test/resources/org/kohsuke/github/GHMilestoneTest/wiremock/testUpdateMilestone/__files/orgs_github-api-test-org-fdbcaf38-478b-440a-851a-b5913757f6f3.json new file mode 100644 index 0000000000..99b5920ccb --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHMilestoneTest/wiremock/testUpdateMilestone/__files/orgs_github-api-test-org-fdbcaf38-478b-440a-851a-b5913757f6f3.json @@ -0,0 +1,41 @@ +{ + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "url": "https://api.github.com/orgs/github-api-test-org", + "repos_url": "https://api.github.com/orgs/github-api-test-org/repos", + "events_url": "https://api.github.com/orgs/github-api-test-org/events", + "hooks_url": "https://api.github.com/orgs/github-api-test-org/hooks", + "issues_url": "https://api.github.com/orgs/github-api-test-org/issues", + "members_url": "https://api.github.com/orgs/github-api-test-org/members{/member}", + "public_members_url": "https://api.github.com/orgs/github-api-test-org/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "description": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 10, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/github-api-test-org", + "created_at": "2014-05-10T19:39:11Z", + "updated_at": "2015-04-20T00:42:30Z", + "type": "Organization", + "total_private_repos": 0, + "owned_private_repos": 0, + "private_gists": 0, + "disk_usage": 132, + "collaborators": 0, + "billing_email": "kk@kohsuke.org", + "default_repository_permission": "none", + "members_can_create_repositories": false, + "two_factor_requirement_enabled": false, + "plan": { + "name": "free", + "space": 976562499, + "private_repos": 0, + "filled_seats": 7, + "seats": 0 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHMilestoneTest/wiremock/testUpdateMilestone/__files/repos_github-api-test-org_github-api-701999a2-14ad-4078-ab89-b0f722cbc52f.json b/src/test/resources/org/kohsuke/github/GHMilestoneTest/wiremock/testUpdateMilestone/__files/repos_github-api-test-org_github-api-701999a2-14ad-4078-ab89-b0f722cbc52f.json new file mode 100644 index 0000000000..0f9bc22b6b --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHMilestoneTest/wiremock/testUpdateMilestone/__files/repos_github-api-test-org_github-api-701999a2-14ad-4078-ab89-b0f722cbc52f.json @@ -0,0 +1,330 @@ +{ + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Tricky", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-10-30T01:54:39Z", + "pushed_at": "2019-10-21T22:34:49Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11391, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "parent": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-10-30T19:56:01Z", + "pushed_at": "2019-10-30T19:57:20Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 14762, + "stargazers_count": 568, + "watchers_count": 568, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 433, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 66, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 433, + "open_issues": 66, + "watchers": 568, + "default_branch": "master" + }, + "source": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-10-30T19:56:01Z", + "pushed_at": "2019-10-30T19:57:20Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 14762, + "stargazers_count": 568, + "watchers_count": 568, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 433, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 66, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 433, + "open_issues": 66, + "watchers": 568, + "default_branch": "master" + }, + "network_count": 433, + "subscribers_count": 0 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHMilestoneTest/wiremock/testUpdateMilestone/__files/repos_github-api-test-org_github-api_milestones-a7ebf1ae-cbbb-4c59-8844-6888ad2493ba.json b/src/test/resources/org/kohsuke/github/GHMilestoneTest/wiremock/testUpdateMilestone/__files/repos_github-api-test-org_github-api_milestones-a7ebf1ae-cbbb-4c59-8844-6888ad2493ba.json new file mode 100644 index 0000000000..bdc4076cb0 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHMilestoneTest/wiremock/testUpdateMilestone/__files/repos_github-api-test-org_github-api_milestones-a7ebf1ae-cbbb-4c59-8844-6888ad2493ba.json @@ -0,0 +1,37 @@ +{ + "url": "https://api.github.com/repos/github-api-test-org/github-api/milestones/2", + "html_url": "https://github.com/github-api-test-org/github-api/milestone/2", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones/2/labels", + "id": 4800108, + "node_id": "MDk6TWlsZXN0b25lNDgwMDEwOA==", + "number": 2, + "title": "Original Title", + "description": "To test the update methods", + "creator": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "open_issues": 0, + "closed_issues": 0, + "state": "open", + "created_at": "2019-10-30T22:04:20Z", + "updated_at": "2019-10-30T22:04:20Z", + "due_on": null, + "closed_at": null +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHMilestoneTest/wiremock/testUpdateMilestone/__files/repos_github-api-test-org_github-api_milestones_2-80930c65-6614-40e9-8cfb-51244eb49764.json b/src/test/resources/org/kohsuke/github/GHMilestoneTest/wiremock/testUpdateMilestone/__files/repos_github-api-test-org_github-api_milestones_2-80930c65-6614-40e9-8cfb-51244eb49764.json new file mode 100644 index 0000000000..12e70dbbd6 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHMilestoneTest/wiremock/testUpdateMilestone/__files/repos_github-api-test-org_github-api_milestones_2-80930c65-6614-40e9-8cfb-51244eb49764.json @@ -0,0 +1,37 @@ +{ + "url": "https://api.github.com/repos/github-api-test-org/github-api/milestones/2", + "html_url": "https://github.com/github-api-test-org/github-api/milestone/2", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones/2/labels", + "id": 4800108, + "node_id": "MDk6TWlsZXN0b25lNDgwMDEwOA==", + "number": 2, + "title": "Updated Title", + "description": "To test the update methods", + "creator": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "open_issues": 0, + "closed_issues": 0, + "state": "open", + "created_at": "2019-10-30T22:04:20Z", + "updated_at": "2019-10-30T22:04:21Z", + "due_on": null, + "closed_at": null +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHMilestoneTest/wiremock/testUpdateMilestone/__files/repos_github-api-test-org_github-api_milestones_2-865125bf-0f31-4650-b668-9d5d72c47680.json b/src/test/resources/org/kohsuke/github/GHMilestoneTest/wiremock/testUpdateMilestone/__files/repos_github-api-test-org_github-api_milestones_2-865125bf-0f31-4650-b668-9d5d72c47680.json new file mode 100644 index 0000000000..d1d89fe992 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHMilestoneTest/wiremock/testUpdateMilestone/__files/repos_github-api-test-org_github-api_milestones_2-865125bf-0f31-4650-b668-9d5d72c47680.json @@ -0,0 +1,37 @@ +{ + "url": "https://api.github.com/repos/github-api-test-org/github-api/milestones/2", + "html_url": "https://github.com/github-api-test-org/github-api/milestone/2", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones/2/labels", + "id": 4800108, + "node_id": "MDk6TWlsZXN0b25lNDgwMDEwOA==", + "number": 2, + "title": "Updated Title", + "description": "Updated Description", + "creator": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "open_issues": 0, + "closed_issues": 0, + "state": "open", + "created_at": "2019-10-30T22:04:20Z", + "updated_at": "2019-10-30T22:04:21Z", + "due_on": null, + "closed_at": null +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHMilestoneTest/wiremock/testUpdateMilestone/__files/repos_github-api-test-org_github-api_milestones_2-b24a5b3a-76c0-44f6-950b-d0fdec878349.json b/src/test/resources/org/kohsuke/github/GHMilestoneTest/wiremock/testUpdateMilestone/__files/repos_github-api-test-org_github-api_milestones_2-b24a5b3a-76c0-44f6-950b-d0fdec878349.json new file mode 100644 index 0000000000..a388cf456d --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHMilestoneTest/wiremock/testUpdateMilestone/__files/repos_github-api-test-org_github-api_milestones_2-b24a5b3a-76c0-44f6-950b-d0fdec878349.json @@ -0,0 +1,37 @@ +{ + "url": "https://api.github.com/repos/github-api-test-org/github-api/milestones/2", + "html_url": "https://github.com/github-api-test-org/github-api/milestone/2", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones/2/labels", + "id": 4800108, + "node_id": "MDk6TWlsZXN0b25lNDgwMDEwOA==", + "number": 2, + "title": "Updated Title", + "description": "Updated Description", + "creator": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "open_issues": 0, + "closed_issues": 0, + "state": "open", + "created_at": "2019-10-30T22:04:20Z", + "updated_at": "2019-10-30T22:04:21Z", + "due_on": "2020-10-05T07:00:00Z", + "closed_at": null +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHMilestoneTest/wiremock/testUpdateMilestone/__files/repos_github-api-test-org_github-api_milestones_2-fffe46e8-0b2e-4195-8e42-857e3127cd0b.json b/src/test/resources/org/kohsuke/github/GHMilestoneTest/wiremock/testUpdateMilestone/__files/repos_github-api-test-org_github-api_milestones_2-fffe46e8-0b2e-4195-8e42-857e3127cd0b.json new file mode 100644 index 0000000000..a388cf456d --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHMilestoneTest/wiremock/testUpdateMilestone/__files/repos_github-api-test-org_github-api_milestones_2-fffe46e8-0b2e-4195-8e42-857e3127cd0b.json @@ -0,0 +1,37 @@ +{ + "url": "https://api.github.com/repos/github-api-test-org/github-api/milestones/2", + "html_url": "https://github.com/github-api-test-org/github-api/milestone/2", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones/2/labels", + "id": 4800108, + "node_id": "MDk6TWlsZXN0b25lNDgwMDEwOA==", + "number": 2, + "title": "Updated Title", + "description": "Updated Description", + "creator": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "open_issues": 0, + "closed_issues": 0, + "state": "open", + "created_at": "2019-10-30T22:04:20Z", + "updated_at": "2019-10-30T22:04:21Z", + "due_on": "2020-10-05T07:00:00Z", + "closed_at": null +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHMilestoneTest/wiremock/testUpdateMilestone/__files/user-7feb269c-7db0-4c3f-8c58-f99bdf1cafe8.json b/src/test/resources/org/kohsuke/github/GHMilestoneTest/wiremock/testUpdateMilestone/__files/user-7feb269c-7db0-4c3f-8c58-f99bdf1cafe8.json new file mode 100644 index 0000000000..a4b576e8a7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHMilestoneTest/wiremock/testUpdateMilestone/__files/user-7feb269c-7db0-4c3f-8c58-f99bdf1cafe8.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 169, + "public_gists": 7, + "followers": 139, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHMilestoneTest/wiremock/testUpdateMilestone/mappings/orgs_github-api-test-org-2-fdbcaf.json b/src/test/resources/org/kohsuke/github/GHMilestoneTest/wiremock/testUpdateMilestone/mappings/orgs_github-api-test-org-2-fdbcaf.json new file mode 100644 index 0000000000..e42826ff10 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHMilestoneTest/wiremock/testUpdateMilestone/mappings/orgs_github-api-test-org-2-fdbcaf.json @@ -0,0 +1,43 @@ +{ + "id": "fdbcaf38-478b-440a-851a-b5913757f6f3", + "name": "orgs_github-api-test-org", + "request": { + "url": "/orgs/github-api-test-org", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_github-api-test-org-fdbcaf38-478b-440a-851a-b5913757f6f3.json", + "headers": { + "Date": "Wed, 30 Oct 2019 22:04:20 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4950", + "X-RateLimit-Reset": "1572476616", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"bbee0a14a82ca84871298052e1bcb545\"", + "Last-Modified": "Mon, 20 Apr 2015 00:42:30 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F2AC:26CD:64AA4:B171A:5DBA08E2" + } + }, + "uuid": "fdbcaf38-478b-440a-851a-b5913757f6f3", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHMilestoneTest/wiremock/testUpdateMilestone/mappings/repos_github-api-test-org_github-api-3-701999.json b/src/test/resources/org/kohsuke/github/GHMilestoneTest/wiremock/testUpdateMilestone/mappings/repos_github-api-test-org_github-api-3-701999.json new file mode 100644 index 0000000000..2770826787 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHMilestoneTest/wiremock/testUpdateMilestone/mappings/repos_github-api-test-org_github-api-3-701999.json @@ -0,0 +1,43 @@ +{ + "id": "701999a2-14ad-4078-ab89-b0f722cbc52f", + "name": "repos_github-api-test-org_github-api", + "request": { + "url": "/repos/github-api-test-org/github-api", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api-701999a2-14ad-4078-ab89-b0f722cbc52f.json", + "headers": { + "Date": "Wed, 30 Oct 2019 22:04:20 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4949", + "X-RateLimit-Reset": "1572476616", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"50590b38f0a75703e69533e84bda5c10\"", + "Last-Modified": "Wed, 30 Oct 2019 01:54:39 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F2AC:26CD:64AA6:B173A:5DBA08E4" + } + }, + "uuid": "701999a2-14ad-4078-ab89-b0f722cbc52f", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHMilestoneTest/wiremock/testUpdateMilestone/mappings/repos_github-api-test-org_github-api_milestones-4-a7ebf1.json b/src/test/resources/org/kohsuke/github/GHMilestoneTest/wiremock/testUpdateMilestone/mappings/repos_github-api-test-org_github-api_milestones-4-a7ebf1.json new file mode 100644 index 0000000000..6cccf55064 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHMilestoneTest/wiremock/testUpdateMilestone/mappings/repos_github-api-test-org_github-api_milestones-4-a7ebf1.json @@ -0,0 +1,47 @@ +{ + "id": "a7ebf1ae-cbbb-4c59-8844-6888ad2493ba", + "name": "repos_github-api-test-org_github-api_milestones", + "request": { + "url": "/repos/github-api-test-org/github-api/milestones", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"description\":\"To test the update methods\",\"title\":\"Original Title\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "repos_github-api-test-org_github-api_milestones-a7ebf1ae-cbbb-4c59-8844-6888ad2493ba.json", + "headers": { + "Server": "GitHub.com", + "Date": "Wed, 30 Oct 2019 22:04:20 GMT", + "Content-Type": "application/json; charset=utf-8", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4948", + "X-RateLimit-Reset": "1572476616", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"ce66f12f4b019a623862f9099dd8ac06\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/github-api-test-org/github-api/milestones/2", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F2AC:26CD:64AA9:B173C:5DBA08E4" + } + }, + "uuid": "a7ebf1ae-cbbb-4c59-8844-6888ad2493ba", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHMilestoneTest/wiremock/testUpdateMilestone/mappings/repos_github-api-test-org_github-api_milestones_2-5-80930c.json b/src/test/resources/org/kohsuke/github/GHMilestoneTest/wiremock/testUpdateMilestone/mappings/repos_github-api-test-org_github-api_milestones_2-5-80930c.json new file mode 100644 index 0000000000..031df1abd5 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHMilestoneTest/wiremock/testUpdateMilestone/mappings/repos_github-api-test-org_github-api_milestones_2-5-80930c.json @@ -0,0 +1,49 @@ +{ + "id": "80930c65-6614-40e9-8cfb-51244eb49764", + "name": "repos_github-api-test-org_github-api_milestones_2", + "request": { + "url": "/repos/github-api-test-org/github-api/milestones/2", + "method": "PATCH", + "bodyPatterns": [ + { + "equalToJson": "{\"title\":\"Updated Title\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api_milestones_2-80930c65-6614-40e9-8cfb-51244eb49764.json", + "headers": { + "Date": "Wed, 30 Oct 2019 22:04:21 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4947", + "X-RateLimit-Reset": "1572476616", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"870c796ce201b8d104442df63f095b43\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F2AC:26CD:64AAB:B1740:5DBA08E4" + } + }, + "uuid": "80930c65-6614-40e9-8cfb-51244eb49764", + "persistent": true, + "insertionIndex": 5 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHMilestoneTest/wiremock/testUpdateMilestone/mappings/repos_github-api-test-org_github-api_milestones_2-6-865125.json b/src/test/resources/org/kohsuke/github/GHMilestoneTest/wiremock/testUpdateMilestone/mappings/repos_github-api-test-org_github-api_milestones_2-6-865125.json new file mode 100644 index 0000000000..6f622186ac --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHMilestoneTest/wiremock/testUpdateMilestone/mappings/repos_github-api-test-org_github-api_milestones_2-6-865125.json @@ -0,0 +1,46 @@ +{ + "id": "865125bf-0f31-4650-b668-9d5d72c47680", + "name": "repos_github-api-test-org_github-api_milestones_2", + "request": { + "url": "/repos/github-api-test-org/github-api/milestones/2", + "method": "PATCH", + "bodyPatterns": [ + { + "equalToJson": "{\"description\":\"Updated Description\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api_milestones_2-865125bf-0f31-4650-b668-9d5d72c47680.json", + "headers": { + "Server": "GitHub.com", + "Date": "Wed, 30 Oct 2019 22:04:21 GMT", + "Content-Type": "application/json; charset=utf-8", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4946", + "X-RateLimit-Reset": "1572476616", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"d4dd5030d06a729043f3d03079e9fe3d\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F2AC:26CD:64AAE:B1744:5DBA08E5" + } + }, + "uuid": "865125bf-0f31-4650-b668-9d5d72c47680", + "persistent": true, + "insertionIndex": 6 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHMilestoneTest/wiremock/testUpdateMilestone/mappings/repos_github-api-test-org_github-api_milestones_2-7-b24a5b.json b/src/test/resources/org/kohsuke/github/GHMilestoneTest/wiremock/testUpdateMilestone/mappings/repos_github-api-test-org_github-api_milestones_2-7-b24a5b.json new file mode 100644 index 0000000000..c34ee3e36b --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHMilestoneTest/wiremock/testUpdateMilestone/mappings/repos_github-api-test-org_github-api_milestones_2-7-b24a5b.json @@ -0,0 +1,49 @@ +{ + "id": "b24a5b3a-76c0-44f6-950b-d0fdec878349", + "name": "repos_github-api-test-org_github-api_milestones_2", + "request": { + "url": "/repos/github-api-test-org/github-api/milestones/2", + "method": "PATCH", + "bodyPatterns": [ + { + "equalToJson": "{\"due_on\":\"2020-10-05T13:00:00Z\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api_milestones_2-b24a5b3a-76c0-44f6-950b-d0fdec878349.json", + "headers": { + "Date": "Wed, 30 Oct 2019 22:04:21 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4945", + "X-RateLimit-Reset": "1572476616", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"f6b5158570f599d271e8d001b807457e\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F2AC:26CD:64AB1:B1749:5DBA08E5" + } + }, + "uuid": "b24a5b3a-76c0-44f6-950b-d0fdec878349", + "persistent": true, + "insertionIndex": 7 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHMilestoneTest/wiremock/testUpdateMilestone/mappings/repos_github-api-test-org_github-api_milestones_2-8-fffe46.json b/src/test/resources/org/kohsuke/github/GHMilestoneTest/wiremock/testUpdateMilestone/mappings/repos_github-api-test-org_github-api_milestones_2-8-fffe46.json new file mode 100644 index 0000000000..8261347b99 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHMilestoneTest/wiremock/testUpdateMilestone/mappings/repos_github-api-test-org_github-api_milestones_2-8-fffe46.json @@ -0,0 +1,43 @@ +{ + "id": "fffe46e8-0b2e-4195-8e42-857e3127cd0b", + "name": "repos_github-api-test-org_github-api_milestones_2", + "request": { + "url": "/repos/github-api-test-org/github-api/milestones/2", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api_milestones_2-fffe46e8-0b2e-4195-8e42-857e3127cd0b.json", + "headers": { + "Date": "Wed, 30 Oct 2019 22:04:21 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4944", + "X-RateLimit-Reset": "1572476616", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"f6b5158570f599d271e8d001b807457e\"", + "Last-Modified": "Wed, 30 Oct 2019 22:04:21 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F2AC:26CD:64AB3:B174F:5DBA08E5" + } + }, + "uuid": "fffe46e8-0b2e-4195-8e42-857e3127cd0b", + "persistent": true, + "insertionIndex": 8 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHMilestoneTest/wiremock/testUpdateMilestone/mappings/user-1-7feb26.json b/src/test/resources/org/kohsuke/github/GHMilestoneTest/wiremock/testUpdateMilestone/mappings/user-1-7feb26.json new file mode 100644 index 0000000000..9d8543b240 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHMilestoneTest/wiremock/testUpdateMilestone/mappings/user-1-7feb26.json @@ -0,0 +1,40 @@ +{ + "id": "7feb269c-7db0-4c3f-8c58-f99bdf1cafe8", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-7feb269c-7db0-4c3f-8c58-f99bdf1cafe8.json", + "headers": { + "Server": "GitHub.com", + "Date": "Wed, 30 Oct 2019 22:04:18 GMT", + "Content-Type": "application/json; charset=utf-8", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4955", + "X-RateLimit-Reset": "1572476616", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"8c3d3dcf6fc5f9edaf26c902295396e5\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F2AC:26CD:64A8F:B1718:5DBA08E2" + } + }, + "uuid": "7feb269c-7db0-4c3f-8c58-f99bdf1cafe8", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepository/__files/orgs_github-api-test-org-cf0714bb-fa4e-4d8b-8e74-05a7b3c11a5b.json b/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepository/__files/orgs_github-api-test-org-cf0714bb-fa4e-4d8b-8e74-05a7b3c11a5b.json new file mode 100644 index 0000000000..61547e3d98 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepository/__files/orgs_github-api-test-org-cf0714bb-fa4e-4d8b-8e74-05a7b3c11a5b.json @@ -0,0 +1,41 @@ +{ + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "url": "https://api.github.com/orgs/github-api-test-org", + "repos_url": "https://api.github.com/orgs/github-api-test-org/repos", + "events_url": "https://api.github.com/orgs/github-api-test-org/events", + "hooks_url": "https://api.github.com/orgs/github-api-test-org/hooks", + "issues_url": "https://api.github.com/orgs/github-api-test-org/issues", + "members_url": "https://api.github.com/orgs/github-api-test-org/members{/member}", + "public_members_url": "https://api.github.com/orgs/github-api-test-org/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "description": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 9, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/github-api-test-org", + "created_at": "2014-05-10T19:39:11Z", + "updated_at": "2015-04-20T00:42:30Z", + "type": "Organization", + "total_private_repos": 0, + "owned_private_repos": 0, + "private_gists": 0, + "disk_usage": 132, + "collaborators": 0, + "billing_email": "kk@kohsuke.org", + "default_repository_permission": "none", + "members_can_create_repositories": false, + "two_factor_requirement_enabled": false, + "plan": { + "name": "free", + "space": 976562499, + "private_repos": 0, + "filled_seats": 3, + "seats": 0 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepository/__files/orgs_github-api-test-org_repos-43cfd527-8dc8-4025-ab6f-41f6c45a86bd.json b/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepository/__files/orgs_github-api-test-org_repos-43cfd527-8dc8-4025-ab6f-41f6c45a86bd.json new file mode 100644 index 0000000000..ad4f581866 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepository/__files/orgs_github-api-test-org_repos-43cfd527-8dc8-4025-ab6f-41f6c45a86bd.json @@ -0,0 +1,124 @@ +{ + "id": 212682263, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTI2ODIyNjM=", + "name": "github-api-test", + "full_name": "github-api-test-org/github-api-test", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "http://localhost:51946/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "http://localhost:51946/users/github-api-test-org/followers", + "following_url": "http://localhost:51946/users/github-api-test-org/following{/other_user}", + "gists_url": "http://localhost:51946/users/github-api-test-org/gists{/gist_id}", + "starred_url": "http://localhost:51946/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "http://localhost:51946/users/github-api-test-org/subscriptions", + "organizations_url": "http://localhost:51946/users/github-api-test-org/orgs", + "repos_url": "http://localhost:51946/users/github-api-test-org/repos", + "events_url": "http://localhost:51946/users/github-api-test-org/events{/privacy}", + "received_events_url": "http://localhost:51946/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api-test", + "description": "a test repository used to test kohsuke's github-api", + "fork": false, + "url": "http://localhost:51946/repos/github-api-test-org/github-api-test", + "forks_url": "http://localhost:51946/repos/github-api-test-org/github-api-test/forks", + "keys_url": "http://localhost:51946/repos/github-api-test-org/github-api-test/keys{/key_id}", + "collaborators_url": "http://localhost:51946/repos/github-api-test-org/github-api-test/collaborators{/collaborator}", + "teams_url": "http://localhost:51946/repos/github-api-test-org/github-api-test/teams", + "hooks_url": "http://localhost:51946/repos/github-api-test-org/github-api-test/hooks", + "issue_events_url": "http://localhost:51946/repos/github-api-test-org/github-api-test/issues/events{/number}", + "events_url": "http://localhost:51946/repos/github-api-test-org/github-api-test/events", + "assignees_url": "http://localhost:51946/repos/github-api-test-org/github-api-test/assignees{/user}", + "branches_url": "http://localhost:51946/repos/github-api-test-org/github-api-test/branches{/branch}", + "tags_url": "http://localhost:51946/repos/github-api-test-org/github-api-test/tags", + "blobs_url": "http://localhost:51946/repos/github-api-test-org/github-api-test/git/blobs{/sha}", + "git_tags_url": "http://localhost:51946/repos/github-api-test-org/github-api-test/git/tags{/sha}", + "git_refs_url": "http://localhost:51946/repos/github-api-test-org/github-api-test/git/refs{/sha}", + "trees_url": "http://localhost:51946/repos/github-api-test-org/github-api-test/git/trees{/sha}", + "statuses_url": "http://localhost:51946/repos/github-api-test-org/github-api-test/statuses/{sha}", + "languages_url": "http://localhost:51946/repos/github-api-test-org/github-api-test/languages", + "stargazers_url": "http://localhost:51946/repos/github-api-test-org/github-api-test/stargazers", + "contributors_url": "http://localhost:51946/repos/github-api-test-org/github-api-test/contributors", + "subscribers_url": "http://localhost:51946/repos/github-api-test-org/github-api-test/subscribers", + "subscription_url": "http://localhost:51946/repos/github-api-test-org/github-api-test/subscription", + "commits_url": "http://localhost:51946/repos/github-api-test-org/github-api-test/commits{/sha}", + "git_commits_url": "http://localhost:51946/repos/github-api-test-org/github-api-test/git/commits{/sha}", + "comments_url": "http://localhost:51946/repos/github-api-test-org/github-api-test/comments{/number}", + "issue_comment_url": "http://localhost:51946/repos/github-api-test-org/github-api-test/issues/comments{/number}", + "contents_url": "http://localhost:51946/repos/github-api-test-org/github-api-test/contents/{+path}", + "compare_url": "http://localhost:51946/repos/github-api-test-org/github-api-test/compare/{base}...{head}", + "merges_url": "http://localhost:51946/repos/github-api-test-org/github-api-test/merges", + "archive_url": "http://localhost:51946/repos/github-api-test-org/github-api-test/{archive_format}{/ref}", + "downloads_url": "http://localhost:51946/repos/github-api-test-org/github-api-test/downloads", + "issues_url": "http://localhost:51946/repos/github-api-test-org/github-api-test/issues{/number}", + "pulls_url": "http://localhost:51946/repos/github-api-test-org/github-api-test/pulls{/number}", + "milestones_url": "http://localhost:51946/repos/github-api-test-org/github-api-test/milestones{/number}", + "notifications_url": "http://localhost:51946/repos/github-api-test-org/github-api-test/notifications{?since,all,participating}", + "labels_url": "http://localhost:51946/repos/github-api-test-org/github-api-test/labels{/name}", + "releases_url": "http://localhost:51946/repos/github-api-test-org/github-api-test/releases{/id}", + "deployments_url": "http://localhost:51946/repos/github-api-test-org/github-api-test/deployments", + "created_at": "2019-10-03T21:18:40Z", + "updated_at": "2019-10-03T21:18:40Z", + "pushed_at": "2019-10-03T21:18:41Z", + "git_url": "git://github.com/github-api-test-org/github-api-test.git", + "ssh_url": "git@github.com:github-api-test-org/github-api-test.git", + "clone_url": "https://github.com/github-api-test-org/github-api-test.git", + "svn_url": "https://github.com/github-api-test-org/github-api-test", + "homepage": "http://github-api.kohsuke.org/", + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "http://localhost:51946/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "http://localhost:51946/users/github-api-test-org/followers", + "following_url": "http://localhost:51946/users/github-api-test-org/following{/other_user}", + "gists_url": "http://localhost:51946/users/github-api-test-org/gists{/gist_id}", + "starred_url": "http://localhost:51946/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "http://localhost:51946/users/github-api-test-org/subscriptions", + "organizations_url": "http://localhost:51946/users/github-api-test-org/orgs", + "repos_url": "http://localhost:51946/users/github-api-test-org/repos", + "events_url": "http://localhost:51946/users/github-api-test-org/events{/privacy}", + "received_events_url": "http://localhost:51946/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "network_count": 0, + "subscribers_count": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepository/__files/orgs_github-api-test-org_teams-beb3badb-dca2-4515-9c19-9ba8401f98f4.json b/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepository/__files/orgs_github-api-test-org_teams-beb3badb-dca2-4515-9c19-9ba8401f98f4.json new file mode 100644 index 0000000000..86e70a5912 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepository/__files/orgs_github-api-test-org_teams-beb3badb-dca2-4515-9c19-9ba8401f98f4.json @@ -0,0 +1,28 @@ +[ + { + "name": "Owners", + "id": 820404, + "node_id": "MDQ6VGVhbTgyMDQwNA==", + "slug": "owners", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/820404", + "html_url": "https://github.com/orgs/github-api-test-org/teams/owners", + "members_url": "https://api.github.com/teams/820404/members{/member}", + "repositories_url": "https://api.github.com/teams/820404/repos", + "permission": "admin" + }, + { + "name": "Core Developers", + "id": 820406, + "node_id": "MDQ6VGVhbTgyMDQwNg==", + "slug": "core-developers", + "description": "A random team", + "privacy": "secret", + "url": "https://api.github.com/teams/820406", + "html_url": "https://github.com/orgs/github-api-test-org/teams/core-developers", + "members_url": "https://api.github.com/teams/820406/members{/member}", + "repositories_url": "https://api.github.com/teams/820406/repos", + "permission": "pull" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepository/__files/user-58ae6686-1748-4884-8b04-c483ac0bf048.json b/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepository/__files/user-58ae6686-1748-4884-8b04-c483ac0bf048.json new file mode 100644 index 0000000000..39d6c8353e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepository/__files/user-58ae6686-1748-4884-8b04-c483ac0bf048.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 167, + "public_gists": 4, + "followers": 136, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepository/mappings/orgs_github-api-test-org-2-cf0714.json b/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepository/mappings/orgs_github-api-test-org-2-cf0714.json new file mode 100644 index 0000000000..5f89eb9f9c --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepository/mappings/orgs_github-api-test-org-2-cf0714.json @@ -0,0 +1,43 @@ +{ + "id": "cf0714bb-fa4e-4d8b-8e74-05a7b3c11a5b", + "name": "orgs_github-api-test-org", + "request": { + "url": "/orgs/github-api-test-org", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_github-api-test-org-cf0714bb-fa4e-4d8b-8e74-05a7b3c11a5b.json", + "headers": { + "Date": "Thu, 03 Oct 2019 21:18:40 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4909", + "X-RateLimit-Reset": "1570140015", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"d36965e157281b2a309c39e4c2343a55\"", + "Last-Modified": "Mon, 20 Apr 2015 00:42:30 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAEC:67D2:2959FE:324484:5D9665AF" + } + }, + "uuid": "cf0714bb-fa4e-4d8b-8e74-05a7b3c11a5b", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepository/mappings/orgs_github-api-test-org_repos-4-43cfd5.json b/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepository/mappings/orgs_github-api-test-org_repos-4-43cfd5.json new file mode 100644 index 0000000000..3401dbb805 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepository/mappings/orgs_github-api-test-org_repos-4-43cfd5.json @@ -0,0 +1,50 @@ +{ + "id": "43cfd527-8dc8-4025-ab6f-41f6c45a86bd", + "name": "orgs_github-api-test-org_repos", + "request": { + "url": "/orgs/github-api-test-org/repos", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"private\":false,\"name\":\"github-api-test\",\"description\":\"a test repository used to test kohsuke's github-api\",\"team_id\":820406,\"homepage\":\"http://github-api.kohsuke.org/\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "orgs_github-api-test-org_repos-43cfd527-8dc8-4025-ab6f-41f6c45a86bd.json", + "headers": { + "Date": "Thu, 03 Oct 2019 21:18:41 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4907", + "X-RateLimit-Reset": "1570140015", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"5cf0101d2b4d7a8ec5172c86f1adf28a\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "Location": "https://api.github.com/repos/github-api-test-org/github-api-test", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAEC:67D2:295A08:3244A9:5D9665B0" + } + }, + "uuid": "43cfd527-8dc8-4025-ab6f-41f6c45a86bd", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepository/mappings/orgs_github-api-test-org_teams-3-beb3ba.json b/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepository/mappings/orgs_github-api-test-org_teams-3-beb3ba.json new file mode 100644 index 0000000000..17eebd562b --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepository/mappings/orgs_github-api-test-org_teams-3-beb3ba.json @@ -0,0 +1,42 @@ +{ + "id": "beb3badb-dca2-4515-9c19-9ba8401f98f4", + "name": "orgs_github-api-test-org_teams", + "request": { + "url": "/orgs/github-api-test-org/teams", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_github-api-test-org_teams-beb3badb-dca2-4515-9c19-9ba8401f98f4.json", + "headers": { + "Date": "Thu, 03 Oct 2019 21:18:40 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4908", + "X-RateLimit-Reset": "1570140015", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"67966e090e6d1b149d83e98c21d76074\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAEC:67D2:295A04:3244A1:5D9665B0" + } + }, + "uuid": "beb3badb-dca2-4515-9c19-9ba8401f98f4", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepository/mappings/user-1-58ae66.json b/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepository/mappings/user-1-58ae66.json new file mode 100644 index 0000000000..ccc2b7d6cf --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepository/mappings/user-1-58ae66.json @@ -0,0 +1,43 @@ +{ + "id": "58ae6686-1748-4884-8b04-c483ac0bf048", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-58ae6686-1748-4884-8b04-c483ac0bf048.json", + "headers": { + "Date": "Thu, 03 Oct 2019 21:18:39 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4913", + "X-RateLimit-Reset": "1570140015", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"cf6199fecf47b59c42190e1e11147ee2\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAEC:67D2:2959E5:324480:5D9665AF" + } + }, + "uuid": "58ae6686-1748-4884-8b04-c483ac0bf048", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepositoryWithAutoInitialization/__files/orgs_github-api-test-org-7b0ac54c-1ef0-453a-99db-a480b3b5a746.json b/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepositoryWithAutoInitialization/__files/orgs_github-api-test-org-7b0ac54c-1ef0-453a-99db-a480b3b5a746.json new file mode 100644 index 0000000000..61547e3d98 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepositoryWithAutoInitialization/__files/orgs_github-api-test-org-7b0ac54c-1ef0-453a-99db-a480b3b5a746.json @@ -0,0 +1,41 @@ +{ + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "url": "https://api.github.com/orgs/github-api-test-org", + "repos_url": "https://api.github.com/orgs/github-api-test-org/repos", + "events_url": "https://api.github.com/orgs/github-api-test-org/events", + "hooks_url": "https://api.github.com/orgs/github-api-test-org/hooks", + "issues_url": "https://api.github.com/orgs/github-api-test-org/issues", + "members_url": "https://api.github.com/orgs/github-api-test-org/members{/member}", + "public_members_url": "https://api.github.com/orgs/github-api-test-org/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "description": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 9, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/github-api-test-org", + "created_at": "2014-05-10T19:39:11Z", + "updated_at": "2015-04-20T00:42:30Z", + "type": "Organization", + "total_private_repos": 0, + "owned_private_repos": 0, + "private_gists": 0, + "disk_usage": 132, + "collaborators": 0, + "billing_email": "kk@kohsuke.org", + "default_repository_permission": "none", + "members_can_create_repositories": false, + "two_factor_requirement_enabled": false, + "plan": { + "name": "free", + "space": 976562499, + "private_repos": 0, + "filled_seats": 3, + "seats": 0 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepositoryWithAutoInitialization/__files/orgs_github-api-test-org_repos-423c774e-3d61-423a-ad0d-ee166bf2b4de.json b/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepositoryWithAutoInitialization/__files/orgs_github-api-test-org_repos-423c774e-3d61-423a-ad0d-ee166bf2b4de.json new file mode 100644 index 0000000000..55d95a1f7d --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepositoryWithAutoInitialization/__files/orgs_github-api-test-org_repos-423c774e-3d61-423a-ad0d-ee166bf2b4de.json @@ -0,0 +1,124 @@ +{ + "id": 212682270, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTI2ODIyNzA=", + "name": "github-api-test", + "full_name": "github-api-test-org/github-api-test", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "http://localhost:51951/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "http://localhost:51951/users/github-api-test-org/followers", + "following_url": "http://localhost:51951/users/github-api-test-org/following{/other_user}", + "gists_url": "http://localhost:51951/users/github-api-test-org/gists{/gist_id}", + "starred_url": "http://localhost:51951/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "http://localhost:51951/users/github-api-test-org/subscriptions", + "organizations_url": "http://localhost:51951/users/github-api-test-org/orgs", + "repos_url": "http://localhost:51951/users/github-api-test-org/repos", + "events_url": "http://localhost:51951/users/github-api-test-org/events{/privacy}", + "received_events_url": "http://localhost:51951/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api-test", + "description": "a test repository used to test kohsuke's github-api", + "fork": false, + "url": "http://localhost:51951/repos/github-api-test-org/github-api-test", + "forks_url": "http://localhost:51951/repos/github-api-test-org/github-api-test/forks", + "keys_url": "http://localhost:51951/repos/github-api-test-org/github-api-test/keys{/key_id}", + "collaborators_url": "http://localhost:51951/repos/github-api-test-org/github-api-test/collaborators{/collaborator}", + "teams_url": "http://localhost:51951/repos/github-api-test-org/github-api-test/teams", + "hooks_url": "http://localhost:51951/repos/github-api-test-org/github-api-test/hooks", + "issue_events_url": "http://localhost:51951/repos/github-api-test-org/github-api-test/issues/events{/number}", + "events_url": "http://localhost:51951/repos/github-api-test-org/github-api-test/events", + "assignees_url": "http://localhost:51951/repos/github-api-test-org/github-api-test/assignees{/user}", + "branches_url": "http://localhost:51951/repos/github-api-test-org/github-api-test/branches{/branch}", + "tags_url": "http://localhost:51951/repos/github-api-test-org/github-api-test/tags", + "blobs_url": "http://localhost:51951/repos/github-api-test-org/github-api-test/git/blobs{/sha}", + "git_tags_url": "http://localhost:51951/repos/github-api-test-org/github-api-test/git/tags{/sha}", + "git_refs_url": "http://localhost:51951/repos/github-api-test-org/github-api-test/git/refs{/sha}", + "trees_url": "http://localhost:51951/repos/github-api-test-org/github-api-test/git/trees{/sha}", + "statuses_url": "http://localhost:51951/repos/github-api-test-org/github-api-test/statuses/{sha}", + "languages_url": "http://localhost:51951/repos/github-api-test-org/github-api-test/languages", + "stargazers_url": "http://localhost:51951/repos/github-api-test-org/github-api-test/stargazers", + "contributors_url": "http://localhost:51951/repos/github-api-test-org/github-api-test/contributors", + "subscribers_url": "http://localhost:51951/repos/github-api-test-org/github-api-test/subscribers", + "subscription_url": "http://localhost:51951/repos/github-api-test-org/github-api-test/subscription", + "commits_url": "http://localhost:51951/repos/github-api-test-org/github-api-test/commits{/sha}", + "git_commits_url": "http://localhost:51951/repos/github-api-test-org/github-api-test/git/commits{/sha}", + "comments_url": "http://localhost:51951/repos/github-api-test-org/github-api-test/comments{/number}", + "issue_comment_url": "http://localhost:51951/repos/github-api-test-org/github-api-test/issues/comments{/number}", + "contents_url": "http://localhost:51951/repos/github-api-test-org/github-api-test/contents/{+path}", + "compare_url": "http://localhost:51951/repos/github-api-test-org/github-api-test/compare/{base}...{head}", + "merges_url": "http://localhost:51951/repos/github-api-test-org/github-api-test/merges", + "archive_url": "http://localhost:51951/repos/github-api-test-org/github-api-test/{archive_format}{/ref}", + "downloads_url": "http://localhost:51951/repos/github-api-test-org/github-api-test/downloads", + "issues_url": "http://localhost:51951/repos/github-api-test-org/github-api-test/issues{/number}", + "pulls_url": "http://localhost:51951/repos/github-api-test-org/github-api-test/pulls{/number}", + "milestones_url": "http://localhost:51951/repos/github-api-test-org/github-api-test/milestones{/number}", + "notifications_url": "http://localhost:51951/repos/github-api-test-org/github-api-test/notifications{?since,all,participating}", + "labels_url": "http://localhost:51951/repos/github-api-test-org/github-api-test/labels{/name}", + "releases_url": "http://localhost:51951/repos/github-api-test-org/github-api-test/releases{/id}", + "deployments_url": "http://localhost:51951/repos/github-api-test-org/github-api-test/deployments", + "created_at": "2019-10-03T21:18:43Z", + "updated_at": "2019-10-03T21:18:43Z", + "pushed_at": "2019-10-03T21:18:44Z", + "git_url": "git://github.com/github-api-test-org/github-api-test.git", + "ssh_url": "git@github.com:github-api-test-org/github-api-test.git", + "clone_url": "https://github.com/github-api-test-org/github-api-test.git", + "svn_url": "https://github.com/github-api-test-org/github-api-test", + "homepage": "http://github-api.kohsuke.org/", + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "http://localhost:51951/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "http://localhost:51951/users/github-api-test-org/followers", + "following_url": "http://localhost:51951/users/github-api-test-org/following{/other_user}", + "gists_url": "http://localhost:51951/users/github-api-test-org/gists{/gist_id}", + "starred_url": "http://localhost:51951/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "http://localhost:51951/users/github-api-test-org/subscriptions", + "organizations_url": "http://localhost:51951/users/github-api-test-org/orgs", + "repos_url": "http://localhost:51951/users/github-api-test-org/repos", + "events_url": "http://localhost:51951/users/github-api-test-org/events{/privacy}", + "received_events_url": "http://localhost:51951/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "network_count": 0, + "subscribers_count": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepositoryWithAutoInitialization/__files/orgs_github-api-test-org_teams-eb06b2d9-1dda-4070-bdfe-3005f550e7ec.json b/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepositoryWithAutoInitialization/__files/orgs_github-api-test-org_teams-eb06b2d9-1dda-4070-bdfe-3005f550e7ec.json new file mode 100644 index 0000000000..86e70a5912 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepositoryWithAutoInitialization/__files/orgs_github-api-test-org_teams-eb06b2d9-1dda-4070-bdfe-3005f550e7ec.json @@ -0,0 +1,28 @@ +[ + { + "name": "Owners", + "id": 820404, + "node_id": "MDQ6VGVhbTgyMDQwNA==", + "slug": "owners", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/820404", + "html_url": "https://github.com/orgs/github-api-test-org/teams/owners", + "members_url": "https://api.github.com/teams/820404/members{/member}", + "repositories_url": "https://api.github.com/teams/820404/repos", + "permission": "admin" + }, + { + "name": "Core Developers", + "id": 820406, + "node_id": "MDQ6VGVhbTgyMDQwNg==", + "slug": "core-developers", + "description": "A random team", + "privacy": "secret", + "url": "https://api.github.com/teams/820406", + "html_url": "https://github.com/orgs/github-api-test-org/teams/core-developers", + "members_url": "https://api.github.com/teams/820406/members{/member}", + "repositories_url": "https://api.github.com/teams/820406/repos", + "permission": "pull" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepositoryWithAutoInitialization/__files/repos_github-api-test-org_github-api-test_readme-12092c16-85de-454a-80ae-61c283738838.json b/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepositoryWithAutoInitialization/__files/repos_github-api-test-org_github-api-test_readme-12092c16-85de-454a-80ae-61c283738838.json new file mode 100644 index 0000000000..a1ad8265eb --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepositoryWithAutoInitialization/__files/repos_github-api-test-org_github-api-test_readme-12092c16-85de-454a-80ae-61c283738838.json @@ -0,0 +1,18 @@ +{ + "name": "README.md", + "path": "README.md", + "sha": "aa0e9008d8d8c4745d81d718b5d418f6a5529759", + "size": 70, + "url": "https://api.github.com/repos/github-api-test-org/github-api-test/contents/README.md?ref=master", + "html_url": "https://github.com/github-api-test-org/github-api-test/blob/master/README.md", + "git_url": "https://api.github.com/repos/github-api-test-org/github-api-test/git/blobs/aa0e9008d8d8c4745d81d718b5d418f6a5529759", + "download_url": "https://raw.githubusercontent.com/github-api-test-org/github-api-test/master/README.md", + "type": "file", + "content": "IyBnaXRodWItYXBpLXRlc3QKYSB0ZXN0IHJlcG9zaXRvcnkgdXNlZCB0byB0\nZXN0IGtvaHN1a2UncyBnaXRodWItYXBpCg==\n", + "encoding": "base64", + "_links": { + "self": "https://api.github.com/repos/github-api-test-org/github-api-test/contents/README.md?ref=master", + "git": "https://api.github.com/repos/github-api-test-org/github-api-test/git/blobs/aa0e9008d8d8c4745d81d718b5d418f6a5529759", + "html": "https://github.com/github-api-test-org/github-api-test/blob/master/README.md" + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepositoryWithAutoInitialization/__files/user-d246cfb6-e28a-417b-8d74-29080bbc1c4c.json b/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepositoryWithAutoInitialization/__files/user-d246cfb6-e28a-417b-8d74-29080bbc1c4c.json new file mode 100644 index 0000000000..39d6c8353e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepositoryWithAutoInitialization/__files/user-d246cfb6-e28a-417b-8d74-29080bbc1c4c.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 167, + "public_gists": 4, + "followers": 136, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepositoryWithAutoInitialization/mappings/orgs_github-api-test-org-2-7b0ac5.json b/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepositoryWithAutoInitialization/mappings/orgs_github-api-test-org-2-7b0ac5.json new file mode 100644 index 0000000000..14a99da12c --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepositoryWithAutoInitialization/mappings/orgs_github-api-test-org-2-7b0ac5.json @@ -0,0 +1,43 @@ +{ + "id": "7b0ac54c-1ef0-453a-99db-a480b3b5a746", + "name": "orgs_github-api-test-org", + "request": { + "url": "/orgs/github-api-test-org", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_github-api-test-org-7b0ac54c-1ef0-453a-99db-a480b3b5a746.json", + "headers": { + "Date": "Thu, 03 Oct 2019 21:18:43 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4900", + "X-RateLimit-Reset": "1570140015", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"d36965e157281b2a309c39e4c2343a55\"", + "Last-Modified": "Mon, 20 Apr 2015 00:42:30 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAF1:9576:6B11DD:8037AC:5D9665B2" + } + }, + "uuid": "7b0ac54c-1ef0-453a-99db-a480b3b5a746", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepositoryWithAutoInitialization/mappings/orgs_github-api-test-org_repos-4-423c77.json b/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepositoryWithAutoInitialization/mappings/orgs_github-api-test-org_repos-4-423c77.json new file mode 100644 index 0000000000..55a26d38c5 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepositoryWithAutoInitialization/mappings/orgs_github-api-test-org_repos-4-423c77.json @@ -0,0 +1,50 @@ +{ + "id": "423c774e-3d61-423a-ad0d-ee166bf2b4de", + "name": "orgs_github-api-test-org_repos", + "request": { + "url": "/orgs/github-api-test-org/repos", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"auto_init\":true,\"name\":\"github-api-test\",\"description\":\"a test repository used to test kohsuke's github-api\",\"team_id\":820406,\"homepage\":\"http://github-api.kohsuke.org/\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "orgs_github-api-test-org_repos-423c774e-3d61-423a-ad0d-ee166bf2b4de.json", + "headers": { + "Date": "Thu, 03 Oct 2019 21:18:45 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4898", + "X-RateLimit-Reset": "1570140015", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"2b3e3ea59f28d3dadc92e7bb9aa81918\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "Location": "https://api.github.com/repos/github-api-test-org/github-api-test", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAF1:9576:6B11EA:8037CF:5D9665B3" + } + }, + "uuid": "423c774e-3d61-423a-ad0d-ee166bf2b4de", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepositoryWithAutoInitialization/mappings/orgs_github-api-test-org_teams-3-eb06b2.json b/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepositoryWithAutoInitialization/mappings/orgs_github-api-test-org_teams-3-eb06b2.json new file mode 100644 index 0000000000..4c351a4406 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepositoryWithAutoInitialization/mappings/orgs_github-api-test-org_teams-3-eb06b2.json @@ -0,0 +1,42 @@ +{ + "id": "eb06b2d9-1dda-4070-bdfe-3005f550e7ec", + "name": "orgs_github-api-test-org_teams", + "request": { + "url": "/orgs/github-api-test-org/teams", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_github-api-test-org_teams-eb06b2d9-1dda-4070-bdfe-3005f550e7ec.json", + "headers": { + "Date": "Thu, 03 Oct 2019 21:18:43 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4899", + "X-RateLimit-Reset": "1570140015", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"67966e090e6d1b149d83e98c21d76074\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAF1:9576:6B11E4:8037CB:5D9665B3" + } + }, + "uuid": "eb06b2d9-1dda-4070-bdfe-3005f550e7ec", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepositoryWithAutoInitialization/mappings/repos_github-api-test-org_github-api-test_readme-5-12092c.json b/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepositoryWithAutoInitialization/mappings/repos_github-api-test-org_github-api-test_readme-5-12092c.json new file mode 100644 index 0000000000..3ccaef4221 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepositoryWithAutoInitialization/mappings/repos_github-api-test-org_github-api-test_readme-5-12092c.json @@ -0,0 +1,43 @@ +{ + "id": "12092c16-85de-454a-80ae-61c283738838", + "name": "repos_github-api-test-org_github-api-test_readme", + "request": { + "url": "/repos/github-api-test-org/github-api-test/readme", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api-test_readme-12092c16-85de-454a-80ae-61c283738838.json", + "headers": { + "Date": "Thu, 03 Oct 2019 21:18:45 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4897", + "X-RateLimit-Reset": "1570140015", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"cabb44de69d6ea06b2d8ca4bb5b01405\"", + "Last-Modified": "Thu, 03 Oct 2019 21:18:44 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAF1:9576:6B1234:803821:5D9665B5" + } + }, + "uuid": "12092c16-85de-454a-80ae-61c283738838", + "persistent": true, + "insertionIndex": 5 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepositoryWithAutoInitialization/mappings/user-1-d246cf.json b/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepositoryWithAutoInitialization/mappings/user-1-d246cf.json new file mode 100644 index 0000000000..475a06eee1 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateRepositoryWithAutoInitialization/mappings/user-1-d246cf.json @@ -0,0 +1,43 @@ +{ + "id": "d246cfb6-e28a-417b-8d74-29080bbc1c4c", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-d246cfb6-e28a-417b-8d74-29080bbc1c4c.json", + "headers": { + "Date": "Thu, 03 Oct 2019 21:18:42 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4904", + "X-RateLimit-Reset": "1570140015", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"cf6199fecf47b59c42190e1e11147ee2\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAF1:9576:6B11BA:80379D:5D9665B2" + } + }, + "uuid": "d246cfb6-e28a-417b-8d74-29080bbc1c4c", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateTeamWithRepoAccess/__files/orgs_github-api-test-org-8c23f18e-d928-4e88-851d-fa36feecf615.json b/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateTeamWithRepoAccess/__files/orgs_github-api-test-org-8c23f18e-d928-4e88-851d-fa36feecf615.json new file mode 100644 index 0000000000..99b5920ccb --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateTeamWithRepoAccess/__files/orgs_github-api-test-org-8c23f18e-d928-4e88-851d-fa36feecf615.json @@ -0,0 +1,41 @@ +{ + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "url": "https://api.github.com/orgs/github-api-test-org", + "repos_url": "https://api.github.com/orgs/github-api-test-org/repos", + "events_url": "https://api.github.com/orgs/github-api-test-org/events", + "hooks_url": "https://api.github.com/orgs/github-api-test-org/hooks", + "issues_url": "https://api.github.com/orgs/github-api-test-org/issues", + "members_url": "https://api.github.com/orgs/github-api-test-org/members{/member}", + "public_members_url": "https://api.github.com/orgs/github-api-test-org/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "description": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 10, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/github-api-test-org", + "created_at": "2014-05-10T19:39:11Z", + "updated_at": "2015-04-20T00:42:30Z", + "type": "Organization", + "total_private_repos": 0, + "owned_private_repos": 0, + "private_gists": 0, + "disk_usage": 132, + "collaborators": 0, + "billing_email": "kk@kohsuke.org", + "default_repository_permission": "none", + "members_can_create_repositories": false, + "two_factor_requirement_enabled": false, + "plan": { + "name": "free", + "space": 976562499, + "private_repos": 0, + "filled_seats": 7, + "seats": 0 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateTeamWithRepoAccess/__files/orgs_github-api-test-org_teams-3459b05f-6e47-4c41-be60-83c125bf180b.json b/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateTeamWithRepoAccess/__files/orgs_github-api-test-org_teams-3459b05f-6e47-4c41-be60-83c125bf180b.json new file mode 100644 index 0000000000..3d0b4147de --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateTeamWithRepoAccess/__files/orgs_github-api-test-org_teams-3459b05f-6e47-4c41-be60-83c125bf180b.json @@ -0,0 +1,42 @@ +{ + "name": "create-team-test", + "id": 3501817, + "node_id": "MDQ6VGVhbTM1MDE4MTc=", + "slug": "create-team-test", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/3501817", + "html_url": "https://github.com/orgs/github-api-test-org/teams/create-team-test", + "members_url": "https://api.github.com/teams/3501817/members{/member}", + "repositories_url": "https://api.github.com/teams/3501817/repos", + "permission": "push", + "created_at": "2019-11-01T16:29:09Z", + "updated_at": "2019-11-01T16:29:09Z", + "members_count": 0, + "repos_count": 1, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "url": "https://api.github.com/orgs/github-api-test-org", + "repos_url": "https://api.github.com/orgs/github-api-test-org/repos", + "events_url": "https://api.github.com/orgs/github-api-test-org/events", + "hooks_url": "https://api.github.com/orgs/github-api-test-org/hooks", + "issues_url": "https://api.github.com/orgs/github-api-test-org/issues", + "members_url": "https://api.github.com/orgs/github-api-test-org/members{/member}", + "public_members_url": "https://api.github.com/orgs/github-api-test-org/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "description": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 10, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/github-api-test-org", + "created_at": "2014-05-10T19:39:11Z", + "updated_at": "2015-04-20T00:42:30Z", + "type": "Organization" + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateTeamWithRepoAccess/__files/repos_github-api-test-org_github-api-25876edf-6351-4b59-9e1d-82886a02f721.json b/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateTeamWithRepoAccess/__files/repos_github-api-test-org_github-api-25876edf-6351-4b59-9e1d-82886a02f721.json new file mode 100644 index 0000000000..a1eb7a99e5 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateTeamWithRepoAccess/__files/repos_github-api-test-org_github-api-25876edf-6351-4b59-9e1d-82886a02f721.json @@ -0,0 +1,330 @@ +{ + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Tricky", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-10-30T01:54:39Z", + "pushed_at": "2019-10-21T22:34:49Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11391, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "parent": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-11-01T11:49:24Z", + "pushed_at": "2019-11-01T01:49:29Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 14820, + "stargazers_count": 571, + "watchers_count": 571, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 434, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 66, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 434, + "open_issues": 66, + "watchers": 571, + "default_branch": "master" + }, + "source": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-11-01T11:49:24Z", + "pushed_at": "2019-11-01T01:49:29Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 14820, + "stargazers_count": 571, + "watchers_count": 571, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 434, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 66, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 434, + "open_issues": 66, + "watchers": 571, + "default_branch": "master" + }, + "network_count": 434, + "subscribers_count": 0 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateTeamWithRepoAccess/__files/teams_3501817_repos-97bad23b-9d25-4db2-8420-afbc40b450ac.json b/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateTeamWithRepoAccess/__files/teams_3501817_repos-97bad23b-9d25-4db2-8420-afbc40b450ac.json new file mode 100644 index 0000000000..30ce5bf016 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateTeamWithRepoAccess/__files/teams_3501817_repos-97bad23b-9d25-4db2-8420-afbc40b450ac.json @@ -0,0 +1,107 @@ +[ + { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Tricky", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-10-30T01:54:39Z", + "pushed_at": "2019-10-21T22:34:49Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11391, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "pull": true, + "push": true, + "admin": false + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateTeamWithRepoAccess/__files/user-8620f09e-7f34-4e00-860b-335d22d56f92.json b/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateTeamWithRepoAccess/__files/user-8620f09e-7f34-4e00-860b-335d22d56f92.json new file mode 100644 index 0000000000..b79585f93d --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateTeamWithRepoAccess/__files/user-8620f09e-7f34-4e00-860b-335d22d56f92.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 170, + "public_gists": 7, + "followers": 139, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateTeamWithRepoAccess/mappings/orgs_github-api-test-org-2-8c23f1.json b/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateTeamWithRepoAccess/mappings/orgs_github-api-test-org-2-8c23f1.json new file mode 100644 index 0000000000..648fa789c2 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateTeamWithRepoAccess/mappings/orgs_github-api-test-org-2-8c23f1.json @@ -0,0 +1,43 @@ +{ + "id": "8c23f18e-d928-4e88-851d-fa36feecf615", + "name": "orgs_github-api-test-org", + "request": { + "url": "/orgs/github-api-test-org", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_github-api-test-org-8c23f18e-d928-4e88-851d-fa36feecf615.json", + "headers": { + "Date": "Fri, 01 Nov 2019 16:29:08 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4975", + "X-RateLimit-Reset": "1572629252", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"bbee0a14a82ca84871298052e1bcb545\"", + "Last-Modified": "Mon, 20 Apr 2015 00:42:30 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D319:5DFB:15D51C7:19DE151:5DBC5D53" + } + }, + "uuid": "8c23f18e-d928-4e88-851d-fa36feecf615", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateTeamWithRepoAccess/mappings/orgs_github-api-test-org_teams-4-3459b0.json b/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateTeamWithRepoAccess/mappings/orgs_github-api-test-org_teams-4-3459b0.json new file mode 100644 index 0000000000..d20f56274b --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateTeamWithRepoAccess/mappings/orgs_github-api-test-org_teams-4-3459b0.json @@ -0,0 +1,50 @@ +{ + "id": "3459b05f-6e47-4c41-be60-83c125bf180b", + "name": "orgs_github-api-test-org_teams", + "request": { + "url": "/orgs/github-api-test-org/teams", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"name\":\"create-team-test\",\"repo_names\":[\"github-api-test-org/github-api\"],\"permission\":\"push\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "orgs_github-api-test-org_teams-3459b05f-6e47-4c41-be60-83c125bf180b.json", + "headers": { + "Date": "Fri, 01 Nov 2019 16:29:09 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4973", + "X-RateLimit-Reset": "1572629252", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"107dcb6fe97e7e3aa92c5751075dec52\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, repo", + "Location": "https://api.github.com/teams/3501817", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D319:5DFB:15D51FE:19DE222:5DBC5D55" + } + }, + "uuid": "3459b05f-6e47-4c41-be60-83c125bf180b", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateTeamWithRepoAccess/mappings/repos_github-api-test-org_github-api-3-25876e.json b/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateTeamWithRepoAccess/mappings/repos_github-api-test-org_github-api-3-25876e.json new file mode 100644 index 0000000000..d7ababc9e6 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateTeamWithRepoAccess/mappings/repos_github-api-test-org_github-api-3-25876e.json @@ -0,0 +1,43 @@ +{ + "id": "25876edf-6351-4b59-9e1d-82886a02f721", + "name": "repos_github-api-test-org_github-api", + "request": { + "url": "/repos/github-api-test-org/github-api", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api-25876edf-6351-4b59-9e1d-82886a02f721.json", + "headers": { + "Date": "Fri, 01 Nov 2019 16:29:09 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4974", + "X-RateLimit-Reset": "1572629252", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"cf0b2ec3da3061f2b2fcb4a57302a097\"", + "Last-Modified": "Wed, 30 Oct 2019 01:54:39 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D319:5DFB:15D51E2:19DE203:5DBC5D54" + } + }, + "uuid": "25876edf-6351-4b59-9e1d-82886a02f721", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateTeamWithRepoAccess/mappings/teams_3501817_repos-5-97bad2.json b/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateTeamWithRepoAccess/mappings/teams_3501817_repos-5-97bad2.json new file mode 100644 index 0000000000..34d2c9802e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateTeamWithRepoAccess/mappings/teams_3501817_repos-5-97bad2.json @@ -0,0 +1,42 @@ +{ + "id": "97bad23b-9d25-4db2-8420-afbc40b450ac", + "name": "teams_3501817_repos", + "request": { + "url": "/teams/3501817/repos", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "teams_3501817_repos-97bad23b-9d25-4db2-8420-afbc40b450ac.json", + "headers": { + "Date": "Fri, 01 Nov 2019 16:29:09 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4972", + "X-RateLimit-Reset": "1572629252", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"99c69bfffe7e8b07f2a131b6a51ab377\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D319:5DFB:15D5245:19DE265:5DBC5D55" + } + }, + "uuid": "97bad23b-9d25-4db2-8420-afbc40b450ac", + "persistent": true, + "insertionIndex": 5 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateTeamWithRepoAccess/mappings/user-1-8620f0.json b/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateTeamWithRepoAccess/mappings/user-1-8620f0.json new file mode 100644 index 0000000000..3e1a79a8e3 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testCreateTeamWithRepoAccess/mappings/user-1-8620f0.json @@ -0,0 +1,43 @@ +{ + "id": "8620f09e-7f34-4e00-860b-335d22d56f92", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-8620f09e-7f34-4e00-860b-335d22d56f92.json", + "headers": { + "Date": "Fri, 01 Nov 2019 16:29:07 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4979", + "X-RateLimit-Reset": "1572629252", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"314a780ab48b55be9920f26d1eda7d83\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D319:5DFB:15D513B:19DE13D:5DBC5D53" + } + }, + "uuid": "8620f09e-7f34-4e00-860b-335d22d56f92", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testInviteUser/__files/orgs_github-api-test-org-6480b3f7-e3e1-4a01-98fb-ca85b6ea4099.json b/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testInviteUser/__files/orgs_github-api-test-org-6480b3f7-e3e1-4a01-98fb-ca85b6ea4099.json new file mode 100644 index 0000000000..3810bc400e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testInviteUser/__files/orgs_github-api-test-org-6480b3f7-e3e1-4a01-98fb-ca85b6ea4099.json @@ -0,0 +1,41 @@ +{ + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "url": "https://api.github.com/orgs/github-api-test-org", + "repos_url": "https://api.github.com/orgs/github-api-test-org/repos", + "events_url": "https://api.github.com/orgs/github-api-test-org/events", + "hooks_url": "https://api.github.com/orgs/github-api-test-org/hooks", + "issues_url": "https://api.github.com/orgs/github-api-test-org/issues", + "members_url": "https://api.github.com/orgs/github-api-test-org/members{/member}", + "public_members_url": "https://api.github.com/orgs/github-api-test-org/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "description": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 9, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/github-api-test-org", + "created_at": "2014-05-10T19:39:11Z", + "updated_at": "2015-04-20T00:42:30Z", + "type": "Organization", + "total_private_repos": 0, + "owned_private_repos": 0, + "private_gists": 0, + "disk_usage": 132, + "collaborators": 0, + "billing_email": "kk@kohsuke.org", + "default_repository_permission": "none", + "members_can_create_repositories": false, + "two_factor_requirement_enabled": false, + "plan": { + "name": "free", + "space": 976562499, + "private_repos": 0, + "filled_seats": 5, + "seats": 0 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testInviteUser/__files/orgs_github-api-test-org_members-e0db340d-7d23-488e-9858-6e71ed5a4c84.json b/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testInviteUser/__files/orgs_github-api-test-org_members-e0db340d-7d23-488e-9858-6e71ed5a4c84.json new file mode 100644 index 0000000000..fc46d24121 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testInviteUser/__files/orgs_github-api-test-org_members-e0db340d-7d23-488e-9858-6e71ed5a4c84.json @@ -0,0 +1,102 @@ +[ + { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + { + "login": "kohsuke", + "id": 50003, + "node_id": "MDQ6VXNlcjUwMDAz", + "avatar_url": "https://avatars1.githubusercontent.com/u/50003?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kohsuke", + "html_url": "https://github.com/kohsuke", + "followers_url": "https://api.github.com/users/kohsuke/followers", + "following_url": "https://api.github.com/users/kohsuke/following{/other_user}", + "gists_url": "https://api.github.com/users/kohsuke/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kohsuke/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kohsuke/subscriptions", + "organizations_url": "https://api.github.com/users/kohsuke/orgs", + "repos_url": "https://api.github.com/users/kohsuke/repos", + "events_url": "https://api.github.com/users/kohsuke/events{/privacy}", + "received_events_url": "https://api.github.com/users/kohsuke/received_events", + "type": "User", + "site_admin": false + }, + { + "login": "kohsuke2", + "id": 1329242, + "node_id": "MDQ6VXNlcjEzMjkyNDI=", + "avatar_url": "https://avatars2.githubusercontent.com/u/1329242?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kohsuke2", + "html_url": "https://github.com/kohsuke2", + "followers_url": "https://api.github.com/users/kohsuke2/followers", + "following_url": "https://api.github.com/users/kohsuke2/following{/other_user}", + "gists_url": "https://api.github.com/users/kohsuke2/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kohsuke2/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kohsuke2/subscriptions", + "organizations_url": "https://api.github.com/users/kohsuke2/orgs", + "repos_url": "https://api.github.com/users/kohsuke2/repos", + "events_url": "https://api.github.com/users/kohsuke2/events{/privacy}", + "received_events_url": "https://api.github.com/users/kohsuke2/received_events", + "type": "User", + "site_admin": false + }, + { + "login": "martinvanzijl", + "id": 24422213, + "node_id": "MDQ6VXNlcjI0NDIyMjEz", + "avatar_url": "https://avatars0.githubusercontent.com/u/24422213?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/martinvanzijl", + "html_url": "https://github.com/martinvanzijl", + "followers_url": "https://api.github.com/users/martinvanzijl/followers", + "following_url": "https://api.github.com/users/martinvanzijl/following{/other_user}", + "gists_url": "https://api.github.com/users/martinvanzijl/gists{/gist_id}", + "starred_url": "https://api.github.com/users/martinvanzijl/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/martinvanzijl/subscriptions", + "organizations_url": "https://api.github.com/users/martinvanzijl/orgs", + "repos_url": "https://api.github.com/users/martinvanzijl/repos", + "events_url": "https://api.github.com/users/martinvanzijl/events{/privacy}", + "received_events_url": "https://api.github.com/users/martinvanzijl/received_events", + "type": "User", + "site_admin": false + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testInviteUser/__files/orgs_github-api-test-org_memberships_martinvanzijl2-d8831e1a-2b63-4d3f-82b2-87f4d14116f3.json b/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testInviteUser/__files/orgs_github-api-test-org_memberships_martinvanzijl2-d8831e1a-2b63-4d3f-82b2-87f4d14116f3.json new file mode 100644 index 0000000000..d1a762d305 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testInviteUser/__files/orgs_github-api-test-org_memberships_martinvanzijl2-d8831e1a-2b63-4d3f-82b2-87f4d14116f3.json @@ -0,0 +1,40 @@ +{ + "url": "https://api.github.com/orgs/github-api-test-org/memberships/martinvanzijl2", + "state": "pending", + "role": "member", + "organization_url": "https://api.github.com/orgs/github-api-test-org", + "user": { + "login": "martinvanzijl2", + "id": 56241446, + "node_id": "MDQ6VXNlcjU2MjQxNDQ2", + "avatar_url": "https://avatars1.githubusercontent.com/u/56241446?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/martinvanzijl2", + "html_url": "https://github.com/martinvanzijl2", + "followers_url": "https://api.github.com/users/martinvanzijl2/followers", + "following_url": "https://api.github.com/users/martinvanzijl2/following{/other_user}", + "gists_url": "https://api.github.com/users/martinvanzijl2/gists{/gist_id}", + "starred_url": "https://api.github.com/users/martinvanzijl2/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/martinvanzijl2/subscriptions", + "organizations_url": "https://api.github.com/users/martinvanzijl2/orgs", + "repos_url": "https://api.github.com/users/martinvanzijl2/repos", + "events_url": "https://api.github.com/users/martinvanzijl2/events{/privacy}", + "received_events_url": "https://api.github.com/users/martinvanzijl2/received_events", + "type": "User", + "site_admin": false + }, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "url": "https://api.github.com/orgs/github-api-test-org", + "repos_url": "https://api.github.com/orgs/github-api-test-org/repos", + "events_url": "https://api.github.com/orgs/github-api-test-org/events", + "hooks_url": "https://api.github.com/orgs/github-api-test-org/hooks", + "issues_url": "https://api.github.com/orgs/github-api-test-org/issues", + "members_url": "https://api.github.com/orgs/github-api-test-org/members{/member}", + "public_members_url": "https://api.github.com/orgs/github-api-test-org/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "description": null + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testInviteUser/__files/users_martinvanzijl2-26b89bbe-835e-4bf6-b60a-bc32177b3fdb.json b/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testInviteUser/__files/users_martinvanzijl2-26b89bbe-835e-4bf6-b60a-bc32177b3fdb.json new file mode 100644 index 0000000000..f74cb72dcb --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testInviteUser/__files/users_martinvanzijl2-26b89bbe-835e-4bf6-b60a-bc32177b3fdb.json @@ -0,0 +1,33 @@ +{ + "login": "martinvanzijl2", + "id": 56241446, + "node_id": "MDQ6VXNlcjU2MjQxNDQ2", + "avatar_url": "https://avatars1.githubusercontent.com/u/56241446?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/martinvanzijl2", + "html_url": "https://github.com/martinvanzijl2", + "followers_url": "https://api.github.com/users/martinvanzijl2/followers", + "following_url": "https://api.github.com/users/martinvanzijl2/following{/other_user}", + "gists_url": "https://api.github.com/users/martinvanzijl2/gists{/gist_id}", + "starred_url": "https://api.github.com/users/martinvanzijl2/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/martinvanzijl2/subscriptions", + "organizations_url": "https://api.github.com/users/martinvanzijl2/orgs", + "repos_url": "https://api.github.com/users/martinvanzijl2/repos", + "events_url": "https://api.github.com/users/martinvanzijl2/events{/privacy}", + "received_events_url": "https://api.github.com/users/martinvanzijl2/received_events", + "type": "User", + "site_admin": false, + "name": null, + "company": null, + "blog": "", + "location": null, + "email": null, + "hireable": null, + "bio": "This is simply a dummy user to test the GitHub API.", + "public_repos": 0, + "public_gists": 0, + "followers": 0, + "following": 0, + "created_at": "2019-10-07T02:22:41Z", + "updated_at": "2019-10-07T02:24:44Z" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testInviteUser/mappings/orgs_github-api-test-org-1-6480b3.json b/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testInviteUser/mappings/orgs_github-api-test-org-1-6480b3.json new file mode 100644 index 0000000000..10d11b78de --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testInviteUser/mappings/orgs_github-api-test-org-1-6480b3.json @@ -0,0 +1,41 @@ +{ + "id": "6480b3f7-e3e1-4a01-98fb-ca85b6ea4099", + "name": "orgs_github-api-test-org", + "request": { + "url": "/orgs/github-api-test-org", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_github-api-test-org-6480b3f7-e3e1-4a01-98fb-ca85b6ea4099.json", + "headers": { + "Date": "Mon, 07 Oct 2019 01:45:07 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4947", + "X-RateLimit-Reset": "1570415536", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"d8bc4d5d05a58bb455672c502a2bd068\"", + "Last-Modified": "Mon, 20 Apr 2015 00:42:30 GMT", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "ED29:68EB:382F4B:417BC3:5D9A98A2" + } + }, + "uuid": "6480b3f7-e3e1-4a01-98fb-ca85b6ea4099", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testInviteUser/mappings/orgs_github-api-test-org_members-2-e0db34.json b/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testInviteUser/mappings/orgs_github-api-test-org_members-2-e0db34.json new file mode 100644 index 0000000000..1bb600711b --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testInviteUser/mappings/orgs_github-api-test-org_members-2-e0db34.json @@ -0,0 +1,40 @@ +{ + "id": "e0db340d-7d23-488e-9858-6e71ed5a4c84", + "name": "orgs_github-api-test-org_members", + "request": { + "url": "/orgs/github-api-test-org/members", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_github-api-test-org_members-e0db340d-7d23-488e-9858-6e71ed5a4c84.json", + "headers": { + "Date": "Mon, 07 Oct 2019 01:45:07 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4946", + "X-RateLimit-Reset": "1570415536", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"28698a13d1d693d64b821be22f3d3455\"", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "ED29:68EB:382F58:417BD1:5D9A98A3" + } + }, + "uuid": "e0db340d-7d23-488e-9858-6e71ed5a4c84", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testInviteUser/mappings/orgs_github-api-test-org_members_martinvanzijl2-4-885640.json b/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testInviteUser/mappings/orgs_github-api-test-org_members_martinvanzijl2-4-885640.json new file mode 100644 index 0000000000..2ad4a2b424 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testInviteUser/mappings/orgs_github-api-test-org_members_martinvanzijl2-4-885640.json @@ -0,0 +1,34 @@ +{ + "id": "88564018-d428-4df4-8b94-6462f417caec", + "name": "orgs_github-api-test-org_members_martinvanzijl2", + "request": { + "url": "/orgs/github-api-test-org/members/martinvanzijl2", + "method": "GET" + }, + "response": { + "status": 404, + "body": "{\"message\":\"User does not exist or is not a member of the organization\",\"documentation_url\":\"https://developer.github.com/v3/orgs/members/#check-membership\"}", + "headers": { + "Date": "Mon, 07 Oct 2019 02:32:54 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4972", + "X-RateLimit-Reset": "1570418960", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "BBDE:0E84:C4BDDB:E266B8:5D9AA3D5" + } + }, + "uuid": "88564018-d428-4df4-8b94-6462f417caec", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testInviteUser/mappings/orgs_github-api-test-org_memberships_martinvanzijl2-5-d8831e.json b/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testInviteUser/mappings/orgs_github-api-test-org_memberships_martinvanzijl2-5-d8831e.json new file mode 100644 index 0000000000..869f368cf3 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testInviteUser/mappings/orgs_github-api-test-org_memberships_martinvanzijl2-5-d8831e.json @@ -0,0 +1,47 @@ +{ + "id": "d8831e1a-2b63-4d3f-82b2-87f4d14116f3", + "name": "orgs_github-api-test-org_memberships_martinvanzijl2", + "request": { + "url": "/orgs/github-api-test-org/memberships/martinvanzijl2", + "method": "PUT", + "bodyPatterns": [ + { + "equalToJson": "{\"role\":\"member\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 200, + "bodyFileName": "orgs_github-api-test-org_memberships_martinvanzijl2-d8831e1a-2b63-4d3f-82b2-87f4d14116f3.json", + "headers": { + "Date": "Mon, 07 Oct 2019 02:32:54 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4971", + "X-RateLimit-Reset": "1570418960", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"5b0170b5d0a93008c60b76928a17590d\"", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "BBDE:0E84:C4BDE4:E266C5:5D9AA3D6" + } + }, + "uuid": "d8831e1a-2b63-4d3f-82b2-87f4d14116f3", + "persistent": true, + "insertionIndex": 5 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testInviteUser/mappings/users_martinvanzijl2-3-26b89b.json b/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testInviteUser/mappings/users_martinvanzijl2-3-26b89b.json new file mode 100644 index 0000000000..ecccb80a72 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHOrganizationTest/wiremock/testInviteUser/mappings/users_martinvanzijl2-3-26b89b.json @@ -0,0 +1,41 @@ +{ + "id": "26b89bbe-835e-4bf6-b60a-bc32177b3fdb", + "name": "users_martinvanzijl2", + "request": { + "url": "/users/martinvanzijl2", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "users_martinvanzijl2-26b89bbe-835e-4bf6-b60a-bc32177b3fdb.json", + "headers": { + "Date": "Mon, 07 Oct 2019 02:32:53 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4973", + "X-RateLimit-Reset": "1570418960", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"6dca753bbfc1fe8923a2f99bb429a781\"", + "Last-Modified": "Mon, 07 Oct 2019 02:24:44 GMT", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "BBDE:0E84:C4BDCE:E266A9:5D9AA3D5" + } + }, + "uuid": "26b89bbe-835e-4bf6-b60a-bc32177b3fdb", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testArchiveCard/__files/orgs_github-api-test-org-8a33ed8f-a98f-47af-a4e7-a30928da2e70.json b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testArchiveCard/__files/orgs_github-api-test-org-8a33ed8f-a98f-47af-a4e7-a30928da2e70.json new file mode 100644 index 0000000000..d4c06c4749 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testArchiveCard/__files/orgs_github-api-test-org-8a33ed8f-a98f-47af-a4e7-a30928da2e70.json @@ -0,0 +1,41 @@ +{ + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "url": "https://api.github.com/orgs/github-api-test-org", + "repos_url": "https://api.github.com/orgs/github-api-test-org/repos", + "events_url": "https://api.github.com/orgs/github-api-test-org/events", + "hooks_url": "https://api.github.com/orgs/github-api-test-org/hooks", + "issues_url": "https://api.github.com/orgs/github-api-test-org/issues", + "members_url": "https://api.github.com/orgs/github-api-test-org/members{/member}", + "public_members_url": "https://api.github.com/orgs/github-api-test-org/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "description": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 9, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/github-api-test-org", + "created_at": "2014-05-10T19:39:11Z", + "updated_at": "2015-04-20T00:42:30Z", + "type": "Organization", + "total_private_repos": 0, + "owned_private_repos": 0, + "private_gists": 0, + "disk_usage": 132, + "collaborators": 0, + "billing_email": "kk@kohsuke.org", + "default_repository_permission": "none", + "members_can_create_repositories": false, + "two_factor_requirement_enabled": false, + "plan": { + "name": "free", + "space": 976562499, + "private_repos": 0, + "filled_seats": 4, + "seats": 0 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testArchiveCard/__files/orgs_github-api-test-org_projects-b659e68a-af69-4413-a2fa-602524428990.json b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testArchiveCard/__files/orgs_github-api-test-org_projects-b659e68a-af69-4413-a2fa-602524428990.json new file mode 100644 index 0000000000..06acfcdc1a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testArchiveCard/__files/orgs_github-api-test-org_projects-b659e68a-af69-4413-a2fa-602524428990.json @@ -0,0 +1,36 @@ +{ + "owner_url": "https://api.github.com/orgs/github-api-test-org", + "url": "https://api.github.com/projects/3312444", + "html_url": "https://github.com/orgs/github-api-test-org/projects/29", + "columns_url": "https://api.github.com/projects/3312444/columns", + "id": 3312444, + "node_id": "MDc6UHJvamVjdDMzMTI0NDQ=", + "name": "test-project", + "body": "This is a test project", + "number": 29, + "state": "open", + "creator": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2019-10-04T17:25:02Z", + "updated_at": "2019-10-04T17:25:02Z", + "organization_permission": "write", + "private": true +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testArchiveCard/__files/projects_3312444_columns-3be146c4-9f97-4b2d-9951-16dd86ec334f.json b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testArchiveCard/__files/projects_3312444_columns-3be146c4-9f97-4b2d-9951-16dd86ec334f.json new file mode 100644 index 0000000000..77eddc66fa --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testArchiveCard/__files/projects_3312444_columns-3be146c4-9f97-4b2d-9951-16dd86ec334f.json @@ -0,0 +1,10 @@ +{ + "url": "https://api.github.com/projects/columns/6706801", + "project_url": "https://api.github.com/projects/3312444", + "cards_url": "https://api.github.com/projects/columns/6706801/cards", + "id": 6706801, + "node_id": "MDEzOlByb2plY3RDb2x1bW42NzA2ODAx", + "name": "column-one", + "created_at": "2019-10-04T17:25:04Z", + "updated_at": "2019-10-04T17:25:04Z" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testArchiveCard/__files/projects_columns_6706801_cards-45bdd9f0-5efe-43c3-b01f-130894549d0d.json b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testArchiveCard/__files/projects_columns_6706801_cards-45bdd9f0-5efe-43c3-b01f-130894549d0d.json new file mode 100644 index 0000000000..a0e0256b15 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testArchiveCard/__files/projects_columns_6706801_cards-45bdd9f0-5efe-43c3-b01f-130894549d0d.json @@ -0,0 +1,31 @@ +{ + "url": "https://api.github.com/projects/columns/cards/27353270", + "project_url": "https://api.github.com/projects/3312444", + "id": 27353270, + "node_id": "MDExOlByb2plY3RDYXJkMjczNTMyNzA=", + "note": "This is a card", + "archived": false, + "creator": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2019-10-04T17:25:04Z", + "updated_at": "2019-10-04T17:25:04Z", + "column_url": "https://api.github.com/projects/columns/6706801" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testArchiveCard/__files/projects_columns_cards_27353270-75b0d2d0-bf80-4ffe-bb43-a39a48abf2ac.json b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testArchiveCard/__files/projects_columns_cards_27353270-75b0d2d0-bf80-4ffe-bb43-a39a48abf2ac.json new file mode 100644 index 0000000000..76e1c0889f --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testArchiveCard/__files/projects_columns_cards_27353270-75b0d2d0-bf80-4ffe-bb43-a39a48abf2ac.json @@ -0,0 +1,31 @@ +{ + "url": "https://api.github.com/projects/columns/cards/27353270", + "project_url": "https://api.github.com/projects/3312444", + "id": 27353270, + "node_id": "MDExOlByb2plY3RDYXJkMjczNTMyNzA=", + "note": "This is a card", + "archived": true, + "creator": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2019-10-04T17:25:04Z", + "updated_at": "2019-10-04T17:25:04Z", + "column_url": "https://api.github.com/projects/columns/6706801" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testArchiveCard/__files/projects_columns_cards_27353270-97fd6c7d-30b2-4036-9d02-b3be29a2c045.json b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testArchiveCard/__files/projects_columns_cards_27353270-97fd6c7d-30b2-4036-9d02-b3be29a2c045.json new file mode 100644 index 0000000000..76e1c0889f --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testArchiveCard/__files/projects_columns_cards_27353270-97fd6c7d-30b2-4036-9d02-b3be29a2c045.json @@ -0,0 +1,31 @@ +{ + "url": "https://api.github.com/projects/columns/cards/27353270", + "project_url": "https://api.github.com/projects/3312444", + "id": 27353270, + "node_id": "MDExOlByb2plY3RDYXJkMjczNTMyNzA=", + "note": "This is a card", + "archived": true, + "creator": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2019-10-04T17:25:04Z", + "updated_at": "2019-10-04T17:25:04Z", + "column_url": "https://api.github.com/projects/columns/6706801" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testArchiveCard/__files/user-0c7200e4-cdc5-45a5-997a-d7b8568751cf.json b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testArchiveCard/__files/user-0c7200e4-cdc5-45a5-997a-d7b8568751cf.json new file mode 100644 index 0000000000..41fc9e3d00 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testArchiveCard/__files/user-0c7200e4-cdc5-45a5-997a-d7b8568751cf.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 168, + "public_gists": 4, + "followers": 136, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testArchiveCard/mappings/orgs_github-api-test-org-2-8a33ed.json b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testArchiveCard/mappings/orgs_github-api-test-org-2-8a33ed.json new file mode 100644 index 0000000000..0fad4ad0c7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testArchiveCard/mappings/orgs_github-api-test-org-2-8a33ed.json @@ -0,0 +1,43 @@ +{ + "id": "8a33ed8f-a98f-47af-a4e7-a30928da2e70", + "name": "orgs_github-api-test-org", + "request": { + "url": "/orgs/github-api-test-org", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_github-api-test-org-8a33ed8f-a98f-47af-a4e7-a30928da2e70.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:25:02 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4631", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"9f594020395ec69662bd8dc1ceecdc09\"", + "Last-Modified": "Mon, 20 Apr 2015 00:42:30 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FED3:9576:937E69:B04FBA:5D97806E" + } + }, + "uuid": "8a33ed8f-a98f-47af-a4e7-a30928da2e70", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testArchiveCard/mappings/orgs_github-api-test-org_projects-3-b659e6.json b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testArchiveCard/mappings/orgs_github-api-test-org_projects-3-b659e6.json new file mode 100644 index 0000000000..38d50bdddf --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testArchiveCard/mappings/orgs_github-api-test-org_projects-3-b659e6.json @@ -0,0 +1,50 @@ +{ + "id": "b659e68a-af69-4413-a2fa-602524428990", + "name": "orgs_github-api-test-org_projects", + "request": { + "url": "/orgs/github-api-test-org/projects", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"name\":\"test-project\",\"body\":\"This is a test project\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "orgs_github-api-test-org_projects-b659e68a-af69-4413-a2fa-602524428990.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:25:02 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4630", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"0352b24f63b26aa9d39c6249d1fe1c9d\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo, write:org", + "Location": "https://api.github.com/projects/3312444", + "X-GitHub-Media-Type": "github.inertia-preview; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FED3:9576:937E80:B04FDD:5D97806E" + } + }, + "uuid": "b659e68a-af69-4413-a2fa-602524428990", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testArchiveCard/mappings/projects_3312444_columns-4-3be146.json b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testArchiveCard/mappings/projects_3312444_columns-4-3be146.json new file mode 100644 index 0000000000..c772215c9d --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testArchiveCard/mappings/projects_3312444_columns-4-3be146.json @@ -0,0 +1,50 @@ +{ + "id": "3be146c4-9f97-4b2d-9951-16dd86ec334f", + "name": "projects_3312444_columns", + "request": { + "url": "/projects/3312444/columns", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"name\":\"column-one\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "projects_3312444_columns-3be146c4-9f97-4b2d-9951-16dd86ec334f.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:25:04 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4629", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"8a5a130f59bb6cf0ede0418db5a2ca39\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo, write:org", + "Location": "https://api.github.com/projects/columns/6706801", + "X-GitHub-Media-Type": "github.inertia-preview; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FED3:9576:937E9D:B05000:5D97806E" + } + }, + "uuid": "3be146c4-9f97-4b2d-9951-16dd86ec334f", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testArchiveCard/mappings/projects_columns_6706801_cards-5-45bdd9.json b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testArchiveCard/mappings/projects_columns_6706801_cards-5-45bdd9.json new file mode 100644 index 0000000000..16a7772f38 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testArchiveCard/mappings/projects_columns_6706801_cards-5-45bdd9.json @@ -0,0 +1,50 @@ +{ + "id": "45bdd9f0-5efe-43c3-b01f-130894549d0d", + "name": "projects_columns_6706801_cards", + "request": { + "url": "/projects/columns/6706801/cards", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"note\":\"This is a card\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "projects_columns_6706801_cards-45bdd9f0-5efe-43c3-b01f-130894549d0d.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:25:04 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4628", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"d2c60751e9be05289aec1483ae32d09f\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo, write:org", + "Location": "https://api.github.com/projects/columns/cards/27353270", + "X-GitHub-Media-Type": "github.inertia-preview; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FED3:9576:937F08:B0507E:5D978070" + } + }, + "uuid": "45bdd9f0-5efe-43c3-b01f-130894549d0d", + "persistent": true, + "insertionIndex": 5 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testArchiveCard/mappings/projects_columns_cards_27353270-6-97fd6c.json b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testArchiveCard/mappings/projects_columns_cards_27353270-6-97fd6c.json new file mode 100644 index 0000000000..e8b2dcd02b --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testArchiveCard/mappings/projects_columns_cards_27353270-6-97fd6c.json @@ -0,0 +1,49 @@ +{ + "id": "97fd6c7d-30b2-4036-9d02-b3be29a2c045", + "name": "projects_columns_cards_27353270", + "request": { + "url": "/projects/columns/cards/27353270", + "method": "PATCH", + "bodyPatterns": [ + { + "equalToJson": "{\"archived\":true}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 200, + "bodyFileName": "projects_columns_cards_27353270-97fd6c7d-30b2-4036-9d02-b3be29a2c045.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:25:05 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4627", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"ffc5b693f27764f98ac96f98a71de68b\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo, write:org", + "X-GitHub-Media-Type": "github.inertia-preview; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FED3:9576:937F1A:B05094:5D978070" + } + }, + "uuid": "97fd6c7d-30b2-4036-9d02-b3be29a2c045", + "persistent": true, + "insertionIndex": 6 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testArchiveCard/mappings/projects_columns_cards_27353270-7-75b0d2.json b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testArchiveCard/mappings/projects_columns_cards_27353270-7-75b0d2.json new file mode 100644 index 0000000000..f823dcfb6d --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testArchiveCard/mappings/projects_columns_cards_27353270-7-75b0d2.json @@ -0,0 +1,42 @@ +{ + "id": "75b0d2d0-bf80-4ffe-bb43-a39a48abf2ac", + "name": "projects_columns_cards_27353270", + "request": { + "url": "/projects/columns/cards/27353270", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "projects_columns_cards_27353270-75b0d2d0-bf80-4ffe-bb43-a39a48abf2ac.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:25:05 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4626", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"ffc5b693f27764f98ac96f98a71de68b\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "read:org, repo", + "X-GitHub-Media-Type": "github.inertia-preview; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FED3:9576:937F27:B050A1:5D978071" + } + }, + "uuid": "75b0d2d0-bf80-4ffe-bb43-a39a48abf2ac", + "persistent": true, + "insertionIndex": 7 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testArchiveCard/mappings/user-1-0c7200.json b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testArchiveCard/mappings/user-1-0c7200.json new file mode 100644 index 0000000000..f658bec9c8 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testArchiveCard/mappings/user-1-0c7200.json @@ -0,0 +1,43 @@ +{ + "id": "0c7200e4-cdc5-45a5-997a-d7b8568751cf", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-0c7200e4-cdc5-45a5-997a-d7b8568751cf.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:25:02 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4633", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"af0c41afcacb8ceee14b7d896719c3bd\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FED3:9576:937E51:B04FAD:5D97806D" + } + }, + "uuid": "0c7200e4-cdc5-45a5-997a-d7b8568751cf", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreateCardFromIssue/__files/orgs_github-api-test-org-2cd47524-8e16-4b6b-aedd-d8dbfbfe5aa9.json b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreateCardFromIssue/__files/orgs_github-api-test-org-2cd47524-8e16-4b6b-aedd-d8dbfbfe5aa9.json new file mode 100644 index 0000000000..d4c06c4749 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreateCardFromIssue/__files/orgs_github-api-test-org-2cd47524-8e16-4b6b-aedd-d8dbfbfe5aa9.json @@ -0,0 +1,41 @@ +{ + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "url": "https://api.github.com/orgs/github-api-test-org", + "repos_url": "https://api.github.com/orgs/github-api-test-org/repos", + "events_url": "https://api.github.com/orgs/github-api-test-org/events", + "hooks_url": "https://api.github.com/orgs/github-api-test-org/hooks", + "issues_url": "https://api.github.com/orgs/github-api-test-org/issues", + "members_url": "https://api.github.com/orgs/github-api-test-org/members{/member}", + "public_members_url": "https://api.github.com/orgs/github-api-test-org/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "description": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 9, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/github-api-test-org", + "created_at": "2014-05-10T19:39:11Z", + "updated_at": "2015-04-20T00:42:30Z", + "type": "Organization", + "total_private_repos": 0, + "owned_private_repos": 0, + "private_gists": 0, + "disk_usage": 132, + "collaborators": 0, + "billing_email": "kk@kohsuke.org", + "default_repository_permission": "none", + "members_can_create_repositories": false, + "two_factor_requirement_enabled": false, + "plan": { + "name": "free", + "space": 976562499, + "private_repos": 0, + "filled_seats": 4, + "seats": 0 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreateCardFromIssue/__files/orgs_github-api-test-org_projects-bac54b7b-af26-4015-85d1-97d981800e06.json b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreateCardFromIssue/__files/orgs_github-api-test-org_projects-bac54b7b-af26-4015-85d1-97d981800e06.json new file mode 100644 index 0000000000..8e1d50d6ca --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreateCardFromIssue/__files/orgs_github-api-test-org_projects-bac54b7b-af26-4015-85d1-97d981800e06.json @@ -0,0 +1,36 @@ +{ + "owner_url": "https://api.github.com/orgs/github-api-test-org", + "url": "https://api.github.com/projects/3312449", + "html_url": "https://github.com/orgs/github-api-test-org/projects/31", + "columns_url": "https://api.github.com/projects/3312449/columns", + "id": 3312449, + "node_id": "MDc6UHJvamVjdDMzMTI0NDk=", + "name": "test-project", + "body": "This is a test project", + "number": 31, + "state": "open", + "creator": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2019-10-04T17:25:11Z", + "updated_at": "2019-10-04T17:25:11Z", + "organization_permission": "write", + "private": true +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreateCardFromIssue/__files/orgs_github-api-test-org_repos-c2d81922-c3f6-41b3-b109-de8cfe1452a6.json b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreateCardFromIssue/__files/orgs_github-api-test-org_repos-c2d81922-c3f6-41b3-b109-de8cfe1452a6.json new file mode 100644 index 0000000000..45f2fedc15 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreateCardFromIssue/__files/orgs_github-api-test-org_repos-c2d81922-c3f6-41b3-b109-de8cfe1452a6.json @@ -0,0 +1,124 @@ +{ + "id": 212868194, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTI4NjgxOTQ=", + "name": "repo-for-project-card", + "full_name": "github-api-test-org/repo-for-project-card", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/repo-for-project-card", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/github-api-test-org/repo-for-project-card", + "forks_url": "https://api.github.com/repos/github-api-test-org/repo-for-project-card/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/repo-for-project-card/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/repo-for-project-card/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/repo-for-project-card/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/repo-for-project-card/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/repo-for-project-card/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/repo-for-project-card/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/repo-for-project-card/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/repo-for-project-card/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/repo-for-project-card/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/repo-for-project-card/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/repo-for-project-card/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/repo-for-project-card/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/repo-for-project-card/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/repo-for-project-card/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/repo-for-project-card/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/repo-for-project-card/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/repo-for-project-card/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/repo-for-project-card/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/repo-for-project-card/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/repo-for-project-card/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/repo-for-project-card/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/repo-for-project-card/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/repo-for-project-card/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/repo-for-project-card/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/repo-for-project-card/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/repo-for-project-card/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/repo-for-project-card/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/repo-for-project-card/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/repo-for-project-card/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/repo-for-project-card/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/repo-for-project-card/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/repo-for-project-card/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/repo-for-project-card/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/repo-for-project-card/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/repo-for-project-card/deployments", + "created_at": "2019-10-04T17:25:12Z", + "updated_at": "2019-10-04T17:25:12Z", + "pushed_at": "2019-10-04T17:25:13Z", + "git_url": "git://github.com/github-api-test-org/repo-for-project-card.git", + "ssh_url": "git@github.com:github-api-test-org/repo-for-project-card.git", + "clone_url": "https://github.com/github-api-test-org/repo-for-project-card.git", + "svn_url": "https://github.com/github-api-test-org/repo-for-project-card", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "network_count": 0, + "subscribers_count": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreateCardFromIssue/__files/projects_3312449_columns-5b504083-4657-4d27-aaff-54f97a361d7a.json b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreateCardFromIssue/__files/projects_3312449_columns-5b504083-4657-4d27-aaff-54f97a361d7a.json new file mode 100644 index 0000000000..f011da95b1 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreateCardFromIssue/__files/projects_3312449_columns-5b504083-4657-4d27-aaff-54f97a361d7a.json @@ -0,0 +1,10 @@ +{ + "url": "https://api.github.com/projects/columns/6706803", + "project_url": "https://api.github.com/projects/3312449", + "cards_url": "https://api.github.com/projects/columns/6706803/cards", + "id": 6706803, + "node_id": "MDEzOlByb2plY3RDb2x1bW42NzA2ODAz", + "name": "column-one", + "created_at": "2019-10-04T17:25:11Z", + "updated_at": "2019-10-04T17:25:11Z" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreateCardFromIssue/__files/projects_columns_6706803_cards-6458c399-0897-43a0-a869-f43a56e32cae.json b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreateCardFromIssue/__files/projects_columns_6706803_cards-6458c399-0897-43a0-a869-f43a56e32cae.json new file mode 100644 index 0000000000..f1baadb19a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreateCardFromIssue/__files/projects_columns_6706803_cards-6458c399-0897-43a0-a869-f43a56e32cae.json @@ -0,0 +1,32 @@ +{ + "url": "https://api.github.com/projects/columns/cards/27353276", + "project_url": "https://api.github.com/projects/3312449", + "id": 27353276, + "node_id": "MDExOlByb2plY3RDYXJkMjczNTMyNzY=", + "note": null, + "archived": false, + "creator": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2019-10-04T17:25:14Z", + "updated_at": "2019-10-04T17:25:14Z", + "column_url": "https://api.github.com/projects/columns/6706803", + "content_url": "https://api.github.com/repos/github-api-test-org/repo-for-project-card/issues/1" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreateCardFromIssue/__files/projects_columns_6706803_cards-e6d34d34-6779-4c36-83e1-b783989750c3.json b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreateCardFromIssue/__files/projects_columns_6706803_cards-e6d34d34-6779-4c36-83e1-b783989750c3.json new file mode 100644 index 0000000000..2e66145ee5 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreateCardFromIssue/__files/projects_columns_6706803_cards-e6d34d34-6779-4c36-83e1-b783989750c3.json @@ -0,0 +1,31 @@ +{ + "url": "https://api.github.com/projects/columns/cards/27353274", + "project_url": "https://api.github.com/projects/3312449", + "id": 27353274, + "node_id": "MDExOlByb2plY3RDYXJkMjczNTMyNzQ=", + "note": "This is a card", + "archived": false, + "creator": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2019-10-04T17:25:11Z", + "updated_at": "2019-10-04T17:25:11Z", + "column_url": "https://api.github.com/projects/columns/6706803" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreateCardFromIssue/__files/repos_github-api-test-org_repo-for-project-card_issues-29d82e53-34b8-4443-bddd-fdd14726484d.json b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreateCardFromIssue/__files/repos_github-api-test-org_repo-for-project-card_issues-29d82e53-34b8-4443-bddd-fdd14726484d.json new file mode 100644 index 0000000000..47a1b67868 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreateCardFromIssue/__files/repos_github-api-test-org_repo-for-project-card_issues-29d82e53-34b8-4443-bddd-fdd14726484d.json @@ -0,0 +1,45 @@ +{ + "url": "https://api.github.com/repos/github-api-test-org/repo-for-project-card/issues/1", + "repository_url": "https://api.github.com/repos/github-api-test-org/repo-for-project-card", + "labels_url": "https://api.github.com/repos/github-api-test-org/repo-for-project-card/issues/1/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/repo-for-project-card/issues/1/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/repo-for-project-card/issues/1/events", + "html_url": "https://github.com/github-api-test-org/repo-for-project-card/issues/1", + "id": 502754474, + "node_id": "MDU6SXNzdWU1MDI3NTQ0NzQ=", + "number": 1, + "title": "new-issue", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-10-04T17:25:13Z", + "updated_at": "2019-10-04T17:25:13Z", + "closed_at": null, + "author_association": "MEMBER", + "body": "With body", + "closed_by": null +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreateCardFromIssue/__files/user-b9c4ba1f-224e-4e78-85ca-b1ac911fdd4e.json b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreateCardFromIssue/__files/user-b9c4ba1f-224e-4e78-85ca-b1ac911fdd4e.json new file mode 100644 index 0000000000..41fc9e3d00 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreateCardFromIssue/__files/user-b9c4ba1f-224e-4e78-85ca-b1ac911fdd4e.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 168, + "public_gists": 4, + "followers": 136, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreateCardFromIssue/mappings/orgs_github-api-test-org-2-2cd475.json b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreateCardFromIssue/mappings/orgs_github-api-test-org-2-2cd475.json new file mode 100644 index 0000000000..73bf97872f --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreateCardFromIssue/mappings/orgs_github-api-test-org-2-2cd475.json @@ -0,0 +1,43 @@ +{ + "id": "2cd47524-8e16-4b6b-aedd-d8dbfbfe5aa9", + "name": "orgs_github-api-test-org", + "request": { + "url": "/orgs/github-api-test-org", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_github-api-test-org-2cd47524-8e16-4b6b-aedd-d8dbfbfe5aa9.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:25:10 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4605", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"9f594020395ec69662bd8dc1ceecdc09\"", + "Last-Modified": "Mon, 20 Apr 2015 00:42:30 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FEDA:67D5:142032B:183BE8A:5D978076" + } + }, + "uuid": "2cd47524-8e16-4b6b-aedd-d8dbfbfe5aa9", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreateCardFromIssue/mappings/orgs_github-api-test-org_projects-3-bac54b.json b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreateCardFromIssue/mappings/orgs_github-api-test-org_projects-3-bac54b.json new file mode 100644 index 0000000000..2bccbc254c --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreateCardFromIssue/mappings/orgs_github-api-test-org_projects-3-bac54b.json @@ -0,0 +1,50 @@ +{ + "id": "bac54b7b-af26-4015-85d1-97d981800e06", + "name": "orgs_github-api-test-org_projects", + "request": { + "url": "/orgs/github-api-test-org/projects", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"name\":\"test-project\",\"body\":\"This is a test project\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "orgs_github-api-test-org_projects-bac54b7b-af26-4015-85d1-97d981800e06.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:25:11 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4604", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"d1d461a75278bbbb1a08d18225aed84e\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo, write:org", + "Location": "https://api.github.com/projects/3312449", + "X-GitHub-Media-Type": "github.inertia-preview; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FEDA:67D5:1420357:183BEDA:5D978076" + } + }, + "uuid": "bac54b7b-af26-4015-85d1-97d981800e06", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreateCardFromIssue/mappings/orgs_github-api-test-org_repos-6-c2d819.json b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreateCardFromIssue/mappings/orgs_github-api-test-org_repos-6-c2d819.json new file mode 100644 index 0000000000..4ea2da06b9 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreateCardFromIssue/mappings/orgs_github-api-test-org_repos-6-c2d819.json @@ -0,0 +1,50 @@ +{ + "id": "c2d81922-c3f6-41b3-b109-de8cfe1452a6", + "name": "orgs_github-api-test-org_repos", + "request": { + "url": "/orgs/github-api-test-org/repos", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"name\":\"repo-for-project-card\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "orgs_github-api-test-org_repos-c2d81922-c3f6-41b3-b109-de8cfe1452a6.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:25:13 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4601", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"ff15f221184e2f39f88faf88098794e9\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "Location": "https://api.github.com/repos/github-api-test-org/repo-for-project-card", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FEDA:67D5:14203DE:183BF9A:5D978078" + } + }, + "uuid": "c2d81922-c3f6-41b3-b109-de8cfe1452a6", + "persistent": true, + "insertionIndex": 6 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreateCardFromIssue/mappings/projects_3312449_columns-4-5b5040.json b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreateCardFromIssue/mappings/projects_3312449_columns-4-5b5040.json new file mode 100644 index 0000000000..51a874a0ac --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreateCardFromIssue/mappings/projects_3312449_columns-4-5b5040.json @@ -0,0 +1,50 @@ +{ + "id": "5b504083-4657-4d27-aaff-54f97a361d7a", + "name": "projects_3312449_columns", + "request": { + "url": "/projects/3312449/columns", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"name\":\"column-one\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "projects_3312449_columns-5b504083-4657-4d27-aaff-54f97a361d7a.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:25:11 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4603", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"6d8f989a5dec185be871918f7ec4d50c\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo, write:org", + "Location": "https://api.github.com/projects/columns/6706803", + "X-GitHub-Media-Type": "github.inertia-preview; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FEDA:67D5:142037F:183BF13:5D978077" + } + }, + "uuid": "5b504083-4657-4d27-aaff-54f97a361d7a", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreateCardFromIssue/mappings/projects_columns_6706803_cards-5-e6d34d.json b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreateCardFromIssue/mappings/projects_columns_6706803_cards-5-e6d34d.json new file mode 100644 index 0000000000..d9606fbcf1 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreateCardFromIssue/mappings/projects_columns_6706803_cards-5-e6d34d.json @@ -0,0 +1,50 @@ +{ + "id": "e6d34d34-6779-4c36-83e1-b783989750c3", + "name": "projects_columns_6706803_cards", + "request": { + "url": "/projects/columns/6706803/cards", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"note\":\"This is a card\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "projects_columns_6706803_cards-e6d34d34-6779-4c36-83e1-b783989750c3.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:25:12 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4602", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"0d7f40e0e039f508cb3b99df2bde0ed3\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo, write:org", + "Location": "https://api.github.com/projects/columns/cards/27353274", + "X-GitHub-Media-Type": "github.inertia-preview; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FEDA:67D5:142039F:183BF3D:5D978077" + } + }, + "uuid": "e6d34d34-6779-4c36-83e1-b783989750c3", + "persistent": true, + "insertionIndex": 5 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreateCardFromIssue/mappings/projects_columns_6706803_cards-8-6458c3.json b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreateCardFromIssue/mappings/projects_columns_6706803_cards-8-6458c3.json new file mode 100644 index 0000000000..1df22db0d0 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreateCardFromIssue/mappings/projects_columns_6706803_cards-8-6458c3.json @@ -0,0 +1,50 @@ +{ + "id": "6458c399-0897-43a0-a869-f43a56e32cae", + "name": "projects_columns_6706803_cards", + "request": { + "url": "/projects/columns/6706803/cards", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"content_type\":\"Issue\",\"content_id\":502754474}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "projects_columns_6706803_cards-6458c399-0897-43a0-a869-f43a56e32cae.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:25:14 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4599", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"05e36deeaf8f3f5a1cf0deac806488b7\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo, write:org", + "Location": "https://api.github.com/projects/columns/cards/27353276", + "X-GitHub-Media-Type": "github.inertia-preview; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FEDA:67D5:142046E:183C033:5D978079" + } + }, + "uuid": "6458c399-0897-43a0-a869-f43a56e32cae", + "persistent": true, + "insertionIndex": 8 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreateCardFromIssue/mappings/repos_github-api-test-org_repo-for-project-card-9-372cc0.json b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreateCardFromIssue/mappings/repos_github-api-test-org_repo-for-project-card-9-372cc0.json new file mode 100644 index 0000000000..cbf2c659e7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreateCardFromIssue/mappings/repos_github-api-test-org_repo-for-project-card-9-372cc0.json @@ -0,0 +1,35 @@ +{ + "id": "372cc0cc-75fb-42cf-8deb-21fbd656909f", + "name": "repos_github-api-test-org_repo-for-project-card", + "request": { + "url": "/repos/github-api-test-org/repo-for-project-card", + "method": "DELETE" + }, + "response": { + "status": 204, + "headers": { + "Date": "Fri, 04 Oct 2019 17:25:14 GMT", + "Server": "GitHub.com", + "Status": "204 No Content", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4598", + "X-RateLimit-Reset": "1570212957", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "delete_repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "FEDA:67D5:14204A5:183C079:5D97807A" + } + }, + "uuid": "372cc0cc-75fb-42cf-8deb-21fbd656909f", + "persistent": true, + "insertionIndex": 9 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreateCardFromIssue/mappings/repos_github-api-test-org_repo-for-project-card_issues-7-29d82e.json b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreateCardFromIssue/mappings/repos_github-api-test-org_repo-for-project-card_issues-7-29d82e.json new file mode 100644 index 0000000000..3031b1252e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreateCardFromIssue/mappings/repos_github-api-test-org_repo-for-project-card_issues-7-29d82e.json @@ -0,0 +1,50 @@ +{ + "id": "29d82e53-34b8-4443-bddd-fdd14726484d", + "name": "repos_github-api-test-org_repo-for-project-card_issues", + "request": { + "url": "/repos/github-api-test-org/repo-for-project-card/issues", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"assignees\":[],\"title\":\"new-issue\",\"body\":\"With body\",\"labels\":[]}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "repos_github-api-test-org_repo-for-project-card_issues-29d82e53-34b8-4443-bddd-fdd14726484d.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:25:13 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4600", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"0d7123758265ea6286208deab2079438\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/github-api-test-org/repo-for-project-card/issues/1", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FEDA:67D5:1420438:183BFF5:5D978079" + } + }, + "uuid": "29d82e53-34b8-4443-bddd-fdd14726484d", + "persistent": true, + "insertionIndex": 7 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreateCardFromIssue/mappings/user-1-b9c4ba.json b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreateCardFromIssue/mappings/user-1-b9c4ba.json new file mode 100644 index 0000000000..a10ce254be --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreateCardFromIssue/mappings/user-1-b9c4ba.json @@ -0,0 +1,43 @@ +{ + "id": "b9c4ba1f-224e-4e78-85ca-b1ac911fdd4e", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-b9c4ba1f-224e-4e78-85ca-b1ac911fdd4e.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:25:10 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4607", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"af0c41afcacb8ceee14b7d896719c3bd\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FEDA:67D5:14202ED:183BE79:5D978076" + } + }, + "uuid": "b9c4ba1f-224e-4e78-85ca-b1ac911fdd4e", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreatedCard/__files/orgs_github-api-test-org-a73c2760-fcb1-4ad6-a379-508ae8bd6a92.json b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreatedCard/__files/orgs_github-api-test-org-a73c2760-fcb1-4ad6-a379-508ae8bd6a92.json new file mode 100644 index 0000000000..d4c06c4749 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreatedCard/__files/orgs_github-api-test-org-a73c2760-fcb1-4ad6-a379-508ae8bd6a92.json @@ -0,0 +1,41 @@ +{ + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "url": "https://api.github.com/orgs/github-api-test-org", + "repos_url": "https://api.github.com/orgs/github-api-test-org/repos", + "events_url": "https://api.github.com/orgs/github-api-test-org/events", + "hooks_url": "https://api.github.com/orgs/github-api-test-org/hooks", + "issues_url": "https://api.github.com/orgs/github-api-test-org/issues", + "members_url": "https://api.github.com/orgs/github-api-test-org/members{/member}", + "public_members_url": "https://api.github.com/orgs/github-api-test-org/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "description": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 9, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/github-api-test-org", + "created_at": "2014-05-10T19:39:11Z", + "updated_at": "2015-04-20T00:42:30Z", + "type": "Organization", + "total_private_repos": 0, + "owned_private_repos": 0, + "private_gists": 0, + "disk_usage": 132, + "collaborators": 0, + "billing_email": "kk@kohsuke.org", + "default_repository_permission": "none", + "members_can_create_repositories": false, + "two_factor_requirement_enabled": false, + "plan": { + "name": "free", + "space": 976562499, + "private_repos": 0, + "filled_seats": 4, + "seats": 0 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreatedCard/__files/orgs_github-api-test-org_projects-fd95c811-2dc4-458b-a18f-72b93e2cfac7.json b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreatedCard/__files/orgs_github-api-test-org_projects-fd95c811-2dc4-458b-a18f-72b93e2cfac7.json new file mode 100644 index 0000000000..a6b6c3d720 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreatedCard/__files/orgs_github-api-test-org_projects-fd95c811-2dc4-458b-a18f-72b93e2cfac7.json @@ -0,0 +1,36 @@ +{ + "owner_url": "https://api.github.com/orgs/github-api-test-org", + "url": "https://api.github.com/projects/3312442", + "html_url": "https://github.com/orgs/github-api-test-org/projects/27", + "columns_url": "https://api.github.com/projects/3312442/columns", + "id": 3312442, + "node_id": "MDc6UHJvamVjdDMzMTI0NDI=", + "name": "test-project", + "body": "This is a test project", + "number": 27, + "state": "open", + "creator": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2019-10-04T17:24:55Z", + "updated_at": "2019-10-04T17:24:55Z", + "organization_permission": "write", + "private": true +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreatedCard/__files/projects_3312442_columns-264f75eb-2b63-4727-9470-21079137ecf4.json b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreatedCard/__files/projects_3312442_columns-264f75eb-2b63-4727-9470-21079137ecf4.json new file mode 100644 index 0000000000..232f45cd97 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreatedCard/__files/projects_3312442_columns-264f75eb-2b63-4727-9470-21079137ecf4.json @@ -0,0 +1,10 @@ +{ + "url": "https://api.github.com/projects/columns/6706799", + "project_url": "https://api.github.com/projects/3312442", + "cards_url": "https://api.github.com/projects/columns/6706799/cards", + "id": 6706799, + "node_id": "MDEzOlByb2plY3RDb2x1bW42NzA2Nzk5", + "name": "column-one", + "created_at": "2019-10-04T17:24:55Z", + "updated_at": "2019-10-04T17:24:55Z" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreatedCard/__files/projects_columns_6706799_cards-0a15ceb0-700f-41b0-8a07-ac04dcdcd13f.json b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreatedCard/__files/projects_columns_6706799_cards-0a15ceb0-700f-41b0-8a07-ac04dcdcd13f.json new file mode 100644 index 0000000000..398fcdc1fd --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreatedCard/__files/projects_columns_6706799_cards-0a15ceb0-700f-41b0-8a07-ac04dcdcd13f.json @@ -0,0 +1,31 @@ +{ + "url": "https://api.github.com/projects/columns/cards/27353264", + "project_url": "https://api.github.com/projects/3312442", + "id": 27353264, + "node_id": "MDExOlByb2plY3RDYXJkMjczNTMyNjQ=", + "note": "This is a card", + "archived": false, + "creator": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2019-10-04T17:24:56Z", + "updated_at": "2019-10-04T17:24:56Z", + "column_url": "https://api.github.com/projects/columns/6706799" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreatedCard/__files/user-80e34816-e0ac-422b-807b-bc8c1f2bd313.json b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreatedCard/__files/user-80e34816-e0ac-422b-807b-bc8c1f2bd313.json new file mode 100644 index 0000000000..41fc9e3d00 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreatedCard/__files/user-80e34816-e0ac-422b-807b-bc8c1f2bd313.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 168, + "public_gists": 4, + "followers": 136, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreatedCard/mappings/orgs_github-api-test-org-2-a73c27.json b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreatedCard/mappings/orgs_github-api-test-org-2-a73c27.json new file mode 100644 index 0000000000..ea8de8733e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreatedCard/mappings/orgs_github-api-test-org-2-a73c27.json @@ -0,0 +1,43 @@ +{ + "id": "a73c2760-fcb1-4ad6-a379-508ae8bd6a92", + "name": "orgs_github-api-test-org", + "request": { + "url": "/orgs/github-api-test-org", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_github-api-test-org-a73c2760-fcb1-4ad6-a379-508ae8bd6a92.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:24:55 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4657", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"9f594020395ec69662bd8dc1ceecdc09\"", + "Last-Modified": "Mon, 20 Apr 2015 00:42:30 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FECA:67D5:141FD27:183B741:5D978066" + } + }, + "uuid": "a73c2760-fcb1-4ad6-a379-508ae8bd6a92", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreatedCard/mappings/orgs_github-api-test-org_projects-3-fd95c8.json b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreatedCard/mappings/orgs_github-api-test-org_projects-3-fd95c8.json new file mode 100644 index 0000000000..bfa5be1748 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreatedCard/mappings/orgs_github-api-test-org_projects-3-fd95c8.json @@ -0,0 +1,50 @@ +{ + "id": "fd95c811-2dc4-458b-a18f-72b93e2cfac7", + "name": "orgs_github-api-test-org_projects", + "request": { + "url": "/orgs/github-api-test-org/projects", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"name\":\"test-project\",\"body\":\"This is a test project\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "orgs_github-api-test-org_projects-fd95c811-2dc4-458b-a18f-72b93e2cfac7.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:24:55 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4656", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"8483e57ecc662f52cb6cd664af324822\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo, write:org", + "Location": "https://api.github.com/projects/3312442", + "X-GitHub-Media-Type": "github.inertia-preview; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FECA:67D5:141FD33:183B786:5D978067" + } + }, + "uuid": "fd95c811-2dc4-458b-a18f-72b93e2cfac7", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreatedCard/mappings/projects_3312442_columns-4-264f75.json b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreatedCard/mappings/projects_3312442_columns-4-264f75.json new file mode 100644 index 0000000000..9f33f5f512 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreatedCard/mappings/projects_3312442_columns-4-264f75.json @@ -0,0 +1,50 @@ +{ + "id": "264f75eb-2b63-4727-9470-21079137ecf4", + "name": "projects_3312442_columns", + "request": { + "url": "/projects/3312442/columns", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"name\":\"column-one\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "projects_3312442_columns-264f75eb-2b63-4727-9470-21079137ecf4.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:24:56 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4655", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"1f426f1160a962a9db803541783fa38f\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo, write:org", + "Location": "https://api.github.com/projects/columns/6706799", + "X-GitHub-Media-Type": "github.inertia-preview; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FECA:67D5:141FD56:183B7AF:5D978067" + } + }, + "uuid": "264f75eb-2b63-4727-9470-21079137ecf4", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreatedCard/mappings/projects_columns_6706799_cards-5-0a15ce.json b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreatedCard/mappings/projects_columns_6706799_cards-5-0a15ce.json new file mode 100644 index 0000000000..242057e527 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreatedCard/mappings/projects_columns_6706799_cards-5-0a15ce.json @@ -0,0 +1,50 @@ +{ + "id": "0a15ceb0-700f-41b0-8a07-ac04dcdcd13f", + "name": "projects_columns_6706799_cards", + "request": { + "url": "/projects/columns/6706799/cards", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"note\":\"This is a card\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "projects_columns_6706799_cards-0a15ceb0-700f-41b0-8a07-ac04dcdcd13f.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:24:56 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4654", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"29deaf737002d2e2c98e6667fd9c03a6\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo, write:org", + "Location": "https://api.github.com/projects/columns/cards/27353264", + "X-GitHub-Media-Type": "github.inertia-preview; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FECA:67D5:141FD76:183B7D1:5D978068" + } + }, + "uuid": "0a15ceb0-700f-41b0-8a07-ac04dcdcd13f", + "persistent": true, + "insertionIndex": 5 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreatedCard/mappings/user-1-80e348.json b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreatedCard/mappings/user-1-80e348.json new file mode 100644 index 0000000000..b518648eae --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testCreatedCard/mappings/user-1-80e348.json @@ -0,0 +1,43 @@ +{ + "id": "80e34816-e0ac-422b-807b-bc8c1f2bd313", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-80e34816-e0ac-422b-807b-bc8c1f2bd313.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:24:54 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4659", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"af0c41afcacb8ceee14b7d896719c3bd\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FECA:67D5:141FCEE:183B730:5D978066" + } + }, + "uuid": "80e34816-e0ac-422b-807b-bc8c1f2bd313", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testDeleteCard/__files/orgs_github-api-test-org-467a3990-86b4-4c0f-9d2a-e51630e548f6.json b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testDeleteCard/__files/orgs_github-api-test-org-467a3990-86b4-4c0f-9d2a-e51630e548f6.json new file mode 100644 index 0000000000..d4c06c4749 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testDeleteCard/__files/orgs_github-api-test-org-467a3990-86b4-4c0f-9d2a-e51630e548f6.json @@ -0,0 +1,41 @@ +{ + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "url": "https://api.github.com/orgs/github-api-test-org", + "repos_url": "https://api.github.com/orgs/github-api-test-org/repos", + "events_url": "https://api.github.com/orgs/github-api-test-org/events", + "hooks_url": "https://api.github.com/orgs/github-api-test-org/hooks", + "issues_url": "https://api.github.com/orgs/github-api-test-org/issues", + "members_url": "https://api.github.com/orgs/github-api-test-org/members{/member}", + "public_members_url": "https://api.github.com/orgs/github-api-test-org/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "description": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 9, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/github-api-test-org", + "created_at": "2014-05-10T19:39:11Z", + "updated_at": "2015-04-20T00:42:30Z", + "type": "Organization", + "total_private_repos": 0, + "owned_private_repos": 0, + "private_gists": 0, + "disk_usage": 132, + "collaborators": 0, + "billing_email": "kk@kohsuke.org", + "default_repository_permission": "none", + "members_can_create_repositories": false, + "two_factor_requirement_enabled": false, + "plan": { + "name": "free", + "space": 976562499, + "private_repos": 0, + "filled_seats": 4, + "seats": 0 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testDeleteCard/__files/orgs_github-api-test-org_projects-491fbbf4-d8d0-433d-9ec6-162fa95ad792.json b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testDeleteCard/__files/orgs_github-api-test-org_projects-491fbbf4-d8d0-433d-9ec6-162fa95ad792.json new file mode 100644 index 0000000000..8f72fd9edc --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testDeleteCard/__files/orgs_github-api-test-org_projects-491fbbf4-d8d0-433d-9ec6-162fa95ad792.json @@ -0,0 +1,36 @@ +{ + "owner_url": "https://api.github.com/orgs/github-api-test-org", + "url": "https://api.github.com/projects/3312447", + "html_url": "https://github.com/orgs/github-api-test-org/projects/30", + "columns_url": "https://api.github.com/projects/3312447/columns", + "id": 3312447, + "node_id": "MDc6UHJvamVjdDMzMTI0NDc=", + "name": "test-project", + "body": "This is a test project", + "number": 30, + "state": "open", + "creator": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2019-10-04T17:25:07Z", + "updated_at": "2019-10-04T17:25:07Z", + "organization_permission": "write", + "private": true +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testDeleteCard/__files/projects_3312447_columns-f80b3261-cf13-4bcf-82b7-19a1425cbe78.json b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testDeleteCard/__files/projects_3312447_columns-f80b3261-cf13-4bcf-82b7-19a1425cbe78.json new file mode 100644 index 0000000000..a9ed214c99 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testDeleteCard/__files/projects_3312447_columns-f80b3261-cf13-4bcf-82b7-19a1425cbe78.json @@ -0,0 +1,10 @@ +{ + "url": "https://api.github.com/projects/columns/6706802", + "project_url": "https://api.github.com/projects/3312447", + "cards_url": "https://api.github.com/projects/columns/6706802/cards", + "id": 6706802, + "node_id": "MDEzOlByb2plY3RDb2x1bW42NzA2ODAy", + "name": "column-one", + "created_at": "2019-10-04T17:25:08Z", + "updated_at": "2019-10-04T17:25:08Z" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testDeleteCard/__files/projects_columns_6706802_cards-aad1d69e-1823-41cc-9cb0-fac06faa77c3.json b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testDeleteCard/__files/projects_columns_6706802_cards-aad1d69e-1823-41cc-9cb0-fac06faa77c3.json new file mode 100644 index 0000000000..b83285598a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testDeleteCard/__files/projects_columns_6706802_cards-aad1d69e-1823-41cc-9cb0-fac06faa77c3.json @@ -0,0 +1,31 @@ +{ + "url": "https://api.github.com/projects/columns/cards/27353272", + "project_url": "https://api.github.com/projects/3312447", + "id": 27353272, + "node_id": "MDExOlByb2plY3RDYXJkMjczNTMyNzI=", + "note": "This is a card", + "archived": false, + "creator": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2019-10-04T17:25:08Z", + "updated_at": "2019-10-04T17:25:08Z", + "column_url": "https://api.github.com/projects/columns/6706802" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testDeleteCard/__files/user-c2f32bbc-aa66-407b-a3e3-4533d04dd4b0.json b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testDeleteCard/__files/user-c2f32bbc-aa66-407b-a3e3-4533d04dd4b0.json new file mode 100644 index 0000000000..41fc9e3d00 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testDeleteCard/__files/user-c2f32bbc-aa66-407b-a3e3-4533d04dd4b0.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 168, + "public_gists": 4, + "followers": 136, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testDeleteCard/mappings/orgs_github-api-test-org-2-467a39.json b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testDeleteCard/mappings/orgs_github-api-test-org-2-467a39.json new file mode 100644 index 0000000000..9735900cbb --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testDeleteCard/mappings/orgs_github-api-test-org-2-467a39.json @@ -0,0 +1,43 @@ +{ + "id": "467a3990-86b4-4c0f-9d2a-e51630e548f6", + "name": "orgs_github-api-test-org", + "request": { + "url": "/orgs/github-api-test-org", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_github-api-test-org-467a3990-86b4-4c0f-9d2a-e51630e548f6.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:25:07 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4617", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"9f594020395ec69662bd8dc1ceecdc09\"", + "Last-Modified": "Mon, 20 Apr 2015 00:42:30 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FED7:6B2E:1EAC0FC:24478BC:5D978072" + } + }, + "uuid": "467a3990-86b4-4c0f-9d2a-e51630e548f6", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testDeleteCard/mappings/orgs_github-api-test-org_projects-3-491fbb.json b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testDeleteCard/mappings/orgs_github-api-test-org_projects-3-491fbb.json new file mode 100644 index 0000000000..7a6a9d21c7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testDeleteCard/mappings/orgs_github-api-test-org_projects-3-491fbb.json @@ -0,0 +1,50 @@ +{ + "id": "491fbbf4-d8d0-433d-9ec6-162fa95ad792", + "name": "orgs_github-api-test-org_projects", + "request": { + "url": "/orgs/github-api-test-org/projects", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"name\":\"test-project\",\"body\":\"This is a test project\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "orgs_github-api-test-org_projects-491fbbf4-d8d0-433d-9ec6-162fa95ad792.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:25:07 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4616", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"eb4cbb2bed76b2e9609e23e1b2eec231\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo, write:org", + "Location": "https://api.github.com/projects/3312447", + "X-GitHub-Media-Type": "github.inertia-preview; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FED7:6B2E:1EAC115:2447957:5D978073" + } + }, + "uuid": "491fbbf4-d8d0-433d-9ec6-162fa95ad792", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testDeleteCard/mappings/projects_3312447_columns-4-f80b32.json b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testDeleteCard/mappings/projects_3312447_columns-4-f80b32.json new file mode 100644 index 0000000000..00601f8e79 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testDeleteCard/mappings/projects_3312447_columns-4-f80b32.json @@ -0,0 +1,50 @@ +{ + "id": "f80b3261-cf13-4bcf-82b7-19a1425cbe78", + "name": "projects_3312447_columns", + "request": { + "url": "/projects/3312447/columns", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"name\":\"column-one\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "projects_3312447_columns-f80b3261-cf13-4bcf-82b7-19a1425cbe78.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:25:08 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4615", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"926a8e0ba7900d031f98b6d037504662\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo, write:org", + "Location": "https://api.github.com/projects/columns/6706802", + "X-GitHub-Media-Type": "github.inertia-preview; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FED7:6B2E:1EAC164:244799C:5D978073" + } + }, + "uuid": "f80b3261-cf13-4bcf-82b7-19a1425cbe78", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testDeleteCard/mappings/projects_columns_6706802_cards-5-aad1d6.json b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testDeleteCard/mappings/projects_columns_6706802_cards-5-aad1d6.json new file mode 100644 index 0000000000..0fc7328b04 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testDeleteCard/mappings/projects_columns_6706802_cards-5-aad1d6.json @@ -0,0 +1,50 @@ +{ + "id": "aad1d69e-1823-41cc-9cb0-fac06faa77c3", + "name": "projects_columns_6706802_cards", + "request": { + "url": "/projects/columns/6706802/cards", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"note\":\"This is a card\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "projects_columns_6706802_cards-aad1d69e-1823-41cc-9cb0-fac06faa77c3.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:25:08 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4614", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"44c27a1ce11e5684b7e6315c800f2b3d\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo, write:org", + "Location": "https://api.github.com/projects/columns/cards/27353272", + "X-GitHub-Media-Type": "github.inertia-preview; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FED7:6B2E:1EAC194:24479DE:5D978074" + } + }, + "uuid": "aad1d69e-1823-41cc-9cb0-fac06faa77c3", + "persistent": true, + "insertionIndex": 5 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testDeleteCard/mappings/projects_columns_cards_27353272-6-e93cbd.json b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testDeleteCard/mappings/projects_columns_cards_27353272-6-e93cbd.json new file mode 100644 index 0000000000..cc142c50b0 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testDeleteCard/mappings/projects_columns_cards_27353272-6-e93cbd.json @@ -0,0 +1,35 @@ +{ + "id": "e93cbdb3-bfef-4942-864a-2dedbfee68ad", + "name": "projects_columns_cards_27353272", + "request": { + "url": "/projects/columns/cards/27353272", + "method": "DELETE" + }, + "response": { + "status": 204, + "headers": { + "Date": "Fri, 04 Oct 2019 17:25:08 GMT", + "Server": "GitHub.com", + "Status": "204 No Content", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4613", + "X-RateLimit-Reset": "1570212957", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo, write:org", + "X-GitHub-Media-Type": "github.inertia-preview; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "FED7:6B2E:1EAC1C8:2447A1F:5D978074" + } + }, + "uuid": "e93cbdb3-bfef-4942-864a-2dedbfee68ad", + "persistent": true, + "insertionIndex": 6 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testDeleteCard/mappings/projects_columns_cards_27353272-7-a7094f.json b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testDeleteCard/mappings/projects_columns_cards_27353272-7-a7094f.json new file mode 100644 index 0000000000..9a9c9eef7a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testDeleteCard/mappings/projects_columns_cards_27353272-7-a7094f.json @@ -0,0 +1,36 @@ +{ + "id": "a7094f87-0e11-4dd6-b1ea-1dfe4db61aee", + "name": "projects_columns_cards_27353272", + "request": { + "url": "/projects/columns/cards/27353272", + "method": "GET" + }, + "response": { + "status": 404, + "body": "{\"message\":\"Not Found\",\"documentation_url\":\"https://developer.github.com/v3/projects/cards/#get-a-project-card\"}", + "headers": { + "Date": "Fri, 04 Oct 2019 17:25:08 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4612", + "X-RateLimit-Reset": "1570212957", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.inertia-preview; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FED7:6B2E:1EAC1E9:2447A47:5D978074" + } + }, + "uuid": "a7094f87-0e11-4dd6-b1ea-1dfe4db61aee", + "persistent": true, + "insertionIndex": 7 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testDeleteCard/mappings/user-1-c2f32b.json b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testDeleteCard/mappings/user-1-c2f32b.json new file mode 100644 index 0000000000..27af7e3a3e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testDeleteCard/mappings/user-1-c2f32b.json @@ -0,0 +1,43 @@ +{ + "id": "c2f32bbc-aa66-407b-a3e3-4533d04dd4b0", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-c2f32bbc-aa66-407b-a3e3-4533d04dd4b0.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:25:06 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4619", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"af0c41afcacb8ceee14b7d896719c3bd\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FED7:6B2E:1EAC06D:2447893:5D978072" + } + }, + "uuid": "c2f32bbc-aa66-407b-a3e3-4533d04dd4b0", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testEditCardNote/__files/orgs_github-api-test-org-049038eb-8cc8-4480-b0e9-62a6bb55f112.json b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testEditCardNote/__files/orgs_github-api-test-org-049038eb-8cc8-4480-b0e9-62a6bb55f112.json new file mode 100644 index 0000000000..d4c06c4749 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testEditCardNote/__files/orgs_github-api-test-org-049038eb-8cc8-4480-b0e9-62a6bb55f112.json @@ -0,0 +1,41 @@ +{ + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "url": "https://api.github.com/orgs/github-api-test-org", + "repos_url": "https://api.github.com/orgs/github-api-test-org/repos", + "events_url": "https://api.github.com/orgs/github-api-test-org/events", + "hooks_url": "https://api.github.com/orgs/github-api-test-org/hooks", + "issues_url": "https://api.github.com/orgs/github-api-test-org/issues", + "members_url": "https://api.github.com/orgs/github-api-test-org/members{/member}", + "public_members_url": "https://api.github.com/orgs/github-api-test-org/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "description": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 9, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/github-api-test-org", + "created_at": "2014-05-10T19:39:11Z", + "updated_at": "2015-04-20T00:42:30Z", + "type": "Organization", + "total_private_repos": 0, + "owned_private_repos": 0, + "private_gists": 0, + "disk_usage": 132, + "collaborators": 0, + "billing_email": "kk@kohsuke.org", + "default_repository_permission": "none", + "members_can_create_repositories": false, + "two_factor_requirement_enabled": false, + "plan": { + "name": "free", + "space": 976562499, + "private_repos": 0, + "filled_seats": 4, + "seats": 0 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testEditCardNote/__files/orgs_github-api-test-org_projects-68e871e2-343e-47b7-aa45-b613ef9f8bc0.json b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testEditCardNote/__files/orgs_github-api-test-org_projects-68e871e2-343e-47b7-aa45-b613ef9f8bc0.json new file mode 100644 index 0000000000..ad949b86df --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testEditCardNote/__files/orgs_github-api-test-org_projects-68e871e2-343e-47b7-aa45-b613ef9f8bc0.json @@ -0,0 +1,36 @@ +{ + "owner_url": "https://api.github.com/orgs/github-api-test-org", + "url": "https://api.github.com/projects/3312443", + "html_url": "https://github.com/orgs/github-api-test-org/projects/28", + "columns_url": "https://api.github.com/projects/3312443/columns", + "id": 3312443, + "node_id": "MDc6UHJvamVjdDMzMTI0NDM=", + "name": "test-project", + "body": "This is a test project", + "number": 28, + "state": "open", + "creator": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2019-10-04T17:24:58Z", + "updated_at": "2019-10-04T17:24:58Z", + "organization_permission": "write", + "private": true +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testEditCardNote/__files/projects_3312443_columns-1de47f2e-9018-4a4f-9dad-0ee29614aa4e.json b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testEditCardNote/__files/projects_3312443_columns-1de47f2e-9018-4a4f-9dad-0ee29614aa4e.json new file mode 100644 index 0000000000..e9fdff9a44 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testEditCardNote/__files/projects_3312443_columns-1de47f2e-9018-4a4f-9dad-0ee29614aa4e.json @@ -0,0 +1,10 @@ +{ + "url": "https://api.github.com/projects/columns/6706800", + "project_url": "https://api.github.com/projects/3312443", + "cards_url": "https://api.github.com/projects/columns/6706800/cards", + "id": 6706800, + "node_id": "MDEzOlByb2plY3RDb2x1bW42NzA2ODAw", + "name": "column-one", + "created_at": "2019-10-04T17:24:58Z", + "updated_at": "2019-10-04T17:24:58Z" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testEditCardNote/__files/projects_columns_6706800_cards-695ce51a-3df9-4aea-b10d-471d3ff856b8.json b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testEditCardNote/__files/projects_columns_6706800_cards-695ce51a-3df9-4aea-b10d-471d3ff856b8.json new file mode 100644 index 0000000000..df17defa08 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testEditCardNote/__files/projects_columns_6706800_cards-695ce51a-3df9-4aea-b10d-471d3ff856b8.json @@ -0,0 +1,31 @@ +{ + "url": "https://api.github.com/projects/columns/cards/27353267", + "project_url": "https://api.github.com/projects/3312443", + "id": 27353267, + "node_id": "MDExOlByb2plY3RDYXJkMjczNTMyNjc=", + "note": "This is a card", + "archived": false, + "creator": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2019-10-04T17:24:59Z", + "updated_at": "2019-10-04T17:24:59Z", + "column_url": "https://api.github.com/projects/columns/6706800" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testEditCardNote/__files/projects_columns_cards_27353267-62a0d7cf-0c8a-4f96-8c00-c48aeaab4a6f.json b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testEditCardNote/__files/projects_columns_cards_27353267-62a0d7cf-0c8a-4f96-8c00-c48aeaab4a6f.json new file mode 100644 index 0000000000..6953abdec5 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testEditCardNote/__files/projects_columns_cards_27353267-62a0d7cf-0c8a-4f96-8c00-c48aeaab4a6f.json @@ -0,0 +1,31 @@ +{ + "url": "https://api.github.com/projects/columns/cards/27353267", + "project_url": "https://api.github.com/projects/3312443", + "id": 27353267, + "node_id": "MDExOlByb2plY3RDYXJkMjczNTMyNjc=", + "note": "New note", + "archived": false, + "creator": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2019-10-04T17:24:59Z", + "updated_at": "2019-10-04T17:24:59Z", + "column_url": "https://api.github.com/projects/columns/6706800" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testEditCardNote/__files/projects_columns_cards_27353267-93c5d233-0602-432f-a6a1-784506a19fe0.json b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testEditCardNote/__files/projects_columns_cards_27353267-93c5d233-0602-432f-a6a1-784506a19fe0.json new file mode 100644 index 0000000000..6953abdec5 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testEditCardNote/__files/projects_columns_cards_27353267-93c5d233-0602-432f-a6a1-784506a19fe0.json @@ -0,0 +1,31 @@ +{ + "url": "https://api.github.com/projects/columns/cards/27353267", + "project_url": "https://api.github.com/projects/3312443", + "id": 27353267, + "node_id": "MDExOlByb2plY3RDYXJkMjczNTMyNjc=", + "note": "New note", + "archived": false, + "creator": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2019-10-04T17:24:59Z", + "updated_at": "2019-10-04T17:24:59Z", + "column_url": "https://api.github.com/projects/columns/6706800" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testEditCardNote/__files/user-355d682a-6ab6-4af5-be72-d00bf6403051.json b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testEditCardNote/__files/user-355d682a-6ab6-4af5-be72-d00bf6403051.json new file mode 100644 index 0000000000..41fc9e3d00 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testEditCardNote/__files/user-355d682a-6ab6-4af5-be72-d00bf6403051.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 168, + "public_gists": 4, + "followers": 136, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testEditCardNote/mappings/orgs_github-api-test-org-2-049038.json b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testEditCardNote/mappings/orgs_github-api-test-org-2-049038.json new file mode 100644 index 0000000000..31c00194ca --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testEditCardNote/mappings/orgs_github-api-test-org-2-049038.json @@ -0,0 +1,43 @@ +{ + "id": "049038eb-8cc8-4480-b0e9-62a6bb55f112", + "name": "orgs_github-api-test-org", + "request": { + "url": "/orgs/github-api-test-org", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_github-api-test-org-049038eb-8cc8-4480-b0e9-62a6bb55f112.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:24:58 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4645", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"9f594020395ec69662bd8dc1ceecdc09\"", + "Last-Modified": "Mon, 20 Apr 2015 00:42:30 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FECE:9576:937D7E:B04EA7:5D97806A" + } + }, + "uuid": "049038eb-8cc8-4480-b0e9-62a6bb55f112", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testEditCardNote/mappings/orgs_github-api-test-org_projects-3-68e871.json b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testEditCardNote/mappings/orgs_github-api-test-org_projects-3-68e871.json new file mode 100644 index 0000000000..d215b10a94 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testEditCardNote/mappings/orgs_github-api-test-org_projects-3-68e871.json @@ -0,0 +1,50 @@ +{ + "id": "68e871e2-343e-47b7-aa45-b613ef9f8bc0", + "name": "orgs_github-api-test-org_projects", + "request": { + "url": "/orgs/github-api-test-org/projects", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"name\":\"test-project\",\"body\":\"This is a test project\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "orgs_github-api-test-org_projects-68e871e2-343e-47b7-aa45-b613ef9f8bc0.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:24:58 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4644", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"7bb94c8c7bbddb7adf83151d48bd7acc\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo, write:org", + "Location": "https://api.github.com/projects/3312443", + "X-GitHub-Media-Type": "github.inertia-preview; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FECE:9576:937D87:B04EB8:5D97806A" + } + }, + "uuid": "68e871e2-343e-47b7-aa45-b613ef9f8bc0", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testEditCardNote/mappings/projects_3312443_columns-4-1de47f.json b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testEditCardNote/mappings/projects_3312443_columns-4-1de47f.json new file mode 100644 index 0000000000..e80c148faa --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testEditCardNote/mappings/projects_3312443_columns-4-1de47f.json @@ -0,0 +1,50 @@ +{ + "id": "1de47f2e-9018-4a4f-9dad-0ee29614aa4e", + "name": "projects_3312443_columns", + "request": { + "url": "/projects/3312443/columns", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"name\":\"column-one\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "projects_3312443_columns-1de47f2e-9018-4a4f-9dad-0ee29614aa4e.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:24:59 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4643", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"3243dc01ed1b53aabad6a24f048dc99f\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo, write:org", + "Location": "https://api.github.com/projects/columns/6706800", + "X-GitHub-Media-Type": "github.inertia-preview; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FECE:9576:937D98:B04ECA:5D97806A" + } + }, + "uuid": "1de47f2e-9018-4a4f-9dad-0ee29614aa4e", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testEditCardNote/mappings/projects_columns_6706800_cards-5-695ce5.json b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testEditCardNote/mappings/projects_columns_6706800_cards-5-695ce5.json new file mode 100644 index 0000000000..f2eb9a923e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testEditCardNote/mappings/projects_columns_6706800_cards-5-695ce5.json @@ -0,0 +1,50 @@ +{ + "id": "695ce51a-3df9-4aea-b10d-471d3ff856b8", + "name": "projects_columns_6706800_cards", + "request": { + "url": "/projects/columns/6706800/cards", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"note\":\"This is a card\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "projects_columns_6706800_cards-695ce51a-3df9-4aea-b10d-471d3ff856b8.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:24:59 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4642", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"11ba043406f49747c9a9276315707b66\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo, write:org", + "Location": "https://api.github.com/projects/columns/cards/27353267", + "X-GitHub-Media-Type": "github.inertia-preview; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FECE:9576:937DA3:B04EDA:5D97806B" + } + }, + "uuid": "695ce51a-3df9-4aea-b10d-471d3ff856b8", + "persistent": true, + "insertionIndex": 5 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testEditCardNote/mappings/projects_columns_cards_27353267-6-62a0d7.json b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testEditCardNote/mappings/projects_columns_cards_27353267-6-62a0d7.json new file mode 100644 index 0000000000..5427f1a256 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testEditCardNote/mappings/projects_columns_cards_27353267-6-62a0d7.json @@ -0,0 +1,49 @@ +{ + "id": "62a0d7cf-0c8a-4f96-8c00-c48aeaab4a6f", + "name": "projects_columns_cards_27353267", + "request": { + "url": "/projects/columns/cards/27353267", + "method": "PATCH", + "bodyPatterns": [ + { + "equalToJson": "{\"note\":\"New note\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 200, + "bodyFileName": "projects_columns_cards_27353267-62a0d7cf-0c8a-4f96-8c00-c48aeaab4a6f.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:24:59 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4641", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"c7463959f008c276bc758a6de34254ef\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo, write:org", + "X-GitHub-Media-Type": "github.inertia-preview; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FECE:9576:937DB6:B04EF0:5D97806B" + } + }, + "uuid": "62a0d7cf-0c8a-4f96-8c00-c48aeaab4a6f", + "persistent": true, + "insertionIndex": 6 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testEditCardNote/mappings/projects_columns_cards_27353267-7-93c5d2.json b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testEditCardNote/mappings/projects_columns_cards_27353267-7-93c5d2.json new file mode 100644 index 0000000000..5b1f9e23aa --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testEditCardNote/mappings/projects_columns_cards_27353267-7-93c5d2.json @@ -0,0 +1,42 @@ +{ + "id": "93c5d233-0602-432f-a6a1-784506a19fe0", + "name": "projects_columns_cards_27353267", + "request": { + "url": "/projects/columns/cards/27353267", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "projects_columns_cards_27353267-93c5d233-0602-432f-a6a1-784506a19fe0.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:24:59 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4640", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"c7463959f008c276bc758a6de34254ef\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "read:org, repo", + "X-GitHub-Media-Type": "github.inertia-preview; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FECE:9576:937DC4:B04F01:5D97806B" + } + }, + "uuid": "93c5d233-0602-432f-a6a1-784506a19fe0", + "persistent": true, + "insertionIndex": 7 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testEditCardNote/mappings/user-1-355d68.json b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testEditCardNote/mappings/user-1-355d68.json new file mode 100644 index 0000000000..8dd76aba80 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectCardTest/wiremock/testEditCardNote/mappings/user-1-355d68.json @@ -0,0 +1,43 @@ +{ + "id": "355d682a-6ab6-4af5-be72-d00bf6403051", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-355d682a-6ab6-4af5-be72-d00bf6403051.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:24:58 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4647", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"af0c41afcacb8ceee14b7d896719c3bd\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FECE:9576:937D70:B04E9E:5D978069" + } + }, + "uuid": "355d682a-6ab6-4af5-be72-d00bf6403051", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testCreatedColumn/__files/orgs_github-api-test-org-7feb4202-bd04-498e-a28c-fd9df44d8fc8.json b/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testCreatedColumn/__files/orgs_github-api-test-org-7feb4202-bd04-498e-a28c-fd9df44d8fc8.json new file mode 100644 index 0000000000..d4c06c4749 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testCreatedColumn/__files/orgs_github-api-test-org-7feb4202-bd04-498e-a28c-fd9df44d8fc8.json @@ -0,0 +1,41 @@ +{ + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "url": "https://api.github.com/orgs/github-api-test-org", + "repos_url": "https://api.github.com/orgs/github-api-test-org/repos", + "events_url": "https://api.github.com/orgs/github-api-test-org/events", + "hooks_url": "https://api.github.com/orgs/github-api-test-org/hooks", + "issues_url": "https://api.github.com/orgs/github-api-test-org/issues", + "members_url": "https://api.github.com/orgs/github-api-test-org/members{/member}", + "public_members_url": "https://api.github.com/orgs/github-api-test-org/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "description": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 9, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/github-api-test-org", + "created_at": "2014-05-10T19:39:11Z", + "updated_at": "2015-04-20T00:42:30Z", + "type": "Organization", + "total_private_repos": 0, + "owned_private_repos": 0, + "private_gists": 0, + "disk_usage": 132, + "collaborators": 0, + "billing_email": "kk@kohsuke.org", + "default_repository_permission": "none", + "members_can_create_repositories": false, + "two_factor_requirement_enabled": false, + "plan": { + "name": "free", + "space": 976562499, + "private_repos": 0, + "filled_seats": 4, + "seats": 0 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testCreatedColumn/__files/orgs_github-api-test-org_projects-42bd7d98-f969-40ce-bb9a-1586c556569d.json b/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testCreatedColumn/__files/orgs_github-api-test-org_projects-42bd7d98-f969-40ce-bb9a-1586c556569d.json new file mode 100644 index 0000000000..2980ef61c4 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testCreatedColumn/__files/orgs_github-api-test-org_projects-42bd7d98-f969-40ce-bb9a-1586c556569d.json @@ -0,0 +1,36 @@ +{ + "owner_url": "https://api.github.com/orgs/github-api-test-org", + "url": "https://api.github.com/projects/3312440", + "html_url": "https://github.com/orgs/github-api-test-org/projects/25", + "columns_url": "https://api.github.com/projects/3312440/columns", + "id": 3312440, + "node_id": "MDc6UHJvamVjdDMzMTI0NDA=", + "name": "test-project", + "body": "This is a test project", + "number": 25, + "state": "open", + "creator": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2019-10-04T17:24:27Z", + "updated_at": "2019-10-04T17:24:27Z", + "organization_permission": "write", + "private": true +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testCreatedColumn/__files/projects_3312440_columns-eb58635e-11b9-461d-8868-6ece3733f962.json b/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testCreatedColumn/__files/projects_3312440_columns-eb58635e-11b9-461d-8868-6ece3733f962.json new file mode 100644 index 0000000000..22e165b3c3 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testCreatedColumn/__files/projects_3312440_columns-eb58635e-11b9-461d-8868-6ece3733f962.json @@ -0,0 +1,10 @@ +{ + "url": "https://api.github.com/projects/columns/6706793", + "project_url": "https://api.github.com/projects/3312440", + "cards_url": "https://api.github.com/projects/columns/6706793/cards", + "id": 6706793, + "node_id": "MDEzOlByb2plY3RDb2x1bW42NzA2Nzkz", + "name": "column-one", + "created_at": "2019-10-04T17:24:27Z", + "updated_at": "2019-10-04T17:24:27Z" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testCreatedColumn/__files/user-ff30f972-21ad-40ee-aa60-c006643154d2.json b/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testCreatedColumn/__files/user-ff30f972-21ad-40ee-aa60-c006643154d2.json new file mode 100644 index 0000000000..41fc9e3d00 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testCreatedColumn/__files/user-ff30f972-21ad-40ee-aa60-c006643154d2.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 168, + "public_gists": 4, + "followers": 136, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testCreatedColumn/mappings/orgs_github-api-test-org-2-7feb42.json b/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testCreatedColumn/mappings/orgs_github-api-test-org-2-7feb42.json new file mode 100644 index 0000000000..893c862e18 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testCreatedColumn/mappings/orgs_github-api-test-org-2-7feb42.json @@ -0,0 +1,43 @@ +{ + "id": "7feb4202-bd04-498e-a28c-fd9df44d8fc8", + "name": "orgs_github-api-test-org", + "request": { + "url": "/orgs/github-api-test-org", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_github-api-test-org-7feb4202-bd04-498e-a28c-fd9df44d8fc8.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:24:26 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4675", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"9f594020395ec69662bd8dc1ceecdc09\"", + "Last-Modified": "Mon, 20 Apr 2015 00:42:30 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FEBB:3620:19183A8:1E0F91F:5D97804A" + } + }, + "uuid": "7feb4202-bd04-498e-a28c-fd9df44d8fc8", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testCreatedColumn/mappings/orgs_github-api-test-org_projects-3-42bd7d.json b/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testCreatedColumn/mappings/orgs_github-api-test-org_projects-3-42bd7d.json new file mode 100644 index 0000000000..3833763657 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testCreatedColumn/mappings/orgs_github-api-test-org_projects-3-42bd7d.json @@ -0,0 +1,50 @@ +{ + "id": "42bd7d98-f969-40ce-bb9a-1586c556569d", + "name": "orgs_github-api-test-org_projects", + "request": { + "url": "/orgs/github-api-test-org/projects", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"name\":\"test-project\",\"body\":\"This is a test project\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "orgs_github-api-test-org_projects-42bd7d98-f969-40ce-bb9a-1586c556569d.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:24:27 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4674", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"a6900939a35440d9033eab3545193374\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo, write:org", + "Location": "https://api.github.com/projects/3312440", + "X-GitHub-Media-Type": "github.inertia-preview; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FEBB:3620:19183C0:1E0F963:5D97804A" + } + }, + "uuid": "42bd7d98-f969-40ce-bb9a-1586c556569d", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testCreatedColumn/mappings/projects_3312440_columns-4-eb5863.json b/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testCreatedColumn/mappings/projects_3312440_columns-4-eb5863.json new file mode 100644 index 0000000000..c3871a6af5 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testCreatedColumn/mappings/projects_3312440_columns-4-eb5863.json @@ -0,0 +1,50 @@ +{ + "id": "eb58635e-11b9-461d-8868-6ece3733f962", + "name": "projects_3312440_columns", + "request": { + "url": "/projects/3312440/columns", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"name\":\"column-one\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "projects_3312440_columns-eb58635e-11b9-461d-8868-6ece3733f962.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:24:27 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4673", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"379f6babba44d5b0f33db74b05e245cc\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo, write:org", + "Location": "https://api.github.com/projects/columns/6706793", + "X-GitHub-Media-Type": "github.inertia-preview; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FEBB:3620:19183EC:1E0F994:5D97804B" + } + }, + "uuid": "eb58635e-11b9-461d-8868-6ece3733f962", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testCreatedColumn/mappings/user-1-ff30f9.json b/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testCreatedColumn/mappings/user-1-ff30f9.json new file mode 100644 index 0000000000..4a6ed6879c --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testCreatedColumn/mappings/user-1-ff30f9.json @@ -0,0 +1,43 @@ +{ + "id": "ff30f972-21ad-40ee-aa60-c006643154d2", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-ff30f972-21ad-40ee-aa60-c006643154d2.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:24:26 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4677", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"af0c41afcacb8ceee14b7d896719c3bd\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FEBB:3620:1918377:1E0F90A:5D97804A" + } + }, + "uuid": "ff30f972-21ad-40ee-aa60-c006643154d2", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testDeleteColumn/__files/orgs_github-api-test-org-f4a0595a-a719-4b21-bf67-f12d67bac972.json b/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testDeleteColumn/__files/orgs_github-api-test-org-f4a0595a-a719-4b21-bf67-f12d67bac972.json new file mode 100644 index 0000000000..d4c06c4749 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testDeleteColumn/__files/orgs_github-api-test-org-f4a0595a-a719-4b21-bf67-f12d67bac972.json @@ -0,0 +1,41 @@ +{ + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "url": "https://api.github.com/orgs/github-api-test-org", + "repos_url": "https://api.github.com/orgs/github-api-test-org/repos", + "events_url": "https://api.github.com/orgs/github-api-test-org/events", + "hooks_url": "https://api.github.com/orgs/github-api-test-org/hooks", + "issues_url": "https://api.github.com/orgs/github-api-test-org/issues", + "members_url": "https://api.github.com/orgs/github-api-test-org/members{/member}", + "public_members_url": "https://api.github.com/orgs/github-api-test-org/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "description": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 9, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/github-api-test-org", + "created_at": "2014-05-10T19:39:11Z", + "updated_at": "2015-04-20T00:42:30Z", + "type": "Organization", + "total_private_repos": 0, + "owned_private_repos": 0, + "private_gists": 0, + "disk_usage": 132, + "collaborators": 0, + "billing_email": "kk@kohsuke.org", + "default_repository_permission": "none", + "members_can_create_repositories": false, + "two_factor_requirement_enabled": false, + "plan": { + "name": "free", + "space": 976562499, + "private_repos": 0, + "filled_seats": 4, + "seats": 0 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testDeleteColumn/__files/orgs_github-api-test-org_projects-bfb7de93-74a1-48dc-a74a-ba06cee9e764.json b/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testDeleteColumn/__files/orgs_github-api-test-org_projects-bfb7de93-74a1-48dc-a74a-ba06cee9e764.json new file mode 100644 index 0000000000..a1e09d76c7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testDeleteColumn/__files/orgs_github-api-test-org_projects-bfb7de93-74a1-48dc-a74a-ba06cee9e764.json @@ -0,0 +1,36 @@ +{ + "owner_url": "https://api.github.com/orgs/github-api-test-org", + "url": "https://api.github.com/projects/3312441", + "html_url": "https://github.com/orgs/github-api-test-org/projects/26", + "columns_url": "https://api.github.com/projects/3312441/columns", + "id": 3312441, + "node_id": "MDc6UHJvamVjdDMzMTI0NDE=", + "name": "test-project", + "body": "This is a test project", + "number": 26, + "state": "open", + "creator": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2019-10-04T17:24:29Z", + "updated_at": "2019-10-04T17:24:29Z", + "organization_permission": "write", + "private": true +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testDeleteColumn/__files/projects_3312441_columns-fb6e53a0-db62-4037-8f0b-3511e79bea93.json b/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testDeleteColumn/__files/projects_3312441_columns-fb6e53a0-db62-4037-8f0b-3511e79bea93.json new file mode 100644 index 0000000000..7528c403d9 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testDeleteColumn/__files/projects_3312441_columns-fb6e53a0-db62-4037-8f0b-3511e79bea93.json @@ -0,0 +1,10 @@ +{ + "url": "https://api.github.com/projects/columns/6706794", + "project_url": "https://api.github.com/projects/3312441", + "cards_url": "https://api.github.com/projects/columns/6706794/cards", + "id": 6706794, + "node_id": "MDEzOlByb2plY3RDb2x1bW42NzA2Nzk0", + "name": "column-one", + "created_at": "2019-10-04T17:24:29Z", + "updated_at": "2019-10-04T17:24:29Z" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testDeleteColumn/__files/user-f818b667-7eed-4efb-9719-ea27f8d05b59.json b/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testDeleteColumn/__files/user-f818b667-7eed-4efb-9719-ea27f8d05b59.json new file mode 100644 index 0000000000..41fc9e3d00 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testDeleteColumn/__files/user-f818b667-7eed-4efb-9719-ea27f8d05b59.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 168, + "public_gists": 4, + "followers": 136, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testDeleteColumn/mappings/orgs_github-api-test-org-2-f4a059.json b/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testDeleteColumn/mappings/orgs_github-api-test-org-2-f4a059.json new file mode 100644 index 0000000000..da0026218e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testDeleteColumn/mappings/orgs_github-api-test-org-2-f4a059.json @@ -0,0 +1,43 @@ +{ + "id": "f4a0595a-a719-4b21-bf67-f12d67bac972", + "name": "orgs_github-api-test-org", + "request": { + "url": "/orgs/github-api-test-org", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_github-api-test-org-f4a0595a-a719-4b21-bf67-f12d67bac972.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:24:28 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4666", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"9f594020395ec69662bd8dc1ceecdc09\"", + "Last-Modified": "Mon, 20 Apr 2015 00:42:30 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FEBE:9576:93789E:B048D3:5D97804C" + } + }, + "uuid": "f4a0595a-a719-4b21-bf67-f12d67bac972", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testDeleteColumn/mappings/orgs_github-api-test-org_projects-3-bfb7de.json b/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testDeleteColumn/mappings/orgs_github-api-test-org_projects-3-bfb7de.json new file mode 100644 index 0000000000..1216936c02 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testDeleteColumn/mappings/orgs_github-api-test-org_projects-3-bfb7de.json @@ -0,0 +1,50 @@ +{ + "id": "bfb7de93-74a1-48dc-a74a-ba06cee9e764", + "name": "orgs_github-api-test-org_projects", + "request": { + "url": "/orgs/github-api-test-org/projects", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"name\":\"test-project\",\"body\":\"This is a test project\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "orgs_github-api-test-org_projects-bfb7de93-74a1-48dc-a74a-ba06cee9e764.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:24:29 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4665", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"692005a3bf5a296797a4882a89ae8d1c\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo, write:org", + "Location": "https://api.github.com/projects/3312441", + "X-GitHub-Media-Type": "github.inertia-preview; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FEBE:9576:9378A6:B048E5:5D97804C" + } + }, + "uuid": "bfb7de93-74a1-48dc-a74a-ba06cee9e764", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testDeleteColumn/mappings/projects_3312441_columns-4-fb6e53.json b/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testDeleteColumn/mappings/projects_3312441_columns-4-fb6e53.json new file mode 100644 index 0000000000..eaf2ea3852 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testDeleteColumn/mappings/projects_3312441_columns-4-fb6e53.json @@ -0,0 +1,50 @@ +{ + "id": "fb6e53a0-db62-4037-8f0b-3511e79bea93", + "name": "projects_3312441_columns", + "request": { + "url": "/projects/3312441/columns", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"name\":\"column-one\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "projects_3312441_columns-fb6e53a0-db62-4037-8f0b-3511e79bea93.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:24:29 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4664", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"7675060e89ea2dcb4eb492d8e0c75501\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo, write:org", + "Location": "https://api.github.com/projects/columns/6706794", + "X-GitHub-Media-Type": "github.inertia-preview; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FEBE:9576:9378BA:B048F7:5D97804D" + } + }, + "uuid": "fb6e53a0-db62-4037-8f0b-3511e79bea93", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testDeleteColumn/mappings/projects_columns_6706794-5-8c0cae.json b/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testDeleteColumn/mappings/projects_columns_6706794-5-8c0cae.json new file mode 100644 index 0000000000..584b3b19bd --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testDeleteColumn/mappings/projects_columns_6706794-5-8c0cae.json @@ -0,0 +1,35 @@ +{ + "id": "8c0cae31-5806-43dd-8c12-bdbd7152f930", + "name": "projects_columns_6706794", + "request": { + "url": "/projects/columns/6706794", + "method": "DELETE" + }, + "response": { + "status": 204, + "headers": { + "Date": "Fri, 04 Oct 2019 17:24:29 GMT", + "Server": "GitHub.com", + "Status": "204 No Content", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4663", + "X-RateLimit-Reset": "1570212957", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo, write:org", + "X-GitHub-Media-Type": "github.inertia-preview; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "FEBE:9576:9378C9:B0490B:5D97804D" + } + }, + "uuid": "8c0cae31-5806-43dd-8c12-bdbd7152f930", + "persistent": true, + "insertionIndex": 5 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testDeleteColumn/mappings/projects_columns_6706794-6-112e1e.json b/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testDeleteColumn/mappings/projects_columns_6706794-6-112e1e.json new file mode 100644 index 0000000000..38cc8b68fa --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testDeleteColumn/mappings/projects_columns_6706794-6-112e1e.json @@ -0,0 +1,36 @@ +{ + "id": "112e1e32-4afb-43b6-8a57-f4821737ff64", + "name": "projects_columns_6706794", + "request": { + "url": "/projects/columns/6706794", + "method": "GET" + }, + "response": { + "status": 404, + "body": "{\"message\":\"Not Found\",\"documentation_url\":\"https://developer.github.com/v3/projects/columns/#get-a-project-column\"}", + "headers": { + "Date": "Fri, 04 Oct 2019 17:24:29 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4662", + "X-RateLimit-Reset": "1570212957", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.inertia-preview; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FEBE:9576:9378D5:B04918:5D97804D" + } + }, + "uuid": "112e1e32-4afb-43b6-8a57-f4821737ff64", + "persistent": true, + "insertionIndex": 6 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testDeleteColumn/mappings/user-1-f818b6.json b/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testDeleteColumn/mappings/user-1-f818b6.json new file mode 100644 index 0000000000..202acbf907 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testDeleteColumn/mappings/user-1-f818b6.json @@ -0,0 +1,43 @@ +{ + "id": "f818b667-7eed-4efb-9719-ea27f8d05b59", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-f818b667-7eed-4efb-9719-ea27f8d05b59.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:24:28 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4668", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"af0c41afcacb8ceee14b7d896719c3bd\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FEBE:9576:937891:B048CB:5D97804C" + } + }, + "uuid": "f818b667-7eed-4efb-9719-ea27f8d05b59", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testEditColumnName/__files/orgs_github-api-test-org-eb0425ef-7f2e-4b3a-a7f7-53cef5d5647b.json b/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testEditColumnName/__files/orgs_github-api-test-org-eb0425ef-7f2e-4b3a-a7f7-53cef5d5647b.json new file mode 100644 index 0000000000..d4c06c4749 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testEditColumnName/__files/orgs_github-api-test-org-eb0425ef-7f2e-4b3a-a7f7-53cef5d5647b.json @@ -0,0 +1,41 @@ +{ + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "url": "https://api.github.com/orgs/github-api-test-org", + "repos_url": "https://api.github.com/orgs/github-api-test-org/repos", + "events_url": "https://api.github.com/orgs/github-api-test-org/events", + "hooks_url": "https://api.github.com/orgs/github-api-test-org/hooks", + "issues_url": "https://api.github.com/orgs/github-api-test-org/issues", + "members_url": "https://api.github.com/orgs/github-api-test-org/members{/member}", + "public_members_url": "https://api.github.com/orgs/github-api-test-org/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "description": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 9, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/github-api-test-org", + "created_at": "2014-05-10T19:39:11Z", + "updated_at": "2015-04-20T00:42:30Z", + "type": "Organization", + "total_private_repos": 0, + "owned_private_repos": 0, + "private_gists": 0, + "disk_usage": 132, + "collaborators": 0, + "billing_email": "kk@kohsuke.org", + "default_repository_permission": "none", + "members_can_create_repositories": false, + "two_factor_requirement_enabled": false, + "plan": { + "name": "free", + "space": 976562499, + "private_repos": 0, + "filled_seats": 4, + "seats": 0 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testEditColumnName/__files/orgs_github-api-test-org_projects-97b70b32-45f4-419f-87d0-f15a2c004196.json b/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testEditColumnName/__files/orgs_github-api-test-org_projects-97b70b32-45f4-419f-87d0-f15a2c004196.json new file mode 100644 index 0000000000..507b233b38 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testEditColumnName/__files/orgs_github-api-test-org_projects-97b70b32-45f4-419f-87d0-f15a2c004196.json @@ -0,0 +1,36 @@ +{ + "owner_url": "https://api.github.com/orgs/github-api-test-org", + "url": "https://api.github.com/projects/3312439", + "html_url": "https://github.com/orgs/github-api-test-org/projects/24", + "columns_url": "https://api.github.com/projects/3312439/columns", + "id": 3312439, + "node_id": "MDc6UHJvamVjdDMzMTI0Mzk=", + "name": "test-project", + "body": "This is a test project", + "number": 24, + "state": "open", + "creator": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2019-10-04T17:24:24Z", + "updated_at": "2019-10-04T17:24:24Z", + "organization_permission": "write", + "private": true +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testEditColumnName/__files/projects_3312439_columns-082ed3d1-bea6-48fc-8e61-a63c4d0db977.json b/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testEditColumnName/__files/projects_3312439_columns-082ed3d1-bea6-48fc-8e61-a63c4d0db977.json new file mode 100644 index 0000000000..209b7f26b2 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testEditColumnName/__files/projects_3312439_columns-082ed3d1-bea6-48fc-8e61-a63c4d0db977.json @@ -0,0 +1,10 @@ +{ + "url": "https://api.github.com/projects/columns/6706791", + "project_url": "https://api.github.com/projects/3312439", + "cards_url": "https://api.github.com/projects/columns/6706791/cards", + "id": 6706791, + "node_id": "MDEzOlByb2plY3RDb2x1bW42NzA2Nzkx", + "name": "column-one", + "created_at": "2019-10-04T17:24:24Z", + "updated_at": "2019-10-04T17:24:24Z" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testEditColumnName/__files/projects_columns_6706791-1cfa5ddf-74f4-4a95-aaf2-c8149c7d1c17.json b/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testEditColumnName/__files/projects_columns_6706791-1cfa5ddf-74f4-4a95-aaf2-c8149c7d1c17.json new file mode 100644 index 0000000000..3e2dc10d56 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testEditColumnName/__files/projects_columns_6706791-1cfa5ddf-74f4-4a95-aaf2-c8149c7d1c17.json @@ -0,0 +1,10 @@ +{ + "url": "https://api.github.com/projects/columns/6706791", + "project_url": "https://api.github.com/projects/3312439", + "cards_url": "https://api.github.com/projects/columns/6706791/cards", + "id": 6706791, + "node_id": "MDEzOlByb2plY3RDb2x1bW42NzA2Nzkx", + "name": "new-name", + "created_at": "2019-10-04T17:24:24Z", + "updated_at": "2019-10-04T17:24:24Z" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testEditColumnName/__files/projects_columns_6706791-85f35660-6579-4bea-af53-b636239dd5cd.json b/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testEditColumnName/__files/projects_columns_6706791-85f35660-6579-4bea-af53-b636239dd5cd.json new file mode 100644 index 0000000000..3e2dc10d56 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testEditColumnName/__files/projects_columns_6706791-85f35660-6579-4bea-af53-b636239dd5cd.json @@ -0,0 +1,10 @@ +{ + "url": "https://api.github.com/projects/columns/6706791", + "project_url": "https://api.github.com/projects/3312439", + "cards_url": "https://api.github.com/projects/columns/6706791/cards", + "id": 6706791, + "node_id": "MDEzOlByb2plY3RDb2x1bW42NzA2Nzkx", + "name": "new-name", + "created_at": "2019-10-04T17:24:24Z", + "updated_at": "2019-10-04T17:24:24Z" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testEditColumnName/__files/user-e21e45b0-f34c-473e-9454-cb601fb759b9.json b/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testEditColumnName/__files/user-e21e45b0-f34c-473e-9454-cb601fb759b9.json new file mode 100644 index 0000000000..41fc9e3d00 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testEditColumnName/__files/user-e21e45b0-f34c-473e-9454-cb601fb759b9.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 168, + "public_gists": 4, + "followers": 136, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testEditColumnName/mappings/orgs_github-api-test-org-2-eb0425.json b/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testEditColumnName/mappings/orgs_github-api-test-org-2-eb0425.json new file mode 100644 index 0000000000..fa0784bc99 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testEditColumnName/mappings/orgs_github-api-test-org-2-eb0425.json @@ -0,0 +1,43 @@ +{ + "id": "eb0425ef-7f2e-4b3a-a7f7-53cef5d5647b", + "name": "orgs_github-api-test-org", + "request": { + "url": "/orgs/github-api-test-org", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_github-api-test-org-eb0425ef-7f2e-4b3a-a7f7-53cef5d5647b.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:24:23 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4686", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"9f594020395ec69662bd8dc1ceecdc09\"", + "Last-Modified": "Mon, 20 Apr 2015 00:42:30 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FEB6:2CE8:1B9CD3A:21106FC:5D978047" + } + }, + "uuid": "eb0425ef-7f2e-4b3a-a7f7-53cef5d5647b", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testEditColumnName/mappings/orgs_github-api-test-org_projects-3-97b70b.json b/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testEditColumnName/mappings/orgs_github-api-test-org_projects-3-97b70b.json new file mode 100644 index 0000000000..5fab2bdbd6 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testEditColumnName/mappings/orgs_github-api-test-org_projects-3-97b70b.json @@ -0,0 +1,50 @@ +{ + "id": "97b70b32-45f4-419f-87d0-f15a2c004196", + "name": "orgs_github-api-test-org_projects", + "request": { + "url": "/orgs/github-api-test-org/projects", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"name\":\"test-project\",\"body\":\"This is a test project\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "orgs_github-api-test-org_projects-97b70b32-45f4-419f-87d0-f15a2c004196.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:24:24 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4685", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"040d8b7f5c015e1b70de188f5f75a2dd\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo, write:org", + "Location": "https://api.github.com/projects/3312439", + "X-GitHub-Media-Type": "github.inertia-preview; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FEB6:2CE8:1B9CD54:2110760:5D978047" + } + }, + "uuid": "97b70b32-45f4-419f-87d0-f15a2c004196", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testEditColumnName/mappings/projects_3312439_columns-4-082ed3.json b/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testEditColumnName/mappings/projects_3312439_columns-4-082ed3.json new file mode 100644 index 0000000000..a3d2b0a97a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testEditColumnName/mappings/projects_3312439_columns-4-082ed3.json @@ -0,0 +1,50 @@ +{ + "id": "082ed3d1-bea6-48fc-8e61-a63c4d0db977", + "name": "projects_3312439_columns", + "request": { + "url": "/projects/3312439/columns", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"name\":\"column-one\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "projects_3312439_columns-082ed3d1-bea6-48fc-8e61-a63c4d0db977.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:24:24 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4684", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"4a9022ef010ae8a2bbc6ec155fca2f9b\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo, write:org", + "Location": "https://api.github.com/projects/columns/6706791", + "X-GitHub-Media-Type": "github.inertia-preview; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FEB6:2CE8:1B9CD9B:211079F:5D978048" + } + }, + "uuid": "082ed3d1-bea6-48fc-8e61-a63c4d0db977", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testEditColumnName/mappings/projects_columns_6706791-5-85f356.json b/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testEditColumnName/mappings/projects_columns_6706791-5-85f356.json new file mode 100644 index 0000000000..5846403999 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testEditColumnName/mappings/projects_columns_6706791-5-85f356.json @@ -0,0 +1,49 @@ +{ + "id": "85f35660-6579-4bea-af53-b636239dd5cd", + "name": "projects_columns_6706791", + "request": { + "url": "/projects/columns/6706791", + "method": "PATCH", + "bodyPatterns": [ + { + "equalToJson": "{\"name\":\"new-name\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 200, + "bodyFileName": "projects_columns_6706791-85f35660-6579-4bea-af53-b636239dd5cd.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:24:25 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4683", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"df1e321ce6b9b1cfb88f5947bff72393\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo, write:org", + "X-GitHub-Media-Type": "github.inertia-preview; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FEB6:2CE8:1B9CDD9:21107DA:5D978048" + } + }, + "uuid": "85f35660-6579-4bea-af53-b636239dd5cd", + "persistent": true, + "insertionIndex": 5 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testEditColumnName/mappings/projects_columns_6706791-6-1cfa5d.json b/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testEditColumnName/mappings/projects_columns_6706791-6-1cfa5d.json new file mode 100644 index 0000000000..62ecacd745 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testEditColumnName/mappings/projects_columns_6706791-6-1cfa5d.json @@ -0,0 +1,42 @@ +{ + "id": "1cfa5ddf-74f4-4a95-aaf2-c8149c7d1c17", + "name": "projects_columns_6706791", + "request": { + "url": "/projects/columns/6706791", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "projects_columns_6706791-1cfa5ddf-74f4-4a95-aaf2-c8149c7d1c17.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:24:25 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4682", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"df1e321ce6b9b1cfb88f5947bff72393\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "read:org, repo", + "X-GitHub-Media-Type": "github.inertia-preview; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FEB6:2CE8:1B9CE06:211081E:5D978049" + } + }, + "uuid": "1cfa5ddf-74f4-4a95-aaf2-c8149c7d1c17", + "persistent": true, + "insertionIndex": 6 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testEditColumnName/mappings/user-1-e21e45.json b/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testEditColumnName/mappings/user-1-e21e45.json new file mode 100644 index 0000000000..5dc3ad3500 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectColumnTest/wiremock/testEditColumnName/mappings/user-1-e21e45.json @@ -0,0 +1,43 @@ +{ + "id": "e21e45b0-f34c-473e-9454-cb601fb759b9", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-e21e45b0-f34c-473e-9454-cb601fb759b9.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:24:23 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4688", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"af0c41afcacb8ceee14b7d896719c3bd\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FEB6:2CE8:1B9CCEE:21106E7:5D978047" + } + }, + "uuid": "e21e45b0-f34c-473e-9454-cb601fb759b9", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testCreatedProject/__files/orgs_github-api-test-org-713f01eb-4f07-4f02-89fe-e7560ed08e11.json b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testCreatedProject/__files/orgs_github-api-test-org-713f01eb-4f07-4f02-89fe-e7560ed08e11.json new file mode 100644 index 0000000000..d4c06c4749 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testCreatedProject/__files/orgs_github-api-test-org-713f01eb-4f07-4f02-89fe-e7560ed08e11.json @@ -0,0 +1,41 @@ +{ + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "url": "https://api.github.com/orgs/github-api-test-org", + "repos_url": "https://api.github.com/orgs/github-api-test-org/repos", + "events_url": "https://api.github.com/orgs/github-api-test-org/events", + "hooks_url": "https://api.github.com/orgs/github-api-test-org/hooks", + "issues_url": "https://api.github.com/orgs/github-api-test-org/issues", + "members_url": "https://api.github.com/orgs/github-api-test-org/members{/member}", + "public_members_url": "https://api.github.com/orgs/github-api-test-org/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "description": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 9, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/github-api-test-org", + "created_at": "2014-05-10T19:39:11Z", + "updated_at": "2015-04-20T00:42:30Z", + "type": "Organization", + "total_private_repos": 0, + "owned_private_repos": 0, + "private_gists": 0, + "disk_usage": 132, + "collaborators": 0, + "billing_email": "kk@kohsuke.org", + "default_repository_permission": "none", + "members_can_create_repositories": false, + "two_factor_requirement_enabled": false, + "plan": { + "name": "free", + "space": 976562499, + "private_repos": 0, + "filled_seats": 4, + "seats": 0 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testCreatedProject/__files/orgs_github-api-test-org_projects-e5afd90e-d2ac-4e83-800d-a680bc27c9ed.json b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testCreatedProject/__files/orgs_github-api-test-org_projects-e5afd90e-d2ac-4e83-800d-a680bc27c9ed.json new file mode 100644 index 0000000000..a3a9d1fe7d --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testCreatedProject/__files/orgs_github-api-test-org_projects-e5afd90e-d2ac-4e83-800d-a680bc27c9ed.json @@ -0,0 +1,36 @@ +{ + "owner_url": "https://api.github.com/orgs/github-api-test-org", + "url": "https://api.github.com/projects/3312432", + "html_url": "https://github.com/orgs/github-api-test-org/projects/19", + "columns_url": "https://api.github.com/projects/3312432/columns", + "id": 3312432, + "node_id": "MDc6UHJvamVjdDMzMTI0MzI=", + "name": "test-project", + "body": "This is a test project", + "number": 19, + "state": "open", + "creator": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2019-10-04T17:23:22Z", + "updated_at": "2019-10-04T17:23:22Z", + "organization_permission": "write", + "private": true +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testCreatedProject/__files/user-a9a3d26a-4c87-4ebf-9609-48b2120173b7.json b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testCreatedProject/__files/user-a9a3d26a-4c87-4ebf-9609-48b2120173b7.json new file mode 100644 index 0000000000..41fc9e3d00 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testCreatedProject/__files/user-a9a3d26a-4c87-4ebf-9609-48b2120173b7.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 168, + "public_gists": 4, + "followers": 136, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testCreatedProject/mappings/orgs_github-api-test-org-2-713f01.json b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testCreatedProject/mappings/orgs_github-api-test-org-2-713f01.json new file mode 100644 index 0000000000..2454d7a0d4 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testCreatedProject/mappings/orgs_github-api-test-org-2-713f01.json @@ -0,0 +1,43 @@ +{ + "id": "713f01eb-4f07-4f02-89fe-e7560ed08e11", + "name": "orgs_github-api-test-org", + "request": { + "url": "/orgs/github-api-test-org", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_github-api-test-org-713f01eb-4f07-4f02-89fe-e7560ed08e11.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:23:22 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4722", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"9f594020395ec69662bd8dc1ceecdc09\"", + "Last-Modified": "Mon, 20 Apr 2015 00:42:30 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FE9F:3C98:18F214:1DE2D7:5D978009" + } + }, + "uuid": "713f01eb-4f07-4f02-89fe-e7560ed08e11", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testCreatedProject/mappings/orgs_github-api-test-org_projects-3-e5afd9.json b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testCreatedProject/mappings/orgs_github-api-test-org_projects-3-e5afd9.json new file mode 100644 index 0000000000..129aaf9ccc --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testCreatedProject/mappings/orgs_github-api-test-org_projects-3-e5afd9.json @@ -0,0 +1,50 @@ +{ + "id": "e5afd90e-d2ac-4e83-800d-a680bc27c9ed", + "name": "orgs_github-api-test-org_projects", + "request": { + "url": "/orgs/github-api-test-org/projects", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"name\":\"test-project\",\"body\":\"This is a test project\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "orgs_github-api-test-org_projects-e5afd90e-d2ac-4e83-800d-a680bc27c9ed.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:23:22 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4721", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"7a699861cb77bfa34b007afda4f83f36\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo, write:org", + "Location": "https://api.github.com/projects/3312432", + "X-GitHub-Media-Type": "github.inertia-preview; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FE9F:3C98:18F216:1DE2DD:5D97800A" + } + }, + "uuid": "e5afd90e-d2ac-4e83-800d-a680bc27c9ed", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testCreatedProject/mappings/user-1-a9a3d2.json b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testCreatedProject/mappings/user-1-a9a3d2.json new file mode 100644 index 0000000000..b3dfd009c0 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testCreatedProject/mappings/user-1-a9a3d2.json @@ -0,0 +1,43 @@ +{ + "id": "a9a3d26a-4c87-4ebf-9609-48b2120173b7", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-a9a3d26a-4c87-4ebf-9609-48b2120173b7.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:23:21 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4724", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"af0c41afcacb8ceee14b7d896719c3bd\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FE9F:3C98:18F210:1DE2D5:5D978009" + } + }, + "uuid": "a9a3d26a-4c87-4ebf-9609-48b2120173b7", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testDeleteProject/__files/orgs_github-api-test-org-c3024047-fc8f-443f-a2b4-810324f889b4.json b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testDeleteProject/__files/orgs_github-api-test-org-c3024047-fc8f-443f-a2b4-810324f889b4.json new file mode 100644 index 0000000000..d4c06c4749 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testDeleteProject/__files/orgs_github-api-test-org-c3024047-fc8f-443f-a2b4-810324f889b4.json @@ -0,0 +1,41 @@ +{ + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "url": "https://api.github.com/orgs/github-api-test-org", + "repos_url": "https://api.github.com/orgs/github-api-test-org/repos", + "events_url": "https://api.github.com/orgs/github-api-test-org/events", + "hooks_url": "https://api.github.com/orgs/github-api-test-org/hooks", + "issues_url": "https://api.github.com/orgs/github-api-test-org/issues", + "members_url": "https://api.github.com/orgs/github-api-test-org/members{/member}", + "public_members_url": "https://api.github.com/orgs/github-api-test-org/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "description": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 9, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/github-api-test-org", + "created_at": "2014-05-10T19:39:11Z", + "updated_at": "2015-04-20T00:42:30Z", + "type": "Organization", + "total_private_repos": 0, + "owned_private_repos": 0, + "private_gists": 0, + "disk_usage": 132, + "collaborators": 0, + "billing_email": "kk@kohsuke.org", + "default_repository_permission": "none", + "members_can_create_repositories": false, + "two_factor_requirement_enabled": false, + "plan": { + "name": "free", + "space": 976562499, + "private_repos": 0, + "filled_seats": 4, + "seats": 0 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testDeleteProject/__files/orgs_github-api-test-org_projects-daa6c228-6e0f-4398-a6d2-2d114f986e93.json b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testDeleteProject/__files/orgs_github-api-test-org_projects-daa6c228-6e0f-4398-a6d2-2d114f986e93.json new file mode 100644 index 0000000000..efbd7e59ec --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testDeleteProject/__files/orgs_github-api-test-org_projects-daa6c228-6e0f-4398-a6d2-2d114f986e93.json @@ -0,0 +1,36 @@ +{ + "owner_url": "https://api.github.com/orgs/github-api-test-org", + "url": "https://api.github.com/projects/3312437", + "html_url": "https://github.com/orgs/github-api-test-org/projects/23", + "columns_url": "https://api.github.com/projects/3312437/columns", + "id": 3312437, + "node_id": "MDc6UHJvamVjdDMzMTI0Mzc=", + "name": "test-project", + "body": "This is a test project", + "number": 23, + "state": "open", + "creator": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2019-10-04T17:23:30Z", + "updated_at": "2019-10-04T17:23:30Z", + "organization_permission": "write", + "private": true +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testDeleteProject/__files/user-9cb86722-7ae5-46b2-8598-59567e17ed99.json b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testDeleteProject/__files/user-9cb86722-7ae5-46b2-8598-59567e17ed99.json new file mode 100644 index 0000000000..41fc9e3d00 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testDeleteProject/__files/user-9cb86722-7ae5-46b2-8598-59567e17ed99.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 168, + "public_gists": 4, + "followers": 136, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testDeleteProject/mappings/orgs_github-api-test-org-2-c30240.json b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testDeleteProject/mappings/orgs_github-api-test-org-2-c30240.json new file mode 100644 index 0000000000..8545d3aeb5 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testDeleteProject/mappings/orgs_github-api-test-org-2-c30240.json @@ -0,0 +1,43 @@ +{ + "id": "c3024047-fc8f-443f-a2b4-810324f889b4", + "name": "orgs_github-api-test-org", + "request": { + "url": "/orgs/github-api-test-org", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_github-api-test-org-c3024047-fc8f-443f-a2b4-810324f889b4.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:23:30 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4692", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"9f594020395ec69662bd8dc1ceecdc09\"", + "Last-Modified": "Mon, 20 Apr 2015 00:42:30 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FEAD:2CE8:1B9B385:210E7E0:5D978011" + } + }, + "uuid": "c3024047-fc8f-443f-a2b4-810324f889b4", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testDeleteProject/mappings/orgs_github-api-test-org_projects-3-daa6c2.json b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testDeleteProject/mappings/orgs_github-api-test-org_projects-3-daa6c2.json new file mode 100644 index 0000000000..a050ecb4fc --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testDeleteProject/mappings/orgs_github-api-test-org_projects-3-daa6c2.json @@ -0,0 +1,50 @@ +{ + "id": "daa6c228-6e0f-4398-a6d2-2d114f986e93", + "name": "orgs_github-api-test-org_projects", + "request": { + "url": "/orgs/github-api-test-org/projects", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"name\":\"test-project\",\"body\":\"This is a test project\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "orgs_github-api-test-org_projects-daa6c228-6e0f-4398-a6d2-2d114f986e93.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:23:30 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4691", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"4f5ec06b3157c88d6acf342c8db21aac\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo, write:org", + "Location": "https://api.github.com/projects/3312437", + "X-GitHub-Media-Type": "github.inertia-preview; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FEAD:2CE8:1B9B397:210E837:5D978012" + } + }, + "uuid": "daa6c228-6e0f-4398-a6d2-2d114f986e93", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testDeleteProject/mappings/projects_3312437-4-f50762.json b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testDeleteProject/mappings/projects_3312437-4-f50762.json new file mode 100644 index 0000000000..3fa4a50934 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testDeleteProject/mappings/projects_3312437-4-f50762.json @@ -0,0 +1,35 @@ +{ + "id": "f507621b-4b4d-497d-81aa-d83b31b7dd52", + "name": "projects_3312437", + "request": { + "url": "/projects/3312437", + "method": "DELETE" + }, + "response": { + "status": 204, + "headers": { + "Date": "Fri, 04 Oct 2019 17:23:30 GMT", + "Server": "GitHub.com", + "Status": "204 No Content", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4690", + "X-RateLimit-Reset": "1570212957", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo, write:org", + "X-GitHub-Media-Type": "github.inertia-preview; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "FEAD:2CE8:1B9B3B2:210E85D:5D978012" + } + }, + "uuid": "f507621b-4b4d-497d-81aa-d83b31b7dd52", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testDeleteProject/mappings/projects_3312437-5-8b8e6f.json b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testDeleteProject/mappings/projects_3312437-5-8b8e6f.json new file mode 100644 index 0000000000..153985433e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testDeleteProject/mappings/projects_3312437-5-8b8e6f.json @@ -0,0 +1,36 @@ +{ + "id": "8b8e6f75-2c0e-497e-8205-449e17e078e6", + "name": "projects_3312437", + "request": { + "url": "/projects/3312437", + "method": "GET" + }, + "response": { + "status": 404, + "body": "{\"message\":\"Not Found\",\"documentation_url\":\"https://developer.github.com/v3/projects/#get-a-project\"}", + "headers": { + "Date": "Fri, 04 Oct 2019 17:23:30 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4689", + "X-RateLimit-Reset": "1570212957", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.inertia-preview; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FEAD:2CE8:1B9B3CD:210E87D:5D978012" + } + }, + "uuid": "8b8e6f75-2c0e-497e-8205-449e17e078e6", + "persistent": true, + "insertionIndex": 5 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testDeleteProject/mappings/user-1-9cb867.json b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testDeleteProject/mappings/user-1-9cb867.json new file mode 100644 index 0000000000..295beaf4cc --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testDeleteProject/mappings/user-1-9cb867.json @@ -0,0 +1,43 @@ +{ + "id": "9cb86722-7ae5-46b2-8598-59567e17ed99", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-9cb86722-7ae5-46b2-8598-59567e17ed99.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:23:29 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4694", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"af0c41afcacb8ceee14b7d896719c3bd\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FEAD:2CE8:1B9B347:210E7D7:5D978011" + } + }, + "uuid": "9cb86722-7ae5-46b2-8598-59567e17ed99", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectBody/__files/orgs_github-api-test-org-2e39c772-c889-44d1-bf15-5248ad194202.json b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectBody/__files/orgs_github-api-test-org-2e39c772-c889-44d1-bf15-5248ad194202.json new file mode 100644 index 0000000000..d4c06c4749 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectBody/__files/orgs_github-api-test-org-2e39c772-c889-44d1-bf15-5248ad194202.json @@ -0,0 +1,41 @@ +{ + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "url": "https://api.github.com/orgs/github-api-test-org", + "repos_url": "https://api.github.com/orgs/github-api-test-org/repos", + "events_url": "https://api.github.com/orgs/github-api-test-org/events", + "hooks_url": "https://api.github.com/orgs/github-api-test-org/hooks", + "issues_url": "https://api.github.com/orgs/github-api-test-org/issues", + "members_url": "https://api.github.com/orgs/github-api-test-org/members{/member}", + "public_members_url": "https://api.github.com/orgs/github-api-test-org/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "description": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 9, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/github-api-test-org", + "created_at": "2014-05-10T19:39:11Z", + "updated_at": "2015-04-20T00:42:30Z", + "type": "Organization", + "total_private_repos": 0, + "owned_private_repos": 0, + "private_gists": 0, + "disk_usage": 132, + "collaborators": 0, + "billing_email": "kk@kohsuke.org", + "default_repository_permission": "none", + "members_can_create_repositories": false, + "two_factor_requirement_enabled": false, + "plan": { + "name": "free", + "space": 976562499, + "private_repos": 0, + "filled_seats": 4, + "seats": 0 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectBody/__files/orgs_github-api-test-org_projects-08231b0e-288f-49fa-aa2b-9456449d2cfd.json b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectBody/__files/orgs_github-api-test-org_projects-08231b0e-288f-49fa-aa2b-9456449d2cfd.json new file mode 100644 index 0000000000..075cd0b2d2 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectBody/__files/orgs_github-api-test-org_projects-08231b0e-288f-49fa-aa2b-9456449d2cfd.json @@ -0,0 +1,36 @@ +{ + "owner_url": "https://api.github.com/orgs/github-api-test-org", + "url": "https://api.github.com/projects/3312435", + "html_url": "https://github.com/orgs/github-api-test-org/projects/21", + "columns_url": "https://api.github.com/projects/3312435/columns", + "id": 3312435, + "node_id": "MDc6UHJvamVjdDMzMTI0MzU=", + "name": "test-project", + "body": "This is a test project", + "number": 21, + "state": "open", + "creator": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2019-10-04T17:23:26Z", + "updated_at": "2019-10-04T17:23:26Z", + "organization_permission": "write", + "private": true +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectBody/__files/projects_3312435-004d3495-63b2-40e7-a864-10d175a59756.json b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectBody/__files/projects_3312435-004d3495-63b2-40e7-a864-10d175a59756.json new file mode 100644 index 0000000000..6846aae104 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectBody/__files/projects_3312435-004d3495-63b2-40e7-a864-10d175a59756.json @@ -0,0 +1,36 @@ +{ + "owner_url": "https://api.github.com/orgs/github-api-test-org", + "url": "https://api.github.com/projects/3312435", + "html_url": "https://github.com/orgs/github-api-test-org/projects/21", + "columns_url": "https://api.github.com/projects/3312435/columns", + "id": 3312435, + "node_id": "MDc6UHJvamVjdDMzMTI0MzU=", + "name": "test-project", + "body": "New body", + "number": 21, + "state": "open", + "creator": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2019-10-04T17:23:26Z", + "updated_at": "2019-10-04T17:23:27Z", + "organization_permission": "write", + "private": true +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectBody/__files/projects_3312435-76e0c251-b1df-4f18-8a01-77a7bbc15474.json b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectBody/__files/projects_3312435-76e0c251-b1df-4f18-8a01-77a7bbc15474.json new file mode 100644 index 0000000000..6846aae104 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectBody/__files/projects_3312435-76e0c251-b1df-4f18-8a01-77a7bbc15474.json @@ -0,0 +1,36 @@ +{ + "owner_url": "https://api.github.com/orgs/github-api-test-org", + "url": "https://api.github.com/projects/3312435", + "html_url": "https://github.com/orgs/github-api-test-org/projects/21", + "columns_url": "https://api.github.com/projects/3312435/columns", + "id": 3312435, + "node_id": "MDc6UHJvamVjdDMzMTI0MzU=", + "name": "test-project", + "body": "New body", + "number": 21, + "state": "open", + "creator": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2019-10-04T17:23:26Z", + "updated_at": "2019-10-04T17:23:27Z", + "organization_permission": "write", + "private": true +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectBody/__files/user-b2b1262a-1678-4080-af72-92346bb25688.json b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectBody/__files/user-b2b1262a-1678-4080-af72-92346bb25688.json new file mode 100644 index 0000000000..41fc9e3d00 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectBody/__files/user-b2b1262a-1678-4080-af72-92346bb25688.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 168, + "public_gists": 4, + "followers": 136, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectBody/mappings/orgs_github-api-test-org-2-2e39c7.json b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectBody/mappings/orgs_github-api-test-org-2-2e39c7.json new file mode 100644 index 0000000000..a555125903 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectBody/mappings/orgs_github-api-test-org-2-2e39c7.json @@ -0,0 +1,43 @@ +{ + "id": "2e39c772-c889-44d1-bf15-5248ad194202", + "name": "orgs_github-api-test-org", + "request": { + "url": "/orgs/github-api-test-org", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_github-api-test-org-2e39c772-c889-44d1-bf15-5248ad194202.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:23:26 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4708", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"9f594020395ec69662bd8dc1ceecdc09\"", + "Last-Modified": "Mon, 20 Apr 2015 00:42:30 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FEA7:361A:4A1417:584BFC:5D97800D" + } + }, + "uuid": "2e39c772-c889-44d1-bf15-5248ad194202", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectBody/mappings/orgs_github-api-test-org_projects-3-08231b.json b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectBody/mappings/orgs_github-api-test-org_projects-3-08231b.json new file mode 100644 index 0000000000..fb3952ed82 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectBody/mappings/orgs_github-api-test-org_projects-3-08231b.json @@ -0,0 +1,50 @@ +{ + "id": "08231b0e-288f-49fa-aa2b-9456449d2cfd", + "name": "orgs_github-api-test-org_projects", + "request": { + "url": "/orgs/github-api-test-org/projects", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"name\":\"test-project\",\"body\":\"This is a test project\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "orgs_github-api-test-org_projects-08231b0e-288f-49fa-aa2b-9456449d2cfd.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:23:26 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4707", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"cefe753176c197026b78819a457c18a0\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo, write:org", + "Location": "https://api.github.com/projects/3312435", + "X-GitHub-Media-Type": "github.inertia-preview; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FEA7:361A:4A1420:584C06:5D97800E" + } + }, + "uuid": "08231b0e-288f-49fa-aa2b-9456449d2cfd", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectBody/mappings/projects_3312435-4-004d34.json b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectBody/mappings/projects_3312435-4-004d34.json new file mode 100644 index 0000000000..572b539405 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectBody/mappings/projects_3312435-4-004d34.json @@ -0,0 +1,49 @@ +{ + "id": "004d3495-63b2-40e7-a864-10d175a59756", + "name": "projects_3312435", + "request": { + "url": "/projects/3312435", + "method": "PATCH", + "bodyPatterns": [ + { + "equalToJson": "{\"body\":\"New body\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 200, + "bodyFileName": "projects_3312435-004d3495-63b2-40e7-a864-10d175a59756.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:23:27 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4706", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"69232fc55193c550101d07bd6b082586\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo, write:org", + "X-GitHub-Media-Type": "github.inertia-preview; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FEA7:361A:4A1426:584C0F:5D97800E" + } + }, + "uuid": "004d3495-63b2-40e7-a864-10d175a59756", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectBody/mappings/projects_3312435-5-76e0c2.json b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectBody/mappings/projects_3312435-5-76e0c2.json new file mode 100644 index 0000000000..e38f6c946f --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectBody/mappings/projects_3312435-5-76e0c2.json @@ -0,0 +1,42 @@ +{ + "id": "76e0c251-b1df-4f18-8a01-77a7bbc15474", + "name": "projects_3312435", + "request": { + "url": "/projects/3312435", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "projects_3312435-76e0c251-b1df-4f18-8a01-77a7bbc15474.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:23:27 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4705", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"69232fc55193c550101d07bd6b082586\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "read:org, repo", + "X-GitHub-Media-Type": "github.inertia-preview; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FEA7:361A:4A142A:584C14:5D97800F" + } + }, + "uuid": "76e0c251-b1df-4f18-8a01-77a7bbc15474", + "persistent": true, + "insertionIndex": 5 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectBody/mappings/user-1-b2b126.json b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectBody/mappings/user-1-b2b126.json new file mode 100644 index 0000000000..6b0dc73389 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectBody/mappings/user-1-b2b126.json @@ -0,0 +1,43 @@ +{ + "id": "b2b1262a-1678-4080-af72-92346bb25688", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-b2b1262a-1678-4080-af72-92346bb25688.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:23:25 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4710", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"af0c41afcacb8ceee14b7d896719c3bd\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FEA7:361A:4A1410:584BF6:5D97800D" + } + }, + "uuid": "b2b1262a-1678-4080-af72-92346bb25688", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectName/__files/orgs_github-api-test-org-e3d87fca-b817-4dfb-b80f-99eebaabba08.json b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectName/__files/orgs_github-api-test-org-e3d87fca-b817-4dfb-b80f-99eebaabba08.json new file mode 100644 index 0000000000..d4c06c4749 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectName/__files/orgs_github-api-test-org-e3d87fca-b817-4dfb-b80f-99eebaabba08.json @@ -0,0 +1,41 @@ +{ + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "url": "https://api.github.com/orgs/github-api-test-org", + "repos_url": "https://api.github.com/orgs/github-api-test-org/repos", + "events_url": "https://api.github.com/orgs/github-api-test-org/events", + "hooks_url": "https://api.github.com/orgs/github-api-test-org/hooks", + "issues_url": "https://api.github.com/orgs/github-api-test-org/issues", + "members_url": "https://api.github.com/orgs/github-api-test-org/members{/member}", + "public_members_url": "https://api.github.com/orgs/github-api-test-org/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "description": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 9, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/github-api-test-org", + "created_at": "2014-05-10T19:39:11Z", + "updated_at": "2015-04-20T00:42:30Z", + "type": "Organization", + "total_private_repos": 0, + "owned_private_repos": 0, + "private_gists": 0, + "disk_usage": 132, + "collaborators": 0, + "billing_email": "kk@kohsuke.org", + "default_repository_permission": "none", + "members_can_create_repositories": false, + "two_factor_requirement_enabled": false, + "plan": { + "name": "free", + "space": 976562499, + "private_repos": 0, + "filled_seats": 4, + "seats": 0 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectName/__files/orgs_github-api-test-org_projects-6a0a4669-8d74-4fa9-92c0-0fa428078637.json b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectName/__files/orgs_github-api-test-org_projects-6a0a4669-8d74-4fa9-92c0-0fa428078637.json new file mode 100644 index 0000000000..86e3e10d03 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectName/__files/orgs_github-api-test-org_projects-6a0a4669-8d74-4fa9-92c0-0fa428078637.json @@ -0,0 +1,36 @@ +{ + "owner_url": "https://api.github.com/orgs/github-api-test-org", + "url": "https://api.github.com/projects/3312436", + "html_url": "https://github.com/orgs/github-api-test-org/projects/22", + "columns_url": "https://api.github.com/projects/3312436/columns", + "id": 3312436, + "node_id": "MDc6UHJvamVjdDMzMTI0MzY=", + "name": "test-project", + "body": "This is a test project", + "number": 22, + "state": "open", + "creator": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2019-10-04T17:23:28Z", + "updated_at": "2019-10-04T17:23:28Z", + "organization_permission": "write", + "private": true +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectName/__files/projects_3312436-20ac7f07-9e2b-47dd-801c-67974592a3b9.json b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectName/__files/projects_3312436-20ac7f07-9e2b-47dd-801c-67974592a3b9.json new file mode 100644 index 0000000000..cef9f73207 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectName/__files/projects_3312436-20ac7f07-9e2b-47dd-801c-67974592a3b9.json @@ -0,0 +1,36 @@ +{ + "owner_url": "https://api.github.com/orgs/github-api-test-org", + "url": "https://api.github.com/projects/3312436", + "html_url": "https://github.com/orgs/github-api-test-org/projects/22", + "columns_url": "https://api.github.com/projects/3312436/columns", + "id": 3312436, + "node_id": "MDc6UHJvamVjdDMzMTI0MzY=", + "name": "new-name", + "body": "This is a test project", + "number": 22, + "state": "open", + "creator": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2019-10-04T17:23:28Z", + "updated_at": "2019-10-04T17:23:28Z", + "organization_permission": "write", + "private": true +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectName/__files/projects_3312436-6c28d544-7193-4c9d-93a8-5c4bd20af717.json b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectName/__files/projects_3312436-6c28d544-7193-4c9d-93a8-5c4bd20af717.json new file mode 100644 index 0000000000..cef9f73207 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectName/__files/projects_3312436-6c28d544-7193-4c9d-93a8-5c4bd20af717.json @@ -0,0 +1,36 @@ +{ + "owner_url": "https://api.github.com/orgs/github-api-test-org", + "url": "https://api.github.com/projects/3312436", + "html_url": "https://github.com/orgs/github-api-test-org/projects/22", + "columns_url": "https://api.github.com/projects/3312436/columns", + "id": 3312436, + "node_id": "MDc6UHJvamVjdDMzMTI0MzY=", + "name": "new-name", + "body": "This is a test project", + "number": 22, + "state": "open", + "creator": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2019-10-04T17:23:28Z", + "updated_at": "2019-10-04T17:23:28Z", + "organization_permission": "write", + "private": true +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectName/__files/user-115e6194-ffb3-4129-8f7b-ad60f5fff91a.json b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectName/__files/user-115e6194-ffb3-4129-8f7b-ad60f5fff91a.json new file mode 100644 index 0000000000..41fc9e3d00 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectName/__files/user-115e6194-ffb3-4129-8f7b-ad60f5fff91a.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 168, + "public_gists": 4, + "followers": 136, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectName/mappings/orgs_github-api-test-org-2-e3d87f.json b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectName/mappings/orgs_github-api-test-org-2-e3d87f.json new file mode 100644 index 0000000000..1bf181fada --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectName/mappings/orgs_github-api-test-org-2-e3d87f.json @@ -0,0 +1,43 @@ +{ + "id": "e3d87fca-b817-4dfb-b80f-99eebaabba08", + "name": "orgs_github-api-test-org", + "request": { + "url": "/orgs/github-api-test-org", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_github-api-test-org-e3d87fca-b817-4dfb-b80f-99eebaabba08.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:23:28 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4700", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"9f594020395ec69662bd8dc1ceecdc09\"", + "Last-Modified": "Mon, 20 Apr 2015 00:42:30 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FEAA:3C9F:14C0B0D:18C5092:5D978010" + } + }, + "uuid": "e3d87fca-b817-4dfb-b80f-99eebaabba08", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectName/mappings/orgs_github-api-test-org_projects-3-6a0a46.json b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectName/mappings/orgs_github-api-test-org_projects-3-6a0a46.json new file mode 100644 index 0000000000..daf6f6b784 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectName/mappings/orgs_github-api-test-org_projects-3-6a0a46.json @@ -0,0 +1,50 @@ +{ + "id": "6a0a4669-8d74-4fa9-92c0-0fa428078637", + "name": "orgs_github-api-test-org_projects", + "request": { + "url": "/orgs/github-api-test-org/projects", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"name\":\"test-project\",\"body\":\"This is a test project\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "orgs_github-api-test-org_projects-6a0a4669-8d74-4fa9-92c0-0fa428078637.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:23:28 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4699", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"ae3e206fe50efc5382388a0f1243289c\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo, write:org", + "Location": "https://api.github.com/projects/3312436", + "X-GitHub-Media-Type": "github.inertia-preview; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FEAA:3C9F:14C0B1E:18C50B1:5D978010" + } + }, + "uuid": "6a0a4669-8d74-4fa9-92c0-0fa428078637", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectName/mappings/projects_3312436-4-20ac7f.json b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectName/mappings/projects_3312436-4-20ac7f.json new file mode 100644 index 0000000000..b9e9ce56c0 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectName/mappings/projects_3312436-4-20ac7f.json @@ -0,0 +1,49 @@ +{ + "id": "20ac7f07-9e2b-47dd-801c-67974592a3b9", + "name": "projects_3312436", + "request": { + "url": "/projects/3312436", + "method": "PATCH", + "bodyPatterns": [ + { + "equalToJson": "{\"name\":\"new-name\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 200, + "bodyFileName": "projects_3312436-20ac7f07-9e2b-47dd-801c-67974592a3b9.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:23:28 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4698", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"4bae2d84036567575958f036df372cf7\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo, write:org", + "X-GitHub-Media-Type": "github.inertia-preview; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FEAA:3C9F:14C0B39:18C50D0:5D978010" + } + }, + "uuid": "20ac7f07-9e2b-47dd-801c-67974592a3b9", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectName/mappings/projects_3312436-5-6c28d5.json b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectName/mappings/projects_3312436-5-6c28d5.json new file mode 100644 index 0000000000..2c034bbf21 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectName/mappings/projects_3312436-5-6c28d5.json @@ -0,0 +1,42 @@ +{ + "id": "6c28d544-7193-4c9d-93a8-5c4bd20af717", + "name": "projects_3312436", + "request": { + "url": "/projects/3312436", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "projects_3312436-6c28d544-7193-4c9d-93a8-5c4bd20af717.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:23:29 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4697", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"4bae2d84036567575958f036df372cf7\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "read:org, repo", + "X-GitHub-Media-Type": "github.inertia-preview; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FEAA:3C9F:14C0B58:18C50EB:5D978010" + } + }, + "uuid": "6c28d544-7193-4c9d-93a8-5c4bd20af717", + "persistent": true, + "insertionIndex": 5 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectName/mappings/user-1-115e61.json b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectName/mappings/user-1-115e61.json new file mode 100644 index 0000000000..850a7eaa6c --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectName/mappings/user-1-115e61.json @@ -0,0 +1,43 @@ +{ + "id": "115e6194-ffb3-4129-8f7b-ad60f5fff91a", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-115e6194-ffb3-4129-8f7b-ad60f5fff91a.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:23:28 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4702", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"af0c41afcacb8ceee14b7d896719c3bd\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FEAA:3C9F:14C0AFE:18C5088:5D97800F" + } + }, + "uuid": "115e6194-ffb3-4129-8f7b-ad60f5fff91a", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectState/__files/orgs_github-api-test-org-a522b55e-f089-4a29-a55e-33f0744eca1a.json b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectState/__files/orgs_github-api-test-org-a522b55e-f089-4a29-a55e-33f0744eca1a.json new file mode 100644 index 0000000000..d4c06c4749 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectState/__files/orgs_github-api-test-org-a522b55e-f089-4a29-a55e-33f0744eca1a.json @@ -0,0 +1,41 @@ +{ + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "url": "https://api.github.com/orgs/github-api-test-org", + "repos_url": "https://api.github.com/orgs/github-api-test-org/repos", + "events_url": "https://api.github.com/orgs/github-api-test-org/events", + "hooks_url": "https://api.github.com/orgs/github-api-test-org/hooks", + "issues_url": "https://api.github.com/orgs/github-api-test-org/issues", + "members_url": "https://api.github.com/orgs/github-api-test-org/members{/member}", + "public_members_url": "https://api.github.com/orgs/github-api-test-org/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "description": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 9, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/github-api-test-org", + "created_at": "2014-05-10T19:39:11Z", + "updated_at": "2015-04-20T00:42:30Z", + "type": "Organization", + "total_private_repos": 0, + "owned_private_repos": 0, + "private_gists": 0, + "disk_usage": 132, + "collaborators": 0, + "billing_email": "kk@kohsuke.org", + "default_repository_permission": "none", + "members_can_create_repositories": false, + "two_factor_requirement_enabled": false, + "plan": { + "name": "free", + "space": 976562499, + "private_repos": 0, + "filled_seats": 4, + "seats": 0 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectState/__files/orgs_github-api-test-org_projects-ee429eb6-b010-4916-91af-3ce0976426dd.json b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectState/__files/orgs_github-api-test-org_projects-ee429eb6-b010-4916-91af-3ce0976426dd.json new file mode 100644 index 0000000000..a4d24e7175 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectState/__files/orgs_github-api-test-org_projects-ee429eb6-b010-4916-91af-3ce0976426dd.json @@ -0,0 +1,36 @@ +{ + "owner_url": "https://api.github.com/orgs/github-api-test-org", + "url": "https://api.github.com/projects/3312433", + "html_url": "https://github.com/orgs/github-api-test-org/projects/20", + "columns_url": "https://api.github.com/projects/3312433/columns", + "id": 3312433, + "node_id": "MDc6UHJvamVjdDMzMTI0MzM=", + "name": "test-project", + "body": "This is a test project", + "number": 20, + "state": "open", + "creator": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2019-10-04T17:23:24Z", + "updated_at": "2019-10-04T17:23:24Z", + "organization_permission": "write", + "private": true +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectState/__files/projects_3312433-55b16b4e-924d-4cf7-9113-fbc644011a44.json b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectState/__files/projects_3312433-55b16b4e-924d-4cf7-9113-fbc644011a44.json new file mode 100644 index 0000000000..bd67c4e136 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectState/__files/projects_3312433-55b16b4e-924d-4cf7-9113-fbc644011a44.json @@ -0,0 +1,36 @@ +{ + "owner_url": "https://api.github.com/orgs/github-api-test-org", + "url": "https://api.github.com/projects/3312433", + "html_url": "https://github.com/orgs/github-api-test-org/projects/20", + "columns_url": "https://api.github.com/projects/3312433/columns", + "id": 3312433, + "node_id": "MDc6UHJvamVjdDMzMTI0MzM=", + "name": "test-project", + "body": "This is a test project", + "number": 20, + "state": "closed", + "creator": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2019-10-04T17:23:24Z", + "updated_at": "2019-10-04T17:23:24Z", + "organization_permission": "write", + "private": true +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectState/__files/projects_3312433-715884a8-0610-43b5-9379-01ac91168ec0.json b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectState/__files/projects_3312433-715884a8-0610-43b5-9379-01ac91168ec0.json new file mode 100644 index 0000000000..bd67c4e136 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectState/__files/projects_3312433-715884a8-0610-43b5-9379-01ac91168ec0.json @@ -0,0 +1,36 @@ +{ + "owner_url": "https://api.github.com/orgs/github-api-test-org", + "url": "https://api.github.com/projects/3312433", + "html_url": "https://github.com/orgs/github-api-test-org/projects/20", + "columns_url": "https://api.github.com/projects/3312433/columns", + "id": 3312433, + "node_id": "MDc6UHJvamVjdDMzMTI0MzM=", + "name": "test-project", + "body": "This is a test project", + "number": 20, + "state": "closed", + "creator": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2019-10-04T17:23:24Z", + "updated_at": "2019-10-04T17:23:24Z", + "organization_permission": "write", + "private": true +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectState/__files/user-f7605e5c-c728-4af9-baca-a6e1266d1b4a.json b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectState/__files/user-f7605e5c-c728-4af9-baca-a6e1266d1b4a.json new file mode 100644 index 0000000000..41fc9e3d00 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectState/__files/user-f7605e5c-c728-4af9-baca-a6e1266d1b4a.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 168, + "public_gists": 4, + "followers": 136, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectState/mappings/orgs_github-api-test-org-2-a522b5.json b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectState/mappings/orgs_github-api-test-org-2-a522b5.json new file mode 100644 index 0000000000..6d67cd930b --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectState/mappings/orgs_github-api-test-org-2-a522b5.json @@ -0,0 +1,43 @@ +{ + "id": "a522b55e-f089-4a29-a55e-33f0744eca1a", + "name": "orgs_github-api-test-org", + "request": { + "url": "/orgs/github-api-test-org", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_github-api-test-org-a522b55e-f089-4a29-a55e-33f0744eca1a.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:23:24 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4716", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"9f594020395ec69662bd8dc1ceecdc09\"", + "Last-Modified": "Mon, 20 Apr 2015 00:42:30 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FEA4:67D5:141DFCC:18393EC:5D97800B" + } + }, + "uuid": "a522b55e-f089-4a29-a55e-33f0744eca1a", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectState/mappings/orgs_github-api-test-org_projects-3-ee429e.json b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectState/mappings/orgs_github-api-test-org_projects-3-ee429e.json new file mode 100644 index 0000000000..54b50b6298 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectState/mappings/orgs_github-api-test-org_projects-3-ee429e.json @@ -0,0 +1,50 @@ +{ + "id": "ee429eb6-b010-4916-91af-3ce0976426dd", + "name": "orgs_github-api-test-org_projects", + "request": { + "url": "/orgs/github-api-test-org/projects", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"name\":\"test-project\",\"body\":\"This is a test project\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "orgs_github-api-test-org_projects-ee429eb6-b010-4916-91af-3ce0976426dd.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:23:24 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4715", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"4f777a856ead633d72e59b26d48fd596\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo, write:org", + "Location": "https://api.github.com/projects/3312433", + "X-GitHub-Media-Type": "github.inertia-preview; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FEA4:67D5:141DFD9:1839402:5D97800C" + } + }, + "uuid": "ee429eb6-b010-4916-91af-3ce0976426dd", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectState/mappings/projects_3312433-4-55b16b.json b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectState/mappings/projects_3312433-4-55b16b.json new file mode 100644 index 0000000000..62f10ca491 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectState/mappings/projects_3312433-4-55b16b.json @@ -0,0 +1,49 @@ +{ + "id": "55b16b4e-924d-4cf7-9113-fbc644011a44", + "name": "projects_3312433", + "request": { + "url": "/projects/3312433", + "method": "PATCH", + "bodyPatterns": [ + { + "equalToJson": "{\"state\":\"closed\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 200, + "bodyFileName": "projects_3312433-55b16b4e-924d-4cf7-9113-fbc644011a44.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:23:24 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4714", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"96424fba8e165ef2bd2efd7ae572b817\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo, write:org", + "X-GitHub-Media-Type": "github.inertia-preview; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FEA4:67D5:141DFEF:1839415:5D97800C" + } + }, + "uuid": "55b16b4e-924d-4cf7-9113-fbc644011a44", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectState/mappings/projects_3312433-5-715884.json b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectState/mappings/projects_3312433-5-715884.json new file mode 100644 index 0000000000..94f2b1bb77 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectState/mappings/projects_3312433-5-715884.json @@ -0,0 +1,42 @@ +{ + "id": "715884a8-0610-43b5-9379-01ac91168ec0", + "name": "projects_3312433", + "request": { + "url": "/projects/3312433", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "projects_3312433-715884a8-0610-43b5-9379-01ac91168ec0.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:23:24 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4713", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"96424fba8e165ef2bd2efd7ae572b817\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "read:org, repo", + "X-GitHub-Media-Type": "github.inertia-preview; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FEA4:67D5:141E00D:183943D:5D97800C" + } + }, + "uuid": "715884a8-0610-43b5-9379-01ac91168ec0", + "persistent": true, + "insertionIndex": 5 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectState/mappings/user-1-f7605e.json b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectState/mappings/user-1-f7605e.json new file mode 100644 index 0000000000..665d6118ad --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHProjectTest/wiremock/testEditProjectState/mappings/user-1-f7605e.json @@ -0,0 +1,43 @@ +{ + "id": "f7605e5c-c728-4af9-baca-a6e1266d1b4a", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-f7605e5c-c728-4af9-baca-a6e1266d1b4a.json", + "headers": { + "Date": "Fri, 04 Oct 2019 17:23:23 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4718", + "X-RateLimit-Reset": "1570212957", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"af0c41afcacb8ceee14b7d896719c3bd\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FEA4:67D5:141DFBA:18393E1:5D97800B" + } + }, + "uuid": "f7605e5c-c728-4af9-baca-a6e1266d1b4a", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/__files/orgs_github-api-test-org-24dc8a1a-e0fd-48e7-a48f-8fc0fc9bc01f.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/__files/orgs_github-api-test-org-24dc8a1a-e0fd-48e7-a48f-8fc0fc9bc01f.json new file mode 100644 index 0000000000..61547e3d98 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/__files/orgs_github-api-test-org-24dc8a1a-e0fd-48e7-a48f-8fc0fc9bc01f.json @@ -0,0 +1,41 @@ +{ + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "url": "https://api.github.com/orgs/github-api-test-org", + "repos_url": "https://api.github.com/orgs/github-api-test-org/repos", + "events_url": "https://api.github.com/orgs/github-api-test-org/events", + "hooks_url": "https://api.github.com/orgs/github-api-test-org/hooks", + "issues_url": "https://api.github.com/orgs/github-api-test-org/issues", + "members_url": "https://api.github.com/orgs/github-api-test-org/members{/member}", + "public_members_url": "https://api.github.com/orgs/github-api-test-org/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "description": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 9, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/github-api-test-org", + "created_at": "2014-05-10T19:39:11Z", + "updated_at": "2015-04-20T00:42:30Z", + "type": "Organization", + "total_private_repos": 0, + "owned_private_repos": 0, + "private_gists": 0, + "disk_usage": 132, + "collaborators": 0, + "billing_email": "kk@kohsuke.org", + "default_repository_permission": "none", + "members_can_create_repositories": false, + "two_factor_requirement_enabled": false, + "plan": { + "name": "free", + "space": 976562499, + "private_repos": 0, + "filled_seats": 3, + "seats": 0 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/__files/repos_github-api-test-org_github-api-0f9ebc51-ad67-49b7-b75c-ee2421880f0a.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/__files/repos_github-api-test-org_github-api-0f9ebc51-ad67-49b7-b75c-ee2421880f0a.json new file mode 100644 index 0000000000..9fa0601f3b --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/__files/repos_github-api-test-org_github-api-0f9ebc51-ad67-49b7-b75c-ee2421880f0a.json @@ -0,0 +1,330 @@ +{ + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:56Z", + "pushed_at": "2019-09-08T07:25:04Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "parent": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-07T00:07:16Z", + "pushed_at": "2019-09-07T00:07:14Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 551, + "watchers_count": 551, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 551, + "default_branch": "master" + }, + "source": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-07T00:07:16Z", + "pushed_at": "2019-09-07T00:07:14Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 551, + "watchers_count": 551, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 551, + "default_branch": "master" + }, + "network_count": 427, + "subscribers_count": 0 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/__files/repos_github-api-test-org_github-api-1db0407d-2e07-4407-810e-486b374e8f3e.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/__files/repos_github-api-test-org_github-api-1db0407d-2e07-4407-810e-486b374e8f3e.json new file mode 100644 index 0000000000..354145c13a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/__files/repos_github-api-test-org_github-api-1db0407d-2e07-4407-810e-486b374e8f3e.json @@ -0,0 +1,330 @@ +{ + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:56Z", + "pushed_at": "2019-09-08T07:25:04Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "parent": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-07T00:07:16Z", + "pushed_at": "2019-09-07T00:07:14Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 551, + "watchers_count": 551, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 551, + "default_branch": "master" + }, + "source": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-07T00:07:16Z", + "pushed_at": "2019-09-07T00:07:14Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 551, + "watchers_count": 551, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 551, + "default_branch": "master" + }, + "network_count": 427, + "subscribers_count": 0 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/__files/repos_github-api-test-org_github-api-b2a37888-a485-466a-90a1-b56337178b1c.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/__files/repos_github-api-test-org_github-api-b2a37888-a485-466a-90a1-b56337178b1c.json new file mode 100644 index 0000000000..85cb4b997a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/__files/repos_github-api-test-org_github-api-b2a37888-a485-466a-90a1-b56337178b1c.json @@ -0,0 +1,330 @@ +{ + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:56Z", + "pushed_at": "2019-09-08T07:25:09Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "parent": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-07T00:07:16Z", + "pushed_at": "2019-09-07T00:07:14Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 551, + "watchers_count": 551, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 551, + "default_branch": "master" + }, + "source": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-07T00:07:16Z", + "pushed_at": "2019-09-07T00:07:14Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 551, + "watchers_count": 551, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 551, + "default_branch": "master" + }, + "network_count": 427, + "subscribers_count": 0 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/__files/repos_github-api-test-org_github-api-d6b189f8-494a-48df-bb5b-0756c8396db0.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/__files/repos_github-api-test-org_github-api-d6b189f8-494a-48df-bb5b-0756c8396db0.json new file mode 100644 index 0000000000..85cb4b997a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/__files/repos_github-api-test-org_github-api-d6b189f8-494a-48df-bb5b-0756c8396db0.json @@ -0,0 +1,330 @@ +{ + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:56Z", + "pushed_at": "2019-09-08T07:25:09Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "parent": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-07T00:07:16Z", + "pushed_at": "2019-09-07T00:07:14Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 551, + "watchers_count": 551, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 551, + "default_branch": "master" + }, + "source": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-07T00:07:16Z", + "pushed_at": "2019-09-07T00:07:14Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 551, + "watchers_count": 551, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 551, + "default_branch": "master" + }, + "network_count": 427, + "subscribers_count": 0 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/__files/repos_github-api-test-org_github-api_pulls-607242b1-1d80-46f6-90f0-87c455668f63.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/__files/repos_github-api-test-org_github-api_pulls-607242b1-1d80-46f6-90f0-87c455668f63.json new file mode 100644 index 0000000000..12a72db6ff --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/__files/repos_github-api-test-org_github-api_pulls-607242b1-1d80-46f6-90f0-87c455668f63.json @@ -0,0 +1,339 @@ +{ + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/272", + "id": 315252370, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzcw", + "html_url": "https://github.com/github-api-test-org/github-api/pull/272", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/272.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/272.patch", + "issue_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/272", + "number": 272, + "state": "open", + "locked": false, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "body": "## test", + "created_at": "2019-09-08T07:25:08Z", + "updated_at": "2019-09-08T07:25:08Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/272/commits", + "review_comments_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/272/comments", + "review_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/272/comments", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "head": { + "label": "github-api-test-org:test/stable", + "ref": "test/stable", + "sha": "2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:56Z", + "pushed_at": "2019-09-08T07:25:04Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "github-api-test-org:master", + "ref": "master", + "sha": "ecec449372b1e8270524a35c1a5aa8fdaf0e6676", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:56Z", + "pushed_at": "2019-09-08T07:25:04Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/272" + }, + "html": { + "href": "https://github.com/github-api-test-org/github-api/pull/272" + }, + "issue": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/272" + }, + "comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/272/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/272/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/272/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/statuses/2d29c787b46ce61b98a1c13e05e21ebc21f49dbf" + } + }, + "author_association": "MEMBER", + "merged": false, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 1, + "deletions": 1, + "changed_files": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/__files/repos_github-api-test-org_github-api_pulls_272-480ea0b0-4d44-4e09-a652-6551a3613019.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/__files/repos_github-api-test-org_github-api_pulls_272-480ea0b0-4d44-4e09-a652-6551a3613019.json new file mode 100644 index 0000000000..b7a12dd822 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/__files/repos_github-api-test-org_github-api_pulls_272-480ea0b0-4d44-4e09-a652-6551a3613019.json @@ -0,0 +1,339 @@ +{ + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/272", + "id": 315252370, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzcw", + "html_url": "https://github.com/github-api-test-org/github-api/pull/272", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/272.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/272.patch", + "issue_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/272", + "number": 272, + "state": "open", + "locked": false, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "body": "## test", + "created_at": "2019-09-08T07:25:08Z", + "updated_at": "2019-09-08T07:25:08Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/272/commits", + "review_comments_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/272/comments", + "review_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/272/comments", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "head": { + "label": "github-api-test-org:test/stable", + "ref": "test/stable", + "sha": "2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:56Z", + "pushed_at": "2019-09-08T07:25:09Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "github-api-test-org:master", + "ref": "master", + "sha": "ecec449372b1e8270524a35c1a5aa8fdaf0e6676", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:56Z", + "pushed_at": "2019-09-08T07:25:09Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/272" + }, + "html": { + "href": "https://github.com/github-api-test-org/github-api/pull/272" + }, + "issue": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/272" + }, + "comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/272/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/272/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/272/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/statuses/2d29c787b46ce61b98a1c13e05e21ebc21f49dbf" + } + }, + "author_association": "MEMBER", + "merged": false, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 1, + "deletions": 1, + "changed_files": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/__files/repos_github-api-test-org_github-api_pulls_272-601780dc-d673-40e8-bc22-76005fce61c3.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/__files/repos_github-api-test-org_github-api_pulls_272-601780dc-d673-40e8-bc22-76005fce61c3.json new file mode 100644 index 0000000000..af8c695b09 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/__files/repos_github-api-test-org_github-api_pulls_272-601780dc-d673-40e8-bc22-76005fce61c3.json @@ -0,0 +1,339 @@ +{ + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/272", + "id": 315252370, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzcw", + "html_url": "https://github.com/github-api-test-org/github-api/pull/272", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/272.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/272.patch", + "issue_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/272", + "number": 272, + "state": "closed", + "locked": false, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "body": "## test", + "created_at": "2019-09-08T07:25:08Z", + "updated_at": "2019-09-08T07:25:09Z", + "closed_at": "2019-09-08T07:25:09Z", + "merged_at": null, + "merge_commit_sha": "2412eecb9529e754f13c02e853bbf0e3c896a4d4", + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/272/commits", + "review_comments_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/272/comments", + "review_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/272/comments", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "head": { + "label": "github-api-test-org:test/stable", + "ref": "test/stable", + "sha": "2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:56Z", + "pushed_at": "2019-09-08T07:25:09Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "github-api-test-org:master", + "ref": "master", + "sha": "ecec449372b1e8270524a35c1a5aa8fdaf0e6676", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:56Z", + "pushed_at": "2019-09-08T07:25:09Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/272" + }, + "html": { + "href": "https://github.com/github-api-test-org/github-api/pull/272" + }, + "issue": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/272" + }, + "comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/272/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/272/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/272/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/statuses/2d29c787b46ce61b98a1c13e05e21ebc21f49dbf" + } + }, + "author_association": "MEMBER", + "merged": false, + "mergeable": true, + "rebaseable": true, + "mergeable_state": "clean", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 1, + "deletions": 1, + "changed_files": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/__files/repos_github-api-test-org_github-api_pulls_272-64929638-544b-4052-8139-da249d59952e.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/__files/repos_github-api-test-org_github-api_pulls_272-64929638-544b-4052-8139-da249d59952e.json new file mode 100644 index 0000000000..a4f43f44f7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/__files/repos_github-api-test-org_github-api_pulls_272-64929638-544b-4052-8139-da249d59952e.json @@ -0,0 +1,339 @@ +{ + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/272", + "id": 315252370, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzcw", + "html_url": "https://github.com/github-api-test-org/github-api/pull/272", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/272.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/272.patch", + "issue_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/272", + "number": 272, + "state": "closed", + "locked": false, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "body": "## test", + "created_at": "2019-09-08T07:25:08Z", + "updated_at": "2019-09-08T07:25:09Z", + "closed_at": "2019-09-08T07:25:09Z", + "merged_at": null, + "merge_commit_sha": "2412eecb9529e754f13c02e853bbf0e3c896a4d4", + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/272/commits", + "review_comments_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/272/comments", + "review_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/272/comments", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "head": { + "label": "github-api-test-org:test/stable", + "ref": "test/stable", + "sha": "2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:56Z", + "pushed_at": "2019-09-08T07:25:09Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "github-api-test-org:master", + "ref": "master", + "sha": "ecec449372b1e8270524a35c1a5aa8fdaf0e6676", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:56Z", + "pushed_at": "2019-09-08T07:25:09Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/272" + }, + "html": { + "href": "https://github.com/github-api-test-org/github-api/pull/272" + }, + "issue": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/272" + }, + "comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/272/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/272/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/272/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/statuses/2d29c787b46ce61b98a1c13e05e21ebc21f49dbf" + } + }, + "author_association": "MEMBER", + "merged": false, + "mergeable": true, + "rebaseable": false, + "mergeable_state": "clean", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 1, + "deletions": 1, + "changed_files": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/__files/user-b08f022a-37f2-4191-bbef-d348f1330beb.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/__files/user-b08f022a-37f2-4191-bbef-d348f1330beb.json new file mode 100644 index 0000000000..b9ce24cb03 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/__files/user-b08f022a-37f2-4191-bbef-d348f1330beb.json @@ -0,0 +1,33 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 166, + "public_gists": 4, + "followers": 133, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-06-03T17:47:20Z" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/mappings/orgs_github-api-test-org-2-24dc8a.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/mappings/orgs_github-api-test-org-2-24dc8a.json new file mode 100644 index 0000000000..be0716bab6 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/mappings/orgs_github-api-test-org-2-24dc8a.json @@ -0,0 +1,43 @@ +{ + "id": "24dc8a1a-e0fd-48e7-a48f-8fc0fc9bc01f", + "name": "orgs_github-api-test-org", + "request": { + "url": "/orgs/github-api-test-org", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_github-api-test-org-24dc8a1a-e0fd-48e7-a48f-8fc0fc9bc01f.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:25:07 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4830", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"d36965e157281b2a309c39e4c2343a55\"", + "Last-Modified": "Mon, 20 Apr 2015 00:42:30 GMT", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FFA3:15CE:D30D30:F6759F:5D74ACD3" + } + }, + "uuid": "24dc8a1a-e0fd-48e7-a48f-8fc0fc9bc01f", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/mappings/repos_github-api-test-org_github-api-10-b2a378.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/mappings/repos_github-api-test-org_github-api-10-b2a378.json new file mode 100644 index 0000000000..27b1e2e6c8 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/mappings/repos_github-api-test-org_github-api-10-b2a378.json @@ -0,0 +1,45 @@ +{ + "id": "b2a37888-a485-466a-90a1-b56337178b1c", + "name": "repos_github-api-test-org_github-api", + "request": { + "url": "/repos/github-api-test-org/github-api", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api-b2a37888-a485-466a-90a1-b56337178b1c.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:25:10 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4822", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"e4ca02a4a8d0302ddaf9e4331a08a1f2\"", + "Last-Modified": "Sun, 08 Sep 2019 07:24:56 GMT", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FFA3:15CE:D30EA3:F67733:5D74ACD6" + } + }, + "uuid": "b2a37888-a485-466a-90a1-b56337178b1c", + "persistent": true, + "scenarioName": "scenario-1-repos-github-api-test-org-github-api", + "requiredScenarioState": "scenario-1-repos-github-api-test-org-github-api-4", + "insertionIndex": 10 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/mappings/repos_github-api-test-org_github-api-3-0f9ebc.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/mappings/repos_github-api-test-org_github-api-3-0f9ebc.json new file mode 100644 index 0000000000..1600046059 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/mappings/repos_github-api-test-org_github-api-3-0f9ebc.json @@ -0,0 +1,46 @@ +{ + "id": "0f9ebc51-ad67-49b7-b75c-ee2421880f0a", + "name": "repos_github-api-test-org_github-api", + "request": { + "url": "/repos/github-api-test-org/github-api", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api-0f9ebc51-ad67-49b7-b75c-ee2421880f0a.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:25:08 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4829", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"2ab1210472fa6103689c7235a9f30ebf\"", + "Last-Modified": "Sun, 08 Sep 2019 07:24:56 GMT", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FFA3:15CE:D30D76:F675D2:5D74ACD3" + } + }, + "uuid": "0f9ebc51-ad67-49b7-b75c-ee2421880f0a", + "persistent": true, + "scenarioName": "scenario-1-repos-github-api-test-org-github-api", + "requiredScenarioState": "Started", + "newScenarioState": "scenario-1-repos-github-api-test-org-github-api-2", + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/mappings/repos_github-api-test-org_github-api-5-1db040.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/mappings/repos_github-api-test-org_github-api-5-1db040.json new file mode 100644 index 0000000000..a218f7efd4 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/mappings/repos_github-api-test-org_github-api-5-1db040.json @@ -0,0 +1,46 @@ +{ + "id": "1db0407d-2e07-4407-810e-486b374e8f3e", + "name": "repos_github-api-test-org_github-api", + "request": { + "url": "/repos/github-api-test-org/github-api", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api-1db0407d-2e07-4407-810e-486b374e8f3e.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:25:09 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4827", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"1ed427629429ded9373deae90c0f49b2\"", + "Last-Modified": "Sun, 08 Sep 2019 07:24:56 GMT", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FFA3:15CE:D30DDF:F67648:5D74ACD4" + } + }, + "uuid": "1db0407d-2e07-4407-810e-486b374e8f3e", + "persistent": true, + "scenarioName": "scenario-1-repos-github-api-test-org-github-api", + "requiredScenarioState": "scenario-1-repos-github-api-test-org-github-api-2", + "newScenarioState": "scenario-1-repos-github-api-test-org-github-api-3", + "insertionIndex": 5 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/mappings/repos_github-api-test-org_github-api-8-d6b189.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/mappings/repos_github-api-test-org_github-api-8-d6b189.json new file mode 100644 index 0000000000..0e96bedf52 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/mappings/repos_github-api-test-org_github-api-8-d6b189.json @@ -0,0 +1,46 @@ +{ + "id": "d6b189f8-494a-48df-bb5b-0756c8396db0", + "name": "repos_github-api-test-org_github-api", + "request": { + "url": "/repos/github-api-test-org/github-api", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api-d6b189f8-494a-48df-bb5b-0756c8396db0.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:25:10 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4824", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"e4ca02a4a8d0302ddaf9e4331a08a1f2\"", + "Last-Modified": "Sun, 08 Sep 2019 07:24:56 GMT", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FFA3:15CE:D30E56:F676DA:5D74ACD6" + } + }, + "uuid": "d6b189f8-494a-48df-bb5b-0756c8396db0", + "persistent": true, + "scenarioName": "scenario-1-repos-github-api-test-org-github-api", + "requiredScenarioState": "scenario-1-repos-github-api-test-org-github-api-3", + "newScenarioState": "scenario-1-repos-github-api-test-org-github-api-4", + "insertionIndex": 8 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/mappings/repos_github-api-test-org_github-api_pulls-11-c7f9dd.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/mappings/repos_github-api-test-org_github-api_pulls-11-c7f9dd.json new file mode 100644 index 0000000000..86a711476f --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/mappings/repos_github-api-test-org_github-api_pulls-11-c7f9dd.json @@ -0,0 +1,42 @@ +{ + "id": "c7f9dd31-fd95-4842-8b3b-73f78ffbb3fd", + "name": "repos_github-api-test-org_github-api_pulls", + "request": { + "url": "/repos/github-api-test-org/github-api/pulls?state=open", + "method": "GET" + }, + "response": { + "status": 200, + "body": "[]", + "headers": { + "Date": "Sun, 08 Sep 2019 07:25:11 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4821", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"ad5808b0a5d75d70a16a73b8e9763e19\"", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FFA3:15CE:D30EBD:F67761:5D74ACD6" + } + }, + "uuid": "c7f9dd31-fd95-4842-8b3b-73f78ffbb3fd", + "persistent": true, + "insertionIndex": 11 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/mappings/repos_github-api-test-org_github-api_pulls-4-607242.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/mappings/repos_github-api-test-org_github-api_pulls-4-607242.json new file mode 100644 index 0000000000..bfe63eff8a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/mappings/repos_github-api-test-org_github-api_pulls-4-607242.json @@ -0,0 +1,50 @@ +{ + "id": "607242b1-1d80-46f6-90f0-87c455668f63", + "name": "repos_github-api-test-org_github-api_pulls", + "request": { + "url": "/repos/github-api-test-org/github-api/pulls", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"head\":\"test/stable\",\"maintainer_can_modify\":true,\"title\":\"closePullRequest\",\"body\":\"## test\",\"base\":\"master\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "repos_github-api-test-org_github-api_pulls-607242b1-1d80-46f6-90f0-87c455668f63.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:25:08 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4828", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"0b7c2ab68302ad8433736df658b183bf\"", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/github-api-test-org/github-api/pulls/272", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FFA3:15CE:D30D90:F67604:5D74ACD4" + } + }, + "uuid": "607242b1-1d80-46f6-90f0-87c455668f63", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/mappings/repos_github-api-test-org_github-api_pulls_272-6-480ea0.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/mappings/repos_github-api-test-org_github-api_pulls_272-6-480ea0.json new file mode 100644 index 0000000000..211676ab27 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/mappings/repos_github-api-test-org_github-api_pulls_272-6-480ea0.json @@ -0,0 +1,46 @@ +{ + "id": "480ea0b0-4d44-4e09-a652-6551a3613019", + "name": "repos_github-api-test-org_github-api_pulls_272", + "request": { + "url": "/repos/github-api-test-org/github-api/pulls/272", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api_pulls_272-480ea0b0-4d44-4e09-a652-6551a3613019.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:25:09 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4826", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"27976b693985b9a4d3c571d1e97a1ae1\"", + "Last-Modified": "Sun, 08 Sep 2019 07:25:08 GMT", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FFA3:15CE:D30DF9:F6767A:5D74ACD5" + } + }, + "uuid": "480ea0b0-4d44-4e09-a652-6551a3613019", + "persistent": true, + "scenarioName": "scenario-2-repos-github-api-test-org-github-api-pulls-272", + "requiredScenarioState": "Started", + "newScenarioState": "scenario-2-repos-github-api-test-org-github-api-pulls-272-2", + "insertionIndex": 6 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/mappings/repos_github-api-test-org_github-api_pulls_272-7-601780.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/mappings/repos_github-api-test-org_github-api_pulls_272-7-601780.json new file mode 100644 index 0000000000..b32604e920 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/mappings/repos_github-api-test-org_github-api_pulls_272-7-601780.json @@ -0,0 +1,49 @@ +{ + "id": "601780dc-d673-40e8-bc22-76005fce61c3", + "name": "repos_github-api-test-org_github-api_pulls_272", + "request": { + "url": "/repos/github-api-test-org/github-api/pulls/272", + "method": "PATCH", + "bodyPatterns": [ + { + "equalToJson": "{\"state\":\"closed\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api_pulls_272-601780dc-d673-40e8-bc22-76005fce61c3.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:25:10 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4825", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"71b64aa1bf63ae8c9284b04fd53751e4\"", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FFA3:15CE:D30E17:F676A0:5D74ACD5" + } + }, + "uuid": "601780dc-d673-40e8-bc22-76005fce61c3", + "persistent": true, + "insertionIndex": 7 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/mappings/repos_github-api-test-org_github-api_pulls_272-9-649296.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/mappings/repos_github-api-test-org_github-api_pulls_272-9-649296.json new file mode 100644 index 0000000000..46e529b4fd --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/mappings/repos_github-api-test-org_github-api_pulls_272-9-649296.json @@ -0,0 +1,45 @@ +{ + "id": "64929638-544b-4052-8139-da249d59952e", + "name": "repos_github-api-test-org_github-api_pulls_272", + "request": { + "url": "/repos/github-api-test-org/github-api/pulls/272", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api_pulls_272-64929638-544b-4052-8139-da249d59952e.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:25:10 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4823", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"04e2616671d60df70266d5d9d385b3b3\"", + "Last-Modified": "Sun, 08 Sep 2019 07:25:09 GMT", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FFA3:15CE:D30E6F:F6770A:5D74ACD6" + } + }, + "uuid": "64929638-544b-4052-8139-da249d59952e", + "persistent": true, + "scenarioName": "scenario-2-repos-github-api-test-org-github-api-pulls-272", + "requiredScenarioState": "scenario-2-repos-github-api-test-org-github-api-pulls-272-2", + "insertionIndex": 9 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/mappings/user-1-b08f02.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/mappings/user-1-b08f02.json new file mode 100644 index 0000000000..d5e5e3a70c --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/closePullRequest/mappings/user-1-b08f02.json @@ -0,0 +1,43 @@ +{ + "id": "b08f022a-37f2-4191-bbef-d348f1330beb", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-b08f022a-37f2-4191-bbef-d348f1330beb.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:25:07 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4831", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"3ba1de3523043df743651bd23efc7def\"", + "Last-Modified": "Mon, 03 Jun 2019 17:47:20 GMT", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FFA3:15CE:D30D1E:F6758F:5D74ACD3" + } + }, + "uuid": "b08f022a-37f2-4191-bbef-d348f1330beb", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createDraftPullRequest/__files/orgs_github-api-test-org-449cef5e-5c83-4133-b824-a0d152c31d3d.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createDraftPullRequest/__files/orgs_github-api-test-org-449cef5e-5c83-4133-b824-a0d152c31d3d.json new file mode 100644 index 0000000000..99b5920ccb --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createDraftPullRequest/__files/orgs_github-api-test-org-449cef5e-5c83-4133-b824-a0d152c31d3d.json @@ -0,0 +1,41 @@ +{ + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "url": "https://api.github.com/orgs/github-api-test-org", + "repos_url": "https://api.github.com/orgs/github-api-test-org/repos", + "events_url": "https://api.github.com/orgs/github-api-test-org/events", + "hooks_url": "https://api.github.com/orgs/github-api-test-org/hooks", + "issues_url": "https://api.github.com/orgs/github-api-test-org/issues", + "members_url": "https://api.github.com/orgs/github-api-test-org/members{/member}", + "public_members_url": "https://api.github.com/orgs/github-api-test-org/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "description": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 10, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/github-api-test-org", + "created_at": "2014-05-10T19:39:11Z", + "updated_at": "2015-04-20T00:42:30Z", + "type": "Organization", + "total_private_repos": 0, + "owned_private_repos": 0, + "private_gists": 0, + "disk_usage": 132, + "collaborators": 0, + "billing_email": "kk@kohsuke.org", + "default_repository_permission": "none", + "members_can_create_repositories": false, + "two_factor_requirement_enabled": false, + "plan": { + "name": "free", + "space": 976562499, + "private_repos": 0, + "filled_seats": 7, + "seats": 0 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createDraftPullRequest/__files/repos_github-api-test-org_github-api-260db58e-2811-405d-b33f-49b598ae4bc5.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createDraftPullRequest/__files/repos_github-api-test-org_github-api-260db58e-2811-405d-b33f-49b598ae4bc5.json new file mode 100644 index 0000000000..c9c745e392 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createDraftPullRequest/__files/repos_github-api-test-org_github-api-260db58e-2811-405d-b33f-49b598ae4bc5.json @@ -0,0 +1,330 @@ +{ + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Tricky", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-30T22:36:47Z", + "pushed_at": "2019-10-21T22:34:18Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11391, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "parent": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-10-21T19:56:16Z", + "pushed_at": "2019-10-21T21:34:54Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 13322, + "stargazers_count": 565, + "watchers_count": 565, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 433, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 67, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 433, + "open_issues": 67, + "watchers": 565, + "default_branch": "master" + }, + "source": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-10-21T19:56:16Z", + "pushed_at": "2019-10-21T21:34:54Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 13322, + "stargazers_count": 565, + "watchers_count": 565, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 433, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 67, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 433, + "open_issues": 67, + "watchers": 565, + "default_branch": "master" + }, + "network_count": 433, + "subscribers_count": 0 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createDraftPullRequest/__files/repos_github-api-test-org_github-api_pulls-40b2ed6a-5cf1-425a-80cc-72805839ac0e.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createDraftPullRequest/__files/repos_github-api-test-org_github-api_pulls-40b2ed6a-5cf1-425a-80cc-72805839ac0e.json new file mode 100644 index 0000000000..084bd38de1 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createDraftPullRequest/__files/repos_github-api-test-org_github-api_pulls-40b2ed6a-5cf1-425a-80cc-72805839ac0e.json @@ -0,0 +1,330 @@ +[ + { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/321", + "id": 330727170, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzMwNzI3MTcw", + "html_url": "https://github.com/github-api-test-org/github-api/pull/321", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/321.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/321.patch", + "issue_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/321", + "number": 321, + "state": "open", + "locked": false, + "title": "createDraftPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "body": "## test", + "created_at": "2019-10-21T22:34:48Z", + "updated_at": "2019-10-21T22:34:48Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "c0542de869d33dfb0e051e335b964686abf211fa", + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/321/commits", + "review_comments_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/321/comments", + "review_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/321/comments", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/1f40fdf4acf1adb246c109c21a22f617e4bd1ca8", + "head": { + "label": "github-api-test-org:test/stable", + "ref": "test/stable", + "sha": "1f40fdf4acf1adb246c109c21a22f617e4bd1ca8", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Tricky", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-30T22:36:47Z", + "pushed_at": "2019-10-21T22:34:49Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11391, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 2, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "github-api-test-org:master", + "ref": "master", + "sha": "3a09d2de4a9a1322a0ba2c3e2f54a919ca8fe353", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Tricky", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-30T22:36:47Z", + "pushed_at": "2019-10-21T22:34:49Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11391, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 2, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/321" + }, + "html": { + "href": "https://github.com/github-api-test-org/github-api/pull/321" + }, + "issue": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/321" + }, + "comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/321/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/321/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/321/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/statuses/1f40fdf4acf1adb246c109c21a22f617e4bd1ca8" + } + }, + "author_association": "MEMBER", + "draft": true + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createDraftPullRequest/__files/repos_github-api-test-org_github-api_pulls-f9c86da0-31ab-4da8-925c-f45241f78cb6.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createDraftPullRequest/__files/repos_github-api-test-org_github-api_pulls-f9c86da0-31ab-4da8-925c-f45241f78cb6.json new file mode 100644 index 0000000000..a88d486b87 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createDraftPullRequest/__files/repos_github-api-test-org_github-api_pulls-f9c86da0-31ab-4da8-925c-f45241f78cb6.json @@ -0,0 +1,340 @@ +{ + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/321", + "id": 330727170, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzMwNzI3MTcw", + "html_url": "https://github.com/github-api-test-org/github-api/pull/321", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/321.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/321.patch", + "issue_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/321", + "number": 321, + "state": "open", + "locked": false, + "title": "createDraftPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "body": "## test", + "created_at": "2019-10-21T22:34:48Z", + "updated_at": "2019-10-21T22:34:48Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/321/commits", + "review_comments_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/321/comments", + "review_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/321/comments", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/1f40fdf4acf1adb246c109c21a22f617e4bd1ca8", + "head": { + "label": "github-api-test-org:test/stable", + "ref": "test/stable", + "sha": "1f40fdf4acf1adb246c109c21a22f617e4bd1ca8", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Tricky", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-30T22:36:47Z", + "pushed_at": "2019-10-21T22:34:18Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11391, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 2, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "github-api-test-org:master", + "ref": "master", + "sha": "3a09d2de4a9a1322a0ba2c3e2f54a919ca8fe353", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Tricky", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-30T22:36:47Z", + "pushed_at": "2019-10-21T22:34:18Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11391, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 2, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/321" + }, + "html": { + "href": "https://github.com/github-api-test-org/github-api/pull/321" + }, + "issue": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/321" + }, + "comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/321/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/321/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/321/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/statuses/1f40fdf4acf1adb246c109c21a22f617e4bd1ca8" + } + }, + "author_association": "MEMBER", + "draft": true, + "merged": false, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "draft", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 2, + "additions": 2, + "deletions": 1, + "changed_files": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createDraftPullRequest/__files/repos_github-api-test-org_github-api_pulls_321-91de84e3-deb6-40a3-8684-7d9752767396.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createDraftPullRequest/__files/repos_github-api-test-org_github-api_pulls_321-91de84e3-deb6-40a3-8684-7d9752767396.json new file mode 100644 index 0000000000..a88d486b87 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createDraftPullRequest/__files/repos_github-api-test-org_github-api_pulls_321-91de84e3-deb6-40a3-8684-7d9752767396.json @@ -0,0 +1,340 @@ +{ + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/321", + "id": 330727170, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzMwNzI3MTcw", + "html_url": "https://github.com/github-api-test-org/github-api/pull/321", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/321.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/321.patch", + "issue_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/321", + "number": 321, + "state": "open", + "locked": false, + "title": "createDraftPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "body": "## test", + "created_at": "2019-10-21T22:34:48Z", + "updated_at": "2019-10-21T22:34:48Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/321/commits", + "review_comments_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/321/comments", + "review_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/321/comments", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/1f40fdf4acf1adb246c109c21a22f617e4bd1ca8", + "head": { + "label": "github-api-test-org:test/stable", + "ref": "test/stable", + "sha": "1f40fdf4acf1adb246c109c21a22f617e4bd1ca8", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Tricky", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-30T22:36:47Z", + "pushed_at": "2019-10-21T22:34:18Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11391, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 2, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "github-api-test-org:master", + "ref": "master", + "sha": "3a09d2de4a9a1322a0ba2c3e2f54a919ca8fe353", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Tricky", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-30T22:36:47Z", + "pushed_at": "2019-10-21T22:34:18Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11391, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 2, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/321" + }, + "html": { + "href": "https://github.com/github-api-test-org/github-api/pull/321" + }, + "issue": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/321" + }, + "comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/321/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/321/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/321/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/statuses/1f40fdf4acf1adb246c109c21a22f617e4bd1ca8" + } + }, + "author_association": "MEMBER", + "draft": true, + "merged": false, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "draft", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 2, + "additions": 2, + "deletions": 1, + "changed_files": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createDraftPullRequest/__files/repos_github-api-test-org_github-api_pulls_321-b01981ed-7e57-46f9-af4b-8571bd6cedcf.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createDraftPullRequest/__files/repos_github-api-test-org_github-api_pulls_321-b01981ed-7e57-46f9-af4b-8571bd6cedcf.json new file mode 100644 index 0000000000..aa7536b0f0 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createDraftPullRequest/__files/repos_github-api-test-org_github-api_pulls_321-b01981ed-7e57-46f9-af4b-8571bd6cedcf.json @@ -0,0 +1,340 @@ +{ + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/321", + "id": 330727170, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzMwNzI3MTcw", + "html_url": "https://github.com/github-api-test-org/github-api/pull/321", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/321.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/321.patch", + "issue_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/321", + "number": 321, + "state": "open", + "locked": false, + "title": "createDraftPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "body": "## test", + "created_at": "2019-10-21T22:34:48Z", + "updated_at": "2019-10-21T22:34:48Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/321/commits", + "review_comments_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/321/comments", + "review_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/321/comments", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/1f40fdf4acf1adb246c109c21a22f617e4bd1ca8", + "head": { + "label": "github-api-test-org:test/stable", + "ref": "test/stable", + "sha": "1f40fdf4acf1adb246c109c21a22f617e4bd1ca8", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Tricky", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-30T22:36:47Z", + "pushed_at": "2019-10-21T22:34:49Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11391, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 2, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "github-api-test-org:master", + "ref": "master", + "sha": "3a09d2de4a9a1322a0ba2c3e2f54a919ca8fe353", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Tricky", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-30T22:36:47Z", + "pushed_at": "2019-10-21T22:34:49Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11391, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 2, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/321" + }, + "html": { + "href": "https://github.com/github-api-test-org/github-api/pull/321" + }, + "issue": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/321" + }, + "comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/321/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/321/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/321/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/statuses/1f40fdf4acf1adb246c109c21a22f617e4bd1ca8" + } + }, + "author_association": "MEMBER", + "draft": true, + "merged": false, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "draft", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 2, + "additions": 2, + "deletions": 1, + "changed_files": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createDraftPullRequest/__files/repos_github-api-test-org_github-api_pulls_321-ec3d9059-949c-4244-830a-41beea0ddb2b.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createDraftPullRequest/__files/repos_github-api-test-org_github-api_pulls_321-ec3d9059-949c-4244-830a-41beea0ddb2b.json new file mode 100644 index 0000000000..4aa97d228f --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createDraftPullRequest/__files/repos_github-api-test-org_github-api_pulls_321-ec3d9059-949c-4244-830a-41beea0ddb2b.json @@ -0,0 +1,340 @@ +{ + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/321", + "id": 330727170, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzMwNzI3MTcw", + "html_url": "https://github.com/github-api-test-org/github-api/pull/321", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/321.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/321.patch", + "issue_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/321", + "number": 321, + "state": "open", + "locked": false, + "title": "createDraftPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "body": "## test", + "created_at": "2019-10-21T22:34:48Z", + "updated_at": "2019-10-21T22:34:48Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "c0542de869d33dfb0e051e335b964686abf211fa", + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/321/commits", + "review_comments_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/321/comments", + "review_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/321/comments", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/1f40fdf4acf1adb246c109c21a22f617e4bd1ca8", + "head": { + "label": "github-api-test-org:test/stable", + "ref": "test/stable", + "sha": "1f40fdf4acf1adb246c109c21a22f617e4bd1ca8", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Tricky", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-30T22:36:47Z", + "pushed_at": "2019-10-21T22:34:49Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11391, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 2, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "github-api-test-org:master", + "ref": "master", + "sha": "3a09d2de4a9a1322a0ba2c3e2f54a919ca8fe353", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Tricky", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-30T22:36:47Z", + "pushed_at": "2019-10-21T22:34:49Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11391, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 2, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/321" + }, + "html": { + "href": "https://github.com/github-api-test-org/github-api/pull/321" + }, + "issue": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/321" + }, + "comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/321/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/321/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/321/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/statuses/1f40fdf4acf1adb246c109c21a22f617e4bd1ca8" + } + }, + "author_association": "MEMBER", + "draft": true, + "merged": false, + "mergeable": true, + "rebaseable": true, + "mergeable_state": "draft", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 2, + "additions": 2, + "deletions": 1, + "changed_files": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createDraftPullRequest/__files/user-26b175e4-5fd3-40c9-b4f2-f8fd982edf1a.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createDraftPullRequest/__files/user-26b175e4-5fd3-40c9-b4f2-f8fd982edf1a.json new file mode 100644 index 0000000000..0bc89b5312 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createDraftPullRequest/__files/user-26b175e4-5fd3-40c9-b4f2-f8fd982edf1a.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 168, + "public_gists": 6, + "followers": 139, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createDraftPullRequest/mappings/orgs_github-api-test-org-2-449cef.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createDraftPullRequest/mappings/orgs_github-api-test-org-2-449cef.json new file mode 100644 index 0000000000..521b9682bb --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createDraftPullRequest/mappings/orgs_github-api-test-org-2-449cef.json @@ -0,0 +1,43 @@ +{ + "id": "449cef5e-5c83-4133-b824-a0d152c31d3d", + "name": "orgs_github-api-test-org", + "request": { + "url": "/orgs/github-api-test-org", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_github-api-test-org-449cef5e-5c83-4133-b824-a0d152c31d3d.json", + "headers": { + "Date": "Mon, 21 Oct 2019 22:34:47 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4864", + "X-RateLimit-Reset": "1571700639", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"bbee0a14a82ca84871298052e1bcb545\"", + "Last-Modified": "Mon, 20 Apr 2015 00:42:30 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FB3F:7FDF:C1804:E6A81:5DAE3286" + } + }, + "uuid": "449cef5e-5c83-4133-b824-a0d152c31d3d", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createDraftPullRequest/mappings/repos_github-api-test-org_github-api-3-260db5.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createDraftPullRequest/mappings/repos_github-api-test-org_github-api-3-260db5.json new file mode 100644 index 0000000000..eb5310a84e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createDraftPullRequest/mappings/repos_github-api-test-org_github-api-3-260db5.json @@ -0,0 +1,43 @@ +{ + "id": "260db58e-2811-405d-b33f-49b598ae4bc5", + "name": "repos_github-api-test-org_github-api", + "request": { + "url": "/repos/github-api-test-org/github-api", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api-260db58e-2811-405d-b33f-49b598ae4bc5.json", + "headers": { + "Date": "Mon, 21 Oct 2019 22:34:48 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4863", + "X-RateLimit-Reset": "1571700639", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"978ed71e6256aa46034637baeb514992\"", + "Last-Modified": "Mon, 30 Sep 2019 22:36:47 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FB3F:7FDF:C1814:E6B03:5DAE3287" + } + }, + "uuid": "260db58e-2811-405d-b33f-49b598ae4bc5", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createDraftPullRequest/mappings/repos_github-api-test-org_github-api_pulls-4-f9c86d.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createDraftPullRequest/mappings/repos_github-api-test-org_github-api_pulls-4-f9c86d.json new file mode 100644 index 0000000000..c992a9fa5b --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createDraftPullRequest/mappings/repos_github-api-test-org_github-api_pulls-4-f9c86d.json @@ -0,0 +1,50 @@ +{ + "id": "f9c86da0-31ab-4da8-925c-f45241f78cb6", + "name": "repos_github-api-test-org_github-api_pulls", + "request": { + "url": "/repos/github-api-test-org/github-api/pulls", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"head\":\"test/stable\",\"draft\":true,\"maintainer_can_modify\":false,\"title\":\"createDraftPullRequest\",\"body\":\"## test\",\"base\":\"master\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "repos_github-api-test-org_github-api_pulls-f9c86da0-31ab-4da8-925c-f45241f78cb6.json", + "headers": { + "Date": "Mon, 21 Oct 2019 22:34:48 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4862", + "X-RateLimit-Reset": "1571700639", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"063315a89fcde1ad024391ce34c16d0a\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/github-api-test-org/github-api/pulls/321", + "X-GitHub-Media-Type": "github.shadow-cat-preview; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FB3F:7FDF:C1837:E6B2A:5DAE3288" + } + }, + "uuid": "f9c86da0-31ab-4da8-925c-f45241f78cb6", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createDraftPullRequest/mappings/repos_github-api-test-org_github-api_pulls-7-40b2ed.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createDraftPullRequest/mappings/repos_github-api-test-org_github-api_pulls-7-40b2ed.json new file mode 100644 index 0000000000..d263aa75ec --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createDraftPullRequest/mappings/repos_github-api-test-org_github-api_pulls-7-40b2ed.json @@ -0,0 +1,42 @@ +{ + "id": "40b2ed6a-5cf1-425a-80cc-72805839ac0e", + "name": "repos_github-api-test-org_github-api_pulls", + "request": { + "url": "/repos/github-api-test-org/github-api/pulls?state=open&head=github-api-test-org%3Atest%2Fstable", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api_pulls-40b2ed6a-5cf1-425a-80cc-72805839ac0e.json", + "headers": { + "Date": "Mon, 21 Oct 2019 22:34:49 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4859", + "X-RateLimit-Reset": "1571700639", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"e348c83000b75f1351833d909f7a2782\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.shadow-cat-preview; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FB3F:7FDF:C18DC:E6BE7:5DAE3289" + } + }, + "uuid": "40b2ed6a-5cf1-425a-80cc-72805839ac0e", + "persistent": true, + "insertionIndex": 7 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createDraftPullRequest/mappings/repos_github-api-test-org_github-api_pulls_321-5-91de84.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createDraftPullRequest/mappings/repos_github-api-test-org_github-api_pulls_321-5-91de84.json new file mode 100644 index 0000000000..7b0c6d904b --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createDraftPullRequest/mappings/repos_github-api-test-org_github-api_pulls_321-5-91de84.json @@ -0,0 +1,46 @@ +{ + "id": "91de84e3-deb6-40a3-8684-7d9752767396", + "name": "repos_github-api-test-org_github-api_pulls_321", + "request": { + "url": "/repos/github-api-test-org/github-api/pulls/321", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api_pulls_321-91de84e3-deb6-40a3-8684-7d9752767396.json", + "headers": { + "Date": "Mon, 21 Oct 2019 22:34:49 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4861", + "X-RateLimit-Reset": "1571700639", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"063315a89fcde1ad024391ce34c16d0a\"", + "Last-Modified": "Mon, 21 Oct 2019 22:34:48 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.shadow-cat-preview; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FB3F:7FDF:C1892:E6B8B:5DAE3288" + } + }, + "uuid": "91de84e3-deb6-40a3-8684-7d9752767396", + "persistent": true, + "scenarioName": "scenario-1-repos-github-api-test-org-github-api-pulls-321", + "requiredScenarioState": "Started", + "newScenarioState": "scenario-1-repos-github-api-test-org-github-api-pulls-321-2", + "insertionIndex": 5 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createDraftPullRequest/mappings/repos_github-api-test-org_github-api_pulls_321-6-b01981.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createDraftPullRequest/mappings/repos_github-api-test-org_github-api_pulls_321-6-b01981.json new file mode 100644 index 0000000000..6a35cf5587 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createDraftPullRequest/mappings/repos_github-api-test-org_github-api_pulls_321-6-b01981.json @@ -0,0 +1,46 @@ +{ + "id": "b01981ed-7e57-46f9-af4b-8571bd6cedcf", + "name": "repos_github-api-test-org_github-api_pulls_321", + "request": { + "url": "/repos/github-api-test-org/github-api/pulls/321", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api_pulls_321-b01981ed-7e57-46f9-af4b-8571bd6cedcf.json", + "headers": { + "Date": "Mon, 21 Oct 2019 22:34:49 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4860", + "X-RateLimit-Reset": "1571700639", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"97bf06d75e0548a5d05619526fbc4a95\"", + "Last-Modified": "Mon, 21 Oct 2019 22:34:48 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.shadow-cat-preview; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FB3F:7FDF:C18BF:E6BB1:5DAE3289" + } + }, + "uuid": "b01981ed-7e57-46f9-af4b-8571bd6cedcf", + "persistent": true, + "scenarioName": "scenario-1-repos-github-api-test-org-github-api-pulls-321", + "requiredScenarioState": "scenario-1-repos-github-api-test-org-github-api-pulls-321-2", + "newScenarioState": "scenario-1-repos-github-api-test-org-github-api-pulls-321-3", + "insertionIndex": 6 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createDraftPullRequest/mappings/repos_github-api-test-org_github-api_pulls_321-8-ec3d90.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createDraftPullRequest/mappings/repos_github-api-test-org_github-api_pulls_321-8-ec3d90.json new file mode 100644 index 0000000000..e9e85a7b9b --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createDraftPullRequest/mappings/repos_github-api-test-org_github-api_pulls_321-8-ec3d90.json @@ -0,0 +1,45 @@ +{ + "id": "ec3d9059-949c-4244-830a-41beea0ddb2b", + "name": "repos_github-api-test-org_github-api_pulls_321", + "request": { + "url": "/repos/github-api-test-org/github-api/pulls/321", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api_pulls_321-ec3d9059-949c-4244-830a-41beea0ddb2b.json", + "headers": { + "Date": "Mon, 21 Oct 2019 22:34:50 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4858", + "X-RateLimit-Reset": "1571700639", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"aafccc1379665e90dc144ced21f1f80c\"", + "Last-Modified": "Mon, 21 Oct 2019 22:34:48 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.shadow-cat-preview; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FB3F:7FDF:C18F5:E6C09:5DAE3289" + } + }, + "uuid": "ec3d9059-949c-4244-830a-41beea0ddb2b", + "persistent": true, + "scenarioName": "scenario-1-repos-github-api-test-org-github-api-pulls-321", + "requiredScenarioState": "scenario-1-repos-github-api-test-org-github-api-pulls-321-3", + "insertionIndex": 8 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createDraftPullRequest/mappings/user-1-26b175.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createDraftPullRequest/mappings/user-1-26b175.json new file mode 100644 index 0000000000..9a7d4e4a1d --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createDraftPullRequest/mappings/user-1-26b175.json @@ -0,0 +1,43 @@ +{ + "id": "26b175e4-5fd3-40c9-b4f2-f8fd982edf1a", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-26b175e4-5fd3-40c9-b4f2-f8fd982edf1a.json", + "headers": { + "Date": "Mon, 21 Oct 2019 22:34:46 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4869", + "X-RateLimit-Reset": "1571700639", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"b3ade9da976cfb0745abc8c0c5812c1e\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FB3F:7FDF:C1791:E6A6A:5DAE3286" + } + }, + "uuid": "26b175e4-5fd3-40c9-b4f2-f8fd982edf1a", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequest/__files/orgs_github-api-test-org-b2d80ea5-16e2-42ed-9de1-71ed44de990a.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequest/__files/orgs_github-api-test-org-b2d80ea5-16e2-42ed-9de1-71ed44de990a.json new file mode 100644 index 0000000000..61547e3d98 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequest/__files/orgs_github-api-test-org-b2d80ea5-16e2-42ed-9de1-71ed44de990a.json @@ -0,0 +1,41 @@ +{ + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "url": "https://api.github.com/orgs/github-api-test-org", + "repos_url": "https://api.github.com/orgs/github-api-test-org/repos", + "events_url": "https://api.github.com/orgs/github-api-test-org/events", + "hooks_url": "https://api.github.com/orgs/github-api-test-org/hooks", + "issues_url": "https://api.github.com/orgs/github-api-test-org/issues", + "members_url": "https://api.github.com/orgs/github-api-test-org/members{/member}", + "public_members_url": "https://api.github.com/orgs/github-api-test-org/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "description": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 9, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/github-api-test-org", + "created_at": "2014-05-10T19:39:11Z", + "updated_at": "2015-04-20T00:42:30Z", + "type": "Organization", + "total_private_repos": 0, + "owned_private_repos": 0, + "private_gists": 0, + "disk_usage": 132, + "collaborators": 0, + "billing_email": "kk@kohsuke.org", + "default_repository_permission": "none", + "members_can_create_repositories": false, + "two_factor_requirement_enabled": false, + "plan": { + "name": "free", + "space": 976562499, + "private_repos": 0, + "filled_seats": 3, + "seats": 0 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequest/__files/repos_github-api-test-org_github-api-31587743-aa9c-4bdd-8e99-6d2603914f13.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequest/__files/repos_github-api-test-org_github-api-31587743-aa9c-4bdd-8e99-6d2603914f13.json new file mode 100644 index 0000000000..9208f39fce --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequest/__files/repos_github-api-test-org_github-api-31587743-aa9c-4bdd-8e99-6d2603914f13.json @@ -0,0 +1,330 @@ +{ + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:25:40Z", + "pushed_at": "2019-09-08T07:25:55Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "parent": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-07T00:07:16Z", + "pushed_at": "2019-09-07T00:07:14Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 551, + "watchers_count": 551, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 551, + "default_branch": "master" + }, + "source": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-07T00:07:16Z", + "pushed_at": "2019-09-07T00:07:14Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 551, + "watchers_count": 551, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 551, + "default_branch": "master" + }, + "network_count": 427, + "subscribers_count": 0 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequest/__files/repos_github-api-test-org_github-api-e04f90b8-9e4c-42f6-867c-1d729dcdf83f.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequest/__files/repos_github-api-test-org_github-api-e04f90b8-9e4c-42f6-867c-1d729dcdf83f.json new file mode 100644 index 0000000000..5df344ae12 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequest/__files/repos_github-api-test-org_github-api-e04f90b8-9e4c-42f6-867c-1d729dcdf83f.json @@ -0,0 +1,330 @@ +{ + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:25:40Z", + "pushed_at": "2019-09-08T07:25:55Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "parent": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-07T00:07:16Z", + "pushed_at": "2019-09-07T00:07:14Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 551, + "watchers_count": 551, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 551, + "default_branch": "master" + }, + "source": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-07T00:07:16Z", + "pushed_at": "2019-09-07T00:07:14Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 551, + "watchers_count": 551, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 551, + "default_branch": "master" + }, + "network_count": 427, + "subscribers_count": 0 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequest/__files/repos_github-api-test-org_github-api_pulls-21bacc38-2501-4be1-a5ed-63d59668aecf.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequest/__files/repos_github-api-test-org_github-api_pulls-21bacc38-2501-4be1-a5ed-63d59668aecf.json new file mode 100644 index 0000000000..04d2762634 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequest/__files/repos_github-api-test-org_github-api_pulls-21bacc38-2501-4be1-a5ed-63d59668aecf.json @@ -0,0 +1,329 @@ +[ + { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/273", + "id": 315316377, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MzE2Mzc3", + "html_url": "https://github.com/github-api-test-org/github-api/pull/273", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/273.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/273.patch", + "issue_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/273", + "number": 273, + "state": "open", + "locked": false, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "body": "## test", + "created_at": "2019-09-08T23:20:37Z", + "updated_at": "2019-09-08T23:20:37Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/273/commits", + "review_comments_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/273/comments", + "review_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/273/comments", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "head": { + "label": "github-api-test-org:test/stable", + "ref": "test/stable", + "sha": "2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:25:40Z", + "pushed_at": "2019-09-08T23:20:38Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "github-api-test-org:master", + "ref": "master", + "sha": "3a09d2de4a9a1322a0ba2c3e2f54a919ca8fe353", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:25:40Z", + "pushed_at": "2019-09-08T23:20:38Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/273" + }, + "html": { + "href": "https://github.com/github-api-test-org/github-api/pull/273" + }, + "issue": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/273" + }, + "comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/273/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/273/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/273/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/statuses/2d29c787b46ce61b98a1c13e05e21ebc21f49dbf" + } + }, + "author_association": "MEMBER" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequest/__files/repos_github-api-test-org_github-api_pulls-e393556d-0f08-48c2-9ec1-ecebeced216a.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequest/__files/repos_github-api-test-org_github-api_pulls-e393556d-0f08-48c2-9ec1-ecebeced216a.json new file mode 100644 index 0000000000..a3038d231f --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequest/__files/repos_github-api-test-org_github-api_pulls-e393556d-0f08-48c2-9ec1-ecebeced216a.json @@ -0,0 +1,339 @@ +{ + "url": "http://localhost:51456/repos/github-api-test-org/github-api/pulls/273", + "id": 315316377, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MzE2Mzc3", + "html_url": "https://github.com/github-api-test-org/github-api/pull/273", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/273.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/273.patch", + "issue_url": "http://localhost:51456/repos/github-api-test-org/github-api/issues/273", + "number": 273, + "state": "open", + "locked": false, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "http://localhost:51456/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "http://localhost:51456/users/bitwiseman/followers", + "following_url": "http://localhost:51456/users/bitwiseman/following{/other_user}", + "gists_url": "http://localhost:51456/users/bitwiseman/gists{/gist_id}", + "starred_url": "http://localhost:51456/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "http://localhost:51456/users/bitwiseman/subscriptions", + "organizations_url": "http://localhost:51456/users/bitwiseman/orgs", + "repos_url": "http://localhost:51456/users/bitwiseman/repos", + "events_url": "http://localhost:51456/users/bitwiseman/events{/privacy}", + "received_events_url": "http://localhost:51456/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "body": "## test", + "created_at": "2019-09-08T23:20:37Z", + "updated_at": "2019-09-08T23:20:37Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "http://localhost:51456/repos/github-api-test-org/github-api/pulls/273/commits", + "review_comments_url": "http://localhost:51456/repos/github-api-test-org/github-api/pulls/273/comments", + "review_comment_url": "http://localhost:51456/repos/github-api-test-org/github-api/pulls/comments{/number}", + "comments_url": "http://localhost:51456/repos/github-api-test-org/github-api/issues/273/comments", + "statuses_url": "http://localhost:51456/repos/github-api-test-org/github-api/statuses/2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "head": { + "label": "github-api-test-org:test/stable", + "ref": "test/stable", + "sha": "2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "http://localhost:51456/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "http://localhost:51456/users/github-api-test-org/followers", + "following_url": "http://localhost:51456/users/github-api-test-org/following{/other_user}", + "gists_url": "http://localhost:51456/users/github-api-test-org/gists{/gist_id}", + "starred_url": "http://localhost:51456/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "http://localhost:51456/users/github-api-test-org/subscriptions", + "organizations_url": "http://localhost:51456/users/github-api-test-org/orgs", + "repos_url": "http://localhost:51456/users/github-api-test-org/repos", + "events_url": "http://localhost:51456/users/github-api-test-org/events{/privacy}", + "received_events_url": "http://localhost:51456/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "http://localhost:51456/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "http://localhost:51456/users/github-api-test-org/followers", + "following_url": "http://localhost:51456/users/github-api-test-org/following{/other_user}", + "gists_url": "http://localhost:51456/users/github-api-test-org/gists{/gist_id}", + "starred_url": "http://localhost:51456/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "http://localhost:51456/users/github-api-test-org/subscriptions", + "organizations_url": "http://localhost:51456/users/github-api-test-org/orgs", + "repos_url": "http://localhost:51456/users/github-api-test-org/repos", + "events_url": "http://localhost:51456/users/github-api-test-org/events{/privacy}", + "received_events_url": "http://localhost:51456/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "http://localhost:51456/repos/github-api-test-org/github-api", + "forks_url": "http://localhost:51456/repos/github-api-test-org/github-api/forks", + "keys_url": "http://localhost:51456/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "http://localhost:51456/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "http://localhost:51456/repos/github-api-test-org/github-api/teams", + "hooks_url": "http://localhost:51456/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "http://localhost:51456/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "http://localhost:51456/repos/github-api-test-org/github-api/events", + "assignees_url": "http://localhost:51456/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "http://localhost:51456/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "http://localhost:51456/repos/github-api-test-org/github-api/tags", + "blobs_url": "http://localhost:51456/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "http://localhost:51456/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "http://localhost:51456/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "http://localhost:51456/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "http://localhost:51456/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "http://localhost:51456/repos/github-api-test-org/github-api/languages", + "stargazers_url": "http://localhost:51456/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "http://localhost:51456/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "http://localhost:51456/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "http://localhost:51456/repos/github-api-test-org/github-api/subscription", + "commits_url": "http://localhost:51456/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "http://localhost:51456/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "http://localhost:51456/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "http://localhost:51456/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "http://localhost:51456/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "http://localhost:51456/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "http://localhost:51456/repos/github-api-test-org/github-api/merges", + "archive_url": "http://localhost:51456/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "http://localhost:51456/repos/github-api-test-org/github-api/downloads", + "issues_url": "http://localhost:51456/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "http://localhost:51456/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "http://localhost:51456/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "http://localhost:51456/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "http://localhost:51456/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "http://localhost:51456/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "http://localhost:51456/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:25:40Z", + "pushed_at": "2019-09-08T07:25:55Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "http://localhost:51456/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "github-api-test-org:master", + "ref": "master", + "sha": "3a09d2de4a9a1322a0ba2c3e2f54a919ca8fe353", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "http://localhost:51456/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "http://localhost:51456/users/github-api-test-org/followers", + "following_url": "http://localhost:51456/users/github-api-test-org/following{/other_user}", + "gists_url": "http://localhost:51456/users/github-api-test-org/gists{/gist_id}", + "starred_url": "http://localhost:51456/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "http://localhost:51456/users/github-api-test-org/subscriptions", + "organizations_url": "http://localhost:51456/users/github-api-test-org/orgs", + "repos_url": "http://localhost:51456/users/github-api-test-org/repos", + "events_url": "http://localhost:51456/users/github-api-test-org/events{/privacy}", + "received_events_url": "http://localhost:51456/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "http://localhost:51456/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "http://localhost:51456/users/github-api-test-org/followers", + "following_url": "http://localhost:51456/users/github-api-test-org/following{/other_user}", + "gists_url": "http://localhost:51456/users/github-api-test-org/gists{/gist_id}", + "starred_url": "http://localhost:51456/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "http://localhost:51456/users/github-api-test-org/subscriptions", + "organizations_url": "http://localhost:51456/users/github-api-test-org/orgs", + "repos_url": "http://localhost:51456/users/github-api-test-org/repos", + "events_url": "http://localhost:51456/users/github-api-test-org/events{/privacy}", + "received_events_url": "http://localhost:51456/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "http://localhost:51456/repos/github-api-test-org/github-api", + "forks_url": "http://localhost:51456/repos/github-api-test-org/github-api/forks", + "keys_url": "http://localhost:51456/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "http://localhost:51456/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "http://localhost:51456/repos/github-api-test-org/github-api/teams", + "hooks_url": "http://localhost:51456/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "http://localhost:51456/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "http://localhost:51456/repos/github-api-test-org/github-api/events", + "assignees_url": "http://localhost:51456/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "http://localhost:51456/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "http://localhost:51456/repos/github-api-test-org/github-api/tags", + "blobs_url": "http://localhost:51456/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "http://localhost:51456/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "http://localhost:51456/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "http://localhost:51456/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "http://localhost:51456/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "http://localhost:51456/repos/github-api-test-org/github-api/languages", + "stargazers_url": "http://localhost:51456/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "http://localhost:51456/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "http://localhost:51456/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "http://localhost:51456/repos/github-api-test-org/github-api/subscription", + "commits_url": "http://localhost:51456/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "http://localhost:51456/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "http://localhost:51456/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "http://localhost:51456/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "http://localhost:51456/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "http://localhost:51456/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "http://localhost:51456/repos/github-api-test-org/github-api/merges", + "archive_url": "http://localhost:51456/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "http://localhost:51456/repos/github-api-test-org/github-api/downloads", + "issues_url": "http://localhost:51456/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "http://localhost:51456/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "http://localhost:51456/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "http://localhost:51456/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "http://localhost:51456/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "http://localhost:51456/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "http://localhost:51456/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:25:40Z", + "pushed_at": "2019-09-08T07:25:55Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "http://localhost:51456/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "http://localhost:51456/repos/github-api-test-org/github-api/pulls/273" + }, + "html": { + "href": "https://github.com/github-api-test-org/github-api/pull/273" + }, + "issue": { + "href": "http://localhost:51456/repos/github-api-test-org/github-api/issues/273" + }, + "comments": { + "href": "http://localhost:51456/repos/github-api-test-org/github-api/issues/273/comments" + }, + "review_comments": { + "href": "http://localhost:51456/repos/github-api-test-org/github-api/pulls/273/comments" + }, + "review_comment": { + "href": "http://localhost:51456/repos/github-api-test-org/github-api/pulls/comments{/number}" + }, + "commits": { + "href": "http://localhost:51456/repos/github-api-test-org/github-api/pulls/273/commits" + }, + "statuses": { + "href": "http://localhost:51456/repos/github-api-test-org/github-api/statuses/2d29c787b46ce61b98a1c13e05e21ebc21f49dbf" + } + }, + "author_association": "MEMBER", + "merged": false, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 1, + "deletions": 1, + "changed_files": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequest/__files/repos_github-api-test-org_github-api_pulls_273-66712670-b79b-48e8-8593-01f7564ff169.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequest/__files/repos_github-api-test-org_github-api_pulls_273-66712670-b79b-48e8-8593-01f7564ff169.json new file mode 100644 index 0000000000..917efa8eee --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequest/__files/repos_github-api-test-org_github-api_pulls_273-66712670-b79b-48e8-8593-01f7564ff169.json @@ -0,0 +1,339 @@ +{ + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/273", + "id": 315316377, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MzE2Mzc3", + "html_url": "https://github.com/github-api-test-org/github-api/pull/273", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/273.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/273.patch", + "issue_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/273", + "number": 273, + "state": "closed", + "locked": false, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "body": "## test", + "created_at": "2019-09-08T23:20:37Z", + "updated_at": "2019-09-08T23:20:38Z", + "closed_at": "2019-09-08T23:20:38Z", + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/273/commits", + "review_comments_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/273/comments", + "review_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/273/comments", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "head": { + "label": "github-api-test-org:test/stable", + "ref": "test/stable", + "sha": "2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:25:40Z", + "pushed_at": "2019-09-08T23:20:38Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "github-api-test-org:master", + "ref": "master", + "sha": "3a09d2de4a9a1322a0ba2c3e2f54a919ca8fe353", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:25:40Z", + "pushed_at": "2019-09-08T23:20:38Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/273" + }, + "html": { + "href": "https://github.com/github-api-test-org/github-api/pull/273" + }, + "issue": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/273" + }, + "comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/273/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/273/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/273/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/statuses/2d29c787b46ce61b98a1c13e05e21ebc21f49dbf" + } + }, + "author_association": "MEMBER", + "merged": false, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 1, + "deletions": 1, + "changed_files": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequest/__files/user-17990d92-81a4-43e2-b41b-bf3f95f79276.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequest/__files/user-17990d92-81a4-43e2-b41b-bf3f95f79276.json new file mode 100644 index 0000000000..b9ce24cb03 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequest/__files/user-17990d92-81a4-43e2-b41b-bf3f95f79276.json @@ -0,0 +1,33 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 166, + "public_gists": 4, + "followers": 133, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-06-03T17:47:20Z" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequest/mappings/orgs_github-api-test-org-2-b2d80e.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequest/mappings/orgs_github-api-test-org-2-b2d80e.json new file mode 100644 index 0000000000..61d5cb7d58 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequest/mappings/orgs_github-api-test-org-2-b2d80e.json @@ -0,0 +1,43 @@ +{ + "id": "b2d80ea5-16e2-42ed-9de1-71ed44de990a", + "name": "orgs_github-api-test-org", + "request": { + "url": "/orgs/github-api-test-org", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_github-api-test-org-b2d80ea5-16e2-42ed-9de1-71ed44de990a.json", + "headers": { + "Date": "Sun, 08 Sep 2019 23:20:37 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4993", + "X-RateLimit-Reset": "1567988436", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"d36965e157281b2a309c39e4c2343a55\"", + "Last-Modified": "Mon, 20 Apr 2015 00:42:30 GMT", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C902:4FAE:D72061:FD3203:5D758CC4" + } + }, + "uuid": "b2d80ea5-16e2-42ed-9de1-71ed44de990a", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequest/mappings/repos_github-api-test-org_github-api-3-e04f90.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequest/mappings/repos_github-api-test-org_github-api-3-e04f90.json new file mode 100644 index 0000000000..ca30fd6721 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequest/mappings/repos_github-api-test-org_github-api-3-e04f90.json @@ -0,0 +1,46 @@ +{ + "id": "e04f90b8-9e4c-42f6-867c-1d729dcdf83f", + "name": "repos_github-api-test-org_github-api", + "request": { + "url": "/repos/github-api-test-org/github-api", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api-e04f90b8-9e4c-42f6-867c-1d729dcdf83f.json", + "headers": { + "Date": "Sun, 08 Sep 2019 23:20:37 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4992", + "X-RateLimit-Reset": "1567988436", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"100f22563cf39ef74c77122e808791ec\"", + "Last-Modified": "Sun, 08 Sep 2019 07:25:40 GMT", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C902:4FAE:D72069:FD321E:5D758CC5" + } + }, + "uuid": "e04f90b8-9e4c-42f6-867c-1d729dcdf83f", + "persistent": true, + "scenarioName": "scenario-1-repos-github-api-test-org-github-api", + "requiredScenarioState": "Started", + "newScenarioState": "scenario-1-repos-github-api-test-org-github-api-2", + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequest/mappings/repos_github-api-test-org_github-api-5-315877.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequest/mappings/repos_github-api-test-org_github-api-5-315877.json new file mode 100644 index 0000000000..47502a6ae7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequest/mappings/repos_github-api-test-org_github-api-5-315877.json @@ -0,0 +1,45 @@ +{ + "id": "31587743-aa9c-4bdd-8e99-6d2603914f13", + "name": "repos_github-api-test-org_github-api", + "request": { + "url": "/repos/github-api-test-org/github-api", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api-31587743-aa9c-4bdd-8e99-6d2603914f13.json", + "headers": { + "Date": "Sun, 08 Sep 2019 23:20:38 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4990", + "X-RateLimit-Reset": "1567988436", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"38a6130bf6ecb7d4e7548d5db29a69ab\"", + "Last-Modified": "Sun, 08 Sep 2019 07:25:40 GMT", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C902:4FAE:D720B0:FD3276:5D758CC6" + } + }, + "uuid": "31587743-aa9c-4bdd-8e99-6d2603914f13", + "persistent": true, + "scenarioName": "scenario-1-repos-github-api-test-org-github-api", + "requiredScenarioState": "scenario-1-repos-github-api-test-org-github-api-2", + "insertionIndex": 5 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequest/mappings/repos_github-api-test-org_github-api_pulls-4-e39355.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequest/mappings/repos_github-api-test-org_github-api_pulls-4-e39355.json new file mode 100644 index 0000000000..3ce626d630 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequest/mappings/repos_github-api-test-org_github-api_pulls-4-e39355.json @@ -0,0 +1,50 @@ +{ + "id": "e393556d-0f08-48c2-9ec1-ecebeced216a", + "name": "repos_github-api-test-org_github-api_pulls", + "request": { + "url": "/repos/github-api-test-org/github-api/pulls", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"head\":\"test/stable\",\"maintainer_can_modify\":true,\"title\":\"createPullRequest\",\"body\":\"## test\",\"base\":\"master\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "repos_github-api-test-org_github-api_pulls-e393556d-0f08-48c2-9ec1-ecebeced216a.json", + "headers": { + "Date": "Sun, 08 Sep 2019 23:20:38 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4991", + "X-RateLimit-Reset": "1567988436", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"88d30690a6750391197735fa610d29c7\"", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/github-api-test-org/github-api/pulls/273", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C902:4FAE:D72080:FD3235:5D758CC5" + } + }, + "uuid": "e393556d-0f08-48c2-9ec1-ecebeced216a", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequest/mappings/repos_github-api-test-org_github-api_pulls-6-21bacc.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequest/mappings/repos_github-api-test-org_github-api_pulls-6-21bacc.json new file mode 100644 index 0000000000..009309a1f2 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequest/mappings/repos_github-api-test-org_github-api_pulls-6-21bacc.json @@ -0,0 +1,42 @@ +{ + "id": "21bacc38-2501-4be1-a5ed-63d59668aecf", + "name": "repos_github-api-test-org_github-api_pulls", + "request": { + "url": "/repos/github-api-test-org/github-api/pulls?state=open", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api_pulls-21bacc38-2501-4be1-a5ed-63d59668aecf.json", + "headers": { + "Date": "Sun, 08 Sep 2019 23:20:38 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4989", + "X-RateLimit-Reset": "1567988436", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"c99ec4a6900516f992fd7ef1ed6bdc3d\"", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C902:4FAE:D720C0:FD328A:5D758CC6" + } + }, + "uuid": "21bacc38-2501-4be1-a5ed-63d59668aecf", + "persistent": true, + "insertionIndex": 6 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequest/mappings/repos_github-api-test-org_github-api_pulls_273-7-667126.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequest/mappings/repos_github-api-test-org_github-api_pulls_273-7-667126.json new file mode 100644 index 0000000000..f3c1a8b262 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequest/mappings/repos_github-api-test-org_github-api_pulls_273-7-667126.json @@ -0,0 +1,49 @@ +{ + "id": "66712670-b79b-48e8-8593-01f7564ff169", + "name": "repos_github-api-test-org_github-api_pulls_273", + "request": { + "url": "/repos/github-api-test-org/github-api/pulls/273", + "method": "PATCH", + "bodyPatterns": [ + { + "equalToJson": "{\"state\":\"closed\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api_pulls_273-66712670-b79b-48e8-8593-01f7564ff169.json", + "headers": { + "Date": "Sun, 08 Sep 2019 23:20:38 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4988", + "X-RateLimit-Reset": "1567988436", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"2305a6d26f2503df8f8e389e3f5e8132\"", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C902:4FAE:D720D3:FD329E:5D758CC6" + } + }, + "uuid": "66712670-b79b-48e8-8593-01f7564ff169", + "persistent": true, + "insertionIndex": 7 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequest/mappings/user-1-17990d.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequest/mappings/user-1-17990d.json new file mode 100644 index 0000000000..3e98bb1234 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequest/mappings/user-1-17990d.json @@ -0,0 +1,43 @@ +{ + "id": "17990d92-81a4-43e2-b41b-bf3f95f79276", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-17990d92-81a4-43e2-b41b-bf3f95f79276.json", + "headers": { + "Date": "Sun, 08 Sep 2019 23:20:36 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4994", + "X-RateLimit-Reset": "1567988436", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"3ba1de3523043df743651bd23efc7def\"", + "Last-Modified": "Mon, 03 Jun 2019 17:47:20 GMT", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C902:4FAE:D7204A:FD31FB:5D758CC4" + } + }, + "uuid": "17990d92-81a4-43e2-b41b-bf3f95f79276", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequestComment/__files/orgs_github-api-test-org-ad4f3477-141d-413d-aae6-d8d877f4359c.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequestComment/__files/orgs_github-api-test-org-ad4f3477-141d-413d-aae6-d8d877f4359c.json new file mode 100644 index 0000000000..61547e3d98 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequestComment/__files/orgs_github-api-test-org-ad4f3477-141d-413d-aae6-d8d877f4359c.json @@ -0,0 +1,41 @@ +{ + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "url": "https://api.github.com/orgs/github-api-test-org", + "repos_url": "https://api.github.com/orgs/github-api-test-org/repos", + "events_url": "https://api.github.com/orgs/github-api-test-org/events", + "hooks_url": "https://api.github.com/orgs/github-api-test-org/hooks", + "issues_url": "https://api.github.com/orgs/github-api-test-org/issues", + "members_url": "https://api.github.com/orgs/github-api-test-org/members{/member}", + "public_members_url": "https://api.github.com/orgs/github-api-test-org/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "description": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 9, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/github-api-test-org", + "created_at": "2014-05-10T19:39:11Z", + "updated_at": "2015-04-20T00:42:30Z", + "type": "Organization", + "total_private_repos": 0, + "owned_private_repos": 0, + "private_gists": 0, + "disk_usage": 132, + "collaborators": 0, + "billing_email": "kk@kohsuke.org", + "default_repository_permission": "none", + "members_can_create_repositories": false, + "two_factor_requirement_enabled": false, + "plan": { + "name": "free", + "space": 976562499, + "private_repos": 0, + "filled_seats": 3, + "seats": 0 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequestComment/__files/repos_github-api-test-org_github-api-6e0179a4-9d47-4435-897a-ca80019c4ee1.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequestComment/__files/repos_github-api-test-org_github-api-6e0179a4-9d47-4435-897a-ca80019c4ee1.json new file mode 100644 index 0000000000..f3d6053392 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequestComment/__files/repos_github-api-test-org_github-api-6e0179a4-9d47-4435-897a-ca80019c4ee1.json @@ -0,0 +1,330 @@ +{ + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:56Z", + "pushed_at": "2019-09-08T07:25:01Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "parent": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-07T00:07:16Z", + "pushed_at": "2019-09-07T00:07:14Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 551, + "watchers_count": 551, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 551, + "default_branch": "master" + }, + "source": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-07T00:07:16Z", + "pushed_at": "2019-09-07T00:07:14Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 551, + "watchers_count": 551, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 551, + "default_branch": "master" + }, + "network_count": 427, + "subscribers_count": 0 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequestComment/__files/repos_github-api-test-org_github-api-de7260bc-cad0-4eeb-ab76-129228a40fa4.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequestComment/__files/repos_github-api-test-org_github-api-de7260bc-cad0-4eeb-ab76-129228a40fa4.json new file mode 100644 index 0000000000..a14766ee3e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequestComment/__files/repos_github-api-test-org_github-api-de7260bc-cad0-4eeb-ab76-129228a40fa4.json @@ -0,0 +1,330 @@ +{ + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:56Z", + "pushed_at": "2019-09-08T07:24:57Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "parent": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-07T00:07:16Z", + "pushed_at": "2019-09-07T00:07:14Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 551, + "watchers_count": 551, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 551, + "default_branch": "master" + }, + "source": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-07T00:07:16Z", + "pushed_at": "2019-09-07T00:07:14Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 551, + "watchers_count": 551, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 551, + "default_branch": "master" + }, + "network_count": 427, + "subscribers_count": 0 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequestComment/__files/repos_github-api-test-org_github-api_issues_270_comments-2cd4dd92-58d7-4423-bbe8-babe22bd36ac.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequestComment/__files/repos_github-api-test-org_github-api_issues_270_comments-2cd4dd92-58d7-4423-bbe8-babe22bd36ac.json new file mode 100644 index 0000000000..a4318d1f47 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequestComment/__files/repos_github-api-test-org_github-api_issues_270_comments-2cd4dd92-58d7-4423-bbe8-babe22bd36ac.json @@ -0,0 +1,31 @@ +{ + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments/529177612", + "html_url": "https://github.com/github-api-test-org/github-api/pull/270#issuecomment-529177612", + "issue_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/270", + "id": 529177612, + "node_id": "MDEyOklzc3VlQ29tbWVudDUyOTE3NzYxMg==", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2019-09-08T07:25:01Z", + "updated_at": "2019-09-08T07:25:01Z", + "author_association": "MEMBER", + "body": "Some comment" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequestComment/__files/repos_github-api-test-org_github-api_pulls-420dc28a-cfc8-4fbc-8cef-7123c0387966.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequestComment/__files/repos_github-api-test-org_github-api_pulls-420dc28a-cfc8-4fbc-8cef-7123c0387966.json new file mode 100644 index 0000000000..af405cd062 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequestComment/__files/repos_github-api-test-org_github-api_pulls-420dc28a-cfc8-4fbc-8cef-7123c0387966.json @@ -0,0 +1,329 @@ +[ + { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/270", + "id": 315252358, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzU4", + "html_url": "https://github.com/github-api-test-org/github-api/pull/270", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/270.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/270.patch", + "issue_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/270", + "number": 270, + "state": "open", + "locked": false, + "title": "createPullRequestComment", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "body": "## test", + "created_at": "2019-09-08T07:25:00Z", + "updated_at": "2019-09-08T07:25:01Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "cfe2edc76bbeefe5624061e17537052bddba3138", + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/270/commits", + "review_comments_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/270/comments", + "review_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/270/comments", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "head": { + "label": "github-api-test-org:test/stable", + "ref": "test/stable", + "sha": "2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:56Z", + "pushed_at": "2019-09-08T07:25:01Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "github-api-test-org:master", + "ref": "master", + "sha": "ecec449372b1e8270524a35c1a5aa8fdaf0e6676", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:56Z", + "pushed_at": "2019-09-08T07:25:01Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/270" + }, + "html": { + "href": "https://github.com/github-api-test-org/github-api/pull/270" + }, + "issue": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/270" + }, + "comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/270/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/270/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/270/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/statuses/2d29c787b46ce61b98a1c13e05e21ebc21f49dbf" + } + }, + "author_association": "MEMBER" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequestComment/__files/repos_github-api-test-org_github-api_pulls-4e9dadbb-e2ac-410b-9a7e-8731ed5c86cf.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequestComment/__files/repos_github-api-test-org_github-api_pulls-4e9dadbb-e2ac-410b-9a7e-8731ed5c86cf.json new file mode 100644 index 0000000000..31eb061501 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequestComment/__files/repos_github-api-test-org_github-api_pulls-4e9dadbb-e2ac-410b-9a7e-8731ed5c86cf.json @@ -0,0 +1,339 @@ +{ + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/270", + "id": 315252358, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzU4", + "html_url": "https://github.com/github-api-test-org/github-api/pull/270", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/270.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/270.patch", + "issue_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/270", + "number": 270, + "state": "open", + "locked": false, + "title": "createPullRequestComment", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "body": "## test", + "created_at": "2019-09-08T07:25:00Z", + "updated_at": "2019-09-08T07:25:00Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/270/commits", + "review_comments_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/270/comments", + "review_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/270/comments", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "head": { + "label": "github-api-test-org:test/stable", + "ref": "test/stable", + "sha": "2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:56Z", + "pushed_at": "2019-09-08T07:24:57Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "github-api-test-org:master", + "ref": "master", + "sha": "ecec449372b1e8270524a35c1a5aa8fdaf0e6676", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:56Z", + "pushed_at": "2019-09-08T07:24:57Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/270" + }, + "html": { + "href": "https://github.com/github-api-test-org/github-api/pull/270" + }, + "issue": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/270" + }, + "comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/270/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/270/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/270/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/statuses/2d29c787b46ce61b98a1c13e05e21ebc21f49dbf" + } + }, + "author_association": "MEMBER", + "merged": false, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 1, + "deletions": 1, + "changed_files": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequestComment/__files/repos_github-api-test-org_github-api_pulls_270-1a6fbb20-8969-454a-94be-1e24388e7ed4.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequestComment/__files/repos_github-api-test-org_github-api_pulls_270-1a6fbb20-8969-454a-94be-1e24388e7ed4.json new file mode 100644 index 0000000000..6c37cec41d --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequestComment/__files/repos_github-api-test-org_github-api_pulls_270-1a6fbb20-8969-454a-94be-1e24388e7ed4.json @@ -0,0 +1,339 @@ +{ + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/270", + "id": 315252358, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzU4", + "html_url": "https://github.com/github-api-test-org/github-api/pull/270", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/270.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/270.patch", + "issue_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/270", + "number": 270, + "state": "closed", + "locked": false, + "title": "createPullRequestComment", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "body": "## test", + "created_at": "2019-09-08T07:25:00Z", + "updated_at": "2019-09-08T07:25:02Z", + "closed_at": "2019-09-08T07:25:02Z", + "merged_at": null, + "merge_commit_sha": "cfe2edc76bbeefe5624061e17537052bddba3138", + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/270/commits", + "review_comments_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/270/comments", + "review_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/270/comments", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "head": { + "label": "github-api-test-org:test/stable", + "ref": "test/stable", + "sha": "2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:56Z", + "pushed_at": "2019-09-08T07:25:01Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "github-api-test-org:master", + "ref": "master", + "sha": "ecec449372b1e8270524a35c1a5aa8fdaf0e6676", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:56Z", + "pushed_at": "2019-09-08T07:25:01Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/270" + }, + "html": { + "href": "https://github.com/github-api-test-org/github-api/pull/270" + }, + "issue": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/270" + }, + "comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/270/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/270/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/270/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/statuses/2d29c787b46ce61b98a1c13e05e21ebc21f49dbf" + } + }, + "author_association": "MEMBER", + "merged": false, + "mergeable": true, + "rebaseable": true, + "mergeable_state": "clean", + "merged_by": null, + "comments": 1, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 1, + "deletions": 1, + "changed_files": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequestComment/__files/user-c4d4d68f-a141-4fad-a2c9-539e3a21fe94.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequestComment/__files/user-c4d4d68f-a141-4fad-a2c9-539e3a21fe94.json new file mode 100644 index 0000000000..b9ce24cb03 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequestComment/__files/user-c4d4d68f-a141-4fad-a2c9-539e3a21fe94.json @@ -0,0 +1,33 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 166, + "public_gists": 4, + "followers": 133, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-06-03T17:47:20Z" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequestComment/mappings/orgs_github-api-test-org-2-ad4f34.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequestComment/mappings/orgs_github-api-test-org-2-ad4f34.json new file mode 100644 index 0000000000..d67a906adb --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequestComment/mappings/orgs_github-api-test-org-2-ad4f34.json @@ -0,0 +1,43 @@ +{ + "id": "ad4f3477-141d-413d-aae6-d8d877f4359c", + "name": "orgs_github-api-test-org", + "request": { + "url": "/orgs/github-api-test-org", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_github-api-test-org-ad4f3477-141d-413d-aae6-d8d877f4359c.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:59 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4848", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"d36965e157281b2a309c39e4c2343a55\"", + "Last-Modified": "Mon, 20 Apr 2015 00:42:30 GMT", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF9A:15CE:D30877:F67045:5D74ACCB" + } + }, + "uuid": "ad4f3477-141d-413d-aae6-d8d877f4359c", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequestComment/mappings/repos_github-api-test-org_github-api-3-de7260.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequestComment/mappings/repos_github-api-test-org_github-api-3-de7260.json new file mode 100644 index 0000000000..3e4291e36a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequestComment/mappings/repos_github-api-test-org_github-api-3-de7260.json @@ -0,0 +1,46 @@ +{ + "id": "de7260bc-cad0-4eeb-ab76-129228a40fa4", + "name": "repos_github-api-test-org_github-api", + "request": { + "url": "/repos/github-api-test-org/github-api", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api-de7260bc-cad0-4eeb-ab76-129228a40fa4.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:25:00 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4847", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"c7444e60baaecbb2c4b3bfb5ec0122de\"", + "Last-Modified": "Sun, 08 Sep 2019 07:24:56 GMT", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF9A:15CE:D30882:F67052:5D74ACCB" + } + }, + "uuid": "de7260bc-cad0-4eeb-ab76-129228a40fa4", + "persistent": true, + "scenarioName": "scenario-1-repos-github-api-test-org-github-api", + "requiredScenarioState": "Started", + "newScenarioState": "scenario-1-repos-github-api-test-org-github-api-2", + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequestComment/mappings/repos_github-api-test-org_github-api-6-6e0179.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequestComment/mappings/repos_github-api-test-org_github-api-6-6e0179.json new file mode 100644 index 0000000000..c72ce34cc8 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequestComment/mappings/repos_github-api-test-org_github-api-6-6e0179.json @@ -0,0 +1,45 @@ +{ + "id": "6e0179a4-9d47-4435-897a-ca80019c4ee1", + "name": "repos_github-api-test-org_github-api", + "request": { + "url": "/repos/github-api-test-org/github-api", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api-6e0179a4-9d47-4435-897a-ca80019c4ee1.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:25:02 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4844", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"72809813df8fb60cd108f20632d0c629\"", + "Last-Modified": "Sun, 08 Sep 2019 07:24:56 GMT", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF9A:15CE:D309B7:F67195:5D74ACCD" + } + }, + "uuid": "6e0179a4-9d47-4435-897a-ca80019c4ee1", + "persistent": true, + "scenarioName": "scenario-1-repos-github-api-test-org-github-api", + "requiredScenarioState": "scenario-1-repos-github-api-test-org-github-api-2", + "insertionIndex": 6 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequestComment/mappings/repos_github-api-test-org_github-api_issues_270_comments-5-2cd4dd.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequestComment/mappings/repos_github-api-test-org_github-api_issues_270_comments-5-2cd4dd.json new file mode 100644 index 0000000000..411d6a1343 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequestComment/mappings/repos_github-api-test-org_github-api_issues_270_comments-5-2cd4dd.json @@ -0,0 +1,50 @@ +{ + "id": "2cd4dd92-58d7-4423-bbe8-babe22bd36ac", + "name": "repos_github-api-test-org_github-api_issues_270_comments", + "request": { + "url": "/repos/github-api-test-org/github-api/issues/270/comments", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"body\":\"Some comment\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "repos_github-api-test-org_github-api_issues_270_comments-2cd4dd92-58d7-4423-bbe8-babe22bd36ac.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:25:01 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4845", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"ef99935785f5188662f592f8999d1b8a\"", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments/529177612", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF9A:15CE:D30902:F670E9:5D74ACCC" + } + }, + "uuid": "2cd4dd92-58d7-4423-bbe8-babe22bd36ac", + "persistent": true, + "insertionIndex": 5 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequestComment/mappings/repos_github-api-test-org_github-api_pulls-4-4e9dad.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequestComment/mappings/repos_github-api-test-org_github-api_pulls-4-4e9dad.json new file mode 100644 index 0000000000..1f273112d8 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequestComment/mappings/repos_github-api-test-org_github-api_pulls-4-4e9dad.json @@ -0,0 +1,50 @@ +{ + "id": "4e9dadbb-e2ac-410b-9a7e-8731ed5c86cf", + "name": "repos_github-api-test-org_github-api_pulls", + "request": { + "url": "/repos/github-api-test-org/github-api/pulls", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"head\":\"test/stable\",\"maintainer_can_modify\":true,\"title\":\"createPullRequestComment\",\"body\":\"## test\",\"base\":\"master\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "repos_github-api-test-org_github-api_pulls-4e9dadbb-e2ac-410b-9a7e-8731ed5c86cf.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:25:00 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4846", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"cb9585955cc58789f91fe57ed42a9e6a\"", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/github-api-test-org/github-api/pulls/270", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF9A:15CE:D30895:F67066:5D74ACCC" + } + }, + "uuid": "4e9dadbb-e2ac-410b-9a7e-8731ed5c86cf", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequestComment/mappings/repos_github-api-test-org_github-api_pulls-7-420dc2.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequestComment/mappings/repos_github-api-test-org_github-api_pulls-7-420dc2.json new file mode 100644 index 0000000000..98cc98ac24 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequestComment/mappings/repos_github-api-test-org_github-api_pulls-7-420dc2.json @@ -0,0 +1,42 @@ +{ + "id": "420dc28a-cfc8-4fbc-8cef-7123c0387966", + "name": "repos_github-api-test-org_github-api_pulls", + "request": { + "url": "/repos/github-api-test-org/github-api/pulls?state=open", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api_pulls-420dc28a-cfc8-4fbc-8cef-7123c0387966.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:25:02 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4843", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"02871f6e732cc23dc28a7c5b94f35624\"", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF9A:15CE:D309FE:F6720B:5D74ACCE" + } + }, + "uuid": "420dc28a-cfc8-4fbc-8cef-7123c0387966", + "persistent": true, + "insertionIndex": 7 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequestComment/mappings/repos_github-api-test-org_github-api_pulls_270-8-1a6fbb.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequestComment/mappings/repos_github-api-test-org_github-api_pulls_270-8-1a6fbb.json new file mode 100644 index 0000000000..98fb721579 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequestComment/mappings/repos_github-api-test-org_github-api_pulls_270-8-1a6fbb.json @@ -0,0 +1,49 @@ +{ + "id": "1a6fbb20-8969-454a-94be-1e24388e7ed4", + "name": "repos_github-api-test-org_github-api_pulls_270", + "request": { + "url": "/repos/github-api-test-org/github-api/pulls/270", + "method": "PATCH", + "bodyPatterns": [ + { + "equalToJson": "{\"state\":\"closed\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api_pulls_270-1a6fbb20-8969-454a-94be-1e24388e7ed4.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:25:02 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4842", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"2f5b48a63cc3e7bc5f36d46808e9d52d\"", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF9A:15CE:D30A26:F67237:5D74ACCE" + } + }, + "uuid": "1a6fbb20-8969-454a-94be-1e24388e7ed4", + "persistent": true, + "insertionIndex": 8 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequestComment/mappings/user-1-c4d4d6.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequestComment/mappings/user-1-c4d4d6.json new file mode 100644 index 0000000000..7ccf1279ff --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/createPullRequestComment/mappings/user-1-c4d4d6.json @@ -0,0 +1,43 @@ +{ + "id": "c4d4d68f-a141-4fad-a2c9-539e3a21fe94", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-c4d4d68f-a141-4fad-a2c9-539e3a21fe94.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:59 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4849", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"3ba1de3523043df743651bd23efc7def\"", + "Last-Modified": "Mon, 03 Jun 2019 17:47:20 GMT", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF9A:15CE:D3086F:F6703D:5D74ACCB" + } + }, + "uuid": "c4d4d68f-a141-4fad-a2c9-539e3a21fe94", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/__files/orgs_github-api-test-org-9700f9b4-6787-4942-94bd-1e47116da93b.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/__files/orgs_github-api-test-org-9700f9b4-6787-4942-94bd-1e47116da93b.json new file mode 100644 index 0000000000..61547e3d98 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/__files/orgs_github-api-test-org-9700f9b4-6787-4942-94bd-1e47116da93b.json @@ -0,0 +1,41 @@ +{ + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "url": "https://api.github.com/orgs/github-api-test-org", + "repos_url": "https://api.github.com/orgs/github-api-test-org/repos", + "events_url": "https://api.github.com/orgs/github-api-test-org/events", + "hooks_url": "https://api.github.com/orgs/github-api-test-org/hooks", + "issues_url": "https://api.github.com/orgs/github-api-test-org/issues", + "members_url": "https://api.github.com/orgs/github-api-test-org/members{/member}", + "public_members_url": "https://api.github.com/orgs/github-api-test-org/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "description": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 9, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/github-api-test-org", + "created_at": "2014-05-10T19:39:11Z", + "updated_at": "2015-04-20T00:42:30Z", + "type": "Organization", + "total_private_repos": 0, + "owned_private_repos": 0, + "private_gists": 0, + "disk_usage": 132, + "collaborators": 0, + "billing_email": "kk@kohsuke.org", + "default_repository_permission": "none", + "members_can_create_repositories": false, + "two_factor_requirement_enabled": false, + "plan": { + "name": "free", + "space": 976562499, + "private_repos": 0, + "filled_seats": 3, + "seats": 0 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/__files/repos_github-api-test-org_github-api-43e6882d-8843-479b-8da0-0de90a6edc39.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/__files/repos_github-api-test-org_github-api-43e6882d-8843-479b-8da0-0de90a6edc39.json new file mode 100644 index 0000000000..2150dec957 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/__files/repos_github-api-test-org_github-api-43e6882d-8843-479b-8da0-0de90a6edc39.json @@ -0,0 +1,330 @@ +{ + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:28Z", + "pushed_at": "2019-09-08T07:24:30Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "parent": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-07T00:07:16Z", + "pushed_at": "2019-09-07T00:07:14Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 551, + "watchers_count": 551, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 551, + "default_branch": "master" + }, + "source": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-07T00:07:16Z", + "pushed_at": "2019-09-07T00:07:14Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 551, + "watchers_count": 551, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 551, + "default_branch": "master" + }, + "network_count": 427, + "subscribers_count": 0 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/__files/repos_github-api-test-org_github-api-ab230383-b8a2-4e18-848c-31637758036c.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/__files/repos_github-api-test-org_github-api-ab230383-b8a2-4e18-848c-31637758036c.json new file mode 100644 index 0000000000..2150dec957 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/__files/repos_github-api-test-org_github-api-ab230383-b8a2-4e18-848c-31637758036c.json @@ -0,0 +1,330 @@ +{ + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:28Z", + "pushed_at": "2019-09-08T07:24:30Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "parent": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-07T00:07:16Z", + "pushed_at": "2019-09-07T00:07:14Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 551, + "watchers_count": 551, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 551, + "default_branch": "master" + }, + "source": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-07T00:07:16Z", + "pushed_at": "2019-09-07T00:07:14Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 551, + "watchers_count": 551, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 551, + "default_branch": "master" + }, + "network_count": 427, + "subscribers_count": 0 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/__files/repos_github-api-test-org_github-api-c0d68f0b-8041-4a02-902c-e277971f2364.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/__files/repos_github-api-test-org_github-api-c0d68f0b-8041-4a02-902c-e277971f2364.json new file mode 100644 index 0000000000..14e2b3ba59 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/__files/repos_github-api-test-org_github-api-c0d68f0b-8041-4a02-902c-e277971f2364.json @@ -0,0 +1,330 @@ +{ + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:28Z", + "pushed_at": "2019-09-08T07:24:28Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "parent": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-07T00:07:16Z", + "pushed_at": "2019-09-07T00:07:14Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 551, + "watchers_count": 551, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 551, + "default_branch": "master" + }, + "source": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-07T00:07:16Z", + "pushed_at": "2019-09-07T00:07:14Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 551, + "watchers_count": 551, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 551, + "default_branch": "master" + }, + "network_count": 427, + "subscribers_count": 0 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/__files/repos_github-api-test-org_github-api-e79ad56e-9598-45d0-854b-d3b1596e0bf0.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/__files/repos_github-api-test-org_github-api-e79ad56e-9598-45d0-854b-d3b1596e0bf0.json new file mode 100644 index 0000000000..1608a2d7f6 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/__files/repos_github-api-test-org_github-api-e79ad56e-9598-45d0-854b-d3b1596e0bf0.json @@ -0,0 +1,330 @@ +{ + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:28Z", + "pushed_at": "2019-09-08T07:24:28Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "parent": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-07T00:07:16Z", + "pushed_at": "2019-09-07T00:07:14Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 551, + "watchers_count": 551, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 551, + "default_branch": "master" + }, + "source": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-07T00:07:16Z", + "pushed_at": "2019-09-07T00:07:14Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 551, + "watchers_count": 551, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 551, + "default_branch": "master" + }, + "network_count": 427, + "subscribers_count": 0 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/__files/repos_github-api-test-org_github-api_pulls-344c3bf1-68d8-4ed4-8d28-31f06f7ef465.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/__files/repos_github-api-test-org_github-api_pulls-344c3bf1-68d8-4ed4-8d28-31f06f7ef465.json new file mode 100644 index 0000000000..11a9491aa4 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/__files/repos_github-api-test-org_github-api_pulls-344c3bf1-68d8-4ed4-8d28-31f06f7ef465.json @@ -0,0 +1,339 @@ +{ + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/263", + "id": 315252322, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzIy", + "html_url": "https://github.com/github-api-test-org/github-api/pull/263", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/263.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/263.patch", + "issue_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/263", + "number": 263, + "state": "open", + "locked": false, + "title": "getUserTest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "body": "## test", + "created_at": "2019-09-08T07:24:30Z", + "updated_at": "2019-09-08T07:24:30Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/263/commits", + "review_comments_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/263/comments", + "review_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/263/comments", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "head": { + "label": "github-api-test-org:test/stable", + "ref": "test/stable", + "sha": "2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:28Z", + "pushed_at": "2019-09-08T07:24:28Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "github-api-test-org:master", + "ref": "master", + "sha": "912e2176a00e60e02196737e0ae4c218a14b5dcb", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:28Z", + "pushed_at": "2019-09-08T07:24:28Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/263" + }, + "html": { + "href": "https://github.com/github-api-test-org/github-api/pull/263" + }, + "issue": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/263" + }, + "comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/263/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/263/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/263/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/statuses/2d29c787b46ce61b98a1c13e05e21ebc21f49dbf" + } + }, + "author_association": "MEMBER", + "merged": false, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 1, + "deletions": 1, + "changed_files": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/__files/repos_github-api-test-org_github-api_pulls-5f8eb032-94f9-4306-922e-21141d15228b.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/__files/repos_github-api-test-org_github-api_pulls-5f8eb032-94f9-4306-922e-21141d15228b.json new file mode 100644 index 0000000000..711a77dc7b --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/__files/repos_github-api-test-org_github-api_pulls-5f8eb032-94f9-4306-922e-21141d15228b.json @@ -0,0 +1,329 @@ +[ + { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/263", + "id": 315252322, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzIy", + "html_url": "https://github.com/github-api-test-org/github-api/pull/263", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/263.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/263.patch", + "issue_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/263", + "number": 263, + "state": "open", + "locked": false, + "title": "getUserTest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "body": "## test", + "created_at": "2019-09-08T07:24:30Z", + "updated_at": "2019-09-08T07:24:30Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "ecddc31a370337bf1c6d94263669da1504484d4e", + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/263/commits", + "review_comments_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/263/comments", + "review_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/263/comments", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "head": { + "label": "github-api-test-org:test/stable", + "ref": "test/stable", + "sha": "2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:28Z", + "pushed_at": "2019-09-08T07:24:30Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "github-api-test-org:master", + "ref": "master", + "sha": "912e2176a00e60e02196737e0ae4c218a14b5dcb", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:28Z", + "pushed_at": "2019-09-08T07:24:30Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/263" + }, + "html": { + "href": "https://github.com/github-api-test-org/github-api/pull/263" + }, + "issue": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/263" + }, + "comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/263/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/263/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/263/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/statuses/2d29c787b46ce61b98a1c13e05e21ebc21f49dbf" + } + }, + "author_association": "MEMBER" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/__files/repos_github-api-test-org_github-api_pulls-e32f79db-5f0b-4b94-b7ee-540ef61d9fc2.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/__files/repos_github-api-test-org_github-api_pulls-e32f79db-5f0b-4b94-b7ee-540ef61d9fc2.json new file mode 100644 index 0000000000..711a77dc7b --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/__files/repos_github-api-test-org_github-api_pulls-e32f79db-5f0b-4b94-b7ee-540ef61d9fc2.json @@ -0,0 +1,329 @@ +[ + { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/263", + "id": 315252322, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzIy", + "html_url": "https://github.com/github-api-test-org/github-api/pull/263", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/263.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/263.patch", + "issue_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/263", + "number": 263, + "state": "open", + "locked": false, + "title": "getUserTest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "body": "## test", + "created_at": "2019-09-08T07:24:30Z", + "updated_at": "2019-09-08T07:24:30Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "ecddc31a370337bf1c6d94263669da1504484d4e", + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/263/commits", + "review_comments_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/263/comments", + "review_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/263/comments", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "head": { + "label": "github-api-test-org:test/stable", + "ref": "test/stable", + "sha": "2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:28Z", + "pushed_at": "2019-09-08T07:24:30Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "github-api-test-org:master", + "ref": "master", + "sha": "912e2176a00e60e02196737e0ae4c218a14b5dcb", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:28Z", + "pushed_at": "2019-09-08T07:24:30Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/263" + }, + "html": { + "href": "https://github.com/github-api-test-org/github-api/pull/263" + }, + "issue": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/263" + }, + "comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/263/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/263/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/263/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/statuses/2d29c787b46ce61b98a1c13e05e21ebc21f49dbf" + } + }, + "author_association": "MEMBER" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/__files/repos_github-api-test-org_github-api_pulls_263-034f14a1-2ee6-4451-b553-d02da875468e.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/__files/repos_github-api-test-org_github-api_pulls_263-034f14a1-2ee6-4451-b553-d02da875468e.json new file mode 100644 index 0000000000..9f75f44311 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/__files/repos_github-api-test-org_github-api_pulls_263-034f14a1-2ee6-4451-b553-d02da875468e.json @@ -0,0 +1,339 @@ +{ + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/263", + "id": 315252322, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzIy", + "html_url": "https://github.com/github-api-test-org/github-api/pull/263", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/263.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/263.patch", + "issue_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/263", + "number": 263, + "state": "open", + "locked": false, + "title": "getUserTest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "body": "## test", + "created_at": "2019-09-08T07:24:30Z", + "updated_at": "2019-09-08T07:24:30Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/263/commits", + "review_comments_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/263/comments", + "review_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/263/comments", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "head": { + "label": "github-api-test-org:test/stable", + "ref": "test/stable", + "sha": "2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:28Z", + "pushed_at": "2019-09-08T07:24:30Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "github-api-test-org:master", + "ref": "master", + "sha": "912e2176a00e60e02196737e0ae4c218a14b5dcb", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:28Z", + "pushed_at": "2019-09-08T07:24:30Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/263" + }, + "html": { + "href": "https://github.com/github-api-test-org/github-api/pull/263" + }, + "issue": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/263" + }, + "comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/263/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/263/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/263/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/statuses/2d29c787b46ce61b98a1c13e05e21ebc21f49dbf" + } + }, + "author_association": "MEMBER", + "merged": false, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 1, + "deletions": 1, + "changed_files": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/__files/repos_github-api-test-org_github-api_pulls_263-efb36413-ff3e-4b8b-af82-e5fe336051e8.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/__files/repos_github-api-test-org_github-api_pulls_263-efb36413-ff3e-4b8b-af82-e5fe336051e8.json new file mode 100644 index 0000000000..96ef8c3315 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/__files/repos_github-api-test-org_github-api_pulls_263-efb36413-ff3e-4b8b-af82-e5fe336051e8.json @@ -0,0 +1,339 @@ +{ + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/263", + "id": 315252322, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzIy", + "html_url": "https://github.com/github-api-test-org/github-api/pull/263", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/263.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/263.patch", + "issue_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/263", + "number": 263, + "state": "closed", + "locked": false, + "title": "getUserTest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "body": "## test", + "created_at": "2019-09-08T07:24:30Z", + "updated_at": "2019-09-08T07:24:33Z", + "closed_at": "2019-09-08T07:24:33Z", + "merged_at": null, + "merge_commit_sha": "ecddc31a370337bf1c6d94263669da1504484d4e", + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/263/commits", + "review_comments_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/263/comments", + "review_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/263/comments", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "head": { + "label": "github-api-test-org:test/stable", + "ref": "test/stable", + "sha": "2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:28Z", + "pushed_at": "2019-09-08T07:24:30Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "github-api-test-org:master", + "ref": "master", + "sha": "912e2176a00e60e02196737e0ae4c218a14b5dcb", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:28Z", + "pushed_at": "2019-09-08T07:24:30Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/263" + }, + "html": { + "href": "https://github.com/github-api-test-org/github-api/pull/263" + }, + "issue": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/263" + }, + "comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/263/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/263/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/263/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/statuses/2d29c787b46ce61b98a1c13e05e21ebc21f49dbf" + } + }, + "author_association": "MEMBER", + "merged": false, + "mergeable": true, + "rebaseable": true, + "mergeable_state": "clean", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 1, + "deletions": 1, + "changed_files": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/__files/user-07979842-29a1-401d-be2b-0c5847525fc3.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/__files/user-07979842-29a1-401d-be2b-0c5847525fc3.json new file mode 100644 index 0000000000..b9ce24cb03 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/__files/user-07979842-29a1-401d-be2b-0c5847525fc3.json @@ -0,0 +1,33 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 166, + "public_gists": 4, + "followers": 133, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-06-03T17:47:20Z" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/mappings/orgs_github-api-test-org-2-9700f9.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/mappings/orgs_github-api-test-org-2-9700f9.json new file mode 100644 index 0000000000..477c71a1c4 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/mappings/orgs_github-api-test-org-2-9700f9.json @@ -0,0 +1,43 @@ +{ + "id": "9700f9b4-6787-4942-94bd-1e47116da93b", + "name": "orgs_github-api-test-org", + "request": { + "url": "/orgs/github-api-test-org", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_github-api-test-org-9700f9b4-6787-4942-94bd-1e47116da93b.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:29 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4921", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"d36965e157281b2a309c39e4c2343a55\"", + "Last-Modified": "Mon, 20 Apr 2015 00:42:30 GMT", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF84:9A32:9E9D7C:BB5993:5D74ACAD" + } + }, + "uuid": "9700f9b4-6787-4942-94bd-1e47116da93b", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/mappings/repos_github-api-test-org_github-api-3-c0d68f.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/mappings/repos_github-api-test-org_github-api-3-c0d68f.json new file mode 100644 index 0000000000..d8037c3ce9 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/mappings/repos_github-api-test-org_github-api-3-c0d68f.json @@ -0,0 +1,46 @@ +{ + "id": "c0d68f0b-8041-4a02-902c-e277971f2364", + "name": "repos_github-api-test-org_github-api", + "request": { + "url": "/repos/github-api-test-org/github-api", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api-c0d68f0b-8041-4a02-902c-e277971f2364.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:29 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4920", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"13a1a11862cbe1a1cb1a31c2ab3af9be\"", + "Last-Modified": "Sun, 08 Sep 2019 07:24:28 GMT", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF84:9A32:9E9D8A:BB59A4:5D74ACAD" + } + }, + "uuid": "c0d68f0b-8041-4a02-902c-e277971f2364", + "persistent": true, + "scenarioName": "scenario-1-repos-github-api-test-org-github-api", + "requiredScenarioState": "Started", + "newScenarioState": "scenario-1-repos-github-api-test-org-github-api-2", + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/mappings/repos_github-api-test-org_github-api-5-e79ad5.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/mappings/repos_github-api-test-org_github-api-5-e79ad5.json new file mode 100644 index 0000000000..b33e5ef6e1 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/mappings/repos_github-api-test-org_github-api-5-e79ad5.json @@ -0,0 +1,46 @@ +{ + "id": "e79ad56e-9598-45d0-854b-d3b1596e0bf0", + "name": "repos_github-api-test-org_github-api", + "request": { + "url": "/repos/github-api-test-org/github-api", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api-e79ad56e-9598-45d0-854b-d3b1596e0bf0.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:30 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4918", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"a0fc415e3a03487befd847db032ba7b0\"", + "Last-Modified": "Sun, 08 Sep 2019 07:24:28 GMT", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF84:9A32:9E9DDD:BB59FC:5D74ACAE" + } + }, + "uuid": "e79ad56e-9598-45d0-854b-d3b1596e0bf0", + "persistent": true, + "scenarioName": "scenario-1-repos-github-api-test-org-github-api", + "requiredScenarioState": "scenario-1-repos-github-api-test-org-github-api-2", + "newScenarioState": "scenario-1-repos-github-api-test-org-github-api-3", + "insertionIndex": 5 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/mappings/repos_github-api-test-org_github-api-7-43e688.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/mappings/repos_github-api-test-org_github-api-7-43e688.json new file mode 100644 index 0000000000..ffaaf6dfed --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/mappings/repos_github-api-test-org_github-api-7-43e688.json @@ -0,0 +1,46 @@ +{ + "id": "43e6882d-8843-479b-8da0-0de90a6edc39", + "name": "repos_github-api-test-org_github-api", + "request": { + "url": "/repos/github-api-test-org/github-api", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api-43e6882d-8843-479b-8da0-0de90a6edc39.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:31 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4915", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"a9119a5f5499b471a95c911f2727452f\"", + "Last-Modified": "Sun, 08 Sep 2019 07:24:28 GMT", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF84:9A32:9E9E34:BB5A3C:5D74ACAF" + } + }, + "uuid": "43e6882d-8843-479b-8da0-0de90a6edc39", + "persistent": true, + "scenarioName": "scenario-1-repos-github-api-test-org-github-api", + "requiredScenarioState": "scenario-1-repos-github-api-test-org-github-api-3", + "newScenarioState": "scenario-1-repos-github-api-test-org-github-api-4", + "insertionIndex": 7 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/mappings/repos_github-api-test-org_github-api-9-ab2303.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/mappings/repos_github-api-test-org_github-api-9-ab2303.json new file mode 100644 index 0000000000..05cba6cbb4 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/mappings/repos_github-api-test-org_github-api-9-ab2303.json @@ -0,0 +1,45 @@ +{ + "id": "ab230383-b8a2-4e18-848c-31637758036c", + "name": "repos_github-api-test-org_github-api", + "request": { + "url": "/repos/github-api-test-org/github-api", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api-ab230383-b8a2-4e18-848c-31637758036c.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:32 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4912", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"a9119a5f5499b471a95c911f2727452f\"", + "Last-Modified": "Sun, 08 Sep 2019 07:24:28 GMT", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF84:9A32:9E9E6E:BB5A9F:5D74ACB0" + } + }, + "uuid": "ab230383-b8a2-4e18-848c-31637758036c", + "persistent": true, + "scenarioName": "scenario-1-repos-github-api-test-org-github-api", + "requiredScenarioState": "scenario-1-repos-github-api-test-org-github-api-4", + "insertionIndex": 9 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/mappings/repos_github-api-test-org_github-api_pulls-10-5f8eb0.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/mappings/repos_github-api-test-org_github-api_pulls-10-5f8eb0.json new file mode 100644 index 0000000000..1523990304 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/mappings/repos_github-api-test-org_github-api_pulls-10-5f8eb0.json @@ -0,0 +1,44 @@ +{ + "id": "5f8eb032-94f9-4306-922e-21141d15228b", + "name": "repos_github-api-test-org_github-api_pulls", + "request": { + "url": "/repos/github-api-test-org/github-api/pulls?state=open", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api_pulls-5f8eb032-94f9-4306-922e-21141d15228b.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:32 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4911", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"ae049259cbd6beea8bb740e966c52803\"", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF84:9A32:9E9E7E:BB5AC0:5D74ACB0" + } + }, + "uuid": "5f8eb032-94f9-4306-922e-21141d15228b", + "persistent": true, + "scenarioName": "scenario-2-repos-github-api-test-org-github-api-pulls", + "requiredScenarioState": "scenario-2-repos-github-api-test-org-github-api-pulls-2", + "insertionIndex": 10 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/mappings/repos_github-api-test-org_github-api_pulls-4-344c3b.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/mappings/repos_github-api-test-org_github-api_pulls-4-344c3b.json new file mode 100644 index 0000000000..bd8454f57c --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/mappings/repos_github-api-test-org_github-api_pulls-4-344c3b.json @@ -0,0 +1,50 @@ +{ + "id": "344c3bf1-68d8-4ed4-8d28-31f06f7ef465", + "name": "repos_github-api-test-org_github-api_pulls", + "request": { + "url": "/repos/github-api-test-org/github-api/pulls", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"head\":\"test/stable\",\"maintainer_can_modify\":true,\"title\":\"getUserTest\",\"body\":\"## test\",\"base\":\"master\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "repos_github-api-test-org_github-api_pulls-344c3bf1-68d8-4ed4-8d28-31f06f7ef465.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:30 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4919", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"d655d1d53611f46e0047b8bf06c075c5\"", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/github-api-test-org/github-api/pulls/263", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF84:9A32:9E9D97:BB59B5:5D74ACAD" + } + }, + "uuid": "344c3bf1-68d8-4ed4-8d28-31f06f7ef465", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/mappings/repos_github-api-test-org_github-api_pulls-8-e32f79.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/mappings/repos_github-api-test-org_github-api_pulls-8-e32f79.json new file mode 100644 index 0000000000..5fad1d493c --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/mappings/repos_github-api-test-org_github-api_pulls-8-e32f79.json @@ -0,0 +1,45 @@ +{ + "id": "e32f79db-5f0b-4b94-b7ee-540ef61d9fc2", + "name": "repos_github-api-test-org_github-api_pulls", + "request": { + "url": "/repos/github-api-test-org/github-api/pulls?state=open", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api_pulls-e32f79db-5f0b-4b94-b7ee-540ef61d9fc2.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:32 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4914", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"ae049259cbd6beea8bb740e966c52803\"", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF84:9A32:9E9E56:BB5A83:5D74ACAF" + } + }, + "uuid": "e32f79db-5f0b-4b94-b7ee-540ef61d9fc2", + "persistent": true, + "scenarioName": "scenario-2-repos-github-api-test-org-github-api-pulls", + "requiredScenarioState": "Started", + "newScenarioState": "scenario-2-repos-github-api-test-org-github-api-pulls-2", + "insertionIndex": 8 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/mappings/repos_github-api-test-org_github-api_pulls_263-11-efb364.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/mappings/repos_github-api-test-org_github-api_pulls_263-11-efb364.json new file mode 100644 index 0000000000..b1458590f0 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/mappings/repos_github-api-test-org_github-api_pulls_263-11-efb364.json @@ -0,0 +1,49 @@ +{ + "id": "efb36413-ff3e-4b8b-af82-e5fe336051e8", + "name": "repos_github-api-test-org_github-api_pulls_263", + "request": { + "url": "/repos/github-api-test-org/github-api/pulls/263", + "method": "PATCH", + "bodyPatterns": [ + { + "equalToJson": "{\"state\":\"closed\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api_pulls_263-efb36413-ff3e-4b8b-af82-e5fe336051e8.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:33 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4910", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"f2daf1c39b599ee1902c088c320fdd61\"", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF84:9A32:9E9E98:BB5AD8:5D74ACB0" + } + }, + "uuid": "efb36413-ff3e-4b8b-af82-e5fe336051e8", + "persistent": true, + "insertionIndex": 11 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/mappings/repos_github-api-test-org_github-api_pulls_263-6-034f14.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/mappings/repos_github-api-test-org_github-api_pulls_263-6-034f14.json new file mode 100644 index 0000000000..4b0aa142ea --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/mappings/repos_github-api-test-org_github-api_pulls_263-6-034f14.json @@ -0,0 +1,43 @@ +{ + "id": "034f14a1-2ee6-4451-b553-d02da875468e", + "name": "repos_github-api-test-org_github-api_pulls_263", + "request": { + "url": "/repos/github-api-test-org/github-api/pulls/263", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api_pulls_263-034f14a1-2ee6-4451-b553-d02da875468e.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:31 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4917", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"4c8aaa43a928ad60788c6298a0cf826a\"", + "Last-Modified": "Sun, 08 Sep 2019 07:24:30 GMT", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF84:9A32:9E9DFA:BB5A1D:5D74ACAE" + } + }, + "uuid": "034f14a1-2ee6-4451-b553-d02da875468e", + "persistent": true, + "insertionIndex": 6 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/mappings/user-1-079798.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/mappings/user-1-079798.json new file mode 100644 index 0000000000..2bd69913a3 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/getUserTest/mappings/user-1-079798.json @@ -0,0 +1,43 @@ +{ + "id": "07979842-29a1-401d-be2b-0c5847525fc3", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-07979842-29a1-401d-be2b-0c5847525fc3.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:29 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4922", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"3ba1de3523043df743651bd23efc7def\"", + "Last-Modified": "Mon, 03 Jun 2019 17:47:20 GMT", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF84:9A32:9E9D71:BB5986:5D74ACAD" + } + }, + "uuid": "07979842-29a1-401d-be2b-0c5847525fc3", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/mergeCommitSHA/__files/orgs_github-api-test-org-e3ff360d-d2e8-48a3-aaa4-38a5acd11580.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/mergeCommitSHA/__files/orgs_github-api-test-org-e3ff360d-d2e8-48a3-aaa4-38a5acd11580.json new file mode 100644 index 0000000000..6a1869b899 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/mergeCommitSHA/__files/orgs_github-api-test-org-e3ff360d-d2e8-48a3-aaa4-38a5acd11580.json @@ -0,0 +1,41 @@ +{ + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "url": "https://api.github.com/orgs/github-api-test-org", + "repos_url": "https://api.github.com/orgs/github-api-test-org/repos", + "events_url": "https://api.github.com/orgs/github-api-test-org/events", + "hooks_url": "https://api.github.com/orgs/github-api-test-org/hooks", + "issues_url": "https://api.github.com/orgs/github-api-test-org/issues", + "members_url": "https://api.github.com/orgs/github-api-test-org/members{/member}", + "public_members_url": "https://api.github.com/orgs/github-api-test-org/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "description": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 10, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/github-api-test-org", + "created_at": "2014-05-10T19:39:11Z", + "updated_at": "2015-04-20T00:42:30Z", + "type": "Organization", + "total_private_repos": 0, + "owned_private_repos": 0, + "private_gists": 0, + "disk_usage": 132, + "collaborators": 0, + "billing_email": "kk@kohsuke.org", + "default_repository_permission": "none", + "members_can_create_repositories": false, + "two_factor_requirement_enabled": false, + "plan": { + "name": "free", + "space": 976562499, + "private_repos": 0, + "filled_seats": 5, + "seats": 0 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/mergeCommitSHA/__files/repos_github-api-test-org_github-api-7a223c60-fbe1-4ed6-b30d-617b9ca84e8e.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/mergeCommitSHA/__files/repos_github-api-test-org_github-api-7a223c60-fbe1-4ed6-b30d-617b9ca84e8e.json new file mode 100644 index 0000000000..6df07c5a99 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/mergeCommitSHA/__files/repos_github-api-test-org_github-api-7a223c60-fbe1-4ed6-b30d-617b9ca84e8e.json @@ -0,0 +1,330 @@ +{ + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Tricky", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-30T22:36:47Z", + "pushed_at": "2019-10-05T21:06:15Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11391, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "parent": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-10-05T15:04:16Z", + "pushed_at": "2019-10-05T13:19:54Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 12841, + "stargazers_count": 558, + "watchers_count": 558, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 429, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 82, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 429, + "open_issues": 82, + "watchers": 558, + "default_branch": "master" + }, + "source": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-10-05T15:04:16Z", + "pushed_at": "2019-10-05T13:19:54Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 12841, + "stargazers_count": 558, + "watchers_count": 558, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 429, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 82, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 429, + "open_issues": 82, + "watchers": 558, + "default_branch": "master" + }, + "network_count": 429, + "subscribers_count": 0 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/mergeCommitSHA/__files/repos_github-api-test-org_github-api_commits_48eb1a9b8cd56782d11ea45adcf062eade17528e-59cc8825-ac31-418a-b4ae-47fd733fd3e1.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/mergeCommitSHA/__files/repos_github-api-test-org_github-api_commits_48eb1a9b8cd56782d11ea45adcf062eade17528e-59cc8825-ac31-418a-b4ae-47fd733fd3e1.json new file mode 100644 index 0000000000..82387e9669 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/mergeCommitSHA/__files/repos_github-api-test-org_github-api_commits_48eb1a9b8cd56782d11ea45adcf062eade17528e-59cc8825-ac31-418a-b4ae-47fd733fd3e1.json @@ -0,0 +1,103 @@ +{ + "sha": "48eb1a9b8cd56782d11ea45adcf062eade17528e", + "node_id": "MDY6Q29tbWl0MjA2ODg4MjAxOjQ4ZWIxYTliOGNkNTY3ODJkMTFlYTQ1YWRjZjA2MmVhZGUxNzUyOGU=", + "commit": { + "author": { + "name": "Liam Newman", + "email": "bitwiseman@gmail.com", + "date": "2019-10-05T21:11:41Z" + }, + "committer": { + "name": "GitHub", + "email": "noreply@github.com", + "date": "2019-10-05T21:11:41Z" + }, + "message": "Merge b036909fcf45565c82c888ee326ebd0e382f6173 into 3a09d2de4a9a1322a0ba2c3e2f54a919ca8fe353", + "tree": { + "sha": "3abf688e5c9e7c888f28a1672cd59a59cf414159", + "url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees/3abf688e5c9e7c888f28a1672cd59a59cf414159" + }, + "url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits/48eb1a9b8cd56782d11ea45adcf062eade17528e", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsBcBAABCAAQBQJdmQcNCRBK7hj4Ov3rIwAAdHIIAEOQH/mfMnhJReTmpOTLdyB3\nD0LBkuzbiZybP1TAtYFbRJRU9KspRFm/VxbClq2DkL5RJQ0aR64xDbG3bCyoPCYJ\nNMgaB7D569+EJldQyG1HRY8FUMw4JEXQ9Vu8z9R7qD95cOk0IvKx7VzZmUM1LNmJ\nUhMz+bcMVSyAkd5YgAjNhnlFF5WIvLISALOyuh7ollKkQWIbA61mK9CDF1BRJxk8\nwrgSineedyTrxptbZ0MkdoFRsOftTL4zYECcUPP4gfnSS8ZzKb4t7o5qKMEs9Uo3\nUGr0Lz/gT5lgvRLMfNJJBXOCPLpT+32RtlvS3EehJkkiPlAzgfjd91YHIuvOELQ=\n=RNmv\n-----END PGP SIGNATURE-----\n", + "payload": "tree 3abf688e5c9e7c888f28a1672cd59a59cf414159\nparent 3a09d2de4a9a1322a0ba2c3e2f54a919ca8fe353\nparent b036909fcf45565c82c888ee326ebd0e382f6173\nauthor Liam Newman 1570309901 +0000\ncommitter GitHub 1570309901 +0000\n\nMerge b036909fcf45565c82c888ee326ebd0e382f6173 into 3a09d2de4a9a1322a0ba2c3e2f54a919ca8fe353\n" + } + }, + "url": "https://api.github.com/repos/github-api-test-org/github-api/commits/48eb1a9b8cd56782d11ea45adcf062eade17528e", + "html_url": "https://github.com/github-api-test-org/github-api/commit/48eb1a9b8cd56782d11ea45adcf062eade17528e", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/48eb1a9b8cd56782d11ea45adcf062eade17528e/comments", + "author": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "web-flow", + "id": 19864447, + "node_id": "MDQ6VXNlcjE5ODY0NDQ3", + "avatar_url": "https://avatars3.githubusercontent.com/u/19864447?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/web-flow", + "html_url": "https://github.com/web-flow", + "followers_url": "https://api.github.com/users/web-flow/followers", + "following_url": "https://api.github.com/users/web-flow/following{/other_user}", + "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions", + "organizations_url": "https://api.github.com/users/web-flow/orgs", + "repos_url": "https://api.github.com/users/web-flow/repos", + "events_url": "https://api.github.com/users/web-flow/events{/privacy}", + "received_events_url": "https://api.github.com/users/web-flow/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "3a09d2de4a9a1322a0ba2c3e2f54a919ca8fe353", + "url": "https://api.github.com/repos/github-api-test-org/github-api/commits/3a09d2de4a9a1322a0ba2c3e2f54a919ca8fe353", + "html_url": "https://github.com/github-api-test-org/github-api/commit/3a09d2de4a9a1322a0ba2c3e2f54a919ca8fe353" + }, + { + "sha": "b036909fcf45565c82c888ee326ebd0e382f6173", + "url": "https://api.github.com/repos/github-api-test-org/github-api/commits/b036909fcf45565c82c888ee326ebd0e382f6173", + "html_url": "https://github.com/github-api-test-org/github-api/commit/b036909fcf45565c82c888ee326ebd0e382f6173" + } + ], + "stats": { + "total": 4, + "additions": 4, + "deletions": 0 + }, + "files": [ + { + "sha": "4ef1269926a3fc469d53e0e89528ddc5d1b448eb", + "filename": "README.md", + "status": "modified", + "additions": 4, + "deletions": 0, + "changes": 4, + "blob_url": "https://github.com/github-api-test-org/github-api/blob/48eb1a9b8cd56782d11ea45adcf062eade17528e/README.md", + "raw_url": "https://github.com/github-api-test-org/github-api/raw/48eb1a9b8cd56782d11ea45adcf062eade17528e/README.md", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/README.md?ref=48eb1a9b8cd56782d11ea45adcf062eade17528e", + "patch": "@@ -1,3 +1,7 @@\n Java API for GitHub\n \n See https://github-api.kohsuke.org/ for more details\n+\n+# No conflict\n+\n+Mergeable_branch\n\\ No newline at end of file" + } + ] +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/mergeCommitSHA/__files/repos_github-api-test-org_github-api_pulls-361c15b4-b52d-4da7-a810-bfabf94e819a.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/mergeCommitSHA/__files/repos_github-api-test-org_github-api_pulls-361c15b4-b52d-4da7-a810-bfabf94e819a.json new file mode 100644 index 0000000000..9f08c34c0e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/mergeCommitSHA/__files/repos_github-api-test-org_github-api_pulls-361c15b4-b52d-4da7-a810-bfabf94e819a.json @@ -0,0 +1,339 @@ +{ + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/309", + "id": 324976764, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzI0OTc2NzY0", + "html_url": "https://github.com/github-api-test-org/github-api/pull/309", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/309.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/309.patch", + "issue_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/309", + "number": 309, + "state": "open", + "locked": false, + "title": "mergeCommitSHA", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "body": "## test", + "created_at": "2019-10-05T21:11:40Z", + "updated_at": "2019-10-05T21:11:40Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/309/commits", + "review_comments_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/309/comments", + "review_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/309/comments", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/b036909fcf45565c82c888ee326ebd0e382f6173", + "head": { + "label": "github-api-test-org:test/mergeable_branch", + "ref": "test/mergeable_branch", + "sha": "b036909fcf45565c82c888ee326ebd0e382f6173", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Tricky", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-30T22:36:47Z", + "pushed_at": "2019-10-05T21:06:15Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11391, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "github-api-test-org:master", + "ref": "master", + "sha": "3a09d2de4a9a1322a0ba2c3e2f54a919ca8fe353", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Tricky", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-30T22:36:47Z", + "pushed_at": "2019-10-05T21:06:15Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11391, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/309" + }, + "html": { + "href": "https://github.com/github-api-test-org/github-api/pull/309" + }, + "issue": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/309" + }, + "comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/309/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/309/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/309/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/statuses/b036909fcf45565c82c888ee326ebd0e382f6173" + } + }, + "author_association": "MEMBER", + "merged": false, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 4, + "deletions": 0, + "changed_files": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/mergeCommitSHA/__files/repos_github-api-test-org_github-api_pulls_309-1566b3f6-560a-4c1c-a6cd-bdaa25774c7a.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/mergeCommitSHA/__files/repos_github-api-test-org_github-api_pulls_309-1566b3f6-560a-4c1c-a6cd-bdaa25774c7a.json new file mode 100644 index 0000000000..9f08c34c0e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/mergeCommitSHA/__files/repos_github-api-test-org_github-api_pulls_309-1566b3f6-560a-4c1c-a6cd-bdaa25774c7a.json @@ -0,0 +1,339 @@ +{ + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/309", + "id": 324976764, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzI0OTc2NzY0", + "html_url": "https://github.com/github-api-test-org/github-api/pull/309", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/309.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/309.patch", + "issue_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/309", + "number": 309, + "state": "open", + "locked": false, + "title": "mergeCommitSHA", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "body": "## test", + "created_at": "2019-10-05T21:11:40Z", + "updated_at": "2019-10-05T21:11:40Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/309/commits", + "review_comments_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/309/comments", + "review_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/309/comments", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/b036909fcf45565c82c888ee326ebd0e382f6173", + "head": { + "label": "github-api-test-org:test/mergeable_branch", + "ref": "test/mergeable_branch", + "sha": "b036909fcf45565c82c888ee326ebd0e382f6173", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Tricky", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-30T22:36:47Z", + "pushed_at": "2019-10-05T21:06:15Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11391, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "github-api-test-org:master", + "ref": "master", + "sha": "3a09d2de4a9a1322a0ba2c3e2f54a919ca8fe353", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Tricky", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-30T22:36:47Z", + "pushed_at": "2019-10-05T21:06:15Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11391, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/309" + }, + "html": { + "href": "https://github.com/github-api-test-org/github-api/pull/309" + }, + "issue": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/309" + }, + "comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/309/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/309/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/309/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/statuses/b036909fcf45565c82c888ee326ebd0e382f6173" + } + }, + "author_association": "MEMBER", + "merged": false, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 4, + "deletions": 0, + "changed_files": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/mergeCommitSHA/__files/repos_github-api-test-org_github-api_pulls_309-97966102-337f-4c57-8b20-ba00a3769317.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/mergeCommitSHA/__files/repos_github-api-test-org_github-api_pulls_309-97966102-337f-4c57-8b20-ba00a3769317.json new file mode 100644 index 0000000000..fa091346e1 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/mergeCommitSHA/__files/repos_github-api-test-org_github-api_pulls_309-97966102-337f-4c57-8b20-ba00a3769317.json @@ -0,0 +1,339 @@ +{ + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/309", + "id": 324976764, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzI0OTc2NzY0", + "html_url": "https://github.com/github-api-test-org/github-api/pull/309", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/309.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/309.patch", + "issue_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/309", + "number": 309, + "state": "open", + "locked": false, + "title": "mergeCommitSHA", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "body": "## test", + "created_at": "2019-10-05T21:11:40Z", + "updated_at": "2019-10-05T21:11:40Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "48eb1a9b8cd56782d11ea45adcf062eade17528e", + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/309/commits", + "review_comments_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/309/comments", + "review_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/309/comments", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/b036909fcf45565c82c888ee326ebd0e382f6173", + "head": { + "label": "github-api-test-org:test/mergeable_branch", + "ref": "test/mergeable_branch", + "sha": "b036909fcf45565c82c888ee326ebd0e382f6173", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Tricky", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-30T22:36:47Z", + "pushed_at": "2019-10-05T21:11:41Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11391, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "github-api-test-org:master", + "ref": "master", + "sha": "3a09d2de4a9a1322a0ba2c3e2f54a919ca8fe353", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Tricky", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-30T22:36:47Z", + "pushed_at": "2019-10-05T21:11:41Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11391, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/309" + }, + "html": { + "href": "https://github.com/github-api-test-org/github-api/pull/309" + }, + "issue": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/309" + }, + "comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/309/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/309/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/309/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/statuses/b036909fcf45565c82c888ee326ebd0e382f6173" + } + }, + "author_association": "MEMBER", + "merged": false, + "mergeable": true, + "rebaseable": true, + "mergeable_state": "clean", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 4, + "deletions": 0, + "changed_files": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/mergeCommitSHA/__files/repos_github-api-test-org_github-api_pulls_309-c8fd7b5e-b5f3-4179-bb56-1f2b150f248d.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/mergeCommitSHA/__files/repos_github-api-test-org_github-api_pulls_309-c8fd7b5e-b5f3-4179-bb56-1f2b150f248d.json new file mode 100644 index 0000000000..6c57e102cd --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/mergeCommitSHA/__files/repos_github-api-test-org_github-api_pulls_309-c8fd7b5e-b5f3-4179-bb56-1f2b150f248d.json @@ -0,0 +1,339 @@ +{ + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/309", + "id": 324976764, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzI0OTc2NzY0", + "html_url": "https://github.com/github-api-test-org/github-api/pull/309", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/309.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/309.patch", + "issue_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/309", + "number": 309, + "state": "open", + "locked": false, + "title": "mergeCommitSHA", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "body": "## test", + "created_at": "2019-10-05T21:11:40Z", + "updated_at": "2019-10-05T21:11:40Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/309/commits", + "review_comments_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/309/comments", + "review_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/309/comments", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/b036909fcf45565c82c888ee326ebd0e382f6173", + "head": { + "label": "github-api-test-org:test/mergeable_branch", + "ref": "test/mergeable_branch", + "sha": "b036909fcf45565c82c888ee326ebd0e382f6173", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Tricky", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-30T22:36:47Z", + "pushed_at": "2019-10-05T21:11:41Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11391, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "github-api-test-org:master", + "ref": "master", + "sha": "3a09d2de4a9a1322a0ba2c3e2f54a919ca8fe353", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Tricky", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-30T22:36:47Z", + "pushed_at": "2019-10-05T21:11:41Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11391, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/309" + }, + "html": { + "href": "https://github.com/github-api-test-org/github-api/pull/309" + }, + "issue": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/309" + }, + "comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/309/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/309/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/309/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/statuses/b036909fcf45565c82c888ee326ebd0e382f6173" + } + }, + "author_association": "MEMBER", + "merged": false, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 4, + "deletions": 0, + "changed_files": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/mergeCommitSHA/__files/user-c2903fd5-9175-47e3-b48e-c86bcc461b58.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/mergeCommitSHA/__files/user-c2903fd5-9175-47e3-b48e-c86bcc461b58.json new file mode 100644 index 0000000000..41fc9e3d00 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/mergeCommitSHA/__files/user-c2903fd5-9175-47e3-b48e-c86bcc461b58.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 168, + "public_gists": 4, + "followers": 136, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/mergeCommitSHA/mappings/orgs_github-api-test-org-2-e3ff36.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/mergeCommitSHA/mappings/orgs_github-api-test-org-2-e3ff36.json new file mode 100644 index 0000000000..3524f27882 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/mergeCommitSHA/mappings/orgs_github-api-test-org-2-e3ff36.json @@ -0,0 +1,43 @@ +{ + "id": "e3ff360d-d2e8-48a3-aaa4-38a5acd11580", + "name": "orgs_github-api-test-org", + "request": { + "url": "/orgs/github-api-test-org", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_github-api-test-org-e3ff360d-d2e8-48a3-aaa4-38a5acd11580.json", + "headers": { + "Date": "Sat, 05 Oct 2019 21:11:38 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4894", + "X-RateLimit-Reset": "1570311642", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"511c83f13dd1d0697f68879f1a183f6f\"", + "Last-Modified": "Mon, 20 Apr 2015 00:42:30 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "E2BB:2CE6:D397A1:FC6B78:5D990709" + } + }, + "uuid": "e3ff360d-d2e8-48a3-aaa4-38a5acd11580", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/mergeCommitSHA/mappings/repos_github-api-test-org_github-api-3-7a223c.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/mergeCommitSHA/mappings/repos_github-api-test-org_github-api-3-7a223c.json new file mode 100644 index 0000000000..b1dbdcd105 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/mergeCommitSHA/mappings/repos_github-api-test-org_github-api-3-7a223c.json @@ -0,0 +1,43 @@ +{ + "id": "7a223c60-fbe1-4ed6-b30d-617b9ca84e8e", + "name": "repos_github-api-test-org_github-api", + "request": { + "url": "/repos/github-api-test-org/github-api", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api-7a223c60-fbe1-4ed6-b30d-617b9ca84e8e.json", + "headers": { + "Date": "Sat, 05 Oct 2019 21:11:39 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4893", + "X-RateLimit-Reset": "1570311642", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"be90246cc993b01cbcfdf5cf4455dd5e\"", + "Last-Modified": "Mon, 30 Sep 2019 22:36:47 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "E2BB:2CE6:D397A5:FC6BA6:5D99070A" + } + }, + "uuid": "7a223c60-fbe1-4ed6-b30d-617b9ca84e8e", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/mergeCommitSHA/mappings/repos_github-api-test-org_github-api_commits_48eb1a9b8cd56782d11ea45adcf062eade17528e-8-59cc88.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/mergeCommitSHA/mappings/repos_github-api-test-org_github-api_commits_48eb1a9b8cd56782d11ea45adcf062eade17528e-8-59cc88.json new file mode 100644 index 0000000000..0b4ca6e033 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/mergeCommitSHA/mappings/repos_github-api-test-org_github-api_commits_48eb1a9b8cd56782d11ea45adcf062eade17528e-8-59cc88.json @@ -0,0 +1,43 @@ +{ + "id": "59cc8825-ac31-418a-b4ae-47fd733fd3e1", + "name": "repos_github-api-test-org_github-api_commits_48eb1a9b8cd56782d11ea45adcf062eade17528e", + "request": { + "url": "/repos/github-api-test-org/github-api/commits/48eb1a9b8cd56782d11ea45adcf062eade17528e", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api_commits_48eb1a9b8cd56782d11ea45adcf062eade17528e-59cc8825-ac31-418a-b4ae-47fd733fd3e1.json", + "headers": { + "Date": "Sat, 05 Oct 2019 21:11:43 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4888", + "X-RateLimit-Reset": "1570311642", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"857c6e4332bf6ace84e0f8c8eca1f234\"", + "Last-Modified": "Sat, 05 Oct 2019 21:11:41 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "E2BB:2CE6:D3984D:FC6C67:5D99070F" + } + }, + "uuid": "59cc8825-ac31-418a-b4ae-47fd733fd3e1", + "persistent": true, + "insertionIndex": 8 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/mergeCommitSHA/mappings/repos_github-api-test-org_github-api_pulls-4-361c15.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/mergeCommitSHA/mappings/repos_github-api-test-org_github-api_pulls-4-361c15.json new file mode 100644 index 0000000000..b20226758c --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/mergeCommitSHA/mappings/repos_github-api-test-org_github-api_pulls-4-361c15.json @@ -0,0 +1,50 @@ +{ + "id": "361c15b4-b52d-4da7-a810-bfabf94e819a", + "name": "repos_github-api-test-org_github-api_pulls", + "request": { + "url": "/repos/github-api-test-org/github-api/pulls", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"head\":\"test/mergeable_branch\",\"maintainer_can_modify\":true,\"title\":\"mergeCommitSHA\",\"body\":\"## test\",\"base\":\"master\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "repos_github-api-test-org_github-api_pulls-361c15b4-b52d-4da7-a810-bfabf94e819a.json", + "headers": { + "Date": "Sat, 05 Oct 2019 21:11:41 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4892", + "X-RateLimit-Reset": "1570311642", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"9960683cf7257316abbf7d1515d2c274\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/github-api-test-org/github-api/pulls/309", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "E2BB:2CE6:D397AD:FC6BB1:5D99070B" + } + }, + "uuid": "361c15b4-b52d-4da7-a810-bfabf94e819a", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/mergeCommitSHA/mappings/repos_github-api-test-org_github-api_pulls_309-5-1566b3.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/mergeCommitSHA/mappings/repos_github-api-test-org_github-api_pulls_309-5-1566b3.json new file mode 100644 index 0000000000..652e458649 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/mergeCommitSHA/mappings/repos_github-api-test-org_github-api_pulls_309-5-1566b3.json @@ -0,0 +1,46 @@ +{ + "id": "1566b3f6-560a-4c1c-a6cd-bdaa25774c7a", + "name": "repos_github-api-test-org_github-api_pulls_309", + "request": { + "url": "/repos/github-api-test-org/github-api/pulls/309", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api_pulls_309-1566b3f6-560a-4c1c-a6cd-bdaa25774c7a.json", + "headers": { + "Date": "Sat, 05 Oct 2019 21:11:41 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4891", + "X-RateLimit-Reset": "1570311642", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"9960683cf7257316abbf7d1515d2c274\"", + "Last-Modified": "Sat, 05 Oct 2019 21:11:40 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "E2BB:2CE6:D3980B:FC6C1B:5D99070D" + } + }, + "uuid": "1566b3f6-560a-4c1c-a6cd-bdaa25774c7a", + "persistent": true, + "scenarioName": "scenario-1-repos-github-api-test-org-github-api-pulls-309", + "requiredScenarioState": "Started", + "newScenarioState": "scenario-1-repos-github-api-test-org-github-api-pulls-309-2", + "insertionIndex": 5 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/mergeCommitSHA/mappings/repos_github-api-test-org_github-api_pulls_309-6-c8fd7b.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/mergeCommitSHA/mappings/repos_github-api-test-org_github-api_pulls_309-6-c8fd7b.json new file mode 100644 index 0000000000..2a92625891 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/mergeCommitSHA/mappings/repos_github-api-test-org_github-api_pulls_309-6-c8fd7b.json @@ -0,0 +1,46 @@ +{ + "id": "c8fd7b5e-b5f3-4179-bb56-1f2b150f248d", + "name": "repos_github-api-test-org_github-api_pulls_309", + "request": { + "url": "/repos/github-api-test-org/github-api/pulls/309", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api_pulls_309-c8fd7b5e-b5f3-4179-bb56-1f2b150f248d.json", + "headers": { + "Date": "Sat, 05 Oct 2019 21:11:41 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4890", + "X-RateLimit-Reset": "1570311642", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"e69c3fd661d08c3ffd1d054d9efc7f5c\"", + "Last-Modified": "Sat, 05 Oct 2019 21:11:40 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "E2BB:2CE6:D39817:FC6C31:5D99070D" + } + }, + "uuid": "c8fd7b5e-b5f3-4179-bb56-1f2b150f248d", + "persistent": true, + "scenarioName": "scenario-1-repos-github-api-test-org-github-api-pulls-309", + "requiredScenarioState": "scenario-1-repos-github-api-test-org-github-api-pulls-309-2", + "newScenarioState": "scenario-1-repos-github-api-test-org-github-api-pulls-309-3", + "insertionIndex": 6 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/mergeCommitSHA/mappings/repos_github-api-test-org_github-api_pulls_309-7-979661.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/mergeCommitSHA/mappings/repos_github-api-test-org_github-api_pulls_309-7-979661.json new file mode 100644 index 0000000000..e16397ef3a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/mergeCommitSHA/mappings/repos_github-api-test-org_github-api_pulls_309-7-979661.json @@ -0,0 +1,45 @@ +{ + "id": "97966102-337f-4c57-8b20-ba00a3769317", + "name": "repos_github-api-test-org_github-api_pulls_309", + "request": { + "url": "/repos/github-api-test-org/github-api/pulls/309", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api_pulls_309-97966102-337f-4c57-8b20-ba00a3769317.json", + "headers": { + "Date": "Sat, 05 Oct 2019 21:11:43 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4889", + "X-RateLimit-Reset": "1570311642", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"7e7fd7b9217593932b122cb8a1f3675b\"", + "Last-Modified": "Sat, 05 Oct 2019 21:11:40 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "E2BB:2CE6:D39841:FC6C3B:5D99070D" + } + }, + "uuid": "97966102-337f-4c57-8b20-ba00a3769317", + "persistent": true, + "scenarioName": "scenario-1-repos-github-api-test-org-github-api-pulls-309", + "requiredScenarioState": "scenario-1-repos-github-api-test-org-github-api-pulls-309-3", + "insertionIndex": 7 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/mergeCommitSHA/mappings/user-1-c2903f.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/mergeCommitSHA/mappings/user-1-c2903f.json new file mode 100644 index 0000000000..b9e2478ac2 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/mergeCommitSHA/mappings/user-1-c2903f.json @@ -0,0 +1,43 @@ +{ + "id": "c2903fd5-9175-47e3-b48e-c86bcc461b58", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-c2903fd5-9175-47e3-b48e-c86bcc461b58.json", + "headers": { + "Date": "Sat, 05 Oct 2019 21:11:37 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4899", + "X-RateLimit-Reset": "1570311642", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"af0c41afcacb8ceee14b7d896719c3bd\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "E2BB:2CE6:D39774:FC6B6F:5D990709" + } + }, + "uuid": "c2903fd5-9175-47e3-b48e-c86bcc461b58", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/orgs_github-api-test-org-079c3da5-3ce3-41f6-aef1-cae0dad71a85.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/orgs_github-api-test-org-079c3da5-3ce3-41f6-aef1-cae0dad71a85.json new file mode 100644 index 0000000000..61547e3d98 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/orgs_github-api-test-org-079c3da5-3ce3-41f6-aef1-cae0dad71a85.json @@ -0,0 +1,41 @@ +{ + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "url": "https://api.github.com/orgs/github-api-test-org", + "repos_url": "https://api.github.com/orgs/github-api-test-org/repos", + "events_url": "https://api.github.com/orgs/github-api-test-org/events", + "hooks_url": "https://api.github.com/orgs/github-api-test-org/hooks", + "issues_url": "https://api.github.com/orgs/github-api-test-org/issues", + "members_url": "https://api.github.com/orgs/github-api-test-org/members{/member}", + "public_members_url": "https://api.github.com/orgs/github-api-test-org/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "description": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 9, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/github-api-test-org", + "created_at": "2014-05-10T19:39:11Z", + "updated_at": "2015-04-20T00:42:30Z", + "type": "Organization", + "total_private_repos": 0, + "owned_private_repos": 0, + "private_gists": 0, + "disk_usage": 132, + "collaborators": 0, + "billing_email": "kk@kohsuke.org", + "default_repository_permission": "none", + "members_can_create_repositories": false, + "two_factor_requirement_enabled": false, + "plan": { + "name": "free", + "space": 976562499, + "private_repos": 0, + "filled_seats": 3, + "seats": 0 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_github-api-test-org_github-api-9090d20b-28ee-455a-8eb6-e1547d0d3d9e.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_github-api-test-org_github-api-9090d20b-28ee-455a-8eb6-e1547d0d3d9e.json new file mode 100644 index 0000000000..9cd41eca71 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_github-api-test-org_github-api-9090d20b-28ee-455a-8eb6-e1547d0d3d9e.json @@ -0,0 +1,330 @@ +{ + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:28Z", + "pushed_at": "2019-09-08T07:24:44Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "parent": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-07T00:07:16Z", + "pushed_at": "2019-09-07T00:07:14Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 551, + "watchers_count": 551, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 551, + "default_branch": "master" + }, + "source": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-07T00:07:16Z", + "pushed_at": "2019-09-07T00:07:14Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 551, + "watchers_count": 551, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 551, + "default_branch": "master" + }, + "network_count": 427, + "subscribers_count": 0 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_github-api-test-org_github-api-d585b5ae-36a9-48d8-931d-7f459bec2b4c.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_github-api-test-org_github-api-d585b5ae-36a9-48d8-931d-7f459bec2b4c.json new file mode 100644 index 0000000000..08f2533418 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_github-api-test-org_github-api-d585b5ae-36a9-48d8-931d-7f459bec2b4c.json @@ -0,0 +1,330 @@ +{ + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:28Z", + "pushed_at": "2019-09-08T07:24:38Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "parent": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-07T00:07:16Z", + "pushed_at": "2019-09-07T00:07:14Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 551, + "watchers_count": 551, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 551, + "default_branch": "master" + }, + "source": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-07T00:07:16Z", + "pushed_at": "2019-09-07T00:07:14Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 551, + "watchers_count": 551, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 551, + "default_branch": "master" + }, + "network_count": 427, + "subscribers_count": 0 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_github-api-test-org_github-api_pulls-145b4497-4f76-4adf-b16b-ccf1f68c339d.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_github-api-test-org_github-api_pulls-145b4497-4f76-4adf-b16b-ccf1f68c339d.json new file mode 100644 index 0000000000..1273cb8749 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_github-api-test-org_github-api_pulls-145b4497-4f76-4adf-b16b-ccf1f68c339d.json @@ -0,0 +1,339 @@ +{ + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/266", + "id": 315252340, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzQw", + "html_url": "https://github.com/github-api-test-org/github-api/pull/266", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/266.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/266.patch", + "issue_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/266", + "number": 266, + "state": "open", + "locked": false, + "title": "pullRequestReviewComments", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "body": "## test", + "created_at": "2019-09-08T07:24:43Z", + "updated_at": "2019-09-08T07:24:43Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/266/commits", + "review_comments_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/266/comments", + "review_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/266/comments", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "head": { + "label": "github-api-test-org:test/stable", + "ref": "test/stable", + "sha": "2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:28Z", + "pushed_at": "2019-09-08T07:24:38Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "github-api-test-org:master", + "ref": "master", + "sha": "912e2176a00e60e02196737e0ae4c218a14b5dcb", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:28Z", + "pushed_at": "2019-09-08T07:24:38Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/266" + }, + "html": { + "href": "https://github.com/github-api-test-org/github-api/pull/266" + }, + "issue": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/266" + }, + "comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/266/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/266/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/266/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/statuses/2d29c787b46ce61b98a1c13e05e21ebc21f49dbf" + } + }, + "author_association": "MEMBER", + "merged": false, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 1, + "deletions": 1, + "changed_files": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_github-api-test-org_github-api_pulls-80451be1-8c40-4a4b-9144-c59e9fb97fd8.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_github-api-test-org_github-api_pulls-80451be1-8c40-4a4b-9144-c59e9fb97fd8.json new file mode 100644 index 0000000000..73fba52b49 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_github-api-test-org_github-api_pulls-80451be1-8c40-4a4b-9144-c59e9fb97fd8.json @@ -0,0 +1,329 @@ +[ + { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/266", + "id": 315252340, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzQw", + "html_url": "https://github.com/github-api-test-org/github-api/pull/266", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/266.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/266.patch", + "issue_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/266", + "number": 266, + "state": "open", + "locked": false, + "title": "pullRequestReviewComments", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "body": "## test", + "created_at": "2019-09-08T07:24:43Z", + "updated_at": "2019-09-08T07:24:45Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "c40c9460c3947afd27cf83ffa79e99d1050f5417", + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/266/commits", + "review_comments_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/266/comments", + "review_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/266/comments", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "head": { + "label": "github-api-test-org:test/stable", + "ref": "test/stable", + "sha": "2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:28Z", + "pushed_at": "2019-09-08T07:24:44Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "github-api-test-org:master", + "ref": "master", + "sha": "912e2176a00e60e02196737e0ae4c218a14b5dcb", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:28Z", + "pushed_at": "2019-09-08T07:24:44Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/266" + }, + "html": { + "href": "https://github.com/github-api-test-org/github-api/pull/266" + }, + "issue": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/266" + }, + "comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/266/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/266/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/266/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/statuses/2d29c787b46ce61b98a1c13e05e21ebc21f49dbf" + } + }, + "author_association": "MEMBER" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_github-api-test-org_github-api_pulls_266-f8bf7bf6-b583-4573-b3eb-31bbad80e965.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_github-api-test-org_github-api_pulls_266-f8bf7bf6-b583-4573-b3eb-31bbad80e965.json new file mode 100644 index 0000000000..82ca27f959 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_github-api-test-org_github-api_pulls_266-f8bf7bf6-b583-4573-b3eb-31bbad80e965.json @@ -0,0 +1,339 @@ +{ + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/266", + "id": 315252340, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzQw", + "html_url": "https://github.com/github-api-test-org/github-api/pull/266", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/266.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/266.patch", + "issue_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/266", + "number": 266, + "state": "closed", + "locked": false, + "title": "pullRequestReviewComments", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "body": "## test", + "created_at": "2019-09-08T07:24:43Z", + "updated_at": "2019-09-08T07:24:46Z", + "closed_at": "2019-09-08T07:24:46Z", + "merged_at": null, + "merge_commit_sha": "c40c9460c3947afd27cf83ffa79e99d1050f5417", + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/266/commits", + "review_comments_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/266/comments", + "review_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/266/comments", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "head": { + "label": "github-api-test-org:test/stable", + "ref": "test/stable", + "sha": "2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:28Z", + "pushed_at": "2019-09-08T07:24:44Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "github-api-test-org:master", + "ref": "master", + "sha": "912e2176a00e60e02196737e0ae4c218a14b5dcb", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:28Z", + "pushed_at": "2019-09-08T07:24:44Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/266" + }, + "html": { + "href": "https://github.com/github-api-test-org/github-api/pull/266" + }, + "issue": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/266" + }, + "comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/266/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/266/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/266/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/statuses/2d29c787b46ce61b98a1c13e05e21ebc21f49dbf" + } + }, + "author_association": "MEMBER", + "merged": false, + "mergeable": true, + "rebaseable": true, + "mergeable_state": "clean", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 1, + "deletions": 1, + "changed_files": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_github-api-test-org_github-api_pulls_266_comments-874427ac-ddf2-4cee-b85c-501b2a3861d7.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_github-api-test-org_github-api_pulls_266_comments-874427ac-ddf2-4cee-b85c-501b2a3861d7.json new file mode 100644 index 0000000000..d4caa6f08f --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_github-api-test-org_github-api_pulls_266_comments-874427ac-ddf2-4cee-b85c-501b2a3861d7.json @@ -0,0 +1,51 @@ +[ + { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments/321995146", + "pull_request_review_id": 285200976, + "id": 321995146, + "node_id": "MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDMyMTk5NTE0Ng==", + "diff_hunk": "@@ -1,3 +1,3 @@\n-Java API for GitHub", + "path": "README.md", + "position": 1, + "original_position": 1, + "commit_id": "2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "original_commit_id": "2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "body": "Sample review comment", + "created_at": "2019-09-08T07:24:44Z", + "updated_at": "2019-09-08T07:24:44Z", + "html_url": "https://github.com/github-api-test-org/github-api/pull/266#discussion_r321995146", + "pull_request_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/266", + "author_association": "MEMBER", + "_links": { + "self": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments/321995146" + }, + "html": { + "href": "https://github.com/github-api-test-org/github-api/pull/266#discussion_r321995146" + }, + "pull_request": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/266" + } + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_github-api-test-org_github-api_pulls_266_comments-8d629bc2-ccf8-46c5-804d-500af333a156.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_github-api-test-org_github-api_pulls_266_comments-8d629bc2-ccf8-46c5-804d-500af333a156.json new file mode 100644 index 0000000000..93ee3dd865 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_github-api-test-org_github-api_pulls_266_comments-8d629bc2-ccf8-46c5-804d-500af333a156.json @@ -0,0 +1,51 @@ +[ + { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments/321995146", + "pull_request_review_id": 285200976, + "id": 321995146, + "node_id": "MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDMyMTk5NTE0Ng==", + "diff_hunk": "@@ -1,3 +1,3 @@\n-Java API for GitHub", + "path": "README.md", + "position": 1, + "original_position": 1, + "commit_id": "2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "original_commit_id": "2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "body": "Updated review comment", + "created_at": "2019-09-08T07:24:44Z", + "updated_at": "2019-09-08T07:24:45Z", + "html_url": "https://github.com/github-api-test-org/github-api/pull/266#discussion_r321995146", + "pull_request_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/266", + "author_association": "MEMBER", + "_links": { + "self": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments/321995146" + }, + "html": { + "href": "https://github.com/github-api-test-org/github-api/pull/266#discussion_r321995146" + }, + "pull_request": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/266" + } + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_github-api-test-org_github-api_pulls_266_comments-b9a8cb45-f232-4aa9-a3bf-93f050e40616.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_github-api-test-org_github-api_pulls_266_comments-b9a8cb45-f232-4aa9-a3bf-93f050e40616.json new file mode 100644 index 0000000000..9bc8f34beb --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_github-api-test-org_github-api_pulls_266_comments-b9a8cb45-f232-4aa9-a3bf-93f050e40616.json @@ -0,0 +1,49 @@ +{ + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments/321995146", + "pull_request_review_id": 285200976, + "id": 321995146, + "node_id": "MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDMyMTk5NTE0Ng==", + "diff_hunk": "@@ -1,3 +1,3 @@\n-Java API for GitHub", + "path": "README.md", + "position": 1, + "original_position": 1, + "commit_id": "2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "original_commit_id": "2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "body": "Sample review comment", + "created_at": "2019-09-08T07:24:44Z", + "updated_at": "2019-09-08T07:24:44Z", + "html_url": "https://github.com/github-api-test-org/github-api/pull/266#discussion_r321995146", + "pull_request_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/266", + "author_association": "MEMBER", + "_links": { + "self": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments/321995146" + }, + "html": { + "href": "https://github.com/github-api-test-org/github-api/pull/266#discussion_r321995146" + }, + "pull_request": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/266" + } + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_github-api-test-org_github-api_pulls_comments_321995146-d0df7515-482f-4337-aafd-a543346e6076.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_github-api-test-org_github-api_pulls_comments_321995146-d0df7515-482f-4337-aafd-a543346e6076.json new file mode 100644 index 0000000000..917115869a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_github-api-test-org_github-api_pulls_comments_321995146-d0df7515-482f-4337-aafd-a543346e6076.json @@ -0,0 +1,49 @@ +{ + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments/321995146", + "pull_request_review_id": 285200976, + "id": 321995146, + "node_id": "MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDMyMTk5NTE0Ng==", + "diff_hunk": "@@ -1,3 +1,3 @@\n-Java API for GitHub", + "path": "README.md", + "position": 1, + "original_position": 1, + "commit_id": "2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "original_commit_id": "2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "body": "Updated review comment", + "created_at": "2019-09-08T07:24:44Z", + "updated_at": "2019-09-08T07:24:45Z", + "html_url": "https://github.com/github-api-test-org/github-api/pull/266#discussion_r321995146", + "pull_request_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/266", + "author_association": "MEMBER", + "_links": { + "self": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments/321995146" + }, + "html": { + "href": "https://github.com/github-api-test-org/github-api/pull/266#discussion_r321995146" + }, + "pull_request": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/266" + } + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/user-f7421985-e210-4b76-b07e-0a00bae61fff.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/user-f7421985-e210-4b76-b07e-0a00bae61fff.json new file mode 100644 index 0000000000..b9ce24cb03 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/user-f7421985-e210-4b76-b07e-0a00bae61fff.json @@ -0,0 +1,33 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 166, + "public_gists": 4, + "followers": 133, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-06-03T17:47:20Z" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/orgs_github-api-test-org-2-079c3d.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/orgs_github-api-test-org-2-079c3d.json new file mode 100644 index 0000000000..28d651ac51 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/orgs_github-api-test-org-2-079c3d.json @@ -0,0 +1,43 @@ +{ + "id": "079c3da5-3ce3-41f6-aef1-cae0dad71a85", + "name": "orgs_github-api-test-org", + "request": { + "url": "/orgs/github-api-test-org", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_github-api-test-org-079c3da5-3ce3-41f6-aef1-cae0dad71a85.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:43 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4885", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"d36965e157281b2a309c39e4c2343a55\"", + "Last-Modified": "Mon, 20 Apr 2015 00:42:30 GMT", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF91:40BD:C67D6A:E8071B:5D74ACBA" + } + }, + "uuid": "079c3da5-3ce3-41f6-aef1-cae0dad71a85", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_github-api-test-org_github-api-12-9090d2.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_github-api-test-org_github-api-12-9090d2.json new file mode 100644 index 0000000000..576c34e2f4 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_github-api-test-org_github-api-12-9090d2.json @@ -0,0 +1,45 @@ +{ + "id": "9090d20b-28ee-455a-8eb6-e1547d0d3d9e", + "name": "repos_github-api-test-org_github-api", + "request": { + "url": "/repos/github-api-test-org/github-api", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api-9090d20b-28ee-455a-8eb6-e1547d0d3d9e.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:46 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4875", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"9acabc33f9749ffce33a82a36bb6e76d\"", + "Last-Modified": "Sun, 08 Sep 2019 07:24:28 GMT", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF91:40BD:C67E6D:E80837:5D74ACBE" + } + }, + "uuid": "9090d20b-28ee-455a-8eb6-e1547d0d3d9e", + "persistent": true, + "scenarioName": "scenario-1-repos-github-api-test-org-github-api", + "requiredScenarioState": "scenario-1-repos-github-api-test-org-github-api-2", + "insertionIndex": 12 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_github-api-test-org_github-api-3-d585b5.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_github-api-test-org_github-api-3-d585b5.json new file mode 100644 index 0000000000..77c462bd95 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_github-api-test-org_github-api-3-d585b5.json @@ -0,0 +1,46 @@ +{ + "id": "d585b5ae-36a9-48d8-931d-7f459bec2b4c", + "name": "repos_github-api-test-org_github-api", + "request": { + "url": "/repos/github-api-test-org/github-api", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api-d585b5ae-36a9-48d8-931d-7f459bec2b4c.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:43 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4884", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"7769c7e717cc7cf93b574833c03b891d\"", + "Last-Modified": "Sun, 08 Sep 2019 07:24:28 GMT", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF91:40BD:C67D75:E80727:5D74ACBB" + } + }, + "uuid": "d585b5ae-36a9-48d8-931d-7f459bec2b4c", + "persistent": true, + "scenarioName": "scenario-1-repos-github-api-test-org-github-api", + "requiredScenarioState": "Started", + "newScenarioState": "scenario-1-repos-github-api-test-org-github-api-2", + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_github-api-test-org_github-api_pulls-13-80451b.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_github-api-test-org_github-api_pulls-13-80451b.json new file mode 100644 index 0000000000..e5f1248367 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_github-api-test-org_github-api_pulls-13-80451b.json @@ -0,0 +1,42 @@ +{ + "id": "80451be1-8c40-4a4b-9144-c59e9fb97fd8", + "name": "repos_github-api-test-org_github-api_pulls", + "request": { + "url": "/repos/github-api-test-org/github-api/pulls?state=open", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api_pulls-80451be1-8c40-4a4b-9144-c59e9fb97fd8.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:46 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4874", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"18012acfc0962da8b2ede3a910fa5178\"", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF91:40BD:C67E7F:E8084B:5D74ACBE" + } + }, + "uuid": "80451be1-8c40-4a4b-9144-c59e9fb97fd8", + "persistent": true, + "insertionIndex": 13 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_github-api-test-org_github-api_pulls-4-145b44.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_github-api-test-org_github-api_pulls-4-145b44.json new file mode 100644 index 0000000000..079b269a47 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_github-api-test-org_github-api_pulls-4-145b44.json @@ -0,0 +1,50 @@ +{ + "id": "145b4497-4f76-4adf-b16b-ccf1f68c339d", + "name": "repos_github-api-test-org_github-api_pulls", + "request": { + "url": "/repos/github-api-test-org/github-api/pulls", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"head\":\"test/stable\",\"maintainer_can_modify\":true,\"title\":\"pullRequestReviewComments\",\"body\":\"## test\",\"base\":\"master\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "repos_github-api-test-org_github-api_pulls-145b4497-4f76-4adf-b16b-ccf1f68c339d.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:43 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4883", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"a2827455894688a5faa5da779190bb2c\"", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/github-api-test-org/github-api/pulls/266", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF91:40BD:C67D86:E8073B:5D74ACBB" + } + }, + "uuid": "145b4497-4f76-4adf-b16b-ccf1f68c339d", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_github-api-test-org_github-api_pulls_266-14-f8bf7b.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_github-api-test-org_github-api_pulls_266-14-f8bf7b.json new file mode 100644 index 0000000000..b2c2e01eb7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_github-api-test-org_github-api_pulls_266-14-f8bf7b.json @@ -0,0 +1,49 @@ +{ + "id": "f8bf7bf6-b583-4573-b3eb-31bbad80e965", + "name": "repos_github-api-test-org_github-api_pulls_266", + "request": { + "url": "/repos/github-api-test-org/github-api/pulls/266", + "method": "PATCH", + "bodyPatterns": [ + { + "equalToJson": "{\"state\":\"closed\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api_pulls_266-f8bf7bf6-b583-4573-b3eb-31bbad80e965.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:47 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4873", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"c0645af133a441f679a6966ea56da287\"", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF91:40BD:C67E97:E80863:5D74ACBE" + } + }, + "uuid": "f8bf7bf6-b583-4573-b3eb-31bbad80e965", + "persistent": true, + "insertionIndex": 14 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_github-api-test-org_github-api_pulls_266_comments-11-b8142f.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_github-api-test-org_github-api_pulls_266_comments-11-b8142f.json new file mode 100644 index 0000000000..f7bf4d04be --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_github-api-test-org_github-api_pulls_266_comments-11-b8142f.json @@ -0,0 +1,44 @@ +{ + "id": "b8142f12-29ab-4694-9857-cede8bce560c", + "name": "repos_github-api-test-org_github-api_pulls_266_comments", + "request": { + "url": "/repos/github-api-test-org/github-api/pulls/266/comments", + "method": "GET" + }, + "response": { + "status": 200, + "body": "[]", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:46 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4876", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"ad5808b0a5d75d70a16a73b8e9763e19\"", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF91:40BD:C67E64:E8081B:5D74ACBE" + } + }, + "uuid": "b8142f12-29ab-4694-9857-cede8bce560c", + "persistent": true, + "scenarioName": "scenario-2-repos-github-api-test-org-github-api-pulls-266-comments", + "requiredScenarioState": "scenario-2-repos-github-api-test-org-github-api-pulls-266-comments-4", + "insertionIndex": 11 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_github-api-test-org_github-api_pulls_266_comments-5-cbd425.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_github-api-test-org_github-api_pulls_266_comments-5-cbd425.json new file mode 100644 index 0000000000..24007d3d40 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_github-api-test-org_github-api_pulls_266_comments-5-cbd425.json @@ -0,0 +1,45 @@ +{ + "id": "cbd42569-0057-4dc2-89f9-2de7b12db75e", + "name": "repos_github-api-test-org_github-api_pulls_266_comments", + "request": { + "url": "/repos/github-api-test-org/github-api/pulls/266/comments", + "method": "GET" + }, + "response": { + "status": 200, + "body": "[]", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:44 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4882", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"ad5808b0a5d75d70a16a73b8e9763e19\"", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF91:40BD:C67DC4:E80772:5D74ACBB" + } + }, + "uuid": "cbd42569-0057-4dc2-89f9-2de7b12db75e", + "persistent": true, + "scenarioName": "scenario-2-repos-github-api-test-org-github-api-pulls-266-comments", + "requiredScenarioState": "Started", + "newScenarioState": "scenario-2-repos-github-api-test-org-github-api-pulls-266-comments-2", + "insertionIndex": 5 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_github-api-test-org_github-api_pulls_266_comments-6-b9a8cb.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_github-api-test-org_github-api_pulls_266_comments-6-b9a8cb.json new file mode 100644 index 0000000000..1da48647e3 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_github-api-test-org_github-api_pulls_266_comments-6-b9a8cb.json @@ -0,0 +1,50 @@ +{ + "id": "b9a8cb45-f232-4aa9-a3bf-93f050e40616", + "name": "repos_github-api-test-org_github-api_pulls_266_comments", + "request": { + "url": "/repos/github-api-test-org/github-api/pulls/266/comments", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"path\":\"README.md\",\"position\":1,\"body\":\"Sample review comment\",\"commit_id\":\"2d29c787b46ce61b98a1c13e05e21ebc21f49dbf\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "repos_github-api-test-org_github-api_pulls_266_comments-b9a8cb45-f232-4aa9-a3bf-93f050e40616.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:44 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4881", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"1e5fb97b3f4a5335008f4d7b18498e9d\"", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments/321995146", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF91:40BD:C67DD2:E8078D:5D74ACBC" + } + }, + "uuid": "b9a8cb45-f232-4aa9-a3bf-93f050e40616", + "persistent": true, + "insertionIndex": 6 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_github-api-test-org_github-api_pulls_266_comments-7-874427.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_github-api-test-org_github-api_pulls_266_comments-7-874427.json new file mode 100644 index 0000000000..65caed2f38 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_github-api-test-org_github-api_pulls_266_comments-7-874427.json @@ -0,0 +1,45 @@ +{ + "id": "874427ac-ddf2-4cee-b85c-501b2a3861d7", + "name": "repos_github-api-test-org_github-api_pulls_266_comments", + "request": { + "url": "/repos/github-api-test-org/github-api/pulls/266/comments", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api_pulls_266_comments-874427ac-ddf2-4cee-b85c-501b2a3861d7.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:45 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4880", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"5744dfa02066cbc244887629e9a78919\"", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF91:40BD:C67E05:E807B8:5D74ACBC" + } + }, + "uuid": "874427ac-ddf2-4cee-b85c-501b2a3861d7", + "persistent": true, + "scenarioName": "scenario-2-repos-github-api-test-org-github-api-pulls-266-comments", + "requiredScenarioState": "scenario-2-repos-github-api-test-org-github-api-pulls-266-comments-2", + "newScenarioState": "scenario-2-repos-github-api-test-org-github-api-pulls-266-comments-3", + "insertionIndex": 7 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_github-api-test-org_github-api_pulls_266_comments-9-8d629b.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_github-api-test-org_github-api_pulls_266_comments-9-8d629b.json new file mode 100644 index 0000000000..a7cc05f0e3 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_github-api-test-org_github-api_pulls_266_comments-9-8d629b.json @@ -0,0 +1,45 @@ +{ + "id": "8d629bc2-ccf8-46c5-804d-500af333a156", + "name": "repos_github-api-test-org_github-api_pulls_266_comments", + "request": { + "url": "/repos/github-api-test-org/github-api/pulls/266/comments", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api_pulls_266_comments-8d629bc2-ccf8-46c5-804d-500af333a156.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:45 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4878", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"004c8f4b66ed0d9ad14c2f19e71e962a\"", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF91:40BD:C67E36:E807F0:5D74ACBD" + } + }, + "uuid": "8d629bc2-ccf8-46c5-804d-500af333a156", + "persistent": true, + "scenarioName": "scenario-2-repos-github-api-test-org-github-api-pulls-266-comments", + "requiredScenarioState": "scenario-2-repos-github-api-test-org-github-api-pulls-266-comments-3", + "newScenarioState": "scenario-2-repos-github-api-test-org-github-api-pulls-266-comments-4", + "insertionIndex": 9 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_github-api-test-org_github-api_pulls_comments_321995146-10-73e6aa.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_github-api-test-org_github-api_pulls_comments_321995146-10-73e6aa.json new file mode 100644 index 0000000000..f0c81e3773 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_github-api-test-org_github-api_pulls_comments_321995146-10-73e6aa.json @@ -0,0 +1,36 @@ +{ + "id": "73e6aad9-93a1-4421-94ee-721a9b1949dc", + "name": "repos_github-api-test-org_github-api_pulls_comments_321995146", + "request": { + "url": "/repos/github-api-test-org/github-api/pulls/comments/321995146", + "method": "DELETE" + }, + "response": { + "status": 204, + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:45 GMT", + "Content-Type": "application/octet-stream", + "Server": "GitHub.com", + "Status": "204 No Content", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4877", + "X-RateLimit-Reset": "1567929276", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "FF91:40BD:C67E42:E80809:5D74ACBD" + } + }, + "uuid": "73e6aad9-93a1-4421-94ee-721a9b1949dc", + "persistent": true, + "insertionIndex": 10 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_github-api-test-org_github-api_pulls_comments_321995146-8-d0df75.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_github-api-test-org_github-api_pulls_comments_321995146-8-d0df75.json new file mode 100644 index 0000000000..f157bf14bd --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_github-api-test-org_github-api_pulls_comments_321995146-8-d0df75.json @@ -0,0 +1,49 @@ +{ + "id": "d0df7515-482f-4337-aafd-a543346e6076", + "name": "repos_github-api-test-org_github-api_pulls_comments_321995146", + "request": { + "url": "/repos/github-api-test-org/github-api/pulls/comments/321995146", + "method": "PATCH", + "bodyPatterns": [ + { + "equalToJson": "{\"body\":\"Updated review comment\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api_pulls_comments_321995146-d0df7515-482f-4337-aafd-a543346e6076.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:45 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4879", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"0c3324b1da01161140a88fc125c27562\"", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF91:40BD:C67E12:E807D1:5D74ACBD" + } + }, + "uuid": "d0df7515-482f-4337-aafd-a543346e6076", + "persistent": true, + "insertionIndex": 8 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/user-1-f74219.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/user-1-f74219.json new file mode 100644 index 0000000000..72ece192a2 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/user-1-f74219.json @@ -0,0 +1,43 @@ +{ + "id": "f7421985-e210-4b76-b07e-0a00bae61fff", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-f7421985-e210-4b76-b07e-0a00bae61fff.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:42 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4886", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"3ba1de3523043df743651bd23efc7def\"", + "Last-Modified": "Mon, 03 Jun 2019 17:47:20 GMT", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF91:40BD:C67D5C:E8070E:5D74ACBA" + } + }, + "uuid": "f7421985-e210-4b76-b07e-0a00bae61fff", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/__files/orgs_github-api-test-org-3f761467-4b55-4250-8764-14a1f83cdf7b.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/__files/orgs_github-api-test-org-3f761467-4b55-4250-8764-14a1f83cdf7b.json new file mode 100644 index 0000000000..61547e3d98 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/__files/orgs_github-api-test-org-3f761467-4b55-4250-8764-14a1f83cdf7b.json @@ -0,0 +1,41 @@ +{ + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "url": "https://api.github.com/orgs/github-api-test-org", + "repos_url": "https://api.github.com/orgs/github-api-test-org/repos", + "events_url": "https://api.github.com/orgs/github-api-test-org/events", + "hooks_url": "https://api.github.com/orgs/github-api-test-org/hooks", + "issues_url": "https://api.github.com/orgs/github-api-test-org/issues", + "members_url": "https://api.github.com/orgs/github-api-test-org/members{/member}", + "public_members_url": "https://api.github.com/orgs/github-api-test-org/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "description": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 9, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/github-api-test-org", + "created_at": "2014-05-10T19:39:11Z", + "updated_at": "2015-04-20T00:42:30Z", + "type": "Organization", + "total_private_repos": 0, + "owned_private_repos": 0, + "private_gists": 0, + "disk_usage": 132, + "collaborators": 0, + "billing_email": "kk@kohsuke.org", + "default_repository_permission": "none", + "members_can_create_repositories": false, + "two_factor_requirement_enabled": false, + "plan": { + "name": "free", + "space": 976562499, + "private_repos": 0, + "filled_seats": 3, + "seats": 0 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/__files/repos_github-api-test-org_github-api-029a5710-e19a-4db2-8b79-49123309a3bf.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/__files/repos_github-api-test-org_github-api-029a5710-e19a-4db2-8b79-49123309a3bf.json new file mode 100644 index 0000000000..5070dd6120 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/__files/repos_github-api-test-org_github-api-029a5710-e19a-4db2-8b79-49123309a3bf.json @@ -0,0 +1,330 @@ +{ + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:21:20Z", + "pushed_at": "2019-09-08T07:24:09Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "parent": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-07T00:07:16Z", + "pushed_at": "2019-09-07T00:07:14Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 551, + "watchers_count": 551, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 551, + "default_branch": "master" + }, + "source": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-07T00:07:16Z", + "pushed_at": "2019-09-07T00:07:14Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 551, + "watchers_count": 551, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 551, + "default_branch": "master" + }, + "network_count": 427, + "subscribers_count": 0 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/__files/repos_github-api-test-org_github-api-1efd2ad4-e334-47e1-aaa8-8588bb117bb0.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/__files/repos_github-api-test-org_github-api-1efd2ad4-e334-47e1-aaa8-8588bb117bb0.json new file mode 100644 index 0000000000..be4f5ebd7e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/__files/repos_github-api-test-org_github-api-1efd2ad4-e334-47e1-aaa8-8588bb117bb0.json @@ -0,0 +1,330 @@ +{ + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:21:20Z", + "pushed_at": "2019-09-08T07:22:12Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "parent": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-07T00:07:16Z", + "pushed_at": "2019-09-07T00:07:14Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 551, + "watchers_count": 551, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 551, + "default_branch": "master" + }, + "source": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-07T00:07:16Z", + "pushed_at": "2019-09-07T00:07:14Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 551, + "watchers_count": 551, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 551, + "default_branch": "master" + }, + "network_count": 427, + "subscribers_count": 0 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/__files/repos_github-api-test-org_github-api_pulls-0c75c020-a12d-4d29-a43f-401e5d479b4a.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/__files/repos_github-api-test-org_github-api_pulls-0c75c020-a12d-4d29-a43f-401e5d479b4a.json new file mode 100644 index 0000000000..127cb7a106 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/__files/repos_github-api-test-org_github-api_pulls-0c75c020-a12d-4d29-a43f-401e5d479b4a.json @@ -0,0 +1,329 @@ +[ + { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/258", + "id": 315252305, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzA1", + "html_url": "https://github.com/github-api-test-org/github-api/pull/258", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/258.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/258.patch", + "issue_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/258", + "number": 258, + "state": "open", + "locked": false, + "title": "testPullRequestReviews", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "body": "## test", + "created_at": "2019-09-08T07:24:09Z", + "updated_at": "2019-09-08T07:24:12Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "df6cbd010a7043bd1c1741772cb306107b7461e3", + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/258/commits", + "review_comments_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/258/comments", + "review_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/258/comments", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "head": { + "label": "github-api-test-org:test/stable", + "ref": "test/stable", + "sha": "2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:21:20Z", + "pushed_at": "2019-09-08T07:24:09Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "github-api-test-org:master", + "ref": "master", + "sha": "3a09d2de4a9a1322a0ba2c3e2f54a919ca8fe353", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:21:20Z", + "pushed_at": "2019-09-08T07:24:09Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/258" + }, + "html": { + "href": "https://github.com/github-api-test-org/github-api/pull/258" + }, + "issue": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/258" + }, + "comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/258/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/258/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/258/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/statuses/2d29c787b46ce61b98a1c13e05e21ebc21f49dbf" + } + }, + "author_association": "MEMBER" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/__files/repos_github-api-test-org_github-api_pulls-7f209593-4b8d-4fc8-97e2-10704e6683b7.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/__files/repos_github-api-test-org_github-api_pulls-7f209593-4b8d-4fc8-97e2-10704e6683b7.json new file mode 100644 index 0000000000..f26ee55dea --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/__files/repos_github-api-test-org_github-api_pulls-7f209593-4b8d-4fc8-97e2-10704e6683b7.json @@ -0,0 +1,339 @@ +{ + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/258", + "id": 315252305, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzA1", + "html_url": "https://github.com/github-api-test-org/github-api/pull/258", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/258.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/258.patch", + "issue_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/258", + "number": 258, + "state": "open", + "locked": false, + "title": "testPullRequestReviews", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "body": "## test", + "created_at": "2019-09-08T07:24:09Z", + "updated_at": "2019-09-08T07:24:09Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/258/commits", + "review_comments_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/258/comments", + "review_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/258/comments", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "head": { + "label": "github-api-test-org:test/stable", + "ref": "test/stable", + "sha": "2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:21:20Z", + "pushed_at": "2019-09-08T07:22:12Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "github-api-test-org:master", + "ref": "master", + "sha": "3a09d2de4a9a1322a0ba2c3e2f54a919ca8fe353", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:21:20Z", + "pushed_at": "2019-09-08T07:22:12Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/258" + }, + "html": { + "href": "https://github.com/github-api-test-org/github-api/pull/258" + }, + "issue": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/258" + }, + "comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/258/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/258/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/258/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/statuses/2d29c787b46ce61b98a1c13e05e21ebc21f49dbf" + } + }, + "author_association": "MEMBER", + "merged": false, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 1, + "deletions": 1, + "changed_files": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/__files/repos_github-api-test-org_github-api_pulls_258-9406e54b-fdf7-40d5-a51b-3c27d7b050d8.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/__files/repos_github-api-test-org_github-api_pulls_258-9406e54b-fdf7-40d5-a51b-3c27d7b050d8.json new file mode 100644 index 0000000000..be15d5caa2 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/__files/repos_github-api-test-org_github-api_pulls_258-9406e54b-fdf7-40d5-a51b-3c27d7b050d8.json @@ -0,0 +1,339 @@ +{ + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/258", + "id": 315252305, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzA1", + "html_url": "https://github.com/github-api-test-org/github-api/pull/258", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/258.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/258.patch", + "issue_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/258", + "number": 258, + "state": "closed", + "locked": false, + "title": "testPullRequestReviews", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "body": "## test", + "created_at": "2019-09-08T07:24:09Z", + "updated_at": "2019-09-08T07:24:12Z", + "closed_at": "2019-09-08T07:24:12Z", + "merged_at": null, + "merge_commit_sha": "df6cbd010a7043bd1c1741772cb306107b7461e3", + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/258/commits", + "review_comments_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/258/comments", + "review_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/258/comments", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "head": { + "label": "github-api-test-org:test/stable", + "ref": "test/stable", + "sha": "2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:21:20Z", + "pushed_at": "2019-09-08T07:24:09Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "github-api-test-org:master", + "ref": "master", + "sha": "3a09d2de4a9a1322a0ba2c3e2f54a919ca8fe353", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:21:20Z", + "pushed_at": "2019-09-08T07:24:09Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/258" + }, + "html": { + "href": "https://github.com/github-api-test-org/github-api/pull/258" + }, + "issue": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/258" + }, + "comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/258/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/258/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/258/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/statuses/2d29c787b46ce61b98a1c13e05e21ebc21f49dbf" + } + }, + "author_association": "MEMBER", + "merged": false, + "mergeable": true, + "rebaseable": true, + "mergeable_state": "clean", + "merged_by": null, + "comments": 0, + "review_comments": 1, + "maintainer_can_modify": false, + "commits": 1, + "additions": 1, + "deletions": 1, + "changed_files": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/__files/repos_github-api-test-org_github-api_pulls_258_reviews-1fe517d8-5707-4f17-a46a-e58d3abb5991.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/__files/repos_github-api-test-org_github-api_pulls_258_reviews-1fe517d8-5707-4f17-a46a-e58d3abb5991.json new file mode 100644 index 0000000000..67ec7d6190 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/__files/repos_github-api-test-org_github-api_pulls_258_reviews-1fe517d8-5707-4f17-a46a-e58d3abb5991.json @@ -0,0 +1,38 @@ +{ + "id": 285200956, + "node_id": "MDE3OlB1bGxSZXF1ZXN0UmV2aWV3Mjg1MjAwOTU2", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "body": "Some draft review", + "state": "PENDING", + "html_url": "https://github.com/github-api-test-org/github-api/pull/258#pullrequestreview-285200956", + "pull_request_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/258", + "author_association": "MEMBER", + "_links": { + "html": { + "href": "https://github.com/github-api-test-org/github-api/pull/258#pullrequestreview-285200956" + }, + "pull_request": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/258" + } + }, + "commit_id": "2d29c787b46ce61b98a1c13e05e21ebc21f49dbf" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/__files/repos_github-api-test-org_github-api_pulls_258_reviews-56d54933-fb91-4e3e-8baa-245b5b7db8b2.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/__files/repos_github-api-test-org_github-api_pulls_258_reviews-56d54933-fb91-4e3e-8baa-245b5b7db8b2.json new file mode 100644 index 0000000000..ae32eca395 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/__files/repos_github-api-test-org_github-api_pulls_258_reviews-56d54933-fb91-4e3e-8baa-245b5b7db8b2.json @@ -0,0 +1,40 @@ +[ + { + "id": 285200956, + "node_id": "MDE3OlB1bGxSZXF1ZXN0UmV2aWV3Mjg1MjAwOTU2", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "body": "Some draft review", + "state": "PENDING", + "html_url": "https://github.com/github-api-test-org/github-api/pull/258#pullrequestreview-285200956", + "pull_request_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/258", + "author_association": "MEMBER", + "_links": { + "html": { + "href": "https://github.com/github-api-test-org/github-api/pull/258#pullrequestreview-285200956" + }, + "pull_request": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/258" + } + }, + "commit_id": "2d29c787b46ce61b98a1c13e05e21ebc21f49dbf" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/__files/repos_github-api-test-org_github-api_pulls_258_reviews-be8b553c-77cf-4904-9d74-92787d422007.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/__files/repos_github-api-test-org_github-api_pulls_258_reviews-be8b553c-77cf-4904-9d74-92787d422007.json new file mode 100644 index 0000000000..49d6e5b1cc --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/__files/repos_github-api-test-org_github-api_pulls_258_reviews-be8b553c-77cf-4904-9d74-92787d422007.json @@ -0,0 +1,38 @@ +{ + "id": 285200957, + "node_id": "MDE3OlB1bGxSZXF1ZXN0UmV2aWV3Mjg1MjAwOTU3", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "body": "Some new review", + "state": "PENDING", + "html_url": "https://github.com/github-api-test-org/github-api/pull/258#pullrequestreview-285200957", + "pull_request_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/258", + "author_association": "MEMBER", + "_links": { + "html": { + "href": "https://github.com/github-api-test-org/github-api/pull/258#pullrequestreview-285200957" + }, + "pull_request": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/258" + } + }, + "commit_id": "2d29c787b46ce61b98a1c13e05e21ebc21f49dbf" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/__files/repos_github-api-test-org_github-api_pulls_258_reviews_285200956_comments-15c1e28b-6415-4c72-8a9a-bf0e88ca9364.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/__files/repos_github-api-test-org_github-api_pulls_258_reviews_285200956_comments-15c1e28b-6415-4c72-8a9a-bf0e88ca9364.json new file mode 100644 index 0000000000..071eb45f5d --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/__files/repos_github-api-test-org_github-api_pulls_258_reviews_285200956_comments-15c1e28b-6415-4c72-8a9a-bf0e88ca9364.json @@ -0,0 +1,51 @@ +[ + { + "id": 321995128, + "node_id": "MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDMyMTk5NTEyOA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments/321995128", + "pull_request_review_id": 285200956, + "diff_hunk": "@@ -1,3 +1,3 @@\n-Java API for GitHub", + "path": "README.md", + "position": 1, + "original_position": 1, + "commit_id": "2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "body": "Some niggle", + "created_at": "2019-09-08T07:24:09Z", + "updated_at": "2019-09-08T07:24:10Z", + "html_url": "https://github.com/github-api-test-org/github-api/pull/258#discussion_r321995128", + "pull_request_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/258", + "author_association": "MEMBER", + "_links": { + "self": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments/321995128" + }, + "html": { + "href": "https://github.com/github-api-test-org/github-api/pull/258#discussion_r321995128" + }, + "pull_request": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/258" + } + }, + "original_commit_id": "2d29c787b46ce61b98a1c13e05e21ebc21f49dbf" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/__files/repos_github-api-test-org_github-api_pulls_258_reviews_285200956_events-d0f59a93-6a4d-4841-b4ec-a6b5d43747ea.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/__files/repos_github-api-test-org_github-api_pulls_258_reviews_285200956_events-d0f59a93-6a4d-4841-b4ec-a6b5d43747ea.json new file mode 100644 index 0000000000..42e89ba4a4 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/__files/repos_github-api-test-org_github-api_pulls_258_reviews_285200956_events-d0f59a93-6a4d-4841-b4ec-a6b5d43747ea.json @@ -0,0 +1,39 @@ +{ + "id": 285200956, + "node_id": "MDE3OlB1bGxSZXF1ZXN0UmV2aWV3Mjg1MjAwOTU2", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "body": "Some review comment", + "state": "COMMENTED", + "html_url": "https://github.com/github-api-test-org/github-api/pull/258#pullrequestreview-285200956", + "pull_request_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/258", + "author_association": "MEMBER", + "_links": { + "html": { + "href": "https://github.com/github-api-test-org/github-api/pull/258#pullrequestreview-285200956" + }, + "pull_request": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/258" + } + }, + "submitted_at": "2019-09-08T07:24:10Z", + "commit_id": "2d29c787b46ce61b98a1c13e05e21ebc21f49dbf" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/__files/repos_github-api-test-org_github-api_pulls_258_reviews_285200957-886b3f8b-a7c0-4844-95a5-3f674898edb0.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/__files/repos_github-api-test-org_github-api_pulls_258_reviews_285200957-886b3f8b-a7c0-4844-95a5-3f674898edb0.json new file mode 100644 index 0000000000..49d6e5b1cc --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/__files/repos_github-api-test-org_github-api_pulls_258_reviews_285200957-886b3f8b-a7c0-4844-95a5-3f674898edb0.json @@ -0,0 +1,38 @@ +{ + "id": 285200957, + "node_id": "MDE3OlB1bGxSZXF1ZXN0UmV2aWV3Mjg1MjAwOTU3", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "body": "Some new review", + "state": "PENDING", + "html_url": "https://github.com/github-api-test-org/github-api/pull/258#pullrequestreview-285200957", + "pull_request_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/258", + "author_association": "MEMBER", + "_links": { + "html": { + "href": "https://github.com/github-api-test-org/github-api/pull/258#pullrequestreview-285200957" + }, + "pull_request": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/258" + } + }, + "commit_id": "2d29c787b46ce61b98a1c13e05e21ebc21f49dbf" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/__files/user-e24b3373-c9ca-4d6f-b8cc-93a9d7deb4d0.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/__files/user-e24b3373-c9ca-4d6f-b8cc-93a9d7deb4d0.json new file mode 100644 index 0000000000..b9ce24cb03 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/__files/user-e24b3373-c9ca-4d6f-b8cc-93a9d7deb4d0.json @@ -0,0 +1,33 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 166, + "public_gists": 4, + "followers": 133, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-06-03T17:47:20Z" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/mappings/orgs_github-api-test-org-2-3f7614.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/mappings/orgs_github-api-test-org-2-3f7614.json new file mode 100644 index 0000000000..8f3184e4f1 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/mappings/orgs_github-api-test-org-2-3f7614.json @@ -0,0 +1,43 @@ +{ + "id": "3f761467-4b55-4250-8764-14a1f83cdf7b", + "name": "orgs_github-api-test-org", + "request": { + "url": "/orgs/github-api-test-org", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_github-api-test-org-3f761467-4b55-4250-8764-14a1f83cdf7b.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:08 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4966", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"d36965e157281b2a309c39e4c2343a55\"", + "Last-Modified": "Mon, 20 Apr 2015 00:42:30 GMT", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF76:0A33:C54F2A:E72692:5D74AC97" + } + }, + "uuid": "3f761467-4b55-4250-8764-14a1f83cdf7b", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/mappings/repos_github-api-test-org_github-api-11-029a57.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/mappings/repos_github-api-test-org_github-api-11-029a57.json new file mode 100644 index 0000000000..fcfc6c0167 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/mappings/repos_github-api-test-org_github-api-11-029a57.json @@ -0,0 +1,45 @@ +{ + "id": "029a5710-e19a-4db2-8b79-49123309a3bf", + "name": "repos_github-api-test-org_github-api", + "request": { + "url": "/repos/github-api-test-org/github-api", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api-029a5710-e19a-4db2-8b79-49123309a3bf.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:12 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4957", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"e4740efc748837c4fa4fd291af5e7a4f\"", + "Last-Modified": "Sun, 08 Sep 2019 07:21:20 GMT", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF76:0A33:C5507A:E72820:5D74AC9C" + } + }, + "uuid": "029a5710-e19a-4db2-8b79-49123309a3bf", + "persistent": true, + "scenarioName": "scenario-1-repos-github-api-test-org-github-api", + "requiredScenarioState": "scenario-1-repos-github-api-test-org-github-api-2", + "insertionIndex": 11 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/mappings/repos_github-api-test-org_github-api-3-1efd2a.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/mappings/repos_github-api-test-org_github-api-3-1efd2a.json new file mode 100644 index 0000000000..cdc678a592 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/mappings/repos_github-api-test-org_github-api-3-1efd2a.json @@ -0,0 +1,46 @@ +{ + "id": "1efd2ad4-e334-47e1-aaa8-8588bb117bb0", + "name": "repos_github-api-test-org_github-api", + "request": { + "url": "/repos/github-api-test-org/github-api", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api-1efd2ad4-e334-47e1-aaa8-8588bb117bb0.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:08 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4965", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"ca547e62bc7fe17adb3502e01ebf153d\"", + "Last-Modified": "Sun, 08 Sep 2019 07:21:20 GMT", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF76:0A33:C54F50:E726C1:5D74AC98" + } + }, + "uuid": "1efd2ad4-e334-47e1-aaa8-8588bb117bb0", + "persistent": true, + "scenarioName": "scenario-1-repos-github-api-test-org-github-api", + "requiredScenarioState": "Started", + "newScenarioState": "scenario-1-repos-github-api-test-org-github-api-2", + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/mappings/repos_github-api-test-org_github-api_pulls-12-0c75c0.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/mappings/repos_github-api-test-org_github-api_pulls-12-0c75c0.json new file mode 100644 index 0000000000..a2adb57c36 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/mappings/repos_github-api-test-org_github-api_pulls-12-0c75c0.json @@ -0,0 +1,42 @@ +{ + "id": "0c75c020-a12d-4d29-a43f-401e5d479b4a", + "name": "repos_github-api-test-org_github-api_pulls", + "request": { + "url": "/repos/github-api-test-org/github-api/pulls?state=open", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api_pulls-0c75c020-a12d-4d29-a43f-401e5d479b4a.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:12 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4956", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"83235f4a55a52ca3f71050891f545eff\"", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF76:0A33:C5509B:E7283A:5D74AC9C" + } + }, + "uuid": "0c75c020-a12d-4d29-a43f-401e5d479b4a", + "persistent": true, + "insertionIndex": 12 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/mappings/repos_github-api-test-org_github-api_pulls-4-7f2095.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/mappings/repos_github-api-test-org_github-api_pulls-4-7f2095.json new file mode 100644 index 0000000000..55035c4bdf --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/mappings/repos_github-api-test-org_github-api_pulls-4-7f2095.json @@ -0,0 +1,50 @@ +{ + "id": "7f209593-4b8d-4fc8-97e2-10704e6683b7", + "name": "repos_github-api-test-org_github-api_pulls", + "request": { + "url": "/repos/github-api-test-org/github-api/pulls", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"head\":\"test/stable\",\"maintainer_can_modify\":true,\"title\":\"testPullRequestReviews\",\"body\":\"## test\",\"base\":\"master\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "repos_github-api-test-org_github-api_pulls-7f209593-4b8d-4fc8-97e2-10704e6683b7.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:09 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4964", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"b0598a7316847a33e8c3d97547451bb9\"", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/github-api-test-org/github-api/pulls/258", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF76:0A33:C54F67:E726E5:5D74AC98" + } + }, + "uuid": "7f209593-4b8d-4fc8-97e2-10704e6683b7", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/mappings/repos_github-api-test-org_github-api_pulls_258-13-9406e5.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/mappings/repos_github-api-test-org_github-api_pulls_258-13-9406e5.json new file mode 100644 index 0000000000..8d6b5bb51f --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/mappings/repos_github-api-test-org_github-api_pulls_258-13-9406e5.json @@ -0,0 +1,49 @@ +{ + "id": "9406e54b-fdf7-40d5-a51b-3c27d7b050d8", + "name": "repos_github-api-test-org_github-api_pulls_258", + "request": { + "url": "/repos/github-api-test-org/github-api/pulls/258", + "method": "PATCH", + "bodyPatterns": [ + { + "equalToJson": "{\"state\":\"closed\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api_pulls_258-9406e54b-fdf7-40d5-a51b-3c27d7b050d8.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:13 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4955", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"88adcbc08092f5a33384d5818f3a59b8\"", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF76:0A33:C550A8:E72856:5D74AC9C" + } + }, + "uuid": "9406e54b-fdf7-40d5-a51b-3c27d7b050d8", + "persistent": true, + "insertionIndex": 13 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/mappings/repos_github-api-test-org_github-api_pulls_258_reviews-5-1fe517.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/mappings/repos_github-api-test-org_github-api_pulls_258_reviews-5-1fe517.json new file mode 100644 index 0000000000..e9efbd4a90 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/mappings/repos_github-api-test-org_github-api_pulls_258_reviews-5-1fe517.json @@ -0,0 +1,49 @@ +{ + "id": "1fe517d8-5707-4f17-a46a-e58d3abb5991", + "name": "repos_github-api-test-org_github-api_pulls_258_reviews", + "request": { + "url": "/repos/github-api-test-org/github-api/pulls/258/reviews", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"comments\":[{\"body\":\"Some niggle\",\"path\":\"README.md\",\"position\":1}],\"body\":\"Some draft review\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api_pulls_258_reviews-1fe517d8-5707-4f17-a46a-e58d3abb5991.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:10 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4963", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"661a313c46838fe76465f0af8e8c8d11\"", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF76:0A33:C54FA8:E7272B:5D74AC99" + } + }, + "uuid": "1fe517d8-5707-4f17-a46a-e58d3abb5991", + "persistent": true, + "insertionIndex": 5 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/mappings/repos_github-api-test-org_github-api_pulls_258_reviews-6-56d549.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/mappings/repos_github-api-test-org_github-api_pulls_258_reviews-6-56d549.json new file mode 100644 index 0000000000..23c91e4615 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/mappings/repos_github-api-test-org_github-api_pulls_258_reviews-6-56d549.json @@ -0,0 +1,42 @@ +{ + "id": "56d54933-fb91-4e3e-8baa-245b5b7db8b2", + "name": "repos_github-api-test-org_github-api_pulls_258_reviews", + "request": { + "url": "/repos/github-api-test-org/github-api/pulls/258/reviews", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api_pulls_258_reviews-56d54933-fb91-4e3e-8baa-245b5b7db8b2.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:10 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4962", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"826dd9da68be423cddfb11926f611eed\"", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF76:0A33:C54FD2:E72760:5D74AC9A" + } + }, + "uuid": "56d54933-fb91-4e3e-8baa-245b5b7db8b2", + "persistent": true, + "insertionIndex": 6 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/mappings/repos_github-api-test-org_github-api_pulls_258_reviews-9-be8b55.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/mappings/repos_github-api-test-org_github-api_pulls_258_reviews-9-be8b55.json new file mode 100644 index 0000000000..75db553511 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/mappings/repos_github-api-test-org_github-api_pulls_258_reviews-9-be8b55.json @@ -0,0 +1,49 @@ +{ + "id": "be8b553c-77cf-4904-9d74-92787d422007", + "name": "repos_github-api-test-org_github-api_pulls_258_reviews", + "request": { + "url": "/repos/github-api-test-org/github-api/pulls/258/reviews", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"comments\":[{\"body\":\"Some niggle\",\"path\":\"README.md\",\"position\":1}],\"body\":\"Some new review\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api_pulls_258_reviews-be8b553c-77cf-4904-9d74-92787d422007.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:11 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4959", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"5983db55f65865c2c1a33d7f3ac2e2b5\"", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF76:0A33:C55034:E727CF:5D74AC9B" + } + }, + "uuid": "be8b553c-77cf-4904-9d74-92787d422007", + "persistent": true, + "insertionIndex": 9 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/mappings/repos_github-api-test-org_github-api_pulls_258_reviews_285200956_comments-8-15c1e2.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/mappings/repos_github-api-test-org_github-api_pulls_258_reviews_285200956_comments-8-15c1e2.json new file mode 100644 index 0000000000..76af35947a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/mappings/repos_github-api-test-org_github-api_pulls_258_reviews_285200956_comments-8-15c1e2.json @@ -0,0 +1,42 @@ +{ + "id": "15c1e28b-6415-4c72-8a9a-bf0e88ca9364", + "name": "repos_github-api-test-org_github-api_pulls_258_reviews_285200956_comments", + "request": { + "url": "/repos/github-api-test-org/github-api/pulls/258/reviews/285200956/comments", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api_pulls_258_reviews_285200956_comments-15c1e28b-6415-4c72-8a9a-bf0e88ca9364.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:11 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4960", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"f277539431581bfcf4e28500219f25e5\"", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF76:0A33:C55023:E727BC:5D74AC9B" + } + }, + "uuid": "15c1e28b-6415-4c72-8a9a-bf0e88ca9364", + "persistent": true, + "insertionIndex": 8 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/mappings/repos_github-api-test-org_github-api_pulls_258_reviews_285200956_events-7-d0f59a.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/mappings/repos_github-api-test-org_github-api_pulls_258_reviews_285200956_events-7-d0f59a.json new file mode 100644 index 0000000000..4a98bc374c --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/mappings/repos_github-api-test-org_github-api_pulls_258_reviews_285200956_events-7-d0f59a.json @@ -0,0 +1,49 @@ +{ + "id": "d0f59a93-6a4d-4841-b4ec-a6b5d43747ea", + "name": "repos_github-api-test-org_github-api_pulls_258_reviews_285200956_events", + "request": { + "url": "/repos/github-api-test-org/github-api/pulls/258/reviews/285200956/events", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"body\":\"Some review comment\",\"event\":\"COMMENT\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api_pulls_258_reviews_285200956_events-d0f59a93-6a4d-4841-b4ec-a6b5d43747ea.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:11 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4961", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"e944fffdfb00bed59c6411e2d6ce4b56\"", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF76:0A33:C54FF2:E7277B:5D74AC9A" + } + }, + "uuid": "d0f59a93-6a4d-4841-b4ec-a6b5d43747ea", + "persistent": true, + "insertionIndex": 7 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/mappings/repos_github-api-test-org_github-api_pulls_258_reviews_285200957-10-886b3f.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/mappings/repos_github-api-test-org_github-api_pulls_258_reviews_285200957-10-886b3f.json new file mode 100644 index 0000000000..8ecbd6e7fe --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/mappings/repos_github-api-test-org_github-api_pulls_258_reviews_285200957-10-886b3f.json @@ -0,0 +1,42 @@ +{ + "id": "886b3f8b-a7c0-4844-95a5-3f674898edb0", + "name": "repos_github-api-test-org_github-api_pulls_258_reviews_285200957", + "request": { + "url": "/repos/github-api-test-org/github-api/pulls/258/reviews/285200957", + "method": "DELETE" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api_pulls_258_reviews_285200957-886b3f8b-a7c0-4844-95a5-3f674898edb0.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:12 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4958", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"5983db55f65865c2c1a33d7f3ac2e2b5\"", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF76:0A33:C55065:E72801:5D74AC9B" + } + }, + "uuid": "886b3f8b-a7c0-4844-95a5-3f674898edb0", + "persistent": true, + "insertionIndex": 10 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/mappings/user-1-e24b33.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/mappings/user-1-e24b33.json new file mode 100644 index 0000000000..5d24b56724 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviews/mappings/user-1-e24b33.json @@ -0,0 +1,43 @@ +{ + "id": "e24b3373-c9ca-4d6f-b8cc-93a9d7deb4d0", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-e24b3373-c9ca-4d6f-b8cc-93a9d7deb4d0.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:07 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4967", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"3ba1de3523043df743651bd23efc7def\"", + "Last-Modified": "Mon, 03 Jun 2019 17:47:20 GMT", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF76:0A33:C54F06:E7268A:5D74AC97" + } + }, + "uuid": "e24b3373-c9ca-4d6f-b8cc-93a9d7deb4d0", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/__files/orgs_github-api-test-org-9de3bb03-9dd4-4b5a-a2ac-20e02c951355.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/__files/orgs_github-api-test-org-9de3bb03-9dd4-4b5a-a2ac-20e02c951355.json new file mode 100644 index 0000000000..61547e3d98 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/__files/orgs_github-api-test-org-9de3bb03-9dd4-4b5a-a2ac-20e02c951355.json @@ -0,0 +1,41 @@ +{ + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "url": "https://api.github.com/orgs/github-api-test-org", + "repos_url": "https://api.github.com/orgs/github-api-test-org/repos", + "events_url": "https://api.github.com/orgs/github-api-test-org/events", + "hooks_url": "https://api.github.com/orgs/github-api-test-org/hooks", + "issues_url": "https://api.github.com/orgs/github-api-test-org/issues", + "members_url": "https://api.github.com/orgs/github-api-test-org/members{/member}", + "public_members_url": "https://api.github.com/orgs/github-api-test-org/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "description": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 9, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/github-api-test-org", + "created_at": "2014-05-10T19:39:11Z", + "updated_at": "2015-04-20T00:42:30Z", + "type": "Organization", + "total_private_repos": 0, + "owned_private_repos": 0, + "private_gists": 0, + "disk_usage": 132, + "collaborators": 0, + "billing_email": "kk@kohsuke.org", + "default_repository_permission": "none", + "members_can_create_repositories": false, + "two_factor_requirement_enabled": false, + "plan": { + "name": "free", + "space": 976562499, + "private_repos": 0, + "filled_seats": 3, + "seats": 0 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/__files/repos_github-api-test-org_github-api-684ed3a1-dca4-42f3-b25a-ebea733d4a02.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/__files/repos_github-api-test-org_github-api-684ed3a1-dca4-42f3-b25a-ebea733d4a02.json new file mode 100644 index 0000000000..dcfcb8b5cd --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/__files/repos_github-api-test-org_github-api-684ed3a1-dca4-42f3-b25a-ebea733d4a02.json @@ -0,0 +1,330 @@ +{ + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:21:20Z", + "pushed_at": "2019-09-08T07:24:16Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 2, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "parent": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-07T00:07:16Z", + "pushed_at": "2019-09-07T00:07:14Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 551, + "watchers_count": 551, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 551, + "default_branch": "master" + }, + "source": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-07T00:07:16Z", + "pushed_at": "2019-09-07T00:07:14Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 551, + "watchers_count": 551, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 551, + "default_branch": "master" + }, + "network_count": 427, + "subscribers_count": 0 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/__files/repos_github-api-test-org_github-api-f81e5019-7e7f-48df-803a-d47defd3f22d.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/__files/repos_github-api-test-org_github-api-f81e5019-7e7f-48df-803a-d47defd3f22d.json new file mode 100644 index 0000000000..3401cb9ae8 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/__files/repos_github-api-test-org_github-api-f81e5019-7e7f-48df-803a-d47defd3f22d.json @@ -0,0 +1,330 @@ +{ + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:21:20Z", + "pushed_at": "2019-09-08T07:24:09Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "parent": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-07T00:07:16Z", + "pushed_at": "2019-09-07T00:07:14Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 551, + "watchers_count": 551, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 551, + "default_branch": "master" + }, + "source": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-07T00:07:16Z", + "pushed_at": "2019-09-07T00:07:14Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 551, + "watchers_count": 551, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 551, + "default_branch": "master" + }, + "network_count": 427, + "subscribers_count": 0 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/__files/repos_github-api-test-org_github-api_pulls-4e73cd50-9986-426e-bf13-b7ad18f36be0.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/__files/repos_github-api-test-org_github-api_pulls-4e73cd50-9986-426e-bf13-b7ad18f36be0.json new file mode 100644 index 0000000000..cfa0e089f6 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/__files/repos_github-api-test-org_github-api_pulls-4e73cd50-9986-426e-bf13-b7ad18f36be0.json @@ -0,0 +1,656 @@ +[ + { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/260", + "id": 315252311, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzEx", + "html_url": "https://github.com/github-api-test-org/github-api/pull/260", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/260.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/260.patch", + "issue_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/260", + "number": 260, + "state": "open", + "locked": false, + "title": "queryPullRequestsQualifiedHead_rc", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "body": null, + "created_at": "2019-09-08T07:24:15Z", + "updated_at": "2019-09-08T07:24:15Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "19bec63f7d9c85ab85bc63733e3ed2ea7191faff", + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/260/commits", + "review_comments_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/260/comments", + "review_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/260/comments", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/14fa3698221f91613b9e1d809434326e5ed546af", + "head": { + "label": "github-api-test-org:test/rc", + "ref": "test/rc", + "sha": "14fa3698221f91613b9e1d809434326e5ed546af", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:21:20Z", + "pushed_at": "2019-09-08T07:24:16Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 2, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "github-api-test-org:master", + "ref": "master", + "sha": "3a09d2de4a9a1322a0ba2c3e2f54a919ca8fe353", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:21:20Z", + "pushed_at": "2019-09-08T07:24:16Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 2, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/260" + }, + "html": { + "href": "https://github.com/github-api-test-org/github-api/pull/260" + }, + "issue": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/260" + }, + "comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/260/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/260/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/260/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/statuses/14fa3698221f91613b9e1d809434326e5ed546af" + } + }, + "author_association": "MEMBER" + }, + { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/259", + "id": 315252310, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzEw", + "html_url": "https://github.com/github-api-test-org/github-api/pull/259", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/259.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/259.patch", + "issue_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/259", + "number": 259, + "state": "open", + "locked": false, + "title": "queryPullRequestsQualifiedHead_stable", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "body": null, + "created_at": "2019-09-08T07:24:14Z", + "updated_at": "2019-09-08T07:24:14Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "200d8ca1eb12dcc3f8bb86e3fcfd57e635539668", + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/259/commits", + "review_comments_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/259/comments", + "review_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/259/comments", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "head": { + "label": "github-api-test-org:test/stable", + "ref": "test/stable", + "sha": "2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:21:20Z", + "pushed_at": "2019-09-08T07:24:16Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 2, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "github-api-test-org:master", + "ref": "master", + "sha": "3a09d2de4a9a1322a0ba2c3e2f54a919ca8fe353", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:21:20Z", + "pushed_at": "2019-09-08T07:24:16Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 2, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/259" + }, + "html": { + "href": "https://github.com/github-api-test-org/github-api/pull/259" + }, + "issue": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/259" + }, + "comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/259/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/259/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/259/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/statuses/2d29c787b46ce61b98a1c13e05e21ebc21f49dbf" + } + }, + "author_association": "MEMBER" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/__files/repos_github-api-test-org_github-api_pulls-9afc3aa9-ac54-4c53-b5e3-3c0793558359.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/__files/repos_github-api-test-org_github-api_pulls-9afc3aa9-ac54-4c53-b5e3-3c0793558359.json new file mode 100644 index 0000000000..d829bec76b --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/__files/repos_github-api-test-org_github-api_pulls-9afc3aa9-ac54-4c53-b5e3-3c0793558359.json @@ -0,0 +1,339 @@ +{ + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/260", + "id": 315252311, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzEx", + "html_url": "https://github.com/github-api-test-org/github-api/pull/260", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/260.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/260.patch", + "issue_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/260", + "number": 260, + "state": "open", + "locked": false, + "title": "queryPullRequestsQualifiedHead_rc", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "body": null, + "created_at": "2019-09-08T07:24:15Z", + "updated_at": "2019-09-08T07:24:15Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/260/commits", + "review_comments_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/260/comments", + "review_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/260/comments", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/14fa3698221f91613b9e1d809434326e5ed546af", + "head": { + "label": "github-api-test-org:test/rc", + "ref": "test/rc", + "sha": "14fa3698221f91613b9e1d809434326e5ed546af", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:21:20Z", + "pushed_at": "2019-09-08T07:24:15Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 2, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "github-api-test-org:master", + "ref": "master", + "sha": "3a09d2de4a9a1322a0ba2c3e2f54a919ca8fe353", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:21:20Z", + "pushed_at": "2019-09-08T07:24:15Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 2, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/260" + }, + "html": { + "href": "https://github.com/github-api-test-org/github-api/pull/260" + }, + "issue": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/260" + }, + "comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/260/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/260/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/260/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/statuses/14fa3698221f91613b9e1d809434326e5ed546af" + } + }, + "author_association": "MEMBER", + "merged": false, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 1, + "deletions": 1, + "changed_files": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/__files/repos_github-api-test-org_github-api_pulls-a2c01b93-3f63-418c-bd0b-a5a61b96999f.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/__files/repos_github-api-test-org_github-api_pulls-a2c01b93-3f63-418c-bd0b-a5a61b96999f.json new file mode 100644 index 0000000000..3c0a633dd5 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/__files/repos_github-api-test-org_github-api_pulls-a2c01b93-3f63-418c-bd0b-a5a61b96999f.json @@ -0,0 +1,339 @@ +{ + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/259", + "id": 315252310, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzEw", + "html_url": "https://github.com/github-api-test-org/github-api/pull/259", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/259.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/259.patch", + "issue_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/259", + "number": 259, + "state": "open", + "locked": false, + "title": "queryPullRequestsQualifiedHead_stable", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "body": null, + "created_at": "2019-09-08T07:24:14Z", + "updated_at": "2019-09-08T07:24:14Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/259/commits", + "review_comments_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/259/comments", + "review_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/259/comments", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "head": { + "label": "github-api-test-org:test/stable", + "ref": "test/stable", + "sha": "2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:21:20Z", + "pushed_at": "2019-09-08T07:24:09Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "github-api-test-org:master", + "ref": "master", + "sha": "3a09d2de4a9a1322a0ba2c3e2f54a919ca8fe353", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:21:20Z", + "pushed_at": "2019-09-08T07:24:09Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/259" + }, + "html": { + "href": "https://github.com/github-api-test-org/github-api/pull/259" + }, + "issue": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/259" + }, + "comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/259/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/259/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/259/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/statuses/2d29c787b46ce61b98a1c13e05e21ebc21f49dbf" + } + }, + "author_association": "MEMBER", + "merged": false, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 1, + "deletions": 1, + "changed_files": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/__files/repos_github-api-test-org_github-api_pulls-ab74613d-0613-47a8-a6fc-34add77d9967.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/__files/repos_github-api-test-org_github-api_pulls-ab74613d-0613-47a8-a6fc-34add77d9967.json new file mode 100644 index 0000000000..8075ea44aa --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/__files/repos_github-api-test-org_github-api_pulls-ab74613d-0613-47a8-a6fc-34add77d9967.json @@ -0,0 +1,329 @@ +[ + { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/259", + "id": 315252310, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzEw", + "html_url": "https://github.com/github-api-test-org/github-api/pull/259", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/259.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/259.patch", + "issue_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/259", + "number": 259, + "state": "open", + "locked": false, + "title": "queryPullRequestsQualifiedHead_stable", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "body": null, + "created_at": "2019-09-08T07:24:14Z", + "updated_at": "2019-09-08T07:24:14Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "200d8ca1eb12dcc3f8bb86e3fcfd57e635539668", + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/259/commits", + "review_comments_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/259/comments", + "review_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/259/comments", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "head": { + "label": "github-api-test-org:test/stable", + "ref": "test/stable", + "sha": "2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:21:20Z", + "pushed_at": "2019-09-08T07:24:16Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 2, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "github-api-test-org:master", + "ref": "master", + "sha": "3a09d2de4a9a1322a0ba2c3e2f54a919ca8fe353", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:21:20Z", + "pushed_at": "2019-09-08T07:24:16Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 2, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/259" + }, + "html": { + "href": "https://github.com/github-api-test-org/github-api/pull/259" + }, + "issue": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/259" + }, + "comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/259/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/259/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/259/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/statuses/2d29c787b46ce61b98a1c13e05e21ebc21f49dbf" + } + }, + "author_association": "MEMBER" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/__files/repos_github-api-test-org_github-api_pulls_259-5f1852a8-2f93-46f0-a692-538bb386c436.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/__files/repos_github-api-test-org_github-api_pulls_259-5f1852a8-2f93-46f0-a692-538bb386c436.json new file mode 100644 index 0000000000..f8f2305c02 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/__files/repos_github-api-test-org_github-api_pulls_259-5f1852a8-2f93-46f0-a692-538bb386c436.json @@ -0,0 +1,339 @@ +{ + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/259", + "id": 315252310, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzEw", + "html_url": "https://github.com/github-api-test-org/github-api/pull/259", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/259.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/259.patch", + "issue_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/259", + "number": 259, + "state": "closed", + "locked": false, + "title": "queryPullRequestsQualifiedHead_stable", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "body": null, + "created_at": "2019-09-08T07:24:14Z", + "updated_at": "2019-09-08T07:24:17Z", + "closed_at": "2019-09-08T07:24:17Z", + "merged_at": null, + "merge_commit_sha": "200d8ca1eb12dcc3f8bb86e3fcfd57e635539668", + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/259/commits", + "review_comments_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/259/comments", + "review_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/259/comments", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "head": { + "label": "github-api-test-org:test/stable", + "ref": "test/stable", + "sha": "2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:21:20Z", + "pushed_at": "2019-09-08T07:24:16Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "github-api-test-org:master", + "ref": "master", + "sha": "3a09d2de4a9a1322a0ba2c3e2f54a919ca8fe353", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:21:20Z", + "pushed_at": "2019-09-08T07:24:16Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/259" + }, + "html": { + "href": "https://github.com/github-api-test-org/github-api/pull/259" + }, + "issue": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/259" + }, + "comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/259/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/259/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/259/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/statuses/2d29c787b46ce61b98a1c13e05e21ebc21f49dbf" + } + }, + "author_association": "MEMBER", + "merged": false, + "mergeable": true, + "rebaseable": true, + "mergeable_state": "clean", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 1, + "deletions": 1, + "changed_files": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/__files/repos_github-api-test-org_github-api_pulls_260-6162e3a9-487d-475a-a4e1-f037c796baf5.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/__files/repos_github-api-test-org_github-api_pulls_260-6162e3a9-487d-475a-a4e1-f037c796baf5.json new file mode 100644 index 0000000000..f398abc90f --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/__files/repos_github-api-test-org_github-api_pulls_260-6162e3a9-487d-475a-a4e1-f037c796baf5.json @@ -0,0 +1,339 @@ +{ + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/260", + "id": 315252311, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzEx", + "html_url": "https://github.com/github-api-test-org/github-api/pull/260", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/260.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/260.patch", + "issue_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/260", + "number": 260, + "state": "closed", + "locked": false, + "title": "queryPullRequestsQualifiedHead_rc", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "body": null, + "created_at": "2019-09-08T07:24:15Z", + "updated_at": "2019-09-08T07:24:16Z", + "closed_at": "2019-09-08T07:24:16Z", + "merged_at": null, + "merge_commit_sha": "19bec63f7d9c85ab85bc63733e3ed2ea7191faff", + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/260/commits", + "review_comments_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/260/comments", + "review_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/260/comments", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/14fa3698221f91613b9e1d809434326e5ed546af", + "head": { + "label": "github-api-test-org:test/rc", + "ref": "test/rc", + "sha": "14fa3698221f91613b9e1d809434326e5ed546af", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:21:20Z", + "pushed_at": "2019-09-08T07:24:16Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "github-api-test-org:master", + "ref": "master", + "sha": "3a09d2de4a9a1322a0ba2c3e2f54a919ca8fe353", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:21:20Z", + "pushed_at": "2019-09-08T07:24:16Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/260" + }, + "html": { + "href": "https://github.com/github-api-test-org/github-api/pull/260" + }, + "issue": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/260" + }, + "comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/260/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/260/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/260/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/statuses/14fa3698221f91613b9e1d809434326e5ed546af" + } + }, + "author_association": "MEMBER", + "merged": false, + "mergeable": true, + "rebaseable": true, + "mergeable_state": "clean", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 1, + "deletions": 1, + "changed_files": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/__files/user-4966fe2a-d81e-4b83-acd4-b1c3e2f4f684.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/__files/user-4966fe2a-d81e-4b83-acd4-b1c3e2f4f684.json new file mode 100644 index 0000000000..b9ce24cb03 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/__files/user-4966fe2a-d81e-4b83-acd4-b1c3e2f4f684.json @@ -0,0 +1,33 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 166, + "public_gists": 4, + "followers": 133, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-06-03T17:47:20Z" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/mappings/orgs_github-api-test-org-2-9de3bb.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/mappings/orgs_github-api-test-org-2-9de3bb.json new file mode 100644 index 0000000000..ec9b01bf97 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/mappings/orgs_github-api-test-org-2-9de3bb.json @@ -0,0 +1,43 @@ +{ + "id": "9de3bb03-9dd4-4b5a-a2ac-20e02c951355", + "name": "orgs_github-api-test-org", + "request": { + "url": "/orgs/github-api-test-org", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_github-api-test-org-9de3bb03-9dd4-4b5a-a2ac-20e02c951355.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:14 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4953", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"d36965e157281b2a309c39e4c2343a55\"", + "Last-Modified": "Mon, 20 Apr 2015 00:42:30 GMT", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF7B:0A32:A2F2F7:BFBF46:5D74AC9D" + } + }, + "uuid": "9de3bb03-9dd4-4b5a-a2ac-20e02c951355", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/mappings/repos_github-api-test-org_github-api-3-f81e50.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/mappings/repos_github-api-test-org_github-api-3-f81e50.json new file mode 100644 index 0000000000..5279b553ba --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/mappings/repos_github-api-test-org_github-api-3-f81e50.json @@ -0,0 +1,46 @@ +{ + "id": "f81e5019-7e7f-48df-803a-d47defd3f22d", + "name": "repos_github-api-test-org_github-api", + "request": { + "url": "/repos/github-api-test-org/github-api", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api-f81e5019-7e7f-48df-803a-d47defd3f22d.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:14 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4952", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"dd8239fd64940b7b3ae7153454774220\"", + "Last-Modified": "Sun, 08 Sep 2019 07:21:20 GMT", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF7B:0A32:A2F30A:BFBF5B:5D74AC9E" + } + }, + "uuid": "f81e5019-7e7f-48df-803a-d47defd3f22d", + "persistent": true, + "scenarioName": "scenario-1-repos-github-api-test-org-github-api", + "requiredScenarioState": "Started", + "newScenarioState": "scenario-1-repos-github-api-test-org-github-api-2", + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/mappings/repos_github-api-test-org_github-api-7-684ed3.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/mappings/repos_github-api-test-org_github-api-7-684ed3.json new file mode 100644 index 0000000000..4a4d189127 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/mappings/repos_github-api-test-org_github-api-7-684ed3.json @@ -0,0 +1,45 @@ +{ + "id": "684ed3a1-dca4-42f3-b25a-ebea733d4a02", + "name": "repos_github-api-test-org_github-api", + "request": { + "url": "/repos/github-api-test-org/github-api", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api-684ed3a1-dca4-42f3-b25a-ebea733d4a02.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:16 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4948", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"195f97272e555453610aa257d5fb5b9a\"", + "Last-Modified": "Sun, 08 Sep 2019 07:21:20 GMT", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF7B:0A32:A2F3D8:BFC036:5D74ACA0" + } + }, + "uuid": "684ed3a1-dca4-42f3-b25a-ebea733d4a02", + "persistent": true, + "scenarioName": "scenario-1-repos-github-api-test-org-github-api", + "requiredScenarioState": "scenario-1-repos-github-api-test-org-github-api-2", + "insertionIndex": 7 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/mappings/repos_github-api-test-org_github-api_pulls-4-a2c01b.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/mappings/repos_github-api-test-org_github-api_pulls-4-a2c01b.json new file mode 100644 index 0000000000..f2838213fb --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/mappings/repos_github-api-test-org_github-api_pulls-4-a2c01b.json @@ -0,0 +1,50 @@ +{ + "id": "a2c01b93-3f63-418c-bd0b-a5a61b96999f", + "name": "repos_github-api-test-org_github-api_pulls", + "request": { + "url": "/repos/github-api-test-org/github-api/pulls", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"head\":\"test/stable\",\"maintainer_can_modify\":true,\"title\":\"queryPullRequestsQualifiedHead_stable\",\"base\":\"master\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "repos_github-api-test-org_github-api_pulls-a2c01b93-3f63-418c-bd0b-a5a61b96999f.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:15 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4951", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"200d053663da19ab9669ae71ba616fa9\"", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/github-api-test-org/github-api/pulls/259", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF7B:0A32:A2F322:BFBF73:5D74AC9E" + } + }, + "uuid": "a2c01b93-3f63-418c-bd0b-a5a61b96999f", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/mappings/repos_github-api-test-org_github-api_pulls-5-9afc3a.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/mappings/repos_github-api-test-org_github-api_pulls-5-9afc3a.json new file mode 100644 index 0000000000..8f73ffc2c0 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/mappings/repos_github-api-test-org_github-api_pulls-5-9afc3a.json @@ -0,0 +1,50 @@ +{ + "id": "9afc3aa9-ac54-4c53-b5e3-3c0793558359", + "name": "repos_github-api-test-org_github-api_pulls", + "request": { + "url": "/repos/github-api-test-org/github-api/pulls", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"head\":\"test/rc\",\"maintainer_can_modify\":true,\"title\":\"queryPullRequestsQualifiedHead_rc\",\"base\":\"master\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "repos_github-api-test-org_github-api_pulls-9afc3aa9-ac54-4c53-b5e3-3c0793558359.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:16 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4950", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"a36f2b49526944ef83755f5a7c70a604\"", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/github-api-test-org/github-api/pulls/260", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF7B:0A32:A2F361:BFBFB7:5D74AC9F" + } + }, + "uuid": "9afc3aa9-ac54-4c53-b5e3-3c0793558359", + "persistent": true, + "insertionIndex": 5 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/mappings/repos_github-api-test-org_github-api_pulls-6-ab7461.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/mappings/repos_github-api-test-org_github-api_pulls-6-ab7461.json new file mode 100644 index 0000000000..a254cee38f --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/mappings/repos_github-api-test-org_github-api_pulls-6-ab7461.json @@ -0,0 +1,42 @@ +{ + "id": "ab74613d-0613-47a8-a6fc-34add77d9967", + "name": "repos_github-api-test-org_github-api_pulls", + "request": { + "url": "/repos/github-api-test-org/github-api/pulls?state=open&head=github-api-test-org%3Atest%2Fstable&base=master", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api_pulls-ab74613d-0613-47a8-a6fc-34add77d9967.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:16 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4949", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"eabad54ec37a46eaa61190e8372ad147\"", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF7B:0A32:A2F3C1:BFC015:5D74ACA0" + } + }, + "uuid": "ab74613d-0613-47a8-a6fc-34add77d9967", + "persistent": true, + "insertionIndex": 6 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/mappings/repos_github-api-test-org_github-api_pulls-8-4e73cd.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/mappings/repos_github-api-test-org_github-api_pulls-8-4e73cd.json new file mode 100644 index 0000000000..e0e6510bb8 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/mappings/repos_github-api-test-org_github-api_pulls-8-4e73cd.json @@ -0,0 +1,42 @@ +{ + "id": "4e73cd50-9986-426e-bf13-b7ad18f36be0", + "name": "repos_github-api-test-org_github-api_pulls", + "request": { + "url": "/repos/github-api-test-org/github-api/pulls?state=open", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api_pulls-4e73cd50-9986-426e-bf13-b7ad18f36be0.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:16 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4947", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"19efb7691278d0c8f8c7d905df960345\"", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF7B:0A32:A2F3E9:BFC049:5D74ACA0" + } + }, + "uuid": "4e73cd50-9986-426e-bf13-b7ad18f36be0", + "persistent": true, + "insertionIndex": 8 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/mappings/repos_github-api-test-org_github-api_pulls_259-10-5f1852.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/mappings/repos_github-api-test-org_github-api_pulls_259-10-5f1852.json new file mode 100644 index 0000000000..8840b21efe --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/mappings/repos_github-api-test-org_github-api_pulls_259-10-5f1852.json @@ -0,0 +1,49 @@ +{ + "id": "5f1852a8-2f93-46f0-a692-538bb386c436", + "name": "repos_github-api-test-org_github-api_pulls_259", + "request": { + "url": "/repos/github-api-test-org/github-api/pulls/259", + "method": "PATCH", + "bodyPatterns": [ + { + "equalToJson": "{\"state\":\"closed\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api_pulls_259-5f1852a8-2f93-46f0-a692-538bb386c436.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:17 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4945", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"2309da07084fba85129298a8e2214bce\"", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF7B:0A32:A2F423:BFC084:5D74ACA1" + } + }, + "uuid": "5f1852a8-2f93-46f0-a692-538bb386c436", + "persistent": true, + "insertionIndex": 10 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/mappings/repos_github-api-test-org_github-api_pulls_260-9-6162e3.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/mappings/repos_github-api-test-org_github-api_pulls_260-9-6162e3.json new file mode 100644 index 0000000000..6e06c94ed5 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/mappings/repos_github-api-test-org_github-api_pulls_260-9-6162e3.json @@ -0,0 +1,49 @@ +{ + "id": "6162e3a9-487d-475a-a4e1-f037c796baf5", + "name": "repos_github-api-test-org_github-api_pulls_260", + "request": { + "url": "/repos/github-api-test-org/github-api/pulls/260", + "method": "PATCH", + "bodyPatterns": [ + { + "equalToJson": "{\"state\":\"closed\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api_pulls_260-6162e3a9-487d-475a-a4e1-f037c796baf5.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:17 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4946", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"f86a3bd8b1787cf9c3f673c69e2456c1\"", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF7B:0A32:A2F3FA:BFC05B:5D74ACA0" + } + }, + "uuid": "6162e3a9-487d-475a-a4e1-f037c796baf5", + "persistent": true, + "insertionIndex": 9 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/mappings/user-1-4966fe.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/mappings/user-1-4966fe.json new file mode 100644 index 0000000000..052ab510ef --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsQualifiedHead/mappings/user-1-4966fe.json @@ -0,0 +1,43 @@ +{ + "id": "4966fe2a-d81e-4b83-acd4-b1c3e2f4f684", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-4966fe2a-d81e-4b83-acd4-b1c3e2f4f684.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:13 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4954", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"3ba1de3523043df743651bd23efc7def\"", + "Last-Modified": "Mon, 03 Jun 2019 17:47:20 GMT", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF7B:0A32:A2F2ED:BFBF37:5D74AC9D" + } + }, + "uuid": "4966fe2a-d81e-4b83-acd4-b1c3e2f4f684", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/__files/orgs_github-api-test-org-80e70ac1-7d85-4431-a004-1c16dd3def5c.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/__files/orgs_github-api-test-org-80e70ac1-7d85-4431-a004-1c16dd3def5c.json new file mode 100644 index 0000000000..61547e3d98 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/__files/orgs_github-api-test-org-80e70ac1-7d85-4431-a004-1c16dd3def5c.json @@ -0,0 +1,41 @@ +{ + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "url": "https://api.github.com/orgs/github-api-test-org", + "repos_url": "https://api.github.com/orgs/github-api-test-org/repos", + "events_url": "https://api.github.com/orgs/github-api-test-org/events", + "hooks_url": "https://api.github.com/orgs/github-api-test-org/hooks", + "issues_url": "https://api.github.com/orgs/github-api-test-org/issues", + "members_url": "https://api.github.com/orgs/github-api-test-org/members{/member}", + "public_members_url": "https://api.github.com/orgs/github-api-test-org/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "description": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 9, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/github-api-test-org", + "created_at": "2014-05-10T19:39:11Z", + "updated_at": "2015-04-20T00:42:30Z", + "type": "Organization", + "total_private_repos": 0, + "owned_private_repos": 0, + "private_gists": 0, + "disk_usage": 132, + "collaborators": 0, + "billing_email": "kk@kohsuke.org", + "default_repository_permission": "none", + "members_can_create_repositories": false, + "two_factor_requirement_enabled": false, + "plan": { + "name": "free", + "space": 976562499, + "private_repos": 0, + "filled_seats": 3, + "seats": 0 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/__files/repos_github-api-test-org_github-api-10e587d7-cc44-4965-a559-261991a6a1d7.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/__files/repos_github-api-test-org_github-api-10e587d7-cc44-4965-a559-261991a6a1d7.json new file mode 100644 index 0000000000..abb5e892c6 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/__files/repos_github-api-test-org_github-api-10e587d7-cc44-4965-a559-261991a6a1d7.json @@ -0,0 +1,330 @@ +{ + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:28Z", + "pushed_at": "2019-09-08T07:24:54Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "parent": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-07T00:07:16Z", + "pushed_at": "2019-09-07T00:07:14Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 551, + "watchers_count": 551, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 551, + "default_branch": "master" + }, + "source": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-07T00:07:16Z", + "pushed_at": "2019-09-07T00:07:14Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 551, + "watchers_count": 551, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 551, + "default_branch": "master" + }, + "network_count": 427, + "subscribers_count": 0 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/__files/repos_github-api-test-org_github-api-db8422da-0a10-42a5-94f4-3c694b2baaf0.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/__files/repos_github-api-test-org_github-api-db8422da-0a10-42a5-94f4-3c694b2baaf0.json new file mode 100644 index 0000000000..423e15ee06 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/__files/repos_github-api-test-org_github-api-db8422da-0a10-42a5-94f4-3c694b2baaf0.json @@ -0,0 +1,330 @@ +{ + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:56Z", + "pushed_at": "2019-09-08T07:24:57Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 2, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "parent": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-07T00:07:16Z", + "pushed_at": "2019-09-07T00:07:14Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 551, + "watchers_count": 551, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 551, + "default_branch": "master" + }, + "source": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-07T00:07:16Z", + "pushed_at": "2019-09-07T00:07:14Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 551, + "watchers_count": 551, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 551, + "default_branch": "master" + }, + "network_count": 427, + "subscribers_count": 0 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/__files/repos_github-api-test-org_github-api_pulls-37334410-0027-4784-b4d5-4a1e4b6e3174.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/__files/repos_github-api-test-org_github-api_pulls-37334410-0027-4784-b4d5-4a1e4b6e3174.json new file mode 100644 index 0000000000..c16bb3863f --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/__files/repos_github-api-test-org_github-api_pulls-37334410-0027-4784-b4d5-4a1e4b6e3174.json @@ -0,0 +1,339 @@ +{ + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/269", + "id": 315252352, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzUy", + "html_url": "https://github.com/github-api-test-org/github-api/pull/269", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/269.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/269.patch", + "issue_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/269", + "number": 269, + "state": "open", + "locked": false, + "title": "queryPullRequestsUnqualifiedHead_rc", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "body": null, + "created_at": "2019-09-08T07:24:56Z", + "updated_at": "2019-09-08T07:24:56Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/269/commits", + "review_comments_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/269/comments", + "review_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/269/comments", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/14fa3698221f91613b9e1d809434326e5ed546af", + "head": { + "label": "github-api-test-org:test/rc", + "ref": "test/rc", + "sha": "14fa3698221f91613b9e1d809434326e5ed546af", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:56Z", + "pushed_at": "2019-09-08T07:24:56Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 2, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "github-api-test-org:master", + "ref": "master", + "sha": "ecec449372b1e8270524a35c1a5aa8fdaf0e6676", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:56Z", + "pushed_at": "2019-09-08T07:24:56Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 2, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/269" + }, + "html": { + "href": "https://github.com/github-api-test-org/github-api/pull/269" + }, + "issue": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/269" + }, + "comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/269/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/269/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/269/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/statuses/14fa3698221f91613b9e1d809434326e5ed546af" + } + }, + "author_association": "MEMBER", + "merged": false, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 1, + "deletions": 1, + "changed_files": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/__files/repos_github-api-test-org_github-api_pulls-3d58d4ba-d752-421e-acdc-6fea50e3311a.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/__files/repos_github-api-test-org_github-api_pulls-3d58d4ba-d752-421e-acdc-6fea50e3311a.json new file mode 100644 index 0000000000..0247c1eacf --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/__files/repos_github-api-test-org_github-api_pulls-3d58d4ba-d752-421e-acdc-6fea50e3311a.json @@ -0,0 +1,329 @@ +[ + { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/268", + "id": 315252350, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzUw", + "html_url": "https://github.com/github-api-test-org/github-api/pull/268", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/268.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/268.patch", + "issue_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/268", + "number": 268, + "state": "open", + "locked": false, + "title": "queryPullRequestsUnqualifiedHead_stable", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "body": null, + "created_at": "2019-09-08T07:24:56Z", + "updated_at": "2019-09-08T07:24:56Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "2c242ae5e2c405932dd5989e3dd7b91fce51f55d", + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/268/commits", + "review_comments_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/268/comments", + "review_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/268/comments", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "head": { + "label": "github-api-test-org:test/stable", + "ref": "test/stable", + "sha": "2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:56Z", + "pushed_at": "2019-09-08T07:24:56Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 2, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "github-api-test-org:master", + "ref": "master", + "sha": "ecec449372b1e8270524a35c1a5aa8fdaf0e6676", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:56Z", + "pushed_at": "2019-09-08T07:24:56Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 2, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/268" + }, + "html": { + "href": "https://github.com/github-api-test-org/github-api/pull/268" + }, + "issue": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/268" + }, + "comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/268/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/268/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/268/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/statuses/2d29c787b46ce61b98a1c13e05e21ebc21f49dbf" + } + }, + "author_association": "MEMBER" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/__files/repos_github-api-test-org_github-api_pulls-cc03923a-acb0-4c40-ae5a-3d7a9b406ce3.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/__files/repos_github-api-test-org_github-api_pulls-cc03923a-acb0-4c40-ae5a-3d7a9b406ce3.json new file mode 100644 index 0000000000..1b92014d99 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/__files/repos_github-api-test-org_github-api_pulls-cc03923a-acb0-4c40-ae5a-3d7a9b406ce3.json @@ -0,0 +1,339 @@ +{ + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/268", + "id": 315252350, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzUw", + "html_url": "https://github.com/github-api-test-org/github-api/pull/268", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/268.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/268.patch", + "issue_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/268", + "number": 268, + "state": "open", + "locked": false, + "title": "queryPullRequestsUnqualifiedHead_stable", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "body": null, + "created_at": "2019-09-08T07:24:56Z", + "updated_at": "2019-09-08T07:24:56Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/268/commits", + "review_comments_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/268/comments", + "review_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/268/comments", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "head": { + "label": "github-api-test-org:test/stable", + "ref": "test/stable", + "sha": "2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:28Z", + "pushed_at": "2019-09-08T07:24:54Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "github-api-test-org:master", + "ref": "master", + "sha": "ecec449372b1e8270524a35c1a5aa8fdaf0e6676", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:28Z", + "pushed_at": "2019-09-08T07:24:54Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/268" + }, + "html": { + "href": "https://github.com/github-api-test-org/github-api/pull/268" + }, + "issue": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/268" + }, + "comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/268/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/268/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/268/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/statuses/2d29c787b46ce61b98a1c13e05e21ebc21f49dbf" + } + }, + "author_association": "MEMBER", + "merged": false, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 1, + "deletions": 1, + "changed_files": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/__files/repos_github-api-test-org_github-api_pulls-cfa90ef7-9496-4f77-b239-adf88ad5dd64.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/__files/repos_github-api-test-org_github-api_pulls-cfa90ef7-9496-4f77-b239-adf88ad5dd64.json new file mode 100644 index 0000000000..1106096230 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/__files/repos_github-api-test-org_github-api_pulls-cfa90ef7-9496-4f77-b239-adf88ad5dd64.json @@ -0,0 +1,656 @@ +[ + { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/268", + "id": 315252350, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzUw", + "html_url": "https://github.com/github-api-test-org/github-api/pull/268", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/268.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/268.patch", + "issue_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/268", + "number": 268, + "state": "open", + "locked": false, + "title": "queryPullRequestsUnqualifiedHead_stable", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "body": null, + "created_at": "2019-09-08T07:24:56Z", + "updated_at": "2019-09-08T07:24:56Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "2c242ae5e2c405932dd5989e3dd7b91fce51f55d", + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/268/commits", + "review_comments_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/268/comments", + "review_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/268/comments", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "head": { + "label": "github-api-test-org:test/stable", + "ref": "test/stable", + "sha": "2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:56Z", + "pushed_at": "2019-09-08T07:24:57Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 2, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "github-api-test-org:master", + "ref": "master", + "sha": "ecec449372b1e8270524a35c1a5aa8fdaf0e6676", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:56Z", + "pushed_at": "2019-09-08T07:24:57Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 2, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/268" + }, + "html": { + "href": "https://github.com/github-api-test-org/github-api/pull/268" + }, + "issue": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/268" + }, + "comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/268/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/268/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/268/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/statuses/2d29c787b46ce61b98a1c13e05e21ebc21f49dbf" + } + }, + "author_association": "MEMBER" + }, + { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/269", + "id": 315252352, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzUy", + "html_url": "https://github.com/github-api-test-org/github-api/pull/269", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/269.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/269.patch", + "issue_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/269", + "number": 269, + "state": "open", + "locked": false, + "title": "queryPullRequestsUnqualifiedHead_rc", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "body": null, + "created_at": "2019-09-08T07:24:56Z", + "updated_at": "2019-09-08T07:24:56Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "cdd87d5e48ad367ff6e4822eaebb62e688892f8f", + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/269/commits", + "review_comments_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/269/comments", + "review_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/269/comments", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/14fa3698221f91613b9e1d809434326e5ed546af", + "head": { + "label": "github-api-test-org:test/rc", + "ref": "test/rc", + "sha": "14fa3698221f91613b9e1d809434326e5ed546af", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:56Z", + "pushed_at": "2019-09-08T07:24:57Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 2, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "github-api-test-org:master", + "ref": "master", + "sha": "ecec449372b1e8270524a35c1a5aa8fdaf0e6676", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:56Z", + "pushed_at": "2019-09-08T07:24:57Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 2, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/269" + }, + "html": { + "href": "https://github.com/github-api-test-org/github-api/pull/269" + }, + "issue": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/269" + }, + "comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/269/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/269/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/269/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/statuses/14fa3698221f91613b9e1d809434326e5ed546af" + } + }, + "author_association": "MEMBER" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/__files/repos_github-api-test-org_github-api_pulls_268-08817e59-cbfd-4e89-9e60-707e4ee940e6.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/__files/repos_github-api-test-org_github-api_pulls_268-08817e59-cbfd-4e89-9e60-707e4ee940e6.json new file mode 100644 index 0000000000..0b8e1d6a3e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/__files/repos_github-api-test-org_github-api_pulls_268-08817e59-cbfd-4e89-9e60-707e4ee940e6.json @@ -0,0 +1,339 @@ +{ + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/268", + "id": 315252350, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzUw", + "html_url": "https://github.com/github-api-test-org/github-api/pull/268", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/268.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/268.patch", + "issue_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/268", + "number": 268, + "state": "closed", + "locked": false, + "title": "queryPullRequestsUnqualifiedHead_stable", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "body": null, + "created_at": "2019-09-08T07:24:56Z", + "updated_at": "2019-09-08T07:24:58Z", + "closed_at": "2019-09-08T07:24:58Z", + "merged_at": null, + "merge_commit_sha": "2c242ae5e2c405932dd5989e3dd7b91fce51f55d", + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/268/commits", + "review_comments_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/268/comments", + "review_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/268/comments", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "head": { + "label": "github-api-test-org:test/stable", + "ref": "test/stable", + "sha": "2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:56Z", + "pushed_at": "2019-09-08T07:24:57Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "github-api-test-org:master", + "ref": "master", + "sha": "ecec449372b1e8270524a35c1a5aa8fdaf0e6676", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:56Z", + "pushed_at": "2019-09-08T07:24:57Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/268" + }, + "html": { + "href": "https://github.com/github-api-test-org/github-api/pull/268" + }, + "issue": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/268" + }, + "comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/268/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/268/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/268/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/statuses/2d29c787b46ce61b98a1c13e05e21ebc21f49dbf" + } + }, + "author_association": "MEMBER", + "merged": false, + "mergeable": true, + "rebaseable": true, + "mergeable_state": "clean", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 1, + "deletions": 1, + "changed_files": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/__files/repos_github-api-test-org_github-api_pulls_269-b5427c9e-53f5-4301-a757-4c9a349ee97d.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/__files/repos_github-api-test-org_github-api_pulls_269-b5427c9e-53f5-4301-a757-4c9a349ee97d.json new file mode 100644 index 0000000000..dc16d328fd --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/__files/repos_github-api-test-org_github-api_pulls_269-b5427c9e-53f5-4301-a757-4c9a349ee97d.json @@ -0,0 +1,339 @@ +{ + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/269", + "id": 315252352, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzUy", + "html_url": "https://github.com/github-api-test-org/github-api/pull/269", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/269.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/269.patch", + "issue_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/269", + "number": 269, + "state": "closed", + "locked": false, + "title": "queryPullRequestsUnqualifiedHead_rc", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "body": null, + "created_at": "2019-09-08T07:24:56Z", + "updated_at": "2019-09-08T07:24:59Z", + "closed_at": "2019-09-08T07:24:59Z", + "merged_at": null, + "merge_commit_sha": "cdd87d5e48ad367ff6e4822eaebb62e688892f8f", + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/269/commits", + "review_comments_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/269/comments", + "review_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/269/comments", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/14fa3698221f91613b9e1d809434326e5ed546af", + "head": { + "label": "github-api-test-org:test/rc", + "ref": "test/rc", + "sha": "14fa3698221f91613b9e1d809434326e5ed546af", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:56Z", + "pushed_at": "2019-09-08T07:24:57Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "github-api-test-org:master", + "ref": "master", + "sha": "ecec449372b1e8270524a35c1a5aa8fdaf0e6676", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:56Z", + "pushed_at": "2019-09-08T07:24:57Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/269" + }, + "html": { + "href": "https://github.com/github-api-test-org/github-api/pull/269" + }, + "issue": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/269" + }, + "comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/269/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/269/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/269/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/statuses/14fa3698221f91613b9e1d809434326e5ed546af" + } + }, + "author_association": "MEMBER", + "merged": false, + "mergeable": true, + "rebaseable": true, + "mergeable_state": "clean", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 1, + "deletions": 1, + "changed_files": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/__files/user-69a2a995-8642-477e-aafe-59a7869f4ae9.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/__files/user-69a2a995-8642-477e-aafe-59a7869f4ae9.json new file mode 100644 index 0000000000..b9ce24cb03 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/__files/user-69a2a995-8642-477e-aafe-59a7869f4ae9.json @@ -0,0 +1,33 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 166, + "public_gists": 4, + "followers": 133, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-06-03T17:47:20Z" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/mappings/orgs_github-api-test-org-2-80e70a.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/mappings/orgs_github-api-test-org-2-80e70a.json new file mode 100644 index 0000000000..5e19b09bcc --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/mappings/orgs_github-api-test-org-2-80e70a.json @@ -0,0 +1,43 @@ +{ + "id": "80e70ac1-7d85-4431-a004-1c16dd3def5c", + "name": "orgs_github-api-test-org", + "request": { + "url": "/orgs/github-api-test-org", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_github-api-test-org-80e70ac1-7d85-4431-a004-1c16dd3def5c.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:55 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4858", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"d36965e157281b2a309c39e4c2343a55\"", + "Last-Modified": "Mon, 20 Apr 2015 00:42:30 GMT", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF97:15CE:D306F4:F66E77:5D74ACC7" + } + }, + "uuid": "80e70ac1-7d85-4431-a004-1c16dd3def5c", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/mappings/repos_github-api-test-org_github-api-3-10e587.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/mappings/repos_github-api-test-org_github-api-3-10e587.json new file mode 100644 index 0000000000..1ad0c7340c --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/mappings/repos_github-api-test-org_github-api-3-10e587.json @@ -0,0 +1,46 @@ +{ + "id": "10e587d7-cc44-4965-a559-261991a6a1d7", + "name": "repos_github-api-test-org_github-api", + "request": { + "url": "/repos/github-api-test-org/github-api", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api-10e587d7-cc44-4965-a559-261991a6a1d7.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:55 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4857", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"17b3b848c656ff5666591ae88958ffa7\"", + "Last-Modified": "Sun, 08 Sep 2019 07:24:28 GMT", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF97:15CE:D30704:F66E89:5D74ACC7" + } + }, + "uuid": "10e587d7-cc44-4965-a559-261991a6a1d7", + "persistent": true, + "scenarioName": "scenario-1-repos-github-api-test-org-github-api", + "requiredScenarioState": "Started", + "newScenarioState": "scenario-1-repos-github-api-test-org-github-api-2", + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/mappings/repos_github-api-test-org_github-api-7-db8422.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/mappings/repos_github-api-test-org_github-api-7-db8422.json new file mode 100644 index 0000000000..0cc3d7093b --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/mappings/repos_github-api-test-org_github-api-7-db8422.json @@ -0,0 +1,45 @@ +{ + "id": "db8422da-0a10-42a5-94f4-3c694b2baaf0", + "name": "repos_github-api-test-org_github-api", + "request": { + "url": "/repos/github-api-test-org/github-api", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api-db8422da-0a10-42a5-94f4-3c694b2baaf0.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:57 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4853", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"ab67447ee4109501e0b55705cb0b9d80\"", + "Last-Modified": "Sun, 08 Sep 2019 07:24:56 GMT", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF97:15CE:D307CF:F66F69:5D74ACC9" + } + }, + "uuid": "db8422da-0a10-42a5-94f4-3c694b2baaf0", + "persistent": true, + "scenarioName": "scenario-1-repos-github-api-test-org-github-api", + "requiredScenarioState": "scenario-1-repos-github-api-test-org-github-api-2", + "insertionIndex": 7 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/mappings/repos_github-api-test-org_github-api_pulls-4-cc0392.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/mappings/repos_github-api-test-org_github-api_pulls-4-cc0392.json new file mode 100644 index 0000000000..21ede2b63c --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/mappings/repos_github-api-test-org_github-api_pulls-4-cc0392.json @@ -0,0 +1,50 @@ +{ + "id": "cc03923a-acb0-4c40-ae5a-3d7a9b406ce3", + "name": "repos_github-api-test-org_github-api_pulls", + "request": { + "url": "/repos/github-api-test-org/github-api/pulls", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"head\":\"test/stable\",\"maintainer_can_modify\":true,\"title\":\"queryPullRequestsUnqualifiedHead_stable\",\"base\":\"master\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "repos_github-api-test-org_github-api_pulls-cc03923a-acb0-4c40-ae5a-3d7a9b406ce3.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:56 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4856", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"9e34ae02c80a426ed34b857b713bfb30\"", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/github-api-test-org/github-api/pulls/268", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF97:15CE:D30712:F66E9E:5D74ACC7" + } + }, + "uuid": "cc03923a-acb0-4c40-ae5a-3d7a9b406ce3", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/mappings/repos_github-api-test-org_github-api_pulls-5-373344.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/mappings/repos_github-api-test-org_github-api_pulls-5-373344.json new file mode 100644 index 0000000000..a697da5e50 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/mappings/repos_github-api-test-org_github-api_pulls-5-373344.json @@ -0,0 +1,50 @@ +{ + "id": "37334410-0027-4784-b4d5-4a1e4b6e3174", + "name": "repos_github-api-test-org_github-api_pulls", + "request": { + "url": "/repos/github-api-test-org/github-api/pulls", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"head\":\"test/rc\",\"maintainer_can_modify\":true,\"title\":\"queryPullRequestsUnqualifiedHead_rc\",\"base\":\"master\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "repos_github-api-test-org_github-api_pulls-37334410-0027-4784-b4d5-4a1e4b6e3174.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:57 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4855", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"e6bcc8ce97d56e22bf1aab9b388e3a68\"", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/github-api-test-org/github-api/pulls/269", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF97:15CE:D30765:F66EF8:5D74ACC8" + } + }, + "uuid": "37334410-0027-4784-b4d5-4a1e4b6e3174", + "persistent": true, + "insertionIndex": 5 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/mappings/repos_github-api-test-org_github-api_pulls-6-3d58d4.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/mappings/repos_github-api-test-org_github-api_pulls-6-3d58d4.json new file mode 100644 index 0000000000..6042f6b68e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/mappings/repos_github-api-test-org_github-api_pulls-6-3d58d4.json @@ -0,0 +1,42 @@ +{ + "id": "3d58d4ba-d752-421e-acdc-6fea50e3311a", + "name": "repos_github-api-test-org_github-api_pulls", + "request": { + "url": "/repos/github-api-test-org/github-api/pulls?state=open&head=github-api-test-org%3Atest%2Fstable&base=master", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api_pulls-3d58d4ba-d752-421e-acdc-6fea50e3311a.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:57 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4854", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"bca0c7921914918337495cf2c4997c21\"", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF97:15CE:D307A9:F66F48:5D74ACC9" + } + }, + "uuid": "3d58d4ba-d752-421e-acdc-6fea50e3311a", + "persistent": true, + "insertionIndex": 6 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/mappings/repos_github-api-test-org_github-api_pulls-8-cfa90e.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/mappings/repos_github-api-test-org_github-api_pulls-8-cfa90e.json new file mode 100644 index 0000000000..36edcf03fb --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/mappings/repos_github-api-test-org_github-api_pulls-8-cfa90e.json @@ -0,0 +1,42 @@ +{ + "id": "cfa90ef7-9496-4f77-b239-adf88ad5dd64", + "name": "repos_github-api-test-org_github-api_pulls", + "request": { + "url": "/repos/github-api-test-org/github-api/pulls?state=open", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api_pulls-cfa90ef7-9496-4f77-b239-adf88ad5dd64.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:58 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4852", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"f937ef67c4c56d9ae1f03ae5ba1e403a\"", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF97:15CE:D307F9:F66F9A:5D74ACC9" + } + }, + "uuid": "cfa90ef7-9496-4f77-b239-adf88ad5dd64", + "persistent": true, + "insertionIndex": 8 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/mappings/repos_github-api-test-org_github-api_pulls_268-9-08817e.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/mappings/repos_github-api-test-org_github-api_pulls_268-9-08817e.json new file mode 100644 index 0000000000..9a88abb80f --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/mappings/repos_github-api-test-org_github-api_pulls_268-9-08817e.json @@ -0,0 +1,49 @@ +{ + "id": "08817e59-cbfd-4e89-9e60-707e4ee940e6", + "name": "repos_github-api-test-org_github-api_pulls_268", + "request": { + "url": "/repos/github-api-test-org/github-api/pulls/268", + "method": "PATCH", + "bodyPatterns": [ + { + "equalToJson": "{\"state\":\"closed\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api_pulls_268-08817e59-cbfd-4e89-9e60-707e4ee940e6.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:58 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4851", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"049e282f4491dd6ff498e76ae345eacd\"", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF97:15CE:D30808:F66FBE:5D74ACCA" + } + }, + "uuid": "08817e59-cbfd-4e89-9e60-707e4ee940e6", + "persistent": true, + "insertionIndex": 9 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/mappings/repos_github-api-test-org_github-api_pulls_269-10-b5427c.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/mappings/repos_github-api-test-org_github-api_pulls_269-10-b5427c.json new file mode 100644 index 0000000000..bcca568981 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/mappings/repos_github-api-test-org_github-api_pulls_269-10-b5427c.json @@ -0,0 +1,49 @@ +{ + "id": "b5427c9e-53f5-4301-a757-4c9a349ee97d", + "name": "repos_github-api-test-org_github-api_pulls_269", + "request": { + "url": "/repos/github-api-test-org/github-api/pulls/269", + "method": "PATCH", + "bodyPatterns": [ + { + "equalToJson": "{\"state\":\"closed\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api_pulls_269-b5427c9e-53f5-4301-a757-4c9a349ee97d.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:59 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4850", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"c74d62cfa43b79092c075a2a83e725e6\"", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF97:15CE:D30839:F66FF0:5D74ACCA" + } + }, + "uuid": "b5427c9e-53f5-4301-a757-4c9a349ee97d", + "persistent": true, + "insertionIndex": 10 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/mappings/user-1-69a2a9.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/mappings/user-1-69a2a9.json new file mode 100644 index 0000000000..71cf13ec41 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/queryPullRequestsUnqualifiedHead/mappings/user-1-69a2a9.json @@ -0,0 +1,43 @@ +{ + "id": "69a2a995-8642-477e-aafe-59a7869f4ae9", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-69a2a995-8642-477e-aafe-59a7869f4ae9.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:55 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4859", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"3ba1de3523043df743651bd23efc7def\"", + "Last-Modified": "Mon, 03 Jun 2019 17:47:20 GMT", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF97:15CE:D306E9:F66E67:5D74ACC6" + } + }, + "uuid": "69a2a995-8642-477e-aafe-59a7869f4ae9", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/__files/orgs_github-api-test-org-41c140fe-0c07-406f-8a11-c8c4dad3ff91.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/__files/orgs_github-api-test-org-41c140fe-0c07-406f-8a11-c8c4dad3ff91.json new file mode 100644 index 0000000000..61547e3d98 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/__files/orgs_github-api-test-org-41c140fe-0c07-406f-8a11-c8c4dad3ff91.json @@ -0,0 +1,41 @@ +{ + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "url": "https://api.github.com/orgs/github-api-test-org", + "repos_url": "https://api.github.com/orgs/github-api-test-org/repos", + "events_url": "https://api.github.com/orgs/github-api-test-org/events", + "hooks_url": "https://api.github.com/orgs/github-api-test-org/hooks", + "issues_url": "https://api.github.com/orgs/github-api-test-org/issues", + "members_url": "https://api.github.com/orgs/github-api-test-org/members{/member}", + "public_members_url": "https://api.github.com/orgs/github-api-test-org/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "description": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 9, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/github-api-test-org", + "created_at": "2014-05-10T19:39:11Z", + "updated_at": "2015-04-20T00:42:30Z", + "type": "Organization", + "total_private_repos": 0, + "owned_private_repos": 0, + "private_gists": 0, + "disk_usage": 132, + "collaborators": 0, + "billing_email": "kk@kohsuke.org", + "default_repository_permission": "none", + "members_can_create_repositories": false, + "two_factor_requirement_enabled": false, + "plan": { + "name": "free", + "space": 976562499, + "private_repos": 0, + "filled_seats": 3, + "seats": 0 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/__files/repos_github-api-test-org_github-api-6415bdcd-1b83-46fb-99b8-1e93bb21ecc4.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/__files/repos_github-api-test-org_github-api-6415bdcd-1b83-46fb-99b8-1e93bb21ecc4.json new file mode 100644 index 0000000000..354145c13a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/__files/repos_github-api-test-org_github-api-6415bdcd-1b83-46fb-99b8-1e93bb21ecc4.json @@ -0,0 +1,330 @@ +{ + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:56Z", + "pushed_at": "2019-09-08T07:25:04Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "parent": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-07T00:07:16Z", + "pushed_at": "2019-09-07T00:07:14Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 551, + "watchers_count": 551, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 551, + "default_branch": "master" + }, + "source": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-07T00:07:16Z", + "pushed_at": "2019-09-07T00:07:14Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 551, + "watchers_count": 551, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 551, + "default_branch": "master" + }, + "network_count": 427, + "subscribers_count": 0 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/__files/repos_github-api-test-org_github-api-d2df6fea-d463-4b4e-ac13-024bf488bfcf.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/__files/repos_github-api-test-org_github-api-d2df6fea-d463-4b4e-ac13-024bf488bfcf.json new file mode 100644 index 0000000000..354145c13a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/__files/repos_github-api-test-org_github-api-d2df6fea-d463-4b4e-ac13-024bf488bfcf.json @@ -0,0 +1,330 @@ +{ + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:56Z", + "pushed_at": "2019-09-08T07:25:04Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "parent": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-07T00:07:16Z", + "pushed_at": "2019-09-07T00:07:14Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 551, + "watchers_count": 551, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 551, + "default_branch": "master" + }, + "source": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-07T00:07:16Z", + "pushed_at": "2019-09-07T00:07:14Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 551, + "watchers_count": 551, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 551, + "default_branch": "master" + }, + "network_count": 427, + "subscribers_count": 0 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/__files/repos_github-api-test-org_github-api-f25bc1c4-0789-481f-bedf-b02bb58709b7.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/__files/repos_github-api-test-org_github-api-f25bc1c4-0789-481f-bedf-b02bb58709b7.json new file mode 100644 index 0000000000..aadba7eaf0 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/__files/repos_github-api-test-org_github-api-f25bc1c4-0789-481f-bedf-b02bb58709b7.json @@ -0,0 +1,330 @@ +{ + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:56Z", + "pushed_at": "2019-09-08T07:25:01Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "parent": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-07T00:07:16Z", + "pushed_at": "2019-09-07T00:07:14Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 551, + "watchers_count": 551, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 551, + "default_branch": "master" + }, + "source": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-07T00:07:16Z", + "pushed_at": "2019-09-07T00:07:14Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 551, + "watchers_count": 551, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 551, + "default_branch": "master" + }, + "network_count": 427, + "subscribers_count": 0 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/__files/repos_github-api-test-org_github-api_issues_271-9171d903-c9bb-400b-b09f-a95f1f7d9c03.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/__files/repos_github-api-test-org_github-api_issues_271-9171d903-c9bb-400b-b09f-a95f1f7d9c03.json new file mode 100644 index 0000000000..6e712fa0ac --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/__files/repos_github-api-test-org_github-api_issues_271-9171d903-c9bb-400b-b09f-a95f1f7d9c03.json @@ -0,0 +1,91 @@ +{ + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/271", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/271/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/271/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/271/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/271", + "id": 490720788, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzYz", + "number": 271, + "title": "setAssignee", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "assignees": [ + { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + } + ], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T07:25:04Z", + "updated_at": "2019-09-08T07:25:04Z", + "closed_at": null, + "author_association": "MEMBER", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/271", + "html_url": "https://github.com/github-api-test-org/github-api/pull/271", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/271.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/271.patch" + }, + "body": "## test", + "closed_by": null +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/__files/repos_github-api-test-org_github-api_pulls-8c712317-17a5-4e10-9463-61ef2564a0b7.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/__files/repos_github-api-test-org_github-api_pulls-8c712317-17a5-4e10-9463-61ef2564a0b7.json new file mode 100644 index 0000000000..d969a93d32 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/__files/repos_github-api-test-org_github-api_pulls-8c712317-17a5-4e10-9463-61ef2564a0b7.json @@ -0,0 +1,339 @@ +{ + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/271", + "id": 315252363, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzYz", + "html_url": "https://github.com/github-api-test-org/github-api/pull/271", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/271.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/271.patch", + "issue_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/271", + "number": 271, + "state": "open", + "locked": false, + "title": "setAssignee", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "body": "## test", + "created_at": "2019-09-08T07:25:04Z", + "updated_at": "2019-09-08T07:25:04Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/271/commits", + "review_comments_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/271/comments", + "review_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/271/comments", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "head": { + "label": "github-api-test-org:test/stable", + "ref": "test/stable", + "sha": "2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:56Z", + "pushed_at": "2019-09-08T07:25:01Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "github-api-test-org:master", + "ref": "master", + "sha": "ecec449372b1e8270524a35c1a5aa8fdaf0e6676", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:56Z", + "pushed_at": "2019-09-08T07:25:01Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/271" + }, + "html": { + "href": "https://github.com/github-api-test-org/github-api/pull/271" + }, + "issue": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/271" + }, + "comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/271/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/271/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/271/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/statuses/2d29c787b46ce61b98a1c13e05e21ebc21f49dbf" + } + }, + "author_association": "MEMBER", + "merged": false, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 1, + "deletions": 1, + "changed_files": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/__files/repos_github-api-test-org_github-api_pulls-aee9a7ec-9886-48b9-b8bc-f57480b183ab.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/__files/repos_github-api-test-org_github-api_pulls-aee9a7ec-9886-48b9-b8bc-f57480b183ab.json new file mode 100644 index 0000000000..0b11a2e3ff --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/__files/repos_github-api-test-org_github-api_pulls-aee9a7ec-9886-48b9-b8bc-f57480b183ab.json @@ -0,0 +1,369 @@ +[ + { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/271", + "id": 315252363, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzYz", + "html_url": "https://github.com/github-api-test-org/github-api/pull/271", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/271.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/271.patch", + "issue_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/271", + "number": 271, + "state": "open", + "locked": false, + "title": "setAssignee", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "body": "## test", + "created_at": "2019-09-08T07:25:04Z", + "updated_at": "2019-09-08T07:25:04Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "2d4f383cd0debf1cb8bb10bb38e198fd541621ab", + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "assignees": [ + { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/271/commits", + "review_comments_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/271/comments", + "review_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/271/comments", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "head": { + "label": "github-api-test-org:test/stable", + "ref": "test/stable", + "sha": "2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:56Z", + "pushed_at": "2019-09-08T07:25:04Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "github-api-test-org:master", + "ref": "master", + "sha": "ecec449372b1e8270524a35c1a5aa8fdaf0e6676", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:56Z", + "pushed_at": "2019-09-08T07:25:04Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/271" + }, + "html": { + "href": "https://github.com/github-api-test-org/github-api/pull/271" + }, + "issue": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/271" + }, + "comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/271/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/271/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/271/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/statuses/2d29c787b46ce61b98a1c13e05e21ebc21f49dbf" + } + }, + "author_association": "MEMBER" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/__files/repos_github-api-test-org_github-api_pulls_271-844a4111-bda7-4086-affc-96fa7cf053d0.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/__files/repos_github-api-test-org_github-api_pulls_271-844a4111-bda7-4086-affc-96fa7cf053d0.json new file mode 100644 index 0000000000..c3f6072d63 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/__files/repos_github-api-test-org_github-api_pulls_271-844a4111-bda7-4086-affc-96fa7cf053d0.json @@ -0,0 +1,379 @@ +{ + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/271", + "id": 315252363, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzYz", + "html_url": "https://github.com/github-api-test-org/github-api/pull/271", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/271.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/271.patch", + "issue_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/271", + "number": 271, + "state": "open", + "locked": false, + "title": "setAssignee", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "body": "## test", + "created_at": "2019-09-08T07:25:04Z", + "updated_at": "2019-09-08T07:25:04Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "2d4f383cd0debf1cb8bb10bb38e198fd541621ab", + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "assignees": [ + { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/271/commits", + "review_comments_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/271/comments", + "review_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/271/comments", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "head": { + "label": "github-api-test-org:test/stable", + "ref": "test/stable", + "sha": "2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:56Z", + "pushed_at": "2019-09-08T07:25:04Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "github-api-test-org:master", + "ref": "master", + "sha": "ecec449372b1e8270524a35c1a5aa8fdaf0e6676", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:56Z", + "pushed_at": "2019-09-08T07:25:04Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/271" + }, + "html": { + "href": "https://github.com/github-api-test-org/github-api/pull/271" + }, + "issue": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/271" + }, + "comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/271/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/271/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/271/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/statuses/2d29c787b46ce61b98a1c13e05e21ebc21f49dbf" + } + }, + "author_association": "MEMBER", + "merged": false, + "mergeable": true, + "rebaseable": true, + "mergeable_state": "clean", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 1, + "deletions": 1, + "changed_files": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/__files/repos_github-api-test-org_github-api_pulls_271-ff9fa198-2c33-4554-826e-5a2ec150d1c9.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/__files/repos_github-api-test-org_github-api_pulls_271-ff9fa198-2c33-4554-826e-5a2ec150d1c9.json new file mode 100644 index 0000000000..1a659f672d --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/__files/repos_github-api-test-org_github-api_pulls_271-ff9fa198-2c33-4554-826e-5a2ec150d1c9.json @@ -0,0 +1,379 @@ +{ + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/271", + "id": 315252363, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzYz", + "html_url": "https://github.com/github-api-test-org/github-api/pull/271", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/271.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/271.patch", + "issue_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/271", + "number": 271, + "state": "closed", + "locked": false, + "title": "setAssignee", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "body": "## test", + "created_at": "2019-09-08T07:25:04Z", + "updated_at": "2019-09-08T07:25:06Z", + "closed_at": "2019-09-08T07:25:06Z", + "merged_at": null, + "merge_commit_sha": "2d4f383cd0debf1cb8bb10bb38e198fd541621ab", + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "assignees": [ + { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/271/commits", + "review_comments_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/271/comments", + "review_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/271/comments", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "head": { + "label": "github-api-test-org:test/stable", + "ref": "test/stable", + "sha": "2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:56Z", + "pushed_at": "2019-09-08T07:25:04Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "github-api-test-org:master", + "ref": "master", + "sha": "ecec449372b1e8270524a35c1a5aa8fdaf0e6676", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:56Z", + "pushed_at": "2019-09-08T07:25:04Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/271" + }, + "html": { + "href": "https://github.com/github-api-test-org/github-api/pull/271" + }, + "issue": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/271" + }, + "comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/271/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/271/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/271/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/statuses/2d29c787b46ce61b98a1c13e05e21ebc21f49dbf" + } + }, + "author_association": "MEMBER", + "merged": false, + "mergeable": true, + "rebaseable": true, + "mergeable_state": "clean", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 1, + "deletions": 1, + "changed_files": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/__files/user-27e10619-a669-4ec6-8270-519114eef6f6.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/__files/user-27e10619-a669-4ec6-8270-519114eef6f6.json new file mode 100644 index 0000000000..b9ce24cb03 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/__files/user-27e10619-a669-4ec6-8270-519114eef6f6.json @@ -0,0 +1,33 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 166, + "public_gists": 4, + "followers": 133, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-06-03T17:47:20Z" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/mappings/orgs_github-api-test-org-2-41c140.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/mappings/orgs_github-api-test-org-2-41c140.json new file mode 100644 index 0000000000..43cdfc6cb7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/mappings/orgs_github-api-test-org-2-41c140.json @@ -0,0 +1,43 @@ +{ + "id": "41c140fe-0c07-406f-8a11-c8c4dad3ff91", + "name": "orgs_github-api-test-org", + "request": { + "url": "/orgs/github-api-test-org", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_github-api-test-org-41c140fe-0c07-406f-8a11-c8c4dad3ff91.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:25:03 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4840", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"d36965e157281b2a309c39e4c2343a55\"", + "Last-Modified": "Mon, 20 Apr 2015 00:42:30 GMT", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF9F:80B3:C99500:EB500E:5D74ACCF" + } + }, + "uuid": "41c140fe-0c07-406f-8a11-c8c4dad3ff91", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/mappings/repos_github-api-test-org_github-api-3-f25bc1.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/mappings/repos_github-api-test-org_github-api-3-f25bc1.json new file mode 100644 index 0000000000..8179f104b9 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/mappings/repos_github-api-test-org_github-api-3-f25bc1.json @@ -0,0 +1,46 @@ +{ + "id": "f25bc1c4-0789-481f-bedf-b02bb58709b7", + "name": "repos_github-api-test-org_github-api", + "request": { + "url": "/repos/github-api-test-org/github-api", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api-f25bc1c4-0789-481f-bedf-b02bb58709b7.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:25:03 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4839", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"5bd22dcf2a91e6f4e9b81d328d6c3992\"", + "Last-Modified": "Sun, 08 Sep 2019 07:24:56 GMT", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF9F:80B3:C99516:EB502A:5D74ACCF" + } + }, + "uuid": "f25bc1c4-0789-481f-bedf-b02bb58709b7", + "persistent": true, + "scenarioName": "scenario-1-repos-github-api-test-org-github-api", + "requiredScenarioState": "Started", + "newScenarioState": "scenario-1-repos-github-api-test-org-github-api-2", + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/mappings/repos_github-api-test-org_github-api-6-6415bd.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/mappings/repos_github-api-test-org_github-api-6-6415bd.json new file mode 100644 index 0000000000..f7ce4d4e85 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/mappings/repos_github-api-test-org_github-api-6-6415bd.json @@ -0,0 +1,46 @@ +{ + "id": "6415bdcd-1b83-46fb-99b8-1e93bb21ecc4", + "name": "repos_github-api-test-org_github-api", + "request": { + "url": "/repos/github-api-test-org/github-api", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api-6415bdcd-1b83-46fb-99b8-1e93bb21ecc4.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:25:05 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4836", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"1ed427629429ded9373deae90c0f49b2\"", + "Last-Modified": "Sun, 08 Sep 2019 07:24:56 GMT", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF9F:80B3:C9961C:EB5152:5D74ACD1" + } + }, + "uuid": "6415bdcd-1b83-46fb-99b8-1e93bb21ecc4", + "persistent": true, + "scenarioName": "scenario-1-repos-github-api-test-org-github-api", + "requiredScenarioState": "scenario-1-repos-github-api-test-org-github-api-2", + "newScenarioState": "scenario-1-repos-github-api-test-org-github-api-3", + "insertionIndex": 6 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/mappings/repos_github-api-test-org_github-api-8-d2df6f.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/mappings/repos_github-api-test-org_github-api-8-d2df6f.json new file mode 100644 index 0000000000..ce5872eed9 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/mappings/repos_github-api-test-org_github-api-8-d2df6f.json @@ -0,0 +1,45 @@ +{ + "id": "d2df6fea-d463-4b4e-ac13-024bf488bfcf", + "name": "repos_github-api-test-org_github-api", + "request": { + "url": "/repos/github-api-test-org/github-api", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api-d2df6fea-d463-4b4e-ac13-024bf488bfcf.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:25:05 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4834", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"1ed427629429ded9373deae90c0f49b2\"", + "Last-Modified": "Sun, 08 Sep 2019 07:24:56 GMT", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF9F:80B3:C99673:EB51A9:5D74ACD1" + } + }, + "uuid": "d2df6fea-d463-4b4e-ac13-024bf488bfcf", + "persistent": true, + "scenarioName": "scenario-1-repos-github-api-test-org-github-api", + "requiredScenarioState": "scenario-1-repos-github-api-test-org-github-api-3", + "insertionIndex": 8 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/mappings/repos_github-api-test-org_github-api_issues_271-5-9171d9.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/mappings/repos_github-api-test-org_github-api_issues_271-5-9171d9.json new file mode 100644 index 0000000000..dfc1f6ebb1 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/mappings/repos_github-api-test-org_github-api_issues_271-5-9171d9.json @@ -0,0 +1,49 @@ +{ + "id": "9171d903-c9bb-400b-b09f-a95f1f7d9c03", + "name": "repos_github-api-test-org_github-api_issues_271", + "request": { + "url": "/repos/github-api-test-org/github-api/issues/271", + "method": "PATCH", + "bodyPatterns": [ + { + "equalToJson": "{\"assignees\":[\"bitwiseman\"]}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api_issues_271-9171d903-c9bb-400b-b09f-a95f1f7d9c03.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:25:05 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4837", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"5d0c81990a41d7d8ce9f498c6ba14b4b\"", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF9F:80B3:C995DE:EB50EE:5D74ACD0" + } + }, + "uuid": "9171d903-c9bb-400b-b09f-a95f1f7d9c03", + "persistent": true, + "insertionIndex": 5 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/mappings/repos_github-api-test-org_github-api_pulls-4-8c7123.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/mappings/repos_github-api-test-org_github-api_pulls-4-8c7123.json new file mode 100644 index 0000000000..fd5c9f2f65 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/mappings/repos_github-api-test-org_github-api_pulls-4-8c7123.json @@ -0,0 +1,50 @@ +{ + "id": "8c712317-17a5-4e10-9463-61ef2564a0b7", + "name": "repos_github-api-test-org_github-api_pulls", + "request": { + "url": "/repos/github-api-test-org/github-api/pulls", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"head\":\"test/stable\",\"maintainer_can_modify\":true,\"title\":\"setAssignee\",\"body\":\"## test\",\"base\":\"master\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "repos_github-api-test-org_github-api_pulls-8c712317-17a5-4e10-9463-61ef2564a0b7.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:25:04 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4838", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"82fbe7dd1f604b8a2285179b69bd96f5\"", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/github-api-test-org/github-api/pulls/271", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF9F:80B3:C99546:EB5066:5D74ACCF" + } + }, + "uuid": "8c712317-17a5-4e10-9463-61ef2564a0b7", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/mappings/repos_github-api-test-org_github-api_pulls-9-aee9a7.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/mappings/repos_github-api-test-org_github-api_pulls-9-aee9a7.json new file mode 100644 index 0000000000..17703db58a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/mappings/repos_github-api-test-org_github-api_pulls-9-aee9a7.json @@ -0,0 +1,42 @@ +{ + "id": "aee9a7ec-9886-48b9-b8bc-f57480b183ab", + "name": "repos_github-api-test-org_github-api_pulls", + "request": { + "url": "/repos/github-api-test-org/github-api/pulls?state=open", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api_pulls-aee9a7ec-9886-48b9-b8bc-f57480b183ab.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:25:06 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4833", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"f8b61bc4cc6f87ff477e17e820da30c2\"", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF9F:80B3:C996A6:EB51CF:5D74ACD1" + } + }, + "uuid": "aee9a7ec-9886-48b9-b8bc-f57480b183ab", + "persistent": true, + "insertionIndex": 9 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/mappings/repos_github-api-test-org_github-api_pulls_271-10-ff9fa1.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/mappings/repos_github-api-test-org_github-api_pulls_271-10-ff9fa1.json new file mode 100644 index 0000000000..21ae90364e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/mappings/repos_github-api-test-org_github-api_pulls_271-10-ff9fa1.json @@ -0,0 +1,49 @@ +{ + "id": "ff9fa198-2c33-4554-826e-5a2ec150d1c9", + "name": "repos_github-api-test-org_github-api_pulls_271", + "request": { + "url": "/repos/github-api-test-org/github-api/pulls/271", + "method": "PATCH", + "bodyPatterns": [ + { + "equalToJson": "{\"state\":\"closed\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api_pulls_271-ff9fa198-2c33-4554-826e-5a2ec150d1c9.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:25:06 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4832", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"51caf19019a931068e720631831616ce\"", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF9F:80B3:C996C5:EB5211:5D74ACD2" + } + }, + "uuid": "ff9fa198-2c33-4554-826e-5a2ec150d1c9", + "persistent": true, + "insertionIndex": 10 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/mappings/repos_github-api-test-org_github-api_pulls_271-7-844a41.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/mappings/repos_github-api-test-org_github-api_pulls_271-7-844a41.json new file mode 100644 index 0000000000..c45ee4e06b --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/mappings/repos_github-api-test-org_github-api_pulls_271-7-844a41.json @@ -0,0 +1,43 @@ +{ + "id": "844a4111-bda7-4086-affc-96fa7cf053d0", + "name": "repos_github-api-test-org_github-api_pulls_271", + "request": { + "url": "/repos/github-api-test-org/github-api/pulls/271", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api_pulls_271-844a4111-bda7-4086-affc-96fa7cf053d0.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:25:05 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4835", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"b27512dbea32f30d46a33e60cb872907\"", + "Last-Modified": "Sun, 08 Sep 2019 07:25:04 GMT", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF9F:80B3:C9963E:EB5179:5D74ACD1" + } + }, + "uuid": "844a4111-bda7-4086-affc-96fa7cf053d0", + "persistent": true, + "insertionIndex": 7 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/mappings/user-1-27e106.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/mappings/user-1-27e106.json new file mode 100644 index 0000000000..c34f1ab369 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setAssignee/mappings/user-1-27e106.json @@ -0,0 +1,43 @@ +{ + "id": "27e10619-a669-4ec6-8270-519114eef6f6", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-27e10619-a669-4ec6-8270-519114eef6f6.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:25:03 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4841", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"3ba1de3523043df743651bd23efc7def\"", + "Last-Modified": "Mon, 03 Jun 2019 17:47:20 GMT", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF9F:80B3:C994DF:EB4FEB:5D74ACCF" + } + }, + "uuid": "27e10619-a669-4ec6-8270-519114eef6f6", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/__files/orgs_github-api-test-org-04e11278-2441-4a15-9491-102d5e142409.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/__files/orgs_github-api-test-org-04e11278-2441-4a15-9491-102d5e142409.json new file mode 100644 index 0000000000..61547e3d98 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/__files/orgs_github-api-test-org-04e11278-2441-4a15-9491-102d5e142409.json @@ -0,0 +1,41 @@ +{ + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "url": "https://api.github.com/orgs/github-api-test-org", + "repos_url": "https://api.github.com/orgs/github-api-test-org/repos", + "events_url": "https://api.github.com/orgs/github-api-test-org/events", + "hooks_url": "https://api.github.com/orgs/github-api-test-org/hooks", + "issues_url": "https://api.github.com/orgs/github-api-test-org/issues", + "members_url": "https://api.github.com/orgs/github-api-test-org/members{/member}", + "public_members_url": "https://api.github.com/orgs/github-api-test-org/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "description": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 9, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/github-api-test-org", + "created_at": "2014-05-10T19:39:11Z", + "updated_at": "2015-04-20T00:42:30Z", + "type": "Organization", + "total_private_repos": 0, + "owned_private_repos": 0, + "private_gists": 0, + "disk_usage": 132, + "collaborators": 0, + "billing_email": "kk@kohsuke.org", + "default_repository_permission": "none", + "members_can_create_repositories": false, + "two_factor_requirement_enabled": false, + "plan": { + "name": "free", + "space": 976562499, + "private_repos": 0, + "filled_seats": 3, + "seats": 0 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/__files/repos_github-api-test-org_github-api-1b1c6847-2cda-47ec-a736-79672a3a7abe.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/__files/repos_github-api-test-org_github-api-1b1c6847-2cda-47ec-a736-79672a3a7abe.json new file mode 100644 index 0000000000..d329ee1c9a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/__files/repos_github-api-test-org_github-api-1b1c6847-2cda-47ec-a736-79672a3a7abe.json @@ -0,0 +1,330 @@ +{ + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:28Z", + "pushed_at": "2019-09-08T07:24:30Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "parent": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-07T00:07:16Z", + "pushed_at": "2019-09-07T00:07:14Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 551, + "watchers_count": 551, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 551, + "default_branch": "master" + }, + "source": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-07T00:07:16Z", + "pushed_at": "2019-09-07T00:07:14Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 551, + "watchers_count": 551, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 551, + "default_branch": "master" + }, + "network_count": 427, + "subscribers_count": 0 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/__files/repos_github-api-test-org_github-api-4e2383e2-109f-4ba8-910a-e6fa057728fe.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/__files/repos_github-api-test-org_github-api-4e2383e2-109f-4ba8-910a-e6fa057728fe.json new file mode 100644 index 0000000000..efa42b4e23 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/__files/repos_github-api-test-org_github-api-4e2383e2-109f-4ba8-910a-e6fa057728fe.json @@ -0,0 +1,330 @@ +{ + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:28Z", + "pushed_at": "2019-09-08T07:24:35Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "parent": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-07T00:07:16Z", + "pushed_at": "2019-09-07T00:07:14Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 551, + "watchers_count": 551, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 551, + "default_branch": "master" + }, + "source": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-07T00:07:16Z", + "pushed_at": "2019-09-07T00:07:14Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 551, + "watchers_count": 551, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 551, + "default_branch": "master" + }, + "network_count": 427, + "subscribers_count": 0 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/__files/repos_github-api-test-org_github-api-caba7863-7e0a-48ed-b54d-e6121b595280.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/__files/repos_github-api-test-org_github-api-caba7863-7e0a-48ed-b54d-e6121b595280.json new file mode 100644 index 0000000000..efa42b4e23 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/__files/repos_github-api-test-org_github-api-caba7863-7e0a-48ed-b54d-e6121b595280.json @@ -0,0 +1,330 @@ +{ + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:28Z", + "pushed_at": "2019-09-08T07:24:35Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "parent": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-07T00:07:16Z", + "pushed_at": "2019-09-07T00:07:14Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 551, + "watchers_count": 551, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 551, + "default_branch": "master" + }, + "source": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-07T00:07:16Z", + "pushed_at": "2019-09-07T00:07:14Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 551, + "watchers_count": 551, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 551, + "default_branch": "master" + }, + "network_count": 427, + "subscribers_count": 0 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/__files/repos_github-api-test-org_github-api_issues_264-1421d6dd-ddf5-44ca-a50e-03848f69af20.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/__files/repos_github-api-test-org_github-api_issues_264-1421d6dd-ddf5-44ca-a50e-03848f69af20.json new file mode 100644 index 0000000000..8f31f74b29 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/__files/repos_github-api-test-org_github-api_issues_264-1421d6dd-ddf5-44ca-a50e-03848f69af20.json @@ -0,0 +1,60 @@ +{ + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/264", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/264/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/264/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/264/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/264", + "id": 490720743, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzMw", + "number": 264, + "title": "setLabels", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 1541702441, + "node_id": "MDU6TGFiZWwxNTQxNzAyNDQx", + "url": "https://api.github.com/repos/github-api-test-org/github-api/labels/setLabels_label_name", + "name": "setLabels_label_name", + "color": "ededed", + "default": false + } + ], + "state": "open", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T07:24:34Z", + "updated_at": "2019-09-08T07:24:35Z", + "closed_at": null, + "author_association": "MEMBER", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/264", + "html_url": "https://github.com/github-api-test-org/github-api/pull/264", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/264.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/264.patch" + }, + "body": "## test", + "closed_by": null +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/__files/repos_github-api-test-org_github-api_issues_264-52c0826c-b7a4-47a7-a202-505128247a5e.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/__files/repos_github-api-test-org_github-api_issues_264-52c0826c-b7a4-47a7-a202-505128247a5e.json new file mode 100644 index 0000000000..8f31f74b29 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/__files/repos_github-api-test-org_github-api_issues_264-52c0826c-b7a4-47a7-a202-505128247a5e.json @@ -0,0 +1,60 @@ +{ + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/264", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/264/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/264/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/264/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/264", + "id": 490720743, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzMw", + "number": 264, + "title": "setLabels", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 1541702441, + "node_id": "MDU6TGFiZWwxNTQxNzAyNDQx", + "url": "https://api.github.com/repos/github-api-test-org/github-api/labels/setLabels_label_name", + "name": "setLabels_label_name", + "color": "ededed", + "default": false + } + ], + "state": "open", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T07:24:34Z", + "updated_at": "2019-09-08T07:24:35Z", + "closed_at": null, + "author_association": "MEMBER", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/264", + "html_url": "https://github.com/github-api-test-org/github-api/pull/264", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/264.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/264.patch" + }, + "body": "## test", + "closed_by": null +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/__files/repos_github-api-test-org_github-api_pulls-7af49b84-1732-4a74-b123-676769146f83.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/__files/repos_github-api-test-org_github-api_pulls-7af49b84-1732-4a74-b123-676769146f83.json new file mode 100644 index 0000000000..75d6f7ebe7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/__files/repos_github-api-test-org_github-api_pulls-7af49b84-1732-4a74-b123-676769146f83.json @@ -0,0 +1,339 @@ +{ + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/264", + "id": 315252330, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzMw", + "html_url": "https://github.com/github-api-test-org/github-api/pull/264", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/264.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/264.patch", + "issue_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/264", + "number": 264, + "state": "open", + "locked": false, + "title": "setLabels", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "body": "## test", + "created_at": "2019-09-08T07:24:34Z", + "updated_at": "2019-09-08T07:24:34Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/264/commits", + "review_comments_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/264/comments", + "review_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/264/comments", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "head": { + "label": "github-api-test-org:test/stable", + "ref": "test/stable", + "sha": "2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:28Z", + "pushed_at": "2019-09-08T07:24:30Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "github-api-test-org:master", + "ref": "master", + "sha": "912e2176a00e60e02196737e0ae4c218a14b5dcb", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:28Z", + "pushed_at": "2019-09-08T07:24:30Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/264" + }, + "html": { + "href": "https://github.com/github-api-test-org/github-api/pull/264" + }, + "issue": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/264" + }, + "comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/264/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/264/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/264/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/statuses/2d29c787b46ce61b98a1c13e05e21ebc21f49dbf" + } + }, + "author_association": "MEMBER", + "merged": false, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 1, + "deletions": 1, + "changed_files": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/__files/repos_github-api-test-org_github-api_pulls-bd497d3d-3712-4ea7-9e01-2810bf2b83c8.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/__files/repos_github-api-test-org_github-api_pulls-bd497d3d-3712-4ea7-9e01-2810bf2b83c8.json new file mode 100644 index 0000000000..ccf7136bd5 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/__files/repos_github-api-test-org_github-api_pulls-bd497d3d-3712-4ea7-9e01-2810bf2b83c8.json @@ -0,0 +1,338 @@ +[ + { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/264", + "id": 315252330, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzMw", + "html_url": "https://github.com/github-api-test-org/github-api/pull/264", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/264.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/264.patch", + "issue_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/264", + "number": 264, + "state": "open", + "locked": false, + "title": "setLabels", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "body": "## test", + "created_at": "2019-09-08T07:24:34Z", + "updated_at": "2019-09-08T07:24:35Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "d1944c8ee483c5a4ebb61c7c4811e7b6c5d80186", + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [ + { + "id": 1541702441, + "node_id": "MDU6TGFiZWwxNTQxNzAyNDQx", + "url": "https://api.github.com/repos/github-api-test-org/github-api/labels/setLabels_label_name", + "name": "setLabels_label_name", + "color": "ededed", + "default": false + } + ], + "milestone": null, + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/264/commits", + "review_comments_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/264/comments", + "review_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/264/comments", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "head": { + "label": "github-api-test-org:test/stable", + "ref": "test/stable", + "sha": "2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:28Z", + "pushed_at": "2019-09-08T07:24:35Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "github-api-test-org:master", + "ref": "master", + "sha": "912e2176a00e60e02196737e0ae4c218a14b5dcb", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:28Z", + "pushed_at": "2019-09-08T07:24:35Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/264" + }, + "html": { + "href": "https://github.com/github-api-test-org/github-api/pull/264" + }, + "issue": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/264" + }, + "comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/264/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/264/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/264/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/statuses/2d29c787b46ce61b98a1c13e05e21ebc21f49dbf" + } + }, + "author_association": "MEMBER" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/__files/repos_github-api-test-org_github-api_pulls_264-4627827c-55fb-4f0c-850d-23fd6b35b4f7.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/__files/repos_github-api-test-org_github-api_pulls_264-4627827c-55fb-4f0c-850d-23fd6b35b4f7.json new file mode 100644 index 0000000000..9fe76fd0ff --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/__files/repos_github-api-test-org_github-api_pulls_264-4627827c-55fb-4f0c-850d-23fd6b35b4f7.json @@ -0,0 +1,348 @@ +{ + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/264", + "id": 315252330, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzMw", + "html_url": "https://github.com/github-api-test-org/github-api/pull/264", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/264.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/264.patch", + "issue_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/264", + "number": 264, + "state": "open", + "locked": false, + "title": "setLabels", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "body": "## test", + "created_at": "2019-09-08T07:24:34Z", + "updated_at": "2019-09-08T07:24:35Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "d1944c8ee483c5a4ebb61c7c4811e7b6c5d80186", + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [ + { + "id": 1541702441, + "node_id": "MDU6TGFiZWwxNTQxNzAyNDQx", + "url": "https://api.github.com/repos/github-api-test-org/github-api/labels/setLabels_label_name", + "name": "setLabels_label_name", + "color": "ededed", + "default": false + } + ], + "milestone": null, + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/264/commits", + "review_comments_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/264/comments", + "review_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/264/comments", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "head": { + "label": "github-api-test-org:test/stable", + "ref": "test/stable", + "sha": "2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:28Z", + "pushed_at": "2019-09-08T07:24:35Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "github-api-test-org:master", + "ref": "master", + "sha": "912e2176a00e60e02196737e0ae4c218a14b5dcb", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:28Z", + "pushed_at": "2019-09-08T07:24:35Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/264" + }, + "html": { + "href": "https://github.com/github-api-test-org/github-api/pull/264" + }, + "issue": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/264" + }, + "comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/264/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/264/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/264/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/statuses/2d29c787b46ce61b98a1c13e05e21ebc21f49dbf" + } + }, + "author_association": "MEMBER", + "merged": false, + "mergeable": true, + "rebaseable": true, + "mergeable_state": "clean", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 1, + "deletions": 1, + "changed_files": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/__files/repos_github-api-test-org_github-api_pulls_264-cfd2cf1d-d98d-4374-a0fe-4d80a217e9d4.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/__files/repos_github-api-test-org_github-api_pulls_264-cfd2cf1d-d98d-4374-a0fe-4d80a217e9d4.json new file mode 100644 index 0000000000..7c87a56edc --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/__files/repos_github-api-test-org_github-api_pulls_264-cfd2cf1d-d98d-4374-a0fe-4d80a217e9d4.json @@ -0,0 +1,348 @@ +{ + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/264", + "id": 315252330, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzMw", + "html_url": "https://github.com/github-api-test-org/github-api/pull/264", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/264.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/264.patch", + "issue_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/264", + "number": 264, + "state": "closed", + "locked": false, + "title": "setLabels", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "body": "## test", + "created_at": "2019-09-08T07:24:34Z", + "updated_at": "2019-09-08T07:24:36Z", + "closed_at": "2019-09-08T07:24:36Z", + "merged_at": null, + "merge_commit_sha": "d1944c8ee483c5a4ebb61c7c4811e7b6c5d80186", + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [ + { + "id": 1541702441, + "node_id": "MDU6TGFiZWwxNTQxNzAyNDQx", + "url": "https://api.github.com/repos/github-api-test-org/github-api/labels/setLabels_label_name", + "name": "setLabels_label_name", + "color": "ededed", + "default": false + } + ], + "milestone": null, + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/264/commits", + "review_comments_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/264/comments", + "review_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/264/comments", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "head": { + "label": "github-api-test-org:test/stable", + "ref": "test/stable", + "sha": "2d29c787b46ce61b98a1c13e05e21ebc21f49dbf", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:28Z", + "pushed_at": "2019-09-08T07:24:35Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "github-api-test-org:master", + "ref": "master", + "sha": "912e2176a00e60e02196737e0ae4c218a14b5dcb", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:28Z", + "pushed_at": "2019-09-08T07:24:35Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/264" + }, + "html": { + "href": "https://github.com/github-api-test-org/github-api/pull/264" + }, + "issue": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/264" + }, + "comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/264/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/264/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/264/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/statuses/2d29c787b46ce61b98a1c13e05e21ebc21f49dbf" + } + }, + "author_association": "MEMBER", + "merged": false, + "mergeable": true, + "rebaseable": true, + "mergeable_state": "clean", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 1, + "deletions": 1, + "changed_files": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/__files/user-946afcfe-31ac-4f28-9d66-5f45ffbb3a7c.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/__files/user-946afcfe-31ac-4f28-9d66-5f45ffbb3a7c.json new file mode 100644 index 0000000000..b9ce24cb03 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/__files/user-946afcfe-31ac-4f28-9d66-5f45ffbb3a7c.json @@ -0,0 +1,33 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 166, + "public_gists": 4, + "followers": 133, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-06-03T17:47:20Z" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/mappings/orgs_github-api-test-org-2-04e112.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/mappings/orgs_github-api-test-org-2-04e112.json new file mode 100644 index 0000000000..04ea5b9575 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/mappings/orgs_github-api-test-org-2-04e112.json @@ -0,0 +1,43 @@ +{ + "id": "04e11278-2441-4a15-9491-102d5e142409", + "name": "orgs_github-api-test-org", + "request": { + "url": "/orgs/github-api-test-org", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_github-api-test-org-04e11278-2441-4a15-9491-102d5e142409.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:33 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4908", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"d36965e157281b2a309c39e4c2343a55\"", + "Last-Modified": "Mon, 20 Apr 2015 00:42:30 GMT", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF88:40BB:4AD3D1:586783:5D74ACB1" + } + }, + "uuid": "04e11278-2441-4a15-9491-102d5e142409", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/mappings/repos_github-api-test-org_github-api-3-1b1c68.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/mappings/repos_github-api-test-org_github-api-3-1b1c68.json new file mode 100644 index 0000000000..cc7d34fbeb --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/mappings/repos_github-api-test-org_github-api-3-1b1c68.json @@ -0,0 +1,46 @@ +{ + "id": "1b1c6847-2cda-47ec-a736-79672a3a7abe", + "name": "repos_github-api-test-org_github-api", + "request": { + "url": "/repos/github-api-test-org/github-api", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api-1b1c6847-2cda-47ec-a736-79672a3a7abe.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:34 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4907", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"63f427b5bc81943feca4792461202c49\"", + "Last-Modified": "Sun, 08 Sep 2019 07:24:28 GMT", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF88:40BB:4AD3DA:58678D:5D74ACB1" + } + }, + "uuid": "1b1c6847-2cda-47ec-a736-79672a3a7abe", + "persistent": true, + "scenarioName": "scenario-1-repos-github-api-test-org-github-api", + "requiredScenarioState": "Started", + "newScenarioState": "scenario-1-repos-github-api-test-org-github-api-2", + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/mappings/repos_github-api-test-org_github-api-6-4e2383.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/mappings/repos_github-api-test-org_github-api-6-4e2383.json new file mode 100644 index 0000000000..1c133ae798 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/mappings/repos_github-api-test-org_github-api-6-4e2383.json @@ -0,0 +1,46 @@ +{ + "id": "4e2383e2-109f-4ba8-910a-e6fa057728fe", + "name": "repos_github-api-test-org_github-api", + "request": { + "url": "/repos/github-api-test-org/github-api", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api-4e2383e2-109f-4ba8-910a-e6fa057728fe.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:35 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4904", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"4f1fa06be9bf4b185661c257f4361c24\"", + "Last-Modified": "Sun, 08 Sep 2019 07:24:28 GMT", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF88:40BB:4AD413:5867CB:5D74ACB3" + } + }, + "uuid": "4e2383e2-109f-4ba8-910a-e6fa057728fe", + "persistent": true, + "scenarioName": "scenario-1-repos-github-api-test-org-github-api", + "requiredScenarioState": "scenario-1-repos-github-api-test-org-github-api-2", + "newScenarioState": "scenario-1-repos-github-api-test-org-github-api-3", + "insertionIndex": 6 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/mappings/repos_github-api-test-org_github-api-9-caba78.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/mappings/repos_github-api-test-org_github-api-9-caba78.json new file mode 100644 index 0000000000..a82acbe23a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/mappings/repos_github-api-test-org_github-api-9-caba78.json @@ -0,0 +1,45 @@ +{ + "id": "caba7863-7e0a-48ed-b54d-e6121b595280", + "name": "repos_github-api-test-org_github-api", + "request": { + "url": "/repos/github-api-test-org/github-api", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api-caba7863-7e0a-48ed-b54d-e6121b595280.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:36 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4901", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"4f1fa06be9bf4b185661c257f4361c24\"", + "Last-Modified": "Sun, 08 Sep 2019 07:24:28 GMT", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF88:40BB:4AD437:5867F5:5D74ACB4" + } + }, + "uuid": "caba7863-7e0a-48ed-b54d-e6121b595280", + "persistent": true, + "scenarioName": "scenario-1-repos-github-api-test-org-github-api", + "requiredScenarioState": "scenario-1-repos-github-api-test-org-github-api-3", + "insertionIndex": 9 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/mappings/repos_github-api-test-org_github-api_issues_264-5-52c082.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/mappings/repos_github-api-test-org_github-api_issues_264-5-52c082.json new file mode 100644 index 0000000000..02bc31baa8 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/mappings/repos_github-api-test-org_github-api_issues_264-5-52c082.json @@ -0,0 +1,49 @@ +{ + "id": "52c0826c-b7a4-47a7-a202-505128247a5e", + "name": "repos_github-api-test-org_github-api_issues_264", + "request": { + "url": "/repos/github-api-test-org/github-api/issues/264", + "method": "PATCH", + "bodyPatterns": [ + { + "equalToJson": "{\"labels\":[\"setLabels_label_name\"]}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api_issues_264-52c0826c-b7a4-47a7-a202-505128247a5e.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:35 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4905", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"d3cd42d3a7bdf3d2c3a2b4a08bf23ce5\"", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF88:40BB:4AD404:5867BB:5D74ACB2" + } + }, + "uuid": "52c0826c-b7a4-47a7-a202-505128247a5e", + "persistent": true, + "insertionIndex": 5 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/mappings/repos_github-api-test-org_github-api_issues_264-8-1421d6.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/mappings/repos_github-api-test-org_github-api_issues_264-8-1421d6.json new file mode 100644 index 0000000000..9291422afe --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/mappings/repos_github-api-test-org_github-api_issues_264-8-1421d6.json @@ -0,0 +1,43 @@ +{ + "id": "1421d6dd-ddf5-44ca-a50e-03848f69af20", + "name": "repos_github-api-test-org_github-api_issues_264", + "request": { + "url": "/repos/github-api-test-org/github-api/issues/264", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api_issues_264-1421d6dd-ddf5-44ca-a50e-03848f69af20.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:36 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4902", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"d3cd42d3a7bdf3d2c3a2b4a08bf23ce5\"", + "Last-Modified": "Sun, 08 Sep 2019 07:24:35 GMT", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF88:40BB:4AD434:5867F1:5D74ACB4" + } + }, + "uuid": "1421d6dd-ddf5-44ca-a50e-03848f69af20", + "persistent": true, + "insertionIndex": 8 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/mappings/repos_github-api-test-org_github-api_pulls-10-bd497d.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/mappings/repos_github-api-test-org_github-api_pulls-10-bd497d.json new file mode 100644 index 0000000000..f904ab7307 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/mappings/repos_github-api-test-org_github-api_pulls-10-bd497d.json @@ -0,0 +1,42 @@ +{ + "id": "bd497d3d-3712-4ea7-9e01-2810bf2b83c8", + "name": "repos_github-api-test-org_github-api_pulls", + "request": { + "url": "/repos/github-api-test-org/github-api/pulls?state=open", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api_pulls-bd497d3d-3712-4ea7-9e01-2810bf2b83c8.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:36 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4900", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"cf2cb7d3c66934d3bc296b9dc3d1c269\"", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF88:40BB:4AD43D:5867FB:5D74ACB4" + } + }, + "uuid": "bd497d3d-3712-4ea7-9e01-2810bf2b83c8", + "persistent": true, + "insertionIndex": 10 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/mappings/repos_github-api-test-org_github-api_pulls-4-7af49b.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/mappings/repos_github-api-test-org_github-api_pulls-4-7af49b.json new file mode 100644 index 0000000000..1224ef5951 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/mappings/repos_github-api-test-org_github-api_pulls-4-7af49b.json @@ -0,0 +1,50 @@ +{ + "id": "7af49b84-1732-4a74-b123-676769146f83", + "name": "repos_github-api-test-org_github-api_pulls", + "request": { + "url": "/repos/github-api-test-org/github-api/pulls", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"head\":\"test/stable\",\"maintainer_can_modify\":true,\"title\":\"setLabels\",\"body\":\"## test\",\"base\":\"master\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "repos_github-api-test-org_github-api_pulls-7af49b84-1732-4a74-b123-676769146f83.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:34 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4906", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"dce2e4378de06893e7bf5705f5da6c70\"", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/github-api-test-org/github-api/pulls/264", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF88:40BB:4AD3E5:58679A:5D74ACB2" + } + }, + "uuid": "7af49b84-1732-4a74-b123-676769146f83", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/mappings/repos_github-api-test-org_github-api_pulls_264-11-cfd2cf.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/mappings/repos_github-api-test-org_github-api_pulls_264-11-cfd2cf.json new file mode 100644 index 0000000000..3954ecea84 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/mappings/repos_github-api-test-org_github-api_pulls_264-11-cfd2cf.json @@ -0,0 +1,49 @@ +{ + "id": "cfd2cf1d-d98d-4374-a0fe-4d80a217e9d4", + "name": "repos_github-api-test-org_github-api_pulls_264", + "request": { + "url": "/repos/github-api-test-org/github-api/pulls/264", + "method": "PATCH", + "bodyPatterns": [ + { + "equalToJson": "{\"state\":\"closed\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api_pulls_264-cfd2cf1d-d98d-4374-a0fe-4d80a217e9d4.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:37 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4899", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"fa492d17864867ff70f0eda2ba2e7c93\"", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF88:40BB:4AD444:586801:5D74ACB4" + } + }, + "uuid": "cfd2cf1d-d98d-4374-a0fe-4d80a217e9d4", + "persistent": true, + "insertionIndex": 11 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/mappings/repos_github-api-test-org_github-api_pulls_264-7-462782.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/mappings/repos_github-api-test-org_github-api_pulls_264-7-462782.json new file mode 100644 index 0000000000..bbe4f96246 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/mappings/repos_github-api-test-org_github-api_pulls_264-7-462782.json @@ -0,0 +1,43 @@ +{ + "id": "4627827c-55fb-4f0c-850d-23fd6b35b4f7", + "name": "repos_github-api-test-org_github-api_pulls_264", + "request": { + "url": "/repos/github-api-test-org/github-api/pulls/264", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api_pulls_264-4627827c-55fb-4f0c-850d-23fd6b35b4f7.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:36 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4903", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"c720faab41efaae1e5c8573973fcf333\"", + "Last-Modified": "Sun, 08 Sep 2019 07:24:35 GMT", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF88:40BB:4AD42B:5867E7:5D74ACB3" + } + }, + "uuid": "4627827c-55fb-4f0c-850d-23fd6b35b4f7", + "persistent": true, + "insertionIndex": 7 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/mappings/user-1-946afc.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/mappings/user-1-946afc.json new file mode 100644 index 0000000000..b65ab207b8 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/setLabels/mappings/user-1-946afc.json @@ -0,0 +1,43 @@ +{ + "id": "946afcfe-31ac-4f28-9d66-5f45ffbb3a7c", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-946afcfe-31ac-4f28-9d66-5f45ffbb3a7c.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:33 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4909", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"3ba1de3523043df743651bd23efc7def\"", + "Last-Modified": "Mon, 03 Jun 2019 17:47:20 GMT", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF88:40BB:4AD3CA:58677C:5D74ACB1" + } + }, + "uuid": "946afcfe-31ac-4f28-9d66-5f45ffbb3a7c", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/__files/orgs_github-api-test-org-b35d6e1e-890c-4df6-9935-5c2394a76916.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/__files/orgs_github-api-test-org-b35d6e1e-890c-4df6-9935-5c2394a76916.json new file mode 100644 index 0000000000..61547e3d98 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/__files/orgs_github-api-test-org-b35d6e1e-890c-4df6-9935-5c2394a76916.json @@ -0,0 +1,41 @@ +{ + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "url": "https://api.github.com/orgs/github-api-test-org", + "repos_url": "https://api.github.com/orgs/github-api-test-org/repos", + "events_url": "https://api.github.com/orgs/github-api-test-org/events", + "hooks_url": "https://api.github.com/orgs/github-api-test-org/hooks", + "issues_url": "https://api.github.com/orgs/github-api-test-org/issues", + "members_url": "https://api.github.com/orgs/github-api-test-org/members{/member}", + "public_members_url": "https://api.github.com/orgs/github-api-test-org/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "description": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 9, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/github-api-test-org", + "created_at": "2014-05-10T19:39:11Z", + "updated_at": "2015-04-20T00:42:30Z", + "type": "Organization", + "total_private_repos": 0, + "owned_private_repos": 0, + "private_gists": 0, + "disk_usage": 132, + "collaborators": 0, + "billing_email": "kk@kohsuke.org", + "default_repository_permission": "none", + "members_can_create_repositories": false, + "two_factor_requirement_enabled": false, + "plan": { + "name": "free", + "space": 976562499, + "private_repos": 0, + "filled_seats": 3, + "seats": 0 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/__files/repos_github-api-test-org_github-api-3bd5c32a-06aa-4f2b-9055-9b9ff1dd9618.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/__files/repos_github-api-test-org_github-api-3bd5c32a-06aa-4f2b-9055-9b9ff1dd9618.json new file mode 100644 index 0000000000..c25e45f5c3 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/__files/repos_github-api-test-org_github-api-3bd5c32a-06aa-4f2b-9055-9b9ff1dd9618.json @@ -0,0 +1,330 @@ +{ + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:28Z", + "pushed_at": "2019-09-08T07:24:48Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "parent": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-07T00:07:16Z", + "pushed_at": "2019-09-07T00:07:14Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 551, + "watchers_count": 551, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 551, + "default_branch": "master" + }, + "source": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-07T00:07:16Z", + "pushed_at": "2019-09-07T00:07:14Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 551, + "watchers_count": 551, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 551, + "default_branch": "master" + }, + "network_count": 427, + "subscribers_count": 0 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/__files/repos_github-api-test-org_github-api-5f283241-c895-49c8-92a5-f578369b853b.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/__files/repos_github-api-test-org_github-api-5f283241-c895-49c8-92a5-f578369b853b.json new file mode 100644 index 0000000000..abb5e892c6 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/__files/repos_github-api-test-org_github-api-5f283241-c895-49c8-92a5-f578369b853b.json @@ -0,0 +1,330 @@ +{ + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:28Z", + "pushed_at": "2019-09-08T07:24:54Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "parent": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-07T00:07:16Z", + "pushed_at": "2019-09-07T00:07:14Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 551, + "watchers_count": 551, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 551, + "default_branch": "master" + }, + "source": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-07T00:07:16Z", + "pushed_at": "2019-09-07T00:07:14Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 551, + "watchers_count": 551, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 551, + "default_branch": "master" + }, + "network_count": 427, + "subscribers_count": 0 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/__files/repos_github-api-test-org_github-api-6395c5e1-f2ec-4642-923d-9aebee203afe.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/__files/repos_github-api-test-org_github-api-6395c5e1-f2ec-4642-923d-9aebee203afe.json new file mode 100644 index 0000000000..a7a0f67744 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/__files/repos_github-api-test-org_github-api-6395c5e1-f2ec-4642-923d-9aebee203afe.json @@ -0,0 +1,330 @@ +{ + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:28Z", + "pushed_at": "2019-09-08T07:24:44Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "parent": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-07T00:07:16Z", + "pushed_at": "2019-09-07T00:07:14Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 551, + "watchers_count": 551, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 551, + "default_branch": "master" + }, + "source": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-07T00:07:16Z", + "pushed_at": "2019-09-07T00:07:14Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 551, + "watchers_count": 551, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 551, + "default_branch": "master" + }, + "network_count": 427, + "subscribers_count": 0 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/__files/repos_github-api-test-org_github-api-7331ed24-bb2d-46a6-a842-986f52a91a5e.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/__files/repos_github-api-test-org_github-api-7331ed24-bb2d-46a6-a842-986f52a91a5e.json new file mode 100644 index 0000000000..30aa48ccb5 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/__files/repos_github-api-test-org_github-api-7331ed24-bb2d-46a6-a842-986f52a91a5e.json @@ -0,0 +1,330 @@ +{ + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:28Z", + "pushed_at": "2019-09-08T07:24:49Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "parent": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-07T00:07:16Z", + "pushed_at": "2019-09-07T00:07:14Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 551, + "watchers_count": 551, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 551, + "default_branch": "master" + }, + "source": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-07T00:07:16Z", + "pushed_at": "2019-09-07T00:07:14Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 551, + "watchers_count": 551, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 551, + "default_branch": "master" + }, + "network_count": 427, + "subscribers_count": 0 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/__files/repos_github-api-test-org_github-api-957364c8-87d8-4b0d-aad4-396ad3fed253.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/__files/repos_github-api-test-org_github-api-957364c8-87d8-4b0d-aad4-396ad3fed253.json new file mode 100644 index 0000000000..a7a0f67744 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/__files/repos_github-api-test-org_github-api-957364c8-87d8-4b0d-aad4-396ad3fed253.json @@ -0,0 +1,330 @@ +{ + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:28Z", + "pushed_at": "2019-09-08T07:24:44Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "parent": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-07T00:07:16Z", + "pushed_at": "2019-09-07T00:07:14Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 551, + "watchers_count": 551, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 551, + "default_branch": "master" + }, + "source": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-07T00:07:16Z", + "pushed_at": "2019-09-07T00:07:14Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 551, + "watchers_count": 551, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 551, + "default_branch": "master" + }, + "network_count": 427, + "subscribers_count": 0 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/__files/repos_github-api-test-org_github-api_contents_squashmerge-04ae8436-0239-47f1-9e0a-4c2987ca1378.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/__files/repos_github-api-test-org_github-api_contents_squashmerge-04ae8436-0239-47f1-9e0a-4c2987ca1378.json new file mode 100644 index 0000000000..c5f810de98 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/__files/repos_github-api-test-org_github-api_contents_squashmerge-04ae8436-0239-47f1-9e0a-4c2987ca1378.json @@ -0,0 +1,52 @@ +{ + "content": { + "name": "squashMerge", + "path": "squashMerge", + "sha": "58a8e2e48db272555de87ee74d36770d6172845b", + "size": 11, + "url": "https://api.github.com/repos/github-api-test-org/github-api/contents/squashMerge?ref=test/squashMerge", + "html_url": "https://github.com/github-api-test-org/github-api/blob/test/squashMerge/squashMerge", + "git_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs/58a8e2e48db272555de87ee74d36770d6172845b", + "download_url": "https://raw.githubusercontent.com/github-api-test-org/github-api/test/squashMerge/squashMerge", + "type": "file", + "_links": { + "self": "https://api.github.com/repos/github-api-test-org/github-api/contents/squashMerge?ref=test/squashMerge", + "git": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs/58a8e2e48db272555de87ee74d36770d6172845b", + "html": "https://github.com/github-api-test-org/github-api/blob/test/squashMerge/squashMerge" + } + }, + "commit": { + "sha": "4f8759011021d7e954334e8e887c2e485b51f57a", + "node_id": "MDY6Q29tbWl0MjA2ODg4MjAxOjRmODc1OTAxMTAyMWQ3ZTk1NDMzNGU4ZTg4N2MyZTQ4NWI1MWY1N2E=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits/4f8759011021d7e954334e8e887c2e485b51f57a", + "html_url": "https://github.com/github-api-test-org/github-api/commit/4f8759011021d7e954334e8e887c2e485b51f57a", + "author": { + "name": "Liam Newman", + "email": "bitwiseman@gmail.com", + "date": "2019-09-08T07:24:49Z" + }, + "committer": { + "name": "Liam Newman", + "email": "bitwiseman@gmail.com", + "date": "2019-09-08T07:24:49Z" + }, + "tree": { + "sha": "2d70711de9ad39070f370221ef17943a5f4490d0", + "url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees/2d70711de9ad39070f370221ef17943a5f4490d0" + }, + "message": "squashMerge", + "parents": [ + { + "sha": "912e2176a00e60e02196737e0ae4c218a14b5dcb", + "url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits/912e2176a00e60e02196737e0ae4c218a14b5dcb", + "html_url": "https://github.com/github-api-test-org/github-api/commit/912e2176a00e60e02196737e0ae4c218a14b5dcb" + } + ], + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/__files/repos_github-api-test-org_github-api_git_refs-9d910f89-f71e-441d-8781-cba77a54dd08.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/__files/repos_github-api-test-org_github-api_git_refs-9d910f89-f71e-441d-8781-cba77a54dd08.json new file mode 100644 index 0000000000..4dcdf6a7d1 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/__files/repos_github-api-test-org_github-api_git_refs-9d910f89-f71e-441d-8781-cba77a54dd08.json @@ -0,0 +1,10 @@ +{ + "ref": "refs/heads/test/squashMerge", + "node_id": "MDM6UmVmMjA2ODg4MjAxOnRlc3Qvc3F1YXNoTWVyZ2U=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs/heads/test/squashMerge", + "object": { + "sha": "912e2176a00e60e02196737e0ae4c218a14b5dcb", + "type": "commit", + "url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits/912e2176a00e60e02196737e0ae4c218a14b5dcb" + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/__files/repos_github-api-test-org_github-api_git_refs_heads_master-7bfa9315-c036-44af-bc3c-1e639325a8fe.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/__files/repos_github-api-test-org_github-api_git_refs_heads_master-7bfa9315-c036-44af-bc3c-1e639325a8fe.json new file mode 100644 index 0000000000..51f91ef861 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/__files/repos_github-api-test-org_github-api_git_refs_heads_master-7bfa9315-c036-44af-bc3c-1e639325a8fe.json @@ -0,0 +1,10 @@ +{ + "ref": "refs/heads/master", + "node_id": "MDM6UmVmMjA2ODg4MjAxOm1hc3Rlcg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs/heads/master", + "object": { + "sha": "912e2176a00e60e02196737e0ae4c218a14b5dcb", + "type": "commit", + "url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits/912e2176a00e60e02196737e0ae4c218a14b5dcb" + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/__files/repos_github-api-test-org_github-api_pulls-d149e4dc-e134-4376-8b93-ce784a868247.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/__files/repos_github-api-test-org_github-api_pulls-d149e4dc-e134-4376-8b93-ce784a868247.json new file mode 100644 index 0000000000..d86208f218 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/__files/repos_github-api-test-org_github-api_pulls-d149e4dc-e134-4376-8b93-ce784a868247.json @@ -0,0 +1,339 @@ +{ + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/267", + "id": 315252343, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzQz", + "html_url": "https://github.com/github-api-test-org/github-api/pull/267", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/267.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/267.patch", + "issue_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/267", + "number": 267, + "state": "open", + "locked": false, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "body": "## test squash", + "created_at": "2019-09-08T07:24:51Z", + "updated_at": "2019-09-08T07:24:51Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/267/commits", + "review_comments_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/267/comments", + "review_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/267/comments", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/4f8759011021d7e954334e8e887c2e485b51f57a", + "head": { + "label": "github-api-test-org:test/squashMerge", + "ref": "test/squashMerge", + "sha": "4f8759011021d7e954334e8e887c2e485b51f57a", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:28Z", + "pushed_at": "2019-09-08T07:24:49Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "github-api-test-org:master", + "ref": "master", + "sha": "912e2176a00e60e02196737e0ae4c218a14b5dcb", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:24:28Z", + "pushed_at": "2019-09-08T07:24:49Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/267" + }, + "html": { + "href": "https://github.com/github-api-test-org/github-api/pull/267" + }, + "issue": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/267" + }, + "comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/267/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/267/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/267/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/statuses/4f8759011021d7e954334e8e887c2e485b51f57a" + } + }, + "author_association": "MEMBER", + "merged": false, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 1, + "deletions": 0, + "changed_files": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/__files/user-b37e46bb-87be-4613-88c7-dcba8c693074.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/__files/user-b37e46bb-87be-4613-88c7-dcba8c693074.json new file mode 100644 index 0000000000..b9ce24cb03 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/__files/user-b37e46bb-87be-4613-88c7-dcba8c693074.json @@ -0,0 +1,33 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 166, + "public_gists": 4, + "followers": 133, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-06-03T17:47:20Z" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/mappings/orgs_github-api-test-org-2-b35d6e.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/mappings/orgs_github-api-test-org-2-b35d6e.json new file mode 100644 index 0000000000..342e5ff4c0 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/mappings/orgs_github-api-test-org-2-b35d6e.json @@ -0,0 +1,43 @@ +{ + "id": "b35d6e1e-890c-4df6-9935-5c2394a76916", + "name": "orgs_github-api-test-org", + "request": { + "url": "/orgs/github-api-test-org", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_github-api-test-org-b35d6e1e-890c-4df6-9935-5c2394a76916.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:47 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4871", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"d36965e157281b2a309c39e4c2343a55\"", + "Last-Modified": "Mon, 20 Apr 2015 00:42:30 GMT", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF94:9A2F:6886A8:76EF44:5D74ACBF" + } + }, + "uuid": "b35d6e1e-890c-4df6-9935-5c2394a76916", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/mappings/repos_github-api-test-org_github-api-12-5f2832.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/mappings/repos_github-api-test-org_github-api-12-5f2832.json new file mode 100644 index 0000000000..c430d404fd --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/mappings/repos_github-api-test-org_github-api-12-5f2832.json @@ -0,0 +1,45 @@ +{ + "id": "5f283241-c895-49c8-92a5-f578369b853b", + "name": "repos_github-api-test-org_github-api", + "request": { + "url": "/repos/github-api-test-org/github-api", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api-5f283241-c895-49c8-92a5-f578369b853b.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:54 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4861", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"17b3b848c656ff5666591ae88958ffa7\"", + "Last-Modified": "Sun, 08 Sep 2019 07:24:28 GMT", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF94:9A2F:688802:76F0CB:5D74ACC6" + } + }, + "uuid": "5f283241-c895-49c8-92a5-f578369b853b", + "persistent": true, + "scenarioName": "scenario-1-repos-github-api-test-org-github-api", + "requiredScenarioState": "scenario-1-repos-github-api-test-org-github-api-5", + "insertionIndex": 12 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/mappings/repos_github-api-test-org_github-api-3-957364.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/mappings/repos_github-api-test-org_github-api-3-957364.json new file mode 100644 index 0000000000..672231aab2 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/mappings/repos_github-api-test-org_github-api-3-957364.json @@ -0,0 +1,46 @@ +{ + "id": "957364c8-87d8-4b0d-aad4-396ad3fed253", + "name": "repos_github-api-test-org_github-api", + "request": { + "url": "/repos/github-api-test-org/github-api", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api-957364c8-87d8-4b0d-aad4-396ad3fed253.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:47 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4870", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"05b645fd998415b5b1e1265dd27dbf29\"", + "Last-Modified": "Sun, 08 Sep 2019 07:24:28 GMT", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF94:9A2F:6886B0:76EF4D:5D74ACBF" + } + }, + "uuid": "957364c8-87d8-4b0d-aad4-396ad3fed253", + "persistent": true, + "scenarioName": "scenario-1-repos-github-api-test-org-github-api", + "requiredScenarioState": "Started", + "newScenarioState": "scenario-1-repos-github-api-test-org-github-api-2", + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/mappings/repos_github-api-test-org_github-api-5-6395c5.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/mappings/repos_github-api-test-org_github-api-5-6395c5.json new file mode 100644 index 0000000000..3e60e2b99e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/mappings/repos_github-api-test-org_github-api-5-6395c5.json @@ -0,0 +1,46 @@ +{ + "id": "6395c5e1-f2ec-4642-923d-9aebee203afe", + "name": "repos_github-api-test-org_github-api", + "request": { + "url": "/repos/github-api-test-org/github-api", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api-6395c5e1-f2ec-4642-923d-9aebee203afe.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:48 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4868", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"05b645fd998415b5b1e1265dd27dbf29\"", + "Last-Modified": "Sun, 08 Sep 2019 07:24:28 GMT", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF94:9A2F:6886C6:76EF6A:5D74ACC0" + } + }, + "uuid": "6395c5e1-f2ec-4642-923d-9aebee203afe", + "persistent": true, + "scenarioName": "scenario-1-repos-github-api-test-org-github-api", + "requiredScenarioState": "scenario-1-repos-github-api-test-org-github-api-2", + "newScenarioState": "scenario-1-repos-github-api-test-org-github-api-3", + "insertionIndex": 5 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/mappings/repos_github-api-test-org_github-api-7-3bd5c3.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/mappings/repos_github-api-test-org_github-api-7-3bd5c3.json new file mode 100644 index 0000000000..d34024742c --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/mappings/repos_github-api-test-org_github-api-7-3bd5c3.json @@ -0,0 +1,46 @@ +{ + "id": "3bd5c32a-06aa-4f2b-9055-9b9ff1dd9618", + "name": "repos_github-api-test-org_github-api", + "request": { + "url": "/repos/github-api-test-org/github-api", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api-3bd5c32a-06aa-4f2b-9055-9b9ff1dd9618.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:49 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4866", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"93c7abff2744c89fff44602d06c4a1e9\"", + "Last-Modified": "Sun, 08 Sep 2019 07:24:28 GMT", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF94:9A2F:6886E5:76EF8D:5D74ACC0" + } + }, + "uuid": "3bd5c32a-06aa-4f2b-9055-9b9ff1dd9618", + "persistent": true, + "scenarioName": "scenario-1-repos-github-api-test-org-github-api", + "requiredScenarioState": "scenario-1-repos-github-api-test-org-github-api-3", + "newScenarioState": "scenario-1-repos-github-api-test-org-github-api-4", + "insertionIndex": 7 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/mappings/repos_github-api-test-org_github-api-9-7331ed.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/mappings/repos_github-api-test-org_github-api-9-7331ed.json new file mode 100644 index 0000000000..154c205fcf --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/mappings/repos_github-api-test-org_github-api-9-7331ed.json @@ -0,0 +1,46 @@ +{ + "id": "7331ed24-bb2d-46a6-a842-986f52a91a5e", + "name": "repos_github-api-test-org_github-api", + "request": { + "url": "/repos/github-api-test-org/github-api", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api-7331ed24-bb2d-46a6-a842-986f52a91a5e.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:51 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4864", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"3bfeb5940fea2c97485a04d0885cbb23\"", + "Last-Modified": "Sun, 08 Sep 2019 07:24:28 GMT", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF94:9A2F:688753:76EFC4:5D74ACC2" + } + }, + "uuid": "7331ed24-bb2d-46a6-a842-986f52a91a5e", + "persistent": true, + "scenarioName": "scenario-1-repos-github-api-test-org-github-api", + "requiredScenarioState": "scenario-1-repos-github-api-test-org-github-api-4", + "newScenarioState": "scenario-1-repos-github-api-test-org-github-api-5", + "insertionIndex": 9 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/mappings/repos_github-api-test-org_github-api_contents_squashmerge-8-04ae84.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/mappings/repos_github-api-test-org_github-api_contents_squashmerge-8-04ae84.json new file mode 100644 index 0000000000..2b83ce4201 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/mappings/repos_github-api-test-org_github-api_contents_squashmerge-8-04ae84.json @@ -0,0 +1,49 @@ +{ + "id": "04ae8436-0239-47f1-9e0a-4c2987ca1378", + "name": "repos_github-api-test-org_github-api_contents_squashmerge", + "request": { + "url": "/repos/github-api-test-org/github-api/contents/squashMerge", + "method": "PUT", + "bodyPatterns": [ + { + "equalToJson": "{\"path\":\"squashMerge\",\"message\":\"squashMerge\",\"branch\":\"test/squashMerge\",\"content\":\"c3F1YXNoTWVyZ2U=\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "repos_github-api-test-org_github-api_contents_squashmerge-04ae8436-0239-47f1-9e0a-4c2987ca1378.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:50 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4865", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"55d3ba9450e30b1533d3b2630cafe7ba\"", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF94:9A2F:6886F0:76EF9A:5D74ACC1" + } + }, + "uuid": "04ae8436-0239-47f1-9e0a-4c2987ca1378", + "persistent": true, + "insertionIndex": 8 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/mappings/repos_github-api-test-org_github-api_git_refs-6-9d910f.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/mappings/repos_github-api-test-org_github-api_git_refs-6-9d910f.json new file mode 100644 index 0000000000..c8d24f6458 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/mappings/repos_github-api-test-org_github-api_git_refs-6-9d910f.json @@ -0,0 +1,50 @@ +{ + "id": "9d910f89-f71e-441d-8781-cba77a54dd08", + "name": "repos_github-api-test-org_github-api_git_refs", + "request": { + "url": "/repos/github-api-test-org/github-api/git/refs", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"ref\":\"refs/heads/test/squashMerge\",\"sha\":\"912e2176a00e60e02196737e0ae4c218a14b5dcb\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "repos_github-api-test-org_github-api_git_refs-9d910f89-f71e-441d-8781-cba77a54dd08.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:48 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4867", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"b87362620c8682d8c473abd414562140\"", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "repo", + "Location": "https://api.github.com/repos/github-api-test-org/github-api/git/refs/heads/test/squashMerge", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF94:9A2F:6886CD:76EF71:5D74ACC0" + } + }, + "uuid": "9d910f89-f71e-441d-8781-cba77a54dd08", + "persistent": true, + "insertionIndex": 6 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/mappings/repos_github-api-test-org_github-api_git_refs_heads_master-4-7bfa93.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/mappings/repos_github-api-test-org_github-api_git_refs_heads_master-4-7bfa93.json new file mode 100644 index 0000000000..9879524f54 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/mappings/repos_github-api-test-org_github-api_git_refs_heads_master-4-7bfa93.json @@ -0,0 +1,44 @@ +{ + "id": "7bfa9315-c036-44af-bc3c-1e639325a8fe", + "name": "repos_github-api-test-org_github-api_git_refs_heads_master", + "request": { + "url": "/repos/github-api-test-org/github-api/git/refs/heads/master", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api_git_refs_heads_master-7bfa9315-c036-44af-bc3c-1e639325a8fe.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:48 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4869", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"338be473b06d88295f3203e460eb7cc2\"", + "Last-Modified": "Sun, 08 Sep 2019 07:24:28 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF94:9A2F:6886BC:76EF5F:5D74ACBF" + } + }, + "uuid": "7bfa9315-c036-44af-bc3c-1e639325a8fe", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/mappings/repos_github-api-test-org_github-api_pulls-10-d149e4.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/mappings/repos_github-api-test-org_github-api_pulls-10-d149e4.json new file mode 100644 index 0000000000..9744ac6c6f --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/mappings/repos_github-api-test-org_github-api_pulls-10-d149e4.json @@ -0,0 +1,50 @@ +{ + "id": "d149e4dc-e134-4376-8b93-ce784a868247", + "name": "repos_github-api-test-org_github-api_pulls", + "request": { + "url": "/repos/github-api-test-org/github-api/pulls", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"head\":\"test/squashMerge\",\"maintainer_can_modify\":true,\"title\":\"squashMerge\",\"body\":\"## test squash\",\"base\":\"master\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "repos_github-api-test-org_github-api_pulls-d149e4dc-e134-4376-8b93-ce784a868247.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:52 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4863", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"2c03a2b8b61f0879aa89357491990eb9\"", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/github-api-test-org/github-api/pulls/267", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF94:9A2F:68876F:76F016:5D74ACC3" + } + }, + "uuid": "d149e4dc-e134-4376-8b93-ce784a868247", + "persistent": true, + "insertionIndex": 10 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/mappings/repos_github-api-test-org_github-api_pulls-13-1f5294.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/mappings/repos_github-api-test-org_github-api_pulls-13-1f5294.json new file mode 100644 index 0000000000..3536e04124 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/mappings/repos_github-api-test-org_github-api_pulls-13-1f5294.json @@ -0,0 +1,42 @@ +{ + "id": "1f52941d-080a-42e2-a673-f355893794c0", + "name": "repos_github-api-test-org_github-api_pulls", + "request": { + "url": "/repos/github-api-test-org/github-api/pulls?state=open", + "method": "GET" + }, + "response": { + "status": 200, + "body": "[]", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:54 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4860", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"ad5808b0a5d75d70a16a73b8e9763e19\"", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF94:9A2F:68880E:76F0D7:5D74ACC6" + } + }, + "uuid": "1f52941d-080a-42e2-a673-f355893794c0", + "persistent": true, + "insertionIndex": 13 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/mappings/repos_github-api-test-org_github-api_pulls_267_merge-11-504d0b.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/mappings/repos_github-api-test-org_github-api_pulls_267_merge-11-504d0b.json new file mode 100644 index 0000000000..3ba3a80da6 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/mappings/repos_github-api-test-org_github-api_pulls_267_merge-11-504d0b.json @@ -0,0 +1,49 @@ +{ + "id": "504d0b8b-20d6-4ca5-8a15-de74a7e92143", + "name": "repos_github-api-test-org_github-api_pulls_267_merge", + "request": { + "url": "/repos/github-api-test-org/github-api/pulls/267/merge", + "method": "PUT", + "bodyPatterns": [ + { + "equalToJson": "{\"commit_message\":\"squash merge\",\"merge_method\":\"squash\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 200, + "body": "{\"sha\":\"ecec449372b1e8270524a35c1a5aa8fdaf0e6676\",\"merged\":true,\"message\":\"Pull Request successfully merged\"}", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:54 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4862", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"be61ee8096dc9be577c5f798080e7a40\"", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF94:9A2F:6887CF:76F050:5D74ACC4" + } + }, + "uuid": "504d0b8b-20d6-4ca5-8a15-de74a7e92143", + "persistent": true, + "insertionIndex": 11 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/mappings/user-1-b37e46.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/mappings/user-1-b37e46.json new file mode 100644 index 0000000000..d4e0d50dd1 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/squashMerge/mappings/user-1-b37e46.json @@ -0,0 +1,43 @@ +{ + "id": "b37e46bb-87be-4613-88c7-dcba8c693074", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-b37e46bb-87be-4613-88c7-dcba8c693074.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:47 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4872", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"3ba1de3523043df743651bd23efc7def\"", + "Last-Modified": "Mon, 03 Jun 2019 17:47:20 GMT", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF94:9A2F:6886A1:76EF3A:5D74ACBF" + } + }, + "uuid": "b37e46bb-87be-4613-88c7-dcba8c693074", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestReviewRequests/__files/orgs_github-api-test-org-4b062368-3c1a-4ed9-8d16-f15b4bfadd20.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestReviewRequests/__files/orgs_github-api-test-org-4b062368-3c1a-4ed9-8d16-f15b4bfadd20.json new file mode 100644 index 0000000000..6a1869b899 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestReviewRequests/__files/orgs_github-api-test-org-4b062368-3c1a-4ed9-8d16-f15b4bfadd20.json @@ -0,0 +1,41 @@ +{ + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "url": "https://api.github.com/orgs/github-api-test-org", + "repos_url": "https://api.github.com/orgs/github-api-test-org/repos", + "events_url": "https://api.github.com/orgs/github-api-test-org/events", + "hooks_url": "https://api.github.com/orgs/github-api-test-org/hooks", + "issues_url": "https://api.github.com/orgs/github-api-test-org/issues", + "members_url": "https://api.github.com/orgs/github-api-test-org/members{/member}", + "public_members_url": "https://api.github.com/orgs/github-api-test-org/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "description": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 10, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/github-api-test-org", + "created_at": "2014-05-10T19:39:11Z", + "updated_at": "2015-04-20T00:42:30Z", + "type": "Organization", + "total_private_repos": 0, + "owned_private_repos": 0, + "private_gists": 0, + "disk_usage": 132, + "collaborators": 0, + "billing_email": "kk@kohsuke.org", + "default_repository_permission": "none", + "members_can_create_repositories": false, + "two_factor_requirement_enabled": false, + "plan": { + "name": "free", + "space": 976562499, + "private_repos": 0, + "filled_seats": 5, + "seats": 0 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestReviewRequests/__files/repos_github-api-test-org_github-api-cafd015e-b65c-41a6-9dc9-81b48e9bf803.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestReviewRequests/__files/repos_github-api-test-org_github-api-cafd015e-b65c-41a6-9dc9-81b48e9bf803.json new file mode 100644 index 0000000000..1031bcea6f --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestReviewRequests/__files/repos_github-api-test-org_github-api-cafd015e-b65c-41a6-9dc9-81b48e9bf803.json @@ -0,0 +1,330 @@ +{ + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Tricky", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-30T22:36:47Z", + "pushed_at": "2019-09-26T00:06:54Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11391, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "parent": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-10-05T05:28:18Z", + "pushed_at": "2019-10-05T05:28:12Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 12841, + "stargazers_count": 557, + "watchers_count": 557, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 429, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 82, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 429, + "open_issues": 82, + "watchers": 557, + "default_branch": "master" + }, + "source": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-10-05T05:28:18Z", + "pushed_at": "2019-10-05T05:28:12Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 12841, + "stargazers_count": 557, + "watchers_count": 557, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 429, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 82, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 429, + "open_issues": 82, + "watchers": 557, + "default_branch": "master" + }, + "network_count": 429, + "subscribers_count": 0 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestReviewRequests/__files/repos_github-api-test-org_github-api_pulls-e7589ec2-0f9c-4b08-a559-0f019f425217.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestReviewRequests/__files/repos_github-api-test-org_github-api_pulls-e7589ec2-0f9c-4b08-a559-0f019f425217.json new file mode 100644 index 0000000000..1111e6273a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestReviewRequests/__files/repos_github-api-test-org_github-api_pulls-e7589ec2-0f9c-4b08-a559-0f019f425217.json @@ -0,0 +1,339 @@ +{ + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/299", + "id": 324936077, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzI0OTM2MDc3", + "html_url": "https://github.com/github-api-test-org/github-api/pull/299", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/299.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/299.patch", + "issue_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/299", + "number": 299, + "state": "open", + "locked": false, + "title": "testPullRequestReviewRequests", + "user": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "body": "## test", + "created_at": "2019-10-05T12:34:31Z", + "updated_at": "2019-10-05T12:34:31Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/299/commits", + "review_comments_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/299/comments", + "review_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/299/comments", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/1f40fdf4acf1adb246c109c21a22f617e4bd1ca8", + "head": { + "label": "github-api-test-org:test/stable", + "ref": "test/stable", + "sha": "1f40fdf4acf1adb246c109c21a22f617e4bd1ca8", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Tricky", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-30T22:36:47Z", + "pushed_at": "2019-09-26T00:06:54Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11391, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "github-api-test-org:master", + "ref": "master", + "sha": "3a09d2de4a9a1322a0ba2c3e2f54a919ca8fe353", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Tricky", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-30T22:36:47Z", + "pushed_at": "2019-09-26T00:06:54Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11391, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/299" + }, + "html": { + "href": "https://github.com/github-api-test-org/github-api/pull/299" + }, + "issue": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/299" + }, + "comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/299/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/299/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/299/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/statuses/1f40fdf4acf1adb246c109c21a22f617e4bd1ca8" + } + }, + "author_association": "MEMBER", + "merged": false, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 2, + "additions": 2, + "deletions": 1, + "changed_files": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestReviewRequests/__files/repos_github-api-test-org_github-api_pulls_299-59c3756e-2f08-4be6-bbe4-bd4725f6f27b.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestReviewRequests/__files/repos_github-api-test-org_github-api_pulls_299-59c3756e-2f08-4be6-bbe4-bd4725f6f27b.json new file mode 100644 index 0000000000..7dd11bf6d8 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestReviewRequests/__files/repos_github-api-test-org_github-api_pulls_299-59c3756e-2f08-4be6-bbe4-bd4725f6f27b.json @@ -0,0 +1,360 @@ +{ + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/299", + "id": 324936077, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzI0OTM2MDc3", + "html_url": "https://github.com/github-api-test-org/github-api/pull/299", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/299.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/299.patch", + "issue_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/299", + "number": 299, + "state": "open", + "locked": false, + "title": "testPullRequestReviewRequests", + "user": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "body": "## test", + "created_at": "2019-10-05T12:34:31Z", + "updated_at": "2019-10-05T12:34:32Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "kohsuke2", + "id": 1329242, + "node_id": "MDQ6VXNlcjEzMjkyNDI=", + "avatar_url": "https://avatars2.githubusercontent.com/u/1329242?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kohsuke2", + "html_url": "https://github.com/kohsuke2", + "followers_url": "https://api.github.com/users/kohsuke2/followers", + "following_url": "https://api.github.com/users/kohsuke2/following{/other_user}", + "gists_url": "https://api.github.com/users/kohsuke2/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kohsuke2/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kohsuke2/subscriptions", + "organizations_url": "https://api.github.com/users/kohsuke2/orgs", + "repos_url": "https://api.github.com/users/kohsuke2/repos", + "events_url": "https://api.github.com/users/kohsuke2/events{/privacy}", + "received_events_url": "https://api.github.com/users/kohsuke2/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/299/commits", + "review_comments_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/299/comments", + "review_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/299/comments", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/1f40fdf4acf1adb246c109c21a22f617e4bd1ca8", + "head": { + "label": "github-api-test-org:test/stable", + "ref": "test/stable", + "sha": "1f40fdf4acf1adb246c109c21a22f617e4bd1ca8", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Tricky", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-30T22:36:47Z", + "pushed_at": "2019-10-05T12:34:31Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11391, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "github-api-test-org:master", + "ref": "master", + "sha": "3a09d2de4a9a1322a0ba2c3e2f54a919ca8fe353", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Tricky", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-30T22:36:47Z", + "pushed_at": "2019-10-05T12:34:31Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11391, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/299" + }, + "html": { + "href": "https://github.com/github-api-test-org/github-api/pull/299" + }, + "issue": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/299" + }, + "comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/299/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/299/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/299/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/statuses/1f40fdf4acf1adb246c109c21a22f617e4bd1ca8" + } + }, + "author_association": "MEMBER", + "merged": false, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 2, + "additions": 2, + "deletions": 1, + "changed_files": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestReviewRequests/__files/repos_github-api-test-org_github-api_pulls_299_requested_reviewers-38f8763a-b045-43de-a850-e58b7b117590.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestReviewRequests/__files/repos_github-api-test-org_github-api_pulls_299_requested_reviewers-38f8763a-b045-43de-a850-e58b7b117590.json new file mode 100644 index 0000000000..78a8f582bd --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestReviewRequests/__files/repos_github-api-test-org_github-api_pulls_299_requested_reviewers-38f8763a-b045-43de-a850-e58b7b117590.json @@ -0,0 +1,348 @@ +{ + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/299", + "id": 324936077, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzI0OTM2MDc3", + "html_url": "https://github.com/github-api-test-org/github-api/pull/299", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/299.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/299.patch", + "issue_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/299", + "number": 299, + "state": "open", + "locked": false, + "title": "testPullRequestReviewRequests", + "user": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "body": "## test", + "created_at": "2019-10-05T12:34:31Z", + "updated_at": "2019-10-05T12:34:32Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "kohsuke2", + "id": 1329242, + "node_id": "MDQ6VXNlcjEzMjkyNDI=", + "avatar_url": "https://avatars2.githubusercontent.com/u/1329242?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kohsuke2", + "html_url": "https://github.com/kohsuke2", + "followers_url": "https://api.github.com/users/kohsuke2/followers", + "following_url": "https://api.github.com/users/kohsuke2/following{/other_user}", + "gists_url": "https://api.github.com/users/kohsuke2/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kohsuke2/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kohsuke2/subscriptions", + "organizations_url": "https://api.github.com/users/kohsuke2/orgs", + "repos_url": "https://api.github.com/users/kohsuke2/repos", + "events_url": "https://api.github.com/users/kohsuke2/events{/privacy}", + "received_events_url": "https://api.github.com/users/kohsuke2/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/299/commits", + "review_comments_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/299/comments", + "review_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/299/comments", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/1f40fdf4acf1adb246c109c21a22f617e4bd1ca8", + "head": { + "label": "github-api-test-org:test/stable", + "ref": "test/stable", + "sha": "1f40fdf4acf1adb246c109c21a22f617e4bd1ca8", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Tricky", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-30T22:36:47Z", + "pushed_at": "2019-10-05T12:34:31Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11391, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "github-api-test-org:master", + "ref": "master", + "sha": "3a09d2de4a9a1322a0ba2c3e2f54a919ca8fe353", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Tricky", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-30T22:36:47Z", + "pushed_at": "2019-10-05T12:34:31Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11391, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/299" + }, + "html": { + "href": "https://github.com/github-api-test-org/github-api/pull/299" + }, + "issue": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/299" + }, + "comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/299/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/299/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/299/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/statuses/1f40fdf4acf1adb246c109c21a22f617e4bd1ca8" + } + }, + "author_association": "MEMBER" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestReviewRequests/__files/user-77ed943e-b741-40d5-bc1e-4414411ca129.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestReviewRequests/__files/user-77ed943e-b741-40d5-bc1e-4414411ca129.json new file mode 100644 index 0000000000..61b439b35c --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestReviewRequests/__files/user-77ed943e-b741-40d5-bc1e-4414411ca129.json @@ -0,0 +1,45 @@ +{ + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false, + "name": "Matt Farmer", + "company": "@Mailchimp", + "blog": "https://farmdawgnation.com", + "location": "Atlanta, GA", + "email": "matt@frmr.me", + "hireable": null, + "bio": "A Scala and Clojure lover. Maintainer at @lift and @dispatch.", + "public_repos": 111, + "public_gists": 28, + "followers": 58, + "following": 36, + "created_at": "2011-02-15T23:42:51Z", + "updated_at": "2019-09-21T13:46:39Z", + "private_gists": 15, + "total_private_repos": 17, + "owned_private_repos": 17, + "disk_usage": 48311, + "collaborators": 3, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestReviewRequests/__files/users_kohsuke2-8bcfc03d-57d3-4728-a550-9a7375923fa0.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestReviewRequests/__files/users_kohsuke2-8bcfc03d-57d3-4728-a550-9a7375923fa0.json new file mode 100644 index 0000000000..4a37d8ced0 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestReviewRequests/__files/users_kohsuke2-8bcfc03d-57d3-4728-a550-9a7375923fa0.json @@ -0,0 +1,33 @@ +{ + "login": "kohsuke2", + "id": 1329242, + "node_id": "MDQ6VXNlcjEzMjkyNDI=", + "avatar_url": "https://avatars2.githubusercontent.com/u/1329242?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kohsuke2", + "html_url": "https://github.com/kohsuke2", + "followers_url": "https://api.github.com/users/kohsuke2/followers", + "following_url": "https://api.github.com/users/kohsuke2/following{/other_user}", + "gists_url": "https://api.github.com/users/kohsuke2/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kohsuke2/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kohsuke2/subscriptions", + "organizations_url": "https://api.github.com/users/kohsuke2/orgs", + "repos_url": "https://api.github.com/users/kohsuke2/repos", + "events_url": "https://api.github.com/users/kohsuke2/events{/privacy}", + "received_events_url": "https://api.github.com/users/kohsuke2/received_events", + "type": "User", + "site_admin": false, + "name": "Fake 川口耕介", + "company": null, + "blog": "", + "location": null, + "email": null, + "hireable": null, + "bio": null, + "public_repos": 19, + "public_gists": 0, + "followers": 1, + "following": 0, + "created_at": "2012-01-14T01:58:59Z", + "updated_at": "2019-05-16T20:59:50Z" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestReviewRequests/mappings/orgs_github-api-test-org-2-4b0623.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestReviewRequests/mappings/orgs_github-api-test-org-2-4b0623.json new file mode 100644 index 0000000000..e3d1fffeae --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestReviewRequests/mappings/orgs_github-api-test-org-2-4b0623.json @@ -0,0 +1,40 @@ +{ + "id": "4b062368-3c1a-4ed9-8d16-f15b4bfadd20", + "name": "orgs_github-api-test-org", + "request": { + "url": "/orgs/github-api-test-org", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_github-api-test-org-4b062368-3c1a-4ed9-8d16-f15b4bfadd20.json", + "headers": { + "Server": "GitHub.com", + "Date": "Sat, 05 Oct 2019 12:34:30 GMT", + "Content-Type": "application/json; charset=utf-8", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4954", + "X-RateLimit-Reset": "1570282323", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"298cbc515b117c1f190a8250bf171341\"", + "Last-Modified": "Mon, 20 Apr 2015 00:42:30 GMT", + "X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, read:packages, repo, user, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F731:15A7:103EFC6:26DBD9D:5D988DD6" + } + }, + "uuid": "4b062368-3c1a-4ed9-8d16-f15b4bfadd20", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestReviewRequests/mappings/repos_github-api-test-org_github-api-3-cafd01.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestReviewRequests/mappings/repos_github-api-test-org_github-api-3-cafd01.json new file mode 100644 index 0000000000..83721d43e3 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestReviewRequests/mappings/repos_github-api-test-org_github-api-3-cafd01.json @@ -0,0 +1,40 @@ +{ + "id": "cafd015e-b65c-41a6-9dc9-81b48e9bf803", + "name": "repos_github-api-test-org_github-api", + "request": { + "url": "/repos/github-api-test-org/github-api", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api-cafd015e-b65c-41a6-9dc9-81b48e9bf803.json", + "headers": { + "Server": "GitHub.com", + "Date": "Sat, 05 Oct 2019 12:34:30 GMT", + "Content-Type": "application/json; charset=utf-8", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4953", + "X-RateLimit-Reset": "1570282323", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"c4b1f0a72cafb814412ee2c1665614b1\"", + "Last-Modified": "Mon, 30 Sep 2019 22:36:47 GMT", + "X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, read:packages, repo, user, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F731:15A7:103EFCC:26DBDDB:5D988DD6" + } + }, + "uuid": "cafd015e-b65c-41a6-9dc9-81b48e9bf803", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestReviewRequests/mappings/repos_github-api-test-org_github-api_pulls-4-e7589e.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestReviewRequests/mappings/repos_github-api-test-org_github-api_pulls-4-e7589e.json new file mode 100644 index 0000000000..f09d34d94a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestReviewRequests/mappings/repos_github-api-test-org_github-api_pulls-4-e7589e.json @@ -0,0 +1,47 @@ +{ + "id": "e7589ec2-0f9c-4b08-a559-0f019f425217", + "name": "repos_github-api-test-org_github-api_pulls", + "request": { + "url": "/repos/github-api-test-org/github-api/pulls", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"head\":\"test/stable\",\"maintainer_can_modify\":true,\"title\":\"testPullRequestReviewRequests\",\"body\":\"## test\",\"base\":\"master\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "repos_github-api-test-org_github-api_pulls-e7589ec2-0f9c-4b08-a559-0f019f425217.json", + "headers": { + "Server": "GitHub.com", + "Date": "Sat, 05 Oct 2019 12:34:31 GMT", + "Content-Type": "application/json; charset=utf-8", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4952", + "X-RateLimit-Reset": "1570282323", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"2d26fd1875d905a9fa8a9bf5ff480725\"", + "X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, read:packages, repo, user, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/github-api-test-org/github-api/pulls/299", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F731:15A7:103EFD9:26DBDF4:5D988DD6" + } + }, + "uuid": "e7589ec2-0f9c-4b08-a559-0f019f425217", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestReviewRequests/mappings/repos_github-api-test-org_github-api_pulls_299-7-59c375.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestReviewRequests/mappings/repos_github-api-test-org_github-api_pulls_299-7-59c375.json new file mode 100644 index 0000000000..dc77506f22 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestReviewRequests/mappings/repos_github-api-test-org_github-api_pulls_299-7-59c375.json @@ -0,0 +1,40 @@ +{ + "id": "59c3756e-2f08-4be6-bbe4-bd4725f6f27b", + "name": "repos_github-api-test-org_github-api_pulls_299", + "request": { + "url": "/repos/github-api-test-org/github-api/pulls/299", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api_pulls_299-59c3756e-2f08-4be6-bbe4-bd4725f6f27b.json", + "headers": { + "Server": "GitHub.com", + "Date": "Sat, 05 Oct 2019 12:34:32 GMT", + "Content-Type": "application/json; charset=utf-8", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4949", + "X-RateLimit-Reset": "1570282323", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"2a4678b42aca1dd1ab51ad1b45c9cfbf\"", + "Last-Modified": "Sat, 05 Oct 2019 12:34:32 GMT", + "X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, read:packages, repo, user, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F731:15A7:103F024:26DBE79:5D988DD8" + } + }, + "uuid": "59c3756e-2f08-4be6-bbe4-bd4725f6f27b", + "persistent": true, + "insertionIndex": 7 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestReviewRequests/mappings/repos_github-api-test-org_github-api_pulls_299_requested_reviewers-6-38f876.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestReviewRequests/mappings/repos_github-api-test-org_github-api_pulls_299_requested_reviewers-6-38f876.json new file mode 100644 index 0000000000..9b11b84576 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestReviewRequests/mappings/repos_github-api-test-org_github-api_pulls_299_requested_reviewers-6-38f876.json @@ -0,0 +1,47 @@ +{ + "id": "38f8763a-b045-43de-a850-e58b7b117590", + "name": "repos_github-api-test-org_github-api_pulls_299_requested_reviewers", + "request": { + "url": "/repos/github-api-test-org/github-api/pulls/299/requested_reviewers", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"reviewers\":[\"kohsuke2\"]}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "repos_github-api-test-org_github-api_pulls_299_requested_reviewers-38f8763a-b045-43de-a850-e58b7b117590.json", + "headers": { + "Server": "GitHub.com", + "Date": "Sat, 05 Oct 2019 12:34:32 GMT", + "Content-Type": "application/json; charset=utf-8", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4950", + "X-RateLimit-Reset": "1570282323", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"b3328950dcd409e84ff9897e96649056\"", + "X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, read:packages, repo, user, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/github-api-test-org/github-api/pulls/299", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F731:15A7:103F00C:26DBE5A:5D988DD7" + } + }, + "uuid": "38f8763a-b045-43de-a850-e58b7b117590", + "persistent": true, + "insertionIndex": 6 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestReviewRequests/mappings/user-1-77ed94.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestReviewRequests/mappings/user-1-77ed94.json new file mode 100644 index 0000000000..5e1d0c5403 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestReviewRequests/mappings/user-1-77ed94.json @@ -0,0 +1,40 @@ +{ + "id": "77ed943e-b741-40d5-bc1e-4414411ca129", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-77ed943e-b741-40d5-bc1e-4414411ca129.json", + "headers": { + "Server": "GitHub.com", + "Date": "Sat, 05 Oct 2019 12:34:30 GMT", + "Content-Type": "application/json; charset=utf-8", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4959", + "X-RateLimit-Reset": "1570282323", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"1f70a8ac0c3cc9339b0b1ec25ef7d2b8\"", + "Last-Modified": "Sat, 21 Sep 2019 13:46:39 GMT", + "X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, read:packages, repo, user, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F731:15A7:103EFAB:26DBD91:5D988DD6" + } + }, + "uuid": "77ed943e-b741-40d5-bc1e-4414411ca129", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestReviewRequests/mappings/users_kohsuke2-5-8bcfc0.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestReviewRequests/mappings/users_kohsuke2-5-8bcfc0.json new file mode 100644 index 0000000000..20f5e0f499 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestReviewRequests/mappings/users_kohsuke2-5-8bcfc0.json @@ -0,0 +1,40 @@ +{ + "id": "8bcfc03d-57d3-4728-a550-9a7375923fa0", + "name": "users_kohsuke2", + "request": { + "url": "/users/kohsuke2", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "users_kohsuke2-8bcfc03d-57d3-4728-a550-9a7375923fa0.json", + "headers": { + "Server": "GitHub.com", + "Date": "Sat, 05 Oct 2019 12:34:31 GMT", + "Content-Type": "application/json; charset=utf-8", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4951", + "X-RateLimit-Reset": "1570282323", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"b0cb0fddde3978711bded54d70ea66ba\"", + "Last-Modified": "Thu, 16 May 2019 20:59:50 GMT", + "X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, read:packages, repo, user, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F731:15A7:103F006:26DBE46:5D988DD7" + } + }, + "uuid": "8bcfc03d-57d3-4728-a550-9a7375923fa0", + "persistent": true, + "insertionIndex": 5 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestTeamReviewRequests/__files/orgs_github-api-test-org-8634de25-3d3d-47a6-a72a-de26a5190ce6.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestTeamReviewRequests/__files/orgs_github-api-test-org-8634de25-3d3d-47a6-a72a-de26a5190ce6.json new file mode 100644 index 0000000000..6a1869b899 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestTeamReviewRequests/__files/orgs_github-api-test-org-8634de25-3d3d-47a6-a72a-de26a5190ce6.json @@ -0,0 +1,41 @@ +{ + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "url": "https://api.github.com/orgs/github-api-test-org", + "repos_url": "https://api.github.com/orgs/github-api-test-org/repos", + "events_url": "https://api.github.com/orgs/github-api-test-org/events", + "hooks_url": "https://api.github.com/orgs/github-api-test-org/hooks", + "issues_url": "https://api.github.com/orgs/github-api-test-org/issues", + "members_url": "https://api.github.com/orgs/github-api-test-org/members{/member}", + "public_members_url": "https://api.github.com/orgs/github-api-test-org/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "description": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 10, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/github-api-test-org", + "created_at": "2014-05-10T19:39:11Z", + "updated_at": "2015-04-20T00:42:30Z", + "type": "Organization", + "total_private_repos": 0, + "owned_private_repos": 0, + "private_gists": 0, + "disk_usage": 132, + "collaborators": 0, + "billing_email": "kk@kohsuke.org", + "default_repository_permission": "none", + "members_can_create_repositories": false, + "two_factor_requirement_enabled": false, + "plan": { + "name": "free", + "space": 976562499, + "private_repos": 0, + "filled_seats": 5, + "seats": 0 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestTeamReviewRequests/__files/orgs_github-api-test-org_teams-b84882f2-4778-47cb-bced-70eced02e28b.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestTeamReviewRequests/__files/orgs_github-api-test-org_teams-b84882f2-4778-47cb-bced-70eced02e28b.json new file mode 100644 index 0000000000..2da48aa286 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestTeamReviewRequests/__files/orgs_github-api-test-org_teams-b84882f2-4778-47cb-bced-70eced02e28b.json @@ -0,0 +1,54 @@ +[ + { + "name": "Owners", + "id": 820404, + "node_id": "MDQ6VGVhbTgyMDQwNA==", + "slug": "owners", + "description": null, + "privacy": "secret", + "url": "https://api.github.com/teams/820404", + "html_url": "https://github.com/orgs/github-api-test-org/teams/owners", + "members_url": "https://api.github.com/teams/820404/members{/member}", + "repositories_url": "https://api.github.com/teams/820404/repos", + "permission": "admin" + }, + { + "name": "Core Developers", + "id": 820406, + "node_id": "MDQ6VGVhbTgyMDQwNg==", + "slug": "core-developers", + "description": "A random team", + "privacy": "secret", + "url": "https://api.github.com/teams/820406", + "html_url": "https://github.com/orgs/github-api-test-org/teams/core-developers", + "members_url": "https://api.github.com/teams/820406/members{/member}", + "repositories_url": "https://api.github.com/teams/820406/repos", + "permission": "pull" + }, + { + "name": "dummy-team", + "id": 3451996, + "node_id": "MDQ6VGVhbTM0NTE5OTY=", + "slug": "dummy-team", + "description": "Updated by API TestModified", + "privacy": "closed", + "url": "https://api.github.com/teams/3451996", + "html_url": "https://github.com/orgs/github-api-test-org/teams/dummy-team", + "members_url": "https://api.github.com/teams/3451996/members{/member}", + "repositories_url": "https://api.github.com/teams/3451996/repos", + "permission": "pull" + }, + { + "name": "tricky-team", + "id": 3454508, + "node_id": "MDQ6VGVhbTM0NTQ1MDg=", + "slug": "tricky-team", + "description": "", + "privacy": "secret", + "url": "https://api.github.com/teams/3454508", + "html_url": "https://github.com/orgs/github-api-test-org/teams/tricky-team", + "members_url": "https://api.github.com/teams/3454508/members{/member}", + "repositories_url": "https://api.github.com/teams/3454508/repos", + "permission": "pull" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestTeamReviewRequests/__files/repos_github-api-test-org_github-api-92a8e470-1b50-4f84-a580-94b8cc1aa3b0.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestTeamReviewRequests/__files/repos_github-api-test-org_github-api-92a8e470-1b50-4f84-a580-94b8cc1aa3b0.json new file mode 100644 index 0000000000..e6d1bc83f1 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestTeamReviewRequests/__files/repos_github-api-test-org_github-api-92a8e470-1b50-4f84-a580-94b8cc1aa3b0.json @@ -0,0 +1,330 @@ +{ + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Tricky", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-30T22:36:47Z", + "pushed_at": "2019-10-05T12:46:15Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11391, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "parent": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-10-05T05:28:18Z", + "pushed_at": "2019-10-05T05:28:12Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 12841, + "stargazers_count": 557, + "watchers_count": 557, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 429, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 82, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 429, + "open_issues": 82, + "watchers": 557, + "default_branch": "master" + }, + "source": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-10-05T05:28:18Z", + "pushed_at": "2019-10-05T05:28:12Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 12841, + "stargazers_count": 557, + "watchers_count": 557, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 429, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 82, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 429, + "open_issues": 82, + "watchers": 557, + "default_branch": "master" + }, + "network_count": 429, + "subscribers_count": 0 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestTeamReviewRequests/__files/repos_github-api-test-org_github-api_pulls-f9eb4ced-224a-4b9c-b9e6-fc98bdd40345.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestTeamReviewRequests/__files/repos_github-api-test-org_github-api_pulls-f9eb4ced-224a-4b9c-b9e6-fc98bdd40345.json new file mode 100644 index 0000000000..e903924620 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestTeamReviewRequests/__files/repos_github-api-test-org_github-api_pulls-f9eb4ced-224a-4b9c-b9e6-fc98bdd40345.json @@ -0,0 +1,339 @@ +{ + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/304", + "id": 324938629, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzI0OTM4NjI5", + "html_url": "https://github.com/github-api-test-org/github-api/pull/304", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/304.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/304.patch", + "issue_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/304", + "number": 304, + "state": "open", + "locked": false, + "title": "testPullRequestTeamReviewRequests", + "user": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "body": "## test", + "created_at": "2019-10-05T13:12:37Z", + "updated_at": "2019-10-05T13:12:37Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/304/commits", + "review_comments_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/304/comments", + "review_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/304/comments", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/1f40fdf4acf1adb246c109c21a22f617e4bd1ca8", + "head": { + "label": "github-api-test-org:test/stable", + "ref": "test/stable", + "sha": "1f40fdf4acf1adb246c109c21a22f617e4bd1ca8", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Tricky", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-30T22:36:47Z", + "pushed_at": "2019-10-05T12:46:15Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11391, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "github-api-test-org:master", + "ref": "master", + "sha": "3a09d2de4a9a1322a0ba2c3e2f54a919ca8fe353", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Tricky", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-30T22:36:47Z", + "pushed_at": "2019-10-05T12:46:15Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11391, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/304" + }, + "html": { + "href": "https://github.com/github-api-test-org/github-api/pull/304" + }, + "issue": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/304" + }, + "comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/304/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/304/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/304/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/statuses/1f40fdf4acf1adb246c109c21a22f617e4bd1ca8" + } + }, + "author_association": "MEMBER", + "merged": false, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 2, + "additions": 2, + "deletions": 1, + "changed_files": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestTeamReviewRequests/__files/repos_github-api-test-org_github-api_pulls_304-e091cbaf-316c-4092-8205-a0d35b299a8e.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestTeamReviewRequests/__files/repos_github-api-test-org_github-api_pulls_304-e091cbaf-316c-4092-8205-a0d35b299a8e.json new file mode 100644 index 0000000000..d48d17b86e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestTeamReviewRequests/__files/repos_github-api-test-org_github-api_pulls_304-e091cbaf-316c-4092-8205-a0d35b299a8e.json @@ -0,0 +1,353 @@ +{ + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/304", + "id": 324938629, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzI0OTM4NjI5", + "html_url": "https://github.com/github-api-test-org/github-api/pull/304", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/304.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/304.patch", + "issue_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/304", + "number": 304, + "state": "open", + "locked": false, + "title": "testPullRequestTeamReviewRequests", + "user": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "body": "## test", + "created_at": "2019-10-05T13:12:37Z", + "updated_at": "2019-10-05T13:12:37Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [ + { + "name": "dummy-team", + "id": 3451996, + "node_id": "MDQ6VGVhbTM0NTE5OTY=", + "slug": "dummy-team", + "description": "Updated by API TestModified", + "privacy": "closed", + "url": "https://api.github.com/teams/3451996", + "html_url": "https://github.com/orgs/github-api-test-org/teams/dummy-team", + "members_url": "https://api.github.com/teams/3451996/members{/member}", + "repositories_url": "https://api.github.com/teams/3451996/repos", + "permission": "pull" + } + ], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/304/commits", + "review_comments_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/304/comments", + "review_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/304/comments", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/1f40fdf4acf1adb246c109c21a22f617e4bd1ca8", + "head": { + "label": "github-api-test-org:test/stable", + "ref": "test/stable", + "sha": "1f40fdf4acf1adb246c109c21a22f617e4bd1ca8", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Tricky", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-30T22:36:47Z", + "pushed_at": "2019-10-05T13:12:37Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11391, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "github-api-test-org:master", + "ref": "master", + "sha": "3a09d2de4a9a1322a0ba2c3e2f54a919ca8fe353", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Tricky", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-30T22:36:47Z", + "pushed_at": "2019-10-05T13:12:37Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11391, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/304" + }, + "html": { + "href": "https://github.com/github-api-test-org/github-api/pull/304" + }, + "issue": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/304" + }, + "comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/304/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/304/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/304/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/statuses/1f40fdf4acf1adb246c109c21a22f617e4bd1ca8" + } + }, + "author_association": "MEMBER", + "merged": false, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 2, + "additions": 2, + "deletions": 1, + "changed_files": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestTeamReviewRequests/__files/repos_github-api-test-org_github-api_pulls_304_requested_reviewers-7df56994-6c47-49ba-8563-e1fd22adf795.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestTeamReviewRequests/__files/repos_github-api-test-org_github-api_pulls_304_requested_reviewers-7df56994-6c47-49ba-8563-e1fd22adf795.json new file mode 100644 index 0000000000..36e4fa0cc9 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestTeamReviewRequests/__files/repos_github-api-test-org_github-api_pulls_304_requested_reviewers-7df56994-6c47-49ba-8563-e1fd22adf795.json @@ -0,0 +1,341 @@ +{ + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/304", + "id": 324938629, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzI0OTM4NjI5", + "html_url": "https://github.com/github-api-test-org/github-api/pull/304", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/304.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/304.patch", + "issue_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/304", + "number": 304, + "state": "open", + "locked": false, + "title": "testPullRequestTeamReviewRequests", + "user": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "body": "## test", + "created_at": "2019-10-05T13:12:37Z", + "updated_at": "2019-10-05T13:12:37Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [ + { + "name": "dummy-team", + "id": 3451996, + "node_id": "MDQ6VGVhbTM0NTE5OTY=", + "slug": "dummy-team", + "description": "Updated by API TestModified", + "privacy": "closed", + "url": "https://api.github.com/teams/3451996", + "html_url": "https://github.com/orgs/github-api-test-org/teams/dummy-team", + "members_url": "https://api.github.com/teams/3451996/members{/member}", + "repositories_url": "https://api.github.com/teams/3451996/repos", + "permission": "pull" + } + ], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/304/commits", + "review_comments_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/304/comments", + "review_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/304/comments", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/1f40fdf4acf1adb246c109c21a22f617e4bd1ca8", + "head": { + "label": "github-api-test-org:test/stable", + "ref": "test/stable", + "sha": "1f40fdf4acf1adb246c109c21a22f617e4bd1ca8", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Tricky", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-30T22:36:47Z", + "pushed_at": "2019-10-05T13:12:37Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11391, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "github-api-test-org:master", + "ref": "master", + "sha": "3a09d2de4a9a1322a0ba2c3e2f54a919ca8fe353", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Tricky", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-30T22:36:47Z", + "pushed_at": "2019-10-05T13:12:37Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11391, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/304" + }, + "html": { + "href": "https://github.com/github-api-test-org/github-api/pull/304" + }, + "issue": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/304" + }, + "comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/304/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/304/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/304/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/statuses/1f40fdf4acf1adb246c109c21a22f617e4bd1ca8" + } + }, + "author_association": "MEMBER" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestTeamReviewRequests/__files/teams_3451996-112cf6bd-f585-4cec-9ab9-f987a3704a98.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestTeamReviewRequests/__files/teams_3451996-112cf6bd-f585-4cec-9ab9-f987a3704a98.json new file mode 100644 index 0000000000..2946c7bf49 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestTeamReviewRequests/__files/teams_3451996-112cf6bd-f585-4cec-9ab9-f987a3704a98.json @@ -0,0 +1,42 @@ +{ + "name": "dummy-team", + "id": 3451996, + "node_id": "MDQ6VGVhbTM0NTE5OTY=", + "slug": "dummy-team", + "description": "Updated by API TestModified", + "privacy": "closed", + "url": "https://api.github.com/teams/3451996", + "html_url": "https://github.com/orgs/github-api-test-org/teams/dummy-team", + "members_url": "https://api.github.com/teams/3451996/members{/member}", + "repositories_url": "https://api.github.com/teams/3451996/repos", + "permission": "pull", + "created_at": "2019-10-03T21:46:12Z", + "updated_at": "2019-10-03T21:51:11Z", + "members_count": 1, + "repos_count": 1, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "url": "https://api.github.com/orgs/github-api-test-org", + "repos_url": "https://api.github.com/orgs/github-api-test-org/repos", + "events_url": "https://api.github.com/orgs/github-api-test-org/events", + "hooks_url": "https://api.github.com/orgs/github-api-test-org/hooks", + "issues_url": "https://api.github.com/orgs/github-api-test-org/issues", + "members_url": "https://api.github.com/orgs/github-api-test-org/members{/member}", + "public_members_url": "https://api.github.com/orgs/github-api-test-org/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "description": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 10, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/github-api-test-org", + "created_at": "2014-05-10T19:39:11Z", + "updated_at": "2015-04-20T00:42:30Z", + "type": "Organization" + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestTeamReviewRequests/__files/user-c23a7fbe-af40-42fe-936e-b94485a32618.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestTeamReviewRequests/__files/user-c23a7fbe-af40-42fe-936e-b94485a32618.json new file mode 100644 index 0000000000..61b439b35c --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestTeamReviewRequests/__files/user-c23a7fbe-af40-42fe-936e-b94485a32618.json @@ -0,0 +1,45 @@ +{ + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false, + "name": "Matt Farmer", + "company": "@Mailchimp", + "blog": "https://farmdawgnation.com", + "location": "Atlanta, GA", + "email": "matt@frmr.me", + "hireable": null, + "bio": "A Scala and Clojure lover. Maintainer at @lift and @dispatch.", + "public_repos": 111, + "public_gists": 28, + "followers": 58, + "following": 36, + "created_at": "2011-02-15T23:42:51Z", + "updated_at": "2019-09-21T13:46:39Z", + "private_gists": 15, + "total_private_repos": 17, + "owned_private_repos": 17, + "disk_usage": 48311, + "collaborators": 3, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestTeamReviewRequests/mappings/orgs_github-api-test-org-2-8634de.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestTeamReviewRequests/mappings/orgs_github-api-test-org-2-8634de.json new file mode 100644 index 0000000000..e6a80c534e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestTeamReviewRequests/mappings/orgs_github-api-test-org-2-8634de.json @@ -0,0 +1,43 @@ +{ + "id": "8634de25-3d3d-47a6-a72a-de26a5190ce6", + "name": "orgs_github-api-test-org", + "request": { + "url": "/orgs/github-api-test-org", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_github-api-test-org-8634de25-3d3d-47a6-a72a-de26a5190ce6.json", + "headers": { + "Date": "Sat, 05 Oct 2019 13:12:36 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4424", + "X-RateLimit-Reset": "1570284751", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"298cbc515b117c1f190a8250bf171341\"", + "Last-Modified": "Mon, 20 Apr 2015 00:42:30 GMT", + "X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, read:packages, repo, user, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F8F3:099A:F1278:1CD4EC:5D9896C4" + } + }, + "uuid": "8634de25-3d3d-47a6-a72a-de26a5190ce6", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestTeamReviewRequests/mappings/orgs_github-api-test-org_teams-5-b84882.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestTeamReviewRequests/mappings/orgs_github-api-test-org_teams-5-b84882.json new file mode 100644 index 0000000000..d32f9b9fed --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestTeamReviewRequests/mappings/orgs_github-api-test-org_teams-5-b84882.json @@ -0,0 +1,39 @@ +{ + "id": "b84882f2-4778-47cb-bced-70eced02e28b", + "name": "orgs_github-api-test-org_teams", + "request": { + "url": "/orgs/github-api-test-org/teams", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_github-api-test-org_teams-b84882f2-4778-47cb-bced-70eced02e28b.json", + "headers": { + "Server": "GitHub.com", + "Date": "Sat, 05 Oct 2019 13:12:37 GMT", + "Content-Type": "application/json; charset=utf-8", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4421", + "X-RateLimit-Reset": "1570284751", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"b508d7b438387a94dc1a4338e19f77ec\"", + "X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, read:packages, repo, user, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F8F3:099A:F127C:1CD4FA:5D9896C5" + } + }, + "uuid": "b84882f2-4778-47cb-bced-70eced02e28b", + "persistent": true, + "insertionIndex": 5 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestTeamReviewRequests/mappings/repos_github-api-test-org_github-api-3-92a8e4.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestTeamReviewRequests/mappings/repos_github-api-test-org_github-api-3-92a8e4.json new file mode 100644 index 0000000000..b7be6def62 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestTeamReviewRequests/mappings/repos_github-api-test-org_github-api-3-92a8e4.json @@ -0,0 +1,43 @@ +{ + "id": "92a8e470-1b50-4f84-a580-94b8cc1aa3b0", + "name": "repos_github-api-test-org_github-api", + "request": { + "url": "/repos/github-api-test-org/github-api", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api-92a8e470-1b50-4f84-a580-94b8cc1aa3b0.json", + "headers": { + "Date": "Sat, 05 Oct 2019 13:12:36 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4423", + "X-RateLimit-Reset": "1570284751", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"22bbded0f5f2623c8bdafd68f3eb625d\"", + "Last-Modified": "Mon, 30 Sep 2019 22:36:47 GMT", + "X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, read:packages, repo, user, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F8F3:099A:F1279:1CD4F8:5D9896C4" + } + }, + "uuid": "92a8e470-1b50-4f84-a580-94b8cc1aa3b0", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestTeamReviewRequests/mappings/repos_github-api-test-org_github-api_pulls-4-f9eb4c.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestTeamReviewRequests/mappings/repos_github-api-test-org_github-api_pulls-4-f9eb4c.json new file mode 100644 index 0000000000..408ebf8b82 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestTeamReviewRequests/mappings/repos_github-api-test-org_github-api_pulls-4-f9eb4c.json @@ -0,0 +1,50 @@ +{ + "id": "f9eb4ced-224a-4b9c-b9e6-fc98bdd40345", + "name": "repos_github-api-test-org_github-api_pulls", + "request": { + "url": "/repos/github-api-test-org/github-api/pulls", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"head\":\"test/stable\",\"maintainer_can_modify\":true,\"title\":\"testPullRequestTeamReviewRequests\",\"body\":\"## test\",\"base\":\"master\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "repos_github-api-test-org_github-api_pulls-f9eb4ced-224a-4b9c-b9e6-fc98bdd40345.json", + "headers": { + "Date": "Sat, 05 Oct 2019 13:12:37 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4422", + "X-RateLimit-Reset": "1570284751", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"dba07114e327e207bb5a4d70224649b0\"", + "X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, read:packages, repo, user, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/github-api-test-org/github-api/pulls/304", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F8F3:099A:F127A:1CD4F9:5D9896C4" + } + }, + "uuid": "f9eb4ced-224a-4b9c-b9e6-fc98bdd40345", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestTeamReviewRequests/mappings/repos_github-api-test-org_github-api_pulls_304-7-e091cb.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestTeamReviewRequests/mappings/repos_github-api-test-org_github-api_pulls_304-7-e091cb.json new file mode 100644 index 0000000000..cf5fd2c85f --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestTeamReviewRequests/mappings/repos_github-api-test-org_github-api_pulls_304-7-e091cb.json @@ -0,0 +1,43 @@ +{ + "id": "e091cbaf-316c-4092-8205-a0d35b299a8e", + "name": "repos_github-api-test-org_github-api_pulls_304", + "request": { + "url": "/repos/github-api-test-org/github-api/pulls/304", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api_pulls_304-e091cbaf-316c-4092-8205-a0d35b299a8e.json", + "headers": { + "Date": "Sat, 05 Oct 2019 13:12:38 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4419", + "X-RateLimit-Reset": "1570284751", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"aa9b2ce65e09e2860f6ceeae18ea5a55\"", + "Last-Modified": "Sat, 05 Oct 2019 13:12:37 GMT", + "X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, read:packages, repo, user, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F8F3:099A:F1282:1CD503:5D9896C5" + } + }, + "uuid": "e091cbaf-316c-4092-8205-a0d35b299a8e", + "persistent": true, + "insertionIndex": 7 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestTeamReviewRequests/mappings/repos_github-api-test-org_github-api_pulls_304_requested_reviewers-6-7df569.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestTeamReviewRequests/mappings/repos_github-api-test-org_github-api_pulls_304_requested_reviewers-6-7df569.json new file mode 100644 index 0000000000..dd35e4e614 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestTeamReviewRequests/mappings/repos_github-api-test-org_github-api_pulls_304_requested_reviewers-6-7df569.json @@ -0,0 +1,50 @@ +{ + "id": "7df56994-6c47-49ba-8563-e1fd22adf795", + "name": "repos_github-api-test-org_github-api_pulls_304_requested_reviewers", + "request": { + "url": "/repos/github-api-test-org/github-api/pulls/304/requested_reviewers", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"team_reviewers\":[\"dummy-team\"]}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "repos_github-api-test-org_github-api_pulls_304_requested_reviewers-7df56994-6c47-49ba-8563-e1fd22adf795.json", + "headers": { + "Date": "Sat, 05 Oct 2019 13:12:37 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4420", + "X-RateLimit-Reset": "1570284751", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"a1a9fea89c597072216ed266dc248469\"", + "X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, read:packages, repo, user, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/github-api-test-org/github-api/pulls/304", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F8F3:099A:F127D:1CD4FD:5D9896C5" + } + }, + "uuid": "7df56994-6c47-49ba-8563-e1fd22adf795", + "persistent": true, + "insertionIndex": 6 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestTeamReviewRequests/mappings/teams_3451996-8-112cf6.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestTeamReviewRequests/mappings/teams_3451996-8-112cf6.json new file mode 100644 index 0000000000..4347772f9e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestTeamReviewRequests/mappings/teams_3451996-8-112cf6.json @@ -0,0 +1,43 @@ +{ + "id": "112cf6bd-f585-4cec-9ab9-f987a3704a98", + "name": "teams_3451996", + "request": { + "url": "/teams/3451996", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "teams_3451996-112cf6bd-f585-4cec-9ab9-f987a3704a98.json", + "headers": { + "Date": "Sat, 05 Oct 2019 13:12:38 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4418", + "X-RateLimit-Reset": "1570284751", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"e833a703a1e111c864fb4378cb37b5fb\"", + "Last-Modified": "Thu, 03 Oct 2019 21:51:11 GMT", + "X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, read:packages, repo, user, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F8F3:099A:F1285:1CD50A:5D9896C6" + } + }, + "uuid": "112cf6bd-f585-4cec-9ab9-f987a3704a98", + "persistent": true, + "insertionIndex": 8 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestTeamReviewRequests/mappings/user-1-c23a7f.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestTeamReviewRequests/mappings/user-1-c23a7f.json new file mode 100644 index 0000000000..c9250b131d --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/testPullRequestTeamReviewRequests/mappings/user-1-c23a7f.json @@ -0,0 +1,43 @@ +{ + "id": "c23a7fbe-af40-42fe-936e-b94485a32618", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-c23a7fbe-af40-42fe-936e-b94485a32618.json", + "headers": { + "Date": "Sat, 05 Oct 2019 13:12:36 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4429", + "X-RateLimit-Reset": "1570284751", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"1f70a8ac0c3cc9339b0b1ec25ef7d2b8\"", + "Last-Modified": "Sat, 21 Sep 2019 13:46:39 GMT", + "X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, read:packages, repo, user, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F8F3:099A:F1271:1CD4E2:5D9896C4" + } + }, + "uuid": "c23a7fbe-af40-42fe-936e-b94485a32618", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/__files/orgs_github-api-test-org-ad1f5840-8218-409f-a4da-7f3533b80a39.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/__files/orgs_github-api-test-org-ad1f5840-8218-409f-a4da-7f3533b80a39.json new file mode 100644 index 0000000000..61547e3d98 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/__files/orgs_github-api-test-org-ad1f5840-8218-409f-a4da-7f3533b80a39.json @@ -0,0 +1,41 @@ +{ + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "url": "https://api.github.com/orgs/github-api-test-org", + "repos_url": "https://api.github.com/orgs/github-api-test-org/repos", + "events_url": "https://api.github.com/orgs/github-api-test-org/events", + "hooks_url": "https://api.github.com/orgs/github-api-test-org/hooks", + "issues_url": "https://api.github.com/orgs/github-api-test-org/issues", + "members_url": "https://api.github.com/orgs/github-api-test-org/members{/member}", + "public_members_url": "https://api.github.com/orgs/github-api-test-org/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "description": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 9, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/github-api-test-org", + "created_at": "2014-05-10T19:39:11Z", + "updated_at": "2015-04-20T00:42:30Z", + "type": "Organization", + "total_private_repos": 0, + "owned_private_repos": 0, + "private_gists": 0, + "disk_usage": 132, + "collaborators": 0, + "billing_email": "kk@kohsuke.org", + "default_repository_permission": "none", + "members_can_create_repositories": false, + "two_factor_requirement_enabled": false, + "plan": { + "name": "free", + "space": 976562499, + "private_repos": 0, + "filled_seats": 3, + "seats": 0 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/__files/repos_github-api-test-org_github-api-2621291f-e181-41b0-98ad-3caf5f4fcf63.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/__files/repos_github-api-test-org_github-api-2621291f-e181-41b0-98ad-3caf5f4fcf63.json new file mode 100644 index 0000000000..58183475c8 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/__files/repos_github-api-test-org_github-api-2621291f-e181-41b0-98ad-3caf5f4fcf63.json @@ -0,0 +1,330 @@ +{ + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:21:20Z", + "pushed_at": "2019-09-08T07:24:22Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "parent": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-07T00:07:16Z", + "pushed_at": "2019-09-07T00:07:14Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 551, + "watchers_count": 551, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 551, + "default_branch": "master" + }, + "source": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-07T00:07:16Z", + "pushed_at": "2019-09-07T00:07:14Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 551, + "watchers_count": 551, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 551, + "default_branch": "master" + }, + "network_count": 427, + "subscribers_count": 0 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/__files/repos_github-api-test-org_github-api-3baea02b-9467-4f17-8b8c-369bd4eca9e2.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/__files/repos_github-api-test-org_github-api-3baea02b-9467-4f17-8b8c-369bd4eca9e2.json new file mode 100644 index 0000000000..c26c29ad64 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/__files/repos_github-api-test-org_github-api-3baea02b-9467-4f17-8b8c-369bd4eca9e2.json @@ -0,0 +1,330 @@ +{ + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:21:20Z", + "pushed_at": "2019-09-08T07:24:19Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "parent": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-07T00:07:16Z", + "pushed_at": "2019-09-07T00:07:14Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 551, + "watchers_count": 551, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 551, + "default_branch": "master" + }, + "source": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-07T00:07:16Z", + "pushed_at": "2019-09-07T00:07:14Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 551, + "watchers_count": 551, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 551, + "default_branch": "master" + }, + "network_count": 427, + "subscribers_count": 0 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/__files/repos_github-api-test-org_github-api-5e4301dc-40ac-40eb-8424-8ac1bf7a8861.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/__files/repos_github-api-test-org_github-api-5e4301dc-40ac-40eb-8424-8ac1bf7a8861.json new file mode 100644 index 0000000000..c874ac2f7a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/__files/repos_github-api-test-org_github-api-5e4301dc-40ac-40eb-8424-8ac1bf7a8861.json @@ -0,0 +1,330 @@ +{ + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:21:20Z", + "pushed_at": "2019-09-08T07:24:16Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "parent": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-07T00:07:16Z", + "pushed_at": "2019-09-07T00:07:14Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 551, + "watchers_count": 551, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 551, + "default_branch": "master" + }, + "source": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-07T00:07:16Z", + "pushed_at": "2019-09-07T00:07:14Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 551, + "watchers_count": 551, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 551, + "default_branch": "master" + }, + "network_count": 427, + "subscribers_count": 0 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/__files/repos_github-api-test-org_github-api-620a6cec-3b31-4ac7-94be-d162928d0e11.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/__files/repos_github-api-test-org_github-api-620a6cec-3b31-4ac7-94be-d162928d0e11.json new file mode 100644 index 0000000000..c874ac2f7a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/__files/repos_github-api-test-org_github-api-620a6cec-3b31-4ac7-94be-d162928d0e11.json @@ -0,0 +1,330 @@ +{ + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:21:20Z", + "pushed_at": "2019-09-08T07:24:16Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "parent": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-07T00:07:16Z", + "pushed_at": "2019-09-07T00:07:14Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 551, + "watchers_count": 551, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 551, + "default_branch": "master" + }, + "source": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-07T00:07:16Z", + "pushed_at": "2019-09-07T00:07:14Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 551, + "watchers_count": 551, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 551, + "default_branch": "master" + }, + "network_count": 427, + "subscribers_count": 0 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/__files/repos_github-api-test-org_github-api-ab64951f-76cf-4bcb-a38a-497717b29f96.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/__files/repos_github-api-test-org_github-api-ab64951f-76cf-4bcb-a38a-497717b29f96.json new file mode 100644 index 0000000000..0285bdf2b1 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/__files/repos_github-api-test-org_github-api-ab64951f-76cf-4bcb-a38a-497717b29f96.json @@ -0,0 +1,330 @@ +{ + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:21:20Z", + "pushed_at": "2019-09-08T07:24:26Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "parent": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-07T00:07:16Z", + "pushed_at": "2019-09-07T00:07:14Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 551, + "watchers_count": 551, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 551, + "default_branch": "master" + }, + "source": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-07T00:07:16Z", + "pushed_at": "2019-09-07T00:07:14Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 551, + "watchers_count": 551, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 551, + "default_branch": "master" + }, + "network_count": 427, + "subscribers_count": 0 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/__files/repos_github-api-test-org_github-api-ea77125d-4094-4cd9-bfbe-da1696813034.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/__files/repos_github-api-test-org_github-api-ea77125d-4094-4cd9-bfbe-da1696813034.json new file mode 100644 index 0000000000..65db4ab916 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/__files/repos_github-api-test-org_github-api-ea77125d-4094-4cd9-bfbe-da1696813034.json @@ -0,0 +1,330 @@ +{ + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:21:20Z", + "pushed_at": "2019-09-08T07:24:20Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "parent": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-07T00:07:16Z", + "pushed_at": "2019-09-07T00:07:14Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 551, + "watchers_count": 551, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 551, + "default_branch": "master" + }, + "source": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-07T00:07:16Z", + "pushed_at": "2019-09-07T00:07:14Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 551, + "watchers_count": 551, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 551, + "default_branch": "master" + }, + "network_count": 427, + "subscribers_count": 0 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/__files/repos_github-api-test-org_github-api_contents_updatecontentsquashmerge-1d6973ab-2bb2-4661-a449-6a3baf0da673.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/__files/repos_github-api-test-org_github-api_contents_updatecontentsquashmerge-1d6973ab-2bb2-4661-a449-6a3baf0da673.json new file mode 100644 index 0000000000..498ffbc3c7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/__files/repos_github-api-test-org_github-api_contents_updatecontentsquashmerge-1d6973ab-2bb2-4661-a449-6a3baf0da673.json @@ -0,0 +1,52 @@ +{ + "content": { + "name": "updateContentSquashMerge", + "path": "updateContentSquashMerge", + "sha": "ad7418321ba08809e4e25ad06bd48d3968bb3819", + "size": 24, + "url": "https://api.github.com/repos/github-api-test-org/github-api/contents/updateContentSquashMerge?ref=test/updateContentSquashMerge", + "html_url": "https://github.com/github-api-test-org/github-api/blob/test/updateContentSquashMerge/updateContentSquashMerge", + "git_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs/ad7418321ba08809e4e25ad06bd48d3968bb3819", + "download_url": "https://raw.githubusercontent.com/github-api-test-org/github-api/test/updateContentSquashMerge/updateContentSquashMerge", + "type": "file", + "_links": { + "self": "https://api.github.com/repos/github-api-test-org/github-api/contents/updateContentSquashMerge?ref=test/updateContentSquashMerge", + "git": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs/ad7418321ba08809e4e25ad06bd48d3968bb3819", + "html": "https://github.com/github-api-test-org/github-api/blob/test/updateContentSquashMerge/updateContentSquashMerge" + } + }, + "commit": { + "sha": "0b60a9b8968ff83d874111635815b59a9608d1fa", + "node_id": "MDY6Q29tbWl0MjA2ODg4MjAxOjBiNjBhOWI4OTY4ZmY4M2Q4NzQxMTE2MzU4MTViNTlhOTYwOGQxZmE=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits/0b60a9b8968ff83d874111635815b59a9608d1fa", + "html_url": "https://github.com/github-api-test-org/github-api/commit/0b60a9b8968ff83d874111635815b59a9608d1fa", + "author": { + "name": "Liam Newman", + "email": "bitwiseman@gmail.com", + "date": "2019-09-08T07:24:19Z" + }, + "committer": { + "name": "Liam Newman", + "email": "bitwiseman@gmail.com", + "date": "2019-09-08T07:24:19Z" + }, + "tree": { + "sha": "86e133aca22041681511b846909e1c8832127b9d", + "url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees/86e133aca22041681511b846909e1c8832127b9d" + }, + "message": "updateContentSquashMerge", + "parents": [ + { + "sha": "3a09d2de4a9a1322a0ba2c3e2f54a919ca8fe353", + "url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits/3a09d2de4a9a1322a0ba2c3e2f54a919ca8fe353", + "html_url": "https://github.com/github-api-test-org/github-api/commit/3a09d2de4a9a1322a0ba2c3e2f54a919ca8fe353" + } + ], + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/__files/repos_github-api-test-org_github-api_contents_updatecontentsquashmerge-70ad84cc-ff4b-4567-95cd-eed864ce2fb3.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/__files/repos_github-api-test-org_github-api_contents_updatecontentsquashmerge-70ad84cc-ff4b-4567-95cd-eed864ce2fb3.json new file mode 100644 index 0000000000..0e6cd31584 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/__files/repos_github-api-test-org_github-api_contents_updatecontentsquashmerge-70ad84cc-ff4b-4567-95cd-eed864ce2fb3.json @@ -0,0 +1,52 @@ +{ + "content": { + "name": "updateContentSquashMerge", + "path": "updateContentSquashMerge", + "sha": "58683e978fd6342744da9933a8e77923cf3ee1a8", + "size": 48, + "url": "https://api.github.com/repos/github-api-test-org/github-api/contents/updateContentSquashMerge?ref=test/updateContentSquashMerge", + "html_url": "https://github.com/github-api-test-org/github-api/blob/test/updateContentSquashMerge/updateContentSquashMerge", + "git_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs/58683e978fd6342744da9933a8e77923cf3ee1a8", + "download_url": "https://raw.githubusercontent.com/github-api-test-org/github-api/test/updateContentSquashMerge/updateContentSquashMerge", + "type": "file", + "_links": { + "self": "https://api.github.com/repos/github-api-test-org/github-api/contents/updateContentSquashMerge?ref=test/updateContentSquashMerge", + "git": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs/58683e978fd6342744da9933a8e77923cf3ee1a8", + "html": "https://github.com/github-api-test-org/github-api/blob/test/updateContentSquashMerge/updateContentSquashMerge" + } + }, + "commit": { + "sha": "2780805b621ad6b283fbfb7d0c5dd64c4314b2b9", + "node_id": "MDY6Q29tbWl0MjA2ODg4MjAxOjI3ODA4MDViNjIxYWQ2YjI4M2ZiZmI3ZDBjNWRkNjRjNDMxNGIyYjk=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits/2780805b621ad6b283fbfb7d0c5dd64c4314b2b9", + "html_url": "https://github.com/github-api-test-org/github-api/commit/2780805b621ad6b283fbfb7d0c5dd64c4314b2b9", + "author": { + "name": "Liam Newman", + "email": "bitwiseman@gmail.com", + "date": "2019-09-08T07:24:21Z" + }, + "committer": { + "name": "Liam Newman", + "email": "bitwiseman@gmail.com", + "date": "2019-09-08T07:24:21Z" + }, + "tree": { + "sha": "3cc8e9b6c068cbaa8e190e5df58ce51ea82dc3c4", + "url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees/3cc8e9b6c068cbaa8e190e5df58ce51ea82dc3c4" + }, + "message": "updateContentSquashMerge", + "parents": [ + { + "sha": "0b60a9b8968ff83d874111635815b59a9608d1fa", + "url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits/0b60a9b8968ff83d874111635815b59a9608d1fa", + "html_url": "https://github.com/github-api-test-org/github-api/commit/0b60a9b8968ff83d874111635815b59a9608d1fa" + } + ], + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/__files/repos_github-api-test-org_github-api_git_refs-778d6679-3928-4f4c-beda-b8f1ae11aac3.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/__files/repos_github-api-test-org_github-api_git_refs-778d6679-3928-4f4c-beda-b8f1ae11aac3.json new file mode 100644 index 0000000000..c30e880e49 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/__files/repos_github-api-test-org_github-api_git_refs-778d6679-3928-4f4c-beda-b8f1ae11aac3.json @@ -0,0 +1,10 @@ +{ + "ref": "refs/heads/test/updateContentSquashMerge", + "node_id": "MDM6UmVmMjA2ODg4MjAxOnRlc3QvdXBkYXRlQ29udGVudFNxdWFzaE1lcmdl", + "url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs/heads/test/updateContentSquashMerge", + "object": { + "sha": "3a09d2de4a9a1322a0ba2c3e2f54a919ca8fe353", + "type": "commit", + "url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits/3a09d2de4a9a1322a0ba2c3e2f54a919ca8fe353" + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/__files/repos_github-api-test-org_github-api_git_refs_heads_master-fa77be60-4286-4610-bff6-3ab0bac74b1f.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/__files/repos_github-api-test-org_github-api_git_refs_heads_master-fa77be60-4286-4610-bff6-3ab0bac74b1f.json new file mode 100644 index 0000000000..c80084fd4f --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/__files/repos_github-api-test-org_github-api_git_refs_heads_master-fa77be60-4286-4610-bff6-3ab0bac74b1f.json @@ -0,0 +1,10 @@ +{ + "ref": "refs/heads/master", + "node_id": "MDM6UmVmMjA2ODg4MjAxOm1hc3Rlcg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs/heads/master", + "object": { + "sha": "3a09d2de4a9a1322a0ba2c3e2f54a919ca8fe353", + "type": "commit", + "url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits/3a09d2de4a9a1322a0ba2c3e2f54a919ca8fe353" + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/__files/repos_github-api-test-org_github-api_pulls-c55f0814-cb1e-4b41-a74d-e94e3eb0e843.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/__files/repos_github-api-test-org_github-api_pulls-c55f0814-cb1e-4b41-a74d-e94e3eb0e843.json new file mode 100644 index 0000000000..bb5eca6af1 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/__files/repos_github-api-test-org_github-api_pulls-c55f0814-cb1e-4b41-a74d-e94e3eb0e843.json @@ -0,0 +1,339 @@ +{ + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/261", + "id": 315252319, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzE5", + "html_url": "https://github.com/github-api-test-org/github-api/pull/261", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/261.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/261.patch", + "issue_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/261", + "number": 261, + "state": "open", + "locked": false, + "title": "updateContentSquashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "body": "## test squash", + "created_at": "2019-09-08T07:24:23Z", + "updated_at": "2019-09-08T07:24:23Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/261/commits", + "review_comments_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/261/comments", + "review_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/261/comments", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/2780805b621ad6b283fbfb7d0c5dd64c4314b2b9", + "head": { + "label": "github-api-test-org:test/updateContentSquashMerge", + "ref": "test/updateContentSquashMerge", + "sha": "2780805b621ad6b283fbfb7d0c5dd64c4314b2b9", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:21:20Z", + "pushed_at": "2019-09-08T07:24:22Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "github-api-test-org:master", + "ref": "master", + "sha": "3a09d2de4a9a1322a0ba2c3e2f54a919ca8fe353", + "user": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-08T07:21:20Z", + "pushed_at": "2019-09-08T07:24:22Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11386, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/261" + }, + "html": { + "href": "https://github.com/github-api-test-org/github-api/pull/261" + }, + "issue": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/261" + }, + "comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/issues/261/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/261/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/pulls/261/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/github-api-test-org/github-api/statuses/2780805b621ad6b283fbfb7d0c5dd64c4314b2b9" + } + }, + "author_association": "MEMBER", + "merged": false, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 2, + "additions": 1, + "deletions": 0, + "changed_files": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/__files/user-78c0481f-0420-45ef-97f7-fabf21edf0e2.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/__files/user-78c0481f-0420-45ef-97f7-fabf21edf0e2.json new file mode 100644 index 0000000000..b9ce24cb03 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/__files/user-78c0481f-0420-45ef-97f7-fabf21edf0e2.json @@ -0,0 +1,33 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 166, + "public_gists": 4, + "followers": 133, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-06-03T17:47:20Z" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/mappings/orgs_github-api-test-org-2-ad1f58.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/mappings/orgs_github-api-test-org-2-ad1f58.json new file mode 100644 index 0000000000..961d8c5495 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/mappings/orgs_github-api-test-org-2-ad1f58.json @@ -0,0 +1,43 @@ +{ + "id": "ad1f5840-8218-409f-a4da-7f3533b80a39", + "name": "orgs_github-api-test-org", + "request": { + "url": "/orgs/github-api-test-org", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_github-api-test-org-ad1f5840-8218-409f-a4da-7f3533b80a39.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:18 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4943", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"d36965e157281b2a309c39e4c2343a55\"", + "Last-Modified": "Mon, 20 Apr 2015 00:42:30 GMT", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF7E:15CC:AA74D4:C68A83:5D74ACA2" + } + }, + "uuid": "ad1f5840-8218-409f-a4da-7f3533b80a39", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/mappings/repos_github-api-test-org_github-api-11-262129.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/mappings/repos_github-api-test-org_github-api-11-262129.json new file mode 100644 index 0000000000..5247711894 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/mappings/repos_github-api-test-org_github-api-11-262129.json @@ -0,0 +1,46 @@ +{ + "id": "2621291f-e181-41b0-98ad-3caf5f4fcf63", + "name": "repos_github-api-test-org_github-api", + "request": { + "url": "/repos/github-api-test-org/github-api", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api-2621291f-e181-41b0-98ad-3caf5f4fcf63.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:22 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4934", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"eb0afb4590860dbc9e10e4a971fbf9b0\"", + "Last-Modified": "Sun, 08 Sep 2019 07:21:20 GMT", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF7E:15CC:AA7665:C68C2C:5D74ACA6" + } + }, + "uuid": "2621291f-e181-41b0-98ad-3caf5f4fcf63", + "persistent": true, + "scenarioName": "scenario-1-repos-github-api-test-org-github-api", + "requiredScenarioState": "scenario-1-repos-github-api-test-org-github-api-5", + "newScenarioState": "scenario-1-repos-github-api-test-org-github-api-6", + "insertionIndex": 11 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/mappings/repos_github-api-test-org_github-api-14-ab6495.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/mappings/repos_github-api-test-org_github-api-14-ab6495.json new file mode 100644 index 0000000000..dbf0421654 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/mappings/repos_github-api-test-org_github-api-14-ab6495.json @@ -0,0 +1,45 @@ +{ + "id": "ab64951f-76cf-4bcb-a38a-497717b29f96", + "name": "repos_github-api-test-org_github-api", + "request": { + "url": "/repos/github-api-test-org/github-api", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api-ab64951f-76cf-4bcb-a38a-497717b29f96.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:26 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4931", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"a779b2e13990c43925dacc49a260a3c5\"", + "Last-Modified": "Sun, 08 Sep 2019 07:21:20 GMT", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF7E:15CC:AA776E:C68D54:5D74ACAA" + } + }, + "uuid": "ab64951f-76cf-4bcb-a38a-497717b29f96", + "persistent": true, + "scenarioName": "scenario-1-repos-github-api-test-org-github-api", + "requiredScenarioState": "scenario-1-repos-github-api-test-org-github-api-6", + "insertionIndex": 14 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/mappings/repos_github-api-test-org_github-api-3-5e4301.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/mappings/repos_github-api-test-org_github-api-3-5e4301.json new file mode 100644 index 0000000000..7f410cd832 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/mappings/repos_github-api-test-org_github-api-3-5e4301.json @@ -0,0 +1,46 @@ +{ + "id": "5e4301dc-40ac-40eb-8424-8ac1bf7a8861", + "name": "repos_github-api-test-org_github-api", + "request": { + "url": "/repos/github-api-test-org/github-api", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api-5e4301dc-40ac-40eb-8424-8ac1bf7a8861.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:18 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4942", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"fbfab4b5eab59d5ca9190cb9af741e11\"", + "Last-Modified": "Sun, 08 Sep 2019 07:21:20 GMT", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF7E:15CC:AA74E8:C68A95:5D74ACA2" + } + }, + "uuid": "5e4301dc-40ac-40eb-8424-8ac1bf7a8861", + "persistent": true, + "scenarioName": "scenario-1-repos-github-api-test-org-github-api", + "requiredScenarioState": "Started", + "newScenarioState": "scenario-1-repos-github-api-test-org-github-api-2", + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/mappings/repos_github-api-test-org_github-api-5-620a6c.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/mappings/repos_github-api-test-org_github-api-5-620a6c.json new file mode 100644 index 0000000000..685a8d4a55 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/mappings/repos_github-api-test-org_github-api-5-620a6c.json @@ -0,0 +1,46 @@ +{ + "id": "620a6cec-3b31-4ac7-94be-d162928d0e11", + "name": "repos_github-api-test-org_github-api", + "request": { + "url": "/repos/github-api-test-org/github-api", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api-620a6cec-3b31-4ac7-94be-d162928d0e11.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:18 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4940", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"fbfab4b5eab59d5ca9190cb9af741e11\"", + "Last-Modified": "Sun, 08 Sep 2019 07:21:20 GMT", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF7E:15CC:AA750B:C68ABE:5D74ACA2" + } + }, + "uuid": "620a6cec-3b31-4ac7-94be-d162928d0e11", + "persistent": true, + "scenarioName": "scenario-1-repos-github-api-test-org-github-api", + "requiredScenarioState": "scenario-1-repos-github-api-test-org-github-api-2", + "newScenarioState": "scenario-1-repos-github-api-test-org-github-api-3", + "insertionIndex": 5 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/mappings/repos_github-api-test-org_github-api-7-3baea0.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/mappings/repos_github-api-test-org_github-api-7-3baea0.json new file mode 100644 index 0000000000..878ffcc16a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/mappings/repos_github-api-test-org_github-api-7-3baea0.json @@ -0,0 +1,46 @@ +{ + "id": "3baea02b-9467-4f17-8b8c-369bd4eca9e2", + "name": "repos_github-api-test-org_github-api", + "request": { + "url": "/repos/github-api-test-org/github-api", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api-3baea02b-9467-4f17-8b8c-369bd4eca9e2.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:19 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4938", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"7cc3b675d9786125067481500fd9f8d4\"", + "Last-Modified": "Sun, 08 Sep 2019 07:21:20 GMT", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF7E:15CC:AA755F:C68B0E:5D74ACA3" + } + }, + "uuid": "3baea02b-9467-4f17-8b8c-369bd4eca9e2", + "persistent": true, + "scenarioName": "scenario-1-repos-github-api-test-org-github-api", + "requiredScenarioState": "scenario-1-repos-github-api-test-org-github-api-3", + "newScenarioState": "scenario-1-repos-github-api-test-org-github-api-4", + "insertionIndex": 7 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/mappings/repos_github-api-test-org_github-api-9-ea7712.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/mappings/repos_github-api-test-org_github-api-9-ea7712.json new file mode 100644 index 0000000000..cd8990c387 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/mappings/repos_github-api-test-org_github-api-9-ea7712.json @@ -0,0 +1,46 @@ +{ + "id": "ea77125d-4094-4cd9-bfbe-da1696813034", + "name": "repos_github-api-test-org_github-api", + "request": { + "url": "/repos/github-api-test-org/github-api", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api-ea77125d-4094-4cd9-bfbe-da1696813034.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:21 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4936", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"476689c50d919384d02a3d812284c8cd\"", + "Last-Modified": "Sun, 08 Sep 2019 07:21:20 GMT", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF7E:15CC:AA760B:C68B74:5D74ACA4" + } + }, + "uuid": "ea77125d-4094-4cd9-bfbe-da1696813034", + "persistent": true, + "scenarioName": "scenario-1-repos-github-api-test-org-github-api", + "requiredScenarioState": "scenario-1-repos-github-api-test-org-github-api-4", + "newScenarioState": "scenario-1-repos-github-api-test-org-github-api-5", + "insertionIndex": 9 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/mappings/repos_github-api-test-org_github-api_contents_updatecontentsquashmerge-10-70ad84.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/mappings/repos_github-api-test-org_github-api_contents_updatecontentsquashmerge-10-70ad84.json new file mode 100644 index 0000000000..627cee2656 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/mappings/repos_github-api-test-org_github-api_contents_updatecontentsquashmerge-10-70ad84.json @@ -0,0 +1,49 @@ +{ + "id": "70ad84cc-ff4b-4567-95cd-eed864ce2fb3", + "name": "repos_github-api-test-org_github-api_contents_updatecontentsquashmerge", + "request": { + "url": "/repos/github-api-test-org/github-api/contents/updateContentSquashMerge", + "method": "PUT", + "bodyPatterns": [ + { + "equalToJson": "{\"path\":\"updateContentSquashMerge\",\"message\":\"updateContentSquashMerge\",\"branch\":\"test/updateContentSquashMerge\",\"sha\":\"ad7418321ba08809e4e25ad06bd48d3968bb3819\",\"content\":\"dXBkYXRlQ29udGVudFNxdWFzaE1lcmdldXBkYXRlQ29udGVudFNxdWFzaE1lcmdl\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api_contents_updatecontentsquashmerge-70ad84cc-ff4b-4567-95cd-eed864ce2fb3.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:22 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4935", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"b2c60c5c4932d8f77563194675552446\"", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF7E:15CC:AA7621:C68BEC:5D74ACA5" + } + }, + "uuid": "70ad84cc-ff4b-4567-95cd-eed864ce2fb3", + "persistent": true, + "insertionIndex": 10 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/mappings/repos_github-api-test-org_github-api_contents_updatecontentsquashmerge-8-1d6973.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/mappings/repos_github-api-test-org_github-api_contents_updatecontentsquashmerge-8-1d6973.json new file mode 100644 index 0000000000..e7bbfdefd4 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/mappings/repos_github-api-test-org_github-api_contents_updatecontentsquashmerge-8-1d6973.json @@ -0,0 +1,49 @@ +{ + "id": "1d6973ab-2bb2-4661-a449-6a3baf0da673", + "name": "repos_github-api-test-org_github-api_contents_updatecontentsquashmerge", + "request": { + "url": "/repos/github-api-test-org/github-api/contents/updateContentSquashMerge", + "method": "PUT", + "bodyPatterns": [ + { + "equalToJson": "{\"path\":\"updateContentSquashMerge\",\"message\":\"updateContentSquashMerge\",\"branch\":\"test/updateContentSquashMerge\",\"content\":\"dXBkYXRlQ29udGVudFNxdWFzaE1lcmdl\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "repos_github-api-test-org_github-api_contents_updatecontentsquashmerge-1d6973ab-2bb2-4661-a449-6a3baf0da673.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:20 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4937", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"ce670aee18f964bc760bdacc60d1a31f\"", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF7E:15CC:AA756E:C68B2F:5D74ACA3" + } + }, + "uuid": "1d6973ab-2bb2-4661-a449-6a3baf0da673", + "persistent": true, + "insertionIndex": 8 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/mappings/repos_github-api-test-org_github-api_git_refs-6-778d66.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/mappings/repos_github-api-test-org_github-api_git_refs-6-778d66.json new file mode 100644 index 0000000000..cca0beb868 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/mappings/repos_github-api-test-org_github-api_git_refs-6-778d66.json @@ -0,0 +1,50 @@ +{ + "id": "778d6679-3928-4f4c-beda-b8f1ae11aac3", + "name": "repos_github-api-test-org_github-api_git_refs", + "request": { + "url": "/repos/github-api-test-org/github-api/git/refs", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"ref\":\"refs/heads/test/updateContentSquashMerge\",\"sha\":\"3a09d2de4a9a1322a0ba2c3e2f54a919ca8fe353\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "repos_github-api-test-org_github-api_git_refs-778d6679-3928-4f4c-beda-b8f1ae11aac3.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:19 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4939", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"ef1495292577b64a037f529dcaf2232b\"", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "repo", + "Location": "https://api.github.com/repos/github-api-test-org/github-api/git/refs/heads/test/updateContentSquashMerge", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF7E:15CC:AA7521:C68AD5:5D74ACA2" + } + }, + "uuid": "778d6679-3928-4f4c-beda-b8f1ae11aac3", + "persistent": true, + "insertionIndex": 6 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/mappings/repos_github-api-test-org_github-api_git_refs_heads_master-4-fa77be.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/mappings/repos_github-api-test-org_github-api_git_refs_heads_master-4-fa77be.json new file mode 100644 index 0000000000..ccc5710744 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/mappings/repos_github-api-test-org_github-api_git_refs_heads_master-4-fa77be.json @@ -0,0 +1,44 @@ +{ + "id": "fa77be60-4286-4610-bff6-3ab0bac74b1f", + "name": "repos_github-api-test-org_github-api_git_refs_heads_master", + "request": { + "url": "/repos/github-api-test-org/github-api/git/refs/heads/master", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api_git_refs_heads_master-fa77be60-4286-4610-bff6-3ab0bac74b1f.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:18 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4941", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"76290473b9107936edcf4ad2becf1f34\"", + "Last-Modified": "Sun, 08 Sep 2019 07:21:20 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF7E:15CC:AA74FC:C68AAC:5D74ACA2" + } + }, + "uuid": "fa77be60-4286-4610-bff6-3ab0bac74b1f", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/mappings/repos_github-api-test-org_github-api_pulls-12-c55f08.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/mappings/repos_github-api-test-org_github-api_pulls-12-c55f08.json new file mode 100644 index 0000000000..2adbc28a24 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/mappings/repos_github-api-test-org_github-api_pulls-12-c55f08.json @@ -0,0 +1,50 @@ +{ + "id": "c55f0814-cb1e-4b41-a74d-e94e3eb0e843", + "name": "repos_github-api-test-org_github-api_pulls", + "request": { + "url": "/repos/github-api-test-org/github-api/pulls", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"head\":\"test/updateContentSquashMerge\",\"maintainer_can_modify\":true,\"title\":\"updateContentSquashMerge\",\"body\":\"## test squash\",\"base\":\"master\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "repos_github-api-test-org_github-api_pulls-c55f0814-cb1e-4b41-a74d-e94e3eb0e843.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:23 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4933", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"74632cb04927ace97b48d3e7c601dc33\"", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/github-api-test-org/github-api/pulls/261", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF7E:15CC:AA767E:C68C40:5D74ACA6" + } + }, + "uuid": "c55f0814-cb1e-4b41-a74d-e94e3eb0e843", + "persistent": true, + "insertionIndex": 12 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/mappings/repos_github-api-test-org_github-api_pulls-15-ac16f4.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/mappings/repos_github-api-test-org_github-api_pulls-15-ac16f4.json new file mode 100644 index 0000000000..69198f058a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/mappings/repos_github-api-test-org_github-api_pulls-15-ac16f4.json @@ -0,0 +1,42 @@ +{ + "id": "ac16f488-4d67-4916-bb02-7c7d8d70494a", + "name": "repos_github-api-test-org_github-api_pulls", + "request": { + "url": "/repos/github-api-test-org/github-api/pulls?state=open", + "method": "GET" + }, + "response": { + "status": 200, + "body": "[]", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:27 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4930", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"ad5808b0a5d75d70a16a73b8e9763e19\"", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF7E:15CC:AA7795:C68D79:5D74ACAA" + } + }, + "uuid": "ac16f488-4d67-4916-bb02-7c7d8d70494a", + "persistent": true, + "insertionIndex": 15 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/mappings/repos_github-api-test-org_github-api_pulls_261_merge-13-0b05c7.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/mappings/repos_github-api-test-org_github-api_pulls_261_merge-13-0b05c7.json new file mode 100644 index 0000000000..5d95da55d7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/mappings/repos_github-api-test-org_github-api_pulls_261_merge-13-0b05c7.json @@ -0,0 +1,49 @@ +{ + "id": "0b05c767-d1a4-419a-8eb9-71d86ab9a82c", + "name": "repos_github-api-test-org_github-api_pulls_261_merge", + "request": { + "url": "/repos/github-api-test-org/github-api/pulls/261/merge", + "method": "PUT", + "bodyPatterns": [ + { + "equalToJson": "{\"commit_message\":\"squash merge\",\"merge_method\":\"squash\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 200, + "body": "{\"sha\":\"912e2176a00e60e02196737e0ae4c218a14b5dcb\",\"merged\":true,\"message\":\"Pull Request successfully merged\"}", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:26 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4932", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"26636247c49e812be5185d507e910785\"", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF7E:15CC:AA771D:C68C99:5D74ACA7" + } + }, + "uuid": "0b05c767-d1a4-419a-8eb9-71d86ab9a82c", + "persistent": true, + "insertionIndex": 13 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/mappings/user-1-78c048.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/mappings/user-1-78c048.json new file mode 100644 index 0000000000..6d7b8f1cbb --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/updateContentSquashMerge/mappings/user-1-78c048.json @@ -0,0 +1,43 @@ +{ + "id": "78c0481f-0420-45ef-97f7-fabf21edf0e2", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-78c0481f-0420-45ef-97f7-fabf21edf0e2.json", + "headers": { + "Date": "Sun, 08 Sep 2019 07:24:18 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4944", + "X-RateLimit-Reset": "1567929276", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"3ba1de3523043df743651bd23efc7def\"", + "Last-Modified": "Mon, 03 Jun 2019 17:47:20 GMT", + "X-OAuth-Scopes": "gist, notifications, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FF7E:15CC:AA74C9:C68A74:5D74ACA1" + } + }, + "uuid": "78c0481f-0420-45ef-97f7-fabf21edf0e2", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testCodeFrequency/__files/orgs_github-api-test-org-17df55cd-86fa-40f7-93c9-069b34d0e885.json b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testCodeFrequency/__files/orgs_github-api-test-org-17df55cd-86fa-40f7-93c9-069b34d0e885.json new file mode 100644 index 0000000000..6a1869b899 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testCodeFrequency/__files/orgs_github-api-test-org-17df55cd-86fa-40f7-93c9-069b34d0e885.json @@ -0,0 +1,41 @@ +{ + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "url": "https://api.github.com/orgs/github-api-test-org", + "repos_url": "https://api.github.com/orgs/github-api-test-org/repos", + "events_url": "https://api.github.com/orgs/github-api-test-org/events", + "hooks_url": "https://api.github.com/orgs/github-api-test-org/hooks", + "issues_url": "https://api.github.com/orgs/github-api-test-org/issues", + "members_url": "https://api.github.com/orgs/github-api-test-org/members{/member}", + "public_members_url": "https://api.github.com/orgs/github-api-test-org/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "description": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 10, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/github-api-test-org", + "created_at": "2014-05-10T19:39:11Z", + "updated_at": "2015-04-20T00:42:30Z", + "type": "Organization", + "total_private_repos": 0, + "owned_private_repos": 0, + "private_gists": 0, + "disk_usage": 132, + "collaborators": 0, + "billing_email": "kk@kohsuke.org", + "default_repository_permission": "none", + "members_can_create_repositories": false, + "two_factor_requirement_enabled": false, + "plan": { + "name": "free", + "space": 976562499, + "private_repos": 0, + "filled_seats": 5, + "seats": 0 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testCodeFrequency/__files/repos_github-api-test-org_github-api-6fede042-34ef-490c-ab77-fe2ce7d034c3.json b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testCodeFrequency/__files/repos_github-api-test-org_github-api-6fede042-34ef-490c-ab77-fe2ce7d034c3.json new file mode 100644 index 0000000000..488efd925a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testCodeFrequency/__files/repos_github-api-test-org_github-api-6fede042-34ef-490c-ab77-fe2ce7d034c3.json @@ -0,0 +1,330 @@ +{ + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Tricky", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-30T22:36:47Z", + "pushed_at": "2019-09-26T00:06:54Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11391, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "parent": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-10-05T04:10:56Z", + "pushed_at": "2019-10-05T04:12:37Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 12265, + "stargazers_count": 557, + "watchers_count": 557, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 429, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 85, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 429, + "open_issues": 85, + "watchers": 557, + "default_branch": "master" + }, + "source": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-10-05T04:10:56Z", + "pushed_at": "2019-10-05T04:12:37Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 12265, + "stargazers_count": 557, + "watchers_count": 557, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 429, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 85, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 429, + "open_issues": 85, + "watchers": 557, + "default_branch": "master" + }, + "network_count": 429, + "subscribers_count": 0 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testCodeFrequency/__files/repos_github-api-test-org_github-api_stats_code_frequency-09de1d80-83e2-45a8-987f-204eb7ea42a4.json b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testCodeFrequency/__files/repos_github-api-test-org_github-api_stats_code_frequency-09de1d80-83e2-45a8-987f-204eb7ea42a4.json new file mode 100644 index 0000000000..66667cbff5 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testCodeFrequency/__files/repos_github-api-test-org_github-api_stats_code_frequency-09de1d80-83e2-45a8-987f-204eb7ea42a4.json @@ -0,0 +1,2472 @@ +[ + [ + 1271548800, + 1017, + -26 + ], + [ + 1272153600, + 0, + 0 + ], + [ + 1272758400, + 0, + 0 + ], + [ + 1273363200, + 0, + 0 + ], + [ + 1273968000, + 0, + 0 + ], + [ + 1274572800, + 0, + 0 + ], + [ + 1275177600, + 0, + 0 + ], + [ + 1275782400, + 0, + 0 + ], + [ + 1276387200, + 0, + 0 + ], + [ + 1276992000, + 0, + 0 + ], + [ + 1277596800, + 0, + 0 + ], + [ + 1278201600, + 0, + 0 + ], + [ + 1278806400, + 0, + 0 + ], + [ + 1279411200, + 0, + 0 + ], + [ + 1280016000, + 0, + 0 + ], + [ + 1280620800, + 0, + 0 + ], + [ + 1281225600, + 0, + 0 + ], + [ + 1281830400, + 0, + 0 + ], + [ + 1282435200, + 0, + 0 + ], + [ + 1283040000, + 0, + 0 + ], + [ + 1283644800, + 0, + 0 + ], + [ + 1284249600, + 0, + 0 + ], + [ + 1284854400, + 0, + 0 + ], + [ + 1285459200, + 0, + 0 + ], + [ + 1286064000, + 0, + 0 + ], + [ + 1286668800, + 0, + 0 + ], + [ + 1287273600, + 0, + 0 + ], + [ + 1287878400, + 0, + 0 + ], + [ + 1288483200, + 0, + 0 + ], + [ + 1289088000, + 0, + 0 + ], + [ + 1289692800, + 0, + 0 + ], + [ + 1290297600, + 366, + -81 + ], + [ + 1290902400, + 0, + 0 + ], + [ + 1291507200, + 245, + -36 + ], + [ + 1292112000, + 214, + -96 + ], + [ + 1292716800, + 0, + 0 + ], + [ + 1293321600, + 0, + 0 + ], + [ + 1293926400, + 0, + 0 + ], + [ + 1294531200, + 0, + 0 + ], + [ + 1295136000, + 0, + 0 + ], + [ + 1295740800, + 0, + 0 + ], + [ + 1296345600, + 0, + 0 + ], + [ + 1296950400, + 0, + 0 + ], + [ + 1297555200, + 0, + 0 + ], + [ + 1298160000, + 35, + -11 + ], + [ + 1298764800, + 0, + 0 + ], + [ + 1299369600, + 0, + 0 + ], + [ + 1299974400, + 64, + -4 + ], + [ + 1300579200, + 0, + 0 + ], + [ + 1301184000, + 0, + 0 + ], + [ + 1301788800, + 0, + 0 + ], + [ + 1302393600, + 0, + 0 + ], + [ + 1302998400, + 0, + 0 + ], + [ + 1303603200, + 0, + 0 + ], + [ + 1304208000, + 0, + 0 + ], + [ + 1304812800, + 0, + 0 + ], + [ + 1305417600, + 0, + 0 + ], + [ + 1306022400, + 158, + -2 + ], + [ + 1306627200, + 0, + 0 + ], + [ + 1307232000, + 0, + 0 + ], + [ + 1307836800, + 397, + -30 + ], + [ + 1308441600, + 243, + -79 + ], + [ + 1309046400, + 76, + -143 + ], + [ + 1309651200, + 35, + -3 + ], + [ + 1310256000, + 59, + -5 + ], + [ + 1310860800, + 0, + 0 + ], + [ + 1311465600, + 0, + 0 + ], + [ + 1312070400, + 0, + 0 + ], + [ + 1312675200, + 0, + 0 + ], + [ + 1313280000, + 0, + 0 + ], + [ + 1313884800, + 90, + -38 + ], + [ + 1314489600, + 0, + 0 + ], + [ + 1315094400, + 4, + 0 + ], + [ + 1315699200, + 2, + -2 + ], + [ + 1316304000, + 0, + 0 + ], + [ + 1316908800, + 0, + 0 + ], + [ + 1317513600, + 0, + 0 + ], + [ + 1318118400, + 0, + 0 + ], + [ + 1318723200, + 0, + 0 + ], + [ + 1319328000, + 4, + -4 + ], + [ + 1319932800, + 0, + 0 + ], + [ + 1320537600, + 121, + -109 + ], + [ + 1321142400, + 96, + -30 + ], + [ + 1321747200, + 0, + 0 + ], + [ + 1322352000, + 0, + 0 + ], + [ + 1322956800, + 0, + 0 + ], + [ + 1323561600, + 0, + 0 + ], + [ + 1324166400, + 15, + -1 + ], + [ + 1324771200, + 2, + -2 + ], + [ + 1325376000, + 382, + -166 + ], + [ + 1325980800, + 381, + -55 + ], + [ + 1326585600, + 0, + 0 + ], + [ + 1327190400, + 0, + 0 + ], + [ + 1327795200, + 44, + -21 + ], + [ + 1328400000, + 0, + 0 + ], + [ + 1329004800, + 62, + -86 + ], + [ + 1329609600, + 0, + 0 + ], + [ + 1330214400, + 0, + 0 + ], + [ + 1330819200, + 135, + -89 + ], + [ + 1331424000, + 0, + 0 + ], + [ + 1332028800, + 0, + 0 + ], + [ + 1332633600, + 0, + 0 + ], + [ + 1333238400, + 206, + -57 + ], + [ + 1333843200, + 265, + -91 + ], + [ + 1334448000, + 0, + 0 + ], + [ + 1335052800, + 576, + -19 + ], + [ + 1335657600, + 0, + 0 + ], + [ + 1336262400, + 0, + 0 + ], + [ + 1336867200, + 0, + 0 + ], + [ + 1337472000, + 107, + -16 + ], + [ + 1338076800, + 0, + 0 + ], + [ + 1338681600, + 46, + -3 + ], + [ + 1339286400, + 285, + -683 + ], + [ + 1339891200, + 34, + -19 + ], + [ + 1340496000, + 0, + 0 + ], + [ + 1341100800, + 0, + 0 + ], + [ + 1341705600, + 0, + 0 + ], + [ + 1342310400, + 0, + 0 + ], + [ + 1342915200, + 0, + 0 + ], + [ + 1343520000, + 0, + 0 + ], + [ + 1344124800, + 16, + -4 + ], + [ + 1344729600, + 42, + -9 + ], + [ + 1345334400, + 11, + -5 + ], + [ + 1345939200, + 345, + -84 + ], + [ + 1346544000, + 1031, + -952 + ], + [ + 1347148800, + 177, + -64 + ], + [ + 1347753600, + 0, + 0 + ], + [ + 1348358400, + 0, + 0 + ], + [ + 1348963200, + 0, + 0 + ], + [ + 1349568000, + 0, + 0 + ], + [ + 1350172800, + 8, + -1 + ], + [ + 1350777600, + 0, + 0 + ], + [ + 1351382400, + 0, + 0 + ], + [ + 1351987200, + 0, + 0 + ], + [ + 1352592000, + 0, + 0 + ], + [ + 1353196800, + 0, + 0 + ], + [ + 1353801600, + 0, + 0 + ], + [ + 1354406400, + 0, + 0 + ], + [ + 1355011200, + 0, + 0 + ], + [ + 1355616000, + 0, + 0 + ], + [ + 1356220800, + 0, + 0 + ], + [ + 1356825600, + 44, + -40 + ], + [ + 1357430400, + 219, + -154 + ], + [ + 1358035200, + 0, + 0 + ], + [ + 1358640000, + 10, + -6 + ], + [ + 1359244800, + 0, + 0 + ], + [ + 1359849600, + 0, + 0 + ], + [ + 1360454400, + 231, + 0 + ], + [ + 1361059200, + 0, + 0 + ], + [ + 1361664000, + 0, + 0 + ], + [ + 1362268800, + 0, + 0 + ], + [ + 1362873600, + 28, + -2 + ], + [ + 1363478400, + 0, + 0 + ], + [ + 1364083200, + 0, + 0 + ], + [ + 1364688000, + 4, + -3 + ], + [ + 1365292800, + 43, + -1 + ], + [ + 1365897600, + 192, + -71 + ], + [ + 1366502400, + 110, + -55 + ], + [ + 1367107200, + 15, + -5 + ], + [ + 1367712000, + 8, + -4 + ], + [ + 1368316800, + 0, + 0 + ], + [ + 1368921600, + 1, + -1 + ], + [ + 1369526400, + 0, + 0 + ], + [ + 1370131200, + 0, + 0 + ], + [ + 1370736000, + 0, + 0 + ], + [ + 1371340800, + 0, + 0 + ], + [ + 1371945600, + 0, + 0 + ], + [ + 1372550400, + 29, + -4 + ], + [ + 1373155200, + 0, + 0 + ], + [ + 1373760000, + 0, + 0 + ], + [ + 1374364800, + 0, + 0 + ], + [ + 1374969600, + 0, + 0 + ], + [ + 1375574400, + 0, + 0 + ], + [ + 1376179200, + 162, + -73 + ], + [ + 1376784000, + 0, + 0 + ], + [ + 1377388800, + 58, + -2 + ], + [ + 1377993600, + 17, + -44 + ], + [ + 1378598400, + 0, + 0 + ], + [ + 1379203200, + 142, + -3 + ], + [ + 1379808000, + 48, + -18 + ], + [ + 1380412800, + 0, + 0 + ], + [ + 1381017600, + 158, + 0 + ], + [ + 1381622400, + 0, + 0 + ], + [ + 1382227200, + 0, + 0 + ], + [ + 1382832000, + 2, + -14 + ], + [ + 1383436800, + 587, + -19 + ], + [ + 1384041600, + 239, + -70 + ], + [ + 1384646400, + 0, + 0 + ], + [ + 1385251200, + 237, + -24 + ], + [ + 1385856000, + 0, + 0 + ], + [ + 1386460800, + 34, + -3 + ], + [ + 1387065600, + 0, + 0 + ], + [ + 1387670400, + 0, + 0 + ], + [ + 1388275200, + 3, + 0 + ], + [ + 1388880000, + 8, + -7 + ], + [ + 1389484800, + 0, + 0 + ], + [ + 1390089600, + 8, + -18 + ], + [ + 1390694400, + 0, + 0 + ], + [ + 1391299200, + 0, + 0 + ], + [ + 1391904000, + 7, + -2 + ], + [ + 1392508800, + 0, + 0 + ], + [ + 1393113600, + 33, + 0 + ], + [ + 1393718400, + 2, + -2 + ], + [ + 1394323200, + 39, + -4 + ], + [ + 1394928000, + 85, + -2 + ], + [ + 1395532800, + 259, + -101 + ], + [ + 1396137600, + 37, + 0 + ], + [ + 1396742400, + 1, + -2 + ], + [ + 1397347200, + 113, + -6 + ], + [ + 1397952000, + 255, + -45 + ], + [ + 1398556800, + 2, + 0 + ], + [ + 1399161600, + 1692, + -1026 + ], + [ + 1399766400, + 0, + 0 + ], + [ + 1400371200, + 0, + 0 + ], + [ + 1400976000, + 38, + -2 + ], + [ + 1401580800, + 126, + -4 + ], + [ + 1402185600, + 22, + -18 + ], + [ + 1402790400, + 0, + 0 + ], + [ + 1403395200, + 13, + -7 + ], + [ + 1404000000, + 144, + -11 + ], + [ + 1404604800, + 34, + -2 + ], + [ + 1405209600, + 0, + 0 + ], + [ + 1405814400, + 67, + -11 + ], + [ + 1406419200, + 0, + 0 + ], + [ + 1407024000, + 8, + -1 + ], + [ + 1407628800, + 0, + 0 + ], + [ + 1408233600, + 47, + -3 + ], + [ + 1408838400, + 54, + -50 + ], + [ + 1409443200, + 132, + -38 + ], + [ + 1410048000, + 9, + 0 + ], + [ + 1410652800, + 0, + 0 + ], + [ + 1411257600, + 1, + -1 + ], + [ + 1411862400, + 208, + -12 + ], + [ + 1412467200, + 24, + -20 + ], + [ + 1413072000, + 0, + 0 + ], + [ + 1413676800, + 0, + 0 + ], + [ + 1414281600, + 0, + 0 + ], + [ + 1414886400, + 17, + -4 + ], + [ + 1415491200, + 0, + 0 + ], + [ + 1416096000, + 1, + 0 + ], + [ + 1416700800, + 0, + 0 + ], + [ + 1417305600, + 0, + 0 + ], + [ + 1417910400, + 0, + 0 + ], + [ + 1418515200, + 313, + -76 + ], + [ + 1419120000, + 0, + 0 + ], + [ + 1419724800, + 94, + -10 + ], + [ + 1420329600, + 0, + 0 + ], + [ + 1420934400, + 2, + -2 + ], + [ + 1421539200, + 0, + 0 + ], + [ + 1422144000, + 0, + 0 + ], + [ + 1422748800, + 0, + 0 + ], + [ + 1423353600, + 441, + -424 + ], + [ + 1423958400, + 714, + -160 + ], + [ + 1424563200, + 13, + -7 + ], + [ + 1425168000, + 37, + -8 + ], + [ + 1425772800, + 28, + -5 + ], + [ + 1426377600, + 278, + -148 + ], + [ + 1426982400, + 1041, + -189 + ], + [ + 1427587200, + 12, + 0 + ], + [ + 1428192000, + 20, + 0 + ], + [ + 1428796800, + 655, + -532 + ], + [ + 1429401600, + 332, + -72 + ], + [ + 1430006400, + 82, + -7 + ], + [ + 1430611200, + 7, + 0 + ], + [ + 1431216000, + 251, + -54 + ], + [ + 1431820800, + 23, + -2 + ], + [ + 1432425600, + 7, + -2 + ], + [ + 1433030400, + 0, + 0 + ], + [ + 1433635200, + 25, + -8 + ], + [ + 1434240000, + 6, + -4 + ], + [ + 1434844800, + 29, + -2 + ], + [ + 1435449600, + 0, + 0 + ], + [ + 1436054400, + 8, + -3 + ], + [ + 1436659200, + 99, + -41 + ], + [ + 1437264000, + 210, + -54 + ], + [ + 1437868800, + 0, + 0 + ], + [ + 1438473600, + 13, + 0 + ], + [ + 1439078400, + 11, + -7 + ], + [ + 1439683200, + 0, + 0 + ], + [ + 1440288000, + 0, + 0 + ], + [ + 1440892800, + 6, + -2 + ], + [ + 1441497600, + 3, + -2 + ], + [ + 1442102400, + 9, + -1 + ], + [ + 1442707200, + 17, + -1 + ], + [ + 1443312000, + 0, + 0 + ], + [ + 1443916800, + 27, + -16 + ], + [ + 1444521600, + 0, + 0 + ], + [ + 1445126400, + 0, + 0 + ], + [ + 1445731200, + 0, + 0 + ], + [ + 1446336000, + 0, + 0 + ], + [ + 1446940800, + 18, + -3 + ], + [ + 1447545600, + 76, + -8 + ], + [ + 1448150400, + 3, + -6 + ], + [ + 1448755200, + 401, + -220 + ], + [ + 1449360000, + 180, + -55 + ], + [ + 1449964800, + 76, + -7 + ], + [ + 1450569600, + 0, + 0 + ], + [ + 1451174400, + 0, + 0 + ], + [ + 1451779200, + 0, + 0 + ], + [ + 1452384000, + 0, + 0 + ], + [ + 1452988800, + 2, + -2 + ], + [ + 1453593600, + 0, + 0 + ], + [ + 1454198400, + 0, + 0 + ], + [ + 1454803200, + 0, + 0 + ], + [ + 1455408000, + 0, + 0 + ], + [ + 1456012800, + 12, + -2 + ], + [ + 1456617600, + 226, + -52 + ], + [ + 1457222400, + 268, + -71 + ], + [ + 1457827200, + 27, + -12 + ], + [ + 1458432000, + 0, + 0 + ], + [ + 1459036800, + 0, + 0 + ], + [ + 1459641600, + 8, + -1 + ], + [ + 1460246400, + 77, + -5 + ], + [ + 1460851200, + 0, + 0 + ], + [ + 1461456000, + 8, + -1 + ], + [ + 1462060800, + 1, + -2 + ], + [ + 1462665600, + 27, + -3 + ], + [ + 1463270400, + 83, + -43 + ], + [ + 1463875200, + 0, + 0 + ], + [ + 1464480000, + 242, + -33 + ], + [ + 1465084800, + 0, + 0 + ], + [ + 1465689600, + 0, + 0 + ], + [ + 1466294400, + 0, + 0 + ], + [ + 1466899200, + 0, + 0 + ], + [ + 1467504000, + 0, + 0 + ], + [ + 1468108800, + 0, + 0 + ], + [ + 1468713600, + 34, + -2 + ], + [ + 1469318400, + 0, + 0 + ], + [ + 1469923200, + 885, + -332 + ], + [ + 1470528000, + 0, + 0 + ], + [ + 1471132800, + 0, + 0 + ], + [ + 1471737600, + 0, + 0 + ], + [ + 1472342400, + 0, + 0 + ], + [ + 1472947200, + 0, + 0 + ], + [ + 1473552000, + 0, + 0 + ], + [ + 1474156800, + 2, + -2 + ], + [ + 1474761600, + 0, + 0 + ], + [ + 1475366400, + 0, + 0 + ], + [ + 1475971200, + 0, + 0 + ], + [ + 1476576000, + 2, + 0 + ], + [ + 1477180800, + 40, + -10 + ], + [ + 1477785600, + 14, + -10 + ], + [ + 1478390400, + 5165, + -20 + ], + [ + 1478995200, + 535, + -81 + ], + [ + 1479600000, + 23, + -8 + ], + [ + 1480204800, + 0, + 0 + ], + [ + 1480809600, + 0, + 0 + ], + [ + 1481414400, + 310, + -46 + ], + [ + 1482019200, + 19, + -3 + ], + [ + 1482624000, + 0, + 0 + ], + [ + 1483228800, + 141, + -27 + ], + [ + 1483833600, + 94, + -51 + ], + [ + 1484438400, + 0, + 0 + ], + [ + 1485043200, + 39, + -2 + ], + [ + 1485648000, + 0, + 0 + ], + [ + 1486252800, + 220, + -45 + ], + [ + 1486857600, + 0, + 0 + ], + [ + 1487462400, + 69, + -26 + ], + [ + 1488067200, + 4, + -4 + ], + [ + 1488672000, + 0, + 0 + ], + [ + 1489276800, + 0, + 0 + ], + [ + 1489881600, + 0, + 0 + ], + [ + 1490486400, + 424, + -2 + ], + [ + 1491091200, + 0, + 0 + ], + [ + 1491696000, + 0, + 0 + ], + [ + 1492300800, + 0, + 0 + ], + [ + 1492905600, + 0, + 0 + ], + [ + 1493510400, + 0, + 0 + ], + [ + 1494115200, + 26, + 0 + ], + [ + 1494720000, + 0, + 0 + ], + [ + 1495324800, + 0, + 0 + ], + [ + 1495929600, + 0, + 0 + ], + [ + 1496534400, + 0, + 0 + ], + [ + 1497139200, + 1, + -4 + ], + [ + 1497744000, + 0, + 0 + ], + [ + 1498348800, + 10, + 0 + ], + [ + 1498953600, + 232, + -4 + ], + [ + 1499558400, + 20, + 0 + ], + [ + 1500163200, + 0, + -4 + ], + [ + 1500768000, + 0, + 0 + ], + [ + 1501372800, + 464, + -153 + ], + [ + 1501977600, + 445, + -64 + ], + [ + 1502582400, + 0, + 0 + ], + [ + 1503187200, + 0, + 0 + ], + [ + 1503792000, + 136, + -47 + ], + [ + 1504396800, + 773, + -531 + ], + [ + 1505001600, + 1, + 0 + ], + [ + 1505606400, + 24, + -2 + ], + [ + 1506211200, + 0, + 0 + ], + [ + 1506816000, + 148, + -11 + ], + [ + 1507420800, + 0, + 0 + ], + [ + 1508025600, + 0, + 0 + ], + [ + 1508630400, + 146, + -64 + ], + [ + 1509235200, + 51, + -4 + ], + [ + 1509840000, + 1, + -1 + ], + [ + 1510444800, + 4, + 0 + ], + [ + 1511049600, + 12, + -15 + ], + [ + 1511654400, + 86, + -38 + ], + [ + 1512259200, + 214, + -129 + ], + [ + 1512864000, + 0, + 0 + ], + [ + 1513468800, + 0, + 0 + ], + [ + 1514073600, + 0, + 0 + ], + [ + 1514678400, + 0, + 0 + ], + [ + 1515283200, + 392, + -309 + ], + [ + 1515888000, + 0, + 0 + ], + [ + 1516492800, + 48, + -8 + ], + [ + 1517097600, + 0, + 0 + ], + [ + 1517702400, + 46, + 0 + ], + [ + 1518307200, + 14, + -14 + ], + [ + 1518912000, + 42, + 0 + ], + [ + 1519516800, + 37, + 0 + ], + [ + 1520121600, + 0, + 0 + ], + [ + 1520726400, + 13, + -8 + ], + [ + 1521331200, + 6, + 0 + ], + [ + 1521936000, + 7, + 0 + ], + [ + 1522540800, + 1, + -1 + ], + [ + 1523145600, + 0, + 0 + ], + [ + 1523750400, + 0, + 0 + ], + [ + 1524355200, + 0, + 0 + ], + [ + 1524960000, + 35, + -36 + ], + [ + 1525564800, + 0, + 0 + ], + [ + 1526169600, + 0, + 0 + ], + [ + 1526774400, + 0, + 0 + ], + [ + 1527379200, + 192, + -14 + ], + [ + 1527984000, + 4, + 0 + ], + [ + 1528588800, + 160, + -13 + ], + [ + 1529193600, + 0, + 0 + ], + [ + 1529798400, + 0, + 0 + ], + [ + 1530403200, + 58, + -3 + ], + [ + 1531008000, + 0, + 0 + ], + [ + 1531612800, + 5, + -5 + ], + [ + 1532217600, + 0, + 0 + ], + [ + 1532822400, + 0, + 0 + ], + [ + 1533427200, + 3, + -1 + ], + [ + 1534032000, + 0, + 0 + ], + [ + 1534636800, + 0, + 0 + ], + [ + 1535241600, + 185, + -243 + ], + [ + 1535846400, + 0, + 0 + ], + [ + 1536451200, + 0, + 0 + ], + [ + 1537056000, + 0, + 0 + ], + [ + 1537660800, + 0, + 0 + ], + [ + 1538265600, + 71, + -3 + ], + [ + 1538870400, + 9, + 0 + ], + [ + 1539475200, + 3, + -2 + ], + [ + 1540080000, + 7, + -2 + ], + [ + 1540684800, + 0, + 0 + ], + [ + 1541289600, + 63, + -56 + ], + [ + 1541894400, + 0, + 0 + ], + [ + 1542499200, + 0, + 0 + ], + [ + 1543104000, + 1, + -1 + ], + [ + 1543708800, + 0, + 0 + ], + [ + 1544313600, + 0, + 0 + ], + [ + 1544918400, + 0, + -1 + ], + [ + 1545523200, + 0, + 0 + ], + [ + 1546128000, + 0, + 0 + ], + [ + 1546732800, + 0, + 0 + ], + [ + 1547337600, + 0, + 0 + ], + [ + 1547942400, + 0, + 0 + ], + [ + 1548547200, + 1, + -1 + ], + [ + 1549152000, + 0, + 0 + ], + [ + 1549756800, + 0, + 0 + ], + [ + 1550361600, + 44, + -1 + ], + [ + 1550966400, + 0, + 0 + ], + [ + 1551571200, + 0, + 0 + ], + [ + 1552176000, + 0, + 0 + ], + [ + 1552780800, + 18, + 0 + ], + [ + 1553385600, + 1, + -1 + ], + [ + 1553990400, + 0, + 0 + ], + [ + 1554595200, + 0, + 0 + ], + [ + 1555200000, + 0, + 0 + ], + [ + 1555804800, + 8, + 0 + ], + [ + 1556409600, + 0, + 0 + ], + [ + 1557014400, + 0, + 0 + ], + [ + 1557619200, + 0, + 0 + ], + [ + 1558224000, + 0, + 0 + ], + [ + 1558828800, + 0, + 0 + ], + [ + 1559433600, + 0, + 0 + ], + [ + 1560038400, + 0, + 0 + ], + [ + 1560643200, + 0, + 0 + ], + [ + 1561248000, + 0, + 0 + ], + [ + 1561852800, + 0, + 0 + ], + [ + 1562457600, + 0, + 0 + ], + [ + 1563062400, + 0, + 0 + ], + [ + 1563667200, + 0, + 0 + ], + [ + 1564272000, + 0, + 0 + ], + [ + 1564876800, + 0, + 0 + ], + [ + 1565481600, + 1, + -1 + ], + [ + 1566086400, + 65, + -25 + ], + [ + 1566691200, + 2720, + -330 + ], + [ + 1567296000, + 3, + -11 + ], + [ + 1567900800, + 0, + 0 + ], + [ + 1568505600, + 0, + 0 + ], + [ + 1569110400, + 0, + 0 + ], + [ + 1569715200, + 0, + 0 + ] +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testCodeFrequency/__files/user-2c19f62c-49ab-4bd3-b83d-138831bc0e49.json b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testCodeFrequency/__files/user-2c19f62c-49ab-4bd3-b83d-138831bc0e49.json new file mode 100644 index 0000000000..41fc9e3d00 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testCodeFrequency/__files/user-2c19f62c-49ab-4bd3-b83d-138831bc0e49.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 168, + "public_gists": 4, + "followers": 136, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testCodeFrequency/mappings/orgs_github-api-test-org-2-17df55.json b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testCodeFrequency/mappings/orgs_github-api-test-org-2-17df55.json new file mode 100644 index 0000000000..15392e6c66 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testCodeFrequency/mappings/orgs_github-api-test-org-2-17df55.json @@ -0,0 +1,43 @@ +{ + "id": "17df55cd-86fa-40f7-93c9-069b34d0e885", + "name": "orgs_github-api-test-org", + "request": { + "url": "/orgs/github-api-test-org", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_github-api-test-org-17df55cd-86fa-40f7-93c9-069b34d0e885.json", + "headers": { + "Date": "Sat, 05 Oct 2019 04:28:00 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4962", + "X-RateLimit-Reset": "1570253246", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"511c83f13dd1d0697f68879f1a183f6f\"", + "Last-Modified": "Mon, 20 Apr 2015 00:42:30 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F4F3:361D:196A708:1E5F8A7:5D981BCF" + } + }, + "uuid": "17df55cd-86fa-40f7-93c9-069b34d0e885", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testCodeFrequency/mappings/repos_github-api-test-org_github-api-3-6fede0.json b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testCodeFrequency/mappings/repos_github-api-test-org_github-api-3-6fede0.json new file mode 100644 index 0000000000..96bd0d1641 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testCodeFrequency/mappings/repos_github-api-test-org_github-api-3-6fede0.json @@ -0,0 +1,43 @@ +{ + "id": "6fede042-34ef-490c-ab77-fe2ce7d034c3", + "name": "repos_github-api-test-org_github-api", + "request": { + "url": "/repos/github-api-test-org/github-api", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api-6fede042-34ef-490c-ab77-fe2ce7d034c3.json", + "headers": { + "Date": "Sat, 05 Oct 2019 04:28:00 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4961", + "X-RateLimit-Reset": "1570253246", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"8960c5c8afa27b9c8267a48a1973444c\"", + "Last-Modified": "Mon, 30 Sep 2019 22:36:47 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F4F3:361D:196A716:1E5F8C1:5D981BD0" + } + }, + "uuid": "6fede042-34ef-490c-ab77-fe2ce7d034c3", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testCodeFrequency/mappings/repos_github-api-test-org_github-api_stats_code_frequency-4-09de1d.json b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testCodeFrequency/mappings/repos_github-api-test-org_github-api_stats_code_frequency-4-09de1d.json new file mode 100644 index 0000000000..8234d5f508 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testCodeFrequency/mappings/repos_github-api-test-org_github-api_stats_code_frequency-4-09de1d.json @@ -0,0 +1,42 @@ +{ + "id": "09de1d80-83e2-45a8-987f-204eb7ea42a4", + "name": "repos_github-api-test-org_github-api_stats_code_frequency", + "request": { + "url": "/repos/github-api-test-org/github-api/stats/code_frequency", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api_stats_code_frequency-09de1d80-83e2-45a8-987f-204eb7ea42a4.json", + "headers": { + "Date": "Sat, 05 Oct 2019 04:28:00 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4960", + "X-RateLimit-Reset": "1570253246", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"c487636beef39d7b617ec262a72fc4b7\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F4F3:361D:196A726:1E5F8D1:5D981BD0" + } + }, + "uuid": "09de1d80-83e2-45a8-987f-204eb7ea42a4", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testCodeFrequency/mappings/user-1-2c19f6.json b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testCodeFrequency/mappings/user-1-2c19f6.json new file mode 100644 index 0000000000..5bc5ba93c2 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testCodeFrequency/mappings/user-1-2c19f6.json @@ -0,0 +1,43 @@ +{ + "id": "2c19f62c-49ab-4bd3-b83d-138831bc0e49", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-2c19f62c-49ab-4bd3-b83d-138831bc0e49.json", + "headers": { + "Date": "Sat, 05 Oct 2019 04:27:59 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4964", + "X-RateLimit-Reset": "1570253246", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"af0c41afcacb8ceee14b7d896719c3bd\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F4F3:361D:196A6F1:1E5F89A:5D981BCF" + } + }, + "uuid": "2c19f62c-49ab-4bd3-b83d-138831bc0e49", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testCommitActivity/__files/orgs_github-api-test-org-4edea480-acf1-40ee-9636-e8842a01a9ea.json b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testCommitActivity/__files/orgs_github-api-test-org-4edea480-acf1-40ee-9636-e8842a01a9ea.json new file mode 100644 index 0000000000..6a1869b899 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testCommitActivity/__files/orgs_github-api-test-org-4edea480-acf1-40ee-9636-e8842a01a9ea.json @@ -0,0 +1,41 @@ +{ + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "url": "https://api.github.com/orgs/github-api-test-org", + "repos_url": "https://api.github.com/orgs/github-api-test-org/repos", + "events_url": "https://api.github.com/orgs/github-api-test-org/events", + "hooks_url": "https://api.github.com/orgs/github-api-test-org/hooks", + "issues_url": "https://api.github.com/orgs/github-api-test-org/issues", + "members_url": "https://api.github.com/orgs/github-api-test-org/members{/member}", + "public_members_url": "https://api.github.com/orgs/github-api-test-org/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "description": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 10, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/github-api-test-org", + "created_at": "2014-05-10T19:39:11Z", + "updated_at": "2015-04-20T00:42:30Z", + "type": "Organization", + "total_private_repos": 0, + "owned_private_repos": 0, + "private_gists": 0, + "disk_usage": 132, + "collaborators": 0, + "billing_email": "kk@kohsuke.org", + "default_repository_permission": "none", + "members_can_create_repositories": false, + "two_factor_requirement_enabled": false, + "plan": { + "name": "free", + "space": 976562499, + "private_repos": 0, + "filled_seats": 5, + "seats": 0 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testCommitActivity/__files/repos_github-api-test-org_github-api-6f33ad9d-feac-4b53-aa4a-c3b0f924a640.json b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testCommitActivity/__files/repos_github-api-test-org_github-api-6f33ad9d-feac-4b53-aa4a-c3b0f924a640.json new file mode 100644 index 0000000000..488efd925a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testCommitActivity/__files/repos_github-api-test-org_github-api-6f33ad9d-feac-4b53-aa4a-c3b0f924a640.json @@ -0,0 +1,330 @@ +{ + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Tricky", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-30T22:36:47Z", + "pushed_at": "2019-09-26T00:06:54Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11391, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "parent": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-10-05T04:10:56Z", + "pushed_at": "2019-10-05T04:12:37Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 12265, + "stargazers_count": 557, + "watchers_count": 557, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 429, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 85, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 429, + "open_issues": 85, + "watchers": 557, + "default_branch": "master" + }, + "source": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-10-05T04:10:56Z", + "pushed_at": "2019-10-05T04:12:37Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 12265, + "stargazers_count": 557, + "watchers_count": 557, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 429, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 85, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 429, + "open_issues": 85, + "watchers": 557, + "default_branch": "master" + }, + "network_count": 429, + "subscribers_count": 0 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testCommitActivity/__files/repos_github-api-test-org_github-api_stats_commit_activity-54ebe063-0972-46bc-ba2c-12abdb28fcf0.json b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testCommitActivity/__files/repos_github-api-test-org_github-api_stats_commit_activity-54ebe063-0972-46bc-ba2c-12abdb28fcf0.json new file mode 100644 index 0000000000..9b8f4032c8 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testCommitActivity/__files/repos_github-api-test-org_github-api_stats_commit_activity-54ebe063-0972-46bc-ba2c-12abdb28fcf0.json @@ -0,0 +1,678 @@ +[ + { + "total": 1, + "week": 1538870400, + "days": [ + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ] + }, + { + "total": 1, + "week": 1539475200, + "days": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1 + ] + }, + { + "total": 1, + "week": 1540080000, + "days": [ + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ] + }, + { + "total": 0, + "week": 1540684800, + "days": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + { + "total": 5, + "week": 1541289600, + "days": [ + 0, + 0, + 5, + 0, + 0, + 0, + 0 + ] + }, + { + "total": 0, + "week": 1541894400, + "days": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + { + "total": 0, + "week": 1542499200, + "days": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + { + "total": 1, + "week": 1543104000, + "days": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ] + }, + { + "total": 0, + "week": 1543708800, + "days": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + { + "total": 0, + "week": 1544313600, + "days": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + { + "total": 1, + "week": 1544918400, + "days": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1 + ] + }, + { + "total": 0, + "week": 1545523200, + "days": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + { + "total": 0, + "week": 1546128000, + "days": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + { + "total": 0, + "week": 1546732800, + "days": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + { + "total": 0, + "week": 1547337600, + "days": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + { + "total": 0, + "week": 1547942400, + "days": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + { + "total": 1, + "week": 1548547200, + "days": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ] + }, + { + "total": 0, + "week": 1549152000, + "days": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + { + "total": 0, + "week": 1549756800, + "days": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + { + "total": 2, + "week": 1550361600, + "days": [ + 0, + 0, + 1, + 1, + 0, + 0, + 0 + ] + }, + { + "total": 0, + "week": 1550966400, + "days": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + { + "total": 0, + "week": 1551571200, + "days": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + { + "total": 0, + "week": 1552176000, + "days": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + { + "total": 1, + "week": 1552780800, + "days": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ] + }, + { + "total": 1, + "week": 1553385600, + "days": [ + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + { + "total": 0, + "week": 1553990400, + "days": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + { + "total": 0, + "week": 1554595200, + "days": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + { + "total": 0, + "week": 1555200000, + "days": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + { + "total": 1, + "week": 1555804800, + "days": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ] + }, + { + "total": 0, + "week": 1556409600, + "days": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + { + "total": 0, + "week": 1557014400, + "days": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + { + "total": 0, + "week": 1557619200, + "days": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + { + "total": 0, + "week": 1558224000, + "days": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + { + "total": 0, + "week": 1558828800, + "days": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + { + "total": 0, + "week": 1559433600, + "days": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + { + "total": 0, + "week": 1560038400, + "days": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + { + "total": 0, + "week": 1560643200, + "days": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + { + "total": 0, + "week": 1561248000, + "days": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + { + "total": 0, + "week": 1561852800, + "days": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + { + "total": 0, + "week": 1562457600, + "days": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + { + "total": 0, + "week": 1563062400, + "days": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + { + "total": 0, + "week": 1563667200, + "days": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + { + "total": 0, + "week": 1564272000, + "days": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + { + "total": 0, + "week": 1564876800, + "days": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + { + "total": 1, + "week": 1565481600, + "days": [ + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ] + }, + { + "total": 10, + "week": 1566086400, + "days": [ + 0, + 0, + 0, + 0, + 0, + 10, + 0 + ] + }, + { + "total": 6, + "week": 1566691200, + "days": [ + 0, + 0, + 1, + 0, + 0, + 1, + 4 + ] + }, + { + "total": 2, + "week": 1567296000, + "days": [ + 0, + 0, + 1, + 0, + 0, + 1, + 0 + ] + }, + { + "total": 0, + "week": 1567900800, + "days": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + { + "total": 0, + "week": 1568505600, + "days": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + { + "total": 0, + "week": 1569110400, + "days": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + { + "total": 0, + "week": 1569715200, + "days": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testCommitActivity/__files/user-68a31e43-509d-476b-bebd-29a7129c9b2d.json b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testCommitActivity/__files/user-68a31e43-509d-476b-bebd-29a7129c9b2d.json new file mode 100644 index 0000000000..41fc9e3d00 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testCommitActivity/__files/user-68a31e43-509d-476b-bebd-29a7129c9b2d.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 168, + "public_gists": 4, + "followers": 136, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testCommitActivity/mappings/orgs_github-api-test-org-2-4edea4.json b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testCommitActivity/mappings/orgs_github-api-test-org-2-4edea4.json new file mode 100644 index 0000000000..59ff16cb0f --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testCommitActivity/mappings/orgs_github-api-test-org-2-4edea4.json @@ -0,0 +1,43 @@ +{ + "id": "4edea480-acf1-40ee-9636-e8842a01a9ea", + "name": "orgs_github-api-test-org", + "request": { + "url": "/orgs/github-api-test-org", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_github-api-test-org-4edea480-acf1-40ee-9636-e8842a01a9ea.json", + "headers": { + "Date": "Sat, 05 Oct 2019 04:28:02 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4952", + "X-RateLimit-Reset": "1570253246", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"511c83f13dd1d0697f68879f1a183f6f\"", + "Last-Modified": "Mon, 20 Apr 2015 00:42:30 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F4FB:361D:196A7E7:1E5F993:5D981BD1" + } + }, + "uuid": "4edea480-acf1-40ee-9636-e8842a01a9ea", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testCommitActivity/mappings/repos_github-api-test-org_github-api-3-6f33ad.json b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testCommitActivity/mappings/repos_github-api-test-org_github-api-3-6f33ad.json new file mode 100644 index 0000000000..51631a2839 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testCommitActivity/mappings/repos_github-api-test-org_github-api-3-6f33ad.json @@ -0,0 +1,43 @@ +{ + "id": "6f33ad9d-feac-4b53-aa4a-c3b0f924a640", + "name": "repos_github-api-test-org_github-api", + "request": { + "url": "/repos/github-api-test-org/github-api", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api-6f33ad9d-feac-4b53-aa4a-c3b0f924a640.json", + "headers": { + "Date": "Sat, 05 Oct 2019 04:28:02 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4951", + "X-RateLimit-Reset": "1570253246", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"8960c5c8afa27b9c8267a48a1973444c\"", + "Last-Modified": "Mon, 30 Sep 2019 22:36:47 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F4FB:361D:196A823:1E5F9F2:5D981BD2" + } + }, + "uuid": "6f33ad9d-feac-4b53-aa4a-c3b0f924a640", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testCommitActivity/mappings/repos_github-api-test-org_github-api_stats_commit_activity-4-54ebe0.json b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testCommitActivity/mappings/repos_github-api-test-org_github-api_stats_commit_activity-4-54ebe0.json new file mode 100644 index 0000000000..2ffd9824af --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testCommitActivity/mappings/repos_github-api-test-org_github-api_stats_commit_activity-4-54ebe0.json @@ -0,0 +1,42 @@ +{ + "id": "54ebe063-0972-46bc-ba2c-12abdb28fcf0", + "name": "repos_github-api-test-org_github-api_stats_commit_activity", + "request": { + "url": "/repos/github-api-test-org/github-api/stats/commit_activity", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api_stats_commit_activity-54ebe063-0972-46bc-ba2c-12abdb28fcf0.json", + "headers": { + "Date": "Sat, 05 Oct 2019 04:28:02 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4950", + "X-RateLimit-Reset": "1570253246", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"09b8e8838a0b1400ca67c67210ad38e2\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F4FB:361D:196A84C:1E5FA22:5D981BD2" + } + }, + "uuid": "54ebe063-0972-46bc-ba2c-12abdb28fcf0", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testCommitActivity/mappings/user-1-68a31e.json b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testCommitActivity/mappings/user-1-68a31e.json new file mode 100644 index 0000000000..21fcb08160 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testCommitActivity/mappings/user-1-68a31e.json @@ -0,0 +1,43 @@ +{ + "id": "68a31e43-509d-476b-bebd-29a7129c9b2d", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-68a31e43-509d-476b-bebd-29a7129c9b2d.json", + "headers": { + "Date": "Sat, 05 Oct 2019 04:28:01 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4954", + "X-RateLimit-Reset": "1570253246", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"af0c41afcacb8ceee14b7d896719c3bd\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F4FB:361D:196A7B6:1E5F976:5D981BD1" + } + }, + "uuid": "68a31e43-509d-476b-bebd-29a7129c9b2d", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testContributorStats/__files/orgs_github-api-test-org-4da8ece7-db7b-4b2d-85ef-8c617bc2cf0e.json b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testContributorStats/__files/orgs_github-api-test-org-4da8ece7-db7b-4b2d-85ef-8c617bc2cf0e.json new file mode 100644 index 0000000000..6a1869b899 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testContributorStats/__files/orgs_github-api-test-org-4da8ece7-db7b-4b2d-85ef-8c617bc2cf0e.json @@ -0,0 +1,41 @@ +{ + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "url": "https://api.github.com/orgs/github-api-test-org", + "repos_url": "https://api.github.com/orgs/github-api-test-org/repos", + "events_url": "https://api.github.com/orgs/github-api-test-org/events", + "hooks_url": "https://api.github.com/orgs/github-api-test-org/hooks", + "issues_url": "https://api.github.com/orgs/github-api-test-org/issues", + "members_url": "https://api.github.com/orgs/github-api-test-org/members{/member}", + "public_members_url": "https://api.github.com/orgs/github-api-test-org/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "description": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 10, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/github-api-test-org", + "created_at": "2014-05-10T19:39:11Z", + "updated_at": "2015-04-20T00:42:30Z", + "type": "Organization", + "total_private_repos": 0, + "owned_private_repos": 0, + "private_gists": 0, + "disk_usage": 132, + "collaborators": 0, + "billing_email": "kk@kohsuke.org", + "default_repository_permission": "none", + "members_can_create_repositories": false, + "two_factor_requirement_enabled": false, + "plan": { + "name": "free", + "space": 976562499, + "private_repos": 0, + "filled_seats": 5, + "seats": 0 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testContributorStats/__files/repos_github-api-test-org_github-api-6d11bbfd-0ddf-4867-bfe9-2896f9adb8e2.json b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testContributorStats/__files/repos_github-api-test-org_github-api-6d11bbfd-0ddf-4867-bfe9-2896f9adb8e2.json new file mode 100644 index 0000000000..488efd925a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testContributorStats/__files/repos_github-api-test-org_github-api-6d11bbfd-0ddf-4867-bfe9-2896f9adb8e2.json @@ -0,0 +1,330 @@ +{ + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Tricky", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-30T22:36:47Z", + "pushed_at": "2019-09-26T00:06:54Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11391, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "parent": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-10-05T04:10:56Z", + "pushed_at": "2019-10-05T04:12:37Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 12265, + "stargazers_count": 557, + "watchers_count": 557, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 429, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 85, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 429, + "open_issues": 85, + "watchers": 557, + "default_branch": "master" + }, + "source": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-10-05T04:10:56Z", + "pushed_at": "2019-10-05T04:12:37Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 12265, + "stargazers_count": 557, + "watchers_count": 557, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 429, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 85, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 429, + "open_issues": 85, + "watchers": 557, + "default_branch": "master" + }, + "network_count": 429, + "subscribers_count": 0 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testContributorStats/__files/repos_github-api-test-org_github-api_stats_contributors-722ef788-c190-4e69-a84a-9ad367d6630d.json b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testContributorStats/__files/repos_github-api-test-org_github-api_stats_contributors-722ef788-c190-4e69-a84a-9ad367d6630d.json new file mode 100644 index 0000000000..b5f2a4cfae --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testContributorStats/__files/repos_github-api-test-org_github-api_stats_contributors-722ef788-c190-4e69-a84a-9ad367d6630d.json @@ -0,0 +1,295913 @@ +[ + { + "total": 1, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 14, + "d": 10, + "c": 1 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "wolfogre", + "id": 9418365, + "node_id": "MDQ6VXNlcjk0MTgzNjU=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9418365?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/wolfogre", + "html_url": "https://github.com/wolfogre", + "followers_url": "https://api.github.com/users/wolfogre/followers", + "following_url": "https://api.github.com/users/wolfogre/following{/other_user}", + "gists_url": "https://api.github.com/users/wolfogre/gists{/gist_id}", + "starred_url": "https://api.github.com/users/wolfogre/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/wolfogre/subscriptions", + "organizations_url": "https://api.github.com/users/wolfogre/orgs", + "repos_url": "https://api.github.com/users/wolfogre/repos", + "events_url": "https://api.github.com/users/wolfogre/events{/privacy}", + "received_events_url": "https://api.github.com/users/wolfogre/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 1, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 11, + "d": 0, + "c": 1 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "vanjikumaran", + "id": 3397321, + "node_id": "MDQ6VXNlcjMzOTczMjE=", + "avatar_url": "https://avatars1.githubusercontent.com/u/3397321?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vanjikumaran", + "html_url": "https://github.com/vanjikumaran", + "followers_url": "https://api.github.com/users/vanjikumaran/followers", + "following_url": "https://api.github.com/users/vanjikumaran/following{/other_user}", + "gists_url": "https://api.github.com/users/vanjikumaran/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vanjikumaran/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vanjikumaran/subscriptions", + "organizations_url": "https://api.github.com/users/vanjikumaran/orgs", + "repos_url": "https://api.github.com/users/vanjikumaran/repos", + "events_url": "https://api.github.com/users/vanjikumaran/events{/privacy}", + "received_events_url": "https://api.github.com/users/vanjikumaran/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 1, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 13, + "d": 0, + "c": 1 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "umajeric", + "id": 5724024, + "node_id": "MDQ6VXNlcjU3MjQwMjQ=", + "avatar_url": "https://avatars3.githubusercontent.com/u/5724024?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/umajeric", + "html_url": "https://github.com/umajeric", + "followers_url": "https://api.github.com/users/umajeric/followers", + "following_url": "https://api.github.com/users/umajeric/following{/other_user}", + "gists_url": "https://api.github.com/users/umajeric/gists{/gist_id}", + "starred_url": "https://api.github.com/users/umajeric/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/umajeric/subscriptions", + "organizations_url": "https://api.github.com/users/umajeric/orgs", + "repos_url": "https://api.github.com/users/umajeric/repos", + "events_url": "https://api.github.com/users/umajeric/events{/privacy}", + "received_events_url": "https://api.github.com/users/umajeric/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 1, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 1, + "d": 1, + "c": 1 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "turbanoff", + "id": 741251, + "node_id": "MDQ6VXNlcjc0MTI1MQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/741251?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/turbanoff", + "html_url": "https://github.com/turbanoff", + "followers_url": "https://api.github.com/users/turbanoff/followers", + "following_url": "https://api.github.com/users/turbanoff/following{/other_user}", + "gists_url": "https://api.github.com/users/turbanoff/gists{/gist_id}", + "starred_url": "https://api.github.com/users/turbanoff/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/turbanoff/subscriptions", + "organizations_url": "https://api.github.com/users/turbanoff/orgs", + "repos_url": "https://api.github.com/users/turbanoff/repos", + "events_url": "https://api.github.com/users/turbanoff/events{/privacy}", + "received_events_url": "https://api.github.com/users/turbanoff/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 1, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 1, + "d": 0, + "c": 1 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "treeduck", + "id": 7660871, + "node_id": "MDQ6VXNlcjc2NjA4NzE=", + "avatar_url": "https://avatars2.githubusercontent.com/u/7660871?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/treeduck", + "html_url": "https://github.com/treeduck", + "followers_url": "https://api.github.com/users/treeduck/followers", + "following_url": "https://api.github.com/users/treeduck/following{/other_user}", + "gists_url": "https://api.github.com/users/treeduck/gists{/gist_id}", + "starred_url": "https://api.github.com/users/treeduck/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/treeduck/subscriptions", + "organizations_url": "https://api.github.com/users/treeduck/orgs", + "repos_url": "https://api.github.com/users/treeduck/repos", + "events_url": "https://api.github.com/users/treeduck/events{/privacy}", + "received_events_url": "https://api.github.com/users/treeduck/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 1, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 7, + "d": 0, + "c": 1 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "thug-gamer", + "id": 15268260, + "node_id": "MDQ6VXNlcjE1MjY4MjYw", + "avatar_url": "https://avatars3.githubusercontent.com/u/15268260?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/thug-gamer", + "html_url": "https://github.com/thug-gamer", + "followers_url": "https://api.github.com/users/thug-gamer/followers", + "following_url": "https://api.github.com/users/thug-gamer/following{/other_user}", + "gists_url": "https://api.github.com/users/thug-gamer/gists{/gist_id}", + "starred_url": "https://api.github.com/users/thug-gamer/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/thug-gamer/subscriptions", + "organizations_url": "https://api.github.com/users/thug-gamer/orgs", + "repos_url": "https://api.github.com/users/thug-gamer/repos", + "events_url": "https://api.github.com/users/thug-gamer/events{/privacy}", + "received_events_url": "https://api.github.com/users/thug-gamer/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 1, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 5, + "d": 0, + "c": 1 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "tbruyelle", + "id": 92280, + "node_id": "MDQ6VXNlcjkyMjgw", + "avatar_url": "https://avatars0.githubusercontent.com/u/92280?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/tbruyelle", + "html_url": "https://github.com/tbruyelle", + "followers_url": "https://api.github.com/users/tbruyelle/followers", + "following_url": "https://api.github.com/users/tbruyelle/following{/other_user}", + "gists_url": "https://api.github.com/users/tbruyelle/gists{/gist_id}", + "starred_url": "https://api.github.com/users/tbruyelle/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/tbruyelle/subscriptions", + "organizations_url": "https://api.github.com/users/tbruyelle/orgs", + "repos_url": "https://api.github.com/users/tbruyelle/repos", + "events_url": "https://api.github.com/users/tbruyelle/events{/privacy}", + "received_events_url": "https://api.github.com/users/tbruyelle/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 1, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 46, + "d": 0, + "c": 1 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "tadfisher", + "id": 129148, + "node_id": "MDQ6VXNlcjEyOTE0OA==", + "avatar_url": "https://avatars3.githubusercontent.com/u/129148?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/tadfisher", + "html_url": "https://github.com/tadfisher", + "followers_url": "https://api.github.com/users/tadfisher/followers", + "following_url": "https://api.github.com/users/tadfisher/following{/other_user}", + "gists_url": "https://api.github.com/users/tadfisher/gists{/gist_id}", + "starred_url": "https://api.github.com/users/tadfisher/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/tadfisher/subscriptions", + "organizations_url": "https://api.github.com/users/tadfisher/orgs", + "repos_url": "https://api.github.com/users/tadfisher/repos", + "events_url": "https://api.github.com/users/tadfisher/events{/privacy}", + "received_events_url": "https://api.github.com/users/tadfisher/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 1, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 8, + "d": 1, + "c": 1 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "szpak", + "id": 148013, + "node_id": "MDQ6VXNlcjE0ODAxMw==", + "avatar_url": "https://avatars1.githubusercontent.com/u/148013?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/szpak", + "html_url": "https://github.com/szpak", + "followers_url": "https://api.github.com/users/szpak/followers", + "following_url": "https://api.github.com/users/szpak/following{/other_user}", + "gists_url": "https://api.github.com/users/szpak/gists{/gist_id}", + "starred_url": "https://api.github.com/users/szpak/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/szpak/subscriptions", + "organizations_url": "https://api.github.com/users/szpak/orgs", + "repos_url": "https://api.github.com/users/szpak/repos", + "events_url": "https://api.github.com/users/szpak/events{/privacy}", + "received_events_url": "https://api.github.com/users/szpak/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 1, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 20, + "d": 0, + "c": 1 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "syniuhin", + "id": 6153943, + "node_id": "MDQ6VXNlcjYxNTM5NDM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/6153943?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/syniuhin", + "html_url": "https://github.com/syniuhin", + "followers_url": "https://api.github.com/users/syniuhin/followers", + "following_url": "https://api.github.com/users/syniuhin/following{/other_user}", + "gists_url": "https://api.github.com/users/syniuhin/gists{/gist_id}", + "starred_url": "https://api.github.com/users/syniuhin/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/syniuhin/subscriptions", + "organizations_url": "https://api.github.com/users/syniuhin/orgs", + "repos_url": "https://api.github.com/users/syniuhin/repos", + "events_url": "https://api.github.com/users/syniuhin/events{/privacy}", + "received_events_url": "https://api.github.com/users/syniuhin/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 1, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 1, + "d": 1, + "c": 1 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "sullis", + "id": 30938, + "node_id": "MDQ6VXNlcjMwOTM4", + "avatar_url": "https://avatars3.githubusercontent.com/u/30938?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/sullis", + "html_url": "https://github.com/sullis", + "followers_url": "https://api.github.com/users/sullis/followers", + "following_url": "https://api.github.com/users/sullis/following{/other_user}", + "gists_url": "https://api.github.com/users/sullis/gists{/gist_id}", + "starred_url": "https://api.github.com/users/sullis/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/sullis/subscriptions", + "organizations_url": "https://api.github.com/users/sullis/orgs", + "repos_url": "https://api.github.com/users/sullis/repos", + "events_url": "https://api.github.com/users/sullis/events{/privacy}", + "received_events_url": "https://api.github.com/users/sullis/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 1, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 228, + "d": 0, + "c": 1 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "siordache", + "id": 1158863, + "node_id": "MDQ6VXNlcjExNTg4NjM=", + "avatar_url": "https://avatars1.githubusercontent.com/u/1158863?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/siordache", + "html_url": "https://github.com/siordache", + "followers_url": "https://api.github.com/users/siordache/followers", + "following_url": "https://api.github.com/users/siordache/following{/other_user}", + "gists_url": "https://api.github.com/users/siordache/gists{/gist_id}", + "starred_url": "https://api.github.com/users/siordache/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/siordache/subscriptions", + "organizations_url": "https://api.github.com/users/siordache/orgs", + "repos_url": "https://api.github.com/users/siordache/repos", + "events_url": "https://api.github.com/users/siordache/events{/privacy}", + "received_events_url": "https://api.github.com/users/siordache/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 1, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 1, + "d": 1, + "c": 1 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "simonecarriero", + "id": 1140899, + "node_id": "MDQ6VXNlcjExNDA4OTk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1140899?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/simonecarriero", + "html_url": "https://github.com/simonecarriero", + "followers_url": "https://api.github.com/users/simonecarriero/followers", + "following_url": "https://api.github.com/users/simonecarriero/following{/other_user}", + "gists_url": "https://api.github.com/users/simonecarriero/gists{/gist_id}", + "starred_url": "https://api.github.com/users/simonecarriero/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/simonecarriero/subscriptions", + "organizations_url": "https://api.github.com/users/simonecarriero/orgs", + "repos_url": "https://api.github.com/users/simonecarriero/repos", + "events_url": "https://api.github.com/users/simonecarriero/events{/privacy}", + "received_events_url": "https://api.github.com/users/simonecarriero/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 1, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 160, + "d": 13, + "c": 1 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "sbabu-salesforce", + "id": 24689613, + "node_id": "MDQ6VXNlcjI0Njg5NjEz", + "avatar_url": "https://avatars2.githubusercontent.com/u/24689613?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/sbabu-salesforce", + "html_url": "https://github.com/sbabu-salesforce", + "followers_url": "https://api.github.com/users/sbabu-salesforce/followers", + "following_url": "https://api.github.com/users/sbabu-salesforce/following{/other_user}", + "gists_url": "https://api.github.com/users/sbabu-salesforce/gists{/gist_id}", + "starred_url": "https://api.github.com/users/sbabu-salesforce/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/sbabu-salesforce/subscriptions", + "organizations_url": "https://api.github.com/users/sbabu-salesforce/orgs", + "repos_url": "https://api.github.com/users/sbabu-salesforce/repos", + "events_url": "https://api.github.com/users/sbabu-salesforce/events{/privacy}", + "received_events_url": "https://api.github.com/users/sbabu-salesforce/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 1, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 8, + "d": 18, + "c": 1 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "ryankennedy", + "id": 37302, + "node_id": "MDQ6VXNlcjM3MzAy", + "avatar_url": "https://avatars3.githubusercontent.com/u/37302?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ryankennedy", + "html_url": "https://github.com/ryankennedy", + "followers_url": "https://api.github.com/users/ryankennedy/followers", + "following_url": "https://api.github.com/users/ryankennedy/following{/other_user}", + "gists_url": "https://api.github.com/users/ryankennedy/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ryankennedy/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ryankennedy/subscriptions", + "organizations_url": "https://api.github.com/users/ryankennedy/orgs", + "repos_url": "https://api.github.com/users/ryankennedy/repos", + "events_url": "https://api.github.com/users/ryankennedy/events{/privacy}", + "received_events_url": "https://api.github.com/users/ryankennedy/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 1, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 1, + "d": 0, + "c": 1 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "rtholmes", + "id": 89003, + "node_id": "MDQ6VXNlcjg5MDAz", + "avatar_url": "https://avatars1.githubusercontent.com/u/89003?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rtholmes", + "html_url": "https://github.com/rtholmes", + "followers_url": "https://api.github.com/users/rtholmes/followers", + "following_url": "https://api.github.com/users/rtholmes/following{/other_user}", + "gists_url": "https://api.github.com/users/rtholmes/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rtholmes/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rtholmes/subscriptions", + "organizations_url": "https://api.github.com/users/rtholmes/orgs", + "repos_url": "https://api.github.com/users/rtholmes/repos", + "events_url": "https://api.github.com/users/rtholmes/events{/privacy}", + "received_events_url": "https://api.github.com/users/rtholmes/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 1, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 17, + "d": 0, + "c": 1 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "rmetzger", + "id": 89049, + "node_id": "MDQ6VXNlcjg5MDQ5", + "avatar_url": "https://avatars2.githubusercontent.com/u/89049?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rmetzger", + "html_url": "https://github.com/rmetzger", + "followers_url": "https://api.github.com/users/rmetzger/followers", + "following_url": "https://api.github.com/users/rmetzger/following{/other_user}", + "gists_url": "https://api.github.com/users/rmetzger/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rmetzger/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rmetzger/subscriptions", + "organizations_url": "https://api.github.com/users/rmetzger/orgs", + "repos_url": "https://api.github.com/users/rmetzger/repos", + "events_url": "https://api.github.com/users/rmetzger/events{/privacy}", + "received_events_url": "https://api.github.com/users/rmetzger/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 1, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 6, + "d": 6, + "c": 1 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "res0nance", + "id": 31362124, + "node_id": "MDQ6VXNlcjMxMzYyMTI0", + "avatar_url": "https://avatars3.githubusercontent.com/u/31362124?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/res0nance", + "html_url": "https://github.com/res0nance", + "followers_url": "https://api.github.com/users/res0nance/followers", + "following_url": "https://api.github.com/users/res0nance/following{/other_user}", + "gists_url": "https://api.github.com/users/res0nance/gists{/gist_id}", + "starred_url": "https://api.github.com/users/res0nance/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/res0nance/subscriptions", + "organizations_url": "https://api.github.com/users/res0nance/orgs", + "repos_url": "https://api.github.com/users/res0nance/repos", + "events_url": "https://api.github.com/users/res0nance/events{/privacy}", + "received_events_url": "https://api.github.com/users/res0nance/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 1, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 35, + "d": 0, + "c": 1 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "randomvariable", + "id": 1441070, + "node_id": "MDQ6VXNlcjE0NDEwNzA=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1441070?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/randomvariable", + "html_url": "https://github.com/randomvariable", + "followers_url": "https://api.github.com/users/randomvariable/followers", + "following_url": "https://api.github.com/users/randomvariable/following{/other_user}", + "gists_url": "https://api.github.com/users/randomvariable/gists{/gist_id}", + "starred_url": "https://api.github.com/users/randomvariable/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/randomvariable/subscriptions", + "organizations_url": "https://api.github.com/users/randomvariable/orgs", + "repos_url": "https://api.github.com/users/randomvariable/repos", + "events_url": "https://api.github.com/users/randomvariable/events{/privacy}", + "received_events_url": "https://api.github.com/users/randomvariable/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 1, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 12, + "d": 2, + "c": 1 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "olivergondza", + "id": 206841, + "node_id": "MDQ6VXNlcjIwNjg0MQ==", + "avatar_url": "https://avatars0.githubusercontent.com/u/206841?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/olivergondza", + "html_url": "https://github.com/olivergondza", + "followers_url": "https://api.github.com/users/olivergondza/followers", + "following_url": "https://api.github.com/users/olivergondza/following{/other_user}", + "gists_url": "https://api.github.com/users/olivergondza/gists{/gist_id}", + "starred_url": "https://api.github.com/users/olivergondza/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/olivergondza/subscriptions", + "organizations_url": "https://api.github.com/users/olivergondza/orgs", + "repos_url": "https://api.github.com/users/olivergondza/repos", + "events_url": "https://api.github.com/users/olivergondza/events{/privacy}", + "received_events_url": "https://api.github.com/users/olivergondza/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 1, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 26, + "d": 2, + "c": 1 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "notanother", + "id": 656084, + "node_id": "MDQ6VXNlcjY1NjA4NA==", + "avatar_url": "https://avatars1.githubusercontent.com/u/656084?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/notanother", + "html_url": "https://github.com/notanother", + "followers_url": "https://api.github.com/users/notanother/followers", + "following_url": "https://api.github.com/users/notanother/following{/other_user}", + "gists_url": "https://api.github.com/users/notanother/gists{/gist_id}", + "starred_url": "https://api.github.com/users/notanother/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/notanother/subscriptions", + "organizations_url": "https://api.github.com/users/notanother/orgs", + "repos_url": "https://api.github.com/users/notanother/repos", + "events_url": "https://api.github.com/users/notanother/events{/privacy}", + "received_events_url": "https://api.github.com/users/notanother/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 1, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 73, + "d": 1, + "c": 1 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "noctarius", + "id": 1142801, + "node_id": "MDQ6VXNlcjExNDI4MDE=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1142801?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/noctarius", + "html_url": "https://github.com/noctarius", + "followers_url": "https://api.github.com/users/noctarius/followers", + "following_url": "https://api.github.com/users/noctarius/following{/other_user}", + "gists_url": "https://api.github.com/users/noctarius/gists{/gist_id}", + "starred_url": "https://api.github.com/users/noctarius/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/noctarius/subscriptions", + "organizations_url": "https://api.github.com/users/noctarius/orgs", + "repos_url": "https://api.github.com/users/noctarius/repos", + "events_url": "https://api.github.com/users/noctarius/events{/privacy}", + "received_events_url": "https://api.github.com/users/noctarius/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 1, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 4, + "d": 0, + "c": 1 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "mizoguche", + "id": 1318463, + "node_id": "MDQ6VXNlcjEzMTg0NjM=", + "avatar_url": "https://avatars0.githubusercontent.com/u/1318463?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mizoguche", + "html_url": "https://github.com/mizoguche", + "followers_url": "https://api.github.com/users/mizoguche/followers", + "following_url": "https://api.github.com/users/mizoguche/following{/other_user}", + "gists_url": "https://api.github.com/users/mizoguche/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mizoguche/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mizoguche/subscriptions", + "organizations_url": "https://api.github.com/users/mizoguche/orgs", + "repos_url": "https://api.github.com/users/mizoguche/repos", + "events_url": "https://api.github.com/users/mizoguche/events{/privacy}", + "received_events_url": "https://api.github.com/users/mizoguche/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 1, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 148, + "d": 11, + "c": 1 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "mattnelson", + "id": 1894657, + "node_id": "MDQ6VXNlcjE4OTQ2NTc=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1894657?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mattnelson", + "html_url": "https://github.com/mattnelson", + "followers_url": "https://api.github.com/users/mattnelson/followers", + "following_url": "https://api.github.com/users/mattnelson/following{/other_user}", + "gists_url": "https://api.github.com/users/mattnelson/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mattnelson/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mattnelson/subscriptions", + "organizations_url": "https://api.github.com/users/mattnelson/orgs", + "repos_url": "https://api.github.com/users/mattnelson/repos", + "events_url": "https://api.github.com/users/mattnelson/events{/privacy}", + "received_events_url": "https://api.github.com/users/mattnelson/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 1, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 3, + "d": 1, + "c": 1 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "martinvanzijl", + "id": 24422213, + "node_id": "MDQ6VXNlcjI0NDIyMjEz", + "avatar_url": "https://avatars0.githubusercontent.com/u/24422213?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/martinvanzijl", + "html_url": "https://github.com/martinvanzijl", + "followers_url": "https://api.github.com/users/martinvanzijl/followers", + "following_url": "https://api.github.com/users/martinvanzijl/following{/other_user}", + "gists_url": "https://api.github.com/users/martinvanzijl/gists{/gist_id}", + "starred_url": "https://api.github.com/users/martinvanzijl/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/martinvanzijl/subscriptions", + "organizations_url": "https://api.github.com/users/martinvanzijl/orgs", + "repos_url": "https://api.github.com/users/martinvanzijl/repos", + "events_url": "https://api.github.com/users/martinvanzijl/events{/privacy}", + "received_events_url": "https://api.github.com/users/martinvanzijl/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 1, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 2, + "d": 1, + "c": 1 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "lskillen", + "id": 2248287, + "node_id": "MDQ6VXNlcjIyNDgyODc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/2248287?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/lskillen", + "html_url": "https://github.com/lskillen", + "followers_url": "https://api.github.com/users/lskillen/followers", + "following_url": "https://api.github.com/users/lskillen/following{/other_user}", + "gists_url": "https://api.github.com/users/lskillen/gists{/gist_id}", + "starred_url": "https://api.github.com/users/lskillen/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/lskillen/subscriptions", + "organizations_url": "https://api.github.com/users/lskillen/orgs", + "repos_url": "https://api.github.com/users/lskillen/repos", + "events_url": "https://api.github.com/users/lskillen/events{/privacy}", + "received_events_url": "https://api.github.com/users/lskillen/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 1, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 4, + "d": 0, + "c": 1 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "l3ender", + "id": 2243641, + "node_id": "MDQ6VXNlcjIyNDM2NDE=", + "avatar_url": "https://avatars0.githubusercontent.com/u/2243641?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/l3ender", + "html_url": "https://github.com/l3ender", + "followers_url": "https://api.github.com/users/l3ender/followers", + "following_url": "https://api.github.com/users/l3ender/following{/other_user}", + "gists_url": "https://api.github.com/users/l3ender/gists{/gist_id}", + "starred_url": "https://api.github.com/users/l3ender/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/l3ender/subscriptions", + "organizations_url": "https://api.github.com/users/l3ender/orgs", + "repos_url": "https://api.github.com/users/l3ender/repos", + "events_url": "https://api.github.com/users/l3ender/events{/privacy}", + "received_events_url": "https://api.github.com/users/l3ender/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 1, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 12, + "d": 0, + "c": 1 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "kickroot", + "id": 1015101, + "node_id": "MDQ6VXNlcjEwMTUxMDE=", + "avatar_url": "https://avatars0.githubusercontent.com/u/1015101?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kickroot", + "html_url": "https://github.com/kickroot", + "followers_url": "https://api.github.com/users/kickroot/followers", + "following_url": "https://api.github.com/users/kickroot/following{/other_user}", + "gists_url": "https://api.github.com/users/kickroot/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kickroot/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kickroot/subscriptions", + "organizations_url": "https://api.github.com/users/kickroot/orgs", + "repos_url": "https://api.github.com/users/kickroot/repos", + "events_url": "https://api.github.com/users/kickroot/events{/privacy}", + "received_events_url": "https://api.github.com/users/kickroot/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 1, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 71, + "d": 2, + "c": 1 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "kellycampbell", + "id": 625998, + "node_id": "MDQ6VXNlcjYyNTk5OA==", + "avatar_url": "https://avatars0.githubusercontent.com/u/625998?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kellycampbell", + "html_url": "https://github.com/kellycampbell", + "followers_url": "https://api.github.com/users/kellycampbell/followers", + "following_url": "https://api.github.com/users/kellycampbell/following{/other_user}", + "gists_url": "https://api.github.com/users/kellycampbell/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kellycampbell/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kellycampbell/subscriptions", + "organizations_url": "https://api.github.com/users/kellycampbell/orgs", + "repos_url": "https://api.github.com/users/kellycampbell/repos", + "events_url": "https://api.github.com/users/kellycampbell/events{/privacy}", + "received_events_url": "https://api.github.com/users/kellycampbell/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 1, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 8, + "d": 0, + "c": 1 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "jamesatha", + "id": 3318082, + "node_id": "MDQ6VXNlcjMzMTgwODI=", + "avatar_url": "https://avatars2.githubusercontent.com/u/3318082?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jamesatha", + "html_url": "https://github.com/jamesatha", + "followers_url": "https://api.github.com/users/jamesatha/followers", + "following_url": "https://api.github.com/users/jamesatha/following{/other_user}", + "gists_url": "https://api.github.com/users/jamesatha/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jamesatha/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jamesatha/subscriptions", + "organizations_url": "https://api.github.com/users/jamesatha/orgs", + "repos_url": "https://api.github.com/users/jamesatha/repos", + "events_url": "https://api.github.com/users/jamesatha/events{/privacy}", + "received_events_url": "https://api.github.com/users/jamesatha/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 1, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 6, + "d": 0, + "c": 1 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "itepikin-smartling", + "id": 26928776, + "node_id": "MDQ6VXNlcjI2OTI4Nzc2", + "avatar_url": "https://avatars3.githubusercontent.com/u/26928776?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/itepikin-smartling", + "html_url": "https://github.com/itepikin-smartling", + "followers_url": "https://api.github.com/users/itepikin-smartling/followers", + "following_url": "https://api.github.com/users/itepikin-smartling/following{/other_user}", + "gists_url": "https://api.github.com/users/itepikin-smartling/gists{/gist_id}", + "starred_url": "https://api.github.com/users/itepikin-smartling/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/itepikin-smartling/subscriptions", + "organizations_url": "https://api.github.com/users/itepikin-smartling/orgs", + "repos_url": "https://api.github.com/users/itepikin-smartling/repos", + "events_url": "https://api.github.com/users/itepikin-smartling/events{/privacy}", + "received_events_url": "https://api.github.com/users/itepikin-smartling/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 1, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 18, + "d": 0, + "c": 1 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "ingwarsw", + "id": 5390156, + "node_id": "MDQ6VXNlcjUzOTAxNTY=", + "avatar_url": "https://avatars2.githubusercontent.com/u/5390156?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ingwarsw", + "html_url": "https://github.com/ingwarsw", + "followers_url": "https://api.github.com/users/ingwarsw/followers", + "following_url": "https://api.github.com/users/ingwarsw/following{/other_user}", + "gists_url": "https://api.github.com/users/ingwarsw/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ingwarsw/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ingwarsw/subscriptions", + "organizations_url": "https://api.github.com/users/ingwarsw/orgs", + "repos_url": "https://api.github.com/users/ingwarsw/repos", + "events_url": "https://api.github.com/users/ingwarsw/events{/privacy}", + "received_events_url": "https://api.github.com/users/ingwarsw/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 1, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 2, + "d": 0, + "c": 1 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "ggrell", + "id": 107712, + "node_id": "MDQ6VXNlcjEwNzcxMg==", + "avatar_url": "https://avatars3.githubusercontent.com/u/107712?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ggrell", + "html_url": "https://github.com/ggrell", + "followers_url": "https://api.github.com/users/ggrell/followers", + "following_url": "https://api.github.com/users/ggrell/following{/other_user}", + "gists_url": "https://api.github.com/users/ggrell/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ggrell/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ggrell/subscriptions", + "organizations_url": "https://api.github.com/users/ggrell/orgs", + "repos_url": "https://api.github.com/users/ggrell/repos", + "events_url": "https://api.github.com/users/ggrell/events{/privacy}", + "received_events_url": "https://api.github.com/users/ggrell/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 1, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 135, + "d": 0, + "c": 1 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "fanfansama", + "id": 5654868, + "node_id": "MDQ6VXNlcjU2NTQ4Njg=", + "avatar_url": "https://avatars0.githubusercontent.com/u/5654868?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/fanfansama", + "html_url": "https://github.com/fanfansama", + "followers_url": "https://api.github.com/users/fanfansama/followers", + "following_url": "https://api.github.com/users/fanfansama/following{/other_user}", + "gists_url": "https://api.github.com/users/fanfansama/gists{/gist_id}", + "starred_url": "https://api.github.com/users/fanfansama/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/fanfansama/subscriptions", + "organizations_url": "https://api.github.com/users/fanfansama/orgs", + "repos_url": "https://api.github.com/users/fanfansama/repos", + "events_url": "https://api.github.com/users/fanfansama/events{/privacy}", + "received_events_url": "https://api.github.com/users/fanfansama/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 1, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 71, + "d": 3, + "c": 1 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "evenh", + "id": 2701536, + "node_id": "MDQ6VXNlcjI3MDE1MzY=", + "avatar_url": "https://avatars0.githubusercontent.com/u/2701536?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/evenh", + "html_url": "https://github.com/evenh", + "followers_url": "https://api.github.com/users/evenh/followers", + "following_url": "https://api.github.com/users/evenh/following{/other_user}", + "gists_url": "https://api.github.com/users/evenh/gists{/gist_id}", + "starred_url": "https://api.github.com/users/evenh/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/evenh/subscriptions", + "organizations_url": "https://api.github.com/users/evenh/orgs", + "repos_url": "https://api.github.com/users/evenh/repos", + "events_url": "https://api.github.com/users/evenh/events{/privacy}", + "received_events_url": "https://api.github.com/users/evenh/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 1, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 557, + "d": 8, + "c": 1 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "evanchooly", + "id": 195021, + "node_id": "MDQ6VXNlcjE5NTAyMQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/195021?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/evanchooly", + "html_url": "https://github.com/evanchooly", + "followers_url": "https://api.github.com/users/evanchooly/followers", + "following_url": "https://api.github.com/users/evanchooly/following{/other_user}", + "gists_url": "https://api.github.com/users/evanchooly/gists{/gist_id}", + "starred_url": "https://api.github.com/users/evanchooly/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/evanchooly/subscriptions", + "organizations_url": "https://api.github.com/users/evanchooly/orgs", + "repos_url": "https://api.github.com/users/evanchooly/repos", + "events_url": "https://api.github.com/users/evanchooly/events{/privacy}", + "received_events_url": "https://api.github.com/users/evanchooly/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 1, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 24, + "d": 1, + "c": 1 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "endeavor85", + "id": 1729092, + "node_id": "MDQ6VXNlcjE3MjkwOTI=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1729092?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/endeavor85", + "html_url": "https://github.com/endeavor85", + "followers_url": "https://api.github.com/users/endeavor85/followers", + "following_url": "https://api.github.com/users/endeavor85/following{/other_user}", + "gists_url": "https://api.github.com/users/endeavor85/gists{/gist_id}", + "starred_url": "https://api.github.com/users/endeavor85/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/endeavor85/subscriptions", + "organizations_url": "https://api.github.com/users/endeavor85/orgs", + "repos_url": "https://api.github.com/users/endeavor85/repos", + "events_url": "https://api.github.com/users/endeavor85/events{/privacy}", + "received_events_url": "https://api.github.com/users/endeavor85/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 1, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 580, + "d": 0, + "c": 1 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "dedickinson", + "id": 702835, + "node_id": "MDQ6VXNlcjcwMjgzNQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/702835?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dedickinson", + "html_url": "https://github.com/dedickinson", + "followers_url": "https://api.github.com/users/dedickinson/followers", + "following_url": "https://api.github.com/users/dedickinson/following{/other_user}", + "gists_url": "https://api.github.com/users/dedickinson/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dedickinson/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dedickinson/subscriptions", + "organizations_url": "https://api.github.com/users/dedickinson/orgs", + "repos_url": "https://api.github.com/users/dedickinson/repos", + "events_url": "https://api.github.com/users/dedickinson/events{/privacy}", + "received_events_url": "https://api.github.com/users/dedickinson/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 1, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 172, + "d": 0, + "c": 1 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "ddtxra", + "id": 3664331, + "node_id": "MDQ6VXNlcjM2NjQzMzE=", + "avatar_url": "https://avatars2.githubusercontent.com/u/3664331?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ddtxra", + "html_url": "https://github.com/ddtxra", + "followers_url": "https://api.github.com/users/ddtxra/followers", + "following_url": "https://api.github.com/users/ddtxra/following{/other_user}", + "gists_url": "https://api.github.com/users/ddtxra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ddtxra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ddtxra/subscriptions", + "organizations_url": "https://api.github.com/users/ddtxra/orgs", + "repos_url": "https://api.github.com/users/ddtxra/repos", + "events_url": "https://api.github.com/users/ddtxra/events{/privacy}", + "received_events_url": "https://api.github.com/users/ddtxra/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 1, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 9, + "d": 1, + "c": 1 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "dblevins", + "id": 94926, + "node_id": "MDQ6VXNlcjk0OTI2", + "avatar_url": "https://avatars3.githubusercontent.com/u/94926?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dblevins", + "html_url": "https://github.com/dblevins", + "followers_url": "https://api.github.com/users/dblevins/followers", + "following_url": "https://api.github.com/users/dblevins/following{/other_user}", + "gists_url": "https://api.github.com/users/dblevins/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dblevins/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dblevins/subscriptions", + "organizations_url": "https://api.github.com/users/dblevins/orgs", + "repos_url": "https://api.github.com/users/dblevins/repos", + "events_url": "https://api.github.com/users/dblevins/events{/privacy}", + "received_events_url": "https://api.github.com/users/dblevins/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 1, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 4, + "d": 4, + "c": 1 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "davidxia", + "id": 480621, + "node_id": "MDQ6VXNlcjQ4MDYyMQ==", + "avatar_url": "https://avatars0.githubusercontent.com/u/480621?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/davidxia", + "html_url": "https://github.com/davidxia", + "followers_url": "https://api.github.com/users/davidxia/followers", + "following_url": "https://api.github.com/users/davidxia/following{/other_user}", + "gists_url": "https://api.github.com/users/davidxia/gists{/gist_id}", + "starred_url": "https://api.github.com/users/davidxia/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/davidxia/subscriptions", + "organizations_url": "https://api.github.com/users/davidxia/orgs", + "repos_url": "https://api.github.com/users/davidxia/repos", + "events_url": "https://api.github.com/users/davidxia/events{/privacy}", + "received_events_url": "https://api.github.com/users/davidxia/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 1, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 251, + "d": 54, + "c": 1 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "chrisrhut", + "id": 1924951, + "node_id": "MDQ6VXNlcjE5MjQ5NTE=", + "avatar_url": "https://avatars1.githubusercontent.com/u/1924951?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/chrisrhut", + "html_url": "https://github.com/chrisrhut", + "followers_url": "https://api.github.com/users/chrisrhut/followers", + "following_url": "https://api.github.com/users/chrisrhut/following{/other_user}", + "gists_url": "https://api.github.com/users/chrisrhut/gists{/gist_id}", + "starred_url": "https://api.github.com/users/chrisrhut/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/chrisrhut/subscriptions", + "organizations_url": "https://api.github.com/users/chrisrhut/orgs", + "repos_url": "https://api.github.com/users/chrisrhut/repos", + "events_url": "https://api.github.com/users/chrisrhut/events{/privacy}", + "received_events_url": "https://api.github.com/users/chrisrhut/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 1, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 1, + "d": 1, + "c": 1 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "blacelle", + "id": 2117911, + "node_id": "MDQ6VXNlcjIxMTc5MTE=", + "avatar_url": "https://avatars0.githubusercontent.com/u/2117911?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/blacelle", + "html_url": "https://github.com/blacelle", + "followers_url": "https://api.github.com/users/blacelle/followers", + "following_url": "https://api.github.com/users/blacelle/following{/other_user}", + "gists_url": "https://api.github.com/users/blacelle/gists{/gist_id}", + "starred_url": "https://api.github.com/users/blacelle/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/blacelle/subscriptions", + "organizations_url": "https://api.github.com/users/blacelle/orgs", + "repos_url": "https://api.github.com/users/blacelle/repos", + "events_url": "https://api.github.com/users/blacelle/events{/privacy}", + "received_events_url": "https://api.github.com/users/blacelle/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 1, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 12, + "d": 15, + "c": 1 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "bjoernhaeuser", + "id": 1449155, + "node_id": "MDQ6VXNlcjE0NDkxNTU=", + "avatar_url": "https://avatars1.githubusercontent.com/u/1449155?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bjoernhaeuser", + "html_url": "https://github.com/bjoernhaeuser", + "followers_url": "https://api.github.com/users/bjoernhaeuser/followers", + "following_url": "https://api.github.com/users/bjoernhaeuser/following{/other_user}", + "gists_url": "https://api.github.com/users/bjoernhaeuser/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bjoernhaeuser/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bjoernhaeuser/subscriptions", + "organizations_url": "https://api.github.com/users/bjoernhaeuser/orgs", + "repos_url": "https://api.github.com/users/bjoernhaeuser/repos", + "events_url": "https://api.github.com/users/bjoernhaeuser/events{/privacy}", + "received_events_url": "https://api.github.com/users/bjoernhaeuser/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 1, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 4, + "d": 0, + "c": 1 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "bernd", + "id": 461, + "node_id": "MDQ6VXNlcjQ2MQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/461?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bernd", + "html_url": "https://github.com/bernd", + "followers_url": "https://api.github.com/users/bernd/followers", + "following_url": "https://api.github.com/users/bernd/following{/other_user}", + "gists_url": "https://api.github.com/users/bernd/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bernd/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bernd/subscriptions", + "organizations_url": "https://api.github.com/users/bernd/orgs", + "repos_url": "https://api.github.com/users/bernd/repos", + "events_url": "https://api.github.com/users/bernd/events{/privacy}", + "received_events_url": "https://api.github.com/users/bernd/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 1, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 1, + "d": 1, + "c": 1 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "benbek", + "id": 6597271, + "node_id": "MDQ6VXNlcjY1OTcyNzE=", + "avatar_url": "https://avatars3.githubusercontent.com/u/6597271?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/benbek", + "html_url": "https://github.com/benbek", + "followers_url": "https://api.github.com/users/benbek/followers", + "following_url": "https://api.github.com/users/benbek/following{/other_user}", + "gists_url": "https://api.github.com/users/benbek/gists{/gist_id}", + "starred_url": "https://api.github.com/users/benbek/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/benbek/subscriptions", + "organizations_url": "https://api.github.com/users/benbek/orgs", + "repos_url": "https://api.github.com/users/benbek/repos", + "events_url": "https://api.github.com/users/benbek/events{/privacy}", + "received_events_url": "https://api.github.com/users/benbek/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 1, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 8, + "d": 0, + "c": 1 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "batmat", + "id": 223853, + "node_id": "MDQ6VXNlcjIyMzg1Mw==", + "avatar_url": "https://avatars3.githubusercontent.com/u/223853?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/batmat", + "html_url": "https://github.com/batmat", + "followers_url": "https://api.github.com/users/batmat/followers", + "following_url": "https://api.github.com/users/batmat/following{/other_user}", + "gists_url": "https://api.github.com/users/batmat/gists{/gist_id}", + "starred_url": "https://api.github.com/users/batmat/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/batmat/subscriptions", + "organizations_url": "https://api.github.com/users/batmat/orgs", + "repos_url": "https://api.github.com/users/batmat/repos", + "events_url": "https://api.github.com/users/batmat/events{/privacy}", + "received_events_url": "https://api.github.com/users/batmat/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 1, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 1, + "d": 1, + "c": 1 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "arykov", + "id": 610108, + "node_id": "MDQ6VXNlcjYxMDEwOA==", + "avatar_url": "https://avatars2.githubusercontent.com/u/610108?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/arykov", + "html_url": "https://github.com/arykov", + "followers_url": "https://api.github.com/users/arykov/followers", + "following_url": "https://api.github.com/users/arykov/following{/other_user}", + "gists_url": "https://api.github.com/users/arykov/gists{/gist_id}", + "starred_url": "https://api.github.com/users/arykov/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/arykov/subscriptions", + "organizations_url": "https://api.github.com/users/arykov/orgs", + "repos_url": "https://api.github.com/users/arykov/repos", + "events_url": "https://api.github.com/users/arykov/events{/privacy}", + "received_events_url": "https://api.github.com/users/arykov/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 1, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 27, + "d": 1, + "c": 1 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "anatolyD", + "id": 3054650, + "node_id": "MDQ6VXNlcjMwNTQ2NTA=", + "avatar_url": "https://avatars2.githubusercontent.com/u/3054650?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/anatolyD", + "html_url": "https://github.com/anatolyD", + "followers_url": "https://api.github.com/users/anatolyD/followers", + "following_url": "https://api.github.com/users/anatolyD/following{/other_user}", + "gists_url": "https://api.github.com/users/anatolyD/gists{/gist_id}", + "starred_url": "https://api.github.com/users/anatolyD/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/anatolyD/subscriptions", + "organizations_url": "https://api.github.com/users/anatolyD/orgs", + "repos_url": "https://api.github.com/users/anatolyD/repos", + "events_url": "https://api.github.com/users/anatolyD/events{/privacy}", + "received_events_url": "https://api.github.com/users/anatolyD/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 1, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 24, + "d": 2, + "c": 1 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "amberovsky", + "id": 477339, + "node_id": "MDQ6VXNlcjQ3NzMzOQ==", + "avatar_url": "https://avatars3.githubusercontent.com/u/477339?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/amberovsky", + "html_url": "https://github.com/amberovsky", + "followers_url": "https://api.github.com/users/amberovsky/followers", + "following_url": "https://api.github.com/users/amberovsky/following{/other_user}", + "gists_url": "https://api.github.com/users/amberovsky/gists{/gist_id}", + "starred_url": "https://api.github.com/users/amberovsky/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/amberovsky/subscriptions", + "organizations_url": "https://api.github.com/users/amberovsky/orgs", + "repos_url": "https://api.github.com/users/amberovsky/repos", + "events_url": "https://api.github.com/users/amberovsky/events{/privacy}", + "received_events_url": "https://api.github.com/users/amberovsky/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 1, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 10, + "d": 1, + "c": 1 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "agubanov", + "id": 23099816, + "node_id": "MDQ6VXNlcjIzMDk5ODE2", + "avatar_url": "https://avatars0.githubusercontent.com/u/23099816?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/agubanov", + "html_url": "https://github.com/agubanov", + "followers_url": "https://api.github.com/users/agubanov/followers", + "following_url": "https://api.github.com/users/agubanov/following{/other_user}", + "gists_url": "https://api.github.com/users/agubanov/gists{/gist_id}", + "starred_url": "https://api.github.com/users/agubanov/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/agubanov/subscriptions", + "organizations_url": "https://api.github.com/users/agubanov/orgs", + "repos_url": "https://api.github.com/users/agubanov/repos", + "events_url": "https://api.github.com/users/agubanov/events{/privacy}", + "received_events_url": "https://api.github.com/users/agubanov/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 1, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 129, + "d": 1, + "c": 1 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "acollign", + "id": 206320, + "node_id": "MDQ6VXNlcjIwNjMyMA==", + "avatar_url": "https://avatars3.githubusercontent.com/u/206320?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/acollign", + "html_url": "https://github.com/acollign", + "followers_url": "https://api.github.com/users/acollign/followers", + "following_url": "https://api.github.com/users/acollign/following{/other_user}", + "gists_url": "https://api.github.com/users/acollign/gists{/gist_id}", + "starred_url": "https://api.github.com/users/acollign/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/acollign/subscriptions", + "organizations_url": "https://api.github.com/users/acollign/orgs", + "repos_url": "https://api.github.com/users/acollign/repos", + "events_url": "https://api.github.com/users/acollign/events{/privacy}", + "received_events_url": "https://api.github.com/users/acollign/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 1, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 13, + "d": 0, + "c": 1 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "PauloMigAlmeida", + "id": 1011868, + "node_id": "MDQ6VXNlcjEwMTE4Njg=", + "avatar_url": "https://avatars1.githubusercontent.com/u/1011868?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PauloMigAlmeida", + "html_url": "https://github.com/PauloMigAlmeida", + "followers_url": "https://api.github.com/users/PauloMigAlmeida/followers", + "following_url": "https://api.github.com/users/PauloMigAlmeida/following{/other_user}", + "gists_url": "https://api.github.com/users/PauloMigAlmeida/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PauloMigAlmeida/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PauloMigAlmeida/subscriptions", + "organizations_url": "https://api.github.com/users/PauloMigAlmeida/orgs", + "repos_url": "https://api.github.com/users/PauloMigAlmeida/repos", + "events_url": "https://api.github.com/users/PauloMigAlmeida/events{/privacy}", + "received_events_url": "https://api.github.com/users/PauloMigAlmeida/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 1, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 1, + "d": 1, + "c": 1 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "DavidTanner", + "id": 368889, + "node_id": "MDQ6VXNlcjM2ODg4OQ==", + "avatar_url": "https://avatars0.githubusercontent.com/u/368889?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/DavidTanner", + "html_url": "https://github.com/DavidTanner", + "followers_url": "https://api.github.com/users/DavidTanner/followers", + "following_url": "https://api.github.com/users/DavidTanner/following{/other_user}", + "gists_url": "https://api.github.com/users/DavidTanner/gists{/gist_id}", + "starred_url": "https://api.github.com/users/DavidTanner/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/DavidTanner/subscriptions", + "organizations_url": "https://api.github.com/users/DavidTanner/orgs", + "repos_url": "https://api.github.com/users/DavidTanner/repos", + "events_url": "https://api.github.com/users/DavidTanner/events{/privacy}", + "received_events_url": "https://api.github.com/users/DavidTanner/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 2, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 42, + "d": 0, + "c": 1 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 7, + "d": 0, + "c": 1 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "twcurrie", + "id": 6046907, + "node_id": "MDQ6VXNlcjYwNDY5MDc=", + "avatar_url": "https://avatars0.githubusercontent.com/u/6046907?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/twcurrie", + "html_url": "https://github.com/twcurrie", + "followers_url": "https://api.github.com/users/twcurrie/followers", + "following_url": "https://api.github.com/users/twcurrie/following{/other_user}", + "gists_url": "https://api.github.com/users/twcurrie/gists{/gist_id}", + "starred_url": "https://api.github.com/users/twcurrie/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/twcurrie/subscriptions", + "organizations_url": "https://api.github.com/users/twcurrie/orgs", + "repos_url": "https://api.github.com/users/twcurrie/repos", + "events_url": "https://api.github.com/users/twcurrie/events{/privacy}", + "received_events_url": "https://api.github.com/users/twcurrie/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 2, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 206, + "d": 27, + "c": 2 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "suryagaddipati", + "id": 64078, + "node_id": "MDQ6VXNlcjY0MDc4", + "avatar_url": "https://avatars3.githubusercontent.com/u/64078?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/suryagaddipati", + "html_url": "https://github.com/suryagaddipati", + "followers_url": "https://api.github.com/users/suryagaddipati/followers", + "following_url": "https://api.github.com/users/suryagaddipati/following{/other_user}", + "gists_url": "https://api.github.com/users/suryagaddipati/gists{/gist_id}", + "starred_url": "https://api.github.com/users/suryagaddipati/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/suryagaddipati/subscriptions", + "organizations_url": "https://api.github.com/users/suryagaddipati/orgs", + "repos_url": "https://api.github.com/users/suryagaddipati/repos", + "events_url": "https://api.github.com/users/suryagaddipati/events{/privacy}", + "received_events_url": "https://api.github.com/users/suryagaddipati/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 2, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 8, + "d": 4, + "c": 2 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "spiffxp", + "id": 49258, + "node_id": "MDQ6VXNlcjQ5MjU4", + "avatar_url": "https://avatars2.githubusercontent.com/u/49258?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/spiffxp", + "html_url": "https://github.com/spiffxp", + "followers_url": "https://api.github.com/users/spiffxp/followers", + "following_url": "https://api.github.com/users/spiffxp/following{/other_user}", + "gists_url": "https://api.github.com/users/spiffxp/gists{/gist_id}", + "starred_url": "https://api.github.com/users/spiffxp/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/spiffxp/subscriptions", + "organizations_url": "https://api.github.com/users/spiffxp/orgs", + "repos_url": "https://api.github.com/users/spiffxp/repos", + "events_url": "https://api.github.com/users/spiffxp/events{/privacy}", + "received_events_url": "https://api.github.com/users/spiffxp/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 2, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 35, + "d": 16, + "c": 2 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "pescuma", + "id": 207971, + "node_id": "MDQ6VXNlcjIwNzk3MQ==", + "avatar_url": "https://avatars0.githubusercontent.com/u/207971?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/pescuma", + "html_url": "https://github.com/pescuma", + "followers_url": "https://api.github.com/users/pescuma/followers", + "following_url": "https://api.github.com/users/pescuma/following{/other_user}", + "gists_url": "https://api.github.com/users/pescuma/gists{/gist_id}", + "starred_url": "https://api.github.com/users/pescuma/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/pescuma/subscriptions", + "organizations_url": "https://api.github.com/users/pescuma/orgs", + "repos_url": "https://api.github.com/users/pescuma/repos", + "events_url": "https://api.github.com/users/pescuma/events{/privacy}", + "received_events_url": "https://api.github.com/users/pescuma/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 2, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 13, + "d": 8, + "c": 2 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "onoguera-ob", + "id": 9931799, + "node_id": "MDQ6VXNlcjk5MzE3OTk=", + "avatar_url": "https://avatars0.githubusercontent.com/u/9931799?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/onoguera-ob", + "html_url": "https://github.com/onoguera-ob", + "followers_url": "https://api.github.com/users/onoguera-ob/followers", + "following_url": "https://api.github.com/users/onoguera-ob/following{/other_user}", + "gists_url": "https://api.github.com/users/onoguera-ob/gists{/gist_id}", + "starred_url": "https://api.github.com/users/onoguera-ob/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/onoguera-ob/subscriptions", + "organizations_url": "https://api.github.com/users/onoguera-ob/orgs", + "repos_url": "https://api.github.com/users/onoguera-ob/repos", + "events_url": "https://api.github.com/users/onoguera-ob/events{/privacy}", + "received_events_url": "https://api.github.com/users/onoguera-ob/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 2, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 84, + "d": 32, + "c": 2 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "ohtake", + "id": 1013655, + "node_id": "MDQ6VXNlcjEwMTM2NTU=", + "avatar_url": "https://avatars2.githubusercontent.com/u/1013655?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ohtake", + "html_url": "https://github.com/ohtake", + "followers_url": "https://api.github.com/users/ohtake/followers", + "following_url": "https://api.github.com/users/ohtake/following{/other_user}", + "gists_url": "https://api.github.com/users/ohtake/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ohtake/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ohtake/subscriptions", + "organizations_url": "https://api.github.com/users/ohtake/orgs", + "repos_url": "https://api.github.com/users/ohtake/repos", + "events_url": "https://api.github.com/users/ohtake/events{/privacy}", + "received_events_url": "https://api.github.com/users/ohtake/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 2, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 8, + "d": 1, + "c": 1 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 9, + "d": 0, + "c": 1 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "ndeloof", + "id": 132757, + "node_id": "MDQ6VXNlcjEzMjc1Nw==", + "avatar_url": "https://avatars0.githubusercontent.com/u/132757?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ndeloof", + "html_url": "https://github.com/ndeloof", + "followers_url": "https://api.github.com/users/ndeloof/followers", + "following_url": "https://api.github.com/users/ndeloof/following{/other_user}", + "gists_url": "https://api.github.com/users/ndeloof/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ndeloof/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ndeloof/subscriptions", + "organizations_url": "https://api.github.com/users/ndeloof/orgs", + "repos_url": "https://api.github.com/users/ndeloof/repos", + "events_url": "https://api.github.com/users/ndeloof/events{/privacy}", + "received_events_url": "https://api.github.com/users/ndeloof/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 2, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 131, + "d": 1, + "c": 1 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 26, + "d": 0, + "c": 1 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "mdeverdelhan", + "id": 856354, + "node_id": "MDQ6VXNlcjg1NjM1NA==", + "avatar_url": "https://avatars1.githubusercontent.com/u/856354?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mdeverdelhan", + "html_url": "https://github.com/mdeverdelhan", + "followers_url": "https://api.github.com/users/mdeverdelhan/followers", + "following_url": "https://api.github.com/users/mdeverdelhan/following{/other_user}", + "gists_url": "https://api.github.com/users/mdeverdelhan/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mdeverdelhan/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mdeverdelhan/subscriptions", + "organizations_url": "https://api.github.com/users/mdeverdelhan/orgs", + "repos_url": "https://api.github.com/users/mdeverdelhan/repos", + "events_url": "https://api.github.com/users/mdeverdelhan/events{/privacy}", + "received_events_url": "https://api.github.com/users/mdeverdelhan/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 2, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 231, + "d": 0, + "c": 2 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "mc1arke", + "id": 1250331, + "node_id": "MDQ6VXNlcjEyNTAzMzE=", + "avatar_url": "https://avatars2.githubusercontent.com/u/1250331?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mc1arke", + "html_url": "https://github.com/mc1arke", + "followers_url": "https://api.github.com/users/mc1arke/followers", + "following_url": "https://api.github.com/users/mc1arke/following{/other_user}", + "gists_url": "https://api.github.com/users/mc1arke/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mc1arke/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mc1arke/subscriptions", + "organizations_url": "https://api.github.com/users/mc1arke/orgs", + "repos_url": "https://api.github.com/users/mc1arke/repos", + "events_url": "https://api.github.com/users/mc1arke/events{/privacy}", + "received_events_url": "https://api.github.com/users/mc1arke/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 2, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 20, + "d": 1, + "c": 2 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "khoa-nd", + "id": 1620282, + "node_id": "MDQ6VXNlcjE2MjAyODI=", + "avatar_url": "https://avatars2.githubusercontent.com/u/1620282?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/khoa-nd", + "html_url": "https://github.com/khoa-nd", + "followers_url": "https://api.github.com/users/khoa-nd/followers", + "following_url": "https://api.github.com/users/khoa-nd/following{/other_user}", + "gists_url": "https://api.github.com/users/khoa-nd/gists{/gist_id}", + "starred_url": "https://api.github.com/users/khoa-nd/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/khoa-nd/subscriptions", + "organizations_url": "https://api.github.com/users/khoa-nd/orgs", + "repos_url": "https://api.github.com/users/khoa-nd/repos", + "events_url": "https://api.github.com/users/khoa-nd/events{/privacy}", + "received_events_url": "https://api.github.com/users/khoa-nd/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 2, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 38, + "d": 1, + "c": 1 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 4, + "c": 1 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "greggian", + "id": 107471, + "node_id": "MDQ6VXNlcjEwNzQ3MQ==", + "avatar_url": "https://avatars3.githubusercontent.com/u/107471?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/greggian", + "html_url": "https://github.com/greggian", + "followers_url": "https://api.github.com/users/greggian/followers", + "following_url": "https://api.github.com/users/greggian/following{/other_user}", + "gists_url": "https://api.github.com/users/greggian/gists{/gist_id}", + "starred_url": "https://api.github.com/users/greggian/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/greggian/subscriptions", + "organizations_url": "https://api.github.com/users/greggian/orgs", + "repos_url": "https://api.github.com/users/greggian/repos", + "events_url": "https://api.github.com/users/greggian/events{/privacy}", + "received_events_url": "https://api.github.com/users/greggian/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 2, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 5, + "d": 1, + "c": 2 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "dorian808080", + "id": 9301649, + "node_id": "MDQ6VXNlcjkzMDE2NDk=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9301649?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dorian808080", + "html_url": "https://github.com/dorian808080", + "followers_url": "https://api.github.com/users/dorian808080/followers", + "following_url": "https://api.github.com/users/dorian808080/following{/other_user}", + "gists_url": "https://api.github.com/users/dorian808080/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dorian808080/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dorian808080/subscriptions", + "organizations_url": "https://api.github.com/users/dorian808080/orgs", + "repos_url": "https://api.github.com/users/dorian808080/repos", + "events_url": "https://api.github.com/users/dorian808080/events{/privacy}", + "received_events_url": "https://api.github.com/users/dorian808080/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 2, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 27, + "d": 3, + "c": 2 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "apemberton", + "id": 86439, + "node_id": "MDQ6VXNlcjg2NDM5", + "avatar_url": "https://avatars1.githubusercontent.com/u/86439?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/apemberton", + "html_url": "https://github.com/apemberton", + "followers_url": "https://api.github.com/users/apemberton/followers", + "following_url": "https://api.github.com/users/apemberton/following{/other_user}", + "gists_url": "https://api.github.com/users/apemberton/gists{/gist_id}", + "starred_url": "https://api.github.com/users/apemberton/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/apemberton/subscriptions", + "organizations_url": "https://api.github.com/users/apemberton/orgs", + "repos_url": "https://api.github.com/users/apemberton/repos", + "events_url": "https://api.github.com/users/apemberton/events{/privacy}", + "received_events_url": "https://api.github.com/users/apemberton/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 2, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 19, + "d": 19, + "c": 2 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "aburmeis", + "id": 5594071, + "node_id": "MDQ6VXNlcjU1OTQwNzE=", + "avatar_url": "https://avatars0.githubusercontent.com/u/5594071?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/aburmeis", + "html_url": "https://github.com/aburmeis", + "followers_url": "https://api.github.com/users/aburmeis/followers", + "following_url": "https://api.github.com/users/aburmeis/following{/other_user}", + "gists_url": "https://api.github.com/users/aburmeis/gists{/gist_id}", + "starred_url": "https://api.github.com/users/aburmeis/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/aburmeis/subscriptions", + "organizations_url": "https://api.github.com/users/aburmeis/orgs", + "repos_url": "https://api.github.com/users/aburmeis/repos", + "events_url": "https://api.github.com/users/aburmeis/events{/privacy}", + "received_events_url": "https://api.github.com/users/aburmeis/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 3, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 1, + "d": 1, + "c": 1 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 3, + "d": 31, + "c": 2 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "sebkur", + "id": 1633488, + "node_id": "MDQ6VXNlcjE2MzM0ODg=", + "avatar_url": "https://avatars1.githubusercontent.com/u/1633488?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/sebkur", + "html_url": "https://github.com/sebkur", + "followers_url": "https://api.github.com/users/sebkur/followers", + "following_url": "https://api.github.com/users/sebkur/following{/other_user}", + "gists_url": "https://api.github.com/users/sebkur/gists{/gist_id}", + "starred_url": "https://api.github.com/users/sebkur/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/sebkur/subscriptions", + "organizations_url": "https://api.github.com/users/sebkur/orgs", + "repos_url": "https://api.github.com/users/sebkur/repos", + "events_url": "https://api.github.com/users/sebkur/events{/privacy}", + "received_events_url": "https://api.github.com/users/sebkur/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 3, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 51, + "d": 4, + "c": 2 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 1, + "c": 1 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "scotty-g", + "id": 7861050, + "node_id": "MDQ6VXNlcjc4NjEwNTA=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7861050?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/scotty-g", + "html_url": "https://github.com/scotty-g", + "followers_url": "https://api.github.com/users/scotty-g/followers", + "following_url": "https://api.github.com/users/scotty-g/following{/other_user}", + "gists_url": "https://api.github.com/users/scotty-g/gists{/gist_id}", + "starred_url": "https://api.github.com/users/scotty-g/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/scotty-g/subscriptions", + "organizations_url": "https://api.github.com/users/scotty-g/orgs", + "repos_url": "https://api.github.com/users/scotty-g/repos", + "events_url": "https://api.github.com/users/scotty-g/events{/privacy}", + "received_events_url": "https://api.github.com/users/scotty-g/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 3, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 27, + "d": 1, + "c": 2 + }, + { + "w": 1437264000, + "a": 210, + "d": 54, + "c": 1 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "oleg-nenashev", + "id": 3000480, + "node_id": "MDQ6VXNlcjMwMDA0ODA=", + "avatar_url": "https://avatars0.githubusercontent.com/u/3000480?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/oleg-nenashev", + "html_url": "https://github.com/oleg-nenashev", + "followers_url": "https://api.github.com/users/oleg-nenashev/followers", + "following_url": "https://api.github.com/users/oleg-nenashev/following{/other_user}", + "gists_url": "https://api.github.com/users/oleg-nenashev/gists{/gist_id}", + "starred_url": "https://api.github.com/users/oleg-nenashev/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/oleg-nenashev/subscriptions", + "organizations_url": "https://api.github.com/users/oleg-nenashev/orgs", + "repos_url": "https://api.github.com/users/oleg-nenashev/repos", + "events_url": "https://api.github.com/users/oleg-nenashev/events{/privacy}", + "received_events_url": "https://api.github.com/users/oleg-nenashev/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 3, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 83, + "d": 43, + "c": 1 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 34, + "d": 2, + "c": 1 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 23, + "d": 47, + "c": 1 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "mmitche", + "id": 8725170, + "node_id": "MDQ6VXNlcjg3MjUxNzA=", + "avatar_url": "https://avatars1.githubusercontent.com/u/8725170?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mmitche", + "html_url": "https://github.com/mmitche", + "followers_url": "https://api.github.com/users/mmitche/followers", + "following_url": "https://api.github.com/users/mmitche/following{/other_user}", + "gists_url": "https://api.github.com/users/mmitche/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mmitche/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mmitche/subscriptions", + "organizations_url": "https://api.github.com/users/mmitche/orgs", + "repos_url": "https://api.github.com/users/mmitche/repos", + "events_url": "https://api.github.com/users/mmitche/events{/privacy}", + "received_events_url": "https://api.github.com/users/mmitche/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 3, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 313, + "d": 67, + "c": 1 + }, + { + "w": 1430006400, + "a": 36, + "d": 3, + "c": 1 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 23, + "d": 2, + "c": 1 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "henryju", + "id": 281596, + "node_id": "MDQ6VXNlcjI4MTU5Ng==", + "avatar_url": "https://avatars3.githubusercontent.com/u/281596?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/henryju", + "html_url": "https://github.com/henryju", + "followers_url": "https://api.github.com/users/henryju/followers", + "following_url": "https://api.github.com/users/henryju/following{/other_user}", + "gists_url": "https://api.github.com/users/henryju/gists{/gist_id}", + "starred_url": "https://api.github.com/users/henryju/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/henryju/subscriptions", + "organizations_url": "https://api.github.com/users/henryju/orgs", + "repos_url": "https://api.github.com/users/henryju/repos", + "events_url": "https://api.github.com/users/henryju/events{/privacy}", + "received_events_url": "https://api.github.com/users/henryju/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 3, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 76, + "d": 7, + "c": 3 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "dlovera", + "id": 4728774, + "node_id": "MDQ6VXNlcjQ3Mjg3NzQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/4728774?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dlovera", + "html_url": "https://github.com/dlovera", + "followers_url": "https://api.github.com/users/dlovera/followers", + "following_url": "https://api.github.com/users/dlovera/following{/other_user}", + "gists_url": "https://api.github.com/users/dlovera/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dlovera/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dlovera/subscriptions", + "organizations_url": "https://api.github.com/users/dlovera/orgs", + "repos_url": "https://api.github.com/users/dlovera/repos", + "events_url": "https://api.github.com/users/dlovera/events{/privacy}", + "received_events_url": "https://api.github.com/users/dlovera/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 3, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 1, + "d": 1, + "c": 1 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 2, + "d": 1, + "c": 1 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 5, + "d": 5, + "c": 1 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "daniel-beck", + "id": 1831569, + "node_id": "MDQ6VXNlcjE4MzE1Njk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1831569?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/daniel-beck", + "html_url": "https://github.com/daniel-beck", + "followers_url": "https://api.github.com/users/daniel-beck/followers", + "following_url": "https://api.github.com/users/daniel-beck/following{/other_user}", + "gists_url": "https://api.github.com/users/daniel-beck/gists{/gist_id}", + "starred_url": "https://api.github.com/users/daniel-beck/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/daniel-beck/subscriptions", + "organizations_url": "https://api.github.com/users/daniel-beck/orgs", + "repos_url": "https://api.github.com/users/daniel-beck/repos", + "events_url": "https://api.github.com/users/daniel-beck/events{/privacy}", + "received_events_url": "https://api.github.com/users/daniel-beck/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 3, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 185, + "d": 20, + "c": 3 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "cyrille-leclerc", + "id": 459691, + "node_id": "MDQ6VXNlcjQ1OTY5MQ==", + "avatar_url": "https://avatars3.githubusercontent.com/u/459691?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyrille-leclerc", + "html_url": "https://github.com/cyrille-leclerc", + "followers_url": "https://api.github.com/users/cyrille-leclerc/followers", + "following_url": "https://api.github.com/users/cyrille-leclerc/following{/other_user}", + "gists_url": "https://api.github.com/users/cyrille-leclerc/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyrille-leclerc/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyrille-leclerc/subscriptions", + "organizations_url": "https://api.github.com/users/cyrille-leclerc/orgs", + "repos_url": "https://api.github.com/users/cyrille-leclerc/repos", + "events_url": "https://api.github.com/users/cyrille-leclerc/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyrille-leclerc/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 3, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 13, + "d": 7, + "c": 1 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 8, + "d": 3, + "c": 2 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "ashwanthkumar", + "id": 600279, + "node_id": "MDQ6VXNlcjYwMDI3OQ==", + "avatar_url": "https://avatars0.githubusercontent.com/u/600279?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ashwanthkumar", + "html_url": "https://github.com/ashwanthkumar", + "followers_url": "https://api.github.com/users/ashwanthkumar/followers", + "following_url": "https://api.github.com/users/ashwanthkumar/following{/other_user}", + "gists_url": "https://api.github.com/users/ashwanthkumar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ashwanthkumar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ashwanthkumar/subscriptions", + "organizations_url": "https://api.github.com/users/ashwanthkumar/orgs", + "repos_url": "https://api.github.com/users/ashwanthkumar/repos", + "events_url": "https://api.github.com/users/ashwanthkumar/events{/privacy}", + "received_events_url": "https://api.github.com/users/ashwanthkumar/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 3, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 464, + "d": 153, + "c": 3 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "adw1n", + "id": 8993001, + "node_id": "MDQ6VXNlcjg5OTMwMDE=", + "avatar_url": "https://avatars0.githubusercontent.com/u/8993001?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/adw1n", + "html_url": "https://github.com/adw1n", + "followers_url": "https://api.github.com/users/adw1n/followers", + "following_url": "https://api.github.com/users/adw1n/following{/other_user}", + "gists_url": "https://api.github.com/users/adw1n/gists{/gist_id}", + "starred_url": "https://api.github.com/users/adw1n/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/adw1n/subscriptions", + "organizations_url": "https://api.github.com/users/adw1n/orgs", + "repos_url": "https://api.github.com/users/adw1n/repos", + "events_url": "https://api.github.com/users/adw1n/events{/privacy}", + "received_events_url": "https://api.github.com/users/adw1n/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 3, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 1, + "d": 1, + "c": 1 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 1, + "d": 1, + "c": 1 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 70, + "d": 0, + "c": 1 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "Rechi", + "id": 5367567, + "node_id": "MDQ6VXNlcjUzNjc1Njc=", + "avatar_url": "https://avatars3.githubusercontent.com/u/5367567?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Rechi", + "html_url": "https://github.com/Rechi", + "followers_url": "https://api.github.com/users/Rechi/followers", + "following_url": "https://api.github.com/users/Rechi/following{/other_user}", + "gists_url": "https://api.github.com/users/Rechi/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Rechi/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Rechi/subscriptions", + "organizations_url": "https://api.github.com/users/Rechi/orgs", + "repos_url": "https://api.github.com/users/Rechi/repos", + "events_url": "https://api.github.com/users/Rechi/events{/privacy}", + "received_events_url": "https://api.github.com/users/Rechi/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 4, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 38, + "d": 40, + "c": 4 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "watsonian", + "id": 244, + "node_id": "MDQ6VXNlcjI0NA==", + "avatar_url": "https://avatars3.githubusercontent.com/u/244?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/watsonian", + "html_url": "https://github.com/watsonian", + "followers_url": "https://api.github.com/users/watsonian/followers", + "following_url": "https://api.github.com/users/watsonian/following{/other_user}", + "gists_url": "https://api.github.com/users/watsonian/gists{/gist_id}", + "starred_url": "https://api.github.com/users/watsonian/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/watsonian/subscriptions", + "organizations_url": "https://api.github.com/users/watsonian/orgs", + "repos_url": "https://api.github.com/users/watsonian/repos", + "events_url": "https://api.github.com/users/watsonian/events{/privacy}", + "received_events_url": "https://api.github.com/users/watsonian/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 4, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 29, + "d": 0, + "c": 1 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 7, + "d": 2, + "c": 1 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 14, + "d": 7, + "c": 2 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "marc-guenther", + "id": 393230, + "node_id": "MDQ6VXNlcjM5MzIzMA==", + "avatar_url": "https://avatars3.githubusercontent.com/u/393230?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/marc-guenther", + "html_url": "https://github.com/marc-guenther", + "followers_url": "https://api.github.com/users/marc-guenther/followers", + "following_url": "https://api.github.com/users/marc-guenther/following{/other_user}", + "gists_url": "https://api.github.com/users/marc-guenther/gists{/gist_id}", + "starred_url": "https://api.github.com/users/marc-guenther/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/marc-guenther/subscriptions", + "organizations_url": "https://api.github.com/users/marc-guenther/orgs", + "repos_url": "https://api.github.com/users/marc-guenther/repos", + "events_url": "https://api.github.com/users/marc-guenther/events{/privacy}", + "received_events_url": "https://api.github.com/users/marc-guenther/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 4, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 24, + "d": 8, + "c": 1 + }, + { + "w": 1434240000, + "a": 6, + "d": 4, + "c": 2 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 2, + "d": 1, + "c": 1 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "lanwen", + "id": 1964214, + "node_id": "MDQ6VXNlcjE5NjQyMTQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/1964214?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/lanwen", + "html_url": "https://github.com/lanwen", + "followers_url": "https://api.github.com/users/lanwen/followers", + "following_url": "https://api.github.com/users/lanwen/following{/other_user}", + "gists_url": "https://api.github.com/users/lanwen/gists{/gist_id}", + "starred_url": "https://api.github.com/users/lanwen/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/lanwen/subscriptions", + "organizations_url": "https://api.github.com/users/lanwen/orgs", + "repos_url": "https://api.github.com/users/lanwen/repos", + "events_url": "https://api.github.com/users/lanwen/events{/privacy}", + "received_events_url": "https://api.github.com/users/lanwen/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 4, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 37, + "d": 3, + "c": 4 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "kamontat", + "id": 14089557, + "node_id": "MDQ6VXNlcjE0MDg5NTU3", + "avatar_url": "https://avatars2.githubusercontent.com/u/14089557?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kamontat", + "html_url": "https://github.com/kamontat", + "followers_url": "https://api.github.com/users/kamontat/followers", + "following_url": "https://api.github.com/users/kamontat/following{/other_user}", + "gists_url": "https://api.github.com/users/kamontat/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kamontat/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kamontat/subscriptions", + "organizations_url": "https://api.github.com/users/kamontat/orgs", + "repos_url": "https://api.github.com/users/kamontat/repos", + "events_url": "https://api.github.com/users/kamontat/events{/privacy}", + "received_events_url": "https://api.github.com/users/kamontat/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 5, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 86, + "d": 38, + "c": 3 + }, + { + "w": 1512259200, + "a": 214, + "d": 129, + "c": 1 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 4, + "d": 0, + "c": 1 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "sns-seb", + "id": 11717580, + "node_id": "MDQ6VXNlcjExNzE3NTgw", + "avatar_url": "https://avatars2.githubusercontent.com/u/11717580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/sns-seb", + "html_url": "https://github.com/sns-seb", + "followers_url": "https://api.github.com/users/sns-seb/followers", + "following_url": "https://api.github.com/users/sns-seb/following{/other_user}", + "gists_url": "https://api.github.com/users/sns-seb/gists{/gist_id}", + "starred_url": "https://api.github.com/users/sns-seb/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/sns-seb/subscriptions", + "organizations_url": "https://api.github.com/users/sns-seb/orgs", + "repos_url": "https://api.github.com/users/sns-seb/repos", + "events_url": "https://api.github.com/users/sns-seb/events{/privacy}", + "received_events_url": "https://api.github.com/users/sns-seb/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 5, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 58, + "d": 6, + "c": 3 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 35, + "d": 2, + "c": 1 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 7, + "d": 2, + "c": 1 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "recena", + "id": 1021745, + "node_id": "MDQ6VXNlcjEwMjE3NDU=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1021745?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/recena", + "html_url": "https://github.com/recena", + "followers_url": "https://api.github.com/users/recena/followers", + "following_url": "https://api.github.com/users/recena/following{/other_user}", + "gists_url": "https://api.github.com/users/recena/gists{/gist_id}", + "starred_url": "https://api.github.com/users/recena/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/recena/subscriptions", + "organizations_url": "https://api.github.com/users/recena/orgs", + "repos_url": "https://api.github.com/users/recena/repos", + "events_url": "https://api.github.com/users/recena/events{/privacy}", + "received_events_url": "https://api.github.com/users/recena/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 5, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 445, + "d": 64, + "c": 2 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 122, + "d": 14, + "c": 3 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "jgangemi", + "id": 1831839, + "node_id": "MDQ6VXNlcjE4MzE4Mzk=", + "avatar_url": "https://avatars0.githubusercontent.com/u/1831839?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jgangemi", + "html_url": "https://github.com/jgangemi", + "followers_url": "https://api.github.com/users/jgangemi/followers", + "following_url": "https://api.github.com/users/jgangemi/following{/other_user}", + "gists_url": "https://api.github.com/users/jgangemi/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jgangemi/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jgangemi/subscriptions", + "organizations_url": "https://api.github.com/users/jgangemi/orgs", + "repos_url": "https://api.github.com/users/jgangemi/repos", + "events_url": "https://api.github.com/users/jgangemi/events{/privacy}", + "received_events_url": "https://api.github.com/users/jgangemi/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 6, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 84, + "d": 1, + "c": 3 + }, + { + "w": 1395532800, + "a": 3, + "d": 4, + "c": 1 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 49, + "d": 43, + "c": 1 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 2, + "d": 2, + "c": 1 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "vr100", + "id": 6443683, + "node_id": "MDQ6VXNlcjY0NDM2ODM=", + "avatar_url": "https://avatars2.githubusercontent.com/u/6443683?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vr100", + "html_url": "https://github.com/vr100", + "followers_url": "https://api.github.com/users/vr100/followers", + "following_url": "https://api.github.com/users/vr100/following{/other_user}", + "gists_url": "https://api.github.com/users/vr100/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vr100/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vr100/subscriptions", + "organizations_url": "https://api.github.com/users/vr100/orgs", + "repos_url": "https://api.github.com/users/vr100/repos", + "events_url": "https://api.github.com/users/vr100/events{/privacy}", + "received_events_url": "https://api.github.com/users/vr100/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 8, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 6, + "d": 1, + "c": 1 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 1, + "d": 2, + "c": 1 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 2, + "d": 2, + "c": 1 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 101, + "d": 9, + "c": 2 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 1, + "d": 4, + "c": 1 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 10, + "d": 0, + "c": 1 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 1, + "d": 0, + "c": 1 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "jglick", + "id": 154109, + "node_id": "MDQ6VXNlcjE1NDEwOQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/154109?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jglick", + "html_url": "https://github.com/jglick", + "followers_url": "https://api.github.com/users/jglick/followers", + "following_url": "https://api.github.com/users/jglick/following{/other_user}", + "gists_url": "https://api.github.com/users/jglick/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jglick/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jglick/subscriptions", + "organizations_url": "https://api.github.com/users/jglick/orgs", + "repos_url": "https://api.github.com/users/jglick/repos", + "events_url": "https://api.github.com/users/jglick/events{/privacy}", + "received_events_url": "https://api.github.com/users/jglick/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 9, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 1, + "d": 1, + "c": 1 + }, + { + "w": 1394323200, + "a": 39, + "d": 4, + "c": 3 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 8, + "d": 0, + "c": 1 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 7, + "d": 6, + "c": 1 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 43, + "d": 6, + "c": 2 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 16, + "d": 3, + "c": 1 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "rtyley", + "id": 52038, + "node_id": "MDQ6VXNlcjUyMDM4", + "avatar_url": "https://avatars3.githubusercontent.com/u/52038?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rtyley", + "html_url": "https://github.com/rtyley", + "followers_url": "https://api.github.com/users/rtyley/followers", + "following_url": "https://api.github.com/users/rtyley/following{/other_user}", + "gists_url": "https://api.github.com/users/rtyley/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rtyley/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rtyley/subscriptions", + "organizations_url": "https://api.github.com/users/rtyley/orgs", + "repos_url": "https://api.github.com/users/rtyley/repos", + "events_url": "https://api.github.com/users/rtyley/events{/privacy}", + "received_events_url": "https://api.github.com/users/rtyley/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 9, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 35, + "d": 3, + "c": 1 + }, + { + "w": 1310256000, + "a": 57, + "d": 3, + "c": 1 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 45, + "d": 28, + "c": 1 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 44, + "d": 21, + "c": 2 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 1, + "d": 1, + "c": 1 + }, + { + "w": 1411862400, + "a": 208, + "d": 12, + "c": 3 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "mocleiri", + "id": 250942, + "node_id": "MDQ6VXNlcjI1MDk0Mg==", + "avatar_url": "https://avatars0.githubusercontent.com/u/250942?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mocleiri", + "html_url": "https://github.com/mocleiri", + "followers_url": "https://api.github.com/users/mocleiri/followers", + "following_url": "https://api.github.com/users/mocleiri/following{/other_user}", + "gists_url": "https://api.github.com/users/mocleiri/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mocleiri/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mocleiri/subscriptions", + "organizations_url": "https://api.github.com/users/mocleiri/orgs", + "repos_url": "https://api.github.com/users/mocleiri/repos", + "events_url": "https://api.github.com/users/mocleiri/events{/privacy}", + "received_events_url": "https://api.github.com/users/mocleiri/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 9, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 13, + "d": 2, + "c": 1 + }, + { + "w": 1379808000, + "a": 13, + "d": 2, + "c": 2 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 158, + "d": 0, + "c": 1 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 34, + "d": 3, + "c": 1 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 22, + "d": 0, + "c": 1 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 13, + "d": 1, + "c": 1 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 67, + "d": 11, + "c": 1 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 29, + "d": 2, + "c": 1 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "lucamilanesio", + "id": 182893, + "node_id": "MDQ6VXNlcjE4Mjg5Mw==", + "avatar_url": "https://avatars3.githubusercontent.com/u/182893?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/lucamilanesio", + "html_url": "https://github.com/lucamilanesio", + "followers_url": "https://api.github.com/users/lucamilanesio/followers", + "following_url": "https://api.github.com/users/lucamilanesio/following{/other_user}", + "gists_url": "https://api.github.com/users/lucamilanesio/gists{/gist_id}", + "starred_url": "https://api.github.com/users/lucamilanesio/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/lucamilanesio/subscriptions", + "organizations_url": "https://api.github.com/users/lucamilanesio/orgs", + "repos_url": "https://api.github.com/users/lucamilanesio/repos", + "events_url": "https://api.github.com/users/lucamilanesio/events{/privacy}", + "received_events_url": "https://api.github.com/users/lucamilanesio/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 9, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 27, + "d": 16, + "c": 3 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 8, + "d": 0, + "c": 1 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 35, + "d": 12, + "c": 5 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "Shredder121", + "id": 4105066, + "node_id": "MDQ6VXNlcjQxMDUwNjY=", + "avatar_url": "https://avatars2.githubusercontent.com/u/4105066?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Shredder121", + "html_url": "https://github.com/Shredder121", + "followers_url": "https://api.github.com/users/Shredder121/followers", + "following_url": "https://api.github.com/users/Shredder121/following{/other_user}", + "gists_url": "https://api.github.com/users/Shredder121/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Shredder121/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Shredder121/subscriptions", + "organizations_url": "https://api.github.com/users/Shredder121/orgs", + "repos_url": "https://api.github.com/users/Shredder121/repos", + "events_url": "https://api.github.com/users/Shredder121/events{/privacy}", + "received_events_url": "https://api.github.com/users/Shredder121/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 12, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 136, + "d": 108, + "c": 7 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 10, + "d": 6, + "c": 5 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "johnou", + "id": 323497, + "node_id": "MDQ6VXNlcjMyMzQ5Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/323497?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/johnou", + "html_url": "https://github.com/johnou", + "followers_url": "https://api.github.com/users/johnou/followers", + "following_url": "https://api.github.com/users/johnou/following{/other_user}", + "gists_url": "https://api.github.com/users/johnou/gists{/gist_id}", + "starred_url": "https://api.github.com/users/johnou/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/johnou/subscriptions", + "organizations_url": "https://api.github.com/users/johnou/orgs", + "repos_url": "https://api.github.com/users/johnou/repos", + "events_url": "https://api.github.com/users/johnou/events{/privacy}", + "received_events_url": "https://api.github.com/users/johnou/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 12, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 1, + "d": 1, + "c": 1 + }, + { + "w": 1425772800, + "a": 20, + "d": 2, + "c": 1 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 8, + "d": 4, + "c": 4 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 55, + "d": 0, + "c": 1 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 40, + "d": 2, + "c": 1 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 217, + "d": 14, + "c": 2 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 7, + "d": 0, + "c": 1 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 3, + "d": 2, + "c": 1 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "KostyaSha", + "id": 231611, + "node_id": "MDQ6VXNlcjIzMTYxMQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/231611?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/KostyaSha", + "html_url": "https://github.com/KostyaSha", + "followers_url": "https://api.github.com/users/KostyaSha/followers", + "following_url": "https://api.github.com/users/KostyaSha/following{/other_user}", + "gists_url": "https://api.github.com/users/KostyaSha/gists{/gist_id}", + "starred_url": "https://api.github.com/users/KostyaSha/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/KostyaSha/subscriptions", + "organizations_url": "https://api.github.com/users/KostyaSha/orgs", + "repos_url": "https://api.github.com/users/KostyaSha/repos", + "events_url": "https://api.github.com/users/KostyaSha/events{/privacy}", + "received_events_url": "https://api.github.com/users/KostyaSha/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 16, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 209, + "d": 21, + "c": 11 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 1, + "d": 1, + "c": 1 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 4, + "d": 4, + "c": 1 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 40, + "d": 0, + "c": 2 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 1, + "d": 0, + "c": 1 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 17, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 65, + "d": 25, + "c": 10 + }, + { + "w": 1566691200, + "a": 2714, + "d": 324, + "c": 5 + }, + { + "w": 1567296000, + "a": 3, + "d": 11, + "c": 2 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 20, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 16, + "d": 4, + "c": 3 + }, + { + "w": 1344729600, + "a": 2, + "d": 2, + "c": 1 + }, + { + "w": 1345334400, + "a": 11, + "d": 5, + "c": 1 + }, + { + "w": 1345939200, + "a": 309, + "d": 59, + "c": 9 + }, + { + "w": 1346544000, + "a": 0, + "d": 1, + "c": 1 + }, + { + "w": 1347148800, + "a": 39, + "d": 43, + "c": 1 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 1, + "d": 1, + "c": 1 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 43, + "d": 1, + "c": 1 + }, + { + "w": 1365897600, + "a": 102, + "d": 0, + "c": 1 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 7, + "d": 1, + "c": 1 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "janinko", + "id": 644267, + "node_id": "MDQ6VXNlcjY0NDI2Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/644267?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/janinko", + "html_url": "https://github.com/janinko", + "followers_url": "https://api.github.com/users/janinko/followers", + "following_url": "https://api.github.com/users/janinko/following{/other_user}", + "gists_url": "https://api.github.com/users/janinko/gists{/gist_id}", + "starred_url": "https://api.github.com/users/janinko/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/janinko/subscriptions", + "organizations_url": "https://api.github.com/users/janinko/orgs", + "repos_url": "https://api.github.com/users/janinko/repos", + "events_url": "https://api.github.com/users/janinko/events{/privacy}", + "received_events_url": "https://api.github.com/users/janinko/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 21, + "weeks": [ + { + "w": 1271548800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292112000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1308441600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309046400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321142400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324771200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325376000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1325980800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333843200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339286400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1339891200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1346544000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347148800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1357430400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1366502400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 58, + "d": 2, + "c": 2 + }, + { + "w": 1377993600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1383436800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384041600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388880000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1395532800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396137600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399161600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1401580800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402185600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423958400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426982400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1429401600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430006400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 6, + "d": 2, + "c": 1 + }, + { + "w": 1436659200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449360000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457222400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1457827200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 29, + "d": 1, + "c": 1 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 5110, + "d": 20, + "c": 9 + }, + { + "w": 1478995200, + "a": 27, + "d": 38, + "c": 1 + }, + { + "w": 1479600000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 141, + "d": 27, + "c": 3 + }, + { + "w": 1483833600, + "a": 1, + "d": 1, + "c": 1 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 32, + "d": 23, + "c": 1 + }, + { + "w": 1488067200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 293, + "d": 1, + "c": 1 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 113, + "d": 0, + "c": 1 + }, + { + "w": 1504396800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "stephenc", + "id": 209336, + "node_id": "MDQ6VXNlcjIwOTMzNg==", + "avatar_url": "https://avatars2.githubusercontent.com/u/209336?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/stephenc", + "html_url": "https://github.com/stephenc", + "followers_url": "https://api.github.com/users/stephenc/followers", + "following_url": "https://api.github.com/users/stephenc/following{/other_user}", + "gists_url": "https://api.github.com/users/stephenc/gists{/gist_id}", + "starred_url": "https://api.github.com/users/stephenc/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/stephenc/subscriptions", + "organizations_url": "https://api.github.com/users/stephenc/orgs", + "repos_url": "https://api.github.com/users/stephenc/repos", + "events_url": "https://api.github.com/users/stephenc/events{/privacy}", + "received_events_url": "https://api.github.com/users/stephenc/received_events", + "type": "User", + "site_admin": false + } + }, + { + "total": 715, + "weeks": [ + { + "w": 1271548800, + "a": 1017, + "d": 26, + "c": 16 + }, + { + "w": 1272153600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1272758400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273363200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1273968000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1274572800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275177600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1275782400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276387200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1276992000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1277596800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278201600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1278806400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1279411200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280016000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1280620800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281225600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1281830400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1282435200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283040000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1283644800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284249600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1284854400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1285459200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286064000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1286668800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287273600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1287878400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1288483200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289088000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1289692800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1290297600, + "a": 366, + "d": 81, + "c": 8 + }, + { + "w": 1290902400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1291507200, + "a": 245, + "d": 36, + "c": 9 + }, + { + "w": 1292112000, + "a": 214, + "d": 96, + "c": 13 + }, + { + "w": 1292716800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293321600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1293926400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1294531200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295136000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1295740800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296345600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1296950400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1297555200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1298160000, + "a": 35, + "d": 11, + "c": 5 + }, + { + "w": 1298764800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299369600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1299974400, + "a": 64, + "d": 4, + "c": 7 + }, + { + "w": 1300579200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301184000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1301788800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302393600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1302998400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1303603200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304208000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1304812800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1305417600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1306022400, + "a": 2, + "d": 2, + "c": 2 + }, + { + "w": 1306627200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307232000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1307836800, + "a": 397, + "d": 30, + "c": 11 + }, + { + "w": 1308441600, + "a": 243, + "d": 79, + "c": 9 + }, + { + "w": 1309046400, + "a": 76, + "d": 143, + "c": 6 + }, + { + "w": 1309651200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1310256000, + "a": 2, + "d": 2, + "c": 2 + }, + { + "w": 1310860800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1311465600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312070400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1312675200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313280000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1313884800, + "a": 90, + "d": 38, + "c": 11 + }, + { + "w": 1314489600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315094400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1315699200, + "a": 2, + "d": 2, + "c": 2 + }, + { + "w": 1316304000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1316908800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1317513600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318118400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1318723200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1319328000, + "a": 4, + "d": 4, + "c": 3 + }, + { + "w": 1319932800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1320537600, + "a": 121, + "d": 109, + "c": 3 + }, + { + "w": 1321142400, + "a": 51, + "d": 2, + "c": 3 + }, + { + "w": 1321747200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322352000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1322956800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1323561600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1324166400, + "a": 15, + "d": 1, + "c": 2 + }, + { + "w": 1324771200, + "a": 2, + "d": 2, + "c": 2 + }, + { + "w": 1325376000, + "a": 368, + "d": 166, + "c": 13 + }, + { + "w": 1325980800, + "a": 267, + "d": 55, + "c": 8 + }, + { + "w": 1326585600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327190400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1327795200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1328400000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1329004800, + "a": 62, + "d": 86, + "c": 6 + }, + { + "w": 1329609600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330214400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1330819200, + "a": 135, + "d": 89, + "c": 4 + }, + { + "w": 1331424000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332028800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1332633600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1333238400, + "a": 59, + "d": 57, + "c": 4 + }, + { + "w": 1333843200, + "a": 265, + "d": 91, + "c": 20 + }, + { + "w": 1334448000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1335052800, + "a": 576, + "d": 19, + "c": 12 + }, + { + "w": 1335657600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336262400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1336867200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1337472000, + "a": 107, + "d": 16, + "c": 8 + }, + { + "w": 1338076800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1338681600, + "a": 46, + "d": 3, + "c": 4 + }, + { + "w": 1339286400, + "a": 285, + "d": 683, + "c": 11 + }, + { + "w": 1339891200, + "a": 34, + "d": 19, + "c": 9 + }, + { + "w": 1340496000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341100800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1341705600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342310400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1342915200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1343520000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344124800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1344729600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345334400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1345939200, + "a": 36, + "d": 25, + "c": 5 + }, + { + "w": 1346544000, + "a": 1031, + "d": 951, + "c": 12 + }, + { + "w": 1347148800, + "a": 138, + "d": 21, + "c": 8 + }, + { + "w": 1347753600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348358400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1348963200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1349568000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1350172800, + "a": 7, + "d": 0, + "c": 1 + }, + { + "w": 1350777600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351382400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1351987200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1352592000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353196800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1353801600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1354406400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355011200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1355616000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356220800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1356825600, + "a": 44, + "d": 40, + "c": 6 + }, + { + "w": 1357430400, + "a": 83, + "d": 46, + "c": 5 + }, + { + "w": 1358035200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1358640000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359244800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1359849600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1360454400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361059200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1361664000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362268800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1362873600, + "a": 28, + "d": 2, + "c": 4 + }, + { + "w": 1363478400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364083200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1364688000, + "a": 4, + "d": 3, + "c": 4 + }, + { + "w": 1365292800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1365897600, + "a": 52, + "d": 31, + "c": 8 + }, + { + "w": 1366502400, + "a": 110, + "d": 55, + "c": 9 + }, + { + "w": 1367107200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1367712000, + "a": 8, + "d": 4, + "c": 3 + }, + { + "w": 1368316800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1368921600, + "a": 1, + "d": 1, + "c": 1 + }, + { + "w": 1369526400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370131200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1370736000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371340800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1371945600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1372550400, + "a": 29, + "d": 4, + "c": 5 + }, + { + "w": 1373155200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1373760000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374364800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1374969600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1375574400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376179200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1376784000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377388800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1377993600, + "a": 17, + "d": 44, + "c": 3 + }, + { + "w": 1378598400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379203200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1379808000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1380412800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381017600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1381622400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382227200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1382832000, + "a": 2, + "d": 14, + "c": 1 + }, + { + "w": 1383436800, + "a": 30, + "d": 11, + "c": 5 + }, + { + "w": 1384041600, + "a": 239, + "d": 70, + "c": 11 + }, + { + "w": 1384646400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1385251200, + "a": 3, + "d": 2, + "c": 3 + }, + { + "w": 1385856000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1386460800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387065600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1387670400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1388275200, + "a": 3, + "d": 0, + "c": 1 + }, + { + "w": 1388880000, + "a": 8, + "d": 7, + "c": 4 + }, + { + "w": 1389484800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390089600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1390694400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391299200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1391904000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1392508800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393113600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1393718400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394323200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1394928000, + "a": 1, + "d": 1, + "c": 1 + }, + { + "w": 1395532800, + "a": 256, + "d": 97, + "c": 13 + }, + { + "w": 1396137600, + "a": 29, + "d": 0, + "c": 1 + }, + { + "w": 1396742400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1397347200, + "a": 95, + "d": 6, + "c": 7 + }, + { + "w": 1397952000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1398556800, + "a": 2, + "d": 0, + "c": 1 + }, + { + "w": 1399161600, + "a": 1692, + "d": 1026, + "c": 42 + }, + { + "w": 1399766400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400371200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1400976000, + "a": 36, + "d": 0, + "c": 2 + }, + { + "w": 1401580800, + "a": 2, + "d": 2, + "c": 2 + }, + { + "w": 1402185600, + "a": 18, + "d": 14, + "c": 4 + }, + { + "w": 1402790400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1403395200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1404000000, + "a": 131, + "d": 10, + "c": 6 + }, + { + "w": 1404604800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405209600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1405814400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1406419200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407024000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1407628800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408233600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1408838400, + "a": 54, + "d": 50, + "c": 4 + }, + { + "w": 1409443200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410048000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1410652800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411257600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1411862400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1412467200, + "a": 24, + "d": 20, + "c": 5 + }, + { + "w": 1413072000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1413676800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414281600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1414886400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1415491200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416096000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1416700800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417305600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1417910400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1418515200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419120000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1419724800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420329600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1420934400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1421539200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422144000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1422748800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1423353600, + "a": 441, + "d": 424, + "c": 17 + }, + { + "w": 1423958400, + "a": 542, + "d": 160, + "c": 19 + }, + { + "w": 1424563200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1425168000, + "a": 16, + "d": 6, + "c": 4 + }, + { + "w": 1425772800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1426377600, + "a": 278, + "d": 148, + "c": 11 + }, + { + "w": 1426982400, + "a": 1033, + "d": 185, + "c": 30 + }, + { + "w": 1427587200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428192000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1428796800, + "a": 653, + "d": 531, + "c": 8 + }, + { + "w": 1429401600, + "a": 19, + "d": 5, + "c": 3 + }, + { + "w": 1430006400, + "a": 7, + "d": 2, + "c": 1 + }, + { + "w": 1430611200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431216000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1431820800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1432425600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433030400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1433635200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434240000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1434844800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1435449600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436054400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1436659200, + "a": 57, + "d": 32, + "c": 10 + }, + { + "w": 1437264000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1437868800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1438473600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1439078400, + "a": 11, + "d": 7, + "c": 4 + }, + { + "w": 1439683200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440288000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1440892800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1441497600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442102400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1442707200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443312000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1443916800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1444521600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445126400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1445731200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446336000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1446940800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1447545600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448150400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1448755200, + "a": 389, + "d": 218, + "c": 14 + }, + { + "w": 1449360000, + "a": 180, + "d": 55, + "c": 7 + }, + { + "w": 1449964800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1450569600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451174400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1451779200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452384000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1452988800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1453593600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454198400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1454803200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1455408000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456012800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1456617600, + "a": 191, + "d": 50, + "c": 6 + }, + { + "w": 1457222400, + "a": 48, + "d": 39, + "c": 10 + }, + { + "w": 1457827200, + "a": 27, + "d": 12, + "c": 5 + }, + { + "w": 1458432000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459036800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1459641600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1460246400, + "a": 4, + "d": 4, + "c": 2 + }, + { + "w": 1460851200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1461456000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462060800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1462665600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463270400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1463875200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1464480000, + "a": 242, + "d": 33, + "c": 17 + }, + { + "w": 1465084800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1465689600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466294400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1466899200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1467504000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468108800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1468713600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469318400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1469923200, + "a": 305, + "d": 332, + "c": 16 + }, + { + "w": 1470528000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471132800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1471737600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472342400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1472947200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1473552000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474156800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1474761600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475366400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1475971200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1476576000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1477180800, + "a": 11, + "d": 9, + "c": 6 + }, + { + "w": 1477785600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478390400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1478995200, + "a": 508, + "d": 43, + "c": 12 + }, + { + "w": 1479600000, + "a": 19, + "d": 4, + "c": 3 + }, + { + "w": 1480204800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1480809600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1481414400, + "a": 169, + "d": 35, + "c": 11 + }, + { + "w": 1482019200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1482624000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483228800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1483833600, + "a": 93, + "d": 50, + "c": 10 + }, + { + "w": 1484438400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485043200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1485648000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486252800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1486857600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1487462400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1488067200, + "a": 4, + "d": 4, + "c": 2 + }, + { + "w": 1488672000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489276800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1489881600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1490486400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491091200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1491696000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492300800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1492905600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1493510400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494115200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1494720000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495324800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1495929600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1496534400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497139200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1497744000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498348800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1498953600, + "a": 4, + "d": 4, + "c": 2 + }, + { + "w": 1499558400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500163200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1500768000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501372800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1501977600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1502582400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503187200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1503792000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1504396800, + "a": 773, + "d": 531, + "c": 35 + }, + { + "w": 1505001600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1505606400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506211200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1506816000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1507420800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508025600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1508630400, + "a": 114, + "d": 44, + "c": 9 + }, + { + "w": 1509235200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1509840000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1510444800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511049600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1511654400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512259200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1512864000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1513468800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514073600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1514678400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1515283200, + "a": 362, + "d": 307, + "c": 14 + }, + { + "w": 1515888000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1516492800, + "a": 45, + "d": 5, + "c": 2 + }, + { + "w": 1517097600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1517702400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518307200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1518912000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1519516800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520121600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1520726400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521331200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1521936000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1522540800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523145600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1523750400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524355200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1524960000, + "a": 35, + "d": 36, + "c": 6 + }, + { + "w": 1525564800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526169600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1526774400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527379200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1527984000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1528588800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529193600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1529798400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1530403200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531008000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1531612800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532217600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1532822400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1533427200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534032000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1534636800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1535241600, + "a": 185, + "d": 243, + "c": 14 + }, + { + "w": 1535846400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1536451200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537056000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1537660800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538265600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1538870400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1539475200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540080000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1540684800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1541289600, + "a": 63, + "d": 56, + "c": 5 + }, + { + "w": 1541894400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1542499200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543104000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1543708800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544313600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1544918400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1545523200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546128000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1546732800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547337600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1547942400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1548547200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549152000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1549756800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550361600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1550966400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1551571200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552176000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1552780800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553385600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1553990400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1554595200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555200000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1555804800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1556409600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557014400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1557619200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558224000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1558828800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1559433600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560038400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1560643200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561248000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1561852800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1562457600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563062400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1563667200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564272000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1564876800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1565481600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566086400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1566691200, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567296000, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1567900800, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1568505600, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569110400, + "a": 0, + "d": 0, + "c": 0 + }, + { + "w": 1569715200, + "a": 0, + "d": 0, + "c": 0 + } + ], + "author": { + "login": "kohsuke", + "id": 50003, + "node_id": "MDQ6VXNlcjUwMDAz", + "avatar_url": "https://avatars1.githubusercontent.com/u/50003?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kohsuke", + "html_url": "https://github.com/kohsuke", + "followers_url": "https://api.github.com/users/kohsuke/followers", + "following_url": "https://api.github.com/users/kohsuke/following{/other_user}", + "gists_url": "https://api.github.com/users/kohsuke/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kohsuke/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kohsuke/subscriptions", + "organizations_url": "https://api.github.com/users/kohsuke/orgs", + "repos_url": "https://api.github.com/users/kohsuke/repos", + "events_url": "https://api.github.com/users/kohsuke/events{/privacy}", + "received_events_url": "https://api.github.com/users/kohsuke/received_events", + "type": "User", + "site_admin": false + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testContributorStats/__files/user-8442a6db-0547-45de-9b65-259e1fe4d673.json b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testContributorStats/__files/user-8442a6db-0547-45de-9b65-259e1fe4d673.json new file mode 100644 index 0000000000..41fc9e3d00 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testContributorStats/__files/user-8442a6db-0547-45de-9b65-259e1fe4d673.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 168, + "public_gists": 4, + "followers": 136, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testContributorStats/mappings/orgs_github-api-test-org-2-4da8ec.json b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testContributorStats/mappings/orgs_github-api-test-org-2-4da8ec.json new file mode 100644 index 0000000000..048ea1526b --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testContributorStats/mappings/orgs_github-api-test-org-2-4da8ec.json @@ -0,0 +1,43 @@ +{ + "id": "4da8ece7-db7b-4b2d-85ef-8c617bc2cf0e", + "name": "orgs_github-api-test-org", + "request": { + "url": "/orgs/github-api-test-org", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_github-api-test-org-4da8ece7-db7b-4b2d-85ef-8c617bc2cf0e.json", + "headers": { + "Date": "Sat, 05 Oct 2019 04:27:56 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4972", + "X-RateLimit-Reset": "1570253246", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"511c83f13dd1d0697f68879f1a183f6f\"", + "Last-Modified": "Mon, 20 Apr 2015 00:42:30 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F4EA:6B2E:233FA5D:29B6616:5D981BCB" + } + }, + "uuid": "4da8ece7-db7b-4b2d-85ef-8c617bc2cf0e", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testContributorStats/mappings/repos_github-api-test-org_github-api-3-6d11bb.json b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testContributorStats/mappings/repos_github-api-test-org_github-api-3-6d11bb.json new file mode 100644 index 0000000000..bd98f771f9 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testContributorStats/mappings/repos_github-api-test-org_github-api-3-6d11bb.json @@ -0,0 +1,43 @@ +{ + "id": "6d11bbfd-0ddf-4867-bfe9-2896f9adb8e2", + "name": "repos_github-api-test-org_github-api", + "request": { + "url": "/repos/github-api-test-org/github-api", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api-6d11bbfd-0ddf-4867-bfe9-2896f9adb8e2.json", + "headers": { + "Date": "Sat, 05 Oct 2019 04:27:56 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4971", + "X-RateLimit-Reset": "1570253246", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"8960c5c8afa27b9c8267a48a1973444c\"", + "Last-Modified": "Mon, 30 Sep 2019 22:36:47 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F4EA:6B2E:233FA6B:29B6647:5D981BCC" + } + }, + "uuid": "6d11bbfd-0ddf-4867-bfe9-2896f9adb8e2", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testContributorStats/mappings/repos_github-api-test-org_github-api_stats_contributors-4-722ef7.json b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testContributorStats/mappings/repos_github-api-test-org_github-api_stats_contributors-4-722ef7.json new file mode 100644 index 0000000000..c8c5021981 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testContributorStats/mappings/repos_github-api-test-org_github-api_stats_contributors-4-722ef7.json @@ -0,0 +1,42 @@ +{ + "id": "722ef788-c190-4e69-a84a-9ad367d6630d", + "name": "repos_github-api-test-org_github-api_stats_contributors", + "request": { + "url": "/repos/github-api-test-org/github-api/stats/contributors", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api_stats_contributors-722ef788-c190-4e69-a84a-9ad367d6630d.json", + "headers": { + "Date": "Sat, 05 Oct 2019 04:27:57 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4970", + "X-RateLimit-Reset": "1570253246", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"b24d9b31e6f4100367d2aa237f5fbb55\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F4EA:6B2E:233FA7E:29B665D:5D981BCC" + } + }, + "uuid": "722ef788-c190-4e69-a84a-9ad367d6630d", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testContributorStats/mappings/user-1-8442a6.json b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testContributorStats/mappings/user-1-8442a6.json new file mode 100644 index 0000000000..da7dbeeb5d --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testContributorStats/mappings/user-1-8442a6.json @@ -0,0 +1,43 @@ +{ + "id": "8442a6db-0547-45de-9b65-259e1fe4d673", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-8442a6db-0547-45de-9b65-259e1fe4d673.json", + "headers": { + "Date": "Sat, 05 Oct 2019 04:27:55 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4974", + "X-RateLimit-Reset": "1570253246", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"af0c41afcacb8ceee14b7d896719c3bd\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F4EA:6B2E:233FA30:29B6607:5D981BCB" + } + }, + "uuid": "8442a6db-0547-45de-9b65-259e1fe4d673", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testParticipation/__files/orgs_github-api-test-org-bc8f8b96-f45a-4539-a3e3-5f59a1c30c17.json b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testParticipation/__files/orgs_github-api-test-org-bc8f8b96-f45a-4539-a3e3-5f59a1c30c17.json new file mode 100644 index 0000000000..6a1869b899 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testParticipation/__files/orgs_github-api-test-org-bc8f8b96-f45a-4539-a3e3-5f59a1c30c17.json @@ -0,0 +1,41 @@ +{ + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "url": "https://api.github.com/orgs/github-api-test-org", + "repos_url": "https://api.github.com/orgs/github-api-test-org/repos", + "events_url": "https://api.github.com/orgs/github-api-test-org/events", + "hooks_url": "https://api.github.com/orgs/github-api-test-org/hooks", + "issues_url": "https://api.github.com/orgs/github-api-test-org/issues", + "members_url": "https://api.github.com/orgs/github-api-test-org/members{/member}", + "public_members_url": "https://api.github.com/orgs/github-api-test-org/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "description": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 10, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/github-api-test-org", + "created_at": "2014-05-10T19:39:11Z", + "updated_at": "2015-04-20T00:42:30Z", + "type": "Organization", + "total_private_repos": 0, + "owned_private_repos": 0, + "private_gists": 0, + "disk_usage": 132, + "collaborators": 0, + "billing_email": "kk@kohsuke.org", + "default_repository_permission": "none", + "members_can_create_repositories": false, + "two_factor_requirement_enabled": false, + "plan": { + "name": "free", + "space": 976562499, + "private_repos": 0, + "filled_seats": 5, + "seats": 0 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testParticipation/__files/repos_github-api-test-org_github-api-7631fa24-ceab-4d0f-8f22-f1041dcd792a.json b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testParticipation/__files/repos_github-api-test-org_github-api-7631fa24-ceab-4d0f-8f22-f1041dcd792a.json new file mode 100644 index 0000000000..488efd925a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testParticipation/__files/repos_github-api-test-org_github-api-7631fa24-ceab-4d0f-8f22-f1041dcd792a.json @@ -0,0 +1,330 @@ +{ + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Tricky", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-30T22:36:47Z", + "pushed_at": "2019-09-26T00:06:54Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11391, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "parent": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-10-05T04:10:56Z", + "pushed_at": "2019-10-05T04:12:37Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 12265, + "stargazers_count": 557, + "watchers_count": 557, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 429, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 85, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 429, + "open_issues": 85, + "watchers": 557, + "default_branch": "master" + }, + "source": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-10-05T04:10:56Z", + "pushed_at": "2019-10-05T04:12:37Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 12265, + "stargazers_count": 557, + "watchers_count": 557, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 429, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 85, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 429, + "open_issues": 85, + "watchers": 557, + "default_branch": "master" + }, + "network_count": 429, + "subscribers_count": 0 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testParticipation/__files/user-a809afbf-ab4e-4117-86aa-da70544ee1bb.json b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testParticipation/__files/user-a809afbf-ab4e-4117-86aa-da70544ee1bb.json new file mode 100644 index 0000000000..41fc9e3d00 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testParticipation/__files/user-a809afbf-ab4e-4117-86aa-da70544ee1bb.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 168, + "public_gists": 4, + "followers": 136, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testParticipation/mappings/orgs_github-api-test-org-2-bc8f8b.json b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testParticipation/mappings/orgs_github-api-test-org-2-bc8f8b.json new file mode 100644 index 0000000000..bf64a725ab --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testParticipation/mappings/orgs_github-api-test-org-2-bc8f8b.json @@ -0,0 +1,43 @@ +{ + "id": "bc8f8b96-f45a-4539-a3e3-5f59a1c30c17", + "name": "orgs_github-api-test-org", + "request": { + "url": "/orgs/github-api-test-org", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_github-api-test-org-bc8f8b96-f45a-4539-a3e3-5f59a1c30c17.json", + "headers": { + "Date": "Sat, 05 Oct 2019 04:28:00 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4957", + "X-RateLimit-Reset": "1570253246", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"511c83f13dd1d0697f68879f1a183f6f\"", + "Last-Modified": "Mon, 20 Apr 2015 00:42:30 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F4F7:361D:196A75C:1E5F901:5D981BD0" + } + }, + "uuid": "bc8f8b96-f45a-4539-a3e3-5f59a1c30c17", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testParticipation/mappings/repos_github-api-test-org_github-api-3-7631fa.json b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testParticipation/mappings/repos_github-api-test-org_github-api-3-7631fa.json new file mode 100644 index 0000000000..2b197abea7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testParticipation/mappings/repos_github-api-test-org_github-api-3-7631fa.json @@ -0,0 +1,43 @@ +{ + "id": "7631fa24-ceab-4d0f-8f22-f1041dcd792a", + "name": "repos_github-api-test-org_github-api", + "request": { + "url": "/repos/github-api-test-org/github-api", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api-7631fa24-ceab-4d0f-8f22-f1041dcd792a.json", + "headers": { + "Date": "Sat, 05 Oct 2019 04:28:01 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4956", + "X-RateLimit-Reset": "1570253246", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"8960c5c8afa27b9c8267a48a1973444c\"", + "Last-Modified": "Mon, 30 Sep 2019 22:36:47 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F4F7:361D:196A776:1E5F932:5D981BD0" + } + }, + "uuid": "7631fa24-ceab-4d0f-8f22-f1041dcd792a", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testParticipation/mappings/repos_github-api-test-org_github-api_stats_participation-4-9ae337.json b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testParticipation/mappings/repos_github-api-test-org_github-api_stats_participation-4-9ae337.json new file mode 100644 index 0000000000..ffe9b2b9f9 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testParticipation/mappings/repos_github-api-test-org_github-api_stats_participation-4-9ae337.json @@ -0,0 +1,42 @@ +{ + "id": "9ae337f3-ba1f-4756-9775-89be33ef5fd3", + "name": "repos_github-api-test-org_github-api_stats_participation", + "request": { + "url": "/repos/github-api-test-org/github-api/stats/participation", + "method": "GET" + }, + "response": { + "status": 200, + "body": "{\"all\":[1,0,2,1,9,0,0,1,0,0,0,1,0,0,0,0,1,0,0,2,0,0,0,1,1,0,0,0,1,0,0,4,2,0,0,0,2,0,1,0,0,0,0,0,1,0,14,7,1,0,0,0],\"owner\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}", + "headers": { + "Date": "Sat, 05 Oct 2019 04:28:01 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4955", + "X-RateLimit-Reset": "1570253246", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"c6937df7adc1c9c5e70081a77b5d9684\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F4F7:361D:196A79B:1E5F954:5D981BD1" + } + }, + "uuid": "9ae337f3-ba1f-4756-9775-89be33ef5fd3", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testParticipation/mappings/user-1-a809af.json b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testParticipation/mappings/user-1-a809af.json new file mode 100644 index 0000000000..8230b83293 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testParticipation/mappings/user-1-a809af.json @@ -0,0 +1,43 @@ +{ + "id": "a809afbf-ab4e-4117-86aa-da70544ee1bb", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-a809afbf-ab4e-4117-86aa-da70544ee1bb.json", + "headers": { + "Date": "Sat, 05 Oct 2019 04:28:00 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4959", + "X-RateLimit-Reset": "1570253246", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"af0c41afcacb8ceee14b7d896719c3bd\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F4F7:361D:196A739:1E5F8ED:5D981BD0" + } + }, + "uuid": "a809afbf-ab4e-4117-86aa-da70544ee1bb", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testPunchCard/__files/orgs_github-api-test-org-754abf86-100a-406e-b1f0-8af9e395d4b8.json b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testPunchCard/__files/orgs_github-api-test-org-754abf86-100a-406e-b1f0-8af9e395d4b8.json new file mode 100644 index 0000000000..6a1869b899 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testPunchCard/__files/orgs_github-api-test-org-754abf86-100a-406e-b1f0-8af9e395d4b8.json @@ -0,0 +1,41 @@ +{ + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "url": "https://api.github.com/orgs/github-api-test-org", + "repos_url": "https://api.github.com/orgs/github-api-test-org/repos", + "events_url": "https://api.github.com/orgs/github-api-test-org/events", + "hooks_url": "https://api.github.com/orgs/github-api-test-org/hooks", + "issues_url": "https://api.github.com/orgs/github-api-test-org/issues", + "members_url": "https://api.github.com/orgs/github-api-test-org/members{/member}", + "public_members_url": "https://api.github.com/orgs/github-api-test-org/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "description": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 10, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/github-api-test-org", + "created_at": "2014-05-10T19:39:11Z", + "updated_at": "2015-04-20T00:42:30Z", + "type": "Organization", + "total_private_repos": 0, + "owned_private_repos": 0, + "private_gists": 0, + "disk_usage": 132, + "collaborators": 0, + "billing_email": "kk@kohsuke.org", + "default_repository_permission": "none", + "members_can_create_repositories": false, + "two_factor_requirement_enabled": false, + "plan": { + "name": "free", + "space": 976562499, + "private_repos": 0, + "filled_seats": 5, + "seats": 0 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testPunchCard/__files/repos_github-api-test-org_github-api-b2ea09da-c234-4d3e-a636-e479e4234863.json b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testPunchCard/__files/repos_github-api-test-org_github-api-b2ea09da-c234-4d3e-a636-e479e4234863.json new file mode 100644 index 0000000000..488efd925a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testPunchCard/__files/repos_github-api-test-org_github-api-b2ea09da-c234-4d3e-a636-e479e4234863.json @@ -0,0 +1,330 @@ +{ + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Tricky", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-30T22:36:47Z", + "pushed_at": "2019-09-26T00:06:54Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11391, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "parent": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-10-05T04:10:56Z", + "pushed_at": "2019-10-05T04:12:37Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 12265, + "stargazers_count": 557, + "watchers_count": 557, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 429, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 85, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 429, + "open_issues": 85, + "watchers": 557, + "default_branch": "master" + }, + "source": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-10-05T04:10:56Z", + "pushed_at": "2019-10-05T04:12:37Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 12265, + "stargazers_count": 557, + "watchers_count": 557, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 429, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 85, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 429, + "open_issues": 85, + "watchers": 557, + "default_branch": "master" + }, + "network_count": 429, + "subscribers_count": 0 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testPunchCard/__files/repos_github-api-test-org_github-api_stats_punch_card-e401c59f-b7f3-42e9-8d49-8dae9c25b72f.json b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testPunchCard/__files/repos_github-api-test-org_github-api_stats_punch_card-e401c59f-b7f3-42e9-8d49-8dae9c25b72f.json new file mode 100644 index 0000000000..0036ca83b2 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testPunchCard/__files/repos_github-api-test-org_github-api_stats_punch_card-e401c59f-b7f3-42e9-8d49-8dae9c25b72f.json @@ -0,0 +1,842 @@ +[ + [ + 0, + 0, + 1 + ], + [ + 0, + 1, + 1 + ], + [ + 0, + 2, + 2 + ], + [ + 0, + 3, + 0 + ], + [ + 0, + 4, + 2 + ], + [ + 0, + 5, + 1 + ], + [ + 0, + 6, + 2 + ], + [ + 0, + 7, + 7 + ], + [ + 0, + 8, + 19 + ], + [ + 0, + 9, + 13 + ], + [ + 0, + 10, + 10 + ], + [ + 0, + 11, + 14 + ], + [ + 0, + 12, + 8 + ], + [ + 0, + 13, + 8 + ], + [ + 0, + 14, + 2 + ], + [ + 0, + 15, + 11 + ], + [ + 0, + 16, + 10 + ], + [ + 0, + 17, + 8 + ], + [ + 0, + 18, + 7 + ], + [ + 0, + 19, + 1 + ], + [ + 0, + 20, + 1 + ], + [ + 0, + 21, + 13 + ], + [ + 0, + 22, + 6 + ], + [ + 0, + 23, + 1 + ], + [ + 1, + 0, + 1 + ], + [ + 1, + 1, + 1 + ], + [ + 1, + 2, + 4 + ], + [ + 1, + 3, + 0 + ], + [ + 1, + 4, + 0 + ], + [ + 1, + 5, + 0 + ], + [ + 1, + 6, + 0 + ], + [ + 1, + 7, + 0 + ], + [ + 1, + 8, + 8 + ], + [ + 1, + 9, + 8 + ], + [ + 1, + 10, + 15 + ], + [ + 1, + 11, + 6 + ], + [ + 1, + 12, + 12 + ], + [ + 1, + 13, + 1 + ], + [ + 1, + 14, + 4 + ], + [ + 1, + 15, + 4 + ], + [ + 1, + 16, + 14 + ], + [ + 1, + 17, + 8 + ], + [ + 1, + 18, + 12 + ], + [ + 1, + 19, + 7 + ], + [ + 1, + 20, + 2 + ], + [ + 1, + 21, + 7 + ], + [ + 1, + 22, + 8 + ], + [ + 1, + 23, + 1 + ], + [ + 2, + 0, + 2 + ], + [ + 2, + 1, + 0 + ], + [ + 2, + 2, + 0 + ], + [ + 2, + 3, + 1 + ], + [ + 2, + 4, + 2 + ], + [ + 2, + 5, + 0 + ], + [ + 2, + 6, + 2 + ], + [ + 2, + 7, + 7 + ], + [ + 2, + 8, + 4 + ], + [ + 2, + 9, + 8 + ], + [ + 2, + 10, + 16 + ], + [ + 2, + 11, + 15 + ], + [ + 2, + 12, + 18 + ], + [ + 2, + 13, + 9 + ], + [ + 2, + 14, + 15 + ], + [ + 2, + 15, + 14 + ], + [ + 2, + 16, + 11 + ], + [ + 2, + 17, + 11 + ], + [ + 2, + 18, + 3 + ], + [ + 2, + 19, + 7 + ], + [ + 2, + 20, + 2 + ], + [ + 2, + 21, + 10 + ], + [ + 2, + 22, + 1 + ], + [ + 2, + 23, + 0 + ], + [ + 3, + 0, + 2 + ], + [ + 3, + 1, + 0 + ], + [ + 3, + 2, + 0 + ], + [ + 3, + 3, + 0 + ], + [ + 3, + 4, + 1 + ], + [ + 3, + 5, + 0 + ], + [ + 3, + 6, + 2 + ], + [ + 3, + 7, + 1 + ], + [ + 3, + 8, + 7 + ], + [ + 3, + 9, + 15 + ], + [ + 3, + 10, + 0 + ], + [ + 3, + 11, + 8 + ], + [ + 3, + 12, + 7 + ], + [ + 3, + 13, + 7 + ], + [ + 3, + 14, + 2 + ], + [ + 3, + 15, + 5 + ], + [ + 3, + 16, + 3 + ], + [ + 3, + 17, + 5 + ], + [ + 3, + 18, + 12 + ], + [ + 3, + 19, + 10 + ], + [ + 3, + 20, + 9 + ], + [ + 3, + 21, + 12 + ], + [ + 3, + 22, + 6 + ], + [ + 3, + 23, + 5 + ], + [ + 4, + 0, + 6 + ], + [ + 4, + 1, + 1 + ], + [ + 4, + 2, + 0 + ], + [ + 4, + 3, + 0 + ], + [ + 4, + 4, + 0 + ], + [ + 4, + 5, + 2 + ], + [ + 4, + 6, + 4 + ], + [ + 4, + 7, + 2 + ], + [ + 4, + 8, + 0 + ], + [ + 4, + 9, + 8 + ], + [ + 4, + 10, + 7 + ], + [ + 4, + 11, + 12 + ], + [ + 4, + 12, + 11 + ], + [ + 4, + 13, + 2 + ], + [ + 4, + 14, + 12 + ], + [ + 4, + 15, + 11 + ], + [ + 4, + 16, + 10 + ], + [ + 4, + 17, + 7 + ], + [ + 4, + 18, + 7 + ], + [ + 4, + 19, + 3 + ], + [ + 4, + 20, + 1 + ], + [ + 4, + 21, + 7 + ], + [ + 4, + 22, + 10 + ], + [ + 4, + 23, + 8 + ], + [ + 5, + 0, + 7 + ], + [ + 5, + 1, + 0 + ], + [ + 5, + 2, + 0 + ], + [ + 5, + 3, + 2 + ], + [ + 5, + 4, + 1 + ], + [ + 5, + 5, + 2 + ], + [ + 5, + 6, + 0 + ], + [ + 5, + 7, + 0 + ], + [ + 5, + 8, + 4 + ], + [ + 5, + 9, + 13 + ], + [ + 5, + 10, + 10 + ], + [ + 5, + 11, + 3 + ], + [ + 5, + 12, + 7 + ], + [ + 5, + 13, + 6 + ], + [ + 5, + 14, + 12 + ], + [ + 5, + 15, + 7 + ], + [ + 5, + 16, + 6 + ], + [ + 5, + 17, + 24 + ], + [ + 5, + 18, + 21 + ], + [ + 5, + 19, + 9 + ], + [ + 5, + 20, + 14 + ], + [ + 5, + 21, + 13 + ], + [ + 5, + 22, + 5 + ], + [ + 5, + 23, + 12 + ], + [ + 6, + 0, + 3 + ], + [ + 6, + 1, + 6 + ], + [ + 6, + 2, + 0 + ], + [ + 6, + 3, + 0 + ], + [ + 6, + 4, + 0 + ], + [ + 6, + 5, + 0 + ], + [ + 6, + 6, + 8 + ], + [ + 6, + 7, + 16 + ], + [ + 6, + 8, + 13 + ], + [ + 6, + 9, + 4 + ], + [ + 6, + 10, + 10 + ], + [ + 6, + 11, + 18 + ], + [ + 6, + 12, + 22 + ], + [ + 6, + 13, + 12 + ], + [ + 6, + 14, + 16 + ], + [ + 6, + 15, + 27 + ], + [ + 6, + 16, + 6 + ], + [ + 6, + 17, + 9 + ], + [ + 6, + 18, + 1 + ], + [ + 6, + 19, + 6 + ], + [ + 6, + 20, + 2 + ], + [ + 6, + 21, + 8 + ], + [ + 6, + 22, + 8 + ], + [ + 6, + 23, + 2 + ] +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testPunchCard/__files/user-49e5cd05-8aa2-4e37-a72e-7ffb584c1422.json b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testPunchCard/__files/user-49e5cd05-8aa2-4e37-a72e-7ffb584c1422.json new file mode 100644 index 0000000000..41fc9e3d00 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testPunchCard/__files/user-49e5cd05-8aa2-4e37-a72e-7ffb584c1422.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 168, + "public_gists": 4, + "followers": 136, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testPunchCard/mappings/orgs_github-api-test-org-2-754abf.json b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testPunchCard/mappings/orgs_github-api-test-org-2-754abf.json new file mode 100644 index 0000000000..c425325948 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testPunchCard/mappings/orgs_github-api-test-org-2-754abf.json @@ -0,0 +1,43 @@ +{ + "id": "754abf86-100a-406e-b1f0-8af9e395d4b8", + "name": "orgs_github-api-test-org", + "request": { + "url": "/orgs/github-api-test-org", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_github-api-test-org-754abf86-100a-406e-b1f0-8af9e395d4b8.json", + "headers": { + "Date": "Sat, 05 Oct 2019 04:27:59 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4967", + "X-RateLimit-Reset": "1570253246", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"511c83f13dd1d0697f68879f1a183f6f\"", + "Last-Modified": "Mon, 20 Apr 2015 00:42:30 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F4EF:361C:C71F2D:ED4915:5D981BCE" + } + }, + "uuid": "754abf86-100a-406e-b1f0-8af9e395d4b8", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testPunchCard/mappings/repos_github-api-test-org_github-api-3-b2ea09.json b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testPunchCard/mappings/repos_github-api-test-org_github-api-3-b2ea09.json new file mode 100644 index 0000000000..3474cd4a2b --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testPunchCard/mappings/repos_github-api-test-org_github-api-3-b2ea09.json @@ -0,0 +1,43 @@ +{ + "id": "b2ea09da-c234-4d3e-a636-e479e4234863", + "name": "repos_github-api-test-org_github-api", + "request": { + "url": "/repos/github-api-test-org/github-api", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api-b2ea09da-c234-4d3e-a636-e479e4234863.json", + "headers": { + "Date": "Sat, 05 Oct 2019 04:27:59 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4966", + "X-RateLimit-Reset": "1570253246", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"8960c5c8afa27b9c8267a48a1973444c\"", + "Last-Modified": "Mon, 30 Sep 2019 22:36:47 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F4EF:361C:C71F34:ED4925:5D981BCF" + } + }, + "uuid": "b2ea09da-c234-4d3e-a636-e479e4234863", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testPunchCard/mappings/repos_github-api-test-org_github-api_stats_punch_card-4-e401c5.json b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testPunchCard/mappings/repos_github-api-test-org_github-api_stats_punch_card-4-e401c5.json new file mode 100644 index 0000000000..c88a76af39 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testPunchCard/mappings/repos_github-api-test-org_github-api_stats_punch_card-4-e401c5.json @@ -0,0 +1,42 @@ +{ + "id": "e401c59f-b7f3-42e9-8d49-8dae9c25b72f", + "name": "repos_github-api-test-org_github-api_stats_punch_card", + "request": { + "url": "/repos/github-api-test-org/github-api/stats/punch_card", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api_stats_punch_card-e401c59f-b7f3-42e9-8d49-8dae9c25b72f.json", + "headers": { + "Date": "Sat, 05 Oct 2019 04:27:59 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4965", + "X-RateLimit-Reset": "1570253246", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"28962769fa7a4174393c330fa50de3d4\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F4EF:361C:C71F3A:ED492C:5D981BCF" + } + }, + "uuid": "e401c59f-b7f3-42e9-8d49-8dae9c25b72f", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testPunchCard/mappings/user-1-49e5cd.json b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testPunchCard/mappings/user-1-49e5cd.json new file mode 100644 index 0000000000..03440ce08e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryStatisticsTest/wiremock/testPunchCard/mappings/user-1-49e5cd.json @@ -0,0 +1,43 @@ +{ + "id": "49e5cd05-8aa2-4e37-a72e-7ffb584c1422", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-49e5cd05-8aa2-4e37-a72e-7ffb584c1422.json", + "headers": { + "Date": "Sat, 05 Oct 2019 04:27:58 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4969", + "X-RateLimit-Reset": "1570253246", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"af0c41afcacb8ceee14b7d896719c3bd\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F4EF:361C:C71F1E:ED490B:5D981BCE" + } + }, + "uuid": "49e5cd05-8aa2-4e37-a72e-7ffb584c1422", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/LatestRepositoryExist/__files/repos_kamontat_checkidnumber-572d41eb-82bd-4b68-8bda-c723b1e9521e.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/LatestRepositoryExist/__files/repos_kamontat_checkidnumber-572d41eb-82bd-4b68-8bda-c723b1e9521e.json new file mode 100644 index 0000000000..ad79b04837 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/LatestRepositoryExist/__files/repos_kamontat_checkidnumber-572d41eb-82bd-4b68-8bda-c723b1e9521e.json @@ -0,0 +1,101 @@ +{ + "id": 66121439, + "node_id": "MDEwOlJlcG9zaXRvcnk2NjEyMTQzOQ==", + "name": "CheckIDNumber", + "full_name": "kamontat/CheckIDNumber", + "private": false, + "owner": { + "login": "kamontat", + "id": 14089557, + "node_id": "MDQ6VXNlcjE0MDg5NTU3", + "avatar_url": "https://avatars2.githubusercontent.com/u/14089557?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kamontat", + "html_url": "https://github.com/kamontat", + "followers_url": "https://api.github.com/users/kamontat/followers", + "following_url": "https://api.github.com/users/kamontat/following{/other_user}", + "gists_url": "https://api.github.com/users/kamontat/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kamontat/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kamontat/subscriptions", + "organizations_url": "https://api.github.com/users/kamontat/orgs", + "repos_url": "https://api.github.com/users/kamontat/repos", + "events_url": "https://api.github.com/users/kamontat/events{/privacy}", + "received_events_url": "https://api.github.com/users/kamontat/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/kamontat/CheckIDNumber", + "description": "saving id number (เลขบัตรประชาชน) ", + "fork": false, + "url": "https://api.github.com/repos/kamontat/CheckIDNumber", + "forks_url": "https://api.github.com/repos/kamontat/CheckIDNumber/forks", + "keys_url": "https://api.github.com/repos/kamontat/CheckIDNumber/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/kamontat/CheckIDNumber/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/kamontat/CheckIDNumber/teams", + "hooks_url": "https://api.github.com/repos/kamontat/CheckIDNumber/hooks", + "issue_events_url": "https://api.github.com/repos/kamontat/CheckIDNumber/issues/events{/number}", + "events_url": "https://api.github.com/repos/kamontat/CheckIDNumber/events", + "assignees_url": "https://api.github.com/repos/kamontat/CheckIDNumber/assignees{/user}", + "branches_url": "https://api.github.com/repos/kamontat/CheckIDNumber/branches{/branch}", + "tags_url": "https://api.github.com/repos/kamontat/CheckIDNumber/tags", + "blobs_url": "https://api.github.com/repos/kamontat/CheckIDNumber/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/kamontat/CheckIDNumber/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/kamontat/CheckIDNumber/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/kamontat/CheckIDNumber/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/kamontat/CheckIDNumber/statuses/{sha}", + "languages_url": "https://api.github.com/repos/kamontat/CheckIDNumber/languages", + "stargazers_url": "https://api.github.com/repos/kamontat/CheckIDNumber/stargazers", + "contributors_url": "https://api.github.com/repos/kamontat/CheckIDNumber/contributors", + "subscribers_url": "https://api.github.com/repos/kamontat/CheckIDNumber/subscribers", + "subscription_url": "https://api.github.com/repos/kamontat/CheckIDNumber/subscription", + "commits_url": "https://api.github.com/repos/kamontat/CheckIDNumber/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/kamontat/CheckIDNumber/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/kamontat/CheckIDNumber/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/kamontat/CheckIDNumber/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/kamontat/CheckIDNumber/contents/{+path}", + "compare_url": "https://api.github.com/repos/kamontat/CheckIDNumber/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/kamontat/CheckIDNumber/merges", + "archive_url": "https://api.github.com/repos/kamontat/CheckIDNumber/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/kamontat/CheckIDNumber/downloads", + "issues_url": "https://api.github.com/repos/kamontat/CheckIDNumber/issues{/number}", + "pulls_url": "https://api.github.com/repos/kamontat/CheckIDNumber/pulls{/number}", + "milestones_url": "https://api.github.com/repos/kamontat/CheckIDNumber/milestones{/number}", + "notifications_url": "https://api.github.com/repos/kamontat/CheckIDNumber/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/kamontat/CheckIDNumber/labels{/name}", + "releases_url": "https://api.github.com/repos/kamontat/CheckIDNumber/releases{/id}", + "deployments_url": "https://api.github.com/repos/kamontat/CheckIDNumber/deployments", + "created_at": "2016-08-20T01:08:53Z", + "updated_at": "2017-02-11T17:06:22Z", + "pushed_at": "2017-06-12T10:59:03Z", + "git_url": "git://github.com/kamontat/CheckIDNumber.git", + "ssh_url": "git@github.com:kamontat/CheckIDNumber.git", + "clone_url": "https://github.com/kamontat/CheckIDNumber.git", + "svn_url": "https://github.com/kamontat/CheckIDNumber", + "homepage": "https://kamontat.github.io/CheckIDNumber", + "size": 369532, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": null, + "forks": 0, + "open_issues": 3, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + }, + "network_count": 0, + "subscribers_count": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/LatestRepositoryExist/__files/repos_kamontat_checkidnumber_releases_latest-d2547b1f-1bc8-46a6-810c-48661d7fed2c.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/LatestRepositoryExist/__files/repos_kamontat_checkidnumber_releases_latest-d2547b1f-1bc8-46a6-810c-48661d7fed2c.json new file mode 100644 index 0000000000..2298494d43 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/LatestRepositoryExist/__files/repos_kamontat_checkidnumber_releases_latest-d2547b1f-1bc8-46a6-810c-48661d7fed2c.json @@ -0,0 +1,74 @@ +{ + "url": "https://api.github.com/repos/kamontat/CheckIDNumber/releases/4970215", + "assets_url": "https://api.github.com/repos/kamontat/CheckIDNumber/releases/4970215/assets", + "upload_url": "https://uploads.github.com/repos/kamontat/CheckIDNumber/releases/4970215/assets{?name,label}", + "html_url": "https://github.com/kamontat/CheckIDNumber/releases/tag/v3.0", + "id": 4970215, + "node_id": "MDc6UmVsZWFzZTQ5NzAyMTU=", + "tag_name": "v3.0", + "target_commitish": "changeDB", + "name": "Changing DATABASE", + "draft": false, + "author": { + "login": "kamontat", + "id": 14089557, + "node_id": "MDQ6VXNlcjE0MDg5NTU3", + "avatar_url": "https://avatars2.githubusercontent.com/u/14089557?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kamontat", + "html_url": "https://github.com/kamontat", + "followers_url": "https://api.github.com/users/kamontat/followers", + "following_url": "https://api.github.com/users/kamontat/following{/other_user}", + "gists_url": "https://api.github.com/users/kamontat/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kamontat/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kamontat/subscriptions", + "organizations_url": "https://api.github.com/users/kamontat/orgs", + "repos_url": "https://api.github.com/users/kamontat/repos", + "events_url": "https://api.github.com/users/kamontat/events{/privacy}", + "received_events_url": "https://api.github.com/users/kamontat/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2017-01-08T05:02:01Z", + "published_at": "2016-12-20T16:14:46Z", + "assets": [ + { + "url": "https://api.github.com/repos/kamontat/CheckIDNumber/releases/assets/4076661", + "id": 4076661, + "node_id": "MDEyOlJlbGVhc2VBc3NldDQwNzY2NjE=", + "name": "CheckIDNumber.jar", + "label": null, + "uploader": { + "login": "kamontat", + "id": 14089557, + "node_id": "MDQ6VXNlcjE0MDg5NTU3", + "avatar_url": "https://avatars2.githubusercontent.com/u/14089557?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kamontat", + "html_url": "https://github.com/kamontat", + "followers_url": "https://api.github.com/users/kamontat/followers", + "following_url": "https://api.github.com/users/kamontat/following{/other_user}", + "gists_url": "https://api.github.com/users/kamontat/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kamontat/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kamontat/subscriptions", + "organizations_url": "https://api.github.com/users/kamontat/orgs", + "repos_url": "https://api.github.com/users/kamontat/repos", + "events_url": "https://api.github.com/users/kamontat/events{/privacy}", + "received_events_url": "https://api.github.com/users/kamontat/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/java-archive", + "state": "uploaded", + "size": 24580724, + "download_count": 42, + "created_at": "2017-06-11T16:13:03Z", + "updated_at": "2017-06-11T16:13:41Z", + "browser_download_url": "https://github.com/kamontat/CheckIDNumber/releases/download/v3.0/CheckIDNumber.jar" + } + ], + "tarball_url": "https://api.github.com/repos/kamontat/CheckIDNumber/tarball/v3.0", + "zipball_url": "https://api.github.com/repos/kamontat/CheckIDNumber/zipball/v3.0", + "body": "Major: \r\n- changing Database from **Text-File** to **SQLite**\r\n - so now we can input more than 600K id-number inside program\r\n\r\nKnown Bug: Loading page isn't happen when create excel file\r\n\r\nLink download:\r\n- [Program](https://github.com/kamontat/CheckIDNumber/releases/download/v3.0/CheckIDNumber.jar)\r\n- [ChangeLog](https://github.com/kamontat/CheckIDNumber/blob/v3.0/list.txt)\r\n" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/LatestRepositoryExist/__files/user-b9c99aa8-3e3d-435c-98e0-3af8eafc960a.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/LatestRepositoryExist/__files/user-b9c99aa8-3e3d-435c-98e0-3af8eafc960a.json new file mode 100644 index 0000000000..39d6c8353e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/LatestRepositoryExist/__files/user-b9c99aa8-3e3d-435c-98e0-3af8eafc960a.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 167, + "public_gists": 4, + "followers": 136, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/LatestRepositoryExist/mappings/repos_kamontat_checkidnumber-2-572d41.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/LatestRepositoryExist/mappings/repos_kamontat_checkidnumber-2-572d41.json new file mode 100644 index 0000000000..98ebf92bc9 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/LatestRepositoryExist/mappings/repos_kamontat_checkidnumber-2-572d41.json @@ -0,0 +1,43 @@ +{ + "id": "572d41eb-82bd-4b68-8bda-c723b1e9521e", + "name": "repos_kamontat_checkidnumber", + "request": { + "url": "/repos/kamontat/CheckIDNumber", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_kamontat_checkidnumber-572d41eb-82bd-4b68-8bda-c723b1e9521e.json", + "headers": { + "Date": "Thu, 03 Oct 2019 18:56:04 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4917", + "X-RateLimit-Reset": "1570132527", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"fc7a2f49e4b789a72bb4853ad2b01da8\"", + "Last-Modified": "Sat, 11 Feb 2017 17:06:22 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F358:3620:11B6149:1536E9B:5D964444" + } + }, + "uuid": "572d41eb-82bd-4b68-8bda-c723b1e9521e", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/LatestRepositoryExist/mappings/repos_kamontat_checkidnumber_releases_latest-3-d2547b.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/LatestRepositoryExist/mappings/repos_kamontat_checkidnumber_releases_latest-3-d2547b.json new file mode 100644 index 0000000000..a5f8e644fa --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/LatestRepositoryExist/mappings/repos_kamontat_checkidnumber_releases_latest-3-d2547b.json @@ -0,0 +1,43 @@ +{ + "id": "d2547b1f-1bc8-46a6-810c-48661d7fed2c", + "name": "repos_kamontat_checkidnumber_releases_latest", + "request": { + "url": "/repos/kamontat/CheckIDNumber/releases/latest", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_kamontat_checkidnumber_releases_latest-d2547b1f-1bc8-46a6-810c-48661d7fed2c.json", + "headers": { + "Date": "Thu, 03 Oct 2019 18:56:05 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4916", + "X-RateLimit-Reset": "1570132527", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"faa29a16cc217701c2031c275784f4c8\"", + "Last-Modified": "Sun, 11 Jun 2017 16:12:58 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F358:3620:11B6166:1536EE5:5D964444" + } + }, + "uuid": "d2547b1f-1bc8-46a6-810c-48661d7fed2c", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/LatestRepositoryExist/mappings/user-1-b9c99a.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/LatestRepositoryExist/mappings/user-1-b9c99a.json new file mode 100644 index 0000000000..1a0ee3494d --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/LatestRepositoryExist/mappings/user-1-b9c99a.json @@ -0,0 +1,43 @@ +{ + "id": "b9c99aa8-3e3d-435c-98e0-3af8eafc960a", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-b9c99aa8-3e3d-435c-98e0-3af8eafc960a.json", + "headers": { + "Date": "Thu, 03 Oct 2019 18:56:04 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4919", + "X-RateLimit-Reset": "1570132527", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"cf6199fecf47b59c42190e1e11147ee2\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F358:3620:11B6100:1536E6E:5D964443" + } + }, + "uuid": "b9c99aa8-3e3d-435c-98e0-3af8eafc960a", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/LatestRepositoryNotExist/__files/repos_kamontat_java8example-7752c1cb-ba51-4716-8321-7e9a6d3fa34a.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/LatestRepositoryNotExist/__files/repos_kamontat_java8example-7752c1cb-ba51-4716-8321-7e9a6d3fa34a.json new file mode 100644 index 0000000000..26e4f08d03 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/LatestRepositoryNotExist/__files/repos_kamontat_java8example-7752c1cb-ba51-4716-8321-7e9a6d3fa34a.json @@ -0,0 +1,101 @@ +{ + "id": 63056630, + "node_id": "MDEwOlJlcG9zaXRvcnk2MzA1NjYzMA==", + "name": "Java8Example", + "full_name": "kamontat/Java8Example", + "private": false, + "owner": { + "login": "kamontat", + "id": 14089557, + "node_id": "MDQ6VXNlcjE0MDg5NTU3", + "avatar_url": "https://avatars2.githubusercontent.com/u/14089557?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kamontat", + "html_url": "https://github.com/kamontat", + "followers_url": "https://api.github.com/users/kamontat/followers", + "following_url": "https://api.github.com/users/kamontat/following{/other_user}", + "gists_url": "https://api.github.com/users/kamontat/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kamontat/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kamontat/subscriptions", + "organizations_url": "https://api.github.com/users/kamontat/orgs", + "repos_url": "https://api.github.com/users/kamontat/repos", + "events_url": "https://api.github.com/users/kamontat/events{/privacy}", + "received_events_url": "https://api.github.com/users/kamontat/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/kamontat/Java8Example", + "description": "the example to write java 8", + "fork": false, + "url": "https://api.github.com/repos/kamontat/Java8Example", + "forks_url": "https://api.github.com/repos/kamontat/Java8Example/forks", + "keys_url": "https://api.github.com/repos/kamontat/Java8Example/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/kamontat/Java8Example/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/kamontat/Java8Example/teams", + "hooks_url": "https://api.github.com/repos/kamontat/Java8Example/hooks", + "issue_events_url": "https://api.github.com/repos/kamontat/Java8Example/issues/events{/number}", + "events_url": "https://api.github.com/repos/kamontat/Java8Example/events", + "assignees_url": "https://api.github.com/repos/kamontat/Java8Example/assignees{/user}", + "branches_url": "https://api.github.com/repos/kamontat/Java8Example/branches{/branch}", + "tags_url": "https://api.github.com/repos/kamontat/Java8Example/tags", + "blobs_url": "https://api.github.com/repos/kamontat/Java8Example/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/kamontat/Java8Example/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/kamontat/Java8Example/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/kamontat/Java8Example/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/kamontat/Java8Example/statuses/{sha}", + "languages_url": "https://api.github.com/repos/kamontat/Java8Example/languages", + "stargazers_url": "https://api.github.com/repos/kamontat/Java8Example/stargazers", + "contributors_url": "https://api.github.com/repos/kamontat/Java8Example/contributors", + "subscribers_url": "https://api.github.com/repos/kamontat/Java8Example/subscribers", + "subscription_url": "https://api.github.com/repos/kamontat/Java8Example/subscription", + "commits_url": "https://api.github.com/repos/kamontat/Java8Example/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/kamontat/Java8Example/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/kamontat/Java8Example/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/kamontat/Java8Example/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/kamontat/Java8Example/contents/{+path}", + "compare_url": "https://api.github.com/repos/kamontat/Java8Example/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/kamontat/Java8Example/merges", + "archive_url": "https://api.github.com/repos/kamontat/Java8Example/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/kamontat/Java8Example/downloads", + "issues_url": "https://api.github.com/repos/kamontat/Java8Example/issues{/number}", + "pulls_url": "https://api.github.com/repos/kamontat/Java8Example/pulls{/number}", + "milestones_url": "https://api.github.com/repos/kamontat/Java8Example/milestones{/number}", + "notifications_url": "https://api.github.com/repos/kamontat/Java8Example/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/kamontat/Java8Example/labels{/name}", + "releases_url": "https://api.github.com/repos/kamontat/Java8Example/releases{/id}", + "deployments_url": "https://api.github.com/repos/kamontat/Java8Example/deployments", + "created_at": "2016-07-11T09:52:31Z", + "updated_at": "2016-07-11T09:52:53Z", + "pushed_at": "2016-12-10T08:41:52Z", + "git_url": "git://github.com/kamontat/Java8Example.git", + "ssh_url": "git@github.com:kamontat/Java8Example.git", + "clone_url": "https://github.com/kamontat/Java8Example.git", + "svn_url": "https://github.com/kamontat/Java8Example", + "homepage": null, + "size": 21, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + }, + "network_count": 0, + "subscribers_count": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/LatestRepositoryNotExist/__files/user-53c4464c-df7f-40cd-94d2-72b47c9a4999.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/LatestRepositoryNotExist/__files/user-53c4464c-df7f-40cd-94d2-72b47c9a4999.json new file mode 100644 index 0000000000..39d6c8353e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/LatestRepositoryNotExist/__files/user-53c4464c-df7f-40cd-94d2-72b47c9a4999.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 167, + "public_gists": 4, + "followers": 136, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/LatestRepositoryNotExist/mappings/repos_kamontat_java8example-2-7752c1.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/LatestRepositoryNotExist/mappings/repos_kamontat_java8example-2-7752c1.json new file mode 100644 index 0000000000..86078c2de2 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/LatestRepositoryNotExist/mappings/repos_kamontat_java8example-2-7752c1.json @@ -0,0 +1,43 @@ +{ + "id": "7752c1cb-ba51-4716-8321-7e9a6d3fa34a", + "name": "repos_kamontat_java8example", + "request": { + "url": "/repos/kamontat/Java8Example", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_kamontat_java8example-7752c1cb-ba51-4716-8321-7e9a6d3fa34a.json", + "headers": { + "Date": "Thu, 03 Oct 2019 18:56:09 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4895", + "X-RateLimit-Reset": "1570132527", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"f87bbb29d760b6147c3705d7d07c11ea\"", + "Last-Modified": "Mon, 11 Jul 2016 09:52:53 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F366:361D:FDE7C1:12E647D:5D964449" + } + }, + "uuid": "7752c1cb-ba51-4716-8321-7e9a6d3fa34a", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/LatestRepositoryNotExist/mappings/repos_kamontat_java8example_releases_latest-3-838e4d.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/LatestRepositoryNotExist/mappings/repos_kamontat_java8example_releases_latest-3-838e4d.json new file mode 100644 index 0000000000..be8b243109 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/LatestRepositoryNotExist/mappings/repos_kamontat_java8example_releases_latest-3-838e4d.json @@ -0,0 +1,36 @@ +{ + "id": "838e4d69-e678-4f62-8aeb-6100f29869e6", + "name": "repos_kamontat_java8example_releases_latest", + "request": { + "url": "/repos/kamontat/Java8Example/releases/latest", + "method": "GET" + }, + "response": { + "status": 404, + "body": "{\"message\":\"Not Found\",\"documentation_url\":\"https://developer.github.com/v3/repos/releases/#get-the-latest-release\"}", + "headers": { + "Date": "Thu, 03 Oct 2019 18:56:09 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4894", + "X-RateLimit-Reset": "1570132527", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F366:361D:FDE7CB:12E6494:5D964449" + } + }, + "uuid": "838e4d69-e678-4f62-8aeb-6100f29869e6", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/LatestRepositoryNotExist/mappings/user-1-53c446.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/LatestRepositoryNotExist/mappings/user-1-53c446.json new file mode 100644 index 0000000000..226ea2e8a1 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/LatestRepositoryNotExist/mappings/user-1-53c446.json @@ -0,0 +1,43 @@ +{ + "id": "53c4464c-df7f-40cd-94d2-72b47c9a4999", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-53c4464c-df7f-40cd-94d2-72b47c9a4999.json", + "headers": { + "Date": "Thu, 03 Oct 2019 18:56:09 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4897", + "X-RateLimit-Reset": "1570132527", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"cf6199fecf47b59c42190e1e11147ee2\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F366:361D:FDE7A8:12E646C:5D964449" + } + }, + "uuid": "53c4464c-df7f-40cd-94d2-72b47c9a4999", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/archive/__files/orgs_github-api-test-org-cb173af2-c793-444a-acdf-c3850e7afdbe.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/archive/__files/orgs_github-api-test-org-cb173af2-c793-444a-acdf-c3850e7afdbe.json new file mode 100644 index 0000000000..add01c1b30 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/archive/__files/orgs_github-api-test-org-cb173af2-c793-444a-acdf-c3850e7afdbe.json @@ -0,0 +1,42 @@ +{ + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "url": "https://api.github.com/orgs/github-api-test-org", + "repos_url": "https://api.github.com/orgs/github-api-test-org/repos", + "events_url": "https://api.github.com/orgs/github-api-test-org/events", + "hooks_url": "https://api.github.com/orgs/github-api-test-org/hooks", + "issues_url": "https://api.github.com/orgs/github-api-test-org/issues", + "members_url": "https://api.github.com/orgs/github-api-test-org/members{/member}", + "public_members_url": "https://api.github.com/orgs/github-api-test-org/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "description": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 9, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/github-api-test-org", + "created_at": "2014-05-10T19:39:11Z", + "updated_at": "2015-04-20T00:42:30Z", + "type": "Organization", + "total_private_repos": 0, + "owned_private_repos": 0, + "private_gists": 0, + "disk_usage": 132, + "collaborators": 0, + "billing_email": "kk@kohsuke.org", + "default_repository_permission": "none", + "members_can_create_repositories": false, + "two_factor_requirement_enabled": false, + "members_allowed_repository_creation_type": "none", + "plan": { + "name": "free", + "space": 976562499, + "private_repos": 0, + "filled_seats": 3, + "seats": 0 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/archive/__files/repos_github-api-test-org_github-api-0a4d7a1a-f99c-47ca-840a-3e920c18bd1f.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/archive/__files/repos_github-api-test-org_github-api-0a4d7a1a-f99c-47ca-840a-3e920c18bd1f.json new file mode 100644 index 0000000000..428bee0133 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/archive/__files/repos_github-api-test-org_github-api-0a4d7a1a-f99c-47ca-840a-3e920c18bd1f.json @@ -0,0 +1,330 @@ +{ + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Tricky", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-25T23:32:35Z", + "pushed_at": "2019-09-21T14:29:14Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11387, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "parent": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-25T22:47:32Z", + "pushed_at": "2019-09-25T22:56:18Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11678, + "stargazers_count": 553, + "watchers_count": 553, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 553, + "default_branch": "master" + }, + "source": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-25T22:47:32Z", + "pushed_at": "2019-09-25T22:56:18Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11678, + "stargazers_count": 553, + "watchers_count": 553, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 553, + "default_branch": "master" + }, + "network_count": 427, + "subscribers_count": 0 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/archive/__files/repos_github-api-test-org_github-api-1c529d7c-99f0-43ae-8231-044f48beac1a.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/archive/__files/repos_github-api-test-org_github-api-1c529d7c-99f0-43ae-8231-044f48beac1a.json new file mode 100644 index 0000000000..8f545390e3 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/archive/__files/repos_github-api-test-org_github-api-1c529d7c-99f0-43ae-8231-044f48beac1a.json @@ -0,0 +1,330 @@ +{ + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Tricky", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-25T23:35:59Z", + "pushed_at": "2019-09-21T14:29:14Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11387, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": true, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "parent": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-25T22:47:32Z", + "pushed_at": "2019-09-25T22:56:18Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11678, + "stargazers_count": 553, + "watchers_count": 553, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 553, + "default_branch": "master" + }, + "source": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-25T22:47:32Z", + "pushed_at": "2019-09-25T22:56:18Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11678, + "stargazers_count": 553, + "watchers_count": 553, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 553, + "default_branch": "master" + }, + "network_count": 427, + "subscribers_count": 0 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/archive/__files/repos_github-api-test-org_github-api-2c69d5c8-dd81-4204-bad9-ee37f5b0ebfd.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/archive/__files/repos_github-api-test-org_github-api-2c69d5c8-dd81-4204-bad9-ee37f5b0ebfd.json new file mode 100644 index 0000000000..8f545390e3 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/archive/__files/repos_github-api-test-org_github-api-2c69d5c8-dd81-4204-bad9-ee37f5b0ebfd.json @@ -0,0 +1,330 @@ +{ + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Tricky", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-25T23:35:59Z", + "pushed_at": "2019-09-21T14:29:14Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11387, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": true, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "parent": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-25T22:47:32Z", + "pushed_at": "2019-09-25T22:56:18Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11678, + "stargazers_count": 553, + "watchers_count": 553, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 553, + "default_branch": "master" + }, + "source": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-25T22:47:32Z", + "pushed_at": "2019-09-25T22:56:18Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11678, + "stargazers_count": 553, + "watchers_count": 553, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 96, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 96, + "watchers": 553, + "default_branch": "master" + }, + "network_count": 427, + "subscribers_count": 0 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/archive/__files/user-7f6e9a01-5bfa-4f72-9947-07df902f56c3.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/archive/__files/user-7f6e9a01-5bfa-4f72-9947-07df902f56c3.json new file mode 100644 index 0000000000..eab16ea068 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/archive/__files/user-7f6e9a01-5bfa-4f72-9947-07df902f56c3.json @@ -0,0 +1,33 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 166, + "public_gists": 4, + "followers": 135, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/archive/mappings/orgs_github-api-test-org-2-cb173a.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/archive/mappings/orgs_github-api-test-org-2-cb173a.json new file mode 100644 index 0000000000..31cd8fc532 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/archive/mappings/orgs_github-api-test-org-2-cb173a.json @@ -0,0 +1,43 @@ +{ + "id": "cb173af2-c793-444a-acdf-c3850e7afdbe", + "name": "orgs_github-api-test-org", + "request": { + "url": "/orgs/github-api-test-org", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_github-api-test-org-cb173af2-c793-444a-acdf-c3850e7afdbe.json", + "headers": { + "Date": "Wed, 25 Sep 2019 23:35:58 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4989", + "X-RateLimit-Reset": "1569457884", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"b7989d48e6539c9c76038995b902421b\"", + "Last-Modified": "Mon, 20 Apr 2015 00:42:30 GMT", + "X-OAuth-Scopes": "gist, notifications, read:org, read:public_key, read:repo_hook, repo", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F855:59E1:1397ED7:171400E:5D8BF9DE" + } + }, + "uuid": "cb173af2-c793-444a-acdf-c3850e7afdbe", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/archive/mappings/repos_github-api-test-org_github-api-3-0a4d7a.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/archive/mappings/repos_github-api-test-org_github-api-3-0a4d7a.json new file mode 100644 index 0000000000..5300dab0aa --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/archive/mappings/repos_github-api-test-org_github-api-3-0a4d7a.json @@ -0,0 +1,46 @@ +{ + "id": "0a4d7a1a-f99c-47ca-840a-3e920c18bd1f", + "name": "repos_github-api-test-org_github-api", + "request": { + "url": "/repos/github-api-test-org/github-api", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api-0a4d7a1a-f99c-47ca-840a-3e920c18bd1f.json", + "headers": { + "Date": "Wed, 25 Sep 2019 23:35:58 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4988", + "X-RateLimit-Reset": "1569457884", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"0678d1c39ea574f68cc0fb330b067cb7\"", + "Last-Modified": "Wed, 25 Sep 2019 23:32:35 GMT", + "X-OAuth-Scopes": "gist, notifications, read:org, read:public_key, read:repo_hook, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F855:59E1:1397EEB:1714029:5D8BF9DE" + } + }, + "uuid": "0a4d7a1a-f99c-47ca-840a-3e920c18bd1f", + "persistent": true, + "scenarioName": "scenario-1-repos-github-api-test-org-github-api", + "requiredScenarioState": "Started", + "newScenarioState": "scenario-1-repos-github-api-test-org-github-api-2", + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/archive/mappings/repos_github-api-test-org_github-api-4-2c69d5.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/archive/mappings/repos_github-api-test-org_github-api-4-2c69d5.json new file mode 100644 index 0000000000..b3a7b193fe --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/archive/mappings/repos_github-api-test-org_github-api-4-2c69d5.json @@ -0,0 +1,49 @@ +{ + "id": "2c69d5c8-dd81-4204-bad9-ee37f5b0ebfd", + "name": "repos_github-api-test-org_github-api", + "request": { + "url": "/repos/github-api-test-org/github-api", + "method": "PATCH", + "bodyPatterns": [ + { + "equalToJson": "{\"archived\":\"true\",\"name\":\"github-api\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": true + } + ] + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api-2c69d5c8-dd81-4204-bad9-ee37f5b0ebfd.json", + "headers": { + "Date": "Wed, 25 Sep 2019 23:35:59 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4987", + "X-RateLimit-Reset": "1569457884", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"e40487cafd3670c0de171f4250dbefb8\"", + "X-OAuth-Scopes": "gist, notifications, read:org, read:public_key, read:repo_hook, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F855:59E1:1397F0E:1714041:5D8BF9DE" + } + }, + "uuid": "2c69d5c8-dd81-4204-bad9-ee37f5b0ebfd", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/archive/mappings/repos_github-api-test-org_github-api-5-1c529d.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/archive/mappings/repos_github-api-test-org_github-api-5-1c529d.json new file mode 100644 index 0000000000..72ba30ebd8 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/archive/mappings/repos_github-api-test-org_github-api-5-1c529d.json @@ -0,0 +1,45 @@ +{ + "id": "1c529d7c-99f0-43ae-8231-044f48beac1a", + "name": "repos_github-api-test-org_github-api", + "request": { + "url": "/repos/github-api-test-org/github-api", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api-1c529d7c-99f0-43ae-8231-044f48beac1a.json", + "headers": { + "Date": "Wed, 25 Sep 2019 23:35:59 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4986", + "X-RateLimit-Reset": "1569457884", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"e40487cafd3670c0de171f4250dbefb8\"", + "Last-Modified": "Wed, 25 Sep 2019 23:35:59 GMT", + "X-OAuth-Scopes": "gist, notifications, read:org, read:public_key, read:repo_hook, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F855:59E1:1397F42:1714091:5D8BF9DF" + } + }, + "uuid": "1c529d7c-99f0-43ae-8231-044f48beac1a", + "persistent": true, + "scenarioName": "scenario-1-repos-github-api-test-org-github-api", + "requiredScenarioState": "scenario-1-repos-github-api-test-org-github-api-2", + "insertionIndex": 5 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/archive/mappings/user-1-7f6e9a.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/archive/mappings/user-1-7f6e9a.json new file mode 100644 index 0000000000..74f306e601 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/archive/mappings/user-1-7f6e9a.json @@ -0,0 +1,43 @@ +{ + "id": "7f6e9a01-5bfa-4f72-9947-07df902f56c3", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-7f6e9a01-5bfa-4f72-9947-07df902f56c3.json", + "headers": { + "Date": "Wed, 25 Sep 2019 23:35:33 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4992", + "X-RateLimit-Reset": "1569457884", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"14ffd29009ddc2209c450bb29a5a8330\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "gist, notifications, read:org, read:public_key, read:repo_hook, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F845:5D1D:FFA88A:12FE539:5D8BF9C5" + } + }, + "uuid": "7f6e9a01-5bfa-4f72-9947-07df902f56c3", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getBranch_URLEncoded/__files/orgs_github-api-test-org-5e8ae8ed-0988-4df2-89d3-eda4c6bdc60d.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getBranch_URLEncoded/__files/orgs_github-api-test-org-5e8ae8ed-0988-4df2-89d3-eda4c6bdc60d.json new file mode 100644 index 0000000000..add01c1b30 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getBranch_URLEncoded/__files/orgs_github-api-test-org-5e8ae8ed-0988-4df2-89d3-eda4c6bdc60d.json @@ -0,0 +1,42 @@ +{ + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "url": "https://api.github.com/orgs/github-api-test-org", + "repos_url": "https://api.github.com/orgs/github-api-test-org/repos", + "events_url": "https://api.github.com/orgs/github-api-test-org/events", + "hooks_url": "https://api.github.com/orgs/github-api-test-org/hooks", + "issues_url": "https://api.github.com/orgs/github-api-test-org/issues", + "members_url": "https://api.github.com/orgs/github-api-test-org/members{/member}", + "public_members_url": "https://api.github.com/orgs/github-api-test-org/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "description": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 9, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/github-api-test-org", + "created_at": "2014-05-10T19:39:11Z", + "updated_at": "2015-04-20T00:42:30Z", + "type": "Organization", + "total_private_repos": 0, + "owned_private_repos": 0, + "private_gists": 0, + "disk_usage": 132, + "collaborators": 0, + "billing_email": "kk@kohsuke.org", + "default_repository_permission": "none", + "members_can_create_repositories": false, + "two_factor_requirement_enabled": false, + "members_allowed_repository_creation_type": "none", + "plan": { + "name": "free", + "space": 976562499, + "private_repos": 0, + "filled_seats": 3, + "seats": 0 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getBranch_URLEncoded/__files/repos_github-api-test-org_github-api-30364e1b-193c-4929-9dd0-5aab7b47dbb9.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getBranch_URLEncoded/__files/repos_github-api-test-org_github-api-30364e1b-193c-4929-9dd0-5aab7b47dbb9.json new file mode 100644 index 0000000000..4ae55dacd5 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getBranch_URLEncoded/__files/repos_github-api-test-org_github-api-30364e1b-193c-4929-9dd0-5aab7b47dbb9.json @@ -0,0 +1,330 @@ +{ + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Tricky", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-25T23:37:07Z", + "pushed_at": "2019-09-26T00:06:54Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11387, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "parent": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-25T23:55:16Z", + "pushed_at": "2019-09-26T00:00:09Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11660, + "stargazers_count": 553, + "watchers_count": 553, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 94, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 94, + "watchers": 553, + "default_branch": "master" + }, + "source": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-09-25T23:55:16Z", + "pushed_at": "2019-09-26T00:00:09Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11660, + "stargazers_count": 553, + "watchers_count": 553, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 427, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 94, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 427, + "open_issues": 94, + "watchers": 553, + "default_branch": "master" + }, + "network_count": 427, + "subscribers_count": 0 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getBranch_URLEncoded/__files/repos_github-api-test-org_github-api_branches_test_urlencode-ed8bf5ba-65e0-47d8-bb4d-614063828c87.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getBranch_URLEncoded/__files/repos_github-api-test-org_github-api_branches_test_urlencode-ed8bf5ba-65e0-47d8-bb4d-614063828c87.json new file mode 100644 index 0000000000..aa54de5767 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getBranch_URLEncoded/__files/repos_github-api-test-org_github-api_branches_test_urlencode-ed8bf5ba-65e0-47d8-bb4d-614063828c87.json @@ -0,0 +1,95 @@ +{ + "name": "test/#UrlEncode", + "commit": { + "sha": "14fa3698221f91613b9e1d809434326e5ed546af", + "node_id": "MDY6Q29tbWl0MjA2ODg4MjAxOjE0ZmEzNjk4MjIxZjkxNjEzYjllMWQ4MDk0MzQzMjZlNWVkNTQ2YWY=", + "commit": { + "author": { + "name": "Liam Newman", + "email": "bitwiseman@gmail.com", + "date": "2019-09-06T23:38:04Z" + }, + "committer": { + "name": "Liam Newman", + "email": "bitwiseman@gmail.com", + "date": "2019-09-07T00:09:09Z" + }, + "message": "Update README", + "tree": { + "sha": "f791b2c2752a83ddd7604a800800b18e7c1d0196", + "url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees/f791b2c2752a83ddd7604a800800b18e7c1d0196" + }, + "url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits/14fa3698221f91613b9e1d809434326e5ed546af", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/github-api-test-org/github-api/commits/14fa3698221f91613b9e1d809434326e5ed546af", + "html_url": "https://github.com/github-api-test-org/github-api/commit/14fa3698221f91613b9e1d809434326e5ed546af", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/14fa3698221f91613b9e1d809434326e5ed546af/comments", + "author": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "3a09d2de4a9a1322a0ba2c3e2f54a919ca8fe353", + "url": "https://api.github.com/repos/github-api-test-org/github-api/commits/3a09d2de4a9a1322a0ba2c3e2f54a919ca8fe353", + "html_url": "https://github.com/github-api-test-org/github-api/commit/3a09d2de4a9a1322a0ba2c3e2f54a919ca8fe353" + } + ] + }, + "_links": { + "self": "https://api.github.com/repos/github-api-test-org/github-api/branches/test/#UrlEncode", + "html": "https://github.com/github-api-test-org/github-api/tree/test/#UrlEncode" + }, + "protected": false, + "protection": { + "enabled": false, + "required_status_checks": { + "enforcement_level": "off", + "contexts": [] + } + }, + "protection_url": "https://api.github.com/repos/github-api-test-org/github-api/branches/test/#UrlEncode/protection" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getBranch_URLEncoded/__files/user-c92cdb3f-7cae-43ba-bee2-e5aa6863dcbc.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getBranch_URLEncoded/__files/user-c92cdb3f-7cae-43ba-bee2-e5aa6863dcbc.json new file mode 100644 index 0000000000..eab16ea068 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getBranch_URLEncoded/__files/user-c92cdb3f-7cae-43ba-bee2-e5aa6863dcbc.json @@ -0,0 +1,33 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 166, + "public_gists": 4, + "followers": 135, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getBranch_URLEncoded/mappings/orgs_github-api-test-org-2-5e8ae8.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getBranch_URLEncoded/mappings/orgs_github-api-test-org-2-5e8ae8.json new file mode 100644 index 0000000000..1843f6531d --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getBranch_URLEncoded/mappings/orgs_github-api-test-org-2-5e8ae8.json @@ -0,0 +1,43 @@ +{ + "id": "5e8ae8ed-0988-4df2-89d3-eda4c6bdc60d", + "name": "orgs_github-api-test-org", + "request": { + "url": "/orgs/github-api-test-org", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_github-api-test-org-5e8ae8ed-0988-4df2-89d3-eda4c6bdc60d.json", + "headers": { + "Date": "Thu, 26 Sep 2019 00:11:04 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4992", + "X-RateLimit-Reset": "1569460192", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"b7989d48e6539c9c76038995b902421b\"", + "Last-Modified": "Mon, 20 Apr 2015 00:42:30 GMT", + "X-OAuth-Scopes": "gist, notifications, read:org, read:public_key, read:repo_hook, repo", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FD24:3764:2322DB:2A314B:5D8C0218" + } + }, + "uuid": "5e8ae8ed-0988-4df2-89d3-eda4c6bdc60d", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getBranch_URLEncoded/mappings/repos_github-api-test-org_github-api-3-30364e.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getBranch_URLEncoded/mappings/repos_github-api-test-org_github-api-3-30364e.json new file mode 100644 index 0000000000..a4aca47d48 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getBranch_URLEncoded/mappings/repos_github-api-test-org_github-api-3-30364e.json @@ -0,0 +1,43 @@ +{ + "id": "30364e1b-193c-4929-9dd0-5aab7b47dbb9", + "name": "repos_github-api-test-org_github-api", + "request": { + "url": "/repos/github-api-test-org/github-api", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api-30364e1b-193c-4929-9dd0-5aab7b47dbb9.json", + "headers": { + "Date": "Thu, 26 Sep 2019 00:11:05 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4991", + "X-RateLimit-Reset": "1569460192", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"afa5bdcd11463905460dc32b4cbac3ba\"", + "Last-Modified": "Wed, 25 Sep 2019 23:37:07 GMT", + "X-OAuth-Scopes": "gist, notifications, read:org, read:public_key, read:repo_hook, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FD24:3764:2322DE:2A315A:5D8C0218" + } + }, + "uuid": "30364e1b-193c-4929-9dd0-5aab7b47dbb9", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getBranch_URLEncoded/mappings/repos_github-api-test-org_github-api_branches_test_urlencode-4-ed8bf5.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getBranch_URLEncoded/mappings/repos_github-api-test-org_github-api_branches_test_urlencode-4-ed8bf5.json new file mode 100644 index 0000000000..fd3245a1c7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getBranch_URLEncoded/mappings/repos_github-api-test-org_github-api_branches_test_urlencode-4-ed8bf5.json @@ -0,0 +1,42 @@ +{ + "id": "ed8bf5ba-65e0-47d8-bb4d-614063828c87", + "name": "repos_github-api-test-org_github-api_branches_test_urlencode", + "request": { + "url": "/repos/github-api-test-org/github-api/branches/test%2F%23UrlEncode", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api_branches_test_urlencode-ed8bf5ba-65e0-47d8-bb4d-614063828c87.json", + "headers": { + "Date": "Thu, 26 Sep 2019 00:11:05 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4990", + "X-RateLimit-Reset": "1569460192", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"70021000b4de67768f66b57bbeead27c\"", + "X-OAuth-Scopes": "gist, notifications, read:org, read:public_key, read:repo_hook, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FD24:3764:2322E4:2A3160:5D8C0219" + } + }, + "uuid": "ed8bf5ba-65e0-47d8-bb4d-614063828c87", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getBranch_URLEncoded/mappings/user-1-c92cdb.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getBranch_URLEncoded/mappings/user-1-c92cdb.json new file mode 100644 index 0000000000..4f883af355 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getBranch_URLEncoded/mappings/user-1-c92cdb.json @@ -0,0 +1,43 @@ +{ + "id": "c92cdb3f-7cae-43ba-bee2-e5aa6863dcbc", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-c92cdb3f-7cae-43ba-bee2-e5aa6863dcbc.json", + "headers": { + "Date": "Thu, 26 Sep 2019 00:11:04 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4994", + "X-RateLimit-Reset": "1569460192", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"14ffd29009ddc2209c450bb29a5a8330\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "gist, notifications, read:org, read:public_key, read:repo_hook, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FD24:3764:2322CA:2A3143:5D8C0218" + } + }, + "uuid": "c92cdb3f-7cae-43ba-bee2-e5aa6863dcbc", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getMergeOptions/__files/repos_github-api-test-org_temp-getmergeoptions-cb893c1a-1c74-4838-b473-342f8c2b8262.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getMergeOptions/__files/repos_github-api-test-org_temp-getmergeoptions-cb893c1a-1c74-4838-b473-342f8c2b8262.json new file mode 100644 index 0000000000..3681e7f787 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getMergeOptions/__files/repos_github-api-test-org_temp-getmergeoptions-cb893c1a-1c74-4838-b473-342f8c2b8262.json @@ -0,0 +1,124 @@ +{ + "id": 214018468, + "node_id": "MDEwOlJlcG9zaXRvcnkyMTQwMTg0Njg=", + "name": "temp-getMergeOptions", + "full_name": "github-api-test-org/temp-getMergeOptions", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/temp-getMergeOptions", + "description": "A test repository for testing the github-api project: temp-getMergeOptions", + "fork": false, + "url": "https://api.github.com/repos/github-api-test-org/temp-getMergeOptions", + "forks_url": "https://api.github.com/repos/github-api-test-org/temp-getMergeOptions/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/temp-getMergeOptions/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/temp-getMergeOptions/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/temp-getMergeOptions/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/temp-getMergeOptions/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/temp-getMergeOptions/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/temp-getMergeOptions/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/temp-getMergeOptions/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/temp-getMergeOptions/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/temp-getMergeOptions/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/temp-getMergeOptions/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/temp-getMergeOptions/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/temp-getMergeOptions/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/temp-getMergeOptions/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/temp-getMergeOptions/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/temp-getMergeOptions/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/temp-getMergeOptions/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/temp-getMergeOptions/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/temp-getMergeOptions/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/temp-getMergeOptions/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/temp-getMergeOptions/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/temp-getMergeOptions/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/temp-getMergeOptions/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/temp-getMergeOptions/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/temp-getMergeOptions/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/temp-getMergeOptions/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/temp-getMergeOptions/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/temp-getMergeOptions/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/temp-getMergeOptions/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/temp-getMergeOptions/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/temp-getMergeOptions/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/temp-getMergeOptions/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/temp-getMergeOptions/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/temp-getMergeOptions/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/temp-getMergeOptions/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/temp-getMergeOptions/deployments", + "created_at": "2019-10-09T20:35:11Z", + "updated_at": "2019-10-09T20:35:16Z", + "pushed_at": "2019-10-09T20:35:13Z", + "git_url": "git://github.com/github-api-test-org/temp-getMergeOptions.git", + "ssh_url": "git@github.com:github-api-test-org/temp-getMergeOptions.git", + "clone_url": "https://github.com/github-api-test-org/temp-getMergeOptions.git", + "svn_url": "https://github.com/github-api-test-org/temp-getMergeOptions", + "homepage": "http://github-api.kohsuke.org/", + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "network_count": 0, + "subscribers_count": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getMergeOptions/__files/user-5d8fe237-9241-4331-8808-0ca2781e48be.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getMergeOptions/__files/user-5d8fe237-9241-4331-8808-0ca2781e48be.json new file mode 100644 index 0000000000..3309be8e1c --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getMergeOptions/__files/user-5d8fe237-9241-4331-8808-0ca2781e48be.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 168, + "public_gists": 5, + "followers": 136, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getMergeOptions/mappings/repos_github-api-test-org_temp-getmergeoptions-2-cb893c.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getMergeOptions/mappings/repos_github-api-test-org_temp-getmergeoptions-2-cb893c.json new file mode 100644 index 0000000000..234196627f --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getMergeOptions/mappings/repos_github-api-test-org_temp-getmergeoptions-2-cb893c.json @@ -0,0 +1,43 @@ +{ + "id": "cb893c1a-1c74-4838-b473-342f8c2b8262", + "name": "repos_github-api-test-org_temp-getmergeoptions", + "request": { + "url": "/repos/github-api-test-org/temp-getMergeOptions", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_temp-getmergeoptions-cb893c1a-1c74-4838-b473-342f8c2b8262.json", + "headers": { + "Date": "Wed, 09 Oct 2019 20:35:17 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4779", + "X-RateLimit-Reset": "1570656117", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"8cf8d178089529a31ec118053dfb2e26\"", + "Last-Modified": "Wed, 09 Oct 2019 20:35:16 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CC9F:3044:A907C9:1358197:5D9E447F" + } + }, + "uuid": "cb893c1a-1c74-4838-b473-342f8c2b8262", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getMergeOptions/mappings/user-1-5d8fe2.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getMergeOptions/mappings/user-1-5d8fe2.json new file mode 100644 index 0000000000..ac31cb2cfe --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getMergeOptions/mappings/user-1-5d8fe2.json @@ -0,0 +1,43 @@ +{ + "id": "5d8fe237-9241-4331-8808-0ca2781e48be", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-5d8fe237-9241-4331-8808-0ca2781e48be.json", + "headers": { + "Date": "Wed, 09 Oct 2019 20:35:11 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4787", + "X-RateLimit-Reset": "1570656117", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"f10545b81d574e5b3170d6ee67e622c7\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CC9F:3044:A90701:135818B:5D9E447E" + } + }, + "uuid": "5d8fe237-9241-4331-8808-0ca2781e48be", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getPermission/__files/orgs_apache-f737f022-de94-4025-89aa-a912b960c50c.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getPermission/__files/orgs_apache-f737f022-de94-4025-89aa-a912b960c50c.json new file mode 100644 index 0000000000..b89a15eb37 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getPermission/__files/orgs_apache-f737f022-de94-4025-89aa-a912b960c50c.json @@ -0,0 +1,30 @@ +{ + "login": "apache", + "id": 47359, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjQ3MzU5", + "url": "https://api.github.com/orgs/apache", + "repos_url": "https://api.github.com/orgs/apache/repos", + "events_url": "https://api.github.com/orgs/apache/events", + "hooks_url": "https://api.github.com/orgs/apache/hooks", + "issues_url": "https://api.github.com/orgs/apache/issues", + "members_url": "https://api.github.com/orgs/apache/members{/member}", + "public_members_url": "https://api.github.com/orgs/apache/public_members{/member}", + "avatar_url": "https://avatars0.githubusercontent.com/u/47359?v=4", + "description": "", + "name": "The Apache Software Foundation", + "company": null, + "blog": "https://www.apache.org/", + "location": null, + "email": null, + "is_verified": true, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 1855, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/apache", + "created_at": "2009-01-17T20:14:40Z", + "updated_at": "2019-09-12T14:26:07Z", + "type": "Organization" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getPermission/__files/repos_apache_groovy-cc8d8558-cd64-41fb-bdc6-37ff181eb321.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getPermission/__files/repos_apache_groovy-cc8d8558-cd64-41fb-bdc6-37ff181eb321.json new file mode 100644 index 0000000000..6c96c0d4de --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getPermission/__files/repos_apache_groovy-cc8d8558-cd64-41fb-bdc6-37ff181eb321.json @@ -0,0 +1,127 @@ +{ + "id": 34039690, + "node_id": "MDEwOlJlcG9zaXRvcnkzNDAzOTY5MA==", + "name": "groovy", + "full_name": "apache/groovy", + "private": false, + "owner": { + "login": "apache", + "id": 47359, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjQ3MzU5", + "avatar_url": "https://avatars0.githubusercontent.com/u/47359?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/apache", + "html_url": "https://github.com/apache", + "followers_url": "https://api.github.com/users/apache/followers", + "following_url": "https://api.github.com/users/apache/following{/other_user}", + "gists_url": "https://api.github.com/users/apache/gists{/gist_id}", + "starred_url": "https://api.github.com/users/apache/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/apache/subscriptions", + "organizations_url": "https://api.github.com/users/apache/orgs", + "repos_url": "https://api.github.com/users/apache/repos", + "events_url": "https://api.github.com/users/apache/events{/privacy}", + "received_events_url": "https://api.github.com/users/apache/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/apache/groovy", + "description": "Mirror of Apache Groovy", + "fork": false, + "url": "https://api.github.com/repos/apache/groovy", + "forks_url": "https://api.github.com/repos/apache/groovy/forks", + "keys_url": "https://api.github.com/repos/apache/groovy/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/apache/groovy/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/apache/groovy/teams", + "hooks_url": "https://api.github.com/repos/apache/groovy/hooks", + "issue_events_url": "https://api.github.com/repos/apache/groovy/issues/events{/number}", + "events_url": "https://api.github.com/repos/apache/groovy/events", + "assignees_url": "https://api.github.com/repos/apache/groovy/assignees{/user}", + "branches_url": "https://api.github.com/repos/apache/groovy/branches{/branch}", + "tags_url": "https://api.github.com/repos/apache/groovy/tags", + "blobs_url": "https://api.github.com/repos/apache/groovy/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/apache/groovy/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/apache/groovy/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/apache/groovy/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/apache/groovy/statuses/{sha}", + "languages_url": "https://api.github.com/repos/apache/groovy/languages", + "stargazers_url": "https://api.github.com/repos/apache/groovy/stargazers", + "contributors_url": "https://api.github.com/repos/apache/groovy/contributors", + "subscribers_url": "https://api.github.com/repos/apache/groovy/subscribers", + "subscription_url": "https://api.github.com/repos/apache/groovy/subscription", + "commits_url": "https://api.github.com/repos/apache/groovy/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/apache/groovy/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/apache/groovy/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/apache/groovy/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/apache/groovy/contents/{+path}", + "compare_url": "https://api.github.com/repos/apache/groovy/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/apache/groovy/merges", + "archive_url": "https://api.github.com/repos/apache/groovy/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/apache/groovy/downloads", + "issues_url": "https://api.github.com/repos/apache/groovy/issues{/number}", + "pulls_url": "https://api.github.com/repos/apache/groovy/pulls{/number}", + "milestones_url": "https://api.github.com/repos/apache/groovy/milestones{/number}", + "notifications_url": "https://api.github.com/repos/apache/groovy/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/apache/groovy/labels{/name}", + "releases_url": "https://api.github.com/repos/apache/groovy/releases{/id}", + "deployments_url": "https://api.github.com/repos/apache/groovy/deployments", + "created_at": "2015-04-16T07:00:05Z", + "updated_at": "2019-10-03T17:47:09Z", + "pushed_at": "2019-10-03T17:47:06Z", + "git_url": "git://github.com/apache/groovy.git", + "ssh_url": "git@github.com:apache/groovy.git", + "clone_url": "https://github.com/apache/groovy.git", + "svn_url": "https://github.com/apache/groovy", + "homepage": "", + "size": 180223, + "stargazers_count": 3406, + "watchers_count": 3406, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1300, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 18, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "forks": 1300, + "open_issues": 18, + "watchers": 3406, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + }, + "organization": { + "login": "apache", + "id": 47359, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjQ3MzU5", + "avatar_url": "https://avatars0.githubusercontent.com/u/47359?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/apache", + "html_url": "https://github.com/apache", + "followers_url": "https://api.github.com/users/apache/followers", + "following_url": "https://api.github.com/users/apache/following{/other_user}", + "gists_url": "https://api.github.com/users/apache/gists{/gist_id}", + "starred_url": "https://api.github.com/users/apache/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/apache/subscriptions", + "organizations_url": "https://api.github.com/users/apache/orgs", + "repos_url": "https://api.github.com/users/apache/repos", + "events_url": "https://api.github.com/users/apache/events{/privacy}", + "received_events_url": "https://api.github.com/users/apache/received_events", + "type": "Organization", + "site_admin": false + }, + "network_count": 1300, + "subscribers_count": 232 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getPermission/__files/repos_github-api-test-org_test-permission-4976af4f-68c3-4057-a201-3d498f842bd5.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getPermission/__files/repos_github-api-test-org_test-permission-4976af4f-68c3-4057-a201-3d498f842bd5.json new file mode 100644 index 0000000000..ac23865b5d --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getPermission/__files/repos_github-api-test-org_test-permission-4976af4f-68c3-4057-a201-3d498f842bd5.json @@ -0,0 +1,124 @@ +{ + "id": 78481711, + "node_id": "MDEwOlJlcG9zaXRvcnk3ODQ4MTcxMQ==", + "name": "test-permission", + "full_name": "github-api-test-org/test-permission", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/test-permission", + "description": "RepositoryTest#getPermission() test fixture", + "fork": false, + "url": "https://api.github.com/repos/github-api-test-org/test-permission", + "forks_url": "https://api.github.com/repos/github-api-test-org/test-permission/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/test-permission/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/test-permission/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/test-permission/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/test-permission/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/test-permission/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/test-permission/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/test-permission/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/test-permission/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/test-permission/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/test-permission/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/test-permission/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/test-permission/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/test-permission/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/test-permission/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/test-permission/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/test-permission/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/test-permission/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/test-permission/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/test-permission/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/test-permission/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/test-permission/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/test-permission/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/test-permission/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/test-permission/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/test-permission/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/test-permission/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/test-permission/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/test-permission/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/test-permission/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/test-permission/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/test-permission/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/test-permission/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/test-permission/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/test-permission/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/test-permission/deployments", + "created_at": "2017-01-10T00:22:47Z", + "updated_at": "2017-01-10T00:22:47Z", + "pushed_at": "2017-01-10T00:22:48Z", + "git_url": "git://github.com/github-api-test-org/test-permission.git", + "ssh_url": "git@github.com:github-api-test-org/test-permission.git", + "clone_url": "https://github.com/github-api-test-org/test-permission.git", + "svn_url": "https://github.com/github-api-test-org/test-permission", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "network_count": 0, + "subscribers_count": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getPermission/__files/repos_github-api-test-org_test-permission_collaborators_dude_permission-665c4060-0f62-4490-b41c-88943cc0e008.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getPermission/__files/repos_github-api-test-org_test-permission_collaborators_dude_permission-665c4060-0f62-4490-b41c-88943cc0e008.json new file mode 100644 index 0000000000..4a0da4f4e6 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getPermission/__files/repos_github-api-test-org_test-permission_collaborators_dude_permission-665c4060-0f62-4490-b41c-88943cc0e008.json @@ -0,0 +1,23 @@ +{ + "permission": "read", + "user": { + "login": "dude", + "id": 60431, + "node_id": "MDQ6VXNlcjYwNDMx", + "avatar_url": "https://avatars1.githubusercontent.com/u/60431?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dude", + "html_url": "https://github.com/dude", + "followers_url": "https://api.github.com/users/dude/followers", + "following_url": "https://api.github.com/users/dude/following{/other_user}", + "gists_url": "https://api.github.com/users/dude/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dude/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dude/subscriptions", + "organizations_url": "https://api.github.com/users/dude/orgs", + "repos_url": "https://api.github.com/users/dude/repos", + "events_url": "https://api.github.com/users/dude/events{/privacy}", + "received_events_url": "https://api.github.com/users/dude/received_events", + "type": "User", + "site_admin": false + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getPermission/__files/repos_github-api-test-org_test-permission_collaborators_kohsuke_permission-8dd9fa47-74b9-42b8-b50e-cb0f13a842fb.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getPermission/__files/repos_github-api-test-org_test-permission_collaborators_kohsuke_permission-8dd9fa47-74b9-42b8-b50e-cb0f13a842fb.json new file mode 100644 index 0000000000..a0480a5202 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getPermission/__files/repos_github-api-test-org_test-permission_collaborators_kohsuke_permission-8dd9fa47-74b9-42b8-b50e-cb0f13a842fb.json @@ -0,0 +1,23 @@ +{ + "permission": "admin", + "user": { + "login": "kohsuke", + "id": 50003, + "node_id": "MDQ6VXNlcjUwMDAz", + "avatar_url": "https://avatars1.githubusercontent.com/u/50003?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kohsuke", + "html_url": "https://github.com/kohsuke", + "followers_url": "https://api.github.com/users/kohsuke/followers", + "following_url": "https://api.github.com/users/kohsuke/following{/other_user}", + "gists_url": "https://api.github.com/users/kohsuke/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kohsuke/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kohsuke/subscriptions", + "organizations_url": "https://api.github.com/users/kohsuke/orgs", + "repos_url": "https://api.github.com/users/kohsuke/repos", + "events_url": "https://api.github.com/users/kohsuke/events{/privacy}", + "received_events_url": "https://api.github.com/users/kohsuke/received_events", + "type": "User", + "site_admin": false + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getPermission/__files/user-01e35abe-08e1-4af9-b88b-3a9f87603970.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getPermission/__files/user-01e35abe-08e1-4af9-b88b-3a9f87603970.json new file mode 100644 index 0000000000..39d6c8353e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getPermission/__files/user-01e35abe-08e1-4af9-b88b-3a9f87603970.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 167, + "public_gists": 4, + "followers": 136, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getPermission/mappings/orgs_apache-5-f737f0.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getPermission/mappings/orgs_apache-5-f737f0.json new file mode 100644 index 0000000000..ab209fa057 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getPermission/mappings/orgs_apache-5-f737f0.json @@ -0,0 +1,43 @@ +{ + "id": "f737f022-de94-4025-89aa-a912b960c50c", + "name": "orgs_apache", + "request": { + "url": "/orgs/apache", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_apache-f737f022-de94-4025-89aa-a912b960c50c.json", + "headers": { + "Date": "Thu, 03 Oct 2019 18:56:01 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4929", + "X-RateLimit-Reset": "1570132527", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"601b266d8a980befe3f42915ef4d8096\"", + "Last-Modified": "Thu, 12 Sep 2019 14:26:07 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F34D:361D:FDE3C1:12E5FA3:5D964440" + } + }, + "uuid": "f737f022-de94-4025-89aa-a912b960c50c", + "persistent": true, + "insertionIndex": 5 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getPermission/mappings/repos_apache_groovy-6-cc8d85.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getPermission/mappings/repos_apache_groovy-6-cc8d85.json new file mode 100644 index 0000000000..19d616077e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getPermission/mappings/repos_apache_groovy-6-cc8d85.json @@ -0,0 +1,43 @@ +{ + "id": "cc8d8558-cd64-41fb-bdc6-37ff181eb321", + "name": "repos_apache_groovy", + "request": { + "url": "/repos/apache/groovy", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_apache_groovy-cc8d8558-cd64-41fb-bdc6-37ff181eb321.json", + "headers": { + "Date": "Thu, 03 Oct 2019 18:56:01 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4928", + "X-RateLimit-Reset": "1570132527", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"c0e7fd54085753a51bf79e173ba57221\"", + "Last-Modified": "Thu, 03 Oct 2019 17:47:09 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F34D:361D:FDE3CE:12E5FBE:5D964441" + } + }, + "uuid": "cc8d8558-cd64-41fb-bdc6-37ff181eb321", + "persistent": true, + "insertionIndex": 6 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getPermission/mappings/repos_apache_groovy_collaborators_jglick_permission-7-61ff8c.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getPermission/mappings/repos_apache_groovy_collaborators_jglick_permission-7-61ff8c.json new file mode 100644 index 0000000000..21283e0006 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getPermission/mappings/repos_apache_groovy_collaborators_jglick_permission-7-61ff8c.json @@ -0,0 +1,36 @@ +{ + "id": "61ff8c35-242d-4646-87da-eb0582723425", + "name": "repos_apache_groovy_collaborators_jglick_permission", + "request": { + "url": "/repos/apache/groovy/collaborators/jglick/permission", + "method": "GET" + }, + "response": { + "status": 403, + "body": "{\"message\":\"Must have push access to view collaborator permission.\",\"documentation_url\":\"https://developer.github.com/v3/repos/collaborators/#review-a-users-permission-level\"}", + "headers": { + "Date": "Thu, 03 Oct 2019 18:56:02 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "403 Forbidden", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4927", + "X-RateLimit-Reset": "1570132527", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F34D:361D:FDE42F:12E6013:5D964441" + } + }, + "uuid": "61ff8c35-242d-4646-87da-eb0582723425", + "persistent": true, + "insertionIndex": 7 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getPermission/mappings/repos_github-api-test-org_test-permission-2-4976af.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getPermission/mappings/repos_github-api-test-org_test-permission-2-4976af.json new file mode 100644 index 0000000000..a16a186309 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getPermission/mappings/repos_github-api-test-org_test-permission-2-4976af.json @@ -0,0 +1,43 @@ +{ + "id": "4976af4f-68c3-4057-a201-3d498f842bd5", + "name": "repos_github-api-test-org_test-permission", + "request": { + "url": "/repos/github-api-test-org/test-permission", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_test-permission-4976af4f-68c3-4057-a201-3d498f842bd5.json", + "headers": { + "Date": "Thu, 03 Oct 2019 18:56:00 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4932", + "X-RateLimit-Reset": "1570132527", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"88f53ff51ed20a6591f9711690202081\"", + "Last-Modified": "Tue, 10 Jan 2017 00:22:47 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F34D:361D:FDE381:12E5F33:5D96443F" + } + }, + "uuid": "4976af4f-68c3-4057-a201-3d498f842bd5", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getPermission/mappings/repos_github-api-test-org_test-permission_collaborators_dude_permission-4-665c40.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getPermission/mappings/repos_github-api-test-org_test-permission_collaborators_dude_permission-4-665c40.json new file mode 100644 index 0000000000..bee393c814 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getPermission/mappings/repos_github-api-test-org_test-permission_collaborators_dude_permission-4-665c40.json @@ -0,0 +1,42 @@ +{ + "id": "665c4060-0f62-4490-b41c-88943cc0e008", + "name": "repos_github-api-test-org_test-permission_collaborators_dude_permission", + "request": { + "url": "/repos/github-api-test-org/test-permission/collaborators/dude/permission", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_test-permission_collaborators_dude_permission-665c4060-0f62-4490-b41c-88943cc0e008.json", + "headers": { + "Date": "Thu, 03 Oct 2019 18:56:00 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4930", + "X-RateLimit-Reset": "1570132527", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"5f7a2ed33712680c7d7228a3ccdcfb2f\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F34D:361D:FDE39C:12E5F72:5D964440" + } + }, + "uuid": "665c4060-0f62-4490-b41c-88943cc0e008", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getPermission/mappings/repos_github-api-test-org_test-permission_collaborators_kohsuke_permission-3-8dd9fa.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getPermission/mappings/repos_github-api-test-org_test-permission_collaborators_kohsuke_permission-3-8dd9fa.json new file mode 100644 index 0000000000..277a7c82a7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getPermission/mappings/repos_github-api-test-org_test-permission_collaborators_kohsuke_permission-3-8dd9fa.json @@ -0,0 +1,42 @@ +{ + "id": "8dd9fa47-74b9-42b8-b50e-cb0f13a842fb", + "name": "repos_github-api-test-org_test-permission_collaborators_kohsuke_permission", + "request": { + "url": "/repos/github-api-test-org/test-permission/collaborators/kohsuke/permission", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_test-permission_collaborators_kohsuke_permission-8dd9fa47-74b9-42b8-b50e-cb0f13a842fb.json", + "headers": { + "Date": "Thu, 03 Oct 2019 18:56:00 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4931", + "X-RateLimit-Reset": "1570132527", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"02c56ee4cf923b6990fe067d91b50165\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F34D:361D:FDE393:12E5F62:5D964440" + } + }, + "uuid": "8dd9fa47-74b9-42b8-b50e-cb0f13a842fb", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getPermission/mappings/user-1-01e35a.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getPermission/mappings/user-1-01e35a.json new file mode 100644 index 0000000000..0371c71da3 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getPermission/mappings/user-1-01e35a.json @@ -0,0 +1,43 @@ +{ + "id": "01e35abe-08e1-4af9-b88b-3a9f87603970", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-01e35abe-08e1-4af9-b88b-3a9f87603970.json", + "headers": { + "Date": "Thu, 03 Oct 2019 18:55:59 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4934", + "X-RateLimit-Reset": "1570132527", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"cf6199fecf47b59c42190e1e11147ee2\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F34D:361D:FDE357:12E5F22:5D96443F" + } + }, + "uuid": "01e35abe-08e1-4af9-b88b-3a9f87603970", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseByTagNameDoesNotExist/__files/orgs_github-api-test-org-f2bd68e9-de30-4416-a2ed-8674710a5ff7.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseByTagNameDoesNotExist/__files/orgs_github-api-test-org-f2bd68e9-de30-4416-a2ed-8674710a5ff7.json new file mode 100644 index 0000000000..5605b36c3d --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseByTagNameDoesNotExist/__files/orgs_github-api-test-org-f2bd68e9-de30-4416-a2ed-8674710a5ff7.json @@ -0,0 +1,41 @@ +{ + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "url": "https://api.github.com/orgs/github-api-test-org", + "repos_url": "https://api.github.com/orgs/github-api-test-org/repos", + "events_url": "https://api.github.com/orgs/github-api-test-org/events", + "hooks_url": "https://api.github.com/orgs/github-api-test-org/hooks", + "issues_url": "https://api.github.com/orgs/github-api-test-org/issues", + "members_url": "https://api.github.com/orgs/github-api-test-org/members{/member}", + "public_members_url": "https://api.github.com/orgs/github-api-test-org/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "description": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 10, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/github-api-test-org", + "created_at": "2014-05-10T19:39:11Z", + "updated_at": "2015-04-20T00:42:30Z", + "type": "Organization", + "total_private_repos": 0, + "owned_private_repos": 0, + "private_gists": 0, + "disk_usage": 132, + "collaborators": 0, + "billing_email": "kk@kohsuke.org", + "default_repository_permission": "none", + "members_can_create_repositories": false, + "two_factor_requirement_enabled": false, + "plan": { + "name": "free", + "space": 976562499, + "private_repos": 0, + "filled_seats": 3, + "seats": 0 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseByTagNameDoesNotExist/__files/repos_github-api-test-org_github-api-c19ba509-63bb-424a-83d7-c308b7d42c35.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseByTagNameDoesNotExist/__files/repos_github-api-test-org_github-api-c19ba509-63bb-424a-83d7-c308b7d42c35.json new file mode 100644 index 0000000000..e3ed63d52e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseByTagNameDoesNotExist/__files/repos_github-api-test-org_github-api-c19ba509-63bb-424a-83d7-c308b7d42c35.json @@ -0,0 +1,330 @@ +{ + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Tricky", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-30T22:36:47Z", + "pushed_at": "2019-09-26T00:06:54Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11391, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "parent": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-10-03T09:41:10Z", + "pushed_at": "2019-10-02T22:27:45Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11899, + "stargazers_count": 557, + "watchers_count": 557, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 428, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 90, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 428, + "open_issues": 90, + "watchers": 557, + "default_branch": "master" + }, + "source": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-10-03T09:41:10Z", + "pushed_at": "2019-10-02T22:27:45Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11899, + "stargazers_count": 557, + "watchers_count": 557, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 428, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 90, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 428, + "open_issues": 90, + "watchers": 557, + "default_branch": "master" + }, + "network_count": 428, + "subscribers_count": 0 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseByTagNameDoesNotExist/__files/user-c36cc5db-11f3-4ba4-a6c0-d7b45353121f.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseByTagNameDoesNotExist/__files/user-c36cc5db-11f3-4ba4-a6c0-d7b45353121f.json new file mode 100644 index 0000000000..39d6c8353e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseByTagNameDoesNotExist/__files/user-c36cc5db-11f3-4ba4-a6c0-d7b45353121f.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 167, + "public_gists": 4, + "followers": 136, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseByTagNameDoesNotExist/mappings/orgs_github-api-test-org-2-f2bd68.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseByTagNameDoesNotExist/mappings/orgs_github-api-test-org-2-f2bd68.json new file mode 100644 index 0000000000..302936c928 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseByTagNameDoesNotExist/mappings/orgs_github-api-test-org-2-f2bd68.json @@ -0,0 +1,43 @@ +{ + "id": "f2bd68e9-de30-4416-a2ed-8674710a5ff7", + "name": "orgs_github-api-test-org", + "request": { + "url": "/orgs/github-api-test-org", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_github-api-test-org-f2bd68e9-de30-4416-a2ed-8674710a5ff7.json", + "headers": { + "Date": "Thu, 03 Oct 2019 18:56:11 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4886", + "X-RateLimit-Reset": "1570132527", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"1f1da50f358ccc41c1f6f864b3de2798\"", + "Last-Modified": "Mon, 20 Apr 2015 00:42:30 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F36C:78ED:14A1D49:188DB68:5D96444B" + } + }, + "uuid": "f2bd68e9-de30-4416-a2ed-8674710a5ff7", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseByTagNameDoesNotExist/mappings/repos_github-api-test-org_github-api-3-c19ba5.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseByTagNameDoesNotExist/mappings/repos_github-api-test-org_github-api-3-c19ba5.json new file mode 100644 index 0000000000..65cc9e941b --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseByTagNameDoesNotExist/mappings/repos_github-api-test-org_github-api-3-c19ba5.json @@ -0,0 +1,43 @@ +{ + "id": "c19ba509-63bb-424a-83d7-c308b7d42c35", + "name": "repos_github-api-test-org_github-api", + "request": { + "url": "/repos/github-api-test-org/github-api", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api-c19ba509-63bb-424a-83d7-c308b7d42c35.json", + "headers": { + "Date": "Thu, 03 Oct 2019 18:56:11 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4885", + "X-RateLimit-Reset": "1570132527", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"f2e5ff84c604193d0199f717285eac5e\"", + "Last-Modified": "Mon, 30 Sep 2019 22:36:47 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F36C:78ED:14A1D64:188DBA1:5D96444B" + } + }, + "uuid": "c19ba509-63bb-424a-83d7-c308b7d42c35", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseByTagNameDoesNotExist/mappings/repos_github-api-test-org_github-api_releases_tags_foo-bar-baz-4-3ac213.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseByTagNameDoesNotExist/mappings/repos_github-api-test-org_github-api_releases_tags_foo-bar-baz-4-3ac213.json new file mode 100644 index 0000000000..bb5b8b0d21 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseByTagNameDoesNotExist/mappings/repos_github-api-test-org_github-api_releases_tags_foo-bar-baz-4-3ac213.json @@ -0,0 +1,36 @@ +{ + "id": "3ac213d4-9ced-41cf-bedf-d18f28dcb37e", + "name": "repos_github-api-test-org_github-api_releases_tags_foo-bar-baz", + "request": { + "url": "/repos/github-api-test-org/github-api/releases/tags/foo-bar-baz", + "method": "GET" + }, + "response": { + "status": 404, + "body": "{\"message\":\"Not Found\",\"documentation_url\":\"https://developer.github.com/v3/repos/releases/#get-a-release-by-tag-name\"}", + "headers": { + "Date": "Thu, 03 Oct 2019 18:56:12 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4884", + "X-RateLimit-Reset": "1570132527", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F36C:78ED:14A1DA3:188DBCD:5D96444B" + } + }, + "uuid": "3ac213d4-9ced-41cf-bedf-d18f28dcb37e", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseByTagNameDoesNotExist/mappings/user-1-c36cc5.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseByTagNameDoesNotExist/mappings/user-1-c36cc5.json new file mode 100644 index 0000000000..e73fe4c83f --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseByTagNameDoesNotExist/mappings/user-1-c36cc5.json @@ -0,0 +1,43 @@ +{ + "id": "c36cc5db-11f3-4ba4-a6c0-d7b45353121f", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-c36cc5db-11f3-4ba4-a6c0-d7b45353121f.json", + "headers": { + "Date": "Thu, 03 Oct 2019 18:56:11 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4888", + "X-RateLimit-Reset": "1570132527", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"cf6199fecf47b59c42190e1e11147ee2\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F36C:78ED:14A1D26:188DB55:5D96444B" + } + }, + "uuid": "c36cc5db-11f3-4ba4-a6c0-d7b45353121f", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseByTagNameExists/__files/orgs_github-8cbc3a4c-9afe-4ab9-a5d6-0b375b5d889c.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseByTagNameExists/__files/orgs_github-8cbc3a4c-9afe-4ab9-a5d6-0b375b5d889c.json new file mode 100644 index 0000000000..12ec736a6a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseByTagNameExists/__files/orgs_github-8cbc3a4c-9afe-4ab9-a5d6-0b375b5d889c.json @@ -0,0 +1,30 @@ +{ + "login": "github", + "id": 9919, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjk5MTk=", + "url": "https://api.github.com/orgs/github", + "repos_url": "https://api.github.com/orgs/github/repos", + "events_url": "https://api.github.com/orgs/github/events", + "hooks_url": "https://api.github.com/orgs/github/hooks", + "issues_url": "https://api.github.com/orgs/github/issues", + "members_url": "https://api.github.com/orgs/github/members{/member}", + "public_members_url": "https://api.github.com/orgs/github/public_members{/member}", + "avatar_url": "https://avatars1.githubusercontent.com/u/9919?v=4", + "description": "How people build software.", + "name": "GitHub", + "company": null, + "blog": "https://github.com/about", + "location": "San Francisco, CA", + "email": "support@github.com", + "is_verified": true, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 314, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/github", + "created_at": "2008-05-11T04:37:31Z", + "updated_at": "2019-07-15T14:26:15Z", + "type": "Organization" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseByTagNameExists/__files/repos_github_hub-fc521132-c82c-4c40-a60a-a60b17884999.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseByTagNameExists/__files/repos_github_hub-fc521132-c82c-4c40-a60a-a60b17884999.json new file mode 100644 index 0000000000..56ed61dd63 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseByTagNameExists/__files/repos_github_hub-fc521132-c82c-4c40-a60a-a60b17884999.json @@ -0,0 +1,127 @@ +{ + "id": 401025, + "node_id": "MDEwOlJlcG9zaXRvcnk0MDEwMjU=", + "name": "hub", + "full_name": "github/hub", + "private": false, + "owner": { + "login": "github", + "id": 9919, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjk5MTk=", + "avatar_url": "https://avatars1.githubusercontent.com/u/9919?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github", + "html_url": "https://github.com/github", + "followers_url": "https://api.github.com/users/github/followers", + "following_url": "https://api.github.com/users/github/following{/other_user}", + "gists_url": "https://api.github.com/users/github/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github/subscriptions", + "organizations_url": "https://api.github.com/users/github/orgs", + "repos_url": "https://api.github.com/users/github/repos", + "events_url": "https://api.github.com/users/github/events{/privacy}", + "received_events_url": "https://api.github.com/users/github/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github/hub", + "description": "A command-line tool that makes git easier to use with GitHub.", + "fork": false, + "url": "https://api.github.com/repos/github/hub", + "forks_url": "https://api.github.com/repos/github/hub/forks", + "keys_url": "https://api.github.com/repos/github/hub/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github/hub/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github/hub/teams", + "hooks_url": "https://api.github.com/repos/github/hub/hooks", + "issue_events_url": "https://api.github.com/repos/github/hub/issues/events{/number}", + "events_url": "https://api.github.com/repos/github/hub/events", + "assignees_url": "https://api.github.com/repos/github/hub/assignees{/user}", + "branches_url": "https://api.github.com/repos/github/hub/branches{/branch}", + "tags_url": "https://api.github.com/repos/github/hub/tags", + "blobs_url": "https://api.github.com/repos/github/hub/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github/hub/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github/hub/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github/hub/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github/hub/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github/hub/languages", + "stargazers_url": "https://api.github.com/repos/github/hub/stargazers", + "contributors_url": "https://api.github.com/repos/github/hub/contributors", + "subscribers_url": "https://api.github.com/repos/github/hub/subscribers", + "subscription_url": "https://api.github.com/repos/github/hub/subscription", + "commits_url": "https://api.github.com/repos/github/hub/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github/hub/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github/hub/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github/hub/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github/hub/contents/{+path}", + "compare_url": "https://api.github.com/repos/github/hub/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github/hub/merges", + "archive_url": "https://api.github.com/repos/github/hub/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github/hub/downloads", + "issues_url": "https://api.github.com/repos/github/hub/issues{/number}", + "pulls_url": "https://api.github.com/repos/github/hub/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github/hub/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github/hub/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github/hub/labels{/name}", + "releases_url": "https://api.github.com/repos/github/hub/releases{/id}", + "deployments_url": "https://api.github.com/repos/github/hub/deployments", + "created_at": "2009-12-05T22:15:25Z", + "updated_at": "2019-10-03T16:34:37Z", + "pushed_at": "2019-10-03T15:09:24Z", + "git_url": "git://github.com/github/hub.git", + "ssh_url": "git@github.com:github/hub.git", + "clone_url": "https://github.com/github/hub.git", + "svn_url": "https://github.com/github/hub", + "homepage": "https://hub.github.com/", + "size": 6657, + "stargazers_count": 17507, + "watchers_count": 17507, + "language": "Go", + "has_issues": true, + "has_projects": true, + "has_downloads": false, + "has_wiki": false, + "has_pages": true, + "forks_count": 1820, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 210, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1820, + "open_issues": 210, + "watchers": 17507, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + }, + "organization": { + "login": "github", + "id": 9919, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjk5MTk=", + "avatar_url": "https://avatars1.githubusercontent.com/u/9919?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github", + "html_url": "https://github.com/github", + "followers_url": "https://api.github.com/users/github/followers", + "following_url": "https://api.github.com/users/github/following{/other_user}", + "gists_url": "https://api.github.com/users/github/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github/subscriptions", + "organizations_url": "https://api.github.com/users/github/orgs", + "repos_url": "https://api.github.com/users/github/repos", + "events_url": "https://api.github.com/users/github/events{/privacy}", + "received_events_url": "https://api.github.com/users/github/received_events", + "type": "Organization", + "site_admin": false + }, + "network_count": 1820, + "subscribers_count": 342 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseByTagNameExists/__files/repos_github_hub_releases_tags_v230-pre10-dcb217dc-3403-4785-b4cc-72b425ff89bc.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseByTagNameExists/__files/repos_github_hub_releases_tags_v230-pre10-dcb217dc-3403-4785-b4cc-72b425ff89bc.json new file mode 100644 index 0000000000..199212e2be --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseByTagNameExists/__files/repos_github_hub_releases_tags_v230-pre10-dcb217dc-3403-4785-b4cc-72b425ff89bc.json @@ -0,0 +1,278 @@ +{ + "url": "https://api.github.com/repos/github/hub/releases/6839710", + "assets_url": "https://api.github.com/repos/github/hub/releases/6839710/assets", + "upload_url": "https://uploads.github.com/repos/github/hub/releases/6839710/assets{?name,label}", + "html_url": "https://github.com/github/hub/releases/tag/v2.3.0-pre10", + "id": 6839710, + "node_id": "MDc6UmVsZWFzZTY4Mzk3MTA=", + "tag_name": "v2.3.0-pre10", + "target_commitish": "master", + "name": "hub 2.3.0-pre10", + "draft": false, + "author": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "prerelease": true, + "created_at": "2017-06-26T18:23:46Z", + "published_at": "2017-06-26T21:26:01Z", + "assets": [ + { + "url": "https://api.github.com/repos/github/hub/releases/assets/4187895", + "id": 4187895, + "node_id": "MDEyOlJlbGVhc2VBc3NldDQxODc4OTU=", + "name": "hub-darwin-amd64-2.3.0-pre10.tgz", + "label": "hub 2.3.0-pre10 for OS X", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 3101461, + "download_count": 7759, + "created_at": "2017-06-26T18:35:45Z", + "updated_at": "2017-06-26T18:35:45Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.3.0-pre10/hub-darwin-amd64-2.3.0-pre10.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/4187896", + "id": 4187896, + "node_id": "MDEyOlJlbGVhc2VBc3NldDQxODc4OTY=", + "name": "hub-freebsd-386-2.3.0-pre10.tgz", + "label": "hub 2.3.0-pre10 for FreeBSD 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 2923833, + "download_count": 36, + "created_at": "2017-06-26T18:35:45Z", + "updated_at": "2017-06-26T18:35:46Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.3.0-pre10/hub-freebsd-386-2.3.0-pre10.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/4187897", + "id": 4187897, + "node_id": "MDEyOlJlbGVhc2VBc3NldDQxODc4OTc=", + "name": "hub-freebsd-amd64-2.3.0-pre10.tgz", + "label": "hub 2.3.0-pre10 for FreeBSD 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 3113988, + "download_count": 92, + "created_at": "2017-06-26T18:35:46Z", + "updated_at": "2017-06-26T18:35:46Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.3.0-pre10/hub-freebsd-amd64-2.3.0-pre10.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/4187898", + "id": 4187898, + "node_id": "MDEyOlJlbGVhc2VBc3NldDQxODc4OTg=", + "name": "hub-linux-386-2.3.0-pre10.tgz", + "label": "hub 2.3.0-pre10 for Linux 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 2921732, + "download_count": 2255, + "created_at": "2017-06-26T18:35:46Z", + "updated_at": "2017-06-26T18:35:46Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.3.0-pre10/hub-linux-386-2.3.0-pre10.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/4187899", + "id": 4187899, + "node_id": "MDEyOlJlbGVhc2VBc3NldDQxODc4OTk=", + "name": "hub-linux-amd64-2.3.0-pre10.tgz", + "label": "hub 2.3.0-pre10 for Linux 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 3138535, + "download_count": 329639, + "created_at": "2017-06-26T18:35:46Z", + "updated_at": "2017-06-26T18:35:47Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.3.0-pre10/hub-linux-amd64-2.3.0-pre10.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/4187900", + "id": 4187900, + "node_id": "MDEyOlJlbGVhc2VBc3NldDQxODc5MDA=", + "name": "hub-linux-arm-2.3.0-pre10.tgz", + "label": "hub 2.3.0-pre10 for Linux ARM 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 2907034, + "download_count": 472, + "created_at": "2017-06-26T18:35:47Z", + "updated_at": "2017-06-26T18:35:48Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.3.0-pre10/hub-linux-arm-2.3.0-pre10.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/4187901", + "id": 4187901, + "node_id": "MDEyOlJlbGVhc2VBc3NldDQxODc5MDE=", + "name": "hub-linux-arm64-2.3.0-pre10.tgz", + "label": "hub 2.3.0-pre10 for Linux ARM 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 2906053, + "download_count": 242, + "created_at": "2017-06-26T18:35:48Z", + "updated_at": "2017-06-26T18:35:48Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.3.0-pre10/hub-linux-arm64-2.3.0-pre10.tgz" + } + ], + "tarball_url": "https://api.github.com/repos/github/hub/tarball/v2.3.0-pre10", + "zipball_url": "https://api.github.com/repos/github/hub/zipball/v2.3.0-pre10", + "body": "* Add `hub release --exclude-prereleases`\r\n* Add `hub fork --remote-name=NAME`\r\n* Add `hub pr checkout 123` as alternative to `hub checkout https://github.com/OWNER/REPO/pull/123`\r\n* Add `hub pull-request -r PERSON1,PERSON2` to request reviewers\r\n* Avoid warning message from vim when stdin was piped to `hub pull-request` or `hub issue create`\r\n* Fix crash in `WorkdirName` when within bare git repo\r\n* Fix `git --(exec|html|man|info)-path`\r\n* Show hub version even if `git version` fails\r\n" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseByTagNameExists/__files/user-87c44ef0-9caf-4dcb-b261-9ddd517c941a.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseByTagNameExists/__files/user-87c44ef0-9caf-4dcb-b261-9ddd517c941a.json new file mode 100644 index 0000000000..39d6c8353e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseByTagNameExists/__files/user-87c44ef0-9caf-4dcb-b261-9ddd517c941a.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 167, + "public_gists": 4, + "followers": 136, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseByTagNameExists/mappings/orgs_github-2-8cbc3a.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseByTagNameExists/mappings/orgs_github-2-8cbc3a.json new file mode 100644 index 0000000000..3ff040bc61 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseByTagNameExists/mappings/orgs_github-2-8cbc3a.json @@ -0,0 +1,43 @@ +{ + "id": "8cbc3a4c-9afe-4ab9-a5d6-0b375b5d889c", + "name": "orgs_github", + "request": { + "url": "/orgs/github", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_github-8cbc3a4c-9afe-4ab9-a5d6-0b375b5d889c.json", + "headers": { + "Date": "Thu, 03 Oct 2019 18:56:05 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4913", + "X-RateLimit-Reset": "1570132527", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"a94c0016d0297e64c700cb8e371e1f51\"", + "Last-Modified": "Mon, 15 Jul 2019 14:26:15 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F35D:3CA2:1355F7C:172996A:5D964445" + } + }, + "uuid": "8cbc3a4c-9afe-4ab9-a5d6-0b375b5d889c", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseByTagNameExists/mappings/repos_github_hub-3-fc5211.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseByTagNameExists/mappings/repos_github_hub-3-fc5211.json new file mode 100644 index 0000000000..59f3562460 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseByTagNameExists/mappings/repos_github_hub-3-fc5211.json @@ -0,0 +1,43 @@ +{ + "id": "fc521132-c82c-4c40-a60a-a60b17884999", + "name": "repos_github_hub", + "request": { + "url": "/repos/github/hub", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github_hub-fc521132-c82c-4c40-a60a-a60b17884999.json", + "headers": { + "Date": "Thu, 03 Oct 2019 18:56:06 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4912", + "X-RateLimit-Reset": "1570132527", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"fcc91b27b1425e55f5dd32d85d2cfa11\"", + "Last-Modified": "Thu, 03 Oct 2019 16:34:37 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F35D:3CA2:1355F9F:17299C0:5D964445" + } + }, + "uuid": "fc521132-c82c-4c40-a60a-a60b17884999", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseByTagNameExists/mappings/repos_github_hub_releases_tags_v230-pre10-4-dcb217.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseByTagNameExists/mappings/repos_github_hub_releases_tags_v230-pre10-4-dcb217.json new file mode 100644 index 0000000000..567df4fbbc --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseByTagNameExists/mappings/repos_github_hub_releases_tags_v230-pre10-4-dcb217.json @@ -0,0 +1,43 @@ +{ + "id": "dcb217dc-3403-4785-b4cc-72b425ff89bc", + "name": "repos_github_hub_releases_tags_v230-pre10", + "request": { + "url": "/repos/github/hub/releases/tags/v2.3.0-pre10", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github_hub_releases_tags_v230-pre10-dcb217dc-3403-4785-b4cc-72b425ff89bc.json", + "headers": { + "Date": "Thu, 03 Oct 2019 18:56:06 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4911", + "X-RateLimit-Reset": "1570132527", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"646e273b4cd306db2adb200e942b8b76\"", + "Last-Modified": "Mon, 26 Jun 2017 21:26:01 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F35D:3CA2:1355FC5:17299EA:5D964446" + } + }, + "uuid": "dcb217dc-3403-4785-b4cc-72b425ff89bc", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseByTagNameExists/mappings/user-1-87c44e.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseByTagNameExists/mappings/user-1-87c44e.json new file mode 100644 index 0000000000..a508a734cc --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseByTagNameExists/mappings/user-1-87c44e.json @@ -0,0 +1,43 @@ +{ + "id": "87c44ef0-9caf-4dcb-b261-9ddd517c941a", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-87c44ef0-9caf-4dcb-b261-9ddd517c941a.json", + "headers": { + "Date": "Thu, 03 Oct 2019 18:56:05 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4915", + "X-RateLimit-Reset": "1570132527", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"cf6199fecf47b59c42190e1e11147ee2\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F35D:3CA2:1355F36:172994E:5D964445" + } + }, + "uuid": "87c44ef0-9caf-4dcb-b261-9ddd517c941a", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseDoesNotExist/__files/orgs_github-18ee08b2-d3da-40f9-81b1-a4976502dc61.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseDoesNotExist/__files/orgs_github-18ee08b2-d3da-40f9-81b1-a4976502dc61.json new file mode 100644 index 0000000000..12ec736a6a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseDoesNotExist/__files/orgs_github-18ee08b2-d3da-40f9-81b1-a4976502dc61.json @@ -0,0 +1,30 @@ +{ + "login": "github", + "id": 9919, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjk5MTk=", + "url": "https://api.github.com/orgs/github", + "repos_url": "https://api.github.com/orgs/github/repos", + "events_url": "https://api.github.com/orgs/github/events", + "hooks_url": "https://api.github.com/orgs/github/hooks", + "issues_url": "https://api.github.com/orgs/github/issues", + "members_url": "https://api.github.com/orgs/github/members{/member}", + "public_members_url": "https://api.github.com/orgs/github/public_members{/member}", + "avatar_url": "https://avatars1.githubusercontent.com/u/9919?v=4", + "description": "How people build software.", + "name": "GitHub", + "company": null, + "blog": "https://github.com/about", + "location": "San Francisco, CA", + "email": "support@github.com", + "is_verified": true, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 314, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/github", + "created_at": "2008-05-11T04:37:31Z", + "updated_at": "2019-07-15T14:26:15Z", + "type": "Organization" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseDoesNotExist/__files/repos_github_hub-e0a029ec-a3a9-4f0c-904f-de386dcfbfde.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseDoesNotExist/__files/repos_github_hub-e0a029ec-a3a9-4f0c-904f-de386dcfbfde.json new file mode 100644 index 0000000000..56ed61dd63 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseDoesNotExist/__files/repos_github_hub-e0a029ec-a3a9-4f0c-904f-de386dcfbfde.json @@ -0,0 +1,127 @@ +{ + "id": 401025, + "node_id": "MDEwOlJlcG9zaXRvcnk0MDEwMjU=", + "name": "hub", + "full_name": "github/hub", + "private": false, + "owner": { + "login": "github", + "id": 9919, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjk5MTk=", + "avatar_url": "https://avatars1.githubusercontent.com/u/9919?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github", + "html_url": "https://github.com/github", + "followers_url": "https://api.github.com/users/github/followers", + "following_url": "https://api.github.com/users/github/following{/other_user}", + "gists_url": "https://api.github.com/users/github/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github/subscriptions", + "organizations_url": "https://api.github.com/users/github/orgs", + "repos_url": "https://api.github.com/users/github/repos", + "events_url": "https://api.github.com/users/github/events{/privacy}", + "received_events_url": "https://api.github.com/users/github/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github/hub", + "description": "A command-line tool that makes git easier to use with GitHub.", + "fork": false, + "url": "https://api.github.com/repos/github/hub", + "forks_url": "https://api.github.com/repos/github/hub/forks", + "keys_url": "https://api.github.com/repos/github/hub/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github/hub/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github/hub/teams", + "hooks_url": "https://api.github.com/repos/github/hub/hooks", + "issue_events_url": "https://api.github.com/repos/github/hub/issues/events{/number}", + "events_url": "https://api.github.com/repos/github/hub/events", + "assignees_url": "https://api.github.com/repos/github/hub/assignees{/user}", + "branches_url": "https://api.github.com/repos/github/hub/branches{/branch}", + "tags_url": "https://api.github.com/repos/github/hub/tags", + "blobs_url": "https://api.github.com/repos/github/hub/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github/hub/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github/hub/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github/hub/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github/hub/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github/hub/languages", + "stargazers_url": "https://api.github.com/repos/github/hub/stargazers", + "contributors_url": "https://api.github.com/repos/github/hub/contributors", + "subscribers_url": "https://api.github.com/repos/github/hub/subscribers", + "subscription_url": "https://api.github.com/repos/github/hub/subscription", + "commits_url": "https://api.github.com/repos/github/hub/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github/hub/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github/hub/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github/hub/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github/hub/contents/{+path}", + "compare_url": "https://api.github.com/repos/github/hub/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github/hub/merges", + "archive_url": "https://api.github.com/repos/github/hub/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github/hub/downloads", + "issues_url": "https://api.github.com/repos/github/hub/issues{/number}", + "pulls_url": "https://api.github.com/repos/github/hub/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github/hub/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github/hub/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github/hub/labels{/name}", + "releases_url": "https://api.github.com/repos/github/hub/releases{/id}", + "deployments_url": "https://api.github.com/repos/github/hub/deployments", + "created_at": "2009-12-05T22:15:25Z", + "updated_at": "2019-10-03T16:34:37Z", + "pushed_at": "2019-10-03T15:09:24Z", + "git_url": "git://github.com/github/hub.git", + "ssh_url": "git@github.com:github/hub.git", + "clone_url": "https://github.com/github/hub.git", + "svn_url": "https://github.com/github/hub", + "homepage": "https://hub.github.com/", + "size": 6657, + "stargazers_count": 17507, + "watchers_count": 17507, + "language": "Go", + "has_issues": true, + "has_projects": true, + "has_downloads": false, + "has_wiki": false, + "has_pages": true, + "forks_count": 1820, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 210, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1820, + "open_issues": 210, + "watchers": 17507, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + }, + "organization": { + "login": "github", + "id": 9919, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjk5MTk=", + "avatar_url": "https://avatars1.githubusercontent.com/u/9919?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github", + "html_url": "https://github.com/github", + "followers_url": "https://api.github.com/users/github/followers", + "following_url": "https://api.github.com/users/github/following{/other_user}", + "gists_url": "https://api.github.com/users/github/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github/subscriptions", + "organizations_url": "https://api.github.com/users/github/orgs", + "repos_url": "https://api.github.com/users/github/repos", + "events_url": "https://api.github.com/users/github/events{/privacy}", + "received_events_url": "https://api.github.com/users/github/received_events", + "type": "Organization", + "site_admin": false + }, + "network_count": 1820, + "subscribers_count": 342 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseDoesNotExist/__files/user-f64c26dc-b35e-4fef-ba8e-6747d1e1f89b.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseDoesNotExist/__files/user-f64c26dc-b35e-4fef-ba8e-6747d1e1f89b.json new file mode 100644 index 0000000000..39d6c8353e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseDoesNotExist/__files/user-f64c26dc-b35e-4fef-ba8e-6747d1e1f89b.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 167, + "public_gists": 4, + "followers": 136, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseDoesNotExist/mappings/orgs_github-2-18ee08.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseDoesNotExist/mappings/orgs_github-2-18ee08.json new file mode 100644 index 0000000000..33e3838003 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseDoesNotExist/mappings/orgs_github-2-18ee08.json @@ -0,0 +1,43 @@ +{ + "id": "18ee08b2-d3da-40f9-81b1-a4976502dc61", + "name": "orgs_github", + "request": { + "url": "/orgs/github", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_github-18ee08b2-d3da-40f9-81b1-a4976502dc61.json", + "headers": { + "Date": "Thu, 03 Oct 2019 18:56:08 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4900", + "X-RateLimit-Reset": "1570132527", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"a94c0016d0297e64c700cb8e371e1f51\"", + "Last-Modified": "Mon, 15 Jul 2019 14:26:15 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F363:67D5:E0FD09:10F08E1:5D964448" + } + }, + "uuid": "18ee08b2-d3da-40f9-81b1-a4976502dc61", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseDoesNotExist/mappings/repos_github_hub-3-e0a029.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseDoesNotExist/mappings/repos_github_hub-3-e0a029.json new file mode 100644 index 0000000000..36a1909eaf --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseDoesNotExist/mappings/repos_github_hub-3-e0a029.json @@ -0,0 +1,43 @@ +{ + "id": "e0a029ec-a3a9-4f0c-904f-de386dcfbfde", + "name": "repos_github_hub", + "request": { + "url": "/repos/github/hub", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github_hub-e0a029ec-a3a9-4f0c-904f-de386dcfbfde.json", + "headers": { + "Date": "Thu, 03 Oct 2019 18:56:08 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4899", + "X-RateLimit-Reset": "1570132527", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"fcc91b27b1425e55f5dd32d85d2cfa11\"", + "Last-Modified": "Thu, 03 Oct 2019 16:34:37 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F363:67D5:E0FD1C:10F0908:5D964448" + } + }, + "uuid": "e0a029ec-a3a9-4f0c-904f-de386dcfbfde", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseDoesNotExist/mappings/repos_github_hub_releases_9223372036854775807-4-b82be5.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseDoesNotExist/mappings/repos_github_hub_releases_9223372036854775807-4-b82be5.json new file mode 100644 index 0000000000..eb5853e45a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseDoesNotExist/mappings/repos_github_hub_releases_9223372036854775807-4-b82be5.json @@ -0,0 +1,36 @@ +{ + "id": "b82be50e-46a3-4a1d-b1ab-adfd0ed4ed38", + "name": "repos_github_hub_releases_9223372036854775807", + "request": { + "url": "/repos/github/hub/releases/9223372036854775807", + "method": "GET" + }, + "response": { + "status": 404, + "body": "{\"message\":\"Not Found\",\"documentation_url\":\"https://developer.github.com/v3/repos/releases/#get-a-single-release\"}", + "headers": { + "Date": "Thu, 03 Oct 2019 18:56:09 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4898", + "X-RateLimit-Reset": "1570132527", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F363:67D5:E0FD50:10F092C:5D964448" + } + }, + "uuid": "b82be50e-46a3-4a1d-b1ab-adfd0ed4ed38", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseDoesNotExist/mappings/user-1-f64c26.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseDoesNotExist/mappings/user-1-f64c26.json new file mode 100644 index 0000000000..ca0a4d1714 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseDoesNotExist/mappings/user-1-f64c26.json @@ -0,0 +1,43 @@ +{ + "id": "f64c26dc-b35e-4fef-ba8e-6747d1e1f89b", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-f64c26dc-b35e-4fef-ba8e-6747d1e1f89b.json", + "headers": { + "Date": "Thu, 03 Oct 2019 18:56:08 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4902", + "X-RateLimit-Reset": "1570132527", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"cf6199fecf47b59c42190e1e11147ee2\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F363:67D5:E0FCE1:10F08C9:5D964448" + } + }, + "uuid": "f64c26dc-b35e-4fef-ba8e-6747d1e1f89b", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseExists/__files/orgs_github-f8d704eb-efb2-4a44-a403-144947461c8a.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseExists/__files/orgs_github-f8d704eb-efb2-4a44-a403-144947461c8a.json new file mode 100644 index 0000000000..12ec736a6a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseExists/__files/orgs_github-f8d704eb-efb2-4a44-a403-144947461c8a.json @@ -0,0 +1,30 @@ +{ + "login": "github", + "id": 9919, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjk5MTk=", + "url": "https://api.github.com/orgs/github", + "repos_url": "https://api.github.com/orgs/github/repos", + "events_url": "https://api.github.com/orgs/github/events", + "hooks_url": "https://api.github.com/orgs/github/hooks", + "issues_url": "https://api.github.com/orgs/github/issues", + "members_url": "https://api.github.com/orgs/github/members{/member}", + "public_members_url": "https://api.github.com/orgs/github/public_members{/member}", + "avatar_url": "https://avatars1.githubusercontent.com/u/9919?v=4", + "description": "How people build software.", + "name": "GitHub", + "company": null, + "blog": "https://github.com/about", + "location": "San Francisco, CA", + "email": "support@github.com", + "is_verified": true, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 314, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/github", + "created_at": "2008-05-11T04:37:31Z", + "updated_at": "2019-07-15T14:26:15Z", + "type": "Organization" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseExists/__files/repos_github_hub-f5ba6b71-c860-406a-80ad-135d8e9e18c3.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseExists/__files/repos_github_hub-f5ba6b71-c860-406a-80ad-135d8e9e18c3.json new file mode 100644 index 0000000000..56ed61dd63 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseExists/__files/repos_github_hub-f5ba6b71-c860-406a-80ad-135d8e9e18c3.json @@ -0,0 +1,127 @@ +{ + "id": 401025, + "node_id": "MDEwOlJlcG9zaXRvcnk0MDEwMjU=", + "name": "hub", + "full_name": "github/hub", + "private": false, + "owner": { + "login": "github", + "id": 9919, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjk5MTk=", + "avatar_url": "https://avatars1.githubusercontent.com/u/9919?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github", + "html_url": "https://github.com/github", + "followers_url": "https://api.github.com/users/github/followers", + "following_url": "https://api.github.com/users/github/following{/other_user}", + "gists_url": "https://api.github.com/users/github/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github/subscriptions", + "organizations_url": "https://api.github.com/users/github/orgs", + "repos_url": "https://api.github.com/users/github/repos", + "events_url": "https://api.github.com/users/github/events{/privacy}", + "received_events_url": "https://api.github.com/users/github/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github/hub", + "description": "A command-line tool that makes git easier to use with GitHub.", + "fork": false, + "url": "https://api.github.com/repos/github/hub", + "forks_url": "https://api.github.com/repos/github/hub/forks", + "keys_url": "https://api.github.com/repos/github/hub/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github/hub/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github/hub/teams", + "hooks_url": "https://api.github.com/repos/github/hub/hooks", + "issue_events_url": "https://api.github.com/repos/github/hub/issues/events{/number}", + "events_url": "https://api.github.com/repos/github/hub/events", + "assignees_url": "https://api.github.com/repos/github/hub/assignees{/user}", + "branches_url": "https://api.github.com/repos/github/hub/branches{/branch}", + "tags_url": "https://api.github.com/repos/github/hub/tags", + "blobs_url": "https://api.github.com/repos/github/hub/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github/hub/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github/hub/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github/hub/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github/hub/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github/hub/languages", + "stargazers_url": "https://api.github.com/repos/github/hub/stargazers", + "contributors_url": "https://api.github.com/repos/github/hub/contributors", + "subscribers_url": "https://api.github.com/repos/github/hub/subscribers", + "subscription_url": "https://api.github.com/repos/github/hub/subscription", + "commits_url": "https://api.github.com/repos/github/hub/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github/hub/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github/hub/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github/hub/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github/hub/contents/{+path}", + "compare_url": "https://api.github.com/repos/github/hub/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github/hub/merges", + "archive_url": "https://api.github.com/repos/github/hub/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github/hub/downloads", + "issues_url": "https://api.github.com/repos/github/hub/issues{/number}", + "pulls_url": "https://api.github.com/repos/github/hub/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github/hub/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github/hub/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github/hub/labels{/name}", + "releases_url": "https://api.github.com/repos/github/hub/releases{/id}", + "deployments_url": "https://api.github.com/repos/github/hub/deployments", + "created_at": "2009-12-05T22:15:25Z", + "updated_at": "2019-10-03T16:34:37Z", + "pushed_at": "2019-10-03T15:09:24Z", + "git_url": "git://github.com/github/hub.git", + "ssh_url": "git@github.com:github/hub.git", + "clone_url": "https://github.com/github/hub.git", + "svn_url": "https://github.com/github/hub", + "homepage": "https://hub.github.com/", + "size": 6657, + "stargazers_count": 17507, + "watchers_count": 17507, + "language": "Go", + "has_issues": true, + "has_projects": true, + "has_downloads": false, + "has_wiki": false, + "has_pages": true, + "forks_count": 1820, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 210, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1820, + "open_issues": 210, + "watchers": 17507, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + }, + "organization": { + "login": "github", + "id": 9919, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjk5MTk=", + "avatar_url": "https://avatars1.githubusercontent.com/u/9919?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github", + "html_url": "https://github.com/github", + "followers_url": "https://api.github.com/users/github/followers", + "following_url": "https://api.github.com/users/github/following{/other_user}", + "gists_url": "https://api.github.com/users/github/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github/subscriptions", + "organizations_url": "https://api.github.com/users/github/orgs", + "repos_url": "https://api.github.com/users/github/repos", + "events_url": "https://api.github.com/users/github/events{/privacy}", + "received_events_url": "https://api.github.com/users/github/received_events", + "type": "Organization", + "site_admin": false + }, + "network_count": 1820, + "subscribers_count": 342 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseExists/__files/repos_github_hub_releases_6839710-2959bf19-ebbd-4b5f-9f83-07b70965577f.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseExists/__files/repos_github_hub_releases_6839710-2959bf19-ebbd-4b5f-9f83-07b70965577f.json new file mode 100644 index 0000000000..199212e2be --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseExists/__files/repos_github_hub_releases_6839710-2959bf19-ebbd-4b5f-9f83-07b70965577f.json @@ -0,0 +1,278 @@ +{ + "url": "https://api.github.com/repos/github/hub/releases/6839710", + "assets_url": "https://api.github.com/repos/github/hub/releases/6839710/assets", + "upload_url": "https://uploads.github.com/repos/github/hub/releases/6839710/assets{?name,label}", + "html_url": "https://github.com/github/hub/releases/tag/v2.3.0-pre10", + "id": 6839710, + "node_id": "MDc6UmVsZWFzZTY4Mzk3MTA=", + "tag_name": "v2.3.0-pre10", + "target_commitish": "master", + "name": "hub 2.3.0-pre10", + "draft": false, + "author": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "prerelease": true, + "created_at": "2017-06-26T18:23:46Z", + "published_at": "2017-06-26T21:26:01Z", + "assets": [ + { + "url": "https://api.github.com/repos/github/hub/releases/assets/4187895", + "id": 4187895, + "node_id": "MDEyOlJlbGVhc2VBc3NldDQxODc4OTU=", + "name": "hub-darwin-amd64-2.3.0-pre10.tgz", + "label": "hub 2.3.0-pre10 for OS X", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 3101461, + "download_count": 7759, + "created_at": "2017-06-26T18:35:45Z", + "updated_at": "2017-06-26T18:35:45Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.3.0-pre10/hub-darwin-amd64-2.3.0-pre10.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/4187896", + "id": 4187896, + "node_id": "MDEyOlJlbGVhc2VBc3NldDQxODc4OTY=", + "name": "hub-freebsd-386-2.3.0-pre10.tgz", + "label": "hub 2.3.0-pre10 for FreeBSD 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 2923833, + "download_count": 36, + "created_at": "2017-06-26T18:35:45Z", + "updated_at": "2017-06-26T18:35:46Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.3.0-pre10/hub-freebsd-386-2.3.0-pre10.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/4187897", + "id": 4187897, + "node_id": "MDEyOlJlbGVhc2VBc3NldDQxODc4OTc=", + "name": "hub-freebsd-amd64-2.3.0-pre10.tgz", + "label": "hub 2.3.0-pre10 for FreeBSD 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 3113988, + "download_count": 92, + "created_at": "2017-06-26T18:35:46Z", + "updated_at": "2017-06-26T18:35:46Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.3.0-pre10/hub-freebsd-amd64-2.3.0-pre10.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/4187898", + "id": 4187898, + "node_id": "MDEyOlJlbGVhc2VBc3NldDQxODc4OTg=", + "name": "hub-linux-386-2.3.0-pre10.tgz", + "label": "hub 2.3.0-pre10 for Linux 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 2921732, + "download_count": 2255, + "created_at": "2017-06-26T18:35:46Z", + "updated_at": "2017-06-26T18:35:46Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.3.0-pre10/hub-linux-386-2.3.0-pre10.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/4187899", + "id": 4187899, + "node_id": "MDEyOlJlbGVhc2VBc3NldDQxODc4OTk=", + "name": "hub-linux-amd64-2.3.0-pre10.tgz", + "label": "hub 2.3.0-pre10 for Linux 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 3138535, + "download_count": 329639, + "created_at": "2017-06-26T18:35:46Z", + "updated_at": "2017-06-26T18:35:47Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.3.0-pre10/hub-linux-amd64-2.3.0-pre10.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/4187900", + "id": 4187900, + "node_id": "MDEyOlJlbGVhc2VBc3NldDQxODc5MDA=", + "name": "hub-linux-arm-2.3.0-pre10.tgz", + "label": "hub 2.3.0-pre10 for Linux ARM 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 2907034, + "download_count": 472, + "created_at": "2017-06-26T18:35:47Z", + "updated_at": "2017-06-26T18:35:48Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.3.0-pre10/hub-linux-arm-2.3.0-pre10.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/4187901", + "id": 4187901, + "node_id": "MDEyOlJlbGVhc2VBc3NldDQxODc5MDE=", + "name": "hub-linux-arm64-2.3.0-pre10.tgz", + "label": "hub 2.3.0-pre10 for Linux ARM 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 2906053, + "download_count": 242, + "created_at": "2017-06-26T18:35:48Z", + "updated_at": "2017-06-26T18:35:48Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.3.0-pre10/hub-linux-arm64-2.3.0-pre10.tgz" + } + ], + "tarball_url": "https://api.github.com/repos/github/hub/tarball/v2.3.0-pre10", + "zipball_url": "https://api.github.com/repos/github/hub/zipball/v2.3.0-pre10", + "body": "* Add `hub release --exclude-prereleases`\r\n* Add `hub fork --remote-name=NAME`\r\n* Add `hub pr checkout 123` as alternative to `hub checkout https://github.com/OWNER/REPO/pull/123`\r\n* Add `hub pull-request -r PERSON1,PERSON2` to request reviewers\r\n* Avoid warning message from vim when stdin was piped to `hub pull-request` or `hub issue create`\r\n* Fix crash in `WorkdirName` when within bare git repo\r\n* Fix `git --(exec|html|man|info)-path`\r\n* Show hub version even if `git version` fails\r\n" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseExists/__files/user-37773edf-8a04-4682-98f0-dd715240d160.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseExists/__files/user-37773edf-8a04-4682-98f0-dd715240d160.json new file mode 100644 index 0000000000..39d6c8353e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseExists/__files/user-37773edf-8a04-4682-98f0-dd715240d160.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 167, + "public_gists": 4, + "followers": 136, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseExists/mappings/orgs_github-2-f8d704.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseExists/mappings/orgs_github-2-f8d704.json new file mode 100644 index 0000000000..2087f4b29a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseExists/mappings/orgs_github-2-f8d704.json @@ -0,0 +1,43 @@ +{ + "id": "f8d704eb-efb2-4a44-a403-144947461c8a", + "name": "orgs_github", + "request": { + "url": "/orgs/github", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_github-f8d704eb-efb2-4a44-a403-144947461c8a.json", + "headers": { + "Date": "Thu, 03 Oct 2019 18:56:14 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4872", + "X-RateLimit-Reset": "1570132527", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"a94c0016d0297e64c700cb8e371e1f51\"", + "Last-Modified": "Mon, 15 Jul 2019 14:26:15 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F376:2CE8:13B1B37:178AF47:5D96444E" + } + }, + "uuid": "f8d704eb-efb2-4a44-a403-144947461c8a", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseExists/mappings/repos_github_hub-3-f5ba6b.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseExists/mappings/repos_github_hub-3-f5ba6b.json new file mode 100644 index 0000000000..0e83d0f46d --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseExists/mappings/repos_github_hub-3-f5ba6b.json @@ -0,0 +1,43 @@ +{ + "id": "f5ba6b71-c860-406a-80ad-135d8e9e18c3", + "name": "repos_github_hub", + "request": { + "url": "/repos/github/hub", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github_hub-f5ba6b71-c860-406a-80ad-135d8e9e18c3.json", + "headers": { + "Date": "Thu, 03 Oct 2019 18:56:15 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4871", + "X-RateLimit-Reset": "1570132527", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"fcc91b27b1425e55f5dd32d85d2cfa11\"", + "Last-Modified": "Thu, 03 Oct 2019 16:34:37 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F376:2CE8:13B1B45:178AF93:5D96444E" + } + }, + "uuid": "f5ba6b71-c860-406a-80ad-135d8e9e18c3", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseExists/mappings/repos_github_hub_releases_6839710-4-2959bf.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseExists/mappings/repos_github_hub_releases_6839710-4-2959bf.json new file mode 100644 index 0000000000..e1741e7a75 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseExists/mappings/repos_github_hub_releases_6839710-4-2959bf.json @@ -0,0 +1,43 @@ +{ + "id": "2959bf19-ebbd-4b5f-9f83-07b70965577f", + "name": "repos_github_hub_releases_6839710", + "request": { + "url": "/repos/github/hub/releases/6839710", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github_hub_releases_6839710-2959bf19-ebbd-4b5f-9f83-07b70965577f.json", + "headers": { + "Date": "Thu, 03 Oct 2019 18:56:15 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4870", + "X-RateLimit-Reset": "1570132527", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"646e273b4cd306db2adb200e942b8b76\"", + "Last-Modified": "Mon, 26 Jun 2017 21:26:01 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F376:2CE8:13B1B7C:178AFBB:5D96444F" + } + }, + "uuid": "2959bf19-ebbd-4b5f-9f83-07b70965577f", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseExists/mappings/user-1-37773e.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseExists/mappings/user-1-37773e.json new file mode 100644 index 0000000000..8a28e16556 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getReleaseExists/mappings/user-1-37773e.json @@ -0,0 +1,43 @@ +{ + "id": "37773edf-8a04-4682-98f0-dd715240d160", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-37773edf-8a04-4682-98f0-dd715240d160.json", + "headers": { + "Date": "Thu, 03 Oct 2019 18:56:14 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4874", + "X-RateLimit-Reset": "1570132527", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"cf6199fecf47b59c42190e1e11147ee2\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F376:2CE8:13B1AF0:178AF2F:5D96444E" + } + }, + "uuid": "37773edf-8a04-4682-98f0-dd715240d160", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listContributors/__files/orgs_github-api-7c4b2a82-e18f-45a2-a6b5-4baaea191b89.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listContributors/__files/orgs_github-api-7c4b2a82-e18f-45a2-a6b5-4baaea191b89.json new file mode 100644 index 0000000000..460832e242 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listContributors/__files/orgs_github-api-7c4b2a82-e18f-45a2-a6b5-4baaea191b89.json @@ -0,0 +1,41 @@ +{ + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "url": "https://api.github.com/orgs/github-api", + "repos_url": "https://api.github.com/orgs/github-api/repos", + "events_url": "https://api.github.com/orgs/github-api/events", + "hooks_url": "https://api.github.com/orgs/github-api/hooks", + "issues_url": "https://api.github.com/orgs/github-api/issues", + "members_url": "https://api.github.com/orgs/github-api/members{/member}", + "public_members_url": "https://api.github.com/orgs/github-api/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "description": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 1, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/github-api", + "created_at": "2019-09-04T18:12:34Z", + "updated_at": "2019-09-04T18:12:34Z", + "type": "Organization", + "total_private_repos": 0, + "owned_private_repos": 0, + "private_gists": 0, + "disk_usage": 11899, + "collaborators": 0, + "billing_email": "bitwiseman@gmail.com", + "default_repository_permission": "read", + "members_can_create_repositories": true, + "two_factor_requirement_enabled": false, + "plan": { + "name": "free", + "space": 976562499, + "private_repos": 0, + "filled_seats": 2, + "seats": 0 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listContributors/__files/repos_github-api_github-api-d87d9579-8da1-4f01-a6e6-6f91e04cc8a7.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listContributors/__files/repos_github-api_github-api-d87d9579-8da1-4f01-a6e6-6f91e04cc8a7.json new file mode 100644 index 0000000000..5d3f9740bc --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listContributors/__files/repos_github-api_github-api-d87d9579-8da1-4f01-a6e6-6f91e04cc8a7.json @@ -0,0 +1,130 @@ +{ + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-10-03T09:41:10Z", + "pushed_at": "2019-10-02T22:27:45Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11899, + "stargazers_count": 557, + "watchers_count": 557, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 428, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 90, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 428, + "open_issues": 90, + "watchers": 557, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "network_count": 428, + "subscribers_count": 50 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listContributors/__files/repos_github-api_github-api_contributors-cd622100-1a8e-4b33-9716-dbaf0b55c2aa.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listContributors/__files/repos_github-api_github-api_contributors-cd622100-1a8e-4b33-9716-dbaf0b55c2aa.json new file mode 100644 index 0000000000..d19352805f --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listContributors/__files/repos_github-api_github-api_contributors-cd622100-1a8e-4b33-9716-dbaf0b55c2aa.json @@ -0,0 +1,632 @@ +[ + { + "login": "kohsuke", + "id": 50003, + "node_id": "MDQ6VXNlcjUwMDAz", + "avatar_url": "https://avatars1.githubusercontent.com/u/50003?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kohsuke", + "html_url": "https://github.com/kohsuke", + "followers_url": "https://api.github.com/users/kohsuke/followers", + "following_url": "https://api.github.com/users/kohsuke/following{/other_user}", + "gists_url": "https://api.github.com/users/kohsuke/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kohsuke/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kohsuke/subscriptions", + "organizations_url": "https://api.github.com/users/kohsuke/orgs", + "repos_url": "https://api.github.com/users/kohsuke/repos", + "events_url": "https://api.github.com/users/kohsuke/events{/privacy}", + "received_events_url": "https://api.github.com/users/kohsuke/received_events", + "type": "User", + "site_admin": false, + "contributions": 892 + }, + { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "contributions": 84 + }, + { + "login": "stephenc", + "id": 209336, + "node_id": "MDQ6VXNlcjIwOTMzNg==", + "avatar_url": "https://avatars2.githubusercontent.com/u/209336?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/stephenc", + "html_url": "https://github.com/stephenc", + "followers_url": "https://api.github.com/users/stephenc/followers", + "following_url": "https://api.github.com/users/stephenc/following{/other_user}", + "gists_url": "https://api.github.com/users/stephenc/gists{/gist_id}", + "starred_url": "https://api.github.com/users/stephenc/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/stephenc/subscriptions", + "organizations_url": "https://api.github.com/users/stephenc/orgs", + "repos_url": "https://api.github.com/users/stephenc/repos", + "events_url": "https://api.github.com/users/stephenc/events{/privacy}", + "received_events_url": "https://api.github.com/users/stephenc/received_events", + "type": "User", + "site_admin": false, + "contributions": 21 + }, + { + "login": "janinko", + "id": 644267, + "node_id": "MDQ6VXNlcjY0NDI2Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/644267?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/janinko", + "html_url": "https://github.com/janinko", + "followers_url": "https://api.github.com/users/janinko/followers", + "following_url": "https://api.github.com/users/janinko/following{/other_user}", + "gists_url": "https://api.github.com/users/janinko/gists{/gist_id}", + "starred_url": "https://api.github.com/users/janinko/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/janinko/subscriptions", + "organizations_url": "https://api.github.com/users/janinko/orgs", + "repos_url": "https://api.github.com/users/janinko/repos", + "events_url": "https://api.github.com/users/janinko/events{/privacy}", + "received_events_url": "https://api.github.com/users/janinko/received_events", + "type": "User", + "site_admin": false, + "contributions": 20 + }, + { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false, + "contributions": 16 + }, + { + "login": "johnou", + "id": 323497, + "node_id": "MDQ6VXNlcjMyMzQ5Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/323497?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/johnou", + "html_url": "https://github.com/johnou", + "followers_url": "https://api.github.com/users/johnou/followers", + "following_url": "https://api.github.com/users/johnou/following{/other_user}", + "gists_url": "https://api.github.com/users/johnou/gists{/gist_id}", + "starred_url": "https://api.github.com/users/johnou/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/johnou/subscriptions", + "organizations_url": "https://api.github.com/users/johnou/orgs", + "repos_url": "https://api.github.com/users/johnou/repos", + "events_url": "https://api.github.com/users/johnou/events{/privacy}", + "received_events_url": "https://api.github.com/users/johnou/received_events", + "type": "User", + "site_admin": false, + "contributions": 13 + }, + { + "login": "mocleiri", + "id": 250942, + "node_id": "MDQ6VXNlcjI1MDk0Mg==", + "avatar_url": "https://avatars0.githubusercontent.com/u/250942?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mocleiri", + "html_url": "https://github.com/mocleiri", + "followers_url": "https://api.github.com/users/mocleiri/followers", + "following_url": "https://api.github.com/users/mocleiri/following{/other_user}", + "gists_url": "https://api.github.com/users/mocleiri/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mocleiri/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mocleiri/subscriptions", + "organizations_url": "https://api.github.com/users/mocleiri/orgs", + "repos_url": "https://api.github.com/users/mocleiri/repos", + "events_url": "https://api.github.com/users/mocleiri/events{/privacy}", + "received_events_url": "https://api.github.com/users/mocleiri/received_events", + "type": "User", + "site_admin": false, + "contributions": 12 + }, + { + "login": "KostyaSha", + "id": 231611, + "node_id": "MDQ6VXNlcjIzMTYxMQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/231611?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/KostyaSha", + "html_url": "https://github.com/KostyaSha", + "followers_url": "https://api.github.com/users/KostyaSha/followers", + "following_url": "https://api.github.com/users/KostyaSha/following{/other_user}", + "gists_url": "https://api.github.com/users/KostyaSha/gists{/gist_id}", + "starred_url": "https://api.github.com/users/KostyaSha/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/KostyaSha/subscriptions", + "organizations_url": "https://api.github.com/users/KostyaSha/orgs", + "repos_url": "https://api.github.com/users/KostyaSha/repos", + "events_url": "https://api.github.com/users/KostyaSha/events{/privacy}", + "received_events_url": "https://api.github.com/users/KostyaSha/received_events", + "type": "User", + "site_admin": false, + "contributions": 12 + }, + { + "login": "jsoref", + "id": 2119212, + "node_id": "MDQ6VXNlcjIxMTkyMTI=", + "avatar_url": "https://avatars0.githubusercontent.com/u/2119212?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jsoref", + "html_url": "https://github.com/jsoref", + "followers_url": "https://api.github.com/users/jsoref/followers", + "following_url": "https://api.github.com/users/jsoref/following{/other_user}", + "gists_url": "https://api.github.com/users/jsoref/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jsoref/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jsoref/subscriptions", + "organizations_url": "https://api.github.com/users/jsoref/orgs", + "repos_url": "https://api.github.com/users/jsoref/repos", + "events_url": "https://api.github.com/users/jsoref/events{/privacy}", + "received_events_url": "https://api.github.com/users/jsoref/received_events", + "type": "User", + "site_admin": false, + "contributions": 11 + }, + { + "login": "dependabot-preview[bot]", + "id": 27856297, + "node_id": "MDM6Qm90Mjc4NTYyOTc=", + "avatar_url": "https://avatars3.githubusercontent.com/in/2141?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dependabot-preview%5Bbot%5D", + "html_url": "https://github.com/apps/dependabot-preview", + "followers_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/dependabot-preview%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false, + "contributions": 10 + }, + { + "login": "lucamilanesio", + "id": 182893, + "node_id": "MDQ6VXNlcjE4Mjg5Mw==", + "avatar_url": "https://avatars3.githubusercontent.com/u/182893?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/lucamilanesio", + "html_url": "https://github.com/lucamilanesio", + "followers_url": "https://api.github.com/users/lucamilanesio/followers", + "following_url": "https://api.github.com/users/lucamilanesio/following{/other_user}", + "gists_url": "https://api.github.com/users/lucamilanesio/gists{/gist_id}", + "starred_url": "https://api.github.com/users/lucamilanesio/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/lucamilanesio/subscriptions", + "organizations_url": "https://api.github.com/users/lucamilanesio/orgs", + "repos_url": "https://api.github.com/users/lucamilanesio/repos", + "events_url": "https://api.github.com/users/lucamilanesio/events{/privacy}", + "received_events_url": "https://api.github.com/users/lucamilanesio/received_events", + "type": "User", + "site_admin": false, + "contributions": 9 + }, + { + "login": "Shredder121", + "id": 4105066, + "node_id": "MDQ6VXNlcjQxMDUwNjY=", + "avatar_url": "https://avatars2.githubusercontent.com/u/4105066?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Shredder121", + "html_url": "https://github.com/Shredder121", + "followers_url": "https://api.github.com/users/Shredder121/followers", + "following_url": "https://api.github.com/users/Shredder121/following{/other_user}", + "gists_url": "https://api.github.com/users/Shredder121/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Shredder121/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Shredder121/subscriptions", + "organizations_url": "https://api.github.com/users/Shredder121/orgs", + "repos_url": "https://api.github.com/users/Shredder121/repos", + "events_url": "https://api.github.com/users/Shredder121/events{/privacy}", + "received_events_url": "https://api.github.com/users/Shredder121/received_events", + "type": "User", + "site_admin": false, + "contributions": 9 + }, + { + "login": "rtyley", + "id": 52038, + "node_id": "MDQ6VXNlcjUyMDM4", + "avatar_url": "https://avatars3.githubusercontent.com/u/52038?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rtyley", + "html_url": "https://github.com/rtyley", + "followers_url": "https://api.github.com/users/rtyley/followers", + "following_url": "https://api.github.com/users/rtyley/following{/other_user}", + "gists_url": "https://api.github.com/users/rtyley/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rtyley/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rtyley/subscriptions", + "organizations_url": "https://api.github.com/users/rtyley/orgs", + "repos_url": "https://api.github.com/users/rtyley/repos", + "events_url": "https://api.github.com/users/rtyley/events{/privacy}", + "received_events_url": "https://api.github.com/users/rtyley/received_events", + "type": "User", + "site_admin": false, + "contributions": 9 + }, + { + "login": "jglick", + "id": 154109, + "node_id": "MDQ6VXNlcjE1NDEwOQ==", + "avatar_url": "https://avatars1.githubusercontent.com/u/154109?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jglick", + "html_url": "https://github.com/jglick", + "followers_url": "https://api.github.com/users/jglick/followers", + "following_url": "https://api.github.com/users/jglick/following{/other_user}", + "gists_url": "https://api.github.com/users/jglick/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jglick/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jglick/subscriptions", + "organizations_url": "https://api.github.com/users/jglick/orgs", + "repos_url": "https://api.github.com/users/jglick/repos", + "events_url": "https://api.github.com/users/jglick/events{/privacy}", + "received_events_url": "https://api.github.com/users/jglick/received_events", + "type": "User", + "site_admin": false, + "contributions": 8 + }, + { + "login": "oleg-nenashev", + "id": 3000480, + "node_id": "MDQ6VXNlcjMwMDA0ODA=", + "avatar_url": "https://avatars0.githubusercontent.com/u/3000480?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/oleg-nenashev", + "html_url": "https://github.com/oleg-nenashev", + "followers_url": "https://api.github.com/users/oleg-nenashev/followers", + "following_url": "https://api.github.com/users/oleg-nenashev/following{/other_user}", + "gists_url": "https://api.github.com/users/oleg-nenashev/gists{/gist_id}", + "starred_url": "https://api.github.com/users/oleg-nenashev/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/oleg-nenashev/subscriptions", + "organizations_url": "https://api.github.com/users/oleg-nenashev/orgs", + "repos_url": "https://api.github.com/users/oleg-nenashev/repos", + "events_url": "https://api.github.com/users/oleg-nenashev/events{/privacy}", + "received_events_url": "https://api.github.com/users/oleg-nenashev/received_events", + "type": "User", + "site_admin": false, + "contributions": 8 + }, + { + "login": "recena", + "id": 1021745, + "node_id": "MDQ6VXNlcjEwMjE3NDU=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1021745?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/recena", + "html_url": "https://github.com/recena", + "followers_url": "https://api.github.com/users/recena/followers", + "following_url": "https://api.github.com/users/recena/following{/other_user}", + "gists_url": "https://api.github.com/users/recena/gists{/gist_id}", + "starred_url": "https://api.github.com/users/recena/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/recena/subscriptions", + "organizations_url": "https://api.github.com/users/recena/orgs", + "repos_url": "https://api.github.com/users/recena/repos", + "events_url": "https://api.github.com/users/recena/events{/privacy}", + "received_events_url": "https://api.github.com/users/recena/received_events", + "type": "User", + "site_admin": false, + "contributions": 7 + }, + { + "login": "vr100", + "id": 6443683, + "node_id": "MDQ6VXNlcjY0NDM2ODM=", + "avatar_url": "https://avatars2.githubusercontent.com/u/6443683?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vr100", + "html_url": "https://github.com/vr100", + "followers_url": "https://api.github.com/users/vr100/followers", + "following_url": "https://api.github.com/users/vr100/following{/other_user}", + "gists_url": "https://api.github.com/users/vr100/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vr100/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vr100/subscriptions", + "organizations_url": "https://api.github.com/users/vr100/orgs", + "repos_url": "https://api.github.com/users/vr100/repos", + "events_url": "https://api.github.com/users/vr100/events{/privacy}", + "received_events_url": "https://api.github.com/users/vr100/received_events", + "type": "User", + "site_admin": false, + "contributions": 6 + }, + { + "login": "jgangemi", + "id": 1831839, + "node_id": "MDQ6VXNlcjE4MzE4Mzk=", + "avatar_url": "https://avatars0.githubusercontent.com/u/1831839?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jgangemi", + "html_url": "https://github.com/jgangemi", + "followers_url": "https://api.github.com/users/jgangemi/followers", + "following_url": "https://api.github.com/users/jgangemi/following{/other_user}", + "gists_url": "https://api.github.com/users/jgangemi/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jgangemi/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jgangemi/subscriptions", + "organizations_url": "https://api.github.com/users/jgangemi/orgs", + "repos_url": "https://api.github.com/users/jgangemi/repos", + "events_url": "https://api.github.com/users/jgangemi/events{/privacy}", + "received_events_url": "https://api.github.com/users/jgangemi/received_events", + "type": "User", + "site_admin": false, + "contributions": 5 + }, + { + "login": "sns-seb", + "id": 11717580, + "node_id": "MDQ6VXNlcjExNzE3NTgw", + "avatar_url": "https://avatars2.githubusercontent.com/u/11717580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/sns-seb", + "html_url": "https://github.com/sns-seb", + "followers_url": "https://api.github.com/users/sns-seb/followers", + "following_url": "https://api.github.com/users/sns-seb/following{/other_user}", + "gists_url": "https://api.github.com/users/sns-seb/gists{/gist_id}", + "starred_url": "https://api.github.com/users/sns-seb/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/sns-seb/subscriptions", + "organizations_url": "https://api.github.com/users/sns-seb/orgs", + "repos_url": "https://api.github.com/users/sns-seb/repos", + "events_url": "https://api.github.com/users/sns-seb/events{/privacy}", + "received_events_url": "https://api.github.com/users/sns-seb/received_events", + "type": "User", + "site_admin": false, + "contributions": 5 + }, + { + "login": "marc-guenther", + "id": 393230, + "node_id": "MDQ6VXNlcjM5MzIzMA==", + "avatar_url": "https://avatars3.githubusercontent.com/u/393230?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/marc-guenther", + "html_url": "https://github.com/marc-guenther", + "followers_url": "https://api.github.com/users/marc-guenther/followers", + "following_url": "https://api.github.com/users/marc-guenther/following{/other_user}", + "gists_url": "https://api.github.com/users/marc-guenther/gists{/gist_id}", + "starred_url": "https://api.github.com/users/marc-guenther/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/marc-guenther/subscriptions", + "organizations_url": "https://api.github.com/users/marc-guenther/orgs", + "repos_url": "https://api.github.com/users/marc-guenther/repos", + "events_url": "https://api.github.com/users/marc-guenther/events{/privacy}", + "received_events_url": "https://api.github.com/users/marc-guenther/received_events", + "type": "User", + "site_admin": false, + "contributions": 4 + }, + { + "login": "mmitche", + "id": 8725170, + "node_id": "MDQ6VXNlcjg3MjUxNzA=", + "avatar_url": "https://avatars1.githubusercontent.com/u/8725170?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mmitche", + "html_url": "https://github.com/mmitche", + "followers_url": "https://api.github.com/users/mmitche/followers", + "following_url": "https://api.github.com/users/mmitche/following{/other_user}", + "gists_url": "https://api.github.com/users/mmitche/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mmitche/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mmitche/subscriptions", + "organizations_url": "https://api.github.com/users/mmitche/orgs", + "repos_url": "https://api.github.com/users/mmitche/repos", + "events_url": "https://api.github.com/users/mmitche/events{/privacy}", + "received_events_url": "https://api.github.com/users/mmitche/received_events", + "type": "User", + "site_admin": false, + "contributions": 4 + }, + { + "login": "lanwen", + "id": 1964214, + "node_id": "MDQ6VXNlcjE5NjQyMTQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/1964214?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/lanwen", + "html_url": "https://github.com/lanwen", + "followers_url": "https://api.github.com/users/lanwen/followers", + "following_url": "https://api.github.com/users/lanwen/following{/other_user}", + "gists_url": "https://api.github.com/users/lanwen/gists{/gist_id}", + "starred_url": "https://api.github.com/users/lanwen/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/lanwen/subscriptions", + "organizations_url": "https://api.github.com/users/lanwen/orgs", + "repos_url": "https://api.github.com/users/lanwen/repos", + "events_url": "https://api.github.com/users/lanwen/events{/privacy}", + "received_events_url": "https://api.github.com/users/lanwen/received_events", + "type": "User", + "site_admin": false, + "contributions": 4 + }, + { + "login": "suryagaddipati", + "id": 64078, + "node_id": "MDQ6VXNlcjY0MDc4", + "avatar_url": "https://avatars3.githubusercontent.com/u/64078?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/suryagaddipati", + "html_url": "https://github.com/suryagaddipati", + "followers_url": "https://api.github.com/users/suryagaddipati/followers", + "following_url": "https://api.github.com/users/suryagaddipati/following{/other_user}", + "gists_url": "https://api.github.com/users/suryagaddipati/gists{/gist_id}", + "starred_url": "https://api.github.com/users/suryagaddipati/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/suryagaddipati/subscriptions", + "organizations_url": "https://api.github.com/users/suryagaddipati/orgs", + "repos_url": "https://api.github.com/users/suryagaddipati/repos", + "events_url": "https://api.github.com/users/suryagaddipati/events{/privacy}", + "received_events_url": "https://api.github.com/users/suryagaddipati/received_events", + "type": "User", + "site_admin": false, + "contributions": 4 + }, + { + "login": "kamontat", + "id": 14089557, + "node_id": "MDQ6VXNlcjE0MDg5NTU3", + "avatar_url": "https://avatars2.githubusercontent.com/u/14089557?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kamontat", + "html_url": "https://github.com/kamontat", + "followers_url": "https://api.github.com/users/kamontat/followers", + "following_url": "https://api.github.com/users/kamontat/following{/other_user}", + "gists_url": "https://api.github.com/users/kamontat/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kamontat/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kamontat/subscriptions", + "organizations_url": "https://api.github.com/users/kamontat/orgs", + "repos_url": "https://api.github.com/users/kamontat/repos", + "events_url": "https://api.github.com/users/kamontat/events{/privacy}", + "received_events_url": "https://api.github.com/users/kamontat/received_events", + "type": "User", + "site_admin": false, + "contributions": 4 + }, + { + "login": "watsonian", + "id": 244, + "node_id": "MDQ6VXNlcjI0NA==", + "avatar_url": "https://avatars3.githubusercontent.com/u/244?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/watsonian", + "html_url": "https://github.com/watsonian", + "followers_url": "https://api.github.com/users/watsonian/followers", + "following_url": "https://api.github.com/users/watsonian/following{/other_user}", + "gists_url": "https://api.github.com/users/watsonian/gists{/gist_id}", + "starred_url": "https://api.github.com/users/watsonian/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/watsonian/subscriptions", + "organizations_url": "https://api.github.com/users/watsonian/orgs", + "repos_url": "https://api.github.com/users/watsonian/repos", + "events_url": "https://api.github.com/users/watsonian/events{/privacy}", + "received_events_url": "https://api.github.com/users/watsonian/received_events", + "type": "User", + "site_admin": false, + "contributions": 4 + }, + { + "login": "arngrimur-seal", + "id": 36759268, + "node_id": "MDQ6VXNlcjM2NzU5MjY4", + "avatar_url": "https://avatars3.githubusercontent.com/u/36759268?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/arngrimur-seal", + "html_url": "https://github.com/arngrimur-seal", + "followers_url": "https://api.github.com/users/arngrimur-seal/followers", + "following_url": "https://api.github.com/users/arngrimur-seal/following{/other_user}", + "gists_url": "https://api.github.com/users/arngrimur-seal/gists{/gist_id}", + "starred_url": "https://api.github.com/users/arngrimur-seal/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/arngrimur-seal/subscriptions", + "organizations_url": "https://api.github.com/users/arngrimur-seal/orgs", + "repos_url": "https://api.github.com/users/arngrimur-seal/repos", + "events_url": "https://api.github.com/users/arngrimur-seal/events{/privacy}", + "received_events_url": "https://api.github.com/users/arngrimur-seal/received_events", + "type": "User", + "site_admin": false, + "contributions": 3 + }, + { + "login": "ashwanthkumar", + "id": 600279, + "node_id": "MDQ6VXNlcjYwMDI3OQ==", + "avatar_url": "https://avatars0.githubusercontent.com/u/600279?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ashwanthkumar", + "html_url": "https://github.com/ashwanthkumar", + "followers_url": "https://api.github.com/users/ashwanthkumar/followers", + "following_url": "https://api.github.com/users/ashwanthkumar/following{/other_user}", + "gists_url": "https://api.github.com/users/ashwanthkumar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ashwanthkumar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ashwanthkumar/subscriptions", + "organizations_url": "https://api.github.com/users/ashwanthkumar/orgs", + "repos_url": "https://api.github.com/users/ashwanthkumar/repos", + "events_url": "https://api.github.com/users/ashwanthkumar/events{/privacy}", + "received_events_url": "https://api.github.com/users/ashwanthkumar/received_events", + "type": "User", + "site_admin": false, + "contributions": 3 + }, + { + "login": "cyrille-leclerc", + "id": 459691, + "node_id": "MDQ6VXNlcjQ1OTY5MQ==", + "avatar_url": "https://avatars3.githubusercontent.com/u/459691?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyrille-leclerc", + "html_url": "https://github.com/cyrille-leclerc", + "followers_url": "https://api.github.com/users/cyrille-leclerc/followers", + "following_url": "https://api.github.com/users/cyrille-leclerc/following{/other_user}", + "gists_url": "https://api.github.com/users/cyrille-leclerc/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyrille-leclerc/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyrille-leclerc/subscriptions", + "organizations_url": "https://api.github.com/users/cyrille-leclerc/orgs", + "repos_url": "https://api.github.com/users/cyrille-leclerc/repos", + "events_url": "https://api.github.com/users/cyrille-leclerc/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyrille-leclerc/received_events", + "type": "User", + "site_admin": false, + "contributions": 3 + }, + { + "login": "daniel-beck", + "id": 1831569, + "node_id": "MDQ6VXNlcjE4MzE1Njk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1831569?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/daniel-beck", + "html_url": "https://github.com/daniel-beck", + "followers_url": "https://api.github.com/users/daniel-beck/followers", + "following_url": "https://api.github.com/users/daniel-beck/following{/other_user}", + "gists_url": "https://api.github.com/users/daniel-beck/gists{/gist_id}", + "starred_url": "https://api.github.com/users/daniel-beck/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/daniel-beck/subscriptions", + "organizations_url": "https://api.github.com/users/daniel-beck/orgs", + "repos_url": "https://api.github.com/users/daniel-beck/repos", + "events_url": "https://api.github.com/users/daniel-beck/events{/privacy}", + "received_events_url": "https://api.github.com/users/daniel-beck/received_events", + "type": "User", + "site_admin": false, + "contributions": 3 + }, + { + "login": "dlovera", + "id": 4728774, + "node_id": "MDQ6VXNlcjQ3Mjg3NzQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/4728774?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dlovera", + "html_url": "https://github.com/dlovera", + "followers_url": "https://api.github.com/users/dlovera/followers", + "following_url": "https://api.github.com/users/dlovera/following{/other_user}", + "gists_url": "https://api.github.com/users/dlovera/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dlovera/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dlovera/subscriptions", + "organizations_url": "https://api.github.com/users/dlovera/orgs", + "repos_url": "https://api.github.com/users/dlovera/repos", + "events_url": "https://api.github.com/users/dlovera/events{/privacy}", + "received_events_url": "https://api.github.com/users/dlovera/received_events", + "type": "User", + "site_admin": false, + "contributions": 3 + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listContributors/__files/user-5705a11e-1421-4985-8e1f-b1e25b4ef547.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listContributors/__files/user-5705a11e-1421-4985-8e1f-b1e25b4ef547.json new file mode 100644 index 0000000000..39d6c8353e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listContributors/__files/user-5705a11e-1421-4985-8e1f-b1e25b4ef547.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 167, + "public_gists": 4, + "followers": 136, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listContributors/mappings/orgs_github-api-2-7c4b2a.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listContributors/mappings/orgs_github-api-2-7c4b2a.json new file mode 100644 index 0000000000..0b4611cbbb --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listContributors/mappings/orgs_github-api-2-7c4b2a.json @@ -0,0 +1,43 @@ +{ + "id": "7c4b2a82-e18f-45a2-a6b5-4baaea191b89", + "name": "orgs_github-api", + "request": { + "url": "/orgs/github-api", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_github-api-7c4b2a82-e18f-45a2-a6b5-4baaea191b89.json", + "headers": { + "Date": "Thu, 03 Oct 2019 18:56:03 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4922", + "X-RateLimit-Reset": "1570132527", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"62b7633c1dd73301f853bcc0da2d8504\"", + "Last-Modified": "Wed, 04 Sep 2019 18:12:34 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F355:2CE7:106E7C3:13682F9:5D964442" + } + }, + "uuid": "7c4b2a82-e18f-45a2-a6b5-4baaea191b89", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listContributors/mappings/repos_github-api_github-api-3-d87d95.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listContributors/mappings/repos_github-api_github-api-3-d87d95.json new file mode 100644 index 0000000000..e40dbd6d4d --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listContributors/mappings/repos_github-api_github-api-3-d87d95.json @@ -0,0 +1,43 @@ +{ + "id": "d87d9579-8da1-4f01-a6e6-6f91e04cc8a7", + "name": "repos_github-api_github-api", + "request": { + "url": "/repos/github-api/github-api", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api_github-api-d87d9579-8da1-4f01-a6e6-6f91e04cc8a7.json", + "headers": { + "Date": "Thu, 03 Oct 2019 18:56:03 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4921", + "X-RateLimit-Reset": "1570132527", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"ee2a44ea003736b3fc98deff8fb5ff11\"", + "Last-Modified": "Thu, 03 Oct 2019 09:41:10 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F355:2CE7:106E7D7:1368356:5D964443" + } + }, + "uuid": "d87d9579-8da1-4f01-a6e6-6f91e04cc8a7", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listContributors/mappings/repos_github-api_github-api_contributors-4-cd6221.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listContributors/mappings/repos_github-api_github-api_contributors-4-cd6221.json new file mode 100644 index 0000000000..a841f8dd18 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listContributors/mappings/repos_github-api_github-api_contributors-4-cd6221.json @@ -0,0 +1,44 @@ +{ + "id": "cd622100-1a8e-4b33-9716-dbaf0b55c2aa", + "name": "repos_github-api_github-api_contributors", + "request": { + "url": "/repos/github-api/github-api/contributors", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api_github-api_contributors-cd622100-1a8e-4b33-9716-dbaf0b55c2aa.json", + "headers": { + "Date": "Thu, 03 Oct 2019 18:56:03 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4920", + "X-RateLimit-Reset": "1570132527", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"a1b7dbc652ab098b5033f9fa5b3bfc62\"", + "Last-Modified": "Thu, 03 Oct 2019 09:41:10 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Link": "; rel=\"next\", ; rel=\"last\"", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F355:2CE7:106E7F3:1368377:5D964443" + } + }, + "uuid": "cd622100-1a8e-4b33-9716-dbaf0b55c2aa", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listContributors/mappings/user-1-5705a1.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listContributors/mappings/user-1-5705a1.json new file mode 100644 index 0000000000..8a7c36a432 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listContributors/mappings/user-1-5705a1.json @@ -0,0 +1,43 @@ +{ + "id": "5705a11e-1421-4985-8e1f-b1e25b4ef547", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-5705a11e-1421-4985-8e1f-b1e25b4ef547.json", + "headers": { + "Date": "Thu, 03 Oct 2019 18:56:02 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4924", + "X-RateLimit-Reset": "1570132527", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"cf6199fecf47b59c42190e1e11147ee2\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F355:2CE7:106E772:13682E3:5D964442" + } + }, + "uuid": "5705a11e-1421-4985-8e1f-b1e25b4ef547", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listEmptyContributors/__files/repos_github-api-test-org_empty-af73e21a-68d3-4683-a1e1-3415319211e4.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listEmptyContributors/__files/repos_github-api-test-org_empty-af73e21a-68d3-4683-a1e1-3415319211e4.json new file mode 100644 index 0000000000..5179da1394 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listEmptyContributors/__files/repos_github-api-test-org_empty-af73e21a-68d3-4683-a1e1-3415319211e4.json @@ -0,0 +1,124 @@ +{ + "id": 60391080, + "node_id": "MDEwOlJlcG9zaXRvcnk2MDM5MTA4MA==", + "name": "empty", + "full_name": "github-api-test-org/empty", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/empty", + "description": "Repository that has no contributor", + "fork": false, + "url": "https://api.github.com/repos/github-api-test-org/empty", + "forks_url": "https://api.github.com/repos/github-api-test-org/empty/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/empty/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/empty/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/empty/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/empty/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/empty/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/empty/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/empty/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/empty/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/empty/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/empty/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/empty/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/empty/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/empty/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/empty/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/empty/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/empty/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/empty/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/empty/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/empty/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/empty/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/empty/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/empty/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/empty/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/empty/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/empty/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/empty/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/empty/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/empty/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/empty/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/empty/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/empty/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/empty/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/empty/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/empty/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/empty/deployments", + "created_at": "2016-06-04T03:22:22Z", + "updated_at": "2016-06-04T03:22:22Z", + "pushed_at": "2016-06-04T03:22:23Z", + "git_url": "git://github.com/github-api-test-org/empty.git", + "ssh_url": "git@github.com:github-api-test-org/empty.git", + "clone_url": "https://github.com/github-api-test-org/empty.git", + "svn_url": "https://github.com/github-api-test-org/empty", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "network_count": 0, + "subscribers_count": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listEmptyContributors/__files/user-8d2ebbe4-ff50-4d3e-9932-d48541155f86.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listEmptyContributors/__files/user-8d2ebbe4-ff50-4d3e-9932-d48541155f86.json new file mode 100644 index 0000000000..41fc9e3d00 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listEmptyContributors/__files/user-8d2ebbe4-ff50-4d3e-9932-d48541155f86.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 168, + "public_gists": 4, + "followers": 136, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listEmptyContributors/mappings/repos_github-api-test-org_empty-2-af73e2.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listEmptyContributors/mappings/repos_github-api-test-org_empty-2-af73e2.json new file mode 100644 index 0000000000..bfb49f1f76 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listEmptyContributors/mappings/repos_github-api-test-org_empty-2-af73e2.json @@ -0,0 +1,43 @@ +{ + "id": "af73e21a-68d3-4683-a1e1-3415319211e4", + "name": "repos_github-api-test-org_empty", + "request": { + "url": "/repos/github-api-test-org/empty", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_empty-af73e21a-68d3-4683-a1e1-3415319211e4.json", + "headers": { + "Date": "Fri, 04 Oct 2019 00:34:14 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4826", + "X-RateLimit-Reset": "1570151182", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"71a57ee919c57e5e9eb076f615232a66\"", + "Last-Modified": "Sat, 04 Jun 2016 03:22:22 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D778:2CE6:7EE78B:96BD39:5D969385" + } + }, + "uuid": "af73e21a-68d3-4683-a1e1-3415319211e4", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listEmptyContributors/mappings/repos_github-api-test-org_empty_contributors-3-dae0e3.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listEmptyContributors/mappings/repos_github-api-test-org_empty_contributors-3-dae0e3.json new file mode 100644 index 0000000000..58ae5449a7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listEmptyContributors/mappings/repos_github-api-test-org_empty_contributors-3-dae0e3.json @@ -0,0 +1,35 @@ +{ + "id": "dae0e321-23f5-462b-8d0b-cb67f101e856", + "name": "repos_github-api-test-org_empty_contributors", + "request": { + "url": "/repos/github-api-test-org/empty/contributors", + "method": "GET" + }, + "response": { + "status": 204, + "headers": { + "Date": "Fri, 04 Oct 2019 00:34:14 GMT", + "Server": "GitHub.com", + "Status": "204 No Content", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4825", + "X-RateLimit-Reset": "1570151182", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "D778:2CE6:7EE795:96BD55:5D969386" + } + }, + "uuid": "dae0e321-23f5-462b-8d0b-cb67f101e856", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listEmptyContributors/mappings/user-1-8d2ebb.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listEmptyContributors/mappings/user-1-8d2ebb.json new file mode 100644 index 0000000000..e5adbdccc8 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listEmptyContributors/mappings/user-1-8d2ebb.json @@ -0,0 +1,43 @@ +{ + "id": "8d2ebbe4-ff50-4d3e-9932-d48541155f86", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-8d2ebbe4-ff50-4d3e-9932-d48541155f86.json", + "headers": { + "Date": "Fri, 04 Oct 2019 00:34:13 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4828", + "X-RateLimit-Reset": "1570151182", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"af0c41afcacb8ceee14b7d896719c3bd\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D778:2CE6:7EE777:96BD36:5D969385" + } + }, + "uuid": "8d2ebbe4-ff50-4d3e-9932-d48541155f86", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listLanguages/__files/repos_github-api_github-api-1852eb94-7578-45d0-8b90-fa23b623dccf.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listLanguages/__files/repos_github-api_github-api-1852eb94-7578-45d0-8b90-fa23b623dccf.json new file mode 100644 index 0000000000..5d3f9740bc --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listLanguages/__files/repos_github-api_github-api-1852eb94-7578-45d0-8b90-fa23b623dccf.json @@ -0,0 +1,130 @@ +{ + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-10-03T09:41:10Z", + "pushed_at": "2019-10-02T22:27:45Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11899, + "stargazers_count": 557, + "watchers_count": 557, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 428, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 90, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 428, + "open_issues": 90, + "watchers": 557, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "network_count": 428, + "subscribers_count": 50 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listLanguages/__files/user-aab4cb17-6715-454d-8498-f30d5e2ca5a2.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listLanguages/__files/user-aab4cb17-6715-454d-8498-f30d5e2ca5a2.json new file mode 100644 index 0000000000..39d6c8353e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listLanguages/__files/user-aab4cb17-6715-454d-8498-f30d5e2ca5a2.json @@ -0,0 +1,45 @@ +{ + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "followers_url": "https://api.github.com/users/bitwiseman/followers", + "following_url": "https://api.github.com/users/bitwiseman/following{/other_user}", + "gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions", + "organizations_url": "https://api.github.com/users/bitwiseman/orgs", + "repos_url": "https://api.github.com/users/bitwiseman/repos", + "events_url": "https://api.github.com/users/bitwiseman/events{/privacy}", + "received_events_url": "https://api.github.com/users/bitwiseman/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "bitwiseman@gmail.com", + "hireable": null, + "bio": "https://twitter.com/bitwiseman", + "public_repos": 167, + "public_gists": 4, + "followers": 136, + "following": 9, + "created_at": "2012-07-11T20:38:33Z", + "updated_at": "2019-09-24T19:32:29Z", + "private_gists": 7, + "total_private_repos": 9, + "owned_private_repos": 0, + "disk_usage": 33697, + "collaborators": 0, + "two_factor_authentication": true, + "plan": { + "name": "free", + "space": 976562499, + "collaborators": 0, + "private_repos": 10000 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listLanguages/mappings/repos_github-api_github-api-2-1852eb.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listLanguages/mappings/repos_github-api_github-api-2-1852eb.json new file mode 100644 index 0000000000..bb3220e55f --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listLanguages/mappings/repos_github-api_github-api-2-1852eb.json @@ -0,0 +1,43 @@ +{ + "id": "1852eb94-7578-45d0-8b90-fa23b623dccf", + "name": "repos_github-api_github-api", + "request": { + "url": "/repos/github-api/github-api", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api_github-api-1852eb94-7578-45d0-8b90-fa23b623dccf.json", + "headers": { + "Date": "Thu, 03 Oct 2019 18:56:12 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4881", + "X-RateLimit-Reset": "1570132527", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"ee2a44ea003736b3fc98deff8fb5ff11\"", + "Last-Modified": "Thu, 03 Oct 2019 09:41:10 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F36F:6B2D:F352CB:1222540:5D96444C" + } + }, + "uuid": "1852eb94-7578-45d0-8b90-fa23b623dccf", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listLanguages/mappings/repos_github-api_github-api_languages-3-acab46.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listLanguages/mappings/repos_github-api_github-api_languages-3-acab46.json new file mode 100644 index 0000000000..6185cc5c61 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listLanguages/mappings/repos_github-api_github-api_languages-3-acab46.json @@ -0,0 +1,43 @@ +{ + "id": "acab46c1-4952-4cc6-9450-fdcbf340a7cf", + "name": "repos_github-api_github-api_languages", + "request": { + "url": "/repos/github-api/github-api/languages", + "method": "GET" + }, + "response": { + "status": 200, + "body": "{\"Java\":671125}", + "headers": { + "Date": "Thu, 03 Oct 2019 18:56:12 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4880", + "X-RateLimit-Reset": "1570132527", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "\"75a1242913f05c3259f3f4b8d8aa6be4\"", + "Last-Modified": "Thu, 03 Oct 2019 09:41:10 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F36F:6B2D:F352E6:1222572:5D96444C" + } + }, + "uuid": "acab46c1-4952-4cc6-9450-fdcbf340a7cf", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listLanguages/mappings/user-1-aab4cb.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listLanguages/mappings/user-1-aab4cb.json new file mode 100644 index 0000000000..0103a55950 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listLanguages/mappings/user-1-aab4cb.json @@ -0,0 +1,43 @@ +{ + "id": "aab4cb17-6715-454d-8498-f30d5e2ca5a2", + "name": "user", + "request": { + "url": "/user", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "user-aab4cb17-6715-454d-8498-f30d5e2ca5a2.json", + "headers": { + "Date": "Thu, 03 Oct 2019 18:56:12 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4883", + "X-RateLimit-Reset": "1570132527", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"cf6199fecf47b59c42190e1e11147ee2\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F36F:6B2D:F352A1:1222523:5D96444C" + } + }, + "uuid": "aab4cb17-6715-454d-8498-f30d5e2ca5a2", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listReleases/__files/orgs_github-c4db4df5-1d50-46c5-b667-0a3b1d9653e6.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listReleases/__files/orgs_github-c4db4df5-1d50-46c5-b667-0a3b1d9653e6.json new file mode 100644 index 0000000000..12ec736a6a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listReleases/__files/orgs_github-c4db4df5-1d50-46c5-b667-0a3b1d9653e6.json @@ -0,0 +1,30 @@ +{ + "login": "github", + "id": 9919, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjk5MTk=", + "url": "https://api.github.com/orgs/github", + "repos_url": "https://api.github.com/orgs/github/repos", + "events_url": "https://api.github.com/orgs/github/events", + "hooks_url": "https://api.github.com/orgs/github/hooks", + "issues_url": "https://api.github.com/orgs/github/issues", + "members_url": "https://api.github.com/orgs/github/members{/member}", + "public_members_url": "https://api.github.com/orgs/github/public_members{/member}", + "avatar_url": "https://avatars1.githubusercontent.com/u/9919?v=4", + "description": "How people build software.", + "name": "GitHub", + "company": null, + "blog": "https://github.com/about", + "location": "San Francisco, CA", + "email": "support@github.com", + "is_verified": true, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 314, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/github", + "created_at": "2008-05-11T04:37:31Z", + "updated_at": "2019-07-15T14:26:15Z", + "type": "Organization" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listReleases/__files/repos_github_hub-8338609c-0f4c-4fe5-9ca6-fc64b08673be.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listReleases/__files/repos_github_hub-8338609c-0f4c-4fe5-9ca6-fc64b08673be.json new file mode 100644 index 0000000000..56ed61dd63 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listReleases/__files/repos_github_hub-8338609c-0f4c-4fe5-9ca6-fc64b08673be.json @@ -0,0 +1,127 @@ +{ + "id": 401025, + "node_id": "MDEwOlJlcG9zaXRvcnk0MDEwMjU=", + "name": "hub", + "full_name": "github/hub", + "private": false, + "owner": { + "login": "github", + "id": 9919, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjk5MTk=", + "avatar_url": "https://avatars1.githubusercontent.com/u/9919?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github", + "html_url": "https://github.com/github", + "followers_url": "https://api.github.com/users/github/followers", + "following_url": "https://api.github.com/users/github/following{/other_user}", + "gists_url": "https://api.github.com/users/github/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github/subscriptions", + "organizations_url": "https://api.github.com/users/github/orgs", + "repos_url": "https://api.github.com/users/github/repos", + "events_url": "https://api.github.com/users/github/events{/privacy}", + "received_events_url": "https://api.github.com/users/github/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github/hub", + "description": "A command-line tool that makes git easier to use with GitHub.", + "fork": false, + "url": "https://api.github.com/repos/github/hub", + "forks_url": "https://api.github.com/repos/github/hub/forks", + "keys_url": "https://api.github.com/repos/github/hub/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github/hub/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github/hub/teams", + "hooks_url": "https://api.github.com/repos/github/hub/hooks", + "issue_events_url": "https://api.github.com/repos/github/hub/issues/events{/number}", + "events_url": "https://api.github.com/repos/github/hub/events", + "assignees_url": "https://api.github.com/repos/github/hub/assignees{/user}", + "branches_url": "https://api.github.com/repos/github/hub/branches{/branch}", + "tags_url": "https://api.github.com/repos/github/hub/tags", + "blobs_url": "https://api.github.com/repos/github/hub/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github/hub/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github/hub/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github/hub/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github/hub/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github/hub/languages", + "stargazers_url": "https://api.github.com/repos/github/hub/stargazers", + "contributors_url": "https://api.github.com/repos/github/hub/contributors", + "subscribers_url": "https://api.github.com/repos/github/hub/subscribers", + "subscription_url": "https://api.github.com/repos/github/hub/subscription", + "commits_url": "https://api.github.com/repos/github/hub/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github/hub/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github/hub/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github/hub/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github/hub/contents/{+path}", + "compare_url": "https://api.github.com/repos/github/hub/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github/hub/merges", + "archive_url": "https://api.github.com/repos/github/hub/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github/hub/downloads", + "issues_url": "https://api.github.com/repos/github/hub/issues{/number}", + "pulls_url": "https://api.github.com/repos/github/hub/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github/hub/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github/hub/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github/hub/labels{/name}", + "releases_url": "https://api.github.com/repos/github/hub/releases{/id}", + "deployments_url": "https://api.github.com/repos/github/hub/deployments", + "created_at": "2009-12-05T22:15:25Z", + "updated_at": "2019-10-03T16:34:37Z", + "pushed_at": "2019-10-03T15:09:24Z", + "git_url": "git://github.com/github/hub.git", + "ssh_url": "git@github.com:github/hub.git", + "clone_url": "https://github.com/github/hub.git", + "svn_url": "https://github.com/github/hub", + "homepage": "https://hub.github.com/", + "size": 6657, + "stargazers_count": 17507, + "watchers_count": 17507, + "language": "Go", + "has_issues": true, + "has_projects": true, + "has_downloads": false, + "has_wiki": false, + "has_pages": true, + "forks_count": 1820, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 210, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 1820, + "open_issues": 210, + "watchers": 17507, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + }, + "organization": { + "login": "github", + "id": 9919, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjk5MTk=", + "avatar_url": "https://avatars1.githubusercontent.com/u/9919?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github", + "html_url": "https://github.com/github", + "followers_url": "https://api.github.com/users/github/followers", + "following_url": "https://api.github.com/users/github/following{/other_user}", + "gists_url": "https://api.github.com/users/github/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github/subscriptions", + "organizations_url": "https://api.github.com/users/github/orgs", + "repos_url": "https://api.github.com/users/github/repos", + "events_url": "https://api.github.com/users/github/events{/privacy}", + "received_events_url": "https://api.github.com/users/github/received_events", + "type": "Organization", + "site_admin": false + }, + "network_count": 1820, + "subscribers_count": 342 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listReleases/__files/repos_github_hub_releases-5c5da4ad-d9da-4ce8-8076-8797eb1070a9.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listReleases/__files/repos_github_hub_releases-5c5da4ad-d9da-4ce8-8076-8797eb1070a9.json new file mode 100644 index 0000000000..6160f2ad9c --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/listReleases/__files/repos_github_hub_releases-5c5da4ad-d9da-4ce8-8076-8797eb1070a9.json @@ -0,0 +1,9564 @@ +[ + { + "url": "https://api.github.com/repos/github/hub/releases/20432197", + "assets_url": "https://api.github.com/repos/github/hub/releases/20432197/assets", + "upload_url": "https://uploads.github.com/repos/github/hub/releases/20432197/assets{?name,label}", + "html_url": "https://github.com/github/hub/releases/tag/v2.12.8", + "id": 20432197, + "node_id": "MDc6UmVsZWFzZTIwNDMyMTk3", + "tag_name": "v2.12.8", + "target_commitish": "master", + "name": "hub 2.12.8", + "draft": false, + "author": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "prerelease": false, + "created_at": "2019-10-03T00:46:29Z", + "published_at": "2019-10-03T00:57:23Z", + "assets": [ + { + "url": "https://api.github.com/repos/github/hub/releases/assets/15264754", + "id": 15264754, + "node_id": "MDEyOlJlbGVhc2VBc3NldDE1MjY0NzU0", + "name": "hub-darwin-amd64-2.12.8.tgz", + "label": "hub 2.12.8 for macOS", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4856222, + "download_count": 7, + "created_at": "2019-10-03T00:57:23Z", + "updated_at": "2019-10-03T00:57:24Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.12.8/hub-darwin-amd64-2.12.8.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/15264755", + "id": 15264755, + "node_id": "MDEyOlJlbGVhc2VBc3NldDE1MjY0NzU1", + "name": "hub-freebsd-386-2.12.8.tgz", + "label": "hub 2.12.8 for FreeBSD 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4792214, + "download_count": 0, + "created_at": "2019-10-03T00:57:23Z", + "updated_at": "2019-10-03T00:57:24Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.12.8/hub-freebsd-386-2.12.8.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/15264756", + "id": 15264756, + "node_id": "MDEyOlJlbGVhc2VBc3NldDE1MjY0NzU2", + "name": "hub-freebsd-amd64-2.12.8.tgz", + "label": "hub 2.12.8 for FreeBSD 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4924981, + "download_count": 0, + "created_at": "2019-10-03T00:57:24Z", + "updated_at": "2019-10-03T00:57:24Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.12.8/hub-freebsd-amd64-2.12.8.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/15264757", + "id": 15264757, + "node_id": "MDEyOlJlbGVhc2VBc3NldDE1MjY0NzU3", + "name": "hub-linux-386-2.12.8.tgz", + "label": "hub 2.12.8 for Linux 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4807925, + "download_count": 3, + "created_at": "2019-10-03T00:57:25Z", + "updated_at": "2019-10-03T00:57:25Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.12.8/hub-linux-386-2.12.8.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/15264758", + "id": 15264758, + "node_id": "MDEyOlJlbGVhc2VBc3NldDE1MjY0NzU4", + "name": "hub-linux-amd64-2.12.8.tgz", + "label": "hub 2.12.8 for Linux 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4958183, + "download_count": 228, + "created_at": "2019-10-03T00:57:25Z", + "updated_at": "2019-10-03T00:57:25Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.12.8/hub-linux-amd64-2.12.8.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/15264759", + "id": 15264759, + "node_id": "MDEyOlJlbGVhc2VBc3NldDE1MjY0NzU5", + "name": "hub-linux-arm-2.12.8.tgz", + "label": "hub 2.12.8 for Linux ARM 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4599663, + "download_count": 1, + "created_at": "2019-10-03T00:57:25Z", + "updated_at": "2019-10-03T00:57:26Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.12.8/hub-linux-arm-2.12.8.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/15264760", + "id": 15264760, + "node_id": "MDEyOlJlbGVhc2VBc3NldDE1MjY0NzYw", + "name": "hub-linux-arm64-2.12.8.tgz", + "label": "hub 2.12.8 for Linux ARM 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4600321, + "download_count": 1, + "created_at": "2019-10-03T00:57:26Z", + "updated_at": "2019-10-03T00:57:26Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.12.8/hub-linux-arm64-2.12.8.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/15264761", + "id": 15264761, + "node_id": "MDEyOlJlbGVhc2VBc3NldDE1MjY0NzYx", + "name": "hub-windows-386-2.12.8.zip", + "label": "hub 2.12.8 for Windows 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4790800, + "download_count": 27, + "created_at": "2019-10-03T00:57:26Z", + "updated_at": "2019-10-03T00:57:30Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.12.8/hub-windows-386-2.12.8.zip" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/15264762", + "id": 15264762, + "node_id": "MDEyOlJlbGVhc2VBc3NldDE1MjY0NzYy", + "name": "hub-windows-amd64-2.12.8.zip", + "label": "hub 2.12.8 for Windows 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4936905, + "download_count": 171, + "created_at": "2019-10-03T00:57:30Z", + "updated_at": "2019-10-03T00:57:30Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.12.8/hub-windows-amd64-2.12.8.zip" + } + ], + "tarball_url": "https://api.github.com/repos/github/hub/tarball/v2.12.8", + "zipball_url": "https://api.github.com/repos/github/hub/zipball/v2.12.8", + "body": "* `hub compare`: improve upstream branch detection & error messages\n\n* `hub compare`: allow slash character in branch names\n\n* `hub api`: fix GraphQL requests made to Enterprise hosts\n\n* Docs: clarify `--message`, `--file`, and `--edit` flags" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/20175981", + "assets_url": "https://api.github.com/repos/github/hub/releases/20175981/assets", + "upload_url": "https://uploads.github.com/repos/github/hub/releases/20175981/assets{?name,label}", + "html_url": "https://github.com/github/hub/releases/tag/v2.12.7", + "id": 20175981, + "node_id": "MDc6UmVsZWFzZTIwMTc1OTgx", + "tag_name": "v2.12.7", + "target_commitish": "master", + "name": "hub 2.12.7", + "draft": false, + "author": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "prerelease": false, + "created_at": "2019-09-23T10:33:30Z", + "published_at": "2019-09-23T10:41:21Z", + "assets": [ + { + "url": "https://api.github.com/repos/github/hub/releases/assets/15067736", + "id": 15067736, + "node_id": "MDEyOlJlbGVhc2VBc3NldDE1MDY3NzM2", + "name": "hub-darwin-amd64-2.12.7.tgz", + "label": "hub 2.12.7 for macOS", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4808974, + "download_count": 1088, + "created_at": "2019-09-23T10:40:04Z", + "updated_at": "2019-09-23T10:40:05Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.12.7/hub-darwin-amd64-2.12.7.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/15067737", + "id": 15067737, + "node_id": "MDEyOlJlbGVhc2VBc3NldDE1MDY3NzM3", + "name": "hub-freebsd-386-2.12.7.tgz", + "label": "hub 2.12.7 for FreeBSD 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4702525, + "download_count": 6, + "created_at": "2019-09-23T10:40:05Z", + "updated_at": "2019-09-23T10:40:05Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.12.7/hub-freebsd-386-2.12.7.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/15067738", + "id": 15067738, + "node_id": "MDEyOlJlbGVhc2VBc3NldDE1MDY3NzM4", + "name": "hub-freebsd-amd64-2.12.7.tgz", + "label": "hub 2.12.7 for FreeBSD 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4847740, + "download_count": 6, + "created_at": "2019-09-23T10:40:05Z", + "updated_at": "2019-09-23T10:40:06Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.12.7/hub-freebsd-amd64-2.12.7.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/15067739", + "id": 15067739, + "node_id": "MDEyOlJlbGVhc2VBc3NldDE1MDY3NzM5", + "name": "hub-linux-386-2.12.7.tgz", + "label": "hub 2.12.7 for Linux 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4716696, + "download_count": 16, + "created_at": "2019-09-23T10:40:06Z", + "updated_at": "2019-09-23T10:40:06Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.12.7/hub-linux-386-2.12.7.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/15067740", + "id": 15067740, + "node_id": "MDEyOlJlbGVhc2VBc3NldDE1MDY3NzQw", + "name": "hub-linux-amd64-2.12.7.tgz", + "label": "hub 2.12.7 for Linux 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4882655, + "download_count": 2052, + "created_at": "2019-09-23T10:40:06Z", + "updated_at": "2019-09-23T10:40:07Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.12.7/hub-linux-amd64-2.12.7.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/15067741", + "id": 15067741, + "node_id": "MDEyOlJlbGVhc2VBc3NldDE1MDY3NzQx", + "name": "hub-linux-arm-2.12.7.tgz", + "label": "hub 2.12.7 for Linux ARM 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4536429, + "download_count": 15, + "created_at": "2019-09-23T10:40:07Z", + "updated_at": "2019-09-23T10:40:08Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.12.7/hub-linux-arm-2.12.7.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/15067743", + "id": 15067743, + "node_id": "MDEyOlJlbGVhc2VBc3NldDE1MDY3NzQz", + "name": "hub-linux-arm64-2.12.7.tgz", + "label": "hub 2.12.7 for Linux ARM 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4536717, + "download_count": 31, + "created_at": "2019-09-23T10:40:08Z", + "updated_at": "2019-09-23T10:40:08Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.12.7/hub-linux-arm64-2.12.7.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/15067744", + "id": 15067744, + "node_id": "MDEyOlJlbGVhc2VBc3NldDE1MDY3NzQ0", + "name": "hub-windows-386-2.12.7.zip", + "label": "hub 2.12.7 for Windows 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4714982, + "download_count": 115, + "created_at": "2019-09-23T10:40:08Z", + "updated_at": "2019-09-23T10:40:09Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.12.7/hub-windows-386-2.12.7.zip" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/15067745", + "id": 15067745, + "node_id": "MDEyOlJlbGVhc2VBc3NldDE1MDY3NzQ1", + "name": "hub-windows-amd64-2.12.7.zip", + "label": "hub 2.12.7 for Windows 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4874094, + "download_count": 884, + "created_at": "2019-09-23T10:40:09Z", + "updated_at": "2019-09-23T10:40:09Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.12.7/hub-windows-amd64-2.12.7.zip" + } + ], + "tarball_url": "https://api.github.com/repos/github/hub/tarball/v2.12.7", + "zipball_url": "https://api.github.com/repos/github/hub/zipball/v2.12.7", + "body": "* Fix password prompt on Windows\r\n" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/20157427", + "assets_url": "https://api.github.com/repos/github/hub/releases/20157427/assets", + "upload_url": "https://uploads.github.com/repos/github/hub/releases/20157427/assets{?name,label}", + "html_url": "https://github.com/github/hub/releases/tag/v2.12.6", + "id": 20157427, + "node_id": "MDc6UmVsZWFzZTIwMTU3NDI3", + "tag_name": "v2.12.6", + "target_commitish": "master", + "name": "hub 2.12.6", + "draft": false, + "author": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "prerelease": false, + "created_at": "2019-09-21T15:30:41Z", + "published_at": "2019-09-21T16:22:51Z", + "assets": [ + { + "url": "https://api.github.com/repos/github/hub/releases/assets/15048401", + "id": 15048401, + "node_id": "MDEyOlJlbGVhc2VBc3NldDE1MDQ4NDAx", + "name": "hub-darwin-amd64-2.12.6.tgz", + "label": "hub 2.12.6 for macOS", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4807867, + "download_count": 9, + "created_at": "2019-09-21T15:36:53Z", + "updated_at": "2019-09-21T15:36:53Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.12.6/hub-darwin-amd64-2.12.6.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/15048402", + "id": 15048402, + "node_id": "MDEyOlJlbGVhc2VBc3NldDE1MDQ4NDAy", + "name": "hub-freebsd-386-2.12.6.tgz", + "label": "hub 2.12.6 for FreeBSD 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4702299, + "download_count": 3, + "created_at": "2019-09-21T15:36:54Z", + "updated_at": "2019-09-21T15:36:54Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.12.6/hub-freebsd-386-2.12.6.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/15048403", + "id": 15048403, + "node_id": "MDEyOlJlbGVhc2VBc3NldDE1MDQ4NDAz", + "name": "hub-freebsd-amd64-2.12.6.tgz", + "label": "hub 2.12.6 for FreeBSD 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4847707, + "download_count": 4, + "created_at": "2019-09-21T15:36:54Z", + "updated_at": "2019-09-21T15:36:54Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.12.6/hub-freebsd-amd64-2.12.6.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/15048404", + "id": 15048404, + "node_id": "MDEyOlJlbGVhc2VBc3NldDE1MDQ4NDA0", + "name": "hub-linux-386-2.12.6.tgz", + "label": "hub 2.12.6 for Linux 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4716091, + "download_count": 4, + "created_at": "2019-09-21T15:36:54Z", + "updated_at": "2019-09-21T15:36:55Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.12.6/hub-linux-386-2.12.6.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/15048405", + "id": 15048405, + "node_id": "MDEyOlJlbGVhc2VBc3NldDE1MDQ4NDA1", + "name": "hub-linux-amd64-2.12.6.tgz", + "label": "hub 2.12.6 for Linux 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4882654, + "download_count": 212, + "created_at": "2019-09-21T15:36:55Z", + "updated_at": "2019-09-21T15:36:55Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.12.6/hub-linux-amd64-2.12.6.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/15048406", + "id": 15048406, + "node_id": "MDEyOlJlbGVhc2VBc3NldDE1MDQ4NDA2", + "name": "hub-linux-arm-2.12.6.tgz", + "label": "hub 2.12.6 for Linux ARM 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4536286, + "download_count": 4, + "created_at": "2019-09-21T15:36:55Z", + "updated_at": "2019-09-21T15:36:55Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.12.6/hub-linux-arm-2.12.6.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/15048407", + "id": 15048407, + "node_id": "MDEyOlJlbGVhc2VBc3NldDE1MDQ4NDA3", + "name": "hub-linux-arm64-2.12.6.tgz", + "label": "hub 2.12.6 for Linux ARM 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4537065, + "download_count": 4, + "created_at": "2019-09-21T15:36:56Z", + "updated_at": "2019-09-21T15:36:56Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.12.6/hub-linux-arm64-2.12.6.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/15048408", + "id": 15048408, + "node_id": "MDEyOlJlbGVhc2VBc3NldDE1MDQ4NDA4", + "name": "hub-windows-386-2.12.6.zip", + "label": "hub 2.12.6 for Windows 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4714670, + "download_count": 42, + "created_at": "2019-09-21T15:36:56Z", + "updated_at": "2019-09-21T15:36:56Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.12.6/hub-windows-386-2.12.6.zip" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/15048409", + "id": 15048409, + "node_id": "MDEyOlJlbGVhc2VBc3NldDE1MDQ4NDA5", + "name": "hub-windows-amd64-2.12.6.zip", + "label": "hub 2.12.6 for Windows 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4873989, + "download_count": 243, + "created_at": "2019-09-21T15:36:56Z", + "updated_at": "2019-09-21T15:36:57Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.12.6/hub-windows-amd64-2.12.6.zip" + } + ], + "tarball_url": "https://api.github.com/repos/github/hub/tarball/v2.12.6", + "zipball_url": "https://api.github.com/repos/github/hub/zipball/v2.12.6", + "body": "* Fix Windows build\r\n" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/20157262", + "assets_url": "https://api.github.com/repos/github/hub/releases/20157262/assets", + "upload_url": "https://uploads.github.com/repos/github/hub/releases/20157262/assets{?name,label}", + "html_url": "https://github.com/github/hub/releases/tag/v2.12.5", + "id": 20157262, + "node_id": "MDc6UmVsZWFzZTIwMTU3MjYy", + "tag_name": "v2.12.5", + "target_commitish": "master", + "name": "hub 2.12.5", + "draft": false, + "author": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "prerelease": false, + "created_at": "2019-09-21T15:03:10Z", + "published_at": "2019-09-21T15:13:58Z", + "assets": [ + { + "url": "https://api.github.com/repos/github/hub/releases/assets/15048269", + "id": 15048269, + "node_id": "MDEyOlJlbGVhc2VBc3NldDE1MDQ4MjY5", + "name": "hub-darwin-amd64-2.12.5.tgz", + "label": "hub 2.12.5 for macOS", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4808994, + "download_count": 2, + "created_at": "2019-09-21T15:10:07Z", + "updated_at": "2019-09-21T15:10:07Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.12.5/hub-darwin-amd64-2.12.5.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/15048270", + "id": 15048270, + "node_id": "MDEyOlJlbGVhc2VBc3NldDE1MDQ4Mjcw", + "name": "hub-freebsd-386-2.12.5.tgz", + "label": "hub 2.12.5 for FreeBSD 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4702308, + "download_count": 2, + "created_at": "2019-09-21T15:10:07Z", + "updated_at": "2019-09-21T15:10:08Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.12.5/hub-freebsd-386-2.12.5.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/15048271", + "id": 15048271, + "node_id": "MDEyOlJlbGVhc2VBc3NldDE1MDQ4Mjcx", + "name": "hub-freebsd-amd64-2.12.5.tgz", + "label": "hub 2.12.5 for FreeBSD 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4847661, + "download_count": 3, + "created_at": "2019-09-21T15:10:08Z", + "updated_at": "2019-09-21T15:10:08Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.12.5/hub-freebsd-amd64-2.12.5.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/15048272", + "id": 15048272, + "node_id": "MDEyOlJlbGVhc2VBc3NldDE1MDQ4Mjcy", + "name": "hub-linux-386-2.12.5.tgz", + "label": "hub 2.12.5 for Linux 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4716604, + "download_count": 2, + "created_at": "2019-09-21T15:10:08Z", + "updated_at": "2019-09-21T15:10:09Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.12.5/hub-linux-386-2.12.5.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/15048273", + "id": 15048273, + "node_id": "MDEyOlJlbGVhc2VBc3NldDE1MDQ4Mjcz", + "name": "hub-linux-amd64-2.12.5.tgz", + "label": "hub 2.12.5 for Linux 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4882651, + "download_count": 14, + "created_at": "2019-09-21T15:10:09Z", + "updated_at": "2019-09-21T15:10:09Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.12.5/hub-linux-amd64-2.12.5.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/15048274", + "id": 15048274, + "node_id": "MDEyOlJlbGVhc2VBc3NldDE1MDQ4Mjc0", + "name": "hub-linux-arm-2.12.5.tgz", + "label": "hub 2.12.5 for Linux ARM 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4536344, + "download_count": 2, + "created_at": "2019-09-21T15:10:09Z", + "updated_at": "2019-09-21T15:10:10Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.12.5/hub-linux-arm-2.12.5.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/15048275", + "id": 15048275, + "node_id": "MDEyOlJlbGVhc2VBc3NldDE1MDQ4Mjc1", + "name": "hub-linux-arm64-2.12.5.tgz", + "label": "hub 2.12.5 for Linux ARM 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4536765, + "download_count": 3, + "created_at": "2019-09-21T15:10:10Z", + "updated_at": "2019-09-21T15:10:10Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.12.5/hub-linux-arm64-2.12.5.tgz" + } + ], + "tarball_url": "https://api.github.com/repos/github/hub/tarball/v2.12.5", + "zipball_url": "https://api.github.com/repos/github/hub/zipball/v2.12.5", + "body": "* Correctly resolve `~/.ssh/config` hostname aliases on Windows\r\n\r\n* Added `hub pr` to fish completions script\r\n\r\n* Have fish completions script wrap `git` if hub is aliased" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/19821302", + "assets_url": "https://api.github.com/repos/github/hub/releases/19821302/assets", + "upload_url": "https://uploads.github.com/repos/github/hub/releases/19821302/assets{?name,label}", + "html_url": "https://github.com/github/hub/releases/tag/v2.12.4", + "id": 19821302, + "node_id": "MDc6UmVsZWFzZTE5ODIxMzAy", + "tag_name": "v2.12.4", + "target_commitish": "master", + "name": "hub 2.12.4", + "draft": false, + "author": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "prerelease": false, + "created_at": "2019-09-06T21:00:06Z", + "published_at": "2019-09-08T08:04:19Z", + "assets": [ + { + "url": "https://api.github.com/repos/github/hub/releases/assets/14792931", + "id": 14792931, + "node_id": "MDEyOlJlbGVhc2VBc3NldDE0NzkyOTMx", + "name": "hub-darwin-amd64-2.12.4.tgz", + "label": "hub 2.12.4 for macOS", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4809009, + "download_count": 81, + "created_at": "2019-09-06T21:07:41Z", + "updated_at": "2019-09-06T21:07:41Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.12.4/hub-darwin-amd64-2.12.4.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/14792932", + "id": 14792932, + "node_id": "MDEyOlJlbGVhc2VBc3NldDE0NzkyOTMy", + "name": "hub-freebsd-386-2.12.4.tgz", + "label": "hub 2.12.4 for FreeBSD 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4702144, + "download_count": 5, + "created_at": "2019-09-06T21:07:41Z", + "updated_at": "2019-09-06T21:07:42Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.12.4/hub-freebsd-386-2.12.4.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/14792933", + "id": 14792933, + "node_id": "MDEyOlJlbGVhc2VBc3NldDE0NzkyOTMz", + "name": "hub-freebsd-amd64-2.12.4.tgz", + "label": "hub 2.12.4 for FreeBSD 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4846323, + "download_count": 17, + "created_at": "2019-09-06T21:07:42Z", + "updated_at": "2019-09-06T21:07:42Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.12.4/hub-freebsd-amd64-2.12.4.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/14792934", + "id": 14792934, + "node_id": "MDEyOlJlbGVhc2VBc3NldDE0NzkyOTM0", + "name": "hub-linux-386-2.12.4.tgz", + "label": "hub 2.12.4 for Linux 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4715635, + "download_count": 18, + "created_at": "2019-09-06T21:07:43Z", + "updated_at": "2019-09-06T21:07:43Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.12.4/hub-linux-386-2.12.4.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/14792935", + "id": 14792935, + "node_id": "MDEyOlJlbGVhc2VBc3NldDE0NzkyOTM1", + "name": "hub-linux-amd64-2.12.4.tgz", + "label": "hub 2.12.4 for Linux 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4881523, + "download_count": 12478, + "created_at": "2019-09-06T21:07:43Z", + "updated_at": "2019-09-06T21:07:43Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.12.4/hub-linux-amd64-2.12.4.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/14792936", + "id": 14792936, + "node_id": "MDEyOlJlbGVhc2VBc3NldDE0NzkyOTM2", + "name": "hub-linux-arm-2.12.4.tgz", + "label": "hub 2.12.4 for Linux ARM 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4535807, + "download_count": 19, + "created_at": "2019-09-06T21:07:43Z", + "updated_at": "2019-09-06T21:07:44Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.12.4/hub-linux-arm-2.12.4.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/14792937", + "id": 14792937, + "node_id": "MDEyOlJlbGVhc2VBc3NldDE0NzkyOTM3", + "name": "hub-linux-arm64-2.12.4.tgz", + "label": "hub 2.12.4 for Linux ARM 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4536250, + "download_count": 28, + "created_at": "2019-09-06T21:07:44Z", + "updated_at": "2019-09-06T21:07:44Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.12.4/hub-linux-arm64-2.12.4.tgz" + } + ], + "tarball_url": "https://api.github.com/repos/github/hub/tarball/v2.12.4", + "zipball_url": "https://api.github.com/repos/github/hub/zipball/v2.12.4", + "body": "### Bug fixes\r\n* Fix invocation of `hub --paginate`\r\n\r\n* Consistently expand _all_ occurrences of `{owner}` and `{repo}` in `hub api`\r\n\r\n* Docs: unlist `%NC`/`%Nc` among available fields in `hub pr list --format`\r\n\r\n### Enhancements\r\n* GitHub Actions compatibility: infer GITHUB_USER value from GITHUB_REPOSITORY if available\r\n\r\n* Handle TERM signal during password prompt in terminal\r\n\r\n* Use consistent quote style in `hub sync` output\r\n" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/18731876", + "assets_url": "https://api.github.com/repos/github/hub/releases/18731876/assets", + "upload_url": "https://uploads.github.com/repos/github/hub/releases/18731876/assets{?name,label}", + "html_url": "https://github.com/github/hub/releases/tag/v2.12.3", + "id": 18731876, + "node_id": "MDc6UmVsZWFzZTE4NzMxODc2", + "tag_name": "v2.12.3", + "target_commitish": "master", + "name": "hub 2.12.3", + "draft": false, + "author": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "prerelease": false, + "created_at": "2019-07-19T12:30:07Z", + "published_at": "2019-07-19T12:42:40Z", + "assets": [ + { + "url": "https://api.github.com/repos/github/hub/releases/assets/13796603", + "id": 13796603, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNzk2NjAz", + "name": "hub-darwin-amd64-2.12.3.tgz", + "label": "hub 2.12.3 for macOS", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4809015, + "download_count": 433, + "created_at": "2019-07-19T12:37:01Z", + "updated_at": "2019-07-19T12:37:02Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.12.3/hub-darwin-amd64-2.12.3.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/13796604", + "id": 13796604, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNzk2NjA0", + "name": "hub-freebsd-386-2.12.3.tgz", + "label": "hub 2.12.3 for FreeBSD 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4701991, + "download_count": 19, + "created_at": "2019-07-19T12:37:02Z", + "updated_at": "2019-07-19T12:37:02Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.12.3/hub-freebsd-386-2.12.3.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/13796605", + "id": 13796605, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNzk2NjA1", + "name": "hub-freebsd-amd64-2.12.3.tgz", + "label": "hub 2.12.3 for FreeBSD 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4846906, + "download_count": 20, + "created_at": "2019-07-19T12:37:02Z", + "updated_at": "2019-07-19T12:37:03Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.12.3/hub-freebsd-amd64-2.12.3.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/13796606", + "id": 13796606, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNzk2NjA2", + "name": "hub-linux-386-2.12.3.tgz", + "label": "hub 2.12.3 for Linux 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4712776, + "download_count": 130, + "created_at": "2019-07-19T12:37:03Z", + "updated_at": "2019-07-19T12:37:03Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.12.3/hub-linux-386-2.12.3.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/13796607", + "id": 13796607, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNzk2NjA3", + "name": "hub-linux-amd64-2.12.3.tgz", + "label": "hub 2.12.3 for Linux 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4881098, + "download_count": 23987, + "created_at": "2019-07-19T12:37:03Z", + "updated_at": "2019-07-19T12:37:03Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.12.3/hub-linux-amd64-2.12.3.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/13796608", + "id": 13796608, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNzk2NjA4", + "name": "hub-linux-arm-2.12.3.tgz", + "label": "hub 2.12.3 for Linux ARM 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4536332, + "download_count": 76, + "created_at": "2019-07-19T12:37:04Z", + "updated_at": "2019-07-19T12:37:04Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.12.3/hub-linux-arm-2.12.3.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/13796609", + "id": 13796609, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNzk2NjA5", + "name": "hub-linux-arm64-2.12.3.tgz", + "label": "hub 2.12.3 for Linux ARM 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4539247, + "download_count": 217, + "created_at": "2019-07-19T12:37:04Z", + "updated_at": "2019-07-19T12:37:04Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.12.3/hub-linux-arm64-2.12.3.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/13796610", + "id": 13796610, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNzk2NjEw", + "name": "hub-windows-386-2.12.3.zip", + "label": "hub 2.12.3 for Windows 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4714002, + "download_count": 456, + "created_at": "2019-07-19T12:37:05Z", + "updated_at": "2019-07-19T12:37:05Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.12.3/hub-windows-386-2.12.3.zip" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/13796611", + "id": 13796611, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNzk2NjEx", + "name": "hub-windows-amd64-2.12.3.zip", + "label": "hub 2.12.3 for Windows 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4874338, + "download_count": 3366, + "created_at": "2019-07-19T12:37:05Z", + "updated_at": "2019-07-19T12:37:06Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.12.3/hub-windows-amd64-2.12.3.zip" + } + ], + "tarball_url": "https://api.github.com/repos/github/hub/tarball/v2.12.3", + "zipball_url": "https://api.github.com/repos/github/hub/zipball/v2.12.3", + "body": "* Allow hub use within GitHub Actions by specifying GITHUB_USER https://github.com/github/hub/issues/2149\r\n\r\n* Show friendlier error message when GITHUB_TOKEN is set, but fetching the current user fails\r\n" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/18509954", + "assets_url": "https://api.github.com/repos/github/hub/releases/18509954/assets", + "upload_url": "https://uploads.github.com/repos/github/hub/releases/18509954/assets{?name,label}", + "html_url": "https://github.com/github/hub/releases/tag/v2.12.2", + "id": 18509954, + "node_id": "MDc6UmVsZWFzZTE4NTA5OTU0", + "tag_name": "v2.12.2", + "target_commitish": "master", + "name": "hub 2.12.2", + "draft": false, + "author": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "prerelease": false, + "created_at": "2019-07-09T22:36:50Z", + "published_at": "2019-07-10T14:49:15Z", + "assets": [ + { + "url": "https://api.github.com/repos/github/hub/releases/assets/13628826", + "id": 13628826, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNjI4ODI2", + "name": "hub-darwin-amd64-2.12.2.tgz", + "label": "hub 2.12.2 for macOS", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4807468, + "download_count": 48, + "created_at": "2019-07-09T22:49:17Z", + "updated_at": "2019-07-09T22:49:17Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.12.2/hub-darwin-amd64-2.12.2.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/13628828", + "id": 13628828, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNjI4ODI4", + "name": "hub-freebsd-386-2.12.2.tgz", + "label": "hub 2.12.2 for FreeBSD 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4701380, + "download_count": 9, + "created_at": "2019-07-09T22:49:17Z", + "updated_at": "2019-07-09T22:49:18Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.12.2/hub-freebsd-386-2.12.2.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/13628829", + "id": 13628829, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNjI4ODI5", + "name": "hub-freebsd-amd64-2.12.2.tgz", + "label": "hub 2.12.2 for FreeBSD 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4845534, + "download_count": 8, + "created_at": "2019-07-09T22:49:18Z", + "updated_at": "2019-07-09T22:49:18Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.12.2/hub-freebsd-amd64-2.12.2.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/13628831", + "id": 13628831, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNjI4ODMx", + "name": "hub-linux-386-2.12.2.tgz", + "label": "hub 2.12.2 for Linux 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4712167, + "download_count": 15, + "created_at": "2019-07-09T22:49:18Z", + "updated_at": "2019-07-09T22:49:19Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.12.2/hub-linux-386-2.12.2.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/13628833", + "id": 13628833, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNjI4ODMz", + "name": "hub-linux-amd64-2.12.2.tgz", + "label": "hub 2.12.2 for Linux 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4881051, + "download_count": 8628, + "created_at": "2019-07-09T22:49:19Z", + "updated_at": "2019-07-09T22:49:19Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.12.2/hub-linux-amd64-2.12.2.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/13628835", + "id": 13628835, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNjI4ODM1", + "name": "hub-linux-arm-2.12.2.tgz", + "label": "hub 2.12.2 for Linux ARM 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4535693, + "download_count": 25, + "created_at": "2019-07-09T22:49:19Z", + "updated_at": "2019-07-09T22:49:20Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.12.2/hub-linux-arm-2.12.2.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/13628837", + "id": 13628837, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNjI4ODM3", + "name": "hub-linux-arm64-2.12.2.tgz", + "label": "hub 2.12.2 for Linux ARM 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4538230, + "download_count": 28, + "created_at": "2019-07-09T22:49:20Z", + "updated_at": "2019-07-09T22:49:20Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.12.2/hub-linux-arm64-2.12.2.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/13628839", + "id": 13628839, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNjI4ODM5", + "name": "hub-windows-386-2.12.2.zip", + "label": "hub 2.12.2 for Windows 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4713375, + "download_count": 88, + "created_at": "2019-07-09T22:49:20Z", + "updated_at": "2019-07-09T22:49:22Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.12.2/hub-windows-386-2.12.2.zip" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/13628840", + "id": 13628840, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNjI4ODQw", + "name": "hub-windows-amd64-2.12.2.zip", + "label": "hub 2.12.2 for Windows 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4873553, + "download_count": 724, + "created_at": "2019-07-09T22:49:22Z", + "updated_at": "2019-07-09T22:49:23Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.12.2/hub-windows-amd64-2.12.2.zip" + } + ], + "tarball_url": "https://api.github.com/repos/github/hub/tarball/v2.12.2", + "zipball_url": "https://api.github.com/repos/github/hub/zipball/v2.12.2", + "body": "* Improve `pull-request` push target detection for `git config push.default` is \"upstream\", but when the current branch does not have upstream configuration" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/18303721", + "assets_url": "https://api.github.com/repos/github/hub/releases/18303721/assets", + "upload_url": "https://uploads.github.com/repos/github/hub/releases/18303721/assets{?name,label}", + "html_url": "https://github.com/github/hub/releases/tag/v2.12.1", + "id": 18303721, + "node_id": "MDc6UmVsZWFzZTE4MzAzNzIx", + "tag_name": "v2.12.1", + "target_commitish": "master", + "name": "hub 2.12.1", + "draft": false, + "author": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "prerelease": false, + "created_at": "2019-06-28T20:19:41Z", + "published_at": "2019-06-30T20:40:36Z", + "assets": [ + { + "url": "https://api.github.com/repos/github/hub/releases/assets/13458606", + "id": 13458606, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNDU4NjA2", + "name": "hub-darwin-amd64-2.12.1.tgz", + "label": "hub 2.12.1 for macOS", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4806638, + "download_count": 41, + "created_at": "2019-06-28T20:33:13Z", + "updated_at": "2019-06-28T20:33:13Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.12.1/hub-darwin-amd64-2.12.1.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/13458607", + "id": 13458607, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNDU4NjA3", + "name": "hub-freebsd-386-2.12.1.tgz", + "label": "hub 2.12.1 for FreeBSD 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4700905, + "download_count": 8, + "created_at": "2019-06-28T20:33:13Z", + "updated_at": "2019-06-28T20:33:14Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.12.1/hub-freebsd-386-2.12.1.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/13458608", + "id": 13458608, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNDU4NjA4", + "name": "hub-freebsd-amd64-2.12.1.tgz", + "label": "hub 2.12.1 for FreeBSD 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4844568, + "download_count": 11, + "created_at": "2019-06-28T20:33:14Z", + "updated_at": "2019-06-28T20:33:14Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.12.1/hub-freebsd-amd64-2.12.1.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/13458609", + "id": 13458609, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNDU4NjA5", + "name": "hub-linux-386-2.12.1.tgz", + "label": "hub 2.12.1 for Linux 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4712230, + "download_count": 10, + "created_at": "2019-06-28T20:33:14Z", + "updated_at": "2019-06-28T20:33:15Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.12.1/hub-linux-386-2.12.1.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/13458610", + "id": 13458610, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNDU4NjEw", + "name": "hub-linux-amd64-2.12.1.tgz", + "label": "hub 2.12.1 for Linux 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4880612, + "download_count": 6812, + "created_at": "2019-06-28T20:33:15Z", + "updated_at": "2019-06-28T20:33:15Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.12.1/hub-linux-amd64-2.12.1.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/13458611", + "id": 13458611, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNDU4NjEx", + "name": "hub-linux-arm-2.12.1.tgz", + "label": "hub 2.12.1 for Linux ARM 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4535465, + "download_count": 25, + "created_at": "2019-06-28T20:33:15Z", + "updated_at": "2019-06-28T20:33:15Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.12.1/hub-linux-arm-2.12.1.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/13458613", + "id": 13458613, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNDU4NjEz", + "name": "hub-linux-arm64-2.12.1.tgz", + "label": "hub 2.12.1 for Linux ARM 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4537402, + "download_count": 56, + "created_at": "2019-06-28T20:33:16Z", + "updated_at": "2019-06-28T20:33:16Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.12.1/hub-linux-arm64-2.12.1.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/13458614", + "id": 13458614, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNDU4NjE0", + "name": "hub-windows-386-2.12.1.zip", + "label": "hub 2.12.1 for Windows 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4712548, + "download_count": 168, + "created_at": "2019-06-28T20:33:16Z", + "updated_at": "2019-06-28T20:33:16Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.12.1/hub-windows-386-2.12.1.zip" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/13458615", + "id": 13458615, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNDU4NjE1", + "name": "hub-windows-amd64-2.12.1.zip", + "label": "hub 2.12.1 for Windows 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4872788, + "download_count": 869, + "created_at": "2019-06-28T20:33:16Z", + "updated_at": "2019-06-28T20:33:17Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.12.1/hub-windows-amd64-2.12.1.zip" + } + ], + "tarball_url": "https://api.github.com/repos/github/hub/tarball/v2.12.1", + "zipball_url": "https://api.github.com/repos/github/hub/zipball/v2.12.1", + "body": "Fixes:\r\n\r\n* `hub pull-request`: Avoid crash when the current branch is pushed to a non-GitHub remote\r\n\r\n* `BROWSER` environment variable now supports values with spaces in them (must be shell-quoted)\r\n\r\n* `hub help`: support `man` appearing in a path that has spaces\r\n\r\n* Docs: mention that comma-separated lists must not have spaces\r\n" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/18016139", + "assets_url": "https://api.github.com/repos/github/hub/releases/18016139/assets", + "upload_url": "https://uploads.github.com/repos/github/hub/releases/18016139/assets{?name,label}", + "html_url": "https://github.com/github/hub/releases/tag/v2.12.0", + "id": 18016139, + "node_id": "MDc6UmVsZWFzZTE4MDE2MTM5", + "tag_name": "v2.12.0", + "target_commitish": "master", + "name": "hub 2.12.0", + "draft": false, + "author": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "prerelease": false, + "created_at": "2019-06-15T14:14:43Z", + "published_at": "2019-06-15T14:35:25Z", + "assets": [ + { + "url": "https://api.github.com/repos/github/hub/releases/assets/13215294", + "id": 13215294, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzMjE1Mjk0", + "name": "hub-darwin-amd64-2.12.0.tgz", + "label": "hub 2.12.0 for macOS", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4806726, + "download_count": 54, + "created_at": "2019-06-15T14:25:46Z", + "updated_at": "2019-06-15T14:25:47Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.12.0/hub-darwin-amd64-2.12.0.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/13215295", + "id": 13215295, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzMjE1Mjk1", + "name": "hub-freebsd-386-2.12.0.tgz", + "label": "hub 2.12.0 for FreeBSD 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4700685, + "download_count": 12, + "created_at": "2019-06-15T14:25:47Z", + "updated_at": "2019-06-15T14:25:47Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.12.0/hub-freebsd-386-2.12.0.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/13215296", + "id": 13215296, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzMjE1Mjk2", + "name": "hub-freebsd-amd64-2.12.0.tgz", + "label": "hub 2.12.0 for FreeBSD 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4843388, + "download_count": 10, + "created_at": "2019-06-15T14:25:48Z", + "updated_at": "2019-06-15T14:25:48Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.12.0/hub-freebsd-amd64-2.12.0.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/13215297", + "id": 13215297, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzMjE1Mjk3", + "name": "hub-linux-386-2.12.0.tgz", + "label": "hub 2.12.0 for Linux 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4712246, + "download_count": 23, + "created_at": "2019-06-15T14:25:48Z", + "updated_at": "2019-06-15T14:25:48Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.12.0/hub-linux-386-2.12.0.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/13215299", + "id": 13215299, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzMjE1Mjk5", + "name": "hub-linux-amd64-2.12.0.tgz", + "label": "hub 2.12.0 for Linux 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4878984, + "download_count": 2620, + "created_at": "2019-06-15T14:25:48Z", + "updated_at": "2019-06-15T14:25:49Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.12.0/hub-linux-amd64-2.12.0.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/13215300", + "id": 13215300, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzMjE1MzAw", + "name": "hub-linux-arm-2.12.0.tgz", + "label": "hub 2.12.0 for Linux ARM 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4535239, + "download_count": 38, + "created_at": "2019-06-15T14:25:49Z", + "updated_at": "2019-06-15T14:25:49Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.12.0/hub-linux-arm-2.12.0.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/13215302", + "id": 13215302, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzMjE1MzAy", + "name": "hub-linux-arm64-2.12.0.tgz", + "label": "hub 2.12.0 for Linux ARM 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4535160, + "download_count": 47, + "created_at": "2019-06-15T14:25:49Z", + "updated_at": "2019-06-15T14:25:50Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.12.0/hub-linux-arm64-2.12.0.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/13215305", + "id": 13215305, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzMjE1MzA1", + "name": "hub-windows-386-2.12.0.zip", + "label": "hub 2.12.0 for Windows 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4712628, + "download_count": 358, + "created_at": "2019-06-15T14:25:50Z", + "updated_at": "2019-06-15T14:25:50Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.12.0/hub-windows-386-2.12.0.zip" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/13215306", + "id": 13215306, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzMjE1MzA2", + "name": "hub-windows-amd64-2.12.0.zip", + "label": "hub 2.12.0 for Windows 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4871603, + "download_count": 1111, + "created_at": "2019-06-15T14:25:50Z", + "updated_at": "2019-06-15T14:25:51Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.12.0/hub-windows-amd64-2.12.0.zip" + } + ], + "tarball_url": "https://api.github.com/repos/github/hub/tarball/v2.12.0", + "zipball_url": "https://api.github.com/repos/github/hub/zipball/v2.12.0", + "body": "## Features\r\n\r\n* Add `hub api --paginate` option to automatically fetch all pages of results\r\n\r\n* Add `hub pr show []` command to open a pull request in the browser\r\n\r\n* Add `hub pull-request --no-maintainer-edits` flag to disallow project maintainers being able to push to your branch\r\n\r\n* Abort `hub pull-request` with a helpful error message if the current branch wasn't pushed to a git remote\r\n\r\n* `hub issue -M` now accepts milestone names instead of just numbers\r\n\r\n* Drop support for legacy `hub.http-clone` git config value (this was broken for a while and nobody complained, so I deemed it safe to drop in a minor rather than a major release)\r\n\r\n## Fixes\r\n\r\n* Fix querying git configuration when GIT_TRACE is used\r\n\r\n* Support detached HEAD if `hub pull-request --head` was passed\r\n\r\n* Fix newline in `hub create` error message\r\n\r\n* Ensure HTTP connection reuse across API calls\r\n" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/16749698", + "assets_url": "https://api.github.com/repos/github/hub/releases/16749698/assets", + "upload_url": "https://uploads.github.com/repos/github/hub/releases/16749698/assets{?name,label}", + "html_url": "https://github.com/github/hub/releases/tag/v2.11.2", + "id": 16749698, + "node_id": "MDc6UmVsZWFzZTE2NzQ5Njk4", + "tag_name": "v2.11.2", + "target_commitish": "master", + "name": "hub 2.11.2", + "draft": false, + "author": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "prerelease": false, + "created_at": "2019-04-14T13:26:40Z", + "published_at": "2019-04-14T14:37:15Z", + "assets": [ + { + "url": "https://api.github.com/repos/github/hub/releases/assets/12057036", + "id": 12057036, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMDU3MDM2", + "name": "hub-darwin-amd64-2.11.2.tgz", + "label": "hub 2.11.2 for macOS", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4231827, + "download_count": 649, + "created_at": "2019-04-14T13:35:08Z", + "updated_at": "2019-04-14T13:35:09Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.11.2/hub-darwin-amd64-2.11.2.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/12057037", + "id": 12057037, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMDU3MDM3", + "name": "hub-freebsd-386-2.11.2.tgz", + "label": "hub 2.11.2 for FreeBSD 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4123661, + "download_count": 25, + "created_at": "2019-04-14T13:35:09Z", + "updated_at": "2019-04-14T13:35:09Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.11.2/hub-freebsd-386-2.11.2.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/12057038", + "id": 12057038, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMDU3MDM4", + "name": "hub-freebsd-amd64-2.11.2.tgz", + "label": "hub 2.11.2 for FreeBSD 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4270911, + "download_count": 31, + "created_at": "2019-04-14T13:35:09Z", + "updated_at": "2019-04-14T13:35:10Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.11.2/hub-freebsd-amd64-2.11.2.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/12057039", + "id": 12057039, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMDU3MDM5", + "name": "hub-linux-386-2.11.2.tgz", + "label": "hub 2.11.2 for Linux 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4127508, + "download_count": 209, + "created_at": "2019-04-14T13:35:10Z", + "updated_at": "2019-04-14T13:35:10Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.11.2/hub-linux-386-2.11.2.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/12057040", + "id": 12057040, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMDU3MDQw", + "name": "hub-linux-amd64-2.11.2.tgz", + "label": "hub 2.11.2 for Linux 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4301024, + "download_count": 29712, + "created_at": "2019-04-14T13:35:11Z", + "updated_at": "2019-04-14T13:35:11Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.11.2/hub-linux-amd64-2.11.2.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/12057041", + "id": 12057041, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMDU3MDQx", + "name": "hub-linux-arm-2.11.2.tgz", + "label": "hub 2.11.2 for Linux ARM 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 3952799, + "download_count": 89, + "created_at": "2019-04-14T13:35:11Z", + "updated_at": "2019-04-14T13:35:12Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.11.2/hub-linux-arm-2.11.2.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/12057042", + "id": 12057042, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMDU3MDQy", + "name": "hub-linux-arm64-2.11.2.tgz", + "label": "hub 2.11.2 for Linux ARM 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 3964922, + "download_count": 174, + "created_at": "2019-04-14T13:35:12Z", + "updated_at": "2019-04-14T13:35:12Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.11.2/hub-linux-arm64-2.11.2.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/12057043", + "id": 12057043, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMDU3MDQz", + "name": "hub-windows-386-2.11.2.zip", + "label": "hub 2.11.2 for Windows 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4057500, + "download_count": 874, + "created_at": "2019-04-14T13:35:12Z", + "updated_at": "2019-04-14T13:35:13Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.11.2/hub-windows-386-2.11.2.zip" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/12057044", + "id": 12057044, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMDU3MDQ0", + "name": "hub-windows-amd64-2.11.2.zip", + "label": "hub 2.11.2 for Windows 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4214531, + "download_count": 3690, + "created_at": "2019-04-14T13:35:13Z", + "updated_at": "2019-04-14T13:35:14Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.11.2/hub-windows-amd64-2.11.2.zip" + } + ], + "tarball_url": "https://api.github.com/repos/github/hub/tarball/v2.11.2", + "zipball_url": "https://api.github.com/repos/github/hub/zipball/v2.11.2", + "body": "* Avoid crash in `hub remote` argument parsing\r\n\r\n* Fix `hub -C mydir merge ` by propagating global git arguments to Before/After chains\r\n\r\n* Preserve tilde `~` character in man pages\r\n" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/16433801", + "assets_url": "https://api.github.com/repos/github/hub/releases/16433801/assets", + "upload_url": "https://uploads.github.com/repos/github/hub/releases/16433801/assets{?name,label}", + "html_url": "https://github.com/github/hub/releases/tag/v2.11.1", + "id": 16433801, + "node_id": "MDc6UmVsZWFzZTE2NDMzODAx", + "tag_name": "v2.11.1", + "target_commitish": "master", + "name": "hub 2.11.1", + "draft": false, + "author": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "prerelease": false, + "created_at": "2019-03-29T11:33:51Z", + "published_at": "2019-03-29T13:36:09Z", + "assets": [ + { + "url": "https://api.github.com/repos/github/hub/releases/assets/11791846", + "id": 11791846, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExNzkxODQ2", + "name": "hub-darwin-amd64-2.11.1.tgz", + "label": "hub 2.11.1 for macOS", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4230231, + "download_count": 53, + "created_at": "2019-03-29T11:42:49Z", + "updated_at": "2019-03-29T11:42:49Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.11.1/hub-darwin-amd64-2.11.1.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/11791847", + "id": 11791847, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExNzkxODQ3", + "name": "hub-freebsd-386-2.11.1.tgz", + "label": "hub 2.11.1 for FreeBSD 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4119823, + "download_count": 16, + "created_at": "2019-03-29T11:42:49Z", + "updated_at": "2019-03-29T11:42:50Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.11.1/hub-freebsd-386-2.11.1.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/11791848", + "id": 11791848, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExNzkxODQ4", + "name": "hub-freebsd-amd64-2.11.1.tgz", + "label": "hub 2.11.1 for FreeBSD 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4269441, + "download_count": 17, + "created_at": "2019-03-29T11:42:50Z", + "updated_at": "2019-03-29T11:42:50Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.11.1/hub-freebsd-amd64-2.11.1.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/11791849", + "id": 11791849, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExNzkxODQ5", + "name": "hub-linux-386-2.11.1.tgz", + "label": "hub 2.11.1 for Linux 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4124126, + "download_count": 93, + "created_at": "2019-03-29T11:42:51Z", + "updated_at": "2019-03-29T11:42:51Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.11.1/hub-linux-386-2.11.1.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/11791850", + "id": 11791850, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExNzkxODUw", + "name": "hub-linux-amd64-2.11.1.tgz", + "label": "hub 2.11.1 for Linux 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4294575, + "download_count": 22289, + "created_at": "2019-03-29T11:42:51Z", + "updated_at": "2019-03-29T11:42:51Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.11.1/hub-linux-amd64-2.11.1.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/11791851", + "id": 11791851, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExNzkxODUx", + "name": "hub-linux-arm-2.11.1.tgz", + "label": "hub 2.11.1 for Linux ARM 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 3951400, + "download_count": 32, + "created_at": "2019-03-29T11:42:52Z", + "updated_at": "2019-03-29T11:42:52Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.11.1/hub-linux-arm-2.11.1.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/11791853", + "id": 11791853, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExNzkxODUz", + "name": "hub-linux-arm64-2.11.1.tgz", + "label": "hub 2.11.1 for Linux ARM 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 3962542, + "download_count": 55, + "created_at": "2019-03-29T11:42:53Z", + "updated_at": "2019-03-29T11:42:53Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.11.1/hub-linux-arm64-2.11.1.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/11791854", + "id": 11791854, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExNzkxODU0", + "name": "hub-windows-386-2.11.1.zip", + "label": "hub 2.11.1 for Windows 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4055359, + "download_count": 186, + "created_at": "2019-03-29T11:42:53Z", + "updated_at": "2019-03-29T11:42:54Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.11.1/hub-windows-386-2.11.1.zip" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/11791855", + "id": 11791855, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExNzkxODU1", + "name": "hub-windows-amd64-2.11.1.zip", + "label": "hub 2.11.1 for Windows 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4216445, + "download_count": 876, + "created_at": "2019-03-29T11:42:54Z", + "updated_at": "2019-03-29T11:42:54Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.11.1/hub-windows-amd64-2.11.1.zip" + } + ], + "tarball_url": "https://api.github.com/repos/github/hub/tarball/v2.11.1", + "zipball_url": "https://api.github.com/repos/github/hub/zipball/v2.11.1", + "body": "* Fix non-draft pull requests for certain repositories\r\n" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/16425444", + "assets_url": "https://api.github.com/repos/github/hub/releases/16425444/assets", + "upload_url": "https://uploads.github.com/repos/github/hub/releases/16425444/assets{?name,label}", + "html_url": "https://github.com/github/hub/releases/tag/v2.11.0", + "id": 16425444, + "node_id": "MDc6UmVsZWFzZTE2NDI1NDQ0", + "tag_name": "v2.11.0", + "target_commitish": "master", + "name": "hub 2.11.0", + "draft": false, + "author": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "prerelease": false, + "created_at": "2019-03-29T01:18:06Z", + "published_at": "2019-03-29T01:28:20Z", + "assets": [ + { + "url": "https://api.github.com/repos/github/hub/releases/assets/11784944", + "id": 11784944, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExNzg0OTQ0", + "name": "hub-darwin-amd64-2.11.0.tgz", + "label": "hub 2.11.0 for macOS", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4230132, + "download_count": 23, + "created_at": "2019-03-29T01:24:29Z", + "updated_at": "2019-03-29T01:24:30Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.11.0/hub-darwin-amd64-2.11.0.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/11784946", + "id": 11784946, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExNzg0OTQ2", + "name": "hub-freebsd-386-2.11.0.tgz", + "label": "hub 2.11.0 for FreeBSD 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4119681, + "download_count": 15, + "created_at": "2019-03-29T01:24:30Z", + "updated_at": "2019-03-29T01:24:30Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.11.0/hub-freebsd-386-2.11.0.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/11784948", + "id": 11784948, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExNzg0OTQ4", + "name": "hub-freebsd-amd64-2.11.0.tgz", + "label": "hub 2.11.0 for FreeBSD 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4268866, + "download_count": 17, + "created_at": "2019-03-29T01:24:31Z", + "updated_at": "2019-03-29T01:24:31Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.11.0/hub-freebsd-amd64-2.11.0.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/11784950", + "id": 11784950, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExNzg0OTUw", + "name": "hub-linux-386-2.11.0.tgz", + "label": "hub 2.11.0 for Linux 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4124184, + "download_count": 254, + "created_at": "2019-03-29T01:24:31Z", + "updated_at": "2019-03-29T01:24:32Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.11.0/hub-linux-386-2.11.0.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/11784951", + "id": 11784951, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExNzg0OTUx", + "name": "hub-linux-amd64-2.11.0.tgz", + "label": "hub 2.11.0 for Linux 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4294376, + "download_count": 161, + "created_at": "2019-03-29T01:24:32Z", + "updated_at": "2019-03-29T01:24:32Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.11.0/hub-linux-amd64-2.11.0.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/11784952", + "id": 11784952, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExNzg0OTUy", + "name": "hub-linux-arm-2.11.0.tgz", + "label": "hub 2.11.0 for Linux ARM 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 3951690, + "download_count": 16, + "created_at": "2019-03-29T01:24:32Z", + "updated_at": "2019-03-29T01:24:33Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.11.0/hub-linux-arm-2.11.0.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/11784953", + "id": 11784953, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExNzg0OTUz", + "name": "hub-linux-arm64-2.11.0.tgz", + "label": "hub 2.11.0 for Linux ARM 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 3961233, + "download_count": 16, + "created_at": "2019-03-29T01:24:33Z", + "updated_at": "2019-03-29T01:24:33Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.11.0/hub-linux-arm64-2.11.0.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/11784954", + "id": 11784954, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExNzg0OTU0", + "name": "hub-windows-386-2.11.0.zip", + "label": "hub 2.11.0 for Windows 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4055219, + "download_count": 39, + "created_at": "2019-03-29T01:24:34Z", + "updated_at": "2019-03-29T01:24:34Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.11.0/hub-windows-386-2.11.0.zip" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/11784955", + "id": 11784955, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExNzg0OTU1", + "name": "hub-windows-amd64-2.11.0.zip", + "label": "hub 2.11.0 for Windows 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4216064, + "download_count": 92, + "created_at": "2019-03-29T01:24:34Z", + "updated_at": "2019-03-29T01:24:34Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.11.0/hub-windows-amd64-2.11.0.zip" + } + ], + "tarball_url": "https://api.github.com/repos/github/hub/tarball/v2.11.0", + "zipball_url": "https://api.github.com/repos/github/hub/zipball/v2.11.0", + "body": "* Create draft pull requests with `hub pull-request --draft`\r\n\r\n Draft pull requests are considered work in progress: they don't automatically request others for review and they are not mergeable while in their draft state." + }, + { + "url": "https://api.github.com/repos/github/hub/releases/16424908", + "assets_url": "https://api.github.com/repos/github/hub/releases/16424908/assets", + "upload_url": "https://uploads.github.com/repos/github/hub/releases/16424908/assets{?name,label}", + "html_url": "https://github.com/github/hub/releases/tag/v2.10.2", + "id": 16424908, + "node_id": "MDc6UmVsZWFzZTE2NDI0OTA4", + "tag_name": "v2.10.2", + "target_commitish": "master", + "name": "hub 2.10.2", + "draft": false, + "author": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "prerelease": false, + "created_at": "2019-03-29T00:12:55Z", + "published_at": "2019-03-29T00:49:01Z", + "assets": [ + { + "url": "https://api.github.com/repos/github/hub/releases/assets/11784162", + "id": 11784162, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExNzg0MTYy", + "name": "hub-darwin-amd64-2.10.2.tgz", + "label": "hub 2.10.2 for macOS", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4228022, + "download_count": 12, + "created_at": "2019-03-29T00:22:00Z", + "updated_at": "2019-03-29T00:22:00Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.10.2/hub-darwin-amd64-2.10.2.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/11784163", + "id": 11784163, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExNzg0MTYz", + "name": "hub-freebsd-386-2.10.2.tgz", + "label": "hub 2.10.2 for FreeBSD 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4119839, + "download_count": 9, + "created_at": "2019-03-29T00:22:01Z", + "updated_at": "2019-03-29T00:22:01Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.10.2/hub-freebsd-386-2.10.2.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/11784164", + "id": 11784164, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExNzg0MTY0", + "name": "hub-freebsd-amd64-2.10.2.tgz", + "label": "hub 2.10.2 for FreeBSD 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4268339, + "download_count": 11, + "created_at": "2019-03-29T00:22:01Z", + "updated_at": "2019-03-29T00:22:02Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.10.2/hub-freebsd-amd64-2.10.2.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/11784165", + "id": 11784165, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExNzg0MTY1", + "name": "hub-linux-386-2.10.2.tgz", + "label": "hub 2.10.2 for Linux 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4123089, + "download_count": 8, + "created_at": "2019-03-29T00:22:02Z", + "updated_at": "2019-03-29T00:22:03Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.10.2/hub-linux-386-2.10.2.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/11784166", + "id": 11784166, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExNzg0MTY2", + "name": "hub-linux-amd64-2.10.2.tgz", + "label": "hub 2.10.2 for Linux 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4296620, + "download_count": 12, + "created_at": "2019-03-29T00:22:03Z", + "updated_at": "2019-03-29T00:22:03Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.10.2/hub-linux-amd64-2.10.2.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/11784167", + "id": 11784167, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExNzg0MTY3", + "name": "hub-linux-arm-2.10.2.tgz", + "label": "hub 2.10.2 for Linux ARM 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 3950905, + "download_count": 9, + "created_at": "2019-03-29T00:22:03Z", + "updated_at": "2019-03-29T00:22:04Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.10.2/hub-linux-arm-2.10.2.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/11784168", + "id": 11784168, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExNzg0MTY4", + "name": "hub-linux-arm64-2.10.2.tgz", + "label": "hub 2.10.2 for Linux ARM 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 3960579, + "download_count": 9, + "created_at": "2019-03-29T00:22:04Z", + "updated_at": "2019-03-29T00:22:04Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.10.2/hub-linux-arm64-2.10.2.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/11784169", + "id": 11784169, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExNzg0MTY5", + "name": "hub-windows-386-2.10.2.zip", + "label": "hub 2.10.2 for Windows 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4054840, + "download_count": 12, + "created_at": "2019-03-29T00:22:05Z", + "updated_at": "2019-03-29T00:22:05Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.10.2/hub-windows-386-2.10.2.zip" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/11784170", + "id": 11784170, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExNzg0MTcw", + "name": "hub-windows-amd64-2.10.2.zip", + "label": "hub 2.10.2 for Windows 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4215550, + "download_count": 12, + "created_at": "2019-03-29T00:22:05Z", + "updated_at": "2019-03-29T00:22:06Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.10.2/hub-windows-amd64-2.10.2.zip" + } + ], + "tarball_url": "https://api.github.com/repos/github/hub/tarball/v2.10.2", + "zipball_url": "https://api.github.com/repos/github/hub/zipball/v2.10.2", + "body": "* Fix compatibility with git when run with no arguments: `hub --git-dir=.git`\r\n\r\n* Fix issue/PR `--format %L` output in no-color mode" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/16395737", + "assets_url": "https://api.github.com/repos/github/hub/releases/16395737/assets", + "upload_url": "https://uploads.github.com/repos/github/hub/releases/16395737/assets{?name,label}", + "html_url": "https://github.com/github/hub/releases/tag/v2.10.1", + "id": 16395737, + "node_id": "MDc6UmVsZWFzZTE2Mzk1NzM3", + "tag_name": "v2.10.1", + "target_commitish": "master", + "name": "hub 2.10.1", + "draft": false, + "author": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "prerelease": false, + "created_at": "2019-03-27T21:37:12Z", + "published_at": "2019-03-28T13:28:47Z", + "assets": [ + { + "url": "https://api.github.com/repos/github/hub/releases/assets/11763593", + "id": 11763593, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExNzYzNTkz", + "name": "hub-darwin-amd64-2.10.1.tgz", + "label": "hub 2.10.1 for macOS", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4229101, + "download_count": 10, + "created_at": "2019-03-27T22:03:52Z", + "updated_at": "2019-03-27T22:03:52Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.10.1/hub-darwin-amd64-2.10.1.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/11763595", + "id": 11763595, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExNzYzNTk1", + "name": "hub-freebsd-386-2.10.1.tgz", + "label": "hub 2.10.1 for FreeBSD 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4119073, + "download_count": 11, + "created_at": "2019-03-27T22:03:52Z", + "updated_at": "2019-03-27T22:03:53Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.10.1/hub-freebsd-386-2.10.1.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/11763596", + "id": 11763596, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExNzYzNTk2", + "name": "hub-freebsd-amd64-2.10.1.tgz", + "label": "hub 2.10.1 for FreeBSD 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4267741, + "download_count": 8, + "created_at": "2019-03-27T22:03:53Z", + "updated_at": "2019-03-27T22:03:53Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.10.1/hub-freebsd-amd64-2.10.1.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/11763597", + "id": 11763597, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExNzYzNTk3", + "name": "hub-linux-386-2.10.1.tgz", + "label": "hub 2.10.1 for Linux 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4123055, + "download_count": 10, + "created_at": "2019-03-27T22:03:53Z", + "updated_at": "2019-03-27T22:03:54Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.10.1/hub-linux-386-2.10.1.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/11763598", + "id": 11763598, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExNzYzNTk4", + "name": "hub-linux-amd64-2.10.1.tgz", + "label": "hub 2.10.1 for Linux 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4296732, + "download_count": 268, + "created_at": "2019-03-27T22:03:54Z", + "updated_at": "2019-03-27T22:03:54Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.10.1/hub-linux-amd64-2.10.1.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/11763599", + "id": 11763599, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExNzYzNTk5", + "name": "hub-linux-arm-2.10.1.tgz", + "label": "hub 2.10.1 for Linux ARM 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 3951011, + "download_count": 9, + "created_at": "2019-03-27T22:03:54Z", + "updated_at": "2019-03-27T22:03:55Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.10.1/hub-linux-arm-2.10.1.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/11763600", + "id": 11763600, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExNzYzNjAw", + "name": "hub-linux-arm64-2.10.1.tgz", + "label": "hub 2.10.1 for Linux ARM 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 3960099, + "download_count": 9, + "created_at": "2019-03-27T22:03:55Z", + "updated_at": "2019-03-27T22:03:56Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.10.1/hub-linux-arm64-2.10.1.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/11763601", + "id": 11763601, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExNzYzNjAx", + "name": "hub-windows-386-2.10.1.zip", + "label": "hub 2.10.1 for Windows 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4054415, + "download_count": 31, + "created_at": "2019-03-27T22:03:56Z", + "updated_at": "2019-03-27T22:03:56Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.10.1/hub-windows-386-2.10.1.zip" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/11763602", + "id": 11763602, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExNzYzNjAy", + "name": "hub-windows-amd64-2.10.1.zip", + "label": "hub 2.10.1 for Windows 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4217062, + "download_count": 66, + "created_at": "2019-03-27T22:03:56Z", + "updated_at": "2019-03-27T22:03:57Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.10.1/hub-windows-amd64-2.10.1.zip" + } + ], + "tarball_url": "https://api.github.com/repos/github/hub/tarball/v2.10.1", + "zipball_url": "https://api.github.com/repos/github/hub/zipball/v2.10.1", + "body": "* Fix writing over existing cache files in `hub api`\r\n\r\n* Allow repository names that start with a `-` character\r\n\r\n* List `api` among custom hub commands in help\r\n\r\n\r\n" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/15739809", + "assets_url": "https://api.github.com/repos/github/hub/releases/15739809/assets", + "upload_url": "https://uploads.github.com/repos/github/hub/releases/15739809/assets{?name,label}", + "html_url": "https://github.com/github/hub/releases/tag/v2.10.0", + "id": 15739809, + "node_id": "MDc6UmVsZWFzZTE1NzM5ODA5", + "tag_name": "v2.10.0", + "target_commitish": "master", + "name": "hub 2.10.0", + "draft": false, + "author": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "prerelease": false, + "created_at": "2019-02-24T09:46:57Z", + "published_at": "2019-02-24T09:58:19Z", + "assets": [ + { + "url": "https://api.github.com/repos/github/hub/releases/assets/11216591", + "id": 11216591, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExMjE2NTkx", + "name": "hub-darwin-amd64-2.10.0.tgz", + "label": "hub 2.10.0 for macOS", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4223317, + "download_count": 2229, + "created_at": "2019-02-24T09:55:52Z", + "updated_at": "2019-02-24T09:55:53Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.10.0/hub-darwin-amd64-2.10.0.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/11216592", + "id": 11216592, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExMjE2NTky", + "name": "hub-freebsd-386-2.10.0.tgz", + "label": "hub 2.10.0 for FreeBSD 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4119036, + "download_count": 15, + "created_at": "2019-02-24T09:55:53Z", + "updated_at": "2019-02-24T09:55:53Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.10.0/hub-freebsd-386-2.10.0.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/11216593", + "id": 11216593, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExMjE2NTkz", + "name": "hub-freebsd-amd64-2.10.0.tgz", + "label": "hub 2.10.0 for FreeBSD 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4265958, + "download_count": 18, + "created_at": "2019-02-24T09:55:54Z", + "updated_at": "2019-02-24T09:55:54Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.10.0/hub-freebsd-amd64-2.10.0.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/11216594", + "id": 11216594, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExMjE2NTk0", + "name": "hub-linux-386-2.10.0.tgz", + "label": "hub 2.10.0 for Linux 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4122354, + "download_count": 31, + "created_at": "2019-02-24T09:55:54Z", + "updated_at": "2019-02-24T09:55:54Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.10.0/hub-linux-386-2.10.0.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/11216595", + "id": 11216595, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExMjE2NTk1", + "name": "hub-linux-amd64-2.10.0.tgz", + "label": "hub 2.10.0 for Linux 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4295227, + "download_count": 28659, + "created_at": "2019-02-24T09:55:55Z", + "updated_at": "2019-02-24T09:55:55Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.10.0/hub-linux-amd64-2.10.0.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/11216596", + "id": 11216596, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExMjE2NTk2", + "name": "hub-linux-arm-2.10.0.tgz", + "label": "hub 2.10.0 for Linux ARM 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 3950286, + "download_count": 44, + "created_at": "2019-02-24T09:55:55Z", + "updated_at": "2019-02-24T09:55:56Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.10.0/hub-linux-arm-2.10.0.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/11216597", + "id": 11216597, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExMjE2NTk3", + "name": "hub-linux-arm64-2.10.0.tgz", + "label": "hub 2.10.0 for Linux ARM 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 3958355, + "download_count": 188, + "created_at": "2019-02-24T09:55:56Z", + "updated_at": "2019-02-24T09:55:56Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.10.0/hub-linux-arm64-2.10.0.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/11216598", + "id": 11216598, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExMjE2NTk4", + "name": "hub-windows-386-2.10.0.zip", + "label": "hub 2.10.0 for Windows 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4053391, + "download_count": 372, + "created_at": "2019-02-24T09:55:56Z", + "updated_at": "2019-02-24T09:55:57Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.10.0/hub-windows-386-2.10.0.zip" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/11216599", + "id": 11216599, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExMjE2NTk5", + "name": "hub-windows-amd64-2.10.0.zip", + "label": "hub 2.10.0 for Windows 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4215855, + "download_count": 1581, + "created_at": "2019-02-24T09:55:57Z", + "updated_at": "2019-02-24T09:55:57Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.10.0/hub-windows-amd64-2.10.0.zip" + } + ], + "tarball_url": "https://api.github.com/repos/github/hub/tarball/v2.10.0", + "zipball_url": "https://api.github.com/repos/github/hub/zipball/v2.10.0", + "body": "### Features\r\n\r\n* New `hub pr list --format` fields `%pS` and `%pC` for PR state and color\r\n \r\n - `%pS`: \"open\", \"draft\", \"merged\", or \"closed\"\r\n - `%pC`: green, gray, purple, or red\r\n\r\n* Have commands with rich output respect the `--color` flag\r\n \r\n - default: `--color=auto`\r\n - `--color` is equivalent to `--color=always`\r\n - `--color=never` disables color for TTYs\r\n\r\n### Fixes\r\n\r\n* Make man pages parseable with `whatis`\r\n\r\n* Make `hub checkout` work independently of remote refspec\r\n" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/15523345", + "assets_url": "https://api.github.com/repos/github/hub/releases/15523345/assets", + "upload_url": "https://uploads.github.com/repos/github/hub/releases/15523345/assets{?name,label}", + "html_url": "https://github.com/github/hub/releases/tag/v2.9.0", + "id": 15523345, + "node_id": "MDc6UmVsZWFzZTE1NTIzMzQ1", + "tag_name": "v2.9.0", + "target_commitish": "master", + "name": "hub 2.9.0", + "draft": false, + "author": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "prerelease": false, + "created_at": "2019-02-13T01:01:59Z", + "published_at": "2019-02-13T01:19:09Z", + "assets": [ + { + "url": "https://api.github.com/repos/github/hub/releases/assets/11055354", + "id": 11055354, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExMDU1MzU0", + "name": "hub-darwin-amd64-2.9.0.tgz", + "label": "hub 2.9.0 for macOS", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4217769, + "download_count": 63, + "created_at": "2019-02-13T01:12:30Z", + "updated_at": "2019-02-13T01:12:31Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.9.0/hub-darwin-amd64-2.9.0.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/11055355", + "id": 11055355, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExMDU1MzU1", + "name": "hub-freebsd-386-2.9.0.tgz", + "label": "hub 2.9.0 for FreeBSD 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4108489, + "download_count": 10, + "created_at": "2019-02-13T01:12:31Z", + "updated_at": "2019-02-13T01:12:31Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.9.0/hub-freebsd-386-2.9.0.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/11055356", + "id": 11055356, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExMDU1MzU2", + "name": "hub-freebsd-amd64-2.9.0.tgz", + "label": "hub 2.9.0 for FreeBSD 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4256163, + "download_count": 10, + "created_at": "2019-02-13T01:12:32Z", + "updated_at": "2019-02-13T01:12:32Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.9.0/hub-freebsd-amd64-2.9.0.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/11055357", + "id": 11055357, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExMDU1MzU3", + "name": "hub-linux-386-2.9.0.tgz", + "label": "hub 2.9.0 for Linux 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4115208, + "download_count": 15, + "created_at": "2019-02-13T01:12:32Z", + "updated_at": "2019-02-13T01:12:33Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.9.0/hub-linux-386-2.9.0.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/11055358", + "id": 11055358, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExMDU1MzU4", + "name": "hub-linux-amd64-2.9.0.tgz", + "label": "hub 2.9.0 for Linux 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4285605, + "download_count": 1680, + "created_at": "2019-02-13T01:12:33Z", + "updated_at": "2019-02-13T01:12:34Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.9.0/hub-linux-amd64-2.9.0.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/11055359", + "id": 11055359, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExMDU1MzU5", + "name": "hub-linux-arm-2.9.0.tgz", + "label": "hub 2.9.0 for Linux ARM 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 3942020, + "download_count": 22, + "created_at": "2019-02-13T01:12:34Z", + "updated_at": "2019-02-13T01:12:34Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.9.0/hub-linux-arm-2.9.0.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/11055360", + "id": 11055360, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExMDU1MzYw", + "name": "hub-linux-arm64-2.9.0.tgz", + "label": "hub 2.9.0 for Linux ARM 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 3949993, + "download_count": 67, + "created_at": "2019-02-13T01:12:34Z", + "updated_at": "2019-02-13T01:12:35Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.9.0/hub-linux-arm64-2.9.0.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/11055361", + "id": 11055361, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExMDU1MzYx", + "name": "hub-windows-386-2.9.0.zip", + "label": "hub 2.9.0 for Windows 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4043689, + "download_count": 129, + "created_at": "2019-02-13T01:12:35Z", + "updated_at": "2019-02-13T01:12:35Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.9.0/hub-windows-386-2.9.0.zip" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/11055362", + "id": 11055362, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExMDU1MzYy", + "name": "hub-windows-amd64-2.9.0.zip", + "label": "hub 2.9.0 for Windows 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4204776, + "download_count": 625, + "created_at": "2019-02-13T01:12:35Z", + "updated_at": "2019-02-13T01:12:36Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.9.0/hub-windows-amd64-2.9.0.zip" + } + ], + "tarball_url": "https://api.github.com/repos/github/hub/tarball/v2.9.0", + "zipball_url": "https://api.github.com/repos/github/hub/zipball/v2.9.0", + "body": "### Features\r\n\r\n* Add support for `hub ci-status --format ` string\r\n\r\n* Add `hub create --remote-name ` flag\r\n\r\n* Allow passing in a raw request body via `hub api --input `\r\n\r\n* Cache HTTP 4xx (except 403) server responses in `hub api --cache`\r\n\r\n### Fixes\r\n\r\n* Ensure consistent ordering of `hub ci-status -v` results\r\n\r\n* Avoid crashing on invalid GitHub hostname\r\n\r\n* Fix parsing empty string within command-line arguments\r\n" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/15221839", + "assets_url": "https://api.github.com/repos/github/hub/releases/15221839/assets", + "upload_url": "https://uploads.github.com/repos/github/hub/releases/15221839/assets{?name,label}", + "html_url": "https://github.com/github/hub/releases/tag/v2.8.4", + "id": 15221839, + "node_id": "MDc6UmVsZWFzZTE1MjIxODM5", + "tag_name": "v2.8.4", + "target_commitish": "master", + "name": "hub 2.8.4", + "draft": false, + "author": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "prerelease": false, + "created_at": "2019-01-28T17:42:19Z", + "published_at": "2019-01-28T17:54:05Z", + "assets": [ + { + "url": "https://api.github.com/repos/github/hub/releases/assets/10819616", + "id": 10819616, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEwODE5NjE2", + "name": "hub-darwin-amd64-2.8.4.tgz", + "label": "hub 2.8.4 for macOS", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4207468, + "download_count": 74, + "created_at": "2019-01-28T17:50:26Z", + "updated_at": "2019-01-28T17:50:27Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.8.4/hub-darwin-amd64-2.8.4.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/10819617", + "id": 10819617, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEwODE5NjE3", + "name": "hub-freebsd-386-2.8.4.tgz", + "label": "hub 2.8.4 for FreeBSD 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4100163, + "download_count": 9, + "created_at": "2019-01-28T17:50:27Z", + "updated_at": "2019-01-28T17:50:28Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.8.4/hub-freebsd-386-2.8.4.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/10819618", + "id": 10819618, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEwODE5NjE4", + "name": "hub-freebsd-amd64-2.8.4.tgz", + "label": "hub 2.8.4 for FreeBSD 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4250505, + "download_count": 18, + "created_at": "2019-01-28T17:50:28Z", + "updated_at": "2019-01-28T17:50:28Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.8.4/hub-freebsd-amd64-2.8.4.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/10819619", + "id": 10819619, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEwODE5NjE5", + "name": "hub-linux-386-2.8.4.tgz", + "label": "hub 2.8.4 for Linux 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4108451, + "download_count": 25, + "created_at": "2019-01-28T17:50:28Z", + "updated_at": "2019-01-28T17:50:29Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.8.4/hub-linux-386-2.8.4.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/10819620", + "id": 10819620, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEwODE5NjIw", + "name": "hub-linux-amd64-2.8.4.tgz", + "label": "hub 2.8.4 for Linux 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4274436, + "download_count": 3655, + "created_at": "2019-01-28T17:50:29Z", + "updated_at": "2019-01-28T17:50:30Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.8.4/hub-linux-amd64-2.8.4.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/10819622", + "id": 10819622, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEwODE5NjIy", + "name": "hub-linux-arm-2.8.4.tgz", + "label": "hub 2.8.4 for Linux ARM 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 3935869, + "download_count": 24, + "created_at": "2019-01-28T17:50:30Z", + "updated_at": "2019-01-28T17:50:31Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.8.4/hub-linux-arm-2.8.4.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/10819623", + "id": 10819623, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEwODE5NjIz", + "name": "hub-linux-arm64-2.8.4.tgz", + "label": "hub 2.8.4 for Linux ARM 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 3944717, + "download_count": 60, + "created_at": "2019-01-28T17:50:31Z", + "updated_at": "2019-01-28T17:50:31Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.8.4/hub-linux-arm64-2.8.4.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/10819624", + "id": 10819624, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEwODE5NjI0", + "name": "hub-windows-386-2.8.4.zip", + "label": "hub 2.8.4 for Windows 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4033915, + "download_count": 132, + "created_at": "2019-01-28T17:50:32Z", + "updated_at": "2019-01-28T17:50:32Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.8.4/hub-windows-386-2.8.4.zip" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/10819625", + "id": 10819625, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEwODE5NjI1", + "name": "hub-windows-amd64-2.8.4.zip", + "label": "hub 2.8.4 for Windows 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4195484, + "download_count": 806, + "created_at": "2019-01-28T17:50:32Z", + "updated_at": "2019-01-28T17:50:33Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.8.4/hub-windows-amd64-2.8.4.zip" + } + ], + "tarball_url": "https://api.github.com/repos/github/hub/tarball/v2.8.4", + "zipball_url": "https://api.github.com/repos/github/hub/zipball/v2.8.4", + "body": "* Add `hub api -H` flag to set HTTP request headers\r\n\r\n* Add `hub api -i` flag to output HTTP response headers\r\n\r\n* Change how `hub api` deals with HTTP errors:\r\n \r\n - HTTP response is now printed on stdout regardless of HTTP status\r\n - No longer print an extra newline after HTTP response body\r\n - No more `Error: HTTP {STATUS}` message on stderr\r\n - hub exits with status 22 instead of 1\r\n\r\n* Fix hub execution under WSL (Windows Subsystem for Linux)\r\n" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/15197951", + "assets_url": "https://api.github.com/repos/github/hub/releases/15197951/assets", + "upload_url": "https://uploads.github.com/repos/github/hub/releases/15197951/assets{?name,label}", + "html_url": "https://github.com/github/hub/releases/tag/v2.8.3", + "id": 15197951, + "node_id": "MDc6UmVsZWFzZTE1MTk3OTUx", + "tag_name": "v2.8.3", + "target_commitish": "master", + "name": "hub 2.8.3", + "draft": false, + "author": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "prerelease": false, + "created_at": "2019-01-26T17:47:05Z", + "published_at": "2019-01-26T17:55:59Z", + "assets": [ + { + "url": "https://api.github.com/repos/github/hub/releases/assets/10796768", + "id": 10796768, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEwNzk2NzY4", + "name": "hub-darwin-amd64-2.8.3.tgz", + "label": "hub 2.8.3 for macOS", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4204060, + "download_count": 66, + "created_at": "2019-01-26T17:53:30Z", + "updated_at": "2019-01-26T17:53:30Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.8.3/hub-darwin-amd64-2.8.3.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/10796769", + "id": 10796769, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEwNzk2NzY5", + "name": "hub-freebsd-386-2.8.3.tgz", + "label": "hub 2.8.3 for FreeBSD 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4095680, + "download_count": 7, + "created_at": "2019-01-26T17:53:30Z", + "updated_at": "2019-01-26T17:53:31Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.8.3/hub-freebsd-386-2.8.3.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/10796770", + "id": 10796770, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEwNzk2Nzcw", + "name": "hub-freebsd-amd64-2.8.3.tgz", + "label": "hub 2.8.3 for FreeBSD 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4242861, + "download_count": 9, + "created_at": "2019-01-26T17:53:31Z", + "updated_at": "2019-01-26T17:53:31Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.8.3/hub-freebsd-amd64-2.8.3.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/10796771", + "id": 10796771, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEwNzk2Nzcx", + "name": "hub-linux-386-2.8.3.tgz", + "label": "hub 2.8.3 for Linux 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4103243, + "download_count": 14, + "created_at": "2019-01-26T17:53:31Z", + "updated_at": "2019-01-26T17:53:32Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.8.3/hub-linux-386-2.8.3.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/10796772", + "id": 10796772, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEwNzk2Nzcy", + "name": "hub-linux-amd64-2.8.3.tgz", + "label": "hub 2.8.3 for Linux 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4273636, + "download_count": 749, + "created_at": "2019-01-26T17:53:32Z", + "updated_at": "2019-01-26T17:53:32Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.8.3/hub-linux-amd64-2.8.3.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/10796773", + "id": 10796773, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEwNzk2Nzcz", + "name": "hub-linux-arm-2.8.3.tgz", + "label": "hub 2.8.3 for Linux ARM 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 3932087, + "download_count": 10, + "created_at": "2019-01-26T17:53:32Z", + "updated_at": "2019-01-26T17:53:33Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.8.3/hub-linux-arm-2.8.3.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/10796774", + "id": 10796774, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEwNzk2Nzc0", + "name": "hub-linux-arm64-2.8.3.tgz", + "label": "hub 2.8.3 for Linux ARM 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 3939937, + "download_count": 11, + "created_at": "2019-01-26T17:53:33Z", + "updated_at": "2019-01-26T17:53:33Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.8.3/hub-linux-arm64-2.8.3.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/10796775", + "id": 10796775, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEwNzk2Nzc1", + "name": "hub-windows-386-2.8.3.zip", + "label": "hub 2.8.3 for Windows 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4031286, + "download_count": 43, + "created_at": "2019-01-26T17:53:33Z", + "updated_at": "2019-01-26T17:53:34Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.8.3/hub-windows-386-2.8.3.zip" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/10796776", + "id": 10796776, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEwNzk2Nzc2", + "name": "hub-windows-amd64-2.8.3.zip", + "label": "hub 2.8.3 for Windows 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4192527, + "download_count": 165, + "created_at": "2019-01-26T17:53:34Z", + "updated_at": "2019-01-26T17:53:34Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.8.3/hub-windows-amd64-2.8.3.zip" + } + ], + "tarball_url": "https://api.github.com/repos/github/hub/tarball/v2.8.3", + "zipball_url": "https://api.github.com/repos/github/hub/zipball/v2.8.3", + "body": "### Changes since v2.7\r\n\r\n* New `hub api` command for scripting with GitHub API https://github.com/github/hub/pull/2016\r\n https://hub.github.com/hub-api.1.html\r\n\r\n \"screen\r\n\r\n* Re-implement CLI flag parsing so that `--message ` is equivalent to `--message=` https://github.com/github/hub/pull/2008\r\n\r\n* Re-implement `make man-pages` in Go instead of Ruby https://github.com/github/hub/pull/1990\r\n\r\n* `issue create --label` is now `issue create --labels` to align with existing documentation\r\n\r\n* Output crash debugging information on stderr instead of stdout\r\n\r\n* Build improvements:\r\n\t* respect environment LDFLAGS\r\n\t* strip the build path from resulting executable\r\n\t* enable reproducible builds with SOURCE_DATE_EPOCH\r\n\r\n### Changes since v2.8.2\r\n\r\n* Fix uploading assets with `hub release`" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/15197653", + "assets_url": "https://api.github.com/repos/github/hub/releases/15197653/assets", + "upload_url": "https://uploads.github.com/repos/github/hub/releases/15197653/assets{?name,label}", + "html_url": "https://github.com/github/hub/releases/tag/v2.8.2", + "id": 15197653, + "node_id": "MDc6UmVsZWFzZTE1MTk3NjUz", + "tag_name": "v2.8.2", + "target_commitish": "master", + "name": "hub 2.8.2", + "draft": false, + "author": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "prerelease": false, + "created_at": "2019-01-26T16:05:23Z", + "published_at": "2019-01-26T17:00:28Z", + "assets": [], + "tarball_url": "https://api.github.com/repos/github/hub/tarball/v2.8.2", + "zipball_url": "https://api.github.com/repos/github/hub/zipball/v2.8.2", + "body": "See https://github.com/github/hub/releases/tag/v2.8.3" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/15059882", + "assets_url": "https://api.github.com/repos/github/hub/releases/15059882/assets", + "upload_url": "https://uploads.github.com/repos/github/hub/releases/15059882/assets{?name,label}", + "html_url": "https://github.com/github/hub/releases/tag/v2.7.1", + "id": 15059882, + "node_id": "MDc6UmVsZWFzZTE1MDU5ODgy", + "tag_name": "v2.7.1", + "target_commitish": "master", + "name": "hub 2.7.1", + "draft": false, + "author": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "prerelease": false, + "created_at": "2019-01-18T17:34:20Z", + "published_at": "2019-01-18T17:44:43Z", + "assets": [ + { + "url": "https://api.github.com/repos/github/hub/releases/assets/10644410", + "id": 10644410, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEwNjQ0NDEw", + "name": "hub-darwin-amd64-2.7.1.tgz", + "label": "hub 2.7.1 for macOS", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4199701, + "download_count": 52, + "created_at": "2019-01-18T17:40:14Z", + "updated_at": "2019-01-18T17:40:14Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.7.1/hub-darwin-amd64-2.7.1.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/10644411", + "id": 10644411, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEwNjQ0NDEx", + "name": "hub-freebsd-386-2.7.1.tgz", + "label": "hub 2.7.1 for FreeBSD 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4088801, + "download_count": 7, + "created_at": "2019-01-18T17:40:14Z", + "updated_at": "2019-01-18T17:40:15Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.7.1/hub-freebsd-386-2.7.1.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/10644413", + "id": 10644413, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEwNjQ0NDEz", + "name": "hub-freebsd-amd64-2.7.1.tgz", + "label": "hub 2.7.1 for FreeBSD 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4241165, + "download_count": 10, + "created_at": "2019-01-18T17:40:15Z", + "updated_at": "2019-01-18T17:40:16Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.7.1/hub-freebsd-amd64-2.7.1.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/10644414", + "id": 10644414, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEwNjQ0NDE0", + "name": "hub-linux-386-2.7.1.tgz", + "label": "hub 2.7.1 for Linux 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4095955, + "download_count": 22, + "created_at": "2019-01-18T17:40:16Z", + "updated_at": "2019-01-18T17:40:16Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.7.1/hub-linux-386-2.7.1.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/10644415", + "id": 10644415, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEwNjQ0NDE1", + "name": "hub-linux-amd64-2.7.1.tgz", + "label": "hub 2.7.1 for Linux 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4263689, + "download_count": 2839, + "created_at": "2019-01-18T17:40:16Z", + "updated_at": "2019-01-18T17:40:17Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.7.1/hub-linux-amd64-2.7.1.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/10644416", + "id": 10644416, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEwNjQ0NDE2", + "name": "hub-linux-arm-2.7.1.tgz", + "label": "hub 2.7.1 for Linux ARM 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 3922351, + "download_count": 14, + "created_at": "2019-01-18T17:40:17Z", + "updated_at": "2019-01-18T17:40:17Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.7.1/hub-linux-arm-2.7.1.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/10644417", + "id": 10644417, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEwNjQ0NDE3", + "name": "hub-linux-arm64-2.7.1.tgz", + "label": "hub 2.7.1 for Linux ARM 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 3934710, + "download_count": 27, + "created_at": "2019-01-18T17:40:18Z", + "updated_at": "2019-01-18T17:40:18Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.7.1/hub-linux-arm64-2.7.1.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/10644418", + "id": 10644418, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEwNjQ0NDE4", + "name": "hub-windows-386-2.7.1.zip", + "label": "hub 2.7.1 for Windows 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4037346, + "download_count": 68, + "created_at": "2019-01-18T17:40:18Z", + "updated_at": "2019-01-18T17:40:20Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.7.1/hub-windows-386-2.7.1.zip" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/10644419", + "id": 10644419, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEwNjQ0NDE5", + "name": "hub-windows-amd64-2.7.1.zip", + "label": "hub 2.7.1 for Windows 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4197776, + "download_count": 490, + "created_at": "2019-01-18T17:40:20Z", + "updated_at": "2019-01-18T17:40:21Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.7.1/hub-windows-amd64-2.7.1.zip" + } + ], + "tarball_url": "https://api.github.com/repos/github/hub/tarball/v2.7.1", + "zipball_url": "https://api.github.com/repos/github/hub/zipball/v2.7.1", + "body": "* Respect chosen Enterprise host on `hub init -g`\r\n\r\n* Ensure consistent order of options when prompted to choose between multiple configured GitHub hosts\r\n\r\n* Ensure alphabetical sort of `hub issue labels` output\r\n\r\n* Improve contrast of label text vs. its background color\r\n\r\n* Various documentation formatting tweaks\r\n" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/14726051", + "assets_url": "https://api.github.com/repos/github/hub/releases/14726051/assets", + "upload_url": "https://uploads.github.com/repos/github/hub/releases/14726051/assets{?name,label}", + "html_url": "https://github.com/github/hub/releases/tag/v2.7.0", + "id": 14726051, + "node_id": "MDc6UmVsZWFzZTE0NzI2MDUx", + "tag_name": "v2.7.0", + "target_commitish": "master", + "name": "hub 2.7.0", + "draft": false, + "author": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "prerelease": false, + "created_at": "2018-12-28T07:07:53Z", + "published_at": "2018-12-28T07:25:07Z", + "assets": [ + { + "url": "https://api.github.com/repos/github/hub/releases/assets/10333920", + "id": 10333920, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEwMzMzOTIw", + "name": "hub-darwin-amd64-2.7.0.tgz", + "label": "hub 2.7.0 for macOS", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4193547, + "download_count": 61, + "created_at": "2018-12-28T07:13:58Z", + "updated_at": "2018-12-28T07:13:59Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.7.0/hub-darwin-amd64-2.7.0.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/10333921", + "id": 10333921, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEwMzMzOTIx", + "name": "hub-freebsd-386-2.7.0.tgz", + "label": "hub 2.7.0 for FreeBSD 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4083837, + "download_count": 9, + "created_at": "2018-12-28T07:13:59Z", + "updated_at": "2018-12-28T07:13:59Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.7.0/hub-freebsd-386-2.7.0.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/10333922", + "id": 10333922, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEwMzMzOTIy", + "name": "hub-freebsd-amd64-2.7.0.tgz", + "label": "hub 2.7.0 for FreeBSD 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4235085, + "download_count": 9, + "created_at": "2018-12-28T07:13:59Z", + "updated_at": "2018-12-28T07:14:00Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.7.0/hub-freebsd-amd64-2.7.0.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/10333923", + "id": 10333923, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEwMzMzOTIz", + "name": "hub-linux-386-2.7.0.tgz", + "label": "hub 2.7.0 for Linux 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4090980, + "download_count": 33, + "created_at": "2018-12-28T07:14:00Z", + "updated_at": "2018-12-28T07:14:00Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.7.0/hub-linux-386-2.7.0.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/10333924", + "id": 10333924, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEwMzMzOTI0", + "name": "hub-linux-amd64-2.7.0.tgz", + "label": "hub 2.7.0 for Linux 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4263315, + "download_count": 188309, + "created_at": "2018-12-28T07:14:00Z", + "updated_at": "2018-12-28T07:14:01Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.7.0/hub-linux-amd64-2.7.0.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/10333925", + "id": 10333925, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEwMzMzOTI1", + "name": "hub-linux-arm-2.7.0.tgz", + "label": "hub 2.7.0 for Linux ARM 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 3918560, + "download_count": 23, + "created_at": "2018-12-28T07:14:01Z", + "updated_at": "2018-12-28T07:14:01Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.7.0/hub-linux-arm-2.7.0.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/10333926", + "id": 10333926, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEwMzMzOTI2", + "name": "hub-linux-arm64-2.7.0.tgz", + "label": "hub 2.7.0 for Linux ARM 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 3928170, + "download_count": 62, + "created_at": "2018-12-28T07:14:01Z", + "updated_at": "2018-12-28T07:14:02Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.7.0/hub-linux-arm64-2.7.0.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/10333927", + "id": 10333927, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEwMzMzOTI3", + "name": "hub-windows-386-2.7.0.zip", + "label": "hub 2.7.0 for Windows 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4033222, + "download_count": 142, + "created_at": "2018-12-28T07:14:02Z", + "updated_at": "2018-12-28T07:14:02Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.7.0/hub-windows-386-2.7.0.zip" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/10333928", + "id": 10333928, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEwMzMzOTI4", + "name": "hub-windows-amd64-2.7.0.zip", + "label": "hub 2.7.0 for Windows 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4191370, + "download_count": 838, + "created_at": "2018-12-28T07:14:03Z", + "updated_at": "2018-12-28T07:14:03Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.7.0/hub-windows-amd64-2.7.0.zip" + } + ], + "tarball_url": "https://api.github.com/repos/github/hub/tarball/v2.7.0", + "zipball_url": "https://api.github.com/repos/github/hub/zipball/v2.7.0", + "body": "## Features\r\n\r\n* Add support for `hub pr list --state=merged`\r\n\r\n* Add base/head/merge commit SHA and merged date information to `hub pr list --format=FORMAT`\r\n\r\n* Un-deprecate converting issues to pull requests with `hub pull-request -i ` \r\n2a748a048d6903eca78332a484e63f8d647caf02\r\n\r\n## Fixes\r\n\r\n* Improve detecting default `hub pull-request` base branch name\r\n\r\n* Avoid the `Aborted: the origin remote doesn't point to a GitHub repository` error by allowing other git remotes as fallback\r\n\r\n* Improve `hub create` dealing with an existing \"origin\" remote\r\n\r\n* Fix 256-color terminal support for macOS Terminal.app\r\n\r\n* Don't choke on literal `%` output characters when using `--format=FORMAT`\r\n\r\n* Replace deprecated Dial with DialContext\r\n\r\n## Documentation\r\n\r\n* Document how we scan git remotes and branch tracking information https://hub.github.com/hub.1.html#CONVENTIONS\r\n\r\n* Indicate that long-form CLI flags with values must use the equal sign like `--message=VALUE`\r\n" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/14462456", + "assets_url": "https://api.github.com/repos/github/hub/releases/14462456/assets", + "upload_url": "https://uploads.github.com/repos/github/hub/releases/14462456/assets{?name,label}", + "html_url": "https://github.com/github/hub/releases/tag/v2.6.1", + "id": 14462456, + "node_id": "MDc6UmVsZWFzZTE0NDYyNDU2", + "tag_name": "v2.6.1", + "target_commitish": "master", + "name": "hub 2.6.1", + "draft": false, + "author": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "prerelease": false, + "created_at": "2018-12-11T10:52:08Z", + "published_at": "2018-12-11T11:13:29Z", + "assets": [ + { + "url": "https://api.github.com/repos/github/hub/releases/assets/10095939", + "id": 10095939, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEwMDk1OTM5", + "name": "hub-darwin-amd64-2.6.1.tgz", + "label": "hub 2.6.1 for macOS", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4174651, + "download_count": 53, + "created_at": "2018-12-11T10:59:15Z", + "updated_at": "2018-12-11T10:59:15Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.6.1/hub-darwin-amd64-2.6.1.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/10095940", + "id": 10095940, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEwMDk1OTQw", + "name": "hub-freebsd-386-2.6.1.tgz", + "label": "hub 2.6.1 for FreeBSD 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4064448, + "download_count": 10, + "created_at": "2018-12-11T10:59:16Z", + "updated_at": "2018-12-11T10:59:16Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.6.1/hub-freebsd-386-2.6.1.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/10095941", + "id": 10095941, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEwMDk1OTQx", + "name": "hub-freebsd-amd64-2.6.1.tgz", + "label": "hub 2.6.1 for FreeBSD 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4217023, + "download_count": 17, + "created_at": "2018-12-11T10:59:16Z", + "updated_at": "2018-12-11T10:59:16Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.6.1/hub-freebsd-amd64-2.6.1.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/10095942", + "id": 10095942, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEwMDk1OTQy", + "name": "hub-linux-386-2.6.1.tgz", + "label": "hub 2.6.1 for Linux 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4070527, + "download_count": 44, + "created_at": "2018-12-11T10:59:17Z", + "updated_at": "2018-12-11T10:59:17Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.6.1/hub-linux-386-2.6.1.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/10095943", + "id": 10095943, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEwMDk1OTQz", + "name": "hub-linux-amd64-2.6.1.tgz", + "label": "hub 2.6.1 for Linux 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4242259, + "download_count": 3284, + "created_at": "2018-12-11T10:59:17Z", + "updated_at": "2018-12-11T10:59:18Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.6.1/hub-linux-amd64-2.6.1.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/10095944", + "id": 10095944, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEwMDk1OTQ0", + "name": "hub-linux-arm-2.6.1.tgz", + "label": "hub 2.6.1 for Linux ARM 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 3900673, + "download_count": 25, + "created_at": "2018-12-11T10:59:18Z", + "updated_at": "2018-12-11T10:59:19Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.6.1/hub-linux-arm-2.6.1.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/10095945", + "id": 10095945, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEwMDk1OTQ1", + "name": "hub-linux-arm64-2.6.1.tgz", + "label": "hub 2.6.1 for Linux ARM 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 3909785, + "download_count": 51, + "created_at": "2018-12-11T10:59:19Z", + "updated_at": "2018-12-11T10:59:21Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.6.1/hub-linux-arm64-2.6.1.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/10095947", + "id": 10095947, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEwMDk1OTQ3", + "name": "hub-windows-386-2.6.1.zip", + "label": "hub 2.6.1 for Windows 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4015100, + "download_count": 120, + "created_at": "2018-12-11T10:59:21Z", + "updated_at": "2018-12-11T10:59:21Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.6.1/hub-windows-386-2.6.1.zip" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/10095948", + "id": 10095948, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEwMDk1OTQ4", + "name": "hub-windows-amd64-2.6.1.zip", + "label": "hub 2.6.1 for Windows 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4173693, + "download_count": 628, + "created_at": "2018-12-11T10:59:22Z", + "updated_at": "2018-12-11T10:59:22Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.6.1/hub-windows-amd64-2.6.1.zip" + } + ], + "tarball_url": "https://api.github.com/repos/github/hub/tarball/v2.6.1", + "zipball_url": "https://api.github.com/repos/github/hub/zipball/v2.6.1", + "body": "* Fix using git aliases for git 2.20\r\n\r\n* Add support for passing multiple `--message` options for compatibility with git\r\n\r\n* Allow the `%h` token in `HostName` value read from ssh config\r\n" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/13745445", + "assets_url": "https://api.github.com/repos/github/hub/releases/13745445/assets", + "upload_url": "https://uploads.github.com/repos/github/hub/releases/13745445/assets{?name,label}", + "html_url": "https://github.com/github/hub/releases/tag/v2.6.0", + "id": 13745445, + "node_id": "MDc6UmVsZWFzZTEzNzQ1NDQ1", + "tag_name": "v2.6.0", + "target_commitish": "master", + "name": "hub 2.6.0", + "draft": false, + "author": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "prerelease": false, + "created_at": "2018-10-31T01:51:06Z", + "published_at": "2018-10-31T02:17:27Z", + "assets": [ + { + "url": "https://api.github.com/repos/github/hub/releases/assets/9484441", + "id": 9484441, + "node_id": "MDEyOlJlbGVhc2VBc3NldDk0ODQ0NDE=", + "name": "hub-darwin-amd64-2.6.0.tgz", + "label": "hub 2.6.0 for macOS", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4173350, + "download_count": 284, + "created_at": "2018-10-31T01:56:22Z", + "updated_at": "2018-10-31T01:56:22Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.6.0/hub-darwin-amd64-2.6.0.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/9484444", + "id": 9484444, + "node_id": "MDEyOlJlbGVhc2VBc3NldDk0ODQ0NDQ=", + "name": "hub-freebsd-386-2.6.0.tgz", + "label": "hub 2.6.0 for FreeBSD 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4063556, + "download_count": 11, + "created_at": "2018-10-31T01:56:23Z", + "updated_at": "2018-10-31T01:56:23Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.6.0/hub-freebsd-386-2.6.0.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/9484445", + "id": 9484445, + "node_id": "MDEyOlJlbGVhc2VBc3NldDk0ODQ0NDU=", + "name": "hub-freebsd-amd64-2.6.0.tgz", + "label": "hub 2.6.0 for FreeBSD 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4213491, + "download_count": 23, + "created_at": "2018-10-31T01:56:23Z", + "updated_at": "2018-10-31T01:56:23Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.6.0/hub-freebsd-amd64-2.6.0.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/9484447", + "id": 9484447, + "node_id": "MDEyOlJlbGVhc2VBc3NldDk0ODQ0NDc=", + "name": "hub-linux-386-2.6.0.tgz", + "label": "hub 2.6.0 for Linux 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4068585, + "download_count": 288, + "created_at": "2018-10-31T01:56:23Z", + "updated_at": "2018-10-31T01:56:23Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.6.0/hub-linux-386-2.6.0.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/9484449", + "id": 9484449, + "node_id": "MDEyOlJlbGVhc2VBc3NldDk0ODQ0NDk=", + "name": "hub-linux-amd64-2.6.0.tgz", + "label": "hub 2.6.0 for Linux 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4236897, + "download_count": 36719, + "created_at": "2018-10-31T01:56:24Z", + "updated_at": "2018-10-31T01:56:24Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.6.0/hub-linux-amd64-2.6.0.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/9484451", + "id": 9484451, + "node_id": "MDEyOlJlbGVhc2VBc3NldDk0ODQ0NTE=", + "name": "hub-linux-arm-2.6.0.tgz", + "label": "hub 2.6.0 for Linux ARM 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 3897872, + "download_count": 95, + "created_at": "2018-10-31T01:56:24Z", + "updated_at": "2018-10-31T01:56:24Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.6.0/hub-linux-arm-2.6.0.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/9484454", + "id": 9484454, + "node_id": "MDEyOlJlbGVhc2VBc3NldDk0ODQ0NTQ=", + "name": "hub-linux-arm64-2.6.0.tgz", + "label": "hub 2.6.0 for Linux ARM 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 3908067, + "download_count": 150, + "created_at": "2018-10-31T01:56:24Z", + "updated_at": "2018-10-31T01:56:25Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.6.0/hub-linux-arm64-2.6.0.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/9484457", + "id": 9484457, + "node_id": "MDEyOlJlbGVhc2VBc3NldDk0ODQ0NTc=", + "name": "hub-windows-386-2.6.0.zip", + "label": "hub 2.6.0 for Windows 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4012117, + "download_count": 293, + "created_at": "2018-10-31T01:56:25Z", + "updated_at": "2018-10-31T01:56:25Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.6.0/hub-windows-386-2.6.0.zip" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/9484458", + "id": 9484458, + "node_id": "MDEyOlJlbGVhc2VBc3NldDk0ODQ0NTg=", + "name": "hub-windows-amd64-2.6.0.zip", + "label": "hub 2.6.0 for Windows 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4171623, + "download_count": 1678, + "created_at": "2018-10-31T01:56:25Z", + "updated_at": "2018-10-31T01:56:26Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.6.0/hub-windows-amd64-2.6.0.zip" + } + ], + "tarball_url": "https://api.github.com/repos/github/hub/tarball/v2.6.0", + "zipball_url": "https://api.github.com/repos/github/hub/zipball/v2.6.0", + "body": "## Features\n\n* Use \"scissors\" line to delineate comments in editable messages instead of stripping away lines that start with `#`. This helps preserve Markdown headings in `hub pull-request`, `hub release create`, and similar commands that open a text editor interactively.\n\n Everything above the following line is kept in the message; everything below is discarded:\n\n ```\n # ------------------------ >8 ------------------------\n ```\n\n* New command `hub issue show `\n\n* Add `hub release show --format=` functionality\n\n* `hub pr list --format=%rs` lists requested reviewers\n\n* Add support for communicating with GitHub Enterprise over Unix socket\n\n ```yml\n # ~/.config/hub\n example.com:\n user: USER\n oauth_token: TOKEN\n unix_socket: /path/to/socket\n ```\n\n## Fixes\n\n* Prevent `hub create` setting a public upstream when creating a private repo\n\n* Fix `hub create` in place of a renamed repo\n\n* Fix `hub release create/edit/delete` when there are multiple git remotes\n\n* Auto-detect private/pushable repos in `hub remote add`\n\n* Fix `hub ci-status` exit code when there is only Checks\n\n* Allow `hub compare ` even if not on any branch\n\n* Ensure consistent sort direction when listing issues, PRs\n\n* Match requested team names by slug instead of name in `hub pull-request -r `" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/12542979", + "assets_url": "https://api.github.com/repos/github/hub/releases/12542979/assets", + "upload_url": "https://uploads.github.com/repos/github/hub/releases/12542979/assets{?name,label}", + "html_url": "https://github.com/github/hub/releases/tag/v2.5.1", + "id": 12542979, + "node_id": "MDc6UmVsZWFzZTEyNTQyOTc5", + "tag_name": "v2.5.1", + "target_commitish": "master", + "name": "hub 2.5.1", + "draft": false, + "author": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "prerelease": false, + "created_at": "2018-08-23T13:59:27Z", + "published_at": "2018-08-23T14:09:37Z", + "assets": [ + { + "url": "https://api.github.com/repos/github/hub/releases/assets/8365450", + "id": 8365450, + "node_id": "MDEyOlJlbGVhc2VBc3NldDgzNjU0NTA=", + "name": "hub-darwin-amd64-2.5.1.tgz", + "label": "hub 2.5.1 for macOS", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 2968351, + "download_count": 1458, + "created_at": "2018-08-23T14:04:25Z", + "updated_at": "2018-08-23T14:04:25Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.5.1/hub-darwin-amd64-2.5.1.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/8365451", + "id": 8365451, + "node_id": "MDEyOlJlbGVhc2VBc3NldDgzNjU0NTE=", + "name": "hub-freebsd-386-2.5.1.tgz", + "label": "hub 2.5.1 for FreeBSD 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 2852952, + "download_count": 17, + "created_at": "2018-08-23T14:04:25Z", + "updated_at": "2018-08-23T14:04:26Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.5.1/hub-freebsd-386-2.5.1.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/8365452", + "id": 8365452, + "node_id": "MDEyOlJlbGVhc2VBc3NldDgzNjU0NTI=", + "name": "hub-freebsd-amd64-2.5.1.tgz", + "label": "hub 2.5.1 for FreeBSD 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 2979899, + "download_count": 30, + "created_at": "2018-08-23T14:04:26Z", + "updated_at": "2018-08-23T14:04:26Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.5.1/hub-freebsd-amd64-2.5.1.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/8365453", + "id": 8365453, + "node_id": "MDEyOlJlbGVhc2VBc3NldDgzNjU0NTM=", + "name": "hub-linux-386-2.5.1.tgz", + "label": "hub 2.5.1 for Linux 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 2859620, + "download_count": 2137, + "created_at": "2018-08-23T14:04:26Z", + "updated_at": "2018-08-23T14:04:26Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.5.1/hub-linux-386-2.5.1.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/8365454", + "id": 8365454, + "node_id": "MDEyOlJlbGVhc2VBc3NldDgzNjU0NTQ=", + "name": "hub-linux-amd64-2.5.1.tgz", + "label": "hub 2.5.1 for Linux 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 3004045, + "download_count": 19994, + "created_at": "2018-08-23T14:04:26Z", + "updated_at": "2018-08-23T14:04:27Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.5.1/hub-linux-amd64-2.5.1.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/8365455", + "id": 8365455, + "node_id": "MDEyOlJlbGVhc2VBc3NldDgzNjU0NTU=", + "name": "hub-linux-arm-2.5.1.tgz", + "label": "hub 2.5.1 for Linux ARM 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 2803728, + "download_count": 149, + "created_at": "2018-08-23T14:04:27Z", + "updated_at": "2018-08-23T14:04:27Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.5.1/hub-linux-arm-2.5.1.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/8365456", + "id": 8365456, + "node_id": "MDEyOlJlbGVhc2VBc3NldDgzNjU0NTY=", + "name": "hub-linux-arm64-2.5.1.tgz", + "label": "hub 2.5.1 for Linux ARM 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 2778126, + "download_count": 169, + "created_at": "2018-08-23T14:04:27Z", + "updated_at": "2018-08-23T14:04:28Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.5.1/hub-linux-arm64-2.5.1.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/8365457", + "id": 8365457, + "node_id": "MDEyOlJlbGVhc2VBc3NldDgzNjU0NTc=", + "name": "hub-windows-386-2.5.1.zip", + "label": "hub 2.5.1 for Windows 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 2839355, + "download_count": 304, + "created_at": "2018-08-23T14:04:28Z", + "updated_at": "2018-08-23T14:04:28Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.5.1/hub-windows-386-2.5.1.zip" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/8365458", + "id": 8365458, + "node_id": "MDEyOlJlbGVhc2VBc3NldDgzNjU0NTg=", + "name": "hub-windows-amd64-2.5.1.zip", + "label": "hub 2.5.1 for Windows 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 2973360, + "download_count": 1711, + "created_at": "2018-08-23T14:04:28Z", + "updated_at": "2018-08-23T14:04:29Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.5.1/hub-windows-amd64-2.5.1.zip" + } + ], + "tarball_url": "https://api.github.com/repos/github/hub/tarball/v2.5.1", + "zipball_url": "https://api.github.com/repos/github/hub/zipball/v2.5.1", + "body": "* `hub issue create`: ignore the `.github/ISSUE_TEMPLATE` directory instead of crashing\r\n\r\n* `hub pull-request`: avoid re-requesting reviewers in case of CODEOWNERS\r\n\r\n* `hub ci-status`: handle cases when Checks API is unavailable, like older GitHub Enterprise\r\n\r\n* Handle HTTP 422 message format from server response\r\n\r\n* Ignore crash for malformed `~/.config/hub` file\r\n\r\n* Clarify `hub init -g` documentation that it doesn't imply `hub create`\r\n\r\n* `hub clone`: add more documentation about git protocol used\r\n" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/11822683", + "assets_url": "https://api.github.com/repos/github/hub/releases/11822683/assets", + "upload_url": "https://uploads.github.com/repos/github/hub/releases/11822683/assets{?name,label}", + "html_url": "https://github.com/github/hub/releases/tag/v2.5.0", + "id": 11822683, + "node_id": "MDc6UmVsZWFzZTExODIyNjgz", + "tag_name": "v2.5.0", + "target_commitish": "master", + "name": "hub 2.5.0", + "draft": false, + "author": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "prerelease": false, + "created_at": "2018-07-07T13:08:06Z", + "published_at": "2018-07-07T13:19:51Z", + "assets": [ + { + "url": "https://api.github.com/repos/github/hub/releases/assets/7795719", + "id": 7795719, + "node_id": "MDEyOlJlbGVhc2VBc3NldDc3OTU3MTk=", + "name": "hub-darwin-amd64-2.5.0.tgz", + "label": "hub 2.5.0 for macOS", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 2967275, + "download_count": 1209, + "created_at": "2018-07-07T13:15:04Z", + "updated_at": "2018-07-07T13:15:04Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.5.0/hub-darwin-amd64-2.5.0.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/7795720", + "id": 7795720, + "node_id": "MDEyOlJlbGVhc2VBc3NldDc3OTU3MjA=", + "name": "hub-freebsd-386-2.5.0.tgz", + "label": "hub 2.5.0 for FreeBSD 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 2852046, + "download_count": 25, + "created_at": "2018-07-07T13:15:05Z", + "updated_at": "2018-07-07T13:15:05Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.5.0/hub-freebsd-386-2.5.0.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/7795721", + "id": 7795721, + "node_id": "MDEyOlJlbGVhc2VBc3NldDc3OTU3MjE=", + "name": "hub-freebsd-amd64-2.5.0.tgz", + "label": "hub 2.5.0 for FreeBSD 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 2979021, + "download_count": 20, + "created_at": "2018-07-07T13:15:05Z", + "updated_at": "2018-07-07T13:15:05Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.5.0/hub-freebsd-amd64-2.5.0.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/7795722", + "id": 7795722, + "node_id": "MDEyOlJlbGVhc2VBc3NldDc3OTU3MjI=", + "name": "hub-linux-386-2.5.0.tgz", + "label": "hub 2.5.0 for Linux 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 2857700, + "download_count": 141, + "created_at": "2018-07-07T13:15:05Z", + "updated_at": "2018-07-07T13:15:05Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.5.0/hub-linux-386-2.5.0.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/7795723", + "id": 7795723, + "node_id": "MDEyOlJlbGVhc2VBc3NldDc3OTU3MjM=", + "name": "hub-linux-amd64-2.5.0.tgz", + "label": "hub 2.5.0 for Linux 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 3003525, + "download_count": 56140, + "created_at": "2018-07-07T13:15:05Z", + "updated_at": "2018-07-07T13:15:06Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.5.0/hub-linux-amd64-2.5.0.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/7795724", + "id": 7795724, + "node_id": "MDEyOlJlbGVhc2VBc3NldDc3OTU3MjQ=", + "name": "hub-linux-arm-2.5.0.tgz", + "label": "hub 2.5.0 for Linux ARM 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 2802579, + "download_count": 69, + "created_at": "2018-07-07T13:15:06Z", + "updated_at": "2018-07-07T13:15:06Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.5.0/hub-linux-arm-2.5.0.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/7795725", + "id": 7795725, + "node_id": "MDEyOlJlbGVhc2VBc3NldDc3OTU3MjU=", + "name": "hub-linux-arm64-2.5.0.tgz", + "label": "hub 2.5.0 for Linux ARM 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 2779208, + "download_count": 172, + "created_at": "2018-07-07T13:15:06Z", + "updated_at": "2018-07-07T13:15:06Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.5.0/hub-linux-arm64-2.5.0.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/7795726", + "id": 7795726, + "node_id": "MDEyOlJlbGVhc2VBc3NldDc3OTU3MjY=", + "name": "hub-windows-386-2.5.0.zip", + "label": "hub 2.5.0 for Windows 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 2837772, + "download_count": 80, + "created_at": "2018-07-07T13:15:06Z", + "updated_at": "2018-07-07T13:15:07Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.5.0/hub-windows-386-2.5.0.zip" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/7795727", + "id": 7795727, + "node_id": "MDEyOlJlbGVhc2VBc3NldDc3OTU3Mjc=", + "name": "hub-windows-amd64-2.5.0.zip", + "label": "hub 2.5.0 for Windows 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 2971760, + "download_count": 530, + "created_at": "2018-07-07T13:15:07Z", + "updated_at": "2018-07-07T13:15:07Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.5.0/hub-windows-amd64-2.5.0.zip" + } + ], + "tarball_url": "https://api.github.com/repos/github/hub/tarball/v2.5.0", + "zipball_url": "https://api.github.com/repos/github/hub/zipball/v2.5.0", + "body": "### Features\r\n* Have `ci-status` also query [Checks API](https://developer.github.com/v3/checks/runs/#list-check-runs-for-a-specific-ref)\r\n\r\n### Fixes\r\n* Do not pass `--cmd' to vi editor to ensure compatibility with older vi\r\n* Simplify cherry-picking commits from pull request URLs\r\n* Allow single-character branches/tag names in `hub compare`\r\n* Fix `hub compare` for Enterprise when `` is specified\r\n* Support `remote add -t BRANCH` argument\r\n* Bash shell completion fixes for git 2.18\r\n* Documentation fixes\r\n" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/11376644", + "assets_url": "https://api.github.com/repos/github/hub/releases/11376644/assets", + "upload_url": "https://uploads.github.com/repos/github/hub/releases/11376644/assets{?name,label}", + "html_url": "https://github.com/github/hub/releases/tag/v2.4.0", + "id": 11376644, + "node_id": "MDc6UmVsZWFzZTExMzc2NjQ0", + "tag_name": "v2.4.0", + "target_commitish": "master", + "name": "hub 2.4.0", + "draft": false, + "author": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "prerelease": false, + "created_at": "2018-06-07T18:12:15Z", + "published_at": "2018-06-07T18:30:28Z", + "assets": [ + { + "url": "https://api.github.com/repos/github/hub/releases/assets/7448920", + "id": 7448920, + "node_id": "MDEyOlJlbGVhc2VBc3NldDc0NDg5MjA=", + "name": "hub-darwin-amd64-2.4.0.tgz", + "label": "hub 2.4.0 for macOS", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 2951094, + "download_count": 800, + "created_at": "2018-06-07T18:17:49Z", + "updated_at": "2018-06-07T18:17:49Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.4.0/hub-darwin-amd64-2.4.0.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/7448921", + "id": 7448921, + "node_id": "MDEyOlJlbGVhc2VBc3NldDc0NDg5MjE=", + "name": "hub-freebsd-386-2.4.0.tgz", + "label": "hub 2.4.0 for FreeBSD 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 2834967, + "download_count": 8, + "created_at": "2018-06-07T18:17:49Z", + "updated_at": "2018-06-07T18:17:49Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.4.0/hub-freebsd-386-2.4.0.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/7448922", + "id": 7448922, + "node_id": "MDEyOlJlbGVhc2VBc3NldDc0NDg5MjI=", + "name": "hub-freebsd-amd64-2.4.0.tgz", + "label": "hub 2.4.0 for FreeBSD 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 2963236, + "download_count": 16, + "created_at": "2018-06-07T18:17:49Z", + "updated_at": "2018-06-07T18:17:50Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.4.0/hub-freebsd-amd64-2.4.0.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/7448924", + "id": 7448924, + "node_id": "MDEyOlJlbGVhc2VBc3NldDc0NDg5MjQ=", + "name": "hub-linux-386-2.4.0.tgz", + "label": "hub 2.4.0 for Linux 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 2844403, + "download_count": 247, + "created_at": "2018-06-07T18:17:50Z", + "updated_at": "2018-06-07T18:17:50Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.4.0/hub-linux-386-2.4.0.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/7448925", + "id": 7448925, + "node_id": "MDEyOlJlbGVhc2VBc3NldDc0NDg5MjU=", + "name": "hub-linux-amd64-2.4.0.tgz", + "label": "hub 2.4.0 for Linux 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 2987115, + "download_count": 18948, + "created_at": "2018-06-07T18:17:50Z", + "updated_at": "2018-06-07T18:17:50Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.4.0/hub-linux-amd64-2.4.0.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/7448926", + "id": 7448926, + "node_id": "MDEyOlJlbGVhc2VBc3NldDc0NDg5MjY=", + "name": "hub-linux-arm-2.4.0.tgz", + "label": "hub 2.4.0 for Linux ARM 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 2787878, + "download_count": 43, + "created_at": "2018-06-07T18:17:51Z", + "updated_at": "2018-06-07T18:17:51Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.4.0/hub-linux-arm-2.4.0.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/7448927", + "id": 7448927, + "node_id": "MDEyOlJlbGVhc2VBc3NldDc0NDg5Mjc=", + "name": "hub-linux-arm64-2.4.0.tgz", + "label": "hub 2.4.0 for Linux ARM 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 2763950, + "download_count": 68, + "created_at": "2018-06-07T18:17:51Z", + "updated_at": "2018-06-07T18:17:51Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.4.0/hub-linux-arm64-2.4.0.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/7448928", + "id": 7448928, + "node_id": "MDEyOlJlbGVhc2VBc3NldDc0NDg5Mjg=", + "name": "hub-windows-386-2.4.0.zip", + "label": "hub 2.4.0 for Windows 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 2823438, + "download_count": 87, + "created_at": "2018-06-07T18:17:52Z", + "updated_at": "2018-06-07T18:17:52Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.4.0/hub-windows-386-2.4.0.zip" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/7448929", + "id": 7448929, + "node_id": "MDEyOlJlbGVhc2VBc3NldDc0NDg5Mjk=", + "name": "hub-windows-amd64-2.4.0.zip", + "label": "hub 2.4.0 for Windows 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 2956951, + "download_count": 291, + "created_at": "2018-06-07T18:17:52Z", + "updated_at": "2018-06-07T18:17:52Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.4.0/hub-windows-amd64-2.4.0.zip" + } + ], + "tarball_url": "https://api.github.com/repos/github/hub/tarball/v2.4.0", + "zipball_url": "https://api.github.com/repos/github/hub/zipball/v2.4.0", + "body": "### Features\r\n\r\n* `hub delete [/]`\r\n\r\n* Add `hub compare --copy` flag\r\n\r\n* Add `hub release --format=` option\r\n\r\n* Add `hub pull-request --no-edit` flag\r\n\r\n* When checking out a pull request, ensure that `git push`with no arguments works\r\n\r\n* Support [XDG Base Directory Specification](https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html#variables)\r\n\r\n### Tweaks\r\n\r\n* Enable `hub pr list -h ` when owner isn't specified\r\n\r\n* Include `docs/` in list of locations to look up pull request and issue templates in\r\n\r\n![](https://media0.giphy.com/media/AMqCTHuCMFpM4/giphy.gif)" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/11220240", + "assets_url": "https://api.github.com/repos/github/hub/releases/11220240/assets", + "upload_url": "https://uploads.github.com/repos/github/hub/releases/11220240/assets{?name,label}", + "html_url": "https://github.com/github/hub/releases/tag/v2.3.0", + "id": 11220240, + "node_id": "MDc6UmVsZWFzZTExMjIwMjQw", + "tag_name": "v2.3.0", + "target_commitish": "master", + "name": "hub 2.3.0 – codename “Ancient Psychic Tandem War Elephant”", + "draft": false, + "author": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "prerelease": false, + "created_at": "2018-05-29T13:34:37Z", + "published_at": "2018-05-29T14:45:18Z", + "assets": [ + { + "url": "https://api.github.com/repos/github/hub/releases/assets/7336763", + "id": 7336763, + "node_id": "MDEyOlJlbGVhc2VBc3NldDczMzY3NjM=", + "name": "hub-darwin-amd64-2.3.0.tgz", + "label": "hub 2.3.0 for macOS", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 2608398, + "download_count": 47, + "created_at": "2018-05-29T13:46:30Z", + "updated_at": "2018-05-29T13:46:31Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.3.0/hub-darwin-amd64-2.3.0.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/7336764", + "id": 7336764, + "node_id": "MDEyOlJlbGVhc2VBc3NldDczMzY3NjQ=", + "name": "hub-freebsd-386-2.3.0.tgz", + "label": "hub 2.3.0 for FreeBSD 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 2460619, + "download_count": 9, + "created_at": "2018-05-29T13:46:31Z", + "updated_at": "2018-05-29T13:46:31Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.3.0/hub-freebsd-386-2.3.0.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/7336765", + "id": 7336765, + "node_id": "MDEyOlJlbGVhc2VBc3NldDczMzY3NjU=", + "name": "hub-freebsd-amd64-2.3.0.tgz", + "label": "hub 2.3.0 for FreeBSD 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 2619389, + "download_count": 10, + "created_at": "2018-05-29T13:46:31Z", + "updated_at": "2018-05-29T13:46:32Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.3.0/hub-freebsd-amd64-2.3.0.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/7336766", + "id": 7336766, + "node_id": "MDEyOlJlbGVhc2VBc3NldDczMzY3NjY=", + "name": "hub-linux-386-2.3.0.tgz", + "label": "hub 2.3.0 for Linux 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 2452800, + "download_count": 12, + "created_at": "2018-05-29T13:46:32Z", + "updated_at": "2018-05-29T13:46:32Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.3.0/hub-linux-386-2.3.0.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/7336767", + "id": 7336767, + "node_id": "MDEyOlJlbGVhc2VBc3NldDczMzY3Njc=", + "name": "hub-linux-amd64-2.3.0.tgz", + "label": "hub 2.3.0 for Linux 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 2635364, + "download_count": 3213, + "created_at": "2018-05-29T13:46:32Z", + "updated_at": "2018-05-29T13:46:33Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.3.0/hub-linux-amd64-2.3.0.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/7336768", + "id": 7336768, + "node_id": "MDEyOlJlbGVhc2VBc3NldDczMzY3Njg=", + "name": "hub-linux-arm-2.3.0.tgz", + "label": "hub 2.3.0 for Linux ARM 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 2447765, + "download_count": 23, + "created_at": "2018-05-29T13:46:33Z", + "updated_at": "2018-05-29T13:46:34Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.3.0/hub-linux-arm-2.3.0.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/7336769", + "id": 7336769, + "node_id": "MDEyOlJlbGVhc2VBc3NldDczMzY3Njk=", + "name": "hub-linux-arm64-2.3.0.tgz", + "label": "hub 2.3.0 for Linux ARM 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 2435538, + "download_count": 33, + "created_at": "2018-05-29T13:46:34Z", + "updated_at": "2018-05-29T13:46:34Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.3.0/hub-linux-arm64-2.3.0.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/7336770", + "id": 7336770, + "node_id": "MDEyOlJlbGVhc2VBc3NldDczMzY3NzA=", + "name": "hub-windows-386-2.3.0.zip", + "label": "hub 2.3.0 for Windows 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 2472596, + "download_count": 24, + "created_at": "2018-05-29T13:46:35Z", + "updated_at": "2018-05-29T13:46:35Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.3.0/hub-windows-386-2.3.0.zip" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/7336772", + "id": 7336772, + "node_id": "MDEyOlJlbGVhc2VBc3NldDczMzY3NzI=", + "name": "hub-windows-amd64-2.3.0.zip", + "label": "hub 2.3.0 for Windows 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 2637832, + "download_count": 131, + "created_at": "2018-05-29T13:46:35Z", + "updated_at": "2018-05-29T13:46:36Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.3.0/hub-windows-amd64-2.3.0.zip" + } + ], + "tarball_url": "https://api.github.com/repos/github/hub/tarball/v2.3.0", + "zipball_url": "https://api.github.com/repos/github/hub/zipball/v2.3.0", + "body": "This is a long-awaited release of hub with an abudance of new features. Thank you everyone for testing out prereleases, reporting bugs, and submitting pull requests! The [work of 76 contributors](https://github.com/github/hub/graphs/contributors) went into this release. ✨\r\n\r\nTo upgrade hub on macOS, run `brew upgrade hub`. Alternatively, you can download one of the provided precompiled binaries. See [other installation methods](https://github.com/github/hub#installation).\r\n\r\n\r\n## New commands\r\n\r\n* `hub issue`: list and create issues and labels\r\n\r\n ```\r\n Usage: hub issue [-a ] [-c ] [-@ ] [-s ] [-f ] [-M ] [-l ] [-d ] [-o [-^]] [-L ]\r\n hub issue create [-oc] [-m |-F ] [-a ] [-M ] [-l ]\r\n hub issue labels [--color]\r\n ```\r\n\r\n* `hub pr list`: list pull requests for the current repository\r\n\r\n* `hub pr checkout `: checkout a pull request by its number\r\n\r\n* `hub release`: list, create, edit, and delete releases and attachments\r\n\r\n ```\r\n Usage: hub release [--include-drafts] [--exclude-prereleases] [-L ]\r\n hub release show \r\n hub release create [-dpoc] [-a ] [-m |-F ] [-t ] \r\n hub release edit [] \r\n hub release delete \r\n ```\r\n\r\n* `hub sync`: fetch updates from remote repository and sync all local branches to their upstream equivalents, purging merged ones\r\n\r\n ![hub sync example](https://cloud.githubusercontent.com/assets/887/19049512/136cd36c-89ab-11e6-8b5a-443b9ef6bd75.jpg)\r\n\r\n\r\n## Improved commands\r\n\r\n* `hub pull-request` now has the ability to set assignees, labels, reviewers, and milestones.\r\n\r\n ```\r\n Usage: hub pull-request [-focp] [-b ] [-h ] [-r ] [-a ] [-M ] [-l ]\r\n hub pull-request -m \r\n hub pull-request -F [--edit]\r\n hub pull-request -i \r\n ```\r\n\r\n* `hub pull-request` and `hub issue create` now support [pull request and issue templates](https://help.github.com/articles/creating-a-pull-request-template-for-your-repository/).\r\n\r\n* Commands that print the resulting URL, such as `hub pull-request` or `hub create`, now accept `--copy` to put the URL to the system clipboard instead.\r\n\r\n* `hub pull-request --push` pushes the head branch to the remote before opening the pull request.\r\n\r\n* `hub pull-request` now strips away the `Signed-off-by` line and the commit signature when generating the default pull request message.\r\n\r\n* Commands that take input via `-m` or `-F` arguments now also respect `--edit` to additionally edit the text in a text editor before submitting.\r\n\r\n* Support `core.commentchar=auto` git configuration when editing pull request/issue/release message in a text editor.\r\n\r\n* Support `/OWNER/REPO/pull/XYZ/commits/SHA` format of URLs as argument to `cherry-pick`, `am`, and `apply`.\r\n\r\n* Commands such as `cherry-pick`, `merge `, and `checkout ` don't leave leftover git remotes anymore.\r\n\r\n* New `hub compare -b BASE` flag.\r\n\r\n* New `hub fork --org=ORGANIZATION` flag.\r\n\r\n* New `hub fork --remote-name=NAME` flag to configure the new git remote.\r\n\r\n* New, manpage-based help system; see [`hub help hub`](https://hub.github.com/hub.1.html) and `hub help hub-`.\r\n\r\n* Added fish shell completion script.\r\n\r\n* When prompted to authenticate with username/password, pasting a [Personal Access Token](https://github.com/settings/tokens) now works just as well instead of the password.\r\n\r\n![](https://www.picgifs.com/reaction-gifs/reaction-gifs/adventure-time/picgifs-adventure-time-2164180.gif)" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/6839710", + "assets_url": "https://api.github.com/repos/github/hub/releases/6839710/assets", + "upload_url": "https://uploads.github.com/repos/github/hub/releases/6839710/assets{?name,label}", + "html_url": "https://github.com/github/hub/releases/tag/v2.3.0-pre10", + "id": 6839710, + "node_id": "MDc6UmVsZWFzZTY4Mzk3MTA=", + "tag_name": "v2.3.0-pre10", + "target_commitish": "master", + "name": "hub 2.3.0-pre10", + "draft": false, + "author": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "prerelease": true, + "created_at": "2017-06-26T18:23:46Z", + "published_at": "2017-06-26T21:26:01Z", + "assets": [ + { + "url": "https://api.github.com/repos/github/hub/releases/assets/4187895", + "id": 4187895, + "node_id": "MDEyOlJlbGVhc2VBc3NldDQxODc4OTU=", + "name": "hub-darwin-amd64-2.3.0-pre10.tgz", + "label": "hub 2.3.0-pre10 for OS X", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 3101461, + "download_count": 7759, + "created_at": "2017-06-26T18:35:45Z", + "updated_at": "2017-06-26T18:35:45Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.3.0-pre10/hub-darwin-amd64-2.3.0-pre10.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/4187896", + "id": 4187896, + "node_id": "MDEyOlJlbGVhc2VBc3NldDQxODc4OTY=", + "name": "hub-freebsd-386-2.3.0-pre10.tgz", + "label": "hub 2.3.0-pre10 for FreeBSD 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 2923833, + "download_count": 36, + "created_at": "2017-06-26T18:35:45Z", + "updated_at": "2017-06-26T18:35:46Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.3.0-pre10/hub-freebsd-386-2.3.0-pre10.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/4187897", + "id": 4187897, + "node_id": "MDEyOlJlbGVhc2VBc3NldDQxODc4OTc=", + "name": "hub-freebsd-amd64-2.3.0-pre10.tgz", + "label": "hub 2.3.0-pre10 for FreeBSD 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 3113988, + "download_count": 92, + "created_at": "2017-06-26T18:35:46Z", + "updated_at": "2017-06-26T18:35:46Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.3.0-pre10/hub-freebsd-amd64-2.3.0-pre10.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/4187898", + "id": 4187898, + "node_id": "MDEyOlJlbGVhc2VBc3NldDQxODc4OTg=", + "name": "hub-linux-386-2.3.0-pre10.tgz", + "label": "hub 2.3.0-pre10 for Linux 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 2921732, + "download_count": 2255, + "created_at": "2017-06-26T18:35:46Z", + "updated_at": "2017-06-26T18:35:46Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.3.0-pre10/hub-linux-386-2.3.0-pre10.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/4187899", + "id": 4187899, + "node_id": "MDEyOlJlbGVhc2VBc3NldDQxODc4OTk=", + "name": "hub-linux-amd64-2.3.0-pre10.tgz", + "label": "hub 2.3.0-pre10 for Linux 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 3138535, + "download_count": 329639, + "created_at": "2017-06-26T18:35:46Z", + "updated_at": "2017-06-26T18:35:47Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.3.0-pre10/hub-linux-amd64-2.3.0-pre10.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/4187900", + "id": 4187900, + "node_id": "MDEyOlJlbGVhc2VBc3NldDQxODc5MDA=", + "name": "hub-linux-arm-2.3.0-pre10.tgz", + "label": "hub 2.3.0-pre10 for Linux ARM 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 2907034, + "download_count": 472, + "created_at": "2017-06-26T18:35:47Z", + "updated_at": "2017-06-26T18:35:48Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.3.0-pre10/hub-linux-arm-2.3.0-pre10.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/4187901", + "id": 4187901, + "node_id": "MDEyOlJlbGVhc2VBc3NldDQxODc5MDE=", + "name": "hub-linux-arm64-2.3.0-pre10.tgz", + "label": "hub 2.3.0-pre10 for Linux ARM 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 2906053, + "download_count": 242, + "created_at": "2017-06-26T18:35:48Z", + "updated_at": "2017-06-26T18:35:48Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.3.0-pre10/hub-linux-arm64-2.3.0-pre10.tgz" + } + ], + "tarball_url": "https://api.github.com/repos/github/hub/tarball/v2.3.0-pre10", + "zipball_url": "https://api.github.com/repos/github/hub/zipball/v2.3.0-pre10", + "body": "* Add `hub release --exclude-prereleases`\r\n* Add `hub fork --remote-name=NAME`\r\n* Add `hub pr checkout 123` as alternative to `hub checkout https://github.com/OWNER/REPO/pull/123`\r\n* Add `hub pull-request -r PERSON1,PERSON2` to request reviewers\r\n* Avoid warning message from vim when stdin was piped to `hub pull-request` or `hub issue create`\r\n* Fix crash in `WorkdirName` when within bare git repo\r\n* Fix `git --(exec|html|man|info)-path`\r\n* Show hub version even if `git version` fails\r\n" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/5467960", + "assets_url": "https://api.github.com/repos/github/hub/releases/5467960/assets", + "upload_url": "https://uploads.github.com/repos/github/hub/releases/5467960/assets{?name,label}", + "html_url": "https://github.com/github/hub/releases/tag/v2.3.0-pre9", + "id": 5467960, + "node_id": "MDc6UmVsZWFzZTU0Njc5NjA=", + "tag_name": "v2.3.0-pre9", + "target_commitish": "master", + "name": "hub 2.3.0-pre9", + "draft": false, + "author": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "prerelease": true, + "created_at": "2017-02-15T17:39:34Z", + "published_at": "2017-02-15T20:57:12Z", + "assets": [ + { + "url": "https://api.github.com/repos/github/hub/releases/assets/3199653", + "id": 3199653, + "node_id": "MDEyOlJlbGVhc2VBc3NldDMxOTk2NTM=", + "name": "hub-darwin-amd64-2.3.0-pre9.tgz", + "label": "hub 2.3.0-pre9 for OS X", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 3346814, + "download_count": 249, + "created_at": "2017-02-15T17:43:58Z", + "updated_at": "2017-02-15T17:43:59Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.3.0-pre9/hub-darwin-amd64-2.3.0-pre9.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/3199654", + "id": 3199654, + "node_id": "MDEyOlJlbGVhc2VBc3NldDMxOTk2NTQ=", + "name": "hub-freebsd-386-2.3.0-pre9.tgz", + "label": "hub 2.3.0-pre9 for FreeBSD 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 3143186, + "download_count": 20, + "created_at": "2017-02-15T17:43:59Z", + "updated_at": "2017-02-15T17:43:59Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.3.0-pre9/hub-freebsd-386-2.3.0-pre9.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/3199655", + "id": 3199655, + "node_id": "MDEyOlJlbGVhc2VBc3NldDMxOTk2NTU=", + "name": "hub-freebsd-amd64-2.3.0-pre9.tgz", + "label": "hub 2.3.0-pre9 for FreeBSD 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 3368843, + "download_count": 35, + "created_at": "2017-02-15T17:43:59Z", + "updated_at": "2017-02-15T17:44:00Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.3.0-pre9/hub-freebsd-amd64-2.3.0-pre9.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/3199656", + "id": 3199656, + "node_id": "MDEyOlJlbGVhc2VBc3NldDMxOTk2NTY=", + "name": "hub-linux-386-2.3.0-pre9.tgz", + "label": "hub 2.3.0-pre9 for Linux 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 3147942, + "download_count": 82, + "created_at": "2017-02-15T17:44:00Z", + "updated_at": "2017-02-15T17:44:00Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.3.0-pre9/hub-linux-386-2.3.0-pre9.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/3199657", + "id": 3199657, + "node_id": "MDEyOlJlbGVhc2VBc3NldDMxOTk2NTc=", + "name": "hub-linux-amd64-2.3.0-pre9.tgz", + "label": "hub 2.3.0-pre9 for Linux 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 3390819, + "download_count": 3446, + "created_at": "2017-02-15T17:44:00Z", + "updated_at": "2017-02-15T17:44:01Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.3.0-pre9/hub-linux-amd64-2.3.0-pre9.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/3199658", + "id": 3199658, + "node_id": "MDEyOlJlbGVhc2VBc3NldDMxOTk2NTg=", + "name": "hub-linux-arm-2.3.0-pre9.tgz", + "label": "hub 2.3.0-pre9 for Linux ARM 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 3039956, + "download_count": 52, + "created_at": "2017-02-15T17:44:01Z", + "updated_at": "2017-02-15T17:44:01Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.3.0-pre9/hub-linux-arm-2.3.0-pre9.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/3199659", + "id": 3199659, + "node_id": "MDEyOlJlbGVhc2VBc3NldDMxOTk2NTk=", + "name": "hub-linux-arm64-2.3.0-pre9.tgz", + "label": "hub 2.3.0-pre9 for Linux ARM 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 3100120, + "download_count": 122, + "created_at": "2017-02-15T17:44:02Z", + "updated_at": "2017-02-15T17:44:02Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.3.0-pre9/hub-linux-arm64-2.3.0-pre9.tgz" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/3199660", + "id": 3199660, + "node_id": "MDEyOlJlbGVhc2VBc3NldDMxOTk2NjA=", + "name": "hub-windows-386-2.3.0-pre9.zip", + "label": "hub 2.3.0-pre9 for Windows 32-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 3160880, + "download_count": 219, + "created_at": "2017-02-15T17:44:02Z", + "updated_at": "2017-02-15T17:44:03Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.3.0-pre9/hub-windows-386-2.3.0-pre9.zip" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/assets/3199661", + "id": 3199661, + "node_id": "MDEyOlJlbGVhc2VBc3NldDMxOTk2NjE=", + "name": "hub-windows-amd64-2.3.0-pre9.zip", + "label": "hub 2.3.0-pre9 for Windows 64-bit", + "uploader": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 3397418, + "download_count": 1928, + "created_at": "2017-02-15T17:44:03Z", + "updated_at": "2017-02-15T17:44:03Z", + "browser_download_url": "https://github.com/github/hub/releases/download/v2.3.0-pre9/hub-windows-amd64-2.3.0-pre9.zip" + } + ], + "tarball_url": "https://api.github.com/repos/github/hub/tarball/v2.3.0-pre9", + "zipball_url": "https://api.github.com/repos/github/hub/zipball/v2.3.0-pre9", + "body": "Features:\n- Add `hub pull-request --push`\n- Add `hub issue --include-pulls`\n- Add `hub fork --org=ORGANIZATION` parameter\n- Set upstream merge configuration on `hub checkout `\n- Add clipboard copy `-c` to `browse` command\n- Add fish shell completion script\n\nTweaks:\n- vim: use `--cmd` instead of `-c` to set default filetype\n- Check if config location is writeable before authenticating\n- Do not expand aliases which are in-built git and hub commands\n- Fix issue & pull request template lookup when in a local subdirectory\n" + }, + { + "url": "https://api.github.com/repos/github/hub/releases/5182188", + "assets_url": "https://api.github.com/repos/github/hub/releases/5182188/assets", + "upload_url": "https://uploads.github.com/repos/github/hub/releases/5182188/assets{?name,label}", + "html_url": "https://github.com/github/hub/releases/tag/v2.3.0-pre1", + "id": 5182188, + "node_id": "MDc6UmVsZWFzZTUxODIxODg=", + "tag_name": "v2.3.0-pre1", + "target_commitish": "master", + "name": "hub 2.3.0-pre1", + "draft": false, + "author": { + "login": "mislav", + "id": 887, + "node_id": "MDQ6VXNlcjg4Nw==", + "avatar_url": "https://avatars2.githubusercontent.com/u/887?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mislav", + "html_url": "https://github.com/mislav", + "followers_url": "https://api.github.com/users/mislav/followers", + "following_url": "https://api.github.com/users/mislav/following{/other_user}", + "gists_url": "https://api.github.com/users/mislav/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mislav/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mislav/subscriptions", + "organizations_url": "https://api.github.com/users/mislav/orgs", + "repos_url": "https://api.github.com/users/mislav/repos", + "events_url": "https://api.github.com/users/mislav/events{/privacy}", + "received_events_url": "https://api.github.com/users/mislav/received_events", + "type": "User", + "site_admin": true + }, + "prerelease": true, + "created_at": "2016-08-21T12:37:11Z", + "published_at": "2017-01-17T14:18:51Z", + "assets": [], + "tarball_url": "https://api.github.com/repos/github/hub/tarball/v2.3.0-pre1", + "zipball_url": "https://api.github.com/repos/github/hub/zipball/v2.3.0-pre1", + "body": "- New `hub compare -b|--base BASE` flag\r\n- New stable command `issue` to list and create issues:\r\n \r\n ```\r\n Usage: hub issue [-a ] [-c ] [-@ ] [-f ] [-M ] [-l ] [-t